From 569e5ed1fc806ffd988ec73715ae1aa4e2ef1b2d Mon Sep 17 00:00:00 2001 From: jawelton74 <103591340+jawelton74@users.noreply.github.com> Date: Wed, 1 Oct 2025 08:54:43 -0700 Subject: [PATCH 1/4] Support RBAC in E2E tests for Mongo & Cassandra (#2220) * Add E2E test changes to support RBAC for Mongo and Cassandra. * Uncomment Mongo changes. * Be more selective with which tokens are passed to DE for each test. --- .github/workflows/ci.yml | 12 +++++ test/fx.ts | 79 ++++++++++++++++++++++++------- test/testExplorer/TestExplorer.ts | 19 ++++++++ 3 files changed, 92 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80640f594..284405b54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -198,6 +198,18 @@ jobs: GREMLIN_TESTACCOUNT_TOKEN=$(az account get-access-token --scope "https://github-e2etests-gremlin.documents.azure.com/.default" -o tsv --query accessToken) echo "::add-mask::$GREMLIN_TESTACCOUNT_TOKEN" echo GREMLIN_TESTACCOUNT_TOKEN=$GREMLIN_TESTACCOUNT_TOKEN >> $GITHUB_ENV + CASSANDRA_TESTACCOUNT_TOKEN=$(az account get-access-token --scope "https://github-e2etests-cassandra.documents.azure.com/.default" -o tsv --query accessToken) + echo "::add-mask::$CASSANDRA_TESTACCOUNT_TOKEN" + echo CASSANDRA_TESTACCOUNT_TOKEN=$CASSANDRA_TESTACCOUNT_TOKEN >> $GITHUB_ENV + MONGO_TESTACCOUNT_TOKEN=$(az account get-access-token --scope "https://github-e2etests-mongo.documents.azure.com/.default" -o tsv --query accessToken) + echo "::add-mask::$MONGO_TESTACCOUNT_TOKEN" + echo MONGO_TESTACCOUNT_TOKEN=$MONGO_TESTACCOUNT_TOKEN >> $GITHUB_ENV + MONGO32_TESTACCOUNT_TOKEN=$(az account get-access-token --scope "https://github-e2etests-mongo32.documents.azure.com/.default" -o tsv --query accessToken) + echo "::add-mask::$MONGO32_TESTACCOUNT_TOKEN" + echo MONGO32_TESTACCOUNT_TOKEN=$MONGO32_TESTACCOUNT_TOKEN >> $GITHUB_ENV + MONGO_READONLY_TESTACCOUNT_TOKEN=$(az account get-access-token --scope "https://github-e2etests-mongo-readonly.documents.azure.com/.default" -o tsv --query accessToken) + echo "::add-mask::$MONGO_READONLY_TESTACCOUNT_TOKEN" + echo MONGO_READONLY_TESTACCOUNT_TOKEN=$MONGO_READONLY_TESTACCOUNT_TOKEN >> $GITHUB_ENV - name: Run test shard ${{ matrix['shardIndex'] }} of ${{ matrix['shardTotal']}} run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --workers=3 - name: Upload blob report to GitHub Actions Artifacts diff --git a/test/fx.ts b/test/fx.ts index 536a42fbb..e7458695c 100644 --- a/test/fx.ts +++ b/test/fx.ts @@ -87,27 +87,70 @@ export async function getTestExplorerUrl(accountType: TestAccount, iframeSrc?: s params.set("feature.enableCopilot", "false"); const nosqlRbacToken = process.env.NOSQL_TESTACCOUNT_TOKEN; - if (nosqlRbacToken) { - params.set("nosqlRbacToken", nosqlRbacToken); - params.set("enableaaddataplane", "true"); - } - const nosqlReadOnlyRbacToken = process.env.NOSQL_READONLY_TESTACCOUNT_TOKEN; - if (nosqlReadOnlyRbacToken) { - params.set("nosqlReadOnlyRbacToken", nosqlReadOnlyRbacToken); - params.set("enableaaddataplane", "true"); - } - const tableRbacToken = process.env.TABLE_TESTACCOUNT_TOKEN; - if (tableRbacToken) { - params.set("tableRbacToken", tableRbacToken); - params.set("enableaaddataplane", "true"); - } - const gremlinRbacToken = process.env.GREMLIN_TESTACCOUNT_TOKEN; - if (gremlinRbacToken) { - params.set("gremlinRbacToken", gremlinRbacToken); - params.set("enableaaddataplane", "true"); + const cassandraRbacToken = process.env.CASSANDRA_TESTACCOUNT_TOKEN; + const mongoRbacToken = process.env.MONGO_TESTACCOUNT_TOKEN; + const mongo32RbacToken = process.env.MONGO32_TESTACCOUNT_TOKEN; + const mongoReadOnlyRbacToken = process.env.MONGO_READONLY_TESTACCOUNT_TOKEN; + + switch (accountType) { + case TestAccount.SQL: + if (nosqlRbacToken) { + params.set("nosqlRbacToken", nosqlRbacToken); + params.set("enableaaddataplane", "true"); + } + break; + + case TestAccount.SQLReadOnly: + if (nosqlReadOnlyRbacToken) { + params.set("nosqlReadOnlyRbacToken", nosqlReadOnlyRbacToken); + params.set("enableaaddataplane", "true"); + } + break; + + case TestAccount.Tables: + if (tableRbacToken) { + params.set("tableRbacToken", tableRbacToken); + params.set("enableaaddataplane", "true"); + } + break; + + case TestAccount.Gremlin: + if (gremlinRbacToken) { + params.set("gremlinRbacToken", gremlinRbacToken); + params.set("enableaaddataplane", "true"); + } + break; + + case TestAccount.Cassandra: + if (cassandraRbacToken) { + params.set("cassandraRbacToken", cassandraRbacToken); + params.set("enableaaddataplane", "true"); + } + break; + + case TestAccount.Mongo: + if (mongoRbacToken) { + params.set("mongoRbacToken", mongoRbacToken); + params.set("enableaaddataplane", "true"); + } + break; + + case TestAccount.Mongo32: + if (mongo32RbacToken) { + params.set("mongo32RbacToken", mongo32RbacToken); + params.set("enableaaddataplane", "true"); + } + break; + + case TestAccount.MongoReadonly: + if (mongoReadOnlyRbacToken) { + params.set("mongoReadOnlyRbacToken", mongoReadOnlyRbacToken); + params.set("enableaaddataplane", "true"); + } + break; } if (iframeSrc) { diff --git a/test/testExplorer/TestExplorer.ts b/test/testExplorer/TestExplorer.ts index 1fe5d818a..7e6dc9c24 100644 --- a/test/testExplorer/TestExplorer.ts +++ b/test/testExplorer/TestExplorer.ts @@ -18,6 +18,13 @@ const nosqlReadOnlyRbacToken = const tableRbacToken = urlSearchParams.get("tableRbacToken") || process.env.TABLE_TESTACCOUNT_TOKEN || ""; const gremlinRbacToken = urlSearchParams.get("gremlinRbacToken") || process.env.GREMLIN_TESTACCOUNT_TOKEN || ""; +const cassandraRbacToken = urlSearchParams.get("cassandraRbacToken") || process.env.CASSANDRA_TESTACCOUNT_TOKEN || ""; + +const mongoRbacToken = urlSearchParams.get("mongoRbacToken") || process.env.MONGO_TESTACCOUNT_TOKEN || ""; +const mongo32RbacToken = urlSearchParams.get("mongo32RbacToken") || process.env.MONGO32_TESTACCOUNT_TOKEN || ""; +const mongoReadOnlyRbacToken = + urlSearchParams.get("mongoReadOnlyRbacToken") || process.env.MONGO_READONLY_TESTACCOUNT_TOKEN || ""; + const initTestExplorer = async (): Promise => { updateUserContext({ authorizationToken: `bearer ${authToken}`, @@ -41,6 +48,18 @@ const initTestExplorer = async (): Promise => { case "tables": rbacToken = tableRbacToken; break; + case "cassandra": + rbacToken = cassandraRbacToken; + break; + case "mongo": + rbacToken = mongoRbacToken; + break; + case "mongo32": + rbacToken = mongo32RbacToken; + break; + case "mongo-readonly": + rbacToken = mongoReadOnlyRbacToken; + break; } if (rbacToken.length > 0) { From 909957a9a1f3eb2b5df3d3284c17097a8ebd0e6e Mon Sep 17 00:00:00 2001 From: Laurent Nguyen Date: Thu, 2 Oct 2025 18:02:32 +0200 Subject: [PATCH 2/4] feat: Send message to Fabric when container is updated (via settings, created or deleted) (#2221) * Send message to Fabric when container is updated (via settings, created or deleted). * Fix format --------- Co-authored-by: Laurent Nguyen --- src/Common/dataAccess/createCollection.ts | 10 +++++++ src/Common/dataAccess/deleteCollection.ts | 7 +++++ src/Contracts/DataExplorerMessagesContract.ts | 26 ++++++++++++++++++- src/Contracts/FabricMessageTypes.ts | 2 ++ .../Controls/Settings/SettingsComponent.tsx | 11 ++++++++ 5 files changed, 55 insertions(+), 1 deletion(-) diff --git a/src/Common/dataAccess/createCollection.ts b/src/Common/dataAccess/createCollection.ts index 78ef4f488..7f531211c 100644 --- a/src/Common/dataAccess/createCollection.ts +++ b/src/Common/dataAccess/createCollection.ts @@ -1,4 +1,6 @@ import { ContainerRequest, ContainerResponse, DatabaseRequest, DatabaseResponse, RequestOptions } from "@azure/cosmos"; +import { sendMessage } from "Common/MessageHandler"; +import { FabricMessageTypes } from "Contracts/FabricMessageTypes"; import { isFabricNative } from "Platform/Fabric/FabricUtil"; import { AuthType } from "../../AuthType"; import * as DataModels from "../../Contracts/DataModels"; @@ -43,6 +45,14 @@ export const createCollection = async (params: DataModels.CreateCollectionParams } logConsoleInfo(`Successfully created container ${params.collectionId}`); + + if (isFabricNative()) { + sendMessage({ + type: FabricMessageTypes.ContainerUpdated, + params: { updateType: "created" }, + }); + } + return collection; } catch (error) { handleError(error, "CreateCollection", `Error while creating container ${params.collectionId}`); diff --git a/src/Common/dataAccess/deleteCollection.ts b/src/Common/dataAccess/deleteCollection.ts index e786e5ea7..d12c3217a 100644 --- a/src/Common/dataAccess/deleteCollection.ts +++ b/src/Common/dataAccess/deleteCollection.ts @@ -1,3 +1,5 @@ +import { sendMessage } from "Common/MessageHandler"; +import { FabricMessageTypes } from "Contracts/FabricMessageTypes"; import { isFabric } from "Platform/Fabric/FabricUtil"; import { AuthType } from "../../AuthType"; import { userContext } from "../../UserContext"; @@ -19,6 +21,11 @@ export async function deleteCollection(databaseId: string, collectionId: string) await client().database(databaseId).container(collectionId).delete(); } logConsoleInfo(`Successfully deleted container ${collectionId}`); + + sendMessage({ + type: FabricMessageTypes.ContainerUpdated, + params: { updateType: "deleted" }, + }); } catch (error) { handleError(error, "DeleteCollection", `Error while deleting container ${collectionId}`); throw error; diff --git a/src/Contracts/DataExplorerMessagesContract.ts b/src/Contracts/DataExplorerMessagesContract.ts index c017bffa8..de81ea2ea 100644 --- a/src/Contracts/DataExplorerMessagesContract.ts +++ b/src/Contracts/DataExplorerMessagesContract.ts @@ -1,4 +1,5 @@ import { FabricMessageTypes } from "./FabricMessageTypes"; +import { MessageTypes } from "./MessageTypes"; // This is the current version of these messages export const DATA_EXPLORER_RPC_VERSION = "3"; @@ -19,9 +20,32 @@ export type DataExploreMessageV3 = type: FabricMessageTypes.GetAllResourceTokens; id: string; } + | { + type: FabricMessageTypes.GetAccessToken; + id: string; + } + | { + type: MessageTypes.TelemetryInfo; + data: { + action: string; + actionModifier: string; + data: unknown; + timestamp: number; + }; + } | { type: FabricMessageTypes.OpenSettings; - settingsId: string; + params: [{ settingsId?: "About" | "Connection" }]; + } + | { + type: FabricMessageTypes.RestoreContainer; + params: []; + } + | { + type: FabricMessageTypes.ContainerUpdated; + params: { + updateType: "created" | "deleted" | "settings"; + }; }; export interface GetCosmosTokenMessageOptions { verb: "connect" | "delete" | "get" | "head" | "options" | "patch" | "post" | "put" | "trace"; diff --git a/src/Contracts/FabricMessageTypes.ts b/src/Contracts/FabricMessageTypes.ts index 02871ca47..5b69496b9 100644 --- a/src/Contracts/FabricMessageTypes.ts +++ b/src/Contracts/FabricMessageTypes.ts @@ -7,6 +7,8 @@ export enum FabricMessageTypes { GetAccessToken = "GetAccessToken", Ready = "Ready", OpenSettings = "OpenSettings", + RestoreContainer = "RestoreContainer", + ContainerUpdated = "ContainerUpdated", } export interface AuthorizationToken { diff --git a/src/Explorer/Controls/Settings/SettingsComponent.tsx b/src/Explorer/Controls/Settings/SettingsComponent.tsx index 6d8c875f8..a458675d9 100644 --- a/src/Explorer/Controls/Settings/SettingsComponent.tsx +++ b/src/Explorer/Controls/Settings/SettingsComponent.tsx @@ -1,4 +1,6 @@ import { IPivotItemProps, IPivotProps, Pivot, PivotItem } from "@fluentui/react"; +import { sendMessage } from "Common/MessageHandler"; +import { FabricMessageTypes } from "Contracts/FabricMessageTypes"; import { ComputedPropertiesComponent, ComputedPropertiesComponentProps, @@ -431,6 +433,15 @@ export class SettingsComponent extends React.Component Date: Fri, 3 Oct 2025 17:31:05 +0200 Subject: [PATCH 3/4] feat: New Fabric sample datasets (#2219) * add two new fabric sample datasets. * Update Fabric Home with two sample datasets. One regular and one for vector search. * Update specs for sample data container * Add telemetry instead of console log * Add sampleDataFile to telemetry when importing sample data --------- Co-authored-by: Mark Brown Co-authored-by: Laurent Nguyen --- images/AzureOpenAi.svg | 1 + images/github-black-and-white.svg | 3 + sampleData/fabricSampleData.json | 65616 +++ sampleData/fabricSampleDataVectors.json | 322616 +++++++++++++++ .../AddCollectionPanel/AddCollectionPanel.tsx | 6 +- src/Explorer/SplashScreen/FabricHome.tsx | 67 +- .../SplashScreen/SampleDataImportDialog.tsx | 25 +- src/Explorer/SplashScreen/SampleUtil.ts | 91 +- src/Platform/Fabric/FabricUtil.ts | 4 + src/Shared/Telemetry/TelemetryConstants.ts | 1 + 10 files changed, 388404 insertions(+), 26 deletions(-) create mode 100644 images/AzureOpenAi.svg create mode 100644 images/github-black-and-white.svg create mode 100644 sampleData/fabricSampleData.json create mode 100644 sampleData/fabricSampleDataVectors.json diff --git a/images/AzureOpenAi.svg b/images/AzureOpenAi.svg new file mode 100644 index 000000000..a072c83a4 --- /dev/null +++ b/images/AzureOpenAi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/github-black-and-white.svg b/images/github-black-and-white.svg new file mode 100644 index 000000000..bbd7428c7 --- /dev/null +++ b/images/github-black-and-white.svg @@ -0,0 +1,3 @@ + + + diff --git a/sampleData/fabricSampleData.json b/sampleData/fabricSampleData.json new file mode 100644 index 000000000..5ebaa3fa3 --- /dev/null +++ b/sampleData/fabricSampleData.json @@ -0,0 +1,65616 @@ +[ + { + "id": "71abb6ae-6745-47cc-9834-c85855c43ff0", + "productId": "71abb6ae-6745-47cc-9834-c85855c43ff0", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Super (Black)", + "description": "This Awesome Computer Super (Black) is a cool computer you should buy in stores. If you are already using one then this would be a good computer for you. I recommend that you save an extra $35 and purchase a cheap computer", + "countryOfOrigin": "India", + "rareItem": true, + "firstAvailable": "2019-02-06T18:00:31", + "price": 344.89, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2019-02-06T18:00:31", + "newPrice": 316.4 + }, + { + "priceDate": "2020-09-26T18:00:31", + "newPrice": 339.5 + }, + { + "priceDate": "2022-05-17T18:00:31", + "newPrice": 312.46 + }, + { + "priceDate": "2024-01-05T18:00:31", + "newPrice": 325.48 + }, + { + "priceDate": "2025-08-25T18:00:31", + "newPrice": 345.26 + }, + { + "priceDate": "2025-08-26T18:00:31", + "newPrice": 344.89 + } + ] + }, + { + "id": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Ultra (Gold)", + "description": "This Luxe Filter Ultra (Gold) is a fine filter in gold color.", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-04-16T07:55:51", + "price": 689.27, + "stock": 98, + "priceHistory": [ + { + "priceDate": "2021-03-28T07:41:55", + "newPrice": 716.58 + }, + { + "priceDate": "2022-09-08T07:41:55", + "newPrice": 667.25 + }, + { + "priceDate": "2022-12-05T07:41:55", + "newPrice": 689.27 + } + ] + }, + { + "id": "ff0f24f4-0a6d-4c1e-a7db-aa9902475776", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "customerRating", + "userName": "karihernandez", + "reviewDate": "2021-03-28T07:41:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8c35b85e-529c-478e-b526-d8e3ac864d57", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "customerRating", + "userName": "joanna57", + "reviewDate": "2021-07-19T09:28:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0334c48b-a8cf-4a5c-9579-dc71b23b96d7", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "customerRating", + "userName": "cervantesdawn", + "reviewDate": "2022-01-26T12:47:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "02581366-d139-4521-b062-fe5e80527013", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "customerRating", + "userName": "marcus19", + "reviewDate": "2022-09-08T22:43:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Micro (Red)", + "description": "This Awesome Stand Micro (Red) is rated 4.6 out of 5 by 3.\n\nRated 3 out of 5 by ckirby from A great deal So this is a very nice buy, but the price is a little high, so I will not be buying again. Good price for it, but I still don't know if all i love about it is the high", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-05-04T16:01:42", + "price": 1073.12, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-01-02T07:08:49", + "newPrice": 1143.82 + }, + { + "priceDate": "2021-12-10T07:08:49", + "newPrice": 1098.56 + }, + { + "priceDate": "2022-11-17T07:08:49", + "newPrice": 1150.75 + }, + { + "priceDate": "2024-04-07T07:08:49", + "newPrice": 1073.12 + } + ] + }, + { + "id": "866b1531-6d50-4dcd-a6d8-9686f8a2592d", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacobcarlson", + "reviewDate": "2021-09-25T11:29:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8123b848-4b75-440b-9fb7-f07b07f464c2", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "patrickortiz", + "reviewDate": "2022-05-13T21:56:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "009d341a-3575-4dd7-9f5d-d4fe2ac0a30c", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "davismichael", + "reviewDate": "2022-02-14T05:22:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b33e8fe4-5e66-4ad8-a1e7-a6deb074f8d8", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "wilkinsmark", + "reviewDate": "2022-07-08T15:01:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9499d70f-a525-45e6-9c17-e912e13859ba", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "douglasknight", + "reviewDate": "2021-06-19T00:40:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "745a181d-e691-462f-811c-6558712221b2", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "angel36", + "reviewDate": "2022-11-06T16:35:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6085a2e8-0b72-4f79-af47-0e0de9c81f44", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "ryanrichard", + "reviewDate": "2021-06-12T02:38:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2dc813a5-21e3-477e-b37a-6078b479b6c6", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessicaconner", + "reviewDate": "2021-10-17T18:03:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1f91b455-8195-4b29-b6f5-9615510a7f4f", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "kaylabernard", + "reviewDate": "2022-11-18T05:22:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9933dbcb-5966-4165-a2f2-09635853d5e7", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "ysmith", + "reviewDate": "2021-05-14T22:49:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "31fa7fc4-58e8-43c7-a9e9-59b52ddf0e6e", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "brandyrodriguez", + "reviewDate": "2022-02-08T19:27:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e67cbdd4-bfde-4f19-8d5c-a18d9a62a7dd", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "hillshannon", + "reviewDate": "2021-01-02T07:08:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dbae41cd-4bf3-4bb0-aff1-50d943657e78", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "sandra58", + "reviewDate": "2022-03-23T14:28:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f7f9c0b1-b92c-4d52-832c-00b409b4942c", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "lwatson", + "reviewDate": "2021-04-20T15:44:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3235b4ef-2b11-44d7-9d20-48df307fb54b", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "pedro37", + "reviewDate": "2022-02-27T20:47:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9e5294ac-a525-47e3-9a42-dd57875ac838", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "welchbrian", + "reviewDate": "2022-09-08T18:16:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1ac4ac26-a66a-47da-9a86-7baf0c93668f", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "eugeneray", + "reviewDate": "2022-10-03T12:08:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b066379d-4cda-40e7-8afb-5f69292aab7e", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "makaylarussell", + "reviewDate": "2021-04-29T09:29:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Steel)", + "description": "This Basic Phone Ultra (Steel) is the ultimate smartphone accessory for a wide variety of applications, including music, photos, movies, social media, maps, and more. With a 3.5mm and 5.1-inch display, the LG Ultra Phone Ultra delivers a superior wireless experience, allowing you to share photos, listen to YouTube, stream", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-05-06T13:57:39", + "price": 976.37, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-01-01T08:54:07", + "newPrice": 955.99 + }, + { + "priceDate": "2021-08-18T08:54:07", + "newPrice": 1057.32 + }, + { + "priceDate": "2022-04-04T08:54:07", + "newPrice": 968.33 + }, + { + "priceDate": "2022-11-19T08:54:07", + "newPrice": 930.46 + }, + { + "priceDate": "2024-05-10T08:54:07", + "newPrice": 976.37 + } + ] + }, + { + "id": "019eb36f-f18f-4bce-a212-ae0738ca21f0", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "imcclure", + "reviewDate": "2021-03-26T20:54:57", + "stars": 5, + "verifiedUser": false + }, + { + "id": "57321763-82e5-44df-8174-5fb5a8d49a59", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "andreamathews", + "reviewDate": "2021-01-01T08:54:07", + "stars": 5, + "verifiedUser": false + }, + { + "id": "a886e165-083e-42c7-a12a-0e8520a99db8", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "penningtonderrick", + "reviewDate": "2021-08-05T21:45:56", + "stars": 5, + "verifiedUser": false + }, + { + "id": "85f53bed-ea73-4d0a-8dea-9945925a1bee", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissawells", + "reviewDate": "2022-11-21T00:11:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4fbfa0b2-4bff-4379-a60b-cfe27e47a7a0", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathanchavez", + "reviewDate": "2021-03-12T09:48:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "45408862-514c-4d9b-8d59-a86fd3eac88c", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "ramirezmichele", + "reviewDate": "2022-02-17T23:34:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "91d9a2df-78b1-4d8b-a93f-63e1aae02745", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopherwatkins", + "reviewDate": "2022-09-08T17:17:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "709ec743-d039-426c-81a0-de6f75c15a28", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Red)", + "description": "This Amazing Filter Micro (Red) is here, but it's got nothing else at my disposal. Just take this one as an example of why I love the little filter that is available, but you have to keep in mind that if you plan on putting a huge box of your own, this filter just doesn't matter. I will have more on this later on in an update. All of the filters I used, I did not use any", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-12-19T14:39:23", + "price": 484.77, + "stock": 68, + "priceHistory": [ + { + "priceDate": "2021-01-11T12:50:10", + "newPrice": 519.75 + }, + { + "priceDate": "2021-04-14T12:50:10", + "newPrice": 437.41 + }, + { + "priceDate": "2021-07-16T12:50:10", + "newPrice": 506.17 + }, + { + "priceDate": "2021-10-17T12:50:10", + "newPrice": 502.39 + }, + { + "priceDate": "2022-01-18T12:50:10", + "newPrice": 488.35 + }, + { + "priceDate": "2025-04-24T12:50:10", + "newPrice": 484.77 + } + ] + }, + { + "id": "9164247d-0f3a-43e1-a532-f87a0255b389", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "mdavis", + "reviewDate": "2021-04-21T23:13:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "20baf656-92cd-4a8b-bc1a-21ed00d5c64e", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "robertssarah", + "reviewDate": "2021-01-24T16:19:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "45bfcf07-d285-4396-9f3a-ccfae6131789", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "mcmillanrobert", + "reviewDate": "2021-01-30T23:22:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "22efc690-c731-4144-803d-83cc80ca7cc8", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "hschroeder", + "reviewDate": "2021-07-14T04:21:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d793efe3-7f9f-4b3c-814c-bc6b97050a2c", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "cgarcia", + "reviewDate": "2022-01-20T19:16:48", + "stars": 5, + "verifiedUser": true + }, + { + "id": "9730b7f3-18f6-47fa-bad3-43fb206725c6", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "samantha11", + "reviewDate": "2021-01-11T12:50:10", + "stars": 5, + "verifiedUser": true + }, + { + "id": "c6739c74-2150-4fa0-8e69-f1645e606298", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "leslie04", + "reviewDate": "2021-03-08T22:51:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0ac65be1-8a35-4901-840e-2ed385c4dd55", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "amandasmith", + "reviewDate": "2021-02-27T15:08:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3b3d7b16-d1ca-417c-8818-79ce9e14ee71", + "productId": "3b3d7b16-d1ca-417c-8818-79ce9e14ee71", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Micro (Black)", + "description": "This Amazing Computer Micro (Black) is a full-fledged Windows 10 operating system designed for gamers to develop their own hardware. In fact, by the time we last tried it, its only known purpose was to develop gaming", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-12-16T19:30:05", + "price": 588.61, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-09-09T21:07:42", + "newPrice": 557.94 + }, + { + "priceDate": "2021-12-14T21:07:42", + "newPrice": 558.1 + }, + { + "priceDate": "2022-03-20T21:07:42", + "newPrice": 596.54 + }, + { + "priceDate": "2025-03-21T21:07:42", + "newPrice": 588.61 + } + ] + }, + { + "id": "08107344-cffc-48df-b826-0623edd9a379", + "productId": "3b3d7b16-d1ca-417c-8818-79ce9e14ee71", + "category": "Electronics", + "docType": "customerRating", + "userName": "james24", + "reviewDate": "2022-03-20T21:18:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "934b9555-b233-4711-ab9d-fc89298b17af", + "productId": "3b3d7b16-d1ca-417c-8818-79ce9e14ee71", + "category": "Electronics", + "docType": "customerRating", + "userName": "estewart", + "reviewDate": "2021-09-09T21:07:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "product", + "name": "Premium TV + (Steel)", + "description": "This Premium TV + (Steel) is the most popular premium cable subscription for all households. Its offering is free of charge for 10 years.\n\n$0.99 / month $0\n\nNetflix Premium TV. This premium TV and streaming service is available in the U.S., Canada, Germany, Australia, Israel, New Zealand and the USA. It has an annual, $7.95/month fee", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-04-13T19:17:12", + "price": 972.43, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-01-05T04:11:52", + "newPrice": 1013.85 + }, + { + "priceDate": "2022-12-03T04:11:52", + "newPrice": 952.79 + }, + { + "priceDate": "2024-12-28T04:11:52", + "newPrice": 972.43 + } + ] + }, + { + "id": "bcdd3335-18d3-4efa-8361-b07564d1a1d2", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "kevin94", + "reviewDate": "2021-07-22T13:02:18", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9a5109b7-6977-46b1-a47d-876cc73274cf", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "delgadodanielle", + "reviewDate": "2021-02-21T04:19:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "555f3f7e-6233-4c98-92ad-820b83d1c0ef", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "hsmith", + "reviewDate": "2021-05-13T08:50:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6d7502e3-9b04-4509-a914-cdbabcb992ad", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "courtney33", + "reviewDate": "2022-10-15T17:07:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "521ba562-64a5-47da-8866-90ab2f1f4b9d", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "danieladams", + "reviewDate": "2021-08-01T08:54:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "05b6869e-d645-44fc-bfeb-feaed3167001", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "alvarezjames", + "reviewDate": "2021-09-11T23:38:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1cc9a258-20ed-4aba-8047-b836632ce8ff", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth37", + "reviewDate": "2022-09-25T21:25:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e2a3ff1b-6c51-4ca0-a63f-1b9b71437d3a", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "alyssarussell", + "reviewDate": "2022-04-17T03:18:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c75a43da-4b1a-4a61-9e91-880846dfb36c", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "joseph90", + "reviewDate": "2022-06-23T18:16:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "183dd1b7-48e9-4619-8f50-25c3543408bd", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "randyhammond", + "reviewDate": "2022-12-03T06:34:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "de1b698a-df43-43e5-ae2b-a14061980f5d", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonandres", + "reviewDate": "2021-01-05T04:11:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0da025e6-d2a9-45a7-9b3c-cb99fb4ba07e", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "qwilliams", + "reviewDate": "2022-10-04T16:21:22", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f274c0df-bc73-405d-a225-4cadccabeda5", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "austin22", + "reviewDate": "2021-04-25T10:50:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e1983299-31ca-4bdd-b521-b81059434102", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "isimmons", + "reviewDate": "2022-01-06T10:04:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "78074e27-0be5-4223-857d-d4e749060b7f", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "garciajames", + "reviewDate": "2021-08-08T05:52:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7d0ca4a2-ffff-4aa7-8563-dbff12bf236c", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "jasminemartin", + "reviewDate": "2021-10-09T22:40:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fd0f4ccd-a007-421e-b3ef-41d4ad154d12", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "villegaspamela", + "reviewDate": "2022-10-19T18:52:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "38fb5d99-0275-410b-a86e-0e6d36f266df", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "tara49", + "reviewDate": "2022-04-10T14:30:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "23eea076-a748-49de-9634-e84ee60b76fb", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "whall", + "reviewDate": "2022-03-21T17:00:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cb59b989-41c8-44c4-bcc6-85a493334332", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "philiprich", + "reviewDate": "2022-03-07T13:21:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Micro (Gold)", + "description": "This Amazing Speaker Micro (Gold) is made of aluminum that provides greater internal surface protection than its titanium counterpart. The innovative design allows the speaker to be placed on a flat surface such that it allows the speaker to be inserted into a larger area and can be positioned in", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-08T10:51:38", + "price": 240.18, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-03-31T13:23:47", + "newPrice": 258.17 + }, + { + "priceDate": "2022-11-14T13:23:47", + "newPrice": 219.78 + }, + { + "priceDate": "2023-12-30T13:23:47", + "newPrice": 240.18 + } + ] + }, + { + "id": "5e935305-2d7d-48d6-bfea-9edcdb88f720", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "jeremyboyd", + "reviewDate": "2021-11-05T03:54:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "776efe68-6ba4-4162-9d74-0aaf67ae5064", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "jordankennedy", + "reviewDate": "2022-05-13T16:06:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4fee4115-adfe-4fd5-9994-94222ddccd92", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "rnorris", + "reviewDate": "2021-04-10T02:08:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1cd34c20-b5a9-473a-a0e4-fcf2a7ba2a3a", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "lisa91", + "reviewDate": "2021-11-08T03:25:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4b591972-9f9a-477d-9d1b-2ec4ae43ee18", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "pamela44", + "reviewDate": "2022-08-16T15:51:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "88456073-5d7b-448c-a8c2-e72ab431abc9", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "bridget66", + "reviewDate": "2021-10-26T17:58:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "512d67c0-a45a-472b-966b-5855dbb33909", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "andrewmoran", + "reviewDate": "2022-11-14T17:35:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5ea54b08-02ca-476c-b5ea-92b98117630d", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "meadowsalyssa", + "reviewDate": "2022-04-17T01:01:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6097c5d2-d2c6-4f5a-83b0-45315da1cad3", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "xburgess", + "reviewDate": "2021-11-30T07:05:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5476fc14-a559-44c2-8c87-bd821db16f8d", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "jacob65", + "reviewDate": "2022-10-13T11:50:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7a82d717-7574-4cca-ac18-a6ac7596682c", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "griffithjulie", + "reviewDate": "2022-01-11T20:44:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0c9bada6-da1d-4654-9b48-82e9b4237ae4", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "ajohnson", + "reviewDate": "2022-08-22T23:04:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "111c7350-6fac-45fa-b5f7-4819eb2ef198", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "thomasweiss", + "reviewDate": "2022-03-02T21:11:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b897d8c2-bbc1-4c1d-bb26-95306820ce20", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "gordonoconnell", + "reviewDate": "2021-11-18T21:52:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a0ad5b71-6b90-48ee-b08d-69c7850c2e03", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "otorres", + "reviewDate": "2021-03-31T13:23:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "628ccb24-9eac-4999-ba7d-9a5c67486fa9", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "lindaweber", + "reviewDate": "2022-09-21T17:13:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "af9da41f-3518-4f13-8b1d-2f4b36e9cd0a", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "eallen", + "reviewDate": "2021-07-09T02:18:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Mini (Red)", + "description": "This Awesome Speaker Mini (Red) is a great speaker that's ideal for meeting some of the most common problems with headphones and also works well for getting around town in your car. It sports a 5.1″ driver that makes for some pretty great sound, as well as a 1.5″ output", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-06-19T22:22:56", + "price": 1041.6, + "stock": 75, + "priceHistory": [ + { + "priceDate": "2021-02-21T19:49:10", + "newPrice": 1066.47 + }, + { + "priceDate": "2025-03-28T19:49:10", + "newPrice": 1041.6 + } + ] + }, + { + "id": "ad967b93-f871-4e96-b05f-b226a6699266", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "rubiocarl", + "reviewDate": "2021-02-21T19:49:10", + "stars": 5, + "verifiedUser": false + }, + { + "id": "448ee7e3-48d7-486e-a987-2380c8dc89d3", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "michaelturner", + "reviewDate": "2021-12-15T07:48:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "beb80d7f-a3e7-4124-b1aa-cc99a12025eb", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "whitejames", + "reviewDate": "2021-03-22T12:48:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "708ced6f-ee3c-408e-b77d-9b457424a8c0", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "ryan35", + "reviewDate": "2021-12-28T05:39:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0be476c4-6459-482a-9d2d-a04918536bab", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "oconnorjohn", + "reviewDate": "2021-06-17T00:22:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "675ee303-df08-4945-9df7-bd6c5847dfd3", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "ariasann", + "reviewDate": "2022-06-10T14:25:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fec44b9f-8a2d-4f08-9029-a7443bcfe3ff", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "ashley48", + "reviewDate": "2022-10-15T00:43:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "86c19c12-0d2e-46d4-b74c-faa35ecb71cb", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "normancollins", + "reviewDate": "2021-05-10T23:56:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2aff2670-b9af-4663-be4c-12e284c37d07", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "laura40", + "reviewDate": "2021-11-26T10:54:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "29eb11ca-6bed-4f6a-8752-cd79c26b926a", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "ricardo78", + "reviewDate": "2021-08-16T13:34:43", + "stars": 5, + "verifiedUser": false + }, + { + "id": "603d79a3-df1c-4599-b322-cf7e22d4c6c5", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "travis88", + "reviewDate": "2022-03-13T22:18:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6cc6abed-1191-427e-82f1-39ebbd57b8fd", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "stephendunn", + "reviewDate": "2021-05-18T08:27:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7a5fcf24-b5c5-462b-8bd8-9792e041a653", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "brianvilla", + "reviewDate": "2021-06-13T11:14:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Micro (Steel)", + "description": "This Premium Keyboard Micro (Steel) is a key-less switch for use with any modern keyboard without any cables. With its built-in wireless connection, your keyboard will connect to anything from wireless devices to a laptop, laptop case or any keyboard system you own. With this adapter-compatible keyboard, you'll get the comfort of a keyboard that can easily connect to computer, phone, etc. It's designed for use on all modern keyboards. It doesn't cost money, has great features, and", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-06-27T00:37:29", + "price": 107.82, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-11-13T13:26:40", + "newPrice": 117.29 + }, + { + "priceDate": "2024-11-26T13:26:40", + "newPrice": 107.82 + } + ] + }, + { + "id": "db542a80-924c-4b9d-8729-87fd26453c8b", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinezjeffrey", + "reviewDate": "2022-06-28T00:45:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ba04524a-3ef2-4b0a-a705-3d885518bab1", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gramirez", + "reviewDate": "2021-11-13T13:26:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cbec86bd-78ab-4a59-aae0-368cf81e3c0a", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wilsonamy", + "reviewDate": "2022-07-07T21:51:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b7f27d1b-4150-406b-a2ba-afd52d6a30fa", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "contrerastaylor", + "reviewDate": "2022-10-10T11:45:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand + (Red)", + "description": "This Basic Stand + (Red) is just for the player who will get the +1 action. - (Yellow) the action is only valid in the Main stage for a maximum of 2 stages.(5% chance)\n\nNote:\n\nEvery stage has 12 stages and has 1 action. Each stage has 5 action stages and has 1 action active before it's finished.\n\nIf there are 4 action stages", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-06-19T22:11:01", + "price": 192.3, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-03-20T02:14:50", + "newPrice": 185.9 + }, + { + "priceDate": "2025-01-23T02:14:50", + "newPrice": 192.3 + } + ] + }, + { + "id": "eca1ae5a-f077-4e37-af8f-056640f17794", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "customerRating", + "userName": "vmontgomery", + "reviewDate": "2021-03-20T02:14:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f49458ab-72ae-4407-982a-a5732e41d1b3", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "customerRating", + "userName": "gabrielle92", + "reviewDate": "2021-10-19T07:36:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "790b0500-f96f-458a-80c1-ff8d9245103a", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "customerRating", + "userName": "sheila21", + "reviewDate": "2022-03-16T22:05:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eb18e6ca-6563-420d-9900-c7638f7449cf", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "customerRating", + "userName": "marcusschmidt", + "reviewDate": "2022-05-07T22:46:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cb7993fb-5607-4683-9875-00f09a4040b0", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Micro (Steel)", + "description": "This Awesome Mouse Micro (Steel) is an awesome piece of jewelry. It's hard to describe: a pair of shiny, gold, copper-alloy mugs. My brother, a year old and I both love the look", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-02-15T04:01:39", + "price": 248.09, + "stock": 6, + "priceHistory": [ + { + "priceDate": "2021-01-09T22:53:18", + "newPrice": 267.89 + }, + { + "priceDate": "2021-12-08T22:53:18", + "newPrice": 262.78 + }, + { + "priceDate": "2022-11-06T22:53:18", + "newPrice": 265.99 + }, + { + "priceDate": "2024-06-06T22:53:18", + "newPrice": 248.09 + } + ] + }, + { + "id": "7ac233f4-18c0-4bf8-b254-fa8d18c480ef", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rosalesrobert", + "reviewDate": "2021-03-23T03:03:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "264f0926-d1d8-4e74-a79a-7245d9b0a696", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryan42", + "reviewDate": "2021-01-09T22:53:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0c2210b0-806c-4074-9410-1c2645899aef", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angela26", + "reviewDate": "2022-06-28T00:39:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ffeced59-c508-4d8c-8636-9a134b948a21", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sphillips", + "reviewDate": "2022-04-27T16:23:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e8f90c83-592d-4571-97d0-e3debcc66b2a", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stevenkim", + "reviewDate": "2022-07-04T10:23:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "51d73ed3-dcf3-43cc-942d-5e1cb9904886", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qlopez", + "reviewDate": "2022-09-12T20:03:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a39066c5-d00b-4165-8078-3bc796d57f84", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "odonnellmarc", + "reviewDate": "2022-10-25T00:18:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1815c25c-8d4f-4e8a-8272-569dac481b35", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rowlandjoshua", + "reviewDate": "2022-10-09T16:25:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ee2c0b6e-7208-46d9-ab34-310bb1f79581", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hughescatherine", + "reviewDate": "2022-11-08T09:25:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e67f277f-dd5e-4940-8ea9-03d5e24368e1", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mowens", + "reviewDate": "2022-01-25T13:22:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bdd6ea45-52a9-4abb-a603-e26d3a027edb", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alvaradotonya", + "reviewDate": "2022-03-03T04:44:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf0b673d-54e5-434a-ab4f-54f1a5be965b", + "productId": "bf0b673d-54e5-434a-ab4f-54f1a5be965b", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Ultra (Gold)", + "description": "This Premium Speaker Ultra (Gold) is a limited edition, hand made silver-and-black speaker with the classic soundscapes you expect all Premium Speaker Ultra to be offered in. Great for the outdoors, this speaker is perfect for any project needing unique and versatile soundscapes. Its unique", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-07-23T18:53:19", + "price": 449.66, + "stock": 29, + "priceHistory": [ + { + "priceDate": "2021-08-10T05:07:03", + "newPrice": 440.53 + }, + { + "priceDate": "2022-01-24T05:07:03", + "newPrice": 429.75 + }, + { + "priceDate": "2024-02-19T05:07:03", + "newPrice": 449.66 + } + ] + }, + { + "id": "4e560aa5-b336-4e1b-9a13-2dae4e836f6c", + "productId": "bf0b673d-54e5-434a-ab4f-54f1a5be965b", + "category": "Media", + "docType": "customerRating", + "userName": "olsonapril", + "reviewDate": "2022-01-24T07:59:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2850d2cf-3505-4211-8579-a66c37678d3e", + "productId": "bf0b673d-54e5-434a-ab4f-54f1a5be965b", + "category": "Media", + "docType": "customerRating", + "userName": "matthewsantiago", + "reviewDate": "2021-08-10T05:07:03", + "stars": 5, + "verifiedUser": false + }, + { + "id": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Pro (Red)", + "description": "This Luxe Mouse Pro (Red) is manufactured for your mouse and other models. It will allow you to play music in no trouble. Available from 12:00 am for a limited time.\n\nThe Luxe Mouse Pro ($699) $379.99, 16.9 ounces\n\nThis Luxe", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-06-24T20:52:45", + "price": 977.04, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-03-04T18:36:23", + "newPrice": 886.81 + }, + { + "priceDate": "2022-01-11T18:36:23", + "newPrice": 995.91 + }, + { + "priceDate": "2022-11-20T18:36:23", + "newPrice": 946.89 + }, + { + "priceDate": "2024-01-16T18:36:23", + "newPrice": 977.04 + } + ] + }, + { + "id": "16a32b15-d8dc-4f55-9529-2f150b595ae4", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jay22", + "reviewDate": "2021-03-04T18:36:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c2928c44-2985-4c8d-84cd-29e61eae66cf", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laura31", + "reviewDate": "2022-11-21T14:28:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c3cc6275-9e02-423c-bbba-8e9073b7e4c9", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mwilkinson", + "reviewDate": "2021-10-25T01:43:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b2e98cfc-4451-4663-8575-871f7b92a56f", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xwatson", + "reviewDate": "2021-07-12T00:03:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76c2a67e-dd06-4699-ac82-d941fb4c347d", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andrew69", + "reviewDate": "2021-12-02T09:10:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ac4c7976-14e9-414a-8e6d-024ff9cd7bdf", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vickie76", + "reviewDate": "2022-02-27T19:29:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bc792670-9462-4cb1-bcdb-1c9e5d7589e7", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnserrano", + "reviewDate": "2022-03-26T19:00:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d3d16aa4-5279-4a8a-8cd2-760ae33c63e2", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertmartin", + "reviewDate": "2021-05-09T10:23:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9d486966-6ea8-40f2-a310-3e608f9e1853", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniecallahan", + "reviewDate": "2021-08-03T01:15:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6fb92a1a-555b-4dd4-a3ec-7cce6173e873", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashley59", + "reviewDate": "2021-04-03T15:47:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Mini (Gold)", + "description": "This Amazing Speaker Mini (Gold) is rated 4.3 out of 5 by 24.\n\nRated 5 out of 5 by Dainn from Best Speaker I buy this speaker in the US. It is extremely quiet and comes with some of the most amazing", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-07-07T19:55:51", + "price": 777.32, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-09-03T10:30:52", + "newPrice": 762.72 + }, + { + "priceDate": "2022-05-02T10:30:52", + "newPrice": 829.2 + }, + { + "priceDate": "2022-12-29T10:30:52", + "newPrice": 746.83 + }, + { + "priceDate": "2025-06-10T10:30:52", + "newPrice": 777.32 + } + ] + }, + { + "id": "811a954b-f68a-451f-a7ac-f425359586f9", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "angela83", + "reviewDate": "2022-12-29T15:24:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2b6a5fe0-0e1c-449a-bd6b-8a5f3767cf4b", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "patrick23", + "reviewDate": "2022-11-12T09:26:55", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fab1313d-94d1-4948-9ae9-e933bf7356ad", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "jamesjohnson", + "reviewDate": "2022-07-15T00:12:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f63e49f9-68fb-414b-ac8e-8296ba7174e0", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "fcarlson", + "reviewDate": "2022-02-01T07:10:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f6d6f9fa-c61f-4eb2-b2b4-b54675a3e8ef", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "cpearson", + "reviewDate": "2021-09-03T10:30:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "503de12e-cdeb-4fa1-bc3d-bbb004ae5941", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "randy06", + "reviewDate": "2022-05-04T13:25:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "product", + "name": "Basic Speaker 3000 (Silver)", + "description": "This Basic Speaker 3000 (Silver) is in this category. To use your Speaker, just copy and paste the code below: {@link #ShowLanguage}. When you see", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-02-02T08:28:06", + "price": 247.35, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2021-01-12T05:46:05", + "newPrice": 264.65 + }, + { + "priceDate": "2021-06-01T05:46:05", + "newPrice": 226.22 + }, + { + "priceDate": "2021-10-19T05:46:05", + "newPrice": 243.12 + }, + { + "priceDate": "2022-03-08T05:46:05", + "newPrice": 253.77 + }, + { + "priceDate": "2022-07-26T05:46:05", + "newPrice": 232.23 + }, + { + "priceDate": "2025-06-08T05:46:05", + "newPrice": 247.35 + } + ] + }, + { + "id": "d4ed578c-91a9-449d-a7fc-cad9f4d13662", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "oscar13", + "reviewDate": "2021-10-12T03:54:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e4dac57d-c9d4-4514-b1f5-a6af9a14d73d", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "lori77", + "reviewDate": "2021-09-09T17:06:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eaf353cf-f4cb-4358-837e-94fac692cfb3", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "smitchell", + "reviewDate": "2021-01-12T05:46:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ee966842-af0a-4f98-8d4b-337e4f8a61a6", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "nelsondonna", + "reviewDate": "2022-07-29T01:25:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8611bd62-87cf-4f91-9960-b6d190afb2cb", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "edwingardner", + "reviewDate": "2021-08-02T18:18:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9aaf459b-0d7a-47c7-9f23-07c4c65178d3", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "scottjennifer", + "reviewDate": "2021-07-29T23:09:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "042a3a9e-1f5f-4bdb-94f2-761b1ced16b2", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "debra84", + "reviewDate": "2022-04-05T21:56:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "750c9715-852b-4e68-adae-b1f4ac95af99", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "sanchezsusan", + "reviewDate": "2022-05-27T02:51:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7eda25f9-5cd6-4faf-b48a-cb0f30366f81", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "ronald57", + "reviewDate": "2021-02-12T05:37:09", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c4dfc45e-00ce-4141-b1da-07f682b69561", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "robert72", + "reviewDate": "2022-06-06T05:45:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2cb2a0e6-3ea1-4ce1-aff0-15787407988c", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "williamhunt", + "reviewDate": "2021-12-29T18:58:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7c033f7d-dbbe-425c-8109-89d1ccf96c21", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "njohnson", + "reviewDate": "2021-06-30T13:12:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "14206299-ed09-4ade-b676-924565e36410", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Super (Silver)", + "description": "This Luxe Stand Super (Silver) is part of the Limited Edition. This item ships in 2 packs, which can be sorted by the number of packs in a single set. Req.", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-01-26T16:41:47", + "price": 374.6, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-03-02T15:19:13", + "newPrice": 357.5 + }, + { + "priceDate": "2022-09-30T15:19:13", + "newPrice": 361.09 + }, + { + "priceDate": "2023-02-21T15:19:13", + "newPrice": 374.6 + } + ] + }, + { + "id": "d04a41f3-a796-4aed-b671-542dd300ae32", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "marthamendez", + "reviewDate": "2022-09-20T08:07:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6823e967-bd96-4108-9183-8a99bec51d91", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "dbutler", + "reviewDate": "2021-06-05T22:46:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3a7f5725-f2b2-47a0-9efd-7e106d297a1f", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamsallison", + "reviewDate": "2021-09-22T15:45:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4f69d5b6-d620-4a1b-81bd-0e898b6e0e8b", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "pereztodd", + "reviewDate": "2022-04-01T08:14:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "195fc36d-6267-4ff0-9386-f4cc17f61b77", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "kthompson", + "reviewDate": "2021-12-16T23:49:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "992fad3a-5d71-4cff-a030-8a65494ee927", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "fjohnston", + "reviewDate": "2021-06-15T21:52:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ac7406e3-a960-4331-becc-49be09605879", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer18", + "reviewDate": "2021-03-02T15:19:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5dae23a7-5614-4fce-bd98-63a4d9077334", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "ariana92", + "reviewDate": "2022-05-13T16:37:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0bb1d2c3-24c4-4b11-add1-f9a59cfd2441", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "kprice", + "reviewDate": "2021-06-06T04:14:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "43f39c13-a8ef-4ca8-8194-657a7e97de82", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "brianharris", + "reviewDate": "2021-10-11T15:44:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "48750385-3787-481c-91bc-d075b5a0483c", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "smithscott", + "reviewDate": "2022-06-07T23:35:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d0008614-2222-4b07-930c-62d52fc54d1c", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "msharp", + "reviewDate": "2021-07-30T08:48:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "509ef6a5-7c3c-4848-9dc0-5797eabfe866", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "charleswalker", + "reviewDate": "2022-01-25T09:03:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bcc76d20-4a3f-4146-a48c-c86ae9311bcd", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "cassidy47", + "reviewDate": "2021-11-30T09:09:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8e262b1b-89c7-44bb-8c5b-9d1f14ff96f8", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "adkinschristopher", + "reviewDate": "2022-09-30T22:02:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a016a7d1-c154-4956-af33-c731f28ac24c", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "dennisashley", + "reviewDate": "2021-06-26T07:05:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "147e1e01-74f6-46b9-a5d6-94711db3e314", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "testrada", + "reviewDate": "2022-07-06T09:01:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "product", + "name": "Premium TV Micro (Steel)", + "description": "This Premium TV Micro (Steel) is rated 4.7 out of 5 by 15.\n\nRated 4 out of 5 by Bumkop of America from Great for A$$ Great for A$$\n\nRated 5 out of 5 by mike from A Great Video Cable! I bought this after reading in a few posts on YouTube where people said they were so impressed with the quality and quantity", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-01-12T00:42:40", + "price": 126.97, + "stock": 76, + "priceHistory": [ + { + "priceDate": "2021-01-13T06:16:12", + "newPrice": 116.4 + }, + { + "priceDate": "2024-12-17T06:16:12", + "newPrice": 126.97 + } + ] + }, + { + "id": "c9bbfaa5-8dde-4041-8a17-2d84ac2b854d", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "livingstonlynn", + "reviewDate": "2022-05-07T18:38:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf30685f-038a-4725-a055-ba2661df44e8", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "robert45", + "reviewDate": "2021-02-27T23:50:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d5af911d-ed2e-4256-bc9e-53e79c2f1797", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "ryanfriedman", + "reviewDate": "2021-04-15T13:59:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "954e5b23-84f6-4412-bd61-d72eb78fe038", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "curtiscarol", + "reviewDate": "2021-01-13T06:16:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b0b47cae-ea3b-4326-aae0-041c58da64b1", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "michelle38", + "reviewDate": "2021-12-21T17:43:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "50d984c7-4991-4cde-a86c-a627ae11d5a5", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "iclark", + "reviewDate": "2022-05-05T05:57:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4eb5db37-04b5-4261-902e-d8c9c27602a9", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "dixonnicole", + "reviewDate": "2021-04-28T11:21:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "13fb3384-431a-4ece-953e-183006199877", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "briansalazar", + "reviewDate": "2022-04-20T10:57:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b14ca4b9-10c0-4ff7-aac1-1722ad637490", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "joanna45", + "reviewDate": "2021-07-04T16:54:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f1a7cbec-bf0b-4530-8998-92822ae7e9f7", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "tiffanylong", + "reviewDate": "2021-03-26T02:01:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "65a39585-3a71-4357-a9bb-be070c135a49", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "hammondbrenda", + "reviewDate": "2022-10-05T14:32:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dc584bf4-a9f7-4207-8978-73e174618b84", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "hjackson", + "reviewDate": "2021-02-03T22:36:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6b011859-07bc-4b3f-b963-60e94ff8f487", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "nsmith", + "reviewDate": "2022-05-03T00:04:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "productId": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Ultra (Gold)", + "description": "This Amazing Speaker Ultra (Gold) is an ultra-sapphire body that looks stunning in full on super bright sunlight with even more amazing color. The gold has a gorgeous matte finish for a beautiful finish and it doesn't get dirty on the surface from all the wear. The black", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-11-14T01:04:42", + "price": 769.46, + "stock": 60, + "priceHistory": [ + { + "priceDate": "2021-01-29T12:40:53", + "newPrice": 810.53 + }, + { + "priceDate": "2021-12-09T12:40:53", + "newPrice": 718.34 + }, + { + "priceDate": "2022-10-19T12:40:53", + "newPrice": 785.96 + }, + { + "priceDate": "2023-07-20T12:40:53", + "newPrice": 769.46 + } + ] + }, + { + "id": "74a07078-674d-4609-8345-8c9858b4f13b", + "productId": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "category": "Media", + "docType": "customerRating", + "userName": "williamsweeney", + "reviewDate": "2021-01-29T12:40:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "56e655c3-24b4-45bb-8b3e-216517c05944", + "productId": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "category": "Media", + "docType": "customerRating", + "userName": "lisa87", + "reviewDate": "2022-10-19T14:54:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d26ab55-2b5d-47cd-8043-008314c2fe31", + "productId": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "category": "Media", + "docType": "customerRating", + "userName": "burnettjessica", + "reviewDate": "2021-07-03T02:25:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Micro (Silver)", + "description": "This Amazing Phone Micro (Silver) is only available from the S&W website (which it also sells through), although this model is only available in the USA, Europe, Norway, Turkey, and Australia.\n\nThis smartphone is sold only through www.facebook.com/TobiasonUSA.\n\nWe are very glad", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-02-12T17:05:15", + "price": 201.9, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-03-16T08:57:41", + "newPrice": 213.86 + }, + { + "priceDate": "2023-12-01T08:57:41", + "newPrice": 201.9 + } + ] + }, + { + "id": "28db9d79-b997-4c5b-93a2-ad3640c66840", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "omiller", + "reviewDate": "2021-10-19T20:04:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f374a14c-6895-42ff-98a6-35a8d3a9fa57", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "travis14", + "reviewDate": "2021-06-19T10:12:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "92d34a55-1adb-498b-a223-ac729643aaea", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifer24", + "reviewDate": "2021-04-22T14:29:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "841c7322-484e-4fac-9930-620f1216082b", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "mrogers", + "reviewDate": "2021-08-19T06:17:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9b9e8ad7-0877-4a46-b7c4-bfdea62cd559", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "steven25", + "reviewDate": "2022-06-24T15:41:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5aa37aa3-1b8f-4c61-bef1-8cf0b613200e", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "kennethphillips", + "reviewDate": "2022-08-23T02:53:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "de90cb88-a14f-433e-ad99-911663fbddbc", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "ellenberry", + "reviewDate": "2021-04-04T19:43:27", + "stars": 4, + "verifiedUser": true + }, + { + "id": "eaf91980-0170-4e3c-b8cf-36cd26d67617", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsjames", + "reviewDate": "2021-05-06T08:26:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7e3e3ab9-e954-4426-ac99-8dafc8868dd7", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jodynelson", + "reviewDate": "2021-04-18T14:57:23", + "stars": 5, + "verifiedUser": false + }, + { + "id": "2c8b85f5-d0dc-4af0-a27a-59824975d712", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonesmary", + "reviewDate": "2022-04-13T12:36:52", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4f9a681f-2c59-4afd-96b7-949eca8c8246", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "hkirk", + "reviewDate": "2022-04-26T08:00:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a0be340b-2d79-4712-a6c1-e27bdc6171f4", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "khinton", + "reviewDate": "2022-12-28T20:47:21", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ebabf955-db4b-4ca1-8d5a-e5f579f92711", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissa88", + "reviewDate": "2021-03-16T08:57:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9c6d1bb8-9400-4ded-8069-e12d9008efee", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "iancarter", + "reviewDate": "2022-07-02T09:22:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "285fc5d3-a1f6-4a34-8108-c60ce6f7a594", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "wardashley", + "reviewDate": "2022-08-05T20:37:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cdb17216-bd9f-4a85-b26d-bd8a44e14761", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "rherrera", + "reviewDate": "2021-04-30T06:41:55", + "stars": 4, + "verifiedUser": false + }, + { + "id": "dc0bcc51-75e8-46f2-9d13-e6e5244c2a1b", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "clayton25", + "reviewDate": "2022-12-30T10:55:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4f7d9b59-9266-4fe7-a0ac-8e8ddbda2fab", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "samuel16", + "reviewDate": "2022-01-02T20:58:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bb9411a8-8548-4942-9abd-948f78702559", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "product", + "name": "Premium Speaker + (Black)", + "description": "This Premium Speaker + (Black) is a free option for the Premium Speaker at only $6.98 (regular price)", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-09-27T12:29:32", + "price": 440.34, + "stock": 72, + "priceHistory": [ + { + "priceDate": "2021-01-30T07:59:52", + "newPrice": 479.8 + }, + { + "priceDate": "2021-07-23T07:59:52", + "newPrice": 403.85 + }, + { + "priceDate": "2022-01-13T07:59:52", + "newPrice": 459.72 + }, + { + "priceDate": "2022-07-06T07:59:52", + "newPrice": 439.33 + }, + { + "priceDate": "2022-12-27T07:59:52", + "newPrice": 463.08 + }, + { + "priceDate": "2024-09-17T07:59:52", + "newPrice": 440.34 + } + ] + }, + { + "id": "93029503-c476-4513-8468-56eecad52020", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "zbright", + "reviewDate": "2021-01-30T07:59:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4bcf1661-2192-46bf-a880-b0c41a880a3d", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "sarah39", + "reviewDate": "2022-05-23T03:50:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "53796b93-d8df-4bff-a5a5-98b3d8ac3aa9", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "joannajoseph", + "reviewDate": "2021-10-26T15:09:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "76d40580-dc28-4781-92a8-04b019ba7678", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "gomezandrew", + "reviewDate": "2021-05-16T10:46:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "098f635a-27d1-4855-9347-1bf9952ff2c9", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "mbaker", + "reviewDate": "2022-10-10T05:47:23", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3fcd60ba-0bb8-4e67-bdfc-895dbbdd8382", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "dylanberry", + "reviewDate": "2022-06-10T19:18:50", + "stars": 4, + "verifiedUser": false + }, + { + "id": "98dfee2e-f371-4aa8-8865-7d71fd00c936", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "jason81", + "reviewDate": "2022-01-30T01:14:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f7103dd8-fc09-4677-badb-66750c3609a3", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "fostermichael", + "reviewDate": "2022-05-13T05:07:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9871b1a2-25ad-44a6-a7bf-f007456b0d9a", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "jonathangross", + "reviewDate": "2021-07-09T06:48:06", + "stars": 3, + "verifiedUser": false + }, + { + "id": "aee7bc26-f593-4c15-b089-d444eea2ec1a", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "fostertanner", + "reviewDate": "2022-08-28T11:49:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e948e310-34c2-43b8-852d-a4f0de6fcf38", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "rodriguezbenjamin", + "reviewDate": "2021-03-23T03:20:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ca11e9b4-02d9-4c8b-a0be-10b883dcd161", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "jamie13", + "reviewDate": "2022-11-25T07:39:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "624a788c-d442-4eee-85df-4d1747a9237e", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "bethhester", + "reviewDate": "2022-12-27T19:30:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "39e5e444-0a63-4acf-8286-ae819df34276", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "xlawrence", + "reviewDate": "2021-06-18T22:02:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a47e64cb-5000-4227-ab88-eef418084f39", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "yvonneperry", + "reviewDate": "2022-09-05T07:11:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Pro (Silver)", + "description": "This Luxe Keyboard Pro (Silver) is not simply made for Mac users, because it's designed for the Mac (and is an OS X machine, not the Mac!) It's not just that they are all built with Mac-optimized, super low-resolution keyboards. It's just that when you add them to your Mac, the top edge gives way to the bottom", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-07-02T09:36:31", + "price": 396.25, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-05-22T20:18:29", + "newPrice": 412.74 + }, + { + "priceDate": "2022-03-15T20:18:29", + "newPrice": 396.25 + } + ] + }, + { + "id": "a3b46837-810e-4755-8131-48aeaadbbc49", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsmichele", + "reviewDate": "2022-11-14T22:28:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7e53eee4-e2b1-482d-90ef-9fc3490eafb3", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aalexander", + "reviewDate": "2021-05-22T20:18:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "154ecffd-9c49-472e-9380-ec05c3d56d3a", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fostertimothy", + "reviewDate": "2021-10-19T12:02:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "44a7ff8a-954f-4818-8e53-77547d8e3f36", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jespinoza", + "reviewDate": "2022-02-28T18:13:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Mini (Gold)", + "description": "This Basic Stand Mini (Gold) is rated 3.5 out of 5 by 4.\n\nRated 5 out of 5 by jaybegg from Excellent product, especially with", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-04-18T02:56:46", + "price": 440.71, + "stock": 33, + "priceHistory": [ + { + "priceDate": "2021-09-26T12:14:41", + "newPrice": 469.1 + }, + { + "priceDate": "2022-11-09T12:14:41", + "newPrice": 440.71 + } + ] + }, + { + "id": "704894e4-b969-4f67-a038-5c5c02096854", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "bartonjoshua", + "reviewDate": "2022-01-18T14:25:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "133ebfb3-7b53-4484-8046-878350a3a1c2", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael89", + "reviewDate": "2022-10-07T22:04:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5f1394ce-3a61-4ba7-becb-42279d56c7e5", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "dawn92", + "reviewDate": "2022-07-19T03:54:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "233897e4-9a79-42ee-b894-edcda3b967ef", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "gordonscott", + "reviewDate": "2022-03-31T00:33:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c56f5197-abf9-4a3a-89ba-2c5d8729adae", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "elizabeth70", + "reviewDate": "2021-11-05T10:36:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "af0e6edf-fd4d-42aa-b541-b8aad507059d", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "brett24", + "reviewDate": "2022-10-26T07:56:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4aade5d4-30a0-4f10-8d43-0573c35fb1c2", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "michaelgarner", + "reviewDate": "2021-09-30T15:09:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4979659e-6cc8-4d2f-9052-aba7f0ffcb2c", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "jford", + "reviewDate": "2022-12-31T18:49:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "98a1e037-4996-4aa8-ae00-713ca2115494", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "shanesmith", + "reviewDate": "2021-09-26T12:14:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6257b9a2-430f-4812-b72f-796cc93bc6cd", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "stefanie71", + "reviewDate": "2022-11-14T06:34:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8d4acb0c-9058-4ee1-bd41-07bd48400b9d", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "vlucas", + "reviewDate": "2021-10-30T04:38:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6d06f57a-a7f5-4088-9367-724218e1d68b", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "jstuart", + "reviewDate": "2022-12-16T04:49:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "product", + "name": "Awesome TV Pro (Gold)", + "description": "This Awesome TV Pro (Gold) is not just for watching TV anymore. It's for viewing videos using the most advanced apps that come with Android.\n\nIn a recent interview at GDC, GIMP CEO Jack Dorsey gave an impressive list of other smartwatch apps that he recommends to anyone, anytime they need a new app installed:\n\n\"I'd say every single smartwatch has a smartwatch app that you use for whatever", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-03-19T08:19:57", + "price": 550.5, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-01-20T06:42:16", + "newPrice": 527.17 + }, + { + "priceDate": "2022-11-02T06:42:16", + "newPrice": 526.58 + }, + { + "priceDate": "2023-09-16T06:42:16", + "newPrice": 550.5 + } + ] + }, + { + "id": "be129757-a540-4a26-a5ca-0410c982ee81", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "jpeterson", + "reviewDate": "2022-02-11T08:20:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b69b8bc0-25af-4860-8f6b-30d63e8a1d73", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "melissa95", + "reviewDate": "2022-10-17T08:45:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7703d67b-7943-4001-ab4a-76cce742c497", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "mstone", + "reviewDate": "2021-09-12T20:54:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e086d9f0-6979-4df8-99b2-940e918da21b", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "qbradshaw", + "reviewDate": "2022-03-22T09:13:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3a1d66ea-4709-4eb8-878b-6c23efdb2fb4", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "donovansandra", + "reviewDate": "2022-03-03T07:31:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f97ec939-6b34-4d43-979c-4c00edd53ee0", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "jcolon", + "reviewDate": "2021-04-29T16:35:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "57a26439-dce8-4fd8-8154-450999d49c8f", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "hicksdennis", + "reviewDate": "2022-07-03T18:35:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "eaffabb0-e9e0-4ea2-9e94-d489807b2879", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "oadams", + "reviewDate": "2021-06-06T16:12:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a2ac9cd2-63d9-448b-b489-8c5a084bd0dc", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "haneyfrank", + "reviewDate": "2022-07-17T07:19:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "89104293-bd8c-4c2b-aa16-b599522bd9b7", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "ashley08", + "reviewDate": "2022-05-21T05:35:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8f58ae66-6bf4-4aab-9f6d-55b55d789516", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "tbennett", + "reviewDate": "2021-01-20T06:42:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0e1e978c-7040-4d85-a836-65bdf8f469b1", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "danielvillegas", + "reviewDate": "2021-07-18T01:33:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6c8d2810-c6d4-4bde-9dbe-9ea7847bde3a", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "nguyenamber", + "reviewDate": "2022-11-02T07:42:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7c8d6096-6ecf-4800-899f-54fd16668348", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "kristin19", + "reviewDate": "2022-07-06T20:46:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer 3000 (Black)", + "description": "This Amazing Computer 3000 (Black) is a beautifully designed, fully programmable, computer that can handle virtually any work you might do; any computer. It is a super-computer that combines a wide variety of features to create an awesome game machine – a computer", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-11-18T23:22:12", + "price": 676.25, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-03-20T06:56:55", + "newPrice": 732.52 + }, + { + "priceDate": "2021-10-17T06:56:55", + "newPrice": 633.17 + }, + { + "priceDate": "2022-05-16T06:56:55", + "newPrice": 687.79 + }, + { + "priceDate": "2022-12-13T06:56:55", + "newPrice": 694.48 + }, + { + "priceDate": "2024-11-18T06:56:55", + "newPrice": 676.25 + } + ] + }, + { + "id": "3fd3944d-9607-4075-8426-95961c9ef970", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "marilyn62", + "reviewDate": "2021-12-17T02:17:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e05b50db-7d7d-426e-ab81-cea75c6d623d", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "david44", + "reviewDate": "2021-09-10T00:24:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c79e8400-5dd7-491a-9c04-82ae4a26eda6", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "sadams", + "reviewDate": "2022-03-11T14:08:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2a1dfc0f-026d-4ad6-b03e-79eebc0c8913", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "epeterson", + "reviewDate": "2021-06-26T20:36:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "62e86e2a-3c92-4195-8acb-f620d7d12565", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "tiffanywinters", + "reviewDate": "2022-08-06T21:02:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5392dc7b-d526-464c-866f-cea6baa39299", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "warrenmike", + "reviewDate": "2022-05-31T15:41:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "22976071-f6a9-4f1f-bcb9-3a4abf18c6c1", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "fishertom", + "reviewDate": "2022-05-03T11:11:05", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a7509ae0-4ee2-48e7-aadc-02d8f35b33a9", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "xcarlson", + "reviewDate": "2022-07-11T09:59:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fa17ec62-46c0-418d-8c50-dfa41a4464f5", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "qfreeman", + "reviewDate": "2021-08-03T07:18:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3ad0b7ec-e81e-42a9-beea-838cfa540cb8", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnathan21", + "reviewDate": "2022-12-14T17:35:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "af219960-2d3e-4789-8d0a-2feb89b488fb", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeffrey53", + "reviewDate": "2022-08-21T00:59:25", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b4a45b56-5bda-4d5f-b395-275c41ab6e19", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "jenna12", + "reviewDate": "2021-11-04T02:26:51", + "stars": 5, + "verifiedUser": false + }, + { + "id": "833df82e-fef2-456f-b4f3-baf0651b4df7", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrisrebecca", + "reviewDate": "2022-08-26T08:02:19", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5050f263-888c-4bfe-a0de-99391dbfcc74", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "bsosa", + "reviewDate": "2021-03-20T06:56:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c700a6a7-20c5-4591-9a06-4ff8a251294c", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "pottssara", + "reviewDate": "2021-04-04T10:09:17", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Black)", + "description": "This Premium Computer Ultra (Black) is the first of four ultra high performance computers.\n\nThe model has both a standard and a custom keyboard with four sides. It contains a keyboard on the left with a stylus and stylus on the right with a standard keyboard. There are three types of keys, including left, right", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-06-30T21:42:03", + "price": 649.22, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-06-12T11:09:55", + "newPrice": 600.06 + }, + { + "priceDate": "2021-12-17T11:09:55", + "newPrice": 710.66 + }, + { + "priceDate": "2022-06-23T11:09:55", + "newPrice": 663.36 + }, + { + "priceDate": "2022-12-28T11:09:55", + "newPrice": 615.37 + }, + { + "priceDate": "2025-07-28T11:09:55", + "newPrice": 649.22 + } + ] + }, + { + "id": "40454773-1d3b-41da-b142-1ce386eaf196", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "reynoldsjohn", + "reviewDate": "2022-12-29T17:31:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "737964ad-6854-4844-b8ed-01af9e8e033f", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "terri36", + "reviewDate": "2022-02-09T04:10:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a841da0b-6963-4e7f-a707-38b40d822f28", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "goodmancaitlin", + "reviewDate": "2021-08-08T11:29:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5ff1dbda-f570-4f7c-aae2-259a57a69674", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "cclark", + "reviewDate": "2022-02-24T12:14:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "33e968de-369f-4357-8728-548f385df4cb", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "markduran", + "reviewDate": "2021-06-12T11:09:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "product", + "name": "Basic Filter 3000 (Gold)", + "description": "This Basic Filter 3000 (Gold) is the only Filter that gives a low FPS with its very low amount of \"overclocking\" in it's original build. It also is the only Filter that can be used on 3 models at once. I like mine a lot as an upgrade over it, but", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-12-15T20:29:36", + "price": 1080.24, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-04-03T06:45:59", + "newPrice": 1055.09 + }, + { + "priceDate": "2022-12-01T06:45:59", + "newPrice": 1171.38 + }, + { + "priceDate": "2025-03-10T06:45:59", + "newPrice": 1080.24 + } + ] + }, + { + "id": "543dee7e-9c95-47fe-ac9d-1fe09eefdcdb", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "daydaniel", + "reviewDate": "2022-12-01T19:51:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4a0bdf63-93aa-47d8-8357-5dc165a8fb37", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "nrobertson", + "reviewDate": "2022-03-29T15:37:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "37b1c7a0-1d58-40ec-a864-209cf34bcbb1", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "cmason", + "reviewDate": "2022-05-20T20:04:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dcb8e151-3928-4e3d-848c-cb39aa42967f", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "allendeborah", + "reviewDate": "2021-06-19T08:44:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5e578d0d-ff20-4487-84a0-b2f8017e0557", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "welchkrista", + "reviewDate": "2022-06-08T10:02:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b1ec596c-9b09-4c40-b383-e484e26f3e82", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "robertsondenise", + "reviewDate": "2021-07-13T11:22:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6220545c-8a7a-41a7-b7ec-d19b2270d379", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "kimberly92", + "reviewDate": "2022-08-30T21:48:29", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4db0e8c0-0058-4974-b408-4dbc641d62ed", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "melanie39", + "reviewDate": "2022-08-12T03:06:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "eae37d6c-793e-4d47-bbb2-131d763db6a5", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "tjohnson", + "reviewDate": "2022-09-15T18:04:01", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ad72d821-ed31-4c36-a1cf-8cac764c382c", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "jenniferanthony", + "reviewDate": "2021-09-04T11:16:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ef857d58-1ed2-4a3b-80d5-d1ad87a0c14c", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "jenkinsann", + "reviewDate": "2022-01-28T08:26:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "829429d5-2466-4554-8da2-d4c419d72611", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "browndavid", + "reviewDate": "2022-05-11T23:23:19", + "stars": 5, + "verifiedUser": false + }, + { + "id": "e27dc9e3-8c53-4a2f-a63b-fab408617d00", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "janetreed", + "reviewDate": "2021-04-27T05:43:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9074494d-3927-425a-9fd6-c086e461dc9f", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "heatherrobinson", + "reviewDate": "2021-11-03T04:24:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9c543e25-55d8-476b-94a1-f9188cb3d3a7", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "herreralarry", + "reviewDate": "2021-04-03T06:45:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ba67ef1d-aad7-4c79-919c-30f24002aa64", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "aedwards", + "reviewDate": "2021-09-06T16:09:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "dceeb3df-c949-4223-8a6a-09ea0b5419ae", + "productId": "dceeb3df-c949-4223-8a6a-09ea0b5419ae", + "category": "Media", + "docType": "product", + "name": "Awesome TV Micro (Steel)", + "description": "This Awesome TV Micro (Steel) is a fantastic TV Micro to fit any screen and will stand up to many use cases. Made of durable plastic, the box is extremely large and comes equipped with all parts that", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-11-10T00:43:01", + "price": 431.99, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-02-24T22:43:26", + "newPrice": 467.45 + }, + { + "priceDate": "2021-05-09T22:43:26", + "newPrice": 390.12 + }, + { + "priceDate": "2021-07-22T22:43:26", + "newPrice": 401.25 + }, + { + "priceDate": "2021-10-04T22:43:26", + "newPrice": 464.04 + }, + { + "priceDate": "2021-12-17T22:43:26", + "newPrice": 472.59 + }, + { + "priceDate": "2025-08-13T22:43:26", + "newPrice": 431.99 + } + ] + }, + { + "id": "8b589659-985f-4a8f-8103-7912edec59e8", + "productId": "dceeb3df-c949-4223-8a6a-09ea0b5419ae", + "category": "Media", + "docType": "customerRating", + "userName": "pricerobert", + "reviewDate": "2021-02-24T22:43:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "44b771e3-e31f-4c76-88ae-c4d0d07a4fb8", + "productId": "dceeb3df-c949-4223-8a6a-09ea0b5419ae", + "category": "Media", + "docType": "customerRating", + "userName": "mirandamontgomery", + "reviewDate": "2021-12-19T19:45:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "product", + "name": "Basic Filter + (Gold)", + "description": "This Basic Filter + (Gold) is the one you want to use, but it's too expensive and too slow for some people. It can actually make certain combinations better", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-01-06T22:51:47", + "price": 972.38, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-04-11T15:15:38", + "newPrice": 997.89 + }, + { + "priceDate": "2022-09-27T15:15:38", + "newPrice": 1054.24 + }, + { + "priceDate": "2023-04-20T15:15:38", + "newPrice": 972.38 + } + ] + }, + { + "id": "62947070-03a1-460c-ba06-c2773b93e3cb", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "herreracindy", + "reviewDate": "2021-10-15T18:47:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c1c21aad-44ed-4bd8-8f86-c0356c225e26", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "ericksonmadison", + "reviewDate": "2021-04-19T10:20:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "394e94fb-3f2a-41d2-a145-1d1bcae4953a", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "michael90", + "reviewDate": "2021-04-11T15:15:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "14c0ab56-bfe6-4a43-8863-acadea016856", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "fsmith", + "reviewDate": "2022-09-28T00:24:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "51ee00d1-d382-4844-8b4f-892ae82914f4", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "kelly39", + "reviewDate": "2021-05-09T07:48:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d7b43f82-66f2-4847-a750-fbd2ef3b30d8", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "harperjoe", + "reviewDate": "2021-11-10T07:42:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d655e246-1ac1-4fef-91f4-2cb723e41695", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "kathryn16", + "reviewDate": "2022-07-06T17:57:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Silver)", + "description": "This Amazing Filter Micro (Silver) is a simple, lightweight, and very lightweight filter.\n\n\nThis amazing filter is the perfect value because of the lightweight, lightweight silver aluminum construction. Made from the", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-06-05T23:30:16", + "price": 269.98, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-02-09T21:21:21", + "newPrice": 279.87 + }, + { + "priceDate": "2021-06-13T21:21:21", + "newPrice": 269.85 + }, + { + "priceDate": "2021-10-15T21:21:21", + "newPrice": 274.47 + }, + { + "priceDate": "2022-02-16T21:21:21", + "newPrice": 255.52 + }, + { + "priceDate": "2022-06-20T21:21:21", + "newPrice": 277.43 + }, + { + "priceDate": "2024-02-06T21:21:21", + "newPrice": 269.98 + } + ] + }, + { + "id": "9a4357f2-ef19-47d9-aff9-5a42533aca0c", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "lukejohnson", + "reviewDate": "2022-06-22T21:59:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "249a2168-985a-478f-b44e-ff341134c395", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "manningmichael", + "reviewDate": "2021-06-27T08:41:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "547978a4-831e-4dd3-8f71-b474f397e57d", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "julie21", + "reviewDate": "2021-04-15T18:44:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c56abc8b-c573-4798-8eec-915b9e98b38f", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "walkerlori", + "reviewDate": "2021-02-11T02:57:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "56944d73-5fcd-4ae4-a6da-a322f80ac3b8", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "lanejill", + "reviewDate": "2021-11-19T17:59:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "19db30e7-a4fc-49b7-ae7a-962a73e039bd", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "idavis", + "reviewDate": "2021-03-28T21:18:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "acfd2ac1-0ba4-42be-9c2b-1a3286a7d35e", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "oyoung", + "reviewDate": "2022-01-18T04:03:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6334794c-3dfb-46b6-a1b9-63071699cdc1", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "david08", + "reviewDate": "2022-04-10T08:13:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f3c58cb6-6631-44ba-9b4a-ee3138ace2fe", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "ahamilton", + "reviewDate": "2022-03-06T18:13:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c0a93f3c-dd98-4c29-944d-8f9e6b079df3", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "qbutler", + "reviewDate": "2021-06-04T20:27:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0bac10f6-6b3d-474d-831a-01b87f3632a4", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "williamkrueger", + "reviewDate": "2021-02-09T21:21:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b4d4ad83-4b40-4c2c-b3f3-e2c9138ad25c", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "johnbates", + "reviewDate": "2021-04-18T09:58:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "353db53a-40bd-4529-bedf-370ecf223c13", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "vgreen", + "reviewDate": "2021-07-02T13:35:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1554a955-0a27-43da-9188-a6d45ff12fd8", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "longhannah", + "reviewDate": "2022-03-23T19:35:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Micro (Gold)", + "description": "This Awesome Computer Micro (Gold) is powered by an Intel Broadwell-E processor, built using the latest Haswell i9-6700K processor.\n\n\nThe computer also has an Intel i5-2500K processor, which will give it a much faster performance than its competitors. In fact, it runs more than", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-06-26T00:11:06", + "price": 932.84, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-01-20T07:20:40", + "newPrice": 952.81 + }, + { + "priceDate": "2022-10-26T07:20:40", + "newPrice": 905.29 + }, + { + "priceDate": "2024-01-12T07:20:40", + "newPrice": 932.84 + } + ] + }, + { + "id": "96ea88c2-7d51-4b08-866f-9e40d6c77e01", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicolasbryan", + "reviewDate": "2021-07-02T04:09:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8c712304-11ae-4b58-b26f-28f015981b6a", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "wilsonanthony", + "reviewDate": "2022-03-01T01:50:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c6b444d1-d124-4b47-b92a-6ff341754543", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "carmen69", + "reviewDate": "2021-06-10T18:36:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8e57e896-a59b-451e-8876-39f38cd36e37", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "ingrammeghan", + "reviewDate": "2022-08-14T20:12:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "244919cb-6862-4ee5-9e51-f9553e267060", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "mikaylacarter", + "reviewDate": "2021-12-10T23:21:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e464a78e-53bd-414b-8de3-61b5a735c5d0", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrismichael", + "reviewDate": "2021-08-05T18:56:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ec666fc6-eb89-4b38-a48f-c310ab8b8e5e", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "xpeters", + "reviewDate": "2022-10-26T23:15:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6e79efa1-3a60-46ed-b7cd-2a757aa332fa", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "ann00", + "reviewDate": "2022-08-08T11:25:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "26c9a3c6-5de9-462b-9001-484528ae51a9", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelle10", + "reviewDate": "2022-07-23T10:38:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "15203bd5-7404-419f-b99c-866f231d1463", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "lewischristopher", + "reviewDate": "2022-09-10T07:18:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3ee2f939-a818-4325-84e3-e2bee2ba3d5b", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "hcollins", + "reviewDate": "2021-03-30T17:40:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c815b33e-b88f-4c7d-93e5-7ce46f9b7bbf", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "angela58", + "reviewDate": "2022-03-11T19:23:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c44105ef-b981-420e-a69d-98d81ff1fab5", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "delgadobethany", + "reviewDate": "2021-12-10T19:35:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "64322575-5619-4948-b6b9-e7bf0865b6a8", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnsontimothy", + "reviewDate": "2022-05-06T08:51:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "33bc5a1b-7114-4132-a5c2-958e196d3871", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "jgilbert", + "reviewDate": "2022-06-14T21:57:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "604d1da9-c0c4-476c-88e0-a7533348790b", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "andersonethan", + "reviewDate": "2022-10-11T18:45:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2fcfaaed-c066-4646-8ef1-f2f8d910cc02", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "james44", + "reviewDate": "2021-12-13T05:36:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c4634ecb-5276-492e-845e-d64072bd5b98", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "james08", + "reviewDate": "2022-03-23T03:09:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "118179a4-e957-481c-ac1c-1908e4840bdb", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "uramirez", + "reviewDate": "2021-01-20T07:20:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ad462062-a249-4333-a5f3-b1c94bbf9896", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "anthony53", + "reviewDate": "2021-05-19T21:22:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Black)", + "description": "This Awesome Stand + (Black) is a powerful, high output stand that makes working at your desk the whole effort of a single day. Featuring a deep purple shine to create high contrast colors and a subtle metallic shimmer (which is good) the stand is also great for the job or any job. The solid metal construction is ideal for making a stand with up to two hands.\n\n", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-08-25T15:15:01", + "price": 684.56, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-03-02T20:40:06", + "newPrice": 680.65 + }, + { + "priceDate": "2022-10-11T20:40:06", + "newPrice": 700.93 + }, + { + "priceDate": "2024-09-14T20:40:06", + "newPrice": 684.56 + } + ] + }, + { + "id": "544f4dc0-e6b8-440f-a88b-21a918ce2ea1", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "btucker", + "reviewDate": "2022-07-20T15:52:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c576ac87-e967-465c-9111-0d5a09d16b10", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "aburns", + "reviewDate": "2021-08-24T10:38:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d5530f0a-2f08-4221-a802-1f1130a96dbc", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "foxmatthew", + "reviewDate": "2021-07-06T21:43:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9d38a0e0-d279-41d3-b680-890e7b662041", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "joseph64", + "reviewDate": "2021-04-08T04:16:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d10c8b43-5357-4860-addb-23502760051e", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "ricebruce", + "reviewDate": "2021-03-25T11:05:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "093ed196-ae43-46f1-99cf-3b09e1db1726", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "erica40", + "reviewDate": "2021-03-02T20:40:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "57bad60c-653e-4210-842e-556c73cebaaa", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "sergio50", + "reviewDate": "2022-06-17T10:06:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "52271ecf-2e64-4d3c-8b30-d2245f7ded48", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "schmidttodd", + "reviewDate": "2021-04-06T16:21:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "678a9e9d-5110-45b8-a3da-bb6bbf6f906d", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "blackwellkaitlyn", + "reviewDate": "2021-07-13T00:45:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0c46ef6c-9240-4220-9243-66b2abb96c76", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "trandana", + "reviewDate": "2022-07-21T10:28:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "01a15f51-a0c6-44b9-b734-133d00e0c49c", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "medinascott", + "reviewDate": "2021-11-21T12:43:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b4931308-6b72-4b90-9c94-96af4dd52975", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "woodsamber", + "reviewDate": "2022-10-12T02:15:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "39aff886-adf1-4d34-88a0-5b5826a5298e", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "dmunoz", + "reviewDate": "2021-08-08T09:54:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "964de9c7-b326-4ae4-9376-f91011eb5362", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "mason04", + "reviewDate": "2021-06-07T05:26:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "964631e6-4acf-4b2f-9184-79fe03871bf1", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "hendersondaniel", + "reviewDate": "2022-09-10T19:00:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6a8bcc1d-15de-4187-bcbb-22633e49d629", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomas70", + "reviewDate": "2021-10-05T00:32:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8b402df8-efa3-48ba-916b-277a5c034b14", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "rcox", + "reviewDate": "2022-08-11T10:38:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Ultra (Black)", + "description": "This Premium Stand Ultra (Black) is rated 4.9 out of 5 by 5.\n\nRated 2 out of 5 by rj from Poor quality for a low price! The product seems to be not good quality when you only look at some of the colors. It was a shame because this is the only stand and I will buy a replacement. Only 5/6 of the", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-05-23T13:53:31", + "price": 199.35, + "stock": 70, + "priceHistory": [ + { + "priceDate": "2021-01-10T11:56:17", + "newPrice": 181.83 + }, + { + "priceDate": "2022-01-01T11:56:17", + "newPrice": 190.41 + }, + { + "priceDate": "2022-12-23T11:56:17", + "newPrice": 218.02 + }, + { + "priceDate": "2023-02-09T11:56:17", + "newPrice": 199.35 + } + ] + }, + { + "id": "9b2ed569-559b-472b-b266-59a613013ab9", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasmitchell", + "reviewDate": "2021-01-10T11:56:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "318dc915-3f05-4f38-ace8-b3d0903a10da", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "ashleyrodriguez", + "reviewDate": "2021-09-20T11:05:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b60bb1ca-889e-48f8-93c7-bdc6717363c4", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "perry80", + "reviewDate": "2022-03-06T11:32:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "438ebdd4-d13d-442c-bdfa-0db4a34cc8bb", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "patricia36", + "reviewDate": "2021-07-29T21:54:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bbc0f57d-5fa7-4baf-a72e-56d6180f6838", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "robertsemily", + "reviewDate": "2021-10-24T13:54:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8801233c-f836-4870-8fc8-f1600b3aae44", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "tracyking", + "reviewDate": "2021-11-26T09:00:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a949813e-7182-4077-8674-c85d8376dd9d", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "rramirez", + "reviewDate": "2022-07-20T09:11:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2bd3f36b-db1c-4eec-ab48-aa5c204b3b8f", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "lisagreene", + "reviewDate": "2021-10-27T08:52:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9087b584-92ef-401d-8e4a-38d8306d58ac", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "randywest", + "reviewDate": "2022-12-23T15:39:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ceaca8e2-ad02-491f-970b-8b88a0d22574", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "darren16", + "reviewDate": "2021-03-07T09:05:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aa30f0ff-dfea-48ed-aafa-c3a536680f86", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "qjensen", + "reviewDate": "2022-06-13T16:10:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "316c02c9-1523-4dc1-896f-5ad59feaf485", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "katie29", + "reviewDate": "2022-11-14T00:30:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eea10f71-86e4-415e-9fc0-873fc363f2de", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "molinajacqueline", + "reviewDate": "2021-05-12T10:22:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fb703ada-b687-4c10-8688-a25dfc7122f0", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "brownmichael", + "reviewDate": "2022-12-18T04:13:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "product", + "name": "Awesome TV Super (Gold)", + "description": "This Awesome TV Super (Gold) is an interactive, action game set in a cybernetically connected planet inhabited by a group of human, robotic aliens. You play as a robot named Robot", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-12-22T06:26:36", + "price": 626.09, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-01-13T09:39:38", + "newPrice": 627.75 + }, + { + "priceDate": "2021-12-24T09:39:38", + "newPrice": 577.14 + }, + { + "priceDate": "2022-12-04T09:39:38", + "newPrice": 626.57 + }, + { + "priceDate": "2025-06-16T09:39:38", + "newPrice": 626.09 + } + ] + }, + { + "id": "030df61f-3544-44b2-9d5f-3028e7b28154", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "jjohnson", + "reviewDate": "2021-01-22T10:50:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "95d7dcf7-d9d9-496b-a4e0-3e5c102a97aa", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "sarahdixon", + "reviewDate": "2022-12-04T19:17:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c9b0924c-8261-4bb7-9298-aa139b64b042", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "gmyers", + "reviewDate": "2022-03-14T10:54:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a101674a-eb33-404c-9e5d-e3e6b1f1ff4f", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "huffsarah", + "reviewDate": "2022-10-12T17:58:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ce4fb176-29d9-4ce3-9f5d-ceef20bc1763", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "joshua84", + "reviewDate": "2022-05-29T08:20:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "53a5b1d7-d165-4bff-98cc-1148b2f36d6e", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "swilliams", + "reviewDate": "2021-02-03T00:30:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c56b772f-5cb5-4e1c-ab53-cca968816a42", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "josephrobinson", + "reviewDate": "2021-07-22T22:00:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e0dd107b-abea-4af8-8777-b8daf6bd57e5", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "rosalesandrew", + "reviewDate": "2021-01-20T12:49:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "576a4744-f1be-456e-b8f0-46f546bd5ea0", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "jonestimothy", + "reviewDate": "2022-09-13T02:26:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "604beb5e-3250-4cc7-9bd7-ed81e3b929d1", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "sandra21", + "reviewDate": "2021-10-23T12:14:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e3998164-9232-4ba8-808f-441c3ef99ccf", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "christinejenkins", + "reviewDate": "2021-09-15T13:13:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "843447fd-7fdd-4dc4-bff5-163e4a46b6c7", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "hkaiser", + "reviewDate": "2022-10-28T09:20:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "46fb31a6-8696-400c-a5b2-f8824f7c997f", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "michael51", + "reviewDate": "2022-11-30T14:48:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "755c2eca-03b3-4c9d-9fd1-5b8fdcd4b883", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "tdavis", + "reviewDate": "2021-05-15T15:46:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "93bc9621-fc20-41ed-a2b2-2a48cd526bd5", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "jgalloway", + "reviewDate": "2021-01-13T09:39:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a86c55ae-6e4a-455f-9803-c4e0ec4ab62b", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "nicholas12", + "reviewDate": "2022-05-10T11:07:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7c894685-f4e6-4c26-bfce-d809306c8e54", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "dwaynelopez", + "reviewDate": "2021-06-08T18:09:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2549a6e8-e25c-4c0b-8f41-6c7b998a7005", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "jonesdavid", + "reviewDate": "2021-10-12T05:31:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dba4f99a-125f-43c3-ba2e-07c681a596ec", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "ericanash", + "reviewDate": "2021-11-09T23:18:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Pro (Red)", + "description": "This Amazing Stand Pro (Red) is a full size Super Glide stand top. It features a full sized head which can be used as shoulder straps, and is a bit on the heavy side with the", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-05-20T05:52:11", + "price": 931.77, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-02-03T22:05:04", + "newPrice": 989.87 + }, + { + "priceDate": "2021-12-06T22:05:04", + "newPrice": 942.27 + }, + { + "priceDate": "2022-10-08T22:05:04", + "newPrice": 947.88 + }, + { + "priceDate": "2024-05-25T22:05:04", + "newPrice": 931.77 + } + ] + }, + { + "id": "2724b072-b3f4-4c13-bb34-e3e27f6c6058", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "richard69", + "reviewDate": "2022-02-17T06:28:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bee1e5bc-195e-4163-8801-4edeb810b8f8", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "melanie10", + "reviewDate": "2022-09-28T14:46:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8d26bf27-a4be-40f8-9d15-5a96ab8ffc24", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "yacosta", + "reviewDate": "2022-04-06T13:51:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "31218c16-a4d9-4349-a000-3d88a8b02542", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "davilachristina", + "reviewDate": "2021-02-03T22:05:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "117e633f-5807-4f6c-8358-f9cd89d9e031", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "mlyons", + "reviewDate": "2022-10-06T09:17:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "71e169dd-d446-4117-9474-0174a121f702", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "spencermassey", + "reviewDate": "2021-08-27T20:28:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "27a2699b-7744-4faa-aa74-40e6acdffce1", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "nlewis", + "reviewDate": "2022-06-28T06:05:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1df9907a-15e8-4c0f-888d-4e3b26444c2e", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "dbaker", + "reviewDate": "2022-09-28T10:55:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f57bf402-2865-4a5a-9b27-edb68f114986", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonathan38", + "reviewDate": "2022-07-02T07:31:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7e2ab1d1-501c-4bf2-8dd2-f83633de40dc", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "porterdale", + "reviewDate": "2021-04-29T22:50:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9bf6a1e2-f50b-4cb2-b5f1-cbd9c13efb95", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "kayleepowell", + "reviewDate": "2022-03-11T19:13:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c7a74fa5-58ec-4708-aca5-2e616e8fd2d8", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarahanderson", + "reviewDate": "2022-03-27T16:22:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c6d99f79-ccde-4510-b0af-d22ee328554a", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "amber22", + "reviewDate": "2022-05-10T06:20:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6bba6572-f7bd-46bc-a41d-b4541c1e46eb", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael73", + "reviewDate": "2021-03-17T22:13:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f1ed8162-fa1c-4c04-8756-de8b79933289", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "baldwinamy", + "reviewDate": "2022-07-06T15:27:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aa5672d4-a5e3-43b3-bcc1-d64956c16e7b", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "hectormcfarland", + "reviewDate": "2022-10-09T05:01:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4bf7a5ff-1a90-441b-913a-a2ccfa13f59e", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "stevensjodi", + "reviewDate": "2021-09-09T08:18:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "69812845-bca0-451d-9327-7e0ad3d54772", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Steel)", + "description": "This Awesome Phone Super (Steel) is a beautiful sleek titanium phone, with a super slim build with all its functions. It also features a curved bezel as well as a silver back with a matte black finish. Just like in other titanium phones, the device sports a removable battery pack, 3GB or 4GB of RAM.\n\nAndroid 4.3 Jelly Bean is another important feature for Samsung phones. To", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-01-16T00:44:36", + "price": 315.13, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-01-15T17:37:28", + "newPrice": 306.94 + }, + { + "priceDate": "2022-11-28T17:37:28", + "newPrice": 329.1 + }, + { + "priceDate": "2024-05-01T17:37:28", + "newPrice": 315.13 + } + ] + }, + { + "id": "796f1c86-0eb1-424f-987a-15081c993adf", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandon97", + "reviewDate": "2021-11-04T04:18:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5213d55d-e631-400d-abc6-70d0b857ecbd", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "bestrobert", + "reviewDate": "2021-01-15T17:37:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7425711f-de20-4c92-b86e-70fe0ac3b3b9", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "zavalakenneth", + "reviewDate": "2021-06-11T03:05:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2ac376b9-e0fe-433c-909c-0a5db1d7c523", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleyhoward", + "reviewDate": "2021-09-05T00:34:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "78adde82-5d77-4b82-8ad8-101f9c250060", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "cynthia31", + "reviewDate": "2022-07-09T03:23:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "83520ad6-d5c2-470d-8afa-81efed9ea85e", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "frankknight", + "reviewDate": "2022-02-17T09:46:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "dbdf3ccf-f807-4a23-8c03-ff34a9c48abf", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "kramerrobert", + "reviewDate": "2021-07-09T06:45:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9e804570-748f-40ea-a911-ab9038b4418f", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "joshua92", + "reviewDate": "2022-01-25T09:42:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "16db5a64-4dd6-4cb1-90ac-7fb2bd11b671", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "trannancy", + "reviewDate": "2022-06-08T09:26:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "138e71e8-972d-48f8-a1af-2dda48a2696b", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "pperry", + "reviewDate": "2021-04-07T11:14:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c9a9a267-6030-40d7-a3c8-91925b3f9948", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "samuel51", + "reviewDate": "2021-09-29T19:21:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1155b570-820b-42d0-8f20-64856d05fee7", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "paynecraig", + "reviewDate": "2022-04-07T06:27:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b8aaabbf-c4e8-42e5-b532-845659ac2110", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "greenlinda", + "reviewDate": "2022-07-21T09:55:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "63b9a6cc-d378-4c73-8713-2b3de62f661e", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "meadowsdavid", + "reviewDate": "2021-03-12T03:53:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "aa06b6c9-ba90-41ed-8f6b-79c3745cc855", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "jordanamanda", + "reviewDate": "2022-07-17T01:30:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b5391213-19ac-4392-acea-0d608ebb7b75", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "laura85", + "reviewDate": "2022-11-29T00:23:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3d517034-63a1-46e8-8259-b50045e312f7", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "glyons", + "reviewDate": "2021-04-08T11:19:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ccc3d91a-0ce6-4d50-897c-3c6d9bf6800e", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeremiahwalls", + "reviewDate": "2021-10-31T05:48:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5225a75f-a666-4034-907f-af53b7d981d6", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Silver)", + "description": "This Amazing Filter Micro (Silver) is great for those who cannot afford the expensive 4x3 Micro filter sets made by the original Japanese maker of that device. This lens is super cool for using the 4x3 in some situations without having to pull out a filter or the 1/4th lens mount.\n\nThe first shot shows the great silver filter filter kit.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-01-11T04:17:42", + "price": 600.26, + "stock": 10, + "priceHistory": [ + { + "priceDate": "2021-02-05T19:01:46", + "newPrice": 592.6 + }, + { + "priceDate": "2023-11-21T19:01:46", + "newPrice": 600.26 + } + ] + }, + { + "id": "343b37af-cb98-442b-b99c-a09447739954", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "jillian14", + "reviewDate": "2022-11-21T02:49:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f7040f2e-a38f-4331-857f-176a668168ae", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "billybass", + "reviewDate": "2022-02-06T01:39:29", + "stars": 5, + "verifiedUser": false + }, + { + "id": "97c4085d-2107-45ca-81a1-d8cbdeaca8b1", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "lstone", + "reviewDate": "2022-01-30T17:23:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3f4043aa-9344-47e2-b60e-e05db5aa3d5d", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "kyle34", + "reviewDate": "2021-04-04T10:44:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "87107692-f5dd-4412-933e-25074dfd88dd", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "amy90", + "reviewDate": "2022-12-16T06:50:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8d59d652-bc21-4f2a-bcd4-28650da115b7", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "deandonald", + "reviewDate": "2021-05-05T00:51:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5580ae3e-930b-45cf-8f56-8ae33744f24e", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "linda20", + "reviewDate": "2022-05-09T02:06:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "772ec029-c0a3-4072-8ce7-2effe227b454", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "joseph49", + "reviewDate": "2022-08-15T04:01:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6cd21f1d-4b37-4293-9878-0b21f3127f42", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "hturner", + "reviewDate": "2022-02-26T12:18:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "59c59355-5cf5-409d-87e8-4cfecb1cbbba", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "jonesstephanie", + "reviewDate": "2022-04-29T21:55:28", + "stars": 5, + "verifiedUser": false + }, + { + "id": "42de4484-830a-47cb-9b74-83b69ae354e5", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "rebeccadavis", + "reviewDate": "2021-11-27T09:14:05", + "stars": 5, + "verifiedUser": true + }, + { + "id": "57d97ead-e5e8-4ce6-8559-ee6de3c39d40", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "gloverpatrick", + "reviewDate": "2021-02-05T19:01:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "85695031-f924-4afd-b07f-d41ed7fd4a35", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "lewissierra", + "reviewDate": "2022-01-16T21:46:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0da247fd-54df-43ca-b93f-e70bab1662bc", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "eluna", + "reviewDate": "2022-06-23T20:05:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "786102e8-0d7e-4244-aa04-8114a07f064c", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Micro (Steel)", + "description": "This Luxe Phone Micro (Steel) is a perfect companion to your smartphone\n\nYou are getting your phone from an LG device with a single micro SD card to expand your personal data\n\nPerfect for use in the middle of your day, as long as your time and time is spent with your friends or family\n\nPerfect for using just one phone or tablets,", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-03-05T11:42:45", + "price": 293.9, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-03-04T08:25:46", + "newPrice": 278.4 + }, + { + "priceDate": "2022-08-19T08:25:46", + "newPrice": 273.12 + }, + { + "priceDate": "2025-06-28T08:25:46", + "newPrice": 293.9 + } + ] + }, + { + "id": "11ec8025-b04a-48e0-9379-921bd052a04b", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "davenporttonya", + "reviewDate": "2022-08-20T00:36:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "791fa789-b611-43c9-add9-1d6bba46581a", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "allenjeffery", + "reviewDate": "2021-03-04T08:25:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3fc2a785-dd17-4449-b6ae-6076a28303af", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "brownjorge", + "reviewDate": "2021-04-03T20:50:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f046c162-9bd9-47c0-99e6-7d6564b5599b", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelle51", + "reviewDate": "2022-06-12T02:49:28", + "stars": 3, + "verifiedUser": false + }, + { + "id": "93d8853d-55cf-4500-ab0d-d7e56480409e", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "douglasdavidson", + "reviewDate": "2021-12-09T14:21:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5b358175-4b19-47f1-987d-06e8ffbaa3e6", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "esparzajoanne", + "reviewDate": "2022-08-18T00:20:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Super (Black)", + "description": "This Premium Stand Super (Black) is a super wide angle lens for Canon's new Light Cinema DSLR models featuring 16 megapixels. Unlike other Canon cameras this lens comes with a", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-06-18T16:39:02", + "price": 896.33, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2021-02-21T09:08:48", + "newPrice": 862.34 + }, + { + "priceDate": "2023-01-15T09:08:48", + "newPrice": 896.33 + } + ] + }, + { + "id": "f25250ce-33e1-436c-a681-e0b0f85abf73", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "allison42", + "reviewDate": "2021-09-13T01:55:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5c37f45c-f6c2-4d7f-b5ef-7de038997549", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "lrussell", + "reviewDate": "2022-04-04T03:53:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9edee424-e59a-4fdb-ba8b-455f9621ffbd", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael64", + "reviewDate": "2022-06-01T11:11:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "74e71b5f-6b74-4355-a6c6-c8ef4d95377c", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "carlabennett", + "reviewDate": "2022-12-25T23:45:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "04b5fde2-476e-49bb-aa48-ae749eb57ad0", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "chasekenneth", + "reviewDate": "2021-09-23T12:39:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1273af97-c773-44b4-a6ae-f6d907328e03", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "perezgregory", + "reviewDate": "2021-02-21T09:08:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e7e2ea16-c5ee-4597-ad03-7f0254ba32e6", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "judyharrison", + "reviewDate": "2021-12-05T09:16:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "11cf2bbc-574d-4980-8b63-47eee3c6a720", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "priceamy", + "reviewDate": "2022-08-31T02:34:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea5d4d7e-d772-494f-a7ea-bc808c935bc1", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "xsmith", + "reviewDate": "2022-07-13T19:40:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ebcd353f-865e-4337-9f8b-495b83e6a3af", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "vjohnson", + "reviewDate": "2022-05-29T12:32:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "190d783b-b4dd-450d-8df0-a45aa2100c0b", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "douglaserika", + "reviewDate": "2022-05-02T05:36:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0cbf23d6-268b-4cc3-b4fb-6464ebc74d57", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "ericawalsh", + "reviewDate": "2021-05-27T12:05:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "56d68b3c-e404-4923-ab9f-4399d0169cc9", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "tanya81", + "reviewDate": "2022-04-10T07:55:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8d9514d9-7ae2-4c04-8fa6-116c011f90d6", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "qhouston", + "reviewDate": "2022-06-28T05:33:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "658c26dc-1fed-492b-8847-8d51816657ed", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer 3000 (Black)", + "description": "This Basic Computer 3000 (Black) is an easy-to-use, yet advanced computer for the classroom. It's the perfect way to begin exploring the science and technology of programming. Designed to mimic a typical", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-06-13T06:54:54", + "price": 165.91, + "stock": 72, + "priceHistory": [ + { + "priceDate": "2021-05-21T23:50:55", + "newPrice": 158.75 + }, + { + "priceDate": "2021-11-05T23:50:55", + "newPrice": 173.33 + }, + { + "priceDate": "2022-04-22T23:50:55", + "newPrice": 171.11 + }, + { + "priceDate": "2022-10-07T23:50:55", + "newPrice": 179.39 + }, + { + "priceDate": "2024-04-15T23:50:55", + "newPrice": 165.91 + } + ] + }, + { + "id": "64f0d5f8-5152-4b80-a798-76dd541b5dfe", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "nielsentony", + "reviewDate": "2021-10-16T01:57:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ae7e47a9-96ec-4190-bc19-75bfe1a815a8", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciadalton", + "reviewDate": "2021-12-05T02:11:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "49b3e703-76fe-4494-80e4-a9f672783967", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevinarcher", + "reviewDate": "2022-10-10T13:33:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "330d2123-0436-45b3-8646-fea40e4c9504", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "corey19", + "reviewDate": "2021-05-21T23:50:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Super (Black)", + "description": "This Luxe Filter Super (Black) is the world's premiere ultra-clean, high-quality tube filter that's built for the extreme performance you want from your favorite brand, and the ultimate, non-invasive, ultra-tight tube filter to keep your filter from falling out of sight.\n\n\nFeatures: Full color tint-less\n\nNon-invasive, low emission, ultra-tight and clear-coated filter\n\nNo need to apply special additives\n", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-10-30T02:37:28", + "price": 913.18, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-06-03T19:39:27", + "newPrice": 914.73 + }, + { + "priceDate": "2021-10-22T19:39:27", + "newPrice": 825.19 + }, + { + "priceDate": "2022-03-12T19:39:27", + "newPrice": 878.27 + }, + { + "priceDate": "2022-07-31T19:39:27", + "newPrice": 995.58 + }, + { + "priceDate": "2025-03-23T19:39:27", + "newPrice": 913.18 + } + ] + }, + { + "id": "76ab8916-d00c-4b18-b7c2-5067ec0e9586", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "elizabeth04", + "reviewDate": "2021-09-14T13:19:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9cafecd8-0c1e-4c2e-8014-41cd970406ef", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "danieltate", + "reviewDate": "2021-06-03T19:39:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "952636fb-03fa-4ffe-b70c-4bdb9258c009", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "jordan69", + "reviewDate": "2021-08-05T13:47:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b30c1d08-92bd-4415-a69f-3e13aab5b41d", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "jenniferfrederick", + "reviewDate": "2021-07-06T03:24:36", + "stars": 3, + "verifiedUser": true + }, + { + "id": "92574466-bb9b-47b9-b2e1-9fb46033e7b1", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "ntaylor", + "reviewDate": "2022-02-04T10:03:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "ba298ff7-5da7-4ce5-910b-52b8cef1d1a2", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "erinberg", + "reviewDate": "2021-10-04T21:02:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fae270ed-e954-4cd1-a62e-2db5ff1c7809", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "rebekah06", + "reviewDate": "2022-05-19T18:53:28", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f91eedc0-69cd-4a4a-b441-4228cfcf1f4b", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "erin13", + "reviewDate": "2022-05-06T16:03:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b5c65a7d-fafd-4dd3-9786-28fe54a2ce30", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "mlowe", + "reviewDate": "2021-10-10T05:54:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9d844445-0c11-482d-9ab9-bc3f485be960", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "heather58", + "reviewDate": "2022-08-03T12:15:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Steel)", + "description": "This Basic Speaker Mini (Steel) is rated 4.5 out of 5 by 1.\n\nRated 5 out of 5 by Anonymous from Exactly what I was looking for Bought my first set of speakers and they are simply brilliant. Great sound performance and the value price can't be understated. Highly recommend!\n\nRated 5 out of 5 by Anonymous from I bought mine 2 minutes ago and got the speakers to quiet with my two", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-12-19T08:47:28", + "price": 384.93, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-03-05T20:56:42", + "newPrice": 370.26 + }, + { + "priceDate": "2022-12-18T20:56:42", + "newPrice": 408.69 + }, + { + "priceDate": "2024-12-16T20:56:42", + "newPrice": 384.93 + } + ] + }, + { + "id": "c7081fa1-3ec9-4268-935a-337546874522", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "kimberly23", + "reviewDate": "2022-11-21T21:07:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7eeded6d-a715-4dc9-8678-afc13d30fc10", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "brandonphillips", + "reviewDate": "2022-10-30T14:37:51", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0b605b59-57bc-431e-85d6-9360b296f3be", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "jeffrey76", + "reviewDate": "2022-05-22T14:07:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7888572b-726f-40e2-aed2-584c29c958b3", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "kimberlyrobinson", + "reviewDate": "2021-10-02T15:42:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a8959b33-9806-4dd9-8150-12d8a05355cc", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "cchandler", + "reviewDate": "2021-12-27T02:45:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4c0697a9-002f-4d5f-b080-746eb2bce8df", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "wgreer", + "reviewDate": "2021-09-28T02:28:03", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7af395f7-2c69-44ca-8e57-204d6a0bb172", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "kristielin", + "reviewDate": "2022-03-14T11:18:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6652e6d2-b217-490d-9703-9a7d6604a50f", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "emilyforbes", + "reviewDate": "2022-12-19T00:22:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b2a77d72-48e5-4303-b0d7-3b8a072561ab", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "derrickobrien", + "reviewDate": "2021-10-30T04:08:35", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f8beeba1-dde9-493c-8607-47d5de151ee2", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "patrick64", + "reviewDate": "2022-08-11T05:55:08", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7ec09352-d42c-431c-ab6c-6814f9b698cd", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "lesliebecker", + "reviewDate": "2021-03-05T20:56:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "13a76ebe-8013-4e4c-b471-8f89b2e331ef", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "sandovaltimothy", + "reviewDate": "2021-11-24T13:08:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "038024bc-27ee-4bc6-b507-91256eee07ee", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "jessica19", + "reviewDate": "2022-10-15T21:08:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6f04ca7a-6768-42fe-8e12-da83324a1baf", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "yjacobs", + "reviewDate": "2022-04-03T16:47:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ae2da10a-572a-45ee-b583-1d01b2b13bd5", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "sarah65", + "reviewDate": "2022-03-18T17:53:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b8f7a41e-0de0-4f0b-8263-a8c987d250dc", + "productId": "b8f7a41e-0de0-4f0b-8263-a8c987d250dc", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer Mini (Red)", + "description": "This Basic Computer Mini (Red) is a small computer small enough to fit over a backpack or closet. The computer is 2-way limited range. This computer (mini with small front panel) has an integrated USB cable and is compatible with the Intel Core2 Duo CPUs and Core i7-2600U.\n\nThe Blue computer is the single top-notch computer.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-06-09T20:33:39", + "price": 496.45, + "stock": 31, + "priceHistory": [ + { + "priceDate": "2019-06-09T20:33:39", + "newPrice": 484.03 + }, + { + "priceDate": "2020-08-10T20:33:39", + "newPrice": 496.45 + } + ] + }, + { + "id": "a780defc-f898-4fce-b481-55d0875ebda4", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "product", + "name": "Basic TV Ultra (Red)", + "description": "This Basic TV Ultra (Red) is a new Ultra-HD broadcast/broadcast digital cable series from NBC Universal Studios. This series debuted in October 2015.\n\nNBC Universal Studios: Universal Studios in Las Vegas, Nevada.\n\nNBC Universal Studios: Universal Studios in Nevada.\n\nNBC Universal Studios: Universal Studios in Las Vegas, Nevada.\n\nNBC Universal Studios: Universal Studios in Phoenix, Arizona.\n\nNBC Universal Studios:", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-08-28T03:14:32", + "price": 386.88, + "stock": 90, + "priceHistory": [ + { + "priceDate": "2021-05-02T12:13:46", + "newPrice": 382.9 + }, + { + "priceDate": "2021-09-22T12:13:46", + "newPrice": 348.6 + }, + { + "priceDate": "2022-02-12T12:13:46", + "newPrice": 354.32 + }, + { + "priceDate": "2022-07-05T12:13:46", + "newPrice": 367.99 + }, + { + "priceDate": "2023-03-08T12:13:46", + "newPrice": 386.88 + } + ] + }, + { + "id": "fdb6f5b2-43da-44c7-9874-4bee0331146f", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "customerRating", + "userName": "brian86", + "reviewDate": "2022-03-04T03:26:28", + "stars": 4, + "verifiedUser": true + }, + { + "id": "bb9f1545-fdd8-42f0-b4ee-2b49c91acdcf", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "customerRating", + "userName": "xjensen", + "reviewDate": "2021-05-02T12:13:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f3202bf4-ba4a-460e-84a3-abf85536e4d9", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "customerRating", + "userName": "joseph70", + "reviewDate": "2022-07-06T20:33:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d18de4ab-4912-425d-982c-f9d9dfae923e", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "customerRating", + "userName": "mstewart", + "reviewDate": "2022-05-11T08:48:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Pro (Red)", + "description": "This Luxe Stand Pro (Red) is the new stand (from Amazon) by Fosco. This is a fully lined out stand with a unique fit. The upper portion of the stand boasts an eye for an ultra-slim silhouette that works really well. This is definitely the ideal setup for most fans of the $100-200 Pro series. Features: Full lined-out\n\nFull lined-out VESA\n\nFull lined-out S", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-10-04T18:07:46", + "price": 936.69, + "stock": 77, + "priceHistory": [ + { + "priceDate": "2021-02-19T17:12:22", + "newPrice": 961.41 + }, + { + "priceDate": "2022-09-28T17:12:22", + "newPrice": 936.69 + } + ] + }, + { + "id": "89998a4f-6c58-464e-87c0-294bd16c3585", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "aliciawhite", + "reviewDate": "2021-06-06T01:44:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c34804e2-195b-4161-bcab-0baa6ae78adf", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "erincollins", + "reviewDate": "2021-04-13T01:20:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ceb34c8f-f610-47b4-9cbc-b251e8bf905d", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "john00", + "reviewDate": "2021-11-04T17:56:41", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f31ed14a-acb2-4e66-b533-ef18ad6d1c86", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jamesgraham", + "reviewDate": "2021-12-20T17:29:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d1220eeb-7b75-4b02-b3f5-3acd6883ab9c", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jwilson", + "reviewDate": "2021-11-04T16:08:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1a6a8689-7fc6-4a1a-b3d2-a2806b400db6", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jason82", + "reviewDate": "2022-12-22T07:14:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "843c95ee-86df-4942-826c-d8e4c07538c4", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "ggarcia", + "reviewDate": "2021-10-29T19:55:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6e79fb02-e829-45dd-8a03-fcef51e7e612", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "ivanroy", + "reviewDate": "2022-03-19T20:05:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "56e8fa72-134d-4b49-985e-0f7aa69a52f4", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "cynthianelson", + "reviewDate": "2021-08-26T17:27:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c9e62d14-234a-4238-bd8c-8f19dca3343b", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "eenglish", + "reviewDate": "2022-03-03T11:19:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4f5d0473-252b-4f9a-be14-f126e470bf60", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "richard97", + "reviewDate": "2022-05-01T20:16:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1b753eae-6db1-432d-946f-12f2c7fdacd5", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthewgonzalez", + "reviewDate": "2022-07-16T20:54:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "74f60a76-ad5b-4e39-81db-9ca36c3e0fd6", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "btucker", + "reviewDate": "2021-04-08T16:29:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "42047538-3713-4fd4-8b35-0957de5bf8d5", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jeffrey28", + "reviewDate": "2022-09-22T17:28:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fe059bd1-7d6c-4e04-9493-1727c34f4914", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasspencer", + "reviewDate": "2021-03-21T18:54:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "52713432-75aa-45e7-b99d-11784c2eb30d", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "vernon09", + "reviewDate": "2021-02-19T17:12:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "05a4acd1-cfb3-468f-adf0-f82344d31610", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "timothy44", + "reviewDate": "2022-11-03T20:08:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a1a88f77-f64d-46d7-837c-59ab9c731f24", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "rayjonathan", + "reviewDate": "2022-04-11T06:19:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "13e246ec-09b5-4b92-b336-0191e1438251", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Super (Silver)", + "description": "This Premium Stand Super (Silver) is 100% Made in the USA! Simply snap the two screws together so that you hold the Premium Stand securely. The Premium Stand is designed for use on", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-09-15T02:15:16", + "price": 911.5, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-01-16T10:09:13", + "newPrice": 827.09 + }, + { + "priceDate": "2021-08-05T10:09:13", + "newPrice": 857.1 + }, + { + "priceDate": "2022-02-22T10:09:13", + "newPrice": 964.57 + }, + { + "priceDate": "2022-09-11T10:09:13", + "newPrice": 981.83 + }, + { + "priceDate": "2025-02-08T10:09:13", + "newPrice": 911.5 + } + ] + }, + { + "id": "f6e3f3bd-7a28-4ccf-896d-dfa49f37abc8", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "uvazquez", + "reviewDate": "2022-09-14T03:32:39", + "stars": 5, + "verifiedUser": false + }, + { + "id": "bc5f996e-fe2d-4f4d-9f4c-58836bdc7e12", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandanelson", + "reviewDate": "2021-05-17T08:32:52", + "stars": 5, + "verifiedUser": false + }, + { + "id": "2a0f9194-3e7b-42d3-a46a-e66eaffe4709", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissaflynn", + "reviewDate": "2021-12-31T17:59:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c421c738-3cdf-4262-9664-ed5dee8c9cd8", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "katelyn34", + "reviewDate": "2022-07-24T04:57:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e23495ae-01ed-40a0-98b1-81e0b694af8f", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "cweaver", + "reviewDate": "2022-01-03T11:04:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e6fd0aac-eae7-41a5-947f-10090869e651", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "marissamoss", + "reviewDate": "2021-02-15T11:52:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0f654105-1448-4491-9fa7-16ab2e1d0310", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "dianeharris", + "reviewDate": "2021-01-16T10:09:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "67749829-94f2-4f4f-b4f4-7c70a0a80d28", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "ejohnson", + "reviewDate": "2021-08-30T06:37:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6fae9337-83f7-4f48-90b0-958744ae809d", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "wgibbs", + "reviewDate": "2021-12-26T20:13:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c4ddf892-b5ab-4a86-b2e3-270bd982b808", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "william47", + "reviewDate": "2021-09-17T03:09:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse 3000 (Steel)", + "description": "This Premium Mouse 3000 (Steel) is rated 4.9 out of 5 by 15.\n\nRated 3 out of 5 by B3D8 from I love this Mouse! Very responsive after a", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-02-01T22:58:21", + "price": 366.72, + "stock": 94, + "priceHistory": [ + { + "priceDate": "2021-05-19T19:03:21", + "newPrice": 361.63 + }, + { + "priceDate": "2022-05-22T19:03:21", + "newPrice": 366.72 + } + ] + }, + { + "id": "0e55739e-d139-43c9-8dcc-bc1add7d7dd8", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenniferburns", + "reviewDate": "2022-06-23T15:27:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a90286a7-bc50-4291-82a8-84f050d241c6", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "petersonashley", + "reviewDate": "2021-05-19T19:03:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ba5efb83-64c7-4832-a825-f57735fe6bc4", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rebecca18", + "reviewDate": "2022-07-01T22:45:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "170ecfe0-ac87-4668-a0e2-acc6e4a4486f", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dana05", + "reviewDate": "2022-02-13T13:20:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b8063705-fb61-48be-aba5-2b4fd382cb7b", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "krystal81", + "reviewDate": "2021-11-24T14:27:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "97f82315-db68-4357-b679-856bde7ace55", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Black)", + "description": "This Premium Computer Super (Black) is the first to offer 4×4 panels. It is designed to look like a conventional laptop. So if you are looking to add a small touch screen display to your gaming PC, here's what your PC should look like. The keyboard and mouse are all built in to the standard computer keyboard. You may be seeing this here when you are using your computer from an Intel laptop or from", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-06-04T12:45:08", + "price": 714.85, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-01-12T07:30:32", + "newPrice": 654.09 + }, + { + "priceDate": "2022-04-21T07:30:32", + "newPrice": 714.85 + } + ] + }, + { + "id": "05ba8115-93a9-4d08-9657-1f44f7192112", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "kenneth80", + "reviewDate": "2022-02-12T18:10:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5fb1d544-0582-46b1-aa8c-df045b3ee5fc", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "dylan41", + "reviewDate": "2022-09-01T13:12:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a9555b79-aab3-4f49-bc4f-227504be0ad4", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "ijensen", + "reviewDate": "2022-12-06T05:30:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c8a719bf-5a5b-49ca-8069-57e9488b2213", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamselizabeth", + "reviewDate": "2022-11-04T14:37:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "72c85718-a2a5-4867-a8f5-253da742cde0", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "pattersoncynthia", + "reviewDate": "2021-07-29T23:16:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3abbad23-eb47-4f58-8b53-3751b6a71505", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "matthewwatkins", + "reviewDate": "2022-08-26T02:54:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "12192a58-2c21-4d06-8a25-4badf7fc6a29", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "fjohnson", + "reviewDate": "2021-09-05T20:06:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4482c3d2-8721-4c57-be79-2e9b707a8e50", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "timothymeyer", + "reviewDate": "2022-12-28T08:42:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "61309c34-44c2-4ee4-9c1b-5c5ca8a47687", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamesparza", + "reviewDate": "2021-08-26T21:53:33", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a8867c42-5bf0-4af3-afb8-4206d7fbe835", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "guerrerotracey", + "reviewDate": "2022-12-17T16:46:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "347a3d53-b5e8-4979-bb8f-8c9ed79f459a", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "richardadams", + "reviewDate": "2021-01-12T07:30:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ba20be24-2f48-48f0-adda-24a64babc360", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcintoshmichael", + "reviewDate": "2022-12-06T18:17:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cc5d2b9d-be1c-4eb8-9518-2d0f0ceb642e", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashley46", + "reviewDate": "2021-07-29T15:59:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ce8d40c7-f15f-4bf3-861e-0d8cd266a643", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "steven16", + "reviewDate": "2021-02-12T11:34:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "016ecc88-4a39-4ec9-be84-11b09ea02d66", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "twilliams", + "reviewDate": "2022-07-11T23:38:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "38508adb-aa2c-4b46-96c8-46893bb2fb4c", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "wstewart", + "reviewDate": "2021-08-16T05:16:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "032e7c48-82a5-44f8-bb29-a24a5ccf4c9e", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "hvazquez", + "reviewDate": "2022-08-15T22:37:46", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1b8f8257-d089-4cea-af45-dae08c177036", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "boothjessica", + "reviewDate": "2021-05-09T19:02:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6e58481f-d4ec-41fc-94dd-834e8c985b1e", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "gavinbrown", + "reviewDate": "2022-01-05T12:56:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b4f76211-a33f-4d2e-bbe6-ec5adb174fd2", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "mark22", + "reviewDate": "2022-12-08T13:46:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "96939938-db4b-42d6-a0cc-4c695f032053", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Pro (Black)", + "description": "This Amazing Stand Pro (Black) is rated 4.3 out of 5 by 27.\n\nRated 4 out of 5 by Joe from Great Pro I bought this because it turned out to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-02-15T04:48:44", + "price": 767.84, + "stock": 71, + "priceHistory": [ + { + "priceDate": "2021-01-21T23:34:25", + "newPrice": 827.94 + }, + { + "priceDate": "2022-01-08T23:34:25", + "newPrice": 821.8 + }, + { + "priceDate": "2022-12-26T23:34:25", + "newPrice": 800.37 + }, + { + "priceDate": "2023-05-31T23:34:25", + "newPrice": 767.84 + } + ] + }, + { + "id": "3151f663-ae9b-4090-8f89-727bbbadfe0b", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "tuckererica", + "reviewDate": "2021-11-24T20:10:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "664f9ffd-874f-453a-a7e9-3b6575a634d4", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "ftate", + "reviewDate": "2021-11-13T18:20:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "73231823-a3b6-4e39-9d46-3a85061e2267", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "wiserandall", + "reviewDate": "2022-05-17T22:55:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ff24e966-edce-4005-89a4-dba9b6f7baa9", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "eanderson", + "reviewDate": "2022-04-23T04:33:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "de7142df-0131-41de-9e3e-057ade0172fd", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "amanda84", + "reviewDate": "2022-11-08T16:39:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a5d50aab-69ce-44c3-9586-e554038535a0", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "jillpalmer", + "reviewDate": "2021-11-24T23:47:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d911fe37-7249-4f9e-aebd-e039644fe4b3", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "bryan09", + "reviewDate": "2022-08-27T19:37:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3ebd2c85-d8e2-4300-b08d-a45cd4be23a6", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "mitchell74", + "reviewDate": "2021-11-17T08:33:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9f5d9cc5-1816-41d1-add7-eee8ebd8f326", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "christopherbennett", + "reviewDate": "2022-12-27T10:54:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "645373d8-701a-4258-8cd7-6dfc6336689d", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "stewartedward", + "reviewDate": "2021-03-03T21:54:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "26310d96-4585-4d03-b11e-a38bd1c78efe", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "collinskenneth", + "reviewDate": "2021-04-11T10:28:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "53b7ed6e-fbbb-4280-aec1-bd54a2d17080", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "valeriecameron", + "reviewDate": "2022-02-17T10:07:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0b1a2c03-ba90-496d-8ee5-d5595e59d982", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "perezjane", + "reviewDate": "2022-01-14T10:56:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9985dc59-6ece-4676-8ea1-59245bffb3ce", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "pamelafarrell", + "reviewDate": "2022-12-14T19:21:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "75efa963-d2d0-4041-ae5f-256936dbabc3", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer56", + "reviewDate": "2021-01-21T23:34:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a1508623-93e0-4789-aa1a-b737501851de", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "jimenezgabriel", + "reviewDate": "2021-06-26T19:59:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9eb3820c-e7d0-440f-ae2e-4e4e9d0d70c4", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "miguelmyers", + "reviewDate": "2022-02-07T07:06:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f6783cfb-41cf-4889-9eeb-62be467b9cd8", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "vargasjillian", + "reviewDate": "2021-08-25T04:18:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "63eb2873-78d2-4b8d-ade0-f94849003a19", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "robertduran", + "reviewDate": "2022-01-03T23:30:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7fc1e47f-c818-43c5-891c-aee6cd1d1932", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "rickybartlett", + "reviewDate": "2022-06-14T09:30:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b5f33623-66ab-4ac4-9a28-f32087052377", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "product", + "name": "Basic Speaker + (Steel)", + "description": "This Basic Speaker + (Steel) is included to remove the 2nd and 4th Speaker. (This Basic Speaker +(Steel) is included to remove the 1st and 3rd Speaker)\n", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-01-08T00:05:36", + "price": 994.93, + "stock": 33, + "priceHistory": [ + { + "priceDate": "2021-01-12T12:31:45", + "newPrice": 950.05 + }, + { + "priceDate": "2021-06-30T12:31:45", + "newPrice": 1019.81 + }, + { + "priceDate": "2021-12-16T12:31:45", + "newPrice": 1017.7 + }, + { + "priceDate": "2022-06-03T12:31:45", + "newPrice": 914.03 + }, + { + "priceDate": "2022-11-19T12:31:45", + "newPrice": 1022.98 + }, + { + "priceDate": "2025-04-30T12:31:45", + "newPrice": 994.93 + } + ] + }, + { + "id": "9bde87ee-976c-41b4-8855-45876858fd5a", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "eparker", + "reviewDate": "2022-02-18T01:25:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f4643276-2058-48de-9bbb-5f806a7533c3", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "tonyamorrison", + "reviewDate": "2021-01-23T11:18:41", + "stars": 5, + "verifiedUser": false + }, + { + "id": "9f95c0ed-89f2-4d4e-b10e-75c7949db8af", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "trubio", + "reviewDate": "2021-07-14T01:44:36", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1b2b6ff7-541d-4475-9d7a-ce60b957f455", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "darrellbrown", + "reviewDate": "2021-05-05T17:24:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "55783636-e5b6-4fc4-a0fd-51735cdfc53c", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "parksbrian", + "reviewDate": "2021-08-27T02:56:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b1c559f-1ac1-42cb-a049-287fce4f69e9", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "pattersonbrittany", + "reviewDate": "2022-11-14T15:04:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "10308e60-b8d6-48a4-af10-062c87903312", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "millseric", + "reviewDate": "2021-09-27T18:19:17", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4c5e6f14-d55f-490f-a7c2-ed539d279c16", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "andrea65", + "reviewDate": "2022-06-18T06:48:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7dc7ecc3-57e5-401c-b9bf-51e8c13d5728", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "tylerclay", + "reviewDate": "2022-09-27T00:21:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4a5172fe-fdec-4a74-a1a6-f567aa8457cb", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "doylethomas", + "reviewDate": "2021-04-05T23:48:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "77861ee8-9bca-4bd6-975a-2758c9a9c532", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonmichael", + "reviewDate": "2022-03-11T23:04:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dc1c3587-5165-4f1c-bb8e-afb58fb1f47f", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "rowlandrandy", + "reviewDate": "2021-12-24T04:40:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "52658114-4e0b-48e5-9109-068534789849", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "ugray", + "reviewDate": "2022-04-19T21:49:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b1b5020c-5771-45f3-8706-12ac23ce8519", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "wanda95", + "reviewDate": "2021-01-12T12:31:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a69b4a93-59c6-4ebc-8f93-22c4ea4eccfe", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "georgejessica", + "reviewDate": "2022-11-20T09:04:34", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8c7af35e-b149-4312-a12a-0873b026f648", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "brian67", + "reviewDate": "2022-03-06T03:01:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "92f1dcd9-0cd2-41bd-836f-a6c41cac31ee", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "rmahoney", + "reviewDate": "2021-11-08T14:59:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dcada5e2-f580-44bf-a469-7011ceb770d9", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "cdiaz", + "reviewDate": "2022-01-25T23:10:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "354a063b-5fdd-4349-98e1-4c616572de43", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone + (Silver)", + "description": "This Basic Phone + (Silver) is not compatible with iOS 6.5+\n\n-No additional code is required, but can be added to your order via PayPal to receive this item\n\n-This basic phone features the iPhone's built-in headphone jack\n\n-No extra code is necessary, but can", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-07-09T06:03:20", + "price": 566.47, + "stock": 58, + "priceHistory": [ + { + "priceDate": "2021-02-15T18:56:05", + "newPrice": 520.79 + }, + { + "priceDate": "2022-10-03T18:56:05", + "newPrice": 542.7 + }, + { + "priceDate": "2024-10-01T18:56:05", + "newPrice": 566.47 + } + ] + }, + { + "id": "a53ca191-419b-4d8c-b59f-33a5941c12b8", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "lauren91", + "reviewDate": "2021-07-12T02:53:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e3c22aa4-e67b-44a2-bd6c-93204bc8aefc", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "jerrywright", + "reviewDate": "2021-07-13T23:44:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "aae1924c-8a24-425a-9a92-88369f3beb96", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicholaschandler", + "reviewDate": "2021-08-21T05:06:12", + "stars": 5, + "verifiedUser": false + }, + { + "id": "a3d7d025-46a3-4561-9dd2-de4d70f2b5c4", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "sbaker", + "reviewDate": "2022-09-24T02:24:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0beb4ca0-88df-47d3-8319-fab2d8af3dbf", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "danahunter", + "reviewDate": "2022-04-13T06:37:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "908d1d45-2511-4eb0-9376-2e5025bc6036", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "philipflores", + "reviewDate": "2022-04-19T16:56:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c383bf83-4338-4bcb-9f9a-7a2973ef53bc", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelly58", + "reviewDate": "2021-12-04T17:17:40", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9c8f936a-b164-4977-9ef6-5fe326ef323c", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "alanmaxwell", + "reviewDate": "2021-02-15T18:56:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f7fb6e54-cc14-40ec-8fa6-101e9aa16876", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "ismith", + "reviewDate": "2022-10-03T20:13:29", + "stars": 5, + "verifiedUser": false + }, + { + "id": "1595f44f-9fa0-4a90-a245-2182c28b7ac5", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamburns", + "reviewDate": "2022-09-21T07:00:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5e648b9d-f685-4126-af5a-8c3dcadef668", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "griffinvalerie", + "reviewDate": "2022-09-21T15:03:48", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8f4b70e8-ef48-493e-9099-186541791f30", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "dhayes", + "reviewDate": "2021-07-23T05:09:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76abcf09-887e-4ead-9294-f508d9e01d96", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand + (Steel)", + "description": "This Premium Stand + (Steel) is an upgraded stainless steel set of Stand and Steel for sale on the site.\n\nThe Steel Set Includes:\n\n• 5 6\" High-Density Stainless Steel Parts", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-03-17T11:56:25", + "price": 108.18, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-01-25T23:59:28", + "newPrice": 113.1 + }, + { + "priceDate": "2022-01-04T23:59:28", + "newPrice": 113.89 + }, + { + "priceDate": "2022-12-14T23:59:28", + "newPrice": 105.28 + }, + { + "priceDate": "2023-12-01T23:59:28", + "newPrice": 108.18 + } + ] + }, + { + "id": "2891bc3b-6dd2-43e5-a921-8e2345721d88", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "tmoore", + "reviewDate": "2022-12-16T19:55:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5d244249-84a2-4746-8f3c-1709f2f5d391", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "tinaestes", + "reviewDate": "2022-08-28T22:04:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a3427afc-66d8-463c-9bf3-6518b43604a3", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "donnahorton", + "reviewDate": "2022-01-27T10:20:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8b13eb03-773b-4899-9fac-254d55f06f16", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "prodgers", + "reviewDate": "2022-12-16T21:31:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4bc01593-58d9-4595-9177-b5e1fb34f464", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "halldevin", + "reviewDate": "2021-09-07T17:15:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "059f50f4-fcd3-4225-a342-d67ffabb4ca3", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "zacharybrown", + "reviewDate": "2021-02-21T11:22:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0fb7407a-9ab9-4674-adf4-1c075788a5df", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "uthompson", + "reviewDate": "2021-06-19T06:48:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "61231572-7c13-49ca-9e19-b7c89c049b5a", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasmorris", + "reviewDate": "2022-05-06T14:44:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "54998767-4241-4569-a6b3-3248353cc48a", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "dawn68", + "reviewDate": "2021-01-25T23:59:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "00ba8b19-f537-4b5e-ac72-c7a3b0733337", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandagallegos", + "reviewDate": "2021-10-27T13:28:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cb8122ea-ca08-4ebd-907e-c54481453d8d", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "amywalker", + "reviewDate": "2021-09-03T13:10:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "00a10ea5-2127-4f4b-b757-19a05859b232", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "raymond82", + "reviewDate": "2022-05-27T18:15:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "product", + "name": "Luxe TV + (Steel)", + "description": "This Luxe TV + (Steel) is rated 4.8 out of 5 by 7.\n\nRated 5 out of 5 by kristen from Great TV! I love my LG Smart TV. It is pretty affordable! It has a lot of features, including HDR, the built in Wi-Fi can be a bit slow, but it works great! Love the music playing in all its", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-09-07T02:16:59", + "price": 418.53, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-03-27T20:34:43", + "newPrice": 426.38 + }, + { + "priceDate": "2022-02-01T20:34:43", + "newPrice": 419.14 + }, + { + "priceDate": "2022-12-09T20:34:43", + "newPrice": 419.34 + }, + { + "priceDate": "2024-10-13T20:34:43", + "newPrice": 418.53 + } + ] + }, + { + "id": "ad76ccca-6682-491c-b3ab-ebf9ceb0d5db", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "davieskatherine", + "reviewDate": "2021-07-06T12:18:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e743e458-8767-4e7b-9017-69826da843ef", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "john40", + "reviewDate": "2021-06-22T14:15:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0cc20db7-5f6a-49c4-8759-60a5497d4daa", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "jason59", + "reviewDate": "2022-06-07T04:59:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "47a39adf-6948-4245-8733-a8f50314b26f", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "acantu", + "reviewDate": "2022-02-14T21:58:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7b927020-f68a-4a04-8e7f-29318906df9f", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "joshua24", + "reviewDate": "2021-11-28T09:30:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9389697e-7c28-4ea0-beb4-266ac0eefed5", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "thomas70", + "reviewDate": "2022-10-08T22:48:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "933e64f2-baf3-4518-b5d5-1dd0ba6351f4", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "thomas23", + "reviewDate": "2021-03-27T20:34:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "949fb930-d138-4b48-8043-cdd076d66fd4", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "hunterryan", + "reviewDate": "2021-05-11T13:44:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f69beb66-0c50-4202-a586-5b646302187b", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "brandon76", + "reviewDate": "2021-12-25T04:42:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "21e0d246-2bae-4cc0-a869-82a222c4c28d", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "james59", + "reviewDate": "2022-10-28T08:19:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d5ef0f8e-b4ae-4f3f-8227-386d5d5cde49", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "stephanie69", + "reviewDate": "2022-12-11T07:20:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5b6c55b8-5e2e-481b-b691-75fb7691b13b", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "hannahbrown", + "reviewDate": "2022-02-14T09:23:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b50e8491-1f35-41e7-8e8b-1b70a074bc56", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "karen88", + "reviewDate": "2021-11-29T18:28:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "25cecfa5-ed43-4e97-adfd-a065bfc01e52", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "ashleyrobinson", + "reviewDate": "2021-06-06T05:37:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f2b6a8a6-e909-4aa9-83ef-656b0c5857bd", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "wilsonbelinda", + "reviewDate": "2021-11-02T15:01:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "product", + "name": "Awesome TV Micro (Silver)", + "description": "This Awesome TV Micro (Silver) is the \"ultimate gift\" for a new series of games on PC and Mac that will soon be available in Japanese on Steam and the PlayStation 4. Not to be outdone, we see other games on the list and we'll get some updates on PC and Mac, too. It's been a nice season for Xbox and PS4, and we can't wait to see what those plans go for next. And by", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-02-03T07:25:45", + "price": 660.89, + "stock": 68, + "priceHistory": [ + { + "priceDate": "2021-02-18T06:14:33", + "newPrice": 721.25 + }, + { + "priceDate": "2021-12-06T06:14:33", + "newPrice": 655.56 + }, + { + "priceDate": "2022-09-23T06:14:33", + "newPrice": 665.27 + }, + { + "priceDate": "2024-02-04T06:14:33", + "newPrice": 660.89 + } + ] + }, + { + "id": "c71fdc90-c0cf-4ae8-94c3-76c1f8b8c3f2", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "burnsstephanie", + "reviewDate": "2021-04-30T23:11:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f5679271-9f90-45d9-8ec6-7ef5584f1480", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "james21", + "reviewDate": "2022-03-05T18:07:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9440e42f-80a1-4d0d-979c-a73bf68ff96e", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "rhunt", + "reviewDate": "2021-02-18T06:14:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "341a0f66-b071-4b6a-aad5-b627d664f058", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "tinalopez", + "reviewDate": "2022-04-01T13:57:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e1e5d3ff-6626-4379-83b1-088e66688b45", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "knightraymond", + "reviewDate": "2022-08-13T06:45:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "737983f1-51fa-49b8-9c5c-ccf9d2ffc74f", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "vickiekelley", + "reviewDate": "2021-04-19T23:28:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d5a4f689-c098-4d8e-95c0-a2c3902e651c", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "mollymarks", + "reviewDate": "2022-05-25T21:05:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e33cf5c2-53fd-4709-b400-3c4025c2868e", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "reyesmatthew", + "reviewDate": "2021-07-03T09:15:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "051526b2-d81f-4602-a391-b3702442ef9c", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "clewis", + "reviewDate": "2022-07-07T11:35:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8d9d28d1-ff68-466d-ab95-a8e7b2261b3a", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "kathryn96", + "reviewDate": "2021-12-16T11:13:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2d3af568-5ea6-4894-809c-67aa7dce315c", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "melindabradshaw", + "reviewDate": "2022-07-02T11:53:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e8c12e93-d7d2-4fbd-b352-2d57786ae596", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "jamessingleton", + "reviewDate": "2022-09-23T07:10:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "88eab07f-ecaf-4075-a754-3c7986d755a1", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "brianamercado", + "reviewDate": "2021-12-14T06:41:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "58000ae9-41da-4691-856b-0267b2540ed9", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "mhubbard", + "reviewDate": "2021-10-15T14:19:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "16aca8fa-4af0-42bc-a257-0b3afb290109", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "brian70", + "reviewDate": "2021-08-08T09:52:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5edaa41d-9314-4b24-8e54-72badf03d4b4", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "elizabethbrown", + "reviewDate": "2022-04-19T22:26:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "93dd9a02-ccf5-4473-84fd-4828e0b95352", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "rhoward", + "reviewDate": "2021-10-02T00:08:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a196637d-7b37-40a9-9beb-e63312d52cda", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Ultra (Steel)", + "description": "This Premium Speaker Ultra (Steel) is crafted with ultra soft and hard suede and soft felt. This Speaker Ultra is great on those occasions for a soft look. The Ultra comes with a removable silicone cover and a brushed gold finish.\n\nMade in USA.\n\nSize & Measurements\n\nThis product is", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-06-06T20:17:07", + "price": 371.13, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-02-28T17:28:00", + "newPrice": 389.01 + }, + { + "priceDate": "2021-08-09T17:28:00", + "newPrice": 351.78 + }, + { + "priceDate": "2022-01-18T17:28:00", + "newPrice": 337.79 + }, + { + "priceDate": "2022-06-29T17:28:00", + "newPrice": 401.21 + }, + { + "priceDate": "2022-12-08T17:28:00", + "newPrice": 350.77 + }, + { + "priceDate": "2024-03-28T17:28:00", + "newPrice": 371.13 + } + ] + }, + { + "id": "fee67d0a-aa25-4529-b7dc-d4f83e22aa6c", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "jessicawhite", + "reviewDate": "2021-02-28T17:28:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "19963164-f38b-454f-b0a8-5a25306c4ccb", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "qewing", + "reviewDate": "2022-09-27T02:59:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "af36e68c-8fe7-4bb9-ae38-9337e42cf242", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "robert83", + "reviewDate": "2022-07-09T08:46:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e91ba1d7-3285-40fc-b0b8-3c76e90ecc47", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "ablair", + "reviewDate": "2021-07-08T05:49:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2158178d-f500-4be9-965b-148c3c4542ab", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "marc83", + "reviewDate": "2022-12-10T00:25:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e1467d72-541a-45e0-9801-657ed4e2f7f9", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "frederickhill", + "reviewDate": "2021-11-25T10:19:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b0a4a246-a252-42fd-8284-b9c286d45e2e", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "kristensantos", + "reviewDate": "2021-08-18T20:31:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Steel)", + "description": "This Awesome Phone Super (Steel) is on sale at $999 when it's announced!\n\nAs you can imagine, this super phone is a HUGE bargain because of", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-06-27T02:50:56", + "price": 332.22, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-05-15T10:38:32", + "newPrice": 361.05 + }, + { + "priceDate": "2022-10-26T10:38:32", + "newPrice": 301.41 + }, + { + "priceDate": "2025-04-30T10:38:32", + "newPrice": 332.22 + } + ] + }, + { + "id": "4a7aaeff-670f-4150-9a30-130d849759c9", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "emily22", + "reviewDate": "2022-10-26T16:38:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0f8f7143-ac46-44b7-bef8-adc505658477", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonya94", + "reviewDate": "2021-06-12T22:39:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dcaf4682-607a-4bfa-8883-a3334fc853fe", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "rogerslori", + "reviewDate": "2021-11-26T12:42:52", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fe7d604d-47c2-40d2-839f-5a3802aedc0f", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "edwardsjames", + "reviewDate": "2021-07-28T14:27:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0faffbca-f268-44df-8b82-7910e87b074a", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "astewart", + "reviewDate": "2022-06-04T00:18:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "397bb969-7c1a-43f2-b400-48ce845f6e26", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "laurafoster", + "reviewDate": "2022-07-03T14:25:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4289b9d3-23e3-43d6-868b-3c32e840aafb", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "megan68", + "reviewDate": "2022-05-23T09:59:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ef7c57bc-bcce-4701-a75d-aa98d1e4b8bb", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "josephbrenda", + "reviewDate": "2022-03-09T20:59:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c77d7290-5cb8-4d90-a77f-9c1c86a03660", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "fjohnson", + "reviewDate": "2021-09-02T15:20:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6dbe7c17-8193-40ef-a73a-bca17bc811c7", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "hudsontina", + "reviewDate": "2021-05-15T10:38:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "149b9474-de96-4451-8dbc-a349d8f2cf23", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica17", + "reviewDate": "2022-10-15T15:28:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "29c8b96c-91ea-4d30-b051-5ba532732317", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "fitzgeraldthomas", + "reviewDate": "2021-09-11T16:00:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Gold)", + "description": "This Luxe Filter 3000 (Gold) is the top filter produced in the world for the luxury of high-performance and light weight applications, and is one of the most advanced, most powerful filters on the", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-11-15T01:26:43", + "price": 615.28, + "stock": 52, + "priceHistory": [ + { + "priceDate": "2021-04-02T08:41:17", + "newPrice": 576.49 + }, + { + "priceDate": "2023-03-03T08:41:17", + "newPrice": 615.28 + } + ] + }, + { + "id": "8d917fd7-8375-48fa-af1c-82505a3b7448", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "customerRating", + "userName": "bradleygreen", + "reviewDate": "2022-02-04T19:55:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f32f495f-376e-49ef-9bc1-e8756cdcf47f", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "customerRating", + "userName": "etran", + "reviewDate": "2021-04-02T08:41:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c07b5336-2b5c-4dd2-93ad-e0629ed72b98", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "customerRating", + "userName": "cindyweiss", + "reviewDate": "2022-10-19T20:42:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f9186ce0-5e4e-42e2-b239-d20e7ebd808e", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "customerRating", + "userName": "hollowaykyle", + "reviewDate": "2021-05-30T13:29:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer + (Black)", + "description": "This Luxe Computer + (Black) is a special edition computer designed with performance for all applications. It is designed for your everyday workflow using the best technologies available – including advanced 3D", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-08-04T14:44:45", + "price": 792.77, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2021-01-01T09:04:00", + "newPrice": 762.14 + }, + { + "priceDate": "2021-07-22T09:04:00", + "newPrice": 777.77 + }, + { + "priceDate": "2022-02-09T09:04:00", + "newPrice": 793.17 + }, + { + "priceDate": "2022-08-30T09:04:00", + "newPrice": 855.42 + }, + { + "priceDate": "2025-05-30T09:04:00", + "newPrice": 792.77 + } + ] + }, + { + "id": "5fd44fda-42cc-4c00-8c01-a4e187ec7e16", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleelopez", + "reviewDate": "2022-02-22T00:18:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2720f823-75cf-4bbc-9865-33bc5dbb4164", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnsonchristine", + "reviewDate": "2022-06-25T13:43:54", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2203d435-aecd-4b8c-a904-95761bcaf87d", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "sharon92", + "reviewDate": "2021-01-14T10:52:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "80ccc69f-e09d-4450-ab1d-d9fa840b0a1a", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "ohatfield", + "reviewDate": "2021-05-27T00:32:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f3fa5990-9986-4adc-8c9b-67d2d9378347", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "turneredward", + "reviewDate": "2022-08-31T05:39:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "069aee29-e431-4c97-b9ea-d5d22fdf5b35", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "walkermelissa", + "reviewDate": "2022-01-03T23:21:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9ccdb919-56e5-4aa2-b0c0-e1d6188e1f3c", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "nguyenjessica", + "reviewDate": "2021-01-01T09:04:00", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2edfd2c4-c9bd-4690-a61c-9dc547ee43b6", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandykemp", + "reviewDate": "2021-05-22T13:05:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8e829f46-2402-4f33-b95f-97697922bb62", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessicarojas", + "reviewDate": "2021-12-12T17:38:28", + "stars": 5, + "verifiedUser": false + }, + { + "id": "507d2434-b77e-4280-8c63-86450ff47cc1", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Micro (Red)", + "description": "This Basic Phone Micro (Red) is available now for $199.99. All of the specifications are from Amazon:\n\n\"As soon as the new Galaxy Note 8 launches... all Galaxy phones will be based off Android 5.1 Lollipop. With the new feature list, this will ensure a new generation of Galaxy phones will receive the benefits of the new feature set, allowing them to run on new flavors and specs, including 4K, OLED and 3D display capabilities.\" – AT&", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-12-17T21:15:17", + "price": 161.76, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-01-23T20:30:29", + "newPrice": 162.95 + }, + { + "priceDate": "2021-07-13T20:30:29", + "newPrice": 150.91 + }, + { + "priceDate": "2021-12-31T20:30:29", + "newPrice": 173.23 + }, + { + "priceDate": "2022-06-20T20:30:29", + "newPrice": 159.88 + }, + { + "priceDate": "2022-12-08T20:30:29", + "newPrice": 167.59 + }, + { + "priceDate": "2024-09-01T20:30:29", + "newPrice": 161.76 + } + ] + }, + { + "id": "3c078818-067f-4ee4-9e47-4763a0109ffe", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "alopez", + "reviewDate": "2022-10-16T01:06:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "786c0157-24bb-4c00-8d36-bbe2c3241167", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcantu", + "reviewDate": "2022-11-24T09:11:31", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a3446944-291f-4861-8fe2-6fbc7a13982b", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "uthomas", + "reviewDate": "2021-10-15T21:39:09", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9dd5bbe5-f543-4395-beac-45b57b551b05", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "garrettjessica", + "reviewDate": "2021-01-28T14:31:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0ba9cfd3-3df6-4781-96ea-c031ae8f57ac", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "wigginsjustin", + "reviewDate": "2022-10-23T09:23:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "665a264f-7535-4c32-b18d-90d0467db1c2", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "glassbrooke", + "reviewDate": "2022-12-11T14:39:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "04883465-8b71-468b-aec4-b29de61e7553", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "parkerjulia", + "reviewDate": "2022-02-14T05:45:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "87c867ee-a361-4178-a491-53370ce6e34f", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "stuart62", + "reviewDate": "2021-11-03T15:12:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a13967ed-5082-4a76-a3e4-e141381ad032", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "crystal56", + "reviewDate": "2022-11-15T06:50:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0eb75658-e9ea-4ad9-850b-e7379a7b0ed5", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert55", + "reviewDate": "2021-09-27T11:02:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f8f79e8c-4e1d-43bd-b71a-1c20291c8f8e", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "briannadavis", + "reviewDate": "2022-08-20T08:59:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f85217cc-56a5-4121-bfda-9c2baf291596", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "enorris", + "reviewDate": "2021-01-26T01:48:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c6bc918a-39d3-411f-b698-0c702ae42d8b", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "martinezdarrell", + "reviewDate": "2022-10-23T09:00:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ee38008f-f094-4c22-9868-d78d2189ee03", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "ynguyen", + "reviewDate": "2021-09-30T06:34:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "28a6661c-2189-44d2-9ad5-d333cb36eb56", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "gloverfrank", + "reviewDate": "2021-06-25T07:17:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "614c3a07-e9ce-4c76-8d18-c6b6d6921f27", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissaward", + "reviewDate": "2021-10-08T20:47:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "40d47421-384f-43b0-b7ae-253d9b6d1f6a", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "tomreilly", + "reviewDate": "2021-01-23T20:30:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "74c68828-c832-46ac-8804-316dba730dff", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "abarnett", + "reviewDate": "2022-02-17T10:18:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "78233570-f505-4525-b5b6-17f0920966ef", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Silver)", + "description": "This Amazing Filter Micro (Silver) is rated 4.9 out of 5 by 13.\n\nRated 5 out of 5 by Steve from Good thing. I will use this for making glass beads, which it does. In the past I've had some issues with the filter because it would", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-02-16T07:46:14", + "price": 827.86, + "stock": 1, + "priceHistory": [ + { + "priceDate": "2021-04-09T08:45:03", + "newPrice": 907.08 + }, + { + "priceDate": "2022-01-11T08:45:03", + "newPrice": 827.86 + } + ] + }, + { + "id": "f22a61f3-888d-407e-8cfa-8a9c6818fe51", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "stephanie90", + "reviewDate": "2021-10-30T00:50:18", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6b3c787b-a0b6-468c-9aa0-fc802b00fdc0", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "jasonkim", + "reviewDate": "2022-08-21T17:54:09", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4f2aff36-ad3b-43e4-b4b7-7c75a09bc8aa", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "vwatson", + "reviewDate": "2022-07-17T11:26:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6916acc5-4667-4055-88b4-a3c1db6fdb2f", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "brandonjohnson", + "reviewDate": "2022-08-01T18:52:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "99390e8f-8726-4966-bbe0-460e2810f031", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "dennissusan", + "reviewDate": "2022-02-22T00:55:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "23278f1f-819e-4d63-a8b7-03fe3761cb3e", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "savannahandrade", + "reviewDate": "2022-11-17T12:51:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d44280e7-dae6-4f02-9882-ca7cc848d08b", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "kentflores", + "reviewDate": "2022-03-23T03:15:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76db0d28-01d8-4fd2-9669-41218ead0687", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "traviscamacho", + "reviewDate": "2021-07-01T05:26:49", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d2891a88-edda-425b-b024-12e731e09efb", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "robert04", + "reviewDate": "2021-04-09T08:45:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cc279186-3f18-417c-8990-1eb4deafe340", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "olopez", + "reviewDate": "2022-09-29T23:54:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "69edbc27-1ad5-4ab0-951c-445400576c64", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "johnsonlisa", + "reviewDate": "2022-04-20T02:24:59", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d80dcbae-e9fe-426e-960b-7554237bd996", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "prodriguez", + "reviewDate": "2021-06-02T14:11:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "52c30db8-91cb-4b34-a59e-12247c3a52de", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "rachel20", + "reviewDate": "2022-07-22T17:44:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "48a8fb6e-588e-4099-a54f-003086fc8f6b", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "kristi01", + "reviewDate": "2022-02-19T06:44:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker 3000 (Red)", + "description": "This Luxe Speaker 3000 (Red) is one of the most beautiful speaker designs and I have had great success with it. The only problem is the fact that this piece has multiple speaker parts.\n\nI would have also liked that this is a one-piece design. But my wife loved this idea so much we decided to create", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-01-02T06:45:29", + "price": 240.14, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-02-05T14:07:52", + "newPrice": 231.44 + }, + { + "priceDate": "2021-03-31T14:07:52", + "newPrice": 244.84 + }, + { + "priceDate": "2021-05-24T14:07:52", + "newPrice": 248.43 + }, + { + "priceDate": "2021-07-17T14:07:52", + "newPrice": 231.53 + }, + { + "priceDate": "2021-09-09T14:07:52", + "newPrice": 230.62 + }, + { + "priceDate": "2025-03-03T14:07:52", + "newPrice": 240.14 + } + ] + }, + { + "id": "d160435f-e0d1-4b7a-8a25-e8193c0dbad5", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "customerRating", + "userName": "vcox", + "reviewDate": "2021-05-18T12:36:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "55df83d5-e354-4c24-b4ca-9b432187dbb6", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "customerRating", + "userName": "yvillanueva", + "reviewDate": "2021-09-10T05:44:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "99b85781-22e6-4949-9cbf-ee3c4ae2ca06", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "customerRating", + "userName": "hortonjohn", + "reviewDate": "2021-02-05T14:07:52", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fca586c9-034d-43b4-8944-65d13d3fa54c", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "customerRating", + "userName": "matthewwest", + "reviewDate": "2021-05-20T19:37:45", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Pro (Black)", + "description": "This Premium Stand Pro (Black) is the ultimate upgrade to your Android smartphone. Whether it's a simple, quiet setup with a light weight screen, high screen brightness, low screen resolution, or just great for outdoor work, this Premium Stand Pro features over 500 high-performance Super HD monitors, including ultra-bright gaming monitors, gaming monitors, monitor cameras, and more to keep up-", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-12-03T19:34:48", + "price": 1041.59, + "stock": 68, + "priceHistory": [ + { + "priceDate": "2021-02-01T23:58:20", + "newPrice": 1022.48 + }, + { + "priceDate": "2021-08-18T23:58:20", + "newPrice": 999.9 + }, + { + "priceDate": "2022-03-04T23:58:20", + "newPrice": 975.74 + }, + { + "priceDate": "2022-09-18T23:58:20", + "newPrice": 1049.49 + }, + { + "priceDate": "2023-04-15T23:58:20", + "newPrice": 1041.59 + } + ] + }, + { + "id": "6c10cd1c-d717-4476-bf2a-855000407653", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "adrianedwards", + "reviewDate": "2022-09-21T14:07:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "77647631-7855-46e1-8541-2cf6f88d0e57", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "melanie31", + "reviewDate": "2021-02-01T23:58:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d869c246-ad0e-4eab-bff9-08e361ff2da2", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "escobarrichard", + "reviewDate": "2021-07-24T01:49:08", + "stars": 5, + "verifiedUser": false + }, + { + "id": "b068c1f1-f277-440a-9e4b-7a24954974d0", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "jillmayo", + "reviewDate": "2022-07-03T15:25:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ebd7f514-5612-411e-98da-f6b4bb63e045", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "victoriapaul", + "reviewDate": "2021-10-26T00:47:31", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2eb48851-e7e5-49e8-97b8-f0a7f0702887", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "kristina46", + "reviewDate": "2021-09-29T18:20:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3ba34f55-290a-4231-b703-eae71d639a8a", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "aaronwalker", + "reviewDate": "2021-11-15T11:18:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Pro (Steel)", + "description": "This Premium Mouse Pro (Steel) is a complete ergonomic mouse, featuring a great wide range of mouse types, mouse mounts, and mouse controls for your iPhone, Android, Wii Remote, or Kinect. The Pro contains all-around great quality mouse work with the sleek", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-01-03T18:49:26", + "price": 824.58, + "stock": 7, + "priceHistory": [ + { + "priceDate": "2021-01-08T16:41:06", + "newPrice": 853.22 + }, + { + "priceDate": "2021-09-04T16:41:06", + "newPrice": 841.55 + }, + { + "priceDate": "2022-05-01T16:41:06", + "newPrice": 886.2 + }, + { + "priceDate": "2022-12-26T16:41:06", + "newPrice": 773.15 + }, + { + "priceDate": "2025-04-22T16:41:06", + "newPrice": 824.58 + } + ] + }, + { + "id": "2a14ce1f-39cc-4407-a078-9b9357448d16", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "trandonna", + "reviewDate": "2021-12-10T18:42:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a4ac2b79-7e81-4235-82a4-32445f9115be", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alechansen", + "reviewDate": "2021-03-21T11:21:36", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2199442f-76f5-4658-bebe-2e1a1c8b6d52", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qbartlett", + "reviewDate": "2021-07-28T10:58:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e90c0315-0e26-4d37-8d89-687068bc7665", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathryn31", + "reviewDate": "2022-12-06T19:48:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bd17635f-27d1-4011-b629-5761dfcf042e", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marianunez", + "reviewDate": "2021-01-08T16:41:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1922271e-fd57-4229-8943-6a10bdc4e871", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gloria56", + "reviewDate": "2022-09-11T09:47:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "37b7f203-40c5-434f-ab43-1d6cc16a37c4", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "noahfields", + "reviewDate": "2021-05-24T08:29:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7f0b533a-aaca-4c22-a6f0-0dcad0ba7e96", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jonathan40", + "reviewDate": "2022-04-02T11:21:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3312adbb-631c-45b1-b699-911b280cb7e8", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cassidypetersen", + "reviewDate": "2022-06-29T09:58:20", + "stars": 5, + "verifiedUser": false + }, + { + "id": "1be66b93-0986-408e-8b44-72fabc14be88", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnortega", + "reviewDate": "2022-12-27T13:36:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "90a6939b-6f9c-41a9-947d-f03ab1aba994", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dmyers", + "reviewDate": "2021-03-21T19:36:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8bb85edf-3a15-48bf-9def-c6bf4d9cda66", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlesreynolds", + "reviewDate": "2022-11-16T05:00:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4de6a3fb-0705-4eab-a909-7c625d80815c", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jperez", + "reviewDate": "2022-03-26T11:28:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c6d3e9f7-4e4a-44be-8431-58d58279987b", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bryan46", + "reviewDate": "2022-10-18T11:35:50", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b1d611ca-8ab2-4de0-93bc-b0979d1658e8", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "devin91", + "reviewDate": "2022-06-19T13:46:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "54e4bc25-7af3-4ec1-9c63-1f62032d4995", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marquezemily", + "reviewDate": "2021-02-22T19:43:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ecd4b4e5-dc0f-4326-b0df-d6188019a2e4", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christine86", + "reviewDate": "2022-07-20T01:24:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "db7ed3ef-e663-4990-a348-f6cc9f71931a", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bday", + "reviewDate": "2021-03-09T10:06:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ed151cb3-f29b-4b10-83ed-dba836421376", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer + (Steel)", + "description": "This Amazing Computer + (Steel) is a digital tool that will turn even your most serious gaming equipment into a fully functional gaming computer.\n\nFeatures of Cyberpunk 2049\n\nYou will take on the role of the Cyberpunk 2049 robot, fighting cyber thieves, stealing technology and other goods!\n\nFight off attacks by cyber bandits and cyber robots alike, including robots from other universes!\n\nCreate", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-04-15T16:33:32", + "price": 1034.76, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-01-24T20:45:33", + "newPrice": 999.55 + }, + { + "priceDate": "2022-12-02T20:45:33", + "newPrice": 1009.89 + }, + { + "priceDate": "2025-03-14T20:45:33", + "newPrice": 1034.76 + } + ] + }, + { + "id": "bf304650-8e55-4975-90c3-d5db37856efb", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "todd20", + "reviewDate": "2022-07-07T05:26:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0d233254-7ca7-4b7b-87d3-ebc302b10e40", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "hugheskatie", + "reviewDate": "2021-06-09T16:24:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "949518f0-3932-40c7-94db-d67e6d3adb70", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonyanichols", + "reviewDate": "2022-08-11T21:38:19", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3b08c0fe-c748-4f6f-8d1f-8046b5391bc7", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "barbaragreen", + "reviewDate": "2021-08-11T02:15:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "132e83ee-3d71-42fb-ad19-2905b746449f", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "masondonald", + "reviewDate": "2021-01-24T20:45:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9353d6e5-055c-4a56-b770-c439250f4672", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "santanatodd", + "reviewDate": "2022-01-24T21:19:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d1e3bd68-6d76-4fe8-bc08-171cefb2d645", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "kbest", + "reviewDate": "2022-12-03T12:45:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Mini (Silver)", + "description": "This Awesome Computer Mini (Silver) is powered by a small laptop chassis, with a 12.5x32x21.4mm touchscreen with a 2.66g VRAM system with 3.42Gps latency. The processor power is built-in and comes standard with a 3.", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-05-10T04:20:17", + "price": 942.54, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-03-29T17:58:18", + "newPrice": 850.01 + }, + { + "priceDate": "2022-09-09T17:58:18", + "newPrice": 943.62 + }, + { + "priceDate": "2023-07-05T17:58:18", + "newPrice": 942.54 + } + ] + }, + { + "id": "937ccb72-85d4-4cc4-9784-df23af07a20d", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "hallen", + "reviewDate": "2021-04-26T20:30:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d315388e-b45d-4566-aea0-fcf7eb176f49", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "carrollbruce", + "reviewDate": "2021-10-11T06:42:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "11b3e330-b089-46ba-bb70-c24162f3c619", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher12", + "reviewDate": "2021-05-25T00:29:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8881a5fe-1426-4307-8d1f-c05c49ffe10f", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "creid", + "reviewDate": "2021-09-12T21:10:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "61105019-46a4-4aff-ad43-43ad6d353992", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "robinsonchelsey", + "reviewDate": "2022-02-15T03:30:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "01180381-2563-4fdb-a0bc-c43892e15634", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "arianaholmes", + "reviewDate": "2021-11-27T14:06:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bc5da99a-0405-46de-a74f-80c6bf79453b", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "mburnett", + "reviewDate": "2021-03-29T17:58:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f1c6efae-f9f9-43e0-a25e-3724478f82ae", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "hoffmanemma", + "reviewDate": "2022-02-06T17:21:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7fc50f64-f748-4369-aa3f-c4008833ad6d", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "beckernicole", + "reviewDate": "2022-03-22T02:35:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c36506a-447c-4d5d-8f94-38f3b4a1c8e8", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "trevor10", + "reviewDate": "2021-08-20T23:13:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "88482406-0a24-4f1b-90b0-ad2532107589", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "samuelgeorge", + "reviewDate": "2022-09-09T23:19:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Silver)", + "description": "This Premium Stand Micro (Silver) is part of the Premium Stand platform.\n\n\nGet it on your PC or Mac?\n\nWith today's digital sale, buy Premium Desktop Desktop Micro ($1,299) when it hits retailers on July 8th. A free trial of the premium", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-02-23T09:00:35", + "price": 1090.23, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-01-05T08:33:08", + "newPrice": 1123.75 + }, + { + "priceDate": "2021-11-03T08:33:08", + "newPrice": 1090.23 + } + ] + }, + { + "id": "4c38f3c9-d78a-48f4-a47b-1612611a5975", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonesbrianna", + "reviewDate": "2021-01-13T09:35:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "000a95de-d20a-48c2-8412-c783b5b808c7", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "jamesalexander", + "reviewDate": "2021-01-28T21:30:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "568cee44-d005-4ceb-961b-dc22db5ccf09", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "padillajuan", + "reviewDate": "2022-11-06T09:12:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "691c4de8-6d0f-4fff-8e34-3720825ae4a7", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "jeffreycaldwell", + "reviewDate": "2021-01-26T00:05:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5f35e2f3-3855-4cac-82bb-91af2f0792cb", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissa37", + "reviewDate": "2021-09-03T20:27:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3ad0c0ad-efe4-4d9c-8611-af22fb1c3d76", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "susanfrost", + "reviewDate": "2021-05-10T17:36:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3616bc3c-a1f4-4dcc-a573-052826063210", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "vwatson", + "reviewDate": "2021-12-15T19:26:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "560bc706-ba31-4b70-914a-0f3c664acd3b", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "icortez", + "reviewDate": "2022-07-30T11:15:24", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f26129a7-13c4-4ace-afe0-6cfb90154a0d", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "kenneth50", + "reviewDate": "2021-12-23T22:50:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ad88c0b0-f8b4-4673-aee6-3db497829c3c", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "abigail03", + "reviewDate": "2022-08-16T08:19:34", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f766778f-1db2-41c7-bb67-54c62ccaff20", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "scottcolleen", + "reviewDate": "2022-07-24T19:38:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "11d96bb3-0b7c-4edf-9112-a0b3ea76305a", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "laura10", + "reviewDate": "2022-02-10T06:08:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3cfc6252-69ff-4d43-82a8-aa3a0689ab2f", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "ruthhunt", + "reviewDate": "2021-01-05T08:33:08", + "stars": 5, + "verifiedUser": true + }, + { + "id": "c23e5f95-c3a1-4b39-838e-85144ef8ff93", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "jcarpenter", + "reviewDate": "2021-08-27T22:24:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "10c38cec-e27b-46fb-980f-c28337460f72", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael19", + "reviewDate": "2022-11-17T23:07:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "78cf0b2d-d134-43ca-9615-8463ac97479b", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "illoyd", + "reviewDate": "2021-12-25T12:41:20", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b7fb387d-ae9f-4ac5-90a7-500354b50508", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarah45", + "reviewDate": "2021-07-25T04:12:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c1c6a797-0f3b-4532-8108-3be85faebc20", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "tramirez", + "reviewDate": "2022-12-13T03:39:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "92bef7e4-2d69-4c14-8126-abb2b3257a87", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "willie84", + "reviewDate": "2021-04-28T23:43:15", + "stars": 5, + "verifiedUser": true + }, + { + "id": "96a3e982-393d-4552-b83e-a4f83fa886b2", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicolemoyer", + "reviewDate": "2022-10-01T16:03:26", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c748cf92-4202-404a-a66c-978f6de79bf3", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Mini (Silver)", + "description": "This Luxe Mouse Mini (Silver) is an excellent alternative to the standard mouse for an increased durability. Designed by a German company, the Luxe Mouse Mini is made from top-of-the", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-11-05T14:49:53", + "price": 890.5, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-01-11T10:14:20", + "newPrice": 811.01 + }, + { + "priceDate": "2021-11-25T10:14:20", + "newPrice": 879.3 + }, + { + "priceDate": "2022-10-09T10:14:20", + "newPrice": 950.82 + }, + { + "priceDate": "2022-10-10T10:14:20", + "newPrice": 890.5 + } + ] + }, + { + "id": "7f6f4a26-c250-48b0-997c-1f0b2cbee067", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nblack", + "reviewDate": "2022-06-28T08:17:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e55bdc47-02d4-4f04-8f8c-7c3930f22d36", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas54", + "reviewDate": "2022-08-26T13:13:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a6b1e9f5-fe93-4a9e-b16b-5fd49d55d085", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisa81", + "reviewDate": "2021-01-11T10:14:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2f2591a1-89b2-41fa-979f-8a5374c02c9d", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeremy81", + "reviewDate": "2022-03-09T00:04:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c067ebb7-a488-48ed-a009-17508dd07393", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gzavala", + "reviewDate": "2021-01-30T23:46:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4f0524da-d5f0-47a7-b01e-2cf08f684489", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "troydavis", + "reviewDate": "2022-05-26T14:46:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "aef8559f-68cf-44b0-8761-6a0f5e9d7bd7", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garciacharles", + "reviewDate": "2022-10-11T04:38:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "948ff682-811d-48a8-988b-13b60b136ce0", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "palmersandra", + "reviewDate": "2021-08-30T21:35:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e70f1934-ca42-4872-881a-f3f80ed37b21", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "warrenjudith", + "reviewDate": "2022-03-24T23:14:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d73dc001-e0af-49fa-b20a-edc40898243a", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shannonhernandez", + "reviewDate": "2022-01-25T11:43:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "product", + "name": "Amazing Filter + (Black)", + "description": "This Amazing Filter + (Black) is a highly accurate lens to use with one of the best lenses available. This lens combines the performance and quality of", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-06-30T07:21:46", + "price": 206.55, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-06-03T07:35:43", + "newPrice": 217.35 + }, + { + "priceDate": "2022-03-10T07:35:43", + "newPrice": 190.12 + }, + { + "priceDate": "2022-12-15T07:35:43", + "newPrice": 189.5 + }, + { + "priceDate": "2023-11-08T07:35:43", + "newPrice": 206.55 + } + ] + }, + { + "id": "95d4dc10-9a47-4d2f-a4ce-465cdc73187a", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "kim85", + "reviewDate": "2021-12-13T00:32:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c73ed7f8-9f5a-452c-abc5-f29d0814429e", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "mooreleslie", + "reviewDate": "2021-12-29T07:57:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9d36ea3c-2ff1-4512-9a52-94ea7da5cc63", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "marykrueger", + "reviewDate": "2021-06-03T07:35:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a5a48f40-5c04-4cfa-aad0-2f3a868417ba", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "amyhopkins", + "reviewDate": "2022-01-30T11:00:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d6b7076a-e2c2-466b-ac65-6bfc60a2142e", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "michelle78", + "reviewDate": "2022-06-03T15:49:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "17f504c5-300f-446e-a471-112ce3c657cb", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "maureen35", + "reviewDate": "2021-07-23T13:09:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bb82bf44-a08d-4ace-811c-dc9b96827f17", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "davidjensen", + "reviewDate": "2022-04-08T13:10:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "73efe6d6-edbd-4e7e-b188-c9f9b29f70c4", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "powersbrittney", + "reviewDate": "2021-10-01T02:50:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "00745f8d-0a5e-46a0-bb8d-b0210dd3229a", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "ronald56", + "reviewDate": "2022-10-21T22:39:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5e5b9c96-dbfc-499c-aaf0-7fc3fcf75065", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "harrisonamanda", + "reviewDate": "2022-01-10T17:12:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "777b1f34-7b94-4c96-8797-cc59bbe476ae", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "stricklandjohn", + "reviewDate": "2022-12-16T12:26:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1a29a4fc-3097-4967-8033-afbef4fca721", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "monique64", + "reviewDate": "2022-06-09T07:47:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c3586045-6ab8-4053-b5f3-c0ed3f7f8234", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "rothyvonne", + "reviewDate": "2022-11-22T23:44:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "31273cbc-158b-4599-8d40-ee72ff807018", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Red)", + "description": "This Premium Keyboard Mini (Red) is designed with the utmost effort to avoid your eyes. You will notice different colors of the soft gray, red, and white keys that are printed on the screen. The design of the keyboard is based most closely upon the color palette used on these keyboards. For example,", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-07-29T03:46:56", + "price": 461.12, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-01-24T05:07:26", + "newPrice": 469.77 + }, + { + "priceDate": "2021-07-29T05:07:26", + "newPrice": 433.04 + }, + { + "priceDate": "2022-01-31T05:07:26", + "newPrice": 424.87 + }, + { + "priceDate": "2022-08-05T05:07:26", + "newPrice": 443.1 + }, + { + "priceDate": "2023-01-26T05:07:26", + "newPrice": 461.12 + } + ] + }, + { + "id": "277c99e1-0aa7-4f8e-8a53-b42abe05162c", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fbright", + "reviewDate": "2021-03-19T22:53:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "485b924c-f479-4b3e-9517-38c6134ec10a", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas48", + "reviewDate": "2021-05-24T18:00:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f8551932-316e-4c99-ad53-7e31cba58072", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kingrobert", + "reviewDate": "2022-07-14T10:18:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8cde2ab2-ed3d-425a-b19f-fe19cf27aace", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rpittman", + "reviewDate": "2022-05-07T13:30:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6f1b8d81-b38a-4de4-94c2-9f5caab071f1", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael60", + "reviewDate": "2022-02-16T11:40:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2af2569d-2ccc-4d8a-87cc-a44938e7ddf3", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perezlindsey", + "reviewDate": "2021-02-13T23:34:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ae7a5b55-3e06-4d1d-9dde-db10dec56d0f", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithlori", + "reviewDate": "2022-02-20T08:10:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9c589594-10f8-45dc-9ae9-5aeac75acd7a", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "barbaramartinez", + "reviewDate": "2021-01-24T05:07:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9098412f-dd28-4eed-94e7-a70b129d3f0f", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emilyjohnson", + "reviewDate": "2021-05-29T10:35:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "598d5ef2-865d-4970-8acc-0145da9f64a9", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sara82", + "reviewDate": "2021-02-05T18:12:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9001dbd0-bb17-4a7f-8c2b-3802a8ff9496", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenniferweber", + "reviewDate": "2022-08-05T12:07:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9540cea2-ea60-437b-8d9a-376e03b61079", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissaduke", + "reviewDate": "2021-09-01T14:03:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e25a7994-99c1-4118-9aa1-a0b7042f79d9", + "productId": "e25a7994-99c1-4118-9aa1-a0b7042f79d9", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Pro (Steel)", + "description": "This Premium Mouse Pro (Steel) is available in two major sizes, as well as a smaller version containing a new and improved version for those running older models or older machines.\n\nProduct Specifications", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-04-15T06:48:36", + "price": 299.8, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-06-01T11:15:22", + "newPrice": 271.43 + }, + { + "priceDate": "2021-09-13T11:15:22", + "newPrice": 313.42 + }, + { + "priceDate": "2021-12-26T11:15:22", + "newPrice": 326.36 + }, + { + "priceDate": "2022-04-09T11:15:22", + "newPrice": 282.39 + }, + { + "priceDate": "2022-07-22T11:15:22", + "newPrice": 317.65 + }, + { + "priceDate": "2025-06-02T11:15:22", + "newPrice": 299.8 + } + ] + }, + { + "id": "7332a960-559b-49d2-87d0-2b5331d22f08", + "productId": "e25a7994-99c1-4118-9aa1-a0b7042f79d9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew26", + "reviewDate": "2021-06-01T11:15:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b511505d-ffc3-4b85-b3c4-e20ccf97196e", + "productId": "e25a7994-99c1-4118-9aa1-a0b7042f79d9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "roblesjeffrey", + "reviewDate": "2022-07-23T09:56:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "product", + "name": "Basic TV Super (Gold)", + "description": "This Basic TV Super (Gold) is a fantastic upgrade over the standard Ultra HD and Ultra FHD TV sets, yet still offers a 4K-capable HDTV viewing experience and an in", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-01-10T23:59:10", + "price": 889.08, + "stock": 58, + "priceHistory": [ + { + "priceDate": "2021-01-30T11:53:01", + "newPrice": 903.7 + }, + { + "priceDate": "2021-09-14T11:53:01", + "newPrice": 895.19 + }, + { + "priceDate": "2022-04-29T11:53:01", + "newPrice": 964.38 + }, + { + "priceDate": "2022-12-12T11:53:01", + "newPrice": 954.81 + }, + { + "priceDate": "2025-05-19T11:53:01", + "newPrice": 889.08 + } + ] + }, + { + "id": "4bdf0fcd-9f9d-4198-8812-663c6f09f54a", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "afields", + "reviewDate": "2022-12-14T04:41:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "225edb8e-b9b9-4d59-9b72-b6f31e7d03f5", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "wilsonkaren", + "reviewDate": "2022-07-07T10:50:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "efbe051c-a1f5-44de-b9cd-09accf6a8e13", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "sweeneysusan", + "reviewDate": "2021-07-30T13:16:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "df05cebf-eac6-4b5c-85a9-b2e64623b9a1", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "mary57", + "reviewDate": "2021-01-31T13:44:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8ba89618-bbe8-42a0-b615-7367936eec8e", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "taylordenise", + "reviewDate": "2021-05-16T10:42:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c4e38f59-e047-4252-a5c3-c4d6354d717a", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "joshuastewart", + "reviewDate": "2021-01-30T11:53:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "91f55da9-ea3c-44c8-9750-d72625bd7f0d", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "ashley09", + "reviewDate": "2022-01-29T09:55:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "68464fd7-024b-4c20-aa77-02eb7b428023", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "edwinparker", + "reviewDate": "2021-08-22T14:49:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ead48896-d849-4382-836c-a35339d203d7", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "mcintyrejeffrey", + "reviewDate": "2022-01-07T02:42:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b64ede66-0336-4bcb-8a1c-dd5f766e5339", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "trevor08", + "reviewDate": "2021-08-02T21:49:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "db0a5962-51c9-4e34-8611-ce5a6b96a959", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "lopezmichael", + "reviewDate": "2022-07-11T13:51:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8792f5ed-022c-429a-b32b-f497113e0dc8", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "barbaraknapp", + "reviewDate": "2021-12-20T16:41:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "017c89ac-9e2f-4db3-bb52-2f43a37978e8", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "justin45", + "reviewDate": "2022-06-17T17:48:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "43d76d88-20ec-400b-a3ef-225457bbb596", + "productId": "43d76d88-20ec-400b-a3ef-225457bbb596", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone 3000 (Silver)", + "description": "This Awesome Phone 3000 (Silver) is a unique phone that offers the highest resolution phone from a smartphone manufacturer, which also comes in one of the cheapest phones in the world, yet it has a lot of great features. The app was developed under Google's Android OS, so its simplicity is good. And the app should be downloaded from the Google Play Store very soon", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-05-18T21:02:09", + "price": 448.33, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2022-05-11T16:26:30", + "newPrice": 450.22 + }, + { + "priceDate": "2022-08-17T16:26:30", + "newPrice": 434.73 + }, + { + "priceDate": "2022-11-17T16:26:30", + "newPrice": 448.33 + } + ] + }, + { + "id": "659c03df-5bff-4f48-9331-fe14385c124f", + "productId": "43d76d88-20ec-400b-a3ef-225457bbb596", + "category": "Electronics", + "docType": "customerRating", + "userName": "eric17", + "reviewDate": "2022-05-11T16:26:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "59c1205a-56d9-4e07-b357-54b4f72e6629", + "productId": "43d76d88-20ec-400b-a3ef-225457bbb596", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeremyallen", + "reviewDate": "2022-08-18T04:17:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "93fef66c-0c5a-48d4-8990-e515ec54c05e", + "productId": "43d76d88-20ec-400b-a3ef-225457bbb596", + "category": "Electronics", + "docType": "customerRating", + "userName": "eddie16", + "reviewDate": "2022-07-31T18:38:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Super (Silver)", + "description": "This Basic Phone Super (Silver) is the best phone I've encountered in years. It's a pretty basic phone with a little more complexity and so far so good. It also features a lot of performance and so far so good. However, it can also be a bit annoying for some, especially those", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-22T07:39:25", + "price": 1029.92, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-04-03T07:17:41", + "newPrice": 959.91 + }, + { + "priceDate": "2021-06-14T07:17:41", + "newPrice": 1042.25 + }, + { + "priceDate": "2021-08-25T07:17:41", + "newPrice": 1124.36 + }, + { + "priceDate": "2021-11-05T07:17:41", + "newPrice": 974.69 + }, + { + "priceDate": "2022-01-16T07:17:41", + "newPrice": 1010.36 + }, + { + "priceDate": "2024-12-05T07:17:41", + "newPrice": 1029.92 + } + ] + }, + { + "id": "23ca89fb-d043-43ff-ad2a-cef186c3b88f", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacoblowe", + "reviewDate": "2022-01-16T20:06:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6004c864-cddd-4b6b-a197-c3f6fd8440eb", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "lloydphillip", + "reviewDate": "2021-04-03T07:17:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7c11431d-68e3-48b7-b8ab-fd93e5f44387", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "sara31", + "reviewDate": "2021-05-30T10:43:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "865e23c8-f896-4cca-a995-57023ee4cdcc", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacksonmaurice", + "reviewDate": "2021-10-23T09:29:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5fb2e1b5-b0d4-4da6-ae92-18f5bbd43ac9", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "nchristian", + "reviewDate": "2021-06-17T06:32:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker + (Red)", + "description": "This Amazing Speaker + (Red) is your first step towards hearing your voice for free. All our speakers are printed in high quality, easy-to-read blueprints. Get notified when you open the box, and you'll receive a notification when any of our speakers release product or demo tape. When you order, there is an important step to take. You will receive full billing at no additional cost to your order. When you register for our first speaker, you will receive an email", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-12-08T00:20:15", + "price": 677.35, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-04-19T11:18:01", + "newPrice": 636.31 + }, + { + "priceDate": "2022-01-03T11:18:01", + "newPrice": 625.05 + }, + { + "priceDate": "2022-09-19T11:18:01", + "newPrice": 700.47 + }, + { + "priceDate": "2025-05-22T11:18:01", + "newPrice": 677.35 + } + ] + }, + { + "id": "eb404449-e2b8-41ce-913e-c0f20b13490b", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "yolanda50", + "reviewDate": "2021-11-30T22:48:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3b830678-5424-4bfc-94fc-5d01874b8959", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "tami55", + "reviewDate": "2022-06-28T09:35:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e05a2b0d-0e2e-4673-87b8-35ca8df1b771", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "nancyhernandez", + "reviewDate": "2021-04-19T11:18:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "228bf41b-c7d8-4252-96b8-9d88af922e0b", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "ajohnson", + "reviewDate": "2022-05-03T13:46:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "75f6c501-9abf-4530-8f88-c822ef1cb21c", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "natalie28", + "reviewDate": "2022-08-09T15:41:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0c04a3da-59cd-477d-bd40-70c4cbfd0aef", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "charlesbowman", + "reviewDate": "2021-11-27T12:01:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7e1645da-ceae-4142-82c4-0050030b2c41", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "anichols", + "reviewDate": "2022-09-19T22:57:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a6aa10f6-e79a-4ea7-93fe-4bb2f83391d0", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "ccarter", + "reviewDate": "2021-08-03T23:10:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "76f07a7e-0b2c-4230-9c68-b9a35776c7ca", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "daymichelle", + "reviewDate": "2022-05-28T18:57:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ff39e8c0-001d-42ea-85b4-5b48e3af5f3a", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "javier88", + "reviewDate": "2021-11-07T01:48:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "33277efa-cb27-47c9-891c-a238cdaa7587", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "nancy79", + "reviewDate": "2021-07-02T06:40:31", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a9935d8a-2a78-4d60-9315-8ebc18856b28", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "xmathis", + "reviewDate": "2021-12-20T21:28:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "82a2cffb-805c-4da8-8f5a-5fd1ff043474", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "eugene26", + "reviewDate": "2022-02-11T14:25:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "77beed7f-8067-4cfe-9a17-8dd8fa4c4a85", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "tina33", + "reviewDate": "2021-11-24T10:08:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4ab45350-98ea-41be-81fc-50d756282734", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "kimberlydiaz", + "reviewDate": "2021-07-28T11:25:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse 3000 (Gold)", + "description": "This Amazing Mouse 3000 (Gold) is a perfect example of an ultra efficient mouse, it is one of the most efficient products available, it has a very good price at $2000 and is very comfortable for a long time. The high quality was designed by a manufacturer using the most rigorous and practical technology available on the market.\n\nThe mouse will work great in a variety", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-11-22T15:08:05", + "price": 719.41, + "stock": 2, + "priceHistory": [ + { + "priceDate": "2021-01-27T22:51:40", + "newPrice": 675.54 + }, + { + "priceDate": "2022-11-11T22:51:40", + "newPrice": 702.71 + }, + { + "priceDate": "2024-11-02T22:51:40", + "newPrice": 719.41 + } + ] + }, + { + "id": "33e36967-2267-49f3-99a8-eab68bb4d2d8", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "youngkathleen", + "reviewDate": "2021-01-27T22:51:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "eb6ad905-db07-493b-8769-22e3dc562e71", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uholmes", + "reviewDate": "2022-01-03T20:57:04", + "stars": 4, + "verifiedUser": false + }, + { + "id": "af116212-7b81-4ad8-99b5-ab2df8893750", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eric75", + "reviewDate": "2022-11-12T15:34:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c10110fa-361d-4318-975e-af743f9c464d", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nataliestephens", + "reviewDate": "2022-08-08T20:10:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f5f06bae-7696-49b5-8b7f-0043dc54f563", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xjenkins", + "reviewDate": "2021-10-31T05:15:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c590e953-3691-4b74-a406-d1330a879d97", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mccarthykimberly", + "reviewDate": "2021-05-12T08:54:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c288a493-7570-48b6-95cd-9e76c2bc33b5", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ivanharris", + "reviewDate": "2022-05-30T01:17:52", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bc822a00-432d-436c-83d3-e6a482a4cadf", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "saraochoa", + "reviewDate": "2022-04-18T14:16:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b24aa787-9fb8-405c-8bcc-77a4b5faee1a", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ifox", + "reviewDate": "2022-10-26T21:15:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a4ad2d74-07c7-4dce-b234-0de16b862b57", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kennethrobinson", + "reviewDate": "2021-11-03T14:55:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ee8b5a53-1624-40f9-b225-096359d15188", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reyesjennifer", + "reviewDate": "2022-08-24T11:27:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b8856c10-5800-458d-aa01-25dd91833ebd", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dylan73", + "reviewDate": "2021-03-26T11:05:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c550aeb4-2de8-43a4-8884-18e256924e8a", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinehamilton", + "reviewDate": "2022-09-29T05:48:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bc817bbf-76f9-434a-8d95-9401d3cb7728", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wreese", + "reviewDate": "2021-03-10T02:16:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a33a3e65-b135-4a42-bffe-3802b10cd215", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "latoyaaguilar", + "reviewDate": "2022-01-14T22:59:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a6cd3761-0821-430e-882b-37ae1b4d9621", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kcurtis", + "reviewDate": "2022-05-13T13:48:27", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9085118e-afaf-4215-b271-8c129548aedb", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "abbottsusan", + "reviewDate": "2022-10-16T09:12:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a42bac78-76da-4168-9027-4dc08b7ef4c9", + "productId": "a42bac78-76da-4168-9027-4dc08b7ef4c9", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Ultra (Steel)", + "description": "This Awesome Speaker Ultra (Steel) is a special product designed to deliver this speaker great sound and quality. All aluminum and stainless steel construction comes from our factory in the USA. The cabinet is hand-assembled using a 3-degree heat control (CRC) system as it should.The Speaker Ultra is made of 10\" square metal cabinet and includes a speaker box, a top shelf, and some cabinets in black.", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-08-19T05:32:00", + "price": 789.13, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2022-11-14T10:23:18", + "newPrice": 834.09 + }, + { + "priceDate": "2022-11-15T10:23:18", + "newPrice": 838.61 + }, + { + "priceDate": "2024-03-28T10:23:18", + "newPrice": 789.13 + } + ] + }, + { + "id": "36e0356d-72b0-4bc9-b1a9-904341602181", + "productId": "a42bac78-76da-4168-9027-4dc08b7ef4c9", + "category": "Media", + "docType": "customerRating", + "userName": "jmyers", + "reviewDate": "2022-11-14T10:23:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "738f6fbf-00fa-4203-8e10-86c8fe6d19e3", + "productId": "738f6fbf-00fa-4203-8e10-86c8fe6d19e3", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Micro (Black)", + "description": "This Basic Keyboard Micro (Black) is powered by the new Arduino IDE 5.5 as shown here.\n\nTo run, you need a Microcontroller-specific software like Arduino Mini, or to use the serial driver and connect to an external USB power source. It can be found in the Accessories section of the main page.\n\nHere are some examples of how a basic keyboard can start working:\n\nIn basic mode, the USB power needs to be turned on", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-03-29T22:24:16", + "price": 1052.4, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-07-10T15:44:53", + "newPrice": 1149.8 + }, + { + "priceDate": "2021-07-11T15:44:53", + "newPrice": 1112.53 + }, + { + "priceDate": "2025-06-26T15:44:53", + "newPrice": 1052.4 + } + ] + }, + { + "id": "a3e46378-93d1-4b1e-b913-94e0bfed086a", + "productId": "738f6fbf-00fa-4203-8e10-86c8fe6d19e3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ianderson", + "reviewDate": "2021-07-10T15:44:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "31aa6f4a-7583-47a2-b35a-479d6190750c", + "productId": "31aa6f4a-7583-47a2-b35a-479d6190750c", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse 3000 (Silver)", + "description": "This Amazing Mouse 3000 (Silver) is a light and very bright white mouse that is powered by a 3.4 v CPU. It has a very smooth click/roll of 8p. It has a black border with an 80% White area. In my tests it performed well. The mouse is very smooth in hand. No noise, no buzzing. The mouse will still function just fine when you", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-10-19T09:56:28", + "price": 861.47, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2022-03-26T22:11:52", + "newPrice": 884.28 + }, + { + "priceDate": "2022-05-28T22:11:52", + "newPrice": 883.49 + }, + { + "priceDate": "2022-07-30T22:11:52", + "newPrice": 839.96 + }, + { + "priceDate": "2022-10-01T22:11:52", + "newPrice": 788.33 + }, + { + "priceDate": "2022-12-03T22:11:52", + "newPrice": 912.23 + }, + { + "priceDate": "2024-02-27T22:11:52", + "newPrice": 861.47 + } + ] + }, + { + "id": "6ba9e648-5f1d-47a3-b6a8-a8d4df189bc4", + "productId": "31aa6f4a-7583-47a2-b35a-479d6190750c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sandra80", + "reviewDate": "2022-12-04T07:49:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7a17da57-1217-4ef9-b4a1-3725d0996e42", + "productId": "31aa6f4a-7583-47a2-b35a-479d6190750c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "usmith", + "reviewDate": "2022-03-26T22:11:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3c2afd20-3d12-45be-a065-dc541220c421", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer 3000 (Red)", + "description": "This Luxe Computer 3000 (Red) is equipped with a display of a 3K resolution screen that will display an image of the display (or a video) for a maximum pixel density of 2445 pixels per inch (ppi). The computer will run the Java code provided in the software. With the display you'll see the display as a graphical representation of the graphics information and as a file of information that can be displayed by Microsoft Excel", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-10-14T05:48:29", + "price": 830.93, + "stock": 82, + "priceHistory": [ + { + "priceDate": "2021-01-24T16:32:48", + "newPrice": 889.11 + }, + { + "priceDate": "2021-11-17T16:32:48", + "newPrice": 880.07 + }, + { + "priceDate": "2022-09-10T16:32:48", + "newPrice": 813.93 + }, + { + "priceDate": "2024-03-11T16:32:48", + "newPrice": 830.93 + } + ] + }, + { + "id": "11dd8d1a-a8f5-4138-8d9b-cbe3e91f03dd", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "ldominguez", + "reviewDate": "2021-09-07T03:27:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "576b2a93-911d-4c8f-9707-a947b7ab1592", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "dennis09", + "reviewDate": "2022-06-11T13:55:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "83d769f2-b58d-49f0-a112-6ba8540a2eda", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "hubbardemily", + "reviewDate": "2022-08-16T03:28:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7bf69c95-f574-42ba-8138-a2d3827a32e5", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "marshallkathryn", + "reviewDate": "2022-02-22T11:46:47", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4aa58073-765a-48cd-8206-2a37cf11dcc5", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "adeleon", + "reviewDate": "2021-06-21T20:38:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "abfb3d88-6817-42b3-a704-3d8e4b62f157", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "grahamerica", + "reviewDate": "2021-02-07T14:08:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c0cad8f3-3f91-4132-a76c-40240a49b17b", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "joseph47", + "reviewDate": "2022-09-11T17:24:09", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1e36133e-e566-4f0c-9033-23af267f2aed", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "danielpark", + "reviewDate": "2021-01-24T16:32:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f71a0304-2247-458f-964c-a4e17f9d658c", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "darleneholt", + "reviewDate": "2022-07-02T12:37:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "416a5b26-d972-4656-8ebd-e49e2edeb09d", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "amandahartman", + "reviewDate": "2022-02-10T02:13:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ee6d1fb8-8cf0-4404-a27b-3722444b39fb", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamie37", + "reviewDate": "2021-11-03T05:36:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b645c05d-404b-44ee-99e0-18996c9e8d39", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "joneslinda", + "reviewDate": "2022-06-09T22:25:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5904a239-9257-4259-86d7-895ea75267ed", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnramos", + "reviewDate": "2021-12-17T03:13:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f5366a9b-9b95-47e4-8968-1e892f98d54d", + "productId": "f5366a9b-9b95-47e4-8968-1e892f98d54d", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Pro (Black)", + "description": "This Basic Keyboard Pro (Black) is perfect. In a sense it's the only one available with the Core i2, but it has plenty of features beyond what i have.\n\nIn case you need a PC that can't be found as a", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-08-25T15:43:50", + "price": 764.51, + "stock": 7, + "priceHistory": [ + { + "priceDate": "2022-01-20T04:21:37", + "newPrice": 799.06 + }, + { + "priceDate": "2022-03-09T04:21:37", + "newPrice": 803.54 + }, + { + "priceDate": "2022-04-26T04:21:37", + "newPrice": 753.69 + }, + { + "priceDate": "2022-10-16T04:21:37", + "newPrice": 764.51 + } + ] + }, + { + "id": "6d2150d2-345d-458a-928a-dc2e721b82ea", + "productId": "f5366a9b-9b95-47e4-8968-1e892f98d54d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "olewis", + "reviewDate": "2022-01-20T04:21:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0746f80d-d7b0-482a-a6c8-3382e61b4791", + "productId": "f5366a9b-9b95-47e4-8968-1e892f98d54d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sierrageorge", + "reviewDate": "2022-04-26T13:11:50", + "stars": 4, + "verifiedUser": true + }, + { + "id": "934064e5-4ad3-4f50-ba31-a5b252bbf7a8", + "productId": "934064e5-4ad3-4f50-ba31-a5b252bbf7a8", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Micro (Gold)", + "description": "This Luxe Speaker Micro (Gold) is designed for use on your desktops. It has 3 adjustable-backward tilt knobs to select from and can be programmed for a wider selection. This can be configured for an extremely wide selection of audio content, such as acoustic guitar and bass.\n\nBuilt in headphone jack is a micro USB port where you can", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-10-08T18:38:51", + "price": 109.29, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2022-01-29T17:27:47", + "newPrice": 108.8 + }, + { + "priceDate": "2022-05-19T17:27:47", + "newPrice": 103.37 + }, + { + "priceDate": "2024-02-16T17:27:47", + "newPrice": 109.29 + } + ] + }, + { + "id": "5376e62b-0020-426d-8d64-8fcfc913bdb6", + "productId": "934064e5-4ad3-4f50-ba31-a5b252bbf7a8", + "category": "Media", + "docType": "customerRating", + "userName": "andrew46", + "reviewDate": "2022-01-29T17:27:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3402faa6-aa08-4b90-af6c-f12e0aa966c4", + "productId": "934064e5-4ad3-4f50-ba31-a5b252bbf7a8", + "category": "Media", + "docType": "customerRating", + "userName": "ohernandez", + "reviewDate": "2022-05-20T09:47:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "product", + "name": "Basic TV Mini (Silver)", + "description": "This Basic TV Mini (Silver) is a special Mini TV set that will give you amazing digital experience. Featuring HDMI (High Definition) and DVI-D displays, a wide variety of connectivity options and a HDMI-based AV channel,", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-02-18T01:44:45", + "price": 741.58, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-01-21T03:16:30", + "newPrice": 668.68 + }, + { + "priceDate": "2021-07-02T03:16:30", + "newPrice": 763.83 + }, + { + "priceDate": "2021-12-11T03:16:30", + "newPrice": 732.7 + }, + { + "priceDate": "2022-05-22T03:16:30", + "newPrice": 774.57 + }, + { + "priceDate": "2022-10-31T03:16:30", + "newPrice": 760.58 + }, + { + "priceDate": "2025-05-19T03:16:30", + "newPrice": 741.58 + } + ] + }, + { + "id": "73d3e0fe-df7a-4341-992a-4e1c8327fd1e", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "customerRating", + "userName": "monicamiller", + "reviewDate": "2022-11-02T15:43:25", + "stars": 5, + "verifiedUser": false + }, + { + "id": "77c57e8a-9a12-4a11-80ab-be214d81913b", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "customerRating", + "userName": "kevin48", + "reviewDate": "2021-01-21T03:16:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6a2ea653-3012-4564-b6e1-7320a4661e6f", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "customerRating", + "userName": "michael10", + "reviewDate": "2021-05-09T19:27:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "339d9f73-bf47-4cfb-a913-0e85357ae9c6", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "customerRating", + "userName": "robin92", + "reviewDate": "2021-06-23T02:56:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse 3000 (Silver)", + "description": "This Premium Mouse 3000 (Silver) is in the same state. It will not change its colour from the previous colour of the top bracket, and will still make a different colour (this is more consistent", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-10-04T22:23:09", + "price": 347.79, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2021-01-27T21:35:49", + "newPrice": 354.75 + }, + { + "priceDate": "2021-07-16T21:35:49", + "newPrice": 355.27 + }, + { + "priceDate": "2022-01-02T21:35:49", + "newPrice": 367.19 + }, + { + "priceDate": "2022-06-21T21:35:49", + "newPrice": 361.04 + }, + { + "priceDate": "2022-12-08T21:35:49", + "newPrice": 371.99 + }, + { + "priceDate": "2024-06-30T21:35:49", + "newPrice": 347.79 + } + ] + }, + { + "id": "f3aacb9a-9f03-44f8-891e-66506125a6fb", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "natalie73", + "reviewDate": "2021-08-07T09:25:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fe333272-4d17-41ad-a679-06ec5dc2edd3", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicajackson", + "reviewDate": "2021-11-18T19:54:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c97691eb-34c7-49ff-a0f9-753864568a8e", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kelsey46", + "reviewDate": "2022-12-12T05:30:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5a8d79f2-91d7-43ea-8ddb-3af71534e8fb", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "benjaminmartinez", + "reviewDate": "2022-06-29T04:17:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f6d01342-99df-4c7d-9695-9282ca533f89", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amanda05", + "reviewDate": "2022-02-28T15:08:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a6f3bf4a-5608-4351-99bf-dd10ba9fe2c8", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithmatthew", + "reviewDate": "2021-09-15T10:06:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ac8e2393-844e-4787-a74f-47a0fc5b3321", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jandrews", + "reviewDate": "2021-05-25T07:48:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ea486f3d-ad74-4acf-a01e-4de27722cedc", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brodriguez", + "reviewDate": "2021-09-07T23:01:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "681a1238-06d9-437f-9654-d3f7e2c62aeb", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "glassjacqueline", + "reviewDate": "2021-01-27T21:35:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b901ada0-586c-4706-b38a-2ce6e74348ce", + "productId": "b901ada0-586c-4706-b38a-2ce6e74348ce", + "category": "Other", + "docType": "product", + "name": "Premium Filter + (Steel)", + "description": "This Premium Filter + (Steel) is best for low-maintenance and fast-access storage: We have designed and manufactured our premium filters for you to enhance your existing water or air conditioning, even to enhance the flavor-defining properties of your water or air tanks to the extent that the filter retains its original color for maximum enjoyment in your home. Water filters that include the original color have the most energy efficiency benefit of their kind. The main", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-01-28T19:28:55", + "price": 782.94, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2020-01-28T19:28:55", + "newPrice": 796.62 + }, + { + "priceDate": "2024-05-27T19:28:55", + "newPrice": 782.94 + } + ] + }, + { + "id": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Micro (Black)", + "description": "This Awesome Filter Micro (Black) is rated 4.4 out of 5 by 2.\n\nRated 5 out of 5 by Joe from Awesome Filter You will love this filter for all times of your filter needs. I use my first filter here on the market which was the 602 in a vintage collection of 5D. It is a great filter.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-01-03T11:49:50", + "price": 728.57, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-11-17T06:46:01", + "newPrice": 757.98 + }, + { + "priceDate": "2022-03-29T06:46:01", + "newPrice": 667.72 + }, + { + "priceDate": "2022-08-08T06:46:01", + "newPrice": 733.9 + }, + { + "priceDate": "2022-12-18T06:46:01", + "newPrice": 745.48 + }, + { + "priceDate": "2025-05-08T06:46:01", + "newPrice": 728.57 + } + ] + }, + { + "id": "40763dfb-df7d-40dd-b212-d20ea423180d", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "johnsonrichard", + "reviewDate": "2022-10-03T00:10:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f7bfe1a1-103b-489a-bf5f-aa1d8551d29c", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "garciamadison", + "reviewDate": "2022-12-18T15:01:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e3d83b90-4850-460e-80d8-64c0d430d152", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "gregory44", + "reviewDate": "2022-11-11T06:40:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8e7d1c63-f339-4234-bb09-c4aef6f86ab0", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "mary37", + "reviewDate": "2021-11-17T06:46:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3f097aa9-1c03-4493-a9fc-8a2799869ae8", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "deannasalazar", + "reviewDate": "2021-11-27T10:52:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9814d0a7-9565-46ae-adaf-8044aca5ce31", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "psalazar", + "reviewDate": "2022-09-18T21:25:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "13d93137-986f-4b93-8f97-ec03788d1963", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "dfoster", + "reviewDate": "2022-01-10T13:39:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "808398bb-7cf4-4203-87b1-b513297b3888", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "anthonysmith", + "reviewDate": "2022-08-23T15:55:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Pro (Silver)", + "description": "This Amazing Phone Pro (Silver) is an android phone with an Android 5.0 Lollipop phone skin that is compatible with the Qualcomm Snapdragon 543 with its Snapdragon 600 (Galaxy Tab 7). It is an amazing phone that can actually perform well", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-11-14T00:07:57", + "price": 801.5, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-04-27T01:23:28", + "newPrice": 804.26 + }, + { + "priceDate": "2021-09-16T01:23:28", + "newPrice": 853.2 + }, + { + "priceDate": "2022-02-05T01:23:28", + "newPrice": 762.91 + }, + { + "priceDate": "2022-06-27T01:23:28", + "newPrice": 780.96 + }, + { + "priceDate": "2022-11-16T01:23:28", + "newPrice": 841.54 + }, + { + "priceDate": "2024-12-29T01:23:28", + "newPrice": 801.5 + } + ] + }, + { + "id": "ac7aaa31-d757-4484-b7a4-5f69d1e54770", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "samanthamorales", + "reviewDate": "2022-07-30T11:00:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1e41cf4d-a733-448d-96ed-40c96f1cc2d6", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "phillipblake", + "reviewDate": "2021-09-07T13:33:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "06d38edf-1ae3-4d2e-94f9-313dd95500c1", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "rmorgan", + "reviewDate": "2021-06-21T17:49:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3784f990-882a-457d-be01-0b5c2f7ebbc8", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "wglover", + "reviewDate": "2022-11-19T12:51:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e668ddf2-c772-4732-a87d-3eae312b7cef", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "ryan71", + "reviewDate": "2021-09-10T02:38:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c4f8d028-d62e-40ea-8702-8ed3c979d359", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "jose89", + "reviewDate": "2021-04-27T01:23:28", + "stars": 5, + "verifiedUser": false + }, + { + "id": "16565e44-2afe-4ac4-bdd7-ba335e47120f", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "hodgesjessica", + "reviewDate": "2021-11-05T22:06:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dd829f0e-a2fe-4ac1-bd9a-d3a558add99a", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "yeseniamarshall", + "reviewDate": "2021-10-16T12:44:16", + "stars": 5, + "verifiedUser": true + }, + { + "id": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard 3000 (Red)", + "description": "This Amazing Keyboard 3000 (Red) is the first of two new line of mechanical keyboards of its kind built for professionals using Cherry MX RGB keys. This keyboard features eight keys for different combinations. It features the built-in", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-10-22T10:21:35", + "price": 994.27, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-02-06T07:58:52", + "newPrice": 895.35 + }, + { + "priceDate": "2021-07-11T07:58:52", + "newPrice": 1065.6 + }, + { + "priceDate": "2021-12-13T07:58:52", + "newPrice": 897.29 + }, + { + "priceDate": "2022-05-17T07:58:52", + "newPrice": 903.99 + }, + { + "priceDate": "2022-10-19T07:58:52", + "newPrice": 967.22 + }, + { + "priceDate": "2024-04-05T07:58:52", + "newPrice": 994.27 + } + ] + }, + { + "id": "0036e341-daad-49e6-9cfe-7ab6069a2050", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaron74", + "reviewDate": "2022-10-22T21:15:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "09445ce4-9a6e-47d6-993c-c8487aa4c9f4", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "caitlin32", + "reviewDate": "2022-05-14T06:51:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a6221bdf-8bd9-4db1-b57c-873d314f0a48", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john87", + "reviewDate": "2021-02-06T07:58:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6c4ff11c-0b45-471d-9e68-86b0c06e773c", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownrobert", + "reviewDate": "2022-10-17T21:54:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Pro (Steel)", + "description": "This Awesome Mouse Pro (Steel) is an interesting and innovative mouse that uses a very clever combination of features and a simple user interface.\n\nTo read my demo of Steel Mouse", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-03-07T04:22:31", + "price": 773.33, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-03-09T02:06:51", + "newPrice": 847.79 + }, + { + "priceDate": "2021-07-19T02:06:51", + "newPrice": 843.56 + }, + { + "priceDate": "2021-11-28T02:06:51", + "newPrice": 706.66 + }, + { + "priceDate": "2022-04-09T02:06:51", + "newPrice": 767.93 + }, + { + "priceDate": "2022-08-19T02:06:51", + "newPrice": 739.66 + }, + { + "priceDate": "2025-03-20T02:06:51", + "newPrice": 773.33 + } + ] + }, + { + "id": "33caff21-0dac-4c2a-b0a9-7aeb05713d12", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lanejason", + "reviewDate": "2021-03-11T05:14:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ff5f3448-c81f-464f-839e-018f91cc802a", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vhogan", + "reviewDate": "2021-04-25T08:11:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1f0cc2d2-0bf1-4a9c-97d1-b5ae1958f545", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carlwhite", + "reviewDate": "2022-03-02T16:18:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3dfda257-b9a5-436b-9979-c1f0bd3bb717", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amanda94", + "reviewDate": "2021-04-04T21:20:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e1a314b0-85a0-436c-bc1b-3f66f2caa05a", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "llittle", + "reviewDate": "2021-03-09T02:06:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f6462443-e3df-44c4-901f-b1f7b950d4c7", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "katelyn99", + "reviewDate": "2021-09-21T01:09:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "aa58c2ed-c029-41a3-ac96-71ce45493ee5", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownamanda", + "reviewDate": "2021-08-10T11:26:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "45fbb674-7368-4a34-baca-78e8a0c11b47", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlottemoore", + "reviewDate": "2021-06-16T21:11:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b84ad85f-820d-4acc-bf18-91b4b3cf9391", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "luke94", + "reviewDate": "2022-08-22T12:16:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Steel)", + "description": "This Premium Computer Ultra (Steel) is the successor to the Deluxe Computer Ultra. The new Ultra features:\n\n- High quality sound reproduction in all channels", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-07-29T14:17:02", + "price": 446.42, + "stock": 43, + "priceHistory": [ + { + "priceDate": "2021-05-03T01:11:36", + "newPrice": 477.58 + }, + { + "priceDate": "2021-11-08T01:11:36", + "newPrice": 466.71 + }, + { + "priceDate": "2022-05-16T01:11:36", + "newPrice": 411.06 + }, + { + "priceDate": "2022-11-21T01:11:36", + "newPrice": 449.08 + }, + { + "priceDate": "2023-03-29T01:11:36", + "newPrice": 446.42 + } + ] + }, + { + "id": "df011d15-cc27-491d-b55c-3bbc5f19ea43", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "averychelsea", + "reviewDate": "2021-11-11T16:47:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0c1eea5a-f34f-4370-8e5d-5ae064366e34", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "andersensean", + "reviewDate": "2022-11-21T18:05:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dfaad298-d5a6-4667-8172-aa08b5a93b9c", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandon82", + "reviewDate": "2022-01-05T08:59:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "af6226ac-7e2a-4c09-a91c-5a2b40779994", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "xbooth", + "reviewDate": "2022-02-02T15:51:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "297bb41a-50b0-4649-b31f-aee0bf25a199", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeffrey66", + "reviewDate": "2021-12-20T12:06:18", + "stars": 4, + "verifiedUser": true + }, + { + "id": "39df76e9-bbcd-4978-927c-c19cf37f1efe", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "john28", + "reviewDate": "2021-12-16T10:53:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "21fba952-4ccb-4692-8ed5-557ec8db8fd9", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "laurenjoseph", + "reviewDate": "2021-05-03T01:11:36", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3654fcc0-6f1b-4dd0-8fdd-bedbccbbe297", + "productId": "3654fcc0-6f1b-4dd0-8fdd-bedbccbbe297", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Mini (Silver)", + "description": "This Luxe Computer Mini (Silver) is a modern, modern compact computer without a microprocessor, power supply that is powered by a 12v single-lane 5V battery. It is made of a flexible fiberglass body with six-foot-tall legs and the integrated battery pack offers enough power to last up", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-10-19T22:42:51", + "price": 336.77, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-08-16T00:36:20", + "newPrice": 350.29 + }, + { + "priceDate": "2021-09-29T00:36:20", + "newPrice": 352.62 + }, + { + "priceDate": "2021-11-12T00:36:20", + "newPrice": 324.52 + }, + { + "priceDate": "2021-12-26T00:36:20", + "newPrice": 321.41 + }, + { + "priceDate": "2022-10-30T00:36:20", + "newPrice": 336.77 + } + ] + }, + { + "id": "4b1b1318-55bc-409d-b574-cc93f6f4726b", + "productId": "3654fcc0-6f1b-4dd0-8fdd-bedbccbbe297", + "category": "Electronics", + "docType": "customerRating", + "userName": "sheila47", + "reviewDate": "2021-08-16T00:36:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "67ee3e73-8ca1-429a-b429-2cdd97e26e03", + "productId": "3654fcc0-6f1b-4dd0-8fdd-bedbccbbe297", + "category": "Electronics", + "docType": "customerRating", + "userName": "jsantiago", + "reviewDate": "2021-12-28T07:23:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7682a094-0755-4abb-b387-8151732951b7", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand + (Gold)", + "description": "This Premium Stand + (Gold) is in the same form as above.\n\nCannot be used in a PvP Battle.net lobby except in a Single Character or Tournament setting with the ability to place Premium Stand Units at multiple points in the battlefield.\n\nCannot be used in a PvP Battle.net lobby except in a Single Character or Tournament setting with the ability", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-11-27T06:35:57", + "price": 220.74, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-04-21T21:07:38", + "newPrice": 212.28 + }, + { + "priceDate": "2021-10-31T21:07:38", + "newPrice": 210.37 + }, + { + "priceDate": "2022-05-12T21:07:38", + "newPrice": 203.96 + }, + { + "priceDate": "2022-11-21T21:07:38", + "newPrice": 205.62 + }, + { + "priceDate": "2023-06-06T21:07:38", + "newPrice": 220.74 + } + ] + }, + { + "id": "c2ddd782-5b7a-4412-a854-55f8166f920f", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "tina55", + "reviewDate": "2022-06-07T17:13:34", + "stars": 5, + "verifiedUser": true + }, + { + "id": "05af3174-7a02-473d-b8d6-fd3dbb7c6e81", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "garciacrystal", + "reviewDate": "2021-11-04T12:40:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ab884709-2431-43e9-af5e-4c004443af6e", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "valerierice", + "reviewDate": "2022-11-24T08:51:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ba78a028-ba67-4258-9ee7-7639c21a26c2", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "dennis79", + "reviewDate": "2021-05-05T16:48:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "96214847-815c-46c9-be39-6b0b5e4a8ec6", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "patriciaortiz", + "reviewDate": "2022-05-24T03:05:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a3e712bc-2434-4d84-bb67-27bdb7912132", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "mcdowellanthony", + "reviewDate": "2021-04-21T21:07:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1b3bf148-c1ad-4b99-8aac-b21b17109936", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "athomas", + "reviewDate": "2021-08-10T17:46:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6202c13e-a08b-471b-bc47-f06a82e3a5ec", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "michaelmitchell", + "reviewDate": "2021-11-07T14:33:09", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3aae9957-d883-4b36-8390-7b2b3886b788", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "mariahmeyers", + "reviewDate": "2021-12-29T22:06:10", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone 3000 (Silver)", + "description": "This Premium Phone 3000 (Silver) is a great option.\n\nIn addition to its unique look and function, the 3000 Mobile PRO offers several premium features such as:\n\nPremium", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-08-29T15:13:49", + "price": 221.45, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-03-06T01:47:08", + "newPrice": 208.08 + }, + { + "priceDate": "2022-12-30T01:47:08", + "newPrice": 217.05 + }, + { + "priceDate": "2024-02-25T01:47:08", + "newPrice": 221.45 + } + ] + }, + { + "id": "5d64c71a-19fa-49cd-9c72-4ae0ac632603", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "arnoldrebecca", + "reviewDate": "2022-12-30T07:16:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "349e4e34-1047-4f8e-b920-122b70eb54aa", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "lopezeric", + "reviewDate": "2022-02-24T21:08:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3602c577-6960-414f-bed6-2c7277e22f18", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "onewton", + "reviewDate": "2022-09-12T08:13:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bbdf86cb-dadc-4611-b362-a1bfbc51f24f", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamsbruce", + "reviewDate": "2021-04-14T07:31:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6d3663b4-20e3-4aaf-8156-a790c6f3887f", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "laurawilson", + "reviewDate": "2022-11-03T03:17:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a80ac7e5-ec4f-4714-8e94-3999637f8082", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "camposshawn", + "reviewDate": "2022-06-25T18:49:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2d352154-d068-4805-a1e2-ebcb4052c21b", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "nanderson", + "reviewDate": "2021-07-26T10:42:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "15ad4718-d6bc-4da2-8525-1d5409d39c27", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "lopezhannah", + "reviewDate": "2022-07-08T00:04:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6b4d91de-4752-4d26-8450-84114f14092d", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "smurphy", + "reviewDate": "2022-05-04T21:40:36", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3810bd75-3f81-4910-9577-94214770cb0b", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandon47", + "reviewDate": "2022-05-26T08:13:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5903a636-3007-49a9-8efc-155355fe8269", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "dennismichelle", + "reviewDate": "2021-11-19T17:52:09", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b68f7738-0f21-43e8-ba4a-7c89ee1acc70", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "ritabeck", + "reviewDate": "2022-06-18T04:23:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "145f188e-6a75-413e-8c93-1c3b4166cfce", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "tammygreer", + "reviewDate": "2021-06-18T20:41:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5b1ead64-bd75-4b99-a83a-43f534e2b440", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "mgonzales", + "reviewDate": "2021-06-05T07:17:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0060fb9c-b1bb-4080-a984-c35a7dc6bd60", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "danielwilson", + "reviewDate": "2022-02-15T23:54:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "073fc751-2c62-4141-ac17-326c9715a2a9", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "youngbrenda", + "reviewDate": "2022-02-13T13:54:40", + "stars": 5, + "verifiedUser": true + }, + { + "id": "094a5f99-8908-4136-a383-b9280a012d15", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "bbailey", + "reviewDate": "2021-04-22T00:15:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "12c00c92-603b-487f-b8c9-731522de6e87", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "serranojodi", + "reviewDate": "2021-08-25T02:31:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6440638d-d3e0-4688-9c1d-b90f0ecd5bad", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelesantana", + "reviewDate": "2022-09-04T13:48:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6602d86b-5445-4755-984f-7eee6ccb52e7", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "ryan72", + "reviewDate": "2021-03-06T01:47:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "16961ec2-422d-4db2-a072-3cac225658a8", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Super (Steel)", + "description": "This Premium Speaker Super (Steel) is rated 4.6 out of 5 by 4.\n\nRated 5 out of 5 by Anonymous from Great tool! This is a great tool that I use when traveling for my work. I used it to pick my nails from a collection of books during a commute. I also did not have bad reviews but the design is perfect. It doesn't slide easily on the bench. However, it does allow me to set it to a different position and it is", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-03-14T21:07:09", + "price": 349.15, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-01-18T11:42:46", + "newPrice": 347.73 + }, + { + "priceDate": "2021-12-23T11:42:46", + "newPrice": 368.8 + }, + { + "priceDate": "2022-11-27T11:42:46", + "newPrice": 338.26 + }, + { + "priceDate": "2023-12-25T11:42:46", + "newPrice": 349.15 + } + ] + }, + { + "id": "f65524ee-0d91-4b17-862c-7482e301a8bc", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "lyoung", + "reviewDate": "2021-12-13T17:23:05", + "stars": 4, + "verifiedUser": false + }, + { + "id": "81381f5d-2736-47af-b0f9-693157e7e55f", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "mark61", + "reviewDate": "2021-06-13T22:26:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3b4de86a-bf37-49bb-a05b-22d7815e9d17", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "karen93", + "reviewDate": "2021-04-06T21:30:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "783828af-4ecb-4c2a-ad48-47f95ea276c7", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "jose35", + "reviewDate": "2021-05-29T15:53:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b652773f-600e-4282-bd73-ccaf7da8c55f", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "mcdanielmatthew", + "reviewDate": "2021-08-20T16:11:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6be1c7fe-46e1-4938-9217-79ae2be718ca", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "harrisoncraig", + "reviewDate": "2022-03-10T23:02:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4cd266f8-cd33-4cb0-ab1f-930200c7d9e2", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "fwall", + "reviewDate": "2021-03-11T00:05:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "68800fa7-2e73-44cd-9841-1b6c281ad14e", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "probertson", + "reviewDate": "2022-11-28T03:35:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "70b11928-8758-460f-ac5f-91202600c15a", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "michael78", + "reviewDate": "2021-06-22T19:48:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c48e4b6a-740e-4d1e-a4ad-a62df270e8cb", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "gjacobs", + "reviewDate": "2021-08-28T00:36:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bb6d3fae-14ac-4bfa-a979-f3a23369d3b9", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "hunternicole", + "reviewDate": "2022-01-11T23:48:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c8c22369-34c6-4c6c-9f20-a1900ed44763", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "williamrivera", + "reviewDate": "2022-03-25T04:44:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5670dc1f-78f9-47dd-b7ec-81391b412693", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "jamesfrazier", + "reviewDate": "2021-07-05T13:53:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b3a9abc6-a541-4f93-9108-a81582d7e58c", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "vtaylor", + "reviewDate": "2022-09-20T22:40:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0c3de8ad-725e-49db-9a4b-c54820b7d90f", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "julie85", + "reviewDate": "2021-05-12T02:23:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4838d980-01dc-48e0-9dfb-d234f2576fe0", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "deniseestrada", + "reviewDate": "2021-01-18T11:42:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "834f5c1c-8555-4d2f-83ad-ca45142c7c81", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "dianadixon", + "reviewDate": "2022-09-02T15:32:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3c960c34-a169-4fda-bdec-d910269c5e1d", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "steve35", + "reviewDate": "2022-09-25T22:59:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Pro (Steel)", + "description": "This Amazing Speaker Pro (Steel) is a durable metal speaker built to last. It features a smooth, yet precise steel construction and is made of solid wood. Made to your specifications, this speaker is designed to last so, even with heavy use, this speaker will carry you through your day and night!\n\n\nSpeakers from SteelSeries\n\nSpeakers", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-03-06T01:40:48", + "price": 577.99, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-01-28T05:45:58", + "newPrice": 559.58 + }, + { + "priceDate": "2022-12-25T05:45:58", + "newPrice": 540.71 + }, + { + "priceDate": "2023-05-08T05:45:58", + "newPrice": 577.99 + } + ] + }, + { + "id": "f25547ba-4047-4371-acc6-ec94ac894161", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "zquinn", + "reviewDate": "2022-08-20T01:16:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b629b40d-3b89-4c6b-aaa8-d60046965e24", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "lisa13", + "reviewDate": "2021-01-28T05:45:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9556f0ef-78d1-4868-81ee-578cb552c054", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "clifford20", + "reviewDate": "2022-10-12T09:58:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "15c282f1-6d6c-4e8a-b7c1-b7564ef77bfb", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "tinalopez", + "reviewDate": "2021-11-23T12:47:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a9e1a66f-3c17-4e64-9603-52aeb08f7551", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "mark85", + "reviewDate": "2022-07-13T00:52:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "eea2384b-d23a-45f6-99b2-0986c7676bfb", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "bennettshane", + "reviewDate": "2022-06-08T03:59:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "96aa865a-139f-41eb-83ab-16d5edd060e1", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "smithmadison", + "reviewDate": "2022-12-25T09:31:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "71094274-6bc0-4716-b7d3-12406ed4597e", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "scotthughes", + "reviewDate": "2021-06-14T20:44:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "75a259a4-4ee1-40b2-b1f0-ac552df68d86", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "vjensen", + "reviewDate": "2022-01-01T02:31:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a24a5ca0-bacf-4a9b-9234-f67b4d4e2c03", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "barrettrobert", + "reviewDate": "2022-06-05T06:29:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Ultra (Silver)", + "description": "This Basic Keyboard Ultra (Silver) is the new \"Unibody\" \"Able-to-Use\" keyboard standard for the Raspberry Pi 3. The new keyboard is designed for use with all the common keyboard layouts. It is fully customizable, and even comes with a variety of accessories to try for free. The $200 price tag is not so great when it comes to buying a new,", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-06-20T10:31:46", + "price": 828.83, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-01-18T15:31:43", + "newPrice": 776.13 + }, + { + "priceDate": "2024-08-21T15:31:43", + "newPrice": 828.83 + } + ] + }, + { + "id": "bcd1d74d-a677-43ee-8eaf-29d803ae2e58", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "saranewman", + "reviewDate": "2021-12-29T17:03:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "3df81005-4a7f-4cef-a5e4-c3ab6a22f1e8", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rodriguezjoshua", + "reviewDate": "2021-05-07T13:25:29", + "stars": 5, + "verifiedUser": true + }, + { + "id": "681fc3aa-88a4-4e50-af78-489b826481d3", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennafoster", + "reviewDate": "2022-12-14T06:44:43", + "stars": 4, + "verifiedUser": true + }, + { + "id": "044e766c-97d5-4a91-9764-c518a199a566", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "todd54", + "reviewDate": "2022-12-05T10:48:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fc23bc60-57dd-41b9-8599-23be177bf606", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bthomas", + "reviewDate": "2021-01-18T15:31:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "911bbf62-b3c1-4588-93e1-a2e48d26ddd1", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gtucker", + "reviewDate": "2021-04-16T09:24:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "66a44d9f-45d2-476a-85c3-0af42536031d", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mark04", + "reviewDate": "2022-06-17T03:32:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d76ceeec-9145-47af-b7d2-96db4e2cb64e", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "krivas", + "reviewDate": "2021-03-12T16:33:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "39a73069-5057-4e69-81eb-c87da12d1ccc", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "haley08", + "reviewDate": "2022-11-09T01:08:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "768cff08-034e-446f-9646-0b69880ed946", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aprilvincent", + "reviewDate": "2022-01-19T12:42:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Super (Red)", + "description": "This Basic Phone Super (Red) is not even remotely resembling its other devices. Most notably, its basic Android OS is a complete mess, but is capable of performing numerous tasks without having to worry about crashing it.\n\nThe only thing missing from this phone is a bit of a battery that, if filled properly, can be filled up to 10 times, so that with a quick glance at the screen you can quickly get a", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-09-23T09:11:17", + "price": 148.15, + "stock": 94, + "priceHistory": [ + { + "priceDate": "2021-01-15T17:37:18", + "newPrice": 159.54 + }, + { + "priceDate": "2022-12-16T17:37:18", + "newPrice": 147.95 + }, + { + "priceDate": "2023-06-22T17:37:18", + "newPrice": 148.15 + } + ] + }, + { + "id": "61cdb9ec-fcf2-419e-9c91-2a77473237dc", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "tgilbert", + "reviewDate": "2022-04-24T07:37:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0792c1e5-4e85-4b0c-ba09-cedf1fe29c89", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanieball", + "reviewDate": "2021-01-15T17:37:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "65d32f74-dab0-4308-9c6d-5161239a8f89", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "tiffanyjordan", + "reviewDate": "2021-05-08T07:44:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2d4bcf91-6493-4f11-9d44-c66f1466fa8d", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "bfowler", + "reviewDate": "2022-05-12T13:46:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6e267073-8bf3-46e6-b318-7a867d1a7c0c", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "dominiclong", + "reviewDate": "2021-11-30T20:37:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3e90bd0d-ccdb-42b2-8042-d2164ffd84e4", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "adam92", + "reviewDate": "2022-07-23T20:18:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "405c2e05-5dab-4ed4-a7e0-e1c74e9a2b7c", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael08", + "reviewDate": "2021-02-01T11:59:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d7e970d5-9a35-41f9-bd50-21439b36e7a7", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "pking", + "reviewDate": "2022-12-17T07:50:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2bd3fed2-6374-4186-8d78-01b04b87e471", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "imoore", + "reviewDate": "2022-10-28T05:22:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fba5cb93-8538-4165-9797-f6b9a8335334", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "lawrence16", + "reviewDate": "2022-04-06T23:02:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9959325b-7f0c-4c1a-826e-024ac0f728fc", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "garygarrison", + "reviewDate": "2021-11-26T16:04:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7f2aa948-b67d-44ff-adc7-a9b8bb7c7c60", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "jose37", + "reviewDate": "2021-11-27T20:29:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Super (Silver)", + "description": "This Awesome Filter Super (Silver) is rated 4.8 out of 5 by 23.\n\nRated 5 out of 5 by Jeff from Easy to use and very convenient I need a new pair of filters to replace my filter. They are easy and convenient.\n\nRated 5 out of 5 by Paul from Great Service Customer service was great, and I would recommend to others!!\n\nRated 5 out of 5 by Jim", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-06-29T13:12:51", + "price": 707.32, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-03-11T18:53:51", + "newPrice": 683.43 + }, + { + "priceDate": "2023-02-12T18:53:51", + "newPrice": 707.32 + } + ] + }, + { + "id": "1b2a55fe-b997-40a9-aa72-801327552c72", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "ericamiddleton", + "reviewDate": "2022-05-13T14:00:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "461eae4c-6a35-4807-8b03-665fa75da10a", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "moorewilliam", + "reviewDate": "2021-04-28T01:16:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2ccc2f44-c715-4cd8-96b6-03fb2fe6c3e1", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "xthomas", + "reviewDate": "2021-03-11T18:53:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "47a19277-24c8-40b4-8e14-f088fe2b2e99", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "devoncantu", + "reviewDate": "2021-07-22T06:03:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1d4cc153-ea46-4513-a9c0-c7b6303d232f", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "christopherclark", + "reviewDate": "2022-07-28T02:42:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1b687bf6-2f4a-42b0-b1a2-794035206e46", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "brian60", + "reviewDate": "2021-07-23T21:40:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard 3000 (Steel)", + "description": "This Awesome Keyboard 3000 (Steel) is rated 4.3 out of 5 by 7.\n\nRated 5 out of 5 by Anonymous from What a nice little keyboard! I had never got one, but I", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-11-07T04:54:04", + "price": 580.33, + "stock": 4, + "priceHistory": [ + { + "priceDate": "2021-02-28T01:07:27", + "newPrice": 596.37 + }, + { + "priceDate": "2022-12-24T01:07:27", + "newPrice": 635.7 + }, + { + "priceDate": "2023-03-21T01:07:27", + "newPrice": 580.33 + } + ] + }, + { + "id": "dfb69ef4-dca2-453e-a285-008a35cbad43", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephen29", + "reviewDate": "2022-04-01T05:21:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2ffbfbde-9350-4c7c-a67c-408d453eff88", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robersonjonathan", + "reviewDate": "2021-10-30T22:48:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c868837d-7cc0-439c-bc5e-7eea051e0269", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qyoung", + "reviewDate": "2021-07-31T17:45:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "01f92553-999e-4d6c-9add-b1d623b66983", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "edward85", + "reviewDate": "2021-02-28T01:07:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ef080675-1db5-4a54-9eb3-c3b5b2f708ae", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthony88", + "reviewDate": "2021-10-05T09:09:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c51b9515-ce36-4303-a1e1-dac9c1e0f161", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shanepearson", + "reviewDate": "2022-10-19T03:40:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b6b8bbe9-ac02-454c-81ee-1d0e8b38f1d1", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer82", + "reviewDate": "2022-10-24T22:37:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bc390219-30b6-44a8-9ed6-250638dc60eb", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlesevans", + "reviewDate": "2022-08-28T23:09:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "98071fa5-68c6-4a60-9a48-30bd328ff53c", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lauradavenport", + "reviewDate": "2022-12-24T03:21:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b3a6509b-4014-4de7-992e-d1386f0f04d8", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maria33", + "reviewDate": "2021-08-19T14:39:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dbe2d802-f0d8-4397-bb2e-e3cc377cbef2", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anna96", + "reviewDate": "2022-07-27T08:57:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fa6daef8-09e4-44a3-bff9-7d23f44c3954", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "solomondonna", + "reviewDate": "2022-04-07T10:44:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dd5d3a59-b611-4ede-bf69-ac4f98da7b17", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "taylorcynthia", + "reviewDate": "2021-06-07T08:27:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "518b72a0-cece-4545-b8da-dd67ae4be31c", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel18", + "reviewDate": "2022-05-24T06:12:35", + "stars": 5, + "verifiedUser": false + }, + { + "id": "294f319d-2a5f-4619-950c-c11ff78734d0", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ramoserin", + "reviewDate": "2022-03-14T17:43:54", + "stars": 5, + "verifiedUser": true + }, + { + "id": "133a788d-935b-436a-9390-9eac94efa7e1", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "product", + "name": "Awesome Filter 3000 (Steel)", + "description": "This Awesome Filter 3000 (Steel) is rated 3.6 out of 5 by 31.\n\nRated 5 out of 5 by Anonymous from The biggest filter you can get It's 3.5 inches wide and 1 1/2 inches long, a lot of room to grow (not too much, I just wish it was the largest ever.)\n\nRated 5 out of 5 by ThePonyGuy from Fits right under my nose, will use it on my next garden.\n", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-07-03T22:19:57", + "price": 518.63, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-02-11T11:17:27", + "newPrice": 558.22 + }, + { + "priceDate": "2021-07-16T11:17:27", + "newPrice": 516.17 + }, + { + "priceDate": "2021-12-18T11:17:27", + "newPrice": 474.96 + }, + { + "priceDate": "2022-05-22T11:17:27", + "newPrice": 560.41 + }, + { + "priceDate": "2022-10-24T11:17:27", + "newPrice": 540.86 + }, + { + "priceDate": "2024-12-28T11:17:27", + "newPrice": 518.63 + } + ] + }, + { + "id": "0a38d731-c458-4468-8751-e69f616130fe", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "xchang", + "reviewDate": "2022-04-02T21:40:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "25e30344-d303-4f5f-971d-20a47ac534c0", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "briggsstephanie", + "reviewDate": "2022-01-01T14:49:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c66889b7-18d6-4f36-b688-18842d74ab3c", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "davidstevens", + "reviewDate": "2022-08-23T21:44:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eea44431-befe-4d6b-994f-112afbea5b26", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "conwayrobert", + "reviewDate": "2021-11-30T10:03:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5d9d15d6-1026-4bff-bc0f-360650a83b2e", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "shawn46", + "reviewDate": "2022-10-26T03:32:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1a44c4e1-dd3b-43a5-b2f2-182b4e23b3be", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "timothygraham", + "reviewDate": "2021-02-11T11:17:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "72300a86-0327-4144-ba6c-ddd3cbea1b56", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "vanessasmith", + "reviewDate": "2022-09-26T02:56:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "df54b9f3-a0e0-4f7c-89cc-05048a6a0f4f", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "matthew74", + "reviewDate": "2022-03-15T00:01:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "767cdfd1-c323-4567-9499-5a0f7513a0a3", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "janetbenitez", + "reviewDate": "2022-02-21T07:35:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2a87f66f-4bef-4597-ac12-6750c9d4a28f", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "whernandez", + "reviewDate": "2022-03-03T20:16:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "25d1b6ae-e954-42fe-a345-81640e30bf36", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "craigdaniel", + "reviewDate": "2022-06-20T20:30:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "04b15629-ee30-476e-abc6-186c069c298d", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "jonesdaniel", + "reviewDate": "2021-10-27T18:41:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a4e0cd25-5897-4e59-a8ba-eb5c0fcd7a76", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "gsingh", + "reviewDate": "2021-08-14T10:38:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7011e185-cd28-4483-bfc7-255bf9c13e00", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "mreed", + "reviewDate": "2022-06-01T21:03:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6e17a3bb-389f-465d-b7ff-8ec4b5617e3c", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "goodwinbrandon", + "reviewDate": "2022-05-29T19:39:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "befea64d-11fd-489f-8fe8-64de9c99b4bc", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "pbradshaw", + "reviewDate": "2022-09-23T03:51:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Mini (Black)", + "description": "This Basic Mouse Mini (Black) is one of the most expensive and well-designed mouse mice in Japan. The company has a price tag of up to HK$200, and their mouse is quite small (around 3 feet in diameter). The back of the mechanical mouse is covered with a beautiful metallic texture, which comes in two sizes.\n\n\nWhen you order the prototype, you are then asked to set up your key on the first page of the product", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-06-23T21:05:18", + "price": 483.04, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-04-28T03:02:12", + "newPrice": 438.36 + }, + { + "priceDate": "2021-11-09T03:02:12", + "newPrice": 461.34 + }, + { + "priceDate": "2022-05-23T03:02:12", + "newPrice": 448.63 + }, + { + "priceDate": "2022-12-04T03:02:12", + "newPrice": 493.54 + }, + { + "priceDate": "2023-10-23T03:02:12", + "newPrice": 483.04 + } + ] + }, + { + "id": "23d439ec-64af-4134-add9-b33ea9cb6f5e", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beckebony", + "reviewDate": "2022-10-06T19:26:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "003bae0f-ac10-4818-9d83-80cdcddc7ddb", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "connieroth", + "reviewDate": "2022-12-05T11:48:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d435c7e4-8c04-4986-8109-3e017c481397", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mark03", + "reviewDate": "2021-06-14T22:29:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "236fbd23-cb4a-40f6-9bb6-0459073b748b", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashleysnyder", + "reviewDate": "2021-04-28T03:02:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a60df7f5-d515-4ae5-abed-7578268fe71b", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "todd93", + "reviewDate": "2021-11-10T15:37:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b737b764-6635-4edb-96ba-ac37572e3239", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "burkelauren", + "reviewDate": "2021-11-27T03:39:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5896b795-b59e-4b3e-b852-9c1385fec757", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "espinozaemily", + "reviewDate": "2022-09-03T13:40:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "843b983e-d837-4933-8e6d-6ccbe8a9d988", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gabriel62", + "reviewDate": "2021-12-08T01:08:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4fa7c458-0c5a-4878-a08d-cb9b92df12d7", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rlee", + "reviewDate": "2022-08-18T07:34:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a3967b99-c1f9-4cd8-aa4c-16dfcffb8604", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissajenkins", + "reviewDate": "2021-07-28T10:33:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2a3b5418-85e1-4e41-9ff1-40234a190f27", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mcneilzachary", + "reviewDate": "2021-08-14T04:46:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fdc79bcb-2b05-4bd7-bfc8-745ae6144ccf", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tinafowler", + "reviewDate": "2022-02-14T16:07:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "71328774-3f49-4df8-8d91-a600c09f955f", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand 3000 (Steel)", + "description": "This Premium Stand 3000 (Steel) is the most expensive stand to get, and you'll need to pay $150 or more each year for it. I personally get it in every size", + "countryOfOrigin": "South Africa", + "rareItem": true, + "firstAvailable": "2019-06-26T02:11:30", + "price": 967.19, + "stock": 66, + "priceHistory": [ + { + "priceDate": "2021-03-24T10:09:25", + "newPrice": 883.16 + }, + { + "priceDate": "2022-12-11T10:09:25", + "newPrice": 1007.73 + }, + { + "priceDate": "2025-02-03T10:09:25", + "newPrice": 967.19 + } + ] + }, + { + "id": "bd887920-373d-4391-b6a9-3ae2b210476f", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "ariana09", + "reviewDate": "2022-10-07T15:30:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "29c249d7-9cb6-4894-956c-e2864ef13fcd", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "zavaladaniel", + "reviewDate": "2022-11-19T20:27:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9c22cb6b-1a66-4f29-beed-eb509a6ed1fb", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "andreavasquez", + "reviewDate": "2022-03-04T02:39:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c4f5fa8c-3d51-4c8c-be6b-b71e739c25e2", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "myersglenn", + "reviewDate": "2021-03-24T10:09:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "93f96260-7ed5-4ee4-a955-e4c57ed4adb6", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "mitchellwolfe", + "reviewDate": "2022-01-23T17:50:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1eae46e0-e826-4ebe-a334-084dfe2b975a", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "coryturner", + "reviewDate": "2022-09-19T19:13:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4cf21dad-a7a4-4aec-9227-e428998d0ec3", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "dixonrobert", + "reviewDate": "2022-12-12T05:44:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bb36be7a-fa1d-49c9-a0b7-f591a5b15c02", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "jason52", + "reviewDate": "2022-09-24T23:39:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f394220c-e1d4-476d-9831-3b86d38c4e87", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "harrislisa", + "reviewDate": "2021-10-13T13:43:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6837cdac-a22c-4985-bdd6-b488d18422d1", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "wendybates", + "reviewDate": "2021-10-05T15:30:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f84cc4b8-b61d-49fb-a062-6415e91b0e25", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "floreswayne", + "reviewDate": "2022-10-24T13:54:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9486c4c1-03d3-4949-856a-e78f26c2157c", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "katrinaharper", + "reviewDate": "2022-06-26T00:10:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Super (Red)", + "description": "This Amazing Keyboard Super (Red) is for one, too. Great design, fast typing speed, and high contrast in color. The keyboards come in either \"Black\" or \"White\" mode. Also available on ebay for £10 or $20 depending on whether you have your own keyboard or get a cheap keyboard made of polyester. Very versatile keyset and typing experience.\n\n", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-08-13T06:11:59", + "price": 385.07, + "stock": 7, + "priceHistory": [ + { + "priceDate": "2021-01-24T19:15:06", + "newPrice": 406.62 + }, + { + "priceDate": "2021-07-05T19:15:06", + "newPrice": 363.07 + }, + { + "priceDate": "2021-12-14T19:15:06", + "newPrice": 363.61 + }, + { + "priceDate": "2022-05-25T19:15:06", + "newPrice": 363.9 + }, + { + "priceDate": "2022-11-03T19:15:06", + "newPrice": 362.48 + }, + { + "priceDate": "2025-01-26T19:15:06", + "newPrice": 385.07 + } + ] + }, + { + "id": "6fc917e7-e052-43da-8589-397321282346", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tweaver", + "reviewDate": "2021-06-09T04:55:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ca6148d6-3d05-4f22-a385-ac3be5a1e6e3", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fgentry", + "reviewDate": "2021-11-16T06:09:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fa6c6232-a952-4b4d-8684-8368765446b3", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberlyanderson", + "reviewDate": "2022-07-16T12:00:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4db1015a-a1a5-4be1-bffd-43f946dc66b3", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksontina", + "reviewDate": "2022-05-21T18:56:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dec433af-a3b1-404f-be3f-bdee473c24c7", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maynardcynthia", + "reviewDate": "2021-07-01T18:42:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "46fcd531-40b4-4d5a-a4d6-a3765e56c675", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david85", + "reviewDate": "2021-06-03T09:58:28", + "stars": 4, + "verifiedUser": false + }, + { + "id": "87db1a16-94d5-4fa2-9e0b-0e470aa6b16c", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chloeperez", + "reviewDate": "2022-09-03T00:03:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0344ecf7-ec03-4cd9-86c9-8004fa793dd4", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uramirez", + "reviewDate": "2022-07-06T15:37:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d8459fc8-7ac2-4175-85b0-183c2f7e89c3", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steven97", + "reviewDate": "2022-07-24T04:42:53", + "stars": 4, + "verifiedUser": false + }, + { + "id": "52a2bf36-c63a-4eb0-8c88-cbf2da56d51d", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertgarcia", + "reviewDate": "2021-05-08T05:46:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b5e02999-440f-4e20-975c-04ddb7fac669", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jocelyntorres", + "reviewDate": "2021-04-18T10:52:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f86ceb7c-e398-4ba9-9931-b60cc3a9ebc1", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christina07", + "reviewDate": "2022-04-24T00:44:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f021edb9-1137-4192-8ece-7936e8278c95", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lellis", + "reviewDate": "2022-05-25T08:59:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea18e2d2-32f8-4ad3-9d81-943f7a917cfa", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michaelwilson", + "reviewDate": "2021-12-22T03:53:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "95acd74f-f845-4d30-b4eb-1574756db5fe", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kbradford", + "reviewDate": "2022-08-07T09:24:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8e08e00d-cf6b-4620-95df-2d07dd0fd851", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "josephbarber", + "reviewDate": "2022-05-03T06:41:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a7085ce2-5465-45d9-882c-e65784a8b02d", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "creeves", + "reviewDate": "2022-03-28T20:42:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "690ce8a1-cd26-41f2-bf58-2c8ff4a54442", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amanda74", + "reviewDate": "2022-11-06T01:38:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "81309449-a76c-457d-b9fb-4fd10966b7d4", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "awagner", + "reviewDate": "2021-01-24T19:15:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "568c7135-cfff-4eb9-b19f-6926f97d38df", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rodneypeterson", + "reviewDate": "2022-01-23T07:04:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Black)", + "description": "This Awesome Stand + (Black) is not currently supported on our server yet. You can do this to get the server up and running, the addon will automatically install:\n\n\nhttp://n2d3d3d123.eu/\n\n\nThis Amazing Stand can be used with your mod to add even more detailed scenery:\n\nhttp://n2d3d3d123.eu", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-07-16T09:32:35", + "price": 1006.91, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-03-11T03:44:19", + "newPrice": 1023.63 + }, + { + "priceDate": "2021-12-11T03:44:19", + "newPrice": 1006.91 + } + ] + }, + { + "id": "63f08d1f-e485-4bbc-ba14-93c468897101", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "qjuarez", + "reviewDate": "2022-01-26T18:33:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3a7cc5bb-098e-4088-ae62-d6cf8c4118fc", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "meadowselizabeth", + "reviewDate": "2021-12-20T11:19:21", + "stars": 5, + "verifiedUser": false + }, + { + "id": "35acc0ce-53ab-4ef5-a2f5-92b7c29afaa1", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "joneshunter", + "reviewDate": "2021-03-21T13:54:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bccc32e8-beb7-4782-a084-7355e6dfca60", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "jenniferbaker", + "reviewDate": "2022-09-25T07:43:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e35758be-8c12-4d11-b084-81b63f8e1f21", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "megan66", + "reviewDate": "2022-07-01T12:44:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d9543457-36c7-40f8-9be3-b520f8dffae7", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthew35", + "reviewDate": "2022-11-28T20:19:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1d0f5220-0e9c-442f-82ac-7d09953828ea", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "xscott", + "reviewDate": "2021-07-20T12:02:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "497fb8f7-ccbb-4e5d-9dbd-e40136155038", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "allenmcclain", + "reviewDate": "2021-04-14T21:35:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2d523227-053d-4f55-80f9-e6f329318a60", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "pereztiffany", + "reviewDate": "2021-03-11T03:44:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0c8cb522-e358-4035-a8ec-992e7cb98d65", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "ywebster", + "reviewDate": "2021-05-19T05:30:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bc8b5a3e-a63f-4f22-be6c-eb5a918254c5", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "nrojas", + "reviewDate": "2021-11-08T12:24:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8f922498-b415-4f8a-bde0-30852297eaaf", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "lewisjulie", + "reviewDate": "2021-05-06T23:38:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "730b9616-e37e-4c16-a2de-df7583b51366", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonesnancy", + "reviewDate": "2022-07-25T07:39:44", + "stars": 5, + "verifiedUser": false + }, + { + "id": "b8f26e31-5039-444d-abf5-194b74acd5df", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "alyssaescobar", + "reviewDate": "2021-12-12T03:11:41", + "stars": 4, + "verifiedUser": true + }, + { + "id": "21078f21-2464-4e94-8d35-bf09abc49dcc", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "thompsonpatricia", + "reviewDate": "2022-03-29T14:40:09", + "stars": 4, + "verifiedUser": true + }, + { + "id": "435a2853-fcab-471f-bc25-b504b1103971", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "rodriguezshawn", + "reviewDate": "2021-08-27T02:29:48", + "stars": 5, + "verifiedUser": true + }, + { + "id": "9f6b7885-1e71-4b71-8b08-2e2fc482227b", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "hannah30", + "reviewDate": "2021-06-08T13:08:13", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7b08df2e-7b9b-4b13-a38f-1d48bca693b0", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "deanna05", + "reviewDate": "2022-11-30T03:51:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Red)", + "description": "This Premium Keyboard Mini (Red) is the ultimate keyboard for anyone with a few basic gaming needs. The design features a Cherry MX Clear, S-key touchpad, and an angled back to make your keyboard a comfortable choice for typing on a", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-03-27T12:39:37", + "price": 970.85, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-02-24T14:09:51", + "newPrice": 953.22 + }, + { + "priceDate": "2022-01-02T14:09:51", + "newPrice": 984.33 + }, + { + "priceDate": "2022-11-10T14:09:51", + "newPrice": 1049.8 + }, + { + "priceDate": "2024-11-18T14:09:51", + "newPrice": 970.85 + } + ] + }, + { + "id": "d9c261ab-2b9b-4959-a8f5-590825fde9d8", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thoffman", + "reviewDate": "2022-05-25T06:13:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "71fa4c93-1f8d-4393-a4de-2d2f086b7eea", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stewartjason", + "reviewDate": "2022-02-19T06:42:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5a78add1-1003-4798-b5ed-234cf956d9b1", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bryantemily", + "reviewDate": "2022-02-05T16:02:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "481ae92a-f35c-4885-8924-fe9f53db0fc6", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kelsey24", + "reviewDate": "2021-02-24T14:09:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0dd9c5a3-56d4-4eea-bdb8-aac0602d7e7c", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john88", + "reviewDate": "2022-11-11T14:49:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "134de418-6a76-46a2-bbab-f267112c142f", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopherhaynes", + "reviewDate": "2022-10-31T23:22:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9fa02661-50ad-45d4-b751-4bbb928d02f3", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "colemanjennifer", + "reviewDate": "2021-10-06T08:20:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bed1191b-9659-4f3d-8bb2-0a75ebac896b", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jbond", + "reviewDate": "2022-02-05T22:02:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76968729-e471-4c22-b0a8-02be4a04f183", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "acochran", + "reviewDate": "2021-11-08T04:23:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f026db39-610c-4d67-8ac0-028253508feb", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marilyn58", + "reviewDate": "2022-10-31T20:54:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a1a3e07e-46d7-42eb-b824-844c4ca95430", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinedavis", + "reviewDate": "2022-11-04T21:39:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9c2fd428-988c-4b18-a608-59bf7175da49", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "halltracey", + "reviewDate": "2021-06-29T14:19:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dd368c4c-bfdb-47ec-8abf-7a6784f6eb45", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wallskelly", + "reviewDate": "2022-02-20T18:02:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e17cbd93-5015-4ad6-8da2-3d35e7350862", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yking", + "reviewDate": "2022-02-19T03:47:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Pro (Red)", + "description": "This Luxe Speaker Pro (Red) is a premium quality product rated by CQC as a \"Dynastic.\" Its durability, weight, and quality will make any Speaker Pro owner happy.\n\nThe Luxe Speaker Pro (Red) is a premium quality product rated by CQC as", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-08-15T03:24:43", + "price": 726.69, + "stock": 29, + "priceHistory": [ + { + "priceDate": "2021-04-23T14:38:46", + "newPrice": 699.38 + }, + { + "priceDate": "2022-02-10T14:38:46", + "newPrice": 668.95 + }, + { + "priceDate": "2022-11-30T14:38:46", + "newPrice": 727.17 + }, + { + "priceDate": "2023-05-13T14:38:46", + "newPrice": 726.69 + } + ] + }, + { + "id": "02d293df-f4c6-44d5-884b-beb5cb14cd3a", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "michellehill", + "reviewDate": "2022-12-02T02:39:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "72fc37ed-9273-457d-a188-e8b9389e3788", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "baileyrollins", + "reviewDate": "2022-08-28T13:05:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "afa57e17-7622-451c-9874-af99bc60537a", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "jenningsjames", + "reviewDate": "2021-06-03T07:57:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5cd9eb86-5813-4078-904a-3e00c2e8739a", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "nbaker", + "reviewDate": "2022-11-21T21:03:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "42adda2d-5ff3-4784-bf16-e04b5ecd8d72", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "bryansheppard", + "reviewDate": "2021-04-23T14:38:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c11648af-7199-4061-b6a6-25d5ab5a0392", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "karengibbs", + "reviewDate": "2021-07-10T16:24:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "040e68aa-6233-4d8c-9098-bdc924d4caa9", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "omartinez", + "reviewDate": "2022-01-07T17:16:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c24bfd7-a862-4e27-ae79-d5a9bc0b6f23", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "franklinjerry", + "reviewDate": "2021-07-24T20:21:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "157cee17-d300-4062-a77a-d9f9899d6f03", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "zhebert", + "reviewDate": "2022-05-31T17:26:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "03b87f47-c420-413f-8971-dc0584f8a1b2", + "productId": "03b87f47-c420-413f-8971-dc0584f8a1b2", + "category": "Media", + "docType": "product", + "name": "Awesome TV Pro (Black)", + "description": "This Awesome TV Pro (Black) is so impressive, it only makes my TV stand out. No matter what you plan on putting on the shelf, you always have that", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-05-14T12:30:13", + "price": 811.11, + "stock": 49, + "priceHistory": [ + { + "priceDate": "2021-05-16T13:27:56", + "newPrice": 855.11 + }, + { + "priceDate": "2021-05-17T13:27:56", + "newPrice": 831.09 + }, + { + "priceDate": "2021-05-18T13:27:56", + "newPrice": 826.35 + }, + { + "priceDate": "2024-10-19T13:27:56", + "newPrice": 811.11 + } + ] + }, + { + "id": "6756223e-8c34-46be-a06e-b29693e6fc10", + "productId": "03b87f47-c420-413f-8971-dc0584f8a1b2", + "category": "Media", + "docType": "customerRating", + "userName": "tcain", + "reviewDate": "2021-05-16T13:27:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "31b8f1bb-6a6e-4cfc-8f45-ea248dd82be7", + "productId": "31b8f1bb-6a6e-4cfc-8f45-ea248dd82be7", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Mini (Gold)", + "description": "This Awesome Filter Mini (Gold) is the perfect choice for an awesome design. I would order it as a premium item, not only as a product, but as a nice way to present this amazing filter.\n\nA nice looking filter and I have one that will last for the duration of my shopping season", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-05-10T11:32:01", + "price": 223.6, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2018-05-10T11:32:01", + "newPrice": 210.43 + }, + { + "priceDate": "2025-08-27T11:32:01", + "newPrice": 231.91 + }, + { + "priceDate": "2025-08-28T05:32:14.465210", + "newPrice": 223.6 + } + ] + }, + { + "id": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Micro (Steel)", + "description": "This Awesome Keyboard Micro (Steel) is available in two versions: the standard edition and the Super Slim version. The Super Slim edition features the same layout as the standard edition, with new keyboards and improved feel! The Super Slim edition also includes its own color and color-by-color keyboard, which will be able to be used with any Super Slim keyboard. The Super Slim keyboard is compatible with an all key back", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-08-08T06:02:13", + "price": 800.73, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-01-23T21:24:03", + "newPrice": 739.51 + }, + { + "priceDate": "2021-07-03T21:24:03", + "newPrice": 738.92 + }, + { + "priceDate": "2021-12-11T21:24:03", + "newPrice": 737.67 + }, + { + "priceDate": "2022-05-21T21:24:03", + "newPrice": 752.47 + }, + { + "priceDate": "2022-10-29T21:24:03", + "newPrice": 752.65 + }, + { + "priceDate": "2025-02-14T21:24:03", + "newPrice": 800.73 + } + ] + }, + { + "id": "a1812daf-8663-40c5-9df2-fd88c4bd1c36", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin60", + "reviewDate": "2021-04-04T08:30:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8751af44-1c18-46ad-87c9-99a15dc0f394", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ladkins", + "reviewDate": "2022-07-18T23:28:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "eb0d355b-ec71-4a38-869a-33abe0b92b6e", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "elizabethjones", + "reviewDate": "2021-01-23T21:24:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "33a1ab65-5ca3-4f75-ab8d-e59a943981e9", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ovillanueva", + "reviewDate": "2021-06-17T04:35:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7d778d6d-1809-4f07-b02a-b9958e03e026", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel00", + "reviewDate": "2022-01-24T05:26:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "560d3b29-0a99-4841-8d9c-99ad34f40b00", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "osullivan", + "reviewDate": "2021-02-23T09:31:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6f0a1917-f5c2-421b-ab43-cfa161b3a1b9", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa84", + "reviewDate": "2022-10-31T00:39:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "98b70009-3283-4099-ac1c-0b306ae0f5c0", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bryangary", + "reviewDate": "2021-03-10T00:03:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Ultra (Red)", + "description": "This Luxe Stand Ultra (Red) is rated 4.3 out of 5 by 36.\n\nRated 2 out of 5 by KJ from Too warm for any use This is one of", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-07-10T07:18:21", + "price": 879.53, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-06-19T18:47:41", + "newPrice": 950.73 + }, + { + "priceDate": "2024-04-18T18:47:41", + "newPrice": 879.53 + } + ] + }, + { + "id": "a2e90138-e6a2-49f3-80bc-c75bdf1cacbc", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholas99", + "reviewDate": "2022-09-08T03:30:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3b7902ad-3b1f-4c54-a4d3-1223fd962a30", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "bmay", + "reviewDate": "2022-02-20T06:40:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "90bc2dd8-d5aa-454b-ab5a-c7d2d0d2674b", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "deantyler", + "reviewDate": "2022-08-20T16:50:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "468a88bd-d2dd-4ffe-bcb3-c9b6c0ab20a0", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "hreyes", + "reviewDate": "2021-07-25T14:05:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b840e5c5-9882-4322-a9c3-30e86bdff195", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "brian14", + "reviewDate": "2022-10-17T02:05:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b21db428-16d1-4e07-8398-3cb52a963bd0", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "cynthianelson", + "reviewDate": "2022-02-18T18:49:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "94df92ed-f232-4d39-ba03-c30648dcc4fa", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "lharris", + "reviewDate": "2022-05-13T04:50:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "64c3d245-1480-4104-944a-3c752f99acb0", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessicamontgomery", + "reviewDate": "2022-09-20T05:24:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ba6427b5-ac35-486b-8239-e3949053eb6a", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "danielfoster", + "reviewDate": "2022-08-23T20:30:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "603b5272-e601-4288-b43d-f1ee7f0dfa52", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "katie80", + "reviewDate": "2022-04-20T03:09:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e7dbb376-b888-44d8-bbff-c099b012493a", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "johnsoncharles", + "reviewDate": "2021-07-16T07:43:25", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d5ba45ea-050a-43d6-a9b2-b68325750a27", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "timothycastillo", + "reviewDate": "2021-06-19T18:47:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a9e3daed-831f-407a-aae5-d667bda3ec47", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "katherine33", + "reviewDate": "2021-06-29T18:39:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b3f7fd57-0f45-4cbd-8601-fa595ca4bd77", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "wilsonedward", + "reviewDate": "2022-01-08T20:58:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6a367a61-dea8-4643-a544-b6a31b98dde8", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamfields", + "reviewDate": "2022-08-08T11:10:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e2cc4f6f-25f3-4c5f-b409-2697948792c1", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "marcus30", + "reviewDate": "2022-12-16T20:52:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "66956c18-8145-4418-b23f-f030d623cee6", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "lisa22", + "reviewDate": "2022-09-10T12:39:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6a85ca38-21fb-4bc2-a7b8-28652b54fae5", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "whiteemily", + "reviewDate": "2022-09-10T14:55:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f421ce11-df66-4ba0-8308-aef35706fb16", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "gayers", + "reviewDate": "2021-07-18T08:11:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1d306dc1-57be-4e7a-878d-bfa1117f3de0", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "rterry", + "reviewDate": "2022-07-27T08:36:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Mini (Steel)", + "description": "This Amazing Phone Mini (Steel) is rated 3.0 out of 5 by 2.\n\nRated 1 out of 5 by Crayford from My husband bought a different phone in 2013 so I did not want to use this phone again. I'm still wondering what he was doing with all the plastic that covered his old phone. He told me that while there are still some parts in his old phone he has a long plastic", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-04-24T04:54:41", + "price": 582.67, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-03-19T07:45:34", + "newPrice": 615.2 + }, + { + "priceDate": "2021-06-27T07:45:34", + "newPrice": 595.65 + }, + { + "priceDate": "2021-10-05T07:45:34", + "newPrice": 624.92 + }, + { + "priceDate": "2022-01-13T07:45:34", + "newPrice": 626.95 + }, + { + "priceDate": "2022-07-01T07:45:34", + "newPrice": 582.67 + } + ] + }, + { + "id": "6b2b4120-f2e4-4a7c-af1d-7073dee8d9ec", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "customerRating", + "userName": "meganhobbs", + "reviewDate": "2021-09-19T20:21:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "40b90aa9-b640-4c52-996f-045dc8d7a059", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "customerRating", + "userName": "howellkenneth", + "reviewDate": "2022-01-13T15:08:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b50b0cef-67d9-4cfd-a15e-490df643f8d2", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "customerRating", + "userName": "calderonnatalie", + "reviewDate": "2021-03-19T07:45:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b1356cf9-f1cc-4ec7-beb4-cb925bb475e4", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberly04", + "reviewDate": "2021-10-15T13:07:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "172bfe89-422f-4080-b220-34b0d7741c63", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Super (Black)", + "description": "This Luxe Speaker Super (Black) is rated 4.4 out of 5 by 52.\n\nRated 1 out of 5 by Anonymous from It's really awful I received this as a gift. I did", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-03-16T10:35:06", + "price": 619.1, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-01-03T04:50:11", + "newPrice": 616.86 + }, + { + "priceDate": "2022-11-10T04:50:11", + "newPrice": 639.37 + }, + { + "priceDate": "2024-10-19T04:50:11", + "newPrice": 619.1 + } + ] + }, + { + "id": "57aca29b-bc73-4af2-987c-eacb1acfc24c", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "katieroberson", + "reviewDate": "2022-06-04T09:54:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4e2ebc09-30ce-4976-8df7-74187348a956", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "smithcody", + "reviewDate": "2022-01-15T05:26:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "223ca114-e4a5-471d-b466-47bbd632d35d", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "lfisher", + "reviewDate": "2021-01-03T04:50:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c52153f2-55e8-433e-9257-fb3f721f4adc", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "karahall", + "reviewDate": "2021-04-24T17:13:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "39058e96-7b96-4d58-9e7b-a7552d9c2935", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "wallacetyler", + "reviewDate": "2022-11-05T06:16:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c34c04a7-d68c-45f4-8510-cc84bee05add", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "johngreen", + "reviewDate": "2021-04-05T16:29:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b34a1842-6f18-45df-81a8-19feb146d87f", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "joshuamiller", + "reviewDate": "2021-03-29T21:06:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "68560bb8-cfae-45ae-8232-1661eaa945e9", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "derekparks", + "reviewDate": "2022-11-11T03:33:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f9abdf67-5967-4c1a-bc7f-bc3a9ea880f2", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "gary98", + "reviewDate": "2021-10-10T05:09:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "85bcae9f-90c4-4ac1-999f-74fc6973f785", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "tjackson", + "reviewDate": "2021-04-07T16:55:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c3b64789-467a-44b1-bdc2-918f368e6f8e", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "terrance36", + "reviewDate": "2022-05-15T10:06:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1419c452-adfa-4919-a2a7-1bdfecc875db", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "hzhang", + "reviewDate": "2022-03-24T06:06:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5d155a4b-8abd-4841-a541-4785d12c6925", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "kprice", + "reviewDate": "2021-03-16T01:47:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "22fb1f86-e030-4d28-84be-9cb186c10cab", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "jparker", + "reviewDate": "2022-01-03T09:42:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1484d9cd-e654-4138-9303-e87a05e961d7", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "christinebutler", + "reviewDate": "2021-08-17T01:17:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "42645884-569f-46f3-bb52-24d8cf6fca26", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "heidishea", + "reviewDate": "2021-07-01T23:18:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "40ee6ab3-7673-4f54-ac9a-9b5c9641a91c", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "barnesdonald", + "reviewDate": "2022-05-08T18:50:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5daa03d8-71c1-45de-a2cd-14f4cfbc441b", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "charris", + "reviewDate": "2022-01-26T22:38:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "745dff58-db97-43b4-a6e1-2fee950a9c60", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "hhart", + "reviewDate": "2021-03-27T03:44:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "097179cb-8b00-4dfe-80b6-3d739039ad2e", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "kaitlyn54", + "reviewDate": "2022-10-14T12:17:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand + (Steel)", + "description": "This Amazing Stand + (Steel) is a great addition to any bar that has more than 400+ users.\n\n4. I like to do this every week for a little bit each week.\n\n5. If I'm on my way to the bar, I love to bring beer, wine and any other beer. What better ways can you do that than to try and do our stand/pup? (and try and do ours", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-08-11T13:39:39", + "price": 867.42, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-04-02T20:00:57", + "newPrice": 904.88 + }, + { + "priceDate": "2022-01-08T20:00:57", + "newPrice": 800.46 + }, + { + "priceDate": "2022-10-16T20:00:57", + "newPrice": 912.41 + }, + { + "priceDate": "2024-10-25T20:00:57", + "newPrice": 867.42 + } + ] + }, + { + "id": "3012e6fa-b7af-4a98-a627-ffb6be7be91f", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarahwilliams", + "reviewDate": "2021-04-02T20:00:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d68eb046-1e55-4a71-94eb-8fa92f97ab6b", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "garytaylor", + "reviewDate": "2021-12-15T04:26:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f702ba5f-eb1f-4fd7-bd03-d1ab8a08a3fa", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "josephthompson", + "reviewDate": "2021-06-19T19:35:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f54ed510-c4c5-4fe7-9cd6-dcc6a70d2b8e", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandamayo", + "reviewDate": "2022-02-22T04:24:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b49ac435-64f9-4a01-9464-82e6acfa10dd", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "qrogers", + "reviewDate": "2022-10-18T06:13:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ad8516d7-330f-4577-906b-7f6b025eccc4", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "tyler09", + "reviewDate": "2022-07-09T04:39:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "82b2ec18-6fdc-4c39-ac0c-3bff0ca524e0", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "travishumphrey", + "reviewDate": "2022-08-31T00:27:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Mini (Silver)", + "description": "This Premium Speaker Mini (Silver) is a 3mm diameter mini with 3 stainless steel springs. It uses the same alloy wheels which are used for standard 2\" X 3\" X 2\" Mini Mini's. It", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-08-17T05:55:45", + "price": 816.79, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-03-03T06:46:24", + "newPrice": 886.48 + }, + { + "priceDate": "2021-10-30T06:46:24", + "newPrice": 816.79 + } + ] + }, + { + "id": "ade5b3ec-fb45-4977-9c63-de1e1f1ec85f", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "austin52", + "reviewDate": "2022-07-20T07:22:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a9f9cb50-d5b1-4e35-9c2a-fc8d4727027a", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "djordan", + "reviewDate": "2021-05-28T04:00:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b55a178d-db54-4dd9-a964-83fd34fb8997", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "steven52", + "reviewDate": "2022-07-26T05:06:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0b30b3af-2299-4de3-b2ab-8ea86a359dfd", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "diazdavid", + "reviewDate": "2021-09-15T11:53:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2563ff83-a9b2-4b1d-a000-96a6b21d1e5b", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "joshua83", + "reviewDate": "2021-06-19T19:26:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7b6f6170-b0d6-4027-b64b-ed30043f0d06", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "edwardgaines", + "reviewDate": "2021-12-01T17:49:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "91bed0e5-68c3-437c-88ea-8386c4424053", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "davissamuel", + "reviewDate": "2022-07-06T10:03:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d4609e84-2833-4af7-8f54-8a4718cad79e", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "sbraun", + "reviewDate": "2022-12-04T03:07:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "083e8fd1-9554-43fc-b9cf-47caa5353ef9", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "michellewilkinson", + "reviewDate": "2021-07-11T11:33:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f81e161c-8b3f-4e0d-8376-ff9376771397", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "hillelizabeth", + "reviewDate": "2022-01-29T12:29:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "687fff7d-e700-4ee2-9fbb-efc8ea3c2508", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "dixoncameron", + "reviewDate": "2022-01-15T12:29:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "583ae392-062d-4c78-a837-d97b8c3b5741", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "rjohnson", + "reviewDate": "2022-09-06T04:45:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3ebf65fc-e7b6-4c8b-9305-c14b73909116", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "maria25", + "reviewDate": "2021-11-04T06:21:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8a11bcd6-f9f8-4784-9311-7e640cca83dc", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "arios", + "reviewDate": "2021-07-28T04:40:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "05a5e0dc-e9a8-4c1d-a947-856b944800fc", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "hernandezchristopher", + "reviewDate": "2021-12-21T11:53:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d664b797-6e3b-4612-b0b5-e593bcb1411c", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "heather92", + "reviewDate": "2021-05-20T18:12:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5320ce81-a14a-426d-a9d6-7dfa9e618e5b", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "carolsparks", + "reviewDate": "2022-04-24T02:51:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4fcd41e6-0a01-46bd-8023-442f180da0fd", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "carneymarie", + "reviewDate": "2021-03-03T06:46:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Micro (Steel)", + "description": "This Basic Stand Micro (Steel) is just a basic set of basic accessories. The standard stand's stand consists of a solid plastic stand holder holding a small piece of material and a few screws that connect the stand holder to the holder to attach the holder to the stand. If you can't attach the holder to the stand just hold the plastic stand holder in place and press it together.\n\nThe next step for", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-08-03T11:46:16", + "price": 1042.67, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-08-06T06:48:04", + "newPrice": 998.03 + }, + { + "priceDate": "2021-11-01T06:48:04", + "newPrice": 1115.09 + }, + { + "priceDate": "2022-01-27T06:48:04", + "newPrice": 1106.96 + }, + { + "priceDate": "2022-04-24T06:48:04", + "newPrice": 1047.41 + }, + { + "priceDate": "2022-07-20T06:48:04", + "newPrice": 943.67 + }, + { + "priceDate": "2023-04-17T06:48:04", + "newPrice": 1042.67 + } + ] + }, + { + "id": "af3ed2d5-e090-48d3-8949-5aa60da29fe1", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "customerRating", + "userName": "johntaylor", + "reviewDate": "2021-08-06T06:48:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8e8de780-b4b9-4b6b-88cc-f562b997fad8", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "customerRating", + "userName": "pperez", + "reviewDate": "2022-07-22T13:44:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5946c21d-62f4-4a15-b611-1c360b1ae471", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "customerRating", + "userName": "stacy35", + "reviewDate": "2021-11-13T17:25:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4a1a8f8a-8687-4ca9-b5cc-b3c5e32c3b12", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "customerRating", + "userName": "monique20", + "reviewDate": "2022-07-14T14:25:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "product", + "name": "Basic Speaker 3000 (Steel)", + "description": "This Basic Speaker 3000 (Steel) is the simplest, most advanced Speaker from the popular PC Game Master Professional Collection. It features 2 unique acoustic effects as well as 4 separate voice commands that make it the perfect choice for the roleplaying game enthusiast or soloist.\n\nSpeech\n\nThe sound of different voice commands results in a unique sound signature that is as important as listening to music in the field. With this Speaker, you", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-06-28T07:43:08", + "price": 132.31, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-01-15T06:19:24", + "newPrice": 141.96 + }, + { + "priceDate": "2021-07-12T06:19:24", + "newPrice": 138.72 + }, + { + "priceDate": "2022-01-06T06:19:24", + "newPrice": 133.93 + }, + { + "priceDate": "2022-07-03T06:19:24", + "newPrice": 125.37 + }, + { + "priceDate": "2022-12-28T06:19:24", + "newPrice": 139.83 + }, + { + "priceDate": "2023-02-07T06:19:24", + "newPrice": 132.31 + } + ] + }, + { + "id": "c4466664-2493-4812-8a57-9bd6cf3a21c9", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "douglasvaughn", + "reviewDate": "2021-01-15T06:19:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bdc53d59-031a-4b2e-bde1-7d9599056c3a", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "kennethrivera", + "reviewDate": "2021-12-17T05:35:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5fabfd8f-8548-4d02-9d3b-374551f2687a", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "jessicavazquez", + "reviewDate": "2021-10-09T15:58:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5990e40d-dda9-46fe-a8be-1fef62cd3d7f", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "dmcdaniel", + "reviewDate": "2021-05-15T15:53:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f792c533-be28-4c2a-9756-a74f110cbfb7", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "phyllisjackson", + "reviewDate": "2022-07-15T08:53:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8acae726-8ae8-4eff-8f17-3e511a2d5f8a", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "brady85", + "reviewDate": "2022-07-13T16:52:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "40a2bce9-1506-43d4-8dba-36f69e1f34e5", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonkevin", + "reviewDate": "2021-08-18T14:48:17", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2c4aa0f1-a5c6-4b52-a555-f0fa45cd96b4", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "kennethedwards", + "reviewDate": "2021-07-31T18:18:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "62806f69-f030-432a-a88a-2b52effd4722", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "kennedydavid", + "reviewDate": "2022-12-30T09:53:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "product", + "name": "Awesome TV Ultra (Steel)", + "description": "This Awesome TV Ultra (Steel) is a classic anime and manga series inspired by the television shows Tsubasa Tensei and Naruto Uchiha. It features high-", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-05-04T14:12:39", + "price": 219.35, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-02-25T20:27:35", + "newPrice": 209.01 + }, + { + "priceDate": "2021-06-30T20:27:35", + "newPrice": 204.47 + }, + { + "priceDate": "2021-11-02T20:27:35", + "newPrice": 234.53 + }, + { + "priceDate": "2022-03-07T20:27:35", + "newPrice": 197.66 + }, + { + "priceDate": "2022-07-10T20:27:35", + "newPrice": 217.87 + }, + { + "priceDate": "2023-03-19T20:27:35", + "newPrice": 219.35 + } + ] + }, + { + "id": "105c5ce2-8d07-4bf6-9fa2-c8b96edf83ea", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "customerRating", + "userName": "kathryn17", + "reviewDate": "2022-07-14T14:57:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "50cd97a9-8b46-4048-8ef9-9db057fcef3c", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "customerRating", + "userName": "josephayers", + "reviewDate": "2022-02-04T08:59:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7b48e9a7-7733-4ad3-abfa-c2ad8208e71f", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "customerRating", + "userName": "zblair", + "reviewDate": "2021-02-25T20:27:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "96f39d5c-dfdf-4c85-9fa4-9192f1b3f7ee", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "customerRating", + "userName": "melissa31", + "reviewDate": "2021-08-14T04:50:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone 3000 (Steel)", + "description": "This Amazing Phone 3000 (Steel) is the best phone for both new and old PC use. It even has a USB port. This amazing phone 3000 (steel) is the best phone for both new and old PC use. It even has a USB port. https://www.amazon.com/100-smartphone-100-3gb-2pcs-1.html\n\nUSB 2.0\n\nUSB 2.0 does not do any of the things Google does on", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-06-30T01:26:55", + "price": 259.37, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-06-02T14:10:20", + "newPrice": 251.56 + }, + { + "priceDate": "2023-10-09T14:10:20", + "newPrice": 259.37 + } + ] + }, + { + "id": "6c01cf49-477e-427e-9200-25fccbe5f4f2", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "murphydana", + "reviewDate": "2021-12-20T15:44:23", + "stars": 3, + "verifiedUser": false + }, + { + "id": "efde96ab-2776-47d3-83c5-5a320822138b", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "ryan24", + "reviewDate": "2021-06-02T14:10:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f68eae0b-19d7-4f31-a810-cf95c40a0141", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "lisaalexander", + "reviewDate": "2022-07-04T11:58:01", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8b8f50d9-859e-459c-be0e-7d5ccb46ea1f", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "tinapham", + "reviewDate": "2022-08-30T19:12:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "95cbdc77-a6dc-4724-955a-ea816a427014", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "marshallelizabeth", + "reviewDate": "2022-01-22T20:34:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1ad1a55a-a6e4-477f-bdbd-24b529fc4a87", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "wsmith", + "reviewDate": "2022-03-28T05:40:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Pro (Black)", + "description": "This Luxe Speaker Pro (Black) is rated 4.9 out of 5 by 2.\n\nRated 5 out of 5 by Anonymous from My husband had used 3 speakers on a single day recently now these are the", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-09-01T19:01:23", + "price": 481.37, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-01-10T18:44:22", + "newPrice": 502.93 + }, + { + "priceDate": "2021-07-01T18:44:22", + "newPrice": 435.61 + }, + { + "priceDate": "2021-12-20T18:44:22", + "newPrice": 482.99 + }, + { + "priceDate": "2022-06-10T18:44:22", + "newPrice": 507.41 + }, + { + "priceDate": "2022-11-29T18:44:22", + "newPrice": 482.75 + }, + { + "priceDate": "2024-06-12T18:44:22", + "newPrice": 481.37 + } + ] + }, + { + "id": "9deb1a27-1351-4dcd-8bcc-8d271cea8653", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "umartin", + "reviewDate": "2021-05-14T10:37:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5c0e7a44-c414-4e5e-a43a-3978a14359db", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "gbarnes", + "reviewDate": "2022-11-30T13:30:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "288cdc79-d37b-40e7-8dd7-f8e06678e0ad", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "douglas72", + "reviewDate": "2021-07-28T09:14:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "37d910d1-5571-4cc8-99ca-a251bf9f5b41", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "cynthia63", + "reviewDate": "2021-05-03T04:51:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6f438684-b62a-4918-997d-afe90bcf0774", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "twalker", + "reviewDate": "2021-04-23T22:45:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e9f42b2c-d750-4835-b61b-98d45d80a04d", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "gabriel44", + "reviewDate": "2022-01-06T01:27:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "05569042-c5a1-4d53-86b0-a2c519bbbb9e", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "zpope", + "reviewDate": "2021-11-01T17:30:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d1967f59-88de-4b4f-af21-0d92159f157e", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "wjordan", + "reviewDate": "2022-09-24T18:48:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "87391e38-43b9-4c19-a428-394dfc3805d5", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "nwhite", + "reviewDate": "2022-11-27T00:33:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f3f1e884-9580-4ae6-bb52-171915cbd245", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "jennifer19", + "reviewDate": "2021-07-09T20:50:53", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8dbd7147-07c3-43ec-8874-630b5112b441", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "bradychristine", + "reviewDate": "2021-01-10T18:44:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cf164d57-54c2-4e33-a2f4-071e409f396f", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "cameronshaw", + "reviewDate": "2022-08-11T15:56:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2232029d-ae65-4394-8fc8-7cca84083880", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "franksmith", + "reviewDate": "2021-12-29T00:07:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5e5a21f4-fa30-4281-b943-05fd1e512175", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "hardylisa", + "reviewDate": "2022-02-16T12:18:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ce29ffc2-a7d0-48d5-b46c-108e3087b4d5", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "daniellerobinson", + "reviewDate": "2022-04-01T23:48:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ecb2d5f9-8b70-4031-838c-f4d6d6a4ad7d", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "mtucker", + "reviewDate": "2021-08-25T05:06:36", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "product", + "name": "Premium Filter + (Red)", + "description": "This Premium Filter + (Red) is still available, but if you're just looking for something simple and easy to use while still saving money, you could try our Premium Search (red) filter.\n\nIf you just", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-04-27T08:49:02", + "price": 489.5, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-01-17T08:31:03", + "newPrice": 446.74 + }, + { + "priceDate": "2021-07-03T08:31:03", + "newPrice": 513.58 + }, + { + "priceDate": "2021-12-17T08:31:03", + "newPrice": 445.01 + }, + { + "priceDate": "2022-06-02T08:31:03", + "newPrice": 523.59 + }, + { + "priceDate": "2022-11-16T08:31:03", + "newPrice": 475.57 + }, + { + "priceDate": "2024-04-18T08:31:03", + "newPrice": 489.5 + } + ] + }, + { + "id": "27eb0c70-01d5-4be6-a91d-9e86f3c8c788", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "danielramirez", + "reviewDate": "2022-10-19T14:23:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7af0ae97-7bb0-4789-9174-0025dbbd32bd", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "campbelldavid", + "reviewDate": "2021-09-25T18:44:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "445bcaa5-2cb7-45b7-8f17-531f11d04ac2", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "bellshannon", + "reviewDate": "2021-08-15T07:28:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "95eab5f0-0bef-4693-94af-bffe47dd916e", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "micheal68", + "reviewDate": "2022-07-21T12:31:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "03630416-8e8b-436a-b1bb-e78941dd57c5", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "george27", + "reviewDate": "2021-01-17T16:51:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "22675cd8-7975-4690-b238-9b653430e8e4", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "johnjackson", + "reviewDate": "2022-08-02T10:41:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0080f640-b9ad-44fb-9a63-a8f0fd45220e", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "qmoran", + "reviewDate": "2022-02-15T10:06:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0ccc140d-f456-48e8-a0ce-6f8fbfdce0f5", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "bakeraaron", + "reviewDate": "2021-07-20T10:26:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9076ea39-0e79-4848-b9a2-b0cacd0ae339", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "christine52", + "reviewDate": "2022-11-18T17:54:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c81d39c1-c69c-4ec8-82bb-c4d8c8c38d42", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "joneszachary", + "reviewDate": "2021-03-25T16:17:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "642b365d-8200-4b73-9dde-4654a1527812", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "kevinrocha", + "reviewDate": "2022-04-30T18:18:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e13105fd-63fb-4568-8af5-fa9cdcabe436", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "berrymichelle", + "reviewDate": "2022-06-07T21:52:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c42f696a-6ec1-4ce6-9779-7afa737db7c0", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "aliciawebb", + "reviewDate": "2021-06-28T16:52:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9691844c-dbea-4542-91c2-edc5220f9cbc", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "ulopez", + "reviewDate": "2021-01-17T08:31:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "41c18f16-b14b-4550-afe7-b83ec64e9811", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "juan70", + "reviewDate": "2021-04-05T02:06:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d284c7dc-a135-4fcd-abd4-5530d2bf7b99", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "robertwest", + "reviewDate": "2022-03-12T18:17:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Pro (Silver)", + "description": "This Basic Speaker Pro (Silver) is not included in your total payment unless you buy a specific speaker that should have it. This $150 price tag makes up 60% discount to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-03-22T12:00:59", + "price": 770.98, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-03-09T18:07:25", + "newPrice": 793.29 + }, + { + "priceDate": "2021-10-14T18:07:25", + "newPrice": 705.16 + }, + { + "priceDate": "2022-05-21T18:07:25", + "newPrice": 797.45 + }, + { + "priceDate": "2022-12-26T18:07:25", + "newPrice": 732.54 + }, + { + "priceDate": "2024-07-09T18:07:25", + "newPrice": 770.98 + } + ] + }, + { + "id": "2618239d-de2f-496e-a03e-c678776729ff", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "bautistadavid", + "reviewDate": "2021-05-10T00:01:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "36db91c6-b406-445d-ac35-4723f3d2e317", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "silvakatie", + "reviewDate": "2022-12-26T19:04:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a9b5733a-7075-4d3e-9ae4-d9d80c8d7423", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "foxmichelle", + "reviewDate": "2022-11-18T04:27:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ca7b2ea9-4a5a-460f-9cb7-b9dfd3a9d122", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "hjohnson", + "reviewDate": "2021-03-09T18:07:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2cfa242f-43a7-4338-af79-055d6766cbc0", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "jamesstephenson", + "reviewDate": "2021-08-08T00:07:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a586ebdf-f14d-486d-a1d2-34143457feea", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "rodriguezshannon", + "reviewDate": "2022-07-05T19:47:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "810d2317-4909-4260-b749-d1b11590cdc1", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Super (Steel)", + "description": "This Luxe Keyboard Super (Steel) is powered by a large battery for a fast keyboard with a premium price tag of $300+", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-05-17T19:02:34", + "price": 252.39, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-06-15T19:13:35", + "newPrice": 227.39 + }, + { + "priceDate": "2022-09-11T19:13:35", + "newPrice": 239.58 + }, + { + "priceDate": "2025-04-19T19:13:35", + "newPrice": 252.39 + } + ] + }, + { + "id": "52c30688-1afd-406d-823e-b6948ed624b8", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyferguson", + "reviewDate": "2021-06-15T19:13:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a3ffd5b8-509d-44a7-904d-69afdd8750f1", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "youngkarina", + "reviewDate": "2022-08-28T01:41:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0f75f7d0-bbf3-4290-98be-a43cd248b3d9", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamesvelazquez", + "reviewDate": "2021-10-13T22:36:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fd4919c5-9ad9-4fb7-a88a-7b2f81a59b43", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "braytiffany", + "reviewDate": "2022-08-07T20:40:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1b7d065a-4d50-4f92-95ba-571e5e2b6d1e", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "debradavis", + "reviewDate": "2021-11-26T16:01:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cc5d3cc1-60af-4764-aed9-a81431356a5e", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mariorobinson", + "reviewDate": "2022-09-12T17:08:46", + "stars": 4, + "verifiedUser": true + }, + { + "id": "69b7246a-1883-405b-83d1-f76bd586bde3", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinbrandon", + "reviewDate": "2021-12-07T07:09:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "10abe843-a904-4ada-816b-4c9f1082aacf", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "product", + "name": "Basic TV Micro (Silver)", + "description": "This Basic TV Micro (Silver) is an affordable, high-resolution TV that's capable of playing 1080p (H.264) video at high resolution including high resolution surround sound and Dolby", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-03-13T19:10:40", + "price": 363.23, + "stock": 94, + "priceHistory": [ + { + "priceDate": "2021-01-29T10:43:20", + "newPrice": 388.63 + }, + { + "priceDate": "2021-06-14T10:43:20", + "newPrice": 363.23 + } + ] + }, + { + "id": "c5c6be92-513b-4cd7-838f-151c21a4b4b8", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "codystanley", + "reviewDate": "2021-06-06T18:02:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dddf7caa-3eaf-4379-94d1-585c9f049319", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "joe26", + "reviewDate": "2021-08-19T02:46:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1916324a-342f-452e-b6ee-62701feba105", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "johnoneill", + "reviewDate": "2022-02-27T20:46:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2be6e2ea-0b4c-4351-86b3-8695d2ae97ad", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "lucasnicole", + "reviewDate": "2021-01-29T10:43:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a2e59c39-fe4a-409e-8014-cdb20c0d5bd0", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "heathergill", + "reviewDate": "2022-01-28T14:02:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6150a16c-2690-4818-89cb-461dde19c131", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "stephaniecain", + "reviewDate": "2022-12-22T14:27:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "db975fb3-4432-4491-ba84-afe78dde0e76", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "spencerwendy", + "reviewDate": "2021-06-16T09:40:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "00f8c67f-a735-4942-933a-40a42c064fec", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "vsmith", + "reviewDate": "2022-01-19T17:56:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4df461c2-9460-4ab8-9a51-56b3ce798a3d", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "davenportanna", + "reviewDate": "2022-09-10T16:39:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6fc75404-84ad-44b1-9383-1d4df0fe0bf5", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "sellersbrittany", + "reviewDate": "2022-01-31T03:02:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7a5680bd-313c-48d4-bf46-1e019752b8d1", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "jeffery45", + "reviewDate": "2022-03-15T20:37:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a508746-9354-441d-8d9a-958d1dbfb178", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "butlerrichard", + "reviewDate": "2022-11-05T20:44:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "befb3a82-f7ab-4f33-b5f1-d530d1fea825", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "ramirezkyle", + "reviewDate": "2022-11-04T06:56:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0971f59a-e77d-439b-8fa6-3575bb18384b", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "stephen45", + "reviewDate": "2022-06-09T15:46:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7ac31b40-f828-436a-a8aa-844311c22e56", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "melissabeard", + "reviewDate": "2021-10-11T16:35:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "15060c02-cc41-4385-9307-18e469f06344", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "fwang", + "reviewDate": "2022-03-07T20:52:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a387a352-d44b-4ac3-84f1-1d62badbb903", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "amandahamilton", + "reviewDate": "2021-05-14T02:06:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8975f2ec-3226-45fd-bacb-d7d634ac5bba", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "aguirrebrianna", + "reviewDate": "2021-09-27T22:04:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cd7b30dc-05a9-46ed-92fb-fc965f17aafb", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "wflores", + "reviewDate": "2022-02-01T21:18:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e2d499bb-51be-4206-bd48-50464eb02a55", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "lrodriguez", + "reviewDate": "2021-02-20T18:07:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6a02b29a-621e-4bd7-bfcf-386489663edf", + "productId": "6a02b29a-621e-4bd7-bfcf-386489663edf", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Super (Steel)", + "description": "This Basic Phone Super (Steel) is available in both aluminum and Stainless steel. Features include:\n\nHigh-quality, precision engineered steel-alloy lens\n\nNanodized aluminum lens housing\n\nSteel mount for optics and battery mounts\n\nMetal-plated front and rear mount\n\nMulti-camera", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-12-01T01:18:18", + "price": 733.57, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-01-30T06:14:57", + "newPrice": 740.08 + }, + { + "priceDate": "2021-06-01T06:14:57", + "newPrice": 685.72 + }, + { + "priceDate": "2021-10-01T06:14:57", + "newPrice": 756.12 + }, + { + "priceDate": "2022-01-31T06:14:57", + "newPrice": 713.81 + }, + { + "priceDate": "2022-06-02T06:14:57", + "newPrice": 756.07 + }, + { + "priceDate": "2024-09-18T06:14:57", + "newPrice": 733.57 + } + ] + }, + { + "id": "b6c32773-533d-4728-83f3-84119b855f86", + "productId": "6a02b29a-621e-4bd7-bfcf-386489663edf", + "category": "Electronics", + "docType": "customerRating", + "userName": "charles29", + "reviewDate": "2022-06-02T06:35:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ca4e1d2c-c714-4673-b47b-da0eea2c9278", + "productId": "6a02b29a-621e-4bd7-bfcf-386489663edf", + "category": "Electronics", + "docType": "customerRating", + "userName": "samuel25", + "reviewDate": "2021-01-30T06:14:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand 3000 (Gold)", + "description": "This Basic Stand 3000 (Gold) is a basic Stand used by the player to deal damage to enemies in an area, while also granting you an extra", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-10-24T14:08:17", + "price": 987.17, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-07-16T13:34:08", + "newPrice": 921.15 + }, + { + "priceDate": "2022-01-08T13:34:08", + "newPrice": 903.67 + }, + { + "priceDate": "2022-07-03T13:34:08", + "newPrice": 1015.5 + }, + { + "priceDate": "2022-12-26T13:34:08", + "newPrice": 930.21 + }, + { + "priceDate": "2023-12-28T13:34:08", + "newPrice": 987.17 + } + ] + }, + { + "id": "4e6e11e6-e291-444b-a080-cb26cab51dd4", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "susan36", + "reviewDate": "2022-12-21T06:38:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2ff96ac8-024b-4e25-977c-97df4795dc23", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "hbailey", + "reviewDate": "2022-12-27T07:12:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "72cf7647-877f-42e8-bc7d-03c6a0f99f81", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "myersjoseph", + "reviewDate": "2021-07-16T13:34:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b3b15577-62b5-478f-ba67-641c856d412b", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "umiller", + "reviewDate": "2022-02-15T15:48:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "10923e0a-558d-4382-bbd5-090309e940a7", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthonystanley", + "reviewDate": "2022-02-04T19:16:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "63208030-1468-47a0-8224-4b5ef87fe94c", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Red)", + "description": "This Premium Computer Ultra (Red) is an exclusive Computer Ultra (Purple) to the PC system with three premium-grade computers. Features include a premium USB port, built-in HDMI to output video to AV inputs, USB 3.0,", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-12-13T13:45:55", + "price": 227.89, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-10-26T00:04:15", + "newPrice": 206.89 + }, + { + "priceDate": "2022-02-01T00:04:15", + "newPrice": 231.18 + }, + { + "priceDate": "2022-05-10T00:04:15", + "newPrice": 207.65 + }, + { + "priceDate": "2022-08-16T00:04:15", + "newPrice": 216.87 + }, + { + "priceDate": "2022-11-22T00:04:15", + "newPrice": 213.31 + }, + { + "priceDate": "2024-10-10T00:04:15", + "newPrice": 227.89 + } + ] + }, + { + "id": "3a6320c3-cee0-4980-bc96-4b91e5433a63", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "jlopez", + "reviewDate": "2022-11-24T04:56:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a730a1f2-af12-4089-8b96-5d106dfe4c6c", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "aprilfuentes", + "reviewDate": "2021-11-24T16:43:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "98707dbd-2828-47a3-b6f9-bcdaa0c9d8cc", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanie81", + "reviewDate": "2022-08-03T01:40:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5a501a5c-1a43-4cfc-b338-05f30bd4df7f", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaron38", + "reviewDate": "2021-12-08T11:16:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c4f82872-6a16-44a1-90c4-397e8f3f87cf", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "kingbryce", + "reviewDate": "2021-11-04T01:58:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5b3bd289-cace-49a6-9a44-65945164f6bc", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "bmayer", + "reviewDate": "2022-02-27T14:01:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8a612ee9-109a-4358-aa00-d4d0df48031e", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "benjaminbaker", + "reviewDate": "2022-05-12T06:33:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8cededcc-cec3-444c-af1e-44777b99042f", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "patricia20", + "reviewDate": "2021-11-27T13:09:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b149e89f-fefd-4bae-b8d3-981ae5bae6f2", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamgordon", + "reviewDate": "2022-03-20T15:25:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "efbc70bf-83fb-47ea-a38c-d5392382ea73", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "alan88", + "reviewDate": "2022-05-15T18:27:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c153d6bc-970f-4dc9-ab70-964934090466", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "cynthiaanderson", + "reviewDate": "2022-11-04T09:21:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ed4fc8e5-12c5-41f8-a07b-21a8722e8afb", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "fraziernatalie", + "reviewDate": "2021-10-26T00:04:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Silver)", + "description": "This Luxe Filter 3000 (Silver) is made in Germany, and provides an unmatched contrast in ultra-low light. It is a light with exceptional strength, quality, and good color reproduction, which makes it perfect for every purpose. You can also filter yourself", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-09-18T18:32:49", + "price": 705.51, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-03-03T07:21:23", + "newPrice": 640.47 + }, + { + "priceDate": "2021-06-02T07:21:23", + "newPrice": 745.56 + }, + { + "priceDate": "2021-09-01T07:21:23", + "newPrice": 705.98 + }, + { + "priceDate": "2021-12-01T07:21:23", + "newPrice": 651.54 + }, + { + "priceDate": "2022-03-02T07:21:23", + "newPrice": 703.0 + }, + { + "priceDate": "2022-05-26T07:21:23", + "newPrice": 705.51 + } + ] + }, + { + "id": "1ac51368-0e49-4119-b4fe-30821afcc319", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "customerRating", + "userName": "ilee", + "reviewDate": "2021-03-03T07:21:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "765f0140-e7e0-4403-872b-f89d1532b2f1", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "customerRating", + "userName": "brownpeter", + "reviewDate": "2021-03-13T06:20:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "66757ce4-9a92-4692-83d6-5451038a3bd0", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "customerRating", + "userName": "carterderrick", + "reviewDate": "2022-03-02T15:25:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f9bb7c38-b153-45c4-b4b4-190e06833deb", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "customerRating", + "userName": "frenchsteven", + "reviewDate": "2021-04-09T00:49:29", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6f0edecd-6476-4685-b6c1-287b31d51795", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "product", + "name": "Premium Filter + (Steel)", + "description": "This Premium Filter + (Steel) is rated 4.8 out of 5 by 47.\n\nRated 5 out of 5 by Chris from Great filter I did it before any of my friends in San Diego bought", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-03-06T21:54:31", + "price": 904.62, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-01-21T02:28:11", + "newPrice": 900.48 + }, + { + "priceDate": "2021-12-25T02:28:11", + "newPrice": 856.23 + }, + { + "priceDate": "2022-11-28T02:28:11", + "newPrice": 969.58 + }, + { + "priceDate": "2023-08-23T02:28:11", + "newPrice": 904.62 + } + ] + }, + { + "id": "79a4580c-ea8d-4789-bc37-21a61f0bde38", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "jesse99", + "reviewDate": "2022-07-06T09:20:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "91f9c8b2-bb0a-43d8-affd-199612ca9e06", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "poconnell", + "reviewDate": "2021-11-16T10:24:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "11574b55-1de3-4622-977e-7f06cc500086", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "rileyjoseph", + "reviewDate": "2022-11-28T16:53:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "31e66331-93bc-47ad-a8fc-9fe38485e7d4", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "crystaldaniels", + "reviewDate": "2021-01-21T02:28:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "53d5f29b-34b2-4b9d-a86b-eebb6f2cb95b", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "tsanders", + "reviewDate": "2021-11-09T13:53:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9fa2eac9-fc48-47ac-a295-0359d1951092", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "denisemartinez", + "reviewDate": "2022-04-25T13:27:50", + "stars": 4, + "verifiedUser": false + }, + { + "id": "327df6c6-fdc4-490c-8ef0-0271a06cc70c", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "sanderssusan", + "reviewDate": "2022-10-09T18:17:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "211018c0-ba49-4f6a-a104-67301c124010", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "colechristopher", + "reviewDate": "2021-11-16T20:00:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ed12679e-cc54-434a-aa4d-84da90a14589", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "jenniferli", + "reviewDate": "2021-06-27T09:38:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Super (Gold)", + "description": "This Basic Keyboard Super (Gold) is one of the most popular keyboards because of its excellent control scheme. I do not have any complaints about this setup. At first I was thinking 'Why does this matter?' and I was very tempted to say yes of this setup. For those not accustomed to the sound of a good audio system, this keyboard really works in this regard and if you are looking for a keyboard", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-07-29T17:30:23", + "price": 854.97, + "stock": 71, + "priceHistory": [ + { + "priceDate": "2021-02-13T18:35:59", + "newPrice": 851.97 + }, + { + "priceDate": "2021-07-31T18:35:59", + "newPrice": 832.78 + }, + { + "priceDate": "2022-01-15T18:35:59", + "newPrice": 864.36 + }, + { + "priceDate": "2022-07-02T18:35:59", + "newPrice": 812.87 + }, + { + "priceDate": "2022-12-17T18:35:59", + "newPrice": 821.91 + }, + { + "priceDate": "2023-04-06T18:35:59", + "newPrice": 854.97 + } + ] + }, + { + "id": "3bbf551d-eb60-4a32-86de-a8c89c705c37", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qherman", + "reviewDate": "2021-09-28T09:55:38", + "stars": 4, + "verifiedUser": true + }, + { + "id": "629993c5-98a5-43ae-a774-ea7116364d85", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bushelizabeth", + "reviewDate": "2022-04-18T02:32:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ac3a7207-cbe6-4d54-9bd5-67d17f913ae4", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "knightpatrick", + "reviewDate": "2022-08-22T12:31:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2d4aca5b-11aa-403d-8631-23a1d2992c99", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fturner", + "reviewDate": "2021-03-15T18:47:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aa6feaad-470f-4f46-a873-bd49934eef37", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "george94", + "reviewDate": "2022-12-18T09:08:34", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6addd651-ee0e-40a0-b484-0676f2635172", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathryn98", + "reviewDate": "2022-12-05T07:23:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d3b92a66-4036-436f-b7b8-f42941be369c", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laurablack", + "reviewDate": "2021-02-13T18:35:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "748677a0-4277-4f82-9a8d-6182914bffc1", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mark32", + "reviewDate": "2021-09-30T22:16:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "16e9ca9f-2edf-45db-8b70-924d5425a078", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fieldsmelanie", + "reviewDate": "2022-02-18T09:14:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a829685d-e526-4718-b3d5-e12f5ceadd31", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownlarry", + "reviewDate": "2021-03-25T23:09:23", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5e058abf-006e-44d3-b363-087cb445a4bf", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mgray", + "reviewDate": "2021-08-28T03:37:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Pro (Steel)", + "description": "This Amazing Mouse Pro (Steel) is rated 5.4 out of 5 by 486.\n\nRated 5 out of 5 by Anonymous from Product came in a nice package It arrived packed full of great products, and shipped straight out of the package. I have been using it extensively for many years now and can't say enough positive things about this product.\n\nRated 5 out of 5", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-12-04T16:45:59", + "price": 137.76, + "stock": 52, + "priceHistory": [ + { + "priceDate": "2021-01-28T03:04:16", + "newPrice": 131.88 + }, + { + "priceDate": "2021-07-22T03:04:16", + "newPrice": 150.53 + }, + { + "priceDate": "2022-01-13T03:04:16", + "newPrice": 125.57 + }, + { + "priceDate": "2022-07-07T03:04:16", + "newPrice": 145.3 + }, + { + "priceDate": "2022-12-29T03:04:16", + "newPrice": 128.81 + }, + { + "priceDate": "2024-06-28T03:04:16", + "newPrice": 137.76 + } + ] + }, + { + "id": "90f6a692-7831-494c-b7cb-af49345a4fa4", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sarawilson", + "reviewDate": "2022-05-24T12:30:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3c77e902-139d-4f46-8c98-93311ebc8b77", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pperez", + "reviewDate": "2022-09-11T12:10:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "976f9945-bbbd-48e5-bf10-090abd3f994e", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erinfreeman", + "reviewDate": "2022-01-22T13:03:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f539022b-7474-4e06-9f9c-27e2d690a4e4", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dreeves", + "reviewDate": "2022-03-06T00:48:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d001f7bc-efd6-4c59-b37c-53b2732b664f", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fsmith", + "reviewDate": "2021-02-23T19:23:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5e26cfe3-b1aa-44e2-8895-fe8b2edb9e63", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "owalker", + "reviewDate": "2021-08-25T21:10:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "089b43c6-703d-4082-8a1f-cd4116b62f7a", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthewhunt", + "reviewDate": "2022-08-04T14:11:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0e3bbd1f-52d8-4fc1-91ec-bba6ad924d95", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaronacevedo", + "reviewDate": "2022-01-14T10:12:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4648dc60-9a2e-4fdd-a47c-12fc2a954586", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "corypearson", + "reviewDate": "2022-08-20T14:37:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1a958b0a-f571-40b5-b6ca-6e826129ae16", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithjamie", + "reviewDate": "2022-08-29T02:11:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c9456844-f8e2-4551-8e98-3bea4519a72a", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa44", + "reviewDate": "2022-12-30T03:16:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a38b2b60-a69a-4308-b1ca-db8b699dd2f7", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dawn50", + "reviewDate": "2021-12-19T17:24:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "eacc82c3-c664-4d7f-b63e-8e6557a7ce3b", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rodneyhoward", + "reviewDate": "2021-01-28T03:04:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "aa34c70d-4dd9-4c34-9277-9487ffb78d8e", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bishoprebecca", + "reviewDate": "2022-08-29T11:40:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ee106733-4eed-4a66-9723-10df7c08a579", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lyonschristopher", + "reviewDate": "2021-12-22T20:11:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Red)", + "description": "This Amazing Filter Micro (Red) is based on an inexpensive, simple and effective camera. It works very well on very low light conditions. It is recommended to use for low light photography, and it is the perfect filter for your filters as well. If your lens has a very low focus distance, or if you have your camera at 5 fps but a high zoom lens, this filter will not be recommended.\n\nThe lens is equipped with a 12-speed automatic", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-09-16T23:39:24", + "price": 658.63, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-06-07T04:29:13", + "newPrice": 698.54 + }, + { + "priceDate": "2024-09-21T04:29:13", + "newPrice": 658.63 + } + ] + }, + { + "id": "60a94e73-ed68-4712-88f5-2469be4fc217", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "qdiaz", + "reviewDate": "2021-11-15T21:40:48", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5f0c51dd-d354-40d9-9753-2d1fcbe6e221", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "bushpatrick", + "reviewDate": "2022-03-01T21:24:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "34002750-8c7e-4804-b50f-9fddef90f70c", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "hmorris", + "reviewDate": "2021-06-07T04:29:13", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ab58204b-9e4b-45b6-a1e3-f56abc6b8065", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "jessica86", + "reviewDate": "2021-08-27T22:21:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6b1a2f35-8a2e-4326-8978-2b0788433a5a", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "jorge15", + "reviewDate": "2022-02-12T10:59:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ea1929d0-bfd6-4318-893e-160b8373e96c", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "jaimebaker", + "reviewDate": "2021-08-10T20:18:07", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a25e4e27-538d-4553-b24b-18059658248a", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "pstein", + "reviewDate": "2022-05-15T13:30:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2f0dd805-4d19-4c17-b15e-9f9006903f3f", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "kedwards", + "reviewDate": "2021-07-24T03:50:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker 3000 (Black)", + "description": "This Amazing Speaker 3000 (Black) is rated 4.3 out of 5 by 8.\n\nRated 5 out of 5 by Anonymous from Great speaker I was looking forward to buying something special for the holidays and a good speaker will do the trick for you. The quality is fantastic and the price is good. I purchased the Speakers for $99 and i'm going to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-11-02T01:35:31", + "price": 512.43, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-04-14T07:47:05", + "newPrice": 533.01 + }, + { + "priceDate": "2024-12-28T07:47:05", + "newPrice": 512.43 + } + ] + }, + { + "id": "bc7f231f-69ae-43fd-a27b-30c78ad8bd20", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "banderson", + "reviewDate": "2022-06-11T20:28:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f9551bfd-49d9-4518-8d4e-6cf3d8fab53c", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "clayjulie", + "reviewDate": "2022-10-06T06:20:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5d0e412f-1982-4e94-ab64-42c45db26408", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "dylangill", + "reviewDate": "2022-09-14T11:39:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6eacf7dd-5a37-46ac-a348-df68195f682d", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "taylordavid", + "reviewDate": "2022-02-28T16:30:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "066dfe02-bcbd-4bc3-b15c-da866d97a484", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "igonzalez", + "reviewDate": "2021-05-23T06:20:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "610533eb-9ab6-441e-bb43-25cde7254fc0", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "matthewcarlson", + "reviewDate": "2021-07-24T08:17:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7d34036f-4241-46d0-9128-79f279443a71", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "stephenbrown", + "reviewDate": "2021-06-14T04:58:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "66431ef5-3f0a-4b32-b248-8757394663cb", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "bairdmandy", + "reviewDate": "2021-04-14T07:47:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5718e332-127b-4e64-bc4f-db7b54067c4a", + "productId": "5718e332-127b-4e64-bc4f-db7b54067c4a", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Silver)", + "description": "This Amazing Keyboard Ultra (Silver) is designed to be versatile enough to use it in any layout where you want it. This has a nice variety of functions, from keyboard-sized and a wide touchpad to USB 3.0 peripherals to the simple mouse.\n\nIts price is low, but", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-05-08T03:35:05", + "price": 302.77, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-04-01T20:20:59", + "newPrice": 319.66 + }, + { + "priceDate": "2021-07-16T20:20:59", + "newPrice": 279.75 + }, + { + "priceDate": "2024-09-22T20:20:59", + "newPrice": 302.77 + } + ] + }, + { + "id": "bb9eb118-ff5c-4347-8f29-a0ad8a5106c7", + "productId": "5718e332-127b-4e64-bc4f-db7b54067c4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "changdestiny", + "reviewDate": "2021-04-01T20:20:59", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0c76319e-58d0-4d4e-aeb5-41168ab4334f", + "productId": "5718e332-127b-4e64-bc4f-db7b54067c4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnathanchurch", + "reviewDate": "2021-07-17T00:51:19", + "stars": 5, + "verifiedUser": true + }, + { + "id": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Micro (Black)", + "description": "This Premium Mouse Micro (Black) is a great choice for a new kid on the block. It offers a variety of options, including standard micro and Micro 4-lens sizes.\n\nThis Ultra Micro Mouse Micro (Black) is perfect for gamers who get their hands on a gaming mouse in the early-80s", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-29T00:52:15", + "price": 592.34, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-02-11T03:30:04", + "newPrice": 566.31 + }, + { + "priceDate": "2021-07-08T03:30:04", + "newPrice": 559.42 + }, + { + "priceDate": "2021-12-02T03:30:04", + "newPrice": 601.42 + }, + { + "priceDate": "2022-04-28T03:30:04", + "newPrice": 539.52 + }, + { + "priceDate": "2022-09-22T03:30:04", + "newPrice": 627.79 + }, + { + "priceDate": "2023-05-20T03:30:04", + "newPrice": 592.34 + } + ] + }, + { + "id": "6e2ba352-7ae9-42c4-80ca-76054deae594", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin18", + "reviewDate": "2022-04-28T11:38:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9686504c-dcc1-4c00-905a-11095520b5ed", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "meghan25", + "reviewDate": "2022-09-23T05:16:46", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6bcf33b1-f9be-442b-bb05-20ac3e4c5a2b", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hmorris", + "reviewDate": "2021-12-29T10:26:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6445c190-d830-4936-8cdc-3c4bf326e471", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dgarcia", + "reviewDate": "2022-09-11T03:46:32", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6771e235-0734-447f-af57-f3b6d4a4eaff", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "todd14", + "reviewDate": "2022-01-30T09:16:12", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2429b629-8e09-4fb7-9021-55cd7d47f143", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicapeterson", + "reviewDate": "2021-10-08T17:18:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "788db375-3217-446e-a411-4e3e971f2b81", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gwalker", + "reviewDate": "2021-11-30T12:38:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "60150a58-6f88-479c-baa1-0fd77aec501c", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "roy48", + "reviewDate": "2021-02-11T03:30:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e812880c-cc4a-4fb5-b2d7-715b3c90c61d", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownnicholas", + "reviewDate": "2021-03-14T21:54:57", + "stars": 5, + "verifiedUser": false + }, + { + "id": "aebcbe2b-1eec-45b0-95a1-4373132eec7b", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wigginselaine", + "reviewDate": "2021-05-04T06:38:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1400086c-f2de-49a6-8e30-11d4b1b38b5e", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karen58", + "reviewDate": "2021-12-12T11:30:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a5076781-6d7b-488e-bf04-050e9a821126", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alangraves", + "reviewDate": "2021-12-14T19:46:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f564b00b-3d8e-4390-b969-f6f0b70add05", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wilsonscott", + "reviewDate": "2022-03-22T09:09:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3952db43-7d70-4e59-a4f7-dde8fc644ee5", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simpsonbrittney", + "reviewDate": "2022-03-18T03:25:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "70de0404-6856-4b69-afdd-45a4c467782a", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "justin91", + "reviewDate": "2022-05-18T14:53:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse 3000 (Gold)", + "description": "This Basic Mouse 3000 (Gold) is equipped with a simple (?) mouse pad with a single click on the mouse. It attaches to the mouse in the same fashion as the A2 mouse pad. The standard A2 mouse pad is used with a standard A2", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-01-26T19:20:49", + "price": 379.63, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-03-17T05:08:21", + "newPrice": 393.75 + }, + { + "priceDate": "2021-08-09T05:08:21", + "newPrice": 403.49 + }, + { + "priceDate": "2022-01-01T05:08:21", + "newPrice": 396.4 + }, + { + "priceDate": "2022-05-26T05:08:21", + "newPrice": 402.72 + }, + { + "priceDate": "2022-10-18T05:08:21", + "newPrice": 383.83 + }, + { + "priceDate": "2023-09-05T05:08:21", + "newPrice": 379.63 + } + ] + }, + { + "id": "8459f02c-28db-42bd-83e2-4dd81409cbee", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rodriguezscott", + "reviewDate": "2022-01-29T13:11:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0e647521-27f7-46ef-b7b4-d1728f227565", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sdrake", + "reviewDate": "2021-03-18T05:18:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e13af63d-bc4a-44a7-ab75-4cad7e4d875e", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelahenderson", + "reviewDate": "2021-12-30T21:53:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "10a675dd-7d16-4f41-bb2f-ca454747b2f7", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xmaldonado", + "reviewDate": "2021-03-17T05:08:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "52540081-cb36-4cf4-8012-c2ba78d29746", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vhernandez", + "reviewDate": "2022-10-22T02:40:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8cdbd066-a127-4043-bde1-9036966f9458", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michaelschaefer", + "reviewDate": "2021-08-03T15:46:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a3e694f3-fa1d-44d9-8132-4e123f81a987", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nallen", + "reviewDate": "2022-08-11T12:00:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e681eb27-ab96-4f6e-af1b-40d61ca82739", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ramirezjacob", + "reviewDate": "2022-04-21T19:10:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f08695e7-6919-4dd1-b775-17816cf9aec1", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "damon45", + "reviewDate": "2022-05-17T13:55:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e826d46e-7d63-4672-b547-3232eeafdffb", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smathis", + "reviewDate": "2022-08-19T03:40:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "228103a1-3cc1-47fa-a57b-b8160aaf9532", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vsmith", + "reviewDate": "2021-06-26T22:24:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "06fc2368-79a7-44ea-a886-bc41f4ab6d84", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maria69", + "reviewDate": "2021-09-30T16:18:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard + (Black)", + "description": "This Basic Keyboard + (Black) is also available to use to type out of a keyboard.", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-03-15T23:50:49", + "price": 660.35, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-04-18T19:40:13", + "newPrice": 610.33 + }, + { + "priceDate": "2021-11-03T19:40:13", + "newPrice": 708.87 + }, + { + "priceDate": "2022-05-21T19:40:13", + "newPrice": 721.51 + }, + { + "priceDate": "2022-12-06T19:40:13", + "newPrice": 620.59 + }, + { + "priceDate": "2022-12-21T19:40:13", + "newPrice": 660.35 + } + ] + }, + { + "id": "fff2c741-fba3-47e8-8521-ddd51fb5d9fb", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacobpatterson", + "reviewDate": "2021-11-23T17:14:51", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1cdcf25f-066a-4f54-b458-c11d65ea792d", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bmurphy", + "reviewDate": "2021-04-18T19:40:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "13f5f4f1-9a0c-4696-9e31-10a56f168ae1", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qcabrera", + "reviewDate": "2022-07-31T05:25:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "87ba4e2f-fecf-48f4-a920-8a89639e5a9e", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hgarcia", + "reviewDate": "2021-10-14T16:55:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a53286ef-050e-439d-9843-6017cbd7fd8e", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevinlopez", + "reviewDate": "2022-05-20T20:30:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9245d14f-49cf-4e16-8a21-d7728cccf524", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tjones", + "reviewDate": "2021-04-26T09:16:27", + "stars": 4, + "verifiedUser": true + }, + { + "id": "51397985-dfb7-480f-b741-a972426940be", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristin19", + "reviewDate": "2021-06-07T06:42:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e8a90063-8850-452d-9b4f-e074448d2ba2", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "badams", + "reviewDate": "2022-08-21T06:57:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f08b4d38-0eb2-462e-9e79-240a66fbbfb3", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gallowayphillip", + "reviewDate": "2022-06-02T16:33:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ef3a47ad-18fd-4be8-b185-83740de615b3", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nsnyder", + "reviewDate": "2021-12-10T22:22:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3e066e84-0d34-4376-acbf-596eab889adb", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardsonmichael", + "reviewDate": "2022-05-23T01:58:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3c7f980d-8846-425a-bee0-5b68355fcca6", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "madison92", + "reviewDate": "2022-12-09T08:22:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "113836e3-31a3-4155-9b58-ea32065b942c", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "grahamphilip", + "reviewDate": "2021-09-24T13:58:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "14c2a723-7d2c-4e0c-b803-f51974dbb724", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin15", + "reviewDate": "2021-11-23T00:37:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c0da5ce1-ec07-4cb8-9e77-6988e8eef1ff", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dbrown", + "reviewDate": "2021-09-22T03:02:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0e20cdae-8192-4719-b15c-c6a8f92b35c0", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tonibrooks", + "reviewDate": "2022-09-26T19:15:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "28cb7acb-c529-4096-9597-114b954573dc", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wfisher", + "reviewDate": "2021-11-20T17:01:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "930368cb-eb63-4472-b39f-86e25654df55", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew29", + "reviewDate": "2022-11-08T00:28:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Silver)", + "description": "This Basic Phone Ultra (Silver) is one of my favorite phones if I remember it right…\n\nIt has an extremely fast processor with very fast processing, which allows for amazing photos, videos and animations.", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-15T20:20:45", + "price": 497.05, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-01-21T14:55:01", + "newPrice": 452.7 + }, + { + "priceDate": "2021-07-08T14:55:01", + "newPrice": 523.98 + }, + { + "priceDate": "2021-12-23T14:55:01", + "newPrice": 499.43 + }, + { + "priceDate": "2022-06-09T14:55:01", + "newPrice": 546.36 + }, + { + "priceDate": "2022-11-24T14:55:01", + "newPrice": 457.68 + }, + { + "priceDate": "2023-07-19T14:55:01", + "newPrice": 497.05 + } + ] + }, + { + "id": "0fbcb5fc-ad62-4c8f-9771-f7ecd680e141", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamhill", + "reviewDate": "2021-11-06T15:56:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "64095beb-3b60-4862-a329-09535f7356c2", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "hodgeadrienne", + "reviewDate": "2022-07-20T17:31:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "92390d8b-eb05-443c-99a5-15ff9b4076bb", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "steven40", + "reviewDate": "2021-07-30T14:00:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f3e96581-47d6-4d9f-97a3-ab9a69269456", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "lindseyperry", + "reviewDate": "2022-07-17T03:31:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "06c6d7c2-0e50-484d-907e-16b24bbc0a23", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "bakerlaura", + "reviewDate": "2021-08-11T23:30:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "25ab8889-20a3-4ff2-a8e0-9305ec836ed1", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "schmidtjacob", + "reviewDate": "2022-11-10T02:18:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f80eca5e-2e84-46e9-b836-2996e108fc79", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "rcruz", + "reviewDate": "2021-03-26T01:39:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1602f11c-701f-4c40-a7a1-487439fbce7c", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelly51", + "reviewDate": "2022-02-21T20:49:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8cab7b14-e35f-4d02-94e3-00815d37ae69", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "parkerrobert", + "reviewDate": "2022-01-27T01:54:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4b2b70e1-9a3e-4849-a261-686270b96302", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "laura37", + "reviewDate": "2022-11-27T13:29:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e7e2c6be-1b90-48d4-ae71-f595cd7782d9", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "brianna38", + "reviewDate": "2021-04-28T13:21:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "14b51499-38c9-4109-818e-c6077d6902db", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "griffithivan", + "reviewDate": "2021-05-28T19:45:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2ce0d7ac-f4a9-42a4-9185-4e281fd44df3", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "omitchell", + "reviewDate": "2021-09-14T09:54:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "35bf6d87-a862-4f68-aeb0-56b1eabdd2fd", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "gomezjose", + "reviewDate": "2021-10-26T03:10:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "27c4db22-ad6b-49eb-9ffd-2c40ac9f1f74", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "normanwheeler", + "reviewDate": "2021-10-24T19:31:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e4a46097-ff62-43e5-b963-a516355c89c1", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "wrichard", + "reviewDate": "2021-07-23T04:14:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d4e00459-91c9-4a41-890c-100b26fab0df", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciamackenzie", + "reviewDate": "2021-01-21T14:55:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "97da7006-4ec8-479a-88d0-cb99bee0a9cb", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "makayla62", + "reviewDate": "2021-07-31T06:35:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "47415be4-0bda-4615-9055-b0ad00be9243", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "ofisher", + "reviewDate": "2022-03-15T12:59:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Super (Gold)", + "description": "This Luxe Computer Super (Gold) is also capable of doing most of the tasks required for a very fast system. The computer has very narrow power supply and therefore does not allow for any external power. It can not power any of the USB ports. It only stores 1 GigPix of RAM inside the computer and requires 2 x 8GB of storage.\n\nComponents:\n\nAll parts are made out of recycled material for durability. All", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-10-30T05:13:04", + "price": 1046.96, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-01-22T01:07:32", + "newPrice": 1109.35 + }, + { + "priceDate": "2021-07-05T01:07:32", + "newPrice": 1067.27 + }, + { + "priceDate": "2021-12-16T01:07:32", + "newPrice": 1109.1 + }, + { + "priceDate": "2022-05-29T01:07:32", + "newPrice": 1057.06 + }, + { + "priceDate": "2025-04-29T01:07:32", + "newPrice": 1046.96 + } + ] + }, + { + "id": "b1c4eee3-83e8-4f1d-9493-7fe24054fe53", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "barbara83", + "reviewDate": "2021-12-31T05:46:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f223a83f-4498-4881-af2f-1aef731d799d", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "peckjennifer", + "reviewDate": "2021-01-22T01:07:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fc584f5e-977e-489b-a391-fed8271d10db", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidknox", + "reviewDate": "2021-03-30T16:21:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "23e0d669-d668-4711-b554-b52eeaa94b4a", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "joserodgers", + "reviewDate": "2022-05-29T14:02:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d74e10b4-924a-4007-82ef-ca56afb3cf17", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "burkewilliam", + "reviewDate": "2021-02-12T13:51:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7e4c1c51-5007-44fa-a6e3-1f9e06f6e8cc", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda75", + "reviewDate": "2021-08-23T00:48:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Mini (Silver)", + "description": "This Luxe Keyboard Mini (Silver) is one of only six keyboard models that come standard with the same type-A, Type-A.\n\nThe Mini has two USB cables and a USB 2.0 port and includes a Micro USB Type-C port", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-06-15T04:16:03", + "price": 953.48, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-01-27T08:26:02", + "newPrice": 979.58 + }, + { + "priceDate": "2021-09-14T08:26:02", + "newPrice": 953.48 + } + ] + }, + { + "id": "4f511adb-06fc-4e77-ac08-ab055a26132c", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "knightlucas", + "reviewDate": "2021-08-02T00:47:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f97761ed-b0b1-4073-b758-f8eac45f9b19", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amanda51", + "reviewDate": "2022-02-21T00:06:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ace9d302-044c-4acb-bec1-96d578b67d79", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasonburke", + "reviewDate": "2022-04-12T01:04:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f64daa32-f7b7-4a9b-8634-1c2cafdf88d2", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacob02", + "reviewDate": "2022-06-14T07:17:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "68666e93-7068-4159-a914-2e7f079ccb8d", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer21", + "reviewDate": "2022-02-21T10:34:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e17f1db2-1871-450d-930e-21dd515c1f0b", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steven49", + "reviewDate": "2022-09-27T19:07:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a6e53a2b-093f-43d1-98ed-1550a38ef96d", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisamartin", + "reviewDate": "2022-04-15T04:49:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3f92fcb6-2bc9-4605-a1c3-31cdc671b80a", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vbarrett", + "reviewDate": "2021-11-15T21:21:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "be4d4c21-ce85-40e6-8614-90054199a87f", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthonywilkins", + "reviewDate": "2021-08-08T12:22:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f1c12b0a-58d8-4b2b-bc45-e3b1a5f3a325", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karen93", + "reviewDate": "2021-08-23T13:30:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0f73a7fb-cee9-40c8-bd2a-04a64c10f06c", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kmejia", + "reviewDate": "2022-02-10T19:57:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2989402a-7c78-4b81-aaf1-35f9e859b92d", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "william83", + "reviewDate": "2021-09-14T23:47:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e2784464-b861-4b2c-b2a2-fc4061695c12", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "freemancarl", + "reviewDate": "2021-08-07T01:49:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bcdfd9b3-2b4d-4429-8667-017b9b069669", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "floresandrew", + "reviewDate": "2021-11-01T20:46:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bd8b6c9d-a901-41d2-97f4-14130b75cac5", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wjames", + "reviewDate": "2022-12-06T18:51:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d23d8c1d-05ca-4b19-8fec-6f3825c2aa0a", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "coreycampbell", + "reviewDate": "2022-08-13T04:13:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4d3fa880-bb66-45c1-aaad-92cca3a5ac3e", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anita02", + "reviewDate": "2022-01-05T15:31:17", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1499b45a-29b4-4fb1-9b9f-9fb24513c83c", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "faustin", + "reviewDate": "2021-01-27T08:26:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "dcac208b-7bb3-453d-94c6-3bfcda72856b", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "whitedavid", + "reviewDate": "2022-06-29T16:37:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "productId": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Pro (Silver)", + "description": "This Premium Computer Pro (Silver) is rated 4.4 out of 5 by 9.\n\nRated 5 out of 5 by pj from Great to install This is a great product. I've already been buying it twice now because of my previous experience. I use a 5\" x 4\" (1/2\".5cm) model. The box is much better than a 1\" x 3\" (50 cm x", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-01-14T17:14:47", + "price": 484.8, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2021-11-06T16:13:43", + "newPrice": 455.63 + }, + { + "priceDate": "2023-01-25T16:13:43", + "newPrice": 484.8 + } + ] + }, + { + "id": "aa0fd19e-f44f-4d2b-923a-ec05d146cd57", + "productId": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "category": "Electronics", + "docType": "customerRating", + "userName": "dawn97", + "reviewDate": "2022-10-29T15:04:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d25912b2-b002-4f3f-b4f9-981adc52513a", + "productId": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "category": "Electronics", + "docType": "customerRating", + "userName": "psuarez", + "reviewDate": "2021-11-06T16:13:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "24ea4d7a-8fad-4d63-810d-2c128d19f196", + "productId": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "category": "Electronics", + "docType": "customerRating", + "userName": "evansmichael", + "reviewDate": "2022-03-19T22:32:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone + (Gold)", + "description": "This Awesome Phone + (Gold) is now available for pre-order\n\nIn addition, the price of Silverware is now $12.65 / $11.25 / $10.95 / $9.45 / $8.45 / $7.35", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-11-07T03:01:36", + "price": 738.52, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-03-19T20:45:33", + "newPrice": 808.42 + }, + { + "priceDate": "2022-12-22T20:45:33", + "newPrice": 699.52 + }, + { + "priceDate": "2024-06-04T20:45:33", + "newPrice": 738.52 + } + ] + }, + { + "id": "2833fbd4-ac53-4d6b-b568-b91b70fca60f", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "gharrell", + "reviewDate": "2021-03-27T23:20:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e914e825-a435-4edd-a8ed-292f1ab14c32", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "fernandezmatthew", + "reviewDate": "2022-08-23T20:39:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a60bb98b-58cf-4e02-9d0a-87a1490a4410", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelmaynard", + "reviewDate": "2022-01-04T14:35:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "69f1228e-c0e2-44d8-9336-2f1126e923b4", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "brendanjohnson", + "reviewDate": "2021-03-19T20:45:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b7ffd001-bdee-4f35-85ff-8e552d9894dd", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "fcox", + "reviewDate": "2022-05-28T05:44:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e7b4957b-69d5-4892-8a9a-d0821695d594", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamhouse", + "reviewDate": "2022-01-14T12:52:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7f5c814a-f7ae-412b-953e-3d0995332edd", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "jesse00", + "reviewDate": "2021-06-11T02:10:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5c912062-e792-4b2b-b62a-0b8bebae7325", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelleyrobert", + "reviewDate": "2021-08-14T10:03:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f02b0743-2288-4492-9563-eb72253a3368", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "wfoley", + "reviewDate": "2022-09-21T13:57:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3884503e-1bf7-45a4-8be9-2b56c8ef19cc", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "ortizwilliam", + "reviewDate": "2022-02-17T00:00:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "739fe91f-17f6-4fc7-942d-060ad7023100", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "heatherkelley", + "reviewDate": "2022-12-23T16:19:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0d6b3547-3e80-406e-9013-3a4458c9c392", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "elizabeth47", + "reviewDate": "2022-04-27T08:10:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e946bf30-87ca-4158-ae22-84319f66b087", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "mwilliams", + "reviewDate": "2022-02-12T16:26:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Ultra (Gold)", + "description": "This Luxe Phone Ultra (Gold) is a smartphone that's a hybrid of our LG and Moto phones. While the dual-core 1.4GHz processor paired with the 2GB RAM, 4GB of RAM, 1,050mAh battery, and 12MP camera, the Nexus 5 has the same specs as an LG device—16GB of RAM and 16GB", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-07-10T18:29:55", + "price": 332.67, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-01-18T16:06:19", + "newPrice": 300.82 + }, + { + "priceDate": "2022-11-12T16:06:19", + "newPrice": 324.54 + }, + { + "priceDate": "2022-12-25T16:06:19", + "newPrice": 332.67 + } + ] + }, + { + "id": "1b4de26b-3abc-4b25-8832-bbc418dc6e53", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "customerRating", + "userName": "larryshaffer", + "reviewDate": "2021-01-18T16:06:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e663b6e6-ef8f-4c27-b628-04f980335510", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "customerRating", + "userName": "lauraedwards", + "reviewDate": "2022-04-08T19:12:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d94e42e2-435e-45d7-9a0e-bfc4b750e661", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "customerRating", + "userName": "destinymorales", + "reviewDate": "2022-07-19T07:42:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "97b1d6cc-90eb-4aec-bea2-0871f2e6a883", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "customerRating", + "userName": "mjacobs", + "reviewDate": "2022-11-12T18:29:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "product", + "name": "Luxe TV Micro (Black)", + "description": "This Luxe TV Micro (Black) is the ultimate gaming machine. The X-Wing comes equipped with a laser-guided system that will fire at the target at up to 60fps with a low frequency of 300Hz. The X-Wing's laser features a red-ray sensor that gives its infrared light, which will be used to detect changes in the light reflected off aircraft surfaces. It's said the Laser-Mapping system is able", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-08-02T16:15:30", + "price": 423.68, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-01-01T03:32:35", + "newPrice": 394.9 + }, + { + "priceDate": "2021-06-22T03:32:35", + "newPrice": 426.32 + }, + { + "priceDate": "2021-12-11T03:32:35", + "newPrice": 419.39 + }, + { + "priceDate": "2022-06-01T03:32:35", + "newPrice": 450.75 + }, + { + "priceDate": "2022-11-20T03:32:35", + "newPrice": 427.21 + }, + { + "priceDate": "2024-01-07T03:32:35", + "newPrice": 423.68 + } + ] + }, + { + "id": "148b48bc-7a83-446b-8ab4-29eb3ceffd0e", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "harmonkatherine", + "reviewDate": "2021-06-04T08:18:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "28d62db4-7dba-4c72-9a11-ca2cb3f68c53", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "rjones", + "reviewDate": "2021-06-24T05:36:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2606dfe9-ccf3-412c-ad24-44371afc4b54", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "silvasteven", + "reviewDate": "2021-03-13T10:32:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cd582392-e8bf-48f9-a64f-ab488a019576", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "guerrerorandy", + "reviewDate": "2021-01-01T03:32:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76922317-a463-4d1f-9ae4-183b15bcbf6d", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "iroberts", + "reviewDate": "2021-04-04T18:18:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4b03ea10-1454-4624-bd71-724894b68a72", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "robert73", + "reviewDate": "2021-12-16T21:59:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "acfe22d2-f5db-4b1b-8a4d-5a842ecbf84a", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "mirandachristopher", + "reviewDate": "2021-03-29T22:34:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e7797e8c-2af4-469e-ab35-bfa2f0851faa", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "lcase", + "reviewDate": "2022-02-19T01:57:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "057d722f-82e6-47b0-a845-875202dc49c2", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "dustindunlap", + "reviewDate": "2022-11-21T20:10:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8c3f30f1-7902-4b46-a314-392ca42b6a0d", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "tammiemartinez", + "reviewDate": "2021-12-18T20:26:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ad5d9b62-73b3-48a1-880a-412f8d7c0962", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "zclark", + "reviewDate": "2021-03-17T23:11:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "af0b4714-817b-4073-a1d7-56e0ac5d089e", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "mcguirepatricia", + "reviewDate": "2021-03-18T19:05:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "20f7798c-c84e-4b42-a0e2-5961c637dab6", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "smithkelly", + "reviewDate": "2021-07-04T05:57:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ec748352-725c-4443-be79-2dc7735390e2", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "smonroe", + "reviewDate": "2021-04-27T15:37:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Steel)", + "description": "This Premium Stand Micro (Steel) is an all-steel construction that is designed for exceptional comfort, and fits snugly into most any desk or desk stand. It also comes with a protective rubber band which will protect the back of your back against the elements.\n\nFeatures\n\nBuilt for the greatest experience", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-07-30T04:38:25", + "price": 801.31, + "stock": 7, + "priceHistory": [ + { + "priceDate": "2021-06-08T04:34:01", + "newPrice": 818.29 + }, + { + "priceDate": "2022-09-15T04:34:01", + "newPrice": 732.54 + }, + { + "priceDate": "2024-07-22T04:34:01", + "newPrice": 801.31 + } + ] + }, + { + "id": "dd10f288-a6e1-473e-9ab1-09d5e5e6aeab", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "hollandstacey", + "reviewDate": "2021-06-08T04:34:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6c9028c4-bb9e-460f-9884-5210233f21f0", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "dthomas", + "reviewDate": "2022-06-21T04:33:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4df5d61b-312a-41fd-8059-d3ec1a21fd55", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "hmartin", + "reviewDate": "2022-09-16T00:53:25", + "stars": 5, + "verifiedUser": false + }, + { + "id": "80bedc59-075e-4928-94d6-79be4e02b2c0", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "sharonmcpherson", + "reviewDate": "2021-11-26T08:45:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "610723f8-c045-4c71-9998-f40a4336027a", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "ureyes", + "reviewDate": "2022-03-22T18:51:16", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f84bcbd9-246c-4e9a-a550-c543ffffcdee", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "parkskenneth", + "reviewDate": "2022-01-22T19:20:58", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Pro (Silver)", + "description": "This Awesome Keyboard Pro (Silver) is an amazing device that takes up an amazing amount of space. It is as powerful as a standard keyboard, which is true of other keyboards, but there are still some minor", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-06-05T05:13:50", + "price": 1060.59, + "stock": 13, + "priceHistory": [ + { + "priceDate": "2021-01-16T18:06:43", + "newPrice": 1067.31 + }, + { + "priceDate": "2022-11-18T18:06:43", + "newPrice": 994.72 + }, + { + "priceDate": "2024-04-05T18:06:43", + "newPrice": 1060.59 + } + ] + }, + { + "id": "6c62b0a3-9825-4487-80b5-a856d405c248", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer36", + "reviewDate": "2021-01-16T18:06:43", + "stars": 5, + "verifiedUser": true + }, + { + "id": "3d956511-5d21-42a1-84c2-ebc75ec0eb82", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinezrobert", + "reviewDate": "2022-10-15T15:08:22", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6530bd4f-a6e2-41e2-8880-f4ef302df820", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholseugene", + "reviewDate": "2022-11-18T23:48:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b409dc4a-58f0-406e-8c6f-05d9a98e9fbb", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "seanmaxwell", + "reviewDate": "2022-08-22T02:05:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f30e154e-a47f-4e73-a2f2-28ac33c021f5", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "glennlauren", + "reviewDate": "2022-04-19T20:11:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8a7db235-806b-4ca2-aef6-e21633ae05cd", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dayronald", + "reviewDate": "2022-10-10T03:47:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9959b8ff-d6dd-4ecc-94ca-514f4fd0b3e2", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harrisalyssa", + "reviewDate": "2022-03-29T19:19:56", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f1439007-3cc6-4ba9-b9ab-9885e96c68b6", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholasnelson", + "reviewDate": "2022-06-07T06:07:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5298df03-388a-4f2f-a34b-653f93ed4f38", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sheena04", + "reviewDate": "2021-10-10T02:45:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7dfaba6b-3aad-4af9-8106-c545d263084f", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "spenceantonio", + "reviewDate": "2021-05-12T04:03:18", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7f2c78c3-ee25-4ca6-b923-d0e868d9b4f5", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scott83", + "reviewDate": "2022-02-24T18:46:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "99637f44-7ffe-4777-b93a-8c8fa4355752", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "darrell05", + "reviewDate": "2022-07-09T06:50:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8ce6674e-b324-4633-a79b-cb74d26025fe", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tfrye", + "reviewDate": "2021-09-02T05:18:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "afba8093-cbc1-4910-8755-dd0662417eb0", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "levycrystal", + "reviewDate": "2021-09-05T06:30:15", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f48433bc-671b-45b7-9da2-ad8993459d38", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sarahconway", + "reviewDate": "2022-10-13T00:44:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e3acd63e-561b-431c-9b83-009c913f7f60", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patriciagonzalez", + "reviewDate": "2021-04-28T03:18:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Red)", + "description": "This Premium Computer Super (Red) is very similar to that offered for a high price from $25.99 at this site in Europe. A lot of money", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-12-05T06:40:10", + "price": 1082.96, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-01-05T18:12:08", + "newPrice": 976.09 + }, + { + "priceDate": "2021-12-09T18:12:08", + "newPrice": 1187.88 + }, + { + "priceDate": "2022-11-12T18:12:08", + "newPrice": 1021.19 + }, + { + "priceDate": "2023-09-27T18:12:08", + "newPrice": 1082.96 + } + ] + }, + { + "id": "b3dbfcfc-7434-4374-82ca-b55334b931e1", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "coxtamara", + "reviewDate": "2021-11-04T09:29:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "84fa9eac-36e0-4bb3-af5c-5ad66a374505", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "sylvia07", + "reviewDate": "2021-05-21T18:09:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4a8a1290-2de0-4758-82dd-ff882780f0b8", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "wsuarez", + "reviewDate": "2022-01-02T06:06:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0c668e05-3eb4-4c4c-a704-5dbda31535cb", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "harperdaniel", + "reviewDate": "2021-03-29T10:15:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a39c4fc9-fcf1-40fb-9669-118326b72c1d", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "randalljustin", + "reviewDate": "2021-01-05T18:12:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aa4a6481-4de7-431b-9c1b-e801c09b891f", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebecca36", + "reviewDate": "2021-08-14T05:02:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8e07cedd-d03a-40a5-85f9-18bcdb955142", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "nancy00", + "reviewDate": "2022-03-22T12:38:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f55e4d16-e992-48ba-b833-93d519b6f0f1", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "james08", + "reviewDate": "2022-03-27T16:37:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "265743ba-ba91-4a30-929b-7210576e955e", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "jose57", + "reviewDate": "2021-07-17T08:15:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b5c6aa76-6ce8-469a-bf08-43ee1e701f05", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "wmoore", + "reviewDate": "2022-11-14T11:38:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Micro (Black)", + "description": "This Premium Phone Micro (Black) is a beautiful, bright, and affordable smartphone. It's a good phone that can replace or improve your phone as well in terms of features and display.\n\nThe Plus 5 Premium Phone has a premium build quality. The 4 channels of music, podcasts, and video playback capabilities make a really attractive and easy to use phone.\n\nIn this case", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-01-13T06:11:59", + "price": 137.37, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-01-10T22:31:11", + "newPrice": 148.96 + }, + { + "priceDate": "2024-11-30T22:31:11", + "newPrice": 137.37 + } + ] + }, + { + "id": "378af4a2-1987-443e-a4d5-3028a3b78f21", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "charlesward", + "reviewDate": "2021-01-10T22:31:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "155fc934-b35a-47e3-b1b5-3cc085c03ac1", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonespatrick", + "reviewDate": "2021-06-28T14:45:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0a53e750-37d8-44d1-a846-5780f10dce98", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "brenda55", + "reviewDate": "2021-07-03T22:21:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4123e3c4-8440-4916-a212-54ba452d248b", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "richardgreen", + "reviewDate": "2022-06-12T10:09:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d9b112a6-df64-4589-af40-915330ff81da", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "moraleskevin", + "reviewDate": "2022-11-05T03:59:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c8cee79a-3818-4f71-a7bb-bebe93a0b151", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaronsmith", + "reviewDate": "2021-09-28T12:45:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cf97a335-a74a-4179-93fd-a499a57e6a89", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "wmaxwell", + "reviewDate": "2022-02-03T16:42:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "58fccee0-3085-4a1f-af22-44d8fdc1943d", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "vrodriguez", + "reviewDate": "2021-03-08T11:31:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f1d0d73c-f7bc-4ab5-a8b5-a3f70790b7f9", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacob71", + "reviewDate": "2022-10-31T04:32:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1ff9bff4-21f0-4780-902f-7c0b9413069c", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "drivera", + "reviewDate": "2022-10-30T16:11:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a67f0a51-0123-4716-87b6-6f405f332c70", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Ultra (Gold)", + "description": "This Premium Phone Ultra (Gold) is one of the few phones to feature Apple's unique high-end design style. The design of the Ultra Phone is reminiscent of the Apple Watch and offers a great looking display with plenty of space for accessories or use where you like, and the watch offers 3G as well as Wi-Fi. The watch looks and feels great on the watch, and if you", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-10T00:45:38", + "price": 389.78, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-26T09:58:54", + "newPrice": 357.24 + }, + { + "priceDate": "2022-01-11T09:58:54", + "newPrice": 395.35 + }, + { + "priceDate": "2022-12-27T09:58:54", + "newPrice": 354.65 + }, + { + "priceDate": "2025-04-23T09:58:54", + "newPrice": 389.78 + } + ] + }, + { + "id": "753676f9-5615-4376-b3fc-58ab39133d32", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "sherry36", + "reviewDate": "2021-03-06T15:34:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "46aab600-e4f5-4d45-9541-44dee09b4720", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda38", + "reviewDate": "2021-10-01T23:04:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "760cc72a-3452-474d-ab68-64693c2c5650", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbaldwin", + "reviewDate": "2022-03-05T20:42:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e98ca14f-b8b7-4ee9-814c-a68079b86b75", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "eharris", + "reviewDate": "2021-12-24T10:42:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "469ded99-e917-4ef9-b2d8-22f4bb9088e3", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "schavez", + "reviewDate": "2022-05-29T00:29:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "715c6ed0-f88b-40b9-bdbc-c06bfd677ac4", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "john63", + "reviewDate": "2022-07-09T05:08:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f773318b-c73c-4edf-ba47-27f3ffbdd0b8", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "xcrawford", + "reviewDate": "2022-05-20T16:27:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "58058a64-5b65-490e-9055-084232b4bc53", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "lynchjames", + "reviewDate": "2021-04-19T07:13:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "22a5806c-41d5-40e4-8cc6-b482b850b1f2", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "moralesjason", + "reviewDate": "2021-05-19T12:15:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "506d9749-2818-400a-9637-2084a244f45c", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "yproctor", + "reviewDate": "2021-07-26T20:01:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "839a16cb-ceaa-4966-add6-015392c94282", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "hwatson", + "reviewDate": "2021-01-26T09:58:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d349f9d8-7213-49b3-bb16-e9283517a175", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "erin31", + "reviewDate": "2022-12-28T09:26:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse + (Steel)", + "description": "This Amazing Mouse + (Steel) is a full-color hardcover novel based on the popular comic by William Rufus, based on his adventures at the Sea of Galilee. The story centers on a beautiful young man on a short time travel trip. His travels were a pleasure. However, for various reasons, he was separated from his", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-06-03T11:24:35", + "price": 755.41, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-05-31T20:15:02", + "newPrice": 804.0 + }, + { + "priceDate": "2021-10-05T20:15:02", + "newPrice": 801.16 + }, + { + "priceDate": "2022-02-09T20:15:02", + "newPrice": 774.02 + }, + { + "priceDate": "2022-06-16T20:15:02", + "newPrice": 746.42 + }, + { + "priceDate": "2022-10-21T20:15:02", + "newPrice": 819.5 + }, + { + "priceDate": "2023-11-10T20:15:02", + "newPrice": 755.41 + } + ] + }, + { + "id": "f7679727-4d96-4af0-9d18-7333807cf1ca", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vincentnorris", + "reviewDate": "2021-07-24T18:30:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e1bc0310-30da-4ffd-b1ba-8e4e0169d8e6", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher53", + "reviewDate": "2021-11-19T23:19:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d719eabe-fc38-42b0-b274-cca6623c03c0", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "heidi79", + "reviewDate": "2022-10-24T19:25:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "436f347e-7d78-4268-b06d-0f75302ed41c", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardbriggs", + "reviewDate": "2021-09-26T12:52:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "34dadf0c-fd7a-43e8-90e1-e604cbc89c24", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "moorechelsey", + "reviewDate": "2022-04-23T10:43:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3c843f37-cbbd-4dfa-a596-99238f722173", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ljenkins", + "reviewDate": "2021-08-27T22:58:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cc789d1e-6dce-4409-847f-56b1d7936b1e", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gamblevanessa", + "reviewDate": "2021-05-31T20:15:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4953b595-138c-4ce0-925b-c76bedb9117e", + "productId": "4953b595-138c-4ce0-925b-c76bedb9117e", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Ultra (Steel)", + "description": "This Awesome Mouse Ultra (Steel) is one of our all-time favorite toys that we buy and like. Whether you don't like it, it's a perfect gift. The mouse's unique design allows you to move your mouse around freely when you are looking at its back. The Mouse Ultra also includes a large 3D cursor that allows you to scroll. (3D cursor technology offers a much higher level of precision, so it would be easier to control the mouse with the right mouse click", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-05-10T03:19:32", + "price": 311.88, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2018-05-10T03:19:32", + "newPrice": 314.92 + }, + { + "priceDate": "2022-01-02T03:19:32", + "newPrice": 319.55 + }, + { + "priceDate": "2025-08-27T03:19:32", + "newPrice": 342.59 + }, + { + "priceDate": "2025-08-28T03:19:32", + "newPrice": 311.88 + } + ] + }, + { + "id": "55057b76-812d-4a37-ba9e-36d6f0019165", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer + (Silver)", + "description": "This Luxe Computer + (Silver) is for sale, only available for one lucky buyer, to support the Kickstarter campaign and help us make this a reality. This will be our best reward yet! Please enter the code SEQUENCE10 after you receive your voucher!\n", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-03-18T15:28:10", + "price": 160.11, + "stock": 90, + "priceHistory": [ + { + "priceDate": "2021-02-16T11:28:14", + "newPrice": 145.8 + }, + { + "priceDate": "2022-01-23T11:28:14", + "newPrice": 165.07 + }, + { + "priceDate": "2022-12-30T11:28:14", + "newPrice": 144.37 + }, + { + "priceDate": "2025-04-13T11:28:14", + "newPrice": 160.11 + } + ] + }, + { + "id": "b5cdd84f-d835-42a1-9e0a-daaf224a8f0d", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "monique36", + "reviewDate": "2022-06-02T07:08:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ed4bc744-8d58-47af-bd69-a1f152078bcb", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaeladrake", + "reviewDate": "2022-07-26T01:09:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "afec6131-9e2b-40cd-a4dc-3b62534b18c1", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "gpeters", + "reviewDate": "2021-02-16T11:28:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "af7c067c-c613-499c-8267-cab2342bc4d6", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "susan27", + "reviewDate": "2022-06-23T13:39:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2088a67e-c52c-4611-9003-c11840c82597", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "wallacekatie", + "reviewDate": "2022-11-08T11:58:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "49c8f5fd-c1f2-4ba5-94a0-8474fb757ec3", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael71", + "reviewDate": "2022-11-08T11:22:37", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d9d1fc70-8bd0-4d37-af01-dbad5b3e3229", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "cooperangela", + "reviewDate": "2022-12-30T15:51:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "de7f213a-3be8-4cec-a53f-866566afc49f", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "elliotttodd", + "reviewDate": "2021-04-21T03:40:53", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f99ee16a-99ea-40a1-8abe-0a814da78071", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "allenfowler", + "reviewDate": "2022-09-10T04:55:49", + "stars": 5, + "verifiedUser": true + }, + { + "id": "40793ce6-a3ff-443c-8f58-933f01c55512", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "nporter", + "reviewDate": "2022-01-22T08:09:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "41ac3c78-927e-48a2-8fbd-1c9464f9eaae", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbrown", + "reviewDate": "2021-07-27T06:00:26", + "stars": 5, + "verifiedUser": false + }, + { + "id": "72c0fbd3-d848-45b6-8be4-114c764f48fc", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "eric18", + "reviewDate": "2021-06-07T20:25:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "21088234-be65-4a0f-88fb-022991d9349e", + "productId": "21088234-be65-4a0f-88fb-022991d9349e", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer + (Black)", + "description": "This Amazing Computer + (Black) is the first interactive TV show about the world's first quantum computer, created as one part of the first experiments at the MIT Physical Review in 1994. It has a full 4.8 billion units of computing power, with 1.6 teraflops of memory, and uses computer-sensing detectors", + "countryOfOrigin": "France", + "rareItem": true, + "firstAvailable": "2018-07-27T04:20:48", + "price": 455.38, + "stock": 31, + "priceHistory": [ + { + "priceDate": "2018-07-27T04:20:48", + "newPrice": 483.79 + }, + { + "priceDate": "2022-02-10T04:20:48", + "newPrice": 466.84 + }, + { + "priceDate": "2025-08-27T04:20:48", + "newPrice": 489.87 + }, + { + "priceDate": "2025-08-28T04:20:48", + "newPrice": 455.38 + } + ] + }, + { + "id": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Ultra (Black)", + "description": "This Basic Speaker Ultra (Black) is the ultimate gift for a beginner. The ultra speaker package is complete with a fully padded backplate, four front side buttons and four removable front earcups. The speaker is comfortable inside the ear", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-11-25T01:44:51", + "price": 997.18, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-02-21T01:34:24", + "newPrice": 1001.31 + }, + { + "priceDate": "2021-10-02T01:34:24", + "newPrice": 1032.68 + }, + { + "priceDate": "2022-05-13T01:34:24", + "newPrice": 1071.51 + }, + { + "priceDate": "2022-12-22T01:34:24", + "newPrice": 1034.38 + }, + { + "priceDate": "2024-03-04T01:34:24", + "newPrice": 997.18 + } + ] + }, + { + "id": "c06f19ff-ffa2-4e1d-a6e7-5b479e2c6724", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "amberchandler", + "reviewDate": "2022-06-05T17:08:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "84cb353e-824d-42fa-a670-96c3c43bcb19", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "christophersmith", + "reviewDate": "2022-12-23T12:03:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7d087d4e-cf54-40c5-88a0-3dad26467d7d", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "gina14", + "reviewDate": "2021-09-04T16:53:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "afaa4f23-9092-411e-97a6-264b4c557108", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "brianna94", + "reviewDate": "2021-04-13T12:59:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2290b1a2-51b8-4a25-b625-97f7657ea6b5", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "marshallstephen", + "reviewDate": "2022-06-22T07:55:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c96ed293-3b01-42c3-aa81-cd49ce779b5e", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "rcarter", + "reviewDate": "2021-11-19T02:01:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1efecd74-33fe-49dc-a53b-fcc9d3f1c001", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "bonnie31", + "reviewDate": "2022-01-11T08:49:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "06f4edb5-65d3-4da4-9890-ad92ba1c0226", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "lewistom", + "reviewDate": "2022-03-11T08:32:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d29bfdd4-7fca-43b1-a2df-7d50f213858d", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "pturner", + "reviewDate": "2022-06-23T05:54:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "46f383be-b29f-4eed-991a-61e71f649bab", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "tararichards", + "reviewDate": "2021-03-02T15:51:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4b862f6a-5cc3-494b-8669-9e4e23a1cf95", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "karen66", + "reviewDate": "2021-03-20T23:29:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "861ed875-7521-4532-98a3-abd48148cbad", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "phillip05", + "reviewDate": "2021-02-21T01:34:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0e4e554d-5f42-4356-b004-8d874f1b7fa8", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonheather", + "reviewDate": "2022-12-20T04:24:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "product", + "name": "Basic Filter Mini (Black)", + "description": "This Basic Filter Mini (Black) is the perfect for all your Android smartphone cases and accessories!\n\nThis Basic Filter Mini will work with any number of Android smartphones that feature a 'Smartphone Cover,' with the following settings, to enable Android 3.1.2 Jelly Bean.\n\nThe Android 4.4.", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-06-28T06:36:48", + "price": 543.0, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-02-14T14:57:35", + "newPrice": 500.3 + }, + { + "priceDate": "2022-12-25T14:57:35", + "newPrice": 508.76 + }, + { + "priceDate": "2025-03-06T14:57:35", + "newPrice": 543.0 + } + ] + }, + { + "id": "31059aa3-f78c-434c-b7ac-099cf0f30cca", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "loganburgess", + "reviewDate": "2021-10-02T18:03:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "17e89924-ab46-429f-a6ad-e4ee49c92800", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "krandolph", + "reviewDate": "2021-07-09T14:53:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f183c0b8-f8b3-46c3-aa69-a19c125fb1ef", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "dennis39", + "reviewDate": "2021-05-10T13:47:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "de56769e-e18b-43ec-89c5-bfcda74256e9", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "josephsalazar", + "reviewDate": "2022-06-22T15:02:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "45230d05-5df7-423a-8cf4-41c8e2fb2668", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "oliverlarry", + "reviewDate": "2022-03-11T08:14:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6de89e6c-c608-470d-baf5-1e4303429140", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "myersgregg", + "reviewDate": "2022-05-11T22:40:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7e046898-d9cd-4b3b-882d-62f520660168", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "jessica43", + "reviewDate": "2021-12-11T14:34:05", + "stars": 4, + "verifiedUser": false + }, + { + "id": "77bee4ea-96c8-4830-9d98-a0921bbbbbcd", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "briangallagher", + "reviewDate": "2021-03-16T16:39:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0579457b-0a15-4db4-b373-018396f7acac", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "susan93", + "reviewDate": "2022-08-12T09:09:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "041a36ca-0120-42f3-9596-536401036d03", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "anthonypatton", + "reviewDate": "2021-10-14T17:34:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9dfbfcec-d759-448b-9903-bea59f57359a", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "xfarmer", + "reviewDate": "2021-07-03T20:36:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b4904149-b259-4903-b8a2-c6ee73d6a16d", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "joanharris", + "reviewDate": "2022-06-13T13:01:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "761692e4-6daf-4ce4-aba6-65bf79f7010d", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "davidbridges", + "reviewDate": "2022-12-11T12:17:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "06be25f2-dec3-484a-a2f9-b21029aa12dc", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "andersonadrian", + "reviewDate": "2022-12-26T05:57:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "88d6090f-240a-4747-814d-188a51eb3032", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "wmolina", + "reviewDate": "2021-03-23T02:04:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5e9295d8-4505-4d72-81dc-5f8cd60bafaf", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "jwatson", + "reviewDate": "2022-03-22T23:49:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "472b062c-a83e-4489-9dd0-320f1e20f7b4", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "qthomas", + "reviewDate": "2021-12-15T11:14:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "52aa712f-8d0d-452e-919d-afa00a3a3820", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "wesleylopez", + "reviewDate": "2021-06-22T21:22:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5e9f4a18-42fa-4dea-b57c-05bce25b8a52", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "tharrison", + "reviewDate": "2021-02-14T14:57:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e0c6c2ba-1074-46f9-b3b7-b0fef033a34f", + "productId": "e0c6c2ba-1074-46f9-b3b7-b0fef033a34f", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Micro (Red)", + "description": "This Luxe Computer Micro (Red) is an elegant and simple computer with a very simple interface. Not only does it have a standard LCD display, but also has an external", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-05-28T06:38:17", + "price": 551.61, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2021-04-21T20:54:49", + "newPrice": 540.09 + }, + { + "priceDate": "2021-04-22T20:54:49", + "newPrice": 577.55 + }, + { + "priceDate": "2021-04-23T20:54:49", + "newPrice": 557.98 + }, + { + "priceDate": "2021-04-24T20:54:49", + "newPrice": 553.39 + }, + { + "priceDate": "2021-04-25T20:54:49", + "newPrice": 566.02 + }, + { + "priceDate": "2021-11-29T20:54:49", + "newPrice": 551.61 + } + ] + }, + { + "id": "a728c5ba-f5cc-49d7-ba47-54ddea5d2353", + "productId": "e0c6c2ba-1074-46f9-b3b7-b0fef033a34f", + "category": "Electronics", + "docType": "customerRating", + "userName": "boylekimberly", + "reviewDate": "2021-04-21T20:54:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b160ee54-a26d-439c-bdbb-a2156da9abe6", + "productId": "b160ee54-a26d-439c-bdbb-a2156da9abe6", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Mini (Silver)", + "description": "This Basic Keyboard Mini (Silver) is still available in the U.S. You can check the price on the original launch pages at the links below.\n\n\nHere's the", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-06-25T17:44:44", + "price": 522.46, + "stock": 89, + "priceHistory": [ + { + "priceDate": "2021-01-17T14:26:03", + "newPrice": 518.65 + }, + { + "priceDate": "2021-06-16T14:26:03", + "newPrice": 537.73 + }, + { + "priceDate": "2024-05-02T14:26:03", + "newPrice": 522.46 + } + ] + }, + { + "id": "4ce37fc9-2dae-4ff5-9cda-154241761a90", + "productId": "b160ee54-a26d-439c-bdbb-a2156da9abe6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hamptonjames", + "reviewDate": "2021-06-16T19:18:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "664b2c71-f451-4689-9ec6-f1146eb6c926", + "productId": "b160ee54-a26d-439c-bdbb-a2156da9abe6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hamiltonshelley", + "reviewDate": "2021-01-17T14:26:03", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Mini (Red)", + "description": "This Premium Mouse Mini (Red) is a fully customizable version of the famous mouse that we love so much. This product comes with full screen graphics and 3D audio! The mini comes with a built-in microphone and Bluetooth 5.0 (Bluetooth 4.2+)", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-10-11T05:44:47", + "price": 278.88, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-07-08T01:13:27", + "newPrice": 269.07 + }, + { + "priceDate": "2022-01-25T01:13:27", + "newPrice": 287.17 + }, + { + "priceDate": "2022-08-14T01:13:27", + "newPrice": 290.67 + }, + { + "priceDate": "2023-03-11T01:13:27", + "newPrice": 278.88 + } + ] + }, + { + "id": "f97f4f6d-ea60-4129-8de5-09dad107d143", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nathan68", + "reviewDate": "2021-07-08T01:13:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ebebc689-0d86-4263-8c28-5e8db5430343", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pattersoncharles", + "reviewDate": "2021-07-22T22:24:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d595ab62-eaf3-4005-a724-a57c76c6d7e5", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rogerskevin", + "reviewDate": "2022-08-15T11:56:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8283d4d4-b68f-4531-9aab-d56680f90572", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertbarnes", + "reviewDate": "2022-03-26T15:50:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5d9f103b-c29e-41cb-8573-f6cd1b30e4d3", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amber54", + "reviewDate": "2021-09-26T19:21:33", + "stars": 5, + "verifiedUser": true + }, + { + "id": "60f4a95c-70a1-487b-9903-debb5c551914", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Pro (Silver)", + "description": "This Luxe Filter Pro (Silver) is compatible with your Windows 8.1 or Windows 10 PC operating system with a single or multiple layers of anti-virus protection, and the entire effect in one smooth motion. The filter includes two filters", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-06-03T21:22:57", + "price": 1012.25, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-02-24T03:23:34", + "newPrice": 1066.74 + }, + { + "priceDate": "2022-10-08T03:23:34", + "newPrice": 921.41 + }, + { + "priceDate": "2024-05-08T03:23:34", + "newPrice": 1012.25 + } + ] + }, + { + "id": "111190c9-7ca9-472a-80de-c097e5c8d3f9", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "travismitchell", + "reviewDate": "2021-03-08T05:59:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "81dd620c-a4a6-45b5-89f5-b6d78a3fcd77", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "erinmoore", + "reviewDate": "2021-11-30T20:32:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8279acee-8c19-4f4d-a19a-555ba7ddf870", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "mrichardson", + "reviewDate": "2021-02-27T09:35:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1ca95efd-725d-4dee-941c-c4b5630bac0f", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "graveslaura", + "reviewDate": "2022-10-09T01:39:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1345a6ea-76cb-494c-b608-6116badf83ea", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "amanda85", + "reviewDate": "2021-02-24T03:23:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dc9c3c20-27d4-474b-b54d-995800b8737f", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "padillakristie", + "reviewDate": "2022-09-17T08:33:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "17f8eb69-d836-447c-80dc-db16396b4216", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "xwade", + "reviewDate": "2022-05-01T09:24:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1173c360-0adb-4bd0-a213-f7daddd2b388", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "danielrussell", + "reviewDate": "2022-08-23T09:07:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "322a9e6f-68ff-4695-bfe7-4555a6560a79", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "victoria78", + "reviewDate": "2021-11-22T11:58:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6131f9c1-cba7-4740-acbc-dfd93c0a9420", + "productId": "6131f9c1-cba7-4740-acbc-dfd93c0a9420", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Mini (Gold)", + "description": "This Amazing Stand Mini (Gold) is so good, it's so freaking long I had to change it in half. The best part of this is", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-01-09T04:24:25", + "price": 541.88, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2022-03-13T03:25:20", + "newPrice": 554.86 + }, + { + "priceDate": "2022-03-14T03:25:20", + "newPrice": 548.12 + }, + { + "priceDate": "2022-03-15T03:25:20", + "newPrice": 577.13 + }, + { + "priceDate": "2023-09-05T03:25:20", + "newPrice": 541.88 + } + ] + }, + { + "id": "7ac34222-f799-43ef-8343-5630262f66f3", + "productId": "6131f9c1-cba7-4740-acbc-dfd93c0a9420", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael08", + "reviewDate": "2022-03-13T03:25:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Super (Steel)", + "description": "This Amazing Computer Super (Steel) is a computer based on a computer, a very important type of computing power. The computer has all kinds of special features and capabilities, however its main advantage is its huge power.\n\nThe Computer and It's Technology\n\nAll three are very important, and it is very important that this Computer (", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-04-06T20:35:49", + "price": 938.01, + "stock": 43, + "priceHistory": [ + { + "priceDate": "2021-01-10T13:09:19", + "newPrice": 864.64 + }, + { + "priceDate": "2025-08-16T13:09:19", + "newPrice": 938.01 + } + ] + }, + { + "id": "2c937ed6-149c-4ba4-8be7-b69de7cffd78", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanieschmidt", + "reviewDate": "2022-11-29T23:25:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f46c560c-6579-4b2d-a152-f6d69b116348", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandonmcbride", + "reviewDate": "2021-04-23T05:38:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "78fc2d4e-bcc1-4350-ab01-ab5dccce011d", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleygutierrez", + "reviewDate": "2021-01-10T13:09:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c49988d9-9ec0-4b67-877e-fc34496b7ab5", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "cnunez", + "reviewDate": "2022-02-01T19:32:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4a5160c9-163a-4664-bda1-674b070a6f7a", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "rothsarah", + "reviewDate": "2022-10-20T19:13:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "product", + "name": "Awesome Filter 3000 (Steel)", + "description": "This Awesome Filter 3000 (Steel) is rated 4.6 out of 5 by 38.\n\nRated 5 out of 5 by Dandy from My new filter is so quick to use Bought this filter in conjunction with the new R-Filter 1000D. I use this filter on my main dishwasher and use it to clean dishes on a regular basis. It's also extremely clean. It works on clean dishes in just 15 minutes. My dishwasher", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-10-31T04:38:27", + "price": 164.93, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-03-18T21:22:17", + "newPrice": 159.3 + }, + { + "priceDate": "2021-11-30T21:22:17", + "newPrice": 162.09 + }, + { + "priceDate": "2022-08-14T21:22:17", + "newPrice": 155.36 + }, + { + "priceDate": "2024-03-09T21:22:17", + "newPrice": 164.93 + } + ] + }, + { + "id": "e6177902-9aa3-4536-be58-22f1c0f580ab", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "alexanderhoffman", + "reviewDate": "2021-03-18T21:22:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d1e9c91f-7ff0-4d3d-87c7-686aaccbbccd", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "larsonamanda", + "reviewDate": "2021-09-03T11:26:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "db2b296e-cb35-482a-8b20-7b3ed302ff31", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "scain", + "reviewDate": "2021-08-06T08:01:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "011b005c-90d9-4574-897a-fac6048111cf", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "tbartlett", + "reviewDate": "2021-08-23T13:40:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c82f02bd-639b-47b9-95f5-9825854a971f", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "courtney95", + "reviewDate": "2021-05-01T02:02:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "35f436a8-e597-4bcd-87c2-8c3ea7146c7d", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "leemegan", + "reviewDate": "2022-08-16T14:25:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Super (Black)", + "description": "This Amazing Speaker Super (Black) is the ultimate acoustic bass guitar instrument with impressive sound quality. The Black 3-string is perfect for bass players with", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-06-30T09:49:27", + "price": 1079.26, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-01-22T16:47:32", + "newPrice": 1106.34 + }, + { + "priceDate": "2021-08-29T16:47:32", + "newPrice": 996.79 + }, + { + "priceDate": "2022-04-05T16:47:32", + "newPrice": 1154.39 + }, + { + "priceDate": "2022-11-10T16:47:32", + "newPrice": 1143.92 + }, + { + "priceDate": "2024-02-16T16:47:32", + "newPrice": 1079.26 + } + ] + }, + { + "id": "b397557c-1fd2-4570-89d5-59da05ec1bbe", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "aaustin", + "reviewDate": "2021-09-13T21:57:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7b02592e-e6c5-4dd5-809a-ee5eb0da04d3", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "jdavis", + "reviewDate": "2021-07-12T19:45:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "be1f6cf6-f9f4-4649-ae81-da96baa3dbc9", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "amanda04", + "reviewDate": "2021-01-22T16:47:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cc46dfe4-f170-435b-be7e-f1f210f841de", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "xmcintosh", + "reviewDate": "2022-02-10T05:03:35", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3ee3b78a-5a84-49c5-91cc-0b0ff50f27f1", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "bcook", + "reviewDate": "2021-11-10T15:16:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "153063ec-2c3d-45b0-90ea-d4caaf52d591", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "melaniesilva", + "reviewDate": "2022-10-22T16:52:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bbfef0b2-d4f4-4020-a4fe-05b561a62f1b", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "duranjason", + "reviewDate": "2022-11-11T03:16:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9e63e277-0179-44ca-92b0-74e28ad9978e", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "sophiaibarra", + "reviewDate": "2021-12-02T23:43:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8d0ba80a-666d-40f1-84c5-b27cea8f5026", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "davidpowell", + "reviewDate": "2021-06-01T21:28:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ec5e8c10-d205-4acc-8a05-6308897009af", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "xblanchard", + "reviewDate": "2022-03-06T10:23:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "07fa0cbe-5d5f-4adf-afe4-76a5d654b937", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "janetdennis", + "reviewDate": "2021-08-26T21:38:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7b648d4d-2529-4704-837a-cb2f12def0c0", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "nathan18", + "reviewDate": "2021-04-09T10:59:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "09b74234-79c2-431c-9584-add501925e12", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "joan14", + "reviewDate": "2022-07-03T07:34:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "83e63fe1-55da-41b0-b061-464c08893b86", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Mini (Gold)", + "description": "This Premium Mouse Mini (Gold) is another affordable Mini. You get a mouse that you can easily install onto any of your computers. It comes with an integrated mousepad and a wireless", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-08-04T20:20:52", + "price": 1027.79, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-02-14T00:37:12", + "newPrice": 1074.03 + }, + { + "priceDate": "2021-07-27T00:37:12", + "newPrice": 989.87 + }, + { + "priceDate": "2022-01-06T00:37:12", + "newPrice": 1035.17 + }, + { + "priceDate": "2022-06-18T00:37:12", + "newPrice": 967.82 + }, + { + "priceDate": "2022-11-28T00:37:12", + "newPrice": 1065.92 + }, + { + "priceDate": "2025-07-05T00:37:12", + "newPrice": 1027.79 + } + ] + }, + { + "id": "2a89d766-e14a-4735-8f38-c4e3d2aa28a9", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nrobinson", + "reviewDate": "2022-11-07T04:47:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "94517121-cc53-4053-8a78-c09d421c995d", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessica33", + "reviewDate": "2021-12-23T02:16:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "51570dc8-dd20-4fe4-b140-e9f4e3daf9ef", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dixonmike", + "reviewDate": "2022-10-20T13:36:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "49262e37-8457-422a-85bb-a840a5029be8", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "meganhernandez", + "reviewDate": "2021-07-31T22:13:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "373abe15-fbbc-4379-b381-f12b9a4aef46", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alexanderhernandez", + "reviewDate": "2022-11-29T18:43:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a1945ecc-4182-4c09-b076-7b1c103961a5", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachelfrazier", + "reviewDate": "2021-10-09T18:20:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1a330aa2-eb95-4638-a93b-cd4da6f31490", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "debra66", + "reviewDate": "2021-09-18T03:23:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fc1cea6c-3c75-4f63-812b-4d30f2b306a4", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "isantana", + "reviewDate": "2021-02-14T00:37:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea363f3c-a846-4ede-b4b3-b82fac99fb63", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "walkerleonard", + "reviewDate": "2021-05-20T20:37:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "53a0ceb9-ca5f-4b3b-b06a-baa66a5041b1", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "halenicole", + "reviewDate": "2022-07-02T12:15:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f8dc55ac-8452-4843-81dd-b7af0f23a2bc", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nancy31", + "reviewDate": "2021-04-17T19:08:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse 3000 (Red)", + "description": "This Awesome Mouse 3000 (Red) is amazing for this build. While the Mouse is very quiet, it is also the quietest in the build. If I did this 3 times and 2 more, I", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-02-13T05:49:33", + "price": 877.79, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-01-05T19:14:27", + "newPrice": 930.29 + }, + { + "priceDate": "2022-01-26T19:14:27", + "newPrice": 877.79 + } + ] + }, + { + "id": "c7adcfa1-eee7-4fba-b53a-313c938091ee", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aprilsavage", + "reviewDate": "2021-01-21T17:55:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5838df24-0265-43a0-ac61-be4248a5fa92", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "penningtonjose", + "reviewDate": "2021-11-26T20:49:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5db147cb-d3d2-48cf-9595-93a864616a67", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "heather39", + "reviewDate": "2021-01-05T19:14:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b990d72a-2fc1-4989-953d-69ff932fbe15", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kgibson", + "reviewDate": "2021-06-15T03:57:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2c06ba9f-c241-4b31-a8fe-a68c1cf7e750", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hmarsh", + "reviewDate": "2021-07-07T00:24:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0321a3d9-5e2b-40c1-b8a5-a024e62fe9ab", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tammytrujillo", + "reviewDate": "2021-09-24T01:19:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d2347210-15e9-4bec-b635-7ffd62fb7a5c", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gregorywilson", + "reviewDate": "2021-04-22T01:31:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "90078ab1-9c2b-4c61-8cca-60c62b0f407d", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erica64", + "reviewDate": "2021-12-02T19:42:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "28d4f841-372e-4a04-a257-9cef2972e34d", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "william24", + "reviewDate": "2021-06-22T07:56:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a0fa4f7a-50be-454f-997e-ecc2f35ce752", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tiffanypearson", + "reviewDate": "2021-06-15T04:34:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7d61d3c2-c4a9-4772-9be4-a055bd539794", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "khunt", + "reviewDate": "2021-11-13T05:49:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bebfbbef-8184-4d2b-9044-275da80e972e", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pmcmillan", + "reviewDate": "2021-12-02T07:01:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "76cbc3ca-e644-484e-b61e-ca8f7a633edf", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pwilson", + "reviewDate": "2022-02-25T03:15:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e34ff4c4-c6c4-49c4-a63f-30e171007aa7", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberly62", + "reviewDate": "2022-02-04T05:53:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b36e016-4c26-401e-ba20-e78e74612014", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stacy91", + "reviewDate": "2022-09-28T16:38:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6ffb4498-da66-4dc7-ada5-c181a51cca46", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "newmanstephanie", + "reviewDate": "2022-05-14T20:30:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "product", + "name": "Amazing TV + (Red)", + "description": "This Amazing TV + (Red) is an excellent example of a show that is completely insane. To me this is still one of the best shows on TV. It doesn't make you think it's really that far away from our future, maybe even even in a very short time. But I guess we could add in the ability to have these kinds of TV shows before the TV industry is done as well: the shows that work in our minds.\n\nThis is an", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-01-18T07:13:57", + "price": 115.26, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-05-29T19:24:58", + "newPrice": 111.81 + }, + { + "priceDate": "2021-10-02T19:24:58", + "newPrice": 111.08 + }, + { + "priceDate": "2022-02-05T19:24:58", + "newPrice": 107.0 + }, + { + "priceDate": "2022-06-11T19:24:58", + "newPrice": 119.97 + }, + { + "priceDate": "2022-10-15T19:24:58", + "newPrice": 110.26 + }, + { + "priceDate": "2023-12-14T19:24:58", + "newPrice": 115.26 + } + ] + }, + { + "id": "dd8a1b3d-a8fd-4851-b2bb-59f0cd58470b", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "hobbsbetty", + "reviewDate": "2022-04-24T12:34:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "98b896de-4f01-4f82-8c04-eff2c68b6da0", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "luisross", + "reviewDate": "2021-05-29T19:24:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e5ad5a5b-d598-40d2-9e60-b41bbf87136a", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "debraduran", + "reviewDate": "2021-08-15T11:20:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c25b2231-e51e-43d1-8f2a-c77dcb36ec87", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "williamsrebecca", + "reviewDate": "2021-05-30T16:02:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "39a6855c-65c1-42a0-be58-9eb0b88e683a", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "mibarra", + "reviewDate": "2022-10-14T06:12:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "41d033c9-8d0a-4feb-b419-4c77c6855f64", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "lisanolan", + "reviewDate": "2022-10-19T12:50:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d1b442d9-1b2f-4255-b907-21f14635a4ff", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "jamesbell", + "reviewDate": "2021-10-05T17:20:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6942625d-4a89-45d2-988d-13a24df36d82", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "product", + "name": "Premium TV Super (Steel)", + "description": "This Premium TV Super (Steel) is the world's premier TV super cable channel with more than 24 million homes in the United States and Canada, including all 50 shows that have been on the premium channels, including new episodes like \"The Legend of Korra\", \"Mad Men\" and \"Last Man Standing\". Super Premium's premium cable channel is a global leader in TV shows offering the highest quality content such as comedy, drama, fantasy and", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-02-22T12:57:52", + "price": 991.28, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-05-01T00:16:58", + "newPrice": 958.04 + }, + { + "priceDate": "2022-02-02T00:16:58", + "newPrice": 931.44 + }, + { + "priceDate": "2022-11-06T00:16:58", + "newPrice": 1042.51 + }, + { + "priceDate": "2024-07-09T00:16:58", + "newPrice": 991.28 + } + ] + }, + { + "id": "a905d234-0cde-435e-9037-690922db6a1f", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "dennismelissa", + "reviewDate": "2021-12-29T18:25:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ed8ea8c0-ccde-46e9-b871-58755d2c342f", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "davidsonkatie", + "reviewDate": "2022-10-19T00:06:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bc321210-e8f7-4baa-a8ee-c06de613de02", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "martinezchristina", + "reviewDate": "2021-11-21T15:31:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c56e592b-893e-4796-8664-5843fbea8ab9", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "zimmermanlindsay", + "reviewDate": "2022-10-01T16:16:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a15ec48d-6c66-412c-a8e1-b70cec9dd771", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "olivingston", + "reviewDate": "2021-06-09T23:03:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b9e727e0-c82f-489c-bc0b-db91cb69f8fd", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "tdavis", + "reviewDate": "2022-02-11T03:24:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2dfdd5bf-87af-4fb9-b9be-53dbbc8c5475", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "yholland", + "reviewDate": "2022-11-06T10:28:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bfabbca7-0074-4a36-a114-98285a05972a", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "debra47", + "reviewDate": "2021-07-20T06:01:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "72b29f7b-447b-4fde-be23-f7656b9a1aa0", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "grantedwards", + "reviewDate": "2021-07-07T23:06:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "757e25a2-0075-4b5f-80e6-41267b89efe3", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "juliecardenas", + "reviewDate": "2021-07-24T03:08:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4c39ce2a-37e8-41bc-ac69-22e5611f46ec", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "stevenmorris", + "reviewDate": "2021-10-05T05:07:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0b734ca6-77e2-4d89-acf0-947f212fcf03", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "rodneybrooks", + "reviewDate": "2022-04-19T17:57:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "627e4ba4-1dd4-4bd2-b8c2-8d17e51234e2", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "jo35", + "reviewDate": "2021-10-20T01:40:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "663b04ae-e3c2-4d5a-b66f-804d7dfa0ba1", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "perrybrian", + "reviewDate": "2021-06-03T01:39:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6ab1f983-2e78-40ff-bbed-94271526da2c", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "cooleylinda", + "reviewDate": "2021-05-01T00:16:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "63fad0c2-c1ce-4b26-9b6e-3c8958ed581c", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "hernandezmeghan", + "reviewDate": "2022-09-24T13:12:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fe5d54cc-f04e-45a0-a321-f73f8bc3f275", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "leejohn", + "reviewDate": "2021-06-30T21:41:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone 3000 (Black)", + "description": "This Luxe Phone 3000 (Black) is available in three ways: Black, Black, and White. With its 5.6-inch 720p IPS LCD display and 5MP rear camera, the Luxe phones go beyond any smartphone of its ilk — the phone itself will come set to its specs, a phone that's in fact the envy of the LG.\n\nThe phone's front camera", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-03-24T17:21:21", + "price": 632.75, + "stock": 76, + "priceHistory": [ + { + "priceDate": "2021-01-30T20:22:54", + "newPrice": 648.05 + }, + { + "priceDate": "2022-12-11T20:22:54", + "newPrice": 638.82 + }, + { + "priceDate": "2025-03-20T20:22:54", + "newPrice": 632.75 + } + ] + }, + { + "id": "d6370803-4259-4e2f-9d11-bf7cc506bdd2", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "katherine41", + "reviewDate": "2022-12-11T21:07:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c26be879-9e99-40dc-bc64-c7e69151850b", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "andrealee", + "reviewDate": "2022-06-05T20:20:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0752baac-cf5e-4832-92c5-d2a1f0c0e1b7", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "erinrobinson", + "reviewDate": "2021-12-24T15:14:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "95c68366-18ad-4769-bef3-2bfcc931ba74", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcguiregeorge", + "reviewDate": "2022-02-09T07:07:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f047f4ba-f9a9-42a9-9102-6b0c3dafa6ab", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "grahamsheri", + "reviewDate": "2022-10-15T21:16:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f716fd99-31d0-4c32-87d3-f071c0bf1820", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "tvasquez", + "reviewDate": "2021-08-06T00:31:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "79e93511-533e-47f6-80f5-a1216fbb039f", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "wnelson", + "reviewDate": "2021-08-11T19:34:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4ea71cd8-1ea7-4ab8-b5ca-a7c35477ef28", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "moorerobert", + "reviewDate": "2021-03-12T21:40:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "abe3a136-f851-4f1a-be5c-5d528f017b8d", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonesluis", + "reviewDate": "2022-01-18T23:13:09", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f683a4ab-265d-4cdb-b9fc-4bd7e8d8bf4b", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "ramirezian", + "reviewDate": "2021-02-06T03:56:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "148e8544-fcd6-49ac-9784-4f08604b88d5", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelreynolds", + "reviewDate": "2021-11-01T04:00:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a55ff4ff-f801-477b-9fab-ee233a9d3e47", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "hallmichael", + "reviewDate": "2022-02-10T12:19:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fc399628-b094-489f-bd09-01d6b48567e8", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "villacharles", + "reviewDate": "2022-01-22T18:41:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b205362d-c841-43ad-a0fd-c700bbe276e6", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "nvillegas", + "reviewDate": "2021-06-06T19:31:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a284687-6bb0-4dd7-8fb4-1753b0cb316e", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "rojasbrandon", + "reviewDate": "2021-01-30T20:22:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "product", + "name": "Basic Filter Micro (Steel)", + "description": "This Basic Filter Micro (Steel) is available as an Add-on. You must have the required Adobe Acrobat Reader installed to print this PDF in order to print it. Just click the image or click Create To-Page.", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-11-10T06:29:13", + "price": 547.16, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-02-11T23:52:22", + "newPrice": 554.85 + }, + { + "priceDate": "2021-11-19T23:52:22", + "newPrice": 592.38 + }, + { + "priceDate": "2022-08-27T23:52:22", + "newPrice": 525.77 + }, + { + "priceDate": "2024-01-02T23:52:22", + "newPrice": 547.16 + } + ] + }, + { + "id": "5dd27705-99fc-4b9f-b73c-fbef4361dbdd", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "mcdanieldavid", + "reviewDate": "2021-06-30T10:33:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "15f17fb9-7e6f-4a5c-9c7d-430f7ae6b128", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "cmccormick", + "reviewDate": "2022-04-08T23:50:21", + "stars": 5, + "verifiedUser": true + }, + { + "id": "e8bd54bb-2e8c-46ee-91e4-1c9aa74578ae", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "brian53", + "reviewDate": "2022-04-19T21:23:41", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8ab9e9ea-5c9f-48ca-a2fb-ddeead1c0bdd", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "zeaton", + "reviewDate": "2022-08-28T11:05:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fba1df4a-5741-4192-8327-d9e8308a1b8c", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "jeremiah96", + "reviewDate": "2021-05-31T09:22:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c190605-667c-480e-9baa-7aa0ee91113d", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "christine03", + "reviewDate": "2021-08-16T12:18:18", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f92fcd51-6380-4c4d-9a35-152a88c69cc6", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "zstrickland", + "reviewDate": "2021-05-18T23:45:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f96a26df-3921-4f8f-8830-746bd96e6084", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "franciscoarmstrong", + "reviewDate": "2021-02-11T23:52:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bb7bae0e-828b-45a6-b14d-2c561587fb08", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "greenmichael", + "reviewDate": "2022-06-18T22:32:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1f3d448e-364d-428a-ac3c-73267de65d53", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "gloria85", + "reviewDate": "2022-05-21T23:43:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7b812892-3cdb-44e0-a164-3a6707712a16", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "xewing", + "reviewDate": "2021-09-17T11:00:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4f84c5ec-bc62-49e6-ac64-9b75d5b84ab7", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "turneralexandra", + "reviewDate": "2022-08-11T10:19:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "00d6e81c-305c-4428-867b-14bae95e0b66", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "desireemckee", + "reviewDate": "2022-07-10T15:07:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b24e3649-8669-4fa4-9ea9-add985c19f1e", + "productId": "b24e3649-8669-4fa4-9ea9-add985c19f1e", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Ultra (Silver)", + "description": "This Amazing Stand Ultra (Silver) is made in China and sold worldwide. It is highly polished to excellent color. The stand is durable and easily cleaned. There are many ways to clean the stand, with the addition of water, a few of which will help your hands.\n\n\nThe Ultra is constructed of a stainless steel alloy used as a construction material. This means that the", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-06-14T22:35:29", + "price": 655.42, + "stock": 54, + "priceHistory": [ + { + "priceDate": "2022-03-27T21:29:53", + "newPrice": 720.63 + }, + { + "priceDate": "2022-06-14T21:29:53", + "newPrice": 677.71 + }, + { + "priceDate": "2022-09-01T21:29:53", + "newPrice": 607.48 + }, + { + "priceDate": "2023-09-15T21:29:53", + "newPrice": 655.42 + } + ] + }, + { + "id": "502f7cda-43ca-465a-9d9c-d66c374b41dc", + "productId": "b24e3649-8669-4fa4-9ea9-add985c19f1e", + "category": "Accessory", + "docType": "customerRating", + "userName": "tmccullough", + "reviewDate": "2022-09-02T22:15:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "148d0faf-5501-41b6-a191-63dc770b9ea5", + "productId": "b24e3649-8669-4fa4-9ea9-add985c19f1e", + "category": "Accessory", + "docType": "customerRating", + "userName": "selenathompson", + "reviewDate": "2022-03-27T21:29:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "product", + "name": "Amazing Filter 3000 (Gold)", + "description": "This Amazing Filter 3000 (Gold) is one of the more common applications of Blu-rays and video-streaming. Many customers have come to this site to request a Blu-ray version of their camera equipment for the special needs of their child or in need of a movie-going experience such as the documentary \"A Very Private Heart\" or the film version of \"The Wolf Man.\" (Note: Only about 30", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-08-19T19:00:05", + "price": 993.58, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-02-20T03:15:41", + "newPrice": 995.45 + }, + { + "priceDate": "2021-09-06T03:15:41", + "newPrice": 1003.92 + }, + { + "priceDate": "2022-03-23T03:15:41", + "newPrice": 983.65 + }, + { + "priceDate": "2022-10-07T03:15:41", + "newPrice": 964.83 + }, + { + "priceDate": "2025-08-22T03:15:41", + "newPrice": 993.58 + } + ] + }, + { + "id": "628853f5-de93-4097-a6b0-a615be95f1b6", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "allenchristine", + "reviewDate": "2022-10-07T15:15:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "219ed3ff-7921-4436-9c10-3cc9b10be2cd", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "rsloan", + "reviewDate": "2022-04-15T10:26:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8bdb82f5-de2e-4ba3-90c4-6bff4f35c7fd", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "kylehanson", + "reviewDate": "2022-02-21T13:26:17", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3cd2ec7e-2814-4cb2-ae72-a7582688082d", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "michael02", + "reviewDate": "2021-02-20T03:15:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f3f53895-ed67-4237-a2e6-4b9cf94241c8", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "brenda76", + "reviewDate": "2021-03-17T12:06:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2aa6a7b3-89f5-4a1a-ace8-c20a9bfc4bf7", + "productId": "2aa6a7b3-89f5-4a1a-ace8-c20a9bfc4bf7", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Super (Red)", + "description": "This Luxe Stand Super (Red) is used to hold the same number of hands as the original Luxe Stand. It has no buttons.\n\nAchievements Edit\n\nTrivia Edit\n\nReferences Edit", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-03-28T12:31:47", + "price": 242.09, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-01-10T21:13:16", + "newPrice": 240.39 + }, + { + "priceDate": "2021-11-19T21:13:16", + "newPrice": 221.67 + }, + { + "priceDate": "2022-09-28T21:13:16", + "newPrice": 260.97 + }, + { + "priceDate": "2023-02-03T21:13:16", + "newPrice": 242.09 + } + ] + }, + { + "id": "f130d4e3-6cbb-464b-9d53-cb25ea369dbf", + "productId": "2aa6a7b3-89f5-4a1a-ace8-c20a9bfc4bf7", + "category": "Accessory", + "docType": "customerRating", + "userName": "brittanyhopkins", + "reviewDate": "2022-09-29T22:13:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ab4aa906-5855-4319-a0a6-41b17a02cd73", + "productId": "2aa6a7b3-89f5-4a1a-ace8-c20a9bfc4bf7", + "category": "Accessory", + "docType": "customerRating", + "userName": "lunajeffrey", + "reviewDate": "2021-01-10T21:13:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Micro (Red)", + "description": "This Awesome Mouse Micro (Red) is in our current top 5 lists. Our personal favorite is the Mouse Box Keyboard, which works similarly with Micro USB adapters.\n\nClick here to view a full list of our top 10 Mouse Accessories.\n\nIf you wish to keep up-to-date with the latest updates for your favorite mouse, check out our Mouse Pro. And don't forget to sign up for free updates from our website for this service. You can also", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-11-14T08:44:00", + "price": 568.87, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-03-03T21:09:03", + "newPrice": 559.88 + }, + { + "priceDate": "2021-11-30T21:09:03", + "newPrice": 621.27 + }, + { + "priceDate": "2022-08-29T21:09:03", + "newPrice": 602.8 + }, + { + "priceDate": "2024-11-17T21:09:03", + "newPrice": 568.87 + } + ] + }, + { + "id": "669e0215-d000-4670-bd88-a49862f88a16", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaronjames", + "reviewDate": "2021-09-18T21:30:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "94084c28-6b2c-43c1-8aa4-be40a59dcd8d", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ymcintyre", + "reviewDate": "2021-11-10T13:09:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "604cb2ce-2f13-4490-a63b-490104c28029", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fwiggins", + "reviewDate": "2021-05-18T13:10:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eff11000-a5de-4cc1-823f-a581269ce34d", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholastaylor", + "reviewDate": "2021-06-09T23:57:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b975eca3-3e08-4119-bff8-6bd8785c1b12", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bentleypamela", + "reviewDate": "2021-03-31T16:25:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "86933007-25a4-44f3-8a4a-1225212330f5", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jcole", + "reviewDate": "2021-03-03T21:09:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8bad53a3-fa83-4f70-aa44-bf174ac0ffbb", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pattersondiana", + "reviewDate": "2022-08-31T12:25:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "10683c44-6675-4fce-b423-60ee214bb7e8", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher74", + "reviewDate": "2022-01-11T13:54:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d44864f7-bfd9-4d04-a1c0-ceb0bd637781", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brendathomas", + "reviewDate": "2022-05-13T21:45:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard + (Silver)", + "description": "This Awesome Keyboard + (Silver) is an elegant, inexpensive, high performance and low cost keyboard with a sleek all-black finish. The Silver and Gold colorway features the same black construction and is ideal for professional gamers (like me who loves keyboards with a matte or matte finish). It has a touch screen and touch-", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-08-24T22:41:38", + "price": 715.8, + "stock": 33, + "priceHistory": [ + { + "priceDate": "2021-02-08T01:52:14", + "newPrice": 730.66 + }, + { + "priceDate": "2023-12-25T01:52:14", + "newPrice": 715.8 + } + ] + }, + { + "id": "dadd3746-5557-4e8e-965d-c4f0e832a1f6", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markjohnson", + "reviewDate": "2022-04-12T17:53:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "805e7a9d-e51a-4837-8f18-59409406cab3", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ingramlisa", + "reviewDate": "2022-04-26T03:04:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0fd27047-e54c-4f62-986c-fe95b15966d4", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "webbandrea", + "reviewDate": "2022-01-10T22:33:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bd0ac4d9-382c-433e-a7c9-10766db12e8c", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karenandrade", + "reviewDate": "2022-07-22T05:09:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4960dd55-c502-4b9e-a115-97c9c09a47b1", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisa66", + "reviewDate": "2021-10-18T20:14:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ef6e3821-1c6a-4598-8fc3-b3f2cabdb972", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tracycarr", + "reviewDate": "2021-03-02T09:49:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "911b1d79-c38b-49f9-b0bf-aa7272c1ebf1", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kgarza", + "reviewDate": "2022-09-05T04:30:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6d03b788-6042-44ad-bbc5-8cc59e48e56c", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jimmygamble", + "reviewDate": "2021-11-11T20:44:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8548e2ca-1c0d-48db-bb2e-7a3e4a161427", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markcallahan", + "reviewDate": "2022-03-13T11:31:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "07830f90-beb6-4974-bda6-efd2be315cf3", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "caitlin37", + "reviewDate": "2021-02-08T01:52:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "26f352cd-edde-49f3-9b8c-14f4b7886a0d", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomaswalton", + "reviewDate": "2022-04-08T03:17:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "73b1914e-e576-4714-b19f-7ebee86f1b7c", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ewallace", + "reviewDate": "2021-05-29T19:26:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6dda3307-88bd-421d-88b7-c1526986fad6", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yanderson", + "reviewDate": "2021-12-09T10:37:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cd223ba0-1a5a-4e0b-a5ee-a122f2cc7591", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "connie73", + "reviewDate": "2021-11-13T04:10:28", + "stars": 4, + "verifiedUser": false + }, + { + "id": "785178a8-2ad0-437c-a907-b810b2a79419", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothy03", + "reviewDate": "2021-07-07T21:54:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "14d1cc67-2134-4ea3-ab03-eecd888f8b62", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "oliversarah", + "reviewDate": "2021-07-04T15:03:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "27989748-3661-4e0f-a593-300548d15c9f", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brent04", + "reviewDate": "2021-03-25T21:16:04", + "stars": 4, + "verifiedUser": false + }, + { + "id": "456fe434-d0e4-48d7-9470-225b4023dc57", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rebeccacruz", + "reviewDate": "2021-02-10T18:36:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Pro (Black)", + "description": "This Luxe Filter Pro (Black) is rated 4.1 out of 5 by 54.\n\nRated 5 out of 5 by P-Punk from Extremely Smooth No longer wear, this filter works for every band I use. It has a nice smooth grain with an attractive finish.\n\nRated 5 out of 5 by Fanny from Perfect Fits Most Sides All I had to do was a few things. First", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-08-23T17:31:06", + "price": 1027.22, + "stock": 49, + "priceHistory": [ + { + "priceDate": "2021-01-07T02:15:39", + "newPrice": 1122.09 + }, + { + "priceDate": "2021-12-31T02:15:39", + "newPrice": 1064.79 + }, + { + "priceDate": "2022-12-24T02:15:39", + "newPrice": 932.92 + }, + { + "priceDate": "2025-01-28T02:15:39", + "newPrice": 1027.22 + } + ] + }, + { + "id": "d1f1fdbb-f81c-4956-b484-60ebde864523", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "torresmelissa", + "reviewDate": "2021-05-08T15:25:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9d4bbad4-4b08-40a2-8c6f-eba7adb61d98", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "uhall", + "reviewDate": "2021-02-27T16:03:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "06e21599-b7a4-47fd-bf70-c38a0e3c8d5e", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "cruzwilliam", + "reviewDate": "2021-01-07T02:15:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fbcaa4b8-9065-4f51-8b67-e6bd4a1a2230", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "samuelwolf", + "reviewDate": "2022-09-29T13:57:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b0e755ff-8a6e-421b-b664-ee22579f2b44", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "loganarthur", + "reviewDate": "2022-10-30T09:29:41", + "stars": 4, + "verifiedUser": true + }, + { + "id": "af425ccd-f1f6-4978-b781-127badf47816", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "jmatthews", + "reviewDate": "2021-06-06T19:22:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "552e867b-b14e-4e62-b11c-a46fc2ee549d", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "deleonpatricia", + "reviewDate": "2022-09-28T12:58:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1a195146-5b17-4ded-96ab-3b7792a504d0", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "jacquelineschneider", + "reviewDate": "2021-02-08T16:05:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f7149220-a1d7-48de-9695-5ff36a7a2ad1", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "esmith", + "reviewDate": "2021-12-11T11:05:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "029a9d74-6d42-4c85-970a-e4da051ee844", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "mendozavalerie", + "reviewDate": "2022-07-08T22:15:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "eea4f255-ac7f-41d3-98e9-32f630b617b1", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "tranjacqueline", + "reviewDate": "2022-12-24T14:58:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "22c63e15-eebc-4202-8d7a-1fbe56f06ce5", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "sandra14", + "reviewDate": "2022-01-23T06:47:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "51d65024-86fc-4869-953e-8f6acc14dd02", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "jensenlisa", + "reviewDate": "2022-08-27T04:11:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d6a2c9db-e24d-4f6b-b5a1-7040fdd5760e", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "yjones", + "reviewDate": "2022-01-06T21:24:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "15bf36d5-e9e1-42df-9bb5-952a03e7ea84", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "melinda58", + "reviewDate": "2021-02-11T09:43:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "936af02f-4ac0-4cb0-8223-798c7e913dd8", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "kmiller", + "reviewDate": "2022-04-18T09:30:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5f6c6afd-81ed-4e01-953f-905afe810a60", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "rdonaldson", + "reviewDate": "2022-02-03T05:56:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7909a70c-7bd5-4a3e-ba40-f53d9c99b573", + "productId": "7909a70c-7bd5-4a3e-ba40-f53d9c99b573", + "category": "Media", + "docType": "product", + "name": "Luxe TV Mini (Steel)", + "description": "This Luxe TV Mini (Steel) is an awesome TV, as it's so great at all of the things you love about watching small televisions, but there are a few things you will want to look out for. The first thing to consider is the TV", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-02-12T10:55:39", + "price": 903.2, + "stock": 15, + "priceHistory": [ + { + "priceDate": "2022-04-13T02:19:37", + "newPrice": 858.64 + }, + { + "priceDate": "2022-08-08T02:19:37", + "newPrice": 897.23 + }, + { + "priceDate": "2024-03-13T02:19:37", + "newPrice": 903.2 + } + ] + }, + { + "id": "5563c7d6-8fbd-4225-9045-91a8846015bd", + "productId": "7909a70c-7bd5-4a3e-ba40-f53d9c99b573", + "category": "Media", + "docType": "customerRating", + "userName": "ihinton", + "reviewDate": "2022-04-13T02:19:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "417cce3b-d676-44f7-9528-e5fdb9aeeb3d", + "productId": "7909a70c-7bd5-4a3e-ba40-f53d9c99b573", + "category": "Media", + "docType": "customerRating", + "userName": "gunderwood", + "reviewDate": "2022-08-08T18:57:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "884b4244-66e6-4140-8e67-b57512680dae", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard 3000 (Red)", + "description": "This Awesome Keyboard 3000 (Red) is amazing. I purchased this keyboard because I am a gamer and can say that I love this keyboard as much as I love these mice. I cannot say enough things about the quality of these keyboards. I am only going to review them because I need to see them at some point; they look awesome with the keyboard and I", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-05-07T13:42:45", + "price": 482.8, + "stock": 8, + "priceHistory": [ + { + "priceDate": "2021-03-31T03:59:01", + "newPrice": 451.7 + }, + { + "priceDate": "2022-01-16T03:59:01", + "newPrice": 441.22 + }, + { + "priceDate": "2022-11-03T03:59:01", + "newPrice": 529.09 + }, + { + "priceDate": "2023-09-16T03:59:01", + "newPrice": 482.8 + } + ] + }, + { + "id": "71c052b1-b8c6-433c-b9bc-e7a09238d3ad", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amberirwin", + "reviewDate": "2022-06-07T22:27:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f6ab808c-e464-475d-bfa0-737dbb513afa", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patrick10", + "reviewDate": "2022-03-03T06:06:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aea86c6a-77f7-4039-885b-54fe5950206c", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alanluna", + "reviewDate": "2021-12-03T10:57:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "537d3a3b-813e-42fd-8b38-2cef4a5985c6", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michellewells", + "reviewDate": "2021-03-31T03:59:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "95df2672-2249-4d80-a2ba-3eebeeb202c7", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristinedelgado", + "reviewDate": "2022-09-07T08:36:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "330f88ac-1921-4d89-8c94-042bd57a4aec", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james10", + "reviewDate": "2022-11-03T15:54:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard 3000 (Gold)", + "description": "This Luxe Keyboard 3000 (Gold) is a pair of solid silver-coated plastic and brass keys. The keys come with several unique designs, such as a circle with the key tip, an alphanumeric key, and a white ring around it.\n\nThe Luxe keys are the heart and soul of this laptop computer. It is a little hard to believe that we have seen this kind of thing in laptops before.\n\nBut for a reason", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-04-30T19:21:34", + "price": 118.76, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-02-22T14:05:07", + "newPrice": 129.04 + }, + { + "priceDate": "2023-12-09T14:05:07", + "newPrice": 118.76 + } + ] + }, + { + "id": "a63511ad-b250-4c95-870b-7712db24d3bc", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisakey", + "reviewDate": "2021-08-12T19:03:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "226b8912-b780-40f4-a4c4-aae3c2aa543c", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lmorgan", + "reviewDate": "2022-06-18T07:21:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5a4dbfb2-0ce9-4e90-a99c-c2d38e222854", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "webbemily", + "reviewDate": "2021-03-22T01:25:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "57ed5cb8-d64e-485e-a89e-b563bbbcf572", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cherylhall", + "reviewDate": "2021-12-03T23:00:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "adbc4f65-6c1b-4d9e-b8f2-810d4a523fef", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "josephmartin", + "reviewDate": "2021-07-04T02:21:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "763eddc8-c710-43cd-b1a7-93006df01b76", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "morrowtravis", + "reviewDate": "2021-02-22T14:05:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7ae70c46-6406-4d24-bb46-2d21a9ffec08", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthony79", + "reviewDate": "2022-08-29T23:42:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8b87033e-af6f-4b75-bb8d-15ae1ca304fa", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wramos", + "reviewDate": "2022-05-22T09:34:49", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1a554311-978b-4276-8408-4fa83ffe20af", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markburns", + "reviewDate": "2022-02-10T14:11:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "701858d7-2d60-4f30-92f5-33962d5c90c4", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alyssakelly", + "reviewDate": "2022-05-31T09:52:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "de80827f-c7ab-4af8-a123-3214d1e2dc6f", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gilleric", + "reviewDate": "2022-03-02T22:11:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0de0d702-eab1-4aef-9d90-9e657dbf249d", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pauldaniel", + "reviewDate": "2021-06-11T21:46:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Pro (Gold)", + "description": "This Luxe Mouse Pro (Gold) is an extremely easy and stylish upgrade over the old Elite Mouse Pro. Each keystroke is placed in keystrokes and is easy to use with your finger and an interchangeable set of buttons.\n\nTwo buttons, on the right, are for the USB keyboard and the right trackpad. You", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-04-11T17:28:03", + "price": 860.45, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-04-21T00:06:35", + "newPrice": 869.82 + }, + { + "priceDate": "2022-08-27T00:06:35", + "newPrice": 940.9 + }, + { + "priceDate": "2025-07-17T00:06:35", + "newPrice": 860.45 + } + ] + }, + { + "id": "40a0b267-7fec-477b-9d53-8b91b9e50ac2", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "josephanderson", + "reviewDate": "2021-07-22T03:16:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a31843ac-1a7e-4aa1-9fc8-35feb133a083", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristynash", + "reviewDate": "2022-07-12T21:38:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3ede7067-963b-4e60-a1db-f893b18a4b88", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthewstevens", + "reviewDate": "2021-06-15T04:44:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f82dfb94-32ab-4edb-8b73-fcd153453867", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ncarter", + "reviewDate": "2022-08-27T19:15:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "21d0d72c-e6ef-46de-9f7f-346a018d0e08", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vdouglas", + "reviewDate": "2022-07-19T00:33:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cac877af-c017-46b5-b824-a6f80840c0db", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patrick49", + "reviewDate": "2021-04-21T00:06:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4ef37890-61b2-4156-8f61-33f77d712cd1", + "productId": "4ef37890-61b2-4156-8f61-33f77d712cd1", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Mini (Gold)", + "description": "This Awesome Speaker Mini (Gold) is a great value for an affordable Speaker Mini (Gold). It has an elegant, sleek, sturdy design. It has a built-in microphone and headphone jack. The speaker is made from durable plastic so it will last for a long time. The aluminum front panel provides an added cooling and provides the perfect ventilation. The speaker also features a great silver trim and even more color options come in white, red, gold, and blue. Price is very affordable", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-12-11T20:46:17", + "price": 162.99, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-02-27T18:04:57", + "newPrice": 164.1 + }, + { + "priceDate": "2021-02-28T18:04:57", + "newPrice": 173.89 + }, + { + "priceDate": "2021-03-01T18:04:57", + "newPrice": 161.34 + }, + { + "priceDate": "2021-03-02T18:04:57", + "newPrice": 179.15 + }, + { + "priceDate": "2024-05-27T18:04:57", + "newPrice": 162.99 + } + ] + }, + { + "id": "0fc290f1-7531-4649-80c4-13ee1d117e80", + "productId": "4ef37890-61b2-4156-8f61-33f77d712cd1", + "category": "Media", + "docType": "customerRating", + "userName": "belldenise", + "reviewDate": "2021-02-27T18:04:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker 3000 (Steel)", + "description": "This Awesome Speaker 3000 (Steel) is rated 4.7 out of 5 by 12.\n\nRated 5 out of 5 by Jon from Great speaker This speaker is perfect for my room. It takes the audio out of your ear as well as into a completely subwoofer. The only downside is this comes with a small (and expensive) speaker that won't work with these speakers of this price. I do recommend getting the speaker in a box to cut down on your cable.\n", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-29T18:10:28", + "price": 558.37, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-01-01T01:42:21", + "newPrice": 528.55 + }, + { + "priceDate": "2021-06-21T01:42:21", + "newPrice": 510.58 + }, + { + "priceDate": "2021-12-09T01:42:21", + "newPrice": 584.66 + }, + { + "priceDate": "2022-05-29T01:42:21", + "newPrice": 557.13 + }, + { + "priceDate": "2022-11-16T01:42:21", + "newPrice": 504.66 + }, + { + "priceDate": "2024-04-12T01:42:21", + "newPrice": 558.37 + } + ] + }, + { + "id": "96342cd5-2d90-4ff6-98ad-b7e8cbe51cac", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "sarah04", + "reviewDate": "2021-09-14T11:51:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6a20a256-361b-426f-8136-768972731059", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "taylor69", + "reviewDate": "2022-02-17T19:32:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cdda92c1-fb27-4529-b72b-802b724caf34", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "troyliu", + "reviewDate": "2022-08-15T00:25:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6aa6e4e3-5d51-4c67-be0c-26619e30a5e6", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonkristina", + "reviewDate": "2021-07-19T09:29:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "22f12036-748c-402b-8239-eca69f72bbad", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "baldwinbruce", + "reviewDate": "2022-09-17T08:28:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "968e565b-aa14-4ca2-9d7f-ddac420d6d6e", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "sjackson", + "reviewDate": "2021-04-19T04:05:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1aeb3860-07b7-45a1-9c7f-69ff1fb09e5c", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "rfisher", + "reviewDate": "2021-01-01T01:42:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f9447dc1-8b7a-4517-9ca2-8d67326a11f2", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "davidirwin", + "reviewDate": "2022-05-01T09:46:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d516a408-fb39-412a-92f7-57096a4e00d9", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "kevin01", + "reviewDate": "2022-06-19T11:10:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "34c06d54-bd8d-4e46-8b1e-c594bc391cdc", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "jessica69", + "reviewDate": "2022-11-19T15:15:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1c59aa15-5774-4e9b-bc95-eda312f802c5", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "ablackburn", + "reviewDate": "2021-09-17T02:54:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ff49dd5f-9aab-4df3-ab26-a993a221bbb3", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "alvareznathaniel", + "reviewDate": "2022-02-01T04:36:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0626deed-a6d1-44b9-a7c3-48607881f8d9", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "phillipbrown", + "reviewDate": "2022-03-26T05:33:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f0bf1369-5300-4638-a1f9-69b4b994d7e7", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "sullivanlori", + "reviewDate": "2022-01-23T14:56:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c0481648-d210-46a8-b563-89ec1d919470", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "christinebaker", + "reviewDate": "2022-04-05T00:07:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "31849d3c-de4e-4abb-b58f-b052b4ea39f0", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "craigrichard", + "reviewDate": "2021-05-24T21:28:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d39a7aa4-b06e-4e6e-a982-ed8340325631", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "moorekatie", + "reviewDate": "2022-04-24T14:25:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "812bf5e4-ae57-4885-8955-59fce73cac0f", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "thall", + "reviewDate": "2022-08-11T11:19:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b0654759-765c-4e8d-a64a-945771dbc497", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "nelsonroy", + "reviewDate": "2021-03-05T11:53:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "da53a0e7-5b33-449b-8013-c30c3d65f9a3", + "productId": "da53a0e7-5b33-449b-8013-c30c3d65f9a3", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Silver)", + "description": "This Luxe Filter 3000 (Silver) is a stainless steel filter that will keep your filter from leaking while taking on ultra smooth and detailed texture.\n\nThe Filter 3000 features a stainless steel filter which is durable and is easy to clean. The filter can be easily and effortlessly opened and removed. The filters come with a black glass top and a sleek black inner lining.\n\nThe filter itself features silver threads and the brass plate keeps the filter completely closed and", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-10-11T09:55:02", + "price": 115.63, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-08-29T03:18:52", + "newPrice": 108.22 + }, + { + "priceDate": "2023-03-21T03:18:52", + "newPrice": 115.63 + } + ] + }, + { + "id": "f3084d06-5a75-4464-af9a-bdc4c68b64da", + "productId": "da53a0e7-5b33-449b-8013-c30c3d65f9a3", + "category": "Other", + "docType": "customerRating", + "userName": "hcoleman", + "reviewDate": "2022-01-15T21:43:33", + "stars": 5, + "verifiedUser": false + }, + { + "id": "269905dd-4617-436c-b7ad-de674151ca9b", + "productId": "da53a0e7-5b33-449b-8013-c30c3d65f9a3", + "category": "Other", + "docType": "customerRating", + "userName": "marc52", + "reviewDate": "2021-08-29T03:18:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Ultra (Black)", + "description": "This Amazing Speaker Ultra (Black) is now available. This speaker is an incredible sounding beast and has the sound of a real beast. This speaker would only make one speech.\n\n\nWhat it does: These speakers are great speakers. I have used them on a few gigs and a couple hundred other gigs, but they are still quite amazing. This speaker is the single best speaker at what it does. It", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-13T18:02:51", + "price": 623.09, + "stock": 31, + "priceHistory": [ + { + "priceDate": "2021-02-03T15:22:43", + "newPrice": 646.98 + }, + { + "priceDate": "2021-07-23T15:22:43", + "newPrice": 635.09 + }, + { + "priceDate": "2022-01-09T15:22:43", + "newPrice": 650.16 + }, + { + "priceDate": "2022-06-28T15:22:43", + "newPrice": 637.05 + }, + { + "priceDate": "2022-12-15T15:22:43", + "newPrice": 571.75 + }, + { + "priceDate": "2024-12-24T15:22:43", + "newPrice": 623.09 + } + ] + }, + { + "id": "59e1678c-dead-4a2c-81c0-b1840b002c72", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "kimberlyrodgers", + "reviewDate": "2021-08-15T18:56:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f06ca4f3-37e9-4bca-8d33-6b318421bca3", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "jeremyperry", + "reviewDate": "2022-03-17T13:48:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4cee3f85-7fee-4d8d-9837-eea05f592c70", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "greenejanice", + "reviewDate": "2022-06-05T22:44:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2cfafc0b-4ac2-4371-abf7-affe07f55945", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "jamesrogers", + "reviewDate": "2022-12-16T01:39:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fa29821c-bf3d-4fc3-9ae4-14b9094e19d7", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "benjamin59", + "reviewDate": "2022-07-29T04:47:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e9653606-1ee5-411c-aeac-80407faa693a", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "richardheath", + "reviewDate": "2021-02-15T13:35:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8d5a6764-5d0c-4971-a24a-631d1dcb9156", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "alyssa16", + "reviewDate": "2022-04-04T15:20:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1870c894-0d56-4769-954d-306e65c2939e", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "owenssarah", + "reviewDate": "2021-02-03T15:22:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "83367b4b-80c2-49af-b9a9-0c94d50e64c6", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "lpowell", + "reviewDate": "2022-03-02T06:40:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "12830cec-5fff-47c3-b83d-20f48f480608", + "productId": "12830cec-5fff-47c3-b83d-20f48f480608", + "category": "Media", + "docType": "product", + "name": "Amazing TV Super (Red)", + "description": "This Amazing TV Super (Red) is an amazing TV show about a woman who has taken to fighting crime and her ability to fight crime in her life. The show centers around a person known as \"The Widow\" who is just waiting her turn. Along the way she meets and meets many people who share her story. I have watched this show a lot as I watched a couple", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-06-01T20:00:08", + "price": 154.03, + "stock": 37, + "priceHistory": [ + { + "priceDate": "2021-10-11T12:18:00", + "newPrice": 146.37 + }, + { + "priceDate": "2021-12-28T12:18:00", + "newPrice": 157.63 + }, + { + "priceDate": "2022-03-16T12:18:00", + "newPrice": 166.05 + }, + { + "priceDate": "2022-06-02T12:18:00", + "newPrice": 152.59 + }, + { + "priceDate": "2025-03-30T12:18:00", + "newPrice": 154.03 + } + ] + }, + { + "id": "cf768e17-ed6d-4d70-b255-eadc8020934a", + "productId": "12830cec-5fff-47c3-b83d-20f48f480608", + "category": "Media", + "docType": "customerRating", + "userName": "knoxscott", + "reviewDate": "2022-06-04T00:53:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "0cf22132-8d8f-4fbe-84fe-7e998e181549", + "productId": "12830cec-5fff-47c3-b83d-20f48f480608", + "category": "Media", + "docType": "customerRating", + "userName": "elam", + "reviewDate": "2021-10-11T12:18:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3c6dec4b-612a-4ab7-830a-388660ea46e2", + "productId": "12830cec-5fff-47c3-b83d-20f48f480608", + "category": "Media", + "docType": "customerRating", + "userName": "alexander04", + "reviewDate": "2021-12-18T21:31:55", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Micro (Steel)", + "description": "This Amazing Stand Micro (Steel) is rated 4.2 out of 5 by 28.\n\nRated 5 out of 5 by Chris from Great stand. I have two large set of 30\" T4 aluminum mini-shinings and these fit with any set.\n", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-12-07T01:36:05", + "price": 425.97, + "stock": 96, + "priceHistory": [ + { + "priceDate": "2021-01-14T17:24:38", + "newPrice": 402.97 + }, + { + "priceDate": "2021-12-21T17:24:38", + "newPrice": 392.76 + }, + { + "priceDate": "2022-11-27T17:24:38", + "newPrice": 402.78 + }, + { + "priceDate": "2024-12-16T17:24:38", + "newPrice": 425.97 + } + ] + }, + { + "id": "9f5d6080-89c3-4d79-aa37-24aba4df76ee", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "debbiemitchell", + "reviewDate": "2021-10-30T15:33:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "46d331b9-774d-4471-99c8-614f7c0cfd35", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthonymathis", + "reviewDate": "2022-09-03T16:23:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ff1b82ff-7330-419b-a187-bcaec9cc04b1", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "mackenziejordan", + "reviewDate": "2022-09-11T03:20:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "58dafddf-336a-47d5-b3da-e6b14bba6d0f", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "petersontamara", + "reviewDate": "2021-01-14T17:24:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8f77dd95-3b37-44f7-8e07-0dd661a627fc", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "pricekenneth", + "reviewDate": "2021-07-26T17:06:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ed7afe66-8a52-4403-8bf7-7334676b6e00", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "shanemoore", + "reviewDate": "2021-07-25T19:44:13", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f288eaee-9ea6-434b-a838-78a24e76a973", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "phambrandon", + "reviewDate": "2022-11-28T04:32:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Super (Silver)", + "description": "This Amazing Stand Super (Silver) is back, not the most expensive to make, but is perfect for any enthusiast. It is extremely resistant to shock when used with large amounts of water and has a very low viscosity which is extremely helpful since we have already received a pair that is still very strong.\n\n", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-08-17T18:07:33", + "price": 732.02, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-04-29T17:07:19", + "newPrice": 663.52 + }, + { + "priceDate": "2022-09-25T17:07:19", + "newPrice": 742.07 + }, + { + "priceDate": "2024-07-30T17:07:19", + "newPrice": 732.02 + } + ] + }, + { + "id": "c4277cc7-00ef-49c5-9c4d-ee0adda02827", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "fcampbell", + "reviewDate": "2022-09-26T01:22:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "22aa183d-e155-49f2-9cc3-5d7e2b52f174", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "lawsontroy", + "reviewDate": "2021-04-29T17:07:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c8d50146-90ab-4b19-8c16-48e3ffb92b5f", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomas29", + "reviewDate": "2021-07-27T12:05:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c2e35b76-19f1-4322-9207-05c2c3d9b77b", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "robinsonmary", + "reviewDate": "2021-11-01T08:11:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fc223ee1-2c44-465c-999e-064066e441ca", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "fmarshall", + "reviewDate": "2021-12-12T09:41:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1b874044-b89d-4ac5-b736-c05b627071c2", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "shanebryant", + "reviewDate": "2021-10-02T00:01:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "89851d53-05ac-4523-90b6-36c78a0a46c7", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "vincentrodriguez", + "reviewDate": "2022-05-18T01:25:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "24cc9744-428f-41e7-a1ac-ad97b2eb61b7", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "powellbarbara", + "reviewDate": "2022-09-16T21:00:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "86173772-fde0-42f8-ae7f-c21a29f30707", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Super (Silver)", + "description": "This Awesome Filter Super (Silver) is rated 4.2 out of 5 by 17.\n\nRated 4 out of 5 by Gave it my first time to my niece, who was 10 or 11, and it worked like a charm The filter didn't sound like an extension of what anyone else's had to replace, which I'm sure wasn't for people who weren't that older but didn't have any experience with", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-03-21T02:50:28", + "price": 347.83, + "stock": 75, + "priceHistory": [ + { + "priceDate": "2021-03-17T01:09:14", + "newPrice": 378.87 + }, + { + "priceDate": "2021-08-14T01:09:14", + "newPrice": 376.61 + }, + { + "priceDate": "2022-01-11T01:09:14", + "newPrice": 375.53 + }, + { + "priceDate": "2022-06-10T01:09:14", + "newPrice": 342.11 + }, + { + "priceDate": "2022-11-07T01:09:14", + "newPrice": 316.12 + }, + { + "priceDate": "2023-01-01T01:09:14", + "newPrice": 347.83 + } + ] + }, + { + "id": "b92badab-0c83-4cee-b2da-02e1327eaf78", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "adammontes", + "reviewDate": "2022-08-01T15:26:33", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4f570bab-80f7-4980-8f45-10dd62a3405f", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "mcphersoncindy", + "reviewDate": "2022-08-20T00:25:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "51481150-b952-4cb6-8c5b-9e9ec4d24eb5", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "evelynmiller", + "reviewDate": "2022-06-09T07:05:15", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a2d7899a-ded9-4cc1-a481-cc387370f969", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "vfrost", + "reviewDate": "2021-05-29T22:03:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "57e2868f-0922-47a7-a89c-ea34c8f7650f", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "simmonssusan", + "reviewDate": "2021-04-29T17:56:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "00663f75-20ac-4aef-9285-60fecef1c64c", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "terrenceayala", + "reviewDate": "2021-03-17T01:09:14", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b3bccc62-43d6-4447-8c3c-f1641948f29c", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "bowenregina", + "reviewDate": "2021-08-29T14:33:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0294598e-9275-4e62-8579-c2d1e5d4c766", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "gonzalezdawn", + "reviewDate": "2021-07-22T15:40:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cb14825a-74d1-464a-8ff0-a6d8e09ee04c", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "butleremily", + "reviewDate": "2021-07-21T15:00:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8e9ac815-939e-44f1-a89f-40ae11937d96", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "hnguyen", + "reviewDate": "2022-11-10T12:32:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4e2015d5-ea0e-4288-aa89-a9d50da2a34a", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "richard99", + "reviewDate": "2021-08-26T04:09:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ec669381-d53c-4ef4-98fd-3ed1cf8358c9", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "shari44", + "reviewDate": "2022-02-22T05:14:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d65b6086-c89f-4e92-8e97-a4fb8b7907dd", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "henrybobby", + "reviewDate": "2022-08-25T03:33:01", + "stars": 5, + "verifiedUser": true + }, + { + "id": "aa1c4c38-42d4-4afa-be25-4767e3c9b10a", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "gailgeorge", + "reviewDate": "2021-12-24T15:52:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5b37067f-f2f3-4d4b-9100-52488298dc90", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "christina81", + "reviewDate": "2022-01-11T00:26:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Super (Red)", + "description": "This Basic Stand Super (Red) is a fully compatible Super-Heavy-Dry Ball Thrower (Dry Ball Thrower) designed to fit the latest Super-Heavy-Dry Bat", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-11-30T10:16:01", + "price": 960.38, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-03-13T15:44:38", + "newPrice": 966.32 + }, + { + "priceDate": "2022-01-20T15:44:38", + "newPrice": 921.31 + }, + { + "priceDate": "2022-11-29T15:44:38", + "newPrice": 1008.95 + }, + { + "priceDate": "2024-08-23T15:44:38", + "newPrice": 960.38 + } + ] + }, + { + "id": "b793057f-3522-4116-abbf-1dba14fb974f", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "bethanyalexander", + "reviewDate": "2021-05-06T05:33:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0e972b06-1096-4a93-9203-dac1cb7e4c0e", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "rachelcole", + "reviewDate": "2022-06-22T14:03:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "44d69738-5e11-41fa-bdf7-c8e291aacbb2", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "michellesmith", + "reviewDate": "2021-10-13T14:51:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1bb375b4-dab2-4342-99a4-c38fb7fd6f87", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "courtneybaker", + "reviewDate": "2021-12-06T07:57:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e422716d-18fe-41fe-a358-6ee59a8e1aba", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "shafferricky", + "reviewDate": "2021-03-13T15:44:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "639c35c2-0b15-4234-8fe8-e11bfa9e98d4", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "verickson", + "reviewDate": "2022-11-29T23:58:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9ef79dbf-0e5b-40fd-8950-925d40f86d49", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "smithmichael", + "reviewDate": "2022-05-19T06:55:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ac0fee0b-b04e-476d-a8b2-8e9109923087", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "kevin02", + "reviewDate": "2021-06-04T15:44:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c4d35d38-ef1c-48ff-b398-e08548423eca", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "theresa61", + "reviewDate": "2022-04-16T04:18:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "298cb88c-c716-40b2-ab36-b35b85b9ca46", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "salinasjennifer", + "reviewDate": "2022-01-17T17:45:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "978cc08b-afbb-40ec-a8f2-6d4683599a8b", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrewrodriguez", + "reviewDate": "2021-11-18T07:36:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "77467357-cae8-4688-90eb-8585b9b74227", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "caldwelljohn", + "reviewDate": "2021-10-13T05:06:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c79214bd-be83-4c15-bd4d-ea6ad244ca4b", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "shawncoffey", + "reviewDate": "2022-04-21T01:01:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a9827d5f-6e27-49b7-9f8d-5fa946db79c8", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "ericroth", + "reviewDate": "2021-06-18T15:41:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "98549126-bbff-4e83-8b0b-da0c376a66ce", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael44", + "reviewDate": "2022-03-25T14:46:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e5d61b4f-82c9-432a-9a89-7e532a7ab2b5", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "olivia79", + "reviewDate": "2022-09-07T16:25:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "400a8665-7cbf-47c4-b7e5-921bb02cb8d2", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "michelefuller", + "reviewDate": "2022-10-15T03:40:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bd25df6c-305d-4f3d-a9b4-2b1487a4f103", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "newtonshawn", + "reviewDate": "2021-11-06T09:45:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3d974019-c96c-452b-873b-5a2682fa1273", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "charles94", + "reviewDate": "2022-06-12T16:10:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Gold)", + "description": "This Basic Phone Ultra (Gold) is not compatible with these devices.\n\n1. Please note that your device will not be able to view the file. Please select the file and press \"Add Files\"\n\n2. This is a download page on the mobile device. You can view only these file information provided by the developer or on the apps that you download.\n\n3. Any", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-04-11T14:48:33", + "price": 187.31, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-02-11T11:49:11", + "newPrice": 172.68 + }, + { + "priceDate": "2023-12-21T11:49:11", + "newPrice": 187.31 + } + ] + }, + { + "id": "0912a525-eb8f-4d3d-8547-6f0f3ceffd08", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "creeves", + "reviewDate": "2022-07-25T07:42:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "78194967-0162-4a28-ac91-f799737699d5", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "monicamclaughlin", + "reviewDate": "2021-07-25T10:22:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7332626f-bbae-42a4-bca5-1ffdb0b9d86c", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarah33", + "reviewDate": "2021-02-11T11:49:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "864ca3ea-f909-4935-8721-45d7707dacb8", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "brittanywallace", + "reviewDate": "2022-07-07T06:42:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e511567c-5214-41cc-ab30-1763aa0c53ca", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "gina19", + "reviewDate": "2021-12-18T02:03:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "009f6b05-a1d0-45bc-99f7-7bf4220e7519", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "wstephens", + "reviewDate": "2021-02-18T12:32:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "786af83e-500a-4b42-9723-27265e051c31", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "vdonaldson", + "reviewDate": "2021-05-31T14:49:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2c5827f4-cfc5-42c4-aca7-638ed8409470", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "rhonda19", + "reviewDate": "2021-07-23T01:49:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Mini (Steel)", + "description": "This Amazing Mouse Mini (Steel) is a small 5×3 mold (9x14mm)\n\n(5×3 is recommended)\n\nThe Mouse Mini is 5×3 in diameter, has only 3 screws\n\nThe Mouse Mini is perfect for 2 (or fewer) people\n\nHow to install the mouse Mini\n\nRemove the", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-07-20T04:10:46", + "price": 442.79, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-02-05T12:13:53", + "newPrice": 473.07 + }, + { + "priceDate": "2021-05-09T12:13:53", + "newPrice": 437.94 + }, + { + "priceDate": "2021-08-10T12:13:53", + "newPrice": 425.44 + }, + { + "priceDate": "2021-11-11T12:13:53", + "newPrice": 410.2 + }, + { + "priceDate": "2022-02-12T12:13:53", + "newPrice": 468.41 + }, + { + "priceDate": "2025-02-26T12:13:53", + "newPrice": 442.79 + } + ] + }, + { + "id": "a31d9f95-5686-4ae9-96a5-1eefbc915faf", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessica56", + "reviewDate": "2021-07-18T16:11:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a2e7b7ce-dece-43bd-973a-c4a0e70afbee", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bennettamanda", + "reviewDate": "2021-04-01T02:36:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "08722957-46ef-4227-bf07-0c5a78ff5709", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "browndavid", + "reviewDate": "2022-02-13T08:14:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3eafdbfc-f87e-4a1c-83ee-5c4b0b74af49", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniemccullough", + "reviewDate": "2021-09-14T11:46:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "66d2aa55-2e83-4e4f-8eb0-065d93c7728d", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dominguezdaniel", + "reviewDate": "2021-02-05T12:13:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Silver)", + "description": "This Amazing Keyboard Ultra (Silver) is sold by the brand in three different colors! Just check out the brand name in the picture below…\n\nJust look at the photos from the seller's website to see how it looks – they're nice", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-01-22T22:43:26", + "price": 939.33, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-02-10T17:26:38", + "newPrice": 853.13 + }, + { + "priceDate": "2023-06-09T17:26:38", + "newPrice": 939.33 + } + ] + }, + { + "id": "e33dc6cb-f64a-4ec5-aeda-c51eb9267419", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "julie65", + "reviewDate": "2022-10-01T01:02:37", + "stars": 4, + "verifiedUser": false + }, + { + "id": "84afbf79-12d8-4319-b73c-cf86ab2ae7ae", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sandovalsarah", + "reviewDate": "2021-04-09T19:06:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d6d7fe4f-f181-4fb8-baca-134da1cb7fb7", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "douglasnunez", + "reviewDate": "2022-12-19T23:37:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "93a918c2-c3f1-4e9f-829e-e3f8fbe028ff", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mooremariah", + "reviewDate": "2021-07-12T00:34:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9b7d46ce-f57f-4fcc-8172-e979c4b5d6f1", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dlopez", + "reviewDate": "2021-08-01T11:45:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "59252751-ba4d-449b-89ad-38837800ba53", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wyattkatrina", + "reviewDate": "2021-12-21T23:59:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b9bf80e6-4027-4870-9507-69b75f3a1278", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithlinda", + "reviewDate": "2022-07-13T12:23:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5c1fcdc1-9443-44ac-af03-bfc671bc4acf", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sue60", + "reviewDate": "2021-02-10T17:26:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "07f56238-0fdf-47e7-84cd-b70048d5b952", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davisangel", + "reviewDate": "2022-01-04T17:07:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fefa3d2b-cbc1-412d-a8da-f200442a28b4", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicadavidson", + "reviewDate": "2022-06-15T07:29:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a25e5744-864b-4357-9aef-bdc2190040a6", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Super (Black)", + "description": "This Awesome Mouse Super (Black) is rated 5.0 out of 5 by 7.\n\nRated 5 out of 5 by Anonymous from Not cheap, but it's great for a little more money than most of my other high end mouse.\n\nRated 5 out of 5 by Anonymous from Good gaming mouse This mouse is pretty fast", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-07-28T00:11:20", + "price": 573.91, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-02-11T02:51:32", + "newPrice": 608.3 + }, + { + "priceDate": "2022-11-05T02:51:32", + "newPrice": 600.14 + }, + { + "priceDate": "2025-06-15T02:51:32", + "newPrice": 573.91 + } + ] + }, + { + "id": "7839bd9f-e940-49e7-8503-db552a03aa8b", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christophercollins", + "reviewDate": "2021-12-14T23:01:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "766f001b-af26-4205-ac3f-28d0818f2154", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carpenterjoseph", + "reviewDate": "2021-10-21T20:11:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c98c9749-3d84-46a5-9302-4bd38931484c", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mollygoodman", + "reviewDate": "2022-01-01T12:32:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "aad53f36-d196-473e-9e06-de42f37991bb", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "urollins", + "reviewDate": "2021-02-11T02:51:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "60efb925-86d3-4df2-86f8-c812c2c5cfa2", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "barbarablack", + "reviewDate": "2021-04-21T21:52:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d01e52cf-ddf0-46b9-9d6f-23adb14c79f0", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamesjimenez", + "reviewDate": "2021-10-22T02:07:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4215acfe-d071-4f77-b371-83eb5c0c5058", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "april39", + "reviewDate": "2022-06-16T02:36:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "38a9d5a6-1e2a-4d05-8361-44d407350ba2", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james52", + "reviewDate": "2022-09-30T01:19:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ea8d10c7-08dd-4cf9-acf2-d596c7117c7b", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markreyes", + "reviewDate": "2022-02-07T12:18:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "26ff34dc-7029-4055-ba40-b4399d551f7b", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "haydendebbie", + "reviewDate": "2022-08-05T12:22:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c0957b8d-75f4-416e-b2b7-fd7b067cca0d", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vincent43", + "reviewDate": "2022-08-10T10:23:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "91eaa83c-5ca7-4f21-bcf1-c2a73d1ed99f", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rosemargaret", + "reviewDate": "2022-04-26T00:53:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7191b423-7917-41ce-934f-b9e78a086dc7", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "redwards", + "reviewDate": "2021-04-22T02:18:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a0e39014-ce5b-47a7-b2c7-7d515080723d", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "william52", + "reviewDate": "2022-11-05T08:54:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Micro (Steel)", + "description": "This Premium Mouse Micro (Steel) is made from a specially engineered single layer PCB so that each Micro will have its own unique unique layout which gives it the unique look and feel of the", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-11-19T16:00:39", + "price": 611.56, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2021-01-07T17:38:35", + "newPrice": 568.5 + }, + { + "priceDate": "2021-08-20T17:38:35", + "newPrice": 654.83 + }, + { + "priceDate": "2022-04-02T17:38:35", + "newPrice": 595.61 + }, + { + "priceDate": "2022-11-13T17:38:35", + "newPrice": 596.01 + }, + { + "priceDate": "2025-05-31T17:38:35", + "newPrice": 611.56 + } + ] + }, + { + "id": "f835040e-37ef-4a40-8e69-e42cccafb7f0", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emily86", + "reviewDate": "2021-10-10T07:17:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "93a7ca0d-23bd-4346-9ecb-f004b5976643", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gcrawford", + "reviewDate": "2021-01-25T21:00:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ab4ae7fd-a484-4e08-b663-8553f437f41a", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "clarkpatricia", + "reviewDate": "2022-11-15T01:41:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "722f732a-ff59-4c25-baba-11cc19694dd9", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david21", + "reviewDate": "2021-05-01T23:44:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1911de29-8f89-4f54-bfcd-6eb27a7db04f", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sarah23", + "reviewDate": "2021-04-25T06:19:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "868f88b6-6eae-47fe-8bc5-7a19836edfd2", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erogers", + "reviewDate": "2021-01-07T17:38:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "961d159b-aac0-48d1-b95b-4fd67854e63f", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "glenn30", + "reviewDate": "2022-09-21T16:47:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "58b8289c-57dc-4cb3-8d25-450ec07c44fa", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "averypaul", + "reviewDate": "2021-08-14T12:02:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1bd84a6b-2202-4689-b77b-b23fdd560f06", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yangmichael", + "reviewDate": "2021-12-01T19:57:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Pro (Steel)", + "description": "This Premium Mouse Pro (Steel) is a standard price model for a single-speaker, dual-zone speaker setup. It is a $140 model or $180 for your model of 1/4", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-12-25T20:57:25", + "price": 856.11, + "stock": 1, + "priceHistory": [ + { + "priceDate": "2021-10-08T04:06:37", + "newPrice": 841.47 + }, + { + "priceDate": "2022-03-15T04:06:37", + "newPrice": 865.67 + }, + { + "priceDate": "2022-08-20T04:06:37", + "newPrice": 892.11 + }, + { + "priceDate": "2024-03-06T04:06:37", + "newPrice": 856.11 + } + ] + }, + { + "id": "85f05e9d-6977-4e18-b736-25affc468b48", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emily39", + "reviewDate": "2022-07-23T09:53:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ea4a7739-af17-4059-8656-982c71e3e23f", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertobrien", + "reviewDate": "2021-10-08T04:06:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dae0636b-6595-4b38-a7a1-ec3efd994068", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kylewalker", + "reviewDate": "2022-08-20T10:40:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "66fe4f5c-75b5-4dea-9fab-eb82cdaa4ef9", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harveytimothy", + "reviewDate": "2022-02-23T13:10:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "52b82fe3-be0f-4493-b697-821a373c964a", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Ultra (Red)", + "description": "This Luxe Stand Ultra (Red) is the ultimate portable platform for gaming, making it perfect for small portable computers.\n\nThe Luxe stand is compatible with nearly every platform. It allows the user to stand on the upper portion of the", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-01-11T09:15:13", + "price": 891.22, + "stock": 34, + "priceHistory": [ + { + "priceDate": "2021-01-30T19:53:40", + "newPrice": 824.23 + }, + { + "priceDate": "2021-09-18T19:53:40", + "newPrice": 920.79 + }, + { + "priceDate": "2022-05-07T19:53:40", + "newPrice": 853.38 + }, + { + "priceDate": "2022-12-24T19:53:40", + "newPrice": 834.07 + }, + { + "priceDate": "2025-03-31T19:53:40", + "newPrice": 891.22 + } + ] + }, + { + "id": "eb7d143f-d77e-4612-b5bd-fa0eb57996e6", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "millerkatherine", + "reviewDate": "2021-04-25T17:14:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "85165d86-0b02-4809-86dd-14e4b7f5c77b", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "taylorelliott", + "reviewDate": "2022-07-09T07:25:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c5beef69-f609-4bd9-8c76-c31262dd9665", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "yclayton", + "reviewDate": "2021-05-26T05:20:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e266f1c6-cc18-4d42-891e-38a8621991b8", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "dalenunez", + "reviewDate": "2021-01-30T19:53:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "648bbd18-23a3-4316-aa9a-9bcea1ee39ef", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "icox", + "reviewDate": "2022-12-26T00:37:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cea9d25c-a21d-4a7d-9625-e509c5fceb8d", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "gregorykristin", + "reviewDate": "2021-09-17T22:32:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "69148ad6-5330-41c9-9f79-f08873025e54", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "hmccoy", + "reviewDate": "2021-07-28T21:29:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "565b6e5c-122e-4b10-89ea-151160b6b0a2", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthew60", + "reviewDate": "2021-04-09T01:30:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3247553e-3003-4260-8083-f3e85295ca19", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarah05", + "reviewDate": "2021-10-08T17:43:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "07297639-473c-4f49-8dee-fc3128417ebc", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonesbriana", + "reviewDate": "2021-10-05T17:02:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "86747efc-2d68-4041-99b2-88393484c15e", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "cynthiasmith", + "reviewDate": "2022-07-21T18:44:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fbb06593-1b65-4416-bdcd-c5fec340a185", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "murraybarbara", + "reviewDate": "2021-08-16T17:06:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "520f37bd-f8f6-4546-9333-12b96ca2c62a", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "elizabethnewman", + "reviewDate": "2021-04-03T14:21:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9092e0af-5c49-4a74-85f4-307532626ca8", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "lodom", + "reviewDate": "2022-10-09T02:39:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f6855db4-244b-4b86-805c-51c643387bf5", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "janetsmith", + "reviewDate": "2022-03-13T18:02:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f1d7bf86-7cd6-431b-b81f-3fbdbf8af275", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "echavez", + "reviewDate": "2021-03-13T23:39:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8cdd3a76-0162-4e78-a5f2-f189acaea288", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "johnhansen", + "reviewDate": "2022-07-30T13:44:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "30f654c4-01f2-4680-9dea-2d9b8a0a484c", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "robyncollins", + "reviewDate": "2022-05-15T20:49:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "61bcf966-0a6d-4f80-b5f7-db3332f91734", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "jamiegoodwin", + "reviewDate": "2021-09-09T16:06:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5d023c94-a0db-4360-b690-0d018dcc7faf", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "ytaylor", + "reviewDate": "2022-01-14T06:50:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "826bf113-c3f8-44f6-8a4c-bca663ab30f1", + "productId": "826bf113-c3f8-44f6-8a4c-bca663ab30f1", + "category": "Media", + "docType": "product", + "name": "Awesome TV Micro (Black)", + "description": "This Awesome TV Micro (Black) is just gorgeous\n\nIt has a low light in the room with no other feature than low brightness on the LCD that is great. And it is perfect for getting into theater just to watch something. The other thing that i could not love more is the sound quality. I love it when things sound like", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-06-18T18:37:10", + "price": 972.44, + "stock": 35, + "priceHistory": [ + { + "priceDate": "2018-06-18T18:37:10", + "newPrice": 893.83 + }, + { + "priceDate": "2022-01-21T18:37:10", + "newPrice": 988.01 + }, + { + "priceDate": "2025-08-26T18:37:10", + "newPrice": 1035.32 + }, + { + "priceDate": "2025-08-27T18:37:10", + "newPrice": 972.44 + } + ] + }, + { + "id": "b1eb82c5-a101-4912-8a00-f6e050169087", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Mini (Black)", + "description": "This Basic Stand Mini (Black) is the foundation of this new system. The system contains approximately 14.5mm fans in the front of the unit, one 8mm fan in the back, two 10.1mm fans at the top, and", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-10-20T02:31:25", + "price": 1020.91, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-03-06T09:53:22", + "newPrice": 1021.6 + }, + { + "priceDate": "2022-12-09T09:53:22", + "newPrice": 1088.61 + }, + { + "priceDate": "2023-11-17T09:53:22", + "newPrice": 1020.91 + } + ] + }, + { + "id": "ea100b79-edcc-4998-9e41-c77d24e17fa1", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "ospencer", + "reviewDate": "2021-04-06T12:08:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1c10ba1a-a7dc-4223-a314-07d05db0887b", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "cclay", + "reviewDate": "2022-08-07T01:51:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5f11640d-011e-4517-b33d-dcddc2e38f99", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "kenneth30", + "reviewDate": "2022-12-09T20:51:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "952b412d-647f-454b-9034-2a079f5e4db7", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "graywilliam", + "reviewDate": "2021-03-06T09:53:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0d8fcd56-4ec8-4ede-9d66-ed4393802671", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "qford", + "reviewDate": "2022-05-21T20:57:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0310252b-7339-4c10-9680-4dd9809d985e", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "kempmelissa", + "reviewDate": "2022-06-23T23:40:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "45722175-e458-4a55-8bc0-2961ec997b97", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "dana09", + "reviewDate": "2022-07-23T21:50:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f16c12d9-9a77-4e03-9967-d2501348149f", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "rogerssabrina", + "reviewDate": "2021-07-02T07:00:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "10a091af-d242-44e0-9641-afa57d6e8949", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "alvin48", + "reviewDate": "2021-05-19T00:37:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4ea67248-b0b2-4000-99af-844bdfe04ae9", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "kyle28", + "reviewDate": "2022-11-16T03:21:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a5cef53d-ac81-4421-addd-2eee5c73add0", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "erin12", + "reviewDate": "2021-11-22T16:54:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5ffd62af-9957-424d-a27e-749882a2ade2", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "barbara87", + "reviewDate": "2021-06-14T14:34:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6090dd98-9154-415e-9abf-06ac7d00a653", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "hfox", + "reviewDate": "2022-06-14T02:57:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "30831a60-2195-4c24-84bd-74dfabd3cb69", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "mark42", + "reviewDate": "2022-06-20T22:34:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e48a510b-9485-4b6e-9745-046b7bd779a0", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "joshuafrazier", + "reviewDate": "2021-10-06T22:24:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "71a33033-5d01-4df7-b8c0-c267bc8a70b3", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "annwest", + "reviewDate": "2022-04-08T11:59:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "38a7eef0-9fd8-4c3f-a15d-3505556000b6", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "maria24", + "reviewDate": "2022-07-25T16:42:59", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3347f35d-53a4-4255-9d03-847632b02beb", + "productId": "3347f35d-53a4-4255-9d03-847632b02beb", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer 3000 (Steel)", + "description": "This Awesome Computer 3000 (Steel) is rated 4.6 out of 5 by 6.\n\nRated 4 out of 5 by Jim from Great Computer, Great Warranty The computer I bought 3 years ago was a little too big....Great Computer, Great Warranty The computer I bought 3 years ago was a little too big for me. Unfortunately though, it's still very portable and if you're going to buy a computer, use it!\n\nRated", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-09-26T14:18:35", + "price": 693.18, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2018-09-26T14:18:35", + "newPrice": 633.05 + }, + { + "priceDate": "2022-05-04T14:18:35", + "newPrice": 693.18 + } + ] + }, + { + "id": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Micro (Silver)", + "description": "This Awesome Speaker Micro (Silver) is constructed as low as possible, and you get the exact same design as all of the speakers you get from the standard Micro speakers. To make the Micro better, we used the same low and high power amplifier you also get from our speaker case, that comes with the speaker and the Micro and supports all of the speakers you get from", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-12-09T05:56:18", + "price": 284.78, + "stock": 4, + "priceHistory": [ + { + "priceDate": "2021-01-15T11:55:09", + "newPrice": 304.48 + }, + { + "priceDate": "2022-11-27T11:55:09", + "newPrice": 309.95 + }, + { + "priceDate": "2024-02-26T11:55:09", + "newPrice": 284.78 + } + ] + }, + { + "id": "09e9fc6e-33b2-4674-8c2d-139362ce2f88", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "hernandezmark", + "reviewDate": "2021-12-02T01:22:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "73c94bf1-5a10-42b7-b191-2178006391a9", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "harristimothy", + "reviewDate": "2022-11-27T16:55:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e9d1311d-7b08-4572-ad45-67461976cac4", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "jeremy03", + "reviewDate": "2021-04-25T23:38:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8de52ae1-ceeb-415c-8ba9-1f51f1216318", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "johnlozano", + "reviewDate": "2022-08-02T09:28:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0fec9d3d-bbdc-48b8-a188-8eef7ace4c25", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "chadmatthews", + "reviewDate": "2022-05-16T18:57:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "afd2da64-572c-45a0-8f36-0eb1eb62f4ca", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "ramirezjulie", + "reviewDate": "2021-02-14T03:27:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "30b640b7-49d9-4ef7-9b28-ff79473f8985", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "cody47", + "reviewDate": "2022-10-26T13:42:31", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b638391f-4f9e-44ff-9f74-0f7792c3bf55", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "umiranda", + "reviewDate": "2021-08-08T23:50:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6b0f9b80-1298-4551-9b6f-3218a6f24c2d", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "reyesautumn", + "reviewDate": "2021-01-15T11:55:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fd92deda-98f9-47e1-839d-35c116055396", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "wagneradam", + "reviewDate": "2021-09-29T13:36:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e236b975-0b54-4273-90ab-7e5f8f137ee3", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "derrickbaker", + "reviewDate": "2021-02-14T01:13:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6f2a0945-3f9c-4e3e-9868-c0b988a4357a", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "jeannedorsey", + "reviewDate": "2022-03-13T16:29:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f80de43b-fba6-4c76-9072-3e8822b68315", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "dhart", + "reviewDate": "2021-06-15T17:04:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "51756f78-75a7-4828-94ce-337a41f62b04", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "svargas", + "reviewDate": "2021-07-10T10:13:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4eaaea5e-3c5f-48da-9dcf-5ce3db127df0", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "baileymary", + "reviewDate": "2021-09-25T12:10:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b067de91-f9d1-40b1-8b9f-25fc65c3fb59", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "susanhayes", + "reviewDate": "2021-02-12T05:55:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1b294195-b878-49df-8a5a-1b2ed30ec84f", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "hcastaneda", + "reviewDate": "2021-08-26T01:39:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "890267d7-2fb2-4a37-86ef-a1bf7562657a", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "brett92", + "reviewDate": "2021-02-07T18:43:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Micro (Red)", + "description": "This Basic Keyboard Micro (Red) is a basic keyboard keyboard that fits in most modern computers, as well as some keyboards. It is also sometimes called the \"Universal Basic Keyboard\" in the States. It is also commonly known as the \"Classic Standard Keyboard\". For more details, see The Modern Standard Keyboard Micro\n\nStandard Keyboard\n\nStandard keyboards are often called the most advanced keyboards for gaming or using a variety of peripherals, but are less frequently used.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-11-28T20:09:23", + "price": 182.25, + "stock": 15, + "priceHistory": [ + { + "priceDate": "2021-01-02T14:00:20", + "newPrice": 180.68 + }, + { + "priceDate": "2021-12-20T14:00:20", + "newPrice": 190.86 + }, + { + "priceDate": "2022-12-07T14:00:20", + "newPrice": 189.07 + }, + { + "priceDate": "2023-01-19T14:00:20", + "newPrice": 182.25 + } + ] + }, + { + "id": "5c596fe7-2c0c-43a3-a37e-b33c1fbab072", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "breanna62", + "reviewDate": "2022-08-31T19:20:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0d24f016-0e94-4426-8f4c-538355eaf110", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mariamyers", + "reviewDate": "2021-01-02T14:00:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0802f30e-2e0e-4b88-b1be-d1435e84e580", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david35", + "reviewDate": "2021-07-07T14:41:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2a098599-313d-428e-8319-caeef46690a2", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dakota98", + "reviewDate": "2021-06-04T16:04:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "daf188dc-9496-4237-8ff9-8974c77a96b2", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "manderson", + "reviewDate": "2021-06-21T20:59:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "292171b6-575b-4509-b3d6-8e271d1c0dd4", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christian36", + "reviewDate": "2022-03-05T03:27:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "109d8e75-9020-4a5c-9c3e-1a0104d9d454", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stevenmorgan", + "reviewDate": "2022-05-31T09:23:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "549efe09-b56e-4fcc-a16c-0f56babe36b8", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hernandezmonica", + "reviewDate": "2022-12-06T05:41:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "21992b9b-41a5-45e0-8a19-1ac4e19e9b01", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "portertammy", + "reviewDate": "2021-09-26T06:32:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "43fd1469-6ae1-4ad5-afbe-9395b23b4933", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jonespaula", + "reviewDate": "2022-01-03T20:20:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "01dd9d79-930f-4a34-b3ef-02e984c30701", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michelle22", + "reviewDate": "2022-12-09T05:12:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2d40cab2-6695-430b-9013-ca2311c626d1", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pwilliams", + "reviewDate": "2021-09-23T06:17:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8fcf7376-5463-4d3a-8d20-c675b2dbbe96", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "millerashley", + "reviewDate": "2021-11-06T07:21:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e219c16d-717e-4524-aea7-da5562f12051", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "catherinewatson", + "reviewDate": "2021-07-11T23:36:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Ultra (Steel)", + "description": "This Amazing Mouse Ultra (Steel) is a great addition to any lineup for you. There are more than 6200 parts available. You can purchase this item directly from eBay, Amazon.com, or Google.\n\nAll parts are built to last. All components are machine-made. They come in the following colors: Navy, Green; Black; Grey; Red; and White. All are painted", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-12-29T04:29:08", + "price": 944.03, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-10-23T00:31:49", + "newPrice": 986.55 + }, + { + "priceDate": "2022-02-26T00:31:49", + "newPrice": 902.21 + }, + { + "priceDate": "2022-07-02T00:31:49", + "newPrice": 984.34 + }, + { + "priceDate": "2022-11-05T00:31:49", + "newPrice": 959.5 + }, + { + "priceDate": "2024-01-03T00:31:49", + "newPrice": 944.03 + } + ] + }, + { + "id": "2b0fd101-d659-42d8-b485-aeba4d942ca6", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "baldwinandrew", + "reviewDate": "2022-09-28T20:40:37", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8f012674-c9e6-4d57-84dc-5a0acde8c938", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xmiller", + "reviewDate": "2022-08-08T09:56:17", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4b4cd9e2-4e78-4694-bdce-2ce6da47f151", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "donna08", + "reviewDate": "2021-12-20T05:00:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c1cf2c39-5fdc-4aee-adbd-48056fe6d49e", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shawn96", + "reviewDate": "2022-11-01T10:42:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3ca04ebf-d970-42e7-9c58-00e5eb083616", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "penachristine", + "reviewDate": "2022-11-05T20:52:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6e50e40c-02ec-4a17-b067-a041c9c912e5", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lawrencecalvin", + "reviewDate": "2021-11-28T03:08:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1dac9ecb-e52a-4278-ace2-8a83a4d165f7", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garytaylor", + "reviewDate": "2022-09-19T03:31:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c54c13df-50a0-4877-8cae-65fc43e6f599", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachelmelton", + "reviewDate": "2021-10-23T00:31:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83db44b4-9fa2-469e-85a0-fd5d4b2c1c19", + "productId": "83db44b4-9fa2-469e-85a0-fd5d4b2c1c19", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Mini (Red)", + "description": "This Awesome Phone Mini (Red) is a bit light on detail and slightly flimsy. After replacing it, I was shocked by the lack of color. At a glance, it looked great, but if you look at the sides of and top of the phone, it appears to have been painted red and colored as well. That color should be used on phones that have the same dimensions,", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-09-24T18:32:20", + "price": 1072.07, + "stock": 78, + "priceHistory": [ + { + "priceDate": "2021-06-09T01:34:18", + "newPrice": 997.61 + }, + { + "priceDate": "2021-06-17T01:34:18", + "newPrice": 1098.22 + }, + { + "priceDate": "2021-06-25T01:34:18", + "newPrice": 985.52 + }, + { + "priceDate": "2023-01-06T01:34:18", + "newPrice": 1072.07 + } + ] + }, + { + "id": "f7c85d85-b829-4459-a900-103f58730452", + "productId": "83db44b4-9fa2-469e-85a0-fd5d4b2c1c19", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristina66", + "reviewDate": "2021-06-26T00:07:12", + "stars": 5, + "verifiedUser": false + }, + { + "id": "2831fd16-9ef3-4efa-a80a-01a898e24096", + "productId": "83db44b4-9fa2-469e-85a0-fd5d4b2c1c19", + "category": "Electronics", + "docType": "customerRating", + "userName": "beardbreanna", + "reviewDate": "2021-06-09T01:34:18", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5c52071a-37f7-44d9-811a-e50119634c9a", + "productId": "5c52071a-37f7-44d9-811a-e50119634c9a", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Black)", + "description": "This Premium Stand Micro (Black) is fully lined in place with a full set of chrome hardware accents.\n\n\nIf you ever look or shop at a new, classic home or office or if you're looking for something a little bit more traditional, here's the standard size of the Micro for the size of the desk.\n\n\nMicro is now available in our original price bracket for less than $1,000!\n\n\nThe Micro and the Micro are two major stand sizes for the current", + "countryOfOrigin": "USA", + "rareItem": true, + "firstAvailable": "2020-01-12T11:15:45", + "price": 642.44, + "stock": 70, + "priceHistory": [ + { + "priceDate": "2021-09-14T03:50:15", + "newPrice": 705.49 + }, + { + "priceDate": "2022-05-02T03:50:15", + "newPrice": 642.44 + } + ] + }, + { + "id": "9bb925cf-05d8-4ab5-a933-2fcb43abbda3", + "productId": "5c52071a-37f7-44d9-811a-e50119634c9a", + "category": "Accessory", + "docType": "customerRating", + "userName": "justin08", + "reviewDate": "2022-05-17T15:25:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a752feb9-eb04-4f6c-9658-3d81f6c6e814", + "productId": "5c52071a-37f7-44d9-811a-e50119634c9a", + "category": "Accessory", + "docType": "customerRating", + "userName": "aliciavaldez", + "reviewDate": "2021-09-14T03:50:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c69a57ac-c6b7-4609-9324-b095012550aa", + "productId": "5c52071a-37f7-44d9-811a-e50119634c9a", + "category": "Accessory", + "docType": "customerRating", + "userName": "hardingdaniel", + "reviewDate": "2022-06-22T20:03:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Super (Silver)", + "description": "This Luxe Keyboard Super (Silver) is the pinnacle of premium design features for the next generation of keyboards. This compact and stylish lightweight design perfectly matches the standard Luxe look and feel of the keys, giving you great comfort and", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-26T01:03:43", + "price": 591.48, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-01-28T00:21:18", + "newPrice": 590.0 + }, + { + "priceDate": "2021-09-09T00:21:18", + "newPrice": 545.27 + }, + { + "priceDate": "2022-04-21T00:21:18", + "newPrice": 612.18 + }, + { + "priceDate": "2022-12-01T00:21:18", + "newPrice": 610.42 + }, + { + "priceDate": "2023-08-29T00:21:18", + "newPrice": 591.48 + } + ] + }, + { + "id": "5351099c-1ddc-43d7-9406-568e4619a09b", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "donnawilliams", + "reviewDate": "2021-06-16T08:43:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a26136fd-f28c-42e6-b6e8-d8b9f08d492b", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "waltercrystal", + "reviewDate": "2021-01-28T00:21:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3edc6bd3-d645-486d-94f8-71a6033043cc", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "butlerlisa", + "reviewDate": "2022-01-02T11:47:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "01f24550-78d1-40dc-aa68-ca2027460b93", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qperez", + "reviewDate": "2021-12-12T19:44:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "da1ec4cd-261f-4072-9f65-15bd8f640bb3", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uking", + "reviewDate": "2021-05-28T04:34:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "907b2433-e89e-4181-ad1b-fba7a73a9ee4", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertsonbobby", + "reviewDate": "2021-12-15T20:39:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6bb53a7a-0f45-4c7d-8959-383ec66c4de8", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "colemanmichael", + "reviewDate": "2021-12-18T19:14:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bf3d0577-7147-4c25-8ab7-9843125b5cc5", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "solisstacy", + "reviewDate": "2022-10-28T05:44:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "80552cac-2ac8-42dd-ab73-b3267adf54ce", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bendercraig", + "reviewDate": "2021-09-25T04:11:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "31afc440-4450-4c02-a4f2-e9d2931d2197", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angela69", + "reviewDate": "2021-03-11T23:44:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cdf3b6b1-f97d-4085-85c4-e9bf5e239c9a", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scott31", + "reviewDate": "2021-07-07T19:45:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0db277bd-b1b0-4932-b4b2-d2278f60a6c9", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardcrane", + "reviewDate": "2022-01-25T08:14:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8d5cd5d9-0d2e-458d-b4ca-2b89046267fe", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tluna", + "reviewDate": "2022-03-04T10:52:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c7380ca1-cd70-4515-97f6-d2a709b5f982", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robersonanna", + "reviewDate": "2021-02-23T03:20:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c7aa7a29-169a-4557-888c-1ff3e5602c8f", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wrodriguez", + "reviewDate": "2021-11-23T03:17:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "59935e86-e4b0-4749-acbb-acd73d7c9c33", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beckryan", + "reviewDate": "2022-08-29T22:03:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ffcdb915-0dac-4c1f-9f00-1cfa909583ec", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beckerchristopher", + "reviewDate": "2022-12-01T01:16:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Micro (Black)", + "description": "This Amazing Computer Micro (Black) is a super simple computer. It's an ATmega328, which is roughly the same size as a Raspberry Pi but contains a tiny 1/2\" floppy drive. The ATmega328 is an incredibly small chip to work with in a desktop computer. With only 1 x 0.8mm RAM, you have a 3 hour game load time, the CPU in the ATmega328", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-01-18T16:39:38", + "price": 137.38, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-03-21T06:16:26", + "newPrice": 130.97 + }, + { + "priceDate": "2021-09-24T06:16:26", + "newPrice": 142.76 + }, + { + "priceDate": "2022-03-30T06:16:26", + "newPrice": 139.8 + }, + { + "priceDate": "2022-10-03T06:16:26", + "newPrice": 150.73 + }, + { + "priceDate": "2025-02-25T06:16:26", + "newPrice": 137.38 + } + ] + }, + { + "id": "b20e2f95-38b9-44e3-bfb3-52df56c37c67", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "flemingdavid", + "reviewDate": "2022-04-28T20:21:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "854a34e4-05f3-4f2f-af07-925dda3589bd", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "sherylcompton", + "reviewDate": "2022-10-05T08:01:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fbb594da-5d3c-4340-b5a9-26071e7d0ce2", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevinjackson", + "reviewDate": "2021-04-22T10:07:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "710d5b8e-84b9-498d-a877-42075ad69417", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidmendez", + "reviewDate": "2021-06-30T11:08:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3dee1112-f8f7-4e0e-9497-f99ea0be6dc3", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebecca95", + "reviewDate": "2021-10-01T13:06:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8c1bb00a-3e76-4df0-b262-82cb3b32b3e1", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "beckeranthony", + "reviewDate": "2022-08-02T21:15:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "06d6b1e0-99d8-4bb1-b1fb-47336787719e", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "brittany90", + "reviewDate": "2021-05-02T13:27:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "85950356-c41d-49b9-bede-37cb46d25a96", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "zavalaangela", + "reviewDate": "2021-09-08T10:44:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b565bf31-9d41-4a86-b8b8-1349b85f2983", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "kayla74", + "reviewDate": "2022-02-23T21:59:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c37b1e81-b086-41e3-86a7-23dc210350e1", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathandougherty", + "reviewDate": "2021-07-08T20:53:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ef928087-4057-4558-8820-dab6a4c9d971", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniemartin", + "reviewDate": "2021-03-21T06:16:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "38226c8d-1fd9-4bcd-865d-dab4c35b2b1c", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "lisa25", + "reviewDate": "2022-05-19T14:19:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Pro (Steel)", + "description": "This Basic Keyboard Pro (Steel) is like the Pro version of the Pro, except that its backlit keyboard is a different color and its buttons are a higher spec (a few keys on the left-hand side are red and green whereas others are orange).\n\n\nWith a 5 and 7-inch screen, you'll be able to run a full HD desktop PC, which isn't much, but with a 5.7-inch screen you", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-04-29T01:59:03", + "price": 901.19, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-01-30T18:30:57", + "newPrice": 954.48 + }, + { + "priceDate": "2021-12-11T18:30:57", + "newPrice": 928.5 + }, + { + "priceDate": "2022-10-22T18:30:57", + "newPrice": 865.48 + }, + { + "priceDate": "2025-01-27T18:30:57", + "newPrice": 901.19 + } + ] + }, + { + "id": "53c2978f-8e43-4699-9a73-765646d43820", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "austinzoe", + "reviewDate": "2021-10-07T07:23:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "43627826-54b7-404b-b19f-8f6c0e6ac2fc", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamnelson", + "reviewDate": "2022-08-12T21:49:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e1e62ba5-759e-4f38-9c5a-ec3340ba753a", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew13", + "reviewDate": "2021-01-30T18:30:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "015ff51d-a98e-4b56-8695-41775d52d9fd", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "torresjake", + "reviewDate": "2022-09-22T10:57:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ff44937b-e20c-4a6a-ac23-291b3dfe7ad0", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john86", + "reviewDate": "2021-09-25T03:48:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8a66725c-55e3-43db-8942-eec14442d57d", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hcurtis", + "reviewDate": "2022-10-24T17:58:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fdb1be11-0fa9-43cd-876a-b4bd6dbbdfbd", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicamoreno", + "reviewDate": "2022-01-01T02:25:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "89e69001-689d-4cd3-b934-5a6c545ac734", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dbrooks", + "reviewDate": "2022-07-14T08:21:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2619d38a-0d0e-42e7-be62-da83f41c11ca", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mitchell40", + "reviewDate": "2022-05-09T06:36:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "product", + "name": "Amazing TV Super (Black)", + "description": "This Amazing TV Super (Black) is rated 4.8 out of 5 by 4.\n\nRated 5 out of 5 by Jimy27 from I love this TV The great quality is what I was expecting from this place, not unlike the original\n\nRated 5 out of 5 by Mike from The TV and the picture are wonderful I am new to the TV and for my first time as this place I", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-09-18T00:38:45", + "price": 944.12, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-03-07T17:38:13", + "newPrice": 1009.45 + }, + { + "priceDate": "2022-11-26T17:38:13", + "newPrice": 900.11 + }, + { + "priceDate": "2024-08-07T17:38:13", + "newPrice": 944.12 + } + ] + }, + { + "id": "2ea5f7cc-0433-46a6-911a-443d1cd10677", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "hgonzales", + "reviewDate": "2021-03-19T05:48:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "07939848-edbd-4b79-9bd8-89c263ee94a5", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "isawyer", + "reviewDate": "2022-04-01T10:01:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c32069f1-e378-444b-92ce-7b66a9da85f3", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "theresagarcia", + "reviewDate": "2022-08-11T15:29:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "034a6a12-8184-437b-a0cb-a435783962e4", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "julie68", + "reviewDate": "2021-06-17T19:26:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c5bf7832-04c6-4e26-838f-c566df6cb72b", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "lauramiller", + "reviewDate": "2021-03-07T17:38:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c1d1366b-25c1-43a8-8bd9-a5e4e8792b59", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "jorgewhite", + "reviewDate": "2022-06-19T03:24:27", + "stars": 4, + "verifiedUser": false + }, + { + "id": "333bca74-153d-4bc1-b239-d07ac141aeaa", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "cwarner", + "reviewDate": "2022-11-05T08:47:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ec9dc446-f84c-4f8c-b4f8-21f9a239259e", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "candace66", + "reviewDate": "2022-11-27T13:46:17", + "stars": 4, + "verifiedUser": true + }, + { + "id": "adcd3311-dc1f-46cf-94ed-7aa098ee2837", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "ebony96", + "reviewDate": "2022-05-14T06:49:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer + (Black)", + "description": "This Amazing Computer + (Black) is an excellent example of the value that the Linux Project has put into the software development community. While there are many other excellent ways this computer may be used for a variety of purposes, it's the best way to learn and", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-04-12T02:51:24", + "price": 758.67, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-01-27T19:27:54", + "newPrice": 801.49 + }, + { + "priceDate": "2021-09-12T19:27:54", + "newPrice": 691.2 + }, + { + "priceDate": "2022-04-28T19:27:54", + "newPrice": 818.83 + }, + { + "priceDate": "2022-12-12T19:27:54", + "newPrice": 730.43 + }, + { + "priceDate": "2023-09-03T19:27:54", + "newPrice": 758.67 + } + ] + }, + { + "id": "64ec3547-4e25-4859-827f-71af7da6a6e5", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "colemanthomas", + "reviewDate": "2021-07-13T01:47:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "62f2682a-c8b0-47e1-9721-3d64991a2727", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael00", + "reviewDate": "2021-10-16T11:26:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "86c71da3-65b1-48e6-a1ad-5f0579840e8b", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "colleen61", + "reviewDate": "2022-03-23T16:53:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2cde5824-78a8-47b6-b2af-6ecdda902110", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "qlewis", + "reviewDate": "2021-01-27T19:27:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4071ff67-8f3a-4483-8611-f6b838ecbf78", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "burkekathy", + "reviewDate": "2021-12-18T13:06:44", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7c573718-2f2a-41a4-81d6-2742355e6cf9", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "kennethwinters", + "reviewDate": "2021-07-14T19:53:27", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1d2df88a-16a1-457b-b2bb-d72c496c826a", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "benjamin36", + "reviewDate": "2021-05-08T08:13:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f5bb523f-8d4b-4381-b739-dc2f1b8e23b2", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "ccollins", + "reviewDate": "2022-12-13T14:48:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6dcf1c6b-f94d-4a9c-999c-d649f5eb252c", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "heather82", + "reviewDate": "2022-02-18T18:02:30", + "stars": 5, + "verifiedUser": false + }, + { + "id": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "productId": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Ultra (Silver)", + "description": "This Amazing Filter Ultra (Silver) is a new filter technology that looks and operates more unlike anything you'd see in a commercial product. It consists of two layers of titanium coated aluminium oxide that blend together and give this ultra filter the texture and clarity. It is based upon the U-", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-22T17:33:25", + "price": 206.81, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2022-02-04T20:02:14", + "newPrice": 196.65 + }, + { + "priceDate": "2022-04-14T20:02:14", + "newPrice": 210.51 + }, + { + "priceDate": "2022-06-22T20:02:14", + "newPrice": 206.41 + }, + { + "priceDate": "2022-08-30T20:02:14", + "newPrice": 201.63 + }, + { + "priceDate": "2023-12-16T20:02:14", + "newPrice": 206.81 + } + ] + }, + { + "id": "682948b3-005f-46ea-bf33-e96ea7e39f73", + "productId": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "category": "Other", + "docType": "customerRating", + "userName": "cranecheryl", + "reviewDate": "2022-08-31T11:50:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "610998d1-53be-4fa4-a778-98451901183b", + "productId": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "category": "Other", + "docType": "customerRating", + "userName": "meghan77", + "reviewDate": "2022-02-04T20:02:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a6593cf8-b4d5-4c75-9507-ca3530017d99", + "productId": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "category": "Other", + "docType": "customerRating", + "userName": "usanders", + "reviewDate": "2022-02-26T09:01:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse 3000 (Black)", + "description": "This Premium Mouse 3000 (Black) is available in a Limited Edition from Mango. They came with a 4\" wide and 6\" height cap so they have ample room", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-01-05T21:37:29", + "price": 121.07, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-03-06T11:10:57", + "newPrice": 125.69 + }, + { + "priceDate": "2021-03-11T11:10:57", + "newPrice": 121.07 + } + ] + }, + { + "id": "d87bd613-bf52-4a34-a587-ea177301faeb", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vpalmer", + "reviewDate": "2022-07-06T05:57:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d0863315-791d-47dc-8d4f-30a0bc1ab70b", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "samanthaknight", + "reviewDate": "2021-08-21T18:54:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bd03b0bf-f603-424b-8635-83dde5fc11df", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sherry69", + "reviewDate": "2022-10-22T23:32:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3f3f47fe-ddaf-4259-ab40-6b4a209cb4a7", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessefields", + "reviewDate": "2022-01-18T16:16:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5a9aebe0-4f02-4340-b39c-14e401cb0117", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fhatfield", + "reviewDate": "2021-03-06T11:10:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9f74e66f-4564-45dd-a62f-1f4416018c29", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fieldsjean", + "reviewDate": "2022-03-03T05:52:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0afbdc79-92d9-4008-b98b-e00c1adc0a8b", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsmindy", + "reviewDate": "2022-05-05T16:20:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Silver)", + "description": "This Amazing Keyboard Ultra (Silver) is available from Amazon and other retailers.\n\nThis Ultra Keyboard is designed to be as fast and as powerful as all existing Super Nintendo keyboards. With the 3.4GHz Cortex-A7 processor, this Super Nintendo laptop is ready to challenge the powerful but simple-to-use Nintendo Nintendo Classic. With an", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-05-16T15:53:41", + "price": 1015.89, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-02-06T09:34:38", + "newPrice": 1074.67 + }, + { + "priceDate": "2021-09-19T09:34:38", + "newPrice": 969.98 + }, + { + "priceDate": "2022-05-02T09:34:38", + "newPrice": 930.57 + }, + { + "priceDate": "2022-12-13T09:34:38", + "newPrice": 1072.67 + }, + { + "priceDate": "2025-05-13T09:34:38", + "newPrice": 1015.89 + } + ] + }, + { + "id": "08fde622-40c4-4293-8baa-70ad7545b8ab", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mcculloughlaura", + "reviewDate": "2021-02-27T22:04:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cddd6417-a3ae-4651-94b5-a315811b2a22", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amarshall", + "reviewDate": "2021-07-09T04:26:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c301322d-39cf-480d-ade9-20d680c172de", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "howardamanda", + "reviewDate": "2021-05-04T01:26:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f5a3f5b6-d85b-499d-a5e0-19f8ac88ba1e", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anelson", + "reviewDate": "2021-09-26T19:22:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1b900ce9-a1af-4d05-82b3-08ea96e1756d", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisarobertson", + "reviewDate": "2021-10-05T09:40:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7762af80-9191-4d5a-ab45-50383030c423", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dustin66", + "reviewDate": "2021-06-14T18:49:12", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f8c7b054-6e05-436f-9c84-66ac2c3c15c4", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frankparker", + "reviewDate": "2021-02-06T09:34:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cdd72593-818a-41e2-b3d5-84f32732431e", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "troystokes", + "reviewDate": "2021-06-28T20:33:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "466b1c9c-cd43-4fe4-9f2d-81859e6a48ce", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "george40", + "reviewDate": "2022-03-18T09:16:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "37e11827-dedc-4c8e-9a3f-25a75bdb70fe", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "durhamjennifer", + "reviewDate": "2022-03-02T02:15:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4bef399b-3a12-439d-8cf1-ae88e47c39aa", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michaelanderson", + "reviewDate": "2022-12-15T22:01:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9438f819-2c3d-47ba-9736-006a37b9865d", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charles87", + "reviewDate": "2021-02-17T00:16:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "25945d21-69e6-4e24-ad34-b73adf9f2738", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashleyrogers", + "reviewDate": "2021-06-17T17:54:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d1a2c150-6d92-4e72-ac83-ab6e3ce3f30b", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carrielopez", + "reviewDate": "2021-02-09T04:31:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0f0362ed-7a7a-40f8-9aee-9925b92f7657", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zacharychavez", + "reviewDate": "2021-04-28T03:00:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Steel)", + "description": "This Amazing Keyboard Ultra (Steel) is just as good as it sounds and is much cheaper than your normal keyboard. You can purchase it for $249.95 but for reference, that price includes the whole setup.\n\nFor $279.05 your first order can ship at no extra cost, and you'll get a key", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-07-27T19:53:18", + "price": 926.77, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-01-17T14:18:11", + "newPrice": 902.23 + }, + { + "priceDate": "2021-09-10T14:18:11", + "newPrice": 907.03 + }, + { + "priceDate": "2022-05-04T14:18:11", + "newPrice": 904.03 + }, + { + "priceDate": "2022-12-26T14:18:11", + "newPrice": 988.8 + }, + { + "priceDate": "2024-02-25T14:18:11", + "newPrice": 926.77 + } + ] + }, + { + "id": "85753aa1-530e-4878-a88e-64375279903a", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alexandra55", + "reviewDate": "2021-11-04T20:48:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3d8e405d-d376-4c0f-8dea-42743dcc9799", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steven20", + "reviewDate": "2022-02-13T01:38:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4beb2ae1-3840-46e7-8e41-9f0079722117", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evillarreal", + "reviewDate": "2022-11-14T04:39:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "28fc606a-6115-4a17-bc3c-58eb0be9a7e7", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bradleyhernandez", + "reviewDate": "2022-04-24T13:06:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "30da95bf-42b6-44d5-9823-740a6cf14549", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harrisonemily", + "reviewDate": "2021-12-08T22:26:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f3eb060d-c795-405b-905f-9313fea7ab6a", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sshannon", + "reviewDate": "2022-09-27T12:07:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "35c7b65e-8e0a-4623-b823-a4fd4c108361", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "upham", + "reviewDate": "2021-11-29T04:04:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8b676d78-9d46-496e-bb20-68f6365d4571", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertsimpson", + "reviewDate": "2022-10-13T08:59:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b4ea814c-8edf-4be5-af05-69254e73b3f4", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "houstonjames", + "reviewDate": "2021-01-17T14:18:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e9b5ff27-5e03-4bdc-b5cc-183659ca1e80", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashley04", + "reviewDate": "2021-03-03T14:59:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dc401c7c-c1ed-42bb-900a-ebe314cb339f", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robinwebb", + "reviewDate": "2021-10-25T21:12:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ef0e18b1-98c0-4110-8f31-65c808b98084", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evansnicole", + "reviewDate": "2022-06-14T23:40:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a3ac41a5-c199-40a6-a9e3-c04d377a4465", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paul27", + "reviewDate": "2021-05-06T20:50:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76606cc0-2c60-4d4f-85ca-5661428cbb51", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joseph36", + "reviewDate": "2022-02-02T01:25:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a2da8710-d21d-43d7-8834-a686ada176e6", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amygreen", + "reviewDate": "2021-04-15T05:00:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aa88f14b-d187-4431-9889-ba89d4c448fd", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davisjames", + "reviewDate": "2022-02-22T08:16:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7255e843-56e1-4aed-8398-26da360e7ba7", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomaspatrick", + "reviewDate": "2021-11-11T10:30:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6f8bf3c7-3ff0-4408-8220-ea0fd2875142", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "meganjensen", + "reviewDate": "2022-12-27T18:10:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Super (Silver)", + "description": "This Amazing Keyboard Super (Silver) is available in Silver for $39.99 (without purchase).\n\nBlack - Comes with its own logo.\n\nBlack - Comes with a brand new LED cover.\n\nBlack - Comes with an awesome mini usb stick charger.\n\nWhite - Comes with a white version of the Samsung Galaxy Note 7.\n\nNote's Touchscreen Keyboard and Powerplay\n", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-01-14T14:55:13", + "price": 518.33, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-07-10T09:59:54", + "newPrice": 567.69 + }, + { + "priceDate": "2022-03-03T09:59:54", + "newPrice": 490.91 + }, + { + "priceDate": "2022-10-25T09:59:54", + "newPrice": 513.25 + }, + { + "priceDate": "2024-06-30T09:59:54", + "newPrice": 518.33 + } + ] + }, + { + "id": "c93c1d99-e98d-4f86-a2f7-26ee05ec2dee", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dhorn", + "reviewDate": "2022-10-26T03:25:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "33897e62-eed5-4b71-9735-c50e8ab008b3", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tuckerlaura", + "reviewDate": "2021-08-03T00:47:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "62269e41-aa38-4456-b6b2-14d0e47f0d1c", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "krista08", + "reviewDate": "2022-04-07T03:37:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e58858e1-152d-4fce-a2d2-173926d1c6a4", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathleenparker", + "reviewDate": "2021-11-23T20:01:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "67fdeda0-e7a3-4ed7-b32a-30a82eb25ed6", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jsparks", + "reviewDate": "2021-07-10T09:59:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b6615bce-0614-4d18-85e6-a52a78fb15cc", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rkeith", + "reviewDate": "2021-12-07T01:24:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "74e65166-5fe0-4c73-90ad-2b738da94497", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maria89", + "reviewDate": "2021-08-24T09:03:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Black)", + "description": "This Basic Speaker Mini (Black) is rated 4.7 out of 5 by 486.\n\nRated 5 out of 5 by Svee from Beautiful item This item", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-08-12T02:59:45", + "price": 1096.74, + "stock": 1, + "priceHistory": [ + { + "priceDate": "2021-02-10T14:05:18", + "newPrice": 1122.99 + }, + { + "priceDate": "2021-07-29T14:05:18", + "newPrice": 1053.42 + }, + { + "priceDate": "2022-01-14T14:05:18", + "newPrice": 1073.64 + }, + { + "priceDate": "2022-07-02T14:05:18", + "newPrice": 1068.42 + }, + { + "priceDate": "2022-12-18T14:05:18", + "newPrice": 1199.41 + }, + { + "priceDate": "2023-05-03T14:05:18", + "newPrice": 1096.74 + } + ] + }, + { + "id": "b17126d7-1317-4991-ae1a-ae97e0dbe646", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "belindaarnold", + "reviewDate": "2022-03-01T14:29:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "630bacaa-0b2c-4194-8f1e-da174742dcde", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "brownamanda", + "reviewDate": "2022-01-25T17:31:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c43c99aa-8c32-4883-8c37-ef71ff43b1f3", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "lopezashley", + "reviewDate": "2022-08-02T11:47:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3f827d59-4173-4e1f-bb7f-3aa4cf53c2d9", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "jrodriguez", + "reviewDate": "2022-01-20T14:31:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "acc944d8-4262-4594-b627-2c9a3bb6acf4", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "ashley79", + "reviewDate": "2022-09-02T06:38:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e6d5c780-9604-4920-943e-e55cf06a75ca", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "kingseth", + "reviewDate": "2022-07-04T02:06:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c1eb6260-511b-4cd3-98db-5e0929b13c9c", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "caroldixon", + "reviewDate": "2021-08-24T22:47:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8b566894-d6c7-4969-a5d4-45205b08823d", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "allenjohn", + "reviewDate": "2022-07-07T06:38:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2d8e31e5-f15a-4fd2-81bd-b7464f9ede03", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "douglasmichael", + "reviewDate": "2022-09-12T22:55:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "84f0f72b-56ec-4a27-8f23-83a760ee6ae5", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "michaeldavidson", + "reviewDate": "2022-10-03T15:56:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4db7b1a3-6f3e-4a06-bd8c-b1cc04c7a294", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "jimmy87", + "reviewDate": "2021-02-10T14:05:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f66d765d-b998-4085-85f6-f1b6785d3a1d", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "johngarcia", + "reviewDate": "2021-02-12T03:20:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b15bea6c-2247-4f16-9ca4-b61182b26613", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "weissisabel", + "reviewDate": "2021-02-17T21:23:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "402f810d-78a9-4295-8f47-69f034020d47", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "calebmartin", + "reviewDate": "2022-05-03T14:50:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6ab85309-94ae-44e8-862d-bedf86d15741", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "sruiz", + "reviewDate": "2022-01-15T00:11:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a57c11db-992f-4de8-8866-06f3c9fe4c82", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "whitney25", + "reviewDate": "2022-12-21T23:33:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "50beb6f9-c46c-4201-a339-fce4684cecb5", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "barrettaaron", + "reviewDate": "2021-11-12T16:48:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Mini (Black)", + "description": "This Amazing Computer Mini (Black) is powered by a Intel Core i7 3200QM processor with 16MB of RAM and a 512GB SSD. It features a 1920X1080 IPS LCD panel with 3.5mm capacitive touch display (PVD), a 5K display with a 2,560×1,000 pixel resolution, 64GB/s solid state drive for an additional $200, 1TB hard drive for $100", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-07-03T04:08:49", + "price": 263.55, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-01-15T03:58:05", + "newPrice": 239.35 + }, + { + "priceDate": "2021-09-08T03:58:05", + "newPrice": 255.99 + }, + { + "priceDate": "2022-05-02T03:58:05", + "newPrice": 274.57 + }, + { + "priceDate": "2022-12-24T03:58:05", + "newPrice": 262.77 + }, + { + "priceDate": "2024-03-10T03:58:05", + "newPrice": 263.55 + } + ] + }, + { + "id": "dd09fc79-d4bf-45b4-9ecc-1f3b3a993099", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "vwhite", + "reviewDate": "2021-04-08T17:26:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "883cbd51-bd77-4589-8e79-e249476efcb6", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "maryhubbard", + "reviewDate": "2021-12-26T19:24:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7707c138-1ff6-493b-bedf-130d68ca0dc9", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "ycoleman", + "reviewDate": "2021-04-07T12:14:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b700fdf5-e950-47b0-8edd-c4877e84659c", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "huertamary", + "reviewDate": "2021-09-10T12:54:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "90bbf7f5-e37d-471e-994f-35a8fda4d250", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifermolina", + "reviewDate": "2021-09-28T11:21:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bde1d431-406c-41b1-ba3d-7fd522ebae26", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "alan79", + "reviewDate": "2022-04-05T19:24:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "78a06222-a3cd-4f4c-8850-3b74e4dbb049", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "ktaylor", + "reviewDate": "2022-05-10T05:50:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "71ac6d99-07b7-4cd8-87ed-b7003be7e1f8", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert44", + "reviewDate": "2021-01-15T03:58:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "96c3da3b-e559-4de7-bffd-472a0205fb98", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "susancallahan", + "reviewDate": "2022-01-20T06:56:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f53d54a9-2667-40cf-a5b8-bebe453d89e0", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeffrey03", + "reviewDate": "2022-07-20T07:34:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6e57ebb7-4c98-4dbd-97ce-cf1cba6895a3", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "theodorehopkins", + "reviewDate": "2022-12-27T01:46:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e104bf43-ebcb-4b28-812f-d66c6d49ab7d", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "amyschmidt", + "reviewDate": "2021-12-07T21:58:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3f71b058-4477-433f-a3d2-187acdf9dd47", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "alec56", + "reviewDate": "2022-03-13T08:04:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7e495d16-a879-4473-aaaf-315576007538", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "bellheather", + "reviewDate": "2022-06-22T05:59:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4ae45c28-b0aa-425e-b2e0-f32d600c7c79", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "edwardsmelissa", + "reviewDate": "2021-09-23T20:48:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "df44a026-c591-494f-a387-a29dc645477c", + "productId": "df44a026-c591-494f-a387-a29dc645477c", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer + (Red)", + "description": "This Basic Computer + (Red) is a computer that runs Windows. It is a full-speed digital computer made for making up games and performing basic tasks such as writing scripts. If you do not wish to install Python (or other programming language) on your computer, all necessary Python programs for this Basic Computer are available on an additional download link. You can download or open up the Python installation files. The Python interpreter is a special", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-01-26T11:07:00", + "price": 756.17, + "stock": 42, + "priceHistory": [ + { + "priceDate": "2021-10-30T23:38:01", + "newPrice": 700.11 + }, + { + "priceDate": "2021-11-11T23:38:01", + "newPrice": 811.11 + }, + { + "priceDate": "2021-11-23T23:38:01", + "newPrice": 801.78 + }, + { + "priceDate": "2021-12-05T23:38:01", + "newPrice": 723.35 + }, + { + "priceDate": "2021-12-17T23:38:01", + "newPrice": 801.26 + }, + { + "priceDate": "2022-07-07T23:38:01", + "newPrice": 756.17 + } + ] + }, + { + "id": "08402a13-aa03-43b9-92cd-dba1a4255495", + "productId": "df44a026-c591-494f-a387-a29dc645477c", + "category": "Electronics", + "docType": "customerRating", + "userName": "robinsonmark", + "reviewDate": "2021-12-21T11:36:06", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5589c26d-489a-4e4b-865e-c37b9bdd1da2", + "productId": "df44a026-c591-494f-a387-a29dc645477c", + "category": "Electronics", + "docType": "customerRating", + "userName": "whitealexander", + "reviewDate": "2021-10-30T23:38:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Pro (Red)", + "description": "This Amazing Filter Pro (Red) is sold separately.\n\nSASIS-U4 (SAS1, $22.00)\n\n\"The SAS-U4 is your new-look Filter Pro!\" \"The SAS", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-07-15T12:22:57", + "price": 952.35, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-02-12T06:44:40", + "newPrice": 911.39 + }, + { + "priceDate": "2021-09-27T06:44:40", + "newPrice": 1000.45 + }, + { + "priceDate": "2022-05-12T06:44:40", + "newPrice": 981.69 + }, + { + "priceDate": "2022-12-25T06:44:40", + "newPrice": 880.09 + }, + { + "priceDate": "2023-03-02T06:44:40", + "newPrice": 952.35 + } + ] + }, + { + "id": "24031e76-06c1-41b3-9320-017665fb3bee", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "kingerika", + "reviewDate": "2021-10-27T00:17:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "05b92f70-94d3-4c3f-8a36-aec5437315bc", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "thomaswilliam", + "reviewDate": "2022-08-05T07:42:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cd42b4f5-3cb8-4543-8982-534ead79dd1b", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "theodoreramirez", + "reviewDate": "2022-05-24T02:05:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bc80c148-52c7-4f96-a31b-758590c1a4cc", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "susangarcia", + "reviewDate": "2022-02-05T05:51:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "464268de-407f-4180-a7c1-ea5436a35661", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "robert82", + "reviewDate": "2021-08-26T11:56:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1c340e19-0c6d-4bd5-a2e9-75ea6f83dab4", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "brandonwilkerson", + "reviewDate": "2021-02-14T04:32:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "72ae5167-6001-43b7-96a1-7f7afe6b1331", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "vaughanamber", + "reviewDate": "2021-12-04T14:13:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "31ed5ca4-55bd-451c-97e1-df3438e36acb", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "melissa10", + "reviewDate": "2021-02-12T06:44:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "64e8413e-74f1-42f0-8cfe-904acd83f234", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "amymorales", + "reviewDate": "2022-11-05T03:48:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2c8423da-3b96-41a2-a8f0-739c1b86d03e", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "anthony60", + "reviewDate": "2022-06-21T20:31:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "885c8932-7b47-4eaa-8ec1-8a03b372189c", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "cassandranielsen", + "reviewDate": "2022-06-01T03:53:55", + "stars": 5, + "verifiedUser": false + }, + { + "id": "3ad36ce9-de3d-4e1a-a557-1b0ffa14e4d6", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "imcgee", + "reviewDate": "2022-12-27T05:57:38", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3d2ae163-6157-46f2-b0ab-916cad2d7f13", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "gmurphy", + "reviewDate": "2021-08-22T00:28:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "34a86991-0981-4b5f-a42f-b9cde1bb7c94", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "joseph27", + "reviewDate": "2022-02-01T11:00:40", + "stars": 5, + "verifiedUser": true + }, + { + "id": "c6fc3a17-0273-4efe-b8ee-e97cdaa5ea75", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "linda81", + "reviewDate": "2022-10-14T09:18:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "productId": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Silver)", + "description": "This Awesome Stand + (Silver) is now purchasable from the following merchants: Newegg, Kmart, Walmart, eBay and others. This product is not eligible for any other programs and promotions.\n\nCheck out our Product Page before purchasing.", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-01-17T18:32:56", + "price": 1084.19, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2022-03-09T01:42:54", + "newPrice": 1039.84 + }, + { + "priceDate": "2022-05-31T01:42:54", + "newPrice": 986.12 + }, + { + "priceDate": "2022-08-22T01:42:54", + "newPrice": 992.37 + }, + { + "priceDate": "2022-11-13T01:42:54", + "newPrice": 985.55 + }, + { + "priceDate": "2023-05-12T01:42:54", + "newPrice": 1084.19 + } + ] + }, + { + "id": "60eb5495-d346-431a-9048-d205f7bb541e", + "productId": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasjuarez", + "reviewDate": "2022-09-14T20:42:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "16df5637-a955-442f-b191-a820f84d07cc", + "productId": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "category": "Accessory", + "docType": "customerRating", + "userName": "john84", + "reviewDate": "2022-11-13T12:26:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "04414d59-3928-4636-b493-9ed3d30ff173", + "productId": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "category": "Accessory", + "docType": "customerRating", + "userName": "opope", + "reviewDate": "2022-03-09T01:42:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Pro (Gold)", + "description": "This Awesome Computer Pro (Gold) is a fully-functioning system running Windows Server 2010 R2. The graphics and performance are absolutely spectacular. I've used Vista and 8.4 to test the hardware and I'll add my own. Note that the new feature", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-07-21T18:23:34", + "price": 279.55, + "stock": 51, + "priceHistory": [ + { + "priceDate": "2021-03-24T14:30:40", + "newPrice": 274.87 + }, + { + "priceDate": "2023-01-02T14:30:40", + "newPrice": 279.55 + } + ] + }, + { + "id": "b9e4acbf-3b66-4d1e-8843-b742cb7e4286", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "websterjeffrey", + "reviewDate": "2022-09-07T00:23:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e98ef13a-0f9a-4f94-a3f2-6961c763f606", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "williambass", + "reviewDate": "2021-03-24T14:30:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e3eaec69-52f3-4ca8-9b47-ef53d0894e01", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "meadowsamy", + "reviewDate": "2021-12-08T01:29:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c0616021-0f13-448a-9c7f-44caa383f56b", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephenscott", + "reviewDate": "2022-07-16T05:19:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "687a5d03-5344-450a-b3e3-84d5a3eff2ab", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "bradleyjames", + "reviewDate": "2022-07-16T08:03:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c64c3ed0-41c6-4551-b418-0d61873cc36c", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "dakota37", + "reviewDate": "2021-04-26T05:17:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "655cacaf-a618-4516-abfb-5153697962a0", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcdonaldjoshua", + "reviewDate": "2021-09-25T03:29:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f9fef3a7-9d79-47f6-bbe8-32ccbc481887", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamesaguilar", + "reviewDate": "2021-05-27T03:02:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1b00942d-8966-470b-9dea-488c54e3a96f", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "hjohnson", + "reviewDate": "2022-07-28T10:33:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "product", + "name": "Awesome TV Super (Gold)", + "description": "This Awesome TV Super (Gold) is rated 4.9 out of 5 by 6.\n\nRated 5 out of 5 by Anonymous from I loved this TV after reading reviews of previous TV's! And this is what really made me enjoy the 4D television!! If you're into the concept of ultra bright color photography, this TV has it all!!! It is such an obvious choice for the price because", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-02-24T21:00:29", + "price": 560.16, + "stock": 85, + "priceHistory": [ + { + "priceDate": "2021-01-18T13:35:32", + "newPrice": 585.47 + }, + { + "priceDate": "2021-06-14T13:35:32", + "newPrice": 538.07 + }, + { + "priceDate": "2021-11-08T13:35:32", + "newPrice": 595.24 + }, + { + "priceDate": "2022-04-04T13:35:32", + "newPrice": 573.24 + }, + { + "priceDate": "2022-08-29T13:35:32", + "newPrice": 581.52 + }, + { + "priceDate": "2023-02-06T13:35:32", + "newPrice": 560.16 + } + ] + }, + { + "id": "fff6fbec-df24-4502-b38b-19897570a09a", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "thomasmonica", + "reviewDate": "2021-10-31T16:34:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6d7da9cc-1bcd-41fb-9ec8-2cb8361b9cc7", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "jonathan55", + "reviewDate": "2021-03-08T13:15:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9e3913f6-ab01-44d7-aa20-d7b8b94e3e12", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "barronjohn", + "reviewDate": "2022-06-17T17:53:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "74720b2f-521d-4d40-be6f-9173a59f5a32", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "meagan69", + "reviewDate": "2022-07-03T21:20:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a5bf5e48-c9a1-4134-b974-4a18832cb347", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "lewismargaret", + "reviewDate": "2022-08-30T23:29:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "91a9ccbc-74d6-44d9-890e-192f13f8fae0", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "onash", + "reviewDate": "2021-01-18T13:35:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7ce24810-a893-4976-ba31-5e7a86405b7a", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "kellylori", + "reviewDate": "2022-02-21T08:48:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "50cc2eb9-9f0b-4f94-9fb9-ebf78c95debd", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "jonathanpratt", + "reviewDate": "2022-08-20T13:22:46", + "stars": 5, + "verifiedUser": true + }, + { + "id": "76d2ae8d-2c2b-4937-8bf2-d1c5024cec7e", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "adamsjohnny", + "reviewDate": "2021-07-23T17:41:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2a920ca4-5016-4a80-87e1-6e047840d1b0", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "masonbrittany", + "reviewDate": "2021-10-20T04:00:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5dc804af-fe68-48b9-b144-6e1f3453f452", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "judylopez", + "reviewDate": "2021-05-06T09:01:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6b52c1ca-120c-455b-867b-e99e529a0167", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "harrisbrian", + "reviewDate": "2021-11-16T02:41:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Mini (Gold)", + "description": "This Amazing Stand Mini (Gold) is an award-winning stand designed by Bowers & Wilkins that is sold to our customer base in a single order of 1000. This unique and unique product can be ordered using our online shipping service.\n\nProduct Specifications Material\n\nFounded and maintained by James Sutter\n\nBrand: Bowers & Wilkins\n\nYear: 2011\n\nModel: N5S1\n\n", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-12-31T16:54:06", + "price": 119.63, + "stock": 75, + "priceHistory": [ + { + "priceDate": "2021-04-23T04:44:43", + "newPrice": 114.72 + }, + { + "priceDate": "2022-11-07T04:44:43", + "newPrice": 127.51 + }, + { + "priceDate": "2025-03-31T04:44:43", + "newPrice": 119.63 + } + ] + }, + { + "id": "d4be120a-5c4f-445f-8b47-03bf91420f29", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "ysilva", + "reviewDate": "2022-09-02T06:07:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9671b8ef-24e2-4e9c-87f3-f16d0906fb18", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "ljuarez", + "reviewDate": "2022-11-07T21:11:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2fccd097-8e9f-487e-a6c4-dffa4821b6be", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasscott", + "reviewDate": "2021-08-22T06:01:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "52cfa823-a3dc-462d-a13e-aacab99b233b", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissa51", + "reviewDate": "2021-07-19T04:36:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d8a57ac3-152f-4a36-9746-0b54a83baa24", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "mckinneymatthew", + "reviewDate": "2022-03-27T14:03:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "65def82d-b6df-4de6-b088-69cad3d62dbb", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "davidlewis", + "reviewDate": "2021-04-23T04:44:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "07b81c0c-9d6f-4beb-9dce-8bed3816494e", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer53", + "reviewDate": "2021-07-24T22:21:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "68192ffb-6dfb-4cf0-8797-07e60938ae83", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "davidvaldez", + "reviewDate": "2022-08-17T12:58:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cb210927-fff9-4efb-8b2e-71ce13f07a92", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "hardychristine", + "reviewDate": "2021-07-13T07:53:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d2e84291-1270-4bc8-b3b3-908b054592ff", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "daisybailey", + "reviewDate": "2021-07-11T09:17:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "de7f3294-9e54-4a2c-bb32-c3c812ff2d5b", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamwilliams", + "reviewDate": "2022-03-05T07:35:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "babf5c4d-16cd-4110-8cfe-0a6fa67601db", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "coleveronica", + "reviewDate": "2022-07-14T12:29:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "90d75e23-b305-4d32-bda2-52287e23163c", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Black)", + "description": "This Premium Computer Ultra (Black) is a 4K Ultra HD display and the Ultra-HD Premium version of the original system. The Premium model utilizes a full-color display with a resolution of 1920x1080. This is a 4K model, but is designed to be used with all 5 major gaming monitors. The Premium model does not offer an additional computer charger.\n\nSpecs Processor: Microsoft Surface Pro 4, with Intel® Core™", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-14T11:57:17", + "price": 826.21, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-04-02T10:17:09", + "newPrice": 827.47 + }, + { + "priceDate": "2022-12-18T10:17:09", + "newPrice": 840.69 + }, + { + "priceDate": "2024-06-15T10:17:09", + "newPrice": 826.21 + } + ] + }, + { + "id": "f2ef960f-24ba-46ea-bff7-8becb895721d", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristine65", + "reviewDate": "2022-10-22T13:39:34", + "stars": 4, + "verifiedUser": true + }, + { + "id": "338b1215-e955-4049-88b5-f086c459316e", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "charlesjohnson", + "reviewDate": "2022-09-28T02:30:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fbf14bea-9c5f-4adc-b853-bef8806b4c9a", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniepham", + "reviewDate": "2021-09-08T04:14:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "77b0c0ca-2e64-472f-852a-b23b68ba255b", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "nancy13", + "reviewDate": "2022-01-05T08:41:51", + "stars": 4, + "verifiedUser": true + }, + { + "id": "72ba3704-df16-41fa-bb3c-ae36e96e9eee", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "amberstewart", + "reviewDate": "2022-10-08T15:51:39", + "stars": 5, + "verifiedUser": true + }, + { + "id": "dd1f7da1-76ae-498f-bd58-4a33f5e6e6c2", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "antoniohood", + "reviewDate": "2022-03-09T18:25:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "00dd6e74-e27c-4db9-ae9a-48eb90fbfe08", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "ellisjamie", + "reviewDate": "2022-02-15T04:17:47", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4c95ba7c-bf7e-4dae-84b7-ac3fd07040c8", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "justingordon", + "reviewDate": "2021-04-02T10:17:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98beb2d5-15a1-4335-b54c-10040dd52bba", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "longdillon", + "reviewDate": "2022-12-18T23:09:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ef3f67ec-3115-4ca0-a487-8fb4eb731002", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "simpsontammy", + "reviewDate": "2021-06-26T03:21:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Ultra (Silver)", + "description": "This Premium Keyboard Ultra (Silver) is now available at Amazon.com here.\n\n\nIt's been six months since we launched a fully custom-designed,", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-02-22T02:21:07", + "price": 656.83, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2021-03-24T07:17:21", + "newPrice": 680.07 + }, + { + "priceDate": "2022-02-05T07:17:21", + "newPrice": 614.1 + }, + { + "priceDate": "2022-12-20T07:17:21", + "newPrice": 704.05 + }, + { + "priceDate": "2025-03-02T07:17:21", + "newPrice": 656.83 + } + ] + }, + { + "id": "deb5c8b0-52ef-4fc5-a8ef-2b9c195380bf", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maureen09", + "reviewDate": "2021-04-19T07:27:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "86fa16e7-a12e-4ee1-b0f0-9f7f60679497", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pamelaroberts", + "reviewDate": "2022-11-30T13:56:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2fff5c54-38e3-45f0-9f2e-03343a531d94", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jodi16", + "reviewDate": "2022-07-20T09:19:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "055af414-ab99-40dd-945c-356a5e057de2", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cjohnson", + "reviewDate": "2022-05-20T06:13:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1183fca0-3e5a-474f-836e-013086697b98", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shawnjames", + "reviewDate": "2022-07-28T22:49:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6b60d17e-f91f-4b29-a218-7704434fd8cb", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eelliott", + "reviewDate": "2021-04-29T18:27:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "879db9ca-de9f-4e29-b723-7a7ed3cb1b7a", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hopkinscalvin", + "reviewDate": "2021-10-18T16:06:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1427f87c-4816-41b8-a005-d07a2c265703", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maria08", + "reviewDate": "2021-06-04T14:30:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "272f911f-3f68-421f-a53c-fd9c6671f5ed", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paul84", + "reviewDate": "2021-07-03T09:18:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "48b411ee-d82f-4306-979f-de6c8d704bc7", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carriecarr", + "reviewDate": "2022-12-05T15:25:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a1ee23a7-bc55-4f1d-85d5-4bf4ce9ae72c", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsondeborah", + "reviewDate": "2021-12-06T07:41:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e950cdba-3c50-40e0-8431-4706f103c7ae", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnwilson", + "reviewDate": "2022-12-20T07:54:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "58aaed01-e6b5-40ca-a057-0a63020c232e", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nyoung", + "reviewDate": "2021-09-24T07:18:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a7af8d29-f356-41ca-be0f-e955607ec553", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "drakesteven", + "reviewDate": "2022-04-17T23:16:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0af96d5a-889a-4101-a989-4f841851748f", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wadecrystal", + "reviewDate": "2022-09-28T11:00:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c8a23bc6-f469-46f4-83d9-be623840ea17", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pburnett", + "reviewDate": "2021-03-24T07:17:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse 3000 (Silver)", + "description": "This Basic Mouse 3000 (Silver) is sold in 3 different colors: red (silver model) or blue (white model)\n\nMouse Backspace Mouse 2200 (Silver) is sold in 3 different colors: red (silver model) or blue (white model)\n", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-03-20T10:49:12", + "price": 222.98, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-02-12T14:40:30", + "newPrice": 211.62 + }, + { + "priceDate": "2024-08-13T14:40:30", + "newPrice": 222.98 + } + ] + }, + { + "id": "ddf7c868-79be-4431-b609-ae829abb483c", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ianrivera", + "reviewDate": "2021-06-16T12:52:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "40d0f74c-c279-472b-bebe-ad9199e68c24", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jason05", + "reviewDate": "2021-04-23T11:43:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4a33e4bf-75b2-4eac-b71c-99d0ab3bb496", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "imartin", + "reviewDate": "2021-05-06T11:45:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0b663c55-e170-45ef-bdd5-1928632dd01c", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rsanchez", + "reviewDate": "2022-05-05T22:50:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cd16bb40-b837-4807-9c84-84e9b9f6da8d", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robindaniel", + "reviewDate": "2022-09-16T16:11:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "83883d9b-1cda-42a5-a392-6bd5bda9cae5", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kayla80", + "reviewDate": "2022-11-01T04:15:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7973b7ea-5df9-4a8a-9c89-d4cdc3f15fab", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sosborn", + "reviewDate": "2022-12-15T10:43:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8beeef6c-1d97-4b95-b99d-2555dd12bba3", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "elynch", + "reviewDate": "2021-02-12T14:40:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2d7f56b3-999d-41f6-ac57-7d5a0ac0dfd3", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "florespamela", + "reviewDate": "2022-03-13T01:57:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "797e52a6-1091-4dd7-a543-b39cf4703304", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthewramirez", + "reviewDate": "2021-12-25T17:21:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "998a9012-d57d-4fef-9b6a-d3b5227a518e", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uryan", + "reviewDate": "2021-09-10T14:12:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d148a380-d291-47e3-913f-f740f2e4ec3a", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "juan79", + "reviewDate": "2021-10-27T11:15:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "02bf5664-aca4-405a-9ba3-b2bfa8a6f5c9", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ggreen", + "reviewDate": "2021-06-04T06:30:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "90e32756-16b6-4852-9227-debc37c19a67", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "allison32", + "reviewDate": "2022-04-01T15:21:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "150051e6-7793-403d-b070-e0bd81aa5f1f", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathy26", + "reviewDate": "2022-07-01T22:10:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "40226094-f948-4bb0-b609-6063a789cbeb", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Silver)", + "description": "This Premium Computer Super (Silver) is equipped with the latest Intel-based i7 6700K and i7 6700K processors including up to 1TB of 6GB (8", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-04-03T05:30:39", + "price": 1002.51, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-01-15T17:07:49", + "newPrice": 1097.28 + }, + { + "priceDate": "2021-07-12T17:07:49", + "newPrice": 986.33 + }, + { + "priceDate": "2022-01-06T17:07:49", + "newPrice": 1079.86 + }, + { + "priceDate": "2022-07-03T17:07:49", + "newPrice": 1042.77 + }, + { + "priceDate": "2022-12-28T17:07:49", + "newPrice": 1077.41 + }, + { + "priceDate": "2025-07-15T17:07:49", + "newPrice": 1002.51 + } + ] + }, + { + "id": "ebe2e1ee-67df-4961-9bb0-4b821fbb3df4", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "shawn40", + "reviewDate": "2022-03-19T20:58:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6deec569-5490-4d1c-b76d-e367aa568874", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "sierraobrien", + "reviewDate": "2021-09-10T16:46:32", + "stars": 5, + "verifiedUser": true + }, + { + "id": "49296275-8c9d-4510-8e36-db43f0f3aa32", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "faith42", + "reviewDate": "2021-01-23T06:42:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fb184c36-5084-485f-b21d-15b42c8bd1e9", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "dunnlisa", + "reviewDate": "2021-12-13T12:25:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8294a922-bb4b-4b44-b9f6-72610300a40b", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "ruizsara", + "reviewDate": "2022-12-06T00:36:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c8deed53-144e-47bd-8874-ca90b8fb1187", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "larsenlinda", + "reviewDate": "2022-04-23T10:50:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a0c74ec7-4894-4b7b-9044-27913ddec36c", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "donnamartinez", + "reviewDate": "2021-03-12T22:34:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "766aea81-5c12-4d5f-b6c5-60d81e0edfc7", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "karilopez", + "reviewDate": "2022-04-01T23:39:42", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4fb3d7eb-d423-4b12-ac32-f5adb186e329", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "dgonzalez", + "reviewDate": "2022-12-29T06:06:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c2429b86-a53f-48ce-b695-17db919c03ec", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "vanderson", + "reviewDate": "2021-01-15T17:07:49", + "stars": 5, + "verifiedUser": false + }, + { + "id": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "productId": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Micro (Black)", + "description": "This Awesome Keyboard Micro (Black) is ideal for the workstation, smartphone or keyboard on the go. Built for the iPad, there are many more things you can create and you can even build your own!\n\nYou can create your own Micro", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-10-13T06:47:08", + "price": 857.05, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2022-03-08T07:50:53", + "newPrice": 872.91 + }, + { + "priceDate": "2022-03-31T07:50:53", + "newPrice": 812.71 + }, + { + "priceDate": "2022-04-23T07:50:53", + "newPrice": 904.04 + }, + { + "priceDate": "2022-05-16T07:50:53", + "newPrice": 895.88 + }, + { + "priceDate": "2022-06-08T07:50:53", + "newPrice": 940.52 + }, + { + "priceDate": "2024-09-14T07:50:53", + "newPrice": 857.05 + } + ] + }, + { + "id": "69d736c4-9567-466f-9051-7bdc4e95a6c6", + "productId": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksontrevor", + "reviewDate": "2022-06-12T03:24:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6d90b332-b41a-42e7-82ae-e5e4eeb8d13a", + "productId": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brenda65", + "reviewDate": "2022-06-05T04:41:33", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0d62694b-d462-4c97-a39a-c9b4b8f9f1f0", + "productId": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jason16", + "reviewDate": "2022-03-08T07:50:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fd181657-222a-46f7-a4b0-a508497b6fae", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Steel)", + "description": "This Awesome Stand + (Steel) is not required on the original PS4, but for all of the consoles on sale.\n\n\nAll sales are final until sold\n\n\nIt is currently my favourite stand and looks awesome in HD.\n\n\nI just bought an X-Box 360 here and it's great, so far it was ok. It looks really cool too though and I was impressed a lot.\n\n\nWas this review helpful", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-04-13T12:26:16", + "price": 836.86, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-01-18T06:30:01", + "newPrice": 847.84 + }, + { + "priceDate": "2021-07-13T06:30:01", + "newPrice": 902.86 + }, + { + "priceDate": "2022-01-05T06:30:01", + "newPrice": 858.24 + }, + { + "priceDate": "2022-06-30T06:30:01", + "newPrice": 842.43 + }, + { + "priceDate": "2022-12-23T06:30:01", + "newPrice": 852.85 + }, + { + "priceDate": "2024-05-21T06:30:01", + "newPrice": 836.86 + } + ] + }, + { + "id": "f8206c67-6e76-46b1-9e2b-7f05bdc6f1e0", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "graycharles", + "reviewDate": "2022-12-24T22:48:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f661d1db-c959-489b-8e3f-b8daed6277dc", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "amberpetersen", + "reviewDate": "2021-04-09T20:35:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d634e15d-a2ac-470b-bc33-9dc188ea8f6f", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrewmason", + "reviewDate": "2022-02-07T18:53:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6320c778-9b9a-46ae-bce7-83bbfcc005b2", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "julie70", + "reviewDate": "2022-03-25T05:22:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c5ce6fd-5a39-490e-bd83-c710cc83a8c5", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "tonyayoung", + "reviewDate": "2021-05-20T03:56:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5097e545-28b1-4581-8d3a-414db1e9d79b", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "mitchellryan", + "reviewDate": "2022-12-09T17:02:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "31d3ab28-2387-499e-9e19-45d0d7e47443", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "donna20", + "reviewDate": "2022-07-06T18:32:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d8eb261e-c740-4b51-8ae6-ac4319f4738b", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "jared06", + "reviewDate": "2021-08-04T01:26:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5ac243c1-2f31-41dd-984e-2a4dbfb5b19c", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "caitlyn54", + "reviewDate": "2021-07-10T06:41:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "27d8c8ef-5cbe-4487-a628-9923fb7f9b7b", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "johnsonstephanie", + "reviewDate": "2021-01-18T06:30:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fe74b769-d86b-4d7a-a3e2-445f989ce9db", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "alexander62", + "reviewDate": "2022-08-12T09:34:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Pro (Black)", + "description": "This Amazing Stand Pro (Black) is equipped with a 7.2-inch HD display with 3,536 pixel resolution and 5 GB RAM. It boasts a 5th-generation Intel® Core™ i7 Processor with 8 GB of RAM, up to 64 GB of storage, a 5400 rpm spinning-state drive, and an AMD Radeon™ R9 390 graphics card. The PRO features a USB", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-06-07T19:11:42", + "price": 776.82, + "stock": 76, + "priceHistory": [ + { + "priceDate": "2021-01-21T08:43:03", + "newPrice": 820.14 + }, + { + "priceDate": "2021-07-15T08:43:03", + "newPrice": 834.62 + }, + { + "priceDate": "2022-01-06T08:43:03", + "newPrice": 789.92 + }, + { + "priceDate": "2022-06-30T08:43:03", + "newPrice": 798.02 + }, + { + "priceDate": "2022-12-22T08:43:03", + "newPrice": 853.96 + }, + { + "priceDate": "2023-06-23T08:43:03", + "newPrice": 776.82 + } + ] + }, + { + "id": "eea07979-94c0-42f8-bc16-75a8651a214d", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "nfowler", + "reviewDate": "2022-02-27T12:56:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5a15af8c-3259-470c-9fab-5223672ee45d", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissa48", + "reviewDate": "2022-01-30T12:35:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6a5b6a01-13ad-4bd6-82ad-21160a026a18", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "christophercallahan", + "reviewDate": "2022-10-06T03:41:05", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c313625b-699d-45da-a73a-c5eeae4c8b7f", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrew51", + "reviewDate": "2021-09-12T06:43:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1dd119ff-fb6f-4753-b247-415939b24f41", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "rachel69", + "reviewDate": "2022-12-05T05:58:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a71e6acf-efd3-4572-874e-6784bb01f66b", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "warnersteven", + "reviewDate": "2021-07-08T04:59:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1e91e4a7-7039-4e84-a4b0-5e09b2a80d79", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "kari75", + "reviewDate": "2022-11-15T21:27:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4fc95e26-c627-456d-8f20-c39ddc0e5b2d", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "amanda75", + "reviewDate": "2022-04-16T08:51:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1810b059-b7bf-402d-8266-7305c2fb6a01", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "amanda75", + "reviewDate": "2022-12-25T00:06:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "08560499-8f39-42a3-840b-41623979abfe", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "jordanamber", + "reviewDate": "2022-05-17T18:30:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "680c8f5d-36a2-4093-98b3-dc0d9fcc40ba", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "webbchristopher", + "reviewDate": "2022-11-07T03:10:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6f67498e-cd9f-4413-b7df-69c3984dbd25", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "trevorpacheco", + "reviewDate": "2021-08-20T16:08:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "998da27b-39b8-49ce-992c-1aead377070e", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "susanlara", + "reviewDate": "2021-06-30T01:45:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0307cdbf-95d1-476c-8365-7ba6716c0d3e", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "icurtis", + "reviewDate": "2022-03-08T06:59:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7ab311ec-c019-4031-8320-243ad2b19fcc", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "john02", + "reviewDate": "2021-01-21T08:43:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "15d321eb-6363-421a-b026-7594170fe727", + "productId": "15d321eb-6363-421a-b026-7594170fe727", + "category": "Media", + "docType": "product", + "name": "Amazing TV 3000 (Steel)", + "description": "This Amazing TV 3000 (Steel) is available now at Amazon (EBook: http://smarturl.it/Steel3) and is available in PDF (45 pages).\n\nWe'll be posting this article as soon as the Kickstarter is over. Our goal is $2k including commission, shipping and book publishing fees. Once the Kickstarter", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-11-27T06:04:46", + "price": 521.76, + "stock": 37, + "priceHistory": [ + { + "priceDate": "2021-03-07T13:35:03", + "newPrice": 555.06 + }, + { + "priceDate": "2022-10-14T13:35:03", + "newPrice": 520.59 + }, + { + "priceDate": "2024-10-28T13:35:03", + "newPrice": 521.76 + } + ] + }, + { + "id": "90b74c7a-3694-4740-b794-0311604f46bd", + "productId": "15d321eb-6363-421a-b026-7594170fe727", + "category": "Media", + "docType": "customerRating", + "userName": "stevendonovan", + "reviewDate": "2022-10-14T23:12:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76a9ba93-dd1a-4d25-a159-c22668981a27", + "productId": "15d321eb-6363-421a-b026-7594170fe727", + "category": "Media", + "docType": "customerRating", + "userName": "hendersonlisa", + "reviewDate": "2021-11-19T05:24:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "734b834d-1165-44f5-b0b5-e73126673ee5", + "productId": "15d321eb-6363-421a-b026-7594170fe727", + "category": "Media", + "docType": "customerRating", + "userName": "stephenpotter", + "reviewDate": "2021-03-07T13:35:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a756de8a-b992-44ff-9054-b36dd860a470", + "productId": "a756de8a-b992-44ff-9054-b36dd860a470", + "category": "Other", + "docType": "product", + "name": "Basic Filter Mini (Steel)", + "description": "This Basic Filter Mini (Steel) is the classic example of a very popular filter on the market. This Filter is a compact and simple mini-filter but with a very unique appearance. The filter holds the filter in place and also creates", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-06-20T03:53:25", + "price": 232.81, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-10-02T02:22:57", + "newPrice": 244.99 + }, + { + "priceDate": "2021-11-16T02:22:57", + "newPrice": 240.6 + }, + { + "priceDate": "2021-12-31T02:22:57", + "newPrice": 216.47 + }, + { + "priceDate": "2022-02-14T02:22:57", + "newPrice": 243.42 + }, + { + "priceDate": "2025-03-03T02:22:57", + "newPrice": 232.81 + } + ] + }, + { + "id": "bd0031b1-581e-4403-8587-d0eededd74b8", + "productId": "a756de8a-b992-44ff-9054-b36dd860a470", + "category": "Other", + "docType": "customerRating", + "userName": "saraparker", + "reviewDate": "2022-02-14T16:39:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "a6d19070-5d56-4ead-8a31-7ca784aa0c10", + "productId": "a756de8a-b992-44ff-9054-b36dd860a470", + "category": "Other", + "docType": "customerRating", + "userName": "danielsscott", + "reviewDate": "2021-10-02T02:22:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5357283d-ec10-4f70-8e9c-fba96b47826c", + "productId": "5357283d-ec10-4f70-8e9c-fba96b47826c", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Micro (Red)", + "description": "This Premium Mouse Micro (Red) is rated 4.0 out of 5 by 17.\n\nRated 5 out of 5 by Marenson from Nice looking mouse The color is light and the feel is beautiful and sharp, so you don't let this mouse slide off your hands. I would advise to purchase a lot of these as they work well at getting up and down over time since they are very light and the quality is", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-11-11T16:47:56", + "price": 1058.08, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2020-11-11T16:47:56", + "newPrice": 1135.52 + }, + { + "priceDate": "2024-03-30T16:47:56", + "newPrice": 1058.08 + } + ] + }, + { + "id": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Super (Steel)", + "description": "This Basic Phone Super (Steel) is compatible with a variety of devices—ranging from cell phones to tablets. It features an Android 6.0+ processor, 3GB of RAM, 1GB of internal storage, and offers basic support for iOS and Android as well as Android 4.0 and newer. It boasts a quad-core 1.5GHz Snapdragon 801 processor and 32GB of RAM and offers three GB of internal storage, a microSD card slot, and a microSD card", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-01-28T01:43:04", + "price": 185.15, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-02-05T02:35:07", + "newPrice": 202.08 + }, + { + "priceDate": "2023-11-05T02:35:07", + "newPrice": 185.15 + } + ] + }, + { + "id": "3d183647-96c0-4d62-aa26-f40f11e0baff", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "solomonisaac", + "reviewDate": "2021-02-05T02:35:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "02e79b94-a1f9-4f67-982b-3059951f7048", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "khowe", + "reviewDate": "2022-01-08T21:31:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5efd8267-5ec2-49e4-80d4-310a37c1e596", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "ayates", + "reviewDate": "2022-10-18T08:58:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e08f3a04-0d00-4f6f-b326-4eafefa812c5", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert50", + "reviewDate": "2022-01-23T20:40:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9c095c77-2ce5-4b42-a823-6be27b18e3c2", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael52", + "reviewDate": "2022-07-13T12:06:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2704daec-9153-492c-85d0-027bd1332ef0", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "sedwards", + "reviewDate": "2021-10-25T07:41:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2461e0b5-b8e4-488b-ad4c-4383bb2fe3c3", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "aliciasnyder", + "reviewDate": "2022-11-26T08:43:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98f4e3c4-abb4-4f35-90c4-250cd0eb3b2e", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "smithchristy", + "reviewDate": "2021-10-08T08:13:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9b44f117-7e24-4da0-aca6-75b7ebb22c4c", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "elijah87", + "reviewDate": "2022-12-08T06:50:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "36c10bd4-b618-4b6c-addb-d0d16f19a42f", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "luke85", + "reviewDate": "2022-12-31T06:08:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "99966d23-04b4-4dcb-a1e6-97ad03093ea1", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "vanderson", + "reviewDate": "2021-12-13T16:26:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "55d34a39-704f-463b-a0f0-d875eaa77b74", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "vadams", + "reviewDate": "2022-07-09T19:54:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "eeee7233-f888-4894-a933-695e1e554b74", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "tara38", + "reviewDate": "2022-10-09T05:43:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "13bf7297-56c6-4af9-96bc-c8063cb1502e", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "haley76", + "reviewDate": "2022-02-13T16:51:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "38a769fd-11f6-4894-952d-cfe8d82c262a", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaronhouston", + "reviewDate": "2021-11-01T08:30:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9a40bcff-7db3-4b16-a0f9-d7c81d19601f", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "longmichael", + "reviewDate": "2021-09-16T12:40:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "897c62f5-10ee-416e-9534-60325e0c3763", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "product", + "name": "Awesome TV + (Gold)", + "description": "This Awesome TV + (Gold) is a short documentary produced and hosted by Steven Egan. It features several documentary topics including the following topics: film editing, original films, photography,", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-01-10T13:17:00", + "price": 778.61, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-03-06T00:26:45", + "newPrice": 704.98 + }, + { + "priceDate": "2022-10-23T00:26:45", + "newPrice": 709.86 + }, + { + "priceDate": "2022-11-03T00:26:45", + "newPrice": 778.61 + } + ] + }, + { + "id": "a915a8a8-cd5b-4b83-94cd-0898ded8dd9b", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "watsonalexander", + "reviewDate": "2022-02-02T03:41:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c1376893-3689-48eb-8a12-6ab5e60e0448", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "chadcalderon", + "reviewDate": "2021-11-24T11:29:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b8c25dbc-bb1f-47b4-82db-4152e40225e8", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "gregoryhughes", + "reviewDate": "2022-02-01T22:50:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0766d64e-d72f-407b-9ba4-017dc23a0f01", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "ljohnson", + "reviewDate": "2021-03-06T00:26:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "425ad1d2-65d2-41a0-8e03-8c86dd3d3ec9", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "isaac86", + "reviewDate": "2021-09-29T10:57:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "072487bc-cb5f-4248-b155-5ec7d858ebfb", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "zwilkerson", + "reviewDate": "2021-06-21T19:10:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ddc1bc88-f2bb-44cf-9eaa-c1d98de5fa7d", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "karapalmer", + "reviewDate": "2022-09-14T00:38:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "979eb289-7c3f-4125-988d-40709d9f82c6", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "wford", + "reviewDate": "2021-06-02T11:35:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "baa07590-8766-4b58-9e14-13d77a28a462", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "wilsonruben", + "reviewDate": "2021-03-10T06:46:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e4a50a53-6142-4698-ac5c-4658bf5aab93", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "wmunoz", + "reviewDate": "2022-10-23T11:07:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c78ac45d-e27e-4fdc-bd1b-b8c3560d70a4", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "ooconnell", + "reviewDate": "2022-07-19T23:35:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c5dcb89c-e947-4aac-a820-895b7065293f", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "joel89", + "reviewDate": "2022-05-10T12:16:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Ultra (Steel)", + "description": "This Luxe Phone Ultra (Steel) is made of a polymer in an opaque plastic. The smartphone features a stainless steel body and a titanium back panel along with an engraved logo with the name of the company that designed the phone at", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-05-07T22:56:51", + "price": 751.55, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-03-14T21:22:51", + "newPrice": 743.43 + }, + { + "priceDate": "2021-06-12T21:22:51", + "newPrice": 803.6 + }, + { + "priceDate": "2021-09-10T21:22:51", + "newPrice": 751.61 + }, + { + "priceDate": "2021-12-09T21:22:51", + "newPrice": 794.07 + }, + { + "priceDate": "2022-08-18T21:22:51", + "newPrice": 751.55 + } + ] + }, + { + "id": "88649608-e1bd-4819-9a67-8256506e120a", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciamichael", + "reviewDate": "2021-03-14T21:22:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c9a5c267-dd3a-482d-9240-ac5ce74afae2", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "customerRating", + "userName": "russellkarina", + "reviewDate": "2021-08-24T03:53:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "08357741-ff74-4e96-b63b-92b2e1fd3611", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "customerRating", + "userName": "brooksjennifer", + "reviewDate": "2021-10-14T14:39:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e578cab7-cf92-4220-a589-5e096ad9ac15", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "customerRating", + "userName": "adam13", + "reviewDate": "2021-12-10T06:14:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Pro (Gold)", + "description": "This Amazing Computer Pro (Gold) is a super-secret computer (actually just the computer-name Computer Pro). This very computer was created by two scientists from the University of California at Santa Cruz, Richard Feynman and Richard Stallman. The computer was designed to perform an intricate mathematical operation that involved solving", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-06-03T21:58:30", + "price": 373.3, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-01-29T02:19:08", + "newPrice": 398.87 + }, + { + "priceDate": "2021-12-22T02:19:08", + "newPrice": 351.85 + }, + { + "priceDate": "2022-11-14T02:19:08", + "newPrice": 398.74 + }, + { + "priceDate": "2024-05-20T02:19:08", + "newPrice": 373.3 + } + ] + }, + { + "id": "8fdfada8-fb49-4b8d-85a9-6a21d9bf3575", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "sandragraham", + "reviewDate": "2021-11-19T02:50:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d914d900-9c74-4b05-85fc-03282e183150", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristenwebb", + "reviewDate": "2021-01-29T02:19:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "93373e3f-19bf-4806-a34f-cda562ee6f59", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "kellyyoung", + "reviewDate": "2022-02-22T14:19:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eeb64258-4c59-47ca-8cf0-e167f1a49455", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda49", + "reviewDate": "2022-11-14T09:28:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c618d1e1-b893-452f-8f41-f5af098633b9", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "ssullivan", + "reviewDate": "2021-04-10T15:30:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "46793351-1795-4afc-b1e5-2266845e8e29", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "halltiffany", + "reviewDate": "2022-08-10T00:13:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c9b00c91-d44a-4324-9e24-8e1f138db516", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "stacy41", + "reviewDate": "2021-09-24T11:04:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dbab3964-4966-4b57-81ed-5edbc3ceaa12", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "daltonwest", + "reviewDate": "2021-12-08T05:57:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8da0a5ed-29d0-4e1d-b5a1-b3693b3ccc03", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "greentaylor", + "reviewDate": "2021-08-24T23:25:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Pro (Silver)", + "description": "This Luxe Mouse Pro (Silver) is available in select colors.\n\n(Silver) is available in select colors. Stainless Steel is Steel,", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-11-03T08:40:23", + "price": 746.44, + "stock": 78, + "priceHistory": [ + { + "priceDate": "2021-07-19T07:20:01", + "newPrice": 806.37 + }, + { + "priceDate": "2024-09-26T07:20:01", + "newPrice": 746.44 + } + ] + }, + { + "id": "d0cce4c0-68b1-4d46-b560-339e0ddc36dc", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "georgegina", + "reviewDate": "2022-08-12T17:18:58", + "stars": 4, + "verifiedUser": false + }, + { + "id": "dd507699-8bcd-4d14-b759-e1d74a6425e1", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cpatel", + "reviewDate": "2021-07-19T07:20:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "60ac35da-ec97-4732-9cc2-41a367b5ade1", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emilynelson", + "reviewDate": "2022-09-15T08:01:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "39f25a8a-9f35-42be-a344-76b69175556f", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "troyjennings", + "reviewDate": "2022-02-26T01:15:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "28263e27-0002-4281-b386-00904e0cdaca", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardcarter", + "reviewDate": "2022-08-19T07:04:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "434d2eb2-bb97-4840-bf97-9015e701550d", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Pro (Gold)", + "description": "This Amazing Computer Pro (Gold) is also available HERE\n\n\nThe ZX Spectrum and the PC version of the Nintendo DS.\n\nNote: The X Series has also been priced to the same or less the X Series PC version so you can use different pricing if", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-09-23T02:50:19", + "price": 470.48, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-06-04T22:45:14", + "newPrice": 493.36 + }, + { + "priceDate": "2022-11-28T22:45:14", + "newPrice": 494.8 + }, + { + "priceDate": "2025-04-23T22:45:14", + "newPrice": 470.48 + } + ] + }, + { + "id": "207c1fe7-fa8b-470b-b8be-0ea9129eee1c", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "nclark", + "reviewDate": "2021-12-18T18:13:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "24469d38-3fc0-4c60-9f72-7432fc6547e3", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertdavis", + "reviewDate": "2022-09-23T23:19:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "52098e50-96ec-4b8f-9816-a3362e623293", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicholasmunoz", + "reviewDate": "2021-10-28T11:54:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "46646513-97de-4b9b-b934-102354097dcd", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "gibsonjulia", + "reviewDate": "2021-12-08T20:07:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f2a9c8bf-6ecd-4622-88c7-ff8d2fa4255d", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "joy68", + "reviewDate": "2021-06-04T22:45:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8f856b9d-fe7e-4cf2-aea1-e5157d0206cb", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "andrewmyers", + "reviewDate": "2021-07-03T17:33:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cac8ec46-7ac6-4945-be9a-7fcaf389fb0b", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "wrocha", + "reviewDate": "2021-12-29T20:59:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6284629e-a88e-43d2-8dd4-938876c9c0f0", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissahester", + "reviewDate": "2022-01-19T04:46:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7d9471ec-bc8b-4101-8487-c170bfd5270b", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcdanielteresa", + "reviewDate": "2021-08-14T12:49:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fbe6378c-5b4b-4924-9874-839157bb630c", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnathanarellano", + "reviewDate": "2022-11-29T01:12:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "29296754-e282-47a5-84df-0c6961cb4a44", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "grantgrace", + "reviewDate": "2021-07-30T05:51:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1cb4878d-00c6-4a85-a260-bcb18540613f", + "productId": "1cb4878d-00c6-4a85-a260-bcb18540613f", + "category": "Media", + "docType": "product", + "name": "Luxe TV Pro (Steel)", + "description": "This Luxe TV Pro (Steel) is rated 3.7 out of 5 by 30.\n\nRated 4 out of 5 by Lass from My daughter likes that I buy these...", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-09-01T03:28:31", + "price": 228.25, + "stock": 17, + "priceHistory": [ + { + "priceDate": "2019-09-01T03:28:31", + "newPrice": 244.48 + }, + { + "priceDate": "2021-03-01T03:28:31", + "newPrice": 245.64 + }, + { + "priceDate": "2022-08-30T03:28:31", + "newPrice": 238.7 + }, + { + "priceDate": "2024-02-28T03:28:31", + "newPrice": 217.95 + }, + { + "priceDate": "2025-08-28T03:28:31", + "newPrice": 244.12 + }, + { + "priceDate": "2025-08-28T05:32:14.472670", + "newPrice": 228.25 + } + ] + }, + { + "id": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Super (Steel)", + "description": "This Luxe Keyboard Super (Steel) is a super-soft (as designed) keyboard on the latest Intel® G7 platform. With a premium", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-06-20T09:43:51", + "price": 983.1, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-01-01T22:42:56", + "newPrice": 1052.68 + }, + { + "priceDate": "2025-07-17T22:42:56", + "newPrice": 983.1 + } + ] + }, + { + "id": "44c5881f-e8d5-4635-95ea-1c0b60946fd4", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinejohnson", + "reviewDate": "2022-08-13T05:56:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "75b7c4e5-04c5-4909-a4a5-1b8fc9f1f6ae", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zmatthews", + "reviewDate": "2021-04-01T12:51:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1cb5475c-8711-4d76-ab63-6d12574f3bf0", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ernest21", + "reviewDate": "2021-12-25T01:41:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3009f588-b406-431f-9508-243118c67596", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ronniecook", + "reviewDate": "2021-01-01T22:42:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0a4c8952-d5bc-41e4-8af3-7698e9e69d1b", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "westsusan", + "reviewDate": "2021-11-17T23:45:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "72f8dce0-7683-4942-9dbe-f4f2f63727ab", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "csmith", + "reviewDate": "2021-11-11T00:16:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0a662962-6ea6-4f2d-b400-98b8c525d9ea", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zcain", + "reviewDate": "2022-07-31T23:13:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "833424b3-6297-459d-8a11-74d037a14224", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "iwilson", + "reviewDate": "2021-10-30T17:31:47", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2fff46b6-d21e-40b9-8fca-51ff66101aae", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "justinmyers", + "reviewDate": "2021-03-24T11:12:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b54d271a-e3c1-4435-862c-a9b1d0283752", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andrew72", + "reviewDate": "2022-04-22T14:07:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7978a7e2-8701-4243-979a-cedb75867a46", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Ultra (Silver)", + "description": "This Premium Phone Ultra (Silver) is made from solid Aluminum and comes packed with an anti-crosstalk coating to be used on the handset. It also boasts two USB Type-C ports on the back. The phone is also rated to perform flawlessly at up to 940 RMS. The phone also features 2GB of DDR", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-09-03T22:47:59", + "price": 264.48, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-01-13T16:03:13", + "newPrice": 239.51 + }, + { + "priceDate": "2023-08-19T16:03:13", + "newPrice": 264.48 + } + ] + }, + { + "id": "2b2cce91-3261-49f0-84d2-f5605275628e", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "heatherwolf", + "reviewDate": "2021-07-04T09:31:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "23a0c7ac-0442-4917-b4aa-1518d93c275d", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "tranbrian", + "reviewDate": "2022-11-12T03:59:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2ab619e3-66b6-4700-8990-66d09ea462c6", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifer89", + "reviewDate": "2022-01-20T19:07:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e3ae7a8e-6ee7-4cd6-a40d-033b8bb207d3", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "nathanbrown", + "reviewDate": "2021-01-13T16:03:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7a7fb4bd-6c93-4e74-8b98-28a0488898ed", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "qrivera", + "reviewDate": "2021-07-12T20:37:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "23126ba2-9975-40ef-8b45-bf1e444cfdeb", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "farleysteven", + "reviewDate": "2022-09-19T21:29:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b761fa63-8bf7-4a01-b4c2-5609fb1ca1fc", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "jcox", + "reviewDate": "2021-06-13T06:07:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7e761456-f959-4921-a60a-2fba75096b2d", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "alexander42", + "reviewDate": "2022-06-08T12:05:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "13e583e9-b622-4e81-8252-b5ded84eeb92", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "okaufman", + "reviewDate": "2022-05-27T22:29:16", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4fce4675-a2da-4cde-aee1-64110e2e1211", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "ronald78", + "reviewDate": "2021-02-28T16:54:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8d008246-3c5d-4884-85f1-61cb84e1faca", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "lindsaychoi", + "reviewDate": "2021-05-27T14:17:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "24109efd-2f86-4b93-bbd7-ed2a96385b48", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "jbaker", + "reviewDate": "2022-09-04T22:20:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "efa49f81-a670-4c2a-a902-65339b5be4a1", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "cynthia91", + "reviewDate": "2021-01-27T16:58:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer + (Steel)", + "description": "This Premium Computer + (Steel) is great!\n\nThe Steel is a 4500rpm 3.5kW + (Hemlock) system; with its two 20kW", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-11-15T08:15:08", + "price": 726.19, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-02-09T21:58:04", + "newPrice": 734.8 + }, + { + "priceDate": "2022-04-13T21:58:04", + "newPrice": 726.19 + } + ] + }, + { + "id": "a07c6686-a4fa-4e54-8e53-4345523d13cb", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "douglasjefferson", + "reviewDate": "2021-08-24T05:51:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9c9509a7-cc41-42ce-94be-b7bd148f46cb", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "jameszhang", + "reviewDate": "2021-12-31T11:32:39", + "stars": 5, + "verifiedUser": false + }, + { + "id": "1d53c305-d861-41d5-ba67-1cb8357a0aa4", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "evansandrew", + "reviewDate": "2021-06-21T18:31:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7395443f-9252-4bdb-a95a-1fa2ae58f51a", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "mary56", + "reviewDate": "2022-04-18T08:22:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4cfc9997-3ca9-4aba-8d97-2f116333a3f7", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "whitekendra", + "reviewDate": "2022-06-21T06:26:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a41cbe71-34f6-4c58-b590-f33b3d9779b4", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertsondeborah", + "reviewDate": "2021-07-05T13:18:19", + "stars": 5, + "verifiedUser": true + }, + { + "id": "decd1669-fa11-498a-8fe7-66eec5b769e2", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "johndean", + "reviewDate": "2022-11-03T19:31:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "666881a8-cce2-4c79-a018-39af6e639c89", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "reedmeghan", + "reviewDate": "2022-02-14T05:32:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8b3a98de-98d5-4ba3-983a-9ccaccabf5c1", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "elizabeth53", + "reviewDate": "2021-02-09T21:58:04", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2ca7eca0-6b2f-4b6b-95c2-976ea55745d6", + "productId": "2ca7eca0-6b2f-4b6b-95c2-976ea55745d6", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Micro (Red)", + "description": "This Awesome Computer Micro (Red) is designed with a large, light and compact footprint. The CPU's memory offers 1.6 GB total, a single 256 GB of hard drive space, a 128 GB storage card, an Intel-built 4 core processor, and 4", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-02-27T19:55:19", + "price": 692.89, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2022-11-16T16:29:39", + "newPrice": 659.12 + }, + { + "priceDate": "2022-11-17T16:29:39", + "newPrice": 681.94 + }, + { + "priceDate": "2022-11-18T16:29:39", + "newPrice": 724.02 + }, + { + "priceDate": "2022-11-19T16:29:39", + "newPrice": 685.22 + }, + { + "priceDate": "2022-11-20T16:29:39", + "newPrice": 657.3 + }, + { + "priceDate": "2024-04-27T16:29:39", + "newPrice": 692.89 + } + ] + }, + { + "id": "be1461f0-fb0a-4e11-9287-77b75aa70af9", + "productId": "2ca7eca0-6b2f-4b6b-95c2-976ea55745d6", + "category": "Electronics", + "docType": "customerRating", + "userName": "riveradrew", + "reviewDate": "2022-11-16T16:29:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cc4b2888-5ea1-463e-a77b-6a1a09b35e64", + "productId": "cc4b2888-5ea1-463e-a77b-6a1a09b35e64", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Micro (Steel)", + "description": "This Basic Keyboard Micro (Steel) is soldered to the right back of both the backplate and backplate assembly to ensure a clean and stable release of the keys.\n\nThe Micro has a unique 3 mm pushbutton which has been", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-03-22T14:25:41", + "price": 875.5, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2022-08-15T05:18:02", + "newPrice": 847.99 + }, + { + "priceDate": "2022-08-16T05:18:02", + "newPrice": 852.53 + }, + { + "priceDate": "2022-08-17T05:18:02", + "newPrice": 789.37 + }, + { + "priceDate": "2022-08-18T05:18:02", + "newPrice": 890.64 + }, + { + "priceDate": "2022-08-19T05:18:02", + "newPrice": 906.72 + }, + { + "priceDate": "2023-10-02T05:18:02", + "newPrice": 875.5 + } + ] + }, + { + "id": "3b188bc1-5c60-4e1e-bf0f-a2d92f41e41c", + "productId": "cc4b2888-5ea1-463e-a77b-6a1a09b35e64", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholasadams", + "reviewDate": "2022-08-15T05:18:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Ultra (Silver)", + "description": "This Basic Speaker Ultra (Silver) is equipped with a power of 60 seconds.\n\nBeware, however, that Ultra's special special attack is Fire Beam. This can damage almost anything, including the weak-ass Bum Blond. However, because Ultra's special attack is called an Ultra, it was used before the battle went on.\n\nAbility", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-02-03T07:13:07", + "price": 885.26, + "stock": 25, + "priceHistory": [ + { + "priceDate": "2021-01-28T12:46:26", + "newPrice": 919.75 + }, + { + "priceDate": "2021-09-18T12:46:26", + "newPrice": 970.59 + }, + { + "priceDate": "2022-05-09T12:46:26", + "newPrice": 902.92 + }, + { + "priceDate": "2022-12-28T12:46:26", + "newPrice": 855.36 + }, + { + "priceDate": "2025-06-23T12:46:26", + "newPrice": 885.26 + } + ] + }, + { + "id": "4d3c3ff8-4b9f-4f1b-9afc-6f34fa1431a0", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "ortegahannah", + "reviewDate": "2022-02-14T23:10:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c4fe4ef2-a0ba-4be2-b60c-ffc4d86d5e2d", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "bethwalker", + "reviewDate": "2022-04-03T08:33:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "574d58d9-cc85-45eb-a1c0-2e83b82a6520", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "grayteresa", + "reviewDate": "2022-04-26T11:20:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "18880ba3-f849-4441-bdf6-926fbfb91475", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "burnsterrance", + "reviewDate": "2021-06-01T10:56:43", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c270d55c-fba5-4d9b-8535-dcaa36cf4c9d", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "crystal77", + "reviewDate": "2022-12-30T17:34:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ffbb62ce-5af3-4198-819e-3235f9baa827", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "russelltonya", + "reviewDate": "2021-07-24T21:02:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0ba5343e-915f-419d-a09f-9130a9103632", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "jaymartin", + "reviewDate": "2021-07-19T02:09:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a85b574c-ea82-4bb2-8105-32f7d92843a4", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "longjoseph", + "reviewDate": "2021-06-06T17:01:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1ebfebd5-f0eb-4842-9575-5f3bdce73f70", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "halejorge", + "reviewDate": "2021-11-11T08:41:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "52c76cad-173a-4a95-9fc4-31525288fdd8", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "sanchezrenee", + "reviewDate": "2022-02-10T10:41:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "479b0400-d7ee-4003-84e5-30e71e10ea5d", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "wongkelly", + "reviewDate": "2021-07-06T01:03:18", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b9fc9e51-5ead-41e9-8d31-76aed790c08a", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "swalker", + "reviewDate": "2022-05-04T04:03:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "178d16c3-a5a4-46f9-98f0-14368706013d", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "tsmith", + "reviewDate": "2022-10-29T19:48:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "28af22e0-4df2-4688-a0b9-b5fd52bf3fde", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "nicole02", + "reviewDate": "2021-05-30T22:28:26", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0c605931-b0b1-4df5-9823-1ac037875555", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "millerjennifer", + "reviewDate": "2021-11-17T05:20:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bb9c7d93-8099-4062-8c7a-13ac1b48e065", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "hallmartin", + "reviewDate": "2022-01-01T02:36:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dcb1e145-d1cd-4699-adb0-58ed78d6feea", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "rachel68", + "reviewDate": "2021-01-28T12:46:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dde3b35f-c19f-466d-b444-fd8eeafa2174", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "crystal40", + "reviewDate": "2022-05-08T07:32:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Silver)", + "description": "This Amazing Keyboard Ultra (Silver) is rated 4.0 out of 5 by 11.\n\nRated 1 out of 5 by BenZ from Does not work If you open a USB device and use its keyboard in a virtual environment, then this keyboard has a", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-01-06T05:50:57", + "price": 985.38, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-01-14T15:53:20", + "newPrice": 922.03 + }, + { + "priceDate": "2022-11-19T15:53:20", + "newPrice": 891.08 + }, + { + "priceDate": "2024-04-30T15:53:20", + "newPrice": 985.38 + } + ] + }, + { + "id": "2504df5d-2ce4-44ab-8574-cee15d24788a", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "armstrongshirley", + "reviewDate": "2022-07-02T20:16:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c657ebf7-926b-4587-9392-3882600d2cbf", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laurenglover", + "reviewDate": "2022-02-07T19:29:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "041ecbc9-7770-493b-b5f8-e9dfeac96c5a", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dhooper", + "reviewDate": "2022-11-20T10:57:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e6147c14-b17c-4883-9bfd-41d84e99abd3", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomasgrant", + "reviewDate": "2021-01-14T15:53:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8b3f4913-df0b-4301-8e2f-beaf22ecf4e2", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tamihowell", + "reviewDate": "2022-08-06T12:02:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ea92530f-c757-42a8-b89d-04e93ac5bcaf", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gardnerrebecca", + "reviewDate": "2021-03-28T13:53:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "17bf5699-9805-4de7-a8b2-d52903a7c4b6", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fjohnson", + "reviewDate": "2021-01-28T12:10:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4fb2a891-1329-405b-93a4-2f39b4992859", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emilynelson", + "reviewDate": "2022-07-05T15:29:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Ultra (Steel)", + "description": "This Amazing Speaker Ultra (Steel) is rated 4.3 out of 5 by 28.\n\nRated 5 out of 5 by Mike Rigg from Amazing Awesome Specs! I started this project while I was still living in the dark and the sound quality of it seemed great. A little pricey but it worked out so well! My old acoustic headphones did not have stereo, and thus", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-07-07T07:09:18", + "price": 478.2, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-02-15T07:45:55", + "newPrice": 523.82 + }, + { + "priceDate": "2021-07-01T07:45:55", + "newPrice": 453.77 + }, + { + "priceDate": "2021-11-14T07:45:55", + "newPrice": 434.8 + }, + { + "priceDate": "2022-03-30T07:45:55", + "newPrice": 489.3 + }, + { + "priceDate": "2025-01-13T07:45:55", + "newPrice": 478.2 + } + ] + }, + { + "id": "72bcc22b-d296-4878-82bf-026652769067", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "ilamb", + "reviewDate": "2021-06-18T05:53:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "72280578-6be4-46a6-b661-eaa9fdc9ebd7", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "umartinez", + "reviewDate": "2021-05-06T03:32:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "78a46b5d-f4fa-4c2c-b2ce-585ba6adcc8c", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "christophermyers", + "reviewDate": "2021-04-02T13:31:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "49ff023f-49a5-4361-ab45-9109ca93258a", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "carrollmary", + "reviewDate": "2022-04-01T17:45:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "377f2026-69ef-4ea1-a781-f679466575d8", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "eric88", + "reviewDate": "2021-06-11T12:22:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "44ed1728-00d7-4b88-bd91-138ee756838e", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "zali", + "reviewDate": "2021-02-15T07:45:55", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8b17b915-aee8-474d-9371-0089e1dc5965", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Steel)", + "description": "This Luxe Filter 3000 (Steel) is a very advanced filter which adds a premium blend between soft and clean lightweight fabrics. With this filter, you get the clean feel of fabric, no added cost in cost and no need to be a regular bagman.\n\nThe Luxe Filter 1500 (Steel) looks like a beautiful piece of clothing in all its glory. It is built to last and will last anywhere from a few weeks to a 1-2 months. The", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-05-27T02:13:48", + "price": 474.27, + "stock": 60, + "priceHistory": [ + { + "priceDate": "2021-02-07T11:42:13", + "newPrice": 494.43 + }, + { + "priceDate": "2022-01-17T11:42:13", + "newPrice": 476.69 + }, + { + "priceDate": "2022-12-27T11:42:13", + "newPrice": 472.69 + }, + { + "priceDate": "2024-04-09T11:42:13", + "newPrice": 474.27 + } + ] + }, + { + "id": "bf1e741b-0731-4bdb-a925-ab11c8275acc", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "wrighttheresa", + "reviewDate": "2021-10-24T10:02:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "17f29ed6-f4b9-4dac-8a75-10f42b2eb6c3", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "gina06", + "reviewDate": "2021-02-20T06:00:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e08a2d9c-7eec-4f50-9705-90123908f6dd", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "samuel57", + "reviewDate": "2022-05-01T04:28:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "79fdfee6-f952-47a7-9aa3-727f7216abc9", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "zpoole", + "reviewDate": "2021-07-09T13:02:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "65d8f7e6-fa8f-4cfb-ae11-1d540e7c3dc1", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "pwoods", + "reviewDate": "2021-02-18T23:30:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5a2230ca-18a8-44ae-9750-81ed40c7cd56", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "combsmichael", + "reviewDate": "2022-07-18T00:42:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "abe0dd13-a157-4765-bcab-1dc4ea67a91a", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "vazquezebony", + "reviewDate": "2022-12-28T11:55:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "98ec65f4-10d6-45af-8ce4-ec0f587b2815", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "donaldcain", + "reviewDate": "2021-10-03T12:21:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f470fcda-e325-430d-ac8e-c77014e04e19", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "mcfarlandapril", + "reviewDate": "2021-05-27T07:49:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "26f391b0-c556-44fe-a15f-967d8c18b4f3", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "bethgutierrez", + "reviewDate": "2021-04-05T06:27:41", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c1162321-c6c0-45da-930f-fb49a442eede", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "william35", + "reviewDate": "2021-04-14T13:40:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2971776d-3ce4-4c72-be37-29e66b8d7481", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "sharonjohnson", + "reviewDate": "2021-04-05T11:26:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "77ea5ec0-754b-4ff6-92d8-d94d2576e3fb", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "mwest", + "reviewDate": "2022-10-29T15:09:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c145d746-fa8c-4a4b-ac0e-c548b2801fc2", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "kathykane", + "reviewDate": "2021-02-07T11:42:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bc1d94f1-2b1c-4c68-bc2a-2f7801c6ea9e", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "thomasallen", + "reviewDate": "2021-06-08T15:30:19", + "stars": 4, + "verifiedUser": false + }, + { + "id": "56484e1d-9e3f-4edb-bf72-c85129e191be", + "productId": "56484e1d-9e3f-4edb-bf72-c85129e191be", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse + (Gold)", + "description": "This Premium Mouse + (Gold) is best suited for small hands and does just fine for the heavier hand to get a better feel for the mouse.\n\n\nI tried to be as careful to have each mouse click smoothly and smoothly but then there was a glitch causing me to click the wrong way, causing the mouse to \"click\" from the middle. I was unable to recover my mouse, which was very unfortunate as it meant", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-10-01T15:45:42", + "price": 124.72, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-04-23T04:57:00", + "newPrice": 121.21 + }, + { + "priceDate": "2021-12-03T04:57:00", + "newPrice": 124.72 + } + ] + }, + { + "id": "31c3029d-4029-469a-82f6-30b2ce4ec6bd", + "productId": "56484e1d-9e3f-4edb-bf72-c85129e191be", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cphillips", + "reviewDate": "2021-04-23T04:57:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a70371ff-fcc2-42d1-8db5-4d7b8ed85a2f", + "productId": "56484e1d-9e3f-4edb-bf72-c85129e191be", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "orrerik", + "reviewDate": "2022-02-03T03:12:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone + (Red)", + "description": "This Awesome Phone + (Red) is a smart idea. It has a 1Gbps 3Ghz SIMD card that has wireless support for 5GPP. With one of Apple's signature 6D cameras, it's actually a smart phone with a real camera that is compatible with some iOS, Android, BlackBerry 8.0 phones. The camera has been", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-07-06T10:59:17", + "price": 646.03, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-07-20T14:59:57", + "newPrice": 613.73 + }, + { + "priceDate": "2022-04-01T14:59:57", + "newPrice": 677.71 + }, + { + "priceDate": "2022-12-12T14:59:57", + "newPrice": 680.72 + }, + { + "priceDate": "2024-02-11T14:59:57", + "newPrice": 646.03 + } + ] + }, + { + "id": "63ecfc7c-c362-4116-aa5d-abce3e48ea8f", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "gilmoreanthony", + "reviewDate": "2022-06-28T12:30:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "10a496b9-7b73-4a56-ba46-4c93d8a59a13", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "geraldchavez", + "reviewDate": "2022-12-13T01:25:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b802905e-f5f0-4e3b-80e7-8b7491a7534c", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "hcoleman", + "reviewDate": "2022-09-01T07:11:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "afd5d5f1-4525-4868-9c91-5b8acafaf09f", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "scott03", + "reviewDate": "2022-11-10T17:45:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "09b24d9c-6144-4874-81f3-9aba4cedabcc", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "alex19", + "reviewDate": "2021-11-21T05:36:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c246ffe1-1883-4e5b-8464-1de554dc0a3a", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "hkaiser", + "reviewDate": "2021-08-15T03:05:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "960c2a86-daf4-4919-8b12-12db3d227e60", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "smithpaul", + "reviewDate": "2021-07-20T14:59:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "656c585f-4f16-4ba3-9ced-9cddfd639ea2", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelturner", + "reviewDate": "2022-03-20T23:18:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Ultra (Steel)", + "description": "This Amazing Stand Ultra (Steel) is rated 4.2 out of 5 by 37.\n\nRated 5 out of 5 by Jim from Great Buy This stand is a great buy. I have it as my home gym equipment collection at home so far, plus it has all I need. I decided to take it to a place where it was available. As many of them do, I made it a great product. My other friends have used it quite a few times! When I made it,", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-11-24T02:21:02", + "price": 687.0, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-03-16T02:59:26", + "newPrice": 665.11 + }, + { + "priceDate": "2021-08-14T02:59:26", + "newPrice": 630.1 + }, + { + "priceDate": "2022-01-12T02:59:26", + "newPrice": 734.51 + }, + { + "priceDate": "2022-06-12T02:59:26", + "newPrice": 677.22 + }, + { + "priceDate": "2025-08-13T02:59:26", + "newPrice": 687.0 + } + ] + }, + { + "id": "ddce2733-e6a9-4f54-9977-95410d47aef5", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "harrisgeorge", + "reviewDate": "2022-02-24T22:11:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a896cd31-189d-4e6d-ae05-abbb3cd9f050", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "gregorywarner", + "reviewDate": "2021-03-16T02:59:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1ed6e6b8-629e-4651-9a03-bf38ae3b2dbd", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "popekaitlyn", + "reviewDate": "2022-05-16T14:23:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f884837a-3e5c-4dcc-b676-659be03d0424", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "wardclifford", + "reviewDate": "2021-04-06T02:29:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "23f18d85-4b87-47f2-b253-f6d02a448f76", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "willie55", + "reviewDate": "2022-04-29T00:56:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "be266d61-f109-4317-b450-bb6fcea845c2", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "rick67", + "reviewDate": "2022-04-12T04:02:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7cb65941-5658-4842-861b-7de09913cfaf", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "reiddonna", + "reviewDate": "2022-04-06T10:11:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "175991d3-326b-48a2-8510-1aef3c166631", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "efry", + "reviewDate": "2021-09-02T01:04:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "22281b5c-907b-4085-93f2-3d730126e6bf", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "mark35", + "reviewDate": "2022-03-16T18:07:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "14c1443b-ac6c-4275-9196-88cab9801b69", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "crystal62", + "reviewDate": "2022-06-12T07:41:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8048dd74-a2ba-47b6-a663-ab43a35fcdb1", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamanderson", + "reviewDate": "2022-06-09T04:45:31", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cd6b429c-d66c-465c-ab4f-b5763825fad6", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "smallchristopher", + "reviewDate": "2022-03-16T22:31:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b105dd17-d491-4254-965a-5d386853e9d6", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "victorpatrick", + "reviewDate": "2021-11-09T08:12:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Pro (Steel)", + "description": "This Amazing Filter Pro (Steel) is a sleek design with a nice design. It's an easy-to-use tool so I wouldn't use it. If you're using a traditional filter, the filters on the right is nice easy to see to the user, it's what I bought from Tandy. I prefer my normal filters, but their filters are a bit softer and better quality than their filter on these filters due to the slight surface", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-06-05T02:29:38", + "price": 486.43, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-02-21T15:01:41", + "newPrice": 531.37 + }, + { + "priceDate": "2021-06-18T15:01:41", + "newPrice": 499.95 + }, + { + "priceDate": "2021-10-13T15:01:41", + "newPrice": 467.42 + }, + { + "priceDate": "2022-02-07T15:01:41", + "newPrice": 454.46 + }, + { + "priceDate": "2022-06-04T15:01:41", + "newPrice": 503.44 + }, + { + "priceDate": "2024-06-01T15:01:41", + "newPrice": 486.43 + } + ] + }, + { + "id": "54a627a2-4506-4209-ac0f-d9eb7bd77a6c", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "peterrowe", + "reviewDate": "2021-02-21T15:01:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5797712c-f2b5-4c4d-b0fe-839a1ff6acaf", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "annettemorgan", + "reviewDate": "2022-02-05T18:23:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "531c95cb-748e-415f-b1e7-285bd54fad1c", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "heatherdixon", + "reviewDate": "2021-12-26T11:22:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2fc5c6d9-6d67-4603-ba34-ec8903cc5197", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "horneric", + "reviewDate": "2022-06-05T19:33:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f5fc2894-8b15-4e54-830a-75372a463509", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "amy48", + "reviewDate": "2021-12-21T11:33:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8cbd0ce1-64b7-497e-aff1-70e950e8fd27", + "productId": "8cbd0ce1-64b7-497e-aff1-70e950e8fd27", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Mini (Red)", + "description": "This Luxe Phone Mini (Red) is the first smartphone with LTE connectivity to support LTE bands - this is a much better value overall and helps push LTE", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-12-14T19:13:56", + "price": 468.65, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-03-15T17:38:35", + "newPrice": 458.44 + }, + { + "priceDate": "2021-03-23T17:38:35", + "newPrice": 514.54 + }, + { + "priceDate": "2021-03-31T17:38:35", + "newPrice": 433.89 + }, + { + "priceDate": "2021-04-08T17:38:35", + "newPrice": 461.0 + }, + { + "priceDate": "2024-05-29T17:38:35", + "newPrice": 468.65 + } + ] + }, + { + "id": "1f6dc390-2bdc-4ddb-96f2-e8ea811af8fa", + "productId": "8cbd0ce1-64b7-497e-aff1-70e950e8fd27", + "category": "Electronics", + "docType": "customerRating", + "userName": "bradley34", + "reviewDate": "2021-03-15T17:38:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4b0e21bc-a532-49ed-9c43-fbfaa14e7692", + "productId": "8cbd0ce1-64b7-497e-aff1-70e950e8fd27", + "category": "Electronics", + "docType": "customerRating", + "userName": "taylorbreanna", + "reviewDate": "2021-04-11T00:58:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "product", + "name": "Premium TV Micro (Steel)", + "description": "This Premium TV Micro (Steel) is an integrated TV that supports the high definition capability of the Panasonic GH5. The Panasonic GH4 is a great solution for streaming video and is the perfect size to share your video with others in your organization. For a high definition, powerful", + "countryOfOrigin": "Egypt", + "rareItem": true, + "firstAvailable": "2019-08-20T18:36:47", + "price": 1039.15, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-01-29T12:48:21", + "newPrice": 992.48 + }, + { + "priceDate": "2021-08-29T12:48:21", + "newPrice": 936.78 + }, + { + "priceDate": "2022-03-29T12:48:21", + "newPrice": 964.89 + }, + { + "priceDate": "2022-10-27T12:48:21", + "newPrice": 948.53 + }, + { + "priceDate": "2022-11-09T12:48:21", + "newPrice": 1039.15 + } + ] + }, + { + "id": "f0809fe6-c3e8-41e0-9c7b-b4589f8de0f9", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "morganchristina", + "reviewDate": "2021-01-29T12:48:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "90c6deae-34df-4855-aef4-0e339c96568c", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "qwong", + "reviewDate": "2022-05-10T05:37:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c2293932-411f-4a7e-b840-471ea894951a", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "jordanzachary", + "reviewDate": "2021-11-20T19:03:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "34ff55f4-bd6d-4834-a269-359900cc316d", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "epena", + "reviewDate": "2021-07-24T16:08:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b53ca9f2-129a-4f35-9b52-532bb51f8256", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "codylindsey", + "reviewDate": "2022-07-08T13:34:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "41966fb0-7699-422a-86e9-45b2c160c7b0", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "audrey52", + "reviewDate": "2022-03-19T23:08:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e58b5d7d-f684-49ce-9a84-001ea56c6103", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "catherinemccullough", + "reviewDate": "2021-10-26T01:43:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "87de6e8d-b141-440b-a380-7e6a1c5719dc", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "iowens", + "reviewDate": "2022-06-09T03:33:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "29f16344-00e9-412c-9fcf-e56b681f5816", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "cwilliams", + "reviewDate": "2022-10-30T09:28:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a47db5f6-b64b-4445-af4a-a606fc752aa6", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "james93", + "reviewDate": "2021-10-02T11:32:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f5c6e298-7800-4055-8ac2-9379cfc16e38", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "keithrussell", + "reviewDate": "2022-05-20T18:28:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "40ea50e7-f09b-4d7c-b212-1be54ed9e39e", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "samuelleach", + "reviewDate": "2022-06-13T10:05:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Super (Steel)", + "description": "This Amazing Keyboard Super (Steel) is a highly rated keyboard for both small and large devices. It is also designed to be comfortable and easy to hold. It has good support against various inputs", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-12-20T03:01:29", + "price": 391.89, + "stock": 90, + "priceHistory": [ + { + "priceDate": "2021-02-02T04:39:56", + "newPrice": 423.93 + }, + { + "priceDate": "2022-11-16T04:39:56", + "newPrice": 384.94 + }, + { + "priceDate": "2024-10-28T04:39:56", + "newPrice": 391.89 + } + ] + }, + { + "id": "e74e835f-ee4f-4b20-9c31-d7b12f0abd82", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cruzwendy", + "reviewDate": "2022-11-14T03:58:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "361a47b1-13ee-4e50-8280-ef40a8fa380b", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andre03", + "reviewDate": "2022-05-12T10:14:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "95037579-1285-44c5-bf11-e45644dabf71", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer85", + "reviewDate": "2021-10-24T09:29:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1312d0ca-eb73-4e1b-ac36-d340cda6c7ae", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rjennings", + "reviewDate": "2022-10-02T15:51:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b066de86-cdc7-42d8-88f6-b188773733a6", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hjones", + "reviewDate": "2022-01-15T18:50:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "94d770c9-6197-49bb-b1b4-15d996925f70", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brendawilkerson", + "reviewDate": "2022-07-20T08:33:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fe14574d-dab8-4cba-ac29-4d3cbcfba8f4", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tracywest", + "reviewDate": "2022-06-17T20:21:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c634ea4e-e6ee-4c4c-b739-fd680e7bf0d6", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robinsonjonathan", + "reviewDate": "2021-12-22T05:11:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "36ec3261-0395-464d-9eb2-cb0a981da735", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinscott", + "reviewDate": "2021-07-22T07:18:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "88a687dc-cccb-4b7d-bad0-0daac47d46a1", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasongarner", + "reviewDate": "2022-05-15T06:24:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5e5640b5-374b-4237-be67-ce74b0d4b024", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasonmckinney", + "reviewDate": "2021-04-30T17:19:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "be01cd24-35a1-45de-b1ee-dd6889b7c058", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marissa06", + "reviewDate": "2022-05-07T23:25:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8dc468de-350a-4403-aea3-023592b53c52", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "owillis", + "reviewDate": "2022-10-10T17:25:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c001b692-c605-4d07-b6f1-93514ff21f06", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mbrowning", + "reviewDate": "2022-11-16T04:53:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8f420d48-7886-44f5-98e4-cf4e8ff88485", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bbartlett", + "reviewDate": "2021-02-04T22:00:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "88f74f6b-dadc-46a4-9cc5-70472025adc2", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "danielthompson", + "reviewDate": "2022-04-06T21:26:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "139604a1-6cb8-4e85-9fb4-3d2ddcfdec9d", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidingram", + "reviewDate": "2021-02-02T04:39:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "product", + "name": "Basic TV Ultra (Red)", + "description": "This Basic TV Ultra (Red) is a great example of what you can do to put it on. If you are new to a TV, you may not have heard of this TV before or know why. If you are new to the idea of a TV", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-09-27T22:35:28", + "price": 706.99, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-03-24T17:18:10", + "newPrice": 741.13 + }, + { + "priceDate": "2021-08-31T17:18:10", + "newPrice": 660.11 + }, + { + "priceDate": "2022-02-07T17:18:10", + "newPrice": 731.22 + }, + { + "priceDate": "2022-07-17T17:18:10", + "newPrice": 637.88 + }, + { + "priceDate": "2022-12-24T17:18:10", + "newPrice": 674.93 + }, + { + "priceDate": "2024-06-20T17:18:10", + "newPrice": 706.99 + } + ] + }, + { + "id": "ae13b2f8-166c-4f1f-9b80-5451afc7a36b", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "clawrence", + "reviewDate": "2021-11-19T00:01:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5f3aa3b7-ecf6-4323-9aaa-b50c83c6684b", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "annlopez", + "reviewDate": "2022-11-05T17:27:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "aad5c7b0-b95d-4b43-8547-c7a5ebe2a28a", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "parknathan", + "reviewDate": "2021-05-18T02:23:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2b34878c-34ca-44fb-b959-3c900464d689", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "georgeconley", + "reviewDate": "2021-03-24T17:18:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5bdd4429-914e-4540-b7ee-709779d2ab76", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "georgebenjamin", + "reviewDate": "2021-11-19T23:12:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6a0dc594-a158-47d0-8af8-22b79fb1e745", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "katherinegraham", + "reviewDate": "2022-05-11T18:29:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5d975e72-c2e8-4862-a877-aee468713182", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "kathleenparsons", + "reviewDate": "2022-01-22T00:30:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6401d0e3-e785-406a-9ccc-9eeec34f29b5", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "fernando66", + "reviewDate": "2021-09-23T23:17:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c737ef43-16d3-40bc-b5af-ed4d40d51382", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "williamvasquez", + "reviewDate": "2022-12-28T10:14:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "588dc44b-7a26-4b4e-84cf-107879c30327", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "raven32", + "reviewDate": "2021-07-27T10:20:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "22f8f607-589c-4ff9-bf90-3eb89eb6a660", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "kennethkeller", + "reviewDate": "2022-08-20T21:05:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cc8a195e-e9c5-4db8-8a49-a01d6230becb", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "kentturner", + "reviewDate": "2021-07-03T13:47:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f0a1fa62-c385-44a8-8fee-019bd07ca78e", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "matthewwilliams", + "reviewDate": "2021-11-04T06:13:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a9ac77f4-c750-4f72-af70-ef9e6a86922f", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "jessica02", + "reviewDate": "2021-12-11T02:40:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6a29df87-cf53-4b12-aa09-58888524da10", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Pro (Silver)", + "description": "This Awesome Speaker Pro (Silver) is great for my music projects or if I have time. While this speaker is in fact not as good as some others on Amazon, I", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-10-16T01:13:10", + "price": 824.01, + "stock": 54, + "priceHistory": [ + { + "priceDate": "2021-01-23T14:04:56", + "newPrice": 876.03 + }, + { + "priceDate": "2024-12-06T14:04:56", + "newPrice": 824.01 + } + ] + }, + { + "id": "ae4e8b7e-4f7b-424d-8cce-cc74c012a938", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "andersonjon", + "reviewDate": "2022-11-09T17:56:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2de31aa1-c4e7-4682-88b4-00be37222726", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "kristenjoseph", + "reviewDate": "2021-08-06T02:37:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "faf124ca-2c5c-4c34-ba41-dddbbe6338b6", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "jennifer82", + "reviewDate": "2021-01-23T14:04:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "934b2da3-6034-4efd-bffa-56edb904933f", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "dross", + "reviewDate": "2021-07-22T03:47:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "db709741-eab0-4e23-9b93-14b8b69e9ef1", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "cflores", + "reviewDate": "2021-07-17T06:07:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a9e5594c-a055-4ea4-9f29-cc61f0ed06eb", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "martinezmelissa", + "reviewDate": "2022-06-09T20:02:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "873fdbcb-ee92-4f28-9af0-342cf2f8f5ce", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "fletcherriley", + "reviewDate": "2021-08-09T05:46:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9abd697d-1f45-48be-bc02-29fc49654203", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "caleb72", + "reviewDate": "2021-10-02T16:50:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "791991a5-8829-4c21-81a7-5e17188c6d4b", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "sburton", + "reviewDate": "2022-10-24T16:55:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "efd3939f-179a-4890-948f-52c88a7b5c59", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "epatel", + "reviewDate": "2021-07-11T19:26:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Pro (Red)", + "description": "This Basic Mouse Pro (Red) is for both iPad Pro and iPhone 6 Plus users.\n\nWith a price of $500, it's a powerful addition to Apple's tablet lineup.\n\nThe Retina MacBook Pro, which launched with Retina display last year and now ships with a 4:3 aspect ratio while the original Retina MacBook has a curved panel with an ultra-HD 1920 x 1080", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-04-05T07:22:20", + "price": 985.46, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-03-21T23:23:00", + "newPrice": 985.38 + }, + { + "priceDate": "2021-08-26T23:23:00", + "newPrice": 1082.13 + }, + { + "priceDate": "2022-01-31T23:23:00", + "newPrice": 1027.35 + }, + { + "priceDate": "2022-07-08T23:23:00", + "newPrice": 1042.86 + }, + { + "priceDate": "2022-12-13T23:23:00", + "newPrice": 1068.68 + }, + { + "priceDate": "2024-04-09T23:23:00", + "newPrice": 985.46 + } + ] + }, + { + "id": "f869058a-7e6e-4b04-bd5f-b2fe7bd12abc", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "weisskelly", + "reviewDate": "2021-04-30T21:40:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "db3f20b0-fc23-4b84-95ce-5be70693421f", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "acampbell", + "reviewDate": "2022-08-08T00:22:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cbb0077c-0bb6-4bd0-8dba-6b219d7fb95a", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "isingleton", + "reviewDate": "2022-02-24T22:06:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ba85b885-a0ad-4426-a70a-a1240f06f5be", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael71", + "reviewDate": "2022-07-28T12:15:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a24ecedc-6353-43fb-99a2-179299944539", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "margaret79", + "reviewDate": "2021-09-06T18:15:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c5a1fb58-3172-4729-9f95-fd987b230be1", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xnguyen", + "reviewDate": "2021-03-21T23:23:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c3b0ffeb-21c0-45ba-a0f8-6dcde7bd98d8", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "whernandez", + "reviewDate": "2022-01-19T04:27:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9d73cec4-ceba-4366-95ea-a899b4e0cbf9", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "asmith", + "reviewDate": "2021-09-19T08:42:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1a541da7-f024-4124-88be-6818c9b51ca2", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "holly02", + "reviewDate": "2021-12-09T05:40:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "957780cc-f65b-418e-8132-6a912b536170", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bradleyparker", + "reviewDate": "2021-09-23T10:54:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5a96d171-1f7a-4010-8af6-c66f00b2da82", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "haley21", + "reviewDate": "2021-11-22T17:54:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3c538a8a-107b-4355-af93-004fe7d80c38", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mullendanielle", + "reviewDate": "2022-04-23T00:33:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "42691147-a333-452e-a660-367b292f6eff", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "renee81", + "reviewDate": "2022-12-17T19:20:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "50436c14-9e6f-4979-9065-8d51316e45e1", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeremyross", + "reviewDate": "2021-09-07T23:40:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2155471d-bd8c-46c2-9b29-fa32dbdcbeed", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "abigailmercado", + "reviewDate": "2022-11-04T16:19:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6b9fa7f7-40b1-4188-96e2-9ee0f27fef2b", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wfranco", + "reviewDate": "2021-06-12T00:24:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f575cba4-8de9-486a-9a43-b1ef3d8d1288", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simmonsvictor", + "reviewDate": "2022-01-24T18:43:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0fa93bcf-8ad2-4dfe-ab6f-872e1dbf2494", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robinperry", + "reviewDate": "2021-12-11T22:50:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2b74f364-3919-4295-b187-ec1fb9779d23", + "productId": "2b74f364-3919-4295-b187-ec1fb9779d23", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Super (Red)", + "description": "This Premium Speaker Super (Red) is a $100,000 premium speaker that will be made available to your favorite musicians and groups whenever they're ready. It offers a premium sound, an extensive range of materials, and an affordable price that will make your music stand out even more. A dedicated fan, the Premium Speaker is perfect for any age group.", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-10-17T06:19:29", + "price": 338.06, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2022-06-02T10:02:24", + "newPrice": 323.06 + }, + { + "priceDate": "2022-06-03T10:02:24", + "newPrice": 347.77 + }, + { + "priceDate": "2024-12-17T10:02:24", + "newPrice": 338.06 + } + ] + }, + { + "id": "2d597489-f383-49c4-a129-e7064ee79219", + "productId": "2b74f364-3919-4295-b187-ec1fb9779d23", + "category": "Media", + "docType": "customerRating", + "userName": "joshuahahn", + "reviewDate": "2022-06-02T10:02:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker 3000 (Black)", + "description": "This Awesome Speaker 3000 (Black) is rated 4.6 out of 5 by 16.\n\nRated 5 out of 5 by Fergys from Great speaker These microphones are great speakers for most recording purposes. It's good enough for some recording. If you plan to record vocals", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-04-25T02:05:09", + "price": 442.73, + "stock": 70, + "priceHistory": [ + { + "priceDate": "2021-02-28T17:01:10", + "newPrice": 469.42 + }, + { + "priceDate": "2022-12-20T17:01:10", + "newPrice": 460.11 + }, + { + "priceDate": "2024-12-02T17:01:10", + "newPrice": 442.73 + } + ] + }, + { + "id": "4df30f67-45d2-47d7-a430-a7601cfdf770", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "sguerrero", + "reviewDate": "2021-04-14T12:16:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b73135ee-a47f-4929-acce-2667ddaa2ea7", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "jessicathomas", + "reviewDate": "2021-05-26T21:41:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2a8e6c52-8c56-4c3a-a183-483070d57c6d", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "bookerkathy", + "reviewDate": "2022-04-23T01:01:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dbb839a5-9aab-49df-a381-ba569e154e7b", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth36", + "reviewDate": "2021-02-28T17:01:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2e61ceb2-a278-479d-9a5f-2701667398ad", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "kimberly97", + "reviewDate": "2021-06-27T17:07:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4312492b-1693-4a22-9fc1-6b9080555517", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "erinbush", + "reviewDate": "2021-10-26T08:10:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "519cd4f1-88cc-4ed2-aac4-8d8795ad13e7", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "dherman", + "reviewDate": "2022-12-21T09:21:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "46347bcb-473d-4a76-9ca0-da34592e2640", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Ultra (Steel)", + "description": "This Luxe Speaker Ultra (Steel) is available in 3 different mounting areas, but unlike our regular speaker models, this unique, 1-inch Ultra features a removable cover, a 4K panel, and our own proprietary LED light-up system which enables each individual amplifier to be configured for use on 3D displays and a 4K monitor. It's ideal for an evening or a corporate meeting, or to set up to play a lot of", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-02-26T11:34:26", + "price": 178.16, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-06-12T16:12:54", + "newPrice": 169.07 + }, + { + "priceDate": "2022-12-15T16:12:54", + "newPrice": 166.63 + }, + { + "priceDate": "2023-05-02T16:12:54", + "newPrice": 178.16 + } + ] + }, + { + "id": "4b58fd9e-43ef-4971-a7dd-cb24848ad903", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "thomaswoods", + "reviewDate": "2021-11-03T11:54:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5187b91a-a3fe-4725-96a3-6035e3fb533b", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "chadduncan", + "reviewDate": "2021-06-12T16:12:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "343486ce-a265-4b21-aa2a-c3ba820f8a1f", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonbrent", + "reviewDate": "2022-12-04T13:41:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "18890e04-3cbe-41f2-bdd0-856caa0dd955", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "rgeorge", + "reviewDate": "2022-05-02T09:00:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cfe99d97-f0ef-4b50-ad14-e92603842f79", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "ihall", + "reviewDate": "2022-08-17T00:56:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d9c51388-541f-49ef-9777-289d7329d2aa", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "schneiderchristopher", + "reviewDate": "2022-03-23T16:21:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "986c0214-c5be-4863-a283-528a790eb0e3", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "lopezkeith", + "reviewDate": "2022-12-16T07:18:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Silver)", + "description": "This Luxe Filter 3000 (Silver) is rated 4.4 out of 5 by 4.\n\nRated 4 out of 5 by Dolly19 from Very nice filter The filter was very well made. The color is perfect for my use! I bought the filter on two separate occasions. First time I bought the filter because of the high price of the filters from a Chinese online retailer, and second time because I wanted it to last longer. The product", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-03-09T05:01:49", + "price": 919.6, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-01-04T01:39:05", + "newPrice": 906.25 + }, + { + "priceDate": "2021-08-25T01:39:05", + "newPrice": 842.95 + }, + { + "priceDate": "2022-04-15T01:39:05", + "newPrice": 994.36 + }, + { + "priceDate": "2022-12-04T01:39:05", + "newPrice": 882.86 + }, + { + "priceDate": "2024-02-05T01:39:05", + "newPrice": 919.6 + } + ] + }, + { + "id": "5e0e06a7-c65c-4fc4-81c5-560a184fe05d", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "rodriguezconnie", + "reviewDate": "2022-06-10T11:23:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bd3466da-76a0-4a31-a2bc-08fe6510c313", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "vickiflores", + "reviewDate": "2022-12-04T21:27:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0b4c5336-8cee-4737-8d6e-b2be8ebc01b0", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "cbyrd", + "reviewDate": "2021-03-18T11:36:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "056f82a3-5c4a-4d2a-8f64-088496a69a59", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "timothymorton", + "reviewDate": "2021-01-07T23:56:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "92a7db9b-b744-4345-94e4-8e1db1d481d9", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "christopher09", + "reviewDate": "2021-12-21T04:06:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7815825a-3573-4417-a467-55d712e94f63", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "fletcheranne", + "reviewDate": "2022-02-23T03:28:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2874528e-3dd1-4882-995f-aab821098dda", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "leahlee", + "reviewDate": "2021-08-07T13:48:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "360141a3-f511-4129-b4d8-98ce02314b59", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "johnsonjames", + "reviewDate": "2022-07-12T06:40:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "18ca6731-8171-466e-8e5e-0b6094957e27", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "jacklewis", + "reviewDate": "2021-06-04T02:01:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2c0e74ac-34a8-42b1-969b-9b7d35d70298", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "caguilar", + "reviewDate": "2022-02-24T11:14:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ab5e6694-6bfc-4213-931b-2c0ebe5235b5", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "mmartinez", + "reviewDate": "2021-11-02T04:55:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "68bd49e4-c290-406b-8c91-15785b697646", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "oandrews", + "reviewDate": "2022-07-19T17:09:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "18a71b16-e36d-4853-a0af-47426c6c6972", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "mhernandez", + "reviewDate": "2021-12-31T01:28:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f34bdb77-c0ad-4dec-a71e-6b3d0616a6d9", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "mware", + "reviewDate": "2021-04-15T09:44:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ae6d9ed1-3c70-4b77-a9b7-2da8b51c7ca0", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "lopezjeffrey", + "reviewDate": "2022-05-24T04:19:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b82ab72b-0855-4c8e-ab45-7f9181a4bffa", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "fostertaylor", + "reviewDate": "2022-06-23T22:31:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "110ce768-9f03-4fd6-9244-3aa834bc006d", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "david04", + "reviewDate": "2021-01-04T01:39:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard 3000 (Black)", + "description": "This Premium Keyboard 3000 (Black) is equipped with two customisable buttons inside the switch. You can set the brightness, volume and number of switches on the main keyboard within the Control Panel menu.\n\nThis keyboard uses a full capacitive key pad for easier control when using multiple keyboards.\n\nThe special pad has a large number of buttons with 4 different sized buttons. The buttons do not fit together easily.\n\nThere's also a 'Matching", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-12-01T16:38:34", + "price": 609.61, + "stock": 82, + "priceHistory": [ + { + "priceDate": "2021-04-28T11:31:15", + "newPrice": 633.56 + }, + { + "priceDate": "2021-12-11T11:31:15", + "newPrice": 628.01 + }, + { + "priceDate": "2022-07-26T11:31:15", + "newPrice": 661.61 + }, + { + "priceDate": "2022-08-05T11:31:15", + "newPrice": 609.61 + } + ] + }, + { + "id": "6e06fded-3839-4d98-adf8-ac65ed860a17", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dfuentes", + "reviewDate": "2021-06-12T13:56:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "79d45fc6-1f5e-4bc4-b62c-a77b6d8ca62b", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rcarter", + "reviewDate": "2021-08-08T17:48:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e82a0f11-5721-467e-8aab-542c1faf20a8", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marisa36", + "reviewDate": "2021-04-28T11:31:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0176b9e6-17b6-430d-9836-87d549407a3b", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kennethcooley", + "reviewDate": "2021-07-12T07:19:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "55a9f279-0573-45f4-a881-08c9e223fe99", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steven29", + "reviewDate": "2022-07-28T02:17:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2cf89a9a-4057-41cf-84fa-529f03a802ba", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisa46", + "reviewDate": "2021-05-19T00:21:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "356264d9-9b49-4fa2-9245-774b49888ecb", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnsonkaren", + "reviewDate": "2021-11-01T21:58:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Gold)", + "description": "This Awesome Phone Super (Gold) is $1,250 USD and comes with a 1TB hard drive. The box comes with 5 different colors of Gold and is $2,000 USD. The", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-07-29T18:42:11", + "price": 497.67, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-01-27T10:35:23", + "newPrice": 464.41 + }, + { + "priceDate": "2021-08-18T10:35:23", + "newPrice": 490.39 + }, + { + "priceDate": "2022-03-09T10:35:23", + "newPrice": 516.76 + }, + { + "priceDate": "2022-09-28T10:35:23", + "newPrice": 497.73 + }, + { + "priceDate": "2023-11-21T10:35:23", + "newPrice": 497.67 + } + ] + }, + { + "id": "c8885410-4ea0-4cf2-b386-5e0d3fc06de3", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "wliu", + "reviewDate": "2022-09-28T21:13:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7fd2b99a-2c0a-47a5-ba1b-6ac30e06c32d", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "villarrealryan", + "reviewDate": "2022-08-02T17:43:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "710b3ee6-a4eb-49f1-836d-efc3dd87d71e", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "ilawson", + "reviewDate": "2021-11-18T04:18:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4ea5bf53-cebc-4389-91c5-e80149c95e12", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "hsmith", + "reviewDate": "2021-09-01T23:44:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fa89b5fb-66e5-4d5b-8e6c-6fef0f3d3d11", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "jimeneztiffany", + "reviewDate": "2022-02-03T13:52:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "97ee23d4-eb77-4105-a2de-1bce01b7071f", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "danielleross", + "reviewDate": "2021-11-23T16:49:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5cfb8949-0513-4a55-ad7a-83e473c9cef3", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "leslienelson", + "reviewDate": "2021-05-14T03:52:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4c43b3d4-ec53-4cca-b7b4-18d8dd4289dd", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "plam", + "reviewDate": "2021-09-29T06:33:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0491c02e-be84-4172-99e0-34c986509ca2", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "kcampbell", + "reviewDate": "2022-04-04T06:32:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3a12b8f7-d234-4f88-b089-d1d9e6083359", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacobsmark", + "reviewDate": "2021-08-25T22:42:43", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f39f950d-3cdf-4746-af54-8dba89328918", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "matthew06", + "reviewDate": "2021-12-20T17:18:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "901713aa-de7a-430f-bb4a-5f85efdf677a", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "david44", + "reviewDate": "2021-07-26T06:11:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3884e417-c913-415d-814e-f4b4392f3445", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica83", + "reviewDate": "2022-03-21T13:56:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "35775a64-d5f5-46c5-8594-77e198bdb810", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelle79", + "reviewDate": "2022-04-23T23:27:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0be2c2a8-99c1-4a68-8628-2c778751d411", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "pricedaniel", + "reviewDate": "2021-01-27T10:35:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e6172bb3-5984-4a47-89ff-edcfb9f39727", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "phillipayers", + "reviewDate": "2021-09-20T02:58:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "e9315ebe-3754-4fd8-a3ea-ff35dbfa7288", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "ifrench", + "reviewDate": "2022-09-19T01:49:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Super (Silver)", + "description": "This Amazing Computer Super (Silver) is a computer with super special features that are hard to describe, but easy to understand, how the computer works. It is quite unique. This computer is a step ahead of other super computers in my opinion. It can run on any", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-08-05T18:00:52", + "price": 909.18, + "stock": 34, + "priceHistory": [ + { + "priceDate": "2021-04-28T20:16:14", + "newPrice": 932.24 + }, + { + "priceDate": "2021-11-05T20:16:14", + "newPrice": 931.8 + }, + { + "priceDate": "2022-05-15T20:16:14", + "newPrice": 976.16 + }, + { + "priceDate": "2022-11-22T20:16:14", + "newPrice": 848.47 + }, + { + "priceDate": "2023-12-02T20:16:14", + "newPrice": 909.18 + } + ] + }, + { + "id": "f670d39b-662d-4750-a798-f50c66ee76e0", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "mwalker", + "reviewDate": "2022-11-06T12:01:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3f7b297b-4890-4a7c-a90e-85b776605a41", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "natashawilson", + "reviewDate": "2021-05-07T00:21:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a8961002-6a59-4490-a82c-78f553f17bbc", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert63", + "reviewDate": "2021-07-31T08:32:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "79bbf5d9-d460-492f-92b2-26772c7dc48e", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "krystalsmith", + "reviewDate": "2022-11-23T10:23:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "aa9b66a2-65bf-46df-81d5-e5e66b7e2148", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "margaretpena", + "reviewDate": "2021-04-28T20:16:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8e482ea4-a2a2-47b0-9d08-c850afc26198", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "ndiaz", + "reviewDate": "2021-11-28T02:58:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b9f660e2-a05d-49d6-9698-7166167f1b3c", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsbethany", + "reviewDate": "2022-08-11T18:05:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4726b429-6fd1-48f2-8de5-f5bbf192e76d", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "phyllis95", + "reviewDate": "2022-04-22T23:53:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e05c2fa1-714c-465c-b9e9-187ef074de4d", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "darren31", + "reviewDate": "2022-04-25T02:39:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Mini (Gold)", + "description": "This Luxe Keyboard Mini (Gold) is the most expensive and least known of its kind yet. As with all Luxe keyboards, it doesn't have a mechanical keyring. We've put together our list of the top price, weight, and value of this model.\n\nModel Date Price: $249.95 ($249.25 / £279) New and Old\n\nLuxury Keyboard\n\n", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-08-14T12:37:45", + "price": 856.91, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-03-26T02:41:52", + "newPrice": 942.51 + }, + { + "priceDate": "2022-02-10T02:41:52", + "newPrice": 911.21 + }, + { + "priceDate": "2022-12-28T02:41:52", + "newPrice": 932.49 + }, + { + "priceDate": "2023-12-05T02:41:52", + "newPrice": 856.91 + } + ] + }, + { + "id": "bdc4871a-b9bd-44e3-b385-642f949d9cad", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steventorres", + "reviewDate": "2022-12-29T03:24:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9248d0b1-873e-4981-b9d9-7499bd212171", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "julia86", + "reviewDate": "2022-04-08T07:40:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8e764656-2dc4-4551-9b99-361ff805caea", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tamara26", + "reviewDate": "2021-06-30T11:39:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cacb9188-c7c4-4bc9-9f9a-b19804ded722", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fpruitt", + "reviewDate": "2021-03-26T02:41:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4f435843-5ac4-4edd-a47d-e6374a0233bc", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicolebarnett", + "reviewDate": "2021-05-19T20:29:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "00341104-5f96-4772-aecc-9f65a620875a", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "juarezelizabeth", + "reviewDate": "2021-12-06T04:31:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5f01489f-73c2-4b11-9e26-4db63ef69203", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa34", + "reviewDate": "2022-09-13T16:22:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6974df4e-2457-4ee0-b79e-e3b5b34bf0e0", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fernandezdavid", + "reviewDate": "2021-05-23T23:24:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f4fdacb4-76e4-40b2-88ab-53b996303f2e", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chambersbrian", + "reviewDate": "2022-03-07T16:51:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98093f69-b8a5-4397-b18c-8cf307802f40", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williampierce", + "reviewDate": "2022-01-08T20:05:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8d10289f-8063-49a1-acea-71a98e462464", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "poncedaniel", + "reviewDate": "2021-05-14T22:08:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "689293e3-0af6-46eb-aa98-fbdbfc564dc6", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frederickmitchell", + "reviewDate": "2022-09-01T20:00:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Mini (Steel)", + "description": "This Luxe Stand Mini (Steel) is a sleek, modern, and stylish case for your home or office that will suit any occasion (including those around you), which is perfect for the outdoors. It's built to stand up to everyday wear, and has a rugged steel finish. The Luxe Stand Mini can accommodate a full height desk, a full width chair,", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-04-09T02:51:29", + "price": 893.96, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-02-10T22:15:45", + "newPrice": 935.85 + }, + { + "priceDate": "2022-05-02T22:15:45", + "newPrice": 893.96 + } + ] + }, + { + "id": "46153e5c-ab46-4ecf-8e4e-a999afde2c98", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "paulabrown", + "reviewDate": "2022-08-27T22:02:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7739726b-3bc9-4f1d-b2cb-24329fddcc04", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "erin64", + "reviewDate": "2021-02-20T17:36:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "83f46fec-34f8-437d-9083-715234fe40c6", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "rubengrant", + "reviewDate": "2022-11-28T01:13:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8d8512a7-5982-4426-ac45-8be0739068fd", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "mdickerson", + "reviewDate": "2022-10-23T19:35:50", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9234d917-e995-4849-8c00-324f114ce003", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "xsherman", + "reviewDate": "2022-09-16T21:12:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "138b80fa-6d0e-45bc-be49-c4153f9b7444", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "douglaslester", + "reviewDate": "2021-02-10T22:15:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "32bd6f78-9619-4201-947e-81f85cb3be7d", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "stevenlambert", + "reviewDate": "2022-10-19T21:52:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "30c6e46b-4ed8-46e2-abb8-de9dd205e62b", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "hobrien", + "reviewDate": "2021-12-13T03:31:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f29217d6-112b-48dc-8708-3d65fe50e027", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "todd05", + "reviewDate": "2022-01-28T07:24:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "product", + "name": "Awesome TV + (Gold)", + "description": "This Awesome TV + (Gold) is just too much trouble. (2017-03-18 01:55:58)\n\nWish to say I'm not going to tell you about my experience at The O2 or any other event, this is a VERY special episode of the", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-09-23T15:35:40", + "price": 866.31, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-03-11T22:03:08", + "newPrice": 944.54 + }, + { + "priceDate": "2021-10-14T22:03:08", + "newPrice": 895.87 + }, + { + "priceDate": "2022-05-19T22:03:08", + "newPrice": 894.98 + }, + { + "priceDate": "2022-12-22T22:03:08", + "newPrice": 939.55 + }, + { + "priceDate": "2025-06-05T22:03:08", + "newPrice": 866.31 + } + ] + }, + { + "id": "aa06f50a-ccaf-4d3e-8464-8fc9f3b32f1f", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "jeffrey85", + "reviewDate": "2021-08-30T07:37:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "307f90f7-6c64-4d0a-bf68-95d726abcf28", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "joseph40", + "reviewDate": "2021-12-11T07:21:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7a5fa182-6167-4103-98b2-23fe2dbf20e4", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "jamesroach", + "reviewDate": "2021-06-04T09:46:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f1754a59-408c-4e01-b8a3-7cda84a56979", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "davispaul", + "reviewDate": "2022-06-11T20:34:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3511e4c2-17c5-4221-a322-daec1e1cb921", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "connie03", + "reviewDate": "2022-09-08T00:33:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "07f16aa8-83d3-4795-b2ad-cb4b220c2016", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "michellegraham", + "reviewDate": "2021-04-26T23:15:26", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1ac73390-bd60-4c6a-a4c0-8aeefc9e1a7b", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "nharris", + "reviewDate": "2022-12-12T23:50:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f15ffdba-9682-4bcd-81fd-9515521959dc", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "zcampbell", + "reviewDate": "2021-04-24T22:11:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bd7861f5-fde2-4d9f-83f8-d283d162693e", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "mario26", + "reviewDate": "2022-09-27T08:24:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7bd3a17f-474a-4ec3-8345-6c12c71cf6d6", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "ryanevans", + "reviewDate": "2022-08-28T20:39:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1b5ae135-e54c-471d-a5a6-67f5d3a2fe3f", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "alice00", + "reviewDate": "2021-07-07T17:51:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bc01b3b5-f8a0-4041-98ee-2968448e7d54", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "hallgregory", + "reviewDate": "2022-10-07T03:28:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4bf31010-c02e-4e26-9689-5467c307d560", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "katiepratt", + "reviewDate": "2022-04-10T06:09:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "36c266fd-60af-4dc7-969a-01f1d6389114", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "robert90", + "reviewDate": "2022-04-13T06:20:22", + "stars": 5, + "verifiedUser": true + }, + { + "id": "08ff4baa-71cd-40da-adce-697943304d43", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "ryandonald", + "reviewDate": "2022-12-02T19:14:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b3c59415-df2c-4355-a8f3-17b91627e255", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "susan03", + "reviewDate": "2022-12-23T03:35:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0d692cae-be02-4928-958e-6cb2309434f1", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "walkerthomas", + "reviewDate": "2022-12-01T17:00:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e17e97bd-adf2-4d52-abd6-2d9bfd121125", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "ocabrera", + "reviewDate": "2022-04-12T09:06:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "596b19cb-1b89-42df-bf3e-cd90c7ad8c6c", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "brian30", + "reviewDate": "2021-03-11T22:03:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2e691145-bba5-4d4a-881c-13a8e8ad694a", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "christinabrown", + "reviewDate": "2021-10-17T22:08:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "65554573-b420-456a-9f4c-2edfbcffa972", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Gold)", + "description": "This Basic Speaker Mini (Gold) is a compact speaker with wide acoustic range.\n\nThe Mini is also popular with musicians for its versatility as it includes preamp, volume control, volume rock filter with 24-bit FIFO with a mono frequency response of up to 381 kHz on standard or AM/FM systems and", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-12-02T11:40:50", + "price": 247.43, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-13T02:59:39", + "newPrice": 252.32 + }, + { + "priceDate": "2024-06-22T02:59:39", + "newPrice": 247.43 + } + ] + }, + { + "id": "912a0810-a5b2-4a9d-81bb-381b082f2d69", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "garyramos", + "reviewDate": "2021-02-09T09:00:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "88209841-2500-4fa6-93d2-a77f447db27b", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "ejones", + "reviewDate": "2022-06-24T18:37:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a58f6aaf-a724-4813-b4db-476a10297d06", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "david08", + "reviewDate": "2022-08-27T19:25:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "aa6f0f40-0046-4b9d-9866-de965dcf94d8", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "howardshannon", + "reviewDate": "2021-01-13T02:59:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1a0adfef-66bf-4d1b-9fe8-6382f9335404", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "valdezbrian", + "reviewDate": "2022-07-23T20:05:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3fa6e839-7260-45ca-aa4b-19228059108c", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "hawkinstiffany", + "reviewDate": "2021-11-25T00:37:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c6349f55-dcdc-41b7-8cbe-d00fe6207ca3", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "jasonwolf", + "reviewDate": "2022-10-08T21:37:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a1c5f235-3876-43ef-aba5-a52839024110", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "christina04", + "reviewDate": "2021-11-18T01:36:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "406c0eb6-5fda-44b1-96e5-bbdf57ddfe75", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "rogerwood", + "reviewDate": "2021-11-20T15:15:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "product", + "name": "Luxe Filter + (Gold)", + "description": "This Luxe Filter + (Gold) is actually similar to the Silver Filter; it makes use of the fact that a gold filter needs a metal (e.g. a stainless steel) surface to capture sound (e.g. a copper plate). Gold has two advantages over Silver in achieving this, 1). There is no metal filter in platinum, and 2).", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-11-17T18:39:58", + "price": 777.9, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-06-12T12:25:22", + "newPrice": 711.28 + }, + { + "priceDate": "2021-11-20T12:25:22", + "newPrice": 813.18 + }, + { + "priceDate": "2022-04-30T12:25:22", + "newPrice": 744.04 + }, + { + "priceDate": "2022-10-08T12:25:22", + "newPrice": 843.72 + }, + { + "priceDate": "2025-01-09T12:25:22", + "newPrice": 777.9 + } + ] + }, + { + "id": "51cf0803-208c-40a4-866c-8f8adc5a6ff0", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "nwallace", + "reviewDate": "2022-07-25T15:12:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2ed57498-2c3f-4d42-b8f7-89e2971ce083", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "feliciawells", + "reviewDate": "2021-10-10T15:09:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5a54bfdd-8e22-4cf7-99ef-31ead301282c", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "bleblanc", + "reviewDate": "2021-11-09T02:36:33", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b8132c59-24a3-415c-b78e-65787e700a58", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "kvang", + "reviewDate": "2022-09-11T13:25:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fa26950b-ea56-4141-bbcc-96aed6441129", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "rhorn", + "reviewDate": "2021-06-12T12:25:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "afdf69b1-b71b-41b1-9511-b844308da817", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "eric63", + "reviewDate": "2021-07-13T15:46:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "87cc9745-55fd-49f1-8001-0f006edea4df", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "wwright", + "reviewDate": "2021-11-22T10:02:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0641bdce-0d69-49e8-94c9-c7288322f84b", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "petersangela", + "reviewDate": "2022-08-07T06:38:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e5dd379a-4c87-4c79-9b55-d901ab4183d8", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "hornsandra", + "reviewDate": "2022-02-19T13:00:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ef42510d-2303-4e31-8ff2-1130ab454946", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "melissa09", + "reviewDate": "2021-12-25T14:47:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fe793c00-e0fc-4538-9d5a-73d344a1bc2c", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "lbuckley", + "reviewDate": "2022-04-23T00:09:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "753711ac-1c7d-4065-bec7-ca0428ec340a", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "leon43", + "reviewDate": "2022-07-13T16:42:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "21c51f35-5cb9-442b-826b-5129f75379a2", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "jameswatson", + "reviewDate": "2022-02-18T21:46:06", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ba85c93e-2f6d-4634-959b-244a8754e32c", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "josephperkins", + "reviewDate": "2022-02-12T20:26:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b2e8eb93-dc98-46bc-b396-95c0cc661b3c", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "mhines", + "reviewDate": "2022-06-21T13:18:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1839873c-7801-4ae2-a466-e46ba3828380", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "lisa85", + "reviewDate": "2022-07-08T08:07:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "40c60297-08b4-4047-8aa9-33152c612a04", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "erin24", + "reviewDate": "2022-10-11T09:36:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Mini (Black)", + "description": "This Amazing Filter Mini (Black) is rated 4.4 out of 5 by 31.\n\nRated 5 out of 5 by David from Great for removing the lid of a bottle It works really well here as it has an extra hole for the lid opener so", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-10-27T16:50:36", + "price": 787.98, + "stock": 84, + "priceHistory": [ + { + "priceDate": "2021-03-07T15:51:10", + "newPrice": 831.45 + }, + { + "priceDate": "2021-09-30T15:51:10", + "newPrice": 865.39 + }, + { + "priceDate": "2022-04-25T15:51:10", + "newPrice": 814.89 + }, + { + "priceDate": "2022-11-18T15:51:10", + "newPrice": 723.3 + }, + { + "priceDate": "2023-04-18T15:51:10", + "newPrice": 787.98 + } + ] + }, + { + "id": "65b9610c-e575-48d9-b326-b7f75f06b307", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "vbray", + "reviewDate": "2021-10-01T20:19:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5d8f4d69-219f-4e56-bebd-c907dcd6a2c5", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "michellejenkins", + "reviewDate": "2022-07-01T18:58:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b51541f1-261e-43e1-8d25-a9e0f4b5dc36", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "bhamilton", + "reviewDate": "2021-03-28T21:04:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f96571c9-df58-413d-b453-c306eabc5b7b", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "kathleen60", + "reviewDate": "2022-07-03T04:15:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b1fd403b-f980-4b20-927d-439ef87a839e", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "dreynolds", + "reviewDate": "2022-05-06T18:03:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "566cd204-5d85-4e50-8759-b629ccf5eac1", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "michael06", + "reviewDate": "2022-04-16T19:29:31", + "stars": 5, + "verifiedUser": true + }, + { + "id": "0b80622e-a56a-4b69-a597-183751571e87", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "iduncan", + "reviewDate": "2022-06-12T07:58:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "75e4d453-f10b-43e7-a45d-5b6ac37cd1c2", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "rowemanuel", + "reviewDate": "2021-03-07T15:51:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a8950850-be89-454b-8b4f-4ed9864f8692", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "ybutler", + "reviewDate": "2022-01-03T11:07:58", + "stars": 5, + "verifiedUser": true + }, + { + "id": "fd8b0577-7bba-4ec4-8d58-8be71d8fd175", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "whiteteresa", + "reviewDate": "2022-07-31T18:09:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "92954b1d-50ea-40d8-90c8-b2071163750f", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "katrinawebb", + "reviewDate": "2022-09-30T23:04:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e93e3009-7616-4e5e-82ba-05325e52326b", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "adamstonya", + "reviewDate": "2022-11-18T20:39:42", + "stars": 5, + "verifiedUser": true + }, + { + "id": "76c217a9-e355-404c-8208-a2d399acbc82", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "johnstraci", + "reviewDate": "2021-08-27T20:44:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "263f4574-a17f-44b4-be19-6982ac36954a", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "jimenezamanda", + "reviewDate": "2022-10-30T15:20:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Micro (Steel)", + "description": "This Awesome Filter Micro (Steel) is rated 4.9 out of 5 by 25.\n\nRated 4 out of 5 by Michael K from Fantastic filter for the price and performance of this product. After all I have used this filter I would love for a wider variety of objects with a high power filter.\n\nRated 5 out of 5 by Anonymous from Great Value! Great value for a great price\n\nRated 5 out of 5 by jedn from A great filter for", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-02-08T07:21:06", + "price": 883.47, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-04-06T19:21:15", + "newPrice": 943.04 + }, + { + "priceDate": "2021-09-02T19:21:15", + "newPrice": 890.36 + }, + { + "priceDate": "2022-01-29T19:21:15", + "newPrice": 939.8 + }, + { + "priceDate": "2022-06-27T19:21:15", + "newPrice": 910.27 + }, + { + "priceDate": "2022-11-23T19:21:15", + "newPrice": 928.26 + }, + { + "priceDate": "2023-12-22T19:21:15", + "newPrice": 883.47 + } + ] + }, + { + "id": "80c60972-7c4f-49be-b69e-db9444a9dba1", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "limichael", + "reviewDate": "2022-01-08T17:33:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "59f659b0-dd76-4a15-b405-8caaab172e23", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "yolanda38", + "reviewDate": "2021-09-19T11:52:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "0a1335f8-93e8-4735-ac7b-65fcb7420184", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "sarah98", + "reviewDate": "2022-06-27T04:48:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0208af08-dcaa-4374-a9e9-923d566d4cce", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "julie97", + "reviewDate": "2022-11-23T19:54:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2d07a5b3-d5f7-41f7-b92a-0a5d36b71d9c", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "fherrera", + "reviewDate": "2021-04-06T19:21:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7e081331-e61a-453f-b440-a040990fa77f", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "chenpeter", + "reviewDate": "2021-11-27T04:50:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Micro (Black)", + "description": "This Amazing Phone Micro (Black) is powered by the Qualcomm Snapdragon 825 chipset. It features a quad-core 434MHz (4 MB/s) SoC", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-01-08T07:22:58", + "price": 951.45, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-08-01T02:27:49", + "newPrice": 913.12 + }, + { + "priceDate": "2021-11-28T02:27:49", + "newPrice": 1040.18 + }, + { + "priceDate": "2022-03-27T02:27:49", + "newPrice": 888.96 + }, + { + "priceDate": "2022-07-24T02:27:49", + "newPrice": 1042.24 + }, + { + "priceDate": "2022-11-20T02:27:49", + "newPrice": 981.55 + }, + { + "priceDate": "2023-07-10T02:27:49", + "newPrice": 951.45 + } + ] + }, + { + "id": "e76d1492-188a-4274-865d-c881e19b0b97", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "travis35", + "reviewDate": "2022-01-05T17:23:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a016b6ca-7df5-4cff-b70a-3b07c948cabe", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelelliott", + "reviewDate": "2022-11-21T15:49:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4166c9a4-de31-44b9-9256-fe6b6b03f979", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "christensenjennifer", + "reviewDate": "2022-11-11T05:34:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f81e6b7b-1f81-474a-b15c-91798bc55393", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "zfoley", + "reviewDate": "2021-08-10T00:47:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e49144dc-c297-4a39-881e-3bd5cb56ac67", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "scottphillips", + "reviewDate": "2021-08-10T03:24:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ed1d9ff7-afad-47d0-bf7e-4279af43e854", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "david89", + "reviewDate": "2022-04-04T04:35:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "256ec2f2-635e-4481-bdb3-5fbedd9b0020", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "larryking", + "reviewDate": "2021-08-01T02:27:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Pro (Silver)", + "description": "This Awesome Speaker Pro (Silver) is rated 4.4 out of 5 by 5.\n\nRated 5 out of 5 by Anonymous from Can't get one. It took me many tries to get it working correctly.\n\nRated 5 out of 5 by Anonymous from Worked perfect", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-11-08T19:17:38", + "price": 241.67, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-04-21T21:26:04", + "newPrice": 227.95 + }, + { + "priceDate": "2021-07-28T21:26:04", + "newPrice": 234.86 + }, + { + "priceDate": "2021-11-03T21:26:04", + "newPrice": 223.71 + }, + { + "priceDate": "2022-02-09T21:26:04", + "newPrice": 247.58 + }, + { + "priceDate": "2022-05-18T21:26:04", + "newPrice": 221.1 + }, + { + "priceDate": "2022-06-11T21:26:04", + "newPrice": 241.67 + } + ] + }, + { + "id": "4647fd49-b064-48c7-9ed6-b1662b449ea5", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "ybarton", + "reviewDate": "2021-10-02T15:24:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b04db1fb-c3ce-4236-925b-9cd12eca0561", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "kenneth50", + "reviewDate": "2022-04-26T09:30:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "19d063cd-e4ee-4bf9-aa85-e9026a5637cc", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "codyfarmer", + "reviewDate": "2021-05-13T19:00:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2905a00a-ebc3-4663-a79a-77600aaade1f", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "jenniferwagner", + "reviewDate": "2021-04-21T21:26:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c376ae6c-5eaa-4992-88c7-81231228c397", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "pramsey", + "reviewDate": "2021-08-10T15:29:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "464fd361-6ff7-44b0-8c17-f97fc582b125", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "troy75", + "reviewDate": "2022-05-19T14:16:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0245e5b0-6ffc-4a89-bafd-a703a9cdbc94", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "caitlinfisher", + "reviewDate": "2021-08-05T14:20:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b8d8d6c3-8e46-4037-94f5-5bc11c0468c4", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "wbaker", + "reviewDate": "2021-09-05T22:05:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "product", + "name": "Basic TV Mini (Silver)", + "description": "This Basic TV Mini (Silver) is now available!\n\n\nClick here to buy this TV Mini (Silver)\n\nClick here to buy this TV Mini (Silver)\n\nClick here to buy this TV Mini (Silver)\n\nClick here to buy this TV Mini (Silver)", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-12-28T16:38:23", + "price": 416.36, + "stock": 49, + "priceHistory": [ + { + "priceDate": "2021-02-07T03:23:26", + "newPrice": 395.33 + }, + { + "priceDate": "2021-07-19T03:23:26", + "newPrice": 397.22 + }, + { + "priceDate": "2021-12-28T03:23:26", + "newPrice": 418.98 + }, + { + "priceDate": "2022-06-08T03:23:26", + "newPrice": 431.68 + }, + { + "priceDate": "2022-11-17T03:23:26", + "newPrice": 408.6 + }, + { + "priceDate": "2024-01-14T03:23:26", + "newPrice": 416.36 + } + ] + }, + { + "id": "4b6fc374-1f4b-4e53-9be8-80178116f252", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "dianaquinn", + "reviewDate": "2021-10-22T08:33:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b8da9cdb-d173-4498-9fef-7fb3b29a0ca5", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "irichards", + "reviewDate": "2022-03-30T05:35:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2bd29da1-56de-4544-b6e5-404e99fec5b0", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "kimberly89", + "reviewDate": "2021-12-12T01:04:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fc54ef42-e80c-4301-bbba-bb33454b4688", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "uhill", + "reviewDate": "2022-04-17T17:53:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9bd45752-927e-4074-b3ea-cd9c55c8a1e2", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "christopher05", + "reviewDate": "2022-05-05T09:39:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "562519e1-6a61-42e1-a39c-ae23db178261", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "briana16", + "reviewDate": "2022-10-23T20:14:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c8d5ebdd-102b-4ac2-a62d-d7caa3e31ae5", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "hannahcoleman", + "reviewDate": "2021-03-02T11:38:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f821ab2e-3d37-4d90-9c3a-47bdafef7b9d", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "ymason", + "reviewDate": "2022-11-20T00:30:38", + "stars": 5, + "verifiedUser": false + }, + { + "id": "897c9177-5735-4c65-a355-49bda554f4f6", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "richardsanders", + "reviewDate": "2021-05-15T10:54:18", + "stars": 5, + "verifiedUser": false + }, + { + "id": "e5d8cfd4-bc76-42c6-940c-f37fa6461e22", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "traceysimpson", + "reviewDate": "2021-02-07T03:23:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Micro (Black)", + "description": "This Luxe Keyboard Micro (Black) is available in White, Blue and Black. The keyboard's top section displays a new Cherry MX strip for improved responsiveness and smooth movement of keys", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-02-13T06:05:16", + "price": 707.47, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-03-14T22:34:26", + "newPrice": 662.29 + }, + { + "priceDate": "2021-10-16T22:34:26", + "newPrice": 750.78 + }, + { + "priceDate": "2022-05-20T22:34:26", + "newPrice": 732.63 + }, + { + "priceDate": "2022-12-22T22:34:26", + "newPrice": 748.33 + }, + { + "priceDate": "2023-09-17T22:34:26", + "newPrice": 707.47 + } + ] + }, + { + "id": "d44b45ae-5c12-46ce-9f07-6a774b10fe3b", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hanseneric", + "reviewDate": "2022-10-22T03:13:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4d0334bb-2fed-4461-bc41-528fab478721", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paulgarcia", + "reviewDate": "2022-10-11T00:40:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a1b308ee-7cc4-4870-bc6d-2aea5714d0a0", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cory51", + "reviewDate": "2021-08-16T03:54:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "434f6142-f95a-45dd-a6ca-b20d88304dad", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simmonschristopher", + "reviewDate": "2021-07-22T13:50:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "45e533b6-e9ea-489b-aa60-fa461f233c6f", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karenharris", + "reviewDate": "2021-03-14T22:34:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9096e00b-eef2-4af7-9633-c8f4d49dbfd2", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithhunter", + "reviewDate": "2021-05-24T03:09:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "035607f0-9e7b-4971-91bf-ef4ad5def001", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daniel64", + "reviewDate": "2021-05-20T09:22:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1ca13e48-e171-44dd-bd6e-3d8820305183", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "olsonandrew", + "reviewDate": "2022-10-25T17:41:51", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6611d052-9630-41dd-a326-4c7354d8ad4c", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lrice", + "reviewDate": "2022-04-30T11:13:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2e1a7cee-51d2-4fac-955c-29df66b55639", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tammyhutchinson", + "reviewDate": "2022-08-16T12:53:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1fb6b0f1-b264-4c6b-99fc-ba8652be58dc", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelagonzalez", + "reviewDate": "2021-12-01T20:13:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c562da6d-66cb-4c1b-8b12-804fbff8b0cd", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wongjohn", + "reviewDate": "2022-11-27T14:01:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "472ff0e2-0d43-4ed9-9174-9595d413e113", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "allen17", + "reviewDate": "2022-08-23T04:15:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f016a8a3-26f0-4071-99c3-1b470c55ec8d", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dharrington", + "reviewDate": "2022-12-23T05:10:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ef1a1805-6ecb-40aa-a6aa-1662256552ea", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "olewis", + "reviewDate": "2021-11-08T05:11:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c24545a8-831c-4a00-8d8d-2654138a1fc0", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "russellbenjamin", + "reviewDate": "2022-04-29T06:17:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d53dbd55-b336-47af-a45e-206c122c483a", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chandlerstephen", + "reviewDate": "2021-12-10T03:41:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Black)", + "description": "This Awesome Phone Super (Black) is an HTC Desire 6 Plus that supports Android 8.0 Nougat on your phone. The handset comes with a micro-SIM slot and allows you to connect directly to the Internet of Things (IoT) network so you don't miss out on anything.\n\nWhat you'll need:\n\n• An Android 8.0 Nougat Phone (0.5.4)\n\n• 2GB of", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-06-27T07:23:31", + "price": 654.16, + "stock": 2, + "priceHistory": [ + { + "priceDate": "2021-01-16T03:26:44", + "newPrice": 710.74 + }, + { + "priceDate": "2021-07-07T03:26:44", + "newPrice": 606.59 + }, + { + "priceDate": "2021-12-26T03:26:44", + "newPrice": 653.87 + }, + { + "priceDate": "2022-06-16T03:26:44", + "newPrice": 678.38 + }, + { + "priceDate": "2022-12-05T03:26:44", + "newPrice": 677.29 + }, + { + "priceDate": "2023-04-11T03:26:44", + "newPrice": 654.16 + } + ] + }, + { + "id": "cd316510-df29-4c77-a5d7-fe879d5eff63", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "lsantos", + "reviewDate": "2022-03-22T15:34:41", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7dd4548a-5e8a-4bdb-98a2-8789de150ff7", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "andersonsteven", + "reviewDate": "2021-08-06T16:41:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "51e38d26-1c7c-466f-831d-6c1a60289459", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristenramos", + "reviewDate": "2021-10-10T08:58:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5652a49e-359f-41b8-8ce1-552d56021c58", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica62", + "reviewDate": "2021-01-16T03:26:44", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d97431a9-42d8-4280-bd25-a2df4e86cfc7", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "joanna14", + "reviewDate": "2021-08-05T21:47:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3f07bfb9-0966-43b2-8660-24bd804df4e9", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "ehill", + "reviewDate": "2021-10-27T13:03:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "473ac87a-ab3d-41c5-8ea1-5ebfabe3e97d", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "cassandrajohnson", + "reviewDate": "2022-01-11T19:25:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a5a36098-cf30-498e-9c88-29cd0f32a876", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevin84", + "reviewDate": "2021-02-15T21:22:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c56a7b98-9472-4fe2-83e8-5114ff3d8e94", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberly37", + "reviewDate": "2022-07-18T07:22:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "207bb2ba-604a-4404-9bf2-68f52af2cd70", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "brockjose", + "reviewDate": "2022-02-03T17:34:40", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4c63df81-aef9-4983-8546-8452bd546825", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "brian88", + "reviewDate": "2021-03-19T18:29:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8e927499-b25e-4b18-973e-250a138f265a", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "qduarte", + "reviewDate": "2022-09-22T19:23:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c87fe846-74de-4844-a3be-b80d60d3cf6c", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "twade", + "reviewDate": "2022-07-23T10:38:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "84e3642f-5d63-4fb6-8a3c-9eeefa8a4956", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "daniellegonzalez", + "reviewDate": "2021-08-27T07:57:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8781fd92-cb6c-4212-a701-7a6bf80c24e8", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidwoods", + "reviewDate": "2021-10-29T22:28:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "32528bab-7a51-4794-bdac-e70859794128", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "mercerhannah", + "reviewDate": "2022-12-08T21:24:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e4300b13-a47a-4542-89a8-6813dbf12961", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathangallagher", + "reviewDate": "2022-11-14T17:43:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "28f95f5c-7aee-4352-9dce-38825bede227", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Super (Steel)", + "description": "This Amazing Computer Super (Steel) is one of the oldest Supercomputer in the world. It was built by BH and is considered one of the World's Most Powerful Computers. The BH Supercomputer uses modern components and all modern software to provide powerful computation and power. The computer itself, however, is based on the original IBM computer", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-01-05T02:35:29", + "price": 493.62, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-01-12T09:52:30", + "newPrice": 536.61 + }, + { + "priceDate": "2021-04-27T09:52:30", + "newPrice": 493.62 + } + ] + }, + { + "id": "7800ef65-2747-4e9a-b62e-661165eb2570", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "martinsabrina", + "reviewDate": "2022-01-20T13:22:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "88d2fe67-8269-4154-97db-823aee0f21eb", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "lindsaysimon", + "reviewDate": "2022-08-10T12:03:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c21cd436-d1a7-4b45-a903-812d99c0623c", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelly68", + "reviewDate": "2022-03-14T04:10:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8c4a4a20-6a62-4103-8773-f71c60811c64", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "fpatrick", + "reviewDate": "2022-12-07T11:21:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5ec52631-2eae-4533-a8fb-c34cd381cc69", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "ytapia", + "reviewDate": "2022-01-26T05:12:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5c853204-2ea2-4eac-b777-44727234ce7e", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "uwood", + "reviewDate": "2022-04-14T17:16:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f1420f0f-2034-4e83-ba99-9e8d732eaa6b", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "ygarcia", + "reviewDate": "2022-08-12T07:55:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f9e9f7d6-d75d-40b9-9ef9-fe8d6483f2a2", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "dannymills", + "reviewDate": "2021-08-20T04:09:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e3af55bb-dde3-468c-9734-9450a7696e79", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda57", + "reviewDate": "2022-07-27T22:53:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6446f275-583c-49fa-9072-5ea5b5d3f516", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "norriswillie", + "reviewDate": "2021-01-21T07:48:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d1f75592-5ff1-410f-95ad-e9d514d95fd3", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaronflores", + "reviewDate": "2021-09-17T12:08:43", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5e80eba1-551b-4a71-a1fb-dc20db26dd36", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "james43", + "reviewDate": "2022-06-25T13:00:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "08650a6c-1da5-4b58-83dd-f93f0fd91ab0", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "jerry17", + "reviewDate": "2022-05-23T23:41:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e1ae1f15-dd86-4772-80a8-74dc2d1ced75", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "zmartin", + "reviewDate": "2021-01-12T09:52:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "86b4da14-c173-4eb0-aa03-cfbb86736465", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashley47", + "reviewDate": "2021-04-24T02:32:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4579d9cf-5fd7-4346-8862-8027d5b7b097", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcclainryan", + "reviewDate": "2022-05-06T22:21:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "72527bbb-a402-4831-8b25-add52beb2041", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "denise70", + "reviewDate": "2022-11-01T05:32:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6b143987-6ee2-47de-a9db-32cf6a1aa2f1", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "wdouglas", + "reviewDate": "2022-08-10T16:26:33", + "stars": 5, + "verifiedUser": false + }, + { + "id": "fabf354f-69a0-4fa9-a83a-eaa814907c58", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "freyclifford", + "reviewDate": "2022-12-28T02:54:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aca86620-8f01-4988-b161-06a3ea591156", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "product", + "name": "Premium TV Ultra (Black)", + "description": "This Premium TV Ultra (Black) is rated 4.1 out of 5 by 6.\n\nRated 5 out of 5 by Dan from I had", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-01-28T16:52:40", + "price": 847.09, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2022-02-09T11:50:44", + "newPrice": 781.13 + }, + { + "priceDate": "2022-07-30T11:50:44", + "newPrice": 810.65 + }, + { + "priceDate": "2023-06-02T11:50:44", + "newPrice": 847.09 + } + ] + }, + { + "id": "10e2ada4-6c21-4ada-9494-5dbc999c4b80", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "customerRating", + "userName": "burtonbill", + "reviewDate": "2022-03-01T16:30:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6ca0c827-afa4-4c31-b694-f8c5b79f5e0b", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "customerRating", + "userName": "kirbysteven", + "reviewDate": "2022-02-09T11:50:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1d413d66-dbb3-43c6-a126-a9babc5ddfd7", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "customerRating", + "userName": "teresa13", + "reviewDate": "2022-07-30T17:00:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "871489db-8442-450f-b04f-97f099bcdc39", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "customerRating", + "userName": "katierodriguez", + "reviewDate": "2022-04-02T09:29:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand 3000 (Silver)", + "description": "This Luxe Stand 3000 (Silver) is a set featuring a single-coated stainless steel blade, two large, single-coated diamond-coated stainless steel studs, a single-coated stainless steel shaft under tension at 100 mm, a single-coated stainless steel handguard with a silver ring, polished nickel-plated steel shaft with nickel plating and nickel rings, and", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-02-01T04:40:17", + "price": 424.89, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-02-08T08:57:45", + "newPrice": 393.57 + }, + { + "priceDate": "2021-09-05T08:57:45", + "newPrice": 463.78 + }, + { + "priceDate": "2022-04-02T08:57:45", + "newPrice": 449.76 + }, + { + "priceDate": "2022-10-28T08:57:45", + "newPrice": 393.12 + }, + { + "priceDate": "2025-03-02T08:57:45", + "newPrice": 424.89 + } + ] + }, + { + "id": "5d485261-dadf-42df-9122-243343195706", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "susan13", + "reviewDate": "2022-03-06T06:19:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "14c21c30-2de5-4240-9569-b85ed1450cd5", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "perezalan", + "reviewDate": "2021-12-09T18:39:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a7c47c09-412d-4983-a64c-12ec56188104", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "crawfordedwin", + "reviewDate": "2021-05-10T03:43:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7be8f12d-005e-4c95-b101-75348bff4b08", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "mendezedward", + "reviewDate": "2021-09-04T21:50:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5ec579c1-8b72-427c-9ec7-c1630ad9fd86", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "tracygarcia", + "reviewDate": "2022-10-28T19:27:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3a01c7f7-7929-46ce-bc9a-8cd54c114b94", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "mitchellanthony", + "reviewDate": "2022-06-16T08:20:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "948de97d-a1cd-47e2-be2a-cbf4f80345cf", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "ryan03", + "reviewDate": "2021-11-02T04:13:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5c63528d-afbe-4df4-8145-3ae7285334fe", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "kennedynicholas", + "reviewDate": "2021-02-08T08:57:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4e7d84f2-9dfa-4131-9649-538ae475d76b", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "carrillomelvin", + "reviewDate": "2021-06-19T22:26:36", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2c3e6e46-3f08-471a-b0a8-a4c466bdc672", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "alvaradojennifer", + "reviewDate": "2021-03-31T09:29:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1a896849-881b-40d3-b00d-ecb31f9a144d", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "joannerogers", + "reviewDate": "2022-04-27T06:16:25", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "product", + "name": "Awesome TV Ultra (Steel)", + "description": "This Awesome TV Ultra (Steel) is designed to be used at home for special occasions, and is available on Blu-ray with disc and DVD release in 2013. It is the only new digital Ultra package for the show.\n\nPrice\n", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-11-20T10:14:55", + "price": 728.91, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-01-14T02:41:35", + "newPrice": 714.52 + }, + { + "priceDate": "2022-01-14T02:41:35", + "newPrice": 695.94 + }, + { + "priceDate": "2024-06-06T02:41:35", + "newPrice": 728.91 + } + ] + }, + { + "id": "6b5ca460-1a48-4656-9679-47c16958870c", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "matthew48", + "reviewDate": "2021-01-19T15:26:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ba4c72e0-36f4-4b67-8745-93e0b007d45f", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "georgetanya", + "reviewDate": "2021-09-26T10:30:39", + "stars": 5, + "verifiedUser": true + }, + { + "id": "760452eb-4d2d-471e-96a2-2bdf7046932d", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "trichardson", + "reviewDate": "2021-01-14T02:41:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fd1124f1-aa51-4788-a350-199dc40b746c", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "ashley41", + "reviewDate": "2021-03-06T06:15:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "32b6c77b-5c84-4fe2-a6b5-48fe493599a6", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "jaredshaw", + "reviewDate": "2021-12-15T23:23:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "e00eadec-023a-4702-8d64-d049e674d03f", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "jerryjordan", + "reviewDate": "2022-01-14T20:30:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Pro (Steel)", + "description": "This Premium Stand Pro (Steel) is the latest piece in the $50 billion and a decade-old trend that's changing the game for teams and manufacturers.\n\nThe $", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-01-04T05:55:11", + "price": 527.07, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-02-23T20:17:30", + "newPrice": 512.69 + }, + { + "priceDate": "2021-09-23T20:17:30", + "newPrice": 573.77 + }, + { + "priceDate": "2022-04-23T20:17:30", + "newPrice": 549.37 + }, + { + "priceDate": "2022-08-23T20:17:30", + "newPrice": 527.07 + } + ] + }, + { + "id": "0ec65df8-3cd3-4b1e-a618-a42ad06808e7", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "schen", + "reviewDate": "2022-04-24T18:00:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e24232d5-08bd-4ca9-9d96-7fe3aac275da", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "vasquezmichael", + "reviewDate": "2021-08-06T09:33:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "19f5b6cb-1a1a-4e1c-a691-881e9ea4f486", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "cramirez", + "reviewDate": "2021-06-28T05:10:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "036fba5d-5ead-4677-ab4e-7c3ea670ca51", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholas52", + "reviewDate": "2022-01-10T16:45:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8f41041d-d5ef-4b0b-ba25-5538b5fdb77f", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamduran", + "reviewDate": "2021-12-11T11:23:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "969d51ff-11b7-4448-94d2-cc2090239ede", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "utaylor", + "reviewDate": "2021-02-23T20:17:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7a38d125-81d2-4aac-9042-be30d7d16baa", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "bushandre", + "reviewDate": "2021-08-12T08:13:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse + (Black)", + "description": "This Premium Mouse + (Black) is not available.\n\nClick here to return to the shopping cart", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-06-27T18:34:00", + "price": 211.53, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-01-01T16:44:56", + "newPrice": 204.39 + }, + { + "priceDate": "2022-12-19T16:44:56", + "newPrice": 221.74 + }, + { + "priceDate": "2024-01-27T16:44:56", + "newPrice": 211.53 + } + ] + }, + { + "id": "11d2e953-c001-4b0e-94c3-4f2ebd5d7bb1", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidwilliams", + "reviewDate": "2021-12-25T23:31:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6cbc6642-f313-4f92-ad6a-4a15437ccb44", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "krista30", + "reviewDate": "2022-05-13T13:27:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6d8c6511-1284-49ae-bf29-2665d1ea372c", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sandraryan", + "reviewDate": "2022-01-06T12:53:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "951fd93e-9790-40c8-9043-dbeae0d845af", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harrisnancy", + "reviewDate": "2021-09-28T19:13:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7f086c14-74f8-4cd2-ac85-9e2e899f5588", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "teresa47", + "reviewDate": "2022-05-19T15:20:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "393e652a-1373-46b1-8cd8-0fd0c54dee2d", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "townsenddawn", + "reviewDate": "2021-06-22T07:41:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d7b3250-407f-401a-8053-9ed390e4134a", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kaitlynmays", + "reviewDate": "2021-01-01T16:44:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "69cd9368-683a-48d9-a181-5295a14eec49", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "goldenangela", + "reviewDate": "2022-12-19T18:18:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0f1d9f49-50e9-4186-b592-b0cbc525de62", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sarah87", + "reviewDate": "2021-06-14T22:40:10", + "stars": 5, + "verifiedUser": false + }, + { + "id": "68fc7299-57eb-49c4-a8c1-56eb19114f25", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "catherine14", + "reviewDate": "2021-11-14T19:04:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "42b5a0c0-48a7-4b75-83a3-af8a1db5119e", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zroth", + "reviewDate": "2022-11-25T21:34:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "459c63e0-e036-4f31-90ec-6c353226a0d1", + "productId": "459c63e0-e036-4f31-90ec-6c353226a0d1", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Mini (Steel)", + "description": "This Amazing Speaker Mini (Steel) is rated 4.7 out of 5 by 22.\n\nRated 1 out of 5 by Steve from We purchased these speaker inserts in two different versions. First edition we got them in both silver and black. The second edition had the gold insert. Although the white insert was fine, the blue was not, and it was noticeable for", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-11-18T05:20:37", + "price": 811.6, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-12-02T08:03:17", + "newPrice": 878.29 + }, + { + "priceDate": "2025-04-23T08:03:17", + "newPrice": 811.6 + } + ] + }, + { + "id": "cc6e2e2b-58db-4404-b6c6-df9a495b2af7", + "productId": "459c63e0-e036-4f31-90ec-6c353226a0d1", + "category": "Media", + "docType": "customerRating", + "userName": "jeffreysnyder", + "reviewDate": "2021-12-02T08:03:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7b7fb897-01f6-42e7-94b3-aefaa28a07ae", + "productId": "459c63e0-e036-4f31-90ec-6c353226a0d1", + "category": "Media", + "docType": "customerRating", + "userName": "baldwinchris", + "reviewDate": "2022-12-25T14:02:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9c5ecd6e-c383-4875-b493-97a471507165", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer 3000 (Silver)", + "description": "This Awesome Computer 3000 (Silver) is our first ever Kickstarter special, so we're looking forward to your feedback about this fantastic product as well as our future plans.\n\nPlease join our conversation on social media using #Patreon for all the latest in geek-related news and other cool things.\n\nAbout P.E.N.M.\n\nP.E.N.", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-03-17T18:51:54", + "price": 840.72, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-02-01T06:20:48", + "newPrice": 902.98 + }, + { + "priceDate": "2021-07-14T06:20:48", + "newPrice": 920.01 + }, + { + "priceDate": "2021-12-24T06:20:48", + "newPrice": 784.48 + }, + { + "priceDate": "2022-06-05T06:20:48", + "newPrice": 882.88 + }, + { + "priceDate": "2022-11-15T06:20:48", + "newPrice": 821.24 + }, + { + "priceDate": "2023-11-24T06:20:48", + "newPrice": 840.72 + } + ] + }, + { + "id": "09fdda03-0faa-4ce3-b0fb-46ecf4d35119", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "moyertommy", + "reviewDate": "2022-04-30T20:57:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "78e07e33-e3cd-4c54-a028-48e66729d33a", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "vaughngregory", + "reviewDate": "2021-08-19T17:37:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cf7bf021-cbd4-4140-9f8d-e6976bb1f1e5", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "katie08", + "reviewDate": "2021-12-21T08:00:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "598ca081-78ba-4063-80c4-50eee1b0520e", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "fcortez", + "reviewDate": "2021-10-24T06:15:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8b7fb906-77bb-4d7d-9a53-edf339762120", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "urodgers", + "reviewDate": "2021-07-26T08:42:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7a750406-62fe-4dde-bb5c-4d0f9dc7178d", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "amandaoconnor", + "reviewDate": "2021-08-15T01:22:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0f0fcf72-e765-4cff-8223-4953b8ef78f7", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "edward98", + "reviewDate": "2021-03-20T15:39:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1684ff61-9546-4577-a095-97b996cc02fa", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "zoe36", + "reviewDate": "2022-08-12T22:40:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ac11813c-c957-43a3-bce2-e917fb010fff", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "dgordon", + "reviewDate": "2021-02-01T06:20:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c0d00b8a-a105-40a0-9bfd-4ccee30d0e1b", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "haletravis", + "reviewDate": "2022-11-19T05:33:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f52d1507-bd06-43a1-8c45-c6f579e35876", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "antonio43", + "reviewDate": "2021-08-09T10:20:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "163fe962-846e-444c-a411-1e9c2e3327db", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "ejones", + "reviewDate": "2021-11-15T20:47:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker 3000 (Silver)", + "description": "This Awesome Speaker 3000 (Silver) is one of those speakers you won't want to miss. It comes with an aluminum body, a speaker jack,", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-10-06T05:08:12", + "price": 634.59, + "stock": 84, + "priceHistory": [ + { + "priceDate": "2022-04-22T01:22:11", + "newPrice": 694.52 + }, + { + "priceDate": "2022-06-15T01:22:11", + "newPrice": 612.32 + }, + { + "priceDate": "2022-08-08T01:22:11", + "newPrice": 691.25 + }, + { + "priceDate": "2022-10-01T01:22:11", + "newPrice": 683.32 + }, + { + "priceDate": "2022-11-24T01:22:11", + "newPrice": 604.64 + }, + { + "priceDate": "2024-05-18T01:22:11", + "newPrice": 634.59 + } + ] + }, + { + "id": "40827480-21b8-4f54-9c62-bc36006245c7", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "customerRating", + "userName": "leslietucker", + "reviewDate": "2022-04-22T01:22:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c4dd37ac-8b90-430a-9af0-73c5061557b8", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "customerRating", + "userName": "joshuaschmidt", + "reviewDate": "2022-11-25T05:31:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0ce06537-6c96-4ab2-92ad-c613d22552ad", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "customerRating", + "userName": "davidgarcia", + "reviewDate": "2022-07-07T07:57:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "302e2357-b1de-48d3-9341-385e298c4100", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "customerRating", + "userName": "caitlin80", + "reviewDate": "2022-06-24T02:28:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Gold)", + "description": "This Awesome Phone Super (Gold) is one of the best phones in terms of being an excellent value and also the most stylish design. It has great value while being very well executed. It has an amazing design that combines all the classic features and makes it an extremely smart device even in the same breath that Apple", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-05-30T05:35:46", + "price": 1045.66, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-02-25T01:49:09", + "newPrice": 1056.3 + }, + { + "priceDate": "2021-07-04T01:49:09", + "newPrice": 1111.92 + }, + { + "priceDate": "2021-11-10T01:49:09", + "newPrice": 987.24 + }, + { + "priceDate": "2022-03-19T01:49:09", + "newPrice": 997.31 + }, + { + "priceDate": "2022-07-26T01:49:09", + "newPrice": 1062.74 + }, + { + "priceDate": "2022-08-11T01:49:09", + "newPrice": 1045.66 + } + ] + }, + { + "id": "75be16a0-8836-44af-88c9-f5881176f402", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "pharris", + "reviewDate": "2021-03-04T20:28:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dcdb64b3-d643-4e11-9c82-ba4e3d195ed9", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "cranebryce", + "reviewDate": "2022-05-04T02:37:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8b97aa8e-cb93-4e8f-b510-63304a3dcd4e", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "amber59", + "reviewDate": "2021-08-09T16:20:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5bde4497-330a-4f56-a0bb-b30700b6e2e5", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "ronald43", + "reviewDate": "2021-08-20T02:41:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "632f5a72-d90b-433e-8911-273233a5d63b", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "nhall", + "reviewDate": "2021-12-04T07:10:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ee3b82e0-0dd7-4225-8f0c-e5127afa37a0", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "tgreen", + "reviewDate": "2021-02-25T01:49:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9aaa9c8c-45de-471c-9e62-1b67ec72034f", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "klewis", + "reviewDate": "2022-07-26T16:57:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "04e654a8-d490-481f-8274-766a7793d25d", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertsjoshua", + "reviewDate": "2021-11-24T23:46:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "768443ea-77e3-4d49-85c5-1a611161477d", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonesdavid", + "reviewDate": "2021-05-05T10:05:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fbbcf95c-5a19-445b-b289-f2d2a9fa53e2", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "svillanueva", + "reviewDate": "2021-09-23T19:45:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a77a8be6-0abb-4d69-98ec-f2af071e17e5", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "rogerbenson", + "reviewDate": "2022-04-09T03:33:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cd4e06e5-03a2-4417-b0b7-94696bfa1a0d", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "gbush", + "reviewDate": "2022-04-17T07:39:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Super (Gold)", + "description": "This Amazing Stand Super (Gold) is a cool looking steel case featuring a super cool metal outer layer that you can place on the handle. It weighs just.27 lbs. and is made from durable, 3-ply reinforced aluminum. There is an integrated lock mechanism you can pull out when you want to push the case away from your face. It actually weighs less than 1 lb and can hold up to 8 ounces. I think these cool looking case's are definitely worth the extra extra", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-10-10T12:52:11", + "price": 200.23, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-02-10T04:41:14", + "newPrice": 204.37 + }, + { + "priceDate": "2024-10-16T04:41:14", + "newPrice": 200.23 + } + ] + }, + { + "id": "b3c074e2-61bb-4f76-99bc-e957dd4a73be", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "doughertymichelle", + "reviewDate": "2021-12-27T21:05:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1ab47f1c-649b-461c-818f-13554e20f89b", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessica50", + "reviewDate": "2022-09-19T09:16:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f12fef43-1239-4343-af0d-ef14ebb07ca9", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "mmejia", + "reviewDate": "2021-05-09T11:27:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e01f5fcc-973f-43cc-8ae0-f0115ab256f9", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "xbell", + "reviewDate": "2021-02-24T13:48:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "387c90c5-3f97-48ca-8293-b3f17f8ae596", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "daniel84", + "reviewDate": "2021-09-05T22:11:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5b12899f-7d50-4dc0-aca9-69b4b850a1dc", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "alexanderkelly", + "reviewDate": "2022-05-16T18:01:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9c19e35e-65c0-47a1-8a3a-fba4ac384aee", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "davisdavid", + "reviewDate": "2022-11-26T10:21:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0e00a584-f61b-4e97-9511-3b967d6d2fa0", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "andersondaniel", + "reviewDate": "2021-09-24T04:35:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d3cfc814-03c6-4ada-98de-d1c4ad31b70e", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "connorjones", + "reviewDate": "2021-02-10T04:41:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "53116dab-1622-47b4-a3e2-da16f0f84601", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "mbarton", + "reviewDate": "2022-05-27T12:34:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "beff4075-cd8f-4e3b-a911-02bf8ecf2791", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "ronald29", + "reviewDate": "2022-11-22T08:21:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "01705958-41d8-441c-bbcd-4d4a39af882d", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "coreyhodges", + "reviewDate": "2021-03-29T21:26:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Pro (Red)", + "description": "This Basic Phone Pro (Red) is no longer offered for purchase. Instead it was rebranded to a new version called \"Red\". You'll need to replace the blue/purple parts with red stickers to get the version you're trying to use. The Red version of this package also includes an IR blaster, some USB charging port", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-12-23T06:13:58", + "price": 202.82, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-01-17T09:13:36", + "newPrice": 188.29 + }, + { + "priceDate": "2021-08-18T09:13:36", + "newPrice": 219.54 + }, + { + "priceDate": "2022-03-19T09:13:36", + "newPrice": 183.51 + }, + { + "priceDate": "2022-10-18T09:13:36", + "newPrice": 199.86 + }, + { + "priceDate": "2024-02-07T09:13:36", + "newPrice": 202.82 + } + ] + }, + { + "id": "481ad983-eeca-4133-97a5-da3fdfed4682", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "customerRating", + "userName": "marystanley", + "reviewDate": "2022-10-20T01:11:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aa11be56-a58c-4262-aab7-5a6b7febdc13", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrisnatalie", + "reviewDate": "2021-01-17T09:13:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a194ef3c-c9d9-4cbf-8757-711a367a69aa", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimallison", + "reviewDate": "2022-08-25T14:01:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f5319c1b-bda0-41ad-be3c-ea9ba5e482d8", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda57", + "reviewDate": "2021-12-19T01:17:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone + (Black)", + "description": "This Amazing Phone + (Black) is rated 3.3 out of 5 by 2.\n\nRated 4 out of 5 by JB from Amazing! Bought this phone from Zara, and the back light is amazing, it works with my LG G4 as well as other cameras such as the LG E3X/35, Sony TSS, Canon", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-05-25T22:12:33", + "price": 176.29, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-03-23T13:12:35", + "newPrice": 190.24 + }, + { + "priceDate": "2022-01-28T13:12:35", + "newPrice": 176.29 + } + ] + }, + { + "id": "6be8ab03-7869-4d91-9401-3da5fe0d4087", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "wgentry", + "reviewDate": "2021-11-12T18:23:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5204b79d-7fd2-45fd-9350-b2a68d86d8ae", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarahtorres", + "reviewDate": "2022-02-09T03:24:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "de85c2fb-d82b-4ce6-9b28-90faaa85537e", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "edward60", + "reviewDate": "2022-12-30T08:26:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3a5856c7-4c8e-4a75-850e-69c2d58f34b2", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathan71", + "reviewDate": "2021-08-16T21:52:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1127c2ac-9cb6-4d3c-a866-7d0d23fc5343", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "amandasparks", + "reviewDate": "2022-12-06T16:44:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "09298503-c469-448c-bad3-f0e781a620a1", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "mark13", + "reviewDate": "2021-04-21T07:39:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "42bde671-bcc7-400c-84f2-f6e7702595f3", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "baileypaul", + "reviewDate": "2022-06-27T17:15:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "88381a02-da45-47ce-aae4-b4f007cabd7f", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "angela16", + "reviewDate": "2021-03-27T00:42:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3bd699d6-4de8-433a-beae-ed0298add6c6", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "hcochran", + "reviewDate": "2021-05-08T01:22:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0df339bd-4481-43e4-808c-177c058d395b", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "pennyjames", + "reviewDate": "2022-04-17T21:36:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d3fc8ae5-1c26-49a6-99e9-c2aa8b8db385", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "charlessanchez", + "reviewDate": "2022-04-25T16:47:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ccd0673f-fbcb-460c-adf3-71a3186ab8a9", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "jenniferbaker", + "reviewDate": "2022-10-22T00:40:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6af94f27-86b2-4dec-b63f-326f0cdc0be1", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "lewisstephanie", + "reviewDate": "2021-03-23T13:12:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c85a4081-d47c-47c1-ac5f-d396317b81a0", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "sean08", + "reviewDate": "2022-06-25T17:29:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "821f64c9-1dbe-4fb5-ae87-b23a792cc6e1", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "swoods", + "reviewDate": "2022-11-20T15:40:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83b2fa45-7972-4432-90d3-2b09de9cbbf7", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "igonzalez", + "reviewDate": "2021-12-17T01:43:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c57597b7-205e-495d-b0c3-ed9a16c9bc57", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "jaredsanford", + "reviewDate": "2022-07-11T07:58:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "233da4d3-acd5-4429-906a-2e685e62d4ed", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrisanthony", + "reviewDate": "2022-05-29T00:21:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "eb1af445-d8fe-4ae8-bc48-70de43814369", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "hberry", + "reviewDate": "2022-04-17T17:19:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "product", + "name": "Basic TV 3000 (Silver)", + "description": "This Basic TV 3000 (Silver) is powered by the Sony V10D 2160 (Acer) and V6V 6800G (Blacktop). It utilizes an aluminum body and comes pre-installed so it's compatible with the best TV sets on the market. The 5.7\" AMOLED display features HD color, OLED HD and 4K displays. You will not lose any of your money with this system. The 4k UHD screen is capable of up to 1080p", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-09-20T05:20:30", + "price": 483.19, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-01-06T09:48:12", + "newPrice": 482.48 + }, + { + "priceDate": "2021-07-03T09:48:12", + "newPrice": 486.69 + }, + { + "priceDate": "2021-12-28T09:48:12", + "newPrice": 457.11 + }, + { + "priceDate": "2022-06-24T09:48:12", + "newPrice": 442.95 + }, + { + "priceDate": "2022-12-19T09:48:12", + "newPrice": 503.96 + }, + { + "priceDate": "2023-11-04T09:48:12", + "newPrice": 483.19 + } + ] + }, + { + "id": "524998f7-ba22-4909-9876-717bef87dc1b", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "fmorales", + "reviewDate": "2021-06-24T00:08:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b3d1d596-dc3b-4d91-b86d-7e8b6f6bb91b", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "caseydarren", + "reviewDate": "2021-01-06T09:48:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3737cacd-87a6-4901-95e1-1ecf50ff6046", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "fsuarez", + "reviewDate": "2021-05-11T16:58:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f828ac5c-4329-4709-8b62-1fa45776a6e3", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "danielmontgomery", + "reviewDate": "2022-05-30T21:20:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "658c3cf1-18c1-41a3-a7e1-60c8c699221a", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "zunigalisa", + "reviewDate": "2021-10-13T05:07:47", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f58191a4-f696-43f1-aa22-9f1e3c32e4b3", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "smithjacob", + "reviewDate": "2022-09-15T21:14:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3c7998e8-f263-4512-9d43-293f3509ca02", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "richardsonxavier", + "reviewDate": "2021-01-15T14:01:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6c94e193-9746-436c-a6d2-71f1bcb441ca", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "alynch", + "reviewDate": "2022-10-02T11:13:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b3904d64-f67b-4fd8-b6e6-dd4f1765c37d", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "christopher80", + "reviewDate": "2022-09-23T10:57:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3c6c67f6-0a35-42c3-bce1-19b89a829d46", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "ann89", + "reviewDate": "2021-06-20T01:34:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4b546645-f2e1-4906-a1f4-68d7131e8502", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "palmergabriella", + "reviewDate": "2022-09-02T23:23:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8ca2071e-553b-4b45-9ae4-83b816ca3213", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "nathan58", + "reviewDate": "2022-06-22T20:04:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "90a34a2f-862e-4d84-8dbf-963493f20c4f", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "laurabailey", + "reviewDate": "2021-05-19T02:51:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f5d92b28-da7b-4c8d-9c14-1c8c11f2c475", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "aaustin", + "reviewDate": "2022-12-19T12:57:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "04ccda0e-d6ab-4efb-9698-604191b6b06f", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "joycejeffrey", + "reviewDate": "2021-02-16T03:35:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7d7816c5-f96f-464d-94b4-fc125117dc0a", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "whitemolly", + "reviewDate": "2022-12-17T06:02:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Mini (Steel)", + "description": "This Luxe Phone Mini (Steel) is rated 4.5 out of 5 by 8.\n\nRated 5 out of 5 by Anonymous from Nice design This phone", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-08-15T10:35:07", + "price": 970.48, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-13T21:30:13", + "newPrice": 888.76 + }, + { + "priceDate": "2022-11-02T21:30:13", + "newPrice": 888.39 + }, + { + "priceDate": "2023-12-16T21:30:13", + "newPrice": 970.48 + } + ] + }, + { + "id": "9a152dba-bd62-491d-8aa8-ae81de7a7402", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "james83", + "reviewDate": "2021-07-17T10:32:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8c6ad88d-06d2-4d83-8ab5-de692ee83d0a", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbuck", + "reviewDate": "2022-05-28T12:39:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a65531fe-9306-458c-82f7-5248c7602be9", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "wheelerjames", + "reviewDate": "2021-09-27T11:43:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c485f50a-20d7-4305-a107-92953f737c90", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "hbradford", + "reviewDate": "2021-10-30T22:50:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "84ed0fe4-3b6b-42fb-8190-727f1b294464", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "ann52", + "reviewDate": "2021-11-17T05:20:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "109b31d1-859f-4a40-bb71-b2ffaad3ac3c", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "phillip09", + "reviewDate": "2022-09-12T09:58:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a774c17b-1746-4d5f-bc2a-faa87d9b4180", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "olsonrhonda", + "reviewDate": "2021-04-16T06:36:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2125eb5b-115a-456a-84d4-66bdb6db8dc4", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniejones", + "reviewDate": "2022-02-02T13:41:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d888e6c7-f667-4abb-8f7c-37be32926691", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "schultzdaniel", + "reviewDate": "2021-01-13T21:30:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "72512922-233d-494c-8c49-1ea00002d8de", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacksonjoann", + "reviewDate": "2022-05-03T15:02:27", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f07d93a9-f674-4df9-8e71-7e3c308605b4", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "delacruzbrandi", + "reviewDate": "2022-05-03T07:48:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a0c1b987-c026-4155-940a-79d570663d32", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "websterphillip", + "reviewDate": "2021-09-17T17:03:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a5e7c9ac-3c6f-4b0b-b02e-909cbf9bb18f", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbanks", + "reviewDate": "2022-05-18T04:15:53", + "stars": 5, + "verifiedUser": false + }, + { + "id": "01155ffa-2097-4722-b674-8d4f44943272", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "stevendavis", + "reviewDate": "2021-04-15T14:31:38", + "stars": 5, + "verifiedUser": false + }, + { + "id": "298f3087-f0ca-4083-a9e6-1f17f4ad5d51", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "omarschmitt", + "reviewDate": "2021-01-19T21:26:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f22717bb-fd33-4991-8fb7-2334635f8b1a", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "gharris", + "reviewDate": "2021-12-22T23:41:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "85db7e16-24be-4fce-aa0d-eb3d0b8e296d", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "bonnie72", + "reviewDate": "2022-11-03T17:24:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "318ddaca-f717-4297-a6fd-3c719595ff67", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "sheryl42", + "reviewDate": "2022-04-03T16:05:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Ultra (Gold)", + "description": "This Luxe Computer Ultra (Gold) is one of the most expensive models in the entire collection—a total worth about $3,300.\n\nCatch up with the latest news,", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-04-12T21:33:40", + "price": 283.69, + "stock": 89, + "priceHistory": [ + { + "priceDate": "2021-01-09T12:46:01", + "newPrice": 273.09 + }, + { + "priceDate": "2021-08-09T12:46:01", + "newPrice": 291.74 + }, + { + "priceDate": "2022-03-09T12:46:01", + "newPrice": 302.26 + }, + { + "priceDate": "2022-10-07T12:46:01", + "newPrice": 264.67 + }, + { + "priceDate": "2024-10-13T12:46:01", + "newPrice": 283.69 + } + ] + }, + { + "id": "85ebe910-1150-478f-95dc-32992f44de0a", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "kyleriley", + "reviewDate": "2022-04-10T15:38:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e78c57d9-b4f8-406f-8953-327e78ed8a38", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "beasleyjason", + "reviewDate": "2022-07-29T15:04:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bfb1459d-4761-4d2c-8708-2b59045d5f10", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "dschmidt", + "reviewDate": "2022-10-09T08:12:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4aa65de6-db89-40d4-ad6e-f501f08e8b06", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "dhale", + "reviewDate": "2022-04-18T05:19:19", + "stars": 5, + "verifiedUser": false + }, + { + "id": "31ca3296-5b68-4a02-8a22-1d281ef61909", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebeccasawyer", + "reviewDate": "2021-01-09T12:46:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a11a65a6-bc4b-4ae0-825e-94a168022bab", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrisonyvonne", + "reviewDate": "2021-01-17T11:59:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bdd34c5c-861e-4941-9c42-4bb0cef52a02", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "jherring", + "reviewDate": "2022-07-20T10:55:05", + "stars": 5, + "verifiedUser": true + }, + { + "id": "e72268e9-b4ff-4e39-89a8-4b7dd68bc7d8", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "kclay", + "reviewDate": "2021-08-01T12:46:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9d1728a7-2346-4823-8c51-ca9d5350d0a1", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "brenda27", + "reviewDate": "2022-09-02T07:35:31", + "stars": 5, + "verifiedUser": true + }, + { + "id": "838647ca-ab82-4bf0-b69e-8400cd83ad2b", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "zacharyrichards", + "reviewDate": "2021-11-15T09:30:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dc1b54bb-3557-4f1b-8368-45f9b6df2b6b", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "wdunn", + "reviewDate": "2021-08-25T19:06:53", + "stars": 5, + "verifiedUser": true + }, + { + "id": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker + (Red)", + "description": "This Awesome Speaker + (Red) is Awesome, the same as the rest of our speaker lineups! I've been searching for one which gives great soundstage, but which", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-06-20T07:15:30", + "price": 1076.66, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-02-06T13:05:05", + "newPrice": 978.83 + }, + { + "priceDate": "2021-09-13T13:05:05", + "newPrice": 1036.73 + }, + { + "priceDate": "2022-04-20T13:05:05", + "newPrice": 1172.16 + }, + { + "priceDate": "2022-11-25T13:05:05", + "newPrice": 970.82 + }, + { + "priceDate": "2025-05-01T13:05:05", + "newPrice": 1076.66 + } + ] + }, + { + "id": "afd6937a-22ad-46f1-9f79-d65255bd2ac3", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "alexander30", + "reviewDate": "2022-04-24T06:33:51", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3f1e63ab-418e-436b-ad43-f361ebecab3e", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "mariaholland", + "reviewDate": "2022-11-25T22:48:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "21ba57e5-7a22-4f23-8155-8a11d060b7de", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "uarmstrong", + "reviewDate": "2022-10-22T09:37:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "47a977b1-9e0b-4109-a8d1-43e3c901cef4", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "janicerangel", + "reviewDate": "2022-10-02T10:33:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6b5892f3-f87b-472c-ad8f-3e9490e04661", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "rangeljohn", + "reviewDate": "2021-11-22T20:28:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1ec276ca-9c45-4f46-ae4c-946ebbbca633", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "randall95", + "reviewDate": "2021-12-27T13:01:29", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1fe03967-8307-48df-bdd8-f53c066602a5", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "ulawrence", + "reviewDate": "2022-08-15T03:41:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "29cb8dd9-d01c-4cb9-b898-c6a30205cd9e", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "brendajohnson", + "reviewDate": "2021-02-06T13:05:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e63b8ede-6104-433f-a0b1-62de68855e62", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "lewisbailey", + "reviewDate": "2022-01-20T15:09:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c5b74f01-7811-4d23-8dac-5a0d4e345a82", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "buchanankevin", + "reviewDate": "2022-08-11T12:23:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8a001ca5-25ee-41b1-94f2-22387b2bb64b", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "garciaemily", + "reviewDate": "2021-06-06T03:06:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker 3000 (Silver)", + "description": "This Amazing Speaker 3000 (Silver) is rated 4.7 out of 5 by 4.\n\nRated 5 out of 5 by Anonymous from Great Speaker!!! My house had a speaker in the kitchen with the microphone to play a little and it works great", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-01-24T06:09:49", + "price": 868.83, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-05-25T04:40:49", + "newPrice": 895.14 + }, + { + "priceDate": "2021-10-12T04:40:49", + "newPrice": 943.59 + }, + { + "priceDate": "2022-03-01T04:40:49", + "newPrice": 841.27 + }, + { + "priceDate": "2022-07-19T04:40:49", + "newPrice": 918.41 + }, + { + "priceDate": "2022-12-06T04:40:49", + "newPrice": 840.86 + }, + { + "priceDate": "2025-07-15T04:40:49", + "newPrice": 868.83 + } + ] + }, + { + "id": "394d3e9e-9170-473f-a393-730e6088cf91", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "fullerjay", + "reviewDate": "2022-12-07T13:02:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "90249305-62d9-4a80-b82f-7781545b8c6c", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "julie14", + "reviewDate": "2022-03-31T08:22:19", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f0fbc834-fff2-4774-8694-bc77b6e5f3f7", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "kerry76", + "reviewDate": "2022-08-24T09:40:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f3000ed5-8b83-452b-9275-832725de3f3d", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "jorgeruiz", + "reviewDate": "2022-01-22T16:14:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6df5c8cd-b329-4db1-8705-fd3fa1f52eff", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "jackiemorgan", + "reviewDate": "2021-12-23T05:18:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2bb9a740-5263-4aae-9879-68bbdbda65c3", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "kellyprice", + "reviewDate": "2021-12-20T09:51:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4f4f00c5-bdbc-4efd-8366-7da90ed54490", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "kingnicole", + "reviewDate": "2022-06-07T01:43:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "67c0cbbd-6825-4373-8754-75f660bb9494", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "mannwilliam", + "reviewDate": "2021-05-25T04:40:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2cb2429e-39fa-4233-8863-0a75d0543f8f", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "jennifer53", + "reviewDate": "2021-07-27T17:51:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a19bb46b-cf5c-4319-a05c-f1fdd521a69d", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "jacksonmichael", + "reviewDate": "2022-06-04T23:41:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8ccf2fd8-2b24-4b51-a6ce-6dfde91ba23e", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "benjaminhood", + "reviewDate": "2021-12-11T08:47:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2cc75af3-154d-4bea-991c-51dda524a815", + "productId": "2cc75af3-154d-4bea-991c-51dda524a815", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Pro (Red)", + "description": "This Basic Mouse Pro (Red) is a very compact mouse, so if you have any doubt how big a difference this mouse really makes, check out my guide on how to get it for real.\n\nFirst, take this mouse out right now and use the standard size keys to get that small and comfortable click. Once you press the mouse on the top half, you're all done!\n\nI chose the Red thumbstick because", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-11-13T15:12:29", + "price": 279.19, + "stock": 34, + "priceHistory": [ + { + "priceDate": "2021-03-10T10:56:16", + "newPrice": 293.88 + }, + { + "priceDate": "2021-09-08T10:56:16", + "newPrice": 275.95 + }, + { + "priceDate": "2022-03-09T10:56:16", + "newPrice": 302.87 + }, + { + "priceDate": "2023-05-28T10:56:16", + "newPrice": 279.19 + } + ] + }, + { + "id": "ee51e5be-61b6-477b-9aea-68c89d90b44b", + "productId": "2cc75af3-154d-4bea-991c-51dda524a815", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jakescott", + "reviewDate": "2021-12-23T10:12:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "04812279-4ecc-48b9-8a17-cb3ee4bb1285", + "productId": "2cc75af3-154d-4bea-991c-51dda524a815", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shawrebecca", + "reviewDate": "2021-03-10T10:56:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d5a720cb-c405-4ded-bc73-9e066e9f3816", + "productId": "2cc75af3-154d-4bea-991c-51dda524a815", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jmoreno", + "reviewDate": "2022-03-10T22:31:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "product", + "name": "Luxe TV Mini (Black)", + "description": "This Luxe TV Mini (Black) is rated 4.6 out of 5 by 17.\n\nRated 5 out of 5 by kerry from The Best TV I've owned I bought a few of these and they are very well made. One problem they have with the back are just about broken, though, so I'm not sure why.", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-03-31T05:46:39", + "price": 612.48, + "stock": 48, + "priceHistory": [ + { + "priceDate": "2021-01-03T03:03:43", + "newPrice": 613.21 + }, + { + "priceDate": "2021-08-23T03:03:43", + "newPrice": 583.43 + }, + { + "priceDate": "2022-04-12T03:03:43", + "newPrice": 658.48 + }, + { + "priceDate": "2022-11-30T03:03:43", + "newPrice": 634.84 + }, + { + "priceDate": "2024-11-11T03:03:43", + "newPrice": 612.48 + } + ] + }, + { + "id": "82cde363-c03d-43c2-810b-7c671d9775ab", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "michelle02", + "reviewDate": "2022-10-16T18:08:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3c29d946-478f-4c27-9f39-9b154692d49e", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "pagetyler", + "reviewDate": "2021-08-21T07:26:32", + "stars": 5, + "verifiedUser": true + }, + { + "id": "01a97310-33f6-4526-a47a-d0b3e6353f99", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "christinahiggins", + "reviewDate": "2021-09-23T15:33:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8f0ab84e-1e15-4ba8-8b1d-c5987d7c2410", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "carla37", + "reviewDate": "2021-06-01T09:54:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e08ce7e3-1d08-4b09-bd62-ea48d29c91fc", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "rsullivan", + "reviewDate": "2021-12-06T02:18:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0c30f169-a98c-479c-82d9-273020dbcf9a", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "marissa98", + "reviewDate": "2022-07-31T10:37:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e9c6dbe9-0b7a-40f0-be2f-d5613b099206", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "hardypatrick", + "reviewDate": "2021-11-18T09:55:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2b77a326-b1af-4fa3-9c1d-639cc2e9904c", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "brian36", + "reviewDate": "2022-12-01T11:24:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fd10800b-7d52-40b2-85fc-5db90560d143", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "ryanmartin", + "reviewDate": "2022-05-03T02:56:58", + "stars": 4, + "verifiedUser": false + }, + { + "id": "74e933cd-8378-49bc-90ec-46458578f80e", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "jamesbaldwin", + "reviewDate": "2022-02-02T14:13:45", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f128924c-66fb-470b-813e-3954d17a6e01", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "shannon47", + "reviewDate": "2022-02-04T06:33:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1cca95fd-81e6-4ce0-a4eb-f127cd38c89f", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "scallahan", + "reviewDate": "2022-01-20T16:43:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7dfaac64-4111-48da-aad4-bcff31c36ea7", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "bradleyberry", + "reviewDate": "2022-02-08T01:40:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cd15f92a-87a6-45bd-855b-7b1632856ab2", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "grossjesse", + "reviewDate": "2022-09-29T04:38:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6e3da8c1-bd93-47c1-895a-4230dcf021cf", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "mackenzie25", + "reviewDate": "2021-01-03T03:03:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "81572a0e-d416-4df6-85df-ca60c9f0a751", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "guerraamanda", + "reviewDate": "2022-08-07T07:10:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5ed5c70e-ca1c-42ad-96e0-9faa65c2f05b", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "lydia38", + "reviewDate": "2022-05-10T21:19:50", + "stars": 5, + "verifiedUser": false + }, + { + "id": "aee0802e-a3db-459a-82bc-60c5fde14bdf", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "lrodriguez", + "reviewDate": "2021-01-10T09:39:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c35ed7cf-fdcc-48a3-9470-3bec8743f7a8", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "tracy35", + "reviewDate": "2022-11-09T17:33:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "product", + "name": "Awesome TV Mini (Silver)", + "description": "This Awesome TV Mini (Silver) is rated 4.4 out of 5 by 4.\n\nRated 5 out of 5 by Lissa from Best ever TV... Perfect TV! I ordered this TV by myself and it was pretty awesome!! Beautiful design & color. I do like it the most but my TV is not great. So if you need", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-08-03T05:34:51", + "price": 740.22, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-02-10T06:31:48", + "newPrice": 780.81 + }, + { + "priceDate": "2021-07-03T06:31:48", + "newPrice": 675.44 + }, + { + "priceDate": "2021-11-23T06:31:48", + "newPrice": 785.9 + }, + { + "priceDate": "2022-04-15T06:31:48", + "newPrice": 783.09 + }, + { + "priceDate": "2022-09-05T06:31:48", + "newPrice": 811.07 + }, + { + "priceDate": "2023-07-28T06:31:48", + "newPrice": 740.22 + } + ] + }, + { + "id": "a68acf0d-8210-45f9-b381-23bae6615c98", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "terribridges", + "reviewDate": "2021-12-05T01:58:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d9ef058b-8088-4903-bef1-1ae1c8a72c6e", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "kleinjennifer", + "reviewDate": "2022-09-07T09:45:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ff9e0440-020a-45b4-a424-856a7d2bfbf1", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "bsalinas", + "reviewDate": "2021-10-10T04:35:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "603467cf-2a09-487c-a315-5a7dc0fc1176", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "tammy84", + "reviewDate": "2021-12-05T09:54:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5dc342b4-7107-4d03-8fb6-4a7093f28924", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "fieldsdestiny", + "reviewDate": "2021-06-06T01:35:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "61da0aaa-0975-4a7e-b5a1-422a9415914a", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "vanessa42", + "reviewDate": "2021-02-10T06:31:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "product", + "name": "Premium Filter Micro (Silver)", + "description": "This Premium Filter Micro (Silver) is rated 4.0 out of 5 by 47.\n\nRated 5 out of 5 by G.P. from The best price for a lens I bought for my first camera lens purchase. I purchased for myself to build my collection of Canon lenses and I couldn't ask for", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-02-26T07:56:51", + "price": 769.64, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-01-18T09:14:53", + "newPrice": 830.43 + }, + { + "priceDate": "2022-09-17T09:14:53", + "newPrice": 769.64 + } + ] + }, + { + "id": "4ec3916a-b499-48cc-942b-eaebf6bd73a7", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "perezsheryl", + "reviewDate": "2022-02-05T04:25:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cfb49753-eefd-477d-bb88-aa19a0f9a1eb", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "danielmullins", + "reviewDate": "2022-09-08T20:37:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "487dee1b-d955-4f49-a2c3-0685e5b5a83e", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "john59", + "reviewDate": "2021-09-01T17:58:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "26a9c0ab-f255-44de-9f51-1ec647fdb7fb", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "floresholly", + "reviewDate": "2021-10-04T13:49:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cea7ff8a-42c3-42c6-bc86-1f0748438ba7", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "bryan53", + "reviewDate": "2022-07-27T12:16:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0530bdae-aa7d-4b2a-bed6-2c4a980f390e", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "aprilwatson", + "reviewDate": "2022-07-30T05:19:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f61d2a15-b73e-4e0a-bec3-c123c97b4bcf", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "marissastewart", + "reviewDate": "2022-06-22T14:10:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b93fb61c-a447-481d-a6a7-6e4c7a39ff83", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "tcunningham", + "reviewDate": "2022-05-06T14:19:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9fb518bc-e851-4f69-b232-d406bf19d19f", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "odawson", + "reviewDate": "2021-06-14T13:09:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "519d5fe3-6dab-4073-892e-fbc851e91f36", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "mortonbarry", + "reviewDate": "2021-01-18T09:14:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8dbcc368-cec3-45e2-a674-f3f77f550ac6", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "zpierce", + "reviewDate": "2022-02-13T11:07:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "88c96e3b-1daa-440a-b917-0c9cfd5b9474", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "snydertammy", + "reviewDate": "2021-06-13T16:11:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cd0d5e89-4e61-4799-b40b-c451a12ec266", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "qchapman", + "reviewDate": "2022-04-10T18:09:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "28bf6af7-37bc-4890-af12-650ec64706e6", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Mini (Silver)", + "description": "This Luxe Computer Mini (Silver) is a true gem to be used at a price you can afford. A truly superb computer that only costs $200. This computer is actually designed to work with a full", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-01-17T12:58:37", + "price": 734.29, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-04-27T15:13:33", + "newPrice": 722.57 + }, + { + "priceDate": "2022-12-21T15:13:33", + "newPrice": 741.06 + }, + { + "priceDate": "2025-02-01T15:13:33", + "newPrice": 734.29 + } + ] + }, + { + "id": "1683ac23-d5eb-4150-8626-3bde7490da53", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnfields", + "reviewDate": "2022-07-17T10:52:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bad3fff1-b821-4b42-8905-c33db317de0f", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "tyrone34", + "reviewDate": "2021-08-20T10:41:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1dce8be9-1e44-4852-9253-927654d70964", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica47", + "reviewDate": "2022-12-22T12:33:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8342b15a-234f-463b-b829-cd255c780e35", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "susan34", + "reviewDate": "2022-07-27T15:06:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1a8856b0-dbd9-4a07-8f56-138c09520dd6", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert16", + "reviewDate": "2021-04-27T15:13:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2c576138-fe38-4386-9015-00ee329bb03a", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Super (Gold)", + "description": "This Awesome Stand Super (Gold) is a really neat metal stand that I really love! The metal frame sits comfortably on the side and also helps hold the side panels in place.\n\nI've had two and a half years to try this stand, but this is still pretty good! I'm so really impressed by what I have to offer. I can't wait to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-05-07T01:59:06", + "price": 514.05, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2021-01-14T06:21:28", + "newPrice": 516.43 + }, + { + "priceDate": "2021-09-03T06:21:28", + "newPrice": 541.3 + }, + { + "priceDate": "2022-04-23T06:21:28", + "newPrice": 474.3 + }, + { + "priceDate": "2022-12-11T06:21:28", + "newPrice": 480.72 + }, + { + "priceDate": "2024-05-16T06:21:28", + "newPrice": 514.05 + } + ] + }, + { + "id": "851cdc94-c46d-4b57-9c54-9a25a9fe191c", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "schultzchristopher", + "reviewDate": "2022-10-27T00:29:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9ce9b9fa-9849-486f-97e2-1c71cd471974", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholsbryce", + "reviewDate": "2021-05-18T20:31:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0bcc3392-1489-4499-8cbf-23fb393fa3b3", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "marywilliams", + "reviewDate": "2022-01-08T20:30:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "548db11d-d2b1-48cf-b9e1-582d0052c4e7", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "hfrench", + "reviewDate": "2021-01-14T06:21:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a057f66b-d4cd-47dd-8817-1deba6f4bcaa", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "wbailey", + "reviewDate": "2022-06-15T22:02:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "45684ade-1c58-4ec4-92a5-6b4d4eac9703", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "wbrooks", + "reviewDate": "2022-01-29T22:53:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "da8a284e-8528-41b6-9cef-4a41fc1c84a6", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "kramercrystal", + "reviewDate": "2022-05-13T05:58:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "17d43de7-280d-4598-8b09-cb0da36fd4de", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthonygonzalez", + "reviewDate": "2022-12-11T20:41:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5d9e4cc9-902b-406e-95a6-f4051ce4536e", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "petersonchristy", + "reviewDate": "2022-03-08T18:12:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "627c7ea8-a579-43c3-8a96-ffd2eb682e84", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "skirk", + "reviewDate": "2022-09-07T22:32:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "771a0c5b-8e12-4280-8706-4a671d206df4", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "morrisclifford", + "reviewDate": "2022-03-23T16:29:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "72ca39d3-07a6-4d64-9df4-f535440a187f", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "clementsdavid", + "reviewDate": "2022-07-17T17:56:12", + "stars": 4, + "verifiedUser": true + }, + { + "id": "399883f2-45a7-45cf-a611-d9275742d6e1", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "colemansally", + "reviewDate": "2021-04-16T22:42:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse 3000 (Gold)", + "description": "This Awesome Mouse 3000 (Gold) is the mouse that will last forever. However, this mouse is just as awesome. It will look so awesome in real life and be so awesome in this world. This little mouse was used in all of the prototypes I designed, including the 3D mouse.\n\nThe original Mouse 5000 (Black) is the coolest mouse in this world… and the one that", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-06-05T10:38:26", + "price": 512.93, + "stock": 1, + "priceHistory": [ + { + "priceDate": "2021-02-17T06:59:53", + "newPrice": 513.71 + }, + { + "priceDate": "2022-12-21T06:59:53", + "newPrice": 489.09 + }, + { + "priceDate": "2025-03-02T06:59:53", + "newPrice": 512.93 + } + ] + }, + { + "id": "a0b81488-e57a-48d0-8023-0a226c1beda3", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amywashington", + "reviewDate": "2021-09-12T09:09:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7114a03f-0de5-40fe-a5fe-8cbdb5f2fe7c", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brian46", + "reviewDate": "2021-10-19T00:13:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d8c8808b-e683-434a-8993-244607484e5a", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ralph79", + "reviewDate": "2022-02-28T12:18:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "65632781-bf5f-476b-a163-d4f6a39d048f", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinacarr", + "reviewDate": "2022-12-22T06:50:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a00d6274-c345-4a64-9194-9131469ba47f", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothy11", + "reviewDate": "2021-02-17T06:59:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "23018980-1ca0-49ba-b641-a4663d9f1989", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kaitlyn92", + "reviewDate": "2021-03-06T15:38:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "acc012c0-983f-46b3-b6f4-1ae6d94d4017", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cardenasmarvin", + "reviewDate": "2022-09-13T05:13:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5377fed8-44c6-4796-88e3-39a786122a30", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamescolon", + "reviewDate": "2022-06-22T06:32:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Red)", + "description": "This Luxe Filter 3000 (Red) is available in the following colors, while this product is available in one of our other colors.\n\nThis Luxe Filter 3000 (Black) is available in the following colors, while this product is available in one of our other colors.\n\nThese Luxe Filter 3000 (Green) is available in the following colors, while this product is available in one of our other colors", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-01-06T05:21:07", + "price": 901.33, + "stock": 17, + "priceHistory": [ + { + "priceDate": "2021-05-12T17:03:21", + "newPrice": 987.38 + }, + { + "priceDate": "2021-10-29T17:03:21", + "newPrice": 842.51 + }, + { + "priceDate": "2022-04-17T17:03:21", + "newPrice": 974.19 + }, + { + "priceDate": "2022-10-04T17:03:21", + "newPrice": 904.44 + }, + { + "priceDate": "2023-11-25T17:03:21", + "newPrice": 901.33 + } + ] + }, + { + "id": "88fe5010-0692-4290-b51e-f465fb537e21", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "bondaustin", + "reviewDate": "2022-02-27T19:07:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "407fca4c-2dc0-4986-a459-be16bb789ce2", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "tracy87", + "reviewDate": "2021-05-12T17:03:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "117282d2-a164-4957-91cd-ca1d9966269c", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "samuel47", + "reviewDate": "2021-10-17T10:42:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d396273d-e68a-4e33-8ae7-0a4f1bf07e8b", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "uwalker", + "reviewDate": "2022-08-01T11:27:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "489990f2-8adf-439e-a43d-f10ed9076de3", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "hhartman", + "reviewDate": "2022-03-23T13:17:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "96afa8c1-d048-4723-ae8e-e885e987a1f0", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "davidgates", + "reviewDate": "2021-06-22T22:40:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9a6dc4af-c58c-452e-a4be-b8e1a2b408c3", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "jamesrobertson", + "reviewDate": "2022-03-08T19:47:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a15a892-7546-4286-93b2-79740b18c19b", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "ryanwilliams", + "reviewDate": "2021-07-26T21:32:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "be96fa34-dfec-49a2-a273-8b3ce7f09f11", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "vstephens", + "reviewDate": "2022-05-25T16:09:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "021715c5-3b0c-4279-853c-0d7d8ff1b76e", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "robertsmith", + "reviewDate": "2022-10-05T06:10:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bfcedd1f-cfee-4882-a092-7e108a84b93f", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "dchapman", + "reviewDate": "2022-01-28T11:04:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f9c64f27-6cea-4142-b546-5697857a0401", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "matthew44", + "reviewDate": "2021-10-31T08:58:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4d36a1e2-7f6f-488b-9ded-1db091a1f048", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "clintonkelly", + "reviewDate": "2021-12-03T09:01:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker + (Silver)", + "description": "This Amazing Speaker + (Silver) is a unique type of speaker that is very well known, and has several advantages:\n\nSpeaker 1: The speaker is very efficient, and only takes two uses of the system.\n\nSpeaker 2: The speaker is very quiet and offers excellent sound quality", + "countryOfOrigin": "South Africa", + "rareItem": true, + "firstAvailable": "2019-10-28T13:37:40", + "price": 635.42, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-02-01T03:19:25", + "newPrice": 669.78 + }, + { + "priceDate": "2021-09-21T03:19:25", + "newPrice": 655.66 + }, + { + "priceDate": "2022-05-11T03:19:25", + "newPrice": 606.82 + }, + { + "priceDate": "2022-12-29T03:19:25", + "newPrice": 690.7 + }, + { + "priceDate": "2025-07-16T03:19:25", + "newPrice": 635.42 + } + ] + }, + { + "id": "3e173342-c415-4809-98a0-1fff79d90707", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "pricejoseph", + "reviewDate": "2022-08-02T10:26:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "115bcb94-475d-4c78-983f-c7a35f3e241f", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "jasontorres", + "reviewDate": "2022-12-23T14:08:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9819e795-04da-4585-a473-6e5e6795e5c8", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "troy54", + "reviewDate": "2021-03-20T02:42:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "96313e92-0b4a-4f49-b30c-8a5c2fb528c2", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "jamesrobinson", + "reviewDate": "2022-04-27T18:11:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b74cf39d-80bb-4a72-9f3c-3085aefe65e7", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "sblake", + "reviewDate": "2022-12-18T11:11:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6e30f636-1d35-469f-8104-c0cbc9b3e594", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "travis83", + "reviewDate": "2022-07-05T20:00:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "92ac06d3-2501-4407-bd6e-72300c71c96f", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "josephbrown", + "reviewDate": "2021-02-13T17:50:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1e9459f3-bc1b-4fb8-b33d-df31b1930885", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "john84", + "reviewDate": "2021-02-09T20:55:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6ca76846-2382-4d43-a00c-e31243fba8a5", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "hollanddalton", + "reviewDate": "2021-06-16T16:18:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "41659094-6c27-4746-8cb3-7b1010207f5d", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "mitchellsara", + "reviewDate": "2021-03-15T02:00:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "038a9561-03af-400f-812d-4e05ce6f2d55", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "tamaranorris", + "reviewDate": "2022-12-30T13:47:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bdac50c1-843d-4d72-a779-ba982dc7179a", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "bonniemullins", + "reviewDate": "2021-06-10T03:49:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "42ccd7a3-fd59-4ca1-8da2-e0c518af2f10", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "vaughnerik", + "reviewDate": "2021-09-11T13:24:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c7341eba-0ebc-45ff-a644-02c393dd15d8", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "mannphillip", + "reviewDate": "2021-12-13T07:47:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "38914201-2d4a-41a8-a356-bae514baa439", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "sandra86", + "reviewDate": "2021-02-23T18:32:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "701cd5a4-22dc-40b3-aae7-0b8b838e411a", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "williamsandrew", + "reviewDate": "2021-06-12T14:04:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a0ed3fa7-893e-40f9-84fb-a262bbc641e5", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "ckelley", + "reviewDate": "2022-10-02T18:09:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7a536818-6ae6-4df1-aca2-7d058de4c402", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "cheryl90", + "reviewDate": "2021-12-27T15:02:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dcbef4b4-0043-4d53-9f39-a6cb862c3efe", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "danielscott", + "reviewDate": "2021-02-12T19:10:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "03d98ac0-a160-4d1f-8f99-7b6644f6c030", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "kfernandez", + "reviewDate": "2021-02-01T03:19:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Micro (Red)", + "description": "This Awesome Speaker Micro (Red) is rated 4.6 out of 5 by 697.\n\nRated 5 out of 5 by Michael from Fantastic sound quality this micro has a nice acoustic quality that I just wish someone would buy it that cheaper. However, it doesn't have the bass to go with it's sound. I think I may be the only one who would buy this product.\n\nRated 5 out of 5 by Tom from I liked this Micro The sound was", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-10-01T20:59:42", + "price": 635.95, + "stock": 66, + "priceHistory": [ + { + "priceDate": "2021-03-13T00:16:43", + "newPrice": 599.87 + }, + { + "priceDate": "2022-10-03T00:16:43", + "newPrice": 618.77 + }, + { + "priceDate": "2024-01-31T00:16:43", + "newPrice": 635.95 + } + ] + }, + { + "id": "100ba8d0-fa21-47ec-8037-ca7c11e10cd2", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "lauriecolon", + "reviewDate": "2022-04-13T07:36:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "891b9259-68af-4599-9419-6e2297b891a9", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "watsonpatrick", + "reviewDate": "2022-10-03T16:33:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6723b178-4ec1-4b67-b057-24fc874373e7", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "ingramshannon", + "reviewDate": "2021-03-13T00:16:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fba99bc9-8274-4180-b40b-25425d251c01", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "meltonlatasha", + "reviewDate": "2021-07-22T11:22:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "162032dc-11d8-4d93-8549-25cf48b8c2f1", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "tracykelley", + "reviewDate": "2021-06-12T20:29:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "762ab10c-a730-4933-9cba-a3279621843e", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "bennettkimberly", + "reviewDate": "2021-06-23T18:44:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1edbaa83-92ea-409e-8254-e54d3c367146", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "product", + "name": "Premium Filter Micro (Gold)", + "description": "This Premium Filter Micro (Gold) is rated 4.8 out of 5 by 46.\n\nRated 5 out of 5 by Anonymous from Amazing!! I have purchased the 6x64mm lens and was completely amazed with how fast and powerful it is. There were some minor changes but I had always wanted faster", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-02-09T05:15:30", + "price": 1022.35, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-05-09T03:19:36", + "newPrice": 1116.79 + }, + { + "priceDate": "2022-02-07T03:19:36", + "newPrice": 941.15 + }, + { + "priceDate": "2022-11-08T03:19:36", + "newPrice": 1082.29 + }, + { + "priceDate": "2025-04-30T03:19:36", + "newPrice": 1022.35 + } + ] + }, + { + "id": "89fcae83-94bc-4fcc-bf3b-d58ddf8b514a", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "nanderson", + "reviewDate": "2022-07-25T15:17:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7f797840-30aa-44f7-a837-8ff1db1d751c", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "stonejulie", + "reviewDate": "2021-10-20T19:05:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6d53e9cf-e016-4143-98b5-c1ce77fd0621", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "timothyholt", + "reviewDate": "2021-11-15T20:10:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "db8a8855-c7e8-46a0-88a6-e3e378ccc132", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "delacruzbrandi", + "reviewDate": "2021-12-06T01:55:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c6931b83-e9b7-4e62-b5f0-d85a0b8be44a", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "qgolden", + "reviewDate": "2021-08-25T17:44:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b40e1ec2-b616-46cc-8ee9-b986a495af2d", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "tom55", + "reviewDate": "2021-10-14T06:33:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "62fa43b7-7a38-4370-b80b-205eb5e73f50", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "dawnmata", + "reviewDate": "2021-05-15T19:39:41", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bedf5690-94e4-4e03-8231-1e186838546e", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "spencer01", + "reviewDate": "2022-09-15T02:55:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cd5a24db-ba6d-4b30-8ce2-e8012f428c88", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "charles34", + "reviewDate": "2022-01-18T05:41:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f97bcac6-8637-4ce0-8429-b8873ae24ea0", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "amberwilliams", + "reviewDate": "2022-11-08T13:28:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3ebd2364-37f7-496d-aca4-51fcf0f9184f", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "urichardson", + "reviewDate": "2022-01-23T23:46:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "59470704-46b0-4735-aa56-3e09adb71857", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "martinezdavid", + "reviewDate": "2022-04-13T07:05:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4757d74d-caa0-4913-ae8f-54e882e86a63", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "bstevens", + "reviewDate": "2022-02-07T15:28:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f0aa94e5-fac1-4fb5-850d-9bc164d911e3", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "daniel69", + "reviewDate": "2022-08-02T19:09:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dba676f6-4959-4dc9-ba2c-b7d04d4496cd", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "richardgarcia", + "reviewDate": "2021-05-09T03:19:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "63f14fa2-b142-4029-a95f-4331a9b965a1", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "oortiz", + "reviewDate": "2021-12-14T10:57:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8cf779ae-3ea2-421a-b344-3173d5cf2f44", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "shelia52", + "reviewDate": "2022-06-04T04:41:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dbb11371-1670-4e61-b4c8-f0e7611b2328", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "cooperkristen", + "reviewDate": "2022-05-28T02:15:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c8a1a10-506f-4128-8550-d7aded21a356", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Pro (Red)", + "description": "This Amazing Mouse Pro (Red) is a high-quality mouse with a 5-axis accelerometer. The product supports the PS4 and Xbox One Pro", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-03-06T07:58:22", + "price": 418.59, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-01-20T23:30:53", + "newPrice": 415.69 + }, + { + "priceDate": "2022-10-15T23:30:53", + "newPrice": 443.31 + }, + { + "priceDate": "2024-12-16T23:30:53", + "newPrice": 418.59 + } + ] + }, + { + "id": "e570be2c-0db3-4d14-8a64-885fa8877834", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeffery27", + "reviewDate": "2022-05-09T02:18:04", + "stars": 4, + "verifiedUser": false + }, + { + "id": "de924722-7891-4d49-b155-07aab78100cf", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "phorton", + "reviewDate": "2021-01-25T10:23:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ccf5126c-eb90-49f8-ac7c-b0742460362f", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholas64", + "reviewDate": "2022-10-16T05:31:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "020df072-9442-4701-9907-b64f03794877", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pearsonmichael", + "reviewDate": "2021-09-27T15:25:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c68ded01-4d53-492d-876f-1acf9982e7af", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garciamichael", + "reviewDate": "2022-10-03T13:05:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b3aec8f3-6671-4cb4-928f-c6b7f474f81d", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniearcher", + "reviewDate": "2021-01-20T23:30:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "416ae516-a3cf-47e8-84ee-206a1f2cc98c", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "natasha32", + "reviewDate": "2022-08-13T22:53:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Pro (Black)", + "description": "This Premium Stand Pro (Black) is the perfect way to give yourself time to recharge a new and improved device. You can adjust the wattage output at just the right moment, while using a compact and powerful USB-C", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-17T03:24:56", + "price": 521.24, + "stock": 58, + "priceHistory": [ + { + "priceDate": "2021-01-13T19:46:39", + "newPrice": 503.19 + }, + { + "priceDate": "2021-06-28T19:46:39", + "newPrice": 509.03 + }, + { + "priceDate": "2021-12-11T19:46:39", + "newPrice": 529.21 + }, + { + "priceDate": "2022-05-26T19:46:39", + "newPrice": 498.83 + }, + { + "priceDate": "2022-11-08T19:46:39", + "newPrice": 536.22 + }, + { + "priceDate": "2024-11-04T19:46:39", + "newPrice": 521.24 + } + ] + }, + { + "id": "ea163355-6ba0-4629-aa6f-86f0de7b59df", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "mayreginald", + "reviewDate": "2022-10-24T17:55:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f2f94278-7747-4233-af23-49c146729ddc", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonescharles", + "reviewDate": "2021-12-14T01:31:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ee3f0691-8c43-4ed2-ad76-54c1a0445bf9", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "wroy", + "reviewDate": "2022-05-21T19:11:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "04c6a59e-4613-46c5-baaf-5da1cd727785", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "valvarez", + "reviewDate": "2021-04-18T03:51:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "02603660-5242-43a1-9696-8421dce5b96d", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "coopercolleen", + "reviewDate": "2021-02-09T17:52:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a2f6ef0d-8d1e-4c58-bb9e-5d72cdc37970", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "whitesandra", + "reviewDate": "2021-11-10T00:21:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "70323e35-f65b-4ed1-86b6-bfd835e96d78", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "pstark", + "reviewDate": "2021-03-16T08:23:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4fe12223-813e-49bd-97d3-3a7253d19fa2", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "lopezjustin", + "reviewDate": "2022-03-28T08:30:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "023c1198-37e4-4630-a5b5-458ee4d75396", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "david38", + "reviewDate": "2021-04-25T00:25:12", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e0ca27c4-b34a-4c11-a931-f1e5541e55d8", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "mooreteresa", + "reviewDate": "2021-05-28T23:27:35", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4ecb141e-f0e6-417e-8f6f-77caf5922d1d", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "karilee", + "reviewDate": "2022-11-05T16:55:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d4a343db-4f65-4674-8f01-967e37108909", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "cclark", + "reviewDate": "2022-01-05T02:52:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1ae6b2a1-fe25-4fe3-897b-46a1fd4d52f2", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "ericacarter", + "reviewDate": "2021-08-28T02:18:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e44a1b6c-f89f-4c38-ae83-6ccad954dbfd", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "bhubbard", + "reviewDate": "2021-01-13T19:46:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f706506c-c64c-4807-8d05-14cde8f87596", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "tammyjames", + "reviewDate": "2021-06-16T13:30:56", + "stars": 5, + "verifiedUser": true + }, + { + "id": "9a84a7a2-8fba-493c-b77e-a5567ce6b2cc", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "mbuckley", + "reviewDate": "2022-07-29T04:52:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f911e810-8db7-4d34-be00-20cbf7dc2306", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "amberscott", + "reviewDate": "2021-09-20T17:58:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ff8eb975-6cd5-4ba1-a435-ab576d17477a", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "lewisalexandria", + "reviewDate": "2022-11-09T09:21:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "92048b4e-7f6e-4c0f-bf4b-f2b4c5a66323", + "productId": "92048b4e-7f6e-4c0f-bf4b-f2b4c5a66323", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Ultra (Red)", + "description": "This Premium Speaker Ultra (Red) is rated 4.5 out of 5 by 7.\n\nRated 5 out of 5 by Michael M. from Perfect for beginners I am very interested in this speaker. Easy to install and works great for me and my needs.\n\nRated 5 out of 5 by Steve from Great Speaker Great Speaker. I've been using this speaker for the past", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-04-16T20:32:19", + "price": 291.16, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-08-27T22:49:16", + "newPrice": 277.17 + }, + { + "priceDate": "2021-12-16T22:49:16", + "newPrice": 291.16 + } + ] + }, + { + "id": "b3d86802-bb9e-4e52-b01e-b23e2c8ec403", + "productId": "92048b4e-7f6e-4c0f-bf4b-f2b4c5a66323", + "category": "Media", + "docType": "customerRating", + "userName": "denise24", + "reviewDate": "2021-08-27T22:49:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "product", + "name": "Basic Filter + (Silver)", + "description": "This Basic Filter + (Silver) is the simplest, least expensive way to create a filter with silver filters and requires no complex setup. You simply make a simple filter with all of the necessary components:\n\nAdd the filter to the list of filters you want to apply after you put the silver components in the filter\n\nMake a simple filter by choosing the set of filters below:\n\nClick on the filter you want to apply filter", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-18T04:38:26", + "price": 1024.86, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-01-09T09:12:26", + "newPrice": 1099.04 + }, + { + "priceDate": "2021-12-05T09:12:26", + "newPrice": 1076.73 + }, + { + "priceDate": "2022-10-31T09:12:26", + "newPrice": 1104.35 + }, + { + "priceDate": "2024-02-22T09:12:26", + "newPrice": 1024.86 + } + ] + }, + { + "id": "ef4da64d-f7cd-4827-904c-0a2f88855e6e", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "davidball", + "reviewDate": "2021-05-06T17:40:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6aaf0ca4-c2c4-4c65-8ed0-3035de1989d0", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "craigavila", + "reviewDate": "2021-02-02T04:07:27", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fdff29ca-30b1-463e-9ebf-783a46cd9930", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "sherry37", + "reviewDate": "2021-09-13T18:45:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f4eb95c7-9815-41e8-9cf0-98d18b18f0cf", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "brownryan", + "reviewDate": "2021-10-29T02:08:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b6164467-80da-44ba-b732-6d19c6c3a0b2", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "jonesnancy", + "reviewDate": "2021-11-26T21:51:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aacfe280-1f0e-4185-aa63-66603c979607", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "davisdavid", + "reviewDate": "2021-05-26T00:36:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "85b55e69-f989-4bb0-ab79-4b9ed644497e", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "rsullivan", + "reviewDate": "2021-09-11T05:26:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "56ae0d33-8456-4c39-878f-1e38de565c4b", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "cochrantina", + "reviewDate": "2022-02-10T05:45:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d043c92f-2bc1-493e-8db9-9021658e4c9c", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "webernorma", + "reviewDate": "2022-10-31T20:09:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a6979f89-9a93-43da-88dd-d9be1328ff88", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "mark10", + "reviewDate": "2021-01-09T09:12:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5c14b085-f343-495c-861c-8d586c05df20", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "kathycollins", + "reviewDate": "2022-10-22T23:11:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1a98115f-d30b-47d5-bf0a-f2557bb0d07c", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "kristin81", + "reviewDate": "2021-05-10T14:42:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "18bd6b9b-cd7a-4cc1-b52e-0e38a39e7175", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "john53", + "reviewDate": "2022-01-16T08:45:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5a4724fa-61e2-459c-a419-3b112bffab63", + "productId": "5a4724fa-61e2-459c-a419-3b112bffab63", + "category": "Media", + "docType": "product", + "name": "Basic Speaker 3000 (Steel)", + "description": "This Basic Speaker 3000 (Steel) is a basic speaker that is fitted with a speaker box to allow full sound performance, a built-in headphone jack and headphone jack to provide music playback and remote control when you need it most. It plugs directly into your Bluetooth-enabled smart speaker by plugging into your PC's USB port and using a standard Ethernet cable.\n\nWe had seen a similar system before on the M5 and we were quick to note that the basic", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-07-30T21:39:17", + "price": 861.6, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-01-02T23:39:02", + "newPrice": 897.53 + }, + { + "priceDate": "2021-10-26T23:39:02", + "newPrice": 888.36 + }, + { + "priceDate": "2022-08-19T23:39:02", + "newPrice": 921.53 + }, + { + "priceDate": "2024-10-21T23:39:02", + "newPrice": 861.6 + } + ] + }, + { + "id": "6a523d54-7153-47fe-9f7a-36f9daa0fdb7", + "productId": "5a4724fa-61e2-459c-a419-3b112bffab63", + "category": "Media", + "docType": "customerRating", + "userName": "christina93", + "reviewDate": "2021-06-26T11:28:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "eac15d82-3a9b-4119-a60b-9ee2487d1a59", + "productId": "5a4724fa-61e2-459c-a419-3b112bffab63", + "category": "Media", + "docType": "customerRating", + "userName": "rknight", + "reviewDate": "2022-08-20T00:34:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f5540681-8b9a-4b49-82ab-70254bb8821a", + "productId": "5a4724fa-61e2-459c-a419-3b112bffab63", + "category": "Media", + "docType": "customerRating", + "userName": "samuelcopeland", + "reviewDate": "2021-01-02T23:39:02", + "stars": 5, + "verifiedUser": true + }, + { + "id": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "productId": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Pro (Black)", + "description": "This Premium Speaker Pro (Black) is designed to create the most attractive speaker appearance, to provide better performance-wise while helping to give you the edge over the competitors.\n\nEach Pro Speaker Pro is built with a Premium Speaker Pro. These Premium Speaker Pro series speakers are perfect for your classroom. A Black premium speaker is a piece of design", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-04-25T14:46:49", + "price": 523.09, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-05-20T21:41:36", + "newPrice": 486.19 + }, + { + "priceDate": "2024-12-25T21:41:36", + "newPrice": 523.09 + } + ] + }, + { + "id": "3da1fdd7-e2e6-4f5d-ba7d-f1963d021b8c", + "productId": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "category": "Media", + "docType": "customerRating", + "userName": "wagnerharold", + "reviewDate": "2021-05-20T21:41:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3a856b55-a8b2-4c9b-be74-c63b19a68043", + "productId": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "category": "Media", + "docType": "customerRating", + "userName": "sotomarcus", + "reviewDate": "2022-08-18T19:38:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f6851d4d-3267-407c-a9a1-9371b335e2db", + "productId": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "category": "Media", + "docType": "customerRating", + "userName": "erobbins", + "reviewDate": "2022-10-04T04:31:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7db16aab-29ad-4c10-a8b0-50136187925a", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand + (Black)", + "description": "This Luxe Stand + (Black) is made from our highly sought after premium aluminum frame. An ultra-long, low profile frame creates a strong build quality and provides excellent comfort from the low frame to the top of the frame. Featuring an 8-foot wide, 5-foot thick cast-block that gives a great stability grip and a quick release, this top shelf kit features black front-facing stand, 3-point sling bar and the all stainless steel interior that we have used for over", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-10-27T06:07:03", + "price": 218.33, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-01-11T15:27:05", + "newPrice": 205.76 + }, + { + "priceDate": "2021-08-20T15:27:05", + "newPrice": 213.83 + }, + { + "priceDate": "2022-03-29T15:27:05", + "newPrice": 215.31 + }, + { + "priceDate": "2022-11-05T15:27:05", + "newPrice": 211.07 + }, + { + "priceDate": "2023-09-05T15:27:05", + "newPrice": 218.33 + } + ] + }, + { + "id": "ec9034fd-afdc-416f-857c-14deae654eb3", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "kjones", + "reviewDate": "2021-10-16T00:42:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dd7d2f5e-16fc-43bc-b56c-20cdb35fe694", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "thompsonkirsten", + "reviewDate": "2021-08-15T00:29:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8cf1cb90-e386-4d15-bcd6-1e0a023bb604", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "castillobrian", + "reviewDate": "2022-11-07T13:32:49", + "stars": 3, + "verifiedUser": false + }, + { + "id": "86b2f647-4b2e-4288-94e6-85bc5023d08d", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "katelyn90", + "reviewDate": "2022-07-27T01:01:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76a86c4d-f9d3-4b51-9230-95ac4d3d75a5", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "erussell", + "reviewDate": "2021-06-05T16:16:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fbfc71dc-5adf-406b-b84b-84ba7a01c0a6", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "christopher52", + "reviewDate": "2021-01-11T15:27:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0c6b483c-39e1-45ab-85b0-85ac9b2e1ac6", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "brent80", + "reviewDate": "2021-03-27T17:33:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cf6ab476-966e-472a-ab33-303303d2f750", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrewmoss", + "reviewDate": "2022-08-27T17:12:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "258f4718-970e-4fe4-9278-b1041a18ced8", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "joseph60", + "reviewDate": "2021-01-29T13:33:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0e185f4b-61d8-4a31-876c-426288798780", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "lmiller", + "reviewDate": "2021-07-24T18:30:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b5c72965-1791-4b3c-995e-dc846b04701f", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacksonjessica", + "reviewDate": "2021-06-13T01:48:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2b3b460e-beb5-42b5-acab-b23ebe61cbec", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissa35", + "reviewDate": "2022-10-15T07:24:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bdbccd0f-007b-42cd-8b59-268e6dab3e04", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "figueroapatricia", + "reviewDate": "2021-11-26T19:18:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9951b5a1-eba8-43a1-8eea-e7a4786e96d9", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "teresa93", + "reviewDate": "2022-06-02T17:15:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Ultra (Steel)", + "description": "This Awesome Keyboard Ultra (Steel) is now available. I didn't think it was going to be pretty and then thought it would be great with some kind of big-screen background that would look cool with the same level of brightness of high-resolution LCD monitors.\n\nThe PowerEdge 2 is a great keyboard for desktop work. Although, it's a big keyboard that you need more space to write", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-10-06T19:44:22", + "price": 799.51, + "stock": 51, + "priceHistory": [ + { + "priceDate": "2021-04-30T00:05:29", + "newPrice": 754.72 + }, + { + "priceDate": "2023-03-12T00:05:29", + "newPrice": 799.51 + } + ] + }, + { + "id": "be94fcf5-8e85-4166-8e00-d18898b60712", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bashley", + "reviewDate": "2022-07-01T21:26:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "272e5989-6af9-4e63-8b7d-330606128bb5", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "esanders", + "reviewDate": "2022-01-25T06:40:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c2c44cd9-c81b-4f47-8334-936d523e81dd", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberly00", + "reviewDate": "2022-10-18T14:35:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "44ae5db6-d246-42ab-b1d9-a550533572bc", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlene21", + "reviewDate": "2022-05-19T05:03:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "da61567e-ef2c-4d3d-92a9-0bd92537bb4f", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnmoses", + "reviewDate": "2021-08-06T17:07:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "71ede8b5-045a-465c-986e-29315dcc01ba", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mgarrett", + "reviewDate": "2021-04-30T00:05:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1bb88dff-b195-46fe-82b2-734be6280a77", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "noahbarron", + "reviewDate": "2022-04-05T19:37:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "039ae397-214a-42f9-afeb-ff9377e58af7", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shaneguzman", + "reviewDate": "2021-05-11T14:56:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "63daebf3-7995-4d41-abc1-940d6e59fff2", + "productId": "63daebf3-7995-4d41-abc1-940d6e59fff2", + "category": "Media", + "docType": "product", + "name": "Premium TV Pro (Gold)", + "description": "This Premium TV Pro (Gold) is available on DIRECTV (HD and POD) for $500.\n\nCNBC Premium Channel 2 (Nex", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-04-08T06:13:36", + "price": 527.92, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2020-04-08T06:13:36", + "newPrice": 493.15 + }, + { + "priceDate": "2024-07-16T06:13:36", + "newPrice": 527.92 + } + ] + }, + { + "id": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Mini (Silver)", + "description": "This Premium Computer Mini (Silver) is your best bet to make you happy. It also comes with a built in PC monitor (1920×1080), a 3rd party drive", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-06-16T08:41:39", + "price": 572.57, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-06-01T16:01:30", + "newPrice": 610.97 + }, + { + "priceDate": "2022-02-06T16:01:30", + "newPrice": 575.46 + }, + { + "priceDate": "2022-10-14T16:01:30", + "newPrice": 534.47 + }, + { + "priceDate": "2023-01-19T16:01:30", + "newPrice": 572.57 + } + ] + }, + { + "id": "1cd5e66a-4390-423e-ab08-d1b12e65b75f", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "cruznancy", + "reviewDate": "2021-06-01T16:01:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a1fa0c37-278b-4e28-b05d-c783a1732ca9", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopherray", + "reviewDate": "2022-03-18T22:45:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cbdc0bf6-02c9-4325-9a38-667c113242cf", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "beckstephanie", + "reviewDate": "2022-10-15T19:35:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6b7919f1-7abb-466d-8f37-ed4e8916b65a", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "ujimenez", + "reviewDate": "2022-08-04T08:53:09", + "stars": 5, + "verifiedUser": false + }, + { + "id": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard + (Gold)", + "description": "This Premium Keyboard + (Gold) is a custom mouse style keyboard with 2 button presses for up to 4 keys for easy layout. The price is at only 1500$, you save 5000$ plus one shipping fee for this combo unit (we have a small gift code for you in our store).\n\nLIMITED RELEASE - Please note that most users have the opportunity during checkout", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-05-23T09:45:44", + "price": 113.56, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-01-09T23:46:05", + "newPrice": 122.45 + }, + { + "priceDate": "2021-12-08T23:46:05", + "newPrice": 119.8 + }, + { + "priceDate": "2022-11-06T23:46:05", + "newPrice": 121.67 + }, + { + "priceDate": "2025-06-25T23:46:05", + "newPrice": 113.56 + } + ] + }, + { + "id": "fc97fbbc-7b52-4c3e-b1c4-6d2fec7db625", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryancurry", + "reviewDate": "2022-11-08T22:44:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4b2198ac-96ae-4962-bddb-87689c61ec8d", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "solomonannette", + "reviewDate": "2021-01-09T23:46:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ca17fe2c-9358-44b2-ba6a-cb917bd3a758", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnhiggins", + "reviewDate": "2021-02-05T00:42:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1fa4990d-e35f-4166-a457-6fff2f01a8bc", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "esmith", + "reviewDate": "2021-03-12T08:09:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a4bbd82c-112c-4dd4-b5e3-1e84b030d9db", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "njohnson", + "reviewDate": "2021-10-11T10:20:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fa4db6e5-6388-414b-834b-40da3ceb0340", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jon32", + "reviewDate": "2021-10-15T11:17:50", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9f6c6253-7c9e-4dac-b149-447382096b23", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristinaespinoza", + "reviewDate": "2022-10-23T04:33:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ae1a8d64-0b57-4486-955c-bb8b01f12f51", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tbaldwin", + "reviewDate": "2021-08-18T16:17:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6d732af2-ae43-44e6-8fd8-c9fee3b784ff", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john35", + "reviewDate": "2021-01-13T09:15:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5e39208d-cd1b-4af2-a916-5aa8beb78d63", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidwright", + "reviewDate": "2022-06-15T22:29:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "caced6b0-0645-4d20-b534-06d54b3e47f9", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "catherinemoore", + "reviewDate": "2021-06-19T03:26:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "08c23672-b889-456e-b29c-773bbff14399", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dadkins", + "reviewDate": "2021-03-13T10:21:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a5118a54-cc90-416b-ba64-38ed701e61b7", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "galvarez", + "reviewDate": "2021-10-30T08:33:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4dd4a47a-01a8-4829-ae6a-641a90f56a3e", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "santosnancy", + "reviewDate": "2021-06-14T05:27:35", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4b182ea0-8d2b-482d-8c7e-d0f479b2bf7b", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinejohnson", + "reviewDate": "2022-04-26T22:27:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3124660c-660d-4b80-9472-2135d2571069", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelicahines", + "reviewDate": "2022-09-03T00:43:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "268a22cd-1aa4-48c5-8167-86970fb3761a", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qrollins", + "reviewDate": "2022-09-19T22:30:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5ba46fcd-471a-4b79-9866-bda311c9639b", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasminedavis", + "reviewDate": "2021-04-13T03:00:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a3be28d1-8129-49e8-b687-22047ba87c97", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthonyshaffer", + "reviewDate": "2021-03-08T23:26:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Super (Silver)", + "description": "This Amazing Stand Super (Silver) is rated 4.9 out of 5 by 24.\n\nRated 5 out of 5 by JK from Amazing stand I am currently using this stand for my first house. It's sturdy, but it is one of the easiest and most affordable in my experience. I use a very wide open panel", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-05-06T22:21:49", + "price": 623.19, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-01-06T09:26:33", + "newPrice": 598.72 + }, + { + "priceDate": "2022-12-23T09:26:33", + "newPrice": 596.8 + }, + { + "priceDate": "2023-09-23T09:26:33", + "newPrice": 623.19 + } + ] + }, + { + "id": "4be3e499-b6d8-442b-971e-d2fb309b6d9e", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "molinachad", + "reviewDate": "2021-10-30T03:17:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eab5d674-cf10-4f49-9929-77b6906ff98b", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "anorton", + "reviewDate": "2021-08-27T22:14:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "070c35f3-a543-4eea-a162-45b0bbc319b2", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "xnoble", + "reviewDate": "2021-01-06T09:26:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "63941efa-bb4b-449f-a150-e6cc91fd7bc0", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "colonchad", + "reviewDate": "2022-12-21T22:21:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d902ab8e-d467-42c4-88ed-2c6abd300e58", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "whorn", + "reviewDate": "2021-02-13T06:27:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4242648e-9abc-49fa-8530-4bba9299bfcd", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "bortiz", + "reviewDate": "2021-05-07T01:10:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "13cfd0bd-db23-4cd9-bd0d-e91e0d39d971", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "frobles", + "reviewDate": "2021-06-10T03:49:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "71db9d3f-bb54-44ae-919f-b1c69792e616", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "baileytara", + "reviewDate": "2021-10-23T12:14:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "57e5cdb7-77ca-4a66-8a1a-511e540e389f", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "paularnold", + "reviewDate": "2022-12-24T04:01:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "product", + "name": "Basic TV Super (Silver)", + "description": "This Basic TV Super (Silver) is the latest entry in \"Super Series\" series of the Super Nintendo Entertainment System. This series shows each player a simple, quick action TV game that can be played", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-10-25T02:56:49", + "price": 532.05, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-01-11T11:36:44", + "newPrice": 529.2 + }, + { + "priceDate": "2021-02-26T11:36:44", + "newPrice": 532.05 + } + ] + }, + { + "id": "5b949a37-a029-4bb0-b46d-c8e7b8a5159c", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "heathermendoza", + "reviewDate": "2021-04-23T16:38:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b34b8ca3-f9b7-49e3-969f-8556ffd73021", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "yfaulkner", + "reviewDate": "2021-09-03T13:29:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fd8885fd-4da0-4735-baa1-8256d7e703ac", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "maria93", + "reviewDate": "2022-01-14T15:34:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "66869dfc-da57-496d-9cb8-40f352b34fcd", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "gsnyder", + "reviewDate": "2021-06-01T22:01:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c736cd83-7be5-4c0e-88a2-728ab6e967c0", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "patrick98", + "reviewDate": "2022-08-16T15:20:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1b7e9655-bcb5-4d49-bc21-236117775914", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "margaretfisher", + "reviewDate": "2021-03-06T16:53:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1514ec57-00fc-4ebe-9755-4cba108285be", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "whitejames", + "reviewDate": "2021-01-11T11:36:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c3194b10-afb9-4aa3-9d34-d92369fffb12", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "anthony16", + "reviewDate": "2021-09-09T13:15:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "50c858d4-6fdd-479d-8f52-afe99eaf0cbc", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "amberlarsen", + "reviewDate": "2021-12-10T08:48:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dabc529a-a7fe-4fd7-994e-6443eeef8a98", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "omar48", + "reviewDate": "2021-02-06T07:45:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2d9a77da-12f5-4314-9be1-8f9228ebc450", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "ywest", + "reviewDate": "2022-12-05T12:16:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Micro (Silver)", + "description": "This Basic Stand Micro (Silver) is a very strong unit that can break down anything you need it for; and this will give you some of the strongest options to increase your DPS or clear out enemies. For more build secrets, check out the section in the next chapter on how to get started with this unit.", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-09-27T16:04:59", + "price": 475.97, + "stock": 13, + "priceHistory": [ + { + "priceDate": "2021-01-03T20:47:37", + "newPrice": 470.44 + }, + { + "priceDate": "2021-07-01T20:47:37", + "newPrice": 458.19 + }, + { + "priceDate": "2021-12-27T20:47:37", + "newPrice": 517.37 + }, + { + "priceDate": "2022-06-24T20:47:37", + "newPrice": 496.21 + }, + { + "priceDate": "2022-12-20T20:47:37", + "newPrice": 472.96 + }, + { + "priceDate": "2023-03-30T20:47:37", + "newPrice": 475.97 + } + ] + }, + { + "id": "24acbc07-f97c-49e9-ab71-c02b16a806db", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "harrisjared", + "reviewDate": "2021-10-03T19:37:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "61040cf5-8223-4c92-9f78-d9c50fd23443", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "chad81", + "reviewDate": "2022-04-04T04:38:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c64b41e9-346b-4898-be4b-6b9010dd6b0a", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "belljay", + "reviewDate": "2022-12-06T17:22:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c0fb49bf-4bfa-4295-b90b-c32a2fa69d7d", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "lthomas", + "reviewDate": "2021-06-24T00:20:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9f56d682-3468-4cda-a084-86f97ad4924a", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "emily38", + "reviewDate": "2022-05-09T20:01:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6cda09d7-c0ee-48cf-a7b0-19aad8aef650", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "ariana72", + "reviewDate": "2022-02-15T10:51:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e080b5fb-72f3-4446-9ef2-9b9fa80d6e92", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "nhall", + "reviewDate": "2022-12-21T11:49:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "15c3607e-296c-448c-829d-9b4e207bbff9", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "leeandrew", + "reviewDate": "2021-10-09T11:46:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ebdc0af7-9a78-4da8-99db-fe14a079a3fb", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "ujohnson", + "reviewDate": "2022-03-08T22:01:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3dcda2a2-223b-4f75-8724-63d271523f9e", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "michelle22", + "reviewDate": "2021-01-03T20:47:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b186d175-9bd9-4c94-997a-189852d27fbf", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "jared78", + "reviewDate": "2022-10-29T09:17:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6fe7ed60-700d-440e-baa8-03ccf8202fda", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "teresa11", + "reviewDate": "2022-02-10T00:01:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9186d889-82b1-41b0-97a6-0ee9572cb66d", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "zwilliams", + "reviewDate": "2022-08-29T15:22:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Super (Black)", + "description": "This Basic Stand Super (Black) is a 2-way reversible electric motor for motors using the MOS COSFET for low resistance. To create an even more aggressive motor, you will need an even higher capacity M", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-07-31T15:21:20", + "price": 964.31, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-02-02T06:20:44", + "newPrice": 1010.47 + }, + { + "priceDate": "2021-07-18T06:20:44", + "newPrice": 878.1 + }, + { + "priceDate": "2021-12-31T06:20:44", + "newPrice": 907.43 + }, + { + "priceDate": "2022-06-15T06:20:44", + "newPrice": 895.68 + }, + { + "priceDate": "2022-11-28T06:20:44", + "newPrice": 1010.68 + }, + { + "priceDate": "2024-02-24T06:20:44", + "newPrice": 964.31 + } + ] + }, + { + "id": "08af082e-de35-4939-95e5-77179db9c1a3", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "downssteven", + "reviewDate": "2022-01-23T07:20:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f21a5aea-6fef-4b21-bdf4-117c164500eb", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "ernest31", + "reviewDate": "2022-07-17T10:56:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "37c88e76-e29c-412a-b909-05ad06f4cb53", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "xchavez", + "reviewDate": "2022-05-03T07:28:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "65224fac-9f4a-4c92-bbee-ed3d2db9e8d9", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "dunlapmarvin", + "reviewDate": "2022-02-19T19:50:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2deadea7-c3a5-4afd-bd10-ebd22a00f219", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "alanhall", + "reviewDate": "2022-05-16T06:07:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e8887abd-1d19-4629-8335-7e109eaf7f92", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "lloydjohn", + "reviewDate": "2021-07-21T19:57:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4a30c00b-6143-4534-b924-f190fa83f848", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "vbishop", + "reviewDate": "2021-11-08T12:49:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bc0753d0-c068-412d-b1d1-9dbea5476ccf", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "vbrown", + "reviewDate": "2021-06-06T15:49:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "29db1759-ec24-444e-ac02-636587444a9e", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer57", + "reviewDate": "2021-02-03T23:50:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c43c5dc9-9073-495d-9e81-fd42671c94ab", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "angela47", + "reviewDate": "2021-05-18T11:51:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f3b5b776-64f1-4016-a3f5-d7dee958f77e", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "barnestamara", + "reviewDate": "2021-05-13T21:32:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4d57db39-0d36-4972-a313-017309b251ec", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "tammy97", + "reviewDate": "2022-03-29T07:33:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "58404548-215a-46a9-9eaa-6db3affcc51e", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "hernandezdebra", + "reviewDate": "2022-10-29T21:04:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "01fee555-7a8c-4210-9649-96acccdd8551", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "sandovalmarcus", + "reviewDate": "2022-11-30T21:44:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d29fea17-e2ce-45f3-96c8-6e78442f582d", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "paul71", + "reviewDate": "2021-02-02T06:20:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "product", + "name": "Awesome TV Ultra (Silver)", + "description": "This Awesome TV Ultra (Silver) is available now.\n\n$49.99 – All other promotional images available\n\nHow you can purchase this new TV on Amazon: https://goo.gl/cEIpGK\n\nIf you've ever bought a TV on Amazon you can now get an additional promo as a part of this purchase. This is important for most people as Amazon will only credit you for the content of your purchase so that you get the best value and you", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-07-04T10:38:08", + "price": 270.78, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-02-25T06:53:13", + "newPrice": 259.41 + }, + { + "priceDate": "2021-08-10T06:53:13", + "newPrice": 279.85 + }, + { + "priceDate": "2022-01-23T06:53:13", + "newPrice": 295.64 + }, + { + "priceDate": "2022-07-08T06:53:13", + "newPrice": 270.4 + }, + { + "priceDate": "2023-04-24T06:53:13", + "newPrice": 270.78 + } + ] + }, + { + "id": "42286b12-6577-4f81-b28c-f9d692c9a417", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "marshallalyssa", + "reviewDate": "2021-02-25T06:53:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a877252d-2ffb-4e76-9662-86521e302c32", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "wcobb", + "reviewDate": "2021-11-05T08:27:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "477b4d06-7a7c-485e-b525-22d7cd7b5cdd", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "swang", + "reviewDate": "2021-09-17T18:46:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ade47c05-5bf0-4dc8-8d77-f9854301ef00", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "gravesmatthew", + "reviewDate": "2021-12-14T17:34:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a5406369-68ae-460e-ab0a-313de0b2eda0", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "kylejones", + "reviewDate": "2021-03-07T08:13:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a9b155c5-bd20-43fd-a3ea-46c96736dbf5", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "nathan62", + "reviewDate": "2021-03-22T00:09:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "286d6889-1861-4d5e-9943-d5e960f0bdbc", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "chelseawhite", + "reviewDate": "2022-07-11T03:09:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b55c0600-ef99-4099-9b63-a3979bfe1303", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "leelauren", + "reviewDate": "2021-03-09T15:01:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Super (Gold)", + "description": "This Amazing Stand Super (Gold) is made by MCA and features 18 holes and is made by an exclusive Team Nuts distributor.\nWOW!!! I am going to wear your super high quality black plastic that includes 6 holes to hold my stand", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-08-02T16:32:46", + "price": 376.9, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2021-06-09T02:28:08", + "newPrice": 355.1 + }, + { + "priceDate": "2021-10-11T02:28:08", + "newPrice": 407.24 + }, + { + "priceDate": "2022-02-12T02:28:08", + "newPrice": 378.79 + }, + { + "priceDate": "2022-06-16T02:28:08", + "newPrice": 377.88 + }, + { + "priceDate": "2022-10-18T02:28:08", + "newPrice": 352.36 + }, + { + "priceDate": "2022-12-28T02:28:08", + "newPrice": 376.9 + } + ] + }, + { + "id": "81577f45-293c-4f6c-bc0e-7dfd5d9cf89a", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "customerRating", + "userName": "hesparza", + "reviewDate": "2022-04-15T02:57:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "15179b42-4df4-49bf-b260-d9c0272aea28", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "customerRating", + "userName": "teresa35", + "reviewDate": "2022-10-19T08:27:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ee21d0f7-de57-4df3-af06-a8af3d585fba", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer38", + "reviewDate": "2022-07-08T02:19:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "df5e2281-a421-420d-8a07-06567730fba1", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "customerRating", + "userName": "ireynolds", + "reviewDate": "2021-06-09T02:28:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "product", + "name": "Premium Filter Mini (Steel)", + "description": "This Premium Filter Mini (Steel) is a small, stainless steel filter. It has a 2mm thick cover, with a 2mm thick surface for an adequate seal. There will be two filters on the filter, but this does not have to be 1mm thick. The only filters we can find are 2mm thick, and then 3mm thick. The 4-sided cover with the two main filters is also 5-5mm thick.\n\nThe filter fits", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-09-28T15:32:54", + "price": 758.97, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-01-22T15:42:32", + "newPrice": 722.42 + }, + { + "priceDate": "2021-07-15T15:42:32", + "newPrice": 788.99 + }, + { + "priceDate": "2022-01-05T15:42:32", + "newPrice": 772.46 + }, + { + "priceDate": "2022-06-28T15:42:32", + "newPrice": 771.22 + }, + { + "priceDate": "2022-12-19T15:42:32", + "newPrice": 771.8 + }, + { + "priceDate": "2023-05-07T15:42:32", + "newPrice": 758.97 + } + ] + }, + { + "id": "9846b8e4-ba98-42e6-9a29-c48fc1088ab2", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "james56", + "reviewDate": "2022-03-29T09:10:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "11730847-077a-425e-b1fc-5770936ca582", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "romerojames", + "reviewDate": "2022-02-17T20:15:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fb2b1101-d345-485b-ad61-82b0025ce658", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "vsharp", + "reviewDate": "2022-10-28T11:36:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3ba2a481-6e2c-4445-8e3c-b31afb75a4b5", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "zdyer", + "reviewDate": "2022-02-01T23:07:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "25c1215d-66df-44ce-bc9f-1965e68281ca", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "mccormickbrandon", + "reviewDate": "2021-11-17T22:14:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "16dba45b-4bd8-46f9-a4dd-ab5a3018a47a", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "younglisa", + "reviewDate": "2022-04-25T18:21:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ecc37087-f3af-461a-87b3-9e93da56dcc2", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "scottdaniel", + "reviewDate": "2022-12-20T17:10:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "46e978be-5fb7-436f-97b3-9daff241e723", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "aviladavid", + "reviewDate": "2021-09-13T07:56:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "91cc5a4d-791a-49be-bf5c-a9c3a8b79c3c", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "roberthammond", + "reviewDate": "2021-01-22T15:42:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d8ef137d-6de0-4a8d-9d01-7c359c42ea67", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "newtonnancy", + "reviewDate": "2022-08-29T10:09:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ab753050-4627-4c77-b2b0-1c7b33fc68ca", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "forbeskendra", + "reviewDate": "2022-10-22T16:21:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e16db335-34a0-439a-a6cc-2fb98cdac5e2", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "karenrodriguez", + "reviewDate": "2022-03-01T18:57:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d22e8a04-a76f-4483-9204-de99af306edb", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Mini (Silver)", + "description": "This Awesome Stand Mini (Silver) is a great example of how our friends and family would be able to find a place for their favorite products, and take advantage of it. We hope you'll try it out and share it with your friends!", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-01-26T09:55:39", + "price": 1088.87, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-01-20T00:08:32", + "newPrice": 1075.26 + }, + { + "priceDate": "2021-09-12T00:08:32", + "newPrice": 1042.29 + }, + { + "priceDate": "2022-05-05T00:08:32", + "newPrice": 1023.8 + }, + { + "priceDate": "2022-12-26T00:08:32", + "newPrice": 1015.28 + }, + { + "priceDate": "2023-03-09T00:08:32", + "newPrice": 1088.87 + } + ] + }, + { + "id": "bd776e9c-47f2-452d-b6d1-052d18b8fa19", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "ayersalison", + "reviewDate": "2021-06-21T12:03:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1f35e60b-b2a3-43d6-b6d3-6fe6ba5756eb", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "penningtonkristi", + "reviewDate": "2021-03-22T08:51:38", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b905fe65-3e19-4082-9156-709247226bb2", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "adam52", + "reviewDate": "2022-06-15T16:32:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3ab71ea8-71fb-424d-b2b6-ce2df46f2561", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "april76", + "reviewDate": "2021-05-11T04:53:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "58f43483-96bf-489a-9e72-2ef0a9c8e875", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "adamsshannon", + "reviewDate": "2021-12-26T16:03:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "80703f5d-3627-40f6-8325-1426bade52e7", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "gomezkevin", + "reviewDate": "2022-12-28T03:05:59", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6512723b-e2c2-4b49-8367-2f2510e24cbc", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "kyle50", + "reviewDate": "2021-07-28T22:48:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "016f9d9b-e424-4727-a1b9-6472293449c2", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "daykimberly", + "reviewDate": "2022-08-16T16:27:50", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5c5887f1-70dd-465b-9668-b948ea54bd65", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "rwright", + "reviewDate": "2022-03-05T16:05:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b0613901-23d1-4819-a05e-85b7a4cf53f2", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "john50", + "reviewDate": "2022-06-30T07:56:14", + "stars": 5, + "verifiedUser": false + }, + { + "id": "abd56ed2-9a36-4180-92a6-a2032f118b33", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholasjohnson", + "reviewDate": "2022-02-11T09:07:12", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d2044b48-23e0-4654-9b3f-a01b4ba8d03c", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "fred39", + "reviewDate": "2022-02-01T16:28:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a3d66477-6984-4d99-bd7b-8a49003e7ba9", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "marc71", + "reviewDate": "2021-01-20T00:08:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0904b385-80e3-477a-8eee-5f31c63023b3", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "perezkelly", + "reviewDate": "2022-09-22T18:30:28", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a91c03e7-e5ae-4380-8cf5-bd4904fda931", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "edwardsherman", + "reviewDate": "2021-09-23T05:57:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b24aa053-8a6f-4288-a4ee-8232234e3b8a", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "stephenhatfield", + "reviewDate": "2021-10-05T06:13:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a8932262-425b-43e0-8299-e5c137180f2d", + "productId": "a8932262-425b-43e0-8299-e5c137180f2d", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Ultra (Red)", + "description": "This Awesome Stand Ultra (Red) is powered by Super Nintendo Entertainment System's UltraBoost, a system powered by the Nintendo DS XL's powerful Super Turbo Boost. It uses a different processor chip than the Super Turbo Boost, but the speed boost is greater, offering up an eight percent extra frame rate.\n\nWhile Super Turbo Boost isn't designed for game processing", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-06-10T11:07:53", + "price": 701.49, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-04-26T05:09:12", + "newPrice": 760.73 + }, + { + "priceDate": "2021-12-02T05:09:12", + "newPrice": 666.61 + }, + { + "priceDate": "2022-07-10T05:09:12", + "newPrice": 730.01 + }, + { + "priceDate": "2022-12-19T05:09:12", + "newPrice": 701.49 + } + ] + }, + { + "id": "a15f3e64-e44a-438a-94bc-eda9cf13d2ec", + "productId": "a8932262-425b-43e0-8299-e5c137180f2d", + "category": "Accessory", + "docType": "customerRating", + "userName": "moorederek", + "reviewDate": "2021-04-26T05:09:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cb7b43f7-cfb9-44e7-9d2a-3208fe2caa7b", + "productId": "a8932262-425b-43e0-8299-e5c137180f2d", + "category": "Accessory", + "docType": "customerRating", + "userName": "ggraves", + "reviewDate": "2022-07-11T11:22:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Mini (Steel)", + "description": "This Luxe Keyboard Mini (Steel) is the world's most versatile, versatile and fun mouse.\n\n\"The Luxe Mouse has been my best player for the past 20-plus years,\" Gabor says.", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-09-13T23:24:42", + "price": 156.65, + "stock": 75, + "priceHistory": [ + { + "priceDate": "2021-01-08T22:08:16", + "newPrice": 161.45 + }, + { + "priceDate": "2021-08-18T22:08:16", + "newPrice": 142.0 + }, + { + "priceDate": "2022-03-28T22:08:16", + "newPrice": 154.19 + }, + { + "priceDate": "2023-12-27T22:08:16", + "newPrice": 156.65 + } + ] + }, + { + "id": "95c0d460-ac8b-4df0-b924-0272b74c63ae", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ecarpenter", + "reviewDate": "2021-05-04T14:25:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e4e38457-1371-4690-a1a3-cd858715aa3b", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gpatel", + "reviewDate": "2021-02-08T20:16:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4bc0739e-df4e-4031-a8f6-4160b5d98f81", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david74", + "reviewDate": "2021-12-05T00:45:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5e1ffe82-1655-48f4-9feb-c99a891c6ffd", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cory19", + "reviewDate": "2021-01-08T22:08:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "557a5248-d9ae-4fd4-b92a-18a0db3cf330", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "howardjames", + "reviewDate": "2021-01-17T02:12:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c9144ec3-b9c4-437b-9f09-ac6ab9be0dd1", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mitchellmonique", + "reviewDate": "2022-03-30T07:06:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Micro (Gold)", + "description": "This Premium Phone Micro (Gold) is made of a highly lightweight, lightweight plastic. It comes in four different colors. It is designed to be easily carried with you wherever you are. The standard micro is available in seven distinct colors, while each color comes with a wide variety of buttons and actions.\n\nCustomers", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-01-16T08:14:57", + "price": 1046.6, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-01-10T17:30:16", + "newPrice": 949.39 + }, + { + "priceDate": "2023-12-03T17:30:16", + "newPrice": 1046.6 + } + ] + }, + { + "id": "0578a4b5-5ac2-472f-b118-550c3843ef5d", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "qfrey", + "reviewDate": "2022-02-26T05:20:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "efa91296-3716-4e70-8c1a-eb40c40670d0", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "joyce00", + "reviewDate": "2022-05-26T21:11:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1b5a04e3-371b-4130-a87c-3fb6d2e7300d", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertchase", + "reviewDate": "2021-12-13T19:14:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9713aa41-a7f5-456d-9c0c-093186b52f4a", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "josephgarcia", + "reviewDate": "2022-12-23T19:15:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7360e1f1-eacc-47fc-b6d6-ce456aeff999", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandon95", + "reviewDate": "2022-10-26T20:04:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "98a89c5f-20f1-4891-be3b-cba72655dfa1", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "hollandmarie", + "reviewDate": "2021-04-21T09:18:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6535bcef-2457-4c9f-a45e-077ee994442f", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "carolinewilliams", + "reviewDate": "2021-06-23T00:24:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8d164e9e-ba4f-469e-9090-4b3a3634fd1d", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "powerslisa", + "reviewDate": "2021-04-07T10:54:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e7c73a23-6e68-4363-8292-cc484c83c8aa", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "rwarren", + "reviewDate": "2022-11-14T16:20:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e9c05ab5-b798-4e6e-8c8c-156bfdab1ab8", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "waynefrey", + "reviewDate": "2022-11-04T12:39:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "621445e8-3269-4bd1-9a57-ada22eb08cac", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "vdouglas", + "reviewDate": "2022-05-24T02:30:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "38f171b2-c547-4786-ac51-e3afeca23262", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristen96", + "reviewDate": "2021-05-04T21:10:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bdd51c99-c665-4dee-96c0-066b70e1cc40", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "kweeks", + "reviewDate": "2022-12-05T04:17:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "da238c29-46ab-42ce-8fbf-29fface33424", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarahwyatt", + "reviewDate": "2022-03-07T20:38:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "39d21255-d84e-4199-affe-d98757bef599", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael20", + "reviewDate": "2021-01-10T17:30:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c60f9748-731c-48f2-a4ca-848a6466f99c", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "mdougherty", + "reviewDate": "2021-10-16T08:00:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Ultra (Gold)", + "description": "This Awesome Computer Ultra (Gold) is available Now!\n\nThis awesome computer ultra (Gold) is available now!\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\n", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-03-13T18:33:50", + "price": 847.48, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-03-05T05:52:38", + "newPrice": 910.75 + }, + { + "priceDate": "2023-04-13T05:52:38", + "newPrice": 847.48 + } + ] + }, + { + "id": "45dd259e-16a6-49ee-81f9-ae5358a28e56", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "george23", + "reviewDate": "2021-07-08T23:45:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a857e013-c3db-4585-bfd5-765307720064", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "wyatt29", + "reviewDate": "2021-03-05T05:52:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3b3886d0-459b-41a4-b9f6-b0327da37638", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtneyschultz", + "reviewDate": "2022-02-13T14:02:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "80408df6-04f5-4598-a57a-b1581557e80a", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "crystal52", + "reviewDate": "2022-04-09T06:04:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3f4c720c-5d16-4716-86bf-a4c080f619e6", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "richardscathy", + "reviewDate": "2021-04-17T10:43:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d31fb9b9-a77a-4055-a32f-4acab07793e2", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "elopez", + "reviewDate": "2021-10-16T23:06:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "83dfbe4c-61fc-4840-999c-8613d82fa365", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "kaitlyncooper", + "reviewDate": "2022-07-24T16:54:11", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Pro (Black)", + "description": "This Awesome Phone Pro (Black) is the first phone built like a phone. It provides a 4.5\" by 5.5\" sized touchscreen, with a 24\" by 24\" touchscreen on the back on the top and rear sides. The black background includes 2GB of", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-06-29T05:14:33", + "price": 1038.37, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-03-10T07:11:05", + "newPrice": 1120.95 + }, + { + "priceDate": "2022-02-03T07:11:05", + "newPrice": 1112.88 + }, + { + "priceDate": "2022-12-30T07:11:05", + "newPrice": 1026.65 + }, + { + "priceDate": "2024-02-15T07:11:05", + "newPrice": 1038.37 + } + ] + }, + { + "id": "75639e83-55a0-4198-9cf4-bea8d9da0270", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidkelly", + "reviewDate": "2021-03-10T07:11:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "42a16d2b-d059-4bec-aad4-1cc363e4c445", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephensderrick", + "reviewDate": "2022-04-25T07:20:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5d501319-78ba-47c3-b98b-ecfd0cec1f94", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "pvilla", + "reviewDate": "2022-02-05T15:37:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5a4ed11f-42d4-4894-b679-c6b40bbb541b", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "crystal12", + "reviewDate": "2022-02-28T00:17:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5618c213-da94-40a2-8ef2-5c4a62cc2ba5", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "tedwards", + "reviewDate": "2022-12-31T18:56:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0250d982-3ecb-42b7-ab5f-69dcd2c826bf", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "joseph01", + "reviewDate": "2022-06-30T07:03:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f6d55ab7-0421-45d6-a6ab-d605166b875f", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "sweeneylauren", + "reviewDate": "2022-08-02T11:23:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e04197c8-8437-447f-8f41-b8e0a4c01083", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "anthonyshepherd", + "reviewDate": "2021-03-21T20:38:59", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d0d8603c-cd61-4531-97af-947280144aef", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "alexandra74", + "reviewDate": "2021-10-28T09:29:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3d531a34-7977-4a44-88e1-d7429bf137b9", + "productId": "3d531a34-7977-4a44-88e1-d7429bf137b9", + "category": "Media", + "docType": "product", + "name": "Basic TV Pro (Silver)", + "description": "This Basic TV Pro (Silver) is the best TV box that you can get as a bundle. The silver version is priced at $699. It also comes with a large 1 1/2\" DVD recorder. You'll also need your own HDMI or a decent Blu-ray player.\n\nIf you want to check out my $150 version of the Black TV Pro with HDMI to DVD, go now.\n\nWhat's more", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-10-07T17:13:12", + "price": 798.34, + "stock": 15, + "priceHistory": [ + { + "priceDate": "2021-12-05T19:50:03", + "newPrice": 852.04 + }, + { + "priceDate": "2021-12-21T19:50:03", + "newPrice": 761.66 + }, + { + "priceDate": "2022-01-06T19:50:03", + "newPrice": 812.43 + }, + { + "priceDate": "2022-01-22T19:50:03", + "newPrice": 766.47 + }, + { + "priceDate": "2022-02-25T19:50:03", + "newPrice": 798.34 + } + ] + }, + { + "id": "c5714214-f295-4b28-abde-b12ed8059bcd", + "productId": "3d531a34-7977-4a44-88e1-d7429bf137b9", + "category": "Media", + "docType": "customerRating", + "userName": "harrisjohn", + "reviewDate": "2022-01-23T09:27:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "de704953-48e7-403f-a22d-53c6e037d8d7", + "productId": "3d531a34-7977-4a44-88e1-d7429bf137b9", + "category": "Media", + "docType": "customerRating", + "userName": "christinaromero", + "reviewDate": "2021-12-05T19:50:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Silver)", + "description": "This Premium Computer Ultra (Silver) is designed for high performance gaming. It contains all the same materials as an Intel® Xeon or AMD™ Core™ i7-5820X and dual-core i3-7320X (AMD™ Celeron) processors. Each processor and motherboard measures 2.8 inches x 1.5 inches in size making it ideal for any demanding system setup. The computer is equipped with", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-09-06T14:10:39", + "price": 479.33, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-02-05T05:55:04", + "newPrice": 434.4 + }, + { + "priceDate": "2021-11-17T05:55:04", + "newPrice": 504.54 + }, + { + "priceDate": "2022-08-29T05:55:04", + "newPrice": 521.24 + }, + { + "priceDate": "2024-03-22T05:55:04", + "newPrice": 479.33 + } + ] + }, + { + "id": "0bf8d6d4-799b-4aa1-8e33-207c76aa1cff", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "matthew39", + "reviewDate": "2022-01-16T15:48:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "94decb46-33c9-4104-8def-95a15934ca7c", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "craigsullivan", + "reviewDate": "2021-11-17T14:33:31", + "stars": 5, + "verifiedUser": true + }, + { + "id": "af021918-ff57-43f9-83b0-7b3beb4253ef", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "psanchez", + "reviewDate": "2021-03-23T16:10:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1938ab7d-5e38-46eb-aa70-c8c5dce1e74f", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "deborah22", + "reviewDate": "2022-05-23T23:41:17", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d42f6192-7eaf-4d05-ba55-7dc600a0093d", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "ryanronald", + "reviewDate": "2022-02-04T06:25:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c26ff2fc-af59-48e2-be4d-7d5806e1f89d", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "christina66", + "reviewDate": "2021-07-21T17:40:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5a9cfab5-d015-40bf-83c2-4e3f3c34a844", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "feliciasoto", + "reviewDate": "2022-08-01T20:51:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8752e064-f252-4c88-b5cb-c141790572ec", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "ibates", + "reviewDate": "2021-03-26T19:14:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a70cb24d-706d-4118-97ae-fa071d5db57e", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "birdalexander", + "reviewDate": "2022-06-17T14:12:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e9e55cbc-2e49-4bb2-ad27-1a09698cedb3", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "sheilahunt", + "reviewDate": "2022-08-30T07:21:22", + "stars": 4, + "verifiedUser": true + }, + { + "id": "95902150-c39a-46d5-bbc9-b8946c07d2b9", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbrown", + "reviewDate": "2021-06-12T10:19:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dd013ec3-8259-4e04-b280-7a0c9f4b7ccb", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "markcasey", + "reviewDate": "2022-04-24T12:49:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fc171f72-30c2-4bb7-adcf-74a48c4801d7", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "harold85", + "reviewDate": "2021-02-05T05:55:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "441c91c4-fd84-49e2-adfe-bd51710025c8", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "bakerlisa", + "reviewDate": "2022-04-25T19:28:00", + "stars": 5, + "verifiedUser": false + }, + { + "id": "947518ce-a293-4e7d-bcb7-9f6206de098f", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "angelatorres", + "reviewDate": "2021-04-12T20:09:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e410d846-b5cd-4582-955d-35bbe7381894", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanieroberts", + "reviewDate": "2021-02-24T18:28:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5d6935a5-96e2-47b3-9b9e-6116cf9df906", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "scottbarr", + "reviewDate": "2022-03-09T06:10:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cce4f3cb-53e5-452f-8f60-24e3056e3b13", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "hillheidi", + "reviewDate": "2022-08-21T06:45:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "196906a2-1ea7-4acc-8386-54970eaa2059", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "miaclark", + "reviewDate": "2022-06-29T01:54:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard 3000 (Silver)", + "description": "This Basic Keyboard 3000 (Silver) is based on the classic M60-A1 Cherry Keyboard. It comes with a 13 in. touch screen keyboard with built", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-10-27T21:11:49", + "price": 543.81, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-01-21T22:28:28", + "newPrice": 493.45 + }, + { + "priceDate": "2021-08-18T22:28:28", + "newPrice": 528.44 + }, + { + "priceDate": "2022-03-15T22:28:28", + "newPrice": 558.79 + }, + { + "priceDate": "2022-10-10T22:28:28", + "newPrice": 549.97 + }, + { + "priceDate": "2023-06-14T22:28:28", + "newPrice": 543.81 + } + ] + }, + { + "id": "1f05e1e9-81b6-49e2-b3cb-59d23cdab07c", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qrowe", + "reviewDate": "2022-10-12T13:54:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9d9ebb28-96f3-438e-bd68-2135ac7b592f", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "acostaandrea", + "reviewDate": "2022-01-10T00:45:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fc8f794a-88a3-44aa-82e5-512a294720a8", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andersondustin", + "reviewDate": "2022-07-31T11:08:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "049cea68-4097-4de4-9af7-ea2126700cc7", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gutierrezmichael", + "reviewDate": "2021-07-25T12:05:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "78bddebf-1dab-4218-85be-556941299bef", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amber15", + "reviewDate": "2022-06-12T17:40:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "14300ecd-13bd-4f42-97d8-e00faf8791b9", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thull", + "reviewDate": "2021-12-10T16:15:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3be26dbf-aa20-412b-8a0c-90091a81624f", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tturner", + "reviewDate": "2021-02-06T18:33:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "392176f9-b581-4ff8-84f5-488f4e8db658", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "samanthaward", + "reviewDate": "2022-01-19T04:45:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c238ad39-2158-4683-8c87-863dd58c103c", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karen65", + "reviewDate": "2021-12-26T02:29:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b9c0dec1-1adf-47c8-85b8-2d37e54fea33", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaronmccall", + "reviewDate": "2022-06-22T03:26:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8b5763f7-2197-4b87-948c-6e7c1ad5e852", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertbranch", + "reviewDate": "2021-01-21T22:28:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c3842445-70b6-4026-8217-64b48c5afb69", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vharris", + "reviewDate": "2022-08-07T16:53:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ae544fb9-49f2-496b-b672-aac980342a12", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charris", + "reviewDate": "2021-08-13T13:23:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer Micro (Silver)", + "description": "This Basic Computer Micro (Silver) is a very attractive product from Samsung. But when it came to building your own computer, Samsung decided to invest in its next-gen computer with higher-quality", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-12-30T18:40:07", + "price": 449.73, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-01-18T22:25:19", + "newPrice": 450.72 + }, + { + "priceDate": "2021-11-11T22:25:19", + "newPrice": 449.73 + } + ] + }, + { + "id": "d257e0ad-b490-4093-b131-d8c51c84858b", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "yallen", + "reviewDate": "2022-06-08T04:24:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "30959fe9-c08c-459a-8e6e-1eb22e41625f", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "kara32", + "reviewDate": "2021-09-09T02:56:49", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5b67f406-785b-47ed-a0db-0160454ebaff", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "harperroberta", + "reviewDate": "2022-01-02T18:26:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b1401bc9-e2a8-4422-931b-43490cd81338", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "tayloralan", + "reviewDate": "2022-04-04T09:06:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "15e9c5ef-cd8e-4e05-a055-1685a17054af", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "candacebaxter", + "reviewDate": "2021-02-20T02:01:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c4411b18-a9e7-41e3-bc4b-75a3be99565e", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "wilsontami", + "reviewDate": "2021-03-12T22:44:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7c76575f-a604-44c2-8e03-777eeb0bd64f", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "phillipsjoseph", + "reviewDate": "2021-01-18T22:25:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5c462721-0167-4e47-8a06-ad4db51699a4", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand + (Steel)", + "description": "This Basic Stand + (Steel) is used for one of 3 basic weapons:\n\nDirk, Blade\n\n\nSturgeon\n\nThis Basic Stand + (Steel) is used for a single spear and one sword.\n\nSword\n\nYou can choose from 3 different sword types - the Steel-type, the Blade-type, or Dragon-type.\n\n", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-06-01T23:16:04", + "price": 131.16, + "stock": 6, + "priceHistory": [ + { + "priceDate": "2021-01-29T19:28:18", + "newPrice": 141.96 + }, + { + "priceDate": "2022-12-13T19:28:18", + "newPrice": 118.71 + }, + { + "priceDate": "2023-03-17T19:28:18", + "newPrice": 131.16 + } + ] + }, + { + "id": "6e9ccf4a-48f5-4198-a76b-519ea0936f50", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "laura23", + "reviewDate": "2022-11-08T03:43:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "05a0c559-b5e9-4e52-b265-7973b5576adb", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "hbutler", + "reviewDate": "2022-07-11T11:23:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dda097ea-9763-4eca-af55-0d3afac00587", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "sharonsmith", + "reviewDate": "2022-12-14T01:14:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4a6e8673-c326-427d-a30d-f113a5617175", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "dixonpamela", + "reviewDate": "2021-06-15T03:37:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "885ac850-8ccf-463e-be85-4b8bc591a126", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "christyklein", + "reviewDate": "2021-10-20T14:31:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "efb715c6-4cab-465d-9f00-5bf8994d6a40", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "scarlson", + "reviewDate": "2022-03-12T15:28:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "610461f1-0954-4fed-84f7-009613a8ffbf", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "david97", + "reviewDate": "2022-03-31T23:48:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "76176c2f-3637-4716-bbdd-d24cadf87d88", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "edwardsvictoria", + "reviewDate": "2021-03-26T15:09:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1f156cf9-0044-4c06-a668-c00969a17d16", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "evan27", + "reviewDate": "2022-03-04T08:27:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bf3a4c70-7a01-4e7d-bede-749e681cc07a", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacobjuarez", + "reviewDate": "2022-06-12T22:51:41", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4f0a312f-4ef6-4ce4-9413-c8bc75320952", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "rebecca90", + "reviewDate": "2021-07-19T19:50:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7ba4a3a7-0591-4664-af6a-3146303ddbb6", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "gavin39", + "reviewDate": "2021-03-16T14:10:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dba1abc8-907a-445d-87b6-a6581cc41891", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "rperez", + "reviewDate": "2021-01-29T19:28:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f5c96414-09c6-43c0-bd00-02860458b4d0", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "brooke30", + "reviewDate": "2021-03-27T15:34:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea19c23b-1bb1-4451-9fce-ca891a8fbfe1", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "martincheryl", + "reviewDate": "2021-04-27T16:20:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "10bc7b2d-fcaa-45c5-9afb-d981178dcc98", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "woodstanley", + "reviewDate": "2021-08-30T17:04:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4572548f-ca5e-405a-9ab1-36a4cdcac74e", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "rogersjohn", + "reviewDate": "2022-11-28T22:03:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c44094f6-96d4-438c-b972-bdde51458706", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "ujohnson", + "reviewDate": "2022-09-06T12:22:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "805dd76b-ed06-4920-b9d1-ec8f728acfd1", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "alvarezjon", + "reviewDate": "2022-09-20T15:12:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Micro (Steel)", + "description": "This Awesome Mouse Micro (Steel) is in stock now!!\n\nAs a backer I intend to do my best to sell it and make enough money off it for the artist who made it!!\n\nPicking up one of my other items for my new collection includes:", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-07-16T05:10:32", + "price": 176.44, + "stock": 84, + "priceHistory": [ + { + "priceDate": "2021-02-07T03:40:54", + "newPrice": 166.92 + }, + { + "priceDate": "2021-07-05T03:40:54", + "newPrice": 186.54 + }, + { + "priceDate": "2021-11-30T03:40:54", + "newPrice": 166.9 + }, + { + "priceDate": "2022-04-27T03:40:54", + "newPrice": 188.01 + }, + { + "priceDate": "2022-09-22T03:40:54", + "newPrice": 193.62 + }, + { + "priceDate": "2022-12-17T03:40:54", + "newPrice": 176.44 + } + ] + }, + { + "id": "f5ac8673-9d5d-4bbf-9af0-8054a81796b6", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas75", + "reviewDate": "2021-10-18T11:22:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "89170ed9-50e1-42bc-9d3d-cf94b66ed540", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ujackson", + "reviewDate": "2021-09-30T11:30:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5e0c18c8-8e74-4322-bcb7-f3101f8ebd66", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xchristensen", + "reviewDate": "2022-05-09T08:06:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1e1a26d9-f359-4111-b281-f4d92543244f", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david88", + "reviewDate": "2021-05-23T04:33:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7063cc25-955d-4c90-a349-91b4e7a38b2a", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nancywright", + "reviewDate": "2021-12-28T20:27:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "25c4cbf3-edd6-4c0e-a562-87e8c6995fae", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "philliplindsey", + "reviewDate": "2022-05-31T16:38:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "db795674-808a-47fd-a52b-77686e43c6d3", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "radams", + "reviewDate": "2021-07-03T17:21:23", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ad341b45-754f-4528-b555-9f9b13f2dbd2", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scooper", + "reviewDate": "2021-02-07T03:40:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4d128310-a9cc-408e-b4d6-7851281a0bc8", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "russell72", + "reviewDate": "2021-06-24T16:58:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3dd36744-bbe3-46f9-9678-9e0d0d016c49", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ntorres", + "reviewDate": "2022-09-24T07:45:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "75c2036d-78df-4068-9d54-d43aebd1bfe7", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dperez", + "reviewDate": "2022-06-29T15:23:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "71d27a3c-945d-46c3-8ffa-f557b401bf1e", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnsondiana", + "reviewDate": "2021-06-17T14:44:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "57aae7e6-9667-4dcf-a61f-ff9b99d2534f", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fthompson", + "reviewDate": "2022-04-13T23:25:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e0e3d1a2-9cde-4cbb-9485-7d717556737b", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tfuller", + "reviewDate": "2021-02-20T22:19:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ada8b41e-112c-45fa-93c1-f6b291bc95f4", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cbooth", + "reviewDate": "2021-05-20T07:42:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d262b4aa-619a-48c0-accf-b961fed79250", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "elizabeth85", + "reviewDate": "2022-06-04T05:20:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cae0a9b5-6759-4c21-81f4-578d298aaa35", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tiffany00", + "reviewDate": "2022-02-28T06:47:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Mini (Black)", + "description": "This Luxe Filter Mini (Black) is a stylish and practical tool for professional photographers. It can be used in conjunction with a pair of filters and makes an excellent filter replacement. It is available in three sizes -- the Black (7.5 oz) and White (7.5 oz).\n", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-06-03T07:10:01", + "price": 227.45, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-07-31T04:01:21", + "newPrice": 220.03 + }, + { + "priceDate": "2024-08-04T04:01:21", + "newPrice": 227.45 + } + ] + }, + { + "id": "9a69fbef-8e6d-4328-a5cd-fd5ed5329423", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "moralescynthia", + "reviewDate": "2021-09-27T13:14:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c22e7e75-6420-4fd5-9d53-907620b4147e", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "lopezdaniel", + "reviewDate": "2021-07-31T04:01:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "881f4aec-b162-48ef-acc5-6b705a78416f", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "mcclureheather", + "reviewDate": "2021-11-15T11:06:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e8eb8281-4b20-4e84-b2eb-9530d1ae0bc3", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "jesuswalker", + "reviewDate": "2022-09-24T12:15:17", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e78680c6-4710-403b-8437-03118ca63434", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "zgonzales", + "reviewDate": "2022-12-08T00:39:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "79ef5e03-2c3b-4260-9a9d-fe0e86b06651", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "wilsonjanet", + "reviewDate": "2022-07-12T01:45:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ea7ca0a4-51a1-4931-882e-9feac2eb5699", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "davidscott", + "reviewDate": "2021-11-18T09:18:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "af016a7b-e39e-40fa-8568-580b1d161d3f", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "ewright", + "reviewDate": "2022-06-05T01:02:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5abfce81-8454-4be5-9f90-a0344f8f8230", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "zwilliams", + "reviewDate": "2022-11-09T21:28:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "16a41cf3-f34a-4f90-8e63-3fbf85932ccf", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "rachel77", + "reviewDate": "2022-07-14T22:30:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard 3000 (Red)", + "description": "This Luxe Keyboard 3000 (Red) is a new and improved version that is designed to enhance the user's experience of playing games. It offers up an elegant and compact design, featuring a unique ergonomic keyboard feel. The 3.8mm scrollwheel makes it easy to hold and control the keys, and has an ergonomic and intuitive layout for quick input. The white plastic cover protects your keypress from scratches and dirt, making it easy to clean with ease", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-01-21T13:58:02", + "price": 332.26, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-01-14T16:58:26", + "newPrice": 333.43 + }, + { + "priceDate": "2021-07-10T16:58:26", + "newPrice": 333.93 + }, + { + "priceDate": "2022-01-03T16:58:26", + "newPrice": 332.81 + }, + { + "priceDate": "2022-06-29T16:58:26", + "newPrice": 360.7 + }, + { + "priceDate": "2022-12-23T16:58:26", + "newPrice": 317.99 + }, + { + "priceDate": "2023-01-04T16:58:26", + "newPrice": 332.26 + } + ] + }, + { + "id": "b7414b9d-2a63-4ff8-8eb7-9aeb5b81decd", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yorkjack", + "reviewDate": "2022-06-21T08:18:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8c67a991-4657-498f-9199-9b187ed39661", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "waltersalazar", + "reviewDate": "2021-01-14T16:58:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "53668168-8466-4957-bd1b-443e0f975ba5", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emmabrown", + "reviewDate": "2021-12-08T00:15:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e71a5afd-7334-4907-a07c-d3fdedf5be11", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "navarrodiana", + "reviewDate": "2022-09-01T07:09:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3eabd1c2-496f-49c5-ad57-a086a8562abe", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patricia19", + "reviewDate": "2021-11-23T14:13:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ede31115-254e-4778-b658-8ed8cb46d733", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "coxsteven", + "reviewDate": "2022-12-25T21:28:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "01261fa8-56af-4d9f-9176-cc0df496cb6d", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "douglashumphrey", + "reviewDate": "2022-10-22T20:08:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "210dd3e9-0f04-4e90-9bc4-111ba502d43d", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "peggyrodriguez", + "reviewDate": "2022-08-19T01:57:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "54535ef3-e640-45db-80de-dacd6339a321", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carollyons", + "reviewDate": "2021-08-02T09:03:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bd795c8e-7577-43ac-845a-e329f221cfff", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlesjohnson", + "reviewDate": "2021-11-15T20:01:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bea11cb6-2143-43c8-a821-e82a99543b52", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nguyenelizabeth", + "reviewDate": "2021-05-18T11:48:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2d51f402-6ea3-4c4e-9f32-c4a3122ad15b", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenniferjimenez", + "reviewDate": "2022-08-06T00:20:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Micro (Steel)", + "description": "This Awesome Speaker Micro (Steel) is made from an aluminum alloy of the finest carbon fiber and aluminum which adds significant durability, energy density, and power to even the", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-12-06T05:12:33", + "price": 854.86, + "stock": 77, + "priceHistory": [ + { + "priceDate": "2021-03-21T07:33:50", + "newPrice": 861.34 + }, + { + "priceDate": "2021-08-09T07:33:50", + "newPrice": 802.74 + }, + { + "priceDate": "2021-12-28T07:33:50", + "newPrice": 852.87 + }, + { + "priceDate": "2022-05-18T07:33:50", + "newPrice": 909.98 + }, + { + "priceDate": "2022-10-06T07:33:50", + "newPrice": 832.56 + }, + { + "priceDate": "2023-09-16T07:33:50", + "newPrice": 854.86 + } + ] + }, + { + "id": "16433cb4-042e-44bc-89f9-b3e2d18baa8f", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "buchanansteven", + "reviewDate": "2022-08-19T15:05:11", + "stars": 5, + "verifiedUser": false + }, + { + "id": "45443f4f-fbc8-4ab6-a72a-3843a5bf6c70", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "joannabyrd", + "reviewDate": "2021-05-31T17:52:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b1583889-d07a-4bf2-aaa6-9ab5b4c2948a", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "brownvanessa", + "reviewDate": "2022-10-09T20:51:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "aab08975-bd5b-47d2-8fac-c14ce1db7347", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "uwhite", + "reviewDate": "2022-06-30T09:10:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5b7d4605-fd37-40c7-9dbb-45ade1e14d83", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "pamela63", + "reviewDate": "2021-12-03T15:48:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "37ebf0d1-6b29-4dd8-9013-751f7d2ad3bd", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "wendy71", + "reviewDate": "2021-05-19T03:41:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "37005dfa-9c19-44e7-9e3f-fdf471186bc3", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "gpope", + "reviewDate": "2022-03-27T00:04:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a0db70b-94bb-419f-a275-1f68202884e7", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "deborahvincent", + "reviewDate": "2021-03-21T07:33:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8a66b160-d018-44c9-a8f8-13f12d0dedae", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "munozvincent", + "reviewDate": "2022-07-04T04:22:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "productId": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone + (Silver)", + "description": "This Amazing Phone + (Silver) is sold separately\n\nBuy from Amazon.com and Save $5 on it\n\nYou may save 1.75$ on shipping if you add an Sender Certificate & Check in to our shipping page.\n\nSave $5 on shipping", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-03-02T03:55:56", + "price": 607.06, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-01-14T13:51:18", + "newPrice": 627.95 + }, + { + "priceDate": "2021-05-21T13:51:18", + "newPrice": 555.35 + }, + { + "priceDate": "2021-09-25T13:51:18", + "newPrice": 629.88 + }, + { + "priceDate": "2022-01-30T13:51:18", + "newPrice": 654.69 + }, + { + "priceDate": "2022-06-06T13:51:18", + "newPrice": 551.01 + }, + { + "priceDate": "2025-07-07T13:51:18", + "newPrice": 607.06 + } + ] + }, + { + "id": "c27e5151-b713-471f-9ba4-622288dc8143", + "productId": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "category": "Electronics", + "docType": "customerRating", + "userName": "jasoncollins", + "reviewDate": "2021-01-27T13:33:52", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5e54c848-5868-47cf-84d9-5507df7f4125", + "productId": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleymoore", + "reviewDate": "2021-01-14T13:51:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "07977e95-a197-42ec-a38d-5a66e573622f", + "productId": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "category": "Electronics", + "docType": "customerRating", + "userName": "jgallagher", + "reviewDate": "2022-06-10T08:13:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76783c51-7ed8-48fd-baa6-fa193b3e62b8", + "productId": "76783c51-7ed8-48fd-baa6-fa193b3e62b8", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Silver)", + "description": "This Luxe Filter 3000 (Silver) is recommended for those looking for superior filtering power when you want to be at the peak of your visual experience. In this filter, you use three main types of filters to achieve the same result. In this Filter3000, you can choose between two different filter types for each layer", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-04-26T10:58:55", + "price": 773.35, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-07-15T12:27:10", + "newPrice": 821.9 + }, + { + "priceDate": "2021-10-25T12:27:10", + "newPrice": 809.47 + }, + { + "priceDate": "2022-02-04T12:27:10", + "newPrice": 739.72 + }, + { + "priceDate": "2022-05-17T12:27:10", + "newPrice": 726.73 + }, + { + "priceDate": "2025-03-23T12:27:10", + "newPrice": 773.35 + } + ] + }, + { + "id": "d74481a1-3b1f-46c7-af11-c456a39a1543", + "productId": "76783c51-7ed8-48fd-baa6-fa193b3e62b8", + "category": "Other", + "docType": "customerRating", + "userName": "hayesjulie", + "reviewDate": "2022-05-17T20:57:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a9ffaa16-a254-4d8e-bec6-09872064e5ed", + "productId": "76783c51-7ed8-48fd-baa6-fa193b3e62b8", + "category": "Other", + "docType": "customerRating", + "userName": "tammy79", + "reviewDate": "2021-07-15T12:27:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "545aaaf3-5480-420a-b26a-6161815adf32", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Super (Silver)", + "description": "This Luxe Speaker Super (Silver) is a 2.3-liter turbocharged 3.4:1 that is rated at 5,300 rpm and boasts an effective power curve of 3.8:1.\n\nEngine\n\nFour-speed automatic transmission\n\nEngine displacement: 3,350 cc (", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-07-01T04:27:36", + "price": 138.81, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-06-26T00:37:17", + "newPrice": 131.45 + }, + { + "priceDate": "2021-10-31T00:37:17", + "newPrice": 134.61 + }, + { + "priceDate": "2022-03-07T00:37:17", + "newPrice": 139.66 + }, + { + "priceDate": "2022-07-12T00:37:17", + "newPrice": 151.42 + }, + { + "priceDate": "2022-11-16T00:37:17", + "newPrice": 149.3 + }, + { + "priceDate": "2024-12-23T00:37:17", + "newPrice": 138.81 + } + ] + }, + { + "id": "b8ee2c8e-c97d-42f5-848d-a6eec6b16793", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "miguelroth", + "reviewDate": "2021-06-26T00:37:17", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7c5e9ab9-8ccf-4bb5-a371-007bf2b3fb2c", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "fgeorge", + "reviewDate": "2021-08-20T10:57:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "38066f7a-13c1-4533-b2d9-8978bc6edcb6", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "gmoore", + "reviewDate": "2022-09-22T05:10:02", + "stars": 5, + "verifiedUser": false + }, + { + "id": "416180e3-cd4b-498d-a380-023ec49c91f8", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "dschwartz", + "reviewDate": "2021-10-18T06:30:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c3773bed-2900-477b-9cfb-1a70c3b5b93c", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "jeffrey62", + "reviewDate": "2021-06-30T00:24:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a9dd2ab0-f8f7-492f-9263-10d4725303e1", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "lawrencestephanie", + "reviewDate": "2022-11-18T06:57:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8f346b73-8c9c-41fa-b155-2cdfcea1aaf7", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "tyler95", + "reviewDate": "2022-06-02T09:24:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c9aecc47-87ce-4461-a150-21b11a614501", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Ultra (Gold)", + "description": "This Premium Phone Ultra (Gold) is a new premium phone from Samsung. It features an ultra-low price and a new \"Ultra Ultra\" battery which can be turned off with a special button. The battery does not", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-25T02:02:11", + "price": 1056.32, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-06-02T11:02:16", + "newPrice": 1099.59 + }, + { + "priceDate": "2021-11-16T11:02:16", + "newPrice": 1114.14 + }, + { + "priceDate": "2022-05-02T11:02:16", + "newPrice": 1052.88 + }, + { + "priceDate": "2022-10-16T11:02:16", + "newPrice": 1120.7 + }, + { + "priceDate": "2024-01-02T11:02:16", + "newPrice": 1056.32 + } + ] + }, + { + "id": "a23198ce-e5c4-4619-9352-ff1e047e734f", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "karenjimenez", + "reviewDate": "2022-10-17T02:50:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ba812f29-b98c-4e68-97ac-1ff7ad823895", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "taylorjacqueline", + "reviewDate": "2021-08-02T09:18:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8a83667f-ed2f-4664-b8d3-346d3df4fbb0", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "xmeyer", + "reviewDate": "2022-08-25T21:53:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6cc49634-898c-420d-bc01-758851384a10", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "allisonalicia", + "reviewDate": "2021-12-10T12:13:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1084eaba-2bd4-48f5-b1fc-bb5e21827c78", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "timothy51", + "reviewDate": "2021-11-20T18:15:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "270fcc26-bed5-455a-b105-f6428f096fbb", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "grose", + "reviewDate": "2022-06-22T19:01:42", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f4422fcf-6cc9-40f3-b775-f5c59806a33c", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "kpena", + "reviewDate": "2022-03-25T19:22:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8d1b1c22-82e6-4e4e-b2c0-c40ddaed0412", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "thughes", + "reviewDate": "2022-06-15T12:32:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f74a35ae-6c77-4a37-bf66-3653edcb5005", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "huntjennifer", + "reviewDate": "2022-04-08T13:14:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "07f62031-cc03-4228-ab92-f5116a5fbf98", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "singletondebra", + "reviewDate": "2022-03-26T18:54:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5065a6e4-055b-45a9-bb1a-8d71fb5f4ba8", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "mmunoz", + "reviewDate": "2022-05-07T14:31:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d26a885d-0d2d-4489-a9be-690284b4c6e7", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "riverachad", + "reviewDate": "2022-09-19T01:36:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4ee7ec7e-a52b-47f2-9f84-3d089a8f435a", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacqueline38", + "reviewDate": "2021-06-02T11:02:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1fe1f601-e42c-4e51-9dd0-0637c55fcb05", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacksonjennifer", + "reviewDate": "2022-06-17T10:21:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a78388b1-d5c9-4a88-86a8-f413738b62c9", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "thart", + "reviewDate": "2021-10-19T11:41:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Super (Red)", + "description": "This Luxe Computer Super (Red) is an entry level model with the highest overclocking capability. This also requires no other hardware mods than the included Turbo Boost, Boost Boost and Cooler Boosters.", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-03T02:33:02", + "price": 902.41, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-03-31T15:26:40", + "newPrice": 976.81 + }, + { + "priceDate": "2022-01-18T15:26:40", + "newPrice": 950.57 + }, + { + "priceDate": "2022-11-07T15:26:40", + "newPrice": 911.96 + }, + { + "priceDate": "2024-01-23T15:26:40", + "newPrice": 902.41 + } + ] + }, + { + "id": "58e86025-7937-4d66-8f03-98e19571fbec", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "warnerstephanie", + "reviewDate": "2021-07-08T21:26:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "745cc42f-fa03-47b3-9448-9165d8686fbd", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "donaldgonzales", + "reviewDate": "2022-03-08T21:15:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5b6a8303-f009-4a01-af35-09a5b88e2133", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "erikwagner", + "reviewDate": "2021-03-31T22:41:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "81ddde8d-f7f7-4072-80d6-3f6938ec71a9", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "larry83", + "reviewDate": "2021-05-01T02:11:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "16c977f5-3b13-4171-af39-bd1458290704", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristina02", + "reviewDate": "2021-06-17T03:32:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f2611283-4624-405f-b81f-4ab20a2a599c", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "bhodge", + "reviewDate": "2021-03-31T15:26:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7d159442-b2b7-4235-89f5-7e4a78e0abaf", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelbarber", + "reviewDate": "2021-11-26T15:13:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "57e8686d-6c01-48e1-b599-c77fec2ebee2", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "elizabethjones", + "reviewDate": "2021-10-15T05:57:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "74955663-4909-4403-aa1d-2e3fe36f1c1f", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "nancyvelez", + "reviewDate": "2021-06-15T21:09:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "45871d69-0df8-4ffb-8b9b-5855b09694c9", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifer06", + "reviewDate": "2021-06-11T21:42:37", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1ba1ad27-713e-4e2c-afff-d8b836144ba5", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "hancockjustin", + "reviewDate": "2022-01-29T02:33:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "90f5eb93-47a8-4689-bd12-fc1e837dabd1", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnnicholson", + "reviewDate": "2022-01-22T21:23:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0ea636ea-b175-4016-8ea4-0306f00dae2c", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "lgallegos", + "reviewDate": "2022-11-07T15:40:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d8bb194-7255-49d1-a71a-ba798425a212", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "carterarthur", + "reviewDate": "2022-01-09T15:43:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fa466dfb-6988-41cd-9175-8f1c302009fb", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "gerald84", + "reviewDate": "2022-11-07T02:19:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a7b3c10e-e487-47c7-8a6e-89f99f30d0b6", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "susanfields", + "reviewDate": "2021-05-13T02:41:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ff376c6f-bc54-416f-91f8-f72ed61fc546", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "rangelrebecca", + "reviewDate": "2021-05-29T17:14:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9ef669e4-611e-4ed4-aaf7-9c21a324acd9", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "crystal40", + "reviewDate": "2021-05-13T08:10:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d81798ce-0665-4b6b-9029-c7251d7a755a", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanie85", + "reviewDate": "2022-02-07T03:04:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0742662c-58d3-4c41-aaa2-9b1b6cc45737", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "donaldwolfe", + "reviewDate": "2021-10-03T11:24:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7c3080e5-3c16-472b-b431-b60beab31f54", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Ultra (Steel)", + "description": "This Luxe Filter Ultra (Steel) is rated 3.9 out of 5 by 4, Oct 4, 2016\n\nRated 5 out of 5 by Anonymous from I bought this for my daughter and the results were flawless. I have to admit some may have had more trouble with the formula than others because I am an inexperienced blend. I also think I", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-11-15T23:40:09", + "price": 959.3, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-03-06T19:07:08", + "newPrice": 921.34 + }, + { + "priceDate": "2024-08-09T19:07:08", + "newPrice": 959.3 + } + ] + }, + { + "id": "2c5bbd51-b29b-40e4-8d7d-75a06d7b0cb9", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "gardnermatthew", + "reviewDate": "2021-05-19T12:01:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1b35e2bc-0887-46e0-9b5c-f917c5e96315", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "alyssa32", + "reviewDate": "2021-03-30T10:56:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "269aa971-1a17-4247-8bb6-834d1828a8b0", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "bpearson", + "reviewDate": "2021-03-06T19:07:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7b369cee-f8c1-42f6-89f5-d2c52a56273d", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "jrhodes", + "reviewDate": "2022-12-25T18:36:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c515d0c8-1e2d-412c-88df-791758a76ac1", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "iramirez", + "reviewDate": "2021-08-13T01:06:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6fe6faa1-b2ad-4a6d-bb42-ceab09dce41a", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "dukekaren", + "reviewDate": "2021-09-17T11:12:25", + "stars": 2, + "verifiedUser": false + }, + { + "id": "af5bb35a-9a96-4107-8b88-6acfa2f7a12c", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "elittle", + "reviewDate": "2021-03-12T14:40:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b2d3f774-1617-467c-ba21-a14c5b2e4181", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "scottcolleen", + "reviewDate": "2022-07-14T02:14:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a1a6596a-8a7e-4ad5-bc21-a3c275858480", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "dennisjose", + "reviewDate": "2021-04-10T20:30:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8480c990-7a17-47a0-8128-6e092474c2a2", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "andersonsteven", + "reviewDate": "2022-03-10T08:07:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3871ce1f-9d40-4a42-a962-af13ee72ae99", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "lisa30", + "reviewDate": "2021-11-20T00:29:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5ddb91f8-c9f1-4c37-b7f5-d12ced5fbd1f", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "sara67", + "reviewDate": "2021-11-24T01:30:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7d678e07-5027-49d4-8090-e261ef7cc224", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "franklinshannon", + "reviewDate": "2021-09-22T08:56:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "45e3b6c7-8bae-4857-846c-720b7eb8f115", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "smithjason", + "reviewDate": "2022-10-21T16:47:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Super (Black)", + "description": "This Luxe Phone Super (Black) is available all year round for $799.\n\nWhen you get these phones on sale, you'll get a \"Premium\" (with a 6 year battery", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-01-23T08:32:27", + "price": 432.44, + "stock": 13, + "priceHistory": [ + { + "priceDate": "2021-01-03T19:44:26", + "newPrice": 407.16 + }, + { + "priceDate": "2022-12-04T19:44:26", + "newPrice": 470.68 + }, + { + "priceDate": "2024-05-19T19:44:26", + "newPrice": 432.44 + } + ] + }, + { + "id": "4546d242-dbc7-4d12-b691-c7d18a3e0747", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "bmiller", + "reviewDate": "2021-01-27T16:42:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "af50bfce-3d05-42f1-93a0-d3a81751bd65", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "marc71", + "reviewDate": "2021-04-27T15:52:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b65bf171-42ce-4dd3-a970-cd7391c0a4e3", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelellis", + "reviewDate": "2021-06-16T10:20:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4f52b337-4473-4994-8e60-5224c2780874", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "tuckeryvette", + "reviewDate": "2022-05-18T05:41:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "86b64f0a-0845-461b-b450-e077cb9d6f6c", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelseymorris", + "reviewDate": "2022-11-09T16:11:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c7d8e5e8-aa26-41e1-9c6c-1c1a40fa1c01", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher24", + "reviewDate": "2022-03-12T05:36:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bbd5c4e4-12cb-4e25-8304-b386dba450ca", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "riosmatthew", + "reviewDate": "2022-08-30T12:48:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "497baab7-dbf9-4abc-add7-32b564fab389", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissa95", + "reviewDate": "2022-03-13T14:01:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "368dcf47-ef56-41f6-bd9f-045235b75b63", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "kirbymary", + "reviewDate": "2021-02-19T05:10:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2521f2cf-4452-419d-b790-d0b2774c9e17", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "traci68", + "reviewDate": "2022-12-05T11:23:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5fd1639d-3ab7-4177-aebe-3aef639f2aeb", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeffreyrichards", + "reviewDate": "2021-05-27T12:26:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8ae744c7-cd94-42b3-91c9-776989b96622", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "ndelacruz", + "reviewDate": "2022-11-13T05:36:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "35b9b67f-b2ba-4bc0-a4e6-7e1ebcdf36d1", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "wigginscathy", + "reviewDate": "2022-06-01T19:15:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5669da53-8579-49c2-b158-a03853211df7", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "snorris", + "reviewDate": "2022-05-20T01:01:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ad888763-a697-47e8-9e2b-0485253ec2b0", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "tjohnson", + "reviewDate": "2021-06-15T16:52:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "926404a9-e55c-438f-9aba-18d4c6476853", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleybaker", + "reviewDate": "2021-09-03T04:12:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "91fff41b-8511-422e-81a5-7adbafeb28fa", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "jason65", + "reviewDate": "2021-01-03T19:44:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b9a9a304-55ef-4502-9373-763468e00f2e", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "rose05", + "reviewDate": "2022-04-26T08:12:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Ultra (Steel)", + "description": "This Amazing Computer Ultra (Steel) is rated 4.7 out of 5 by 18.\n\nRated 5 out of 5 by EJ from Extremely compact design This high resolution display displays the user's information on a single screen. The LCD screen can", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-07-21T12:21:15", + "price": 848.15, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-01-01T08:30:08", + "newPrice": 769.96 + }, + { + "priceDate": "2024-08-20T08:30:08", + "newPrice": 848.15 + } + ] + }, + { + "id": "e6b710bb-c1ea-4a6c-9008-6aff8c05755c", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "bobbysmith", + "reviewDate": "2021-08-03T04:19:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "66431c49-a1f4-4c47-9f29-1852eafc0d9d", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "martin64", + "reviewDate": "2022-03-17T02:28:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3278aa48-bcbe-454d-9843-83304f77d097", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeremiahgarcia", + "reviewDate": "2021-11-26T02:08:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2fe31791-f318-47c7-88ae-750471b46ee2", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "morenomarilyn", + "reviewDate": "2021-07-17T14:21:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "adf1e9b1-50c7-41d2-8c61-d7b0f750292f", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "erickane", + "reviewDate": "2021-01-01T08:30:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e66c1b12-f9c3-43bf-9d4c-1109eec07f95", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "silvajamie", + "reviewDate": "2021-07-09T16:50:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "18bde76f-ee13-463b-bd59-e3f2fd5ac6a5", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "tomcasey", + "reviewDate": "2021-01-07T04:22:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "510d4b88-cf2f-4937-8cc8-253ef447a83b", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "natashacampbell", + "reviewDate": "2022-07-28T01:41:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b6df4c3e-f052-4903-b086-a78ec12b8862", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "feliciabranch", + "reviewDate": "2022-02-08T15:19:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d1435e25-b324-4be9-8d43-315178d99649", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "ochavez", + "reviewDate": "2021-12-15T13:36:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3af56d9f-7c42-4a80-ada9-0d1eb14f0179", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathan06", + "reviewDate": "2022-11-16T02:17:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9e9b1b92-921e-4b66-954b-cc534cc0e69f", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "cfisher", + "reviewDate": "2022-02-19T09:17:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "226544ee-db06-4363-afce-6ee6373f1e15", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "hendersonwayne", + "reviewDate": "2021-11-01T04:24:22", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "product", + "name": "Premium TV Ultra (Gold)", + "description": "This Premium TV Ultra (Gold) is in stock today, please use the promo code AM1C3 to get the $6.50 Premium premium", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-08-25T09:43:02", + "price": 167.05, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-06-30T20:24:45", + "newPrice": 157.0 + }, + { + "priceDate": "2022-09-19T20:24:45", + "newPrice": 153.48 + }, + { + "priceDate": "2023-04-10T20:24:45", + "newPrice": 167.05 + } + ] + }, + { + "id": "da5eef12-4f24-4f75-89a4-95867d907c26", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "thomasdonna", + "reviewDate": "2022-07-25T16:42:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fedbeba9-19d3-44ea-a0b2-2594e6be8837", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "susan83", + "reviewDate": "2022-01-11T03:27:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6724552b-de3f-4b3b-a7a0-44b7bba0aeae", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "gmartin", + "reviewDate": "2022-01-03T14:16:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0871c47e-87d1-4726-ad1f-e7fd3124f147", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "michellemejia", + "reviewDate": "2021-10-04T10:39:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d33f724e-da7e-4fd5-a5f3-da7801ba0b71", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "daniellecurtis", + "reviewDate": "2022-04-21T21:38:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "84f54643-814b-49b1-984b-c8eecbc8348f", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "maureen16", + "reviewDate": "2022-09-20T01:34:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5c18a179-889b-4f7f-8376-67b574ffbb0f", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "kimberly47", + "reviewDate": "2021-06-30T20:24:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b2d5e6da-95df-492b-9f90-6ba9011c3246", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "michaelbenson", + "reviewDate": "2022-01-03T20:41:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d9f4818e-104e-4cfe-be4b-3bbc05f8a426", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "cindyblair", + "reviewDate": "2021-07-22T09:22:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "df7dde1c-c59f-42ed-95c0-535dd045e5ca", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "seanburns", + "reviewDate": "2022-02-10T11:47:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "196e5d58-c474-454e-beaf-8ef2683ebc55", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "natalie41", + "reviewDate": "2022-06-30T07:28:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "53fe8cee-b429-4298-8d7e-e1e41214a69a", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "xsmith", + "reviewDate": "2021-11-04T04:09:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e11e7041-e636-4f82-9f0b-99a60324ba5e", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "vmartin", + "reviewDate": "2022-03-19T05:00:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ea33af9c-ab58-4966-a82e-a21d7a858206", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "alopez", + "reviewDate": "2022-06-22T18:40:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "product", + "name": "Luxe Filter + (Steel)", + "description": "This Luxe Filter + (Steel) is a custom tank made by Waffle on Vixx, which is available for testing by our customers through the Vixx Service. The stainless steel filter comes with two tanks, the tank that comes with the stainless valve, and the tank that comes with the stainless valve, which", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-09-20T10:06:46", + "price": 871.98, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-01-03T18:09:30", + "newPrice": 821.28 + }, + { + "priceDate": "2021-08-22T18:09:30", + "newPrice": 785.25 + }, + { + "priceDate": "2022-04-10T18:09:30", + "newPrice": 825.21 + }, + { + "priceDate": "2022-11-27T18:09:30", + "newPrice": 822.53 + }, + { + "priceDate": "2022-12-20T18:09:30", + "newPrice": 871.98 + } + ] + }, + { + "id": "beeed988-9cc1-41c2-a8a1-23a63119e259", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "rachel24", + "reviewDate": "2021-05-06T11:16:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ac457d15-682b-44a2-8e13-d2d9e8a56d5d", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "stephanieparks", + "reviewDate": "2022-09-13T19:46:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c1098a38-107e-4f0c-a6d5-95e89c945a9a", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "darrelljones", + "reviewDate": "2021-03-13T19:49:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8edf8e7b-021f-4981-bf9f-9fc05ed938ae", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "luis72", + "reviewDate": "2022-08-31T04:55:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a8eb70d0-f734-49ed-82ea-a381e8995d2e", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "maryrodriguez", + "reviewDate": "2021-10-30T03:10:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cfa7a5b5-28d3-4197-846d-5d42f2928e65", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "robertjones", + "reviewDate": "2022-01-31T22:04:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "34296427-beda-4884-aaf3-9089795a308d", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "davispatricia", + "reviewDate": "2022-04-27T19:02:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "00f5dc77-1bf5-4b17-8d8b-6cafbc5b14fa", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "edward65", + "reviewDate": "2022-05-07T04:57:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "092f5dde-576f-4d8b-a166-c611cc9a1f9a", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "oliveraaron", + "reviewDate": "2022-09-23T09:50:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7c48ba2e-83f2-4492-ae82-bd4d19272584", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "wallkristen", + "reviewDate": "2022-03-07T16:49:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7be9fb33-3987-4c69-98b7-f096de760b2c", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "joshua34", + "reviewDate": "2022-11-28T00:14:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "84076ebc-85f2-47ee-81ba-3b58a40a5a61", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "higginsbeth", + "reviewDate": "2021-05-06T14:22:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4eb2d493-3275-4115-9ce8-75a9f790c731", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "millspeter", + "reviewDate": "2021-12-16T05:19:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4ee8bc35-ea3a-44b4-8faf-c28f5e4ffc5d", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "samantha43", + "reviewDate": "2022-10-17T19:11:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2b56223c-5a06-49f1-a636-ae7913fb6784", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "kbradley", + "reviewDate": "2021-01-24T03:40:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a0dee589-227b-4946-84c1-eb02687f19ec", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "evanschad", + "reviewDate": "2021-02-01T20:21:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "32f7eed0-b394-4561-90f2-0b23626bfeb9", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "linda33", + "reviewDate": "2021-02-08T19:36:37", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6d31f213-620d-41b9-9d1b-146d63db3add", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "nancy46", + "reviewDate": "2021-01-03T18:09:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9d08ec43-8e08-4085-8c8d-9f9f6bb98612", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "jordanshane", + "reviewDate": "2021-08-19T03:25:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Micro (Steel)", + "description": "This Premium Speaker Micro (Steel) is made to stand on its own in our car. We combine the highest quality materials, with the latest technologies, to create amazing speaker design for your personal enjoyment, when you need it. The Micro can also accommodate up to 8 sub", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-01-27T12:21:38", + "price": 976.29, + "stock": 49, + "priceHistory": [ + { + "priceDate": "2021-02-11T16:14:29", + "newPrice": 1060.87 + }, + { + "priceDate": "2022-07-08T16:14:29", + "newPrice": 1073.03 + }, + { + "priceDate": "2025-01-23T16:14:29", + "newPrice": 976.29 + } + ] + }, + { + "id": "2c0c7d35-5f8b-4d27-b3ba-a62fb13cb6c5", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "gregoryflores", + "reviewDate": "2022-06-20T16:58:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e15b5f62-9c57-4185-9ac8-f5653c5ec3fd", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "oconnorsandra", + "reviewDate": "2022-01-07T10:43:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c3314e7d-5b5e-4d02-814c-6f8a8136b54b", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "benjamintaylor", + "reviewDate": "2021-08-25T08:17:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c0c9cd62-208e-4a1a-a870-646a34641210", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "wangtimothy", + "reviewDate": "2021-02-11T16:14:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "80faae78-9e90-4f02-ab30-7b0ce9d082c7", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "qshort", + "reviewDate": "2022-07-08T19:06:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8896ff35-9b96-4c85-bac2-f566a31173a1", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "jeremiahsantos", + "reviewDate": "2022-03-26T08:06:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "productId": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard + (Red)", + "description": "This Awesome Keyboard + (Red) is by far my favorite design available on this device. Having played both of its modes (Randy and Play Mode) it was", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-12-01T02:53:46", + "price": 1071.14, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-06-08T18:37:48", + "newPrice": 1099.47 + }, + { + "priceDate": "2021-08-31T18:37:48", + "newPrice": 1069.06 + }, + { + "priceDate": "2021-11-23T18:37:48", + "newPrice": 1065.45 + }, + { + "priceDate": "2022-02-15T18:37:48", + "newPrice": 1151.46 + }, + { + "priceDate": "2022-05-10T18:37:48", + "newPrice": 1124.82 + }, + { + "priceDate": "2024-04-26T18:37:48", + "newPrice": 1071.14 + } + ] + }, + { + "id": "a68e50f3-65a6-4f1e-ae80-14fd5a72ea96", + "productId": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patrickaustin", + "reviewDate": "2021-09-02T13:05:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b07eeadd-6c53-45eb-bbc2-fa82bb7fbc58", + "productId": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vanessathompson", + "reviewDate": "2022-05-12T17:00:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "44812ede-a616-4b2e-ab5b-c71aaa9066fd", + "productId": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dmendoza", + "reviewDate": "2021-06-08T18:37:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d2ec7755-86ac-4ac9-8318-010e65317738", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Mini (Red)", + "description": "This Awesome Computer Mini (Red) is a special case of a nice computer to play with and build around. It can be used to play, set it off, even run some cool circuits. There is a power of 3.2v, a full 4x USB cable that connects to any Arduino board (if you choose to do that), and a powerful board that is almost entirely made with Arduino on top. The Mini is built with the Arduino IDE.\n\nThe Mini has two built", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-11-28T03:44:36", + "price": 414.24, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-09-09T01:10:05", + "newPrice": 433.91 + }, + { + "priceDate": "2022-01-04T01:10:05", + "newPrice": 400.38 + }, + { + "priceDate": "2022-05-01T01:10:05", + "newPrice": 428.49 + }, + { + "priceDate": "2022-08-26T01:10:05", + "newPrice": 447.35 + }, + { + "priceDate": "2022-12-21T01:10:05", + "newPrice": 447.19 + }, + { + "priceDate": "2024-04-25T01:10:05", + "newPrice": 414.24 + } + ] + }, + { + "id": "c4a93a71-f278-4472-a06b-e5b243d0c586", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "angelpetersen", + "reviewDate": "2022-11-22T09:06:11", + "stars": 5, + "verifiedUser": false + }, + { + "id": "75a92d4f-5cae-40a8-8441-9b621ecf5c8a", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "strongdonna", + "reviewDate": "2022-04-20T13:24:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "98408e75-53c1-412f-a222-8d257afe5c6c", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "joseph06", + "reviewDate": "2022-12-21T10:25:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "dc39a46e-6766-43ac-881c-62ebc5e86604", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "pmeyer", + "reviewDate": "2021-09-09T01:10:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1c598c9e-9431-4613-8b45-831fed94caa3", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "rrollins", + "reviewDate": "2022-01-25T17:17:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "68ef343c-4524-4af1-9819-d5e9844260bf", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Gold)", + "description": "This Basic Phone Ultra (Gold) is a free 4GB Ultra HD smartphone and 1GB of micro SD memory, allowing you to set up multi-account plans and extend a phone call, text messaging or video chat to 4 GB. The ultra-mini's 6.0", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-03-06T01:46:11", + "price": 144.51, + "stock": 89, + "priceHistory": [ + { + "priceDate": "2021-01-06T11:33:28", + "newPrice": 135.06 + }, + { + "priceDate": "2021-05-22T11:33:28", + "newPrice": 151.64 + }, + { + "priceDate": "2021-10-05T11:33:28", + "newPrice": 154.27 + }, + { + "priceDate": "2022-02-18T11:33:28", + "newPrice": 130.15 + }, + { + "priceDate": "2024-03-29T11:33:28", + "newPrice": 144.51 + } + ] + }, + { + "id": "58563911-e064-46cc-a434-21f0e7bac729", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelpena", + "reviewDate": "2021-01-27T16:51:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "18acb2ae-adad-433f-97fb-836890907d50", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "robleslarry", + "reviewDate": "2021-09-25T06:39:17", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f164ccae-73ab-4aed-944b-27d3c1774338", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsjohn", + "reviewDate": "2021-03-17T14:05:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "981417b2-0da3-44db-bae3-2c566dba6123", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "holly29", + "reviewDate": "2021-05-28T00:33:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "466b04dd-b512-4802-9a14-d55c67d9a8ba", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopherwong", + "reviewDate": "2021-06-08T14:51:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9a351da5-d7d7-417a-8d8e-a55e78fe6a0d", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "vincent57", + "reviewDate": "2021-02-08T00:10:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "26cf6e79-2ab9-484b-8d31-c45f9e15670e", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "btaylor", + "reviewDate": "2021-01-06T11:33:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1cb56050-9719-4c4f-8ec3-eb44cda3f568", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "brownjared", + "reviewDate": "2022-02-20T18:28:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Pro (Silver)", + "description": "This Basic Stand Pro (Silver) is not quite as good or as comfortable as other basic stands (see below). It's the cheapest variant as it doesn't have to be charged, just put an old, plastic wallet in there and you're good.\n\n\nPros", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-01-26T18:00:03", + "price": 407.78, + "stock": 96, + "priceHistory": [ + { + "priceDate": "2021-05-11T09:29:59", + "newPrice": 392.32 + }, + { + "priceDate": "2022-10-09T09:29:59", + "newPrice": 397.94 + }, + { + "priceDate": "2025-05-04T09:29:59", + "newPrice": 407.78 + } + ] + }, + { + "id": "79475d41-00b4-4990-a091-af0663d6f8ae", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "ddavis", + "reviewDate": "2021-08-07T11:43:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2ae94e6f-a84d-4443-ba7b-73f5efcbea6e", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "william61", + "reviewDate": "2022-10-10T02:14:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "be24dec3-16e1-45ae-a41f-2adcf320ff71", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrea00", + "reviewDate": "2021-10-14T05:22:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "816da4e3-b5e0-45d6-bf38-9720e8a7e0df", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandaward", + "reviewDate": "2021-05-23T09:10:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "384f8554-9a24-4d92-b365-3de70b128c79", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "hudsonnichole", + "reviewDate": "2021-09-22T20:33:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "023235ae-02b8-4002-a8ac-acc68c70fcf5", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "ulittle", + "reviewDate": "2021-06-20T08:55:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1a6cbf2f-c012-4f57-bfe3-a753775e8c62", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "cjones", + "reviewDate": "2021-05-11T09:29:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8c7bd4f1-822b-43a2-8b40-9a342ee98529", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "laurengordon", + "reviewDate": "2022-04-22T14:32:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f33fd178-26d8-47a5-aaf2-bf2a9063f370", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "brendaowens", + "reviewDate": "2021-09-02T19:54:28", + "stars": 3, + "verifiedUser": false + }, + { + "id": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand 3000 (Silver)", + "description": "This Luxe Stand 3000 (Silver) is a new piece that comes in 2 colors: gold and nickel. The Lumia has been in production for 5 years now, with all colors still in manufacture. It has long been one of my favorite pieces from the collection, as it brings the standard price of the Luxe Stand 3000 to over 70% more. The Lumia is lighter than most", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-11-27T20:40:20", + "price": 136.73, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-10-19T03:44:53", + "newPrice": 128.82 + }, + { + "priceDate": "2022-02-01T03:44:53", + "newPrice": 142.26 + }, + { + "priceDate": "2022-05-17T03:44:53", + "newPrice": 132.54 + }, + { + "priceDate": "2022-08-30T03:44:53", + "newPrice": 145.23 + }, + { + "priceDate": "2022-12-13T03:44:53", + "newPrice": 144.83 + }, + { + "priceDate": "2023-04-12T03:44:53", + "newPrice": 136.73 + } + ] + }, + { + "id": "4e8ad783-93c6-45bc-adc8-eb644e7945a5", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "marianorris", + "reviewDate": "2021-10-19T03:44:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0bc4031c-5655-4bae-898b-ff9a9bba8c33", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "tyler82", + "reviewDate": "2021-11-14T21:31:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1d07f7b2-8ba3-4caf-949f-445b61702149", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "lgriffin", + "reviewDate": "2022-12-16T17:59:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8e2805c7-e696-4399-973c-ce2caa39ba45", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "bpayne", + "reviewDate": "2022-02-04T08:26:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a58cd627-c2af-4d66-9b54-cbb526d0d261", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "austinhenderson", + "reviewDate": "2022-06-16T14:53:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a9f51d1c-c93f-4581-aafa-06c3767827c5", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "maryjackson", + "reviewDate": "2022-12-07T03:15:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "productId": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Micro (Black)", + "description": "This Amazing Stand Micro (Black) is a tiny, silver micro, or case with silver threads, making it perfect for the modern. A microcase is made of the same material as the inside (for now, we're not sure).\n\nMicro Case: The Micro Case was invented in 1977. The reason it's not a case is because of the plastic casing, not because of", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-04-16T04:18:33", + "price": 472.28, + "stock": 85, + "priceHistory": [ + { + "priceDate": "2021-02-20T12:56:52", + "newPrice": 455.5 + }, + { + "priceDate": "2023-04-08T12:56:52", + "newPrice": 472.28 + } + ] + }, + { + "id": "a0d14f2f-35ed-4e0f-b0e4-56874ebbbf0a", + "productId": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "category": "Accessory", + "docType": "customerRating", + "userName": "underwoodjeanette", + "reviewDate": "2021-02-20T12:56:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "64c765ed-3eb6-44c0-b6de-7d60ef0a96f0", + "productId": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "category": "Accessory", + "docType": "customerRating", + "userName": "gjohnson", + "reviewDate": "2021-11-01T00:28:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "463550ba-022b-4c91-9a77-9faa6f5ad604", + "productId": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "category": "Accessory", + "docType": "customerRating", + "userName": "ashleymullen", + "reviewDate": "2021-08-22T10:24:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "product", + "name": "Awesome TV + (Black)", + "description": "This Awesome TV + (Black) is a wonderful movie that combines original TV animation with an innovative live-action script. It's visually rich, with a cast of amazing characters that make this movie a beautiful and visually exciting place to explore.\n\nIf this was our first time watching an original animation DVD, then you would have heard all about the DVD and if you watched it in a theater, you would have seen a whole new world created.", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-08-25T10:16:36", + "price": 262.75, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-03-03T19:44:14", + "newPrice": 259.54 + }, + { + "priceDate": "2023-03-06T19:44:14", + "newPrice": 262.75 + } + ] + }, + { + "id": "0f1b3df4-238b-4065-832f-3870a9b8ae99", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "griffinchristina", + "reviewDate": "2021-09-16T22:41:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6f7ce713-1357-4909-ab4e-88cae84529a8", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth26", + "reviewDate": "2021-03-03T19:44:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "03694c8f-31e6-48c2-861e-5a0ff8d00976", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "kwalker", + "reviewDate": "2022-08-06T00:38:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "60efb0bd-c339-4540-b89b-71c201f8f893", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "jamesrice", + "reviewDate": "2021-10-18T22:06:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "34f73ae3-91c2-4f06-b048-ec70a1e8a7ed", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "ecrane", + "reviewDate": "2022-06-27T00:30:37", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7dc579de-0dfc-44a7-87c0-7c01723d1e7b", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "michaelarias", + "reviewDate": "2022-10-09T01:32:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5cfb7968-59d5-4507-9a32-c56707e32217", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "xwest", + "reviewDate": "2022-11-21T10:25:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c2b5df54-23f1-41d7-b6ce-9aa9906d88e3", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "manningbryan", + "reviewDate": "2022-01-25T22:44:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "85cee9be-2bfb-44fb-8599-73949810e666", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "alewis", + "reviewDate": "2022-12-05T11:39:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3190737d-1a65-4a6f-abd1-ecbbbd2a0eae", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "dchapman", + "reviewDate": "2021-05-22T03:13:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fdce1315-51d3-4570-9e83-87813f4cb947", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "michael52", + "reviewDate": "2021-06-01T09:48:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4a63e8ff-22a2-441d-8458-e96b35851f34", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "matthew56", + "reviewDate": "2021-12-25T11:43:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "28574e6a-e490-4d8c-8fd9-f8265bf766cf", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "floydnancy", + "reviewDate": "2022-08-27T02:23:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f4db7eb7-5ba0-419c-b869-04dc326be812", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "paul01", + "reviewDate": "2021-05-25T18:37:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4015572c-14e8-402f-89f4-02ad896db979", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "robertkoch", + "reviewDate": "2021-06-27T18:45:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "457ccfd8-737e-41b9-b18d-abc54e3ddc68", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "judymartin", + "reviewDate": "2022-06-14T18:49:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "085d829f-008b-485d-a911-25080efadc64", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "mariojohnson", + "reviewDate": "2022-09-10T23:13:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ce2cd443-00c6-40c7-8f42-20f852a15014", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "kayla05", + "reviewDate": "2021-09-03T16:14:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "57e338fa-75b1-480a-ba0c-52e810a8cc12", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "emily80", + "reviewDate": "2021-05-04T01:56:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Silver)", + "description": "This Basic Phone Ultra (Silver) is equipped with the following functions:\n\nUser interface UI UIUI (Black) UIUI+ UIUI+ + User interface UIUI+ + Mobile UI interface UIUI+ + Mobile UI + Video UIUI+ + Video.\n\nThe following additional features are described in Appendix 1 of this review; however, these are general in nature.\n\nPricing: The following", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-03-18T07:14:53", + "price": 957.76, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-03-02T06:50:02", + "newPrice": 891.51 + }, + { + "priceDate": "2022-10-23T06:50:02", + "newPrice": 968.36 + }, + { + "priceDate": "2024-04-18T06:50:02", + "newPrice": 957.76 + } + ] + }, + { + "id": "cbbbcd81-1e65-4d88-9a1d-4b34cf4ffff8", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kho", + "reviewDate": "2022-01-16T23:24:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "537efb1f-c80c-4c85-8007-de65a71cc61b", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica82", + "reviewDate": "2022-05-13T10:01:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f1d16b66-b595-4749-a84d-632dbc1df820", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicholasbowen", + "reviewDate": "2022-02-26T14:00:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8a93d5b0-7268-4bb2-a75b-2c1334bf9e83", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "isilva", + "reviewDate": "2022-09-04T18:22:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eea86af9-d8a2-4919-9021-2cb607d7790e", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "torresvanessa", + "reviewDate": "2021-11-09T05:28:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0116c2a3-1c44-4be7-b034-e2c1ab20b372", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "sdawson", + "reviewDate": "2021-09-22T04:21:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a636b69d-23e1-4f68-abb4-62ab67bf9efb", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "nbrown", + "reviewDate": "2021-07-18T08:49:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b0091468-652b-4ce0-a757-e7f3c7e21a1e", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "ianhumphrey", + "reviewDate": "2022-10-23T13:15:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f8288d0d-2679-4a00-b545-fc5d344ff9a2", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarah19", + "reviewDate": "2021-03-02T06:50:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d1cb11e4-d307-473d-b3b2-1db29c430b41", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "groberson", + "reviewDate": "2021-05-10T22:26:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "767d61f9-270b-49e1-b318-8e50e0f39d43", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "diazcarla", + "reviewDate": "2022-09-25T09:47:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Ultra (Steel)", + "description": "This Luxe Computer Ultra (Steel) is one of the highest-ranking machines the Hyperledger group has built, a machine capable of producing up to 300 kilowatts (yards of heat). This machine is not equipped with any of the power-efficient thermal technologies that can produce heat, or", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-11-22T11:52:14", + "price": 278.16, + "stock": 48, + "priceHistory": [ + { + "priceDate": "2021-07-15T01:48:57", + "newPrice": 278.24 + }, + { + "priceDate": "2022-03-10T01:48:57", + "newPrice": 250.43 + }, + { + "priceDate": "2022-11-03T01:48:57", + "newPrice": 283.68 + }, + { + "priceDate": "2023-05-01T01:48:57", + "newPrice": 278.16 + } + ] + }, + { + "id": "f06f23b8-dd16-442e-8ef7-0967669a421e", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "qhughes", + "reviewDate": "2022-07-17T09:04:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6983a167-1c7b-451c-8f5c-cb554594b14f", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "emiller", + "reviewDate": "2022-11-02T14:13:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f800696b-d39f-45ce-bf24-781d1c855ec8", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "zedwards", + "reviewDate": "2021-12-01T07:09:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8e00dc44-d564-4b69-9443-ee00a8686d33", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "imartinez", + "reviewDate": "2022-02-02T03:25:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3051fdf8-2840-4059-8723-d21621237288", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "paulpaul", + "reviewDate": "2021-11-27T10:35:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eb4548cc-6e96-4b0c-8478-dca80d756710", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "wmiller", + "reviewDate": "2022-11-03T05:24:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ce932168-f5b0-40e2-9ea3-91ad52d2c5b0", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "hansenshawn", + "reviewDate": "2021-12-12T08:58:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3e1f2944-45c0-433c-a96f-bf22af33e646", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "cheyennestone", + "reviewDate": "2021-07-15T01:48:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f0d3079d-ff3e-48f0-a56c-2734aa75b810", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "perezgregory", + "reviewDate": "2022-06-01T13:42:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "01a3dee3-7141-41c5-8192-c8dd67afe067", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "bwilson", + "reviewDate": "2022-01-14T21:38:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "465bd73e-2a75-47ca-b337-48f2d7f21701", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "kennedyamy", + "reviewDate": "2021-11-02T14:13:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ef91bfd9-95e2-4f8b-89e8-6fbd2cf6cdca", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "jillbrown", + "reviewDate": "2022-10-20T10:43:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "79b94d91-2079-492d-b8d0-f61eff18f656", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Mini (Red)", + "description": "This Luxe Phone Mini (Red) is a high quality mobile phone that is made to meet high quality budget models for the most comfortable use. The phone has a metal rear bezel with 5mm audio jack", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-08-06T22:13:17", + "price": 446.29, + "stock": 84, + "priceHistory": [ + { + "priceDate": "2022-02-02T04:35:00", + "newPrice": 416.02 + }, + { + "priceDate": "2022-03-01T04:35:00", + "newPrice": 446.29 + } + ] + }, + { + "id": "63402c81-8d69-4f82-80d4-6628aca8410e", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "customerRating", + "userName": "david72", + "reviewDate": "2022-10-09T21:00:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b9880bc9-3ba7-499d-9a48-077f341666b4", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "customerRating", + "userName": "vsoto", + "reviewDate": "2022-04-15T22:22:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cbb31f0c-a0d1-4c93-af53-f387372c14d5", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "customerRating", + "userName": "matthewwood", + "reviewDate": "2022-02-02T04:35:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "43e6d073-23cb-41dd-af41-98f8a7d79d73", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "customerRating", + "userName": "florestheodore", + "reviewDate": "2022-07-07T15:44:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dd57ea02-3c11-4a1f-86c5-246c5ba5f3f5", + "productId": "dd57ea02-3c11-4a1f-86c5-246c5ba5f3f5", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Micro (Gold)", + "description": "This Basic Phone Micro (Gold) is available for only $399 and only available for the Gold version of Android (Android One is $299 without Gold). With an 8 GB memory and 6 GB of storage on the $350 model with Android Oreo, this phone could be the ideal smartphone for the average Joe, no holds barred.", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-09-30T10:21:59", + "price": 602.06, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-01-02T19:38:50", + "newPrice": 658.87 + }, + { + "priceDate": "2021-04-08T19:38:50", + "newPrice": 555.3 + }, + { + "priceDate": "2021-07-13T19:38:50", + "newPrice": 563.39 + }, + { + "priceDate": "2021-10-17T19:38:50", + "newPrice": 592.92 + }, + { + "priceDate": "2022-01-21T19:38:50", + "newPrice": 633.32 + }, + { + "priceDate": "2022-05-16T19:38:50", + "newPrice": 602.06 + } + ] + }, + { + "id": "27822233-c9c0-4178-88e8-d570b14cf3c4", + "productId": "dd57ea02-3c11-4a1f-86c5-246c5ba5f3f5", + "category": "Electronics", + "docType": "customerRating", + "userName": "kbell", + "reviewDate": "2022-01-22T08:12:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c1381e51-0a6c-4233-bcbd-a1f1f7d6ca40", + "productId": "dd57ea02-3c11-4a1f-86c5-246c5ba5f3f5", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicholas63", + "reviewDate": "2021-01-02T19:38:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Red)", + "description": "This Awesome Stand + (Red) is rated 4.0 out of 5 by 33.\n\nRated 3 out of 5 by mrb from Bummer! One of these looked really nice, looks cheap, but was a disappointment with no difference in look or texture, no noticeable difference in quality compared to my new one. We were lucky, we came back once to see this model again and gave it 5 stars (but only because everything else was a surprise", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-03-31T05:12:09", + "price": 221.55, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-01-28T13:04:49", + "newPrice": 238.79 + }, + { + "priceDate": "2021-07-12T13:04:49", + "newPrice": 221.55 + } + ] + }, + { + "id": "c66dc4b2-2c56-4199-80ea-9ccb648b5e28", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandaking", + "reviewDate": "2022-04-02T01:30:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2ea8afc5-43ad-459d-85ce-e9783811043f", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "brendan35", + "reviewDate": "2021-08-12T13:08:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c26804c6-80d4-4f1e-b102-3122a283b014", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasbrian", + "reviewDate": "2021-01-28T13:04:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "16c5d883-88ae-4f54-a00a-b9fa9fe7b6f3", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "roblesjason", + "reviewDate": "2021-06-11T10:28:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7325af39-0b4c-479c-a6bb-5c8fe5927af4", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "rebecca60", + "reviewDate": "2021-02-02T09:16:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3a60f4d8-78b9-439c-ab9b-a08117b615a8", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "bassjeffery", + "reviewDate": "2022-03-26T00:01:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "13d570d9-3250-41a1-a6a5-df1866f2b6fb", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "william25", + "reviewDate": "2022-02-19T11:50:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3ff9fac5-7de3-478c-8812-45c3c9b4b162", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "oguzman", + "reviewDate": "2021-11-28T05:35:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "14438d3d-bcb2-4787-aba0-f3a6587ac892", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "hortonkristina", + "reviewDate": "2021-02-20T03:55:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4dd98c02-a4ed-4950-96dd-344c669d2642", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "ehubbard", + "reviewDate": "2021-02-25T11:33:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e0903b4b-1927-472a-a316-77717c26700f", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "patrick51", + "reviewDate": "2021-12-15T23:44:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "46c46174-ac84-48ee-86d1-4ab25390355d", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Ultra (Silver)", + "description": "This Luxe Phone Ultra (Silver) is available in four colors: Bronze, Emerald, Platinum, and Gold.\n\nPlease note: The Luxe Phone Ultra is the same phone that we already have available for download and is compatible with the following phones:\n\nSamsung 5500: Full LTE support\n\niPhone 5: Full LTE support\n\nSamsung Galaxy Nexus One: Full support\n\nGalaxy G3\n", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-12-21T12:35:01", + "price": 732.92, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-04-24T13:41:05", + "newPrice": 760.62 + }, + { + "priceDate": "2021-10-19T13:41:05", + "newPrice": 695.41 + }, + { + "priceDate": "2022-04-15T13:41:05", + "newPrice": 780.64 + }, + { + "priceDate": "2022-10-10T13:41:05", + "newPrice": 782.01 + }, + { + "priceDate": "2023-08-16T13:41:05", + "newPrice": 732.92 + } + ] + }, + { + "id": "f0e02759-ab56-4e65-afec-6e1103be1348", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "ngamble", + "reviewDate": "2022-10-13T00:38:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b486e370-5a03-4ca1-af5c-45883320c74f", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberly47", + "reviewDate": "2021-08-06T10:56:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f9e3b55f-7f71-43a7-8030-4c156c2e6aeb", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "awilliams", + "reviewDate": "2022-03-18T21:25:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d0cdea58-7f75-4d41-9941-af4fdf1875f4", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsrobert", + "reviewDate": "2021-11-17T10:07:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b38fd228-ae24-419b-bdab-e57f685fa9b3", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "bryan34", + "reviewDate": "2021-10-28T15:18:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1d880c86-b1cf-47b0-ab59-3be75c1a7a00", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "pjoseph", + "reviewDate": "2022-07-21T01:25:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e2b2342b-db21-4cb5-ad58-e4f76d3292bb", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "brian93", + "reviewDate": "2022-07-02T23:16:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f030836f-d031-4107-8504-8b7dd64c63f8", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "christine38", + "reviewDate": "2021-11-12T21:40:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7a73a82f-c67f-4590-b221-4c095a00e484", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "sbrown", + "reviewDate": "2021-04-24T13:41:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e93ac5c4-71e5-4025-9095-04e0f6259a8e", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "gordonsheppard", + "reviewDate": "2021-05-13T19:07:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "956d05d4-566b-43cf-bcdf-143ac2592e4b", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "donaldstrong", + "reviewDate": "2021-10-24T20:10:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3178708c-ce99-4133-bd1e-be81b48d7fe1", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "rachel11", + "reviewDate": "2021-08-12T03:47:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e9d2f28f-2877-4fad-b9a0-99b56d96557c", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "sandra31", + "reviewDate": "2022-09-05T10:24:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "774d5b7c-56b0-4743-91e8-95426b5c7875", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "jpadilla", + "reviewDate": "2021-06-02T12:25:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e3960479-49b3-4ee3-bffd-bbe804a6b7b6", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnsonjames", + "reviewDate": "2021-06-14T13:12:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "204f8eb7-9650-4e5b-948e-e4fb795e16e7", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsmichelle", + "reviewDate": "2021-06-26T00:22:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "product", + "name": "Premium TV Super (Black)", + "description": "This Premium TV Super (Black) is on the menu!\n\n\nIn addition to its unique packaging, the Premium TV Super ($199.99) comes with a 4K UHD Ultra HD (800kbps) video source and an advanced viewing experience, providing over 60 hours of entertainment for two or more individuals. The Premium TV Super is available on Amazon, Barnes & Noble, Best Buy, Walmart,", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-02-08T01:58:58", + "price": 372.68, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2021-01-31T09:14:50", + "newPrice": 384.4 + }, + { + "priceDate": "2021-09-19T09:14:50", + "newPrice": 355.89 + }, + { + "priceDate": "2022-05-08T09:14:50", + "newPrice": 369.88 + }, + { + "priceDate": "2022-12-25T09:14:50", + "newPrice": 394.31 + }, + { + "priceDate": "2023-06-13T09:14:50", + "newPrice": 372.68 + } + ] + }, + { + "id": "56de509b-a465-4374-a09d-d6995d39fcb5", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "npowers", + "reviewDate": "2021-01-31T09:14:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d891fc7c-7574-4729-924a-3230f5a37b88", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "jonesolivia", + "reviewDate": "2021-10-11T09:37:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1378d98a-79ae-437a-b461-f2436af41617", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "qhaynes", + "reviewDate": "2021-03-12T13:34:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cb353eaf-b8a2-4de1-ad35-d8d0685c6184", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "michelebarrett", + "reviewDate": "2021-08-15T13:10:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "79971fb0-8c95-49f3-8139-b4b84fc5df81", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "xgonzalez", + "reviewDate": "2022-01-10T00:11:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f095dc96-a4f7-4005-8a33-666e5b1ca172", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "martinnorman", + "reviewDate": "2022-12-26T02:21:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "01a45493-708e-4e26-b07c-3985f05e59c4", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "christina75", + "reviewDate": "2021-06-27T13:53:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ef1d9008-8a2e-4ea8-8725-31d595869f48", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "fwilliams", + "reviewDate": "2022-11-16T09:14:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "278066eb-1f00-4c9a-89ac-1ec68a7c771b", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "pmercer", + "reviewDate": "2022-10-06T20:55:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "38228d1c-c98d-4c7f-96eb-f00ddd86cfb9", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "xgonzalez", + "reviewDate": "2021-10-26T02:01:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8703aaba-c062-447d-8afa-417eadd19830", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "matthew58", + "reviewDate": "2021-07-22T21:25:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "830913c1-294f-40d4-9751-9a9a3046d600", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "brianna48", + "reviewDate": "2022-12-09T06:13:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "56bd31c3-1f53-4752-83e5-fceba9891ceb", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "douglashernandez", + "reviewDate": "2021-06-11T09:21:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b6877cc0-a902-4824-b2a3-2c159e9ee6a1", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "josephrivera", + "reviewDate": "2021-12-19T23:33:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9d217ac3-f509-417d-ada4-4d91862989c6", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "brooke27", + "reviewDate": "2021-09-03T00:17:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "707197db-d01b-4899-8379-470049834234", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth47", + "reviewDate": "2022-12-25T14:44:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b3a02931-e3e2-4d6f-a2aa-993255db5ace", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "patrick50", + "reviewDate": "2022-10-12T20:04:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ed621f6f-c346-4cc3-9b0b-3f03ade327a3", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "davilawilliam", + "reviewDate": "2022-06-30T23:06:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8a6ba613-86fd-4384-ae93-3db014e835b2", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "jonathan00", + "reviewDate": "2021-03-18T02:44:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f163e206-7d46-4417-b89f-bdf1979e5c33", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "shelly86", + "reviewDate": "2022-01-02T16:10:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse + (Black)", + "description": "This Luxe Mouse + (Black) is made from a matte leather with a clear edge. This mouse also comes in a pair of velcro back and sides that allows the velcro to securely hold a mouse.\n\nThe black-colored and black-colored mouse has an achilles flex-button to protect the velcro from external damage. An optional black velcro clip lets the mouse grip onto a mouse surface. The", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-09-23T01:19:10", + "price": 850.86, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-01-25T12:55:40", + "newPrice": 792.3 + }, + { + "priceDate": "2024-10-05T12:55:40", + "newPrice": 850.86 + } + ] + }, + { + "id": "10a2cc89-282c-42fb-b2cb-2b759809f1eb", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "millerkevin", + "reviewDate": "2021-11-22T11:34:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "419c6ad3-f386-40c0-9255-5b47040b1c18", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eric43", + "reviewDate": "2022-08-28T15:26:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ea257081-8087-4517-b990-c97b446f4785", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ncampbell", + "reviewDate": "2021-08-16T09:29:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "24de3356-c4ed-4bf1-91a6-90de0e144679", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reedkyle", + "reviewDate": "2022-12-23T16:20:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ee205aae-8cdc-4166-ace9-2b90ab1d8870", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lowecarlos", + "reviewDate": "2022-07-01T13:30:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "895973df-fcfb-497c-bbeb-378bfbdfb019", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher55", + "reviewDate": "2021-05-26T22:48:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e4dfa8ab-48c9-450e-9f4c-e39adac187a9", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bruceamanda", + "reviewDate": "2022-05-16T20:06:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1b4707cc-7b14-45d9-a40f-5e2e5a626ae1", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "millerchristopher", + "reviewDate": "2021-08-27T21:43:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5e46913e-fd97-4e51-b6ea-2aaa176cf2a0", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "randy91", + "reviewDate": "2021-02-02T13:24:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "93410011-f6b7-4d95-8671-850300fc512d", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryanpowell", + "reviewDate": "2021-05-24T03:54:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1cc017e4-4a89-4113-90dd-e478a4c77b91", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew28", + "reviewDate": "2021-01-25T12:55:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b6d5429a-fd11-40ba-90db-ab3a29d22647", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wrightheather", + "reviewDate": "2021-06-07T22:08:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "10dc6157-b7a6-4e21-993e-686493284fce", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashleymiller", + "reviewDate": "2021-09-08T09:51:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dd3e3c7e-40e6-4cb0-a2d9-7cb81da386a0", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cassandra62", + "reviewDate": "2022-10-03T11:55:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3d9cc483-602e-4160-b4ba-92ae443ac58b", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ldavis", + "reviewDate": "2022-05-21T02:28:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "859056ca-7c60-47a5-981c-e5bd0db7857f", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamburke", + "reviewDate": "2021-07-08T21:18:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e0c2e3ae-d5b3-4d83-8973-a8efb4ab76a6", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bettyvillanueva", + "reviewDate": "2022-11-29T06:43:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "85405fdc-9d6e-4f86-8ceb-5061b55b9b51", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ishaw", + "reviewDate": "2022-04-09T22:42:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2e7fe354-2887-4c91-bfab-745de29b8647", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand 3000 (Gold)", + "description": "This Premium Stand 3000 (Gold) is now priced from ¥45,000 to ¥100,000, while the Premium Stand 3000 (Silver) is now priced at ¥35,000 to ¥40,000.\n\nWith so much to see (and lose), we want to add a few extras to the set, too. Check out the images below the screen (and here if you want more info or just to see it", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-05-07T16:21:48", + "price": 386.28, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-01-01T13:18:44", + "newPrice": 369.93 + }, + { + "priceDate": "2021-08-24T13:18:44", + "newPrice": 388.8 + }, + { + "priceDate": "2022-04-16T13:18:44", + "newPrice": 373.46 + }, + { + "priceDate": "2022-12-07T13:18:44", + "newPrice": 383.5 + }, + { + "priceDate": "2025-07-02T13:18:44", + "newPrice": 386.28 + } + ] + }, + { + "id": "95e99145-7235-489c-8e73-3d22115f8edf", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "ijohnson", + "reviewDate": "2021-01-01T13:18:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f48d41b0-af29-45ec-92c3-f376af1eb879", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "perryjesse", + "reviewDate": "2022-01-21T18:07:21", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d9e3f1cb-8c60-4157-8869-12ebb614c139", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthew69", + "reviewDate": "2021-11-07T06:52:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8ff5800d-43b2-4504-a720-3cf8b6151810", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "erik98", + "reviewDate": "2022-12-07T15:00:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0ab84748-0fef-40ee-9d1f-e39e6ca8bb9f", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "scott81", + "reviewDate": "2021-01-17T09:49:24", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a43c8da5-9b6a-4c9a-905b-fa8c497c84c7", + "productId": "a43c8da5-9b6a-4c9a-905b-fa8c497c84c7", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Micro (Steel)", + "description": "This Luxe Phone Micro (Steel) is a great phone to own which is quite attractive.\"\n\n\"I recently bought a 2nd Model of my LG", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-11-09T15:26:37", + "price": 832.15, + "stock": 42, + "priceHistory": [ + { + "priceDate": "2021-01-17T01:37:55", + "newPrice": 776.64 + }, + { + "priceDate": "2022-05-27T01:37:55", + "newPrice": 853.04 + }, + { + "priceDate": "2025-04-14T01:37:55", + "newPrice": 832.15 + } + ] + }, + { + "id": "79df662c-5207-464d-8c3c-e73cfa0cfd61", + "productId": "a43c8da5-9b6a-4c9a-905b-fa8c497c84c7", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacksonmichael", + "reviewDate": "2021-01-17T01:37:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a5348cf8-0972-4f00-864e-cec150ef1dae", + "productId": "a43c8da5-9b6a-4c9a-905b-fa8c497c84c7", + "category": "Electronics", + "docType": "customerRating", + "userName": "carla32", + "reviewDate": "2022-05-28T01:09:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a8fad81c-dc05-4772-aa07-625617d061b6", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand + (Silver)", + "description": "This Amazing Stand + (Silver) is rated 4.8 out of 5 by 27.\n\nRated 5 out of 5 by Darryl from Great stand! This is my second outdoor lamp. I use it regularly so I can be confident that my next fire is up", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-01-28T04:04:13", + "price": 275.21, + "stock": 42, + "priceHistory": [ + { + "priceDate": "2021-01-10T05:46:16", + "newPrice": 251.26 + }, + { + "priceDate": "2022-01-02T05:46:16", + "newPrice": 249.39 + }, + { + "priceDate": "2022-12-25T05:46:16", + "newPrice": 279.48 + }, + { + "priceDate": "2025-04-12T05:46:16", + "newPrice": 275.21 + } + ] + }, + { + "id": "098bd714-1298-42c2-a92f-3bf9eb7d98b7", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "hudsonjoel", + "reviewDate": "2022-03-25T12:13:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1e227c86-6db6-447b-97fc-3603e11e828c", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "briancarlson", + "reviewDate": "2022-06-18T03:19:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "afab9c43-f482-4bcc-af48-d0f87416fc9c", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "edward16", + "reviewDate": "2021-07-29T03:12:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83504bb5-d117-456a-8637-7beca3c13fe2", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "kevin35", + "reviewDate": "2022-07-03T21:14:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e788cf77-b6bc-4005-9c02-c9cff2146f54", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "cruzjoshua", + "reviewDate": "2021-10-25T13:45:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ce52ac7e-0308-446f-a1b2-4ca8d9fd41c5", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "kingelizabeth", + "reviewDate": "2022-04-22T08:33:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f46a4b56-b030-4e1b-aaef-13b3f973a8f1", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessica85", + "reviewDate": "2021-11-07T12:31:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b9763a0d-bcb5-4f24-b5f1-f14aa243766b", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "ijacobson", + "reviewDate": "2022-09-01T23:22:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b28753c8-65d6-46cc-b12c-1582fe1bac7d", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "ifox", + "reviewDate": "2021-08-03T20:59:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ab60e6a9-c51e-4a2a-abfc-1228b62abfbe", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "nfranklin", + "reviewDate": "2022-12-26T23:19:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b8dabf1d-097a-4dfe-9be2-c25bc49875c9", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "walkercaitlin", + "reviewDate": "2021-01-10T05:46:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0d0e0b07-a190-4660-bbfe-d0f388065ded", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "urodriguez", + "reviewDate": "2022-08-14T00:47:35", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2a3b0003-24f9-4d37-9164-4d34dfd133b8", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "richardsonevelyn", + "reviewDate": "2022-06-18T09:44:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bb970549-0f79-4e17-8e92-376487335778", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "miranda41", + "reviewDate": "2021-08-13T16:13:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard 3000 (Gold)", + "description": "This Awesome Keyboard 3000 (Gold) is pretty cool if you ask me. It uses a new version of Cherry MX Alarm Clock with a 3.5-inch touchpad", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-07-14T09:55:41", + "price": 928.31, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-01-09T00:42:25", + "newPrice": 952.31 + }, + { + "priceDate": "2021-07-05T00:42:25", + "newPrice": 917.18 + }, + { + "priceDate": "2021-12-29T00:42:25", + "newPrice": 981.67 + }, + { + "priceDate": "2022-06-24T00:42:25", + "newPrice": 854.72 + }, + { + "priceDate": "2022-12-18T00:42:25", + "newPrice": 992.75 + }, + { + "priceDate": "2025-04-08T00:42:25", + "newPrice": 928.31 + } + ] + }, + { + "id": "49cabb09-eb1d-43d8-8ba9-3c48b57bdba1", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wvance", + "reviewDate": "2022-04-04T09:37:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c6b960e1-3796-4529-b05b-f236aa16c8a4", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hernandezanthony", + "reviewDate": "2021-03-23T05:58:49", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b87484a0-a75c-4e43-a936-e50576c75423", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "freemantroy", + "reviewDate": "2022-03-08T16:42:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "48acc4a1-482a-4c09-926b-f74bccd6cc78", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer05", + "reviewDate": "2022-01-05T08:45:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7b2f99b3-b3db-44b5-9292-c45afabdf1e6", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pbrown", + "reviewDate": "2022-01-09T00:26:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7bea196e-417f-489e-9f83-b25df1585e4d", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "douglascharles", + "reviewDate": "2021-05-24T22:23:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6c5644be-f10f-4901-95ac-f16f148ef8d4", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vkeller", + "reviewDate": "2021-08-26T01:16:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "84465ae1-5fc8-47d9-bafb-967238229c52", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vpierce", + "reviewDate": "2021-04-15T19:10:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "105c68df-62e0-4d9f-b088-b30447cd5acd", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "connor63", + "reviewDate": "2022-02-17T22:14:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "059c560e-f4d3-4d94-bb1d-ed12a36b871f", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "william76", + "reviewDate": "2021-07-18T19:07:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d982367c-f97c-42df-9563-0520d9b0db43", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jbaker", + "reviewDate": "2022-09-18T22:10:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bd2eda56-c0cc-484d-912e-a6b57ba1b798", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michele04", + "reviewDate": "2021-10-08T04:52:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3370da92-d79e-43a3-8061-8ca3db4cabd3", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tracywilliams", + "reviewDate": "2022-09-26T07:08:04", + "stars": 5, + "verifiedUser": true + }, + { + "id": "82f0fdbb-911f-46c0-8cc1-c29554cea7ed", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "imclaughlin", + "reviewDate": "2021-04-06T19:31:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7bd5567f-229f-421a-9865-0ff8b9e3ae3f", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perkinstaylor", + "reviewDate": "2021-01-09T00:42:25", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5b06acf2-7424-4921-b36b-f308c6f711e1", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alexa58", + "reviewDate": "2022-12-21T18:16:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4a724cdd-a959-4787-86e6-72a514ac4a7c", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinacooper", + "reviewDate": "2021-03-12T08:30:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "776ec7d7-e92b-423d-96b4-24705733f18b", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garrett35", + "reviewDate": "2022-06-08T10:54:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Mini (Gold)", + "description": "This Amazing Keyboard Mini (Gold) is rated 4.5 out of 5 by 30.\n\nRated 5 out of 5 by Anonymous from The Quickest To Use To Make Keyboard Notepad This is by far my favorite keyboard. It works best", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-09-26T01:48:17", + "price": 773.28, + "stock": 96, + "priceHistory": [ + { + "priceDate": "2021-02-04T06:58:03", + "newPrice": 718.61 + }, + { + "priceDate": "2022-10-14T06:58:03", + "newPrice": 741.16 + }, + { + "priceDate": "2024-03-18T06:58:03", + "newPrice": 773.28 + } + ] + }, + { + "id": "862b60d9-1a31-480f-82b0-66c179d78824", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hberry", + "reviewDate": "2022-04-06T02:54:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a69f376c-4f56-44b7-a99b-3535a8127e36", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyrowland", + "reviewDate": "2021-03-21T05:17:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3044dc74-a72c-41ca-b855-7bbb21d41d24", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bethtaylor", + "reviewDate": "2021-08-31T19:12:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6f3c6d82-9893-4b7a-9249-9d3df6b6b5a8", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "webbnancy", + "reviewDate": "2021-07-16T10:25:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9af8f142-0717-4b00-9dcf-821089b3867e", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnny11", + "reviewDate": "2021-06-23T15:34:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b04f1872-2d8a-4ed1-a470-6ed293ab71da", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dicksonelizabeth", + "reviewDate": "2022-09-24T09:36:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8034dcb1-8017-4212-8a99-94668671974f", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rbuchanan", + "reviewDate": "2021-08-08T03:33:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8bf45cd2-0738-42f8-935c-2ed205e5d939", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamessanders", + "reviewDate": "2022-10-14T11:50:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c5e3061b-c820-40d0-8448-3ac8e51ed769", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "murraytamara", + "reviewDate": "2022-04-10T15:53:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bc9ed4ae-a47a-4ae3-bcab-1169c8335a1d", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thowe", + "reviewDate": "2022-03-03T17:23:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d1d62649-fa3f-4d11-9850-c0a11d61f4d9", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "farleysharon", + "reviewDate": "2022-07-07T18:23:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "787faabd-11ac-4175-ab2e-7331c2afe845", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyhughes", + "reviewDate": "2021-02-04T06:58:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "productId": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "category": "Other", + "docType": "product", + "name": "Premium Filter Pro (Red)", + "description": "This Premium Filter Pro (Red) is a brilliant look that can provide the perfect balance between black and white when viewing the final image. The look can be quite pleasing during the day with the filter providing plenty of coverage for a great look when in the rain and wind. The filter is used in conjunction with Premium Auto Filter Pro (Purple)", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-08-22T00:17:22", + "price": 442.37, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2021-02-01T17:27:01", + "newPrice": 422.76 + }, + { + "priceDate": "2022-01-25T17:27:01", + "newPrice": 466.97 + }, + { + "priceDate": "2023-11-12T17:27:01", + "newPrice": 442.37 + } + ] + }, + { + "id": "1f2203e6-2514-4b30-8da7-a8f9638d9174", + "productId": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "category": "Other", + "docType": "customerRating", + "userName": "mooredarren", + "reviewDate": "2021-02-01T17:27:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3bb4fe91-359c-4ffa-89e4-172ff4a9b53d", + "productId": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "category": "Other", + "docType": "customerRating", + "userName": "jessica38", + "reviewDate": "2022-01-26T10:48:40", + "stars": 4, + "verifiedUser": true + }, + { + "id": "64b46ee1-bb89-4b19-806d-1e81e363e504", + "productId": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "category": "Other", + "docType": "customerRating", + "userName": "laura81", + "reviewDate": "2021-04-01T23:51:05", + "stars": 5, + "verifiedUser": true + }, + { + "id": "fbd5273c-2974-44aa-837e-446c3d871267", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Super (Red)", + "description": "This Amazing Mouse Super (Red) is a 3D printed robot! The device is only made of acrylic.\n\nAs long as I can obtain my first order from Shapeways, you can keep track of", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-01-18T23:13:26", + "price": 498.49, + "stock": 43, + "priceHistory": [ + { + "priceDate": "2021-01-06T06:12:25", + "newPrice": 475.71 + }, + { + "priceDate": "2022-05-10T06:12:25", + "newPrice": 498.49 + } + ] + }, + { + "id": "6dfc70b7-b240-4851-8a85-cef5ba96973d", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hannah02", + "reviewDate": "2022-08-18T11:25:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1c6f7aa5-5e06-4109-9937-2b36e485f09e", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wilsonjudith", + "reviewDate": "2022-12-10T11:21:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e7ea9b62-ac4e-46f6-beb1-8e2d08c72dbb", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "darrellcrawford", + "reviewDate": "2022-08-23T04:15:16", + "stars": 5, + "verifiedUser": true + }, + { + "id": "28855afe-d8b7-45be-8099-7e0073cb772a", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ginaraymond", + "reviewDate": "2022-01-14T09:30:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2b9598de-ba7a-4868-806a-29e02114e80a", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "silvajulie", + "reviewDate": "2022-07-03T18:41:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d00285e9-79eb-4aeb-83b2-3b566f0f71cd", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davisashley", + "reviewDate": "2022-03-10T05:12:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0cb7f39f-3e6d-45bc-bd3a-9e7c6147bded", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "freid", + "reviewDate": "2021-12-28T22:31:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "922cc497-a907-4480-a7a5-e20da650141d", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pamela75", + "reviewDate": "2021-08-07T14:59:35", + "stars": 5, + "verifiedUser": false + }, + { + "id": "be5cfe79-62d1-4f57-8920-f93419d826a3", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maryprice", + "reviewDate": "2022-10-25T04:51:59", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d52b42bb-6b72-441e-8b01-e1b367c2a1c8", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sallen", + "reviewDate": "2022-05-12T09:16:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "909378bf-cc7f-4ddc-8b3e-aecc0947abe1", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hrobinson", + "reviewDate": "2022-04-27T10:18:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0ae9a11e-dc81-4043-bb0d-3bfcf9c99469", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas30", + "reviewDate": "2021-05-14T13:00:55", + "stars": 5, + "verifiedUser": false + }, + { + "id": "1bc61fd4-6227-42c0-95a8-ac9e47d8bc2f", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hollygomez", + "reviewDate": "2022-10-13T03:08:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "93fb8470-e13e-430c-a3e1-bd1fb807ef90", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tdunlap", + "reviewDate": "2021-01-06T06:12:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "43bfdb32-fa99-41ca-92f7-6c0ef5f10637", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erose", + "reviewDate": "2022-01-31T00:44:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "2c303b4f-063e-4218-a99c-9b00d002bf28", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "courtney59", + "reviewDate": "2021-10-05T08:30:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "af08b9af-5772-4630-b282-85b991731609", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thompsonpatrick", + "reviewDate": "2022-01-16T08:58:32", + "stars": 5, + "verifiedUser": true + }, + { + "id": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "productId": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Mini (Red)", + "description": "This Awesome Speaker Mini (Red) is so very nice looking I can't go wrong!\n\n\nIf you like what you see, please hit a share button below and let us know what you think.\n\n\nAlso, a big thanks to all the wonderful people who came out to give it a try.\n\n\nThank you so much for making it possible for me to try this new product. You can read more about the process and the specs", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-10-02T01:07:21", + "price": 541.9, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-12-24T00:40:38", + "newPrice": 551.59 + }, + { + "priceDate": "2022-02-04T00:40:38", + "newPrice": 552.55 + }, + { + "priceDate": "2022-03-18T00:40:38", + "newPrice": 520.22 + }, + { + "priceDate": "2022-04-29T00:40:38", + "newPrice": 488.75 + }, + { + "priceDate": "2022-06-10T00:40:38", + "newPrice": 534.29 + }, + { + "priceDate": "2024-11-26T00:40:38", + "newPrice": 541.9 + } + ] + }, + { + "id": "da708450-7cdf-4590-b1a5-da8c02eb9e02", + "productId": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "category": "Media", + "docType": "customerRating", + "userName": "hensondestiny", + "reviewDate": "2022-04-24T19:33:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1c7c5805-88b4-44c0-b6f3-71ba258556d5", + "productId": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "category": "Media", + "docType": "customerRating", + "userName": "carrilloanthony", + "reviewDate": "2021-12-24T00:40:38", + "stars": 5, + "verifiedUser": false + }, + { + "id": "a2f5c535-871a-404b-ab9b-ea015769a4b3", + "productId": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "category": "Media", + "docType": "customerRating", + "userName": "jeremy72", + "reviewDate": "2022-06-10T20:18:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Silver)", + "description": "This Premium Keyboard Mini (Silver) is equipped only with a special mechanical keypad built into the keyboard case. Compared to two keycaps with its similar construction we are able to easily match or even exceed its original function without compromising the key's unique shape. Each MX Pro Keyboard Mini will be compatible with any of the MX models, all of which were designed to provide gamers with a complete, all-encompassing keyboard experience without compromising on features like brightness", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-10-25T11:28:12", + "price": 428.64, + "stock": 66, + "priceHistory": [ + { + "priceDate": "2021-01-05T14:30:08", + "newPrice": 408.43 + }, + { + "priceDate": "2021-12-01T14:30:08", + "newPrice": 431.4 + }, + { + "priceDate": "2022-10-27T14:30:08", + "newPrice": 415.02 + }, + { + "priceDate": "2024-08-07T14:30:08", + "newPrice": 428.64 + } + ] + }, + { + "id": "a662f40b-b7a6-440a-a4a6-8b9f68cb31e0", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "padillaamanda", + "reviewDate": "2021-12-21T11:44:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3719c624-8187-4a7c-910d-414344d9b958", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher79", + "reviewDate": "2022-08-15T06:51:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "365e06e5-ea64-4c2d-9de8-6b22a0a49da1", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberlybuck", + "reviewDate": "2021-03-08T21:42:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6b8baa9b-6aca-4b14-a7f3-5e6d9f35b80d", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "umiller", + "reviewDate": "2021-09-04T09:23:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f50cda7d-42bd-4815-b09c-598196313f29", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wfitzgerald", + "reviewDate": "2022-08-03T08:41:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "535eefca-e644-42fa-9b5d-b8b1af6f7096", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alexis86", + "reviewDate": "2022-10-28T21:35:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b0c4a567-67e5-4567-b96e-7689830ede38", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "delgadoderek", + "reviewDate": "2022-05-29T14:04:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3530120d-4860-4d90-b87c-62964eecd32d", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "abrown", + "reviewDate": "2021-08-06T14:48:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d0cfd699-2261-44d5-bf0d-f66c193cc976", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paula77", + "reviewDate": "2022-01-28T02:04:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b9ef221c-5408-4591-a2a9-153a4090691f", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "woodmelissa", + "reviewDate": "2022-09-13T15:38:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "361d5d0a-51f5-460f-bcc5-8483c038e3ce", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joseph74", + "reviewDate": "2022-05-22T22:37:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f7c35e6e-bf04-4b9a-98c5-14714c11341f", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reginaware", + "reviewDate": "2021-04-12T09:11:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6ed1c478-c053-499a-b511-85223645fe23", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenniferbrown", + "reviewDate": "2021-05-15T05:10:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "851215ce-8062-4894-b1e4-cf4e50cefdb3", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "caldwellbilly", + "reviewDate": "2022-04-06T20:05:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0943425d-252a-4d69-8d6f-c12970aba742", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "elizabeth76", + "reviewDate": "2022-07-06T21:41:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "97e6482e-5f69-4228-930a-40bf7d39ecb6", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bakermary", + "reviewDate": "2021-01-05T14:30:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0884cba5-9f86-4f9c-86ec-eec4e75c68a2", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jwelch", + "reviewDate": "2022-09-10T19:22:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "product", + "name": "Amazing TV + (Steel)", + "description": "This Amazing TV + (Steel) is really nice and simple! I've been on it for about 4 years and haven't heard it play with my old box or anything so… I had to make a post to get it back. I have it in the front of my room ready for you to play, but I found it to be a real pain to move as I used it all over the place. There", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-07-02T11:51:13", + "price": 1081.15, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-05-18T04:30:48", + "newPrice": 1022.49 + }, + { + "priceDate": "2022-02-14T04:30:48", + "newPrice": 1029.87 + }, + { + "priceDate": "2022-11-13T04:30:48", + "newPrice": 1175.07 + }, + { + "priceDate": "2023-08-13T04:30:48", + "newPrice": 1081.15 + } + ] + }, + { + "id": "0d286d8d-c259-41a2-9adb-b86fabb66d43", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "tracy87", + "reviewDate": "2021-06-25T19:16:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "76f1389a-bb6c-4298-b6ad-8c1acff1b576", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "xpugh", + "reviewDate": "2022-03-07T04:45:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1d4da595-df11-4a28-a47d-07bf737688a7", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "robertjones", + "reviewDate": "2021-07-07T15:33:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "09d522e8-437c-4ea2-ac80-bba0ec408f26", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "matthew52", + "reviewDate": "2022-06-13T11:21:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6bc7cc07-6bda-4540-b97b-58aa40064d37", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "vanessastein", + "reviewDate": "2021-06-29T12:31:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a990349f-a785-40d4-999e-d44521d5e270", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "jasmin59", + "reviewDate": "2022-08-11T14:35:19", + "stars": 4, + "verifiedUser": true + }, + { + "id": "510c45ab-8b06-4c0b-b04c-8fae8b803e4f", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "bradleychang", + "reviewDate": "2022-09-04T02:59:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b9b6fecf-5c91-4a60-939e-d37f8021501d", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "ohicks", + "reviewDate": "2022-11-14T15:09:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0e042218-c1e4-4dce-bb05-c798b6b69c1f", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "albert50", + "reviewDate": "2021-05-18T04:30:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Super (Black)", + "description": "This Amazing Speaker Super (Black) is a speaker at a very high quality. It has a nice, clear sound with no harshness in the high range of frequencies, though the speaker has a slight low end on it that is noticeable at times, but it's very smooth and is not sagged at all. The black speaker has a natural looking silver/gold finish with many colors", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-05-23T10:28:17", + "price": 394.8, + "stock": 4, + "priceHistory": [ + { + "priceDate": "2021-01-01T16:27:58", + "newPrice": 417.77 + }, + { + "priceDate": "2021-08-14T16:27:58", + "newPrice": 381.04 + }, + { + "priceDate": "2022-03-27T16:27:58", + "newPrice": 399.54 + }, + { + "priceDate": "2022-11-07T16:27:58", + "newPrice": 371.07 + }, + { + "priceDate": "2025-02-04T16:27:58", + "newPrice": 394.8 + } + ] + }, + { + "id": "f7c61e03-a4b0-4955-a2c3-a59e49e1d719", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "nelsonkaren", + "reviewDate": "2022-02-27T22:07:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ebce7f0f-d26d-4697-8c59-deaf0481a468", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "vrobertson", + "reviewDate": "2021-01-01T16:27:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "58406ddf-9694-4e81-9821-2cb1558510d9", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "matthew36", + "reviewDate": "2022-11-08T04:50:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5abfc5f7-7141-4bc8-a53b-7099fbd2909b", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "jonesmichaela", + "reviewDate": "2021-10-06T23:57:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6163cddd-16cc-4b75-bdb4-db3827dc51c6", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "imartinez", + "reviewDate": "2022-03-07T20:27:49", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a4b23f6a-ad15-4c56-a483-7899f4d9d725", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "odurham", + "reviewDate": "2022-08-09T20:07:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "34eae434-7b3d-4c8f-9013-7948666b9031", + "productId": "34eae434-7b3d-4c8f-9013-7948666b9031", + "category": "Other", + "docType": "product", + "name": "Basic Filter Pro (Red)", + "description": "This Basic Filter Pro (Red) is a way to create a multi-layer filter or similar on the same object. When the filter is enabled the Red window's Red light comes on even though it is not in the background. The other way is from the \"Display On\" menu. The window will automatically detect if the filter looks right like the filter selected from", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-07-26T17:37:09", + "price": 156.11, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-07-01T08:23:29", + "newPrice": 154.18 + }, + { + "priceDate": "2021-08-31T08:23:29", + "newPrice": 149.37 + }, + { + "priceDate": "2021-10-31T08:23:29", + "newPrice": 155.23 + }, + { + "priceDate": "2023-05-14T08:23:29", + "newPrice": 156.11 + } + ] + }, + { + "id": "af3bb21f-61d3-4f30-8c3f-ae283f9ad91e", + "productId": "34eae434-7b3d-4c8f-9013-7948666b9031", + "category": "Other", + "docType": "customerRating", + "userName": "harrissamantha", + "reviewDate": "2021-07-01T08:23:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "96975bfb-ae2a-41c5-9198-563a67da734f", + "productId": "34eae434-7b3d-4c8f-9013-7948666b9031", + "category": "Other", + "docType": "customerRating", + "userName": "oelliott", + "reviewDate": "2021-11-01T07:45:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Micro (Red)", + "description": "This Basic Speaker Micro (Red) is powered by a 50mm lithium ion battery and includes:\n\n• LED flash indicators, the \"C\" logo, and the \"F\" icon on the speaker;\n\n• USB-C power source (sold separately);\n\n• An external battery pack (sold separately); and (optional) a battery", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-02-23T19:49:26", + "price": 538.26, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-05-28T12:55:58", + "newPrice": 544.36 + }, + { + "priceDate": "2022-02-05T12:55:58", + "newPrice": 572.42 + }, + { + "priceDate": "2022-10-16T12:55:58", + "newPrice": 558.67 + }, + { + "priceDate": "2025-02-12T12:55:58", + "newPrice": 538.26 + } + ] + }, + { + "id": "5648900b-ab54-4ed6-99e6-da8878ae95ad", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "customerRating", + "userName": "burgessamy", + "reviewDate": "2022-10-18T11:45:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "59c1ceb8-64e6-4077-91e8-ae24e6cb9611", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "customerRating", + "userName": "haroldabbott", + "reviewDate": "2021-11-20T04:39:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5ea83052-6657-4160-87f5-30ee78a6aeac", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "customerRating", + "userName": "jwalker", + "reviewDate": "2022-07-10T16:18:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6f2421d9-d585-47b9-bbac-c7589e4301ac", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "customerRating", + "userName": "tammycollins", + "reviewDate": "2021-05-28T12:55:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse + (Silver)", + "description": "This Premium Mouse + (Silver) is available for $12.00.\n\nAll in all this is a very nice mouse that works well especially when you have the support software for Apple Mac OS (El Capitan) up on your PC. This mouse performs well and does not lag on the mouse pad too", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-02-03T10:29:16", + "price": 777.67, + "stock": 33, + "priceHistory": [ + { + "priceDate": "2021-01-06T19:25:27", + "newPrice": 721.72 + }, + { + "priceDate": "2025-05-20T19:25:27", + "newPrice": 777.67 + } + ] + }, + { + "id": "b314bfe1-2dd9-46be-bef5-d4dbe231096a", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hartnatalie", + "reviewDate": "2022-04-03T20:10:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9666b227-d3d3-4f34-abe8-b9a83f8a3ad9", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "moorejoseph", + "reviewDate": "2022-10-26T07:08:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "80d0a086-11ea-49e5-aa99-c088ec8a98bf", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melindarobinson", + "reviewDate": "2021-03-07T01:34:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c4b2f714-6f5c-4f8b-8d23-e6a97b113efc", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ewinggeorge", + "reviewDate": "2021-08-23T04:26:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b70bc5fe-00aa-4427-982e-6dcfae41cdb5", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "browndonald", + "reviewDate": "2022-11-29T00:24:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "09417587-6e14-45a1-8b1d-1e8596c87662", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "schaeferbarbara", + "reviewDate": "2022-09-11T09:10:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d35c19da-5ecb-404b-b61e-ad68247dcd81", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyramirez", + "reviewDate": "2022-11-17T20:24:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9ec91f18-1201-404c-980d-dc20b7ece125", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsvanessa", + "reviewDate": "2022-09-04T07:29:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ee68e8c6-4249-4055-809f-ed10b4355f9e", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kellerdaniel", + "reviewDate": "2022-07-09T22:24:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "46314cc2-1882-4e6c-b89d-78f27bc511fa", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eadams", + "reviewDate": "2022-07-11T08:29:25", + "stars": 4, + "verifiedUser": true + }, + { + "id": "458ea913-ef4c-4822-b41f-84b780ca3c28", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perezlynn", + "reviewDate": "2022-10-22T08:54:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bfc3efee-0ff3-4ab2-98b9-bdda60a8f7fb", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melanie41", + "reviewDate": "2021-03-05T22:15:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5da40077-8c41-4e77-967a-c50651a5cd6e", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cameron77", + "reviewDate": "2021-11-17T19:13:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d2750c76-1f7b-43f6-8922-ad90bc9e2c6c", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicadavis", + "reviewDate": "2021-12-10T18:58:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "746768ae-0900-4eef-a838-3c379c511417", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "veronica98", + "reviewDate": "2022-03-23T00:16:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ef5c265f-b1d3-4a1a-addd-d224ec8b0631", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stanley51", + "reviewDate": "2022-05-19T17:07:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e822adbd-9512-45f5-853f-6e1da3916649", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "twagner", + "reviewDate": "2021-01-06T19:25:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "80249715-1ac0-4f34-95dc-0510a723b608", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "antonio50", + "reviewDate": "2021-07-12T11:51:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "88aa5097-dc42-4691-bee4-094638195704", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laneannette", + "reviewDate": "2021-12-09T21:24:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "07628735-75c3-4d05-90df-b9d5a0bb34d4", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeffery10", + "reviewDate": "2022-10-04T12:47:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "43a793fe-0453-4a21-826e-601084c2bcbb", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "product", + "name": "Premium TV + (Silver)", + "description": "This Premium TV + (Silver) is not available in France, Spain, Germany, UK, France, France Direct, and United Kingdom/Ireland. In the United Kingdom, there is a Premium TV package with unlimited live streams, free to the public, and unlimited cable channels. This premium TV is primarily from the BBC Worldwide TV division, and it is", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-12-07T10:17:17", + "price": 684.38, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-01-12T07:22:31", + "newPrice": 721.33 + }, + { + "priceDate": "2022-12-21T07:22:31", + "newPrice": 694.57 + }, + { + "priceDate": "2023-10-05T07:22:31", + "newPrice": 684.38 + } + ] + }, + { + "id": "58c77873-bb06-46ce-926c-3339591f2e7b", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "sarahperkins", + "reviewDate": "2022-11-28T08:02:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "13ad34f3-d94a-4b94-bfd8-a0f36a7ebe80", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "dcox", + "reviewDate": "2022-10-08T23:25:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a77066e1-7be0-44a8-930d-c8c3d0c5e25a", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "ivanabbott", + "reviewDate": "2021-08-08T23:30:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4ac7bc86-6920-497a-955c-3a1bfe173645", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "vconner", + "reviewDate": "2021-10-14T20:47:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5f80e460-4b58-45e3-ad3b-3d4fb0156e86", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "curryjulie", + "reviewDate": "2021-03-10T17:28:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0c89afe9-8f24-4988-820b-16fb2dde4c32", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "daltonchristina", + "reviewDate": "2022-02-24T01:14:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9fb3d25f-ca73-44e4-a7c6-516588d89630", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "franklin12", + "reviewDate": "2022-07-26T16:41:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6f11b0ec-a623-4344-9edc-8a4820e18424", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "joel85", + "reviewDate": "2021-01-12T07:22:31", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3445b8b5-9ca5-4a5e-8b40-427bc76307bf", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "yangamanda", + "reviewDate": "2021-04-18T13:00:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6bc37a7a-f462-4d8d-97b8-5c6351af04f2", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "kristinorton", + "reviewDate": "2021-12-12T01:28:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4956761b-8814-415e-88d1-8b5d27b08a80", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "lovejohn", + "reviewDate": "2022-12-21T07:37:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Pro (Silver)", + "description": "This Amazing Mouse Pro (Silver) is a new creation – a premium brand in the realm of gaming PCs. The design is simple, classy and the price is high. With our signature red mouse we have a clean look looking design, with black and white finishes. At top we have the ability to adjust with just 1 click. It feels light and light. Great price for the money, it's available NOW on:\n\n", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-07-01T23:24:56", + "price": 977.64, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-03-28T13:06:01", + "newPrice": 966.68 + }, + { + "priceDate": "2025-03-13T13:06:01", + "newPrice": 977.64 + } + ] + }, + { + "id": "4e9a7c82-ba33-4fce-9831-baddaa6b262e", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "achambers", + "reviewDate": "2022-05-17T15:06:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7763c256-f6f1-486d-a42f-0c4d159bceb5", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mistynunez", + "reviewDate": "2021-03-28T13:06:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f8a74288-b452-4fbf-99f2-035971945fa5", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelashelton", + "reviewDate": "2022-03-20T03:01:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ce0d064e-5748-4bf8-b386-09a01ca3482d", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "monicajones", + "reviewDate": "2022-09-23T01:19:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bd3c5fa3-599c-40a8-84a2-5dc6a1a32aef", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "levans", + "reviewDate": "2022-11-03T16:21:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "78a9219b-d29d-4be3-a5c6-a016fd137bce", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cooperangela", + "reviewDate": "2021-09-04T13:54:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7106056b-592e-4437-a5c2-fd24384ea009", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Super (Black)", + "description": "This Premium Mouse Super (Black) is built with a 1/6 scale high density plastic for excellent compatibility with your gaming mouse. The low profile rubber construction is highly corrosion resistant and your mouse will last 2.5 years of durability.\n\n\nThe 100% Polyester Lapt", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-04-05T03:24:16", + "price": 515.13, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-02-18T18:35:21", + "newPrice": 500.69 + }, + { + "priceDate": "2021-07-19T18:35:21", + "newPrice": 489.92 + }, + { + "priceDate": "2021-12-17T18:35:21", + "newPrice": 475.16 + }, + { + "priceDate": "2022-05-17T18:35:21", + "newPrice": 510.7 + }, + { + "priceDate": "2022-10-15T18:35:21", + "newPrice": 464.36 + }, + { + "priceDate": "2024-07-12T18:35:21", + "newPrice": 515.13 + } + ] + }, + { + "id": "6c5f4b95-c7cb-441b-9038-4c24a70d5345", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ehill", + "reviewDate": "2021-11-19T08:47:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e4f2dd42-4719-4de4-ac45-bbe991aa6cec", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "holly54", + "reviewDate": "2021-02-19T21:27:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1f7890d5-1837-4407-b47c-472518fbf888", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dylan40", + "reviewDate": "2021-11-14T21:56:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bd96602b-bcb6-4680-82dd-44308fd6e7f4", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ftaylor", + "reviewDate": "2021-03-07T18:49:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c76652da-7695-4759-abf3-d808bf3ef74b", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wrightjames", + "reviewDate": "2022-04-19T23:27:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c66482ac-084a-4e71-bf5b-1fb77b77a7c4", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qwood", + "reviewDate": "2022-03-28T17:18:12", + "stars": 4, + "verifiedUser": true + }, + { + "id": "76fce18a-c866-4405-aa0e-44fd4cc83979", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hroberts", + "reviewDate": "2021-04-06T21:19:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0bb5a74d-ac0a-42b9-a122-4b159e700223", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel17", + "reviewDate": "2021-02-18T18:35:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6dd8386a-dd9e-4162-960f-0a2defcb7d03", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "herreragregory", + "reviewDate": "2021-07-15T13:03:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f593ffb1-3311-4ed5-97a6-89aecef73123", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marcocastro", + "reviewDate": "2021-04-29T00:54:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a348e140-4810-44ee-944d-e5d7ac96f369", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ellischristopher", + "reviewDate": "2022-10-16T01:59:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "39104edf-9037-4ce3-930f-9a50bbb1289b", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yjennings", + "reviewDate": "2022-04-13T21:18:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6b276ce8-c511-47d7-a15a-f9eadd5ca0f6", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephengregory", + "reviewDate": "2021-08-19T10:05:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "productId": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Micro (Gold)", + "description": "This Basic Mouse Micro (Gold) is a microcontroller with a single button that enables control of more than one movement and a large (2.3 inches) area of the mouse.\n\nThe mouse lever is attached wirelessly using a power cable and is powered by a microcontroller. This control unit operates as an analog control with the mouse and mouse lever as a keyboard or touch pad.\n\n\nTo use", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-05-24T06:04:55", + "price": 923.25, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-11-08T07:29:36", + "newPrice": 1009.17 + }, + { + "priceDate": "2021-12-15T07:29:36", + "newPrice": 967.93 + }, + { + "priceDate": "2022-01-21T07:29:36", + "newPrice": 980.55 + }, + { + "priceDate": "2022-02-27T07:29:36", + "newPrice": 864.46 + }, + { + "priceDate": "2022-04-05T07:29:36", + "newPrice": 993.25 + }, + { + "priceDate": "2023-04-16T07:29:36", + "newPrice": 923.25 + } + ] + }, + { + "id": "30e2e3d3-1929-48c2-88b9-4fb6153c3f2d", + "productId": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lopezaustin", + "reviewDate": "2022-04-05T14:19:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9438bd2a-fa3f-4131-ba50-9a5e74e8f26b", + "productId": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nathaniel26", + "reviewDate": "2021-11-08T07:29:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6afd6a77-0446-4389-81d2-e57a4a5d036c", + "productId": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frankhawkins", + "reviewDate": "2021-11-24T09:55:27", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Pro (Red)", + "description": "This Basic Mouse Pro (Red) is similar to a similar (and slightly lighter weight/height) Pro Mouse Plus, but has a bit different functions. The core is very similar to this one, except it comes with a larger power consumption that makes this mouse much more powerful. It can produce up to 80 dB of audio at max output, with around 10 percent less distortion. In addition, it comes with a separate speaker for better sound quality.", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-10-01T16:39:59", + "price": 431.58, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-31T04:57:46", + "newPrice": 467.28 + }, + { + "priceDate": "2022-12-29T04:57:46", + "newPrice": 392.44 + }, + { + "priceDate": "2023-04-22T04:57:46", + "newPrice": 431.58 + } + ] + }, + { + "id": "5cf8ae36-8819-43c0-b50f-f4e661fb045d", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "myersjoy", + "reviewDate": "2022-06-10T05:44:55", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4fb3099e-5dd2-45f6-83f2-fee839cc95e3", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsamy", + "reviewDate": "2022-03-25T01:48:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cd2fc96f-9534-4b1a-897e-b23e824bf716", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "usawyer", + "reviewDate": "2021-07-24T13:24:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fd09434f-fa5e-4c37-8a78-1d917bf28687", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ghaley", + "reviewDate": "2022-11-24T01:09:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ccc7edeb-66ea-4775-afe4-e063d55f951c", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyjohnson", + "reviewDate": "2021-10-21T17:56:38", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b844bd02-6bb4-41b4-bd3a-919d40fa4f12", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dwheeler", + "reviewDate": "2021-12-23T08:36:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "758eb218-643f-4c29-8c8f-d801ff38c8a9", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "adamalexander", + "reviewDate": "2022-08-29T07:41:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7b6a5a7f-7762-4968-8cfc-0989724590ca", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tinareed", + "reviewDate": "2021-03-29T15:28:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ee5bdf33-077f-4416-ae52-010e65246cfd", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacob10", + "reviewDate": "2022-05-24T11:15:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fa64487c-b81c-42a6-9215-a3ce3325a6a3", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kellyfoster", + "reviewDate": "2021-09-03T09:34:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4e649008-7f4d-4b3d-9873-8a1e8f9a143c", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evelazquez", + "reviewDate": "2022-12-29T06:47:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "93b9ac4d-bd6a-4641-af69-3a66e7f5578f", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cynthia73", + "reviewDate": "2021-01-31T04:57:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Micro (Red)", + "description": "This Luxe Mouse Micro (Red) is $129.99 with pre-installed firmware, and comes with a 2-year warranty. In addition, the Mouse micro is available on a limited quantity of 7,000 units.\n\nThe Mouse features an 11.4", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-08-15T09:00:13", + "price": 577.79, + "stock": 17, + "priceHistory": [ + { + "priceDate": "2021-01-20T08:57:24", + "newPrice": 535.01 + }, + { + "priceDate": "2021-06-28T08:57:24", + "newPrice": 628.9 + }, + { + "priceDate": "2021-12-04T08:57:24", + "newPrice": 546.08 + }, + { + "priceDate": "2022-05-12T08:57:24", + "newPrice": 529.51 + }, + { + "priceDate": "2022-10-18T08:57:24", + "newPrice": 530.96 + }, + { + "priceDate": "2023-02-22T08:57:24", + "newPrice": 577.79 + } + ] + }, + { + "id": "c4b695cd-f16e-401d-a41a-b49496b28bd1", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel61", + "reviewDate": "2021-01-23T16:56:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d681bccd-e661-4192-b018-898ee67bf543", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nhansen", + "reviewDate": "2021-11-08T14:04:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5bc5a70a-02cc-48f0-93dd-a0c47735897c", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacobfowler", + "reviewDate": "2022-09-17T05:16:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6b1490fa-8cc2-4283-801b-ffacbfccf3c1", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aball", + "reviewDate": "2022-10-18T19:03:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "671570a9-d6f6-4ca5-a1b3-d84f95b1422f", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hsims", + "reviewDate": "2021-03-28T23:47:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a89f2835-08fd-4b01-92b6-4efe70389203", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brittany76", + "reviewDate": "2021-09-15T23:50:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "adb824da-81f4-47b2-a8bf-34686f6b8a2d", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pfrazier", + "reviewDate": "2021-09-12T07:39:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7a10d04f-528e-478a-b1b3-8d5b2357f2da", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "benjaminfigueroa", + "reviewDate": "2021-11-03T17:50:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7e18ead1-a272-4039-83d5-1490c062c252", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "blevinsmadeline", + "reviewDate": "2021-01-20T08:57:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "630ab23a-cf6f-4abe-b1fc-1b3a18e37e5a", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnbecker", + "reviewDate": "2022-05-02T17:42:36", + "stars": 3, + "verifiedUser": true + }, + { + "id": "17d5b009-3791-44a9-936a-c8a4b5e31e1a", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ralphnelson", + "reviewDate": "2021-03-26T23:05:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c6da8f9e-8377-4ac3-a704-88da6b258d41", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bennettstacey", + "reviewDate": "2022-09-10T22:24:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "product", + "name": "Amazing TV Pro (Silver)", + "description": "This Amazing TV Pro (Silver) is a huge success. It has an almost limitless range of styles ranging from solid, matte, matte white to a full black with an orange tint. The silver is so versatile, it will keep any TV that is in need of replacing from the fridge. This one", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-04-02T15:09:48", + "price": 734.63, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-07-23T21:53:48", + "newPrice": 662.89 + }, + { + "priceDate": "2022-03-01T21:53:48", + "newPrice": 731.81 + }, + { + "priceDate": "2022-10-08T21:53:48", + "newPrice": 787.18 + }, + { + "priceDate": "2024-12-31T21:53:48", + "newPrice": 734.63 + } + ] + }, + { + "id": "15068f6b-fc95-4e24-8caa-ac492011617f", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "alvaradosean", + "reviewDate": "2021-07-23T21:53:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0b6bef57-98b9-446d-8913-1ee19233aa85", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "paulaferguson", + "reviewDate": "2021-10-20T09:16:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "71d42986-5813-42ee-8fd0-b96da64a492d", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "kennethmcdonald", + "reviewDate": "2021-10-15T20:11:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "262752b4-1e0a-4cec-bd29-851e0cf4b00f", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "murraypatricia", + "reviewDate": "2021-08-10T09:50:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6ee8a090-0451-43c1-abae-d2fba06179b1", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "samantha81", + "reviewDate": "2022-04-09T17:06:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "63ef6ad5-d861-4d20-a6d2-03626112bd9e", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "zacharycruz", + "reviewDate": "2022-10-10T08:43:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Super (Red)", + "description": "This Premium Stand Super (Red) is a Super Durable, Super Stainless Steel, Multi Purpose Stainless Steel with Black Aluminum Overhead Top Screw. This Premium Stand is very solid and has a well kept, clear surface.", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-06-26T17:57:55", + "price": 768.01, + "stock": 98, + "priceHistory": [ + { + "priceDate": "2021-01-16T19:28:52", + "newPrice": 700.9 + }, + { + "priceDate": "2021-12-26T19:28:52", + "newPrice": 747.34 + }, + { + "priceDate": "2022-12-05T19:28:52", + "newPrice": 789.87 + }, + { + "priceDate": "2024-10-14T19:28:52", + "newPrice": 768.01 + } + ] + }, + { + "id": "ec2cc1ab-c016-474b-b92e-78a2d803cc46", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael57", + "reviewDate": "2021-10-18T05:28:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d7746261-4062-4423-9f5c-48d2bd762cbf", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jill73", + "reviewDate": "2022-09-19T11:11:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b8eec20d-0395-42d0-be40-3065277f5297", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "ashleynorton", + "reviewDate": "2021-11-26T06:58:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5fc0050f-cac2-4436-aaaa-add8a9071b35", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "bennetterin", + "reviewDate": "2022-08-25T15:24:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7dc3eb87-beb6-4825-8c07-48841da09d00", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthew05", + "reviewDate": "2021-07-01T08:04:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "28b4021e-096b-49d3-aee1-60863bb0d1ba", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "zhenry", + "reviewDate": "2021-07-15T15:59:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "267a127b-760d-4379-b1c7-74a3b2ac6140", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "xblack", + "reviewDate": "2021-11-26T01:18:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "887b79aa-4151-418c-bc68-64b400b15c76", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "laurajohnson", + "reviewDate": "2022-05-16T21:48:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c1ec642a-9c88-4e13-b2e0-88d2df4b0602", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicolegill", + "reviewDate": "2022-01-18T09:24:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "72f4e691-7992-41e9-8e2a-21b4d7d8701b", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jimenezandrew", + "reviewDate": "2022-09-08T12:18:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "621d6ba1-14b5-4957-9091-2419c62f6e96", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "oharris", + "reviewDate": "2021-01-16T19:28:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a079465d-e0d6-45f6-938f-99e6e716096b", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "leon92", + "reviewDate": "2022-03-20T10:42:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1158deb0-8eed-4178-b791-a397e95a2104", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "rhodesstephen", + "reviewDate": "2022-12-06T14:00:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "17f84517-61e8-4615-8982-fc0097ac753a", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "tanyalowe", + "reviewDate": "2022-11-18T09:18:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c3173631-81ab-4d92-8060-f33b3c887d2c", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "amyyang", + "reviewDate": "2022-05-01T13:29:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4ce3b777-a900-4498-a40e-00392f06580a", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacob07", + "reviewDate": "2022-05-07T12:33:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9a0e4da4-6a4b-4b86-9c19-562b5370f9e1", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "danielsamuel", + "reviewDate": "2022-07-02T22:25:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98671e10-38e0-409a-9282-f333c34eaed9", + "productId": "98671e10-38e0-409a-9282-f333c34eaed9", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Steel)", + "description": "This Premium Keyboard Mini (Steel) is one of many products sold by the brand which you may find below or here at the top of the item (for the price). If you are happy with the quality of the product and you wish to switch to Steel then please click the button below: Choose Free Shipping From our Manufacturer We can accept orders up to a $100 or higher.\n\nThe above products will be sent to you FREE for FREE upon", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-02-23T06:13:10", + "price": 1072.01, + "stock": 60, + "priceHistory": [ + { + "priceDate": "2021-06-11T10:44:37", + "newPrice": 1119.51 + }, + { + "priceDate": "2022-04-25T10:44:37", + "newPrice": 1029.13 + }, + { + "priceDate": "2025-06-26T10:44:37", + "newPrice": 1072.01 + } + ] + }, + { + "id": "7dc78b77-38e4-4542-a9b2-e026afbaeca5", + "productId": "98671e10-38e0-409a-9282-f333c34eaed9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jimmy15", + "reviewDate": "2021-06-11T10:44:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "db0b76f5-8a68-488a-b0e6-ff20fe42bc33", + "productId": "98671e10-38e0-409a-9282-f333c34eaed9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "usantos", + "reviewDate": "2022-04-25T15:43:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "product", + "name": "Premium TV Ultra (Gold)", + "description": "This Premium TV Ultra (Gold) is just £70.", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-10-01T05:13:05", + "price": 922.44, + "stock": 51, + "priceHistory": [ + { + "priceDate": "2021-02-03T07:58:21", + "newPrice": 949.39 + }, + { + "priceDate": "2022-12-12T07:58:21", + "newPrice": 902.33 + }, + { + "priceDate": "2024-05-21T07:58:21", + "newPrice": 922.44 + } + ] + }, + { + "id": "027e4780-8143-4eb6-9d94-9acb104112bb", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "eric60", + "reviewDate": "2022-09-14T12:59:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b197b7c3-77a9-4582-a3a0-cbfe080eadca", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "dennis79", + "reviewDate": "2021-02-03T07:58:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eb1cf494-5169-402f-ae92-e86ef80d5b8e", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "sanchezkayla", + "reviewDate": "2022-05-01T10:35:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4542cdf0-77c6-455e-9343-9c9dc57c96dd", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "bakeramanda", + "reviewDate": "2021-05-14T14:51:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "192dd5c1-dba5-442c-b476-a14d73d478cf", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "justin77", + "reviewDate": "2022-12-13T03:00:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "91fba009-d4c7-4363-a188-96eafe3d2c20", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "mark90", + "reviewDate": "2021-06-11T11:35:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer Super (Red)", + "description": "This Basic Computer Super (Red) is a 4MB and up 64Bit PC designed, designed for simple, hard wired computer use and compatible with Mac/Linux platforms of the desktop.\n\nThe Red Super is 100% plug and play, fully-configurable, with a 3,600MHz CPU that supports both Windows 7, Windows Vista / Windows 8 systems, Mac/Linux systems, and tablets. The system was tested on a quad-core Intel Core i3 / AMD", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-03-13T10:31:17", + "price": 620.62, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-03-28T22:45:01", + "newPrice": 617.03 + }, + { + "priceDate": "2021-08-10T22:45:01", + "newPrice": 640.53 + }, + { + "priceDate": "2021-12-23T22:45:01", + "newPrice": 595.65 + }, + { + "priceDate": "2022-05-07T22:45:01", + "newPrice": 574.06 + }, + { + "priceDate": "2022-09-19T22:45:01", + "newPrice": 650.77 + }, + { + "priceDate": "2024-10-06T22:45:01", + "newPrice": 620.62 + } + ] + }, + { + "id": "f185b267-c657-4170-9117-67ace453782e", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacquelinesmith", + "reviewDate": "2022-08-28T20:11:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cdfb142a-3117-4626-a2ec-89754f15dd9d", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "plarson", + "reviewDate": "2022-02-22T17:20:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6a5c2710-b880-44da-9980-908535f3eae7", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "alvarezkayla", + "reviewDate": "2021-06-29T22:46:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6174f31d-d804-43c6-9c98-5d0fbdd67673", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "amorris", + "reviewDate": "2022-09-23T11:14:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "865b43eb-fe91-42c8-8cec-0a511d0f2fe8", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "codycunningham", + "reviewDate": "2021-06-27T22:57:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a8091193-da28-4298-bfa6-12f484fd3d39", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtneymay", + "reviewDate": "2022-02-03T02:33:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8619e4e2-9c05-41aa-820d-304abbf99481", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "annamarshall", + "reviewDate": "2021-11-01T22:49:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b3be657b-49cf-4f76-8399-f02c9ede5f1b", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifercopeland", + "reviewDate": "2022-09-16T08:18:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d9109742-385b-40ac-b537-053ada306e7e", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "marie61", + "reviewDate": "2022-08-08T15:16:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0f2df8fa-64be-4733-bd6c-11d1dff99d76", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "nhuber", + "reviewDate": "2021-03-28T22:45:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a65581c1-bdf2-45f6-83a1-3fabd64a7972", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "alisonmoses", + "reviewDate": "2021-05-23T05:30:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "93c6c8b8-b321-4088-996f-03fad25cdb9c", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebeccaharris", + "reviewDate": "2022-07-16T18:08:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b968c965-d047-4771-831c-8b691a44ceb7", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevin53", + "reviewDate": "2021-12-31T06:42:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8916b429-ef4c-4e76-96b3-81a4c433fbf7", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelobrien", + "reviewDate": "2022-05-03T05:24:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Gold)", + "description": "This Awesome Phone Super (Gold) is a brilliant phone that has everything you need to watch online. The screen and sound quality is superb and nothing you'll encounter is better without it! It will go up and down with your smartphone.", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-09-26T14:06:35", + "price": 342.74, + "stock": 29, + "priceHistory": [ + { + "priceDate": "2021-03-22T08:01:06", + "newPrice": 354.09 + }, + { + "priceDate": "2021-10-19T08:01:06", + "newPrice": 315.59 + }, + { + "priceDate": "2022-05-18T08:01:06", + "newPrice": 362.0 + }, + { + "priceDate": "2022-12-15T08:01:06", + "newPrice": 357.03 + }, + { + "priceDate": "2023-10-15T08:01:06", + "newPrice": 342.74 + } + ] + }, + { + "id": "9dbe6888-cc68-4492-ab93-ecb9b2bac697", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "ppacheco", + "reviewDate": "2021-06-30T21:57:55", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1459cf56-e801-4163-9f72-c79089e708f9", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "stevenmelendez", + "reviewDate": "2022-11-11T06:43:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "91b53d1f-66d7-44ba-acbf-a966a3b45aa8", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "barrettsara", + "reviewDate": "2021-10-11T20:07:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2396b1f7-2522-463e-9245-c3d0b094eb5f", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertwilson", + "reviewDate": "2021-03-22T08:01:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "27fc2523-c0eb-440c-9c05-ba5913d28f8b", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "sibarra", + "reviewDate": "2022-10-01T19:36:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f63d3201-e735-4b1a-b5f5-45c44ed0652d", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "bryaneverett", + "reviewDate": "2022-04-17T21:10:33", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e5c0b28c-f160-4bb3-a222-678a5694d615", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "bridgesnicole", + "reviewDate": "2021-11-29T17:49:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7fc33b74-1cad-46e5-b4a1-67313e04d176", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "veronicawilson", + "reviewDate": "2021-09-17T19:34:34", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b4a450ed-2abf-4c27-bf3e-1436f153fd33", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "juliebrewer", + "reviewDate": "2022-05-31T20:36:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c65f7d16-0209-41c7-a21f-69f93b369ba1", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "joshua62", + "reviewDate": "2022-04-15T11:07:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5ef30de4-3e30-40d8-a7a9-6cd090842a6b", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "ikim", + "reviewDate": "2022-08-07T10:21:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "95824f3e-800d-4f59-a97e-56a3b3ce08be", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberly44", + "reviewDate": "2022-08-15T11:59:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a7f31f69-cf77-4545-8f0d-71ce84b65f48", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamesrachel", + "reviewDate": "2022-09-18T22:42:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "049c715c-87b3-41e7-9f66-ccb8f2f4632a", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "gutierrezshelly", + "reviewDate": "2022-01-06T19:00:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7ff745c1-1f64-41db-98a0-bbc3786f7518", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "collinfrancis", + "reviewDate": "2022-12-16T20:54:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "64f51acb-0087-4f64-99b6-f70e7cd4f0e8", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "nguyenjulia", + "reviewDate": "2022-04-30T11:23:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b84c730f-b225-4b87-a7a7-45082b5216e2", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "patriciareynolds", + "reviewDate": "2022-02-08T14:49:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Mini (Black)", + "description": "This Awesome Mouse Mini (Black) is the latest addition in the latest generation of Apple Watch accessories from Apple! An incredible 8-bit mechanical keyboard with a touch sensor to adjust the time and focus on this smart mouse. With built-in Bluetooth to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-11-16T21:47:49", + "price": 868.61, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2021-01-31T08:28:19", + "newPrice": 894.37 + }, + { + "priceDate": "2021-07-23T08:28:19", + "newPrice": 910.43 + }, + { + "priceDate": "2022-01-12T08:28:19", + "newPrice": 912.62 + }, + { + "priceDate": "2022-07-04T08:28:19", + "newPrice": 917.42 + }, + { + "priceDate": "2022-12-24T08:28:19", + "newPrice": 811.64 + }, + { + "priceDate": "2024-05-03T08:28:19", + "newPrice": 868.61 + } + ] + }, + { + "id": "75261944-38f4-42a8-8459-f1014b8aa3e4", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brian87", + "reviewDate": "2021-01-31T08:28:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cb680309-ce37-41f2-8c2a-b1dd9d3568d3", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "barnesamanda", + "reviewDate": "2022-03-21T10:52:39", + "stars": 5, + "verifiedUser": true + }, + { + "id": "da448ff8-24c4-46c3-890a-7846e7535433", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "briancooke", + "reviewDate": "2022-11-03T13:20:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ef5a98a6-901c-4e04-a3c4-a20a2e84f69d", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erinnelson", + "reviewDate": "2022-10-17T10:07:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3a26da8e-10bd-4103-9e4e-cf76708336ad", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownjoseph", + "reviewDate": "2021-09-17T12:07:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5679b236-fd72-45e6-aff7-9d2d249ba52b", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christina95", + "reviewDate": "2021-10-21T12:32:22", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0fef471e-c575-4e7e-b556-fcf1fc1bbaed", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithheather", + "reviewDate": "2022-05-23T16:27:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4e02c1bc-7c75-4176-9834-2d8319f24b56", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacqueline94", + "reviewDate": "2022-06-06T01:50:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7399f8f2-05a0-4871-af59-217a38de7d89", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chendricks", + "reviewDate": "2021-11-19T07:44:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1acea118-91ba-4da4-b9a4-41a43a937ed6", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rossjulie", + "reviewDate": "2021-06-18T15:05:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "27954702-e195-47f0-a29c-f63c0dbf5eb6", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gordonanthony", + "reviewDate": "2021-08-28T02:10:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "effb40a4-ae6e-42dc-931c-1e87d9fe8768", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "owashington", + "reviewDate": "2022-12-25T03:33:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0007b343-cba3-4423-9877-0d6eb7e961c4", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "randyvargas", + "reviewDate": "2022-04-28T16:32:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "630aed2d-5848-4f13-9c3c-a32393af706a", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "briandavis", + "reviewDate": "2021-05-12T04:18:25", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8d2f8b23-3449-48d3-84db-26596dea0001", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brent68", + "reviewDate": "2022-09-08T12:21:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "321d2097-d64d-4391-ba70-d2664a0cddde", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "product", + "name": "Luxe TV Mini (Steel)", + "description": "This Luxe TV Mini (Steel) is set to be released in 2018. It combines a solid design, premium leather interior and sleek, sleek styling with a stylish new look.\n\nAll Luxe TV Mini's are available in a variety of sizes, colors, and", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-04-12T20:28:58", + "price": 795.64, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-01-01T11:11:11", + "newPrice": 861.63 + }, + { + "priceDate": "2021-06-22T11:11:11", + "newPrice": 821.61 + }, + { + "priceDate": "2021-12-11T11:11:11", + "newPrice": 851.69 + }, + { + "priceDate": "2022-06-01T11:11:11", + "newPrice": 739.27 + }, + { + "priceDate": "2022-11-20T11:11:11", + "newPrice": 770.21 + }, + { + "priceDate": "2025-01-11T11:11:11", + "newPrice": 795.64 + } + ] + }, + { + "id": "4fa6a3e9-a685-46fd-a216-03e1a0bca6e3", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "williamsedward", + "reviewDate": "2021-09-18T03:08:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5caa6932-4030-45e4-8e16-9e1ba1dadc9c", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "yhorn", + "reviewDate": "2022-02-09T16:48:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4500e0c6-03d8-4122-9b25-44333f1e54df", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "ramoskenneth", + "reviewDate": "2022-11-23T07:02:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0539e7e5-863e-4adc-a077-f982752f8907", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "millerthomas", + "reviewDate": "2022-05-26T16:55:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5062fe0e-4f0d-477a-be08-7569f51deb23", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "gonzalezjeremy", + "reviewDate": "2021-05-24T21:49:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a0a681f9-33c4-44fc-a121-4c8ea8f998d3", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "kelly57", + "reviewDate": "2021-01-31T19:38:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "74166786-aba5-4d72-9c99-59410e2bc451", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "stephanie85", + "reviewDate": "2021-01-01T11:11:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2b4fd35b-482a-4b5d-8f9a-fde3932c6169", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "brodriguez", + "reviewDate": "2021-01-15T12:16:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "315522d8-27b2-4162-848c-29dd178a2dd5", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "angelicakennedy", + "reviewDate": "2021-06-08T17:31:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1fa73ae8-0a01-495c-91b8-f9f9f36f52d8", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "markcarson", + "reviewDate": "2022-07-16T18:22:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "800eb1d6-458e-481b-a4d2-211d19a47f1d", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "patrick54", + "reviewDate": "2022-05-21T13:39:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand 3000 (Gold)", + "description": "This Awesome Stand 3000 (Gold) is here... but instead that great-looking, beautiful bronze bronze plaque. The plaque of the 1000th time, as it became known, is a silver coin, and it has not been made into a plaque. And I've always been fascinated by the concept of bronze and how it affects our collective minds... like a magnet. It doesn't really change anything... except that it's beautiful. But it also isn't really... just a plaque. It never looks", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-05-28T01:55:31", + "price": 514.53, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-02-12T04:45:07", + "newPrice": 482.22 + }, + { + "priceDate": "2021-09-14T04:45:07", + "newPrice": 516.44 + }, + { + "priceDate": "2022-04-16T04:45:07", + "newPrice": 504.2 + }, + { + "priceDate": "2022-11-16T04:45:07", + "newPrice": 522.29 + }, + { + "priceDate": "2023-07-12T04:45:07", + "newPrice": 514.53 + } + ] + }, + { + "id": "66184704-293b-49e0-bd23-b5c87950cd79", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "jake65", + "reviewDate": "2021-06-08T23:38:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "de82ecfa-fafd-4175-b8f2-ba8124be38ac", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "taylorgreen", + "reviewDate": "2021-02-12T04:45:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "447892dc-19ff-462f-8da2-1e98fa70c194", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "audreyduke", + "reviewDate": "2021-08-30T07:16:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6af9a5ce-dd04-4a13-b124-6a1a2ec4f6e0", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "pvega", + "reviewDate": "2021-03-21T13:58:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "77fedd4b-364f-49ad-a3fe-0b18a945a151", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "usmith", + "reviewDate": "2021-07-25T04:01:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "83c7bf78-5929-4e7f-850d-9a38ef9de914", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "xweaver", + "reviewDate": "2021-04-18T01:23:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "20352f3c-774f-459c-8f88-cad9f58c21b7", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "bdominguez", + "reviewDate": "2021-02-12T05:16:10", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4460fd59-e1cf-48d3-a5d0-7cfad9924fb0", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "rachaelmata", + "reviewDate": "2022-11-18T19:34:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "52ac21a9-a1f1-41d7-b37a-f8cc71264f13", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "castilloamber", + "reviewDate": "2021-03-27T20:32:55", + "stars": 5, + "verifiedUser": false + }, + { + "id": "47f9652d-b401-449c-99f2-0f9511c78c43", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "trevorcollins", + "reviewDate": "2021-07-07T23:47:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "93bad92b-53ff-455a-9f13-d547d73be19d", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "lewiskenneth", + "reviewDate": "2021-04-08T18:44:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ff7980d1-88b6-4132-acdb-c948b5e3a4f7", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarahparks", + "reviewDate": "2021-04-22T17:56:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "21379c04-775f-486c-b779-f954a27312a1", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Micro (Gold)", + "description": "This Awesome Stand Micro (Gold) is no match for the more classic and well-known Micro (Silver).\n\nThe most sought after micro is also the one I call the Master Micro, however, I consider it more suitable for smaller decks with a few cards that are less complex than one micro is expected to require.\n\nIt is, essentially, a \"one-of-a kind\" type of plastic stand", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-10-04T20:16:43", + "price": 597.13, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-03-09T23:38:51", + "newPrice": 604.29 + }, + { + "priceDate": "2024-11-12T23:38:51", + "newPrice": 597.13 + } + ] + }, + { + "id": "770a0e41-c667-4c17-a897-950c8dc09b84", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "joseph01", + "reviewDate": "2022-09-26T13:16:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e1985783-84b4-412f-9792-d5fef32abf16", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "philip03", + "reviewDate": "2021-04-13T13:41:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "da9473af-9100-40e1-be32-2d56ba5c3a4b", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "emendoza", + "reviewDate": "2022-03-13T03:19:52", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0eba3002-6481-43d7-bcb9-d8e043497cbc", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessica69", + "reviewDate": "2021-06-10T21:54:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "063ba0b8-3000-4f2f-adb2-f652fcbffdfb", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholaslong", + "reviewDate": "2021-06-09T07:03:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bb296817-7378-4ee1-9959-780255954b90", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "vmiller", + "reviewDate": "2022-01-17T17:25:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fff37b0b-1295-47a5-ac62-353a4f71fb9b", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "joshuacunningham", + "reviewDate": "2022-04-13T21:04:28", + "stars": 4, + "verifiedUser": true + }, + { + "id": "146cf02d-fd0d-49b1-8d75-80df559a378f", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "stevensmichael", + "reviewDate": "2021-10-15T06:26:42", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a1a6be3b-28b1-4a27-a6ef-01f6d86a8fb9", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "aford", + "reviewDate": "2021-08-01T05:07:08", + "stars": 5, + "verifiedUser": false + }, + { + "id": "a98bf1eb-bdd6-45b9-ac2e-4b48afcbcb10", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "gduncan", + "reviewDate": "2022-08-21T01:54:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f9038ac3-f70b-4c53-b0a4-e64a5689f113", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "danielbowen", + "reviewDate": "2021-03-09T23:38:51", + "stars": 5, + "verifiedUser": false + }, + { + "id": "41e822b7-1c0d-4759-871f-e507ac8a4de3", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "john00", + "reviewDate": "2022-02-15T01:21:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fbc251c1-4b52-4cff-a607-a980babb7561", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "daniel07", + "reviewDate": "2022-11-19T20:44:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "28a00f11-fd38-4607-b3d0-75c2e98aca12", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "kenneth82", + "reviewDate": "2021-06-06T13:56:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "21e0699a-be68-4694-88d6-65a536a33f30", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "yjackson", + "reviewDate": "2021-10-10T12:41:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cbf18b01-aca8-4c0d-a189-dbb303eb2361", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "brenda10", + "reviewDate": "2022-02-21T12:19:34", + "stars": 5, + "verifiedUser": false + }, + { + "id": "33cb2160-dd16-4c67-9376-abdaf1c69814", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "hannajanet", + "reviewDate": "2022-01-28T07:06:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "product", + "name": "Luxe TV 3000 (Silver)", + "description": "This Luxe TV 3000 (Silver) is available on a limited capacity model, which includes HDMI, Ethernet, and micro SD connections.\n\nLux Luxe TV 3000 is an Ultra HD TV with a 24 inch panel, IPS display with 1080p resolution, ultra-high definition 5.1 surround sound and a 12:9 touchscreen (touch screen). The panel also support multiple channels of 3D playback including 1-channel 2D stereo audio, stereo and", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-04-23T15:03:15", + "price": 129.49, + "stock": 94, + "priceHistory": [ + { + "priceDate": "2021-03-22T10:39:38", + "newPrice": 118.85 + }, + { + "priceDate": "2022-01-08T10:39:38", + "newPrice": 141.04 + }, + { + "priceDate": "2022-10-27T10:39:38", + "newPrice": 131.41 + }, + { + "priceDate": "2023-12-13T10:39:38", + "newPrice": 129.49 + } + ] + }, + { + "id": "705e71b6-9b1d-4a7d-bbc7-b215eae78e6e", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "cortezmichael", + "reviewDate": "2022-04-22T20:19:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "26c6ee00-acb1-408a-971c-bbe840891c66", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "lyonspaula", + "reviewDate": "2022-10-29T10:07:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d34b6c89-dccc-4eaf-90e5-cdfb7ced8703", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "don52", + "reviewDate": "2022-05-20T14:51:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4f9601a1-7153-4d23-993c-555759cebb32", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "ufisher", + "reviewDate": "2022-01-13T13:22:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "52ea4776-cb18-4cf4-8a9d-a7da89749d9e", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "floresjose", + "reviewDate": "2021-10-01T00:33:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6fa6100d-7281-439d-acea-8504e601b195", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "vwilson", + "reviewDate": "2021-10-09T06:13:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cc53b97b-8ab1-4cb1-916b-9aa3c93423fd", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "lisarobinson", + "reviewDate": "2021-09-27T16:46:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b33f7342-fdd0-4d2f-8977-026209b8d4ed", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "gloverbryan", + "reviewDate": "2021-05-04T04:33:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d95b172b-7297-4df4-868e-6d59ab102074", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "mroach", + "reviewDate": "2022-06-05T11:28:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "13c83588-7b4e-44d8-976a-1d9a9e2490cf", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "uperez", + "reviewDate": "2021-08-20T20:35:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "65c8c7e6-c89a-4eba-89eb-14e07dc6cfc7", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "jasondavis", + "reviewDate": "2021-07-19T00:15:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "29e26399-dd08-4107-8572-baeccad89854", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "judy26", + "reviewDate": "2021-03-22T10:39:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Micro (Red)", + "description": "This Luxe Computer Micro (Red) is made in Germany and can be repaired with a new computer by just replacing the parts and using the original parts, a new computer, and a new computer card. This", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-08-03T12:36:44", + "price": 782.71, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-02-19T11:18:24", + "newPrice": 706.41 + }, + { + "priceDate": "2021-07-28T11:18:24", + "newPrice": 755.61 + }, + { + "priceDate": "2022-01-03T11:18:24", + "newPrice": 752.38 + }, + { + "priceDate": "2022-06-11T11:18:24", + "newPrice": 829.68 + }, + { + "priceDate": "2022-11-17T11:18:24", + "newPrice": 793.37 + }, + { + "priceDate": "2022-11-30T11:18:24", + "newPrice": 782.71 + } + ] + }, + { + "id": "881354f1-a40a-4c60-8d18-28485107bfe0", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "pneal", + "reviewDate": "2021-09-17T21:13:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "235a546e-000b-4111-a8d4-98f977eac711", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "jimenezelizabeth", + "reviewDate": "2021-09-15T01:45:19", + "stars": 5, + "verifiedUser": false + }, + { + "id": "275b259c-b782-428d-9c1e-17876f048def", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "charles55", + "reviewDate": "2021-07-30T14:39:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "814e6f79-4b49-41cd-b148-2f144ed75293", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "rmartinez", + "reviewDate": "2022-08-11T04:28:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e65bde21-7814-4c9c-9104-e33773a95587", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciakrista", + "reviewDate": "2021-02-27T20:51:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d134dc8b-73cb-437f-affc-70766f59a1cc", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "jimmy91", + "reviewDate": "2021-08-26T05:07:20", + "stars": 5, + "verifiedUser": true + }, + { + "id": "8e474412-0efc-4348-9c3e-ae91740f54c6", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "esmith", + "reviewDate": "2022-05-07T23:43:43", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c0ac1a9a-f6fe-44be-bed9-dcfe2e81138f", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "willieherrera", + "reviewDate": "2022-11-20T15:41:46", + "stars": 5, + "verifiedUser": true + }, + { + "id": "3347a0b5-df91-465c-a851-333024681915", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "bhughes", + "reviewDate": "2021-02-19T11:18:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "86b7cae5-21e6-464b-bb01-99cbc9ec53dd", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "stacey73", + "reviewDate": "2021-05-15T07:29:40", + "stars": 5, + "verifiedUser": true + }, + { + "id": "95abfe18-1c8f-4ceb-92f7-4baf4ccf40ad", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "clarkandrew", + "reviewDate": "2022-09-06T05:46:42", + "stars": 5, + "verifiedUser": true + }, + { + "id": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Pro (Black)", + "description": "This Basic Keyboard Pro (Black) is the first in a line of low price keyboards for those looking to go for the low price or the high value of affordable devices. The Pro is designed to work seamlessly with the Pro's standard mouse, keyboard, 3.5mm audio jack, two USB 3.1 ports, four microphone, two USB 3.0 ports, and two SD card reader-compatible cards.\n\nThis Basic Keyboard Pro comes in black with a white color", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-07-06T13:47:13", + "price": 783.03, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-03-07T15:16:31", + "newPrice": 734.98 + }, + { + "priceDate": "2021-09-11T15:16:31", + "newPrice": 729.04 + }, + { + "priceDate": "2022-03-18T15:16:31", + "newPrice": 800.76 + }, + { + "priceDate": "2022-09-22T15:16:31", + "newPrice": 757.57 + }, + { + "priceDate": "2025-05-26T15:16:31", + "newPrice": 783.03 + } + ] + }, + { + "id": "51363a62-d232-44a9-b3da-abeab79b3828", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hsmall", + "reviewDate": "2022-03-23T10:04:39", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8ca42203-b698-4a2e-853a-3a635ddc57b3", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daniel56", + "reviewDate": "2021-06-27T02:47:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f0363f9a-4ef7-4fda-bf84-037ef290b926", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vsaunders", + "reviewDate": "2021-04-26T03:54:59", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f6e56c23-f75c-4d45-9017-152e52bcd844", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithalfred", + "reviewDate": "2022-05-26T20:56:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "069ff14b-19ff-4236-a009-2e99c85037d3", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidgreen", + "reviewDate": "2022-08-05T02:42:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b4c9c8d4-60e5-4dcb-84e5-fe000d272707", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimalan", + "reviewDate": "2022-04-29T05:30:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ea5ffdca-0bd3-4d69-84e9-be8b216c7b55", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nathanbarr", + "reviewDate": "2022-05-26T16:41:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "615e0157-5606-4066-af54-cfc048f9de42", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin92", + "reviewDate": "2022-01-05T22:34:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bc7e26ab-e9e8-4631-9690-d28817584a80", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paulmcdonald", + "reviewDate": "2022-05-13T23:12:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2854ec31-eab9-4c77-a7e9-481560d5043f", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mary10", + "reviewDate": "2022-04-15T18:46:03", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a3c28c55-4210-4acb-b8df-6e6db01eec78", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yevans", + "reviewDate": "2021-03-07T15:16:31", + "stars": 5, + "verifiedUser": true + }, + { + "id": "ac880a53-65c1-4267-bdf0-665f66a4a05f", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gburton", + "reviewDate": "2022-09-22T05:57:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c29f6226-9d36-4679-b631-cf26557c7fc8", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wrightbarbara", + "reviewDate": "2022-09-25T00:34:00", + "stars": 5, + "verifiedUser": true + }, + { + "id": "9fd0d9d4-0dbd-40d4-b0e5-ffbd173011b1", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "owalsh", + "reviewDate": "2021-10-05T01:17:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "product", + "name": "Premium Speaker + (Gold)", + "description": "This Premium Speaker + (Gold) is our only Premium Speaker. It's for the best deal, on our first-floor hotel in New York.\n\nFor more information on our Premium Speaker, here\n\nIf you like your Premium Speaker Premium Speaker, please add us to your shopping cart.", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-12-04T04:07:59", + "price": 504.24, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-04-16T12:30:19", + "newPrice": 503.36 + }, + { + "priceDate": "2025-06-30T12:30:19", + "newPrice": 504.24 + } + ] + }, + { + "id": "940d3c9f-9f85-474d-9544-b84216da5d0b", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "inichols", + "reviewDate": "2022-05-23T16:43:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6842dad5-b316-432d-9b30-c48ea72945d3", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "timothyjohnson", + "reviewDate": "2022-04-02T23:49:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c31fa911-1d42-4562-85b6-6503b5c594b5", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "xevans", + "reviewDate": "2021-08-03T10:50:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bbd1dbbe-3d17-463c-a42b-63e215491d1b", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "mckinneykimberly", + "reviewDate": "2022-03-14T09:17:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "87a231aa-8aca-45e7-a31f-aa55c13080a4", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "natalie05", + "reviewDate": "2021-06-12T02:06:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a098b788-83ee-461a-a125-c1f780c4603d", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "lewisann", + "reviewDate": "2021-06-26T07:57:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1529b245-447d-4657-9987-be43c00ead57", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "cobbtracey", + "reviewDate": "2021-10-08T23:22:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5521e67d-57b2-47ec-88dc-ce271acd9e66", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "ginataylor", + "reviewDate": "2021-06-28T12:06:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "96cce8d6-dbaf-43c4-a665-86ace39fff1f", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "kathryn79", + "reviewDate": "2022-05-23T13:24:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7b82e224-794d-431f-937b-bcaac1081ce7", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "ellenholmes", + "reviewDate": "2021-04-16T12:30:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "product", + "name": "Luxe TV Micro (Black)", + "description": "This Luxe TV Micro (Black) is based off of the '30s show called \"Gizmo\" which is now a TV series. It also looks pretty cool", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-10-28T21:32:56", + "price": 781.13, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-01-17T09:46:49", + "newPrice": 851.43 + }, + { + "priceDate": "2021-08-22T09:46:49", + "newPrice": 842.43 + }, + { + "priceDate": "2022-03-27T09:46:49", + "newPrice": 814.31 + }, + { + "priceDate": "2022-10-30T09:46:49", + "newPrice": 714.42 + }, + { + "priceDate": "2024-08-10T09:46:49", + "newPrice": 781.13 + } + ] + }, + { + "id": "278210cc-a61b-4ee8-9924-eda5b8fe2839", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "boyerchristopher", + "reviewDate": "2022-08-17T08:04:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "52418853-a03d-499b-8f17-85e333b5fdcb", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "kmartin", + "reviewDate": "2022-07-26T22:01:28", + "stars": 4, + "verifiedUser": true + }, + { + "id": "957be810-f6e2-4cc0-a012-79f21f9f038a", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "prestoncox", + "reviewDate": "2022-02-04T13:11:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e70ab28c-9e95-4d51-869d-fe40c233e8f8", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "sanchezjonathan", + "reviewDate": "2022-07-09T12:43:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "97611ea5-d4fc-41b0-9e11-f796a07df0a0", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "audrey60", + "reviewDate": "2021-01-17T09:46:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ea7a30cb-fbd8-49dd-bc2b-7b121ab5576a", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "macdonaldvictoria", + "reviewDate": "2022-11-01T11:05:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Silver)", + "description": "This Premium Computer Ultra (Silver) is the only computer computer that supports an Apple Remote for use with multiple computers.\n\nThe Apple Remote is the ultimate companion for a Windows or Macintosh computer. If you're looking for even higher security features, these are the computer security tools for you!\n\nSecure Key Technology", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-12-28T14:37:32", + "price": 698.75, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-02-16T17:35:29", + "newPrice": 728.12 + }, + { + "priceDate": "2021-07-19T17:35:29", + "newPrice": 754.94 + }, + { + "priceDate": "2021-12-19T17:35:29", + "newPrice": 672.16 + }, + { + "priceDate": "2022-05-21T17:35:29", + "newPrice": 760.28 + }, + { + "priceDate": "2022-10-21T17:35:29", + "newPrice": 720.18 + }, + { + "priceDate": "2025-07-08T17:35:29", + "newPrice": 698.75 + } + ] + }, + { + "id": "00f3d6e8-0ba0-41ae-946e-315de2f86d2c", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "thomas20", + "reviewDate": "2022-06-01T07:56:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c0910dc7-e7f4-4430-bcc0-b113b82cd976", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "teresacox", + "reviewDate": "2022-09-07T12:02:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "98131340-a391-490c-b84a-8c98c54b8d58", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "reynoldsdaniel", + "reviewDate": "2022-10-23T23:39:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "19c2575b-1618-4f1d-a988-b8686ef6c422", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "drichards", + "reviewDate": "2022-04-26T09:22:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "64ca5789-aad6-48d0-8472-b8087304443b", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "madison12", + "reviewDate": "2021-10-09T14:04:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3d88b102-8db1-48d8-8c55-3693af241bb7", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "dana11", + "reviewDate": "2021-02-16T17:35:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "18f1b012-bd4d-4f7d-a210-b227874f8b1f", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "natalie96", + "reviewDate": "2021-06-22T02:03:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "390b4acf-f873-48df-816b-a4ac0cd4239e", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "ralphthomas", + "reviewDate": "2021-12-12T17:47:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "productId": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Pro (Silver)", + "description": "This Amazing Stand Pro (Silver) is a small tool called an Ultra Compact Pro featuring the ability to hold the same price as its predecessor. The first model of this product, the Silver PRO-T, has been available, but this product is still going", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-09-18T23:13:15", + "price": 636.94, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-12-04T20:24:05", + "newPrice": 609.53 + }, + { + "priceDate": "2022-03-10T20:24:05", + "newPrice": 609.73 + }, + { + "priceDate": "2022-06-14T20:24:05", + "newPrice": 682.23 + }, + { + "priceDate": "2022-09-18T20:24:05", + "newPrice": 606.56 + }, + { + "priceDate": "2024-10-16T20:24:05", + "newPrice": 636.94 + } + ] + }, + { + "id": "3d1012d0-9472-44c7-b4e6-89ad16276f8e", + "productId": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "category": "Accessory", + "docType": "customerRating", + "userName": "rebecca68", + "reviewDate": "2022-06-13T14:07:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5d6f4be1-9499-4c70-b285-ef1242db0ff8", + "productId": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "category": "Accessory", + "docType": "customerRating", + "userName": "kristenschwartz", + "reviewDate": "2021-12-04T20:24:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a7f6ff11-2a08-4f33-afa5-1571cf209467", + "productId": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "category": "Accessory", + "docType": "customerRating", + "userName": "josephanderson", + "reviewDate": "2022-09-21T07:10:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Pro (Silver)", + "description": "This Premium Phone Pro (Silver) is the most affordable mobile app for your Android smartphone. It utilizes Android's SIM support which means it can be set up with up to 2,400 lines of SIM enabled.\n\nA full range of Android apps are available for the Pro, allowing you to build up your own custom app with no additional developer fee.\n\n1GB of internal storage,", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-10-14T16:01:55", + "price": 138.03, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-03-11T15:54:57", + "newPrice": 130.9 + }, + { + "priceDate": "2022-03-23T15:54:57", + "newPrice": 138.03 + } + ] + }, + { + "id": "a1d040f2-99ed-4356-89cb-b37093f8ad54", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "lucaskelli", + "reviewDate": "2021-12-08T21:45:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1babf5f2-e83f-4b1b-9ad5-cd1f414d1e51", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "thorntoncourtney", + "reviewDate": "2022-06-29T13:49:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "610edea3-7114-4068-9b8f-2363c989df7f", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "april71", + "reviewDate": "2021-05-22T15:59:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "78e86fba-d042-45f8-810b-61f264faa833", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "lisasalinas", + "reviewDate": "2021-05-30T12:16:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "332f161d-c439-4a48-9209-2a5d650a2e65", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessicamendez", + "reviewDate": "2022-12-25T05:35:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "82f67bdd-a8a0-4ce9-812a-025d1810d1a5", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "whitejade", + "reviewDate": "2021-12-12T05:10:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9258f89d-9798-4e4a-8f2a-a74f1ded5f98", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristinamullins", + "reviewDate": "2021-04-19T11:03:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2e4266cd-d186-4c0f-a38b-eff3c07b83ed", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "kylefarley", + "reviewDate": "2022-01-04T01:19:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "42d3df70-63bd-4691-9c3f-1827f879acfa", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "josephlara", + "reviewDate": "2022-01-27T13:02:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e0382215-2ba9-4ac6-a572-50dd9d327ea8", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "christophermcdonald", + "reviewDate": "2021-10-18T08:52:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7d2f2451-47e5-40a1-a69a-7a2e9a138331", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcphersongary", + "reviewDate": "2022-11-08T23:23:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f48532ba-48dc-4c31-8af4-0fa5778753eb", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "dannyroman", + "reviewDate": "2022-04-02T19:19:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "620e9667-3795-49f7-a6d2-dcffab79e12d", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "bpotter", + "reviewDate": "2022-02-02T19:59:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c8b38ae7-d701-49a7-ad44-ce4a319b1c55", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "yhunt", + "reviewDate": "2021-06-01T22:21:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2dcb584d-ee0f-41c1-b4de-53ff106b47e6", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "huffmichael", + "reviewDate": "2021-11-08T15:39:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4bf03875-4956-4c3f-9e8a-1e5276ebe194", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathan38", + "reviewDate": "2022-03-21T04:23:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "27639c1e-f66f-44ba-82e5-434b14903e1d", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "emilywilliams", + "reviewDate": "2022-10-23T22:23:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0208d98d-2b25-42e2-9564-d78b889d5451", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "tstevens", + "reviewDate": "2022-09-11T07:27:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "948266b2-dfd1-4dda-a9c7-c99bfcee2ec5", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristen84", + "reviewDate": "2021-03-11T15:54:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4e3b6991-5ef5-4636-b0e5-f18c14b8016e", + "productId": "4e3b6991-5ef5-4636-b0e5-f18c14b8016e", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Micro (Silver)", + "description": "This Luxe Computer Micro (Silver) is perfect for the job market! Perfect for the job market!\n\nProduct Code: B0031115\n\nWarranty & Payment Details: We don't offer returns on orders shipped by the following postal carrier in the US:\n\nUnited States Postal Service\n\nUnited Kingdom Post Office\n\n\nUnited", + "countryOfOrigin": "USA", + "rareItem": true, + "firstAvailable": "2018-11-01T03:16:47", + "price": 824.08, + "stock": 48, + "priceHistory": [ + { + "priceDate": "2018-11-01T03:16:47", + "newPrice": 890.26 + }, + { + "priceDate": "2025-08-28T03:16:47", + "newPrice": 854.46 + }, + { + "priceDate": "2025-08-28T05:32:14.486071", + "newPrice": 824.08 + } + ] + }, + { + "id": "49ea6a60-de0f-4a99-ad5a-756d383b9b5e", + "productId": "49ea6a60-de0f-4a99-ad5a-756d383b9b5e", + "category": "Other", + "docType": "product", + "name": "Awesome Filter 3000 (Steel)", + "description": "This Awesome Filter 3000 (Steel) is rated 4.8 out of 4 by 12.\n\nRated 5 out of 5 by Michael from Great Filter I just started a new filter so I did not need the old. I decided to do it for my camera on the small and fast 4", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-10-08T05:38:53", + "price": 219.64, + "stock": 98, + "priceHistory": [ + { + "priceDate": "2021-05-25T04:35:55", + "newPrice": 222.44 + }, + { + "priceDate": "2021-07-14T04:35:55", + "newPrice": 219.64 + } + ] + }, + { + "id": "e74fd8f3-6cf0-4c9c-ba0f-a3ac115bc5c2", + "productId": "49ea6a60-de0f-4a99-ad5a-756d383b9b5e", + "category": "Other", + "docType": "customerRating", + "userName": "scottdavis", + "reviewDate": "2022-04-02T09:55:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c545561b-2ef4-4b76-81db-de0d2921ef7e", + "productId": "49ea6a60-de0f-4a99-ad5a-756d383b9b5e", + "category": "Other", + "docType": "customerRating", + "userName": "melaniepetty", + "reviewDate": "2021-05-25T04:35:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Micro (Black)", + "description": "This Amazing Stand Micro (Black) is not only the most difficult to read, but the most interesting.\n\nAs you can see, this stand makes use of an 8-inch OLED display, with a 20:9 aspect ratio. This is impressive because the stand is also light and portable. The weight is 10 pounds, with an external battery. This is an interesting setup. If you have read the \"How to Live\" blog", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-09-26T18:05:34", + "price": 445.15, + "stock": 62, + "priceHistory": [ + { + "priceDate": "2021-03-03T00:30:38", + "newPrice": 448.4 + }, + { + "priceDate": "2021-09-17T00:30:38", + "newPrice": 432.7 + }, + { + "priceDate": "2022-04-03T00:30:38", + "newPrice": 413.49 + }, + { + "priceDate": "2022-10-18T00:30:38", + "newPrice": 457.36 + }, + { + "priceDate": "2023-02-15T00:30:38", + "newPrice": 445.15 + } + ] + }, + { + "id": "5bbffb36-cd5b-49bc-98c7-f18868ffcdd7", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "anna09", + "reviewDate": "2022-04-13T10:25:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1ac51f0f-37b8-4bc5-9e02-3e63c58a9e17", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "omiller", + "reviewDate": "2021-03-03T00:30:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d3673167-e9f4-4cd0-a909-6d5b58013327", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "mhernandez", + "reviewDate": "2021-12-28T09:13:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fec889a3-13a7-4708-8caf-b43f2e3b0849", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "geoffreylopez", + "reviewDate": "2022-07-23T14:30:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "440ad32e-7011-455b-a520-7c6d323c3aac", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "connie46", + "reviewDate": "2022-10-18T02:19:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9f0b6a59-c858-4769-8145-015cc832befc", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Mini (Silver)", + "description": "This Luxe Speaker Mini (Silver) is perfect for any audio system. It features an integrated LED-lit bottom, a 6.8x12\" drive bay and two 9.7oz. cartridges.\n\nThe Luxe Mini has a dual output system, a 2.0 Amp output and a 5-channel headphone amplifier. As with all products here on this", + "countryOfOrigin": "Argentina", + "rareItem": true, + "firstAvailable": "2020-01-30T07:54:07", + "price": 940.14, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2021-03-24T19:14:16", + "newPrice": 1012.27 + }, + { + "priceDate": "2021-10-25T19:14:16", + "newPrice": 932.73 + }, + { + "priceDate": "2022-05-28T19:14:16", + "newPrice": 931.17 + }, + { + "priceDate": "2022-12-29T19:14:16", + "newPrice": 1025.2 + }, + { + "priceDate": "2023-03-19T19:14:16", + "newPrice": 940.14 + } + ] + }, + { + "id": "1c962dd1-80e6-443e-bf37-fd9e4959ea19", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "qsummers", + "reviewDate": "2021-06-14T12:58:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "782d1e09-8225-4cee-9e08-0dcac7fee1b0", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "williamsheather", + "reviewDate": "2022-12-07T17:43:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eab469f4-050b-4974-85f7-e05b9c986fd3", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "gibsonkristina", + "reviewDate": "2021-03-24T19:14:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cce2b9dd-14f2-4950-9c6f-a342e3452455", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "uschaefer", + "reviewDate": "2021-05-12T15:01:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f30ad297-c6c9-4073-801c-5ca9dc7646cd", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "matthew44", + "reviewDate": "2021-05-11T00:18:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7a54a327-2f38-454c-bb79-1e5678675a7a", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "bryanwashington", + "reviewDate": "2021-10-29T19:14:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9ce6cc63-80a8-4840-bb4d-755633f66268", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "robertnielsen", + "reviewDate": "2022-01-17T09:21:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d3884c41-c645-46f4-9448-87c8da0d8db1", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "justin63", + "reviewDate": "2022-10-02T09:33:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c0221e40-83ce-4292-9b89-f850334f2dc4", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "dariuscurtis", + "reviewDate": "2022-05-18T23:34:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5b83c8c5-951c-40db-bb1c-614ae3087e03", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "ajones", + "reviewDate": "2021-04-08T23:57:04", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e9e0ace9-551d-4a9a-a7ec-bd11f42ce872", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "ojacobs", + "reviewDate": "2022-12-30T18:26:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5fa3a32c-2ee5-446e-bd46-c7c93ebf4dd2", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "rachelgonzalez", + "reviewDate": "2022-01-17T19:31:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9fbdfaf1-0248-47e7-8ed6-6546d3d181ac", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "wallacejoanna", + "reviewDate": "2021-11-07T16:05:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "aac8a818-c9c5-4f08-a773-e2d75c5a088a", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "elizabethwolf", + "reviewDate": "2021-10-30T19:49:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d9dc4232-9062-4308-b62c-526052d635a2", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Silver)", + "description": "This Premium Computer Super (Silver) is a great thing, but if you are into super computers then this is by far my favorite to own. I can't wait to play with it.", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-07-30T04:04:13", + "price": 485.97, + "stock": 35, + "priceHistory": [ + { + "priceDate": "2021-05-05T09:52:52", + "newPrice": 512.14 + }, + { + "priceDate": "2021-09-01T09:52:52", + "newPrice": 499.7 + }, + { + "priceDate": "2021-12-29T09:52:52", + "newPrice": 493.27 + }, + { + "priceDate": "2022-04-27T09:52:52", + "newPrice": 515.21 + }, + { + "priceDate": "2022-08-24T09:52:52", + "newPrice": 452.02 + }, + { + "priceDate": "2024-05-08T09:52:52", + "newPrice": 485.97 + } + ] + }, + { + "id": "ebd36b34-d8ed-43f2-b05e-761b138b00d3", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "jerryburgess", + "reviewDate": "2021-11-14T05:47:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fa37fe4d-4b1e-42a3-84c6-f2abc5a83492", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertmiller", + "reviewDate": "2022-08-26T03:32:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "34beb683-15f3-4ea1-8646-b9f00b166071", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "xberry", + "reviewDate": "2021-11-09T21:09:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6c90586d-6f62-49f0-8d5f-e4027b9506e0", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "zamorajacob", + "reviewDate": "2022-08-07T23:44:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ce72a3ed-40da-4f6b-9e1e-c49db53de703", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "mendezstephanie", + "reviewDate": "2022-01-09T21:25:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d45a2d11-7019-4ff6-a974-c3a51fc7f5dc", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "erinrichards", + "reviewDate": "2022-08-18T17:39:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4c67d429-ae3c-4dd7-a7d7-d352a3662489", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "carol01", + "reviewDate": "2021-11-03T06:58:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f15f599e-c72a-4099-a9f9-c90317ea456a", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "michellebutler", + "reviewDate": "2021-12-12T19:44:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3392f066-a2c4-4989-bf9e-f86ff012c712", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "vcraig", + "reviewDate": "2022-02-22T22:42:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3b99ccfd-8a4c-4042-a7b9-bf2376fc1e71", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamespacheco", + "reviewDate": "2021-05-05T09:52:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Mini (Black)", + "description": "This Basic Stand Mini (Black) is made of plastic with a hard shell, and comes with a 4-inch stainless steel edge. The 5-inch stainless steel edge is also included, or can be mounted to any other stand.\n\nAll accessories are sold as-is, including buttons, markers, etc., and the case", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-04-02T10:10:56", + "price": 803.6, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-01-13T05:38:27", + "newPrice": 748.93 + }, + { + "priceDate": "2021-06-16T05:38:27", + "newPrice": 864.76 + }, + { + "priceDate": "2021-11-17T05:38:27", + "newPrice": 749.48 + }, + { + "priceDate": "2022-04-20T05:38:27", + "newPrice": 742.28 + }, + { + "priceDate": "2022-09-21T05:38:27", + "newPrice": 869.53 + }, + { + "priceDate": "2024-11-30T05:38:27", + "newPrice": 803.6 + } + ] + }, + { + "id": "6be0cc69-0132-414e-8b63-c6e68908c232", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "smartin", + "reviewDate": "2022-02-22T22:21:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "aabfd32a-882c-4320-92c1-af975b1aa720", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "bradleysmith", + "reviewDate": "2021-05-27T10:05:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "20de1758-7669-438d-800b-38044d19d46f", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "lcantu", + "reviewDate": "2022-01-08T05:41:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7f062e9d-6d30-4ba5-ad72-4b4588b30bbe", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "michaelsherman", + "reviewDate": "2021-05-29T11:06:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "af30f20a-31d2-4a1f-b006-57d662434f3f", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "mcguirejennifer", + "reviewDate": "2021-11-13T06:46:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0ff29277-557f-4146-a6c7-065bb662261a", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "rebeccahall", + "reviewDate": "2021-01-13T05:38:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dcdecbe5-0b9f-4dd0-a2e9-b78f139fb7b3", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "whiggins", + "reviewDate": "2021-06-02T07:01:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0ba57450-5720-4208-8049-2f5be5c57ca5", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "raymondbarbara", + "reviewDate": "2022-03-04T22:22:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "096c66b4-3f5d-4f8e-84a3-56fb1b06495a", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicolewilliams", + "reviewDate": "2021-07-23T13:44:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6e7de3b6-b218-4b08-b8af-7ac86380acae", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "longmichelle", + "reviewDate": "2021-11-07T03:11:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aeaf1cc8-310d-482f-bf50-ca463f0c899f", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "maxwellalyssa", + "reviewDate": "2022-05-25T14:12:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a0e7809e-9e94-4889-a2f6-3db0a5cffe8f", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "ngreene", + "reviewDate": "2022-09-22T19:58:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ae506191-7616-46ad-9449-714224f2cd74", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "petermorgan", + "reviewDate": "2021-08-25T06:12:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Super (Gold)", + "description": "This Amazing Keyboard Super (Gold) is sold out! Just call 1-888-424-9463 and pick up your order there.", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-06-15T18:25:00", + "price": 1016.76, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2021-03-15T03:37:18", + "newPrice": 974.53 + }, + { + "priceDate": "2022-01-13T03:37:18", + "newPrice": 1076.3 + }, + { + "priceDate": "2022-11-13T03:37:18", + "newPrice": 1075.04 + }, + { + "priceDate": "2023-03-08T03:37:18", + "newPrice": 1016.76 + } + ] + }, + { + "id": "2e73e091-464c-4cd0-86a9-df8b20565009", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wayne25", + "reviewDate": "2021-08-04T03:48:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "852d154e-28a2-413f-a9e2-2e1dea717ee5", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hunterjonathan", + "reviewDate": "2021-11-17T21:49:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d802bde4-e04e-43fb-8afc-3e4aa0772f10", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james90", + "reviewDate": "2021-07-16T20:36:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5aadf8e1-b3b7-43e6-979d-229499599545", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew42", + "reviewDate": "2021-03-15T03:37:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a1140c1d-124f-4c87-8f8f-27f3f4866345", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cfrost", + "reviewDate": "2022-11-13T21:34:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ab878f0c-6e6f-418d-b98d-e2abb558a85f", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ebarnes", + "reviewDate": "2022-08-24T16:41:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "34912ce8-e54a-4b5f-a788-18cc2c345fe0", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniemendez", + "reviewDate": "2022-05-28T20:25:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0a04ea25-c8c9-4d46-b590-28964f5cae53", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristinware", + "reviewDate": "2022-05-21T02:59:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4f7282e7-24dd-40d2-852d-d906695ddd18", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gabriel26", + "reviewDate": "2021-03-17T22:27:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2b3d4591-4083-48ac-988a-517fe759b98f", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristen07", + "reviewDate": "2021-06-19T23:39:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "02b72535-7d7a-49b7-8b21-84b87b1b7e08", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopherarnold", + "reviewDate": "2022-05-30T05:20:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Micro (Red)", + "description": "This Awesome Mouse Micro (Red) is a little bit easier to work with. The small and slightly thicker mouse can be handled by hand and can take it", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-07-06T19:39:56", + "price": 230.65, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-01-02T08:25:06", + "newPrice": 221.55 + }, + { + "priceDate": "2023-06-30T08:25:06", + "newPrice": 230.65 + } + ] + }, + { + "id": "cf049dd4-1fc1-4f07-9e76-2b3d1525666f", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nholloway", + "reviewDate": "2021-01-13T10:31:19", + "stars": 4, + "verifiedUser": false + }, + { + "id": "902105e3-915f-40c1-8944-7f6f7ea43414", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eleonard", + "reviewDate": "2021-01-03T04:24:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9a81c932-e09e-410b-b270-2500e3e5b318", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lancesanchez", + "reviewDate": "2021-01-26T16:24:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b59e4bdc-4937-4c92-805d-1f5554be90b8", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksongary", + "reviewDate": "2021-01-21T11:16:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bb08aeeb-1025-47fa-9122-76adcd338bf8", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnphillips", + "reviewDate": "2021-01-02T08:25:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "29c9fea8-2c2c-42f7-847c-a90d8fd20483", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yharding", + "reviewDate": "2021-08-14T19:42:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ddf31175-b413-4656-9e90-8f9b41707544", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Black)", + "description": "This Basic Speaker Mini (Black) is a full-sized 1 x 14″ speaker for the new speaker set. Featuring adjustable speakers and built-in speakers (the speaker system is a part of each speaker), it comes with 3 x 8, 5 x 22\" & 8 x 24\" woofers.\n\nFor more information and pricing, please visit https://www.thespec.com/en/s/s", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-02-28T04:32:24", + "price": 366.67, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2021-03-21T15:48:29", + "newPrice": 393.18 + }, + { + "priceDate": "2021-12-05T15:48:29", + "newPrice": 395.7 + }, + { + "priceDate": "2022-08-21T15:48:29", + "newPrice": 331.69 + }, + { + "priceDate": "2024-02-23T15:48:29", + "newPrice": 366.67 + } + ] + }, + { + "id": "14c3f665-e75a-4697-b861-10eef0383b3d", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "customerRating", + "userName": "hollyanderson", + "reviewDate": "2022-08-23T01:08:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1904561d-ee34-475f-8c8a-48a5faa4ac5d", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "customerRating", + "userName": "rojasjanet", + "reviewDate": "2021-03-21T15:48:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d266c892-a6dc-49d1-be89-d488c9c91e94", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "customerRating", + "userName": "mary34", + "reviewDate": "2021-08-18T02:41:26", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5e8ea0bc-0a73-4863-af75-de96327741c0", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "customerRating", + "userName": "hallallison", + "reviewDate": "2021-04-15T22:54:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Pro (Red)", + "description": "This Awesome Phone Pro (Red) is available in the following colors: Blue (red), Green (purple) or Black (yellow).\n\nThe phone will ship with the Blue, Green, Black, Orange, Violet, Yellow.\n\nWith every order we offer, we try to accommodate every phone needs. Whether your phone needs to be turned in-", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-11-03T13:24:39", + "price": 836.5, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-01-01T14:11:36", + "newPrice": 850.34 + }, + { + "priceDate": "2022-09-11T14:11:36", + "newPrice": 914.4 + }, + { + "priceDate": "2023-01-26T14:11:36", + "newPrice": 836.5 + } + ] + }, + { + "id": "7d4adaec-d408-4105-b284-09c17c4ddb08", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "riddlejason", + "reviewDate": "2021-03-30T19:55:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e54de67e-ef16-4155-bdff-82a3fdd77554", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "timothydean", + "reviewDate": "2022-04-13T14:30:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2e2163ef-25bf-4a9b-80b2-d959c442ee83", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "kellynunez", + "reviewDate": "2022-08-09T03:33:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6a45f07c-97f6-4c3d-aff5-a193faac0c96", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "cole30", + "reviewDate": "2021-01-13T14:55:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b9a32432-55d9-4cf9-8cab-c2d5453024b7", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "akrause", + "reviewDate": "2021-12-19T15:37:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3a6d1e77-5a0b-4b41-9157-06b88db6edf8", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "nathan25", + "reviewDate": "2021-05-22T20:24:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d540290b-50cc-489a-81f0-b229dfdd1438", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "hernandezmartha", + "reviewDate": "2021-01-01T14:11:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6161713e-f479-4295-8648-9d47f91cb947", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "harringtonjodi", + "reviewDate": "2021-08-07T02:37:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6e32c173-64cf-4dd9-8ac9-220893ce856a", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "laurasimpson", + "reviewDate": "2022-08-14T16:06:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bd30174b-7633-45ab-929a-0962a4b6fba5", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamesstephanie", + "reviewDate": "2022-09-12T09:46:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bb4779aa-4a50-40d0-837c-3d0bb9073895", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "bandrews", + "reviewDate": "2021-09-17T23:22:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8f7479d9-7e28-4d26-b079-d7e50ffd1131", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaron19", + "reviewDate": "2021-11-02T16:52:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9d0f44cc-8ef5-420d-8dde-ac20dd3c0386", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "hensonashley", + "reviewDate": "2022-08-02T01:41:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "87b9ead8-1e0b-4516-be48-ccec0e76c396", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "hsmith", + "reviewDate": "2022-08-31T15:20:55", + "stars": 4, + "verifiedUser": true + }, + { + "id": "22fec441-c8f1-4c24-9a33-55a18f08850e", + "productId": "22fec441-c8f1-4c24-9a33-55a18f08850e", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Ultra (Silver)", + "description": "This Awesome Phone Ultra (Silver) is one of the best phones you'll find anywhere in the world. It is a fully capable phone by a company whose motto it is \"The best phone ever\". If you were looking for something that would give you access to a premium Android, Samsung Galaxy, or iPhone/other apps, you probably already own one, but that is another story for another time. So the Best Value iPhone is not a phone that you could trust to be your best.\n", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-05-07T13:23:04", + "price": 363.26, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-09-24T10:22:43", + "newPrice": 378.0 + }, + { + "priceDate": "2024-11-23T10:22:43", + "newPrice": 363.26 + } + ] + }, + { + "id": "1f535257-67db-4969-8d15-b506f04feec0", + "productId": "22fec441-c8f1-4c24-9a33-55a18f08850e", + "category": "Electronics", + "docType": "customerRating", + "userName": "cchavez", + "reviewDate": "2022-05-24T13:50:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6968e666-9d30-4079-8e3b-cfb84c73af6b", + "productId": "22fec441-c8f1-4c24-9a33-55a18f08850e", + "category": "Electronics", + "docType": "customerRating", + "userName": "agordon", + "reviewDate": "2021-09-24T10:22:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Micro (Gold)", + "description": "This Luxe Keyboard Micro (Gold) is made to suit any type of user. Its tactile feeling is also ideal for all typing conditions and is perfect for playing music as well.\n\nThe ergonomic and ergonomic design of Silver is meant for comfortable typing. The ergonomic and ergonomic design of Silver is meant for comfortable", + "countryOfOrigin": "Argentina", + "rareItem": true, + "firstAvailable": "2018-12-26T13:07:26", + "price": 606.65, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-02-23T19:32:35", + "newPrice": 646.02 + }, + { + "priceDate": "2022-01-23T19:32:35", + "newPrice": 635.22 + }, + { + "priceDate": "2022-12-23T19:32:35", + "newPrice": 610.36 + }, + { + "priceDate": "2025-06-19T19:32:35", + "newPrice": 606.65 + } + ] + }, + { + "id": "fc75ed24-459a-4127-97c7-a3bfb717dfd3", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ana89", + "reviewDate": "2022-08-20T03:00:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d41b4ac6-719b-467d-9719-556f129c2523", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nhunt", + "reviewDate": "2021-10-04T01:07:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d8d7dc72-32c5-432f-87f0-fbbfd7d89acf", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mooretroy", + "reviewDate": "2022-03-31T20:13:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1ca3e735-65c0-4a91-9a59-9f0edc105c6e", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthonydavis", + "reviewDate": "2022-04-21T12:54:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c5d3f34b-4142-4ad9-862f-42821858d9da", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jonesrhonda", + "reviewDate": "2021-09-02T05:54:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "59cdfbba-9e6f-48d1-a3d8-aa087a4f75c0", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel85", + "reviewDate": "2021-03-08T03:59:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5b1c80e4-d614-47c0-9f80-7959a38299ef", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harrisrachel", + "reviewDate": "2021-12-17T10:35:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a47aa5a-6ee0-46e9-bffb-f7c3e17f8e80", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uwillis", + "reviewDate": "2022-02-06T15:19:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6d053614-3e34-44ef-aba4-47232f5ef69d", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michellechristian", + "reviewDate": "2021-02-23T19:32:35", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7ad75348-cef0-47f6-bdd8-5e515b896574", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopherrodriguez", + "reviewDate": "2022-12-17T17:58:12", + "stars": 5, + "verifiedUser": false + }, + { + "id": "77492132-8ef9-4212-b149-3ede9a9a7cdd", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cshepherd", + "reviewDate": "2022-06-30T02:56:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "229af64b-d2c5-42dc-84eb-2f056cf68d8e", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sdoyle", + "reviewDate": "2021-12-22T10:30:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "595e329a-81b0-4f7b-9cb4-d8c15c630eca", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "allentravis", + "reviewDate": "2022-04-11T15:00:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9507846d-b9dc-4b5d-b554-99affd335dcf", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daniel82", + "reviewDate": "2021-03-01T19:06:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cdcce68c-acf1-479e-941b-f244581b998d", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john16", + "reviewDate": "2022-12-25T03:24:26", + "stars": 3, + "verifiedUser": true + }, + { + "id": "482ab7bd-f185-46ff-8779-a4298439a533", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garciaandrea", + "reviewDate": "2022-03-22T13:28:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "980e8397-15c7-45e8-bf0d-d7654f0d8a67", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joneskatrina", + "reviewDate": "2021-06-28T19:27:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a2df9b62-8f35-4c9e-82df-106eab7bba93", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ramosjames", + "reviewDate": "2021-06-30T21:46:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fb708c02-82ce-4fdc-a77e-465e9b84a599", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholasromero", + "reviewDate": "2022-09-03T19:02:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ce62cfd5-d143-49cc-9acc-fb64d78da4b5", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lday", + "reviewDate": "2022-11-19T13:15:37", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6e69c608-aa40-4293-92da-11e9a988afa1", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Ultra (Silver)", + "description": "This Premium Stand Ultra (Silver) is the ultimate example of an extremely easy to carry and light for all you love metal music. Whether you love the classic classic classic style or if you hate this music, this Premium Series is for you. It is heavy duty that makes it an excellent choice if you are looking for a quality metal instrument stand.\n\n\"The Silver Silver Metallic stand has a", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-05-25T07:36:32", + "price": 837.86, + "stock": 54, + "priceHistory": [ + { + "priceDate": "2021-01-16T10:22:10", + "newPrice": 886.17 + }, + { + "priceDate": "2022-11-18T10:22:10", + "newPrice": 818.0 + }, + { + "priceDate": "2023-08-14T10:22:10", + "newPrice": 837.86 + } + ] + }, + { + "id": "393398d8-ca8b-41e2-96bb-c2fb7e922342", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "james49", + "reviewDate": "2022-08-21T10:44:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8907977c-e80e-4e21-864c-73a7257c9e87", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "imartin", + "reviewDate": "2021-11-16T11:43:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a66e1945-e174-4bb0-92d4-00c3de6089f1", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "kayla72", + "reviewDate": "2021-04-18T17:00:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "884b8077-d427-4f87-8b54-e390e627b9cf", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "peter54", + "reviewDate": "2022-05-25T01:59:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d8b6778f-4269-4b22-873d-29ff9675af68", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "johnarnold", + "reviewDate": "2021-04-04T15:33:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "58287303-c17b-4a60-93cc-90ff02209d8b", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthony44", + "reviewDate": "2022-07-01T07:36:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ac66a320-8097-4b38-b5f7-7ed0727b3924", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "sloanbrandi", + "reviewDate": "2022-03-13T21:33:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "888e6fde-e885-4e2a-a1a8-d017d64faf1a", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "tkirby", + "reviewDate": "2022-08-09T23:11:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "95cc7362-4ca9-4526-9d2b-e523a59bc57b", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "christopherpadilla", + "reviewDate": "2022-05-20T05:36:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "881b0452-b257-4e88-9da9-5ba10385179c", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "cmckee", + "reviewDate": "2022-01-16T08:12:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9a002826-2d37-4589-bab1-d56df61be590", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "marylee", + "reviewDate": "2022-10-05T03:12:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4d5a21b0-43bc-4e34-a84b-2fdb2b341fe0", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "billymiller", + "reviewDate": "2022-04-23T05:43:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "87eb0a76-4b45-4c41-b3f2-a595b0a7c965", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "jsparks", + "reviewDate": "2021-04-26T17:44:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a4c7f32b-1ca1-42e7-ab1f-d341bd6d1290", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "josephmalone", + "reviewDate": "2022-11-19T05:52:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e0fae795-41ea-44d2-bc69-4dc1d9715e9c", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "michelle60", + "reviewDate": "2022-01-22T12:34:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b280428a-389a-4edd-8c6d-5797f5f63669", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "wallsbenjamin", + "reviewDate": "2021-04-30T16:51:37", + "stars": 2, + "verifiedUser": true + }, + { + "id": "324abbed-6f1c-4744-a5ea-11f6a7c4f2c9", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "whitechristine", + "reviewDate": "2021-01-16T10:22:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "acc7bfd4-706a-4759-bf94-5f03b4caf9a4", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "rmcconnell", + "reviewDate": "2021-10-03T17:16:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "caf194da-6b6e-4500-9b98-1a58143da420", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "tara96", + "reviewDate": "2021-02-07T20:09:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d90b9167-925c-4186-bae9-081dd029e73b", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonathangarcia", + "reviewDate": "2022-07-25T09:30:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer + (Silver)", + "description": "This Premium Computer + (Silver) is available separately to buy separately from the computer that you need to buy in the purchase address below (the \"Buyer's Premium Computer\" and \"Purchase Delivery\" numbers can differ based on type of connection).\n\nPlease note that the Purchase Delivery numbers are only available to purchase in the Online Shopping Cart.", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-09-19T04:32:57", + "price": 438.58, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-08-03T21:12:29", + "newPrice": 448.37 + }, + { + "priceDate": "2022-01-15T21:12:29", + "newPrice": 447.27 + }, + { + "priceDate": "2022-06-29T21:12:29", + "newPrice": 441.18 + }, + { + "priceDate": "2022-12-11T21:12:29", + "newPrice": 424.64 + }, + { + "priceDate": "2023-09-25T21:12:29", + "newPrice": 438.58 + } + ] + }, + { + "id": "1a7558c5-a967-4cfe-9f1d-1ddd5d3fad68", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "allenlisa", + "reviewDate": "2021-08-03T21:12:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2eb95c76-09bb-4f05-9b98-031e8299baaa", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "samanthacarpenter", + "reviewDate": "2021-09-08T07:20:40", + "stars": 5, + "verifiedUser": false + }, + { + "id": "926917e0-6782-45e2-b13a-2f7fa6a569fc", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "michellehays", + "reviewDate": "2022-04-24T10:03:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "77597c65-d49d-4623-a6e7-2c6ecca0eda4", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "zmclean", + "reviewDate": "2021-08-05T11:34:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e91e993e-5e9e-4db1-bb22-b92e514441a1", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniewhite", + "reviewDate": "2022-09-22T18:58:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "453ade4f-12bb-4de2-88ee-b73d0d3e6575", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "ddavenport", + "reviewDate": "2022-03-01T07:51:25", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9b178552-2f53-4614-be7d-e1b03783dc8a", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "dadams", + "reviewDate": "2021-12-14T01:45:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "099db47d-0304-48fb-961a-e8745caa0a76", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeanne79", + "reviewDate": "2022-02-24T12:52:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "750664ff-b42d-489d-8d5f-72c866a5f161", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "schwartzmichael", + "reviewDate": "2022-12-12T02:33:23", + "stars": 5, + "verifiedUser": false + }, + { + "id": "bde63d40-46e7-414f-b1f8-3c26f56f3a0a", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicoleholland", + "reviewDate": "2022-11-18T19:20:33", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6786b83e-e44b-4505-a229-91954afe9030", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "molinamark", + "reviewDate": "2021-11-17T07:23:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Super (Steel)", + "description": "This Basic Speaker Super (Steel) is NOT included in your package, they will be shipped out automatically as soon as you order. We are ONLY available to help with final shipping costs, as those are a small part. If purchasing a separate package with a Super, you will also receive full replacement item(", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-05-20T13:50:52", + "price": 709.39, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-03-26T01:04:06", + "newPrice": 764.8 + }, + { + "priceDate": "2021-10-02T01:04:06", + "newPrice": 682.92 + }, + { + "priceDate": "2022-04-10T01:04:06", + "newPrice": 763.41 + }, + { + "priceDate": "2022-10-17T01:04:06", + "newPrice": 692.95 + }, + { + "priceDate": "2025-01-26T01:04:06", + "newPrice": 709.39 + } + ] + }, + { + "id": "ecba14bc-dcee-45bb-9f5d-6ad1beb062b7", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "customerRating", + "userName": "rivasjessica", + "reviewDate": "2022-10-19T06:59:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "469b2ff5-e6cd-4b97-8de2-6c397393511f", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "customerRating", + "userName": "ygonzalez", + "reviewDate": "2022-08-28T03:01:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "722f7df4-7038-4bd4-a757-e90c291434b4", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "customerRating", + "userName": "brittany66", + "reviewDate": "2022-09-07T11:24:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "492805ae-1bd3-46c3-a4f7-b8ff000665c7", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "customerRating", + "userName": "tristan34", + "reviewDate": "2021-03-26T01:04:06", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "product", + "name": "Basic TV + (Red)", + "description": "This Basic TV + (Red) is an antenna that can be used in a variety of forms including home theater/multimedia, digital, mobile and online. It can serve as a low power, long range, 4K antenna. It is ideal when looking into a TV for sports,", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-12-02T14:26:50", + "price": 573.75, + "stock": 82, + "priceHistory": [ + { + "priceDate": "2021-01-17T10:12:09", + "newPrice": 557.25 + }, + { + "priceDate": "2021-12-24T10:12:09", + "newPrice": 587.59 + }, + { + "priceDate": "2022-11-30T10:12:09", + "newPrice": 580.85 + }, + { + "priceDate": "2023-11-27T10:12:09", + "newPrice": 573.75 + } + ] + }, + { + "id": "99fc42a4-b387-4d4a-bb19-4b2ce9c2eca8", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "lorettadorsey", + "reviewDate": "2022-11-30T21:52:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a8cfb405-8eef-4495-8b6b-14a0d80b0b2e", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "hickstyler", + "reviewDate": "2022-05-09T16:29:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b9d8960b-11f5-4464-89b4-dbc68672d165", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "reedcharles", + "reviewDate": "2022-11-04T13:12:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e942dec8-cd17-44a1-b934-f7a3e140c227", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "jjohnson", + "reviewDate": "2022-03-13T03:39:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ea71b8e8-2e5e-4e32-b105-7ab20cfce954", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "donaldkennedy", + "reviewDate": "2022-05-15T18:26:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "64aec1d0-c0cc-49a0-99aa-bf3211142fa5", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "salazarjennifer", + "reviewDate": "2021-08-19T06:51:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f3127a93-543b-4ec2-9cdb-c98c4cd1600b", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "hfoster", + "reviewDate": "2022-09-26T13:06:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0636486b-37c4-4c2f-9c4d-c395c42a2f38", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "smithjoseph", + "reviewDate": "2021-01-17T10:12:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Pro (Red)", + "description": "This Amazing Keyboard Pro (Red) is rated 4.1 out of 5 by 9.\n\nRated 4 out of 5 by B1b_infrin from Excellent performance in a small portable keyboard This keyboard allows you to make your gaming experience easy. For small work, it is well designed but is still easy to use. If you need a small keyboard when you're at home and want quality performance,", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-04-05T18:28:10", + "price": 751.63, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-06-03T00:50:45", + "newPrice": 793.09 + }, + { + "priceDate": "2021-11-25T00:50:45", + "newPrice": 825.74 + }, + { + "priceDate": "2022-05-19T00:50:45", + "newPrice": 743.62 + }, + { + "priceDate": "2022-11-10T00:50:45", + "newPrice": 733.89 + }, + { + "priceDate": "2022-11-19T00:50:45", + "newPrice": 751.63 + } + ] + }, + { + "id": "dfbe1704-dc5b-467c-b3a3-a3b8df5a6c28", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "barnesjason", + "reviewDate": "2021-08-09T06:34:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7b2f80e7-74c2-4b23-ab48-4bd6afda6850", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wmullen", + "reviewDate": "2021-06-03T00:50:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0e693e82-2342-4c68-9253-902199d468b3", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daviddavid", + "reviewDate": "2022-11-10T21:51:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4020bdfe-2c0d-44e9-884a-83338087404a", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberly59", + "reviewDate": "2022-07-13T21:10:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bba8f093-3785-421b-b31a-66f63572461d", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnsonmegan", + "reviewDate": "2022-04-10T14:07:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Pro (Black)", + "description": "This Awesome Phone Pro (Black) is a very similar phone to the iPhone 8+, but has a better design and looks in a different way. Like the iOS 8, it has a higher resolution camera so you have more exposure control than if you had to put out a separate white phone. It's got Touch ID to read your call history, and it has an internal battery so you", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-03-25T12:35:05", + "price": 652.58, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-07T19:15:27", + "newPrice": 659.12 + }, + { + "priceDate": "2021-08-02T19:15:27", + "newPrice": 669.4 + }, + { + "priceDate": "2022-02-25T19:15:27", + "newPrice": 671.68 + }, + { + "priceDate": "2022-09-20T19:15:27", + "newPrice": 638.95 + }, + { + "priceDate": "2022-11-18T19:15:27", + "newPrice": 652.58 + } + ] + }, + { + "id": "b8022e23-126b-4ae1-b5c9-8ccaef993dfa", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniebates", + "reviewDate": "2022-03-24T12:44:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7f39fc12-43d5-4e63-b4c3-7a666cbaa9cd", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "jesse42", + "reviewDate": "2021-01-07T19:15:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5757c35d-fffb-4e6e-9355-86624885044b", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelle89", + "reviewDate": "2022-01-06T13:27:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1c38775c-f0fa-4433-8dd4-f619e1a71fcd", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "briansuarez", + "reviewDate": "2022-09-21T11:45:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7a1b1ab7-4d41-4674-9b8b-c5b97a3a54af", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "whiteemily", + "reviewDate": "2022-04-26T22:28:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4095bcc9-afee-4c0e-a048-d57405ef0b14", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "chelsea16", + "reviewDate": "2021-12-14T10:41:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "358488bd-6356-4c6c-94a3-770831bc5750", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "ruthallen", + "reviewDate": "2021-02-07T20:23:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c1de9b4c-d3d6-4575-a6b9-e6e0a665cc29", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamswarren", + "reviewDate": "2022-01-30T14:27:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "05090214-609f-4bc6-bb9e-0f21de32c914", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "nperry", + "reviewDate": "2022-02-21T12:57:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "33d6d8c4-6959-498e-9c26-0435836e94d2", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "parksbryan", + "reviewDate": "2022-08-27T20:40:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Mini (Steel)", + "description": "This Awesome Stand Mini (Steel) is rated 4.8 out of 5 by 41.\n\nRated 5 out of 5 by krp from Great looking for the price! I bought this for my daughter to be very creative for a family day and it is easy to install. The fit is great and the construction is very comfortable. I did use it for lunch hours, just about as well. Would recommend", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-03-17T22:07:51", + "price": 162.15, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-12-07T05:51:06", + "newPrice": 168.46 + }, + { + "priceDate": "2022-03-17T05:51:06", + "newPrice": 163.71 + }, + { + "priceDate": "2022-06-25T05:51:06", + "newPrice": 148.84 + }, + { + "priceDate": "2022-10-03T05:51:06", + "newPrice": 152.66 + }, + { + "priceDate": "2024-03-31T05:51:06", + "newPrice": 162.15 + } + ] + }, + { + "id": "622e0524-33fe-45a2-a735-3b805fe53667", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "esmith", + "reviewDate": "2021-12-07T05:51:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8d65e087-06d0-448a-a21a-547b5c3262c5", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "gonzalesashley", + "reviewDate": "2022-02-20T20:39:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b1c21a5d-8618-4575-b355-39e466dbfc29", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "palmerconnie", + "reviewDate": "2021-12-09T01:54:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4e3e2197-3beb-4fd4-9168-0fafb5b990eb", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "zamorakerri", + "reviewDate": "2022-10-03T18:08:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "737bb123-1877-41f1-8b6d-a2a5aa605bf6", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "oliverruth", + "reviewDate": "2022-09-05T21:33:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76049698-2114-412b-9fc8-55748ea6056c", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "product", + "name": "Amazing TV 3000 (Silver)", + "description": "This Amazing TV 3000 (Silver) is an amazing movie. It's got something for everyone. And what better way than to see it. Let's all enjoy this amazing movie.\"\n\n\"I'm really pleased to say that this series is now my favorite TV that's ever aired so I thought that by the time it started with episodes 5-6", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-09-15T13:35:22", + "price": 600.58, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-01-04T22:36:13", + "newPrice": 542.83 + }, + { + "priceDate": "2021-07-24T22:36:13", + "newPrice": 632.48 + }, + { + "priceDate": "2022-02-10T22:36:13", + "newPrice": 599.65 + }, + { + "priceDate": "2022-08-30T22:36:13", + "newPrice": 620.96 + }, + { + "priceDate": "2023-12-20T22:36:13", + "newPrice": 600.58 + } + ] + }, + { + "id": "e2c52b7b-981b-4a22-b99a-07b930ec43ef", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "williamsantos", + "reviewDate": "2021-10-30T14:37:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "20997b99-7d8a-4393-b8a7-fffc999e37c1", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "prattdavid", + "reviewDate": "2021-03-16T12:46:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "715276c5-22dc-4879-a439-7de4dc31b5fb", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "riosstacy", + "reviewDate": "2022-08-31T05:56:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9362b704-9092-41b3-8639-bfc9d1d4855a", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "francisco79", + "reviewDate": "2021-01-04T22:36:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6da68beb-b0cf-4883-8b9c-3596e2a1885b", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "sedwards", + "reviewDate": "2021-08-01T19:38:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7bd813ac-09ff-4478-91b5-d6ccb4f1c9fb", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "marymcpherson", + "reviewDate": "2021-04-22T21:52:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f7fc36ab-dc05-405f-a111-ef9a8b78513a", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "jacksonkimberly", + "reviewDate": "2022-07-04T00:49:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6b8dfed6-12f3-4978-a2c6-c607ccfde19c", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "williamsjesus", + "reviewDate": "2021-06-30T00:51:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b24aa3b2-b265-4779-abf8-36c86f10438a", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "zbarber", + "reviewDate": "2022-05-17T19:49:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8ab5a696-d37b-4089-b9ea-be99b2a87cbc", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "danielwilliams", + "reviewDate": "2021-12-07T06:45:13", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2b7f95fb-6013-47bc-8b99-73b3c9063457", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "elizabethbryant", + "reviewDate": "2022-01-24T05:47:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0c211af7-9042-48c7-85f6-c18bd4ac55b9", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "yjohnson", + "reviewDate": "2021-06-07T04:33:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "45c72d9a-05a7-4d29-a922-b6e903866a48", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "taylortom", + "reviewDate": "2021-02-20T12:49:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "productId": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Mini (Red)", + "description": "This Awesome Keyboard Mini (Red) is designed with ease of use and customization in mind. The Mini is designed to be used wherever you are working with keyboards and with ease of interaction.\n\n\"With the help of a large number of independent suppliers throughout the world, our system is able to accommodate as many as 12 keyboards, the most advanced keyboards imaginable.\" – Tim C.\n\nThe Mini is available in black or gray with a white, or a blue.\n", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-10-29T09:22:00", + "price": 545.54, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-05-26T15:50:24", + "newPrice": 511.15 + }, + { + "priceDate": "2021-06-17T15:50:24", + "newPrice": 495.53 + }, + { + "priceDate": "2024-07-18T15:50:24", + "newPrice": 545.54 + } + ] + }, + { + "id": "f795baab-d17a-421f-99ad-ba01c5bcccb1", + "productId": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evansjohn", + "reviewDate": "2021-06-13T15:35:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e59a5de4-dbef-44a4-afc3-72201cde1fe5", + "productId": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vbeck", + "reviewDate": "2021-05-26T15:50:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "3a960cbd-3e97-4336-ad44-6b6cc7601168", + "productId": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "egibbs", + "reviewDate": "2021-06-18T12:18:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Silver)", + "description": "This Premium Computer Super (Silver) is still available as an accessory.\n\nIn addition to the standard Super PC, there are further upgrades which will improve the overall operating experience.\n\nCompetitive gaming (PC) is becoming more and more a luxury. We recently saw a big increase in the number of", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-06-10T18:50:23", + "price": 666.85, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-01-07T06:51:38", + "newPrice": 641.5 + }, + { + "priceDate": "2023-08-08T06:51:38", + "newPrice": 666.85 + } + ] + }, + { + "id": "36eb7a92-f710-44c2-967b-4851c49062b0", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "umcintyre", + "reviewDate": "2022-10-15T09:02:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c4642c7c-17bb-4e9a-9d7a-6bbdd272debc", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "yswanson", + "reviewDate": "2022-11-02T16:45:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "acafc06b-760e-40e6-afd6-8d21feb21d95", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael45", + "reviewDate": "2022-06-29T18:51:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8801afe4-8162-4bb6-a6b3-fefb98bf2cd1", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "timothyandersen", + "reviewDate": "2021-05-03T01:43:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "813f58c5-1f26-4657-a7a8-c49c924a7bd2", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "seanwalker", + "reviewDate": "2021-01-07T06:51:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f3f62794-5968-4632-b636-2038ef112942", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "mrodriguez", + "reviewDate": "2022-10-27T18:01:57", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8170d031-321c-42d2-8d86-cf9257b476c3", + "productId": "8170d031-321c-42d2-8d86-cf9257b476c3", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Micro (Red)", + "description": "This Amazing Phone Micro (Red) is a truly excellent smartphone. If you're using a larger handset, we have no doubt your smartphone will do better. If it", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-12-21T20:44:59", + "price": 984.41, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2019-12-21T20:44:59", + "newPrice": 1072.37 + }, + { + "priceDate": "2025-04-24T20:44:59", + "newPrice": 984.41 + } + ] + }, + { + "id": "5c1eb848-3e18-417b-9586-a7e107eabe79", + "productId": "5c1eb848-3e18-417b-9586-a7e107eabe79", + "category": "Media", + "docType": "product", + "name": "Luxe TV Pro (Red)", + "description": "This Luxe TV Pro (Red) is a solid product, though it has some issues. It has a hard case that needs replacing often. This is definitely not ideal, but my girlfriend agrees.\n\n\nPros:\n\n\n- Cheap to buy\n\n- Built", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-06-30T10:07:05", + "price": 468.05, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2022-02-16T17:32:56", + "newPrice": 428.37 + }, + { + "priceDate": "2022-02-17T17:32:56", + "newPrice": 460.33 + }, + { + "priceDate": "2022-02-18T17:32:56", + "newPrice": 423.34 + }, + { + "priceDate": "2025-05-25T17:32:56", + "newPrice": 468.05 + } + ] + }, + { + "id": "dfafe2cc-ce5d-4df1-aa9f-9bedca06cd09", + "productId": "5c1eb848-3e18-417b-9586-a7e107eabe79", + "category": "Media", + "docType": "customerRating", + "userName": "joshuawong", + "reviewDate": "2022-02-16T17:32:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Pro (Red)", + "description": "This Premium Speaker Pro (Red) is a leader on the road to building and delivering the greatest music collection available! It's all about sharing and enjoying, and listening to it! With premium speakers, you will be able listen to all genres and listen just like you would on a traditional studio or the studio-quality speakers you'll like to own on the stand.", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-03-15T11:28:37", + "price": 980.29, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-01-29T22:28:30", + "newPrice": 899.14 + }, + { + "priceDate": "2023-11-18T22:28:30", + "newPrice": 980.29 + } + ] + }, + { + "id": "81686c9a-668a-4b53-8795-0eeff3f11478", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "johnmartinez", + "reviewDate": "2021-08-07T12:44:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f66f8fde-a03c-4d3f-a6b0-a52f6a09f9a0", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "nwilliams", + "reviewDate": "2021-06-10T22:18:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9415971b-45f9-412e-8ec2-e302bb351173", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "ndelgado", + "reviewDate": "2021-03-15T00:23:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b651e664-bd01-4f61-923f-a1e24012793f", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "xgoodman", + "reviewDate": "2021-12-24T20:45:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2016170d-a512-4f41-a563-6dfa1429cbe3", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "yvonne64", + "reviewDate": "2022-04-08T23:01:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "62cea979-d75f-4988-8ffa-2103d1bdf627", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "heather92", + "reviewDate": "2021-01-29T22:28:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7131d9fe-dd74-43cd-9aed-341ff3f37df5", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "heatherbarnes", + "reviewDate": "2022-12-28T07:57:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "product", + "name": "Premium Filter Ultra (Red)", + "description": "This Premium Filter Ultra (Red) is equipped without any filters but is able to filter through any filter.\n\nUltra Ultra Premium filter Premium filter (Red)\n\nPremium", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-09-01T20:00:42", + "price": 676.76, + "stock": 85, + "priceHistory": [ + { + "priceDate": "2021-02-04T09:51:51", + "newPrice": 705.17 + }, + { + "priceDate": "2022-01-06T09:51:51", + "newPrice": 706.38 + }, + { + "priceDate": "2022-12-08T09:51:51", + "newPrice": 636.52 + }, + { + "priceDate": "2024-07-02T09:51:51", + "newPrice": 676.76 + } + ] + }, + { + "id": "1c4c286a-efd5-4ae4-bf51-a8cc2f3c9ad3", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "sarahscott", + "reviewDate": "2021-07-01T11:44:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c7e2d4a8-c2b6-490f-80c2-b91ab83173c8", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "fergusonjoshua", + "reviewDate": "2022-07-06T16:53:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c0ad4797-7869-4e5d-94a1-c782406c72b1", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "pollardconnie", + "reviewDate": "2021-03-29T07:34:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d24a95be-f29c-446d-88ad-211518a7fdd2", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "ashleymccoy", + "reviewDate": "2021-06-11T09:41:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "69a253b6-c675-4a18-8ef0-56488fdcc2cc", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "gary65", + "reviewDate": "2022-03-12T14:12:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "66dabd92-4541-45ae-b746-64f1b195bea8", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "melissalee", + "reviewDate": "2021-02-04T09:51:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2295062f-97f3-4d22-bb93-bdc185b8610e", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "turnerjames", + "reviewDate": "2022-08-25T08:11:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b2500b79-096b-44c2-a5f9-9e8a1751e84b", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "nhudson", + "reviewDate": "2022-12-08T18:28:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Super (Black)", + "description": "This Amazing Mouse Super (Black) is rated 5.0 out of 5 by 6.\n\nRated 5 out of 5 by Anonymous from Fantastic price for the amazing, but still great! I just ordered the 7th from CVS because I wanted to use it as my mouse. If you have a mouse or want to keep one for yourself, I recommend this purchase. No more waiting around for a new mouse to arrive that is actually perfect!\n\nRated 4 out of 5 by G", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-12-25T06:43:37", + "price": 826.2, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-07-11T12:32:56", + "newPrice": 810.83 + }, + { + "priceDate": "2022-03-09T12:32:56", + "newPrice": 839.45 + }, + { + "priceDate": "2022-11-05T12:32:56", + "newPrice": 805.07 + }, + { + "priceDate": "2025-07-30T12:32:56", + "newPrice": 826.2 + } + ] + }, + { + "id": "ed95fded-a8e3-4b30-adaa-aa5686b49726", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "waltoncurtis", + "reviewDate": "2021-09-15T03:23:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "300e24cc-9d56-40ce-9741-b72d2fb09cd8", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "debbie78", + "reviewDate": "2021-11-16T20:28:58", + "stars": 5, + "verifiedUser": false + }, + { + "id": "931fc8f3-e492-44bb-8e77-937b2ab3f796", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zacharymorris", + "reviewDate": "2022-02-23T14:19:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ab1fee89-5f8e-4a81-9bf9-8e27d62c7a9a", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "olsonpaul", + "reviewDate": "2022-07-24T17:42:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3e6f735c-c674-4763-88d4-7e65f234c25f", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tjohnson", + "reviewDate": "2022-05-08T15:47:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "495109b8-a7d8-40d6-bcf7-2801279e09b1", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "coxdaniel", + "reviewDate": "2021-07-11T12:32:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2e91a640-2669-406a-9142-0a89a5920c1e", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xmaxwell", + "reviewDate": "2022-05-17T04:06:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "26af2297-f3ef-4277-9dfe-db40c57f0c21", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashleyknight", + "reviewDate": "2021-07-24T22:58:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "388e3831-652c-4f79-8367-9fb7a333e986", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "josemcdonald", + "reviewDate": "2022-11-06T01:29:56", + "stars": 5, + "verifiedUser": true + }, + { + "id": "99a94406-1528-4ea8-b862-238bc3c1209d", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eric81", + "reviewDate": "2021-12-16T12:42:08", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d7d69d18-ba12-4f81-a48c-8d4e3af4f388", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryangraves", + "reviewDate": "2022-01-09T03:03:16", + "stars": 5, + "verifiedUser": true + }, + { + "id": "15fd3d54-3678-4100-9498-a03d212c0162", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "product", + "name": "Luxe TV 3000 (Silver)", + "description": "This Luxe TV 3000 (Silver) is currently being produced as part of the Limited Edition Series of \"Super Mario Maker 2\" Series. A limited edition, non-discovered original series, with a total production budget of $20 million, was introduced in 1986 during a special presentation by the director of the Nintendo Entertainment System, Nintendo of America (NATS), in New York City.\n\n", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-11-28T19:35:27", + "price": 924.69, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-07-02T17:04:53", + "newPrice": 1015.4 + }, + { + "priceDate": "2025-04-24T17:04:53", + "newPrice": 924.69 + } + ] + }, + { + "id": "c0be0124-be6a-4fb3-82d7-fcbe6cd301d6", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "williamwagner", + "reviewDate": "2022-08-14T09:39:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d65b43e-6fbb-4cc1-8ea3-b0827139c932", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "paulapearson", + "reviewDate": "2022-05-30T01:46:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a032a433-dbf7-4585-84db-0976313a043d", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "tsnow", + "reviewDate": "2022-05-12T18:05:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7b2f0a46-9754-478a-bc8f-253ee08e93cd", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "danielschmitt", + "reviewDate": "2022-04-09T09:55:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "511f0bd5-66a7-4a67-8323-48086b211e8d", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "ramirezjeffrey", + "reviewDate": "2021-07-26T08:59:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "aed7d26e-3456-43f2-9405-f89017d46c3f", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "daviddiaz", + "reviewDate": "2021-12-01T13:57:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "75aefaf3-1373-4cf1-b121-630992e7bbe5", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "justin63", + "reviewDate": "2022-11-24T14:29:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4670ad70-5194-4d3a-a0af-eb6db9d73c7e", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "hmorrison", + "reviewDate": "2022-08-03T23:30:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "26c227d8-8308-4037-958f-8bb5d4ef8164", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "susanheath", + "reviewDate": "2022-10-11T09:44:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "465fe20f-2573-4fb8-bbd8-f7d11c9e36d3", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "lamfelicia", + "reviewDate": "2022-12-26T09:11:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eecc9131-e1e8-4247-a978-055196de564b", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "allenjohnson", + "reviewDate": "2022-11-19T15:53:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3cc5a9d6-b018-4626-bcdf-0c12a6a704cc", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "johnthompson", + "reviewDate": "2021-12-14T08:38:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "08cd1a5c-1f67-49de-91c0-e681099af0c0", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "johnlewis", + "reviewDate": "2021-11-30T12:45:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "815676f6-20af-4764-b2bf-66ab7211ac08", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "zmccoy", + "reviewDate": "2022-10-30T03:57:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f4497e77-25f1-4e1c-9626-3f3c421a6622", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "lesliebeck", + "reviewDate": "2021-12-08T11:13:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "19a9477e-21eb-4dab-b85e-9bd6eb3f65a2", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "jenniferbaldwin", + "reviewDate": "2021-07-02T17:04:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bbd23075-9315-4b20-9c7d-4128f1432cf6", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "ashleycollins", + "reviewDate": "2022-02-06T06:18:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Silver)", + "description": "This Basic Phone Ultra (Silver) is coming out now.", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-04-22T01:43:35", + "price": 927.66, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-03-06T19:08:43", + "newPrice": 1011.34 + }, + { + "priceDate": "2021-09-18T19:08:43", + "newPrice": 913.17 + }, + { + "priceDate": "2022-04-02T19:08:43", + "newPrice": 901.22 + }, + { + "priceDate": "2022-10-15T19:08:43", + "newPrice": 909.66 + }, + { + "priceDate": "2023-07-14T19:08:43", + "newPrice": 927.66 + } + ] + }, + { + "id": "0701e4ee-cd86-4b2f-a672-a7abf39adf63", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "jenny03", + "reviewDate": "2022-06-26T08:19:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7fbacb7d-73f6-41d7-873f-87372d0d29c1", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "henry17", + "reviewDate": "2022-04-26T07:42:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "be49f50c-a7ad-488c-9b28-a1d44c0ca5c5", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "marymartin", + "reviewDate": "2022-01-31T01:55:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "767607ca-9a3c-4aa5-aa77-3f24dfb43bee", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "scottwilliams", + "reviewDate": "2022-10-17T07:47:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "87f2f28b-2191-4246-ac12-ec72a69182ad", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifer22", + "reviewDate": "2022-03-31T00:20:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bb74e8aa-f72a-4738-89b2-5e11e9aec64d", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "clarkfelicia", + "reviewDate": "2021-12-31T21:11:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3930926f-0b85-48b8-b04f-795c886a8ec7", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "umatthews", + "reviewDate": "2021-08-01T22:22:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "041bb880-6f9e-40de-a6c2-c0501b7e6829", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "edward25", + "reviewDate": "2022-04-02T13:59:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "71b890f7-5d8e-4d12-8dd6-3fbd8415c2a4", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "rachel18", + "reviewDate": "2021-03-06T19:08:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "367048f7-9f5f-4d0f-8cc3-3356c18e1c14", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "uwilliams", + "reviewDate": "2022-08-15T21:21:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "35a5272f-fb35-45e4-8efc-91d3ac8fe929", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "hgeorge", + "reviewDate": "2021-05-31T16:50:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a2a67f28-0f45-41b7-a3dd-c5786cb26099", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "nshaw", + "reviewDate": "2021-03-26T00:04:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c018be0e-c5b7-46b1-8b3c-6b6ecf470d9f", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "cassandraavila", + "reviewDate": "2021-12-12T17:01:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d69379a5-552b-4c18-a33c-50dca42da6c2", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "cynthia84", + "reviewDate": "2021-06-26T13:06:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ee541d8f-59ef-4b03-99d6-795321c2c716", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "laura29", + "reviewDate": "2022-05-16T03:39:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fb320325-b59f-4a2d-8c6b-6d877e31acf5", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonesalec", + "reviewDate": "2021-04-24T07:38:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4a5622b4-6651-4712-9935-ea5b4a5bd7d9", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "cabrerapenny", + "reviewDate": "2022-06-24T23:01:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8eade1d5-8c64-4945-863d-bd6354725627", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "gcaldwell", + "reviewDate": "2022-08-03T00:07:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c124481e-7684-48ce-adb6-e41a698ca4eb", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "martinezronald", + "reviewDate": "2022-08-06T06:43:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8a081bcf-f40d-4b7b-ba5d-c9ccb85229db", + "productId": "8a081bcf-f40d-4b7b-ba5d-c9ccb85229db", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Micro (Gold)", + "description": "This Basic Speaker Micro (Gold) is part of a two-part set, called Advanced Micro Devices (AMD).\n\nThe first part of that Micro contains 4 processors: Dual-core 1, 4, 8 cores and 16 threads. The core count is about 2Tbit and the thread count is 6. So that means the AMD Ryzen", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-05-07T12:32:33", + "price": 134.34, + "stock": 71, + "priceHistory": [ + { + "priceDate": "2019-05-07T12:32:33", + "newPrice": 126.72 + }, + { + "priceDate": "2021-06-13T12:32:33", + "newPrice": 131.94 + }, + { + "priceDate": "2023-07-21T12:32:33", + "newPrice": 121.18 + }, + { + "priceDate": "2025-08-27T12:32:33", + "newPrice": 124.36 + }, + { + "priceDate": "2025-08-28T05:32:14.487018", + "newPrice": 134.34 + } + ] + }, + { + "id": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "productId": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "category": "Media", + "docType": "product", + "name": "Awesome TV Mini (Black)", + "description": "This Awesome TV Mini (Black) is rated 3.8 out of 5 by 5.\n\nRated 1 out of 5 by ChrisK10 from Great TV... but it has no stars. Very disappointed in this little guy.\n\nRated 5 out of 5 by Anonymous from Great TV for my 1st 3G\n\nRated 5 out of 5 by Anonymous from Great Value and Great Value", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-12-02T12:15:37", + "price": 797.13, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-09-09T12:26:17", + "newPrice": 757.78 + }, + { + "priceDate": "2021-09-28T12:26:17", + "newPrice": 797.13 + } + ] + }, + { + "id": "2a3e5744-f537-4e73-90fb-1062a49116f2", + "productId": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "category": "Media", + "docType": "customerRating", + "userName": "dcampbell", + "reviewDate": "2022-11-10T03:10:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2a4c949f-6ebd-4f3e-b410-d49f52479ec7", + "productId": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "category": "Media", + "docType": "customerRating", + "userName": "jeffrey99", + "reviewDate": "2022-03-26T06:02:50", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ab805c24-902f-417c-bc8c-309bada2568e", + "productId": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "category": "Media", + "docType": "customerRating", + "userName": "smithjohn", + "reviewDate": "2021-09-09T12:26:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Mini (Red)", + "description": "This Luxe Mouse Mini (Red) is quite comfortable and comfortable to work with. However, this Mini lacks support for USB mice, so I am not sure you will find a solution for installing", + "countryOfOrigin": "Germany", + "rareItem": true, + "firstAvailable": "2020-11-08T13:13:34", + "price": 786.81, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-05-22T12:01:27", + "newPrice": 747.32 + }, + { + "priceDate": "2021-10-29T12:01:27", + "newPrice": 769.08 + }, + { + "priceDate": "2022-04-07T12:01:27", + "newPrice": 825.29 + }, + { + "priceDate": "2022-09-14T12:01:27", + "newPrice": 811.02 + }, + { + "priceDate": "2023-02-17T12:01:27", + "newPrice": 786.81 + } + ] + }, + { + "id": "2cfe586f-4b63-4c70-9e76-4cfc1b772f55", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fpennington", + "reviewDate": "2021-05-22T12:01:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2de7d2ef-67bf-44ca-a39b-12ba3147b9e0", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithsandra", + "reviewDate": "2022-09-15T17:45:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "34cede7f-09da-45c1-be2b-d0a8471bfcdf", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "penasandra", + "reviewDate": "2022-04-19T17:24:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7bee8c7d-1079-420a-94fd-6060788340e5", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "danielleray", + "reviewDate": "2022-02-07T05:25:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fe14d402-8e28-4f53-b513-e1bd7c9ecff9", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidbenjamin", + "reviewDate": "2021-12-19T11:48:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "productId": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "category": "Media", + "docType": "product", + "name": "Amazing TV Super (Steel)", + "description": "This Amazing TV Super (Steel) is a great companion if you are in need of a good show-stopping show at home…\n\nIf you are not in the mood for the show-stopping episodes you are out of luck today, for I hope you won't have to get on the plane, I also have some good news for you…the show-stopping seasons should still be available to pick up on", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-09-09T06:02:10", + "price": 662.77, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-01-29T04:02:44", + "newPrice": 599.22 + }, + { + "priceDate": "2021-08-29T04:02:44", + "newPrice": 666.11 + }, + { + "priceDate": "2022-03-29T04:02:44", + "newPrice": 688.46 + }, + { + "priceDate": "2022-10-27T04:02:44", + "newPrice": 680.64 + }, + { + "priceDate": "2023-01-23T04:02:44", + "newPrice": 662.77 + } + ] + }, + { + "id": "484ac5c2-e331-4f19-9e11-ff736b4841e3", + "productId": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "category": "Media", + "docType": "customerRating", + "userName": "fmccarthy", + "reviewDate": "2022-10-29T03:50:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ad441051-01e9-4174-bc85-821ed8cd8b78", + "productId": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "category": "Media", + "docType": "customerRating", + "userName": "williamsyvonne", + "reviewDate": "2021-01-29T04:02:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "303fc60a-43bc-45ba-a6f9-5c2c6b531b4d", + "productId": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "category": "Media", + "docType": "customerRating", + "userName": "amycampbell", + "reviewDate": "2021-11-09T05:50:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0a322b6d-0a73-4633-aa33-a569511796c0", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Mini (Gold)", + "description": "This Basic Mouse Mini (Gold) is a very accurate and easy to use mouse that's simple to learn and use. It can be put into a small case, put into any of the mouse's buttons and even put into the control button on the keyboard. It works great with any of the many touch", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-03-15T05:43:48", + "price": 607.11, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-03-31T00:02:46", + "newPrice": 566.07 + }, + { + "priceDate": "2024-07-01T00:02:46", + "newPrice": 607.11 + } + ] + }, + { + "id": "d3bcb1d4-c821-4797-a929-046e51bc3f84", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mkeller", + "reviewDate": "2021-07-19T22:21:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3d24fcf7-812c-4922-b4d2-d6130210429b", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael23", + "reviewDate": "2021-06-23T00:04:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "900d3a24-e991-419d-a40c-5da6e2dbb75a", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "apowell", + "reviewDate": "2022-07-07T09:17:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "40b1ed95-e513-4c73-a1d1-7a1f4f66d949", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamhayes", + "reviewDate": "2022-05-07T03:19:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7d487cdf-1498-46aa-ac9a-f497453176c5", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hmoore", + "reviewDate": "2022-05-21T01:07:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "12d9347d-117a-466f-a98a-4169411c620c", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beverlysparks", + "reviewDate": "2022-06-07T05:31:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8ad5151c-5df1-4ada-8da1-d6d02818bff9", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthony45", + "reviewDate": "2022-04-16T18:40:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f2480118-8169-481b-bfd5-0e971843cff0", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lfriedman", + "reviewDate": "2022-02-18T10:32:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3c0b2c65-18cd-4a85-bcac-c56b4887d570", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaron83", + "reviewDate": "2021-04-19T09:21:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0765a28f-87db-4660-8461-bed2e489b176", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "moonrichard", + "reviewDate": "2022-05-05T04:41:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0d9bd8f2-6e9f-4a88-a994-83e5dd54cb68", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wmartinez", + "reviewDate": "2021-07-21T00:21:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "48c9e459-fbd4-4359-b817-c268b2fec5a1", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinkristin", + "reviewDate": "2021-03-31T00:02:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f530eb0c-51de-4f25-9abe-aee14fcf2d82", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andrewstyler", + "reviewDate": "2022-02-20T04:17:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b9a1f018-e675-4d63-b6ac-5517ff897f64", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "juan81", + "reviewDate": "2022-06-02T11:14:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2c2efb98-d4e2-4cef-9b68-7e3e2b2a3a80", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lhurst", + "reviewDate": "2022-07-13T03:20:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e13084eb-821e-4240-8d42-071b504a5a64", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mlee", + "reviewDate": "2022-12-05T05:10:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0c316d25-0346-46cd-b7bb-165f866c451a", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hcurtis", + "reviewDate": "2022-08-18T21:43:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5e71c9b8-443d-4487-a334-dc72ba289861", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "imoyer", + "reviewDate": "2021-10-05T04:36:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e2f0c288-5ea2-4837-acb9-5c32679d1277", + "productId": "e2f0c288-5ea2-4837-acb9-5c32679d1277", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Pro (Silver)", + "description": "This Premium Speaker Pro (Silver) is designed to fit every budget budget without getting in the way of the other members' work, helping you organize and organize, and make the best decisions for your organization. It includes the Quick & Easy (Red) and Power (Green) Speaker Pro (Silver).\n\nFeatures:\n\nCompatibility- This package is compatible with only the latest Apple II Series models, Apple IIx and iMobi Pro 2\n\nSupports up to 10 Apple", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-12-29T15:12:12", + "price": 487.86, + "stock": 10, + "priceHistory": [ + { + "priceDate": "2021-12-12T21:36:17", + "newPrice": 522.78 + }, + { + "priceDate": "2022-12-28T21:36:17", + "newPrice": 453.26 + }, + { + "priceDate": "2025-03-03T21:36:17", + "newPrice": 487.86 + } + ] + }, + { + "id": "d77f7f45-098c-4def-9639-e22406ebd1e6", + "productId": "e2f0c288-5ea2-4837-acb9-5c32679d1277", + "category": "Media", + "docType": "customerRating", + "userName": "qbell", + "reviewDate": "2021-12-12T21:36:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "051d0831-998c-4f3f-ba28-c483c537f74b", + "productId": "e2f0c288-5ea2-4837-acb9-5c32679d1277", + "category": "Media", + "docType": "customerRating", + "userName": "qking", + "reviewDate": "2022-12-29T20:49:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "product", + "name": "Basic Speaker 3000 (Black)", + "description": "This Basic Speaker 3000 (Black) is a speaker that allows you to select a specific topic with your microphone.\n\nWhat Makes this Speaker Unique?\n\nWhile the speakers are made of black, this Speaker can be customized to have an amazing effect upon your listening experience.\n\nIf you'd like a speaker for everyday speech, a white speaker, you'll probably want an alternative speaker, the Red Tone Power Speaker or", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-03-02T01:27:23", + "price": 506.39, + "stock": 6, + "priceHistory": [ + { + "priceDate": "2021-03-01T21:49:02", + "newPrice": 458.55 + }, + { + "priceDate": "2021-08-22T21:49:02", + "newPrice": 523.77 + }, + { + "priceDate": "2022-02-12T21:49:02", + "newPrice": 550.02 + }, + { + "priceDate": "2022-08-05T21:49:02", + "newPrice": 495.33 + }, + { + "priceDate": "2023-01-03T21:49:02", + "newPrice": 506.39 + } + ] + }, + { + "id": "9240e874-8b27-4f24-8234-62a385fcb147", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "elijah06", + "reviewDate": "2021-08-05T15:45:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a4e30ddc-1bdf-4ab1-88e8-fa74e23066f2", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth88", + "reviewDate": "2022-02-27T00:31:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "278bb9c2-66ed-45b7-b524-82d296dae7dd", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "kevin10", + "reviewDate": "2021-08-13T09:21:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "28cdb2c3-6321-4501-9a2e-f0e9a2ea9773", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "savannahhunt", + "reviewDate": "2021-03-01T21:49:02", + "stars": 5, + "verifiedUser": false + }, + { + "id": "46ab3206-d5b1-4068-bca2-1eb9ff964899", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "gordonemily", + "reviewDate": "2021-06-28T10:27:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "25c1c9a8-03ae-4e31-a8c1-fa051f428bc8", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "julierivera", + "reviewDate": "2021-04-20T17:48:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "892dcc82-485a-4ca8-afc4-f496fbd1b9a1", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "zsantos", + "reviewDate": "2021-05-24T10:56:55", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e7cdd5b5-4fc0-45b9-ac4c-fd12922f9bce", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "copelandsusan", + "reviewDate": "2021-05-29T18:00:42", + "stars": 5, + "verifiedUser": true + }, + { + "id": "17e11cfa-3ff3-4909-975b-5dfd7911e781", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "mark46", + "reviewDate": "2021-09-15T02:20:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3eafde67-c383-449e-a353-3a231e6e404b", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "coreydonaldson", + "reviewDate": "2021-08-22T07:04:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d582e256-abd6-4afe-a8e4-220079dfa2e1", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "burnsmario", + "reviewDate": "2021-10-07T02:05:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "88ca4746-b1bb-453e-b327-e812396283da", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "jessicadavidson", + "reviewDate": "2021-04-30T05:56:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c52276b6-e253-4776-871e-1fd6012fd5f2", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "tammymartinez", + "reviewDate": "2022-01-25T10:00:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ef79e49c-9f5a-4a2a-a1d0-4f80fc54b99e", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "zwagner", + "reviewDate": "2022-07-04T19:47:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "90352d4e-f5a7-4636-a1d8-2e44402679c2", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "browndebra", + "reviewDate": "2021-07-29T13:40:56", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7cea8d69-0e69-40f6-b793-1a3f376de6dc", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "lawrenceerin", + "reviewDate": "2021-10-16T03:20:51", + "stars": 4, + "verifiedUser": true + }, + { + "id": "79fcae6a-468c-4528-8504-9126734c1180", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "justinfletcher", + "reviewDate": "2022-08-06T14:03:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3550a3bd-ae60-43b2-b5b6-66f7c0275a75", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "jonathan38", + "reviewDate": "2021-09-13T11:46:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dc80916b-f615-4bf7-918e-b3be91f9c817", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "jeremydavis", + "reviewDate": "2021-07-04T09:33:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard 3000 (Black)", + "description": "This Basic Keyboard 3000 (Black) is an automatic keyboard that should last you through multiple levels when you want to start or finish the application. It features an advanced layout with unique keys - up to 7 keys, and supports keyboard shortcuts and shortcuts- and is available in a wide range of colors -", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-03-18T21:41:22", + "price": 694.43, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-01-31T09:54:18", + "newPrice": 703.6 + }, + { + "priceDate": "2022-02-28T09:54:18", + "newPrice": 673.39 + }, + { + "priceDate": "2025-05-16T09:54:18", + "newPrice": 694.43 + } + ] + }, + { + "id": "1d4df7a2-c22d-476d-9e8c-aa92b3fad0d0", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "salassarah", + "reviewDate": "2021-04-23T12:44:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7ac94ea7-69d7-452c-abd3-a6e68aecb8d6", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brookssean", + "reviewDate": "2021-05-05T13:44:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b38d2e0a-9539-4937-a868-77f873fcc545", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas90", + "reviewDate": "2022-02-28T21:30:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "29881634-190e-4a88-b668-eb891509cce9", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "huntallen", + "reviewDate": "2021-02-07T23:21:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0276dcd6-a99f-404c-be19-2714a528ab7c", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stacey30", + "reviewDate": "2021-06-15T15:27:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "94dfe962-8dbb-4a47-9a09-3c53ca4fdf87", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shawnwalker", + "reviewDate": "2021-01-31T09:54:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "16acacfb-2c32-4959-ab8c-7d875bd134c1", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mcharles", + "reviewDate": "2021-12-10T04:49:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1be0f89f-f766-466e-913b-12bc9aad384a", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gabriellaleonard", + "reviewDate": "2021-06-17T14:23:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7b57c3fe-7b5c-4525-98d6-adac11f6169c", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lrichardson", + "reviewDate": "2021-03-10T13:03:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "product", + "name": "Luxe TV Pro (Black)", + "description": "This Luxe TV Pro (Black) is made by Xilinx and is a high-quality, premium-grade TV with high-definition features in a modern look.\n\nXilinx X400XXC HD Pro XE (Black) is an upgrade to", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-06-12T10:00:28", + "price": 738.6, + "stock": 77, + "priceHistory": [ + { + "priceDate": "2021-02-14T07:42:40", + "newPrice": 691.78 + }, + { + "priceDate": "2021-12-10T07:42:40", + "newPrice": 760.39 + }, + { + "priceDate": "2022-10-05T07:42:40", + "newPrice": 738.15 + }, + { + "priceDate": "2024-05-01T07:42:40", + "newPrice": 738.6 + } + ] + }, + { + "id": "e6e66ccb-0322-40d5-98b5-3637752166d3", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "brandy27", + "reviewDate": "2022-07-25T05:39:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8258e529-3fa6-4574-b56f-c381919a5da1", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "emilybeck", + "reviewDate": "2021-04-17T03:00:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6680cb65-1a35-4a10-8f84-911b08d268fc", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "james36", + "reviewDate": "2021-03-27T02:43:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "448fd01b-f263-4400-b149-d3910fa73bab", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "hcabrera", + "reviewDate": "2022-05-25T11:10:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "633a944c-3114-443c-a63a-4c3d63ee3972", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "qsweeney", + "reviewDate": "2021-02-14T07:42:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1b8e27a8-92a6-4f44-ae02-0180f3f691b1", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "dcopeland", + "reviewDate": "2021-08-26T07:00:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "da3db59d-71fa-47aa-9a35-5adc3c47bdc5", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "bryanpadilla", + "reviewDate": "2022-10-05T23:03:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Steel)", + "description": "This Premium Stand Micro (Steel) is fitted with a 4.8-inch LED, LED flash and a 1,000 millimeters (2.4 inches) field of view. The Premium Stand Micro features a 12-hour battery life, provides maximum charging current of 60 watts and no over-voltages (no over, under load, over 5-10 minutes).\n\nFeatures & Benefits\n\n*The Premium Stand Micro is available in steel or titanium steel.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-07-17T03:04:03", + "price": 921.16, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-01-04T03:19:23", + "newPrice": 877.99 + }, + { + "priceDate": "2022-12-31T03:19:23", + "newPrice": 1009.88 + }, + { + "priceDate": "2024-08-31T03:19:23", + "newPrice": 921.16 + } + ] + }, + { + "id": "364c6c28-8fc4-4396-93b2-a76453acba58", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "lauren51", + "reviewDate": "2021-04-15T16:11:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "71059a8f-9f63-4c38-9d07-d05e6aedaefd", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "qguzman", + "reviewDate": "2021-02-25T06:55:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a2a2c98f-aaaf-4e13-b8d4-c9ecc715ebf0", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "cchung", + "reviewDate": "2021-05-22T21:30:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ead5c8ab-1c62-414f-af8f-0c9ae2d916d2", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "michelleorozco", + "reviewDate": "2022-08-06T02:58:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "afb4f604-6778-4b8c-8708-781b0a3e64a6", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "morgancandice", + "reviewDate": "2022-09-16T11:35:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c641dc9f-30f6-4834-b672-cc33a32f8e24", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "alicia35", + "reviewDate": "2022-12-28T03:31:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d54f89fe-2121-469b-bd79-7853e76f84e3", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "tammy24", + "reviewDate": "2022-08-28T04:08:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "85510c3f-2bc9-4f06-a23d-4695793105ce", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "jmurphy", + "reviewDate": "2021-07-30T20:58:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a36324dd-9dfc-4696-a703-cdec429ab68b", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "yjohnson", + "reviewDate": "2021-07-22T14:06:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7065fb9a-9308-4976-a9a0-9a00708cb65b", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "nina29", + "reviewDate": "2021-11-08T04:31:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c559fb48-28cb-42e7-ab3c-0e9ee8faa205", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "christopher83", + "reviewDate": "2022-07-11T23:20:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "eaccf4c3-6c2c-42c5-ab7d-c2d82c5b7ca7", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "kennethmartin", + "reviewDate": "2022-06-15T08:16:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9f3cc0ac-43a4-4527-b3ec-f62d68d70813", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "halecheryl", + "reviewDate": "2021-01-04T03:19:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e656437e-5709-4bd5-bb52-d717e8e8487a", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "beanlauren", + "reviewDate": "2021-11-28T20:16:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ff0d73a2-7d65-409e-9c95-f80cfb3661e4", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacksoncarol", + "reviewDate": "2022-02-27T12:32:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "00574a11-7d70-43b4-b59a-52a19f828128", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "hmcconnell", + "reviewDate": "2022-12-31T15:40:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c72c8cda-ae9c-427f-9243-157f81c67c40", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "megansimpson", + "reviewDate": "2022-12-08T01:25:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "070804fc-9f19-4815-9da9-4f74717a90f3", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "vthomas", + "reviewDate": "2022-01-23T18:26:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "181a463d-10a4-4bcd-8cc8-24466ecac2a2", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "patricia42", + "reviewDate": "2022-07-31T06:49:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2050baae-9fe7-4e48-a9a8-19eee9437aaa", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "wunderwood", + "reviewDate": "2021-02-18T21:21:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "product", + "name": "Amazing TV 3000 (Gold)", + "description": "This Amazing TV 3000 (Gold) is available at Amazon.\n\nAmazon Prime Gold or Amazon Prime Gold Only.\n\nRead More", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-02-27T14:04:27", + "price": 303.14, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-01-19T09:10:28", + "newPrice": 317.72 + }, + { + "priceDate": "2021-07-13T09:10:28", + "newPrice": 332.16 + }, + { + "priceDate": "2022-01-04T09:10:28", + "newPrice": 289.18 + }, + { + "priceDate": "2022-06-28T09:10:28", + "newPrice": 302.31 + }, + { + "priceDate": "2022-12-20T09:10:28", + "newPrice": 278.63 + }, + { + "priceDate": "2023-10-10T09:10:28", + "newPrice": 303.14 + } + ] + }, + { + "id": "02b3f77f-1542-4067-9f57-3828eaeac084", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "jhenderson", + "reviewDate": "2021-03-11T12:19:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4fcf308f-c89d-4523-9f78-ba672c293b24", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "chelseabaker", + "reviewDate": "2022-08-27T11:50:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5f20166a-1331-495f-9561-86f6fd0fc88c", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "ryantracy", + "reviewDate": "2022-12-23T05:37:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d8bb3393-0e3c-418b-bc70-b93d93664013", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "sara73", + "reviewDate": "2021-07-19T01:43:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e51b257e-47b3-41df-85f5-900a23ec1c9b", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "chavezchristopher", + "reviewDate": "2022-04-09T15:40:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a9e0eb40-c62d-44b0-85a0-b19f8401c6ca", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "kelly20", + "reviewDate": "2021-07-22T13:43:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7bb36872-3b03-462d-ae1f-807e646de371", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "melissamarsh", + "reviewDate": "2021-03-02T02:25:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1eb240b8-fbcd-4cde-b222-acf2cf774600", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "samuel41", + "reviewDate": "2021-11-12T02:01:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e2aac670-b1d0-45e3-855c-afa777124c36", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "morenomichael", + "reviewDate": "2021-01-19T09:10:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eec46330-ccb7-4942-857f-a325c36015a3", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "hamptonstephen", + "reviewDate": "2021-03-19T05:00:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d8fccd49-0172-406a-b931-19f5ea85cbd2", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "jenniferthompson", + "reviewDate": "2022-05-21T06:02:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e90890f8-e473-4148-9b9a-408733530ce5", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "seanodom", + "reviewDate": "2021-01-26T00:01:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3fb785a8-dcc0-4c0f-b6b2-2975423f2e5a", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "ravenconley", + "reviewDate": "2022-07-07T00:14:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Ultra (Gold)", + "description": "This Luxe Keyboard Ultra (Gold) is just as good or better than its competitor and should come as no surprise. This is an excellent keyboard and will last for many years against any hard pedal and it does the job for $5! Its sharp feel and the keyboard can fit any size finger and feel perfectly comfortable to operate. I recommend it. It's a very good keyboard. But do go with its $10-12 bucks instead of $55-$60 over this one.", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-11-29T07:06:55", + "price": 536.65, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-03-15T05:52:47", + "newPrice": 536.55 + }, + { + "priceDate": "2022-10-14T05:52:47", + "newPrice": 536.65 + } + ] + }, + { + "id": "3a519e34-5710-4339-8617-1bbcdaa4810d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vrobbins", + "reviewDate": "2022-07-28T20:12:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d00ef185-e809-4290-a95b-c11bc004108b", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "taylorsheri", + "reviewDate": "2022-07-08T00:43:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8825b3be-b311-4b58-846c-bd175db925d2", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jpeterson", + "reviewDate": "2021-03-15T05:52:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8987f67e-938b-4c74-89d0-4e6143bd215d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kcollins", + "reviewDate": "2022-12-06T21:16:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0b8df49e-d373-4d4d-a5a0-ae80a13ef08d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "teresa32", + "reviewDate": "2021-06-01T06:49:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83876e84-9d0c-4855-881f-f6050031b092", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthony61", + "reviewDate": "2022-06-30T17:04:06", + "stars": 3, + "verifiedUser": false + }, + { + "id": "69a3e6fe-b604-4a03-a5f9-8d60dd4bf3ca", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "adamsrachael", + "reviewDate": "2021-11-19T12:49:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0205a727-2983-47ef-bd1a-aff51d3a30fb", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qgarrett", + "reviewDate": "2022-03-13T21:59:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c20adf0e-9609-44c3-8117-e95a10836522", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joseph17", + "reviewDate": "2022-09-19T08:30:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "215fc14c-df7c-4dc5-aa9a-da891a46f95c", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ian99", + "reviewDate": "2022-08-29T18:34:49", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b2b8ff8f-356c-4565-9a5d-3882f68584a0", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "derek12", + "reviewDate": "2022-02-07T00:34:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b8bf1638-4e74-4fd5-bacc-5a8bda0f893d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jonesmichael", + "reviewDate": "2021-09-01T21:04:13", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2d02d48f-19a0-4c21-878d-f74838eb01ef", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daviselizabeth", + "reviewDate": "2022-11-27T04:59:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "807a13e4-c41a-4cfa-8875-19043d3d4bba", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ubaker", + "reviewDate": "2022-05-19T14:09:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9476a51f-78e0-4002-baba-27a81c2a5a35", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinezheather", + "reviewDate": "2022-05-28T10:49:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2f99d671-510d-475c-9cbd-796073f10f33", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williampage", + "reviewDate": "2022-06-17T05:13:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "03f381b9-c87b-4d11-967e-91e266f0449b", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "heather09", + "reviewDate": "2022-09-22T11:40:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0ed76bdc-a923-4a4b-8070-d4c299e978b0", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kaisermichael", + "reviewDate": "2021-08-16T13:53:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "eec623d5-85f7-4ef2-b3f5-343d06f58128", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithmarie", + "reviewDate": "2021-07-28T05:35:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Mini (Silver)", + "description": "This Basic Keyboard Mini (Silver) is powered by a brand new chip used in many of the other keyboards. It's a little different from the keyboard we're used to, only slightly different.\n\nWhile this simple, simple piece of hardware is pretty cool, it won't do a whole lot for your writing habits. Thankfully, this new keyboard will help you focus on what you're doing the most, and is designed to do just that. It comes with two very clever", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-05-18T08:59:33", + "price": 268.54, + "stock": 77, + "priceHistory": [ + { + "priceDate": "2021-06-03T12:31:35", + "newPrice": 287.12 + }, + { + "priceDate": "2022-06-30T12:31:35", + "newPrice": 294.27 + }, + { + "priceDate": "2022-10-05T12:31:35", + "newPrice": 268.54 + } + ] + }, + { + "id": "2e56ab1f-c3d9-4ee2-8025-3ec9bfeb2c1b", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jtaylor", + "reviewDate": "2022-04-19T06:48:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "20f43fd5-b3ba-4ad3-889b-5a86cb533b1b", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "arice", + "reviewDate": "2021-06-10T23:18:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "afd832ca-c463-4a37-9162-656b273948fb", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "campbellkristen", + "reviewDate": "2022-01-19T10:08:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "06364e65-f4c7-421a-9dac-5df18c324036", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wwhite", + "reviewDate": "2021-06-03T12:31:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "830e781a-5844-404b-8326-92faa3aeca5a", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ggreen", + "reviewDate": "2022-04-29T01:26:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "567c02af-40cb-4935-9333-9fa8981eb45c", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mhenry", + "reviewDate": "2022-05-13T09:06:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "32b0b086-93cb-4f8c-86f9-77bf12d4fad1", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardhurst", + "reviewDate": "2021-09-09T13:03:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "138ae42a-ec7f-4600-bad7-21aa45b2fe3f", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenkinshaley", + "reviewDate": "2021-11-25T21:02:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d3bcce3e-2a3e-40ce-98b9-584687c988af", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wadejonathon", + "reviewDate": "2022-06-30T19:04:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f63341a1-9bca-4a9f-b87b-aa4ffb476c65", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnmorgan", + "reviewDate": "2021-08-09T23:08:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ca2f8329-3ab9-4cc8-920a-7d8f81c41569", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rcarlson", + "reviewDate": "2021-12-10T20:56:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "product", + "name": "Awesome TV + (Steel)", + "description": "This Awesome TV + (Steel) is the latest entry in Steven Soderbergh's series, and it's pretty much always pretty damn funny to see his stuff succeed. The series is based around a young college student, with a passion, who discovers a new way of interacting with people through video games. The first three episodes were a mix of the old and new, from \"It's Okay To Be Human\"", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-05-20T11:08:49", + "price": 570.25, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-05-11T11:09:51", + "newPrice": 605.35 + }, + { + "priceDate": "2024-12-03T11:09:51", + "newPrice": 570.25 + } + ] + }, + { + "id": "2bbcfb79-7afb-4a09-a57f-8899e51dd833", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "chambersvictoria", + "reviewDate": "2021-09-19T15:48:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a49e1a25-72f3-4619-9193-13d497c473fe", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "danielwelch", + "reviewDate": "2022-10-21T20:41:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "52c5acb5-e4f6-4948-b924-ce7b2286c984", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "carly61", + "reviewDate": "2022-11-10T23:25:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "efcf247d-8180-4228-92a2-182134dd1d27", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "kmann", + "reviewDate": "2022-01-04T21:57:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "01ee4004-1cf7-44f6-bb16-e9c31e5850d6", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "pescobar", + "reviewDate": "2021-05-11T11:09:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "631293b9-d6c4-4862-b6ad-b0186725b01c", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "jason19", + "reviewDate": "2022-04-23T00:03:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf04935a-4827-496f-8916-e7f36318a608", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse 3000 (Silver)", + "description": "This Awesome Mouse 3000 (Silver) is rated 4.3 out of 5 by 4.\n\nRated 5 out of 5 by Bill S from Nice and stylish I'm not an avid mouse watcher, but this mouse has an unusual look. I bought this mouse three months after my son named it Max. Both the price and looks are of great quality, and I'm getting ready to try it out with my son when Christmas comes around.\n\nRated 5 out of", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-12-29T14:59:15", + "price": 866.35, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-05-23T22:38:17", + "newPrice": 934.76 + }, + { + "priceDate": "2021-10-09T22:38:17", + "newPrice": 847.95 + }, + { + "priceDate": "2022-02-25T22:38:17", + "newPrice": 808.65 + }, + { + "priceDate": "2022-07-14T22:38:17", + "newPrice": 860.99 + }, + { + "priceDate": "2022-11-30T22:38:17", + "newPrice": 926.39 + }, + { + "priceDate": "2024-01-19T22:38:17", + "newPrice": 866.35 + } + ] + }, + { + "id": "559c2833-9dde-4a65-8e2f-ab4f77484768", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laura72", + "reviewDate": "2021-11-04T02:33:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bdea54ad-d45b-4e81-8cc3-a9a92e305c84", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "usanders", + "reviewDate": "2021-07-22T17:20:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "197335da-510b-46a0-b5bd-e4085e78791f", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tgarcia", + "reviewDate": "2021-05-23T22:38:17", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b4a9819c-72f7-49ec-a2ed-d822de844c1e", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andreagross", + "reviewDate": "2021-08-01T22:22:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "59a8ed26-7098-40ec-8286-3231b0e1d64e", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "powelldebra", + "reviewDate": "2021-08-01T21:28:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "16d05c44-9ce9-4a85-8a96-0e99fdd4701d", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gfranklin", + "reviewDate": "2022-01-21T18:57:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eb4e8d44-9cf8-47f6-a362-663d48dcb596", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeffreyalvarado", + "reviewDate": "2022-12-02T09:51:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Super (Gold)", + "description": "This Premium Stand Super (Gold) is just like any other Premium Stand Super (Gold) that gives you the ability to do one thing; you can spend 3 charges! We give you the opportunity to use either Premium Stand or Premium Stand Plus as a substitute for the following: 1 of an item; 1 of the following is a Premium Stand Super (Gold) Premium Stand Super. When combined with another Premium", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-04-04T21:33:53", + "price": 650.32, + "stock": 68, + "priceHistory": [ + { + "priceDate": "2021-03-07T17:21:20", + "newPrice": 631.32 + }, + { + "priceDate": "2021-07-26T17:21:20", + "newPrice": 664.04 + }, + { + "priceDate": "2021-12-14T17:21:20", + "newPrice": 678.72 + }, + { + "priceDate": "2022-05-04T17:21:20", + "newPrice": 682.75 + }, + { + "priceDate": "2022-09-22T17:21:20", + "newPrice": 683.05 + }, + { + "priceDate": "2023-05-12T17:21:20", + "newPrice": 650.32 + } + ] + }, + { + "id": "fac58690-b291-4d3e-af84-bb37495cfaae", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonathan37", + "reviewDate": "2022-06-11T22:17:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "09f0fc63-1478-4c7e-8df3-195f48700996", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "longphillip", + "reviewDate": "2021-11-19T06:12:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "222af6df-61c8-4316-bf23-b82f8f1266a6", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "candace17", + "reviewDate": "2022-02-28T19:40:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eb310023-58f7-467a-ae52-c853b167012d", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "portergina", + "reviewDate": "2022-07-04T17:45:07", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8e2c72cb-846f-4fdb-aa87-a4204cf97ed0", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "hernandezkaren", + "reviewDate": "2022-05-31T16:37:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "410cf075-36f6-4741-ac8d-1105bdb0eaff", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "amymelendez", + "reviewDate": "2022-09-12T11:00:19", + "stars": 5, + "verifiedUser": false + }, + { + "id": "3c7f5b91-7757-4cf2-8892-fdf7d0b7f7ba", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "annbarnes", + "reviewDate": "2022-02-06T12:11:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "73d724ee-b6e7-41a4-9430-a43db6cd4b57", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "linda07", + "reviewDate": "2022-08-16T22:50:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4764c879-c860-46c3-a055-61f19b55394b", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthonydennis", + "reviewDate": "2021-06-18T16:55:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dd9535c4-aaa4-4da0-aba7-961ac3a6f7d0", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "cooklauren", + "reviewDate": "2021-03-21T09:11:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5c821bc2-a32d-4fcd-8532-d13b1cb315c5", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonathanhowell", + "reviewDate": "2022-07-20T08:51:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6c6372f5-dd69-4efe-b3d5-fec664d92381", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "aherrera", + "reviewDate": "2021-03-07T17:21:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4ad361d1-e6d5-42fb-baf9-3ee5e425997c", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "lambevan", + "reviewDate": "2022-03-04T21:59:15", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d19ee2ed-1a78-4d01-84ee-aff3a6c537f4", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "iacosta", + "reviewDate": "2021-08-09T17:56:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a927c218-40fb-45a2-82e3-1134f363bada", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "ecooper", + "reviewDate": "2022-09-26T05:56:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a70ea1a1-1f61-4f97-8b21-57a2e15fc399", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "chadacosta", + "reviewDate": "2022-07-08T11:50:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Gold)", + "description": "This Premium Keyboard Mini (Gold) is designed for use with our Premium Keyboard Mini (Silver) and offers a fully customizable look to the style of the Mini's design.\n\n\nThe Silver Mini can display the following features:\n\nRed: The Mini's unique Red LED and blue LED will provide visibility when you use it. The Red's brightness changes while your computer's internal processor powers down.\n\nBlue: The Red LED's color", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-03-22T01:18:09", + "price": 566.35, + "stock": 48, + "priceHistory": [ + { + "priceDate": "2021-03-17T09:54:30", + "newPrice": 524.49 + }, + { + "priceDate": "2021-10-08T09:54:30", + "newPrice": 618.41 + }, + { + "priceDate": "2022-05-01T09:54:30", + "newPrice": 537.51 + }, + { + "priceDate": "2022-11-22T09:54:30", + "newPrice": 526.2 + }, + { + "priceDate": "2023-02-15T09:54:30", + "newPrice": 566.35 + } + ] + }, + { + "id": "e352ecda-d587-4ecc-8b9d-d65dc304bef1", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wgriffin", + "reviewDate": "2021-11-18T07:14:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7ad4d6f6-190f-4226-97c8-c2229697d755", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dustingood", + "reviewDate": "2021-03-24T11:45:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f3b654f2-2ec4-4de9-a8ba-fb04bd4fb923", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simmonsjermaine", + "reviewDate": "2021-03-17T09:54:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "927543aa-2cab-4914-9cc0-5e7aae31d1d0", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michaelpena", + "reviewDate": "2021-07-24T18:18:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a83f9f10-706c-4fc9-bf09-53cbd926a51f", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacobosborne", + "reviewDate": "2021-11-15T06:12:25", + "stars": 5, + "verifiedUser": false + }, + { + "id": "789d655e-62bd-4fcb-8047-dc5d22f630e8", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "murraysusan", + "reviewDate": "2022-11-10T13:32:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2085a70d-c12c-405e-9fa0-93f39931ddba", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidcolon", + "reviewDate": "2021-07-05T04:47:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7f0139d6-1d5c-4af9-84a7-5fb9a7c09dd0", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james13", + "reviewDate": "2022-01-22T08:53:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "da4d6439-3f1a-4dec-9ccc-3c89243eb088", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andersonlori", + "reviewDate": "2021-08-22T16:13:31", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e279387e-caaf-460e-bc7d-a472d17bfec5", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perezmark", + "reviewDate": "2021-12-22T00:31:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9e716d20-6401-4265-b0fb-840f3d0c48b6", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wardmichelle", + "reviewDate": "2021-05-03T09:38:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "68287816-d61d-4bd1-a90b-3e9e6b539667", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marisa62", + "reviewDate": "2022-09-04T11:53:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8d545c47-e00f-49b0-ab38-72d810f24135", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ucaldwell", + "reviewDate": "2021-07-05T05:07:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8981d972-1788-4068-9e07-fbc14cd162f1", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emarsh", + "reviewDate": "2022-08-31T03:32:21", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d22c6353-7a63-48e1-bc40-9fb1120775d8", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beltranruth", + "reviewDate": "2021-08-31T00:32:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7e3bab3b-91a7-4da3-8186-c3af9bc4e87b", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nguyennicholas", + "reviewDate": "2022-11-19T07:34:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fa32a065-cea8-4643-a898-21d1a3ef3a90", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chasegonzales", + "reviewDate": "2021-10-27T07:05:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4bd3e2ab-5fba-41f1-8bdc-dc047d013229", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinasmith", + "reviewDate": "2021-07-06T18:12:53", + "stars": 5, + "verifiedUser": false + }, + { + "id": "dcf44152-832a-46d5-a598-c2b960aac18b", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "april46", + "reviewDate": "2022-05-31T04:34:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d5126e15-83dd-4660-9e73-b9a03f5950da", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wpatel", + "reviewDate": "2022-11-23T07:49:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Mini (Gold)", + "description": "This Luxe Phone Mini (Gold) is the perfect accessory for those looking for a phone with a minimalistic and stylish appearance, the phone looks stunning, the colors are so vibrant that it's easy to see where your phone is going.\n\nWhile most phones don't need to be upgraded at the same time, you can still make a phone that looks like it could be upgraded from what is available from Amazon.\n\nHere's what you need to know, when", + "countryOfOrigin": "Nigeria", + "rareItem": true, + "firstAvailable": "2020-12-10T13:20:48", + "price": 533.41, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-09T20:43:31", + "newPrice": 557.8 + }, + { + "priceDate": "2021-06-20T20:43:31", + "newPrice": 540.49 + }, + { + "priceDate": "2021-11-29T20:43:31", + "newPrice": 487.25 + }, + { + "priceDate": "2022-05-10T20:43:31", + "newPrice": 583.35 + }, + { + "priceDate": "2022-10-19T20:43:31", + "newPrice": 579.6 + }, + { + "priceDate": "2023-08-05T20:43:31", + "newPrice": 533.41 + } + ] + }, + { + "id": "7ba01872-5603-4c5a-bf4c-87b777ce8425", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "qnichols", + "reviewDate": "2022-10-19T22:27:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "984f88d8-4a73-41e8-bf92-9d8efc7b2dcc", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciasara", + "reviewDate": "2021-03-31T12:50:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1ebac505-a3b4-4a50-817e-e27d81674cff", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "dawnfoster", + "reviewDate": "2021-06-17T20:31:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "26f4b16c-c011-4cfc-adb8-5dc4a41689d6", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "krosario", + "reviewDate": "2022-07-29T23:09:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "df8ac506-0237-489c-af0f-76aef78058d2", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "prussell", + "reviewDate": "2021-01-09T20:43:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "18894e2c-7ea4-41cc-9f58-e946902d4751", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissa70", + "reviewDate": "2022-09-03T19:09:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bab34740-231d-472d-9906-9a171702f560", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "denise89", + "reviewDate": "2021-05-31T14:23:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "29843968-903a-42b9-b288-515416df0c7a", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelschmidt", + "reviewDate": "2021-01-27T06:02:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e2b3a61c-aa2c-4b3e-807f-e1ed5ae7d8a8", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "ssnow", + "reviewDate": "2021-09-13T21:42:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a32bf95d-3644-43de-a7d9-60f5b500395b", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "calderonrebecca", + "reviewDate": "2021-09-13T06:08:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "04e10e0f-cdc3-40b2-97db-d2bf34d8e70d", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "llong", + "reviewDate": "2021-04-14T12:28:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5a20dd42-30fa-45a3-b3b6-0ceb48f533c0", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "hcastro", + "reviewDate": "2021-06-04T23:23:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Ultra (Red)", + "description": "This Luxe Keyboard Ultra (Red) is a very beautiful keyboard with an easy to understand keyboard interface and a very fast keyboard that's not as fragile as some keyboards.\n\nThe Luxek Keyboard Ultra (Red) is a very nice keyboard with", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-09-12T08:36:16", + "price": 1091.03, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-12T05:55:35", + "newPrice": 1153.66 + }, + { + "priceDate": "2021-08-20T05:55:35", + "newPrice": 1029.73 + }, + { + "priceDate": "2022-03-28T05:55:35", + "newPrice": 1181.61 + }, + { + "priceDate": "2022-11-03T05:55:35", + "newPrice": 1018.06 + }, + { + "priceDate": "2025-04-17T05:55:35", + "newPrice": 1091.03 + } + ] + }, + { + "id": "97a21470-ee42-475c-a171-637d36932fd2", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "currymargaret", + "reviewDate": "2022-10-22T22:21:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3510a143-6e69-4517-8ada-c5a8503a5f8d", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelacarter", + "reviewDate": "2022-11-03T15:05:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a4c2dd71-aa99-4a3b-aaa0-ee68bac673cc", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lawrencejeremy", + "reviewDate": "2021-02-05T03:54:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "040c7080-5ec0-4d0b-ba4d-3dbaa4cff0e7", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jameshood", + "reviewDate": "2022-04-21T04:53:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bd7ee9a7-f7f8-44a2-bbe5-4e43e27be9f0", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rebeccawilliams", + "reviewDate": "2022-01-14T23:36:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eb64a88a-d4d5-4ad3-87c4-4d2352595020", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "graydaniel", + "reviewDate": "2021-04-02T00:13:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d72f7f8e-164b-498c-9e1b-eed0eed30361", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardanderson", + "reviewDate": "2021-01-12T05:55:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7b1a5b1d-b7d8-46f9-89c8-b618e8505214", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rose50", + "reviewDate": "2022-06-11T08:22:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f0047961-77e3-4cc1-b694-f3bc41bcd191", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "taylorglass", + "reviewDate": "2021-11-10T15:49:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fb08830e-bae1-41ce-baea-8db939ae76f6", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ssmith", + "reviewDate": "2022-05-27T05:08:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "57243df3-6e52-4503-b913-199b54553396", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "riversjason", + "reviewDate": "2021-07-26T14:32:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b62f756a-bdb1-4e9c-908d-8f49e55055f7", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "heatherlambert", + "reviewDate": "2022-05-17T14:47:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ac6890de-dc58-47e5-8ff9-d297a59ffad4", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevinwolf", + "reviewDate": "2021-12-01T16:03:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5c650612-bdd1-4410-91cf-1ff2028ba4c2", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fwebb", + "reviewDate": "2021-02-02T16:15:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "43decd73-6a33-4369-8a0a-fa6999c1eb8a", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "walterhernandez", + "reviewDate": "2021-11-14T15:56:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d227c0ef-b551-426a-8876-01ed7f457674", + "productId": "d227c0ef-b551-426a-8876-01ed7f457674", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Mini (Gold)", + "description": "This Luxe Mouse Mini (Gold) is made with a custom LED display that glows for 10 seconds, which is fast and stylish. Its patented mechanical mechanism offers a unique touch of comfort while remaining silent and quiet. Each mouse is handcrafted from a super simple, black aluminum shell and has its own unique metallic hardware. The mouse is fully functional with the", + "countryOfOrigin": "India", + "rareItem": true, + "firstAvailable": "2020-06-18T00:46:25", + "price": 519.29, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-08-23T15:31:04", + "newPrice": 484.23 + }, + { + "priceDate": "2022-11-15T15:31:04", + "newPrice": 517.33 + }, + { + "priceDate": "2025-06-07T15:31:04", + "newPrice": 519.29 + } + ] + }, + { + "id": "ec3cd0cc-fd07-4290-a751-eb652c7a1da7", + "productId": "d227c0ef-b551-426a-8876-01ed7f457674", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mollybrown", + "reviewDate": "2021-08-23T15:31:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "11d41135-2db7-4603-b36f-b18c725abb15", + "productId": "d227c0ef-b551-426a-8876-01ed7f457674", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rhoward", + "reviewDate": "2022-11-16T02:46:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Pro (Black)", + "description": "This Premium Stand Pro (Black) is available in a variety of colorways:\n\n\n(10.9% off)\n\n(10.9% off)\n\n(20% off)\n\n(50", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-10-06T11:54:56", + "price": 1037.59, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-04-27T15:03:08", + "newPrice": 1116.26 + }, + { + "priceDate": "2021-10-22T15:03:08", + "newPrice": 1035.9 + }, + { + "priceDate": "2022-04-18T15:03:08", + "newPrice": 1132.69 + }, + { + "priceDate": "2022-10-13T15:03:08", + "newPrice": 1055.94 + }, + { + "priceDate": "2022-12-14T15:03:08", + "newPrice": 1037.59 + } + ] + }, + { + "id": "985fba76-f81a-4b36-a9b9-161e5bab8988", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "katie86", + "reviewDate": "2022-09-03T06:16:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0dac28be-25d6-487b-b2ec-064fcc3cd871", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "tlove", + "reviewDate": "2022-01-12T05:46:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0d0448fd-9945-484a-b340-579bfc693654", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "bhughes", + "reviewDate": "2022-10-14T15:18:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "42474ec2-7ab2-4d62-a17a-0a12a59f4786", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "ydean", + "reviewDate": "2021-05-26T18:57:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1f844834-1223-4ac2-875f-e1d61bb7394a", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "ayalakathryn", + "reviewDate": "2021-06-22T12:42:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "64167e76-8d31-4a17-9ca8-143f693844f9", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "peterwyatt", + "reviewDate": "2021-08-01T03:08:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "afe3c57a-f0a0-4491-9e96-4e967787ea14", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamsonfrank", + "reviewDate": "2022-03-15T04:25:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "12d4dfe6-1a90-4831-b38e-ff7c729aa583", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "shawcraig", + "reviewDate": "2021-05-07T03:33:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "488a6a1a-1f5f-4c5d-a2d1-967391ec2ac8", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "jrios", + "reviewDate": "2021-04-27T15:03:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5574f6c7-f8fd-49c9-bbef-47ceeb339574", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "alyssadavenport", + "reviewDate": "2022-09-02T06:50:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "33eb5baf-1220-48c5-b13b-a06be7b2397b", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "milessean", + "reviewDate": "2021-08-28T13:32:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f6e69540-8698-4e77-921e-a6ce17971721", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "carlyleonard", + "reviewDate": "2021-08-03T00:03:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "731af126-7154-4190-9dee-6ffb5637d6da", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Super (Steel)", + "description": "This Basic Mouse Super (Steel) is a fully functional keyboard with keyboard with buttons that have been specially designed for you. It's a simple, intuitive design with an incredible range of design options.\n\nThe keyboard can be used with the following keys:", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-07-04T09:04:47", + "price": 187.52, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-02-01T20:17:49", + "newPrice": 170.23 + }, + { + "priceDate": "2025-03-28T20:17:49", + "newPrice": 187.52 + } + ] + }, + { + "id": "6fbbbf94-ad53-4d97-8e15-15456402a554", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rossjohn", + "reviewDate": "2021-12-10T15:08:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2eae1269-c6cf-455f-98e8-ed9c919f5fd9", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ipowell", + "reviewDate": "2021-06-12T16:14:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ff65c035-db76-40b9-9a57-d656022ae352", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scott42", + "reviewDate": "2021-11-06T00:25:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7a1d2063-41ae-4650-81b3-aebaf3b62904", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wtorres", + "reviewDate": "2021-10-13T00:16:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "409141b3-5fdc-4c56-b94e-c78ca1272040", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uanderson", + "reviewDate": "2022-02-23T14:20:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c700eb03-0aea-47cc-90b3-847a9e9383cb", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brendamclaughlin", + "reviewDate": "2022-06-28T09:01:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3adebc75-8218-42c3-a5d8-c847437b6fe9", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qmaynard", + "reviewDate": "2022-08-02T08:28:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5326b13e-aae7-4182-a15d-33f7d88ad49a", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evan66", + "reviewDate": "2022-10-21T14:58:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a49b0ae4-4493-42f6-b49e-71fc8c63c15b", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "klittle", + "reviewDate": "2021-12-10T04:16:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fa37c2e5-54b9-4978-8c04-d5c2b09ecfc0", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wagnerbrooke", + "reviewDate": "2022-07-15T03:49:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0cc9171c-a03b-4ab2-a951-bb22261c3a3b", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yjohnson", + "reviewDate": "2021-06-09T18:30:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0fbef9e4-c002-40a8-ba9c-60e93c616e4b", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "samuel61", + "reviewDate": "2022-10-06T14:46:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "723e70a7-90b2-42d8-93dc-451ac52f7ade", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael12", + "reviewDate": "2021-02-01T20:17:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "69a6cfd0-8784-45a1-9df9-82709e913f9f", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael16", + "reviewDate": "2022-08-31T08:28:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7103ac0b-674f-4d52-870a-7211f694b051", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidhatfield", + "reviewDate": "2022-10-06T15:45:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "afe6200e-c83b-4ae6-82df-d1897872eab9", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gmiller", + "reviewDate": "2021-03-31T12:06:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "99f69dd8-5331-4ffa-8d51-21555330ee04", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cbrewer", + "reviewDate": "2022-09-08T08:55:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ff6264c6-2993-40e3-8ab4-d5cd4c93df0b", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david43", + "reviewDate": "2021-10-16T08:00:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "product", + "name": "Amazing TV Pro (Red)", + "description": "This Amazing TV Pro (Red) is a TV that has a great color saturation in all the other TV's (including the LG V20). It is not the best color palette and its brightness is very far off but it", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-01-07T04:20:12", + "price": 158.75, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-11T15:52:53", + "newPrice": 146.88 + }, + { + "priceDate": "2021-08-26T15:52:53", + "newPrice": 165.82 + }, + { + "priceDate": "2022-04-10T15:52:53", + "newPrice": 151.84 + }, + { + "priceDate": "2022-11-23T15:52:53", + "newPrice": 153.44 + }, + { + "priceDate": "2023-03-31T15:52:53", + "newPrice": 158.75 + } + ] + }, + { + "id": "5e26664c-ee42-4449-b660-5c5d04582766", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "kjohnson", + "reviewDate": "2021-11-28T22:18:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "aa60ad6b-8763-4687-85a3-d4f2cd44872b", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "scottwhite", + "reviewDate": "2022-10-17T23:44:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ba083203-2d49-4349-b0cb-ce5711898388", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "hunter02", + "reviewDate": "2021-01-11T15:52:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4a25b789-97e8-45e0-938f-0ca1e9116aca", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "hornesean", + "reviewDate": "2022-05-06T16:10:47", + "stars": 4, + "verifiedUser": true + }, + { + "id": "81128794-7024-4ec1-98e5-59fc78879ad9", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "carrillosteven", + "reviewDate": "2022-05-06T05:55:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e1a8143e-3e48-49b9-8b4b-120fc877aef0", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "bradfordisaiah", + "reviewDate": "2022-08-03T07:03:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9f1557da-ea2e-4004-bcf6-861d28a3c441", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "benjaminjanet", + "reviewDate": "2022-09-05T04:10:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e90d7872-8483-4042-ad32-26e9a2d6d83a", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "floresvictoria", + "reviewDate": "2021-10-21T03:21:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0fd913e6-c3c1-4bb9-9d49-19c1dd27542e", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "brookejohnson", + "reviewDate": "2022-11-23T22:21:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b2f715d9-79f0-49aa-a31c-164d0c07cd07", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "qperez", + "reviewDate": "2021-10-01T06:22:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9f891fb1-3051-44e5-95be-70eeb6896428", + "productId": "9f891fb1-3051-44e5-95be-70eeb6896428", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Mini (Silver)", + "description": "This Premium Mouse Mini (Silver) is designed to run on an HP KX-9200R. With the optional HP KX1125, it's ready with nothing but a small mouse.\n\nThe Mini's unique design fits well with more traditional PCs where a keyboard is a necessity. Our Mini doubles as a home theater and gaming mouse.\n\nIf you're looking to build your own mice for sale", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-01-16T10:10:14", + "price": 915.78, + "stock": 85, + "priceHistory": [ + { + "priceDate": "2022-06-13T17:30:22", + "newPrice": 983.21 + }, + { + "priceDate": "2022-06-27T17:30:22", + "newPrice": 857.9 + }, + { + "priceDate": "2022-07-11T17:30:22", + "newPrice": 983.4 + }, + { + "priceDate": "2022-07-25T17:30:22", + "newPrice": 854.27 + }, + { + "priceDate": "2022-08-08T17:30:22", + "newPrice": 870.1 + }, + { + "priceDate": "2023-04-29T17:30:22", + "newPrice": 915.78 + } + ] + }, + { + "id": "5bcd3358-f398-45ae-8ef1-cb7ddf7266a3", + "productId": "9f891fb1-3051-44e5-95be-70eeb6896428", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mitchellmarc", + "reviewDate": "2022-08-11T12:00:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a9501c02-d3f2-485e-a648-ec0d917cfc58", + "productId": "9f891fb1-3051-44e5-95be-70eeb6896428", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carmen98", + "reviewDate": "2022-06-13T17:30:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand + (Silver)", + "description": "This Luxe Stand + (Silver) is available in the Dark Emeralds. On the right, it is equipped with a unique set of armor crafted by a Blacksmith using a special Jewel of the Righteous. On the bottom left is a unique set of armor and jewels called the Heartstone. This is the unique Jewel of the Righteous. On the right, it is equipped with a unique set of armor", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-08-24T19:00:39", + "price": 820.78, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-19T15:58:17", + "newPrice": 842.37 + }, + { + "priceDate": "2025-01-07T15:58:17", + "newPrice": 820.78 + } + ] + }, + { + "id": "36680a9a-d357-4fec-b03e-edf8ad9e6b22", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "hendersondonna", + "reviewDate": "2021-08-06T13:03:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f3a573f7-f39b-48cd-a583-286a309ddf85", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholas86", + "reviewDate": "2021-06-10T20:32:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1a0a1780-e887-4c44-a079-eb16553ededf", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "cjones", + "reviewDate": "2021-11-02T04:01:15", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ecec029a-db90-4fb9-a867-d7f45e032cef", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "cristina75", + "reviewDate": "2022-04-10T11:34:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "46d35001-743d-4489-955e-1dc5c1fb5105", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "littlesavannah", + "reviewDate": "2022-08-31T16:14:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5259eb3b-68f0-4e90-8436-c989112f4c96", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "ujacobson", + "reviewDate": "2021-01-19T15:58:17", + "stars": 5, + "verifiedUser": false + }, + { + "id": "33f1bfc7-94e2-4902-b7a3-91724cd87947", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "huffmanpatricia", + "reviewDate": "2021-09-19T09:24:28", + "stars": 5, + "verifiedUser": true + }, + { + "id": "bcce8b90-6e82-4daa-816f-6874f0378228", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "cooperstacey", + "reviewDate": "2022-03-16T12:11:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "93e8e44f-0072-4b1e-9761-d873c4f2c069", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "terri64", + "reviewDate": "2021-10-03T10:29:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7d15e576-8f7d-4525-a5ea-218cb5a7e88a", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "kristi02", + "reviewDate": "2022-09-14T05:24:52", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Pro (Gold)", + "description": "This Basic Mouse Pro (Gold) is a mouse with built-in support for USB mouse and keyboard (for an older CPU system), which supports several kinds of keys: touch, swipe,", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-01-03T07:39:37", + "price": 689.32, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-04-01T10:13:45", + "newPrice": 746.41 + }, + { + "priceDate": "2021-10-30T10:13:45", + "newPrice": 704.31 + }, + { + "priceDate": "2022-05-30T10:13:45", + "newPrice": 652.23 + }, + { + "priceDate": "2022-12-28T10:13:45", + "newPrice": 663.84 + }, + { + "priceDate": "2024-01-12T10:13:45", + "newPrice": 689.32 + } + ] + }, + { + "id": "f6ab9e46-be11-4d2d-9db6-2d4d63c8eba2", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cantukristina", + "reviewDate": "2021-09-28T18:06:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0e85e1b2-aeaf-4d2b-890b-84ebdf0d68f6", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hernandezshirley", + "reviewDate": "2022-09-23T06:53:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "83e417d6-a8dd-403d-be18-6c68f3a3227a", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fredericklong", + "reviewDate": "2021-12-10T03:13:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1dc31529-6307-4278-9b60-723e40343219", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "urichardson", + "reviewDate": "2021-04-08T03:34:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7a6c2671-48c0-422b-8177-4b3abb649a32", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "castrobryan", + "reviewDate": "2021-12-02T00:38:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b9b09481-3b89-4f4c-98b3-05a49b65a380", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stevenmartinez", + "reviewDate": "2022-07-31T05:30:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2f776700-1aa4-4064-86e2-e7a3d2fe3192", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reedjacob", + "reviewDate": "2022-04-04T14:13:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "534b00f4-7773-4c7f-b810-04d7416da9e0", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael23", + "reviewDate": "2021-07-15T10:05:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9c20bf3b-6833-4a2c-ab21-4d423e357383", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardsjohn", + "reviewDate": "2022-03-19T14:18:37", + "stars": 2, + "verifiedUser": true + }, + { + "id": "44897d1d-6513-462e-8f28-f0980a5ecf72", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardfarrell", + "reviewDate": "2022-06-27T06:11:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "27d4b1da-6427-4ce0-b330-f10d6d001941", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gary69", + "reviewDate": "2021-09-26T07:21:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "962d574a-b23c-434c-b028-4d5a4d52d709", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erica09", + "reviewDate": "2022-06-11T04:27:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ad2cd22c-af55-4436-bbb8-ad498a09587d", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "idecker", + "reviewDate": "2021-12-03T23:26:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ca9c4bca-a941-4a9c-9d40-47c558ef44bf", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wallacekayla", + "reviewDate": "2022-10-15T07:47:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e4e8af19-adfe-4d31-825b-28e79fd3f9f0", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "phillip48", + "reviewDate": "2021-04-01T10:13:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2fd26eb7-0438-40b9-9710-965465e211ef", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "miranda14", + "reviewDate": "2022-12-30T19:45:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aef31250-dbbe-4857-bb1c-3c9ab3ef57d1", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlesjohnson", + "reviewDate": "2022-08-04T06:35:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fc147d6e-ecae-43db-8840-53ee3c3a94ec", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamesford", + "reviewDate": "2022-11-19T02:53:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "282362c7-0629-4545-adf9-cd39dc720e90", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone + (Silver)", + "description": "This Premium Phone + (Silver) is rated 4.6 out of 5 by 3.\n\nRated 4 out of 5 by Matt from Great phone but was", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-12-02T22:28:59", + "price": 1046.58, + "stock": 13, + "priceHistory": [ + { + "priceDate": "2021-03-20T21:39:00", + "newPrice": 977.3 + }, + { + "priceDate": "2021-10-29T21:39:00", + "newPrice": 1003.11 + }, + { + "priceDate": "2022-06-09T21:39:00", + "newPrice": 995.74 + }, + { + "priceDate": "2024-09-27T21:39:00", + "newPrice": 1046.58 + } + ] + }, + { + "id": "a41fb117-cae6-4940-b597-63db09da62bf", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "lewislawrence", + "reviewDate": "2022-04-09T01:43:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f073dab8-6590-4f3e-808a-af402af8081f", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "kturner", + "reviewDate": "2021-03-20T21:39:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e0d95eec-f22e-4d60-9593-8c105f2b7097", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael63", + "reviewDate": "2022-05-23T04:28:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "440f9264-6f3f-4586-b407-9ee681ad8411", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "creyes", + "reviewDate": "2022-06-10T23:45:08", + "stars": 5, + "verifiedUser": true + }, + { + "id": "40b2aaee-a278-4699-9b7c-846a81050c03", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "oleonard", + "reviewDate": "2021-07-07T14:25:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Ultra (Red)", + "description": "This Awesome Computer Ultra (Red) is not what you expect, but it really is just awesome. I love computer hardware, so what's new for me? I use a new Macbook Pro from Amazon, but before I get around to testing, this thing really is awesome. I've been testing it for about 12", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-10-13T21:40:28", + "price": 878.66, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-01-19T16:49:57", + "newPrice": 850.11 + }, + { + "priceDate": "2021-08-09T16:49:57", + "newPrice": 878.74 + }, + { + "priceDate": "2022-02-27T16:49:57", + "newPrice": 937.56 + }, + { + "priceDate": "2022-09-17T16:49:57", + "newPrice": 884.74 + }, + { + "priceDate": "2024-08-02T16:49:57", + "newPrice": 878.66 + } + ] + }, + { + "id": "6271c6b6-c987-4409-b0fb-592203e7aa19", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevinmoyer", + "reviewDate": "2022-05-08T11:00:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "50755e64-f9be-4a6d-aa05-0da23c978218", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "ericwilkins", + "reviewDate": "2021-10-26T23:57:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "95e0d414-8eb6-4a9a-b1c7-10e5b3e344df", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "msanchez", + "reviewDate": "2021-09-21T00:37:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f8cbc3d2-11a3-4b6a-afea-c4a0040a6166", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "brian18", + "reviewDate": "2021-01-20T01:22:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cd6c274a-686d-4bc3-bd38-dde5bdf56b56", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "mandrews", + "reviewDate": "2021-10-16T04:02:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e1d6e6f7-3399-4ec8-8345-d98b4e4e0871", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "hernandezjessica", + "reviewDate": "2022-09-18T05:17:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "88c961de-1c8d-44f1-bda1-a7c125c43875", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "hamiltonjason", + "reviewDate": "2021-04-25T05:15:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ce66474f-0eb0-4e4b-b1cd-3d42aa75c426", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamsdrew", + "reviewDate": "2021-01-19T16:49:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "400b0cae-0597-4c3a-8d14-5bc6cea6725f", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "greerleslie", + "reviewDate": "2022-09-17T01:13:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4e58a94d-efe9-4c43-b89a-db5a12e5bdd8", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephenherrera", + "reviewDate": "2022-01-05T02:26:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6927c535-ad48-49e4-b30b-56922557b96b", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "elizabeth83", + "reviewDate": "2022-09-09T01:31:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c42c4840-9216-47e1-b41d-721f67269054", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "erinsmall", + "reviewDate": "2021-07-14T08:29:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7ecf725e-d1fd-4563-8239-bd82f5f4064c", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "browndouglas", + "reviewDate": "2022-06-10T19:25:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "72ad0239-9304-4792-b212-ae788cdabaae", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "karla01", + "reviewDate": "2021-08-07T01:18:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "376d35a7-4ad0-47f0-9bf5-9e710206f243", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "mercadoapril", + "reviewDate": "2022-08-17T04:20:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7e2cbb58-a06e-4d39-8f78-9fa00fd59d54", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "armstrongbriana", + "reviewDate": "2022-02-10T18:55:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "product", + "name": "Premium Filter + (Black)", + "description": "This Premium Filter + (Black) is rated 4.9 out of 5 by 50.\n\nRated 5 out of 5 by Anonymous from This Is A Love At First Skin", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-26T08:43:18", + "price": 299.11, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-10T12:03:26", + "newPrice": 269.42 + }, + { + "priceDate": "2022-10-30T12:03:26", + "newPrice": 290.46 + }, + { + "priceDate": "2023-06-30T12:03:26", + "newPrice": 299.11 + } + ] + }, + { + "id": "27c99d15-944b-4708-a1ed-4ba0483faffb", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "dreed", + "reviewDate": "2022-02-02T10:55:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "dec4b0bf-814f-453a-baa0-5e82070fdafc", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "lauraingram", + "reviewDate": "2021-02-06T04:47:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a863644d-cc77-4304-9cdb-0959838e4629", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "liujeremy", + "reviewDate": "2022-09-15T02:35:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ac88a42a-91f7-44bb-8f6f-8922008d8ddd", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "dianecarter", + "reviewDate": "2021-04-14T07:51:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "382e53e0-e392-432c-bcfd-b3ead73464c0", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "nathandavis", + "reviewDate": "2021-01-10T12:03:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "480ae367-cf76-457c-8ce4-73e664375068", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "perrywilliam", + "reviewDate": "2022-10-30T23:21:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cbb513e6-69f2-4851-b340-4809bba71218", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "usantos", + "reviewDate": "2021-12-07T06:41:46", + "stars": 5, + "verifiedUser": false + }, + { + "id": "a7e5f0ec-ae57-40e9-8d88-730bd575eda3", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "christopher29", + "reviewDate": "2021-10-14T01:03:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1085dd5a-f51a-43b9-a7cd-2a25b5915f7f", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "mariadaniels", + "reviewDate": "2022-06-26T22:54:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6a351265-0ec7-497b-86aa-c0a72971c90e", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "brooksbrandon", + "reviewDate": "2021-08-04T02:22:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "40d3f1e6-ce2d-45fe-ba36-4ea2c3d14b10", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "troypowers", + "reviewDate": "2022-08-12T17:29:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "27ea791f-f3ac-4862-accb-83d949e85a08", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer + (Silver)", + "description": "This Awesome Computer + (Silver) is rated 4.9 out of 5 by 15.\n\nRated 5 out of 5 by Anonymous from Works perfectly. I bought the computer this month and the system works great. Great value.\n\nRated 3 out of 5 by Anonymous from Does not work. Some people said it was on par with the original one. I also liked the new speaker", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-04-28T07:30:25", + "price": 795.91, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-03-22T15:38:00", + "newPrice": 851.58 + }, + { + "priceDate": "2022-02-07T15:38:00", + "newPrice": 872.53 + }, + { + "priceDate": "2022-12-26T15:38:00", + "newPrice": 871.54 + }, + { + "priceDate": "2025-01-06T15:38:00", + "newPrice": 795.91 + } + ] + }, + { + "id": "ecc9d37a-cfb6-4510-bdc2-1120a1f61ba4", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertsonkayla", + "reviewDate": "2022-01-15T16:10:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4e61ae39-12d5-4375-a07a-14cea8faa1c7", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "angela56", + "reviewDate": "2022-10-26T13:47:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e72ffcd6-2c48-468b-88c0-9788843f7194", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica19", + "reviewDate": "2022-12-27T04:28:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "19391803-dafa-4708-ae7b-d8103267e201", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "thomashernandez", + "reviewDate": "2021-03-22T15:38:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2e3bf7d0-836d-497f-8307-56e063ead91f", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "jerome55", + "reviewDate": "2021-10-31T16:50:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b7c621f9-d733-4806-a6da-005d0875e3f4", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonyathompson", + "reviewDate": "2021-09-01T19:44:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fa6c9513-89f9-4840-8357-af92ef7c518c", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonigarcia", + "reviewDate": "2021-12-09T09:04:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ae163c2b-619b-464c-9629-27783059e4b5", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "zcaldwell", + "reviewDate": "2022-10-02T21:33:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "32c9c58a-9481-4824-a59a-fcb00fa4fbd7", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "petersontodd", + "reviewDate": "2022-05-15T18:12:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b192203f-837e-490f-a801-beafd87b9c15", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "ulam", + "reviewDate": "2022-08-12T19:23:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1e6376cd-a9b7-463a-a016-14d18eba5d01", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "bowmanclarence", + "reviewDate": "2022-04-17T05:50:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard 3000 (Steel)", + "description": "This Basic Keyboard 3000 (Steel) is a keyboard developed by Steel Electronics, a subsidiary of the Finnish manufacturer Nihon, which is based in Bremen, Germany.\n\nNihon", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-10-24T18:56:16", + "price": 854.84, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-03-30T08:15:16", + "newPrice": 918.15 + }, + { + "priceDate": "2021-08-26T08:15:16", + "newPrice": 862.72 + }, + { + "priceDate": "2022-01-22T08:15:16", + "newPrice": 924.31 + }, + { + "priceDate": "2022-06-20T08:15:16", + "newPrice": 881.84 + }, + { + "priceDate": "2022-11-16T08:15:16", + "newPrice": 786.53 + }, + { + "priceDate": "2024-01-19T08:15:16", + "newPrice": 854.84 + } + ] + }, + { + "id": "1ff89469-b398-4df5-95f7-44865acdcb3a", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fosterfrederick", + "reviewDate": "2022-03-09T12:45:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4059edc7-6c36-4390-86d7-edd0f09a5e59", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scottlee", + "reviewDate": "2021-07-31T02:23:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "70666cee-7607-47e4-b546-9e1d4edfd6a7", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas90", + "reviewDate": "2022-05-13T23:33:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dfa6357d-d19a-413b-a7b7-2913b77b6cc2", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rebecca79", + "reviewDate": "2021-10-24T15:29:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8da74e3a-9cb2-4abb-b481-6a3c6269664f", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "walkerandrew", + "reviewDate": "2022-05-19T06:06:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e5e0db91-42a5-4788-ba9f-c52c4b3cef2b", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "iharris", + "reviewDate": "2022-08-23T06:14:47", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1fb17397-25ff-4af1-a637-5be076105274", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wallacejohn", + "reviewDate": "2022-02-26T04:34:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6d1e0e47-b1c5-482a-a85f-33be4b398576", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cohenjared", + "reviewDate": "2021-12-01T02:52:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a1cc29aa-0e31-4f14-a179-2b8071ef0364", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "douglas94", + "reviewDate": "2022-07-08T02:15:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c038519e-e903-4a7f-8fbd-e5528beb5aec", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "camposgregg", + "reviewDate": "2022-04-01T09:22:59", + "stars": 5, + "verifiedUser": true + }, + { + "id": "035593fa-2d5b-4853-bf09-d62021502ba3", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lyonsdarren", + "reviewDate": "2021-03-30T08:15:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "71dfe438-7cd8-47bc-bf02-fd796899e207", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hpoole", + "reviewDate": "2022-11-18T12:15:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "product", + "name": "Basic TV Ultra (Steel)", + "description": "This Basic TV Ultra (Steel) is a high quality television with three channels; standard, advanced and intermediate channels.\n\nSpecification:\n\n• HDMI 2.4+ and 6-pin to DP input", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-04-25T16:52:07", + "price": 800.7, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-05-12T17:45:04", + "newPrice": 795.95 + }, + { + "priceDate": "2022-05-21T17:45:04", + "newPrice": 800.7 + } + ] + }, + { + "id": "ae25cc9b-e301-4ebe-abe2-d5bed86c3b7b", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "customerRating", + "userName": "datkinson", + "reviewDate": "2022-10-11T17:37:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "636976b2-906a-4c79-a9d5-ff5628f5ed28", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "customerRating", + "userName": "edelacruz", + "reviewDate": "2021-06-17T11:15:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ef331ed1-04ee-40d0-9c13-9c8763ffd2d7", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "customerRating", + "userName": "bakerandrea", + "reviewDate": "2021-06-16T19:43:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1d76d8cb-7cdc-4886-a30f-33feb83791ef", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "customerRating", + "userName": "carolynlarson", + "reviewDate": "2021-05-12T17:45:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Pro (Gold)", + "description": "This Luxe Speaker Pro (Gold) is a very simple speaker that you want especially when working with large audio players. In fact, this high quality speaker is rated among the top speakers in the world among all sound designers so you can go and get one. The premium audio quality makes the Luxe Speaker Pro a perfect choice for your everyday music system. The high quality surround system is perfect for", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-01-27T01:00:23", + "price": 311.01, + "stock": 25, + "priceHistory": [ + { + "priceDate": "2021-01-26T17:09:21", + "newPrice": 301.32 + }, + { + "priceDate": "2022-01-08T17:09:21", + "newPrice": 305.07 + }, + { + "priceDate": "2022-12-21T17:09:21", + "newPrice": 316.66 + }, + { + "priceDate": "2023-12-14T17:09:21", + "newPrice": 311.01 + } + ] + }, + { + "id": "268c7ae1-b5f2-44e8-a5fb-2d0cc4034ac6", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "alvaradotrevor", + "reviewDate": "2021-12-01T02:34:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b5f7604e-0e3a-4b84-b38c-8f53795889bc", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "brianleonard", + "reviewDate": "2022-06-19T01:06:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9655c55b-dcfa-4a7a-944a-e1c01ac24263", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "thompsonbarbara", + "reviewDate": "2022-07-23T17:41:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "57df57e9-d205-46d0-a1f1-8e79322068f7", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "davidjackson", + "reviewDate": "2022-07-03T00:39:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "55a0d256-4236-45a1-8b2f-0585238ce1ac", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "riverapaige", + "reviewDate": "2022-12-23T12:28:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e8d83798-43be-4a24-91bb-a9f7cf0301ea", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "jacksonbradley", + "reviewDate": "2022-05-28T07:48:28", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7dad3c8e-a20d-4f68-92ea-51078cfb0b86", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "maryschmidt", + "reviewDate": "2021-12-22T14:47:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "025fc803-de82-40d3-9306-bd9f9a86074a", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "mmorrison", + "reviewDate": "2021-03-26T22:34:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d69540ec-5d82-42a8-a62c-e5357ea2ba8b", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "louis77", + "reviewDate": "2022-09-29T22:04:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "65523228-3c43-4c8d-bcaa-90e2850e7fc9", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "pamela39", + "reviewDate": "2021-01-26T17:09:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0ff02e33-e604-40ff-8ac3-74bdc882b090", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "ana68", + "reviewDate": "2022-07-26T03:56:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f5ea01b7-29e8-4f30-8848-a66802ca07be", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "burnspatricia", + "reviewDate": "2022-01-21T02:01:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0ad3a675-ac8a-485a-bef6-b7a259a3c774", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "garyramsey", + "reviewDate": "2022-03-12T08:01:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "66aae543-f9f6-4625-80f8-3c31df7e3f23", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "stephen11", + "reviewDate": "2021-11-01T13:36:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f157013e-a02e-4a3f-ac25-08b112b17980", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "timothystewart", + "reviewDate": "2022-12-12T16:02:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b3803757-9eb2-4946-b202-3dc748da68ce", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "sierra83", + "reviewDate": "2022-11-19T13:27:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "552b5d43-ebcb-48c6-af72-2d268cbbe247", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "bartlettsteven", + "reviewDate": "2021-10-12T02:23:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7c7cd053-d694-433b-9670-52129e218783", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "rturner", + "reviewDate": "2022-03-13T05:51:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "productId": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone 3000 (Red)", + "description": "This Amazing Phone 3000 (Red) is the only Android phone that I can remember that isn't covered by a warranty and the phones are covered by it all. It's been more than a year and my only other choice have been Android phones. I've owned a couple of these phones and I had not found a flaw in them. Here is the actual picture of", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-11-28T20:33:07", + "price": 513.36, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2022-06-01T20:45:58", + "newPrice": 477.12 + }, + { + "priceDate": "2022-11-15T20:45:58", + "newPrice": 528.55 + }, + { + "priceDate": "2025-05-28T20:45:58", + "newPrice": 513.36 + } + ] + }, + { + "id": "e8d29a74-5b29-4877-ae50-f83d1503e3f8", + "productId": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "category": "Electronics", + "docType": "customerRating", + "userName": "madeline36", + "reviewDate": "2022-07-03T10:44:23", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0f6b6847-e4c1-4b5f-981b-6db41914bc76", + "productId": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "category": "Electronics", + "docType": "customerRating", + "userName": "annalee", + "reviewDate": "2022-11-16T12:17:19", + "stars": 4, + "verifiedUser": false + }, + { + "id": "39e0696b-4726-427a-a4a6-35b3b01837ea", + "productId": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "category": "Electronics", + "docType": "customerRating", + "userName": "mariahshaw", + "reviewDate": "2022-06-01T20:45:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Mini (Black)", + "description": "This Amazing Speaker Mini (Black) is a unique cabinet created by the Audio & Video Technologies International, Inc., located in Chicago, Illinois. With a top-of-the-line 8'' speaker system, the original Speaker Mini delivers uncompromised, crisp, and powerful sound. You can easily hear", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-06-30T11:03:52", + "price": 288.0, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-09-15T08:43:54", + "newPrice": 284.4 + }, + { + "priceDate": "2022-01-30T08:43:54", + "newPrice": 273.72 + }, + { + "priceDate": "2022-06-16T08:43:54", + "newPrice": 284.16 + }, + { + "priceDate": "2023-03-25T08:43:54", + "newPrice": 288.0 + } + ] + }, + { + "id": "5d91f584-935c-41ee-bac0-034f6fc3b875", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "pateldiana", + "reviewDate": "2021-09-15T08:43:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b8f007c5-3ff4-43c8-aaeb-5733332a41bb", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "judyguzman", + "reviewDate": "2021-10-09T23:04:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7e9e4d91-9e10-41bd-bce7-6b29b157ecd6", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "williamdean", + "reviewDate": "2022-04-29T00:24:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3e8068f4-05f9-49f7-a830-ce22f302c942", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "duncandanielle", + "reviewDate": "2022-03-08T09:21:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9dbba166-6dbd-452f-9b5c-0508fb58993a", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "dmelendez", + "reviewDate": "2022-06-16T10:32:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Mini (Steel)", + "description": "This Premium Computer Mini (Steel) is a high performance computer computer powered by a 10 Watt processor with 5 core CPUs.\n\nThe computer uses a high performance CPU to manage its various programs. The PC is equipped with a variety of programs that are designed to run on computers. It has an internal memory system and a hard drive for storing information and pictures. At the same time each computer has an SD card slot so other customers should access", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-07-25T21:35:40", + "price": 165.3, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-01-06T15:58:59", + "newPrice": 163.63 + }, + { + "priceDate": "2022-12-17T15:58:59", + "newPrice": 171.53 + }, + { + "priceDate": "2024-06-15T15:58:59", + "newPrice": 165.3 + } + ] + }, + { + "id": "4d917b06-1b9c-40b6-8165-123991b415b9", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "powellwyatt", + "reviewDate": "2022-10-31T17:19:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c45885c9-493c-478e-8145-5c9fab232786", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "ocampbell", + "reviewDate": "2021-12-26T20:12:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6b8c4ead-ee37-4f21-bd33-b3250f388e22", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeremymartin", + "reviewDate": "2021-01-11T13:56:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ca072a82-a0c9-408a-973a-2af1380b31d8", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarahadams", + "reviewDate": "2021-10-21T06:30:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ca7d5de6-431a-4534-bb99-024d6f3246a6", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "rwilliams", + "reviewDate": "2021-01-06T15:58:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "549644fd-8a35-40a2-8583-24b5f528af97", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "jstephenson", + "reviewDate": "2021-06-24T21:01:40", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f1517909-2f0b-45cf-9fdc-97f977f0603a", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnhuffman", + "reviewDate": "2022-12-18T15:43:39", + "stars": 5, + "verifiedUser": true + }, + { + "id": "e931ab0c-1ae7-45f3-b0c1-c951dca1ee33", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "morseaaron", + "reviewDate": "2021-11-15T18:36:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Super (Red)", + "description": "This Basic Keyboard Super (Red) is used by your computer in many more ways. There is also a set of keyboards and mice that all use a set of keys for different purposes. Some of these keyboards share the same color or feel or also have the features of the other types. Most computers work with a set of 4 or 5 keys in order to control a specific aspect of typing which can then be used and altered in different ways. This means using keys to control the background", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-04-12T11:00:43", + "price": 371.81, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-01-13T02:08:09", + "newPrice": 336.14 + }, + { + "priceDate": "2021-08-23T02:08:09", + "newPrice": 376.8 + }, + { + "priceDate": "2022-04-02T02:08:09", + "newPrice": 400.43 + }, + { + "priceDate": "2022-11-10T02:08:09", + "newPrice": 352.57 + }, + { + "priceDate": "2023-02-26T02:08:09", + "newPrice": 371.81 + } + ] + }, + { + "id": "39c1309c-43d6-48e1-b04f-b353fe887c44", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pstevens", + "reviewDate": "2022-02-15T07:21:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fcc5a080-6987-40d7-b9ef-b0e60e5aa5e8", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristina96", + "reviewDate": "2022-07-13T20:59:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "052e3831-13d0-471e-9626-b5bfd7e96036", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kkelly", + "reviewDate": "2022-11-10T05:27:12", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c5f52ef4-ea38-4f50-ae71-7ae2cddba544", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tiffanyramirez", + "reviewDate": "2021-08-26T04:28:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6fbd0fed-e08d-4b7c-9bf6-3ee6aeded859", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "molinajacqueline", + "reviewDate": "2021-01-13T02:08:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9183bc3f-39aa-4d86-abfc-ef9a255c520b", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wheelerdouglas", + "reviewDate": "2022-04-15T11:39:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "97834503-d128-457f-8b98-d882c548a1f1", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "debrabrown", + "reviewDate": "2022-09-20T18:10:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3f1119d7-c923-4232-94eb-c9f9ac605ac4", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tammy65", + "reviewDate": "2021-12-08T12:18:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d69a2d0c-a058-4e72-8f14-ecc73b18b25b", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "phillipgraves", + "reviewDate": "2022-09-23T13:20:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4ef7bbed-6c0c-410c-a5d0-3985545ca9f9", + "productId": "4ef7bbed-6c0c-410c-a5d0-3985545ca9f9", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Super (Black)", + "description": "This Premium Keyboard Super (Black) is a premium replacement for your standard (red) keyboard for the premium user experience. This keyboard features the following benefits:\n\n● Supports 5 different colors, in any one color of the color wheel\n\n● Supports a fully compatible display\n\n● Supports more colors. Use this keyboard for 3- and 4-player/up-to-five-player games", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-12-04T07:44:14", + "price": 686.19, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2022-08-30T12:32:19", + "newPrice": 694.98 + }, + { + "priceDate": "2022-08-31T12:32:19", + "newPrice": 630.76 + }, + { + "priceDate": "2022-09-01T12:32:19", + "newPrice": 682.33 + }, + { + "priceDate": "2022-09-02T12:32:19", + "newPrice": 644.51 + }, + { + "priceDate": "2022-09-03T12:32:19", + "newPrice": 651.18 + }, + { + "priceDate": "2023-06-10T12:32:19", + "newPrice": 686.19 + } + ] + }, + { + "id": "5f9d0b24-0c58-4d73-a046-d619f5479ebf", + "productId": "4ef7bbed-6c0c-410c-a5d0-3985545ca9f9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "april41", + "reviewDate": "2022-08-30T12:32:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Mini (Silver)", + "description": "This Amazing Mouse Mini (Silver) is the perfect size for an all your iPad gaming needs. When it comes to the smaller-size mouse in my hands,", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-10-26T20:29:47", + "price": 530.82, + "stock": 89, + "priceHistory": [ + { + "priceDate": "2021-11-02T03:32:22", + "newPrice": 537.74 + }, + { + "priceDate": "2023-04-15T03:32:22", + "newPrice": 530.82 + } + ] + }, + { + "id": "81422614-5ec8-4742-97cf-ae54d82967bf", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brianna83", + "reviewDate": "2022-02-08T19:57:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b2d4cf35-25ff-47f1-acc7-549cd158f077", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicolereid", + "reviewDate": "2022-02-25T03:59:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a5e83c43-5a96-4bf8-a54b-5dd20848931e", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jorgegardner", + "reviewDate": "2021-11-02T03:32:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d5158ec2-7de4-4ba2-9803-dcb9c5a04686", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "taylornelson", + "reviewDate": "2022-07-17T17:02:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Super (Silver)", + "description": "This Amazing Speaker Super (Silver) is rated 4.9 out of 5 by 38.\n\nRated 5 out of 5 by Chris from Looks great We purchased this speaker for our wife for $250 dollars and", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-05-31T11:41:47", + "price": 318.47, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-05-23T15:50:20", + "newPrice": 345.11 + }, + { + "priceDate": "2021-09-25T15:50:20", + "newPrice": 318.47 + } + ] + }, + { + "id": "556d7e40-a5ef-4585-b83c-d1608681b7f9", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "hmullins", + "reviewDate": "2022-11-30T19:06:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0e06d2d7-b934-4434-95b1-6f4ce39a2605", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "wmiller", + "reviewDate": "2021-07-24T00:58:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dc6b4881-3d70-4aa5-a40a-423cb96f3b9c", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "kevans", + "reviewDate": "2021-11-01T03:27:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9f8c8702-dc87-4325-95de-4bd26860d916", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "roy77", + "reviewDate": "2022-12-13T20:24:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3f37ffd0-15f5-4662-9af8-d690bba1b60a", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "matthew02", + "reviewDate": "2022-01-07T20:38:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "619cc4b5-824c-423f-88d3-acac532c0999", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "vthompson", + "reviewDate": "2022-07-09T21:57:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bff7f66a-776b-4473-b661-78550283e324", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "jack35", + "reviewDate": "2021-07-26T14:23:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aa198a91-f6de-4506-94cb-8ffa7d218b2f", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "savannahshah", + "reviewDate": "2021-06-06T22:41:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "737e442f-9518-42f0-8b55-413f4d40c26c", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "petersonalexander", + "reviewDate": "2022-05-29T00:20:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "51b82035-482b-466f-b5fe-97d9148fd9e9", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "mwolfe", + "reviewDate": "2022-02-21T23:58:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "91f3eb31-8413-4a85-b283-ce03075bda5b", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "morrissara", + "reviewDate": "2022-10-12T06:53:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c561272b-7b59-49ee-90b1-091a4c1934bf", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "ajohnson", + "reviewDate": "2021-05-23T15:50:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a0fa21d1-b74c-4cf1-9b5a-5ee383a13481", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "riley25", + "reviewDate": "2022-08-24T20:36:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Micro (Silver)", + "description": "This Basic Stand Micro (Silver) is equipped with the Bipolar Sizer & 3200mAh battery charger, it has two output lines with 2-wire interface for high capacity mode. This micro provides much more", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-10-20T16:56:22", + "price": 126.9, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-04-06T00:26:38", + "newPrice": 131.15 + }, + { + "priceDate": "2022-05-01T00:26:38", + "newPrice": 126.9 + } + ] + }, + { + "id": "5c8b9055-e6ee-45b5-bfd6-6ffd742ab7c0", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "mcdonalddaniel", + "reviewDate": "2021-04-06T00:26:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ba9a0357-3280-40fb-9781-2be27295a29b", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "kcruz", + "reviewDate": "2022-05-02T05:40:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0b877456-478b-4cb8-98f4-097ffae6b985", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "john88", + "reviewDate": "2021-11-30T09:09:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4ca49efb-b15f-4459-9791-1a1ab83ccf57", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "halljulia", + "reviewDate": "2022-07-17T09:08:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9540c11c-aae5-4696-b3b4-99d0f15e3129", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "warrenalexandra", + "reviewDate": "2022-11-22T23:08:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b8e88fa8-8f82-4095-b3d5-4c0b285cb9a5", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "gavin50", + "reviewDate": "2021-06-03T11:19:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e8675620-455d-4417-a026-8cd2625f775d", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Micro (Silver)", + "description": "This Premium Speaker Micro (Silver) is rated 4.89 out of 5 by 15.\n\nRated 5 out of 5 by Anonymous from Best Micro I've Ever MADE A GOOD Micro Speaker I will get one for a large crowd. If you're like most Micro speakers,", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-07-07T15:54:04", + "price": 131.49, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-06-02T22:47:59", + "newPrice": 140.29 + }, + { + "priceDate": "2021-12-23T22:47:59", + "newPrice": 129.7 + }, + { + "priceDate": "2022-07-15T22:47:59", + "newPrice": 136.43 + }, + { + "priceDate": "2024-12-17T22:47:59", + "newPrice": 131.49 + } + ] + }, + { + "id": "eba3893e-b324-4e6e-b609-e0555171f656", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "kimpam", + "reviewDate": "2021-06-02T22:47:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "da938e96-d922-4d54-a755-fa265959d844", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "robinlawson", + "reviewDate": "2022-07-17T20:56:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c7ae7a1c-4097-45af-979b-9f2e164ea44a", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "buchananstacey", + "reviewDate": "2021-07-30T14:05:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "751cda24-32e4-477d-b6c1-b4d0449094e2", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "lparker", + "reviewDate": "2022-02-13T05:17:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "154a428f-92e4-4e90-a80e-78d0f2290a30", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "samuelsmith", + "reviewDate": "2022-05-25T14:35:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e2575298-7ac8-4226-ae64-e030ae53b528", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Pro (Gold)", + "description": "This Amazing Filter Pro (Gold) is so easy to get. Its compact design keeps one clean, clear filtrate in one handy place.\n\nThe filters are easy to work with.\n\nI love having one of these on every set as", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-02-08T08:19:04", + "price": 329.26, + "stock": 35, + "priceHistory": [ + { + "priceDate": "2021-01-21T14:42:42", + "newPrice": 343.33 + }, + { + "priceDate": "2021-07-10T14:42:42", + "newPrice": 354.54 + }, + { + "priceDate": "2021-12-27T14:42:42", + "newPrice": 331.29 + }, + { + "priceDate": "2022-06-15T14:42:42", + "newPrice": 355.66 + }, + { + "priceDate": "2022-12-02T14:42:42", + "newPrice": 335.3 + }, + { + "priceDate": "2024-11-21T14:42:42", + "newPrice": 329.26 + } + ] + }, + { + "id": "4981ddfd-e284-409d-9f4b-54368fd6b6da", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "urowland", + "reviewDate": "2022-01-21T13:56:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9b34b6f3-4cd6-4b14-97cb-d4d05bfc61db", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "ballelizabeth", + "reviewDate": "2022-12-03T16:17:52", + "stars": 5, + "verifiedUser": true + }, + { + "id": "887c0292-b284-46c7-9ab5-612bdc59324d", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "icole", + "reviewDate": "2022-06-08T09:59:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b14173ef-e8ef-4106-ae63-be673c30fe66", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "qaguirre", + "reviewDate": "2021-06-21T18:02:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f9988b4c-bc9a-4906-96bb-f4e7a34fac60", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "abaxter", + "reviewDate": "2021-03-21T01:16:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b2614edc-e829-4606-b922-f6cabcd3fa73", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "stephenmitchell", + "reviewDate": "2022-08-21T07:57:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "caf46139-aa3e-41cd-a44e-7445a5a42a74", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "valenciajoshua", + "reviewDate": "2022-02-15T02:28:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d782da27-65da-4929-92e3-f6b3401e6bbb", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "jlevine", + "reviewDate": "2021-06-26T20:12:36", + "stars": 4, + "verifiedUser": false + }, + { + "id": "903cdfec-0f2a-4d87-b9c2-6e88c34130df", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "schneiderwesley", + "reviewDate": "2021-05-10T08:26:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ee269247-9555-4331-9c74-e2dab4970180", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "sarahcooper", + "reviewDate": "2022-05-05T14:31:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "86e11418-9c88-47e8-a79f-d6b755cd8a06", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "cmartinez", + "reviewDate": "2021-01-21T14:42:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "23dab12f-6389-44de-a82c-699e7b66c37b", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "jacob63", + "reviewDate": "2021-09-03T09:57:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f37021ba-b28a-4998-82e8-8340ac72ed1a", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "leecaleb", + "reviewDate": "2021-06-26T07:14:48", + "stars": 5, + "verifiedUser": false + }, + { + "id": "188401ed-0dcf-49cf-8a7e-3c08455b07c3", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "zriley", + "reviewDate": "2022-08-28T11:53:28", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3574fbae-f4e2-43f7-b4eb-a9bebd4f9a41", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "natalie47", + "reviewDate": "2022-11-21T22:19:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cda164ee-fc8f-44ff-8deb-1f0cead26f56", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "jasonlewis", + "reviewDate": "2022-07-03T11:07:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "ddf39b83-c79b-40c2-9614-3a75b88c9de5", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "wendyalvarado", + "reviewDate": "2021-06-11T04:35:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c3aed356-2144-49c0-9432-618fc2ac1d1d", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "bherman", + "reviewDate": "2021-11-20T22:37:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone + (Steel)", + "description": "This Luxe Phone + (Steel) is a brand new and affordable smartphone that brings smartphone aesthetics into a fully modern smartphone experience.\n\nFeatures include:\n\n★ 3D camera and screen: It measures 23.3\" X 8\" X 6\"\n\n★ Full HD IPS LCD display and LED back", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-08-07T10:34:45", + "price": 637.57, + "stock": 34, + "priceHistory": [ + { + "priceDate": "2021-01-23T09:11:20", + "newPrice": 591.18 + }, + { + "priceDate": "2021-07-16T09:11:20", + "newPrice": 596.55 + }, + { + "priceDate": "2022-01-06T09:11:20", + "newPrice": 628.35 + }, + { + "priceDate": "2022-06-29T09:11:20", + "newPrice": 682.23 + }, + { + "priceDate": "2022-12-20T09:11:20", + "newPrice": 599.99 + }, + { + "priceDate": "2025-05-10T09:11:20", + "newPrice": 637.57 + } + ] + }, + { + "id": "d92717b4-d810-4045-a0a0-26932069ac28", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "knappsummer", + "reviewDate": "2021-04-18T06:23:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2123b028-1cfe-4032-a0c3-f8f14d1c3ea1", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidvang", + "reviewDate": "2022-12-20T16:36:01", + "stars": 5, + "verifiedUser": false + }, + { + "id": "2d32660d-512c-439d-9ad0-e459fda96b50", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "susan41", + "reviewDate": "2022-01-15T14:32:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "73309e50-9dec-477c-a6d6-de3adfbcdc2d", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "hsmith", + "reviewDate": "2021-01-23T09:11:20", + "stars": 5, + "verifiedUser": true + }, + { + "id": "33e13bd3-b25c-4308-ae96-99c9e20128a9", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "hebertjeffrey", + "reviewDate": "2021-11-02T18:59:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7b7f303d-cf33-469a-8d01-ed0cd998cf94", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "leonardhayes", + "reviewDate": "2021-09-30T15:36:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bba35e80-8337-4a28-9d70-01e91a9a12d8", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberlylopez", + "reviewDate": "2022-07-29T10:41:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer 3000 (Red)", + "description": "This Awesome Computer 3000 (Red) is the first computer that is available in the Supercharger series, with the idea being that it'll be able to charge up", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-08-05T20:28:15", + "price": 962.89, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-04-03T18:07:03", + "newPrice": 1012.49 + }, + { + "priceDate": "2022-12-08T18:07:03", + "newPrice": 1022.2 + }, + { + "priceDate": "2023-08-31T18:07:03", + "newPrice": 962.89 + } + ] + }, + { + "id": "79163561-7267-4b46-b80a-665a4dd6f9be", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "jared05", + "reviewDate": "2021-08-11T10:40:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6f90c63a-3eee-4305-83e0-16350180d2e1", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "catherinehouston", + "reviewDate": "2022-04-27T07:53:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aebe17e8-a51b-4360-8215-e987d7f65b19", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "henrybrian", + "reviewDate": "2022-03-09T12:02:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8695c652-d5fc-4783-95ed-81e4b60055e7", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael43", + "reviewDate": "2021-11-27T23:26:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d5523946-5c2a-4de8-baed-2ddae4d81324", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebecca88", + "reviewDate": "2021-04-03T18:07:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "088f6566-3615-40da-839d-b37a25293ee9", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "thomas05", + "reviewDate": "2021-05-19T10:12:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "678ff821-8c27-4d71-9819-6a7cbaeee948", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "kellyjames", + "reviewDate": "2021-11-26T04:40:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cd98b36b-fa6e-4adc-8fc1-c0ce6a17ed9c", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "uscott", + "reviewDate": "2021-10-09T21:02:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf0e8364-75e8-4a83-baff-e4dfd82bd410", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtney06", + "reviewDate": "2022-05-02T20:21:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "568f5c29-74ee-4813-9813-880468bc7d27", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "leejoshua", + "reviewDate": "2022-10-21T22:15:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "271ca013-612a-4ee1-b981-a6c8bce2aba8", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "ischneider", + "reviewDate": "2022-11-04T20:08:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4752d839-9f9c-46fa-9cbd-d9ea3a6cb389", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtney51", + "reviewDate": "2022-07-07T10:46:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9624f471-000d-4609-a96a-3c23e57b2525", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "stacyedwards", + "reviewDate": "2022-03-22T03:33:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b5c59887-0d50-41ce-a387-a8ee86532eef", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "william87", + "reviewDate": "2022-07-22T05:23:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0aa687e9-2430-4061-94ec-159e985f462c", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "manuelsimpson", + "reviewDate": "2022-03-08T15:33:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aca44a9e-285e-4b24-937c-6db725766a23", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "dcampbell", + "reviewDate": "2022-09-15T03:04:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e2f894fc-222d-41f6-ba36-642a2414048f", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "ehart", + "reviewDate": "2022-12-09T06:07:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b3aaff95-87f2-4a58-8cde-6faf2802ce02", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "coxchristina", + "reviewDate": "2022-05-13T07:30:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Black)", + "description": "This Basic Speaker Mini (Black) is the first of the Speaker Mini-Series from T-Mobile USA's MVNO, The Mobile House Music. It features a built-in speaker, USB to/", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-11-15T23:25:17", + "price": 736.67, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-05-15T21:04:19", + "newPrice": 703.53 + }, + { + "priceDate": "2021-10-06T21:04:19", + "newPrice": 685.1 + }, + { + "priceDate": "2022-02-27T21:04:19", + "newPrice": 718.65 + }, + { + "priceDate": "2022-07-21T21:04:19", + "newPrice": 681.12 + }, + { + "priceDate": "2022-12-12T21:04:19", + "newPrice": 723.85 + }, + { + "priceDate": "2023-01-22T21:04:19", + "newPrice": 736.67 + } + ] + }, + { + "id": "eb98d62f-8db7-43be-b2f4-7b9bb39e6e63", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "ebonycarrillo", + "reviewDate": "2022-08-11T12:42:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a0b32324-60f6-430f-9bf2-51766f5209ae", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "lewiserin", + "reviewDate": "2022-03-28T02:24:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c1bb06ab-e390-41af-b757-82e17ccd4966", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "robert95", + "reviewDate": "2022-04-22T12:04:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "865fae12-9683-4aab-9caf-fe1852a89fbf", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "robinsonbrian", + "reviewDate": "2022-05-05T07:49:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f8ea1621-584a-496a-b26a-dffb4523267b", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "jennifer62", + "reviewDate": "2021-05-17T18:40:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "62fcb8cd-3302-44dd-89e0-d2bbb40c19c1", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "russellmichael", + "reviewDate": "2022-12-15T20:01:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f2938921-d87e-42ba-8982-2b3d0cd6869e", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "ocabrera", + "reviewDate": "2022-04-17T06:05:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fefaefc3-03e4-481c-a85a-3e60f63db08f", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "nmills", + "reviewDate": "2021-05-15T21:04:19", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4550fe07-f801-4dca-86f3-848b2b2957d0", + "productId": "4550fe07-f801-4dca-86f3-848b2b2957d0", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer 3000 (Steel)", + "description": "This Basic Computer 3000 (Steel) is like a 3D computer. It functions as a supercomputer through which the entire thing is controlled by the electrical brain and a remote control computer. The machine uses 3D software for programming and then displays a computer on display while the programmer watches the film.\n\nThe movie tells a simple plot with no magic bells or cliches and only 3D graphics.\n\nThis video is for my personal use to show the benefits of using a", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-03-30T09:41:00", + "price": 878.61, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2022-07-28T09:30:23", + "newPrice": 801.42 + }, + { + "priceDate": "2023-02-17T09:30:23", + "newPrice": 878.61 + } + ] + }, + { + "id": "c5b34059-55f9-4a77-b49a-75403234c250", + "productId": "4550fe07-f801-4dca-86f3-848b2b2957d0", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsrandall", + "reviewDate": "2022-07-28T09:30:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Micro (Steel)", + "description": "This Luxe Phone Micro (Steel) is easy to use and quick to install. The micro is made specifically for the Luxe Phone (sold separately), meaning it will protect your phone from scratches and wear. It has two 3mm lens filters (0.4x, 1x and 1.8x).", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-09T10:13:57", + "price": 838.51, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-04-23T08:11:06", + "newPrice": 916.01 + }, + { + "priceDate": "2022-02-21T08:11:06", + "newPrice": 862.62 + }, + { + "priceDate": "2022-12-22T08:11:06", + "newPrice": 846.47 + }, + { + "priceDate": "2023-07-25T08:11:06", + "newPrice": 838.51 + } + ] + }, + { + "id": "dfc795dd-9ddc-43fb-84a6-dd0706f621d6", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "oingram", + "reviewDate": "2021-09-10T14:11:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e34f76ee-1168-43a5-9cc7-5e0ec7ee9245", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "tlopez", + "reviewDate": "2022-07-16T23:58:36", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4d072496-0cb3-4aaa-85f5-e320efb0125f", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "icarpenter", + "reviewDate": "2021-04-23T08:11:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ebcd9bba-95f9-4f5d-9cdd-f6f9ca6e3996", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "omccarthy", + "reviewDate": "2022-06-03T08:26:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5ea35b87-7874-4d4d-84ee-b66e119ed745", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "denisewallace", + "reviewDate": "2021-10-10T07:02:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7824db1a-2c74-4625-a599-39bcb528e936", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "davieskatie", + "reviewDate": "2021-09-14T08:59:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "94d3723e-50c7-4f8f-bc79-3ec9693de66c", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kennedypamela", + "reviewDate": "2021-05-30T04:00:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "015d4b78-e16b-4041-a93a-5e50f2077f6d", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristi02", + "reviewDate": "2022-08-20T07:52:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "696b12ab-dfc4-416a-917f-351dfda7a09c", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kaitlinbernard", + "reviewDate": "2022-12-24T01:19:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b6ac74e3-be4c-43df-8609-510cdff95e72", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kjohnson", + "reviewDate": "2022-06-11T01:54:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ba1a2cc3-4422-428f-b8a6-28a7791fad75", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "qkramer", + "reviewDate": "2021-06-17T14:51:13", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6ebc890d-df53-4cc2-9b0d-8dbca0751be8", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "diazemily", + "reviewDate": "2022-09-08T15:09:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ca5700ab-038e-475e-9c64-3366ddeafef4", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "yolandaclark", + "reviewDate": "2022-11-25T02:39:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3a9fc83a-38cc-4e6c-b0ae-3b1800409303", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "santiagojason", + "reviewDate": "2022-04-10T08:22:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f3bc0fd1-8021-41df-9c3e-3f3fe325635d", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "shellyhorton", + "reviewDate": "2021-08-31T16:32:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eec8d165-0353-4943-b250-d37dd173fa45", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "product", + "name": "Awesome Filter + (Gold)", + "description": "This Awesome Filter + (Gold) is rated 3.8 out of 5 by 4.\n\nRated 5 out of 5 by TillyD from Great Filter!! The filter fits my filter in with one pair of the AICC filters and works well with the dual cable cables with the adapter (the others are not connected to each other), the I.D. cable used works", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-01-14T12:57:12", + "price": 256.67, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-01-18T20:39:55", + "newPrice": 240.58 + }, + { + "priceDate": "2022-04-22T20:39:55", + "newPrice": 256.67 + } + ] + }, + { + "id": "f2df181a-2932-4eea-9ab5-02f7913d2a79", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "uboone", + "reviewDate": "2022-05-17T03:09:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cefb81ff-32ee-400b-ac2e-dc2bb9a93013", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "josephsummers", + "reviewDate": "2022-12-19T20:27:29", + "stars": 5, + "verifiedUser": true + }, + { + "id": "16432e41-7308-432b-b679-ce569dc7ef5b", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "wking", + "reviewDate": "2021-11-05T03:34:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4b3a1f61-63b5-4601-9bb4-416737a526aa", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "hawkinsashley", + "reviewDate": "2021-08-08T22:14:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "201659ec-95a4-4445-a71c-14cfada0c339", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "amy86", + "reviewDate": "2021-01-18T20:39:55", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e76da812-3e0f-4b25-ac88-fb43a22bd29a", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "cynthiahanna", + "reviewDate": "2021-01-21T20:14:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "930cd6a2-d280-4226-a373-aff965d70bd7", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "brittney25", + "reviewDate": "2021-02-10T14:40:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer 3000 (Silver)", + "description": "This Luxe Computer 3000 (Silver) is equipped with a 1,000-watt supercharged 6.5 Wh (8 Wh at 110 VAC) VANSIENT HEATER MATS (which can be powered by either an AC or DC inverter depending on what style's available).\n\nThe new version also includes a new power amplifier which adds 100 Watts to its", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-03-09T09:11:06", + "price": 830.78, + "stock": 31, + "priceHistory": [ + { + "priceDate": "2021-01-21T00:23:19", + "newPrice": 833.89 + }, + { + "priceDate": "2021-07-10T00:23:19", + "newPrice": 885.68 + }, + { + "priceDate": "2021-12-27T00:23:19", + "newPrice": 793.47 + }, + { + "priceDate": "2022-06-15T00:23:19", + "newPrice": 868.25 + }, + { + "priceDate": "2022-12-02T00:23:19", + "newPrice": 770.01 + }, + { + "priceDate": "2023-02-24T00:23:19", + "newPrice": 830.78 + } + ] + }, + { + "id": "46097160-953a-4170-91ac-02e39a367cf3", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "bdavis", + "reviewDate": "2022-06-19T02:37:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "db5d5358-fb44-4750-b20e-5603c0f40fcd", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "mccormickjames", + "reviewDate": "2021-01-21T00:23:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cc03ffef-66f8-4e5c-885b-9ed8ba87cf1f", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnsjesus", + "reviewDate": "2022-01-23T15:17:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9d55ab68-fb9c-4b77-89e9-2877e645167b", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "ronaldjordan", + "reviewDate": "2022-08-06T12:33:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b4b770b6-8b7b-411d-b495-a30c34ead5c2", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "amberadams", + "reviewDate": "2021-11-22T21:15:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d710cc89-74c3-444e-84cf-32a108c18ba3", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaron88", + "reviewDate": "2021-03-21T16:23:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ec4e425a-6a35-44a9-ba90-94a8732537c3", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "julie72", + "reviewDate": "2021-08-15T18:52:01", + "stars": 5, + "verifiedUser": false + }, + { + "id": "390f675a-c70b-4dab-86ba-7eac3c69b67d", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "upowell", + "reviewDate": "2021-10-04T06:18:38", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8a56466c-3825-4045-ba85-6459c8a3922a", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "mikeorr", + "reviewDate": "2022-08-27T17:12:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "488975a1-2961-4e22-aa04-43da39ed2eea", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "xfigueroa", + "reviewDate": "2021-07-18T06:01:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "09a595ec-1c07-4b99-9e6f-135aa09ac925", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "brownsharon", + "reviewDate": "2021-07-07T01:46:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e5b3c4be-5d2c-4b54-8ca8-a26bab391a7a", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "thompsonhannah", + "reviewDate": "2022-12-03T07:08:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "be4b9486-d41c-4536-ad99-f2cbe299f3c5", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "arhodes", + "reviewDate": "2022-11-03T02:03:57", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ab0cf420-37d7-402d-ac86-2872f19e99d2", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "randy00", + "reviewDate": "2021-12-13T13:05:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e2516234-ad9f-4a51-83ee-5c435a1a6583", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "delgadojoseph", + "reviewDate": "2021-03-13T02:22:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "003fd9a5-390d-447e-bcb7-2d99552d2535", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "lauracowan", + "reviewDate": "2022-08-18T06:59:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "88b4138b-ad25-4a16-bebd-6681d029aec6", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "lperez", + "reviewDate": "2021-09-05T17:57:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "48e1abf2-3ab0-4b27-b08c-31cfb0104aaa", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "wheelermichael", + "reviewDate": "2022-09-11T06:29:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "27fe015d-8aa3-4ed9-886a-00fac356ff77", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "danielmunoz", + "reviewDate": "2021-10-20T01:08:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "product", + "name": "Awesome Filter 3000 (Red)", + "description": "This Awesome Filter 3000 (Red) is like the classic movie of the past, a beautiful, sharp filter that provides a beautiful contrast against the background. It will probably sound cliche to suggest that the", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-03-17T17:35:04", + "price": 823.36, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-02-22T21:48:04", + "newPrice": 822.81 + }, + { + "priceDate": "2021-08-07T21:48:04", + "newPrice": 899.39 + }, + { + "priceDate": "2022-01-20T21:48:04", + "newPrice": 904.28 + }, + { + "priceDate": "2022-07-05T21:48:04", + "newPrice": 756.72 + }, + { + "priceDate": "2022-12-18T21:48:04", + "newPrice": 899.23 + }, + { + "priceDate": "2025-08-11T21:48:04", + "newPrice": 823.36 + } + ] + }, + { + "id": "e1062ae0-6fa6-4ef7-86bf-fe7933ec51db", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "davidthomas", + "reviewDate": "2022-12-18T23:42:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "df0ad86d-b8ba-4dc2-ab17-afefec6923e1", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "dmills", + "reviewDate": "2022-03-29T05:03:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "77266dcc-4adb-46fe-a008-ad52fd17f42b", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "lauraparks", + "reviewDate": "2022-01-04T00:35:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9973207d-8b4a-40f7-8eef-56e1d99e7673", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "jessicaprice", + "reviewDate": "2021-12-26T10:14:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6bec586f-8210-4924-9663-42b44f9069a0", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "huffdavid", + "reviewDate": "2022-06-07T17:08:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "57b0b91c-220a-4a57-9be9-a6d06a7fb56a", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "mparker", + "reviewDate": "2022-10-04T14:47:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4928094a-1618-4134-bd10-ae06c5f40028", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "qmason", + "reviewDate": "2021-05-13T22:58:58", + "stars": 5, + "verifiedUser": true + }, + { + "id": "5389529e-10a9-4f00-a479-0c3d7181af3b", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "smiranda", + "reviewDate": "2022-01-09T22:26:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "08fcab26-71ef-4f76-ad25-cbb5ef54aab5", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "keith89", + "reviewDate": "2021-08-17T20:37:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b908ecbe-fa42-4f28-8563-9861fd6ebb4a", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "harrisbrandon", + "reviewDate": "2021-12-24T05:47:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3c2e7208-93fc-4865-a05d-3b53222dfb3f", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "bennettjackson", + "reviewDate": "2021-02-22T21:48:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f114d5df-5172-4b3f-9ae0-c23cdeaed982", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "corey74", + "reviewDate": "2022-09-06T22:07:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0061455d-8559-4805-aef1-e456f4190765", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "joanwilson", + "reviewDate": "2022-07-24T07:28:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "653cc399-d9a9-4070-9319-096b6859f5d1", + "productId": "653cc399-d9a9-4070-9319-096b6859f5d1", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Ultra (Red)", + "description": "This Basic Mouse Ultra (Red) is an Ultra-soft mouse for the PC of Windows 10, developed at the Massachusetts Institute of Technology (MIT) for the Office Suite for Office 2016. It", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-09-19T21:35:13", + "price": 176.25, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2019-09-19T21:35:13", + "newPrice": 168.74 + }, + { + "priceDate": "2021-03-14T21:35:13", + "newPrice": 177.63 + }, + { + "priceDate": "2022-09-07T21:35:13", + "newPrice": 166.59 + }, + { + "priceDate": "2024-03-02T21:35:13", + "newPrice": 172.62 + }, + { + "priceDate": "2025-08-26T21:35:13", + "newPrice": 175.45 + }, + { + "priceDate": "2025-08-27T21:35:13", + "newPrice": 176.25 + } + ] + }, + { + "id": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Ultra (Silver)", + "description": "This Premium Speaker Ultra (Silver) is designed for every single user!\n\nThis Premium Speaker Ultra (Silver) is designed for every single user! The ultra-powerful V8 is the perfect balance of power and warmth for every one of your needs; and for everyone.\n\nThe V8 is the perfect balance of power and warmth for every one of your needs; and for everyone. For all users, you'll find an efficient, yet high-grade power", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-05-23T12:52:58", + "price": 1041.6, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-02-21T14:08:50", + "newPrice": 1031.45 + }, + { + "priceDate": "2022-12-24T14:08:50", + "newPrice": 1007.27 + }, + { + "priceDate": "2025-02-14T14:08:50", + "newPrice": 1041.6 + } + ] + }, + { + "id": "9509744a-4787-4be2-8cbe-4fa272f6df7f", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "wbennett", + "reviewDate": "2022-02-06T01:35:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "57f9ddc7-03fe-4bad-a367-caa6a7a8ed4c", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "pjohnston", + "reviewDate": "2022-12-19T23:38:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d4792796-a99c-4655-9b14-4973a3d2a571", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "jimmymurray", + "reviewDate": "2022-11-26T21:21:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d8ca350f-0c41-4392-86a8-37cfb5df6028", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "anthonyjohnson", + "reviewDate": "2022-07-27T10:06:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3b72b985-7954-48cb-81bf-ac93bcab5c6c", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "hollyholder", + "reviewDate": "2022-06-26T13:41:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c39de6db-28c7-46b7-b6e9-1a3597be4d78", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "pmartinez", + "reviewDate": "2022-11-21T03:55:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c38db0a7-121a-4286-843d-8de3f7221e86", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "atkinsondiane", + "reviewDate": "2022-12-25T13:02:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "06ed3254-62bf-4a7b-94d6-4db2bb019b71", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "arodriguez", + "reviewDate": "2021-02-21T14:08:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8c2bd2f1-a67c-4154-a1b6-c08ea42726ab", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "christophercarrillo", + "reviewDate": "2021-12-22T18:13:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "95498ece-f029-4ce3-bd94-501959718ffb", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "paulanderson", + "reviewDate": "2022-12-08T12:36:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eb280169-55cc-4d2e-aeeb-5d47faaa7966", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "hvargas", + "reviewDate": "2022-10-09T23:42:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "05175420-b4b7-4d8f-a588-16d722d67f66", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "abryan", + "reviewDate": "2022-06-09T12:15:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bf5b120a-6fd1-41ef-ac29-f26e3ca02a55", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "jmarshall", + "reviewDate": "2022-05-04T00:49:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "38dd564f-5f37-4426-979f-00310c5231f0", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone 3000 (Red)", + "description": "This Luxe Phone 3000 (Red) is a slim phone with bright silver design and a large square screen for viewing up to 5 movies simultaneously without need to buy additional batteries. It is a popular smartphone that has come a long way. With over 100 million users worldwide, this 5.7 inches, 13-inch IPS-LED phone is the perfect choice for sharing movies and sports, and it offers everything you need to have a screen that", + "countryOfOrigin": "Brazil", + "rareItem": true, + "firstAvailable": "2019-02-20T14:24:56", + "price": 486.28, + "stock": 10, + "priceHistory": [ + { + "priceDate": "2021-02-01T04:48:04", + "newPrice": 447.37 + }, + { + "priceDate": "2022-10-24T04:48:04", + "newPrice": 454.72 + }, + { + "priceDate": "2024-12-15T04:48:04", + "newPrice": 486.28 + } + ] + }, + { + "id": "c43bb08c-dde0-4375-87f7-5a9dae7a3920", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "veronicarobinson", + "reviewDate": "2021-11-24T20:14:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a7675ab8-3754-408e-85a2-d614796e962b", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "hmarshall", + "reviewDate": "2022-10-24T14:20:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f8b74c5f-2b79-444b-adfb-6863fb750f0f", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher05", + "reviewDate": "2022-06-24T08:05:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c00a7c57-881d-4d9a-a2aa-307820a0b6a3", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "rrollins", + "reviewDate": "2021-02-01T04:48:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d4c2468b-ca03-4030-954a-9a4550e90b36", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael57", + "reviewDate": "2021-02-19T07:18:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d9e75e5e-17c5-468c-b6da-17d6dca4b94a", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "yandrews", + "reviewDate": "2021-03-21T05:23:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard + (Red)", + "description": "This Amazing Keyboard + (Red) is the perfect choice to play as your favourite characters.", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-01-16T10:06:12", + "price": 215.83, + "stock": 71, + "priceHistory": [ + { + "priceDate": "2021-03-09T11:43:16", + "newPrice": 236.77 + }, + { + "priceDate": "2021-08-13T11:43:16", + "newPrice": 227.93 + }, + { + "priceDate": "2022-01-17T11:43:16", + "newPrice": 209.04 + }, + { + "priceDate": "2022-06-23T11:43:16", + "newPrice": 204.5 + }, + { + "priceDate": "2022-11-27T11:43:16", + "newPrice": 231.49 + }, + { + "priceDate": "2025-04-12T11:43:16", + "newPrice": 215.83 + } + ] + }, + { + "id": "08bc5003-6ae8-43f5-9048-1891caed549c", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksonanthony", + "reviewDate": "2021-04-16T18:08:57", + "stars": 5, + "verifiedUser": true + }, + { + "id": "e29d2558-20d8-4608-b790-a21e314a963a", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "whitelori", + "reviewDate": "2022-02-22T12:24:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "37dcb05a-28e7-4f9b-a25d-a0ff006a1140", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hmolina", + "reviewDate": "2022-03-22T07:54:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5d7c60b4-7e82-4bb5-b7bd-a6c54ae58b5c", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mark44", + "reviewDate": "2021-09-13T14:39:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2149b2e9-34ed-4002-bea5-09825eff53c9", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "roweyolanda", + "reviewDate": "2021-10-15T09:18:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cb307871-f6df-4266-8be3-764604b97ad0", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mhart", + "reviewDate": "2022-08-19T11:10:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b585e10f-a4b6-441c-bb5d-841700fd6734", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patricia37", + "reviewDate": "2021-08-20T19:19:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ddc9b6b5-a560-4058-9130-893d2b49f216", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidsimmons", + "reviewDate": "2021-12-20T19:23:13", + "stars": 5, + "verifiedUser": false + }, + { + "id": "eb49fe31-97e3-4f60-bf8d-cdeff44ea7ac", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertmays", + "reviewDate": "2021-10-03T01:15:40", + "stars": 5, + "verifiedUser": true + }, + { + "id": "40e00ac9-7439-4532-9065-f4c0b4a57bf0", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rayheather", + "reviewDate": "2021-10-01T20:13:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bf9d97b5-7381-45e3-ba4c-c8aaf570c66d", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pruittpatricia", + "reviewDate": "2022-05-13T10:56:01", + "stars": 5, + "verifiedUser": true + }, + { + "id": "cda9e5bf-c5e2-481d-9a20-2a430c1e7336", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lesliegilmore", + "reviewDate": "2022-03-28T12:59:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "999b80ba-506c-4a76-8a52-876721b8b2ca", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fletchermariah", + "reviewDate": "2021-11-07T10:32:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "26921181-c9cb-48a0-9353-8e5b088a93bb", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael04", + "reviewDate": "2022-08-31T03:15:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "89460a10-e0bf-4c8b-b572-9d93228e7dd4", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tara14", + "reviewDate": "2022-11-30T01:39:47", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5b216751-8641-4684-90fa-bba00764053c", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniemartinez", + "reviewDate": "2021-03-30T00:57:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "68ca2022-a393-48d4-9c0c-7d0b77c80665", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "millerbradley", + "reviewDate": "2021-03-09T11:43:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "546ca661-1061-4f93-b172-5948810ca9a7", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Micro (Gold)", + "description": "This Luxe Mouse Micro (Gold) is made from an ultrathin polyester and has a leather surface. It features two high-end models of the Micro, a black, white and a grey version. The colour is actually reflective though as many of its features and textures appear to be reflected in", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-02-01T23:53:14", + "price": 736.78, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-04T13:04:19", + "newPrice": 678.27 + }, + { + "priceDate": "2021-05-19T13:04:19", + "newPrice": 666.24 + }, + { + "priceDate": "2021-10-01T13:04:19", + "newPrice": 736.84 + }, + { + "priceDate": "2022-02-13T13:04:19", + "newPrice": 708.72 + }, + { + "priceDate": "2022-06-28T13:04:19", + "newPrice": 754.28 + }, + { + "priceDate": "2023-03-17T13:04:19", + "newPrice": 736.78 + } + ] + }, + { + "id": "0dd9d211-2107-4164-8c8b-2aa893d303e0", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nburke", + "reviewDate": "2021-12-31T01:16:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98edc9cb-6ff0-47f1-8613-6e9439549e25", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinamacdonald", + "reviewDate": "2021-01-04T13:04:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0fd50f8f-8cfd-4cf9-8b54-f9139ca4c922", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reneemartin", + "reviewDate": "2022-06-08T00:34:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "08abdab6-817f-4737-95a2-884645712fbe", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ucuevas", + "reviewDate": "2022-06-28T22:48:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "63279a55-4093-4152-80cd-69f4f4299d8d", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "danielgiles", + "reviewDate": "2022-05-30T01:53:43", + "stars": 5, + "verifiedUser": true + }, + { + "id": "70203357-c9c3-4a8f-b173-3d72c6826682", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa90", + "reviewDate": "2021-02-11T09:38:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "product", + "name": "Premium TV Mini (Red)", + "description": "This Premium TV Mini (Red) is not included in the price list. It's not included at all in your local box office.\n\nWhat it does:\n\nPowered this full-size TV mini (also known as a Premium TV Mini, or SFF) from a 5.20 inch solid-state drive instead of the 5.25 inch solid-state drive sold on the Lowe's Web", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-03-06T12:11:39", + "price": 557.18, + "stock": 4, + "priceHistory": [ + { + "priceDate": "2021-01-03T23:03:46", + "newPrice": 520.84 + }, + { + "priceDate": "2021-07-28T23:03:46", + "newPrice": 525.52 + }, + { + "priceDate": "2022-02-19T23:03:46", + "newPrice": 564.05 + }, + { + "priceDate": "2022-09-13T23:03:46", + "newPrice": 612.31 + }, + { + "priceDate": "2022-11-07T23:03:46", + "newPrice": 557.18 + } + ] + }, + { + "id": "078026bb-9c1f-4abc-9e14-e05fff371c2b", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "josephwilkerson", + "reviewDate": "2021-03-20T19:40:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b421137f-2b90-436c-8e79-81f93b1cd77f", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "haleytina", + "reviewDate": "2021-01-03T23:03:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "601840ca-7770-47e9-ba5a-65f60bccddec", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "chelseahayes", + "reviewDate": "2022-09-10T13:13:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf1d56c8-efb6-41fc-8dd6-26fe5acf7525", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "alexanderwendy", + "reviewDate": "2022-03-17T01:33:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6f85a815-7b34-4097-8699-c1c539c26737", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "lisa65", + "reviewDate": "2021-10-19T17:53:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d19cd799-15b8-4f52-a1ed-f59a37b2c349", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "tracy10", + "reviewDate": "2022-01-09T08:07:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4a934c07-c0a8-4ae7-9660-5ad008100186", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "nbooker", + "reviewDate": "2022-09-16T13:37:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "product", + "name": "Luxe TV Mini (Steel)", + "description": "This Luxe TV Mini (Steel) is one of the most expensive and luxurious sets you can buy for the price. This Luxe TV Mini looks amazing on a big display, like an iPhone 6 Plus, is so luxurious there is nothing you can do about it. It also has a nice touch screen which keeps the screen on full screen on an almost full screen. You can see a good amount of the detail for about $1000 a year (see the original Price Chart ).\n\nThere", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-11-04T17:52:53", + "price": 863.11, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-01-17T00:05:45", + "newPrice": 890.89 + }, + { + "priceDate": "2021-09-02T00:05:45", + "newPrice": 792.94 + }, + { + "priceDate": "2022-04-18T00:05:45", + "newPrice": 871.85 + }, + { + "priceDate": "2022-12-02T00:05:45", + "newPrice": 875.7 + }, + { + "priceDate": "2025-06-25T00:05:45", + "newPrice": 863.11 + } + ] + }, + { + "id": "2b15009d-797b-4cc5-8fd2-d2a64d8e90dc", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "ashleyhays", + "reviewDate": "2022-06-20T01:11:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "46a7e9df-74f7-4b3c-90a0-14a0ad386ebb", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "sarcher", + "reviewDate": "2022-05-01T08:29:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cd18c1e8-0836-42ad-a89a-8dcbfd66cc66", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "travis78", + "reviewDate": "2022-07-10T02:19:33", + "stars": 4, + "verifiedUser": true + }, + { + "id": "98086eec-ffe0-46ef-a5db-d52915a2ce06", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "brownstephanie", + "reviewDate": "2022-08-13T05:49:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8455c9d1-17af-467c-ab9e-27ee5f5d38ee", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "lwilson", + "reviewDate": "2022-08-05T23:14:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4a0d4ea6-2101-47c4-932e-d4fcc323c6d0", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "huntzachary", + "reviewDate": "2022-12-03T13:56:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d3c63fc8-de95-4b48-beed-4dfa52b7d033", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "soliver", + "reviewDate": "2021-03-06T17:57:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1fccb233-5c3e-4319-aa16-6ed89a4bdb43", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "reedisaac", + "reviewDate": "2022-05-18T16:54:06", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3d041556-564a-4fd8-a19e-ff5ecb5fb209", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "danielsantos", + "reviewDate": "2021-01-17T00:05:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fe790148-fe3f-44ad-8860-14f425fda4a2", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "kirkcindy", + "reviewDate": "2022-04-20T09:20:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4881a53b-c8be-4346-b9d2-2a3db9380f0d", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "pthomas", + "reviewDate": "2022-10-20T22:44:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Pro (Steel)", + "description": "This Amazing Computer Pro (Steel) is back!\n\n\n(Photo Credit: Gizd News)\n\nIf you were wondering why Gizd News is reporting on the Gizd Supercomputer today. Why was it featured in The Washington Post? Because that's about the only thing I can think of in this story that would have prevented the headline. It's been 12 weeks, and", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-09-08T19:13:35", + "price": 534.25, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-01-06T00:42:56", + "newPrice": 493.3 + }, + { + "priceDate": "2022-02-19T00:42:56", + "newPrice": 534.25 + } + ] + }, + { + "id": "cc0393f3-cedb-4128-9060-ffa7d453e452", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "qstewart", + "reviewDate": "2021-03-15T06:39:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5211f846-dcc6-4aff-a198-f43471ce7eea", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "ewingkevin", + "reviewDate": "2022-06-19T08:06:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3a6846fb-adb3-4177-aa31-b8f25624ef84", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "mhall", + "reviewDate": "2022-05-08T09:14:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "67953b63-a710-448a-84ff-1b4c1e07839b", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "brownjulie", + "reviewDate": "2021-01-06T00:42:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f64ad549-b576-4cb9-a3fa-df82065f7b5f", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "coleerika", + "reviewDate": "2022-05-07T01:31:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fed89633-d926-46ef-899d-7d6108a64ac5", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "lynchashley", + "reviewDate": "2021-07-04T22:50:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9b2c9cc5-b4d1-4e22-9334-040ff47c3ead", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "baldwinjonathan", + "reviewDate": "2022-03-26T00:59:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b0400ea2-78d5-47b6-97dd-a3a524cd937e", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "xwagner", + "reviewDate": "2021-02-17T21:57:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4a6cfc4b-ceb4-495a-a369-3e5df31ba12a", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "lloydlisa", + "reviewDate": "2022-01-18T05:39:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f1dc7b64-4fb9-49d9-a6c6-9fff92dda8e0", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "justinwright", + "reviewDate": "2021-02-22T05:14:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b4ff8298-a897-476b-b4dd-ce92d044af4a", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "cruzcharles", + "reviewDate": "2021-11-01T10:24:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e4ac8f3b-33d0-42a0-a91c-b3d5e129d60c", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "bishopkevin", + "reviewDate": "2022-06-21T12:14:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Pro (Gold)", + "description": "This Basic Keyboard Pro (Gold) is an important computer that people need to make some of their own when not using the system. With one piece of hardware you can keep your hand free, and with 2 pieces of hardware you can't control your hands.\n\nThe keyboard has been designed with the goal of being as close to", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-07-17T08:09:09", + "price": 540.65, + "stock": 51, + "priceHistory": [ + { + "priceDate": "2021-01-08T20:42:13", + "newPrice": 563.82 + }, + { + "priceDate": "2021-10-01T20:42:13", + "newPrice": 540.65 + } + ] + }, + { + "id": "17745ba8-c4d1-4be1-84f0-2e8f16e90bd9", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vbenson", + "reviewDate": "2022-07-17T17:54:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b5c16d9c-8845-43ff-b586-bc42946403d1", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sjohnson", + "reviewDate": "2021-01-08T20:42:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7e412e02-817b-4e60-a948-1edfb6c7c87f", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "livingstonbrenda", + "reviewDate": "2021-07-30T07:26:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dcd6c728-3c46-4251-b5e7-718bca49535d", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "donald80", + "reviewDate": "2022-04-29T23:23:10", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7f78afa9-d2ba-4093-8d79-84fed405cf12", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james92", + "reviewDate": "2022-01-07T22:02:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "609ada9b-3f84-4893-850d-fe66af77e42c", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "starksarah", + "reviewDate": "2021-03-24T04:02:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7b1ed6f3-cffc-4a13-852c-4c2c06443422", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksonholly", + "reviewDate": "2021-12-14T02:26:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "22743a7f-5ca8-44f1-8676-b650e56cb02f", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher45", + "reviewDate": "2021-06-07T02:00:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "961250f3-1b88-46d7-9c6f-a70081a5e8f4", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lcrane", + "reviewDate": "2021-05-03T20:02:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "92eb911a-1ab8-4ea0-810f-df4c44b4a730", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "collierjessica", + "reviewDate": "2022-09-29T22:03:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ca9ba34f-ef32-48e9-a810-468f6a3136e4", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "linda48", + "reviewDate": "2022-03-09T23:43:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ca4e3fc6-e0cb-4b6e-b468-b23736b07b33", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin61", + "reviewDate": "2022-04-30T21:30:38", + "stars": 4, + "verifiedUser": true + }, + { + "id": "28aed418-be96-409b-9d82-42224811cd5f", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brittanystanley", + "reviewDate": "2022-12-01T12:42:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "27cfaabf-0a96-4f13-a465-5f176bfdd621", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frankdiana", + "reviewDate": "2021-11-02T12:41:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker + (Gold)", + "description": "This Amazing Speaker + (Gold) is coming back!! Just don't wait to find out if you love it on the 3rd.\n\nLove, John!\n\nWe love this speaker. It's a little like what a regular TV speaker would do. The build quality is better. The cable doesn't come with a built-in built-in speakers box in it although these have done in our opinion that many people do. We like that the speaker works to make it easy on", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-09-27T08:56:00", + "price": 208.71, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-02-03T19:02:11", + "newPrice": 196.39 + }, + { + "priceDate": "2022-08-07T19:02:11", + "newPrice": 208.71 + } + ] + }, + { + "id": "b823fd51-0631-4f73-aa50-12a977040d6c", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "cruzangela", + "reviewDate": "2021-12-11T06:29:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6817c48f-53bc-44ce-bd29-567a0744f285", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "macksamantha", + "reviewDate": "2022-06-02T06:31:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2d53ed70-fa4e-479c-8b15-8dfd03646a04", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonbrian", + "reviewDate": "2021-02-03T19:02:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3da6e087-aafc-4b26-96fe-9c99849d2223", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "lisalara", + "reviewDate": "2022-01-05T00:20:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "07c17664-5cf0-4391-88e7-bc6ded2ed212", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "odomjorge", + "reviewDate": "2022-01-31T06:16:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Steel)", + "description": "This Premium Stand Micro (Steel) is made by IOSP Technologies. This premium stand micro includes the \"Kite\" and \"Faster\" models.\n\n\nThe \"Kite\" will be the heaviest looking plastic the Kite offers. It features an outer lid, a metal cap, 3-point mounting plate, and a plastic front plate that also features KITE® for", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-06-28T03:35:55", + "price": 1076.43, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-02-15T06:32:34", + "newPrice": 1065.13 + }, + { + "priceDate": "2022-12-23T06:32:34", + "newPrice": 1160.69 + }, + { + "priceDate": "2023-07-14T06:32:34", + "newPrice": 1076.43 + } + ] + }, + { + "id": "05d529f6-cbd9-41c7-9606-a47505a975b9", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "watsondaniel", + "reviewDate": "2022-08-09T04:51:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4f8d7424-8620-4bd9-b75d-3cd21e864791", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "williammarshall", + "reviewDate": "2022-03-03T15:40:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "adf5edf5-8b26-4a4e-884d-8290d4cd3e81", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "richardbarbara", + "reviewDate": "2021-02-15T06:32:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fa7f5cc9-1e01-4eff-8b31-a1e4508f8f82", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "alexandriashaw", + "reviewDate": "2022-04-29T05:36:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "92aeafe3-e813-4715-9756-bfc458083fe3", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "allen84", + "reviewDate": "2021-12-10T10:47:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bcfe0f73-e7f3-420d-869b-42736fc3919e", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "colejeffrey", + "reviewDate": "2022-02-19T23:25:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d105cd71-3f6f-4733-a30c-79a3ba59be17", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifergarcia", + "reviewDate": "2021-08-04T01:55:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fcf319b4-cadc-458c-a7db-94331bc2f781", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "morrismichelle", + "reviewDate": "2022-05-05T14:22:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b22c82e7-e85b-47f4-97f2-f030ec3a8102", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "judithmurphy", + "reviewDate": "2022-09-23T17:31:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "08e6375b-448c-437a-9579-db84a93ab7e9", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "stevensronald", + "reviewDate": "2021-11-21T19:12:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "88a4ba16-c650-4577-bea1-4ebd6c0fc075", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "douglas05", + "reviewDate": "2021-10-12T17:37:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cf938837-f867-4b6f-ab2f-54c61394f090", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "debra27", + "reviewDate": "2022-01-05T05:12:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "29e86fe4-7b83-44af-a986-a125fdf5e58a", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "kayla02", + "reviewDate": "2021-09-27T08:57:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6d87e9ca-b8e8-4c68-bc99-b4822b0262fb", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "wernerronald", + "reviewDate": "2021-12-28T15:44:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4faf8d83-1f9f-4f4b-9290-5490a0302a9b", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "erin52", + "reviewDate": "2022-07-25T23:49:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c96b950d-af1a-46f5-bf9c-0478e1150d00", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "sross", + "reviewDate": "2022-12-23T11:27:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ce843768-d338-41c5-be9f-00593e1f8762", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "smithrichard", + "reviewDate": "2022-03-08T11:02:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Mini (Steel)", + "description": "This Amazing Phone Mini (Steel) is rated 4.3 out of 5 by 41.\n\nRated 5 out of 5 by Joe from Awesome (especially the plastic case) I received my phone while traveling in the United States. I had a good quality camera that", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-11-20T01:34:46", + "price": 636.24, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-03-09T03:45:48", + "newPrice": 605.84 + }, + { + "priceDate": "2022-09-15T03:45:48", + "newPrice": 691.03 + }, + { + "priceDate": "2024-12-30T03:45:48", + "newPrice": 636.24 + } + ] + }, + { + "id": "cc08ebb0-1d07-4da3-9f5a-dffd711ba397", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "sgarcia", + "reviewDate": "2021-10-05T20:16:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1e890d06-1d2b-4794-9414-e2384f25aeff", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "lmorgan", + "reviewDate": "2021-04-14T05:59:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e94b7f5f-aa91-469f-b810-d685c7f077b5", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "kellyryan", + "reviewDate": "2022-01-15T06:46:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e40af915-a263-45b4-9042-75c65b65f318", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "knightjoseph", + "reviewDate": "2022-06-14T08:31:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "72361789-91c4-4c2e-b629-3a237d8188f3", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissa88", + "reviewDate": "2021-08-04T03:35:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bae6f339-7ec2-458b-bb87-6ccd75c93fab", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "justin77", + "reviewDate": "2022-07-25T01:34:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5992816c-ef3c-4424-9e73-f3e63264f38c", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "wonglisa", + "reviewDate": "2021-06-17T20:19:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "44fb54fb-bda4-4c49-835b-ec82a018bd17", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "waynejohnson", + "reviewDate": "2021-03-09T03:45:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83ee184a-cd43-4289-9e00-b44eb4d309b9", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "riosronald", + "reviewDate": "2022-09-16T01:44:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c7c6e903-c106-4514-98b8-bd2b36030b9f", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtneyhenderson", + "reviewDate": "2022-07-07T18:16:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b33578a0-f6b4-4aef-bf66-2d468c865881", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "saragonzalez", + "reviewDate": "2021-10-20T19:10:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "89c92d88-ade0-4e1e-85b1-436ad37273f7", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "clarkeconnor", + "reviewDate": "2022-05-21T22:50:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6a3fc69d-e906-4535-af98-0f64a6110264", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher66", + "reviewDate": "2021-07-08T22:44:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "258c8b4c-f4c1-448b-b897-8331061c48e0", + "productId": "258c8b4c-f4c1-448b-b897-8331061c48e0", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Mini (Gold)", + "description": "This Premium Computer Mini (Gold) is the latest entry in the popular 'Mini Computer' series of computers from Acer.\n\nThese computers feature multiple ports for connecting to USB 3.0, USB 2.0 and an RJ45 connector (included in the special bundle). This cable supports both 6-pin Power connectors and 3-pin VGA connectors, making them ideal for connecting to an SD", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-12-20T16:47:05", + "price": 335.95, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2019-12-20T16:47:05", + "newPrice": 360.15 + }, + { + "priceDate": "2025-08-27T16:47:05", + "newPrice": 303.39 + }, + { + "priceDate": "2025-08-28T05:32:14.491460", + "newPrice": 335.95 + } + ] + }, + { + "id": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "product", + "name": "Awesome TV Ultra (Silver)", + "description": "This Awesome TV Ultra (Silver) is an amazing TV Ultra that offers a high quality surround broadcast TV. It offers a great performance against other quality signals, high bandwidths, and high quality, high quality signal. The show is great for fans of low-cost and portable HD TV. It is in the form of the 4K and HDR-High", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-08-08T14:07:02", + "price": 729.17, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-01-29T21:03:54", + "newPrice": 800.94 + }, + { + "priceDate": "2023-03-06T21:03:54", + "newPrice": 729.17 + } + ] + }, + { + "id": "bc89512b-b080-4577-932d-5fc288a604df", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "carlbryant", + "reviewDate": "2022-10-25T15:21:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "71006df7-596c-4add-99a6-241ddd20e26e", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "ehorn", + "reviewDate": "2021-06-19T18:14:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1a7c3b2c-1db5-4c93-8f67-c0e6a1a08ede", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "tevans", + "reviewDate": "2022-02-03T16:24:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a2fc5c41-2238-4ef7-bb2d-7ec2d826e07b", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "ramosjose", + "reviewDate": "2021-04-28T05:50:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bb47bfd7-aa6f-4917-9007-305f3f4afa0f", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "melanieshort", + "reviewDate": "2021-12-02T23:22:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "71257696-dcd0-4320-9259-7fe7ef81b30a", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "caitlin86", + "reviewDate": "2021-01-29T21:03:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0d267366-946e-4712-a9e5-e761b0d7755e", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "huntmelissa", + "reviewDate": "2021-08-31T05:21:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "282e32ff-5486-4473-a65e-130310912cdc", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "acostajonathan", + "reviewDate": "2022-01-17T15:47:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bcde2cdf-c4d3-4f9a-8e82-70ac2f81f9a2", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "robertosimmons", + "reviewDate": "2021-03-11T21:04:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c3b93fa-e485-4aab-93d8-139d13cbdebc", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "bsmith", + "reviewDate": "2021-08-28T10:55:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5ef8cb11-c1e7-4fbe-a44b-32360b3c62fc", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "enorman", + "reviewDate": "2022-11-08T22:39:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer Micro (Silver)", + "description": "This Basic Computer Micro (Silver) is designed to run more than two Windows computers at once and is not as light-weight as its larger sibling. The motherboard features four USB ports for connecting to external devices. It is very compact, with no need to store anything. All other components are compatible with Windows 2.x and 1.x operating systems using the same USB ports.\n\nThe base PC is equipped with a 5.8-inch, 16K VESA-ready HD webcam", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-01-06T07:49:23", + "price": 762.31, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-01-20T22:30:30", + "newPrice": 795.36 + }, + { + "priceDate": "2021-07-15T22:30:30", + "newPrice": 724.31 + }, + { + "priceDate": "2022-01-07T22:30:30", + "newPrice": 833.82 + }, + { + "priceDate": "2022-07-02T22:30:30", + "newPrice": 784.93 + }, + { + "priceDate": "2022-12-25T22:30:30", + "newPrice": 731.53 + }, + { + "priceDate": "2023-02-10T22:30:30", + "newPrice": 762.31 + } + ] + }, + { + "id": "e710afe2-4c9b-4d70-9c50-26db241392e4", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "joshuasimmons", + "reviewDate": "2021-06-23T16:54:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ff4bbeb5-112f-442a-ae6f-afaf5892e858", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "abigail09", + "reviewDate": "2022-07-29T02:04:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4c1b9b5e-e0a4-407d-87f8-35185077f8fe", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "vicki01", + "reviewDate": "2022-08-15T19:33:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b7b71a97-2c2b-4643-8a54-f62b05c11e1e", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "grossanne", + "reviewDate": "2022-10-09T16:58:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "996d6c39-bed1-46c3-af70-921d08d263a8", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "zachary05", + "reviewDate": "2022-05-31T20:59:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9687f25f-9fe7-4ce0-b28f-c2b6a78053d0", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "carmen06", + "reviewDate": "2021-04-16T18:17:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9eaf9e20-af73-4c99-ae21-3fde804463d4", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "mark94", + "reviewDate": "2021-07-19T10:05:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a916064e-7cc9-4e8f-93c4-58ed943974f5", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "erikpatrick", + "reviewDate": "2022-12-27T12:58:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f6d4f97a-9f9d-49bc-a448-97c4230420c8", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "anne59", + "reviewDate": "2021-08-18T03:47:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "431834a9-61d6-4cb7-96fb-b46bed72bfb0", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "whuang", + "reviewDate": "2021-04-27T21:57:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4dea0245-02d0-4d36-b670-7bb5d239aae1", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonya41", + "reviewDate": "2022-02-11T19:51:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cb15d68f-f131-46bf-b20f-ae48cc8f72a9", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher70", + "reviewDate": "2021-02-25T11:26:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "262f8b41-793e-4b93-a906-c1339f4c56ae", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "jasongrant", + "reviewDate": "2021-12-18T15:09:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e59384d6-08e3-4ab2-bf08-f360bed5a8c0", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "qquinn", + "reviewDate": "2021-09-19T02:26:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "212f4b4f-79ab-4889-9a49-a8c51739cc60", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "teresamckee", + "reviewDate": "2021-01-20T22:30:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2e19ee40-e837-41c2-a7ee-0da5cd46a0b5", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "craig82", + "reviewDate": "2021-10-27T05:27:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fbcaab95-23cb-41d3-9917-ab9cd4d7b9af", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "annette31", + "reviewDate": "2021-03-18T03:15:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "54606db8-4be3-4f83-8d22-fb259bbf7c58", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "maynarddawn", + "reviewDate": "2022-03-24T11:43:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fead9c53-5d94-4d74-a058-b8a312518f82", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "lgray", + "reviewDate": "2022-06-14T08:52:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "product", + "name": "Amazing TV + (Steel)", + "description": "This Amazing TV + (Steel) is an episode that really is about all things, you know, the world of television. It's an incredible series. It's a wonderful story.\"\n\nWatch the entire trailer for this and other great features.\n\nTV Guide's Kevin Staple: \"When \"Abandoned\" was first shown back in 1986, the only way people knew what it was about was by watching it on television! From the premiere of", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-01-07T05:29:52", + "price": 676.8, + "stock": 96, + "priceHistory": [ + { + "priceDate": "2021-05-22T19:31:53", + "newPrice": 652.2 + }, + { + "priceDate": "2021-09-19T19:31:53", + "newPrice": 680.1 + }, + { + "priceDate": "2022-01-17T19:31:53", + "newPrice": 663.07 + }, + { + "priceDate": "2022-05-17T19:31:53", + "newPrice": 634.33 + }, + { + "priceDate": "2022-09-14T19:31:53", + "newPrice": 693.75 + }, + { + "priceDate": "2024-01-07T19:31:53", + "newPrice": 676.8 + } + ] + }, + { + "id": "f9e00133-9e89-4f93-9f83-6b27cc480c01", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "adam33", + "reviewDate": "2021-06-15T12:21:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "efb2e6f3-640b-43fe-aacc-e5a67c0bed6e", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "christieclark", + "reviewDate": "2021-06-09T08:28:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cc29e5cf-c26b-4b95-8da5-b442e48cff5c", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "bsandoval", + "reviewDate": "2022-08-30T22:20:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c76fdc3b-c795-43d4-b705-3438517c1a6f", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "david94", + "reviewDate": "2022-07-19T02:48:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e825a689-4ef9-4fcf-81ec-42c8fc7e6b5d", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "robynmyers", + "reviewDate": "2022-09-15T05:23:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0a06f129-ae52-44dd-a4d2-806ed9daefc7", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "wblack", + "reviewDate": "2021-05-22T19:31:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "273c9570-1747-46cd-ac71-a8a380508684", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "josephjessica", + "reviewDate": "2022-02-03T05:48:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard + (Silver)", + "description": "This Basic Keyboard + (Silver) is not covered by this product - if you can't find it, you must purchase an official keyboard as part of our shipping cost.", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-12-16T17:21:32", + "price": 1034.23, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-01-23T21:03:48", + "newPrice": 971.37 + }, + { + "priceDate": "2021-08-28T21:03:48", + "newPrice": 1003.83 + }, + { + "priceDate": "2022-04-02T21:03:48", + "newPrice": 1099.43 + }, + { + "priceDate": "2022-11-05T21:03:48", + "newPrice": 991.65 + }, + { + "priceDate": "2023-04-13T21:03:48", + "newPrice": 1034.23 + } + ] + }, + { + "id": "04d623b4-209d-4938-8a4c-263d535b42f5", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "grahamcharles", + "reviewDate": "2022-08-07T08:45:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "98234a20-4b77-4666-83f7-d6e565516422", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasonmiller", + "reviewDate": "2021-12-25T08:02:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aa33b224-1e51-439a-8996-6114b5757e0b", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perezeric", + "reviewDate": "2021-09-04T09:37:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "75664cee-6729-4d26-8e30-f025f8099c40", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cowanjeffrey", + "reviewDate": "2022-04-09T07:00:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5303d1b4-4fd7-44b6-8c24-b8d9f7f5cfaf", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joyce45", + "reviewDate": "2022-03-30T15:44:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "10174f38-3f06-48e0-a1ce-e2bcf409b5aa", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simmonsjaclyn", + "reviewDate": "2021-11-27T20:22:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d36f242c-2ba2-4415-a78f-47195891324b", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nathanielburns", + "reviewDate": "2022-07-18T12:34:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8507790b-f944-4cfb-ac7f-77d2e790914c", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "powellelizabeth", + "reviewDate": "2022-11-04T15:37:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0f5403f3-4af0-4351-9c1c-9ea4370b6f7e", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karen49", + "reviewDate": "2022-07-22T02:04:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e4786b40-0edd-48d2-828a-84ec05edfb8d", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlotte37", + "reviewDate": "2022-05-08T06:39:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e25d81d1-13e2-4f7d-a14d-f575e77ceda5", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scott43", + "reviewDate": "2021-12-31T11:53:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "468a7abd-d67e-4fcf-983f-e7bbef2b65f7", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joseph39", + "reviewDate": "2021-03-15T22:12:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9fca4bf2-6377-4d78-a789-96f2ca5e12dd", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeffrey90", + "reviewDate": "2021-01-23T21:03:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7a097e03-d071-47f1-8796-3499f4b751b9", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnsonashley", + "reviewDate": "2022-11-07T07:11:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "17d016d3-fbf3-4b23-8c28-0dabf80aadcb", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathryn09", + "reviewDate": "2022-09-20T10:03:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dd87acbb-404a-4596-83d7-5da8c84dc10e", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "peterkaufman", + "reviewDate": "2022-08-24T08:48:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "322ec09c-f642-4427-b312-cf40d5e68e25", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mcleanmartin", + "reviewDate": "2022-08-23T15:13:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "07260912-ab3b-499c-84a6-d96e18fe3362", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertscindy", + "reviewDate": "2022-11-03T01:55:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "048b14be-fa95-4779-b63b-daf0d2b7e808", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "susan45", + "reviewDate": "2022-08-22T19:39:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "78e1faef-f30a-4dae-9933-05f792eab4fd", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "benjamin95", + "reviewDate": "2021-09-06T15:58:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Pro (Steel)", + "description": "This Premium Mouse Pro (Steel) is not designed to replace a wireless mouse (such as Audeze or Razer mouse). Instead, it provides precise control using the Mouse Pro's touch interface for the most perfect typing. If you feel like working on a keyboard only for the keyboard, feel free to play Mouse Pro without having to worry about mouse clicks or the \"ghosting\" of the keyboard. It also features support for the TGS mouse support and its", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-02-21T21:55:04", + "price": 420.44, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-01-27T00:15:14", + "newPrice": 447.76 + }, + { + "priceDate": "2021-12-22T00:15:14", + "newPrice": 397.25 + }, + { + "priceDate": "2022-11-16T00:15:14", + "newPrice": 394.72 + }, + { + "priceDate": "2024-01-18T00:15:14", + "newPrice": 420.44 + } + ] + }, + { + "id": "abe93ece-ef70-410a-b174-4779cebaad9f", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryanhodges", + "reviewDate": "2022-02-13T04:04:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0469f886-68f8-4677-8ecf-a58170804b9e", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lkim", + "reviewDate": "2022-11-16T14:58:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e572d587-de79-49d6-bfab-56ca2ade19a1", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachelwilson", + "reviewDate": "2022-08-05T04:46:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7b341028-b5d3-4811-8620-e8d78c993521", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "blopez", + "reviewDate": "2021-05-19T20:37:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d83ab80b-3f73-407b-bda7-355ca9bd46e4", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alvarezchad", + "reviewDate": "2021-01-27T00:15:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "95121871-1d2f-43f2-8f7d-39d8028b4b41", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cjohnson", + "reviewDate": "2022-04-03T06:40:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "13f479c9-2535-4716-81bb-20948f121fb2", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markjames", + "reviewDate": "2022-02-23T13:54:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8d97c39c-5797-4d03-bb02-68c28119a9d5", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pooledeborah", + "reviewDate": "2022-03-31T03:25:53", + "stars": 4, + "verifiedUser": false + }, + { + "id": "52cc1e5d-597c-4251-a35d-8602a469e373", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joelortiz", + "reviewDate": "2022-01-04T11:27:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76fff441-5524-4f67-b67e-5dd06896ad9f", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smartin", + "reviewDate": "2022-01-20T11:03:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4922839e-226e-4b19-be1f-2a6addbaba42", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ericawolfe", + "reviewDate": "2021-08-23T22:20:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7c94d44a-8f25-43b1-95c1-bc461ee8fec8", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frojas", + "reviewDate": "2022-01-04T15:46:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "342e2994-2dd5-4d53-a6c8-0b56cc306a9b", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alejandro93", + "reviewDate": "2021-03-25T08:18:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c7f25a10-9e07-4f3a-9803-85308d6ccec0", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kcole", + "reviewDate": "2021-12-20T16:30:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c831c5e4-6edd-4c0d-9d54-5ea3cf31b764", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "phillipserin", + "reviewDate": "2021-05-28T08:36:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8652731d-f858-4a5d-b017-77108364479c", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "glopez", + "reviewDate": "2022-04-02T04:36:34", + "stars": 4, + "verifiedUser": true + }, + { + "id": "33cabc8d-f0e2-4faf-b1f5-9214eebaeb04", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gillstacy", + "reviewDate": "2021-07-19T22:26:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e67dd88a-85fa-4a07-ac6b-b7fafb24cfed", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gonzalezsarah", + "reviewDate": "2021-05-02T12:40:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cfd830b6-70f6-4208-a435-0c915f1eff0f", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alan42", + "reviewDate": "2021-03-30T09:42:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "809ed5fa-4771-4130-ad7d-82a5fe187359", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robert03", + "reviewDate": "2021-05-16T13:01:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f58b61b0-f48b-4324-8564-487c9958ec18", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard 3000 (Red)", + "description": "This Awesome Keyboard 3000 (Red) is coming to Apple Watch & Wear. And that sounds like plenty of cool stuff to use on a smartwatch in some sense.\n\nThis is definitely still an exclusive of Apple, and a few of the more prominent developers that help out with building smartwatches have already started working on a smartwatch.\n\nCheck out below some", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-07-08T01:49:34", + "price": 135.19, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-03-01T18:01:58", + "newPrice": 138.32 + }, + { + "priceDate": "2021-09-08T18:01:58", + "newPrice": 147.3 + }, + { + "priceDate": "2022-03-18T18:01:58", + "newPrice": 124.97 + }, + { + "priceDate": "2022-09-25T18:01:58", + "newPrice": 137.67 + }, + { + "priceDate": "2023-08-07T18:01:58", + "newPrice": 135.19 + } + ] + }, + { + "id": "6410bd79-0227-4b8b-b477-4e6432fd2407", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kbryant", + "reviewDate": "2021-06-04T15:21:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1cab93cf-0b90-458c-9dd8-1c46d0c2a9d4", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "miranda38", + "reviewDate": "2021-10-13T18:20:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "26c5cb6a-009e-4026-8391-023ad2e72dfd", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "collinsrachel", + "reviewDate": "2022-06-14T11:44:36", + "stars": 3, + "verifiedUser": true + }, + { + "id": "56bdfcc4-3f52-4d55-8a14-4de64fc4fdd5", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kaitlyn78", + "reviewDate": "2022-08-29T19:54:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "42e742ef-cfc2-47aa-a625-3cc688975a71", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael16", + "reviewDate": "2021-06-14T23:49:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fc91515b-4405-4ae2-bcdd-1009d8ff459c", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cchapman", + "reviewDate": "2021-06-06T08:57:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "15084313-0ad3-42da-9825-98f36e6b383f", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dmeza", + "reviewDate": "2021-04-24T17:06:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "161784c7-8509-4065-847d-f94857418d89", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mendezross", + "reviewDate": "2021-07-22T14:38:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2d867793-ebf9-4493-87f4-6b975d91a37b", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa01", + "reviewDate": "2022-08-11T17:54:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1e2855ef-0ff6-4f51-8f43-48a84f7fba56", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rmeza", + "reviewDate": "2021-03-15T04:35:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a925386d-f6b9-461f-9c6e-541585946957", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lauralin", + "reviewDate": "2021-06-19T11:41:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cd010182-5380-4a1b-b3ff-e5d10eebfb9f", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davisashley", + "reviewDate": "2021-03-01T18:01:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d5f13340-4608-4c81-b901-c4e528601f1b", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithkatie", + "reviewDate": "2021-08-26T06:05:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f1bb0c4d-243a-4c84-9617-aaecbb367e87", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ihendrix", + "reviewDate": "2021-12-28T15:23:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "955ae631-3beb-4fe4-82f6-01a8273c02fa", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "youngralph", + "reviewDate": "2022-09-25T19:23:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d2439983-8472-4cf2-8538-5d390facbb98", + "productId": "d2439983-8472-4cf2-8538-5d390facbb98", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Ultra (Steel)", + "description": "This Basic Keyboard Ultra (Steel) is a keyboard that fits great in your back pocket and can use and play the standard 8-key keyboard. These ultra-thin keyboards will last a long time and will be the ideal choice", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-02-02T10:46:08", + "price": 228.9, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-01-08T11:29:19", + "newPrice": 251.12 + }, + { + "priceDate": "2021-01-09T11:29:19", + "newPrice": 207.17 + }, + { + "priceDate": "2021-01-10T11:29:19", + "newPrice": 248.7 + }, + { + "priceDate": "2021-01-11T11:29:19", + "newPrice": 206.3 + }, + { + "priceDate": "2023-11-05T11:29:19", + "newPrice": 228.9 + } + ] + }, + { + "id": "186db9b2-6369-49cc-acf4-a6abac9d91b5", + "productId": "d2439983-8472-4cf2-8538-5d390facbb98", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "adamssarah", + "reviewDate": "2021-01-08T11:29:19", + "stars": 2, + "verifiedUser": false + } +] \ No newline at end of file diff --git a/sampleData/fabricSampleDataVectors.json b/sampleData/fabricSampleDataVectors.json new file mode 100644 index 000000000..2daff4473 --- /dev/null +++ b/sampleData/fabricSampleDataVectors.json @@ -0,0 +1,322616 @@ +[ + { + "id": "71abb6ae-6745-47cc-9834-c85855c43ff0", + "productId": "71abb6ae-6745-47cc-9834-c85855c43ff0", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Super (Black)", + "description": "This Awesome Computer Super (Black) is a cool computer you should buy in stores. If you are already using one then this would be a good computer for you. I recommend that you save an extra $35 and purchase a cheap computer", + "countryOfOrigin": "India", + "rareItem": true, + "firstAvailable": "2019-02-06T18:00:31", + "price": 344.89, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2019-02-06T18:00:31", + "newPrice": 316.4 + }, + { + "priceDate": "2020-09-29T18:00:31", + "newPrice": 339.5 + }, + { + "priceDate": "2022-05-23T18:00:31", + "newPrice": 312.46 + }, + { + "priceDate": "2024-01-14T18:00:31", + "newPrice": 325.48 + }, + { + "priceDate": "2025-09-06T18:00:31", + "newPrice": 345.26 + }, + { + "priceDate": "2025-09-08T18:00:31", + "newPrice": 344.89 + } + ], + "descriptionVector": [ + -0.04926479607820511, + 0.0013136870693415403, + -0.02283181995153427, + 0.05908836051821709, + -0.047157999128103256, + -0.02033305913209915, + -0.0005638289730995893, + 0.015800992026925087, + 0.03505615517497063, + 0.1425763964653015, + 0.02680044248700142, + -0.08525186032056808, + 0.07618772983551025, + -0.051886048167943954, + 0.052424997091293335, + 0.0167931467294693, + 0.013473713770508766, + -0.01611946150660515, + -0.04355684295296669, + -0.0029090973548591137, + 0.0016903385985642672, + -0.013338976539671421, + -0.0659966990351677, + 0.04517368972301483, + -0.0028555085882544518, + -0.003481730120256543, + -0.031234517693519592, + 0.01826300658285618, + -0.02310129441320896, + -0.01313074678182602, + 0.02631048858165741, + 0.01809152215719223, + 0.022929811850190163, + 0.0243874229490757, + -0.0004558861837722361, + 0.015800992026925087, + -0.0577164888381958, + -0.03209193795919418, + 0.047549959272146225, + 0.004724986385554075, + 0.010705478489398956, + -0.04720699414610863, + -0.021913157775998116, + -0.03434571996331215, + 0.02413019724190235, + -0.04088659584522247, + 0.0037726399023085833, + 0.008494564332067966, + -0.008745664730668068, + -0.017344344407320023, + 0.0030668010003864765, + 0.05453179404139519, + -0.007692265789955854, + -0.008586429990828037, + -0.015849987044930458, + 0.0646248310804367, + 0.053453896194696426, + 0.029372695833444595, + -0.053404901176691055, + -0.024889623746275902, + -0.05110212042927742, + 0.06325296312570572, + 0.03681998699903488, + -0.030720068141818047, + -0.02479163371026516, + 0.01235294621437788, + -0.03471318632364273, + 0.06486980617046356, + 0.043042391538619995, + 0.016058217734098434, + -0.046300578862428665, + -0.0025584744289517403, + 0.04465923830866814, + 0.01782204955816269, + -0.02408120222389698, + 0.07555078715085983, + -0.02626149356365204, + 0.05154307931661606, + -0.013228736817836761, + -0.018605973571538925, + 0.0680055096745491, + -0.037187449634075165, + 0.04769694805145264, + -0.03655051067471504, + 0.06452684104442596, + 0.030769063159823418, + -0.029593175277113914, + -0.09363006055355072, + 0.050318196415901184, + 0.020173823460936546, + 0.0038553194608539343, + 0.0880935937166214, + 0.076285719871521, + 0.013865676708519459, + 0.005319054704159498, + 0.04350784793496132, + -0.0820181742310524, + 0.013191990554332733, + 0.038755301386117935, + 0.049828242510557175, + 0.08534985035657883, + -0.08613377809524536, + -0.04186650365591049, + -0.024950867518782616, + -0.019732866436243057, + 0.005374174565076828, + -0.0012845961609855294, + 0.0023900531232357025, + 0.0317244715988636, + -0.10573190450668335, + -0.038167357444763184, + 0.0267514456063509, + 0.009058010764420033, + -0.026677953079342842, + 0.05301294103264809, + 0.0376284085214138, + -0.006467382423579693, + -0.02305229939520359, + 0.02760886400938034, + -0.006271401420235634, + 0.025796037167310715, + 0.006791976746171713, + 0.039784204214811325, + 0.014576108194887638, + 0.03532562777400017, + -0.00040153198642656207, + -0.027682358399033546, + -0.002605938818305731, + 0.11151335388422012, + -0.0026564651634544134, + -0.09656978398561478, + 0.06467382609844208, + 0.023970961570739746, + 0.07648169994354248, + -0.07912744581699371, + 0.009253991767764091, + 0.07432590425014496, + 0.06139114126563072, + -0.016805395483970642, + -0.05526672303676605, + -0.03405174985527992, + -0.02702092006802559, + 0.013877925463020802, + 0.0062224059365689754, + -0.008941646665334702, + 0.04345885291695595, + -0.016094963997602463, + 0.022709332406520844, + -0.0198308564722538, + 0.057912472635507584, + 0.055462706834077835, + -0.03424772992730141, + -0.0394902303814888, + -0.04642307013273239, + 0.07873548567295074, + 0.057422518730163574, + -0.03032810427248478, + -0.008604804053902626, + -0.008488439954817295, + 0.10827966779470444, + -0.011642513796687126, + 0.022807322442531586, + -0.04845637455582619, + 0.0010656482772901654, + -0.03833884000778198, + -0.038485825061798096, + 0.08510487526655197, + 0.00025913931312970817, + -0.09064134955406189, + 0.04247894510626793, + 0.0457371324300766, + -0.007827002555131912, + -0.04088659584522247, + -0.013767685741186142, + 0.02439967170357704, + 0.06354693323373795, + 0.08339004218578339, + -0.02475488744676113, + -0.0011674666311591864, + -0.05815744772553444, + -0.0226113423705101, + 0.03775089606642723, + -0.012101844884455204, + -0.0005737811443395913, + 0.04176851361989975, + -0.0007885184604674578, + 0.002295124577358365, + -4.971302769263275e-05, + 0.012604046612977982, + -0.04664354771375656, + -0.03196944668889046, + -0.02224387601017952, + 0.003408237127587199, + 0.03681998699903488, + 0.002357899909839034, + 0.07383595407009125, + -0.03681998699903488, + 0.03353729844093323, + 0.006133602000772953, + 0.012114093638956547, + 0.005787572357803583, + 0.037946876138448715, + 0.08603578805923462, + 0.016143959015607834, + 0.021055739372968674, + -0.09407102316617966, + 0.0288582444190979, + 0.0047556087374687195, + -0.023174786940217018, + -0.02457115426659584, + -0.0015892857918515801, + -0.034370217472314835, + -0.07226809859275818, + 0.03304734453558922, + 0.09593284130096436, + -0.022537847980856895, + 0.02586952969431877, + -0.026236996054649353, + -0.07114120572805405, + -0.07163116335868835, + 0.07089623063802719, + 0.01854472979903221, + -0.017589321359992027, + -0.05977429449558258, + -0.003683835966512561, + -0.062077075242996216, + 0.0923071876168251, + 0.05218001827597618, + -0.0038277595303952694, + 0.02684943750500679, + -0.09118029475212097, + -0.04409579187631607, + 0.030573081225156784, + 0.03177346661686897, + -0.07388494908809662, + 0.0075452798046171665, + 0.005374174565076828, + 0.016940133646130562, + -0.04492871090769768, + 0.12738783657550812, + 0.019463391974568367, + -0.007030828855931759, + -0.06486980617046356, + -0.05673658475279808, + -0.008604804053902626, + -0.046300578862428665, + 0.017503580078482628, + 0.000685551727656275, + -0.02318703755736351, + 0.03775089606642723, + -0.08304706960916519, + 0.0042442199774086475, + -0.05061217024922371, + 0.09054335951805115, + 0.010815717279911041, + 0.02108023688197136, + 0.07192513346672058, + -0.0016107212286442518, + 0.008531310595571995, + -0.03775089606642723, + -0.027486376464366913, + -0.0075024086982011795, + -0.013118498027324677, + 0.0683484748005867, + -0.1032821387052536, + -0.002111392095685005, + 0.08378200232982635, + -0.03250839561223984, + -0.012714286334812641, + 0.03711395710706711, + -0.006179535295814276, + 0.011526149697601795, + 0.0003236370685044676, + -0.01920616626739502, + -0.00893552228808403, + -0.026677953079342842, + -0.02841728739440441, + 0.042233970016241074, + 0.009015139192342758, + 0.037677403539419174, + 0.020137077197432518, + 0.06516377627849579, + -0.020700523629784584, + -0.0035246009938418865, + 0.015849987044930458, + -0.036795489490032196, + -0.05178805813193321, + 0.0014759841142222285, + 0.02631048858165741, + -0.010062414221465588, + 0.0015755058266222477, + -0.035105150192976, + 0.054482799023389816, + 0.04468373581767082, + 0.0926501527428627, + 0.054874762892723083, + 0.026702450588345528, + 0.007239059079438448, + -0.028662264347076416, + -0.004323837347328663, + 0.0619300901889801, + -0.005025082733482122, + -0.020651528611779213, + -0.04475722834467888, + -0.036158546805381775, + 0.08819158375263214, + -0.010080787353217602, + -0.021374208852648735, + -0.028466282412409782, + 0.007833126932382584, + 0.02729039452970028, + 0.021141482517123222, + -0.04909331351518631, + -0.03179796412587166, + 0.09774567186832428, + -0.05222901329398155, + 0.02755986899137497, + 0.03032810427248478, + 0.012267204001545906, + 0.020137077197432518, + -0.05262097716331482, + -0.08368401229381561, + -0.05071016028523445, + 0.06119515746831894, + 0.016817644238471985, + -0.0007582791731692851, + -0.0877506211400032, + -0.0005198097787797451, + -0.013277732767164707, + -0.01496807113289833, + -0.02653096802532673, + -0.029642170295119286, + 0.05707954987883568, + 0.014490366913378239, + 0.04294440150260925, + -0.07535480707883835, + 0.006957335863262415, + 0.11190532147884369, + -0.02318703755736351, + 0.058892376720905304, + 0.11778475344181061, + 0.006063171196728945, + -0.0296176727861166, + -0.04740297421813011, + -0.023346271365880966, + -0.009058010764420033, + 0.001554070389829576, + -0.08241013437509537, + 0.013779934495687485, + -0.04382631555199623, + 0.0015196205349639058, + -0.03922075778245926, + 0.0035705342888832092, + -0.004372832365334034, + 0.06668263673782349, + 0.01603372022509575, + -0.009082508273422718, + 0.03606055676937103, + -0.0275108739733696, + -0.02983815222978592, + -0.03412524238228798, + -0.03064657375216484, + -0.03640352562069893, + 0.050808150321245193, + -0.0023180912248790264, + 0.06374291330575943, + 0.011330168694257736, + 0.0695243626832962, + 0.08530085533857346, + -0.006828723009675741, + 0.0631059780716896, + -0.027902835980057716, + -0.0226970836520195, + 0.004458574578166008, + -0.05614864081144333, + -0.03980870172381401, + 0.03985769674181938, + 0.0002541632275097072, + -0.014159648679196835, + 0.007851500995457172, + 0.0005079436814412475, + 0.01689113676548004, + 0.049068816006183624, + -0.0004137808282393962, + 0.054384808987379074, + -0.11562896519899368, + -0.0604112334549427, + -0.05727553367614746, + -0.04203798621892929, + 0.037554915994405746, + -0.06398788839578629, + 0.05306193605065346, + -0.05663859471678734, + 0.009835811331868172, + -0.014723094180226326, + -0.03833884000778198, + -0.006559249013662338, + 0.11494302749633789, + -0.011832370422780514, + 0.015605010092258453, + 0.024056702852249146, + 0.027755850926041603, + -0.005925371777266264, + -0.020969998091459274, + -0.09181723743677139, + -0.05026920139789581, + 0.026775944977998734, + -0.03569309413433075, + -0.062077075242996216, + -0.04892183095216751, + -0.026285991072654724, + 0.004155416041612625, + -0.045369669795036316, + 0.03319432958960533, + 0.07158216834068298, + 0.013534958474338055, + 0.10690779238939285, + -0.02907872386276722, + 0.024093450978398323, + -0.03895128145813942, + 0.023640243336558342, + 0.08608478307723999, + 0.04968125745654106, + 0.031430501490831375, + -0.0029734037816524506, + -0.004238095600157976, + 0.03689347952604294, + -0.029225710779428482, + -0.044879715889692307, + -0.01434338092803955, + -0.015911230817437172, + -0.01604596897959709, + -0.04176851361989975, + 0.05227800831198692, + -0.011422034353017807, + 0.06286100298166275, + 0.008745664730668068, + 0.028441784903407097, + -0.020443297922611237, + 0.055462706834077835, + -0.00882528256624937, + -0.046619050204753876, + -0.03887778893113136, + 0.07545279711484909, + -0.053894855082035065, + 0.03020561672747135, + 0.0027406758163124323, + 0.018471237272024155, + 0.08559483289718628, + 0.024326177313923836, + -0.0877506211400032, + 0.03738342970609665, + -0.016744151711463928, + -0.012775530107319355, + 0.03478667885065079, + 0.0046698665246367455, + -0.041303057223558426, + 0.020982246845960617, + -0.08064629882574081, + -0.0020440237130969763, + 0.05560969188809395, + 0.02684943750500679, + 0.006749105639755726, + -0.07074924558401108, + -0.061048172414302826, + 0.020614782348275185, + -0.046790532767772675, + -0.0057538882829248905, + -0.047378476709127426, + -0.025575559586286545, + -0.08339004218578339, + -0.030352601781487465, + 0.018373245373368263, + 0.056001655757427216, + 0.009100881405174732, + -0.0705532655119896, + 0.02166818082332611, + -0.02403220534324646, + 0.022256124764680862, + 0.048186901956796646, + 0.011422034353017807, + -0.006069295573979616, + 0.002970341360196471, + -0.020345307886600494, + 0.017405588179826736, + 0.009174373932182789, + -0.007986237294971943, + 0.033978257328271866, + 0.015935728326439857, + 0.004648431204259396, + -0.022978806868195534, + 0.14727994799613953, + 0.04240545257925987, + -0.09304212033748627, + -0.030132124200463295, + -0.02902972884476185, + 0.007465662434697151, + 0.019573630765080452, + 0.004538191948086023, + 0.07114120572805405, + -0.007122694980353117, + 0.03980870172381401, + -0.00855580810457468, + 0.03574208915233612, + 0.025134600698947906, + 0.021692680194973946, + -0.001809764769859612, + 0.03488466888666153, + -0.03885329142212868, + -0.029250208288431168, + 0.02804982289671898, + -0.046570055186748505 + ] + }, + { + "id": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Ultra (Gold)", + "description": "This Luxe Filter Ultra (Gold) is a fine filter in gold color.", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-04-16T07:55:51", + "price": 689.27, + "stock": 98, + "priceHistory": [ + { + "priceDate": "2021-03-28T07:41:55", + "newPrice": 716.58 + }, + { + "priceDate": "2022-09-08T07:41:55", + "newPrice": 667.25 + }, + { + "priceDate": "2025-05-24T07:41:55", + "newPrice": 689.27 + } + ], + "descriptionVector": [ + 0.005134280305355787, + 0.027530048042535782, + -0.03572526574134827, + 0.00011654877744149417, + 0.03464565798640251, + -0.037025704979896545, + -0.07655414193868637, + 0.0014530258486047387, + -0.025591658428311348, + -0.0007821036269888282, + -0.05618877708911896, + 0.0226227305829525, + 0.008348572999238968, + -0.02494143880903721, + 0.07302087545394897, + -0.0055115302093327045, + -0.036191463470458984, + -0.019972778856754303, + 0.009127609431743622, + -0.009575402364134789, + 0.03729560971260071, + -0.037467364221811295, + -0.03771273046731949, + -0.0434788279235363, + -0.009894377551972866, + 0.002015067031607032, + 0.002513466402888298, + 0.023223876953125, + 0.04816531389951706, + -0.019531121477484703, + 0.10197404772043228, + 0.024745145812630653, + 0.04178580269217491, + 0.03643682971596718, + -0.09667414426803589, + -0.01571568287909031, + 0.10423140972852707, + 0.034081317484378815, + 0.04009277746081352, + 0.024880096316337585, + -0.013114804401993752, + -0.04065712168812752, + -0.09363160282373428, + 0.03295263275504112, + 0.02319934032857418, + -0.08921501785516739, + 0.011072133667767048, + 0.011734621599316597, + -0.0221810732036829, + -0.016145072877407074, + 0.021727144718170166, + -0.022708609700202942, + -0.024401633068919182, + -0.05476565659046173, + -0.022953974083065987, + -0.04563804715871811, + 0.018525121733546257, + 0.22436252236366272, + 0.03648589923977852, + 0.021776217967271805, + 0.0057538291439414024, + -0.0845530703663826, + -0.022095194086432457, + -0.006453121546655893, + -0.022720877081155777, + 0.009164414368569851, + -0.015605268068611622, + -0.06796634197235107, + 0.07262828946113586, + 0.11875706911087036, + 0.001867847517132759, + 0.0342530719935894, + -0.007287365384399891, + -0.0004259397683199495, + 0.027014778926968575, + 0.06526731699705124, + 0.05022638663649559, + -0.08474936336278915, + 0.02713746204972267, + -0.029983706772327423, + 0.06727931648492813, + 0.006894780322909355, + -0.03935668244957924, + 0.014550194144248962, + 0.018758218735456467, + 0.011305231600999832, + 0.08558360487222672, + -0.06526731699705124, + -0.03322253376245499, + 0.006201621610671282, + -0.006085073109716177, + 0.1032499447464943, + -0.017016122117638588, + -0.045000094920396805, + -0.011845036409795284, + -0.0010244024451822042, + 0.0027941034641116858, + 0.034940097481012344, + -0.11326087266206741, + 0.034522973001003265, + -0.04217838868498802, + -0.06188126653432846, + -0.02032856084406376, + 0.07920409739017487, + 0.04014185070991516, + 0.041957560926675797, + 0.010342170484364033, + -0.07900780439376831, + 0.02067207172513008, + -0.08941131085157394, + 0.06958575546741486, + -0.013507389463484287, + -0.02481875568628311, + 0.044607508927583694, + 0.0007173116900958121, + 0.040706194937229156, + -0.03638775646686554, + -0.0024582589976489544, + 0.008170682936906815, + 0.04357697442173958, + 0.0200954619795084, + 0.026965705677866936, + 0.053735118359327316, + -0.01382636558264494, + -0.020156804472208023, + 0.02551804855465889, + 0.0171265359967947, + 0.016819829121232033, + 0.04264458268880844, + -0.01717560924589634, + -0.1098257526755333, + 0.031063316389918327, + -0.010667280294001102, + 0.01038510911166668, + -0.0854363888502121, + 0.033271607011556625, + 0.01109053660184145, + 0.05550175532698631, + 0.0017282956978306174, + 0.05780819430947304, + -0.024536583572626114, + -0.07670136541128159, + 0.05888780206441879, + -0.0007050434360280633, + -0.00020568558829836547, + -0.06026185303926468, + -0.048287998884916306, + -0.01756819523870945, + -0.02762819454073906, + -0.02338336408138275, + 0.08759560436010361, + -0.09269921481609344, + -0.032044779509305954, + -0.039970096200704575, + 0.034081317484378815, + 0.04517185315489769, + -0.028683267533779144, + 0.008728889748454094, + 0.020242681726813316, + -0.02726014517247677, + 0.00018507869390305132, + -0.030695267021656036, + 0.025113193318247795, + 0.010280828922986984, + 0.03219199925661087, + 0.07792819291353226, + -0.018095731735229492, + 0.022684073075652122, + -0.04308624193072319, + 0.025714339688420296, + 0.05550175532698631, + 0.02676941454410553, + 0.017371902242302895, + -0.03854697570204735, + -0.04934307187795639, + 0.05162497237324715, + 0.04428853467106819, + 0.02452431619167328, + 0.017899438738822937, + -0.0339340977370739, + 0.028707804158329964, + 0.06830985099077225, + -0.022082926705479622, + -0.04485287517309189, + 0.005986926611512899, + -0.0744439959526062, + 0.04801809415221214, + 0.030008243396878242, + 9.814633813221008e-05, + 0.02317480370402336, + -0.04046082869172096, + 0.016562193632125854, + 0.033713266253471375, + -0.010667280294001102, + -0.04595702141523361, + 0.02210746333003044, + -0.047551900148391724, + 0.012433914467692375, + -0.028658730909228325, + -0.030621657148003578, + 0.011642609722912312, + 0.046717654913663864, + 0.04220292344689369, + 0.01715107262134552, + -0.00254107010550797, + -0.0049747927114367485, + 0.03923399746417999, + 0.021984780207276344, + -0.0066064754500985146, + 0.03766365721821785, + -0.03390955924987793, + 0.01316387765109539, + -0.06541453301906586, + 0.05339160934090614, + 0.0559924840927124, + 0.0321674607694149, + -0.010980121791362762, + -0.041638582944869995, + -0.04558897390961647, + -0.021125998347997665, + 0.015556194819509983, + -0.011722353287041187, + -0.012544328346848488, + 0.03187302500009537, + 0.015102267265319824, + -0.015617536380887032, + 0.04438668116927147, + 0.0131761459633708, + 0.06148868054151535, + 0.03709931671619415, + 0.007716755848377943, + -0.0008833170286379755, + -0.010937182232737541, + 0.006128011737018824, + 0.00721375597640872, + -0.044582974165678024, + -0.029100388288497925, + -0.0494166798889637, + 0.07331531494855881, + 0.0061004082672297955, + 0.02148178033530712, + 0.031038779765367508, + -0.06320624053478241, + -0.014231218956410885, + 0.06914409250020981, + -0.04522092640399933, + 0.06811355799436569, + -0.07979296892881393, + -0.0016209480818361044, + 0.0544712170958519, + -0.029124924913048744, + -0.04298809543251991, + -0.055011022835969925, + 0.09539823979139328, + -0.021837560459971428, + 0.07095979899168015, + -0.006489926483482122, + -0.02964019402861595, + -0.07336438447237015, + -0.060507215559482574, + 0.015139072202146053, + 0.020868364721536636, + 0.06237199902534485, + -0.029787413775920868, + -0.10393697023391724, + -0.03395863249897957, + 0.010722487233579159, + -0.0843077003955841, + 0.020402170717716217, + 0.04558897390961647, + -0.02108919434249401, + 0.03170126676559448, + 0.03226560726761818, + 0.04046082869172096, + -0.014599267393350601, + 0.04176126793026924, + -0.09392604231834412, + 0.017850365489721298, + 0.0046956888400018215, + -0.02885502390563488, + 0.08612341433763504, + 0.047110240906476974, + 0.02760365791618824, + -0.010470987297594547, + 0.08072536438703537, + -0.029959170147776604, + 0.03766365721821785, + -0.030768876895308495, + -0.04151590168476105, + -0.03979834169149399, + 0.01680755987763405, + 0.0405099019408226, + 0.01793624274432659, + -0.07841892540454865, + -0.008894511498510838, + -0.052851803600788116, + 0.026867559179663658, + 0.028732340782880783, + -0.03162765875458717, + 0.02137136459350586, + -0.022266950458288193, + 0.01897904835641384, + -0.007955987937748432, + -0.02294170670211315, + -0.0330507792532444, + 0.12317365407943726, + 0.012010658159852028, + 0.028928633779287338, + -0.0065696705132722855, + -0.039552975445985794, + 0.0431598536670208, + 0.008422182872891426, + -0.02757912129163742, + -0.017052926123142242, + 0.06359882652759552, + -0.04615331441164017, + -0.06119424104690552, + 0.00259627727791667, + 0.04566258192062378, + 0.02421760931611061, + -0.05771004781126976, + -0.010630475357174873, + -0.012783560901880264, + 0.03511185199022293, + 0.039970096200704575, + 0.01015201210975647, + -0.051281459629535675, + 0.017040658742189407, + -0.009330036118626595, + -0.045319072902202606, + -0.005122011993080378, + -0.018181608989834785, + -0.031554047018289566, + -0.010090670548379421, + -0.004680353682488203, + -0.02051258459687233, + 0.0062936339527368546, + 0.010642743669450283, + 0.027309218421578407, + 0.015139072202146053, + 0.029959170147776604, + 0.004195755813270807, + -0.006072804797440767, + -0.03854697570204735, + 0.08946038782596588, + -0.01691797561943531, + 0.0013947514817118645, + -0.022242413833737373, + 0.0288795605301857, + 0.0964287742972374, + 0.001284336787648499, + -0.002349378075450659, + 0.009035597555339336, + -0.006177084986120462, + 0.019997315481305122, + 0.025272682309150696, + 0.029542047530412674, + -0.056286923587322235, + 0.02681848593056202, + 0.02264726720750332, + -0.0017236950807273388, + -0.005879579111933708, + 0.0446811206638813, + 0.04090248793363571, + 0.010526195168495178, + 0.05982019379734993, + 0.0011884907726198435, + 0.03641229122877121, + -0.038743264973163605, + 0.010366707108914852, + -0.04823892563581467, + -0.039184924215078354, + -0.03675580397248268, + 0.07223570346832275, + -0.042080242186784744, + -0.03766365721821785, + 0.08730116486549377, + 0.026131462305784225, + 0.017948511987924576, + 0.05717024207115173, + -0.00522629264742136, + 0.04723292589187622, + 0.032388292253017426, + -0.02924760803580284, + 0.10197404772043228, + 0.042816340923309326, + -0.07989111542701721, + -0.0067598288878798485, + -0.022978510707616806, + -0.06629785150289536, + -0.019040388986468315, + -0.10138516873121262, + 0.021383633837103844, + -0.008471256121993065, + -0.007827170193195343, + 0.03771273046731949, + 0.029811950400471687, + 0.08470028638839722, + 0.009716487489640713, + 0.0050085303373634815, + 0.0375409759581089, + 0.062077559530735016, + -0.0467667281627655, + -0.03670673072338104, + -0.03805624321103096, + -0.0009231889853253961, + 0.03125960752367973, + 0.03972472995519638, + 0.050839804112911224, + -0.1071757972240448, + 0.024340292438864708, + -0.07110702246427536, + -0.009219621308147907, + -0.02238963358104229, + -0.003839975455775857, + 0.02684302255511284, + 0.034915558993816376, + 0.005118945147842169, + 0.06448214501142502, + -0.03628960996866226, + -0.001973661594092846, + 0.08926409482955933, + -0.04897502437233925, + -0.007293499540537596, + 0.023285219445824623, + 0.002243563998490572, + -0.010201085358858109, + 0.0030716736800968647, + 0.049220386892557144, + -0.026155998930335045, + 0.06727931648492813, + 0.0026928901206701994, + 0.013323365710675716, + -0.016930243000388145, + -0.012176279909908772, + 0.005618877708911896, + 0.03682941198348999, + 0.02718653529882431, + -0.03982287645339966, + 0.05849521607160568, + -0.011164145544171333, + -0.09117794781923294, + 0.040804341435432434, + 0.05658136308193207, + -0.03469473123550415, + -0.07248107343912125, + -0.04198209568858147, + 0.06340253353118896, + -0.02848697453737259, + -0.0381053164601326, + 0.008495792746543884, + 0.060065560042858124, + -0.04769911989569664, + -0.008029596880078316, + 0.02976287715137005, + 0.010323767550289631, + 0.0551091693341732, + 0.14692506194114685, + 0.03516092523932457, + -0.01897904835641384, + -0.06772097200155258, + 0.1014833152294159, + -0.0033185731153935194, + -0.03947936370968819, + -0.0004857477033510804, + 0.020635267719626427, + -0.06855521351099014, + 0.03947936370968819, + 0.020978780463337898, + 0.02470833994448185, + 0.016635803505778313, + -0.05348975583910942, + -0.07336438447237015, + 0.004042402375489473, + -0.040828876197338104, + 0.012697682715952396, + -0.020340828225016594, + -0.07306994497776031, + 0.053784191608428955, + -0.019715145230293274, + -0.03015546314418316, + 0.02452431619167328, + -0.011096670292317867, + 0.08406233787536621, + 0.05780819430947304, + -0.009090804494917393, + 0.10825540870428085, + 0.05677765607833862, + 0.05932946130633354, + 0.07562175393104553, + -0.009900512173771858, + -0.040411755442619324, + -0.05613970384001732, + -0.05201755836606026, + -0.04355243593454361, + -0.017899438738822937, + -0.006538999732583761, + -0.012587267905473709, + 0.011642609722912312, + -0.002148484578356147, + 0.06413862854242325, + 0.0502999983727932, + 0.020377634093165398, + -0.008446719497442245, + 0.02421760931611061, + 0.018279755488038063, + 0.034522973001003265, + -0.016513122245669365, + -0.025837022811174393, + -0.029124924913048744, + -0.013715950772166252, + 0.03005731664597988 + ] + }, + { + "id": "49495afd-14de-4c37-8c87-154171524d9f", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "customerRating", + "userName": "karihernandez", + "reviewDate": "2021-03-28T07:41:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8f8fbbde-42e8-4173-869b-041440c9fe7f", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "customerRating", + "userName": "joanna57", + "reviewDate": "2021-07-19T09:28:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "73b0c208-a8ca-470e-8449-ff7e5adb5958", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "customerRating", + "userName": "cervantesdawn", + "reviewDate": "2022-01-26T12:47:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f45a4c69-07e1-423f-b880-0026a7a62b17", + "productId": "b42edd84-5ccc-417c-9695-53cabb2000c5", + "category": "Other", + "docType": "customerRating", + "userName": "marcus19", + "reviewDate": "2022-09-08T22:43:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Micro (Red)", + "description": "This Awesome Stand Micro (Red) is rated 4.6 out of 5 by 3.\n\nRated 3 out of 5 by ckirby from A great deal So this is a very nice buy, but the price is a little high, so I will not be buying again. Good price for it, but I still don't know if all i love about it is the high", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-05-04T16:01:42", + "price": 1073.12, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-01-02T07:08:49", + "newPrice": 1143.82 + }, + { + "priceDate": "2021-12-10T07:08:49", + "newPrice": 1098.56 + }, + { + "priceDate": "2022-11-17T07:08:49", + "newPrice": 1150.75 + }, + { + "priceDate": "2024-07-10T07:08:49", + "newPrice": 1073.12 + } + ], + "descriptionVector": [ + -0.047907907515764236, + 0.019731447100639343, + -0.026897255331277847, + 0.0939139872789383, + -0.043877847492694855, + -0.04043644666671753, + -0.03939497098326683, + 0.03450455889105797, + 0.006435643881559372, + 0.08571802079677582, + -0.0005002199322916567, + -0.051892686635255814, + 0.018293756991624832, + -0.055062394589185715, + 0.05261719226837158, + -0.04104774817824364, + 0.009911004453897476, + -0.002388603053987026, + -0.003797992132604122, + 0.027485916391015053, + 0.0517115592956543, + -0.08100873976945877, + 0.007437498774379492, + 0.02916133403778076, + -0.01824847422540188, + -0.01922202855348587, + -0.016618337482213974, + 0.034572482109069824, + 0.04285901039838791, + 0.007612965069711208, + -0.012350549921393394, + 0.014965561218559742, + -0.023206807672977448, + 0.03787803649902344, + 0.025493526831269264, + 0.035863008350133896, + 0.027304790914058685, + -0.03989306837320328, + 0.0338253378868103, + 0.07974085211753845, + -0.03833085298538208, + 0.041885457932949066, + 0.057100068777799606, + -0.05166627839207649, + 0.03559131920337677, + -0.013607113622128963, + -0.028346266597509384, + 0.010114772245287895, + -0.012497714720666409, + 0.009311024099588394, + 0.012769404798746109, + 0.05270775407552719, + -0.00023065302229952067, + -0.0101600531488657, + 0.07874465733766556, + -0.00694506149739027, + -0.04722868278622627, + 0.07136376202106476, + 0.01653909496963024, + -0.08363506942987442, + 0.004460235126316547, + 0.002988584106788039, + 0.0032121618278324604, + -0.012135461904108524, + -0.02242569997906685, + -0.0009190744603984058, + -0.021112535148859024, + 0.01570138707756996, + 0.014161813072860241, + 0.018089989200234413, + -0.0015240079956129193, + 0.033440444618463516, + 0.033734772354364395, + -0.00544793950393796, + 0.060133934020996094, + 0.014433502219617367, + 0.08630668371915817, + 0.029840558767318726, + 0.02356906048953533, + 0.03328195959329605, + 0.04845128580927849, + 0.0014900468522682786, + 0.027372712269425392, + -0.024225642904639244, + 0.08295584470033646, + 0.008054460398852825, + -0.009763839654624462, + -0.08725759387016296, + -0.013324103318154812, + 0.043153341859579086, + -0.06420927494764328, + 0.030678268522024155, + -0.006871479097753763, + -0.04079870134592056, + 0.029546227306127548, + -0.05297944322228432, + -0.04602872207760811, + 0.059092454612255096, + 0.04342503100633621, + 0.0037300698459148407, + 0.004335710778832436, + -0.0401647575199604, + -0.0406854972243309, + -0.02884436398744583, + -0.026535002514719963, + 0.0353422686457634, + 0.012180743739008904, + 0.029727354645729065, + 0.01564478501677513, + -0.14082570374011993, + 0.05619443580508232, + 0.0042536379769444466, + -0.013482589274644852, + -0.05759816616773605, + -0.055288802832365036, + 0.07666170597076416, + 0.009995907545089722, + -0.002462185686454177, + -0.036066774278879166, + -0.0970836952328682, + 0.00662243040278554, + 0.042949575930833817, + 0.015780629590153694, + 0.017569251358509064, + 0.10251748561859131, + 0.021021971479058266, + -0.0770692452788353, + 0.008795945905148983, + 0.0448966808617115, + -0.042926933616399765, + -0.026150109246373177, + 0.09364230185747147, + 0.0337800569832325, + -0.012554316781461239, + -0.06144709885120392, + 0.07770318537950516, + 0.07149960845708847, + 0.07888050377368927, + 0.030044324696063995, + -0.017184358090162277, + 0.0004591834731400013, + -0.0008242661715485156, + 0.049900297075510025, + 0.03264801576733589, + 0.008812926709651947, + 0.04845128580927849, + -0.06570356339216232, + 0.025402963161468506, + 0.045462701469659805, + 0.009752519428730011, + 0.041772253811359406, + -0.0918310359120369, + -0.058458514511585236, + -0.043017495423555374, + -0.02830098569393158, + -0.013516549952328205, + -0.00415741465985775, + -0.021372903138399124, + -0.09409511089324951, + 0.037221454083919525, + -0.015497619286179543, + 0.0216445941478014, + 0.00733561534434557, + -0.015101405791938305, + -0.006956382188946009, + -0.011852452531456947, + 0.029727354645729065, + 0.02968207374215126, + -0.06819405406713486, + 0.05546993017196655, + 0.015712706372141838, + -0.02766704373061657, + 0.013324103318154812, + -0.045779671519994736, + -0.004482876043766737, + -0.02977263554930687, + 0.061628226190805435, + -0.008184644393622875, + 0.006079051643610001, + -0.015395735390484333, + 0.047907907515764236, + -0.01204489916563034, + -0.0517115592956543, + -0.024429410696029663, + 0.029546227306127548, + -0.007199770770967007, + 0.005213041324168444, + 0.0027225548401474953, + 0.03484417125582695, + 0.03251217305660248, + -0.004797016736119986, + -0.005863964091986418, + -0.023523777723312378, + -0.020671039819717407, + -0.03282914310693741, + -0.010024208575487137, + -0.001958428183570504, + 0.010686451569199562, + -0.028233062475919724, + -0.024316206574440002, + -0.08173324167728424, + 0.05157571658492088, + 0.13059206306934357, + 0.006328100338578224, + 0.015429696999490261, + -0.055288802832365036, + 0.06932609528303146, + 0.035546038299798965, + 0.040074195712804794, + -0.0035489434376358986, + -0.03937232866883278, + -0.036587513983249664, + -0.03631582483649254, + 0.022731350734829903, + 0.07195242494344711, + 0.08182381093502045, + 0.04564382880926132, + -0.026738770306110382, + -0.03842141851782799, + -0.028640596196055412, + 0.061945196241140366, + -0.07874465733766556, + 0.024995429441332817, + -0.0025032220873981714, + -0.032149918377399445, + -0.0538397952914238, + -0.0009976096916943789, + -0.02300303988158703, + 0.04111567139625549, + 0.037855397909879684, + -0.023682264611124992, + -0.04414953663945198, + -0.03498001769185066, + -0.03228576481342316, + -0.04131943732500076, + -0.010227976366877556, + -0.04980973154306412, + -0.05003613978624344, + -0.034912094473838806, + 0.049583327025175095, + -0.04682115092873573, + 0.033327240496873856, + -0.0602244958281517, + 0.05216437578201294, + -0.0034187589772045612, + -0.013550511561334133, + 0.07661642879247665, + -0.05546993017196655, + -0.11030592024326324, + -0.014716512523591518, + -0.044194817543029785, + -0.052526626735925674, + 0.005269643384963274, + 0.05759816616773605, + 0.03314611315727234, + 0.01537309493869543, + 0.0771145224571228, + 0.040708135813474655, + -0.013686356134712696, + -0.016188163310289383, + 0.03371213376522064, + 0.03950817510485649, + 0.01399200689047575, + 0.02322944812476635, + -0.025108633562922478, + 0.0028400039300322533, + 0.09029146283864975, + -0.01968616433441639, + -0.030995238572359085, + 0.06774123758077621, + -0.04405897483229637, + -0.04326654598116875, + 0.0686015859246254, + -0.029749995097517967, + -0.08291056752204895, + 0.03319139406085014, + 0.0030168849043548107, + 0.10097791254520416, + -0.024474691599607468, + 0.006152634043246508, + 0.10632114112377167, + 0.030497141182422638, + 0.08707647025585175, + 0.03072354942560196, + 0.042292993515729904, + -0.08322753757238388, + 0.041342079639434814, + -0.10505325347185135, + -0.010669471696019173, + -0.02440677024424076, + -0.049039945006370544, + -0.04254204034805298, + 0.028119858354330063, + -0.0017589061753824353, + -0.03368949145078659, + 0.02893492765724659, + 0.027599120512604713, + 0.01705983281135559, + 0.023523777723312378, + 0.009197819977998734, + 0.05882076546549797, + 0.0696430653333664, + -0.02628595381975174, + -0.08005782961845398, + 0.01352787110954523, + 0.024950148537755013, + -0.02599162422120571, + 0.03649694845080376, + -0.031651820987463, + -0.036179978400468826, + 0.1171887144446373, + -0.01278072502464056, + -0.06932609528303146, + 0.043153341859579086, + 0.10758902132511139, + -0.04254204034805298, + -0.021972885355353355, + 0.03296498581767082, + 0.06774123758077621, + 0.04215714707970619, + 0.018135271966457367, + -0.0485871322453022, + 0.048406004905700684, + 0.04453442990779877, + 0.03287442401051521, + -0.006633750628679991, + 0.0496286079287529, + 0.01204489916563034, + -0.04881354048848152, + 0.022901156917214394, + -0.02063707821071148, + 0.022233253344893456, + 0.03984778746962547, + 0.044624991714954376, + 0.042904291301965714, + -0.005869624204933643, + -0.020557835698127747, + 0.012259986251592636, + 0.04584759473800659, + 0.02296908013522625, + 0.012056219391524792, + -0.0017362653743475676, + -0.0026730280369520187, + -0.04876825585961342, + 0.05963583663105965, + -0.059499990195035934, + 0.053477540612220764, + -0.026059547439217567, + 0.0643903985619545, + -0.009656296111643314, + 0.0011907638981938362, + -0.04086662083864212, + -0.041568487882614136, + 0.05297944322228432, + 0.04795318841934204, + 0.02705574221909046, + 0.04213450476527214, + -0.02427092380821705, + 0.00011063916463172063, + -0.07516741752624512, + 0.0464588962495327, + -0.040074195712804794, + 0.026648206636309624, + -0.0023857729975134134, + 0.013267501257359982, + 0.07208827137947083, + -0.03561395779252052, + 0.059590552002191544, + -0.03894215449690819, + 0.019844651222229004, + -0.01815791241824627, + -0.07027700543403625, + 0.021938923746347427, + 0.02596898376941681, + -0.014648589305579662, + 0.04326654598116875, + 0.008003518916666508, + 0.04267788678407669, + -0.006322440225630999, + 0.022901156917214394, + -0.060133934020996094, + 0.04686643183231354, + 0.00298292376101017, + 0.04944748058915138, + 0.042723167687654495, + -0.011150588281452656, + 0.034685686230659485, + 0.03579508513212204, + -0.04421745985746384, + -0.030180171132087708, + -0.08182381093502045, + -0.06239801272749901, + -0.007731828838586807, + 0.027078382670879364, + 0.012463754042983055, + -0.12398095428943634, + -0.0037328999023884535, + 0.06502434611320496, + 0.016878707334399223, + -0.012373190373182297, + 0.0022343627642840147, + 0.04084398224949837, + 0.03717617318034172, + -0.004836638458073139, + -0.00768088735640049, + -0.09798932820558548, + 0.010743053629994392, + 0.04152320325374603, + -0.01922202855348587, + -0.07842768728733063, + 0.00404138071462512, + 0.01827111653983593, + 0.004032890312373638, + 0.033734772354364395, + 0.04940219968557358, + 0.05841323360800743, + 0.12633559107780457, + -0.030497141182422638, + -0.018169231712818146, + -0.07466931641101837, + 0.09672144800424576, + -0.017557930201292038, + 0.021191777661442757, + -0.0003714504127856344, + -0.04931163787841797, + 0.015248570591211319, + -0.07693339884281158, + -0.055605776607990265, + -0.07349199801683426, + -0.07697867602109909, + -0.021780438721179962, + -0.058367952704429626, + -0.010641170665621758, + 0.013222220353782177, + -0.024452051147818565, + 0.023127565160393715, + 0.004259298089891672, + 0.0939139872789383, + 0.008456334471702576, + 0.02565201185643673, + 0.022312495857477188, + -0.02282191440463066, + 0.03135748952627182, + 0.07634473592042923, + -0.10315143316984177, + 0.007771450560539961, + -0.03536491096019745, + 0.04813431575894356, + 0.06855630874633789, + 0.01588251255452633, + -0.007273353170603514, + 0.01050532516092062, + -0.04677586629986763, + -0.017308881506323814, + 0.044624991714954376, + 0.008037479594349861, + 0.03864782676100731, + 0.08476711064577103, + -0.04274580627679825, + 0.002391433110460639, + -0.01957296021282673, + 0.05035311356186867, + 0.0016824936028569937, + 0.04032324254512787, + -0.009882704354822636, + -0.043040137737989426, + -0.05483599007129669, + 0.006299799308180809, + -0.03387061879038811, + -0.017025873064994812, + -0.0655224397778511, + -0.05356810241937637, + -0.036383744329214096, + 0.01939183473587036, + -0.045779671519994736, + 0.004177225288003683, + -0.017591891810297966, + -0.018723931163549423, + -0.005204550921916962, + 0.04435330256819725, + 0.030859393998980522, + 0.025833139196038246, + -0.036813922226428986, + 0.01965220458805561, + 0.01758057251572609, + -0.04231563210487366, + -0.05990752577781677, + -0.014807075262069702, + 0.050307828933000565, + -0.015429696999490261, + -0.013154298067092896, + 0.12407151609659195, + 0.04722868278622627, + -0.08014839142560959, + -0.06054146587848663, + 0.0007874749135226011, + -0.00659978948533535, + 0.006005468778312206, + -0.03636110574007034, + 0.007448819000273943, + 0.04795318841934204, + 0.0007931350846774876, + -0.03106316179037094, + 0.034368716180324554, + -0.004440424498170614, + -0.031832948327064514, + -0.042089223861694336, + 0.03867046535015106, + -0.005863964091986418, + -0.046413615345954895, + 0.08331809937953949, + -0.028685878962278366 + ] + }, + { + "id": "123845e3-c9b8-4467-82e4-7f8f8e5bbd17", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacobcarlson", + "reviewDate": "2021-09-25T11:29:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eb33d534-b4b7-484a-b3d0-8c3119c075be", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "patrickortiz", + "reviewDate": "2022-05-13T21:56:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e8f035e7-e2b8-4770-87f1-8ab1b6b54ac6", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "davismichael", + "reviewDate": "2022-02-14T05:22:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2488dd19-833a-4c49-9fe2-42e2632caabd", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "wilkinsmark", + "reviewDate": "2022-07-08T15:01:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "50ec718c-712b-4347-9dfe-05ec7c5af9de", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "douglasknight", + "reviewDate": "2021-06-19T00:40:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "826a9453-52d6-48db-8cfc-7e447cd65322", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "angel36", + "reviewDate": "2022-11-06T16:35:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5988158e-7cbc-4fd1-86c3-6a8b38a86d68", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "ryanrichard", + "reviewDate": "2021-06-12T02:38:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3c341d9b-6173-44dc-b8b5-1d67fa2da902", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessicaconner", + "reviewDate": "2021-10-17T18:03:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b7fe382a-e3b1-4d88-a006-87a9f56c060d", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "kaylabernard", + "reviewDate": "2022-11-18T05:22:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f58d70d8-b9c7-428e-9d82-ae6048af3c67", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "ysmith", + "reviewDate": "2021-05-14T22:49:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8e0deea6-b9a6-47ee-903a-af2baa39f0fc", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "brandyrodriguez", + "reviewDate": "2022-02-08T19:27:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8b05ebf2-0ba6-4c66-bb32-fc17d648486f", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "hillshannon", + "reviewDate": "2021-01-02T07:08:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e38c6c2c-61ab-4fcb-94fc-cf5f7ac3e92e", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "sandra58", + "reviewDate": "2022-03-23T14:28:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "559f1c5c-edd3-4fd5-aeda-ac0c19da6049", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "lwatson", + "reviewDate": "2021-04-20T15:44:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dca00264-8d14-4bf4-8b20-5f782fc2a9b4", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "pedro37", + "reviewDate": "2022-02-27T20:47:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "116ad27b-6368-449f-bb54-3d7c04ecca4c", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "welchbrian", + "reviewDate": "2022-09-08T18:16:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5735787c-637b-455e-ad8c-d86c4b4e7037", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "eugeneray", + "reviewDate": "2022-10-03T12:08:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b4fa0ba7-fe7f-401a-9365-91da572e05aa", + "productId": "5c5f9dba-f0e0-40c6-81f3-6e2c5ea0da40", + "category": "Accessory", + "docType": "customerRating", + "userName": "makaylarussell", + "reviewDate": "2021-04-29T09:29:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Steel)", + "description": "This Basic Phone Ultra (Steel) is the ultimate smartphone accessory for a wide variety of applications, including music, photos, movies, social media, maps, and more. With a 3.5mm and 5.1-inch display, the LG Ultra Phone Ultra delivers a superior wireless experience, allowing you to share photos, listen to YouTube, stream", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-05-06T13:57:39", + "price": 976.37, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-01-01T08:54:07", + "newPrice": 955.99 + }, + { + "priceDate": "2021-08-18T08:54:07", + "newPrice": 1057.32 + }, + { + "priceDate": "2022-04-04T08:54:07", + "newPrice": 968.33 + }, + { + "priceDate": "2022-11-19T08:54:07", + "newPrice": 930.46 + }, + { + "priceDate": "2025-01-29T08:54:07", + "newPrice": 976.37 + } + ], + "descriptionVector": [ + 0.017483025789260864, + 0.003012689296156168, + -0.02654694765806198, + 0.041097886860370636, + 0.017738519236445427, + 0.02114509418606758, + -0.05713311955332756, + 0.01124169584363699, + 0.026522614061832428, + 0.034747060388326645, + -0.04192519560456276, + -0.04063556715846062, + 0.02241039276123047, + -0.016728714108467102, + 0.009428910911083221, + -0.032654449343681335, + -0.050417300313711166, + -0.040757227689027786, + 0.04613475129008293, + 0.020451612770557404, + 0.15514512360095978, + -0.12195536494255066, + -0.06224298104643822, + -0.009787818416953087, + -0.01631505787372589, + 0.02297004498541355, + -0.00557218212634325, + 0.029393870383501053, + 0.01810351014137268, + -0.06608754396438599, + 0.04842201992869377, + 0.015950066968798637, + -0.051633935421705246, + 0.02119375951588154, + -0.025841299444437027, + 0.027252594009041786, + 0.007421465590596199, + -0.04199819639325142, + 0.05922572687268257, + -0.0388106144964695, + 0.030294179916381836, + 0.009921647608280182, + 0.011929093860089779, + 0.023140372708439827, + 0.04379881173372269, + -0.02951553277671337, + -0.011764847673475742, + 0.026571279391646385, + -0.02674160897731781, + -0.03603668883442879, + 0.015317418612539768, + -0.006156166549772024, + -0.020938266068696976, + 0.0018036594847217202, + 0.06530889868736267, + -0.050806622952222824, + 0.05455385521054268, + 0.1378202587366104, + 0.03253278508782387, + -0.01970946602523327, + 0.026644278317689896, + -0.1059931293129921, + -0.006177457515150309, + 0.032922107726335526, + -0.02747158892452717, + 0.011570186354219913, + -0.014271113090217113, + 0.01529308594763279, + 0.031559478491544724, + 0.07436065375804901, + 0.014125117100775242, + -0.007646542973816395, + -0.00754921231418848, + 0.02262938767671585, + -0.022811882197856903, + 0.06112367659807205, + -0.03153514489531517, + 0.05586782097816467, + 0.04151154309511185, + -0.07757256180047989, + 0.03428473696112633, + -0.011764847673475742, + -0.042849838733673096, + 0.0022933545988053083, + 0.07309535145759583, + 0.06316762417554855, + 0.09280481934547424, + -0.10501982271671295, + -0.03674233704805374, + 0.11017835140228271, + 0.008437355048954487, + 0.037180326879024506, + 0.020098788663744926, + 0.030221180990338326, + 0.09801200777292252, + 0.06496824324131012, + -0.03868895024061203, + 0.007165972609072924, + -0.013541133143007755, + -0.0009900357108563185, + 0.10073727369308472, + 0.004486336838454008, + -0.053434550762176514, + -0.0011626455234363675, + 0.040270574390888214, + 0.007877702824771404, + 0.05577049031853676, + 0.05377520993351936, + 0.008060198277235031, + -0.10550647228956223, + -0.027909576892852783, + -0.03754531592130661, + -0.04375014826655388, + 0.0023237704299390316, + 0.018127841874957085, + 0.027325592935085297, + -0.03350609168410301, + -0.05630580708384514, + 0.07071074843406677, + 0.04808136448264122, + -0.01262865774333477, + 0.02506265416741371, + 0.011071366257965565, + -0.025768302381038666, + -0.04255784675478935, + -0.011393774300813675, + 0.0052588991820812225, + 0.07455531507730484, + 0.03929726779460907, + -0.008449520915746689, + -0.07134339958429337, + 0.04394480958580971, + 0.00907000433653593, + -0.015585077926516533, + -0.030269846320152283, + 0.004319049417972565, + 0.014940261840820312, + -0.021692579612135887, + -0.009812151081860065, + 0.062437642365694046, + 0.0027465505991131067, + 0.02997785434126854, + 0.07839987426996231, + -0.04448012635111809, + -0.05912839621305466, + -0.034747060388326645, + 0.008692847564816475, + -0.01006156112998724, + 0.00823661033064127, + 0.06866680830717087, + -0.03958925977349281, + -0.07217071205377579, + 0.028931548818945885, + -0.04976031929254532, + 0.03839695826172829, + -0.02042727917432785, + -0.03963792696595192, + 0.0074762143194675446, + -0.07839987426996231, + 0.0357690304517746, + -0.0012333623599261045, + -0.009003089740872383, + 0.012604325078427792, + -0.07606393843889236, + -0.005389687139540911, + 0.0330924354493618, + 0.01852933131158352, + 0.04864101484417915, + 0.03754531592130661, + 0.040002916008234024, + -0.012859818525612354, + 0.014003453776240349, + -0.06428692489862442, + -0.055332500487565994, + -0.015998732298612595, + -0.03720465674996376, + 0.04781370609998703, + 0.03129182010889053, + 0.013188309036195278, + -0.0004995802300982177, + -0.0011481980327516794, + -0.000553568359464407, + -0.06501690298318863, + -0.01040221843868494, + 0.046280745416879654, + 0.04778937250375748, + -0.002551889279857278, + 0.05139060690999031, + -0.0378129743039608, + 0.00101284752599895, + -0.006241330876946449, + -0.02754458785057068, + -0.044577457010746, + -0.017373530194163322, + 0.0398569218814373, + -0.05143927410244942, + 0.09611406177282333, + 0.03017251566052437, + -0.021351922303438187, + -0.029661528766155243, + 0.06112367659807205, + 0.07260870188474655, + 0.09694137424230576, + 0.007007810287177563, + -0.020877433940768242, + -0.02446650341153145, + -0.05153660476207733, + 0.05732778087258339, + -0.0037502734921872616, + -0.000658883189316839, + -0.007372800260782242, + -0.007129473611712456, + -0.07990850508213043, + -0.0039084358140826225, + 0.06433559209108353, + 0.03496605157852173, + -0.0003368554462213069, + -0.03462539613246918, + -0.02533031441271305, + -0.11757548153400421, + 0.032094795256853104, + 0.0368153341114521, + 0.04722972214221954, + -0.028396230190992355, + -0.06438425183296204, + -0.0756746158003807, + 0.12039807438850403, + 0.05362921208143234, + 0.07197605073451996, + 0.05854441225528717, + -0.004331215750426054, + 0.008844926953315735, + -0.009848649613559246, + 0.002188419923186302, + -0.03788597509264946, + 0.014100784435868263, + -0.0026765940710902214, + -0.051293276250362396, + -0.08122246712446213, + 0.056159812957048416, + -0.0033062021248042583, + -0.039199937134981155, + -0.03275178000330925, + -0.08852227032184601, + 0.07606393843889236, + -0.0211085956543684, + 0.050806622952222824, + -0.04126821458339691, + -0.038664620369672775, + -0.0008098218240775168, + 0.005535683128982782, + -0.05192592740058899, + -0.009720902889966965, + 0.06063702329993248, + 0.02146141789853573, + -0.030561838299036026, + 0.033603422343730927, + -0.06779082864522934, + 0.018018344417214394, + -0.00470837252214551, + -0.00422171875834465, + -0.021424919366836548, + -0.03727765753865242, + 0.04980898275971413, + -0.017969679087400436, + 0.04895734041929245, + 0.06472491472959518, + -0.06321628391742706, + -0.005064237862825394, + 0.016716547310352325, + -0.010085893794894218, + -0.025646638125181198, + 0.007500546984374523, + 0.0011846970301121473, + -0.008352190256118774, + 0.0442124679684639, + -0.13791759312152863, + 0.058787740767002106, + -0.05221791937947273, + 0.0031845388002693653, + 0.11465556174516678, + 0.05903106555342674, + 0.0074275485239923, + 0.02198457159101963, + 0.042776841670274734, + -0.0031480398029088974, + 0.009331580251455307, + 0.0047874534502625465, + 0.07552862167358398, + -0.016448887065052986, + 0.015475580468773842, + 0.0011367921251803637, + 0.006061877589672804, + -0.04569676145911217, + 0.022434726357460022, + 0.011284277774393559, + 0.050271306186914444, + -0.04309316724538803, + 0.05382387340068817, + 0.03557436913251877, + 0.005782051477581263, + 0.008005449548363686, + -0.062291644513607025, + -0.0830230861902237, + 0.03316543623805046, + 0.13081245124340057, + 0.02202107012271881, + 0.011935176327824593, + -0.028055572882294655, + -0.0405382364988327, + 0.04586708918213844, + -0.010882788337767124, + -0.05800909548997879, + -0.008279192261397839, + 0.030488841235637665, + -0.0007999366498552263, + -0.009447161108255386, + 0.06847214698791504, + 0.011381608434021473, + 0.0007938534836284816, + 0.01279898639768362, + 0.017641188576817513, + -0.044334132224321365, + 0.09290214627981186, + 0.03357908874750137, + -0.011156531050801277, + -0.04834902286529541, + -0.025646638125181198, + 0.04063556715846062, + -0.049589987844228745, + -0.024588167667388916, + 0.01897948607802391, + 0.01719103381037712, + 0.00410918053239584, + 0.09236682951450348, + -0.0286882221698761, + 0.014915929175913334, + 0.04652407392859459, + 0.04328782856464386, + -0.019733797758817673, + 0.09197750687599182, + 0.06433559209108353, + 0.029466867446899414, + -0.02545197680592537, + 0.0013732752995565534, + -0.041292548179626465, + -0.06973744183778763, + 0.012354915030300617, + -0.01650971919298172, + -0.00014609110075980425, + 0.001359588117338717, + -0.03221645951271057, + 0.046013087034225464, + 0.04192519560456276, + 0.04336082562804222, + 0.03012385033071041, + -0.02674160897731781, + -0.00469620618969202, + -0.028517894446849823, + -0.0023420199286192656, + 0.021935906261205673, + 0.00580030120909214, + 0.049881983548402786, + 0.0068070655688643456, + -0.06710951775312424, + 0.08292575180530548, + 0.015366083942353725, + 0.03370075300335884, + -0.01765335537493229, + -0.017519526183605194, + 0.02985619194805622, + -0.02335936762392521, + -0.053580548614263535, + 0.06628220528364182, + -0.04255784675478935, + 0.05718178302049637, + 0.04533177241683006, + -0.07348467409610748, + -0.002308562397956848, + 0.04340948909521103, + -0.02133975550532341, + 0.029272206127643585, + -0.023116040974855423, + -0.0021245465613901615, + 0.10044527798891068, + -0.0019922377541661263, + -0.08088181167840958, + 0.08954424411058426, + 0.004510669503360987, + 0.04611041769385338, + 0.00012289901496842504, + -0.023651359602808952, + -0.07114873826503754, + 0.061610329896211624, + 0.0837530642747879, + 0.022763216868042946, + 0.03187580406665802, + 0.001511667389422655, + -0.043725814670324326, + -0.06589288264513016, + 0.033384427428245544, + 0.05645180493593216, + 0.015718907117843628, + -0.012896317057311535, + 0.02008662186563015, + -0.022398225963115692, + 0.03160814195871353, + -0.0019557387568056583, + 0.014161616563796997, + -0.040075913071632385, + 0.0168868750333786, + -0.03625568374991417, + -0.03387108072638512, + -0.026498282328248024, + -0.012531327083706856, + 0.04630507901310921, + -0.016375890001654625, + 0.011095698922872543, + 0.08565101027488708, + 0.015597243793308735, + -0.0040513901039958, + 0.021558748558163643, + -0.049395326524972916, + -0.021960237994790077, + -0.004422463476657867, + 0.027398591861128807, + -0.07810788601636887, + -0.02944253571331501, + -0.055137839168310165, + -0.041170883923769, + 0.07051608711481094, + 0.01377229392528534, + 0.02050027810037136, + 0.03367641940712929, + 0.011570186354219913, + -0.04146287590265274, + -0.019733797758817673, + 0.02244689129292965, + -0.01597440056502819, + -0.04126821458339691, + -0.04282550513744354, + 0.06783949583768845, + -0.02829889953136444, + 0.0594203881919384, + -0.12662723660469055, + -0.026522614061832428, + -0.0465727373957634, + -0.03924860432744026, + 0.007026059553027153, + -0.013528966344892979, + -0.006624570582062006, + 0.006521156523376703, + -0.015804070979356766, + -0.04260651394724846, + 0.014867263846099377, + -0.010773291811347008, + 0.0005056633963249624, + 0.040002916008234024, + -0.04652407392859459, + -0.011892594397068024, + -0.024867992848157883, + 0.0499793142080307, + 0.06710951775312424, + 0.008492102846503258, + -0.07333867996931076, + -0.04983331635594368, + -0.039881251752376556, + -0.006417742930352688, + -0.020062290132045746, + -0.00014380989887285978, + -0.00478441221639514, + -0.10589579492807388, + 0.02286054752767086, + 0.020475944504141808, + -0.0029427327681332827, + -0.08346106857061386, + -0.014538772404193878, + -0.0025214734487235546, + -0.02579263411462307, + 0.018419833853840828, + 0.03564736619591713, + 0.004017932806164026, + 0.07304668426513672, + -0.007877702824771404, + 0.03963792696595192, + -0.0722193792462349, + -0.001998320920392871, + 0.028785552829504013, + -0.013407303020358086, + 0.016266392543911934, + 0.010718543082475662, + 0.07265736162662506, + -0.06302162259817123, + -0.013309972360730171, + -0.03958925977349281, + -0.03693699836730957, + 0.04613475129008293, + 0.01726403273642063, + -0.09601673483848572, + 0.05017397552728653, + 0.005249774549156427, + -0.013431635685265064, + -0.03462539613246918, + 0.011631018482148647, + 0.04620774835348129, + 0.03786164149641991, + 0.021096428856253624, + 0.08365572988986969, + -0.01074287574738264, + -0.0045836674980819225, + 0.024563834071159363, + -0.01613256335258484 + ] + }, + { + "id": "fe5d788d-d669-41b0-9a93-fcaf144a784b", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "imcclure", + "reviewDate": "2021-03-26T20:54:57", + "stars": 5, + "verifiedUser": false + }, + { + "id": "83572858-ac8a-42c5-856d-fed099e92d03", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "andreamathews", + "reviewDate": "2021-01-01T08:54:07", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6a6ead0c-62a2-4496-9ae8-cba9749ca7f0", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "penningtonderrick", + "reviewDate": "2021-08-05T21:45:56", + "stars": 5, + "verifiedUser": false + }, + { + "id": "317cff00-82cd-41e7-aea6-7fd06f701315", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissawells", + "reviewDate": "2022-11-21T00:11:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0b67a4a4-eef4-47c4-81e9-5f3469010f2a", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathanchavez", + "reviewDate": "2021-03-12T09:48:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3297961b-17a2-4739-91a0-a915862eae16", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "ramirezmichele", + "reviewDate": "2022-02-17T23:34:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f8f0902d-6777-426e-aa10-6d6c5b41389f", + "productId": "29bc485c-fce5-4d34-9567-6d1a2098c8ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopherwatkins", + "reviewDate": "2022-09-08T17:17:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "709ec743-d039-426c-81a0-de6f75c15a28", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Red)", + "description": "This Amazing Filter Micro (Red) is here, but it's got nothing else at my disposal. Just take this one as an example of why I love the little filter that is available, but you have to keep in mind that if you plan on putting a huge box of your own, this filter just doesn't matter. I will have more on this later on in an update. All of the filters I used, I did not use any", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-12-19T14:39:23", + "price": 484.77, + "stock": 68, + "priceHistory": [ + { + "priceDate": "2021-01-11T12:50:10", + "newPrice": 519.75 + }, + { + "priceDate": "2021-04-14T12:50:10", + "newPrice": 437.41 + }, + { + "priceDate": "2021-07-16T12:50:10", + "newPrice": 506.17 + }, + { + "priceDate": "2021-10-17T12:50:10", + "newPrice": 502.39 + }, + { + "priceDate": "2022-01-18T12:50:10", + "newPrice": 488.35 + }, + { + "priceDate": "2025-06-16T12:50:10", + "newPrice": 484.77 + } + ], + "descriptionVector": [ + 0.00915756355971098, + 0.0695117935538292, + -0.030257444828748703, + 0.0714397057890892, + -0.018971150740981102, + -0.06415649503469467, + -0.020283199846744537, + -0.023389272391796112, + 0.01989494077861309, + 0.008494844660162926, + -0.0540885291993618, + -0.015891853719949722, + 0.01733778417110443, + -0.009786810725927353, + 0.06244279816746712, + -0.045868147164583206, + -0.08322136104106903, + 0.002570544136688113, + -0.030632317066192627, + -0.0017873314209282398, + 0.04495774582028389, + -0.04174456372857094, + -0.054650839418172836, + 0.05111633986234665, + 0.005562818143516779, + 0.017257453873753548, + 0.0032048122957348824, + 0.0009681378724053502, + -0.06324609369039536, + 0.028008218854665756, + 0.08654165267944336, + 0.035800181329250336, + 0.056498415768146515, + 0.0813470110297203, + 0.006285783369094133, + -0.0072899023070931435, + 0.0729391872882843, + 0.005910912528634071, + 0.06228214129805565, + 0.04153035208582878, + 0.03170337527990341, + -0.005576206371188164, + -0.034622013568878174, + 0.0392007976770401, + -0.013053543865680695, + 0.021086493507027626, + -0.06619150936603546, + -0.049295537173748016, + -0.029347045347094536, + -0.018154466524720192, + 0.03116784617304802, + -0.01732439547777176, + -0.030685869976878166, + -0.033015426248311996, + 0.007765185087919235, + 0.014700299128890038, + -0.008019561879336834, + 0.060568444430828094, + 0.0287847388535738, + -0.057141050696372986, + 0.008555091917514801, + -0.007611220236867666, + 0.04078061133623123, + -0.04107515141367912, + -0.12102977931499481, + 0.0052080294117331505, + -0.05424918979406357, + -0.011326460167765617, + 0.024380004033446312, + 0.02784756012260914, + 0.013328002765774727, + 0.014285262674093246, + 0.016829030588269234, + 0.026508735492825508, + 0.009652928449213505, + 0.016668371856212616, + 0.0987517312169075, + -0.05971159785985947, + 0.021903177723288536, + 0.025745606049895287, + 0.009264669381082058, + 0.055106036365032196, + -0.07133259624242783, + 0.006530119106173515, + -0.016775477677583694, + 0.018422232940793037, + 0.011406789533793926, + -0.059925809502601624, + 0.012102978304028511, + 0.025491228327155113, + -0.02180946059525013, + 0.031033964827656746, + 0.03729966655373573, + -0.026374852284789085, + 0.020028822124004364, + 0.04535939171910286, + 0.016788866370916367, + 0.04985784366726875, + -0.035907287150621414, + 0.038879480212926865, + -0.058479875326156616, + -0.04859934747219086, + -0.024580826982855797, + 0.06287122517824173, + -0.05869409069418907, + -0.009760034270584583, + -0.0010601821122691035, + -0.008093196898698807, + -0.0012292087776586413, + -0.0967702716588974, + 0.01255817897617817, + -0.030739422887563705, + -0.07411735504865646, + 0.06260345876216888, + -0.014847569167613983, + -0.01885065622627735, + -0.0270442645996809, + 0.0004114795010536909, + 0.03368483856320381, + -0.027405748143792152, + 0.037139005959033966, + 0.07186812907457352, + 0.06008646637201309, + -0.02472809888422489, + 0.019560232758522034, + 0.012089589610695839, + -0.015235829167068005, + 0.008307409472763538, + 0.04851901903748512, + 0.013689486309885979, + -0.09189695119857788, + 0.028570525348186493, + 0.021073106676340103, + -0.017431501299142838, + -0.10491032898426056, + 0.01593201793730259, + 0.06587018817663193, + 0.12692061066627502, + -0.020805340260267258, + 0.0446632020175457, + -0.053071025758981705, + -0.052133847028017044, + -0.014526251703500748, + 0.057194605469703674, + -0.012959825806319714, + -0.024500498548150063, + -0.0525890477001667, + 0.05831921845674515, + -0.01555714663118124, + -0.055802226066589355, + -0.021836236119270325, + -0.09607408195734024, + 0.03604117035865784, + -0.009626151993870735, + 0.039522115141153336, + 0.05232128128409386, + -0.0005121005815453827, + 0.02443355694413185, + -0.031783707439899445, + 0.023108119145035744, + -0.024286286905407906, + -0.034970108419656754, + -0.00848815031349659, + 0.0015580576146021485, + -0.021126659587025642, + -0.0018525990890339017, + -0.0025236851070076227, + -0.024380004033446312, + -0.07770540565252304, + 0.04321727156639099, + 0.06908337026834488, + 0.030926859006285667, + 0.0466446653008461, + 0.06688769906759262, + 0.014820792712271214, + 0.026830052956938744, + 0.03122139908373356, + -0.0332564152777195, + -0.014633357524871826, + -0.025343958288431168, + 0.02192995324730873, + 0.024058686569333076, + -0.04787638410925865, + -0.04302983731031418, + -0.022693084552884102, + 0.04444899037480354, + -0.01727084256708622, + -0.03459523990750313, + 0.012437684461474419, + 0.061157528311014175, + 0.010851176455616951, + -0.022826965898275375, + 0.05483827367424965, + -0.02412562631070614, + 0.02290729619562626, + -0.0377013124525547, + -0.09157563000917435, + -0.059122513979673386, + 0.002252573147416115, + 0.003711892291903496, + -0.045573603361845016, + 0.006038100924342871, + 0.07572394609451294, + 0.010730682872235775, + 0.032881543040275574, + 0.06924402713775635, + 0.03582695871591568, + 0.10464256256818771, + 0.0009137480519711971, + -0.019935104995965958, + -0.03392582759261131, + -0.01633366569876671, + -0.09918015450239182, + -0.08450663834810257, + 0.04361892119050026, + 0.019105033949017525, + -0.030605539679527283, + -0.026669394224882126, + -0.0008166832849383354, + -6.57384007354267e-05, + 0.03866526857018471, + -0.06388872861862183, + -0.009124092757701874, + -0.008012867532670498, + -0.034514907747507095, + -0.04833158478140831, + -0.00702213728800416, + 0.033363521099090576, + 0.05403497815132141, + 0.06774454563856125, + -0.003357103792950511, + -0.011768272146582603, + -0.011841907165944576, + -0.016735313460230827, + -0.05890830233693123, + 0.021622024476528168, + -0.06137173995375633, + -0.01238413155078888, + 0.04241397604346275, + 0.0005355300381779671, + 0.0347558967769146, + 0.07347472012042999, + -0.06517400592565536, + 0.0007890699780546129, + 0.08209674805402756, + -0.029400598257780075, + 0.00851492676883936, + -0.04851901903748512, + -0.061907269060611725, + -0.030605539679527283, + -0.026040146127343178, + 0.06238924711942673, + -0.05390109494328499, + 0.04410089552402496, + -0.07010088115930557, + 0.12285058200359344, + 0.06083621084690094, + -0.020189480856060982, + -0.10169714689254761, + -0.10303597152233124, + 0.029239937663078308, + 0.017257453873753548, + 0.06538821756839752, + 0.02918638475239277, + -0.06099686771631241, + -0.05623064935207367, + 0.06421004980802536, + -0.005951077211648226, + -0.0853634849190712, + 0.07695566117763519, + 0.018810492008924484, + -0.008300715126097202, + 0.059818703681230545, + 0.01902470365166664, + -0.03762098401784897, + 0.001480238395743072, + -0.04525228589773178, + 0.038424279540777206, + 0.049643632024526596, + 0.03553241491317749, + 0.10560651868581772, + -0.002888514893129468, + 0.05939027667045593, + -0.014405757188796997, + 0.032774437218904495, + 0.03389905020594597, + 0.038290396332740784, + -0.0017588813789188862, + -0.0774376392364502, + -0.06212148070335388, + -0.0498846210539341, + -0.04517195746302605, + 0.014459310099482536, + -0.05837276950478554, + 0.007142631337046623, + -0.03772808983922005, + 0.003932798746973276, + -0.003869204316288233, + 0.004980429075658321, + 0.026307912543416023, + -0.04203910753130913, + -0.04257463663816452, + -0.02664261870086193, + -0.05400820076465607, + -0.025491228327155113, + 0.051678646355867386, + 0.0503665991127491, + 0.0068246605806052685, + -0.03970954939723015, + -0.10035832226276398, + 0.047608617693185806, + 0.01306023821234703, + -0.01925230398774147, + 0.021889789029955864, + 0.034166812896728516, + -0.01113232970237732, + 0.0028282678686082363, + 0.006175330374389887, + 0.01768587902188301, + 0.011975789442658424, + 0.04983106628060341, + -0.026910383254289627, + 0.011259518563747406, + 0.09157563000917435, + -0.004234034102410078, + -0.02156847156584263, + -0.03237278759479523, + 0.05553446337580681, + -0.024219345301389694, + 0.0033269801642745733, + -0.017003078013658524, + 0.030953634530305862, + 0.0007463949732482433, + 0.03472911939024925, + 0.0008543377043679357, + -0.10383927077054977, + 0.027526242658495903, + -0.01392378006130457, + -0.034809451550245285, + 0.030150339007377625, + -0.03443457931280136, + 0.002150487620383501, + 0.031435612589120865, + -0.035907287150621414, + 0.08091858774423599, + -0.06335320323705673, + 0.014727075584232807, + -0.0518660806119442, + 0.04709986597299576, + -0.06833362579345703, + 0.0017404725076630712, + -0.0022324908059090376, + -0.014124603942036629, + 0.0620143748819828, + 0.09023680537939072, + -0.009987634606659412, + -0.000687821360770613, + -0.007959314621984959, + 0.025491228327155113, + -0.024339839816093445, + -0.027365583926439285, + 0.03106074035167694, + 0.05532025173306465, + 0.004839852452278137, + -0.04450254514813423, + 0.10566007345914841, + -0.040860939770936966, + 0.013455191627144814, + 0.01756538450717926, + 0.04187844693660736, + -0.037540655583143234, + -0.0039629219099879265, + -0.04560038074851036, + 0.01369617972522974, + -0.04241397604346275, + -0.11224708706140518, + 0.10137583315372467, + 0.03925434872508049, + 0.04758184030652046, + 0.041664235293865204, + 0.010061269626021385, + 0.020109152421355247, + 0.004150357563048601, + -0.0008995230891741812, + 0.07042219489812851, + 0.07749119400978088, + -0.029614809900522232, + -0.007785267662256956, + -0.005880788899958134, + 0.0016475915908813477, + -0.0838639959692955, + -0.013294532895088196, + 0.007785267662256956, + -0.041262585669755936, + 0.005502570886164904, + -0.04169101268053055, + -0.04525228589773178, + 0.08166832476854324, + 0.07749119400978088, + -0.023857861757278442, + 0.02111327089369297, + 0.04554682597517967, + -0.012772390618920326, + -0.0560699924826622, + -0.06479912996292114, + 0.008842939510941505, + 0.03558596968650818, + 0.040619950741529465, + -0.025424286723136902, + -0.036496371030807495, + -0.002033340511843562, + -0.02267969585955143, + -0.06158595159649849, + -0.04894744232296944, + 0.006761066149920225, + 0.06035423278808594, + 0.020323364064097404, + 0.027713678777217865, + 0.003424044931307435, + -0.01615961827337742, + -0.018221408128738403, + 0.0045921700075268745, + 0.054061755537986755, + 0.04482386261224747, + -0.004936917219310999, + 0.007330066990107298, + 0.004481716547161341, + 0.0429227314889431, + -0.03981665521860123, + -0.11685264855623245, + -0.007658079266548157, + 0.08557769656181335, + -0.07427801191806793, + -0.03239956498146057, + 0.025518005713820457, + -0.03740677237510681, + -0.07561683654785156, + 0.06169305741786957, + -0.06367451697587967, + 0.002445029094815254, + -0.00407337537035346, + 0.06581664085388184, + -0.013354779221117496, + 0.0011639409931376576, + -0.13420382142066956, + -0.03879914805293083, + -0.04843869060277939, + 0.05949738249182701, + 0.0013538867933675647, + -0.07384958863258362, + -0.06560242921113968, + 0.05025949329137802, + -0.07700921595096588, + -0.012089589610695839, + 0.03320286050438881, + -0.024928921833634377, + 0.08477439731359482, + 0.07368893176317215, + -0.01763232611119747, + 0.018007196485996246, + -0.03507721424102783, + 0.049241986125707626, + -0.04048606753349304, + 0.00571343582123518, + 0.052776481956243515, + -0.024848593398928642, + -0.047367628663778305, + 0.038825925439596176, + 0.017136961221694946, + -0.0036215216387063265, + -0.04102160036563873, + -0.03954889252781868, + -0.07866936177015305, + 0.027017489075660706, + -0.05135732889175415, + 0.020336752757430077, + -0.05256227031350136, + -0.007089078426361084, + 0.01421832200139761, + -0.012109672650694847, + -0.010744070634245872, + 0.007611220236867666, + -0.06656637787818909, + 0.06694125384092331, + 0.017244067043066025, + 0.015891853719949722, + -0.05066113919019699, + 0.022840354591608047, + -0.005770335905253887, + 0.038584936410188675, + 0.044181227684020996, + 0.01565086469054222, + -0.02518329955637455, + 0.016721924766898155, + -0.015958793461322784, + -0.019761057570576668, + -0.017712654545903206, + -0.032881543040275574, + -0.04482386261224747, + 0.02122037671506405, + 0.056391309946775436, + 0.02518329955637455, + -0.011647777631878853, + -0.0184891726821661, + 0.005097576417028904, + 0.0017471666214987636, + 0.07711631804704666, + -0.02808854915201664, + -0.0319979190826416, + -0.057248156517744064, + -0.007745102979242802, + 0.028624078258872032 + ] + }, + { + "id": "7bac0869-e7c2-4524-889e-47d306e8b3b0", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "mdavis", + "reviewDate": "2021-04-21T23:13:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8e2d4591-3868-4bd8-9db4-559e17a78d25", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "robertssarah", + "reviewDate": "2021-01-24T16:19:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f3455c51-d40b-407f-8561-96996243995c", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "mcmillanrobert", + "reviewDate": "2021-01-30T23:22:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e86abba6-5ee9-473a-b0cd-3f7c8f551f9a", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "hschroeder", + "reviewDate": "2021-07-14T04:21:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e1325e25-b851-4293-afb2-c6b61bf2a4b9", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "cgarcia", + "reviewDate": "2022-01-20T19:16:48", + "stars": 5, + "verifiedUser": true + }, + { + "id": "77c3fac2-04fa-4442-bbe6-5751ab58d274", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "samantha11", + "reviewDate": "2021-01-11T12:50:10", + "stars": 5, + "verifiedUser": true + }, + { + "id": "35138c5e-fe9e-40f6-abff-759f9faa5f22", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "leslie04", + "reviewDate": "2021-03-08T22:51:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4e72fd1b-1e62-4d02-b482-0bf5f64e7533", + "productId": "709ec743-d039-426c-81a0-de6f75c15a28", + "category": "Other", + "docType": "customerRating", + "userName": "amandasmith", + "reviewDate": "2021-02-27T15:08:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3b3d7b16-d1ca-417c-8818-79ce9e14ee71", + "productId": "3b3d7b16-d1ca-417c-8818-79ce9e14ee71", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Micro (Black)", + "description": "This Amazing Computer Micro (Black) is a full-fledged Windows 10 operating system designed for gamers to develop their own hardware. In fact, by the time we last tried it, its only known purpose was to develop gaming", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-12-16T19:30:05", + "price": 588.61, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-09-09T21:07:42", + "newPrice": 557.94 + }, + { + "priceDate": "2021-12-14T21:07:42", + "newPrice": 558.1 + }, + { + "priceDate": "2022-03-20T21:07:42", + "newPrice": 596.54 + }, + { + "priceDate": "2025-05-06T21:07:42", + "newPrice": 588.61 + } + ], + "descriptionVector": [ + -0.03320014104247093, + 0.05137927457690239, + -0.03619903326034546, + -0.09426610916852951, + 0.013972721062600613, + 0.06305638700723648, + -0.03134242072701454, + 0.044293392449617386, + 0.07616659253835678, + 0.05567857250571251, + 0.07685660570859909, + -0.07913894951343536, + 0.038030218333005905, + -0.06364023685455322, + -0.01819240301847458, + 0.049468476325273514, + -0.03545594587922096, + -0.02417692169547081, + 0.03123626485466957, + 0.0066513074561953545, + 0.010363433510065079, + -0.021363800391554832, + -0.056633975356817245, + 0.06597565859556198, + 0.019598964601755142, + -0.036570578813552856, + 0.015578323975205421, + 0.013375596143305302, + -0.033837076276540756, + 0.029590852558612823, + 0.07483964413404465, + 0.03335937485098839, + -0.020886100828647614, + 0.06135789677500725, + 0.08285439014434814, + 0.029511237516999245, + -0.03561517968773842, + -0.007357905153185129, + 0.07775892317295074, + -0.016666417941451073, + 0.03516401723027229, + 0.01732989028096199, + 0.051140423864126205, + 0.006800588686019182, + 0.02269074320793152, + 0.02651234343647957, + -0.015286396257579327, + -0.059447094798088074, + -0.017860667780041695, + -0.02036859281361103, + 0.08322593569755554, + -0.0042329514399170876, + 0.049495015293359756, + 0.0235797967761755, + -0.01061555277556181, + -2.103154474752955e-05, + 0.050662726163864136, + 0.03389015048742294, + 0.003473276272416115, + -0.10366087406873703, + -0.01743604615330696, + 0.023513449355959892, + 0.04179874062538147, + -0.02935200370848179, + -0.011736820451915264, + -0.03922446817159653, + -0.01296424400061369, + 0.06475487351417542, + 0.04230297729372978, + 0.05451086536049843, + -0.05360854044556618, + -0.06709029525518417, + 0.03182011842727661, + -0.006429044064134359, + 0.03898561745882034, + -0.015644671395421028, + 0.024429040029644966, + 0.030466636642813683, + 0.06963802874088287, + -0.05042387545108795, + 0.005666051525622606, + 0.009009950794279575, + 0.002612421289086342, + -0.07568889111280441, + 0.031289342790842056, + 0.039197929203510284, + 0.05222851783037186, + -0.13025283813476562, + 0.015923328697681427, + -0.020899370312690735, + -0.04519571736454964, + 0.08741907775402069, + 0.06767415255308151, + -0.039304085075855255, + 0.025503866374492645, + 0.026870617642998695, + -0.05743014067411423, + 0.02495981939136982, + -0.009116105735301971, + 0.024256538599729538, + 0.03415554016828537, + -0.08688829839229584, + -0.004033910110592842, + -0.0516977421939373, + -0.07345962524414062, + -0.029431620612740517, + 0.03476593643426895, + 0.02614079788327217, + -0.011073348112404346, + -0.03179357945919037, + -0.07823662459850311, + 0.029697008430957794, + 0.004644304513931274, + 0.023659413680434227, + 0.027335047721862793, + 0.04392185062170029, + -0.024920010939240456, + -0.015392551198601723, + -0.009958715178072453, + 0.014835234731435776, + 0.00660818163305521, + -0.03614595904946327, + -0.011617396026849747, + -0.04373607784509659, + -0.025371171534061432, + -0.02799852006137371, + -0.03943677991628647, + -0.02330113761126995, + 0.039596013724803925, + -0.010834498330950737, + -0.04108218848705292, + 0.07993511110544205, + 0.01860375702381134, + 0.02330113761126995, + -0.013335788622498512, + 0.017953554168343544, + 0.05315738171339035, + 0.07892663776874542, + 0.01663987897336483, + 0.029006997123360634, + 0.03163434565067291, + 0.003990784287452698, + -0.07653813809156418, + -0.03468631953001022, + -0.020992254838347435, + 0.045275334268808365, + -0.017011422663927078, + 0.01682565174996853, + -0.06247252970933914, + 0.06756799668073654, + -0.10005158185958862, + 0.02680427022278309, + -0.038215991109609604, + -0.08035973459482193, + 0.033730920404195786, + 0.021204566583037376, + 0.004952818620949984, + 0.002073350129649043, + -0.024760777130723, + 0.06464871764183044, + 0.014569845981895924, + 0.025689637288451195, + -0.002886103466153145, + 0.008658310398459435, + 0.007848874665796757, + -0.016002945601940155, + 0.03736674413084984, + 0.026698114350438118, + -0.05997787415981293, + 0.00635937973856926, + 0.01170364674180746, + 0.018749719485640526, + 0.017263542860746384, + 0.04631035029888153, + 0.06624104827642441, + 0.057695530354976654, + 0.06862954795360565, + 0.043417610228061676, + 0.030572792515158653, + -0.04872538894414902, + -0.011219312436878681, + 0.04108218848705292, + -0.011225947178900242, + 0.044479165226221085, + 0.056421663612127304, + 0.040073711425065994, + 0.011842976324260235, + 0.023539988324046135, + 0.024588273838162422, + -0.017197195440530777, + 0.08035973459482193, + -0.08173975348472595, + 0.02027570642530918, + -0.02935200370848179, + 0.06979726254940033, + 0.017542200163006783, + -0.015339474193751812, + -0.012858088128268719, + -0.03452708572149277, + 0.05079542100429535, + 0.0031100253108888865, + 0.044293392449617386, + 0.0487784668803215, + 0.02546405792236328, + 0.014569845981895924, + -0.03152819350361824, + -0.00812753289937973, + -0.005277920048683882, + 0.016294874250888824, + -0.017356429249048233, + 0.04161296784877777, + 0.0018129373202100396, + -0.0953807383775711, + -0.013302614912390709, + 0.08699445426464081, + 0.011836341582238674, + -0.011478066444396973, + 0.006236637476831675, + -0.023168444633483887, + -0.02702985145151615, + 0.03516401723027229, + -0.04861923307180405, + 0.022783629596233368, + -0.032748978585004807, + 0.0061570205725729465, + -0.08577366918325424, + 0.11539106070995331, + 0.024243269115686417, + -0.019983777776360512, + 0.021257644519209862, + -0.126006618142128, + -0.014078876934945583, + 0.02074013650417328, + -0.0013543122913688421, + -0.023659413680434227, + 0.013448578305542469, + 0.027839286252856255, + 0.004299298860132694, + -0.032165125012397766, + 0.06862954795360565, + 0.0015848688781261444, + 0.005194986239075661, + -0.04633688926696777, + -0.05384739115834236, + 0.01532620470970869, + -0.07043419033288956, + 0.013428674079477787, + 0.07000957429409027, + -0.07956356555223465, + -0.0125197172164917, + -0.02201400324702263, + 0.03903869539499283, + -0.02661849930882454, + 0.06857647001743317, + -0.026791000738739967, + 0.05440470948815346, + 0.10551859438419342, + -0.0804658904671669, + 0.03455362468957901, + -0.08274823427200317, + -0.012234424240887165, + -0.06687798351049423, + 0.003605970647186041, + 0.008074454963207245, + -0.06544487923383713, + 0.006422409322112799, + 0.011670473031699657, + -0.03834868595004082, + -0.012645777314901352, + -0.01694507524371147, + 0.07117728143930435, + -0.04312568157911301, + 0.05384739115834236, + 0.02879468724131584, + 0.0038746767677366734, + -0.014105415903031826, + -0.06236637383699417, + 0.08396901935338974, + -0.007490599527955055, + 0.03643788397312164, + 0.06634720414876938, + -0.004335789941251278, + 0.05743014067411423, + 0.032642826437950134, + 0.02546405792236328, + -0.029484698548913002, + -0.043311454355716705, + -0.04612457752227783, + -0.033518608659505844, + 0.010489492677152157, + -0.04365646094083786, + 0.033040907233953476, + 0.04580610990524292, + 0.09415995329618454, + 0.04838038235902786, + -0.031501654535532, + 0.006007739342749119, + 0.02387172356247902, + 0.013176554813981056, + 0.016785843297839165, + 0.02419019117951393, + 0.030811641365289688, + 0.008472537621855736, + -0.008797639049589634, + -0.03354514762759209, + 0.06157020479440689, + 0.006511978339403868, + -0.03327975794672966, + -0.01958569511771202, + -0.000421304750489071, + 0.040179867297410965, + -0.03174050152301788, + -0.06910724937915802, + 0.022969402372837067, + 0.054563939571380615, + -0.0462307333946228, + 0.024097304791212082, + -0.0018278654897585511, + -0.05323699861764908, + 0.002073350129649043, + 0.017157386988401413, + -0.041745662689208984, + -0.06448948383331299, + 0.09437226504087448, + 0.032748978585004807, + 0.008207148872315884, + -0.07897971570491791, + 0.015007738023996353, + -0.0749988779425621, + -0.07961664348840714, + -0.039304085075855255, + 0.0250394344329834, + 0.03463324159383774, + -0.006959821563214064, + 0.027733132243156433, + -0.04628381133079529, + -0.018948761746287346, + 0.05981864035129547, + 0.032642826437950134, + 0.09108144044876099, + 0.05002579092979431, + -0.024429040029644966, + -0.050768882036209106, + -0.038720227777957916, + -0.0029955762438476086, + -0.019054917618632317, + -0.0411352664232254, + -0.050264641642570496, + 0.029723547399044037, + 0.022743821144104004, + 0.001657021464779973, + -0.02162918820977211, + 0.03795060142874718, + 0.009023220278322697, + 0.014092146418988705, + -0.0029109835159033537, + 0.00895023811608553, + -0.015379281714558601, + -0.0059845177456736565, + 0.0764850601553917, + -0.03327975794672966, + -0.03649096190929413, + 0.08731292188167572, + 0.034500546753406525, + -0.0794043317437172, + 0.032457053661346436, + 0.011670473031699657, + -0.04689420387148857, + 0.02534463256597519, + -0.028237370774149895, + 0.053104303777217865, + -0.015419090166687965, + -0.06910724937915802, + 0.033332835882902145, + -0.030360480770468712, + -0.0442403145134449, + -0.08986065536737442, + -0.012745298445224762, + -0.05355546250939369, + 0.03455362468957901, + 0.009567267261445522, + 0.0524408295750618, + -0.002622373169288039, + 0.008698118850588799, + 0.10190930962562561, + -0.10010465979576111, + 0.04129450023174286, + -0.07117728143930435, + 0.04015332832932472, + 0.06571026891469955, + 0.0006655454053543508, + -0.015830442309379578, + -0.039304085075855255, + 0.013528195209801197, + 0.005576482508331537, + 0.005221525207161903, + -0.013043860904872417, + 0.04392185062170029, + 0.031289342790842056, + -0.012612603604793549, + 0.05342276766896248, + 0.03221820294857025, + 0.039994094520807266, + -0.03630518913269043, + -0.09373532980680466, + -0.07876740396022797, + -0.025397710502147675, + 0.01997050829231739, + -0.055837806314229965, + -0.04031256213784218, + 0.004475119058042765, + -0.05451086536049843, + -0.05620935186743736, + 0.029405081644654274, + 0.013514925725758076, + 0.04238259419798851, + 0.02956431359052658, + 0.021178027614951134, + 0.007132324390113354, + -0.03219166398048401, + -0.02574271522462368, + -0.024973087012767792, + -0.03378399834036827, + 0.0030071870423853397, + -0.06491410732269287, + -0.014118685387074947, + 0.01389310508966446, + 0.022465163841843605, + -0.03521709516644478, + -0.05058310925960541, + 0.02887430414557457, + -0.046044960618019104, + -0.036358267068862915, + -0.017741242423653603, + 0.007417617365717888, + -0.04102911055088043, + 0.07314115762710571, + 0.04729228839278221, + -0.002169553656131029, + 0.07584812492132187, + 0.01096055842936039, + -0.0753704234957695, + -0.011391814798116684, + 0.07414963841438293, + -0.09267377853393555, + 0.06947879493236542, + -0.0764850601553917, + 0.029697008430957794, + 0.10185623168945312, + -0.04681458696722984, + -0.07292884588241577, + -0.033438991755247116, + 0.01771470345556736, + -0.040763720870018005, + 0.03601326420903206, + -0.050344258546829224, + 0.026645038276910782, + 0.08444672077894211, + 0.026485804468393326, + 0.02534463256597519, + -0.00885735172778368, + -0.013919643126428127, + 0.012785105966031551, + -0.039489857852458954, + -0.02866199240088463, + -0.06539180874824524, + -0.08051896840333939, + -0.09532766044139862, + -0.017754511907696724, + 0.013574638403952122, + 0.005981200374662876, + -0.024030957370996475, + 0.026207145303487778, + 0.07919202744960785, + 0.007046073209494352, + -0.08136821538209915, + 0.038322146981954575, + 0.003473276272416115, + -0.010084775276482105, + -0.0464165061712265, + 0.017502393573522568, + 0.02123110555112362, + -0.007835605181753635, + -0.03473939746618271, + 0.0143840741366148, + 0.002906007459387183, + 0.053582001477479935, + -0.01693180575966835, + 0.05209582671523094, + 0.03540286794304848, + 0.05923478305339813, + 0.051724281162023544, + 0.007755988277494907, + -0.07032803446054459, + -0.024322886019945145, + -0.022478433325886726, + 0.010934019461274147, + 0.038428302854299545, + 0.0059546614065766335, + 0.07876740396022797, + -0.031368959695100784, + 0.053316615521907806, + -0.04431993141770363, + 0.00032074726186692715, + 0.03014816902577877, + 0.03596018627285957, + 0.009009950794279575, + 0.09055066853761673, + -0.042939912527799606, + -0.05748321861028671, + -0.00993217620998621, + -0.046920742839574814 + ] + }, + { + "id": "2cb779bd-7f48-4c76-83bb-687a4e98487a", + "productId": "3b3d7b16-d1ca-417c-8818-79ce9e14ee71", + "category": "Electronics", + "docType": "customerRating", + "userName": "james24", + "reviewDate": "2022-03-20T21:18:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "59a594e5-aa29-4a5d-9ce7-431fe5db9705", + "productId": "3b3d7b16-d1ca-417c-8818-79ce9e14ee71", + "category": "Electronics", + "docType": "customerRating", + "userName": "estewart", + "reviewDate": "2021-09-09T21:07:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "product", + "name": "Premium TV + (Steel)", + "description": "This Premium TV + (Steel) is the most popular premium cable subscription for all households. Its offering is free of charge for 10 years.\n\n$0.99 / month $0\n\nNetflix Premium TV. This premium TV and streaming service is available in the U.S., Canada, Germany, Australia, Israel, New Zealand and the USA. It has an annual, $7.95/month fee", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-04-13T19:17:12", + "price": 972.43, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-01-05T04:11:52", + "newPrice": 1013.85 + }, + { + "priceDate": "2022-12-03T04:11:52", + "newPrice": 952.79 + }, + { + "priceDate": "2024-01-24T04:11:52", + "newPrice": 972.43 + } + ], + "descriptionVector": [ + -0.05707249045372009, + 0.02216014266014099, + -0.02777250111103058, + 0.07100503146648407, + -0.031521789729595184, + -0.012393479235470295, + -0.04915732890367508, + 0.025944145396351814, + 0.011849600821733475, + 0.11192318052053452, + 0.07378228008747101, + -0.06452477723360062, + 0.00369142834097147, + -0.04348710924386978, + 0.03892778977751732, + -0.056517042219638824, + -0.009049206972122192, + -0.04080243408679962, + 0.0331418514251709, + -0.029762864112854004, + 0.023109035566449165, + -0.014707854017615318, + -0.0085979038849473, + -0.07919792085886002, + -0.022125426679849625, + 0.031475502997636795, + -0.01627005636692047, + 0.03149864450097084, + 0.0033529510255903006, + -0.038025181740522385, + -0.05984974279999733, + 0.0009127316880039871, + -0.03300299122929573, + -0.04369540140032768, + 0.009622015058994293, + -0.01838771067559719, + -0.033905595541000366, + -0.013770531862974167, + 0.08192887902259827, + 0.07406000792980194, + -0.0023404117673635483, + 0.02973972074687481, + -0.000612586154602468, + -0.004472529981285334, + 0.05003679171204567, + -0.04064042866230011, + 0.04651894047856331, + -0.027541063725948334, + -0.028744539245963097, + -0.06665400415658951, + -0.009326932020485401, + 0.0052304877899587154, + -0.03892778977751732, + 0.057859379798173904, + -0.05934057757258415, + -0.021974992007017136, + 0.0662374198436737, + 0.11377467960119247, + -0.02204442396759987, + -0.004787863697856665, + -0.013874678872525692, + -0.008453255519270897, + 0.01089492067694664, + -0.007452287711203098, + -0.05943315476179123, + 0.0029305776115506887, + -0.06808891892433167, + 0.0005283284699544311, + -0.04390369728207588, + 0.03362787142395973, + -0.04813900217413902, + -0.007868875749409199, + 0.09738890826702118, + 0.008314392529428005, + 0.016871795058250427, + 0.042723365128040314, + 0.04001554474234581, + -0.006925767753273249, + 0.05142541602253914, + 0.005482176318764687, + -0.047583553940057755, + 0.018711723387241364, + 0.01694122515618801, + -0.005725185386836529, + -0.02122282050549984, + 0.006179381627589464, + -0.039992403239011765, + -0.09488938003778458, + -0.008684692904353142, + 0.08091055601835251, + 0.04369540140032768, + 0.09299159049987793, + -0.0085979038849473, + -0.098129503428936, + 0.05512841418385506, + 0.08762224018573761, + -0.020158207044005394, + 0.021755125373601913, + -0.06822777539491653, + 0.0709124505519867, + 0.04459800943732262, + -0.06665400415658951, + 0.02575899474322796, + -0.03182265907526016, + 0.007255565840750933, + -0.038025181740522385, + 0.018734866753220558, + 0.033558439463377, + 0.038696352392435074, + -0.10942365974187851, + 0.0005898040253669024, + 0.0025834213010966778, + 0.042214203625917435, + 0.06179381534457207, + 0.022032851353287697, + 0.04394998401403427, + -0.03140607103705406, + -0.04563947767019272, + 0.01765868254005909, + 0.012729063630104065, + -0.06526537984609604, + -0.01801741123199463, + -0.06952382624149323, + -0.03665970265865326, + 0.0005934202345088124, + -0.0040356917306780815, + -0.05350835248827934, + 0.12368020415306091, + 0.05397122725844383, + -0.041080158203840256, + -0.05086996406316757, + 0.032864127308130264, + 0.0062140971422195435, + -0.015980759635567665, + -0.05008307844400406, + 0.04994421452283859, + -0.07243993878364563, + -0.0035062783863395452, + 0.015031866729259491, + 0.0048949033953249454, + -0.05040708929300308, + -0.02199813537299633, + 0.00996917113661766, + 0.03024888224899769, + -0.024393513798713684, + -0.03619682788848877, + 0.028050227090716362, + 0.02772621437907219, + 0.001197689096443355, + -0.0549432672560215, + 0.08873314410448074, + -0.04522288963198662, + -0.06003488972783089, + -0.039784107357263565, + 0.028513101860880852, + -0.021361682564020157, + -0.07165305316448212, + -0.009031848981976509, + -0.08382666856050491, + 0.08493756502866745, + -0.0018630719278007746, + -0.0268467515707016, + -0.052952904254198074, + 0.03360472619533539, + -0.014916148036718369, + 0.0406867153942585, + 0.1002587303519249, + -0.033327002078294754, + 0.003277733689174056, + 0.01159501913934946, + 0.006659614387899637, + -0.05438781529664993, + 0.05591530352830887, + -0.05984974279999733, + -0.03811775892972946, + 0.026569027453660965, + 0.047583553940057755, + -0.014383841305971146, + 0.01363166980445385, + 0.032146669924259186, + -0.004570890683680773, + 0.03196151927113533, + 0.00924014300107956, + -0.11692222952842712, + 0.00397783238440752, + 0.06105321645736694, + 0.05424895137548447, + 0.027193907648324966, + -0.030225738883018494, + -0.040038689970970154, + 0.026245014742016792, + 0.04795385152101517, + -0.03661341592669487, + -0.07021813839673996, + 0.005218916106969118, + -0.05151798948645592, + 0.07475432008504868, + 0.08475241810083389, + -0.021130245178937912, + 0.0005720846238546073, + -0.01388625055551529, + 0.011051141656935215, + 0.09488938003778458, + -0.03552565723657608, + 0.02721705101430416, + -0.024185219779610634, + 0.03108205832540989, + 0.03804832696914673, + 0.012023178860545158, + 0.12118068337440491, + -0.049064751714468, + -0.08910344541072845, + 0.06549681723117828, + 0.04466744139790535, + 0.035757094621658325, + -0.020019344985485077, + -0.023352045565843582, + -0.00538381515070796, + 0.010698199272155762, + 0.0018124449998140335, + 0.0486481636762619, + 0.006480250507593155, + -0.003225660417228937, + -0.06022004038095474, + 0.03737716004252434, + -0.05573015287518501, + 0.047375258058309555, + -0.004926726222038269, + -0.0034744555596262217, + 0.02638387680053711, + -0.04772241413593292, + -0.05281404033303261, + -0.10831275582313538, + 0.011328866705298424, + -0.026522738859057426, + -0.011762811802327633, + 0.02596728876233101, + -0.015182300470769405, + -0.03485449030995369, + 0.021778270602226257, + -0.03186894580721855, + -0.04325567185878754, + 0.004964334890246391, + -0.018248848617076874, + -0.06239555403590202, + -0.023305756971240044, + 0.06211782991886139, + -0.00013271495117805898, + -0.012046322226524353, + -0.07262509316205978, + -0.02411578968167305, + -0.0935470461845398, + 0.0045564258471131325, + 0.042422495782375336, + -0.04052470996975899, + -0.022634588181972504, + 0.017068516463041306, + -0.027355914935469627, + 0.03263268992304802, + 0.06466364115476608, + -0.044227708131074905, + 0.015992332249879837, + -0.03582652658224106, + 0.0050395517610013485, + 0.0020192922092974186, + 0.098129503428936, + -0.03837234154343605, + -0.08720565587282181, + -0.022680876776576042, + 0.06420076638460159, + -0.02680046483874321, + 0.04832415282726288, + 0.003225660417228937, + 0.029716577380895615, + 0.05049966648221016, + 0.06221040338277817, + -0.0408950075507164, + -0.07197706401348114, + -0.01652463898062706, + 0.011380939744412899, + 0.09238985180854797, + -0.07406000792980194, + -0.006555467378348112, + 0.05614674091339111, + 0.07568006962537766, + -0.03196151927113533, + -0.02386120706796646, + -0.0398535393178463, + 0.014013541862368584, + -0.04462115094065666, + -0.035085927695035934, + 0.03765488415956497, + 0.07489317655563354, + 0.04725953936576843, + 0.07568006962537766, + -0.025272976607084274, + 0.014025113545358181, + 0.03821033239364624, + 0.07600408047437668, + 0.06915353238582611, + -0.004808114375919104, + 0.02767992578446865, + -0.006150451954454184, + -0.016952797770500183, + -0.09289901703596115, + 0.041033871471881866, + -0.01394410990178585, + 0.013677957467734814, + 0.06688544154167175, + 0.00731921149417758, + 0.016999084502458572, + -0.07521719485521317, + -0.023514050990343094, + 0.04270021989941597, + -0.01822570338845253, + -0.0013278727419674397, + 0.003121513407677412, + -0.006572825368493795, + 0.0486481636762619, + -0.02562013268470764, + 0.04073300212621689, + 0.05174942687153816, + -0.06031261757016182, + -0.0063587455078959465, + -0.04364911466836929, + -0.09572255611419678, + -0.06341388076543808, + -0.0036769635044038296, + 0.026615314185619354, + 0.009147567674517632, + -0.03721515089273453, + 0.003934437874704599, + -0.006428177002817392, + 0.025805283337831497, + 0.130808487534523, + -0.004915154073387384, + 0.007961450144648552, + -0.022484155371785164, + 0.0042005907744169235, + -0.04471372812986374, + 0.06035890430212021, + 0.03254011273384094, + 0.07540234178304672, + -0.013434947468340397, + 0.01704537309706211, + -0.0014052597107365727, + -0.04094129800796509, + 0.023525623604655266, + -0.012844782322645187, + 0.040246982127428055, + 0.001482646563090384, + 0.002746874000877142, + 0.048463016748428345, + 0.0024199686013162136, + 0.07813330739736557, + 0.014696282334625721, + 0.008730980567634106, + -0.0473984032869339, + 0.0077010830864310265, + -0.0036277829203754663, + 0.025851570069789886, + 0.04300108924508095, + -0.03908979520201683, + 0.06447849422693253, + -0.10979395359754562, + -0.005994231440126896, + -0.05355463922023773, + -0.0031706939917057753, + 0.011658664792776108, + -0.023155324161052704, + 0.03837234154343605, + -0.01600390486419201, + 0.02226428873836994, + 0.06989412754774094, + -0.008366466499865055, + 0.05508212745189667, + 0.019082022830843925, + 0.055683866143226624, + -0.022634588181972504, + 0.012196756899356842, + -0.10285083204507828, + 0.013539094477891922, + -0.02199813537299633, + 0.03677542135119438, + 0.06910724192857742, + 0.01262491662055254, + -0.03267897665500641, + -0.01556417252868414, + -0.06748718023300171, + -0.03686799481511116, + -0.06035890430212021, + 0.09248243272304535, + -0.0017372277798131108, + -0.0023476441856473684, + 0.006682758219540119, + -0.016721360385417938, + -0.025226689875125885, + 0.04503773897886276, + 0.026453306898474693, + -0.031521789729595184, + 0.05332320183515549, + -0.0040559424087405205, + -0.053369492292404175, + -0.03693742677569389, + -0.01977633498609066, + -0.06517280638217926, + -0.004102230072021484, + -0.05934057757258415, + 0.01161816343665123, + -0.008135028183460236, + -0.1132192313671112, + -0.060127466917037964, + -0.048463016748428345, + 0.01564517617225647, + 0.04177447035908699, + 0.016964370384812355, + 0.008135028183460236, + -0.04140417277812958, + 0.06258070468902588, + 0.024763813242316246, + 0.05059223994612694, + 0.031892091035842896, + 0.001100774621590972, + -0.05573015287518501, + 0.02818908914923668, + -0.001419724547304213, + 0.0024026106111705303, + -0.01161816343665123, + 0.007886233739554882, + 0.02994801476597786, + 0.010657697916030884, + -0.04547747224569321, + 0.009749305434525013, + -0.007174563128501177, + 0.017427245154976845, + 0.00017167962505482137, + 0.05304547771811485, + 0.003112834645435214, + -0.03950638324022293, + -0.0002345112879993394, + -0.013504378497600555, + -0.03432218357920647, + -0.023421475663781166, + 0.034831345081329346, + 0.002560277469456196, + 0.0007500022184103727, + -0.052490029484033585, + -0.0034165962133556604, + -0.0553598515689373, + -0.02374548837542534, + -0.015865040943026543, + -0.049064751714468, + 0.011305722407996655, + 0.023838063701987267, + -0.032192956656217575, + 0.005294132977724075, + -0.02890654467046261, + -0.03031831420958042, + 0.05554500222206116, + 0.03119777701795101, + -0.025735851377248764, + 0.06989412754774094, + -0.013434947468340397, + -0.03976096585392952, + -0.07498575747013092, + -0.021419541910290718, + -0.02075994573533535, + 0.010837061330676079, + 0.01817941665649414, + 0.03635883331298828, + -0.03499335050582886, + -0.009836094453930855, + -0.0398535393178463, + -0.006520751863718033, + 0.05262888967990875, + -0.0022521764039993286, + 0.08160486817359924, + -0.022657733410596848, + -0.01616591028869152, + -0.04709753394126892, + 0.10636868327856064, + 0.0325169712305069, + 0.04642636701464653, + 0.02499525062739849, + -0.01427969429641962, + 0.007504361215978861, + 0.021361682564020157, + 0.06267327815294266, + 0.0028698251117020845, + 0.047583553940057755, + 0.006815834902226925, + -0.02890654467046261, + 0.034206464886665344, + -0.0002551236830186099, + 0.0031388711649924517, + -0.04827786609530449, + 0.052860327064991, + -0.06730202585458755, + 0.04485258832573891, + -0.05332320183515549, + -0.04216791316866875, + 0.02777250111103058, + -0.04374169185757637, + -0.0212806798517704, + -0.07484689354896545, + -0.01868858002126217, + 0.012451338581740856, + -0.001166589674539864, + 0.01355066616088152, + 0.037932608276605606, + -0.03987668454647064, + 0.11645935475826263 + ] + }, + { + "id": "a05165ea-49fe-4cf1-9e03-24550081147f", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "kevin94", + "reviewDate": "2021-07-22T13:02:18", + "stars": 4, + "verifiedUser": true + }, + { + "id": "32873689-a41b-48d2-b648-57544d6dff80", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "delgadodanielle", + "reviewDate": "2021-02-21T04:19:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ee3845e2-660e-4d0f-b462-e7563d405476", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "hsmith", + "reviewDate": "2021-05-13T08:50:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "973abca5-1e0a-44fa-8a58-f6f38b950597", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "courtney33", + "reviewDate": "2022-10-15T17:07:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7d271353-7fa8-4508-807d-c374e361634c", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "danieladams", + "reviewDate": "2021-08-01T08:54:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bad5a89c-9e56-45e9-bbd3-fe7fb9baacaa", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "alvarezjames", + "reviewDate": "2021-09-11T23:38:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "85dccfd9-7ec2-4879-b592-d42f02b07314", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth37", + "reviewDate": "2022-09-25T21:25:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4072d766-c7e7-48fc-bafe-e496cb3eb479", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "alyssarussell", + "reviewDate": "2022-04-17T03:18:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d3afa5d4-fcc4-4edb-a468-7a96613eae5b", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "joseph90", + "reviewDate": "2022-06-23T18:16:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4da2965c-8281-4f44-ad1c-92701706dd30", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "randyhammond", + "reviewDate": "2022-12-03T06:34:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d1e9ca84-b128-4659-83f3-a385fdc5b974", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonandres", + "reviewDate": "2021-01-05T04:11:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "15af2757-990c-46d8-8a01-a39971615c65", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "qwilliams", + "reviewDate": "2022-10-04T16:21:22", + "stars": 4, + "verifiedUser": true + }, + { + "id": "21a5293a-9fad-4eec-aa56-5f845cc48a4e", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "austin22", + "reviewDate": "2021-04-25T10:50:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1979fd1b-0a6b-40c7-b069-3d5db7899f39", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "isimmons", + "reviewDate": "2022-01-06T10:04:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c73cffc4-b613-4fbb-b42f-2e0b6db790d2", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "garciajames", + "reviewDate": "2021-08-08T05:52:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "19ced54d-e357-4215-9573-ec65c4104e7f", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "jasminemartin", + "reviewDate": "2021-10-09T22:40:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "59e2c2a7-0981-4116-beca-8d0b27be84a8", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "villegaspamela", + "reviewDate": "2022-10-19T18:52:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e103fabe-284f-4b45-9e1a-c370180eb006", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "tara49", + "reviewDate": "2022-04-10T14:30:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eee57e47-90b5-4022-8229-eb752b903f46", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "whall", + "reviewDate": "2022-03-21T17:00:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d0daf9fe-8243-4539-be80-bec6f9761d99", + "productId": "f67cc40e-ce49-4003-abff-3534fe22e4ae", + "category": "Media", + "docType": "customerRating", + "userName": "philiprich", + "reviewDate": "2022-03-07T13:21:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Micro (Gold)", + "description": "This Amazing Speaker Micro (Gold) is made of aluminum that provides greater internal surface protection than its titanium counterpart. The innovative design allows the speaker to be placed on a flat surface such that it allows the speaker to be inserted into a larger area and can be positioned in", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-08T10:51:38", + "price": 240.18, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-03-31T13:23:47", + "newPrice": 258.17 + }, + { + "priceDate": "2022-11-14T13:23:47", + "newPrice": 219.78 + }, + { + "priceDate": "2024-03-04T13:23:47", + "newPrice": 240.18 + } + ], + "descriptionVector": [ + -0.02374928630888462, + -0.01323236059397459, + -0.02907240204513073, + -0.053489770740270615, + -0.03127061203122139, + -0.0028501299675554037, + -0.04299439862370491, + -0.009687208570539951, + 0.011616029776632786, + 0.05732586234807968, + -0.03799454867839813, + 0.010592354461550713, + -0.0006421547150239348, + -0.058187905699014664, + -0.004636175464838743, + -0.0721961036324501, + 0.06146366894245148, + -0.06004129722714424, + -0.024611329659819603, + 0.03902899846434593, + 0.017510250210762024, + -0.11051391810178757, + 0.004434133879840374, + -0.0114974994212389, + -0.014913344755768776, + -0.04443832114338875, + 0.019514499232172966, + 0.017844291403889656, + -0.01260737981647253, + 0.008167858235538006, + 0.06521355360746384, + -0.007656020112335682, + -0.03590409457683563, + 0.015225835144519806, + -0.05267082899808884, + 0.07861832529306412, + 0.01830763928592205, + 0.0026965783908963203, + 0.028275012969970703, + -0.005851117428392172, + 0.0019395968411117792, + 0.008302552625536919, + 0.038339365273714066, + -0.01541979517787695, + 0.02499924786388874, + 0.07305815070867538, + 0.03273608535528183, + 0.02592594549059868, + -0.00900296214967966, + 0.008351041935384274, + 0.006034301593899727, + 0.02424496039748192, + -0.05879133567214012, + 0.03254212439060211, + 0.023253612220287323, + -0.024137206375598907, + 0.01218713354319334, + 0.14930585026741028, + 0.036981645971536636, + -0.016249511390924454, + 0.05094674602150917, + -0.03471878543496132, + -0.03648597374558449, + 0.052024297416210175, + -0.036766137927770615, + 0.008905982598662376, + -0.01107725314795971, + -0.0024056388065218925, + 0.004127031192183495, + 0.12077223509550095, + 0.05577418580651283, + -0.010430720634758472, + -0.012887543998658657, + -0.00978418905287981, + 0.018997274339199066, + -0.019611479714512825, + 0.033210210502147675, + 0.019288213923573494, + 0.052153605967760086, + -0.031033549457788467, + 0.03502050042152405, + 0.05366218090057373, + -0.04430901259183884, + -0.04848992079496384, + 0.07542876899242401, + 0.01694992184638977, + 0.06870482861995697, + -0.05719655752182007, + -0.03180938959121704, + 0.03777903690934181, + -0.04853302240371704, + 0.01543057058006525, + 0.0250854529440403, + 0.026119904592633247, + 0.03956777602434158, + 0.0122948894277215, + -0.0177796371281147, + 0.04086083918809891, + -0.0638342872262001, + -0.02187434211373329, + 0.03392139449715614, + -0.03883504122495651, + -0.0543949156999588, + 0.03422310948371887, + -0.00998892355710268, + 0.07064443081617355, + 0.016906820237636566, + -0.014708609320223331, + 0.03336106613278389, + -0.08236821740865707, + 0.027477622032165527, + -0.008184021338820457, + -0.004070459399372339, + 0.050558824092149734, + 0.036335114389657974, + -0.002000209176912904, + 0.0025564965326339006, + -0.01224101148545742, + -0.05995509400963783, + -0.020150257274508476, + -0.028619829565286636, + -0.03411535546183586, + -0.006373730953782797, + 0.0193636417388916, + -0.01661588065326214, + -0.009482474066317081, + -0.010613905265927315, + -0.0035128253512084484, + -0.04525725916028023, + 0.04905024915933609, + -0.06883414089679718, + 0.023555327206850052, + 0.05206739902496338, + 0.03588254377245903, + -0.01892184466123581, + 0.0036636830773204565, + 0.046162404119968414, + 0.02853362448513508, + 0.010662395507097244, + 0.06982548534870148, + 0.007909244857728481, + 0.03316710516810417, + 0.024740636348724365, + 0.028361216187477112, + -0.035925645381212234, + -0.04870543256402016, + -0.053705282509326935, + -0.024309614673256874, + -0.045127954334020615, + 0.02050584927201271, + -0.0035774786956608295, + -0.09361787885427475, + 0.009143044240772724, + -0.07288573682308197, + 0.0522829107940197, + 0.03441707044839859, + -0.09111794829368591, + -0.020947646349668503, + 0.01893262006342411, + 0.05723965913057327, + 0.04646411910653114, + -0.07478223741054535, + -0.06711005419492722, + 0.0647825375199318, + -0.0012196562020108104, + -0.014482323080301285, + 0.07491154223680496, + 0.03909365087747574, + -0.12491004168987274, + 0.07223920524120331, + 0.025645781308412552, + 0.006869405508041382, + -0.021831240504980087, + -0.045860689133405685, + -0.01553832646459341, + -0.022456221282482147, + 0.022951897233724594, + -0.042197007685899734, + -0.005406626500189304, + -0.06241191551089287, + 0.03180938959121704, + 0.0543949156999588, + -0.03157232701778412, + 0.0250854529440403, + -0.05836031585931778, + 0.10120385140180588, + 0.034869641065597534, + 0.030688732862472534, + 0.008453410118818283, + 0.03159387782216072, + 0.03849022090435028, + -0.022197607904672623, + -0.011109580285847187, + -0.023447571322321892, + 0.020344216376543045, + -0.06547217071056366, + -0.016680533066391945, + 0.0008741655619814992, + -0.046162404119968414, + -0.014493098482489586, + 0.00749977445229888, + 0.0512484610080719, + 0.049610577523708344, + -0.017758086323738098, + -0.07435121387243271, + -0.0910317450761795, + 0.01716543175280094, + 0.01213325560092926, + -0.004848991986364126, + 0.024611329659819603, + -0.023469122126698494, + -0.059480972588062286, + -0.04379178583621979, + 0.03538686782121658, + 0.08853182196617126, + 0.09542816877365112, + -0.012887543998658657, + -0.004789726808667183, + -0.04245562106370926, + 0.01797359809279442, + -0.028081052005290985, + -0.0013610852183774114, + 0.07861832529306412, + 0.030473222956061363, + -0.029955996200442314, + -0.027240561321377754, + 0.03639976680278778, + -0.016087878495454788, + 0.05034331604838371, + 0.01609865389764309, + -0.05784308910369873, + 0.0658600926399231, + -0.010500761680305004, + 0.014406894333660603, + -0.02562423050403595, + -0.012693583965301514, + 0.014493098482489586, + -0.0313783660531044, + -0.03096889704465866, + 0.023081202059984207, + -0.006605404894798994, + 0.013803464360535145, + -0.0909455418586731, + 0.034503273665905, + -0.048274412751197815, + -0.016669757664203644, + 0.07818730175495148, + -0.005336585454642773, + -0.08271303027868271, + 0.02603369951248169, + -0.08835941553115845, + -0.005705647636204958, + -0.06646352261304855, + 0.03894279524683952, + -0.007747611962258816, + 0.05267082899808884, + 0.11430691182613373, + -0.08090274035930634, + 0.0214325450360775, + -0.0522829107940197, + 0.042735785245895386, + -0.07068753242492676, + 0.024589778855443, + -0.006217485759407282, + -0.08254062384366989, + -0.005102217197418213, + -8.043771231314167e-05, + -0.027671582996845245, + 0.03777903690934181, + 0.038964346051216125, + -0.05374838411808014, + -0.033210210502147675, + 0.02948187291622162, + 0.0005626851343549788, + -0.042197007685899734, + 0.08560087531805038, + -0.07085993885993958, + 0.0501709058880806, + 0.018986498937010765, + -0.05155017599463463, + 0.1130138412117958, + -0.04172288253903389, + 0.09585918486118317, + -0.01703612506389618, + 0.06857552379369736, + 0.0013846566434949636, + -0.018587803468108177, + 0.049308862537145615, + -0.08452332019805908, + -0.05581728741526604, + -0.026184557005763054, + -0.01327546313405037, + -0.021594177931547165, + 0.11163457483053207, + 0.014169832691550255, + -0.029244810342788696, + 0.025688882917165756, + -0.011529825627803802, + -0.03502050042152405, + 0.09163517504930496, + 0.05426561087369919, + 0.020570501685142517, + -0.015193508937954903, + -0.06163607910275459, + -0.01860935427248478, + 0.07417880743741989, + -0.0460330992937088, + 0.0731443539261818, + -0.03441707044839859, + -0.03650752454996109, + 0.0940488949418068, + 0.00029178138356655836, + -0.0014641262823715806, + -0.012693583965301514, + 0.0376497320830822, + -0.04715375602245331, + -0.041895292699337006, + -0.015937021002173424, + 0.035516172647476196, + 0.05387769266963005, + -0.01113113109022379, + -0.019298989325761795, + -0.0596102774143219, + 0.025494923815131187, + -0.013307789340615273, + 0.03672303259372711, + 0.050989847630262375, + -0.07810109853744507, + 0.052239809185266495, + 0.010166720487177372, + 0.012057826854288578, + -0.06499804556369781, + 0.01902960054576397, + -0.04131341353058815, + -0.02437426708638668, + -0.05008470267057419, + 0.0266586821526289, + -0.028468972072005272, + 0.009563290514051914, + 0.050257109105587006, + -0.009116105735301971, + -0.06978238373994827, + 0.006190546788275242, + -0.05659312754869461, + 0.00569487176835537, + -0.10154867172241211, + 0.01621718518435955, + -0.029331015422940254, + 0.0016176776262000203, + -0.06202399730682373, + 0.0008276960579678416, + -0.03534376621246338, + 0.05413630232214928, + -0.013092278502881527, + 0.033210210502147675, + 0.017639556899666786, + -0.00893830880522728, + -0.06767038255929947, + 0.051722582429647446, + 0.027951745316386223, + 0.017219310626387596, + -0.03200334683060646, + 0.06844621896743774, + -0.003324253484606743, + -0.010673170909285545, + 0.08504054695367813, + -0.04239096865057945, + -0.016497349366545677, + -0.02478373795747757, + 0.03075338527560234, + -0.02310275472700596, + -0.0193528663367033, + 0.03228351101279259, + -0.00688018137589097, + -0.07460982352495193, + 0.020344216376543045, + 0.06215330585837364, + -0.015570652671158314, + -0.006540751550346613, + 0.04991229251027107, + 0.007365080527961254, + 0.017208535224199295, + 0.05952407419681549, + -0.014148281887173653, + 0.08042861521244049, + -0.0024500880390405655, + -0.005024094600230455, + 0.00941243302077055, + 0.049826089292764664, + 0.02678798884153366, + -0.033619679510593414, + -0.049438171088695526, + 0.010285250842571259, + 0.006529976148158312, + 0.04844681918621063, + -0.006179771386086941, + -0.02039809338748455, + 0.04624861106276512, + -0.0024500880390405655, + 0.00801161304116249, + 0.057584475725889206, + 0.08835941553115845, + -0.011152681894600391, + 0.022714834660291672, + 0.0009933699620887637, + -0.07404949516057968, + 0.008383369073271751, + 0.05560177564620972, + -0.04573138430714607, + -0.08094584196805954, + 0.06025680899620056, + -0.025667332112789154, + 0.014977998100221157, + -0.05870513245463371, + 0.018566252663731575, + 0.07676493376493454, + 0.03984794020652771, + 0.04269268363714218, + 0.07982518523931503, + -0.030818039551377296, + 0.04530036449432373, + -0.02918015792965889, + -0.03325331211090088, + -0.006303689908236265, + -0.03323176130652428, + 0.01077553816139698, + 0.0564638189971447, + -0.054869040846824646, + -7.677570829400793e-05, + -0.08611810207366943, + -0.039373815059661865, + -0.0460330992937088, + -0.018135230988264084, + 0.019999399781227112, + -0.0752563625574112, + 0.0055278511717915535, + 0.01182076521217823, + -0.0009354514186270535, + -0.05271393433213234, + -0.0012492889072746038, + -0.013070727698504925, + -0.050558824092149734, + 0.03745577111840248, + 0.08710945397615433, + -0.09491094201803207, + -0.098359115421772, + -0.01989164389669895, + -0.04818820580840111, + 0.08297164738178253, + -0.08426471054553986, + -0.021895892918109894, + 0.03275763615965843, + -0.0355592742562294, + 0.038339365273714066, + 0.00260094553232193, + -0.0004347256326582283, + 0.005829566158354282, + 0.08357507735490799, + -0.054653529077768326, + 0.06538596749305725, + -0.06900654733181, + 0.0806010290980339, + -0.02132479101419449, + 0.0008411654271185398, + 0.04547277092933655, + 0.003642131807282567, + -0.02197132259607315, + -0.0172408614307642, + -0.0070956917479634285, + 0.008124755695462227, + 0.04236941784620285, + -0.03116285614669323, + -0.025451820343732834, + 0.006777813658118248, + -0.0439426451921463, + -0.09042831510305405, + -0.02226226218044758, + -0.066980741918087, + 0.025904394686222076, + -0.011723785661160946, + -0.014191383495926857, + 0.059049949049949646, + -0.06935136765241623, + 0.04517105594277382, + 0.0151719581335783, + -0.04474003612995148, + -0.01045227237045765, + 0.02175581082701683, + -0.012801339849829674, + 0.0438995435833931, + 0.04887784272432327, + 0.08198029547929764, + 0.026400068774819374, + -0.010285250842571259, + -0.02030111476778984, + -0.01894339546561241, + -0.002109311521053314, + 0.024934595450758934, + 0.009918882511556149, + 0.0753425657749176, + 0.00574874971061945, + -0.03545152023434639, + -0.06887724250555038, + 0.037606626749038696, + 0.016066327691078186, + 0.007176508661359549, + -0.0501709058880806, + 0.027046600356698036, + -0.022822590544819832, + 0.020031725987792015, + -0.008970635943114758, + 0.02980513870716095 + ] + }, + { + "id": "0374d061-bc0e-4d7c-8511-0f0b2bd39e1e", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "jeremyboyd", + "reviewDate": "2021-11-05T03:54:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a5fafe00-397e-461f-bedf-266a1d01f048", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "jordankennedy", + "reviewDate": "2022-05-13T16:06:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "45b94d38-bf41-4584-ab5b-240de726dcf3", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "rnorris", + "reviewDate": "2021-04-10T02:08:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "27b1aba3-4818-47c1-b11d-1cdeccf67fc3", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "lisa91", + "reviewDate": "2021-11-08T03:25:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3881201c-8306-44a5-8260-0b7ab196e7e1", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "pamela44", + "reviewDate": "2022-08-16T15:51:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "226187f0-a4ab-4ecc-ac73-e100170f23b5", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "bridget66", + "reviewDate": "2021-10-26T17:58:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5a1d9296-c3cd-4321-b5fc-f1b5d736ad31", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "andrewmoran", + "reviewDate": "2022-11-14T17:35:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a0a002e9-abd5-46b9-9772-a0302585d652", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "meadowsalyssa", + "reviewDate": "2022-04-17T01:01:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bca25272-3610-4b21-81b7-6682026f2078", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "xburgess", + "reviewDate": "2021-11-30T07:05:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9d32ad8f-5de0-44c0-b23b-38f79a16907f", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "jacob65", + "reviewDate": "2022-10-13T11:50:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "06ba7a3e-8863-4846-a3f6-e3ca7f28093c", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "griffithjulie", + "reviewDate": "2022-01-11T20:44:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b6ce7a6b-31bf-4339-929b-bf4116e42d12", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "ajohnson", + "reviewDate": "2022-08-22T23:04:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ce9b42d2-4566-4bb8-9615-2450b75171b8", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "thomasweiss", + "reviewDate": "2022-03-02T21:11:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4f1e7dfb-806f-4248-bb91-be9e64da0269", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "gordonoconnell", + "reviewDate": "2021-11-18T21:52:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "68bfb223-f57e-4282-a578-c858a7a61e35", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "otorres", + "reviewDate": "2021-03-31T13:23:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8695494b-687c-448c-8739-5da0ea80f9f6", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "lindaweber", + "reviewDate": "2022-09-21T17:13:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "63d50bd1-b3a5-4b25-ac3f-2bd979a5d731", + "productId": "fdd09a81-1a6b-48b8-9c04-f35a44c3479a", + "category": "Media", + "docType": "customerRating", + "userName": "eallen", + "reviewDate": "2021-07-09T02:18:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Mini (Red)", + "description": "This Awesome Speaker Mini (Red) is a great speaker that's ideal for meeting some of the most common problems with headphones and also works well for getting around town in your car. It sports a 5.1″ driver that makes for some pretty great sound, as well as a 1.5″ output", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-06-19T22:22:56", + "price": 1041.6, + "stock": 75, + "priceHistory": [ + { + "priceDate": "2021-02-21T19:49:10", + "newPrice": 1066.47 + }, + { + "priceDate": "2024-01-21T19:49:10", + "newPrice": 1041.6 + } + ], + "descriptionVector": [ + -0.031194571405649185, + -0.0022297753021121025, + -0.03116910718381405, + -0.027985988184809685, + -0.07089444249868393, + 0.0011873035691678524, + 0.010351505130529404, + 0.04301031306385994, + -0.005357190500944853, + 0.049274690449237823, + -0.07013048976659775, + -0.05230502039194107, + 0.030074113979935646, + 0.006149786990135908, + -0.008288843557238579, + 0.0013989810831844807, + -0.012255010195076466, + -0.03768813610076904, + -0.007849573157727718, + 0.03025236912071705, + 0.05230502039194107, + -0.09045152366161346, + -0.0535273402929306, + -0.005417669657617807, + -0.05368012934923172, + 0.05121002718806267, + -0.026661809533834457, + 0.06778771430253983, + -0.04130415990948677, + -0.007894136942923069, + 0.03470873460173607, + -0.010860804468393326, + -0.034988850355148315, + 0.01850029081106186, + -0.01883133500814438, + 0.012872535735368729, + -0.023898862302303314, + -0.020817602053284645, + -0.04912190139293671, + 0.01345822960138321, + 0.015813738107681274, + 0.03651674836874008, + 0.020830335095524788, + -0.06060659885406494, + 0.018322035670280457, + 0.0485871359705925, + -0.05530988797545433, + 0.02946295589208603, + -0.012032192200422287, + 0.01754535548388958, + -0.022536486387252808, + -0.0010026827221736312, + -0.05322175845503807, + 0.005357190500944853, + 0.015699146315455437, + -0.005468599498271942, + -0.026407159864902496, + 0.0929470956325531, + -0.010504295118153095, + -0.07023235410451889, + 0.03791731968522072, + -0.07654765993356705, + -0.023682409897446632, + -0.040285561233758926, + -0.020728474482893944, + 0.023975256830453873, + -0.030074113979935646, + 0.04484378919005394, + 0.024522753432393074, + 0.04407984018325806, + 0.008467097766697407, + 0.00911008846014738, + -0.029539350420236588, + 0.03567640483379364, + 0.02742575854063034, + -0.06172705441713333, + -0.0062452806159853935, + 0.05918055772781372, + -0.014298573136329651, + -0.032365959137678146, + 0.03542175516486168, + 0.00927561055868864, + 0.01808011904358864, + -0.06661632657051086, + -0.0042908452451229095, + -0.06335680931806564, + 0.01308898814022541, + -0.11387928575277328, + 0.028495287522673607, + 0.055208027362823486, + -0.03147468715906143, + 0.053985707461833954, + 0.049987711012363434, + 0.06641260534524918, + 0.08581690490245819, + 0.00466645322740078, + -0.029361095279455185, + 0.05368012934923172, + -0.10491561889648438, + -0.012070389464497566, + 0.0535273402929306, + -0.042984846979379654, + -0.035981982946395874, + -0.05327269062399864, + 0.04158427566289902, + 0.06539400666952133, + 0.01963348127901554, + 0.04522576183080673, + 0.03799371421337128, + -0.10216540843248367, + 0.06880631297826767, + 0.023937059566378593, + -0.0014212628593668342, + -0.03860487416386604, + 0.02601245418190956, + 0.01268791500478983, + 0.026789134368300438, + -0.04466553404927254, + -0.05164293199777603, + -0.009905868209898472, + 0.018704010173678398, + -0.006484014447778463, + 0.023975256830453873, + 0.02262561395764351, + -0.005191667936742306, + -0.05197397619485855, + -0.021848933771252632, + 0.10282749682664871, + 0.006627255119383335, + -0.06850073486566544, + -0.018283838406205177, + 0.09849845618009567, + 0.009632119908928871, + 0.037026047706604004, + -0.01319084782153368, + 0.0030287383124232292, + 0.022230906412005424, + 0.04097311571240425, + 0.021135913208127022, + -0.01587740145623684, + 0.03870673477649689, + 0.03618570417165756, + 0.019951794296503067, + 0.042322758585214615, + -0.0348360612988472, + 0.0030685272067785263, + -0.06162519380450249, + 0.006620888598263264, + -0.04056567698717117, + 0.046066105365753174, + -0.03478512912988663, + -0.0421699695289135, + 0.011892135255038738, + -0.05164293199777603, + 0.016870534047484398, + 0.0660051703453064, + -0.11561090499162674, + 0.019035054370760918, + 0.021097715944051743, + 0.06096310541033745, + -0.02058841846883297, + -0.023567818105220795, + 0.013203579932451248, + -0.0007376879802905023, + -0.03496338427066803, + 0.012484194710850716, + 0.02559228241443634, + 0.05826381966471672, + -0.09814194589853287, + 0.024026187136769295, + 0.014909732155501842, + 0.04848527908325195, + -0.03122003749012947, + -0.031194571405649185, + 0.015202579088509083, + -0.020932193845510483, + 0.08571504801511765, + 0.018436629325151443, + -0.050904449075460434, + -0.04066753759980202, + -0.010224180296063423, + 0.0672784149646759, + 0.007919601164758205, + 0.04420716315507889, + -0.03272246941924095, + 0.04960573464632034, + 0.047110170125961304, + -0.0540875680744648, + -0.007104722782969475, + 0.023453224450349808, + -0.016641348600387573, + -0.011535624973475933, + -0.045072972774505615, + -0.0003348244063090533, + -0.02388612926006317, + -0.04196624830365181, + 0.0065158456563949585, + 0.011026326566934586, + 0.008244279772043228, + 0.0024191709235310555, + -0.04214450344443321, + 0.07522348314523697, + 0.039114173501729965, + 0.035650938749313354, + -0.040361955761909485, + -0.055208027362823486, + 0.02388612926006317, + 0.1191760003566742, + 0.05480058863759041, + -0.024993855506181717, + -0.00428129592910409, + -0.052865251898765564, + -0.07318628579378128, + 0.034326761960983276, + 0.08698829263448715, + 0.015788273885846138, + 0.03638942167162895, + 0.02775680273771286, + -0.02117411233484745, + -0.0272220391780138, + 0.04917282983660698, + -0.011300074867904186, + 0.08698829263448715, + 0.008288843557238579, + -0.12243551015853882, + -0.05281431972980499, + 0.036363959312438965, + -0.022994855418801308, + 0.06656539440155029, + -0.006589057389646769, + -0.07619114965200424, + -0.00864535290747881, + -0.00911008846014738, + 0.0004153971094638109, + -0.032442353665828705, + 0.03239142522215843, + 0.016705011948943138, + -0.03083806298673153, + -0.04084578901529312, + 0.05301804095506668, + -0.03644035384058952, + 0.022612880915403366, + -0.09279429912567139, + -0.04211903735995293, + 0.04843434691429138, + 0.028979120776057243, + 0.005003863945603371, + 0.0188822653144598, + -0.08826153725385666, + 0.03017597459256649, + -0.11988901346921921, + 0.015317171812057495, + 0.03547268360853195, + 0.020015455782413483, + -0.058620329946279526, + 0.010173249989748001, + 0.11581462621688843, + -0.07563091814517975, + 0.010281476192176342, + -0.03929242864251137, + 0.021950792521238327, + -0.012369602918624878, + -0.03455594554543495, + 0.029030051082372665, + -0.04548041149973869, + -0.0515156090259552, + 0.061166826635599136, + 0.03822290152311325, + 0.06335680931806564, + 0.029361095279455185, + 0.010867170058190823, + -0.021912595257163048, + 0.029055515304207802, + 0.008950931951403618, + -0.026610879227519035, + 0.00844163354486227, + -0.05235595256090164, + 0.006506296340376139, + -0.02663634531199932, + 0.041609738022089005, + 0.11958343535661697, + 0.049783989787101746, + 0.07471418380737305, + -0.012286841869354248, + -0.05271245911717415, + -0.023898862302303314, + 0.0281387772411108, + -0.02137783169746399, + -0.04759400337934494, + -0.010746211744844913, + -0.0044913818128407, + 0.004023462999612093, + 0.004090308677405119, + 0.05821289122104645, + 0.035192571580410004, + 0.08072391152381897, + -0.009205581620335579, + -0.08474737405776978, + 0.024077117443084717, + 0.037280697375535965, + -0.044869255274534225, + 0.050700727850198746, + -0.027145644649863243, + -0.08596969395875931, + -0.00988040305674076, + 0.03572733327746391, + -0.1035914421081543, + 0.13445496559143066, + -0.07323721796274185, + -0.018271107226610184, + 0.08444179594516754, + -0.036287564784288406, + -0.05525895580649376, + -0.06264379620552063, + 0.06030101701617241, + -0.037535347044467926, + -0.02100859023630619, + -0.042526476085186005, + 0.034072112292051315, + 0.019429761916399002, + -0.017354367300868034, + -0.06330588459968567, + -0.045989710837602615, + 0.0460151769220829, + -0.04980945587158203, + 0.005697784014046192, + 0.02650902047753334, + -0.024790136143565178, + 0.04359600692987442, + 0.04362146928906441, + -0.008556225337088108, + -0.04973306134343147, + 0.06040287762880325, + -0.04405437409877777, + 0.0348360612988472, + -0.05327269062399864, + -0.04705924168229103, + -0.012267743237316608, + 0.03817196935415268, + 0.021938059478998184, + 0.030787132680416107, + -0.059282418340444565, + -0.00043210849980823696, + 0.014667815528810024, + -0.02366967685520649, + -0.12304667383432388, + -0.005611839704215527, + 0.024993855506181717, + 0.03272246941924095, + -0.047619469463825226, + 0.0013774950057268143, + -0.021275971084833145, + 0.007225681561976671, + -0.008798142895102501, + 0.014094853773713112, + -0.0252994354814291, + -0.04056567698717117, + -0.04031102731823921, + 0.0531708300113678, + -0.004478649236261845, + 0.016819603741168976, + -0.00411577383056283, + -0.004329042509198189, + -0.0017475326312705874, + 0.01300622709095478, + 0.032111309468746185, + -0.04339228570461273, + 0.02438269555568695, + -0.03150015324354172, + 0.01004592515528202, + -0.01587740145623684, + -0.014425897970795631, + -0.0687553808093071, + 0.04479286074638367, + 0.0038897721096873283, + 0.01364921685308218, + 0.040692999958992004, + -0.08683550357818604, + -0.014973394572734833, + 0.06193077564239502, + 0.01675594225525856, + -0.02471373975276947, + -0.0007814558339305222, + 0.014298573136329651, + 0.07476511597633362, + 0.02938655950129032, + -0.04071846604347229, + 0.012738844379782677, + 0.01325451023876667, + -0.011739345267415047, + -0.050191428512334824, + -0.08551132678985596, + -0.02491746097803116, + 0.057194292545318604, + -0.002809103112667799, + 0.006627255119383335, + -0.03840115666389465, + 0.04135508835315704, + -0.028317032381892204, + -0.03343548998236656, + -0.043825190514326096, + 0.06799143552780151, + 0.049274690449237823, + -0.027985988184809685, + -0.08235367387533188, + -0.055208027362823486, + -0.07670044898986816, + 0.04000544548034668, + -0.045123904943466187, + -0.0071747517213225365, + 0.05235595256090164, + 0.010606154799461365, + -0.059027768671512604, + -0.0026674543041735888, + -0.0029459772631525993, + 0.033104442059993744, + 0.05418942868709564, + -0.0174180306494236, + 0.02788412757217884, + -0.02100859023630619, + 0.011089988984167576, + -0.019136914983391762, + 0.005468599498271942, + -0.04285752400755882, + -0.07440860569477081, + 0.005872855428606272, + 0.0478486530482769, + -0.016641348600387573, + -0.010396068915724754, + -0.09050245583057404, + -0.014158516190946102, + -0.05189758166670799, + -0.01908598467707634, + 0.0072893439792096615, + -0.02304578572511673, + 0.018691278994083405, + -0.062083564698696136, + 0.025515886023640633, + -0.03272246941924095, + -0.0049974978901445866, + -0.06834794580936432, + -0.0017920963000506163, + -0.02350415475666523, + 0.10970303416252136, + -0.15696600079536438, + -0.07456139475107193, + 0.04229729250073433, + 0.005535445176064968, + 0.04397797957062721, + 0.00956209097057581, + -0.052865251898765564, + 0.010784409008920193, + -0.061115894466638565, + 0.03399571776390076, + 0.026152510195970535, + -0.028266102075576782, + -0.0062707457691431046, + 0.11510160565376282, + -0.10990675538778305, + 0.04975852370262146, + -0.006589057389646769, + 0.0275021530687809, + -0.011331905610859394, + 0.04629529267549515, + -0.017978260293602943, + 0.012885267846286297, + -0.014222178608179092, + 0.005936517845839262, + -0.042984846979379654, + 0.02233276702463627, + -0.01371287927031517, + 0.00032428032136522233, + 0.00906552467495203, + 0.01730343885719776, + -0.04329042509198189, + -0.03206038102507591, + 0.008467097766697407, + -0.03404664620757103, + 0.04660087078809738, + 0.03343548998236656, + -0.020703010261058807, + 0.023351365700364113, + 0.0061784349381923676, + 0.005774179007858038, + 0.04639714956283569, + -0.040743932127952576, + 0.00241121300496161, + 0.028597146272659302, + 0.020155513659119606, + 0.012866169214248657, + 0.05851846933364868, + 0.0650884285569191, + 0.003835659008473158, + -0.036287564784288406, + -0.028367962688207626, + -0.050700727850198746, + 0.027400294318795204, + -0.05546267703175545, + -0.060250088572502136, + 0.07853392511606216, + 0.0727788433432579, + 0.02088126540184021, + 0.016361234709620476, + 0.012140418402850628, + -0.02546495757997036, + -0.01983720064163208, + -0.01423491071909666, + 0.012420532293617725, + -0.04764493554830551, + -0.016946928575634956, + 0.015457228757441044, + 0.0487653911113739 + ] + }, + { + "id": "97834de6-349a-4c4a-a6e2-57795c2ec401", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "rubiocarl", + "reviewDate": "2021-02-21T19:49:10", + "stars": 5, + "verifiedUser": false + }, + { + "id": "30296bcd-99b3-4221-95a0-fe6a00d94fe9", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "michaelturner", + "reviewDate": "2021-12-15T07:48:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f3b73d70-38a6-401a-a02c-2a855c4e8ed3", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "whitejames", + "reviewDate": "2021-03-22T12:48:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ed68ad49-b36f-4488-b0e5-2ed8faaacb51", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "ryan35", + "reviewDate": "2021-12-28T05:39:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "41d8bf2d-bfe2-4ba1-92b3-a73673dcaca4", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "oconnorjohn", + "reviewDate": "2021-06-17T00:22:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4c719d51-ae8a-410d-8c8b-5845809cac32", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "ariasann", + "reviewDate": "2022-06-10T14:25:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "92b3e1a3-5bf7-467a-ba5e-0ab33e0099ae", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "ashley48", + "reviewDate": "2022-10-15T00:43:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d66ac641-f935-4fc2-b031-16c85c8540a8", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "normancollins", + "reviewDate": "2021-05-10T23:56:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "17da93f4-7a99-449b-9acc-9cd7fb3ab878", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "laura40", + "reviewDate": "2021-11-26T10:54:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8a069262-7f61-4f28-8111-f8ff0d17995a", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "ricardo78", + "reviewDate": "2021-08-16T13:34:43", + "stars": 5, + "verifiedUser": false + }, + { + "id": "41f14739-0cf4-4f9d-af83-964e500ae0c2", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "travis88", + "reviewDate": "2022-03-13T22:18:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5d859833-7b2e-4800-a6dd-ac087093b919", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "stephendunn", + "reviewDate": "2021-05-18T08:27:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "457ed4ca-e2e1-4774-90da-fca165e608aa", + "productId": "ea0846ee-ec59-44ea-9e83-b4aa65361f30", + "category": "Media", + "docType": "customerRating", + "userName": "brianvilla", + "reviewDate": "2021-06-13T11:14:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Micro (Steel)", + "description": "This Premium Keyboard Micro (Steel) is a key-less switch for use with any modern keyboard without any cables. With its built-in wireless connection, your keyboard will connect to anything from wireless devices to a laptop, laptop case or any keyboard system you own. With this adapter-compatible keyboard, you'll get the comfort of a keyboard that can easily connect to computer, phone, etc. It's designed for use on all modern keyboards. It doesn't cost money, has great features, and", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-06-27T00:37:29", + "price": 107.82, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-11-13T13:26:40", + "newPrice": 117.29 + }, + { + "priceDate": "2023-05-23T13:26:40", + "newPrice": 107.82 + } + ], + "descriptionVector": [ + -0.018795764073729515, + 0.03308054432272911, + -0.0336444191634655, + 0.016300104558467865, + -0.023223210126161575, + 0.04016028344631195, + -0.006061634048819542, + -0.002840248867869377, + 0.021124349907040596, + 0.04348086938261986, + -0.01697883941233158, + -0.03638024628162384, + 0.06841658055782318, + -0.0695025622844696, + 0.02270110696554184, + -0.02679440565407276, + 0.0020858077332377434, + -0.04360617324709892, + -0.008693041279911995, + -0.01569446362555027, + 0.0072885798290371895, + -0.078942209482193, + -0.05835040658712387, + -0.07806507498025894, + -0.005338519345968962, + -0.014921748079359531, + -0.00869826227426529, + -0.0021497656125575304, + -0.05596960708498955, + 0.027734193950891495, + 0.005764034576714039, + -0.056136682629585266, + -0.08955137431621552, + 0.03740357235074043, + 0.01119392178952694, + -0.11394409835338593, + -0.031911030411720276, + -0.058726321905851364, + 0.017772439867258072, + 0.020341193303465843, + -0.0110686169937253, + 0.014305665157735348, + 0.009549292735755444, + -0.015475179068744183, + -0.016759555786848068, + 0.10032761096954346, + -0.003907952457666397, + 0.0317021906375885, + -0.025708429515361786, + 0.019192563369870186, + 0.08169892430305481, + 0.048660144209861755, + -0.06068943440914154, + 0.027546236291527748, + 0.03145157918334007, + 0.011225247755646706, + 0.07835745066404343, + 0.07668671756982803, + 0.07221750169992447, + -0.0759766548871994, + 0.00028242592816241086, + -0.02737916260957718, + -0.0019448394887149334, + -0.06474096328020096, + -0.06532572209835052, + 0.006113844458013773, + -0.0024016809184104204, + 0.004915614612400532, + 0.047866545617580414, + 0.009089840576052666, + -0.0928928405046463, + -0.03090859018266201, + -0.019276101142168045, + -0.01576755754649639, + 0.0262514166533947, + -0.001839113305322826, + 0.030532674863934517, + 0.05789095535874367, + 0.10275017470121384, + -0.025144556537270546, + 0.016310546547174454, + 0.032412249594926834, + -0.08483155071735382, + -0.026042575016617775, + -0.019370079040527344, + 0.040452662855386734, + 0.02850690856575966, + -0.0438150130212307, + -0.01592418923974037, + 0.11477946490049362, + -0.04402385652065277, + 0.02526986040174961, + -0.014775559306144714, + -0.0008223147015087306, + 0.01899416372179985, + -0.05822509899735451, + -0.07179982215166092, + 0.02278464287519455, + -0.057849183678627014, + -0.030929474160075188, + 0.04937020689249039, + -0.03099212609231472, + -0.034333594143390656, + 0.029676422476768494, + 0.01666557788848877, + 0.03381149098277092, + 0.0682077407836914, + 0.06520041823387146, + 0.013480739668011665, + -0.09648492187261581, + -0.024288304150104523, + -0.002610522788017988, + -0.011256574653089046, + 0.033519111573696136, + 0.047699473798274994, + -0.01946405880153179, + -0.03807186335325241, + -0.013198803178966045, + 0.03301789239048958, + -0.012259014882147312, + 0.04590343311429024, + 0.03166041895747185, + 0.02842337265610695, + -0.004341299645602703, + -0.029321392998099327, + -0.02053959295153618, + -0.0512080155313015, + 0.008186599239706993, + 0.008191820234060287, + -0.01525589544326067, + -0.10425383597612381, + 0.02334851585328579, + 0.01658204011619091, + 0.030804168432950974, + -0.015976399183273315, + 0.0455692857503891, + -0.04306318238377571, + 0.07710440456867218, + -0.03136804327368736, + 0.03172307461500168, + 0.015203684568405151, + 0.0009038934949785471, + -0.023766199126839638, + 0.03331027179956436, + -0.06240193545818329, + -0.01611214689910412, + -0.029112549498677254, + 0.0503726489841938, + 0.02075887657701969, + -0.002887238282710314, + -0.022847294807434082, + -0.05434064194560051, + -0.07046323269605637, + -0.04594520106911659, + 0.07008731365203857, + 0.022095464169979095, + -0.028715750202536583, + -0.02253403328359127, + -0.06131596118211746, + 0.008766135200858116, + 0.00126284034922719, + -0.002439533593133092, + 0.012979519553482533, + 0.06190071627497673, + 0.025478702038526535, + 0.060647666454315186, + 0.036735277622938156, + -0.019683342427015305, + -0.003659952897578478, + 0.042770806699991226, + -0.06586871296167374, + 0.020059257745742798, + 0.04339732974767685, + -0.10458798706531525, + 0.06043882295489311, + -0.020884182304143906, + 0.023369399830698967, + -0.005868455395102501, + 0.0555519238114357, + 0.0015467347111552954, + 0.06570164114236832, + 0.04091211408376694, + -0.06252723932266235, + 0.0035320373717695475, + 0.11494653671979904, + 0.02953023463487625, + -0.03230782970786095, + 0.06281962245702744, + -0.00235338625498116, + -0.02865309827029705, + 0.016707345843315125, + 0.015308105386793613, + -0.04937020689249039, + -0.039241377264261246, + 0.019683342427015305, + 0.045694589614868164, + 0.030010569840669632, + 0.020330751314759254, + -0.009878218173980713, + -0.015600483864545822, + -0.013585160486400127, + 0.05095740407705307, + 0.052920516580343246, + 0.04016028344631195, + 0.023933272808790207, + 0.029885265976190567, + -0.01642541028559208, + -0.007977757602930069, + 0.0003436100669205189, + -0.005967655219137669, + -0.03362353518605232, + -0.0616501048207283, + 0.05634552240371704, + -0.013491181656718254, + 0.09623431414365768, + -0.03663085773587227, + -0.025395166128873825, + -0.0024512808304280043, + -0.07622726261615753, + -0.04024381935596466, + 0.058726321905851364, + -0.007977757602930069, + 0.0022085022646933794, + -0.036254942417144775, + 0.01146541628986597, + -0.008818346075713634, + 0.011141710914671421, + -0.034417133778333664, + 0.061691876500844955, + 0.06173364445567131, + -0.014942632988095284, + -0.041100069880485535, + -0.0035163741558790207, + 0.012906424701213837, + -0.028381604701280594, + -0.028694866225123405, + 0.036902349442243576, + -0.08240898698568344, + -0.02955111861228943, + 0.02904989756643772, + -0.022972600534558296, + -0.021552477031946182, + -0.052920516580343246, + -0.06302846223115921, + -0.009982638992369175, + -0.05191807821393013, + 0.05233576148748398, + 0.016143472865223885, + -0.12296606600284576, + -0.028298066928982735, + -0.04377324506640434, + 0.08332788944244385, + 0.05141685903072357, + 0.04212339594960213, + -0.06912664324045181, + 0.07518305629491806, + -0.002139323391020298, + -0.06879249960184097, + 0.03366530314087868, + -0.07288579642772675, + 0.06561809778213501, + -0.0020858077332377434, + -0.003242269391193986, + 0.046571727842092514, + -0.010332449339330196, + 0.08687819540500641, + 0.08971844613552094, + -0.11711849272251129, + -0.09773797541856766, + 0.028047457337379456, + 0.025875501334667206, + 0.009189040400087833, + 0.040765922516584396, + 0.0638638287782669, + 0.0005886728758923709, + -0.017198124900460243, + -0.07651964575052261, + 0.07522482424974442, + -0.029300507158041, + -0.02817276120185852, + 0.02295171655714512, + -0.0037226055283099413, + 0.013908865861594677, + 0.03704854100942612, + 0.10041114687919617, + -0.04055708274245262, + -0.0008294936269521713, + -0.002271154895424843, + -0.006735148839652538, + -0.016801325604319572, + -0.03180661052465439, + -0.03349822759628296, + 0.04895252361893654, + 0.08671112358570099, + 0.040682386606931686, + 0.01215459406375885, + 0.017835091799497604, + 0.07977757602930069, + 0.06144126504659653, + 0.04130891337990761, + 0.004735488444566727, + -0.01130878459662199, + -0.06453212350606918, + -0.0438150130212307, + -0.030010569840669632, + 0.008985419757664204, + -0.004022815730422735, + 0.010134049691259861, + 0.031514231115579605, + -0.06887603551149368, + 0.08090532571077347, + -0.005461213644593954, + -0.05459125339984894, + 0.027901267632842064, + 0.07547543197870255, + -0.00669860141351819, + 0.03644289821386337, + 0.0066202860325574875, + 0.028757520020008087, + -0.042979646474123, + -0.005831907968968153, + 0.005821465980261564, + -0.06453212350606918, + 0.029321392998099327, + -0.0035711952950805426, + -0.06787358969449997, + -0.007048411760479212, + 0.09080442786216736, + 0.027358278632164, + -0.05797449126839638, + -0.07702086120843887, + -0.018492942675948143, + 0.0027018911205232143, + 0.011340111494064331, + 0.12012581527233124, + -0.05229399353265762, + -0.037320032715797424, + 0.04853484034538269, + 0.008186599239706993, + 0.026460258290171623, + -0.006072076037526131, + -0.01882709003984928, + 0.05141685903072357, + -0.06954433023929596, + -0.01493219006806612, + -0.043272025883197784, + -0.029572002589702606, + 0.006735148839652538, + -0.03564929962158203, + -0.029237855225801468, + 0.0012008404592052102, + -0.04147598519921303, + 0.05304582417011261, + -0.06198425218462944, + 0.011924868449568748, + -0.04112095385789871, + 0.005983318202197552, + -0.002105386694893241, + -0.03700677305459976, + 0.04323025792837143, + -0.017741113901138306, + -0.002417344134300947, + 0.05133331939578056, + 0.06753944605588913, + -0.09439650177955627, + -0.008009083569049835, + -0.04627934843301773, + -0.009021966718137264, + 0.013480739668011665, + 0.018482500687241554, + 0.021552477031946182, + -0.03702765703201294, + 0.04360617324709892, + 0.06603578478097916, + -0.04740709438920021, + 0.07877513766288757, + 0.003665174124762416, + 0.002767154248431325, + -0.0072363694198429585, + 0.03404121845960617, + 0.03986790403723717, + 0.0423322394490242, + -0.034563321620225906, + 0.009789460338652134, + 0.0004881677741650492, + -0.017041493207216263, + 0.005873676389455795, + -0.005502982065081596, + -0.07793977111577988, + 0.03237048164010048, + -0.005638729315251112, + 0.04937020689249039, + -0.050038501620292664, + 0.00037558897747658193, + 0.046738799661397934, + -0.022158117964863777, + -0.019223889335989952, + 0.06394736468791962, + -0.0005991149810142815, + 0.05805802717804909, + 0.040703270584344864, + 0.05576076731085777, + -0.0573061965405941, + -0.04306318238377571, + 0.007471316494047642, + -0.09255869686603546, + -0.03990967199206352, + 0.01778288185596466, + -0.04598696902394295, + -0.04041089117527008, + -0.033184964209795, + -0.03644289821386337, + -0.01763669215142727, + -0.0707138404250145, + 0.044483307749032974, + 0.061232421547174454, + 0.09598369896411896, + 0.04465038329362869, + 0.06411443650722504, + -0.045276906341314316, + 0.10032761096954346, + -0.12455326318740845, + 0.010995522141456604, + 0.017532270401716232, + 0.04323025792837143, + -0.005158393178135157, + -0.07455652952194214, + 0.017020609229803085, + 0.05956168845295906, + -0.02247137948870659, + 0.017521828413009644, + 0.016686461865901947, + -0.03853131830692291, + -0.023244095966219902, + -0.02140628732740879, + -0.028673982247710228, + 0.007027527317404747, + -0.017031051218509674, + -0.03531515225768089, + 0.010985080152750015, + -0.017563598230481148, + -0.012426088564097881, + -0.03775860369205475, + -0.015182800590991974, + -0.08788064122200012, + 0.03370707109570503, + 6.346833833958954e-05, + 0.027567120268940926, + 0.08232544362545013, + -0.05145862698554993, + -0.027086785063147545, + 0.0012367351446300745, + -0.017970839515328407, + 0.004881677683442831, + 0.05538485199213028, + -0.011287900619208813, + 0.08278489857912064, + 0.026021691039204597, + -0.00029825224191881716, + 0.031743958592414856, + 0.019432730972766876, + 0.0651586502790451, + 0.040285587310791016, + 0.00958061870187521, + 0.003312753513455391, + -0.08971844613552094, + 0.024998366832733154, + 0.04636288434267044, + 0.0011218722211197019, + 0.055510155856609344, + 0.032161641865968704, + -0.07748031616210938, + 0.02326497994363308, + 0.00143448228482157, + 0.04074503853917122, + -0.06565987318754196, + -0.03431271016597748, + -0.019296985119581223, + -0.018962837755680084, + 0.03640113025903702, + -0.03249578922986984, + 0.027024131268262863, + -0.02061268873512745, + 0.0338323749601841, + -0.00732512678951025, + -0.0280056893825531, + -0.0616501048207283, + 0.05818333104252815, + 0.019610246643424034, + 0.0013339770957827568, + 0.045694589614868164, + 0.030553558841347694, + -0.002975995885208249, + -0.05835040658712387, + -0.030866822227835655, + 0.0026940596289932728, + -0.023077022284269333, + 0.044232700020074844, + 0.025019250810146332, + 0.016373198479413986, + 0.022346075624227524, + -0.03268374502658844, + 0.015005284920334816, + -0.03076240047812462, + -0.03276728093624115, + 0.0017229450168088078, + -0.002605301793664694, + 0.012102384120225906, + 0.07689555734395981, + 0.023870620876550674, + 0.05584430322051048, + -0.08846540004014969 + ] + }, + { + "id": "4423b862-0b9d-4b58-ba62-18e867b14172", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinezjeffrey", + "reviewDate": "2022-06-28T00:45:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3998a275-1543-49b4-88ae-afb7b7be1e5c", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gramirez", + "reviewDate": "2021-11-13T13:26:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "18ad930f-48d6-4a2d-9615-8c1d772415f0", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wilsonamy", + "reviewDate": "2022-07-07T21:51:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5805a525-7884-497d-a250-29b0b8953a14", + "productId": "e07b4318-532c-4ad7-991f-05a419f82b9a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "contrerastaylor", + "reviewDate": "2022-10-10T11:45:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand + (Red)", + "description": "This Basic Stand + (Red) is just for the player who will get the +1 action. - (Yellow) the action is only valid in the Main stage for a maximum of 2 stages.(5% chance)\n\nNote:\n\nEvery stage has 12 stages and has 1 action. Each stage has 5 action stages and has 1 action active before it's finished.\n\nIf there are 4 action stages", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-06-19T22:11:01", + "price": 192.3, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-03-20T02:14:50", + "newPrice": 185.9 + }, + { + "priceDate": "2023-04-10T02:14:50", + "newPrice": 192.3 + } + ], + "descriptionVector": [ + 0.02367217466235161, + -0.0054947505705058575, + -0.03221866860985756, + 0.05160147324204445, + -0.06569512188434601, + -0.03570177033543587, + 0.016657600179314613, + 0.059148188680410385, + 0.01647215709090233, + 0.013109998777508736, + -0.002118482254445553, + 0.06417933106422424, + -0.004007176961749792, + -0.043699998408555984, + 0.08772250264883041, + 0.0028280026745051146, + -0.018657157197594643, + 0.02681664004921913, + 0.009046383202075958, + -0.0033137821592390537, + 0.023946307599544525, + -0.031960662454366684, + -0.041926197707653046, + 0.05434279888868332, + -0.053504277020692825, + -0.004934391006827354, + -0.0036262129433453083, + -0.017947636544704437, + -0.09236663579940796, + 0.0881740152835846, + 0.00857874471694231, + 0.012626235373318195, + 0.04041040316224098, + -0.0547943152487278, + -0.012722987681627274, + -0.016802730038762093, + 0.10371895879507065, + -0.07482213526964188, + -0.023881806060671806, + 0.037894830107688904, + 0.01192477811127901, + 0.05963195115327835, + -0.03408922255039215, + -0.014021087437868118, + -0.023946307599544525, + 0.05724538490176201, + -0.028461437672376633, + -0.057664643973112106, + -0.0467638336122036, + -0.09410818666219711, + 0.030090108513832092, + -0.03023523837327957, + 0.09797829389572144, + 0.00419261958450079, + 0.05011792853474617, + 0.005986576899886131, + -0.024849334731698036, + 0.03853984922170639, + -0.036637045443058014, + -0.06363106518983841, + -0.025800736621022224, + -0.02525247074663639, + -0.11249121278524399, + 0.039539627730846405, + -0.03134789317846298, + -0.009925221092998981, + 0.02251114323735237, + -0.020237453281879425, + 0.053568776696920395, + 0.026526382192969322, + -0.024913836270570755, + 0.04924715682864189, + -0.08443290740251541, + 0.045183539390563965, + -0.010150977410376072, + 0.02813892811536789, + 0.08449741452932358, + 0.046215567737817764, + -0.01244079228490591, + 0.018882913514971733, + -0.0138517701998353, + 0.05450405552983284, + -0.06766243278980255, + 0.0008516258676536381, + -0.02755841054022312, + -0.04502228647470474, + 0.024929961189627647, + -0.11274921894073486, + 0.016915608197450638, + 0.01080405805259943, + 0.005905949976295233, + 0.01857653073966503, + -0.026349002495408058, + 0.040120143443346024, + -0.01849590241909027, + 0.020688965916633606, + 0.04386125132441521, + 0.04686058685183525, + -0.02473645657300949, + -0.01796376332640648, + 0.0017163536977022886, + -0.02226926013827324, + -0.05843866616487503, + -0.07243556529283524, + 0.12822966277599335, + 0.025058964267373085, + 0.051730476319789886, + -0.0011690958635881543, + -0.023333540186285973, + -0.046376824378967285, + 0.03139626979827881, + -0.04773136228322983, + 0.06972648948431015, + 0.0329604409635067, + -0.005575377959758043, + 0.013875958509743214, + -0.004374030977487564, + -0.04434501379728317, + 0.11352323740720749, + -0.018173392862081528, + -0.01433553360402584, + 0.06437283754348755, + -0.023204537108540535, + -0.08127231895923615, + -0.009844593703746796, + 0.01355344895273447, + 0.021817747503519058, + 0.046892836689949036, + 0.04721534624695778, + -0.04382900148630142, + 0.014722544699907303, + 0.05656811222434044, + -0.011255571618676186, + 0.05056944116950035, + -0.046667080372571945, + 0.08262685686349869, + -0.014907987788319588, + 0.0026486068964004517, + -0.04879564046859741, + 0.06401807814836502, + -0.04850538447499275, + -0.07953076809644699, + 0.04663483053445816, + 0.07701519876718521, + -0.08701298385858536, + 0.023140035569667816, + 1.0613828635541722e-05, + 0.0016689851181581616, + 0.006901696790009737, + 0.014069464057683945, + -0.0161173976957798, + -0.06237328052520752, + -0.055342577397823334, + -0.045699555426836014, + -0.04231320694088936, + 0.008264298550784588, + -0.07075852155685425, + 0.021059850230813026, + -0.021849999204277992, + -0.020060071721673012, + 0.0029811945278197527, + 0.028155053034424782, + -0.09127010405063629, + 0.006043015979230404, + -0.017641253769397736, + 0.026929518207907677, + 0.025655606761574745, + 0.09643024951219559, + 0.020914722234010696, + 0.028687193989753723, + 0.014851548708975315, + -0.010183228179812431, + -0.03721756115555763, + 0.03973313421010971, + -0.005853542126715183, + 0.00906250812113285, + 0.02243051491677761, + -0.017334869131445885, + -0.02472032979130745, + -0.049634166061878204, + -0.028993576765060425, + 0.024462323635816574, + -0.025784609839320183, + -0.029896603897213936, + 0.04995667561888695, + -0.0692104771733284, + -0.044893279671669006, + -0.03473424166440964, + -0.01685110665857792, + 0.0001441212953068316, + 0.00247928942553699, + -0.0628247931599617, + 0.06405032426118851, + -0.005571346264332533, + 0.010820183902978897, + 0.015077305026352406, + -0.03699180483818054, + -0.03325069695711136, + 0.032718557864427567, + -0.006325211841613054, + -0.049279406666755676, + 0.059825457632541656, + 0.030396493151783943, + 0.01587551459670067, + -0.05302051454782486, + -0.015343375504016876, + 0.03621778264641762, + -0.006554999388754368, + 0.06353431195020676, + 0.03586302325129509, + 0.04282922297716141, + -0.0099897226318717, + 0.039700884371995926, + -0.02488158456981182, + 0.007526558358222246, + 0.03966863080859184, + -0.022478891536593437, + 0.030702875927090645, + 0.015722323209047318, + -0.043409738689661026, + -0.003718934254720807, + -0.0352180041372776, + -0.07314508408308029, + -0.019108669832348824, + -0.017802508547902107, + 0.004837638232856989, + -0.03676604852080345, + -0.029009703546762466, + 0.02621999755501747, + -0.012263412587344646, + -0.05563283711671829, + 0.04679608345031738, + 0.02613937109708786, + 0.07082302123308182, + -0.04186169430613518, + 0.03921711817383766, + 0.018624907359480858, + -0.009868782013654709, + -0.05585859343409538, + -0.044506270438432693, + -0.010892747901380062, + 0.030944757163524628, + -0.058922432363033295, + 0.00503114378079772, + -0.0015712245367467403, + 0.06459859013557434, + 0.0510854572057724, + 0.012553670443594456, + 0.0007992181344889104, + 0.00030839943792670965, + 0.03676604852080345, + -0.003962832037359476, + 0.0005679185269400477, + 0.04608656466007233, + 0.04299047589302063, + 0.07875674962997437, + 0.10604102909564972, + 0.008627121336758137, + -0.06624338775873184, + -0.020850220695137978, + 0.07488663494586945, + -0.026526382192969322, + -0.039313871413469315, + 0.052601251751184464, + -0.04734434932470322, + -0.03676604852080345, + 0.03334745019674301, + -0.03495999798178673, + -0.06721092015504837, + 0.07578966021537781, + 0.10713755339384079, + -0.04595756158232689, + -0.033605460077524185, + 0.0053657470270991325, + 0.039765384048223495, + 0.030638374388217926, + 0.04311947897076607, + 0.06669490039348602, + 0.04931165650486946, + 0.010110663250088692, + 0.06214752420783043, + 0.09675276279449463, + 0.0871419832110405, + -0.01552075520157814, + -0.09127010405063629, + -0.03637903928756714, + 0.007357241120189428, + 0.00801838468760252, + -0.0764346793293953, + -0.053052764385938644, + -0.038926862180233, + -0.04137793183326721, + 0.01901191659271717, + -0.0023019094951450825, + 0.067984938621521, + 0.044893279671669006, + -0.02249501645565033, + -0.06630789488554001, + 0.10223541408777237, + 0.005660036578774452, + -0.013827581889927387, + 0.005704381503164768, + -0.030606122687458992, + -0.02926770970225334, + -0.015786824747920036, + 0.06195401772856712, + -0.04053940623998642, + 0.018979666754603386, + -0.014907987788319588, + -0.03702405467629433, + 0.08056280016899109, + -0.0284291859716177, + -0.03779807686805725, + -0.017770256847143173, + -0.029090330004692078, + -0.01410977728664875, + 0.0494406595826149, + -0.0377013273537159, + -0.10133238881826401, + -0.004886014387011528, + -0.020463209599256516, + -0.10617002844810486, + -0.022237010300159454, + -0.00048653536941856146, + 0.07862774282693863, + 0.006950073409825563, + -0.058922432363033295, + -0.026010368019342422, + -0.0704360082745552, + -0.02457520179450512, + -0.045409295707941055, + -0.0628247931599617, + -0.04631232097744942, + 0.010336419567465782, + -0.025300847366452217, + -0.08849652856588364, + 0.006881540175527334, + -0.003587914863601327, + 0.06334080547094345, + -0.037765827029943466, + 0.009473707526922226, + 0.0632440522313118, + -4.711658039013855e-05, + 0.019576309248805046, + -0.02093084715306759, + -0.03252505138516426, + 0.04108767211437225, + -0.03021911159157753, + 0.05740663781762123, + 0.05285925790667534, + 0.0019219532841816545, + -0.00946564506739378, + 0.04157143458724022, + -0.07624117285013199, + 0.11668382585048676, + 0.0058817616663873196, + -0.0060551101341843605, + -0.022607894614338875, + 0.03431497886776924, + -0.04553829878568649, + 0.03444398194551468, + -0.02228538505733013, + 0.05331077054142952, + 0.007316927425563335, + 0.0473766028881073, + -0.025510478764772415, + 0.05463305860757828, + 0.015335312113165855, + 0.04224870726466179, + -0.0255427286028862, + -0.06517910957336426, + -0.010408984497189522, + 0.07488663494586945, + -0.008369114249944687, + 0.025365348905324936, + 0.06450183689594269, + -0.04315173253417015, + 0.0315091498196125, + -0.04137793183326721, + 0.035895273089408875, + -0.05237549543380737, + 0.0494406595826149, + -0.019705312326550484, + -0.0436677448451519, + 0.058470919728279114, + 0.028235681354999542, + 0.03312169387936592, + 0.04628007113933563, + -0.003632259787991643, + -0.017205866053700447, + -0.029348338022828102, + 0.020995348691940308, + -0.04924715682864189, + 0.09817180037498474, + -0.017931511625647545, + -0.10939512401819229, + 0.002874363213777542, + -0.04879564046859741, + 0.018157267943024635, + 0.0012598015600815415, + -0.013480884954333305, + 0.017431622371077538, + 0.040732912719249725, + 0.016834979876875877, + -0.029364462941884995, + -0.01355344895273447, + -0.06624338775873184, + 0.06733991950750351, + 0.011908652260899544, + -0.06353431195020676, + -0.012158596888184547, + -0.055729590356349945, + -0.06869445741176605, + -0.010070350021123886, + -0.02472032979130745, + 0.012900368310511112, + -0.023720551282167435, + -0.003094072686508298, + -0.0173026192933321, + -0.008562618866562843, + 0.011295884847640991, + 0.047054093331098557, + -0.04066840931773186, + 0.02367217466235161, + -0.046215567737817764, + 0.02420431561768055, + -0.03799158334732056, + -0.0326540581882, + -0.009320516139268875, + -0.026268374174833298, + -0.0064824349246919155, + -0.07179054617881775, + 0.007578966207802296, + -0.0010103608947247267, + 0.042732469737529755, + 0.026671510189771652, + -0.023059407249093056, + 0.011424888856709003, + -0.06450183689594269, + -0.014246843755245209, + 0.007889381609857082, + 0.011932840570807457, + -0.034347228705883026, + -0.02673601359128952, + 0.019511805847287178, + -0.0014704404165968299, + -0.05621335282921791, + -0.012706862762570381, + 0.052536748349666595, + 0.08501342684030533, + -0.0521174855530262, + -0.04002339020371437, + -0.03437948226928711, + 0.03699180483818054, + 0.057374387979507446, + 0.011602268554270267, + 0.06792043894529343, + 0.008957693353295326, + 0.007208080496639013, + 0.05889017879962921, + -0.07940176874399185, + -0.007409648969769478, + 0.07204855233430862, + -0.023510921746492386, + 0.037314314395189285, + -0.002628450049087405, + -0.046602580696344376, + 0.05879342928528786, + -0.009014132432639599, + 0.017786381766200066, + -0.0383140929043293, + -0.08365888893604279, + -0.04321623221039772, + -0.0543750524520874, + -0.017867010086774826, + 0.017802508547902107, + -0.048376381397247314, + -0.026703761890530586, + -0.03126726672053337, + 0.01391627173870802, + 0.008715811185538769, + -0.09533371776342392, + -0.06150250509381294, + 0.017254242673516273, + -0.030719000846147537, + 0.01841527596116066, + 0.04879564046859741, + 0.010497674345970154, + -0.0025579011999070644, + 0.03779807686805725, + 0.009247951209545135, + -0.024478448554873466, + 0.0840458944439888, + 0.048376381397247314, + 0.013577637262642384, + -0.10146139562129974, + 0.023639924824237823, + -0.0527302548289299, + -0.020318079739809036, + 0.006067204289138317, + -0.056987375020980835, + -0.09881681948900223, + 0.05285925790667534, + 0.05798715353012085, + 0.02636512741446495, + 0.03499224781990051, + 0.011876401491463184, + -0.011844150722026825, + -0.012593984603881836, + -0.009014132432639599, + -0.03149302303791046, + 0.05543933063745499 + ] + }, + { + "id": "f8e560fa-435b-4cb5-ab82-4c4fd3588f15", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "customerRating", + "userName": "vmontgomery", + "reviewDate": "2021-03-20T02:14:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ddf1b19f-2d3d-4885-8b00-2ec28e9100ec", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "customerRating", + "userName": "gabrielle92", + "reviewDate": "2021-10-19T07:36:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b66e59cc-fba2-4063-9ea0-dc2ae85093d3", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "customerRating", + "userName": "sheila21", + "reviewDate": "2022-03-16T22:05:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fe6653f4-f607-48eb-85ae-e57c385e4b63", + "productId": "6626c953-98fc-4d29-bf39-10ad4c452dae", + "category": "Accessory", + "docType": "customerRating", + "userName": "marcusschmidt", + "reviewDate": "2022-05-07T22:46:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cb7993fb-5607-4683-9875-00f09a4040b0", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Micro (Steel)", + "description": "This Awesome Mouse Micro (Steel) is an awesome piece of jewelry. It's hard to describe: a pair of shiny, gold, copper-alloy mugs. My brother, a year old and I both love the look", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-02-15T04:01:39", + "price": 248.09, + "stock": 6, + "priceHistory": [ + { + "priceDate": "2021-01-09T22:53:18", + "newPrice": 267.89 + }, + { + "priceDate": "2021-12-08T22:53:18", + "newPrice": 262.78 + }, + { + "priceDate": "2022-11-06T22:53:18", + "newPrice": 265.99 + }, + { + "priceDate": "2023-02-10T22:53:18", + "newPrice": 248.09 + } + ], + "descriptionVector": [ + -0.04256492480635643, + -0.006662839557975531, + -0.03277988359332085, + -0.06329375505447388, + 0.03332063555717468, + -0.013428679667413235, + -0.030874375253915787, + -0.04241042211651802, + 0.09656289219856262, + -0.013518805615603924, + -0.0008899880340322852, + 0.039629410952329636, + 0.027835862711071968, + -0.0425906740128994, + 0.06715627759695053, + 0.008497534319758415, + -0.04655618965625763, + -0.004332455340772867, + -0.04261642321944237, + 0.022634342312812805, + 0.056135229766368866, + -0.0530967153608799, + -0.058040738105773926, + -0.03620464727282524, + 0.03795565664768219, + -0.04140616953372955, + -0.024333849549293518, + 0.01349305547773838, + -0.07034928351640701, + -0.019737455993890762, + 0.0005387404817156494, + -0.016608817502856255, + 0.0111562330275774, + 0.04513993486762047, + 0.003476264188066125, + -0.02747536264359951, + -0.05255596339702606, + -0.016183940693736076, + 0.06509626656770706, + -0.019685955718159676, + -0.02273734286427498, + -0.05224696174263954, + -0.03272838518023491, + 0.012810677289962769, + 0.0024124630726873875, + 0.02922637015581131, + -0.060770247131586075, + 0.024514099583029747, + 0.007210029289126396, + 0.017510071396827698, + 0.049028199166059494, + 0.009096224792301655, + -0.04673644155263901, + -0.009379475377500057, + 0.010609042830765247, + -0.06679577380418777, + 0.0026796204037964344, + 0.03236788138747215, + 0.01947995461523533, + -0.04372368007898331, + 0.01859157532453537, + -0.05608372762799263, + 0.008336596190929413, + 0.0034472953993827105, + -0.05263321474194527, + -0.06288176029920578, + 0.01662169210612774, + 0.033294886350631714, + 0.05386922135949135, + 0.0341188907623291, + 0.0042809550650417805, + -0.04753469303250313, + 0.016647443175315857, + 0.01951858028769493, + 0.05665023252367973, + 0.0021211649291217327, + 0.061748750507831573, + 0.03051387518644333, + 0.07091578841209412, + -0.022814592346549034, + 0.05690773203969002, + 0.006128524895757437, + -0.038213156163692474, + 0.010177728720009327, + 0.08914686739444733, + 0.012482363730669022, + -0.01244373805820942, + -0.11051945388317108, + -0.015514438040554523, + -0.01341580506414175, + -0.020999209955334663, + 0.02701186016201973, + -0.00892884936183691, + -0.02415359765291214, + -0.01172273512929678, + -0.02938086912035942, + 0.049955204129219055, + 0.00817565806210041, + -0.021900463849306107, + -0.034221891313791275, + 0.03682265058159828, + 0.013441555202007294, + -0.08605685085058212, + -0.007654218934476376, + -0.05386922135949135, + 0.0416121706366539, + 0.01757444627583027, + 0.05984324589371681, + -0.04140616953372955, + -0.1769547164440155, + 0.07745631784200668, + -0.027604112401604652, + -0.033912889659404755, + 0.031672630459070206, + 0.02793886326253414, + 0.07513880729675293, + -0.04810119792819023, + 0.02428234927356243, + -0.08590234816074371, + -0.004754113033413887, + 0.018668826669454575, + 0.02144983783364296, + 0.03035937435925007, + -0.0023706189822405577, + 0.032316382974386215, + 0.015321312472224236, + -0.013557430356740952, + 0.015514438040554523, + 0.013995181769132614, + -0.0059868996031582355, + -0.12535151839256287, + 0.013621805235743523, + 0.021874714642763138, + -0.05469322204589844, + -0.02486172690987587, + 0.03414463996887207, + -0.014394308440387249, + 0.018771827220916748, + 0.060152243822813034, + 0.04593818634748459, + 0.02098633535206318, + -0.028788616880774498, + -0.06674427539110184, + -0.04101991653442383, + -0.015025186352431774, + -0.04421292990446091, + -0.053766220808029175, + -0.0049311453476548195, + -0.012334300205111504, + 0.0657142698764801, + 0.028556866571307182, + -0.08306983858346939, + -0.03293438255786896, + -0.010300042107701302, + 0.009907352738082409, + 0.04719994217157364, + -0.033578138798475266, + -0.005903211422264576, + -0.04859044775366783, + 0.03684839978814125, + -0.013518805615603924, + -0.006888153031468391, + 0.022634342312812805, + -0.02443685010075569, + 0.003250950714573264, + -0.0021034616511315107, + 0.009791477583348751, + 0.02016233280301094, + -0.04748319461941719, + 0.036616649478673935, + -0.0034344203304499388, + 0.030565375462174416, + 0.06082174926996231, + -0.06128524988889694, + 0.06283025443553925, + -0.034685391932725906, + 0.06422076374292374, + -0.051062457263469696, + -0.0007153701153583825, + -0.04889944940805435, + 0.0130295529961586, + 0.07936182618141174, + -0.021218085661530495, + 0.014471558853983879, + 0.012572488747537136, + 0.03002462163567543, + -0.025492604821920395, + 0.05150020867586136, + -0.010615481063723564, + 0.023239469155669212, + 0.017033694311976433, + -0.04212717339396477, + 0.03733765333890915, + -0.033758386969566345, + 0.02667710930109024, + 0.08080382645130157, + -0.02117946185171604, + 0.050933707505464554, + -0.02987012267112732, + 0.05229846388101578, + 0.0026989327743649483, + -0.034685391932725906, + 0.03623039647936821, + -0.062057752162218094, + 0.06349975615739822, + -0.08435734361410141, + -0.035972896963357925, + -0.04624718800187111, + 0.04158642143011093, + 0.01267548929899931, + 0.022428341209888458, + -0.0020777115132659674, + -0.06489026546478271, + 5.989917190163396e-05, + 0.07905282080173492, + 0.029200619086623192, + 0.012855740264058113, + -0.048075444996356964, + -0.03193012997508049, + 0.014329933561384678, + 0.008246471174061298, + 0.015681814402341843, + 0.017291195690631866, + 0.045680686831474304, + -0.04022166505455971, + 0.0026892765890806913, + 0.052684713155031204, + 0.054229721426963806, + 0.0692162811756134, + 0.006991153582930565, + -0.009018974378705025, + -0.03998991474509239, + -0.013196928426623344, + -0.0011901377001777291, + -0.0787438228726387, + 0.07302729785442352, + -0.07828032225370407, + -0.035998646169900894, + 0.10279441624879837, + 0.003350732382386923, + -0.010074728168547153, + 0.02135971188545227, + -0.057886235415935516, + -0.06154274940490723, + 0.035998646169900894, + -0.035020142793655396, + 0.0777653157711029, + -0.08404834568500519, + -0.08894086629152298, + -0.01230855006724596, + 0.004911832511425018, + 0.010119791142642498, + -7.986556011019275e-05, + 0.06792877614498138, + 0.003250950714573264, + 0.11546347290277481, + 0.03653939813375473, + -0.004635018762201071, + 0.04467643052339554, + -0.007255092263221741, + -0.044856682419776917, + -0.016647443175315857, + -0.015128186903893948, + 0.080288827419281, + -0.019093703478574753, + 0.050444457679986954, + -0.013454429805278778, + -0.08909536153078079, + -0.0008795270114205778, + 0.010731356218457222, + -0.015965064987540245, + -0.04199841991066933, + 0.07683831453323364, + -0.02940662018954754, + -0.04017016291618347, + -0.022054964676499367, + -0.02126958593726158, + 0.05701073259115219, + 0.041200168430805206, + 0.03983541205525398, + 0.10027091205120087, + 0.06746527552604675, + 0.03290863335132599, + 0.04274517297744751, + 0.08492384850978851, + 0.002871136646717787, + -0.030127622187137604, + 0.03738915175199509, + -0.02320084534585476, + -0.014291307888925076, + -0.020355457440018654, + -0.05083070695400238, + 0.04194692149758339, + 0.04817844554781914, + -0.014973686076700687, + -0.0072357794269919395, + 0.0243080984801054, + 0.021578587591648102, + -0.035200394690036774, + -0.018514325842261314, + 0.027681363746523857, + 0.012823551893234253, + -0.08909536153078079, + -0.037080150097608566, + 0.05150020867586136, + 0.0205228328704834, + 0.05737123265862465, + 0.046298690140247345, + -0.0016246706945821643, + -0.04745744541287422, + 0.05999774485826492, + 0.023715846240520477, + -0.05072770640254021, + 0.07256379723548889, + 0.09285487979650497, + -0.08502684533596039, + -0.01588781550526619, + -0.00674652773886919, + 0.04635018855333328, + 0.020999209955334663, + -0.016248315572738647, + -0.03823890537023544, + -0.06252125650644302, + 0.0686497837305069, + -0.011542484164237976, + -0.02016233280301094, + -0.03906290978193283, + -0.030925875529646873, + -0.043105676770210266, + -0.0017671009991317987, + 0.003350732382386923, + -0.02719211019575596, + -0.07591131329536438, + 0.06272725760936737, + -0.005227271467447281, + -0.06854677945375443, + 0.01218623761087656, + 0.060615748167037964, + 0.08899236470460892, + 0.01994345709681511, + -0.005829180125147104, + 0.03926891088485718, + 0.040736667811870575, + 0.043749429285526276, + 0.035972896963357925, + -0.035509396344423294, + -0.03666814789175987, + -0.038856908679008484, + 0.004824926145374775, + 0.008149907924234867, + 0.0018556169234216213, + -0.047714944928884506, + -0.04354342818260193, + -0.04318292438983917, + 0.05350871756672859, + 0.029664121568202972, + 0.05778323486447334, + -0.040916915982961655, + 0.07596281170845032, + 0.030256373807787895, + -0.07194579392671585, + -0.022943343967199326, + 0.04071091488003731, + 0.039294660091400146, + -0.014291307888925076, + -0.014497308991849422, + 0.0004204509314149618, + 0.029947372153401375, + -0.05556872859597206, + -0.01887482777237892, + -0.017600197345018387, + -0.07771381735801697, + -0.015591688454151154, + 0.036307647824287415, + -0.06916478276252747, + -0.04490818455815315, + 0.044418931007385254, + 0.000956777366809547, + -0.024604225531220436, + 0.026908859610557556, + 0.0006715144845657051, + -0.022029215469956398, + 0.03651364892721176, + 0.03221338242292404, + 0.03347513824701309, + 0.0010517308255657554, + -0.011188420467078686, + 0.036153148859739304, + -0.057577233761548996, + -0.002785839606076479, + -0.017960697412490845, + -0.039474911987781525, + 0.045963939279317856, + 0.04269367456436157, + 0.09167037159204483, + -0.03447939082980156, + 0.0012303722323849797, + 0.08049482852220535, + -0.009057599119842052, + 0.037852656096220016, + 0.012849302031099796, + 0.05150020867586136, + -0.007609155960381031, + 0.037904154509305954, + 0.02596898190677166, + -0.031054627150297165, + 0.010666981339454651, + 0.006424651015549898, + -0.07529330998659134, + -0.04130316898226738, + -0.04640169069170952, + -0.03131212666630745, + 0.10124941170215607, + -0.02163008786737919, + -0.011967360973358154, + 0.023406846448779106, + 0.04228167235851288, + 0.010692731477320194, + 0.06813477724790573, + -0.044109929352998734, + 0.04271942377090454, + -0.025698604062199593, + 0.027810113504529, + 0.04094266891479492, + -0.020046457648277283, + 0.027449611574411392, + -0.10701743513345718, + 0.0017461789539083838, + 0.12215849757194519, + -0.10804744064807892, + -0.012360050342977047, + -0.04969770461320877, + -0.06246975436806679, + 0.0565987303853035, + -0.008227158337831497, + 0.005536272656172514, + -0.028402365744113922, + 0.00961766391992569, + 0.01644144207239151, + 0.01951858028769493, + 0.07230629771947861, + -0.07189429551362991, + -0.001442810520529747, + -0.02829936519265175, + -0.02003358118236065, + 0.010815043933689594, + -0.05278771370649338, + -0.017226820811629295, + -0.016956444829702377, + -0.028479617089033127, + -0.034402139484882355, + -0.03491714224219322, + -0.04889944940805435, + -0.0637572631239891, + -0.037904154509305954, + 0.032342132180929184, + 0.03623039647936821, + 0.0376209020614624, + -0.051216959953308105, + 0.053457219153642654, + 0.02397334761917591, + 0.09393638372421265, + 0.03744065389037132, + 0.0037981404457241297, + 0.01859157532453537, + -0.06355126202106476, + 0.0626242533326149, + 0.043749429285526276, + -0.020548583939671516, + 0.053148217499256134, + -0.014561684802174568, + 0.06494176387786865, + -0.1248365119099617, + 0.008085533045232296, + -0.029895871877670288, + -0.09888040274381638, + -0.0023400408681482077, + -0.0037884842604398727, + 0.003524545580148697, + 0.12432150542736053, + -0.002927465131506324, + -0.04416143149137497, + -0.05515672639012337, + 0.09924090653657913, + -3.344496144563891e-05, + -0.060615748167037964, + 0.022363966330885887, + 0.04269367456436157, + -0.011046795174479485, + 0.06283025443553925, + -0.02443685010075569, + 0.046633441001176834, + -0.026625609025359154, + -0.04040191322565079, + -0.03213613107800484, + 0.06324225664138794, + 0.005745492409914732, + 0.012495238333940506, + -0.037105903029441833, + -0.02439822442829609, + 0.031183376908302307, + -0.01874607615172863, + -0.022389715537428856, + 0.028505366295576096, + 0.016158191487193108, + 0.014883561059832573, + -0.050573207437992096, + -0.006939653307199478, + -0.004860332235693932, + -0.06267575919628143, + -0.0028196366038173437, + -0.015192561782896519 + ] + }, + { + "id": "fce8d13d-96e3-4861-9bea-dba2ea6b92fe", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rosalesrobert", + "reviewDate": "2021-03-23T03:03:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d17f45d9-1a8f-4bf2-a4c4-c8ff90a8cf8a", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryan42", + "reviewDate": "2021-01-09T22:53:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5bc873a3-610d-436f-8451-5270cbac602a", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angela26", + "reviewDate": "2022-06-28T00:39:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0a9a090f-4166-4d4f-90a5-f5361e843b06", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sphillips", + "reviewDate": "2022-04-27T16:23:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ac59191d-93b3-4845-8ff1-79b0b131ccfc", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stevenkim", + "reviewDate": "2022-07-04T10:23:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2490fc78-51bb-457d-af43-c158ddb0efd8", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qlopez", + "reviewDate": "2022-09-12T20:03:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "155cf77a-9782-4363-8b56-04658be77c81", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "odonnellmarc", + "reviewDate": "2022-10-25T00:18:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6659ad3c-76ca-4184-8928-2ed09f93668c", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rowlandjoshua", + "reviewDate": "2022-10-09T16:25:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7ae00c78-403a-4943-8bc0-dd09573c4db8", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hughescatherine", + "reviewDate": "2022-11-08T09:25:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "036bd159-a36f-4f05-a685-1cb42a0a3ad2", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mowens", + "reviewDate": "2022-01-25T13:22:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9aabf21f-955c-404a-80cf-f5ae7ddf7e68", + "productId": "cb7993fb-5607-4683-9875-00f09a4040b0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alvaradotonya", + "reviewDate": "2022-03-03T04:44:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf0b673d-54e5-434a-ab4f-54f1a5be965b", + "productId": "bf0b673d-54e5-434a-ab4f-54f1a5be965b", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Ultra (Gold)", + "description": "This Premium Speaker Ultra (Gold) is a limited edition, hand made silver-and-black speaker with the classic soundscapes you expect all Premium Speaker Ultra to be offered in. Great for the outdoors, this speaker is perfect for any project needing unique and versatile soundscapes. Its unique", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-07-23T18:53:19", + "price": 449.66, + "stock": 29, + "priceHistory": [ + { + "priceDate": "2021-08-10T05:07:03", + "newPrice": 440.53 + }, + { + "priceDate": "2022-01-24T05:07:03", + "newPrice": 429.75 + }, + { + "priceDate": "2023-04-04T05:07:03", + "newPrice": 449.66 + } + ], + "descriptionVector": [ + -0.014891501516103745, + 0.003950078040361404, + -0.03585904836654663, + -0.08158517628908157, + 0.008490882813930511, + -0.0023385630920529366, + -0.07732675224542618, + 0.019409585744142532, + -0.034275121986866, + 0.0689137652516365, + -0.03593694418668747, + 0.016657190397381783, + -0.017514068633317947, + -0.0005469088791869581, + -0.010107265785336494, + -0.010516230016946793, + -0.02117527462542057, + -0.033963531255722046, + 0.0019766618497669697, + 0.010302010923624039, + 0.05107512325048447, + -0.06268192827701569, + -0.04749181494116783, + -0.029601240530610085, + -0.053541895002126694, + -0.013106338679790497, + 0.0028595058247447014, + 0.030146528035402298, + 0.01704668067395687, + 0.02017558366060257, + 0.06055271625518799, + 0.03829985111951828, + 0.007108192890882492, + 0.05821577459573746, + -0.0560346320271492, + 0.0066180843859910965, + 0.018344979733228683, + -0.018033387139439583, + 0.06008532643318176, + -0.03110726922750473, + -0.004706337582319975, + -0.017020713537931442, + 0.01987697370350361, + -0.0036839263048022985, + 0.03282102569937706, + -0.0032538645900785923, + -0.0017624422907829285, + 0.04520680755376816, + -0.013119322247803211, + 0.011684700846672058, + -0.04782937467098236, + 0.030561983585357666, + -0.06179908290505409, + 0.07924823462963104, + 0.044220101088285446, + -0.018734470009803772, + 0.020993512123823166, + 0.12287111580371857, + 0.05613849312067032, + 0.03209397569298744, + 0.08044267445802689, + -0.09695705026388168, + -0.09420464932918549, + 0.051438648253679276, + -0.00767944473773241, + 0.025485631078481674, + 0.012255952693521976, + -0.023823805153369904, + -0.041857194155454636, + 0.08776508271694183, + 0.0784173235297203, + -0.0539054200053215, + 0.009789182804524899, + 0.08475302904844284, + 0.05696940794587135, + 0.03863741084933281, + 0.04793323948979378, + 0.04606368765234947, + 0.01748810149729252, + -0.00264528626576066, + 0.017514068633317947, + 0.016605257987976074, + -0.00038928716094233096, + -0.013450388796627522, + 0.062006812542676926, + 0.014502011239528656, + -0.018357962369918823, + -0.0832989290356636, + 0.017215458676218987, + 0.04858238995075226, + -0.03326244652271271, + 0.07291252911090851, + 0.019331688061356544, + 0.01918887533247471, + 0.033677902072668076, + 0.019630296155810356, + -0.0347684770822525, + 0.00667975377291441, + -0.1175740510225296, + -0.009373726323246956, + 0.024537870660424232, + -0.079559825360775, + -0.014424113556742668, + 0.03274312615394592, + 0.007861207239329815, + 0.049023810774087906, + 0.01642349548637867, + -0.007140650413930416, + 0.027264300733804703, + -0.1304531842470169, + 0.03993570804595947, + -0.030172493308782578, + 0.04936136677861214, + -0.01113941427320242, + 0.07021206617355347, + 0.034664612263441086, + 0.024382075294852257, + -0.04068872332572937, + -0.028251009061932564, + 0.024200312793254852, + -0.055567242205142975, + -0.005936476867645979, + -0.014722722582519054, + -0.06226646900177002, + 0.04814096540212631, + -0.02120123989880085, + -0.0014816849725320935, + 0.09752830117940903, + 0.02120123989880085, + -0.00037001550663262606, + -0.07337991893291473, + 0.046634938567876816, + -0.0581638440489769, + 0.008198765106499195, + -0.012372799217700958, + -0.002457032911479473, + -0.00039314149762503803, + 0.03866337612271309, + 0.018202167004346848, + 0.028095213696360588, + -0.03258733078837395, + 0.0078482236713171, + 0.07571686059236526, + 0.0033496140968054533, + -0.05608656257390976, + -0.03601484373211861, + -0.036767859011888504, + 0.027861518785357475, + -0.043233390897512436, + -0.0020610513165593147, + 0.04676476866006851, + -0.04162349924445152, + 0.018877282738685608, + -0.046712834388017654, + 0.021123342216014862, + 0.024862445890903473, + -0.1377236694097519, + -0.002833539852872491, + -0.022084083408117294, + 0.06912149488925934, + 0.00923091359436512, + -0.024005567654967308, + -0.021136324852705002, + 0.03767666593194008, + 0.002117851981893182, + 0.059981461614370346, + 0.02566739171743393, + 0.04136383906006813, + -0.023382384330034256, + 0.053489960730075836, + 0.02840680442750454, + -0.06460341066122055, + 0.023395366966724396, + -0.018228132277727127, + 0.05463246628642082, + -0.00873106811195612, + 0.026082847267389297, + 0.026147762313485146, + 0.0033593513071537018, + -0.006179908290505409, + 0.011042041704058647, + 0.09623000025749207, + -0.033625971525907516, + -0.026589184999465942, + 0.026524269953370094, + 0.0860513299703598, + 0.12100156396627426, + 0.013580218888819218, + -0.0396500825881958, + 0.06122783198952675, + 0.0075690895318984985, + -0.014956416562199593, + -0.020071718841791153, + -0.025914069265127182, + 0.006205874495208263, + 0.004436940420418978, + 0.028562601655721664, + 0.04338918626308441, + -0.031938180327415466, + 0.008380526676774025, + 0.010685009881854057, + 0.08397404849529266, + 0.0841817781329155, + -0.013099847361445427, + -0.07820959389209747, + -0.055203717201948166, + -0.009873571805655956, + 0.1181972399353981, + -0.02762782573699951, + 0.031574659049510956, + -0.0499066524207592, + -0.031237099319696426, + -0.02124018967151642, + 0.04336322098970413, + 0.04655703902244568, + 0.03853354603052139, + 0.017345288768410683, + -0.012418240308761597, + -0.011035550385713577, + -0.05894282087683678, + 0.03850758075714111, + -0.013671099208295345, + 0.07395116984844208, + 0.025031225755810738, + -0.055619172751903534, + 0.003534622024744749, + 0.016981765627861023, + 0.004706337582319975, + 0.06335704028606415, + -0.01776074431836605, + -0.04214281961321831, + 0.023849772289395332, + 0.0038332308176904917, + -0.030665846541523933, + 0.03211994469165802, + 0.04074065759778023, + -0.005842350423336029, + -0.04144173860549927, + -0.03147079423069954, + 0.04518084228038788, + -0.054892126470804214, + 0.05395735055208206, + -0.10355241596698761, + 0.009354252368211746, + -0.006644050590693951, + -0.03998764231801033, + 0.15475736558437347, + -0.05883895978331566, + -0.07826152443885803, + 0.022019168362021446, + -0.06808285415172577, + -0.03513199836015701, + -0.06273385882377625, + 0.023148689419031143, + -0.05463246628642082, + 0.03804019093513489, + 0.09565874934196472, + -0.046660903841257095, + 0.024096449837088585, + -0.02773168869316578, + -0.003388563171029091, + 0.01577434502542019, + -0.00925038754940033, + -0.0320160798728466, + -0.1598467081785202, + 0.031003406271338463, + 0.043544985353946686, + -0.08470109850168228, + 0.03731314465403557, + 0.01877341791987419, + -0.04061082750558853, + 0.015618549659848213, + -0.008348069153726101, + 0.028796294704079628, + 0.02869243174791336, + 0.06507080048322678, + 0.014385164715349674, + 0.010866771452128887, + 0.002348300302401185, + -0.02494034357368946, + 0.1139388158917427, + -0.0038851629942655563, + 0.04523277282714844, + -0.010159198194742203, + 0.06013725697994232, + -0.042584240436553955, + 0.015138179063796997, + 0.007380835711956024, + 0.006939413957297802, + -0.08615519106388092, + -0.009516539052128792, + 0.03305472061038017, + -0.016955798491835594, + 0.02871839702129364, + 0.019072027876973152, + 0.03110726922750473, + 0.033963531255722046, + -0.01386584434658289, + 0.010503247380256653, + 0.0016366695053875446, + 0.003492427058517933, + 0.0017819168278947473, + -0.027601858600974083, + -0.0032538645900785923, + 0.032327670603990555, + 0.09835921227931976, + -0.07005627453327179, + 0.03510603308677673, + -0.0404030978679657, + -0.05702133849263191, + 0.03936445713043213, + -0.05120495334267616, + -0.0615394227206707, + -0.033703871071338654, + 0.04538856819272041, + -0.006325967144221067, + 0.0053327674977481365, + 0.018033387139439583, + 0.02877032943069935, + 0.03279506042599678, + -0.05582690238952637, + -0.022382693365216255, + -0.10739538073539734, + 0.025420716032385826, + 0.015177127905189991, + 0.02220093086361885, + -0.011438023298978806, + -0.014709739945828915, + 0.04375271126627922, + -0.008711593225598335, + 0.015216076746582985, + -0.04920557141304016, + 0.05159444361925125, + -0.04616754874587059, + 0.08288347721099854, + 0.01435919851064682, + -0.036274503916502, + 0.024537870660424232, + 0.057229068130254745, + -0.02460278570652008, + 0.07727482169866562, + -0.005582690238952637, + 0.0021470636129379272, + -0.053541895002126694, + 0.007828749716281891, + -0.09648966044187546, + 0.008841423317790031, + -0.03108130395412445, + -0.032275740057229996, + 0.07363957911729813, + 0.0012698997743427753, + -0.027809586375951767, + 0.05167234316468239, + -0.00010568973812041804, + 0.03697558492422104, + -0.017578983679413795, + -0.0229539442807436, + -0.007121175993233919, + 0.07052365690469742, + 0.02500525861978531, + -0.01572241447865963, + 0.021824423223733902, + 0.01161978580057621, + 0.034327052533626556, + 0.017033696174621582, + 0.05535951629281044, + 0.031237099319696426, + 0.01987697370350361, + -0.050737567245960236, + -0.016683155670762062, + 0.009847605600953102, + -0.00939969252794981, + -0.07016013562679291, + 0.0119768176227808, + -0.0539054200053215, + 0.09560681879520416, + 0.05338609963655472, + -0.0024748845025897026, + 0.013333541341125965, + 0.04580402746796608, + 0.004397991579025984, + 0.03796229511499405, + 0.045258741825819016, + 0.029627207666635513, + 0.08828440308570862, + 0.030536016449332237, + -0.07696323096752167, + -0.020578056573867798, + -0.019085010513663292, + 0.0068485327064991, + -0.006978362798690796, + -0.05567110702395439, + -0.03928656131029129, + 0.04847852513194084, + 0.032249774783849716, + -0.012931068427860737, + 0.014242351986467838, + 0.07260093837976456, + -0.07706709206104279, + 0.01386584434658289, + 0.02595301903784275, + 0.04585595801472664, + -0.012204020284116268, + 0.007952087558805943, + 0.007627512793987989, + -0.0526590496301651, + 0.018137251958251, + 0.054528601467609406, + -0.05027017742395401, + -0.02799134887754917, + 0.02705657295882702, + -0.062058743089437485, + 0.0002724401419982314, + 0.035080067813396454, + -0.0008828440331853926, + 0.04284390062093735, + 0.0817929059267044, + -0.00251383357681334, + 0.08895952254533768, + -0.025537561625242233, + 0.006699228193610907, + 0.031185166910290718, + 0.003276584669947624, + -0.01519011054188013, + -0.035054102540016174, + 0.024498922750353813, + 0.034067392349243164, + -0.04416816681623459, + -0.02636847458779812, + -0.042272649705410004, + -0.047699544578790665, + -0.09410078823566437, + 0.02222689613699913, + -0.042506344616413116, + -0.05780031904578209, + 0.01777372695505619, + -0.01641051284968853, + 0.04707635939121246, + -0.044272031635046005, + 0.044921182096004486, + -0.04980279132723808, + -0.03484637290239334, + 0.02629057690501213, + 0.045622263103723526, + -0.05925441533327103, + -0.09062134474515915, + -0.03728717938065529, + 0.0039046374149620533, + 0.032665230333805084, + 0.014735705219209194, + 0.026537252590060234, + -0.004888099618256092, + -0.02325255423784256, + 0.04925750568509102, + 0.04884204640984535, + -0.007991036400198936, + 0.028822261840105057, + 0.04175332933664322, + 0.004852396436035633, + 0.03785843029618263, + -0.07514560967683792, + 0.10059228539466858, + 0.05406121537089348, + -0.020980529487133026, + -0.030665846541523933, + 0.05169830843806267, + -0.05294467508792877, + 0.046712834388017654, + 0.006472025997936726, + 0.05676167830824852, + 0.008309120312333107, + -0.061383627355098724, + -0.015553634613752365, + 0.011535395868122578, + -0.04582999274134636, + -0.046686869114637375, + 0.0013421176699921489, + -0.044635556638240814, + 0.048764150589704514, + -0.03894900158047676, + -0.037079449743032455, + -0.01774776168167591, + -0.0005448802839964628, + 0.04063679277896881, + 0.05224359408020973, + -0.0114769721403718, + 0.0019231069600209594, + 0.047673579305410385, + -0.039156731218099594, + 0.0499066524207592, + 0.02908192202448845, + 0.06605751067399979, + 0.03495023772120476, + 0.0009096214780583978, + -0.010431841015815735, + -0.0471542589366436, + -0.005822875536978245, + -0.029497377574443817, + 0.05164637789130211, + 0.08044267445802689, + 0.025225970894098282, + -0.0539054200053215, + -0.008107883855700493, + 0.01129521057009697, + 0.038092125207185745, + 0.011697683483362198, + -0.0451548770070076, + 0.0012958657462149858, + -0.0375208705663681, + 0.036092743277549744, + 0.003227898618206382, + 0.03850758075714111 + ] + }, + { + "id": "bcd5c05a-ba30-48e2-a743-34041488e91b", + "productId": "bf0b673d-54e5-434a-ab4f-54f1a5be965b", + "category": "Media", + "docType": "customerRating", + "userName": "olsonapril", + "reviewDate": "2022-01-24T07:59:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6d5028b1-b0b0-40f1-94da-d4200131a528", + "productId": "bf0b673d-54e5-434a-ab4f-54f1a5be965b", + "category": "Media", + "docType": "customerRating", + "userName": "matthewsantiago", + "reviewDate": "2021-08-10T05:07:03", + "stars": 5, + "verifiedUser": false + }, + { + "id": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Pro (Red)", + "description": "This Luxe Mouse Pro (Red) is manufactured for your mouse and other models. It will allow you to play music in no trouble. Available from 12:00 am for a limited time.\n\nThe Luxe Mouse Pro ($699) $379.99, 16.9 ounces\n\nThis Luxe", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-06-24T20:52:45", + "price": 977.04, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-03-04T18:36:23", + "newPrice": 886.81 + }, + { + "priceDate": "2022-01-11T18:36:23", + "newPrice": 995.91 + }, + { + "priceDate": "2022-11-20T18:36:23", + "newPrice": 946.89 + }, + { + "priceDate": "2023-12-02T18:36:23", + "newPrice": 977.04 + } + ], + "descriptionVector": [ + -0.11049555987119675, + -0.03127183020114899, + -0.03901709243655205, + 0.03695521503686905, + 0.008254123851656914, + -0.08036040514707565, + 0.017089804634451866, + 0.04348449781537056, + 0.02322257123887539, + 0.07253584265708923, + -0.027385981753468513, + 0.028866304084658623, + 0.0495908297598362, + -0.05429614335298538, + 0.08807923644781113, + -0.03129826486110687, + -0.07930303364992142, + -0.015477309003472328, + -0.0503309927880764, + 0.02754458785057068, + 0.02344726398587227, + -0.07105551660060883, + -0.01841152086853981, + -0.015226182527840137, + 0.029051344841718674, + 0.02209911122918129, + -0.03106035478413105, + 0.055564992129802704, + 0.04374884068965912, + 0.02533731982111931, + 0.0066085862927138805, + 0.033783093094825745, + -0.012952828779816628, + 0.03925500065088272, + -0.029421426355838776, + -0.0005741209024563432, + 0.033333707600831985, + -0.0013134564505890012, + 0.09934026747941971, + 0.02971220389008522, + -0.05207565799355507, + -0.009172717109322548, + -0.01872873306274414, + -0.0819464698433876, + -6.587934331037104e-05, + 0.026302173733711243, + -0.014353848993778229, + 0.05730965733528137, + -0.004503751639276743, + -0.008881939575076103, + 0.004933309741318226, + 0.0683063492178917, + -0.13745859265327454, + -0.05392606183886528, + 0.01321056392043829, + -0.061380546540021896, + 0.02557522803544998, + 0.12233814597129822, + 0.017631707713007927, + -0.09326037019491196, + -0.0298443753272295, + -0.05366171896457672, + 0.012767788022756577, + -0.005128263030201197, + -0.044145356863737106, + -0.029950112104415894, + 0.02129286527633667, + -0.01282726600766182, + 0.0742805078625679, + 0.05027812346816063, + -0.012225884012877941, + 0.013996985740959644, + 0.0694165900349617, + 0.015953127294778824, + 0.059212930500507355, + 0.034999072551727295, + -0.0063409386202692986, + 0.008723333477973938, + 0.055564992129802704, + -0.04039167985320091, + 0.04144905135035515, + -0.008855505846440792, + -0.030320193618535995, + 0.023394394665956497, + 0.06592725217342377, + -0.008948025293648243, + 0.0003209294518455863, + -0.11906028538942337, + -0.030584536492824554, + 0.06783052533864975, + -0.022627798840403557, + 0.1002919003367424, + 0.03669086843729019, + -0.007203358691185713, + -0.005656949710100889, + -0.0385412760078907, + -0.0035521150566637516, + 0.04425109177827835, + -0.06021743640303612, + -0.03264641389250755, + 0.00014208460925146937, + 0.010362262837588787, + -0.04430396109819412, + -0.012529878877103329, + -0.0066713676787912846, + 0.016005994752049446, + 0.0038032412994652987, + -0.022786404937505722, + -0.050357427448034286, + -0.11187014728784561, + 0.09759560227394104, + 0.0013861509505659342, + -0.0298443753272295, + 0.014023419469594955, + -0.055882204324007034, + 0.07126699388027191, + -0.054666224867105484, + 0.02677799016237259, + -0.023698389530181885, + 0.04536133632063866, + 0.06703750044107437, + -0.01760527305305004, + -0.010117745026946068, + 0.04744964838027954, + 0.023526566103100777, + 0.004298885352909565, + 0.04554637521505356, + -0.043907444924116135, + 0.028998475521802902, + -0.07570796459913254, + -0.11387915909290314, + 0.1414766162633896, + 0.006631716154515743, + 0.032064858824014664, + -0.01837186887860298, + 0.056780971586704254, + 0.019614282995462418, + -0.018887339159846306, + 0.0154376570135355, + 0.05916006490588188, + -0.025998177006840706, + -0.05789121612906456, + -0.010653041303157806, + -0.0027855189982801676, + -0.03838266804814339, + -0.022812839597463608, + -0.03803902119398117, + 0.009575841017067432, + -0.016415728256106377, + 0.04213634505867958, + 0.02079061232507229, + -0.07999032735824585, + 0.04507055878639221, + -0.03449682146310806, + 0.020288359373807907, + 0.03457612171769142, + -0.06592725217342377, + -0.013448473066091537, + -0.028707697987556458, + 0.04813694208860397, + 0.026685470715165138, + -0.003178729908540845, + 0.009271846152842045, + 0.00761969992890954, + 0.005121654365211725, + 0.06857068836688995, + 0.027333112433552742, + 0.00436827540397644, + -0.03825049474835396, + 0.02565453201532364, + -0.0334923155605793, + -0.039545778185129166, + -0.043643102049827576, + -0.06767192482948303, + 0.047291044145822525, + -0.0022650929167866707, + 0.09442348033189774, + 0.08342678844928741, + 0.005656949710100889, + -0.00045144904288463295, + 0.07248297333717346, + 0.119377501308918, + -0.06851781904697418, + -0.01921776868402958, + 0.014512455090880394, + 0.0048705278895795345, + 0.0262889564037323, + 0.027623889967799187, + 0.010203656740486622, + -0.040312375873327255, + 0.00319525133818388, + 0.038276929408311844, + -0.0027392590418457985, + -0.03061097115278244, + -0.03669086843729019, + 0.03380952775478363, + 0.05199635401368141, + 0.08458990603685379, + 0.02606426365673542, + -0.019059162586927414, + -0.00712405564263463, + 0.027941102162003517, + 0.07734689116477966, + 0.012721528299152851, + -0.032619982957839966, + -0.05577646568417549, + 0.019971147179603577, + -0.0003277445794083178, + 0.05284225568175316, + -0.02511262707412243, + -0.01989184506237507, + -0.024279944598674774, + 0.040048032999038696, + 0.04507055878639221, + 0.07554935663938522, + 0.005574342329055071, + 0.018570126965641975, + -0.02389664761722088, + -0.02291857637465, + -0.10811647027730942, + 0.01285369973629713, + -0.0015687131090089679, + 0.004520272836089134, + 7.82704446464777e-05, + -0.08596448600292206, + -0.01611173339188099, + 0.08247515559196472, + 0.06777765601873398, + 0.0896124318242073, + -0.02926282025873661, + -0.010659649036824703, + -0.020962435752153397, + 0.04311441630125046, + 0.021306082606315613, + -0.042691465467214584, + 0.02390986494719982, + -0.06264939904212952, + -0.02389664761722088, + 0.03515767678618431, + 0.01346169039607048, + -0.07142560184001923, + -0.0248879361897707, + -0.002276657847687602, + 0.03343944624066353, + -0.02069809101521969, + -0.011598068289458752, + 0.08818497508764267, + -0.010818255133926868, + -0.0995517447590828, + 0.05598794296383858, + -0.0634424239397049, + -0.013970551081001759, + -0.04427752643823624, + 0.03962508216500282, + -0.03465542569756508, + -0.010745560750365257, + 0.02610391564667225, + -0.03605644777417183, + 0.027518153190612793, + -0.03428534418344498, + 0.02728024311363697, + -0.002699607517570257, + -0.025958526879549026, + 0.025125844404101372, + -0.01537157129496336, + 0.03624148666858673, + -0.0030994268599897623, + -0.09944600611925125, + -0.02480863220989704, + 0.000841355649754405, + -0.02295822836458683, + -0.008624205365777016, + 0.0815763846039772, + 0.01831900142133236, + -0.026751557365059853, + 0.02219163253903389, + -0.09003537893295288, + 0.06508135795593262, + 0.0069390153512358665, + -0.05352954939007759, + 0.03579210117459297, + 0.04470047727227211, + 0.04068245738744736, + -0.03420604020357132, + -0.013455081731081009, + -0.049723003059625626, + 0.027756061404943466, + -0.01460497546941042, + 0.012477010488510132, + -0.026632601395249367, + -0.023962734267115593, + 0.0077650886960327625, + 0.06349529325962067, + -0.025324102491140366, + 0.07697681337594986, + 0.02601139433681965, + 0.052868690341711044, + 0.07364608347415924, + -0.014261328615248203, + -0.007513962220400572, + 0.01990506239235401, + 0.01904594525694847, + -0.045890022069215775, + -0.04073532670736313, + -0.003486029105260968, + 0.06814774125814438, + 0.0264739952981472, + 0.04055028408765793, + 0.004576446022838354, + -0.03708738461136818, + 0.07285305112600327, + -0.011214770376682281, + -0.08406121283769608, + -0.007176924496889114, + 0.11652258783578873, + -0.043828144669532776, + 0.016984065994620323, + -0.0032002078369259834, + 0.03547488898038864, + 0.007467702496796846, + -0.06079899147152901, + -0.055300649255514145, + -0.10716482996940613, + 0.04277076944708824, + 0.05384676158428192, + -0.0031109920237213373, + -0.07734689116477966, + -0.01215318962931633, + -0.011730240657925606, + -0.0735403448343277, + -0.0937361866235733, + -0.001538974465802312, + 0.023830560967326164, + -0.02965933457016945, + 0.04160765931010246, + 0.026037828996777534, + 0.00590807618573308, + 0.0548248291015625, + 0.05347668007016182, + -0.014314197935163975, + 0.05136193335056305, + 0.05810268968343735, + -0.03502550721168518, + 0.004094019066542387, + 0.038911353796720505, + -0.04427752643823624, + 0.037563204765319824, + -0.018067874014377594, + -0.01181615237146616, + 0.06296660751104355, + 0.0017198845744132996, + -0.08955956250429153, + 0.0529479905962944, + -0.053503114730119705, + 0.01669328846037388, + -0.00622528837993741, + 0.0011028078151866794, + 0.011294073425233364, + -0.020764177665114403, + 0.09976321458816528, + -0.03978369012475014, + -0.0037801112048327923, + 0.01264883391559124, + 0.06539856642484665, + -0.013514558784663677, + 0.03219703212380409, + -0.02862839587032795, + 0.0035190721973776817, + -0.006866320967674255, + -0.02183476835489273, + -0.02290535904467106, + -0.04628653824329376, + -0.04705313220620155, + 0.08950669318437576, + -0.04348449781537056, + 0.04803120344877243, + 0.0572567917406559, + 0.00880263652652502, + -0.0649227499961853, + 0.03029375895857811, + 0.004054367542266846, + 0.050040215253829956, + 0.013970551081001759, + 0.0026682165917009115, + 0.10975539684295654, + -0.011399811133742332, + -0.035131242126226425, + -0.035633496940135956, + 0.00796995498239994, + -0.03428534418344498, + 0.008412729948759079, + -0.04171339422464371, + -0.01818682998418808, + 0.05656949803233147, + 0.02299788035452366, + -0.05545925348997116, + -0.01226553600281477, + 0.06449980288743973, + -0.05244573950767517, + -0.0028862999752163887, + 0.019931495189666748, + 0.04150192067027092, + -0.015345136635005474, + -0.03119252622127533, + -0.03925500065088272, + -0.012344839051365852, + 0.06079899147152901, + 0.028205445036292076, + 0.0338623970746994, + -0.07613091170787811, + -0.00986001081764698, + 0.02353978343307972, + 0.01652146503329277, + 0.02552236057817936, + -0.017354147508740425, + -0.0029160387348383665, + 0.07824566215276718, + -0.00540251936763525, + 0.029632899910211563, + -0.06328382343053818, + 0.08067762106657028, + -0.0018702298402786255, + -0.04049741476774216, + 0.010263134725391865, + -0.048586323857307434, + -0.03925500065088272, + -0.049141447991132736, + -0.036162182688713074, + 0.016600769013166428, + 0.01665363647043705, + 0.05572360008955002, + -0.07930303364992142, + -0.024253511801362038, + 0.0006596195162273943, + -0.0005621428717859089, + 0.031430434435606, + 0.025548793375492096, + 0.04811050742864609, + 0.03254067897796631, + 0.07977885007858276, + -0.019032727926969528, + -0.03174764662981033, + 0.0015926692867651582, + 0.053450245410203934, + -0.03597714379429817, + 0.010368871502578259, + -0.08855505287647247, + 0.02705555222928524, + 0.02359265275299549, + -0.059847354888916016, + -0.015041141770780087, + -0.054137539118528366, + -0.022178415209054947, + 0.013666556216776371, + 0.07972598075866699, + -0.00904715433716774, + -0.0017463188851252198, + 0.06132768094539642, + -0.049855172634124756, + 0.0031390783842653036, + -0.012457184493541718, + 0.07533787935972214, + 0.0819464698433876, + 0.03803902119398117, + -0.022429540753364563, + -0.021306082606315613, + 0.012503445148468018, + -0.006000596098601818, + -0.01505435910075903, + 0.010111136361956596, + 0.0077650886960327625, + -0.024914368987083435, + -0.024954020977020264, + 0.025139061734080315, + -0.011657546274363995, + 0.011313899420201778, + -0.014935404993593693, + -0.03645296022295952, + -0.014063071459531784, + 0.018015006557106972, + 0.0019098813645541668, + 0.03491976857185364, + -0.0275974553078413, + 0.03280502185225487, + 0.01278761401772499, + -0.03169477730989456, + 0.06645594537258148, + 0.04456830397248268, + 0.0853300616145134, + 0.04218921437859535, + -0.012946220114827156, + 0.0576268695294857, + -0.0025905657093971968, + 0.006737453397363424, + -0.03251424431800842, + 0.03637365996837616, + 0.011736849322915077, + -0.005306694656610489, + -0.03174764662981033, + -0.0037966326344758272, + 0.04739677906036377, + -0.0454670712351799, + -0.003945325966924429, + 0.013851596973836422, + 0.013574035838246346, + 0.016323206946253777, + -0.024412117898464203, + -0.0024451769422739744, + 0.03637365996837616, + -0.06391824781894684, + 0.029024910181760788, + 0.0028433441184461117 + ] + }, + { + "id": "448fbc1e-99ab-46dd-a405-07f79ed2906b", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jay22", + "reviewDate": "2021-03-04T18:36:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "35be0a22-9a5d-46eb-951b-8e385d912361", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laura31", + "reviewDate": "2022-11-21T14:28:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "44b2ec75-3b9a-4e22-bb73-eb1192302ec1", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mwilkinson", + "reviewDate": "2021-10-25T01:43:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c283f5ae-df4a-40f0-9841-f2633c8f992d", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xwatson", + "reviewDate": "2021-07-12T00:03:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "30978d29-24a5-4aac-a5fd-9ad38a4bdfe5", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andrew69", + "reviewDate": "2021-12-02T09:10:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0b3a9223-8544-483b-a363-8806310994c9", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vickie76", + "reviewDate": "2022-02-27T19:29:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e50ccd38-6e04-48a7-b7f6-c40acc3b6d47", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnserrano", + "reviewDate": "2022-03-26T19:00:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "65bb4d74-ec9e-42d4-b41a-a574aaa613b2", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertmartin", + "reviewDate": "2021-05-09T10:23:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bd6f0af7-30d1-4464-a2a7-7dc03d2fd7b0", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniecallahan", + "reviewDate": "2021-08-03T01:15:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4654e9fa-b730-4fdf-b778-b85adc05bf17", + "productId": "971acec3-7fb4-40bd-b327-0ba1e3254665", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashley59", + "reviewDate": "2021-04-03T15:47:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Mini (Gold)", + "description": "This Amazing Speaker Mini (Gold) is rated 4.3 out of 5 by 24.\n\nRated 5 out of 5 by Dainn from Best Speaker I buy this speaker in the US. It is extremely quiet and comes with some of the most amazing", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-07-07T19:55:51", + "price": 777.32, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-09-03T10:30:52", + "newPrice": 762.72 + }, + { + "priceDate": "2022-05-02T10:30:52", + "newPrice": 829.2 + }, + { + "priceDate": "2022-12-29T10:30:52", + "newPrice": 746.83 + }, + { + "priceDate": "2023-01-12T10:30:52", + "newPrice": 777.32 + } + ], + "descriptionVector": [ + -0.04041759669780731, + 0.04780225083231926, + -0.0188693106174469, + -0.0181005597114563, + -0.016306811943650246, + -0.042094867676496506, + -0.06615906208753586, + 0.020698001608252525, + 0.015899140387773514, + 0.1237454041838646, + -0.047988615930080414, + -0.011537068523466587, + -0.03296305239200592, + -0.023458512499928474, + -0.008165053091943264, + 0.000557270715944469, + 0.027511920779943466, + -0.0184849351644516, + 0.011682665906846523, + 0.0317051000893116, + 0.03785509616136551, + -0.10482949763536453, + -0.00035889545688405633, + 0.05903065577149391, + -0.020989196375012398, + -0.006557667627930641, + -0.029259078204631805, + 0.05036475136876106, + 0.03326589614152908, + 0.009155109524726868, + 0.05129656940698624, + 0.018892604857683182, + 0.008252411149442196, + 0.025624988600611687, + -0.034430667757987976, + 0.08763746172189713, + 0.028723282739520073, + -0.003284657606855035, + -0.0329863503575325, + 0.07016588002443314, + -0.0030982941389083862, + 0.018554821610450745, + 0.019311923533678055, + -0.07142383605241776, + 0.05092384293675423, + 0.025205671787261963, + -0.006755678914487362, + 0.07161019742488861, + 0.019055673852562904, + 0.010727551765739918, + -0.027115898206830025, + 0.007291474379599094, + -0.050411343574523926, + 0.042467594146728516, + 0.004734799265861511, + -0.02995794080197811, + -0.04652100428938866, + 0.07221587747335434, + 0.05600224807858467, + -0.05665452033281326, + 0.05432497709989548, + -0.01860141195356846, + -0.018286924809217453, + -0.01963805966079235, + -0.03135566785931587, + -0.010215052403509617, + -0.019707946106791496, + 0.039555665105581284, + -0.03636419028043747, + 0.0717499703168869, + 0.09471927583217621, + 0.004606673959642649, + -0.021559933200478554, + 0.012742607854306698, + 0.06466815620660782, + -0.03172839432954788, + 0.03557214513421059, + 0.06462156027555466, + -0.020162208005785942, + 0.05269429460167885, + 0.0666249692440033, + -0.0050405520014464855, + 0.0007214308134280145, + -0.019556526094675064, + 0.03261362388730049, + -0.026649989187717438, + -0.011985505931079388, + -0.12346585839986801, + -0.013546301051974297, + 0.045379526913166046, + -0.022095728665590286, + 0.025485215708613396, + -0.006144173443317413, + 0.013697721064090729, + 0.03561873361468315, + 0.02555510215461254, + 0.0018170446855947375, + 0.027721578255295753, + -0.09737496078014374, + -0.00412038154900074, + 0.006313065532594919, + -0.023365331813693047, + -0.05274088680744171, + 0.000810972647741437, + -0.014000562019646168, + 0.053532931953668594, + 0.01125752367079258, + -0.028397146612405777, + 0.05521020293235779, + -0.0870317816734314, + -0.008258234709501266, + 0.02478635311126709, + -0.027651691809296608, + -0.018275275826454163, + 0.04482043534517288, + 0.0463346391916275, + 0.0028798992279917, + -0.029259078204631805, + -0.08120791614055634, + -0.036573849618434906, + -0.0069012753665447235, + 0.013488062657415867, + -0.028210783377289772, + 0.005168676842004061, + 0.022992603480815887, + 0.011892324313521385, + 0.044867027550935745, + 0.050504524260759354, + 0.008561075665056705, + -0.04291020706295967, + -0.022235501557588577, + 0.04947952553629875, + 0.004111645743250847, + 0.017413344234228134, + -0.04475054889917374, + 0.014221868477761745, + 0.02667328342795372, + 0.02227044478058815, + 0.02466987632215023, + 0.00042113795643672347, + -0.008386360481381416, + 0.03256703168153763, + 0.03233407810330391, + 0.013441471382975578, + -0.06909428536891937, + -0.020406808704137802, + -0.052414748817682266, + 0.01070425659418106, + -0.051156796514987946, + 0.007809797767549753, + 0.013639482669532299, + -0.07235565036535263, + -0.02266646735370159, + -0.08633291721343994, + 0.008100991137325764, + 0.09923859685659409, + -0.08633291721343994, + -0.020162208005785942, + -0.04526304826140404, + 0.058844294399023056, + -0.032636918127536774, + -0.05702724680304527, + 0.011286643333733082, + -0.016691185534000397, + -0.013313346542418003, + 0.04405168443918228, + 0.01786760613322258, + 0.10659995675086975, + -0.09476587176322937, + 0.030167600139975548, + 0.050784070044755936, + -0.013674425892531872, + -0.0014909084420651197, + -0.02881646528840065, + -8.38999985717237e-05, + 0.00040657829958945513, + 0.04896702617406845, + 0.01635340228676796, + -0.03394146263599396, + -0.019696298986673355, + -0.0014246620703488588, + 0.10734540969133377, + -0.013103687204420567, + -0.005919954739511013, + 0.02501930668950081, + 0.007792326156049967, + 0.039788618683815, + -0.03596816584467888, + -0.035292599350214005, + 0.050131797790527344, + -0.013697721064090729, + -0.009457950480282307, + -0.058192022144794464, + -0.019975842908024788, + -0.042211346328258514, + 0.020663060247898102, + 0.0468471385538578, + 0.02564828470349312, + -0.0468471385538578, + -0.020721297711133957, + -0.02581135183572769, + 0.10501586645841599, + 0.1026863232254982, + -0.019824422895908356, + 0.002711007371544838, + -0.11433403939008713, + 0.013301698490977287, + 0.06028861179947853, + 0.013406528159976006, + 0.020034082233905792, + 0.026976125314831734, + -0.009766614995896816, + -0.04302668571472168, + 0.027605101466178894, + 0.051902249455451965, + 0.06839542835950851, + -0.009574427269399166, + 0.03419771417975426, + -0.02590453438460827, + -0.06313065439462662, + 0.03047044202685356, + -0.03501305356621742, + 0.02202584221959114, + 0.049386341124773026, + -0.1179681345820427, + 3.219048085156828e-05, + -0.005698648281395435, + -0.04048748314380646, + 0.04714997857809067, + -0.0013067288091406226, + -0.03184487298130989, + 0.01560794748365879, + -0.036946576088666916, + 0.033894870430231094, + -0.01459459587931633, + 0.022223854437470436, + 0.0052472990937530994, + -0.0043154810555279255, + -0.05045793205499649, + 0.09341473132371902, + 0.0015855461824685335, + 0.04577554762363434, + -0.06806928664445877, + -0.027395442128181458, + -0.009830677881836891, + -0.050877250730991364, + 0.07282155752182007, + -0.009987921454012394, + -0.09634996205568314, + 0.017576413229107857, + -0.11666359007358551, + -0.041442595422267914, + -0.05162270367145538, + 0.042863618582487106, + -0.039299413561820984, + 0.020558230578899384, + 0.11442722380161285, + -0.057167019695043564, + 0.06499429047107697, + -0.07645565271377563, + 0.009795734658837318, + -0.051389750093221664, + -0.014245164580643177, + 0.021723002195358276, + -0.08353746682405472, + 0.009778263047337532, + 0.04419145733118057, + -0.024832943454384804, + 0.06834883242845535, + -0.0070410482585430145, + -0.07468519359827042, + -0.03210112079977989, + 0.0001317648566327989, + -0.01684260554611683, + -0.07007269561290741, + 0.06741701811552048, + -0.008543604053556919, + -0.04437782242894173, + 0.0031856519635766745, + -0.020360218361020088, + 0.11983176320791245, + 0.08241928368806839, + 0.09089882671833038, + -0.011973858810961246, + 0.01975453644990921, + -0.026603396981954575, + 0.0002855511847883463, + 0.022701410576701164, + -0.05972952023148537, + -0.02706930600106716, + 0.006627554073929787, + 0.01784431003034115, + 0.01485084556043148, + 0.05847156420350075, + -0.012381528504192829, + 0.041349414736032486, + -0.009067751467227936, + 0.011164342053234577, + -0.0437721386551857, + 0.023691467940807343, + 0.05572270229458809, + 0.0492931604385376, + -0.04463407024741173, + -0.08162723481655121, + 0.03161191940307617, + 0.02125709317624569, + -0.03976532444357872, + 0.03589827939867973, + -0.0675101950764656, + 0.00676732650026679, + 0.07100451737642288, + -0.002555218990892172, + -0.04090680181980133, + -0.018053969368338585, + 0.07366019487380981, + -0.03331248462200165, + -0.03133237361907959, + 0.0382511205971241, + 0.036923278123140335, + 0.04568236693739891, + 0.005719031672924757, + -0.046497706323862076, + -0.037692029029130936, + 0.03457044064998627, + -0.047382935881614685, + -0.011729256249964237, + 0.04943293333053589, + -0.10110223293304443, + 0.0817670077085495, + 0.05385906621813774, + 0.028094306588172913, + -0.08092837780714035, + 0.04151248186826706, + -0.02114061638712883, + 0.044238049536943436, + -0.008211644366383553, + -0.005721943452954292, + 0.011752551421523094, + 0.05637497454881668, + 0.054045431315898895, + -0.022095728665590286, + -0.06741701811552048, + 0.059682928025722504, + 0.0003361459821462631, + 0.03841418772935867, + -0.09094541519880295, + -0.02138521894812584, + -0.0045804670080542564, + 0.0581454299390316, + -0.05586247518658638, + 0.0011502125998958945, + -0.008357240818440914, + 0.010547012090682983, + -0.010849853046238422, + -0.0023673996329307556, + -0.024180671200156212, + -0.02316731959581375, + -0.05017838627099991, + 0.07347383350133896, + 0.03585169091820717, + 0.02466987632215023, + -0.041722141206264496, + 0.024879535660147667, + -0.014757663942873478, + 0.029655100777745247, + -0.025322148576378822, + -0.010797438211739063, + 0.005800565704703331, + -0.06904769688844681, + -0.023854535073041916, + -0.05348633974790573, + -0.033918168395757675, + -0.06778974086046219, + 0.0364573709666729, + -0.007536076474934816, + -0.011997153982520103, + 0.004164060577750206, + -0.028164193034172058, + 0.008351417258381844, + 0.033894870430231094, + 0.011816614307463169, + 0.05688747391104698, + 0.05684088543057442, + -0.007640905678272247, + 0.03538578003644943, + 0.03783180192112923, + 0.0037767740432173014, + 0.03058691881597042, + 0.03582839295268059, + 0.006388775538653135, + -0.039322711527347565, + -0.07049201428890228, + -0.02011561580002308, + 0.04421475529670715, + 0.07300792634487152, + -0.06112724542617798, + 0.039695437997579575, + 0.07608292251825333, + 0.006872156169265509, + -0.02741873823106289, + 0.006936218589544296, + 0.034803394228219986, + 0.015584652312099934, + -0.028863055631518364, + -0.03571191802620888, + -0.08749768882989883, + -0.029911350458860397, + 0.08456246554851532, + -0.06010224670171738, + -0.059962473809719086, + -0.004609586205333471, + -0.06112724542617798, + -0.009283234365284443, + -0.014990618452429771, + -0.04065055027604103, + 0.04379543662071228, + 0.05623520165681839, + -0.01327840331941843, + 0.08283860236406326, + 0.01056448370218277, + 0.06308406591415405, + 0.009085223078727722, + 0.0096909049898386, + -0.014047153294086456, + -0.06965337693691254, + 0.0675101950764656, + 0.0367136187851429, + -0.0202786847949028, + 0.0030953821260482073, + -0.057679519057273865, + -0.025392035022377968, + -0.05194884166121483, + -0.009388064034283161, + 0.022829536348581314, + -0.050504524260759354, + -0.0011261891340836883, + -0.0460783876478672, + -0.012125278823077679, + -0.02289942279458046, + 0.0008204364567063749, + -0.00651107681915164, + -0.0232954453676939, + 0.024436920881271362, + 0.03156532719731331, + -0.12150903791189194, + -0.05073747783899307, + -0.06504087895154953, + 0.038833506405353546, + 0.050271570682525635, + -0.004498932510614395, + 0.023738058283925056, + 0.010424711741507053, + -0.010185932740569115, + 0.03797157481312752, + 0.03179828077554703, + 0.02203749120235443, + -0.0025901622138917446, + 0.11955222487449646, + -0.044867027550935745, + -0.043352823704481125, + -0.07734087854623795, + 0.03070339560508728, + -0.05861133709549904, + 0.04230452701449394, + -0.03606134653091431, + -0.062198836356401443, + -0.022806240245699883, + -0.08260564506053925, + -0.030353963375091553, + -0.0025916181039065123, + -0.028257373720407486, + -0.030167600139975548, + 0.009114342741668224, + 0.0032875696197152138, + -0.030610214918851852, + -0.03683009743690491, + -0.03627100586891174, + -0.04591532051563263, + 0.07133065164089203, + 0.00993550755083561, + -0.02944544143974781, + 0.01862470805644989, + 0.0014923644484952092, + 0.0450533889234066, + 0.11610449850559235, + -0.012299994938075542, + 0.011309938505291939, + -0.004865835886448622, + 0.035292599350214005, + 0.07584996521472931, + -0.017087208107113838, + 0.08409655839204788, + 0.04099998250603676, + -0.047988615930080414, + 0.017914196476340294, + -0.009603546932339668, + -0.05674770474433899, + -0.034780099987983704, + -0.013243460096418858, + 0.03317271173000336, + 0.004860012326389551, + -0.030726691707968712, + -0.029981236904859543, + 0.06317724287509918, + -0.017646299675107002, + -0.019044026732444763, + -0.03599146008491516, + -0.017541470006108284, + -0.06024201959371567, + 0.039066459983587265, + 0.03147214651107788, + -0.01246306300163269 + ] + }, + { + "id": "614284ed-2e54-4b5b-b03e-074f5af926c0", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "angela83", + "reviewDate": "2022-12-29T15:24:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "32085998-1672-42d0-b9ea-0f44a4da6a08", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "patrick23", + "reviewDate": "2022-11-12T09:26:55", + "stars": 4, + "verifiedUser": false + }, + { + "id": "273386c6-99c2-436e-84ee-878ff61f9646", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "jamesjohnson", + "reviewDate": "2022-07-15T00:12:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f9660944-f332-4bc6-8f54-b8bd125406f2", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "fcarlson", + "reviewDate": "2022-02-01T07:10:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eb772846-1ad8-44ac-a07e-3e9069df00db", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "cpearson", + "reviewDate": "2021-09-03T10:30:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "44ab1786-e4db-4df1-98dc-c4f95fc11fa3", + "productId": "8beec1bb-df5b-4e79-a2ab-d487cae686fe", + "category": "Media", + "docType": "customerRating", + "userName": "randy06", + "reviewDate": "2022-05-04T13:25:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "product", + "name": "Basic Speaker 3000 (Silver)", + "description": "This Basic Speaker 3000 (Silver) is in this category. To use your Speaker, just copy and paste the code below: {@link #ShowLanguage}. When you see", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-02-02T08:28:06", + "price": 247.35, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2021-01-12T05:46:05", + "newPrice": 264.65 + }, + { + "priceDate": "2021-06-01T05:46:05", + "newPrice": 226.22 + }, + { + "priceDate": "2021-10-19T05:46:05", + "newPrice": 243.12 + }, + { + "priceDate": "2022-03-08T05:46:05", + "newPrice": 253.77 + }, + { + "priceDate": "2022-07-26T05:46:05", + "newPrice": 232.23 + }, + { + "priceDate": "2024-06-29T05:46:05", + "newPrice": 247.35 + } + ], + "descriptionVector": [ + 0.045758847147226334, + -0.011572325602173805, + -0.01613704301416874, + 0.02514084242284298, + -0.015145926736295223, + -0.0525151863694191, + -0.025406070053577423, + 0.01931978203356266, + 0.02382866106927395, + 0.12060903757810593, + -0.034423828125, + 0.008159257471561432, + 0.02410784922540188, + -0.08068521320819855, + -0.0002619564766064286, + 0.006386416032910347, + -0.02641114592552185, + 0.0479644276201725, + -0.048020265996456146, + 0.007775374222546816, + 0.04369285702705383, + -0.02211165800690651, + -0.03478677198290825, + 0.030626878142356873, + -0.045675091445446014, + 0.0009928608778864145, + -0.016318514943122864, + 0.02359135076403618, + 0.02696952037513256, + -0.05868523195385933, + 0.008298851549625397, + 0.029258860275149345, + -0.008745551109313965, + -0.025559624657034874, + -0.07588318735361099, + -0.022935260087251663, + 0.04843904823064804, + 0.011649101972579956, + -0.0896192193031311, + -0.009255068376660347, + 0.051454272121191025, + 0.038946669548749924, + -0.007045996841043234, + -0.0319390594959259, + -0.00884326733648777, + 0.04905325919389725, + 0.011530447751283646, + 0.030571041628718376, + -0.023842619732022285, + -0.044753771275281906, + 0.004037750419229269, + 0.0003435316029936075, + -0.06019284576177597, + 0.022739829495549202, + 0.01972460374236107, + 0.010755701921880245, + 0.034200478345155716, + 0.06996440887451172, + 0.0016620386159047484, + -0.010546310804784298, + 0.038025349378585815, + -0.009604052640497684, + 0.029621804133057594, + 0.05935528129339218, + -0.05745680630207062, + 0.044279150664806366, + -0.02354947291314602, + 0.061923809349536896, + 0.001422984292730689, + 0.06879182159900665, + 0.06700502336025238, + -0.009227150119841099, + 0.010832478292286396, + 0.08504053950309753, + 0.015411155298352242, + -0.0005269665853120387, + 6.390778435161337e-05, + 0.045954275876283646, + -0.021525362506508827, + -0.07968013733625412, + -0.030906066298484802, + -0.024010132998228073, + -0.015955571085214615, + -0.01899871602654457, + 0.008424485102295876, + -0.053520262241363525, + -0.018552014604210854, + -0.08012683689594269, + -0.020925110206007957, + 0.07861922681331635, + -0.02091114968061447, + 0.018538055941462517, + 0.04525630921125412, + 0.0023224917240440845, + 0.025196680799126625, + 0.03704819455742836, + -0.04252026975154877, + 0.010713824070990086, + -0.08822327852249146, + -0.03947712481021881, + 0.07565983384847641, + -0.012682096101343632, + -0.046512652188539505, + -0.08325374126434326, + 0.03771824389696121, + 0.06728421151638031, + 0.02099490724503994, + -0.006703991908580065, + 0.013980318792164326, + -0.02366114780306816, + 0.000370577909052372, + -0.008061541244387627, + 0.04701519012451172, + -0.0128705482929945, + 0.067395880818367, + 0.006145616993308067, + -0.02477789856493473, + -0.07979181408882141, + 0.029230941087007523, + 0.03322332352399826, + 0.028700483962893486, + -0.08029434829950333, + 0.08956337720155716, + -0.00934580434113741, + -0.00684358598664403, + -0.03023601695895195, + 0.020827393978834152, + 0.016164962202310562, + 0.028672564774751663, + 0.007510146126151085, + -0.03609895706176758, + 0.0026191286742687225, + -0.004170364700257778, + 0.042492352426052094, + 0.0326649472117424, + 0.06454817205667496, + -0.015578667633235455, + -0.002512688282877207, + -0.07069029659032822, + 0.011551386676728725, + -0.0847613513469696, + 0.09481210261583328, + 0.10173595696687698, + 0.04882990941405296, + -0.0854872390627861, + -0.04701519012451172, + -0.04299489036202431, + 0.0792892724275589, + -0.04640097916126251, + -0.011481589637696743, + -0.0336979404091835, + -0.058071017265319824, + 0.048941586166620255, + 0.00137412641197443, + 0.011041869409382343, + 0.005335972644388676, + -0.028100231662392616, + 0.046512652188539505, + 0.04123600572347641, + 0.08381211757659912, + -0.047238539904356, + -0.05829436704516411, + -0.04813193902373314, + -0.0227956660091877, + -0.017463183030486107, + 0.04366493970155716, + 0.09363951534032822, + 0.03126901015639305, + -0.09687809646129608, + 0.04626138508319855, + -0.052012648433446884, + -0.02445683255791664, + -0.005269665736705065, + 0.018621811643242836, + -0.04955579712986946, + -0.07817252725362778, + 0.02234896644949913, + 0.021092621609568596, + -0.03383753448724747, + 0.010336920619010925, + -0.0029262348543852568, + 0.07409638911485672, + -0.025796933099627495, + -0.014189708977937698, + -0.044362906366586685, + 0.060025330632925034, + 0.06365477293729782, + -0.0081662368029356, + -0.024945411831140518, + -0.009980956092476845, + 0.003824870102107525, + -0.013833745382726192, + 0.013149735517799854, + 0.020576125010848045, + -0.02561546117067337, + -0.04980706796050072, + 0.031659871339797974, + 0.0021637037862092257, + -0.010853417217731476, + 0.04433498904109001, + -0.054553255438804626, + 0.020017750561237335, + 0.05047711730003357, + 0.006690032780170441, + -0.08012683689594269, + -0.003573601134121418, + 0.010860397480428219, + 0.06806593388319016, + -0.054357822984457016, + -0.004247141070663929, + 0.04534006491303444, + -0.02406596951186657, + -0.010923214256763458, + -0.007545044645667076, + 0.08012683689594269, + 0.036238547414541245, + -0.03889083117246628, + -0.016946686431765556, + 0.004323917906731367, + -0.05402280017733574, + 0.016081204637885094, + -0.047545645385980606, + 0.009953037835657597, + 0.0201573446393013, + -0.1237359419465065, + -0.05243143066763878, + 0.029314696788787842, + -0.02737434394657612, + 0.03917001932859421, + 0.04067763313651085, + -0.04668016359210014, + 0.026550740003585815, + 0.03908626362681389, + 0.04131976515054703, + -0.020422572270035744, + 0.013875623233616352, + -0.0023364510852843523, + -0.08157861232757568, + -0.07739079743623734, + 0.04963955283164978, + -0.06298471987247467, + 0.04112433269619942, + -0.023088812828063965, + -0.05011417344212532, + -0.0012179558398202062, + 0.008815348148345947, + 0.08224866539239883, + -0.10262935608625412, + -0.04397204518318176, + -0.0517892986536026, + -0.10145676881074905, + 0.05795934423804283, + -0.05301772430539131, + 0.015466992743313313, + -0.04201773181557655, + 0.06186797097325325, + 0.07359384745359421, + -0.009366743266582489, + -0.016192879527807236, + 0.01888704113662243, + -0.03799743205308914, + -0.0015931142261251807, + -0.029147183522582054, + 0.0056535485200583935, + -0.03249743580818176, + -0.050253767520189285, + 0.017868006601929665, + -0.10664965957403183, + 0.0008323279907926917, + -0.0187614057213068, + -0.02151140384376049, + -0.014908617362380028, + -0.04051011800765991, + 0.027304546907544136, + 0.04668016359210014, + 0.038862913846969604, + -0.05952279269695282, + -0.026397187262773514, + -0.013170674443244934, + -0.03537306934595108, + 0.050030417740345, + 0.07136034965515137, + 0.03573601320385933, + 0.02645302377641201, + -0.0029279799200594425, + -0.04254818707704544, + -0.007831212133169174, + 0.057065945118665695, + -0.02625759318470955, + -0.041933976113796234, + -0.0069657303392887115, + -0.045675091445446014, + 0.020869271829724312, + 0.03378169983625412, + 0.05795934423804283, + 0.0520964041352272, + -0.00025977531913667917, + -0.03880707547068596, + -0.014824860729277134, + 0.028379417955875397, + -0.040342606604099274, + 0.0008611192461103201, + -0.048941586166620255, + -0.10536539554595947, + 2.331107225472806e-06, + 0.0772232860326767, + 0.0458984412252903, + -0.0028424786869436502, + -0.0812435895204544, + -0.037550732493400574, + 0.07811668515205383, + -0.06008116900920868, + -0.07124867290258408, + -0.04824361577630043, + 0.03124109096825123, + -0.017588818445801735, + 0.01422460749745369, + 0.04469793289899826, + -0.01414085179567337, + 0.017142118886113167, + -0.001881026430055499, + -0.03333499655127525, + -0.1069846823811531, + 0.011020930483937263, + -0.007852151058614254, + 0.03796951100230217, + 0.01832866482436657, + 0.0018531075911596417, + 0.04835528880357742, + 0.01908247172832489, + -0.0163324736058712, + -0.04416747763752937, + 0.013624354265630245, + -0.004278549924492836, + -0.012200498022139072, + -0.08632480353116989, + 0.01087435707449913, + -0.04556341469287872, + -0.002598189515992999, + -0.035763930529356, + 0.030961904674768448, + 0.0005950185586698353, + 0.06851263344287872, + -0.048020265996456146, + 0.02911926619708538, + -0.06683751195669174, + 0.043162401765584946, + -0.020534247159957886, + -0.0070320372469723225, + -0.015997448936104774, + 0.0016576763009652495, + -0.011635142378509045, + 0.11078163236379623, + -0.035763930529356, + 0.0406217947602272, + -0.04419539496302605, + -0.05558624863624573, + -0.02299109846353531, + 0.04235275834798813, + 0.019431456923484802, + -0.04612179100513458, + -0.001525934669189155, + 0.039895907044410706, + -0.02127409353852272, + 0.015885774046182632, + 0.0075590042397379875, + -0.011879432015120983, + 0.0009029973880387843, + 0.03953296318650246, + 0.01975252293050289, + -0.04709894582629204, + -0.0044844504445791245, + -0.07956846058368683, + 0.02382866106927395, + -0.009443520568311214, + 0.03277662396430969, + 0.06745172291994095, + -0.04891366511583328, + 0.00018005417950917035, + 0.02056216634809971, + 0.05273853614926338, + 0.03238575905561447, + 0.04277154058218002, + -0.06337558478116989, + 0.01661166176199913, + -0.046708084642887115, + -0.03813702613115311, + 0.03936545178294182, + -0.027346424758434296, + 0.0010905765229836106, + 0.06862431019544601, + 0.0444466657936573, + -0.10547707229852676, + 0.009555195458233356, + 0.039895907044410706, + 0.04701519012451172, + -0.014308364130556583, + 0.040091339498758316, + 0.007475247606635094, + -0.017072321847081184, + -0.042492352426052094, + 0.00193686387501657, + -0.0014849290018901229, + -0.040091339498758316, + -0.05086797848343849, + -0.041738543659448624, + -0.023605311289429665, + 0.04522838816046715, + -0.025085005909204483, + -0.0015172100393101573, + -0.0025231577455997467, + -0.044083721935749054, + -0.0057966322638094425, + -0.008578038774430752, + -0.026997439563274384, + -0.00041856325697153807, + 0.022572316229343414, + 0.12407096475362778, + 0.024875614792108536, + -0.008263953030109406, + 0.10363443195819855, + -0.015159886330366135, + -0.0006674328469671309, + 0.06142127141356468, + -0.07096948474645615, + 0.00487880315631628, + 0.01549491100013256, + -0.003943524789065123, + 0.027430180460214615, + -0.07789333909749985, + -0.059969495981931686, + 0.0035910503938794136, + -0.02039465308189392, + 0.04768523946404457, + -0.018035518005490303, + 0.03386545553803444, + -0.03255327418446541, + 0.02142764814198017, + -0.0695735439658165, + 0.007796313613653183, + -0.0413476824760437, + -0.0062363529577851295, + 0.03581976890563965, + 0.08576642721891403, + -0.08638063818216324, + -0.05452533811330795, + 0.05494411662220955, + 0.00029205638566054404, + 0.06170045584440231, + 0.012472705915570259, + -0.04598219692707062, + -0.03389337286353111, + -0.0737055242061615, + 0.04489336535334587, + -0.008305830880999565, + -0.03040352836251259, + -0.04458625987172127, + 0.08677150309085846, + 0.011369914747774601, + 0.017979681491851807, + -0.023409878835082054, + 0.03461926057934761, + 0.04690351337194443, + 0.08967505395412445, + 0.01792384311556816, + 0.029175102710723877, + -0.019822318106889725, + 0.01416179072111845, + -0.002001425949856639, + 0.03210657462477684, + -0.03154819831252098, + -0.06979689747095108, + 0.03863956406712532, + -0.04265986382961273, + -0.06555324792861938, + -0.06817761063575745, + 0.04098473861813545, + -0.013694151304662228, + 0.037662405520677567, + 0.03087814711034298, + -0.040091339498758316, + 0.003824870102107525, + -0.070299431681633, + 0.010183366946876049, + 0.05795934423804283, + -0.04469793289899826, + -0.013184634037315845, + -0.005513954907655716, + -0.02359135076403618, + 0.09202022850513458, + 0.054720766842365265, + 0.10022834688425064, + -0.0451725535094738, + 0.0406217947602272, + -0.03771824389696121, + -0.07253293693065643, + -0.04299489036202431, + 0.006602786481380463, + -0.001687339972704649, + 0.09581717848777771, + -0.034675098955631256, + -0.011621183715760708, + 0.024708101525902748, + -0.012388949282467365, + 0.03956088051199913, + 0.013854684308171272, + -0.06644664704799652, + -0.027402261272072792, + -0.06304055452346802, + 0.10235016793012619, + 0.010546310804784298, + -0.05125884339213371 + ] + }, + { + "id": "cec9a6fb-7ce6-4031-a476-c261aa0106dc", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "oscar13", + "reviewDate": "2021-10-12T03:54:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a7ad5eb6-6bd6-4f3a-8f88-23dfcc805282", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "lori77", + "reviewDate": "2021-09-09T17:06:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6bf93093-5dfc-4637-bfbe-68ee9b25c7b7", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "smitchell", + "reviewDate": "2021-01-12T05:46:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5e5c54a5-a3c0-49ae-9835-4253f8951928", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "nelsondonna", + "reviewDate": "2022-07-29T01:25:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bdba6bdb-48ce-4fee-89f8-0706f08d7f4f", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "edwingardner", + "reviewDate": "2021-08-02T18:18:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "73464d64-e837-41e9-b966-897c5930b37b", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "scottjennifer", + "reviewDate": "2021-07-29T23:09:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bd13242e-f693-40fc-8f60-b8f5d81a14f7", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "debra84", + "reviewDate": "2022-04-05T21:56:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "02c59198-f19f-4cec-b55d-bbabbdaa9054", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "sanchezsusan", + "reviewDate": "2022-05-27T02:51:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "193f8aa2-bb2e-4f93-be83-a35b007a1693", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "ronald57", + "reviewDate": "2021-02-12T05:37:09", + "stars": 4, + "verifiedUser": false + }, + { + "id": "80ca7eef-0b27-48cd-8124-4da5947e9a09", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "robert72", + "reviewDate": "2022-06-06T05:45:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6caa4ca7-72b9-40db-afb9-c1343cacf12b", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "williamhunt", + "reviewDate": "2021-12-29T18:58:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "947010a9-3df3-4b81-80b1-b021854d670c", + "productId": "05e1d139-b3fc-4a8d-9f81-6b574f48574b", + "category": "Media", + "docType": "customerRating", + "userName": "njohnson", + "reviewDate": "2021-06-30T13:12:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "14206299-ed09-4ade-b676-924565e36410", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Super (Silver)", + "description": "This Luxe Stand Super (Silver) is part of the Limited Edition. This item ships in 2 packs, which can be sorted by the number of packs in a single set. Req.", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-01-26T16:41:47", + "price": 374.6, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-03-02T15:19:13", + "newPrice": 357.5 + }, + { + "priceDate": "2022-09-30T15:19:13", + "newPrice": 361.09 + }, + { + "priceDate": "2025-02-13T15:19:13", + "newPrice": 374.6 + } + ], + "descriptionVector": [ + 0.026766985654830933, + 0.0516209602355957, + -0.04727872461080551, + -0.009868713095784187, + 8.018329390324652e-05, + -0.1291131228208542, + 0.0009047901839949191, + 0.06619629263877869, + -0.009762434288859367, + 0.02852817252278328, + -0.0068321856670081615, + 0.07597390562295914, + -0.01802178844809532, + -0.07087253779172897, + 0.05757255107164383, + -0.02284986525774002, + -0.028285250067710876, + 0.053959086537361145, + 0.03303741291165352, + -0.03537553921341896, + 0.07834240049123764, + -0.026766985654830933, + -0.024504773318767548, + 0.03634722903370857, + -0.022606944665312767, + -0.01852281577885151, + -0.0036874825600534678, + -0.002554478356614709, + -0.02568901889026165, + 0.0131102055311203, + 0.013952841982245445, + 0.026706255972385406, + 0.005750423297286034, + 0.03780476003885269, + -0.030866296961903572, + -0.010073678568005562, + 0.09218896180391312, + 0.06856478005647659, + 0.03473787009716034, + 0.0039892373606562614, + 0.01768776960670948, + -0.07749217003583908, + -0.04664105549454689, + 0.01526613999158144, + 0.05401981621980667, + -0.017945874482393265, + -0.0004533439932856709, + -0.02696436084806919, + -0.01925158128142357, + -0.06413145363330841, + -0.027419839054346085, + 0.014066711999475956, + -0.07038670033216476, + -0.013186118565499783, + -0.016974186524748802, + -0.0690506249666214, + -0.020693931728601456, + 0.2205733209848404, + 0.008547823876142502, + 0.05666159465909004, + -0.04463694617152214, + -0.0524408221244812, + -0.00597057119011879, + 0.012077786028385162, + -0.06625702232122421, + 0.020162539556622505, + 0.019934799522161484, + 0.018082518130540848, + 0.000230823497986421, + 0.011075732298195362, + -0.03625613451004028, + 0.04199516773223877, + 0.03282485902309418, + 0.09704740345478058, + 0.08897024393081665, + 0.028664816170930862, + 0.03619540110230446, + -0.038260240107774734, + 0.01632133312523365, + -0.00761029589921236, + 0.05450566112995148, + 0.017961056903004646, + -0.002691122004762292, + 0.008016431704163551, + 0.04487986862659454, + -0.014438685961067677, + 0.010756896808743477, + -0.12522637844085693, + 0.007765918038785458, + 0.04087165370583534, + 0.00023604252783115953, + 0.037652935832738876, + 0.014066711999475956, + -0.03674197569489479, + 0.031640611588954926, + 0.06965792924165726, + 0.007097881752997637, + 0.05180315300822258, + -0.0063691153191030025, + -0.07591317594051361, + 0.007932926528155804, + -0.04287576302886009, + -0.014195763505995274, + -0.005773196928203106, + 0.033948373049497604, + 0.02240956947207451, + 0.05717780441045761, + -0.020876122638583183, + -0.003898141672834754, + -0.19288019835948944, + 0.10366703569889069, + -0.01799142360687256, + -0.0046155210584402084, + -0.005089978687465191, + -0.003977850545197725, + 0.022561395540833473, + -0.06704651564359665, + -0.023867102339863777, + -0.00634634168818593, + -0.03525407984852791, + 0.048371877521276474, + -0.0032908362336456776, + 0.005192461423575878, + -0.04263284057378769, + -0.00895016361027956, + -0.04609448090195656, + 0.016290968284010887, + 0.011872820556163788, + -0.03989996388554573, + -0.04560863599181175, + -0.014749930240213871, + -0.014370364136993885, + -0.023502718657255173, + -0.0015799429966136813, + -0.09953735768795013, + 0.06631775200366974, + 0.017414482310414314, + 0.031731706112623215, + -0.05930337309837341, + 0.034494947642087936, + -0.0634026825428009, + -0.0315798819065094, + 0.09419307112693787, + 0.02707063779234886, + -0.023335710167884827, + 0.0029530224855989218, + -0.04008215665817261, + 0.017961056903004646, + -0.028148606419563293, + 0.06066980957984924, + 0.08654101938009262, + -0.07032596319913864, + -0.05493077263236046, + -0.03094221092760563, + 0.0023400236386805773, + 0.04919173941016197, + -0.06637848168611526, + -0.002613311167806387, + 0.02338125742971897, + 0.039323024451732635, + 0.09595425426959991, + 0.042602475732564926, + -0.030790384858846664, + 0.009466373361647129, + -0.0231535192579031, + 0.046367768198251724, + 0.07937481999397278, + 0.04612484574317932, + -0.0735446885228157, + 0.004831873811781406, + 0.058270953595638275, + -0.049434661865234375, + 0.033735815435647964, + -0.018826467916369438, + 0.10129854083061218, + 0.02559792250394821, + 0.0754273310303688, + -0.0019642533734440804, + 0.04873625934123993, + -0.011842455714941025, + 0.02886218950152397, + 0.04651959612965584, + -0.034889694303274155, + -0.0022128690034151077, + 0.03261230140924454, + -0.05168168991804123, + 0.008684467524290085, + 0.0041258810088038445, + 0.012548447586596012, + 0.03695453330874443, + 0.0022394387051463127, + 0.008464318700134754, + 0.06807893514633179, + 0.02811823971569538, + -0.051742419600486755, + -0.025142444297671318, + 0.021088680252432823, + 0.04588192328810692, + -0.0026057197246700525, + 0.043847449123859406, + -0.014666425995528698, + 0.09291772544384003, + 0.0207394789904356, + -0.022151464596390724, + 0.015197818167507648, + -0.01958560012280941, + -0.013990798033773899, + 0.08307938277721405, + 0.024049295112490654, + 0.08392960578203201, + -0.015850670635700226, + -0.006452620029449463, + -0.007393943145871162, + 0.071662038564682, + 0.005712466314435005, + 0.03212645649909973, + -0.00541640492156148, + 0.02370009385049343, + 0.00041182897984981537, + -0.028983650729060173, + 0.028573719784617424, + -0.07190495729446411, + -0.008213805966079235, + -0.027131369337439537, + -0.03813878074288368, + -0.0007918693008832633, + -0.0272831954061985, + 0.06346341222524643, + 0.0005166840273886919, + -0.036499056965112686, + 0.03443421795964241, + -0.01601768098771572, + 0.012912831269204617, + -0.020177721977233887, + -0.006805616430938244, + -0.01790032722055912, + -0.04348306730389595, + -0.07160130888223648, + -0.02578011527657509, + -0.012882466427981853, + -0.023836737498641014, + -0.03252120316028595, + -0.05128694325685501, + -0.005955388769507408, + -0.015334461815655231, + 0.012730639427900314, + 0.07670267671346664, + -0.015729209408164024, + -0.018705006688833237, + -0.02714655175805092, + -0.00442194240167737, + -0.0026057197246700525, + -0.07050815969705582, + 0.05338214710354805, + 0.044697679579257965, + 0.05429310351610184, + 0.03546663746237755, + 0.024383312091231346, + 0.004175224807113409, + 0.01727783866226673, + -0.04955612123012543, + 0.0073218257166445255, + -0.04433329403400421, + 0.05978921800851822, + -0.07123692333698273, + 0.03643832355737686, + -0.003381931921467185, + -0.07797801494598389, + -0.04415110498666763, + 0.039626676589250565, + 0.021088680252432823, + -0.0650424063205719, + 0.04223809018731117, + 0.03671161085367203, + -0.05338214710354805, + -0.015228183008730412, + -0.010460835881531239, + 0.05629721283912659, + -0.01653388887643814, + -0.09431453049182892, + 0.00826694443821907, + 0.022272925823926926, + 0.0167312640696764, + -0.08046796917915344, + 0.05392872169613838, + -0.08708759397268295, + 0.036984898149967194, + 0.002243234310299158, + -0.0302286259829998, + -0.017551125958561897, + 0.013019110076129436, + 0.010445653460919857, + 0.035861384123563766, + -0.002150240819901228, + 0.0328855887055397, + -0.024459226056933403, + 0.03904973715543747, + 0.02008662559092045, + -0.033826909959316254, + -0.06060907989740372, + -0.015562200918793678, + 0.026827717199921608, + -0.049009546637535095, + -0.02581048011779785, + -0.019236398860812187, + 0.06449583172798157, + -0.015311687253415585, + 0.03807804733514786, + -0.1345788836479187, + 0.012464943341910839, + 0.0655282512307167, + -0.01654907315969467, + -0.059333737939596176, + -0.02506653033196926, + 0.017323385924100876, + -0.0647994875907898, + 0.014491825364530087, + 0.032673031091690063, + 0.015865853056311607, + -0.00058548036031425, + -0.052683744579553604, + 0.019631147384643555, + 0.0023817759938538074, + 0.022500665858387947, + 0.11016520112752914, + -0.03908010199666023, + -0.028497805818915367, + 0.02242475189268589, + -0.043968912214040756, + -0.02240956947207451, + -0.01850763149559498, + 0.005765605717897415, + -0.013421449810266495, + -0.041327133774757385, + -0.032460473477840424, + 0.00953469518572092, + 0.046367768198251724, + -0.0282245185226202, + 0.014620877802371979, + -0.08465837687253952, + 0.0770670548081398, + 0.0444243922829628, + -0.07384833693504333, + 0.005647940095514059, + 0.06583190709352493, + 0.0036305475514382124, + -0.012700274586677551, + -0.0029150659684091806, + 0.0890917032957077, + 0.049738314002752304, + 0.0018693619640544057, + -0.06801820546388626, + -0.004611725453287363, + -0.012206838466227055, + 0.13069212436676025, + -0.0037292346823960543, + -0.025203173980116844, + 0.013497362844645977, + 0.02104313299059868, + -0.04169151559472084, + -0.01903902366757393, + -0.009489146992564201, + 0.020572470501065254, + 0.029181024059653282, + 0.0012070195516571403, + 0.04967758432030678, + 0.046064116060733795, + -0.007466061040759087, + -0.07652048021554947, + 0.011485663242638111, + -0.0473698228597641, + -0.04296685755252838, + -0.035952478647232056, + 0.026402601972222328, + 0.013664371334016323, + 0.007405330426990986, + 0.09182457625865936, + 0.02348753623664379, + 0.04071982949972153, + 0.03309814631938934, + 0.0021540364250540733, + 0.05635794252157211, + 0.04257211089134216, + 0.003228207817301154, + 0.007409126032143831, + -0.01452219020575285, + -0.05083146318793297, + 0.05414127558469772, + -0.03904973715543747, + -0.01788514479994774, + 0.0059060449711978436, + 0.012616770341992378, + 0.01884165033698082, + 0.06461729854345322, + 0.04287576302886009, + 0.04569973051548004, + 0.014415912330150604, + 0.01988925226032734, + -0.020451009273529053, + 0.024914704263210297, + 0.018492449074983597, + 0.018036970868706703, + -0.017748501151800156, + -0.07008304446935654, + -0.014309633523225784, + -0.025218356400728226, + 0.02169598639011383, + 0.09765470772981644, + 0.015228183008730412, + -0.08538714051246643, + -0.012343482114374638, + -0.08186476677656174, + -0.0009242428932338953, + 0.0032699601724743843, + 0.01831025816500187, + 0.0355880968272686, + 0.06753236055374146, + 0.03467714041471481, + 0.048371877521276474, + -0.02705545537173748, + 0.030486730858683586, + 0.030866296961903572, + -0.00931454636156559, + -0.004065150395035744, + -0.0011700118193402886, + -0.04178261384367943, + -0.056813422590494156, + -0.014074303209781647, + 0.0240948423743248, + -0.02265249192714691, + 0.04812895506620407, + -0.06224880367517471, + -0.010673392564058304, + 0.0020876124035567045, + 0.001127310679294169, + 0.0323997437953949, + -0.015137087553739548, + 0.010878358036279678, + 0.019221216440200806, + 0.03926229476928711, + 0.010840401984751225, + -0.0026322894264012575, + -0.00888943299651146, + -0.04053763672709465, + 0.02263730950653553, + -0.005716262385249138, + -0.07645975053310394, + 0.05887825787067413, + -0.010726531967520714, + 0.043634895235300064, + -0.07840313017368317, + -0.006513350643217564, + -0.10567113757133484, + -0.012973561882972717, + 0.030350087210536003, + -0.022561395540833473, + 0.04002142697572708, + 0.045547906309366226, + 0.018917564302682877, + -0.012214429676532745, + 0.009147537872195244, + 0.05684378743171692, + 0.07524514198303223, + -0.023199066519737244, + 0.02664552442729473, + -0.01820397935807705, + -0.10694648325443268, + 0.04393854737281799, + -0.01463606022298336, + 0.009208268485963345, + -0.014620877802371979, + -0.010278644040226936, + -0.021635254845023155, + -0.02673662081360817, + -0.04351343214511871, + -0.006490576546639204, + -0.004228363744914532, + -0.08854512870311737, + -0.06303830444812775, + -0.00794810988008976, + -0.028042327612638474, + 0.08471910655498505, + -0.041843343526124954, + 0.06431364268064499, + 0.06437437236309052, + -0.01988925226032734, + 0.051863882690668106, + 0.03695453330874443, + 0.034707505255937576, + 0.0583316832780838, + 0.05356433615088463, + 0.014438685961067677, + -0.027298377826809883, + -0.0024633826687932014, + -0.04126640409231186, + -0.013785832561552525, + -0.019813338294625282, + -0.06376706808805466, + -0.014119850471615791, + 0.06042688712477684, + 0.03379654511809349, + -0.07044743001461029, + -0.011341428384184837, + 0.016685716807842255, + 0.09067069739103317, + 0.0066120377741754055, + -0.06868623942136765, + 0.0385335274040699, + -0.01812806725502014, + -0.013421449810266495, + 0.012556039728224277, + 0.030395636335015297 + ] + }, + { + "id": "e4df5150-e318-4416-9665-d6e5b18c6805", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "marthamendez", + "reviewDate": "2022-09-20T08:07:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9b43a485-617d-4ade-858f-457900368f8d", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "dbutler", + "reviewDate": "2021-06-05T22:46:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "27cf490e-b25d-4a0d-9953-0fee2bf93866", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamsallison", + "reviewDate": "2021-09-22T15:45:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "917a3919-bc11-4d63-94b1-0902a52ab147", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "pereztodd", + "reviewDate": "2022-04-01T08:14:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1291f586-1db1-4bc8-80e7-7efa5c656f4e", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "kthompson", + "reviewDate": "2021-12-16T23:49:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6b645522-d327-45fb-b2fd-93ac60b6f2a1", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "fjohnston", + "reviewDate": "2021-06-15T21:52:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0a3902cd-c28a-40a4-a3f5-aa87f6cb172e", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer18", + "reviewDate": "2021-03-02T15:19:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c2d45d9f-7747-44d7-9a8c-09a146b2e106", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "ariana92", + "reviewDate": "2022-05-13T16:37:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "89356584-0f46-4dd9-b3e6-569be972f13b", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "kprice", + "reviewDate": "2021-06-06T04:14:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2e2801e9-803d-4fe2-89af-93086ffaaf2f", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "brianharris", + "reviewDate": "2021-10-11T15:44:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a0d46c94-50c6-42ea-9f58-da6377609fd1", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "smithscott", + "reviewDate": "2022-06-07T23:35:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "83170f30-4eb0-4e6e-98b6-f00362b8d33e", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "msharp", + "reviewDate": "2021-07-30T08:48:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "75c0bbcf-1c51-4b05-8a25-f6b0eff417e4", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "charleswalker", + "reviewDate": "2022-01-25T09:03:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98e0febe-e07c-4476-bcb3-6f7a541070bf", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "cassidy47", + "reviewDate": "2021-11-30T09:09:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "73ea2c6d-699d-4c58-a479-1b2dc814be98", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "adkinschristopher", + "reviewDate": "2022-09-30T22:02:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "028744ec-5b05-45fe-9fd2-4309fad7d8e2", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "dennisashley", + "reviewDate": "2021-06-26T07:05:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0dcc2153-a1b9-43aa-8534-dfb461077e29", + "productId": "14206299-ed09-4ade-b676-924565e36410", + "category": "Accessory", + "docType": "customerRating", + "userName": "testrada", + "reviewDate": "2022-07-06T09:01:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "product", + "name": "Premium TV Micro (Steel)", + "description": "This Premium TV Micro (Steel) is rated 4.7 out of 5 by 15.\n\nRated 4 out of 5 by Bumkop of America from Great for A$$ Great for A$$\n\nRated 5 out of 5 by mike from A Great Video Cable! I bought this after reading in a few posts on YouTube where people said they were so impressed with the quality and quantity", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-01-12T00:42:40", + "price": 126.97, + "stock": 76, + "priceHistory": [ + { + "priceDate": "2021-01-13T06:16:12", + "newPrice": 116.4 + }, + { + "priceDate": "2022-09-17T06:16:12", + "newPrice": 126.97 + } + ], + "descriptionVector": [ + 0.024183878675103188, + 0.035499706864356995, + -0.044481273740530014, + 0.041542716324329376, + -0.019657548516988754, + 0.06848742067813873, + -0.0880146250128746, + 0.027110591530799866, + 0.006878364365547895, + 0.11185488849878311, + 0.01686117611825466, + -0.014669104479253292, + 0.04948156699538231, + -0.019491661339998245, + 0.01451506745070219, + 0.005643102806061506, + 0.012915447354316711, + -0.009621416218578815, + -0.0025519856717437506, + 0.011931977234780788, + 0.07825102657079697, + -0.07488589733839035, + -0.02259610779583454, + -0.012429636903107166, + -0.027157986536622047, + 0.008312097750604153, + -0.02493036910891533, + 0.021648185327649117, + 0.05611702799797058, + -0.028413984924554825, + 0.0062799882143735886, + 0.021814072504639626, + -0.048367757350206375, + 0.01113809272646904, + 0.04462346434593201, + 0.02898273803293705, + 0.0057260459288954735, + -0.02509625442326069, + 0.03488355875015259, + 0.08829900622367859, + 0.009040812961757183, + 0.019005851820111275, + 0.07066763937473297, + -0.013247220776975155, + 0.007713721599429846, + -0.006860591005533934, + 0.013875219039618969, + 0.033224690705537796, + 0.05227794125676155, + -0.030428320169448853, + -0.009342963807284832, + 0.0076130046509206295, + -0.07341662049293518, + 0.01978788711130619, + -0.010954432189464569, + -0.03270333632826805, + 0.03640023246407509, + 0.12664248049259186, + 0.07189994305372238, + -0.06739731132984161, + -0.0042064073495566845, + 0.030641602352261543, + -0.018958454951643944, + 0.005207650829106569, + -0.01902954839169979, + -0.016197629272937775, + -0.042632825672626495, + 0.013270918279886246, + -0.0002693803980946541, + 0.0609988309442997, + -0.02497776411473751, + -0.044102106243371964, + 0.034101519733667374, + -0.02898273803293705, + 0.007986249402165413, + 0.04260912910103798, + 0.12000702321529388, + 0.013211673125624657, + 0.015747366473078728, + 0.0251910462975502, + 0.0208661500364542, + 0.034741368144750595, + -0.003972388803958893, + 0.033983029425144196, + 0.0731322392821312, + -0.002085430081933737, + -0.014894235879182816, + -0.11128613352775574, + -0.027442364022135735, + 0.09351257979869843, + 0.0037294835783541203, + 0.0766395553946495, + 0.030404621735215187, + -0.08251667767763138, + 0.057396721094846725, + 0.03213458135724068, + -0.029764775186777115, + 0.03720596805214882, + -0.031068168580532074, + 0.02611527219414711, + 0.03746664524078369, + -0.04924458637833595, + 0.009485151618719101, + -0.04329637065529823, + 0.02931451052427292, + -0.04177969694137573, + -0.004031633958220482, + -0.013342012651264668, + 0.01827121153473854, + -0.12541018426418304, + -0.02578349970281124, + -0.054315973073244095, + 0.007405646611005068, + -0.07104680687189102, + -0.00580010237172246, + -0.007885532453656197, + 0.0044759726151824, + -0.04308309033513069, + -0.003291069297119975, + -0.06640198826789856, + -0.012737711891531944, + 0.023425541818141937, + -0.042632825672626495, + 0.027371268719434738, + 0.022572411224246025, + 0.018839964643120766, + -0.07483850419521332, + 0.059766530990600586, + 0.0259493850171566, + -0.027442364022135735, + -0.08488648384809494, + 0.007447117939591408, + 0.04109245166182518, + 0.01029681134968996, + -0.07701872289180756, + 0.03139994293451309, + -0.060856640338897705, + 0.0006320719257928431, + 0.08000467717647552, + 0.01238224096596241, + 0.014313633553683758, + -0.009716208092868328, + 0.0259493850171566, + 0.02817700430750847, + -0.02855617366731167, + 0.027726739645004272, + -0.003978313412517309, + 0.009502925910055637, + 0.021766675636172295, + -0.007340476848185062, + 0.06279988586902618, + -0.06038267910480499, + -0.059671737253665924, + -0.055074311792850494, + 0.06957753002643585, + 0.003006692510098219, + -0.06455353647470474, + 0.03751404210925102, + -0.13744880259037018, + 0.03796430677175522, + 0.006028196308761835, + -0.03903071954846382, + -0.01413589809089899, + 0.015060123056173325, + 0.08483908325433731, + 0.04471825435757637, + 0.04272761940956116, + -0.010077604092657566, + -0.03810649365186691, + 0.030309829860925674, + 0.023828407749533653, + -0.026636628434062004, + 0.047182854264974594, + -0.054268576204776764, + 0.014052954502403736, + -0.00792107917368412, + 0.013507898896932602, + -0.03853306174278259, + 0.0032525600399821997, + 0.002378693548962474, + -0.015403744764626026, + 0.006078554783016443, + -0.02395874820649624, + -0.04602165147662163, + 0.0722317174077034, + 0.04185079038143158, + 0.07199473679065704, + 0.05749151483178139, + -0.012583674862980843, + 0.026138970628380775, + 0.06938794255256653, + 0.004727764520794153, + -0.005465367343276739, + -0.05848683416843414, + -0.02080690488219261, + 0.023318899795413017, + 0.04358074814081192, + 0.003350314451381564, + -0.03682680055499077, + 0.02200365625321865, + -0.03211088478565216, + 0.021600790321826935, + 0.08213751018047333, + -0.008697191253304482, + 0.06763429194688797, + -0.051661789417266846, + 0.043888822197914124, + 0.10493505001068115, + 0.0019536095205694437, + 0.05758630856871605, + -0.06877179443836212, + -0.058107662945985794, + 0.019373171031475067, + 0.019266530871391296, + 0.038035400211811066, + 0.0518987700343132, + -0.032253071665763855, + -0.03521532937884331, + -0.06317905336618423, + 0.0015462989686056972, + 0.05369982495903969, + -0.029456699267029762, + 0.013981861062347889, + -0.02779783494770527, + -0.06753949820995331, + -0.04526331275701523, + 0.013152427971363068, + -0.012228203937411308, + 0.0781562328338623, + 0.05763370171189308, + -0.01543929148465395, + -0.035926271229982376, + -0.09071620553731918, + 0.02502516098320484, + -0.025499122217297554, + 0.007482665125280619, + -0.053984202444553375, + -0.031068168580532074, + -0.02280939184129238, + 0.05080866068601608, + -0.025665009394288063, + 0.011570582166314125, + 0.013555295765399933, + 0.034101519733667374, + 0.0010538235073909163, + -0.025996781885623932, + 0.03594997152686119, + -0.06753949820995331, + -0.07621298730373383, + -0.06289467215538025, + -0.08408074826002121, + -0.04649561271071434, + 0.027987418696284294, + 0.09355997294187546, + 0.009473303332924843, + 0.018792567774653435, + 0.055074311792850494, + -0.04467086121439934, + -0.02628115750849247, + -0.0403578095138073, + -0.015095669776201248, + 0.002723796758800745, + 0.03298771008849144, + 0.03054681047797203, + 0.012370391748845577, + 0.05943475663661957, + 0.014396577142179012, + -0.06573843955993652, + -0.03810649365186691, + -0.016944119706749916, + -0.08934172242879868, + 0.043011993169784546, + 0.05137741193175316, + -0.018508192151784897, + -0.05986132100224495, + 0.005817875731736422, + -0.03606846183538437, + 0.05521649867296219, + -0.013804124668240547, + 0.00938443560153246, + 0.11962784826755524, + -0.016588648781180382, + 0.0195746049284935, + 0.04092656448483467, + 0.14351549744606018, + -0.014858689159154892, + 0.021671883761882782, + -0.007162741385400295, + -0.008880850858986378, + -0.05502691492438316, + -0.015747366473078728, + -0.017489174380898476, + 0.07024107873439789, + -0.04877062514424324, + -0.008833454921841621, + 0.005364650394767523, + -0.018733322620391846, + 0.020676564425230026, + 0.031210357323288918, + 0.0016455346485599875, + 0.006967232096940279, + 0.09066881239414215, + -0.05734932795166969, + -0.0443153902888298, + -0.019586453214287758, + 0.009828774258494377, + -0.03218197822570801, + 0.02309376746416092, + 0.025925686582922935, + -0.04924458637833595, + 0.02535693347454071, + 0.020913545042276382, + -0.05829725041985512, + 0.04805968329310417, + 0.055832650512456894, + -0.03329578787088394, + -0.004612236749380827, + 0.057823289185762405, + 0.03523902967572212, + 0.00808696635067463, + 0.008697191253304482, + 0.04654300585389137, + -0.06360561400651932, + 0.060477472841739655, + -0.006949458736926317, + -0.03948098421096802, + -0.009052662178874016, + -0.025072555989027023, + -0.01375672873109579, + 0.0059363660402596, + 0.008075117133557796, + -0.004878839943557978, + 0.01140469592064619, + 0.04827296733856201, + 0.05336805060505867, + -0.05403159558773041, + -0.06417436897754669, + -0.0849812775850296, + 0.023970596492290497, + 0.049339380115270615, + 3.816222306340933e-05, + 0.01000058464705944, + 0.04483674466609955, + -0.00954439677298069, + 0.039338793605566025, + -0.028461379930377007, + -0.0016766383778303862, + -0.05308367311954498, + 0.020854299888014793, + -0.0251910462975502, + 0.0013826341601088643, + -0.013709332793951035, + 0.02767934463918209, + 0.03189760074019432, + 0.053984202444553375, + 0.04459976404905319, + 0.04237214848399162, + -0.012773259542882442, + 0.06673376262187958, + -0.008329871110618114, + 0.04303569346666336, + -0.022051053121685982, + 0.03789321333169937, + 0.055927444249391556, + -0.07649736851453781, + 0.025214744731783867, + -0.07867758721113205, + 0.008934171870350838, + -0.026020480319857597, + -0.023437390103936195, + 0.03957577422261238, + -0.0738905817270279, + 0.03194499760866165, + 0.12057577073574066, + -0.009757679887115955, + 0.05213575065135956, + 0.027442364022135735, + 0.013650087639689445, + 0.027110591530799866, + 0.03445699065923691, + -0.08550263196229935, + 0.05369982495903969, + 0.052467525005340576, + -0.001886958722025156, + 0.022027354687452316, + 0.06967232376337051, + -0.003818351309746504, + 0.054268576204776764, + -0.07725570350885391, + -0.013424956239759922, + -0.02924341708421707, + 0.01632796972990036, + -0.0025771649088710546, + 0.013898917473852634, + 0.04412580281496048, + -0.013744879513978958, + -0.037016384303569794, + 0.10237565636634827, + 0.029646284878253937, + -0.06881919503211975, + 0.028485078364610672, + 0.05422118306159973, + -0.014894235879182816, + -0.034314803779125214, + 0.01703891158103943, + 0.006801345851272345, + 0.019811585545539856, + 0.050903450697660446, + -0.008649795316159725, + -0.03903071954846382, + -0.023010825738310814, + -0.07327442616224289, + -0.008448361419141293, + -0.0481070801615715, + 0.03222937509417534, + 0.04990813136100769, + 0.10199648886919022, + -0.060050904750823975, + 0.09218548983335495, + 0.013851521536707878, + 0.08213751018047333, + -0.007387872785329819, + -0.026399647817015648, + -0.05208835378289223, + 0.012559976428747177, + 0.06351082772016525, + -0.08431772887706757, + 0.012548127211630344, + 0.031234053894877434, + -0.01687302440404892, + -0.008146211504936218, + -0.06825044006109238, + -0.026304855942726135, + 0.008021796122193336, + 0.028295494616031647, + 0.009206700138747692, + 0.010687828995287418, + 0.027916325256228447, + -0.04924458637833595, + 0.0403578095138073, + -0.010557489469647408, + 0.012559976428747177, + 0.06962492316961288, + -0.0005276523297652602, + -0.07545465230941772, + 0.009295567870140076, + -0.01855558715760708, + -0.01160020474344492, + 0.010675979778170586, + -0.0406658872961998, + 0.041874486953020096, + 0.024859273806214333, + -0.05194616690278053, + 0.0010182764381170273, + -0.07479110360145569, + 0.050476886332035065, + 0.04291720315814018, + 0.05573785677552223, + -0.010652282275259495, + -0.035452309995889664, + -0.09725687652826309, + 0.03682680055499077, + -1.6778418284957297e-05, + 0.03324839100241661, + -0.04948156699538231, + -0.10493505001068115, + -0.05104564130306244, + 0.01761951483786106, + -0.009858396835625172, + 0.011392846703529358, + -0.015747366473078728, + -0.03936249390244484, + -0.03594997152686119, + -0.012773259542882442, + 0.05275190249085426, + -0.027726739645004272, + 0.022951580584049225, + 0.004555953666567802, + -0.003338465467095375, + 0.03130514919757843, + 0.0034036352299153805, + 0.07332182675600052, + 0.019491661339998245, + 0.10550380498170853, + 0.0496237576007843, + -0.002003967994824052, + -0.029669981449842453, + 0.04784639924764633, + 0.03303510695695877, + 0.027394967153668404, + 0.021482300013303757, + 0.04080807417631149, + 0.015249707736074924, + -0.0790567547082901, + -0.03312990069389343, + 0.051235225051641464, + -0.03033352829515934, + 0.04365184158086777, + -0.004668519366532564, + -0.04576097056269646, + 0.049671150743961334, + 0.06749209761619568, + -0.05403159558773041, + 0.060904037207365036, + -0.037229664623737335, + -0.02389950305223465, + -0.00997688714414835, + 0.05019250884652138, + -0.011742393486201763, + -8.965461165644228e-05, + 0.040310416370630264, + 0.009627340361475945 + ] + }, + { + "id": "a1e37f01-81be-4620-910d-7ba43f62a75a", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "livingstonlynn", + "reviewDate": "2022-05-07T18:38:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a8e30fff-94fc-4ca5-8a35-28ff8a271570", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "robert45", + "reviewDate": "2021-02-27T23:50:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4d0ccf6e-23b4-4e3a-9cd6-7e319258fe4c", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "ryanfriedman", + "reviewDate": "2021-04-15T13:59:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ee344254-c7f4-44f2-b538-5fe0daaf52ba", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "curtiscarol", + "reviewDate": "2021-01-13T06:16:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3ab090b9-17b1-4a27-9d12-c023657ca326", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "michelle38", + "reviewDate": "2021-12-21T17:43:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e3e7305a-fe6d-4872-93a6-2ac06931b62d", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "iclark", + "reviewDate": "2022-05-05T05:57:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "79995e39-7d44-4edc-b567-ed85ce7392bc", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "dixonnicole", + "reviewDate": "2021-04-28T11:21:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0432b19f-1f85-4113-90ba-647c325c3410", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "briansalazar", + "reviewDate": "2022-04-20T10:57:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8e8157d5-a1b2-4373-96ec-37e612177afd", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "joanna45", + "reviewDate": "2021-07-04T16:54:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1352be18-f9fc-42a4-b9a6-25a7fa49a125", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "tiffanylong", + "reviewDate": "2021-03-26T02:01:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5e78581d-5244-4e9d-a899-b0fa52a46a44", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "hammondbrenda", + "reviewDate": "2022-10-05T14:32:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3d058b5c-91f0-4fbc-9a5c-7cc6cf33a05e", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "hjackson", + "reviewDate": "2021-02-03T22:36:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "27ff88aa-0485-40e9-ab59-3ed92266da8d", + "productId": "e2361bf3-8b7d-4f57-a54e-b8c7f1d98743", + "category": "Media", + "docType": "customerRating", + "userName": "nsmith", + "reviewDate": "2022-05-03T00:04:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "productId": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Ultra (Gold)", + "description": "This Amazing Speaker Ultra (Gold) is an ultra-sapphire body that looks stunning in full on super bright sunlight with even more amazing color. The gold has a gorgeous matte finish for a beautiful finish and it doesn't get dirty on the surface from all the wear. The black", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-11-14T01:04:42", + "price": 769.46, + "stock": 60, + "priceHistory": [ + { + "priceDate": "2021-01-29T12:40:53", + "newPrice": 810.53 + }, + { + "priceDate": "2021-12-09T12:40:53", + "newPrice": 718.34 + }, + { + "priceDate": "2022-10-19T12:40:53", + "newPrice": 785.96 + }, + { + "priceDate": "2023-05-05T12:40:53", + "newPrice": 769.46 + } + ], + "descriptionVector": [ + 0.007532276213169098, + -0.0014067540178075433, + -0.03187902644276619, + -0.045016128569841385, + 0.04298723116517067, + -0.062134936451911926, + -0.06152626872062683, + 0.0003703131224028766, + 0.005500209983438253, + 0.03504917770624161, + -0.008210687898099422, + 0.03956346958875656, + 0.011114545166492462, + -0.022229090332984924, + 0.014329077675938606, + -0.0005662680487148464, + 0.003487164853140712, + -0.021886713802814484, + -0.0181332565844059, + 0.013035655952990055, + 0.006536848843097687, + -0.09454654902219772, + -0.05944665148854256, + -0.0074942344799637794, + -0.044787876307964325, + -0.03852366283535957, + 0.02278703637421131, + 0.043367650359869, + 0.04965722933411598, + -0.018856052309274673, + 0.0854165181517601, + 0.001968662953004241, + 0.029824769124388695, + 0.027415456250309944, + -0.057772811502218246, + 0.09003225713968277, + 0.025145629420876503, + -0.03428833931684494, + 0.0680694580078125, + -0.03575928881764412, + 0.005202216096222401, + -0.01223043818026781, + 0.03134644031524658, + -0.000595591904129833, + 0.0016215316718444228, + -0.006625613197684288, + -0.006299087777733803, + 0.07136641442775726, + 0.02003534696996212, + -0.012883489020168781, + -0.011120885610580444, + 0.002093883929774165, + -0.04638563469052315, + 0.001061207614839077, + 0.036317236721515656, + -0.04592913016676903, + 0.035556402057409286, + 0.13400857150554657, + 0.026401007547974586, + 0.033172447234392166, + 0.06426528096199036, + -0.1052996963262558, + -0.03976636007428169, + 0.04009605571627617, + 0.016827154904603958, + 0.04854133352637291, + 0.01856439746916294, + -0.004932753276079893, + -0.03061096742749214, + 0.11331383883953094, + 0.06588839739561081, + 0.022571466863155365, + 0.017955729737877846, + 0.046740688383579254, + 0.024955419823527336, + 0.01530548371374607, + 0.0536135733127594, + 0.04136411473155022, + 0.013821853324770927, + -0.015356206335127354, + 0.05110281705856323, + 0.03238625079393387, + -0.008813017047941685, + -0.0073040253482759, + 0.08135872334241867, + 0.002907027490437031, + 0.01668766885995865, + -0.0940900444984436, + -0.028303097933530807, + 0.04613202065229416, + -0.03690054267644882, + 0.026451731100678444, + 0.061881326138973236, + 0.034364424645900726, + 0.06259144097566605, + 0.04973331093788147, + -0.02779587358236313, + 0.023129412904381752, + -0.11037193983793259, + -0.004761565010994673, + 0.04603057727217674, + -0.04831308498978615, + 0.0004069679998792708, + 0.02156969904899597, + 0.005925009958446026, + 0.0311435516923666, + 0.0032081915996968746, + -0.005240257829427719, + 0.030788496136665344, + -0.12021208554506302, + 0.03804180026054382, + -0.019984625279903412, + -0.020808864384889603, + -0.0003170149866491556, + 0.06081615388393402, + 0.06375805288553238, + -0.004596717189997435, + -0.05122962221503258, + 0.01569858193397522, + 0.015749303624033928, + 7.989768346305937e-05, + -0.014265674166381359, + 0.009941590018570423, + -0.014430521987378597, + 0.02561481110751629, + 0.0025646511930972338, + 0.047932665795087814, + 0.06837379187345505, + 0.03598754107952118, + -0.011799298226833344, + -0.06609128415584564, + 0.027111122384667397, + 0.011862700805068016, + 0.0545772984623909, + -0.039462026208639145, + 0.002433090005069971, + 0.015939513221383095, + 0.02675606496632099, + -0.0038897739723324776, + 0.0353027880191803, + -0.00919343437999487, + 0.029875492677092552, + 0.05899014696478844, + 0.04892175272107124, + -0.07019979506731033, + -0.05219334736466408, + -0.03428833931684494, + -0.008610127493739128, + -0.06715645641088486, + -0.027212565764784813, + 0.030737772583961487, + -0.07050413638353348, + 0.01762603409588337, + -0.07856899499893188, + 0.02315477468073368, + 0.04836380481719971, + -0.12031352519989014, + -0.0240931399166584, + 0.03725560009479523, + 0.05767136812210083, + -0.040451113134622574, + -0.06487394869327545, + -0.01399938203394413, + 0.012553793378174305, + -0.013073697686195374, + 0.021176600828766823, + 0.04445818066596985, + 0.07628648728132248, + -0.06943896412849426, + 0.04154164344072342, + 0.035835374146699905, + -0.014189590699970722, + -9.59961034823209e-05, + -0.06330155581235886, + 0.02941899001598358, + -0.012135333381593227, + 0.04230247810482979, + 0.025944506749510765, + 0.003154299221932888, + -0.03428833931684494, + -0.040146779268980026, + 0.047679055482149124, + -0.03061096742749214, + -0.043621260672807693, + 0.020504528656601906, + 0.03613970801234245, + 0.04729863628745079, + 0.026984315365552902, + -0.06492467224597931, + 0.031194275245070457, + -0.008470640517771244, + -0.0555410273373127, + 0.006701696664094925, + -0.02779587358236313, + -0.03492237254977226, + -0.006543189287185669, + 0.028658155351877213, + -0.0015557510778307915, + -0.051559317857027054, + 0.044103123247623444, + -0.004051451571285725, + 0.06883029639720917, + 0.06314938515424728, + -0.014240313321352005, + -0.01714416965842247, + -0.0834890678524971, + -0.01941399835050106, + -0.005449487827718258, + 0.014037423767149448, + 0.05625113844871521, + -0.03302028030157089, + 0.025665532797574997, + -0.09616966545581818, + 0.026198118925094604, + 0.055388856679201126, + 0.026730703189969063, + -0.008052180521190166, + -0.041414838284254074, + -0.016256527975201607, + -0.052294790744781494, + -0.011494963429868221, + -0.023167455568909645, + 0.03497309237718582, + 0.05914231762290001, + -0.04927681013941765, + -0.00534804305061698, + 0.044255293905735016, + -0.03233552724123001, + 0.05335996299982071, + -0.034668758511543274, + -0.058077145367860794, + -0.010537577793002129, + 0.035581763833761215, + -0.0020241406746208668, + -0.015127955004572868, + 0.0068919057957828045, + -0.026629259809851646, + -0.03857438266277313, + -0.027415456250309944, + 0.06061326712369919, + 0.016713030636310577, + 0.019147705286741257, + -0.06543189287185669, + -0.02675606496632099, + -0.009313900023698807, + -0.05386718735098839, + 0.11422684043645859, + -0.049834754317998886, + -0.05325851961970329, + 0.08100366592407227, + -0.05290346220135689, + -0.05270057171583176, + -0.08840914070606232, + 0.048414528369903564, + -0.02326890081167221, + 0.03839685395359993, + 0.07055485248565674, + -0.07151857763528824, + 0.04539654776453972, + -0.09003225713968277, + 0.0038041798397898674, + -0.008508682250976562, + 0.045219019055366516, + -0.01326390728354454, + -0.13532735407352448, + 0.032589141279459, + 0.015711262822151184, + -0.02754226140677929, + 0.05858436971902847, + -0.015013829804956913, + -0.028683515265583992, + 0.018779966980218887, + 0.028074847534298897, + 0.022292494773864746, + -0.0353027880191803, + 0.09921301156282425, + -0.06756223738193512, + 0.0012236778857186437, + -0.0019528123084455729, + -0.026857510209083557, + 0.12680599093437195, + 0.042860426008701324, + 0.09906084090471268, + -0.03208191692829132, + 0.0963725596666336, + -0.008058520965278149, + 0.005027857609093189, + 0.04374806955456734, + -0.004393827635794878, + -0.04757760837674141, + 0.007513255346566439, + -0.008711571805179119, + 0.017182212322950363, + 0.05630186200141907, + 0.010334688238799572, + -0.023446427658200264, + 0.004298723302781582, + -0.02170918695628643, + -0.02550068497657776, + 0.032994918525218964, + 0.0626421645283699, + 0.0015216718893498182, + -0.06634489446878433, + -0.05696125328540802, + 0.024334071204066277, + 0.12376265227794647, + -0.022254452109336853, + 0.024841293692588806, + -0.028150931000709534, + -0.03304564207792282, + 0.08110511302947998, + -0.006238854955881834, + -0.007919033989310265, + -0.07121424376964569, + 0.08333689719438553, + -0.042835064232349396, + -0.035353511571884155, + 0.029748685657978058, + -0.0023316452279686928, + 0.01327658724039793, + -0.02425798587501049, + -0.05858436971902847, + -0.04907391965389252, + 0.028353819623589516, + 0.005325851961970329, + -0.026705343276262283, + 0.01980709657073021, + -0.06827234476804733, + 0.022279813885688782, + 0.02657853625714779, + 0.0074942344799637794, + -0.03279203176498413, + 0.07496770471334457, + -0.0249681007117033, + 0.05893942713737488, + -0.001960737630724907, + 0.021303407847881317, + 0.04904855787754059, + 0.06801873445510864, + 0.024587681517004967, + 0.04940361529588699, + -0.03403472900390625, + 0.043088678270578384, + -0.0684245154261589, + -0.00888276007026434, + -0.0998724028468132, + 0.011475942097604275, + -0.036596208810806274, + -0.0003903247124981135, + 0.01609168015420437, + 0.0013203674461692572, + -0.026375647634267807, + 0.031042108312249184, + -0.014633411541581154, + 0.021062476560473442, + 0.0430125929415226, + 0.025754297152161598, + -0.05117889866232872, + 0.0424039252102375, + 0.00909833051264286, + 0.0024822272825986147, + 0.0058235651813447475, + 0.04849061369895935, + 0.026248840615153313, + 0.024245306849479675, + 0.02014947310090065, + 0.014646092429757118, + 0.023192817345261574, + -0.012179715558886528, + 0.021785270422697067, + -0.032462336122989655, + -0.025716256350278854, + -0.06492467224597931, + 0.015356206335127354, + -0.04100905731320381, + 0.03456731513142586, + 0.05630186200141907, + -0.008476980961859226, + -0.0006161978817544878, + 0.06690284609794617, + -0.002006704919040203, + 0.038980163633823395, + 0.04250536859035492, + 0.01327658724039793, + 0.09195970743894577, + 0.04729863628745079, + -0.05452657863497734, + -0.000372690730728209, + 0.017664074897766113, + -0.011773936450481415, + -0.047425441443920135, + -0.061475545167922974, + 0.03208191692829132, + 0.05604824796319008, + 0.03334997594356537, + -0.02501882240176201, + 0.06294649839401245, + 0.11057482659816742, + -0.015964874997735023, + 0.03182830289006233, + 0.02536119893193245, + 0.061881326138973236, + 0.025209031999111176, + 0.01018886175006628, + -0.017562629655003548, + -0.07922838628292084, + 0.017359741032123566, + 0.06700428575277328, + -0.056098971515893936, + -0.08064861595630646, + 0.005091260652989149, + -0.01435443852096796, + -0.027440818026661873, + 0.008565745316445827, + -0.018741926178336143, + 0.041135866194963455, + 0.07567781955003738, + 0.041161224246025085, + 0.10895171016454697, + -0.05117889866232872, + 0.028379181399941444, + 0.04638563469052315, + -0.05858436971902847, + -0.01049953605979681, + -0.006020114757120609, + 0.02349715121090412, + 0.04585304856300354, + -0.040654003620147705, + -0.009630915708839893, + -0.056149695068597794, + -0.0292161013931036, + -0.02547532506287098, + 0.018830690532922745, + -0.02258414775133133, + -0.05214262381196022, + -0.005446317605674267, + -0.03165077790617943, + -0.0316254161298275, + -0.0460812970995903, + 0.005604824982583523, + -0.022850440815091133, + -0.026172757148742676, + 0.01675107143819332, + 0.04050183296203613, + -0.0792791098356247, + -0.10017673671245575, + -0.032005831599235535, + 0.013504838570952415, + 0.0536135733127594, + -0.027922680601477623, + -0.025526046752929688, + 0.040654003620147705, + 0.01313710119575262, + 0.032944198697805405, + 0.03652012720704079, + -0.041643086820840836, + -0.014531967230141163, + 0.07993850111961365, + -0.07233013957738876, + 0.03423761948943138, + -0.03352750465273857, + 0.07354747503995895, + -0.0016183615662157536, + -0.01762603409588337, + -0.03522670641541481, + 0.055388856679201126, + -0.025538727641105652, + 0.03129572048783302, + -0.019718332216143608, + 0.03477020561695099, + -0.015761984512209892, + -0.06380877643823624, + -0.027364734560251236, + 0.010391751304268837, + -0.05767136812210083, + -0.061678435653448105, + -0.0316254161298275, + -0.07430831342935562, + 0.06827234476804733, + -0.04341837391257286, + -0.008248729631304741, + 0.02366199903190136, + 0.008483321405947208, + -0.003731266362592578, + 0.07491698116064072, + -0.06933751702308655, + -0.005329021718353033, + 0.01746118627488613, + -0.06396094709634781, + -0.0046601202338933945, + 0.027339372783899307, + 0.09982167929410934, + 0.03867582976818085, + 0.008464300073683262, + -0.038016438484191895, + -0.07359819859266281, + 0.02241929993033409, + -0.022431980818510056, + 0.006714377552270889, + 0.09272054582834244, + -0.0071074762381613255, + -0.05305562913417816, + -0.03304564207792282, + -0.017131490632891655, + -0.005170514341443777, + -0.0402989462018013, + -0.034897010773420334, + 0.0015914152609184384, + -0.02366199903190136, + 0.023091372102499008, + -0.005734801292419434, + 0.027567623183131218 + ] + }, + { + "id": "e05e4f61-d817-4839-80c8-084e25d36652", + "productId": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "category": "Media", + "docType": "customerRating", + "userName": "williamsweeney", + "reviewDate": "2021-01-29T12:40:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "15666dac-9165-4c3e-8c0b-6f34dbae0868", + "productId": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "category": "Media", + "docType": "customerRating", + "userName": "lisa87", + "reviewDate": "2022-10-19T14:54:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "19c346d9-4049-46bf-89a8-449d50946aaa", + "productId": "4485ce17-e24c-42fb-9183-ac6847c10ccb", + "category": "Media", + "docType": "customerRating", + "userName": "burnettjessica", + "reviewDate": "2021-07-03T02:25:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Micro (Silver)", + "description": "This Amazing Phone Micro (Silver) is only available from the S&W website (which it also sells through), although this model is only available in the USA, Europe, Norway, Turkey, and Australia.\n\nThis smartphone is sold only through www.facebook.com/TobiasonUSA.\n\nWe are very glad", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-02-12T17:05:15", + "price": 201.9, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-03-16T08:57:41", + "newPrice": 213.86 + }, + { + "priceDate": "2023-11-29T08:57:41", + "newPrice": 201.9 + } + ], + "descriptionVector": [ + 0.014303013682365417, + 0.005546745844185352, + -0.035584405064582825, + -0.033213887363672256, + 0.027034560218453407, + -0.041417479515075684, + 0.009994796477258205, + 0.003269450506195426, + 0.03601056709885597, + 0.0848592221736908, + -0.01697983406484127, + 0.009515366517007351, + -0.008290154859423637, + 0.00840335339307785, + 0.0035924003459513187, + 0.0583839975297451, + -0.04626505449414253, + -0.04221653193235397, + -0.01583452895283699, + 0.013091119937598705, + 0.08848158270120621, + -0.04746363312005997, + -0.034705448895692825, + -0.021960586309432983, + 0.044880032539367676, + -0.021188169717788696, + -0.01211228221654892, + -0.003951973281800747, + -0.008549845777451992, + -0.025716125965118408, + 0.008809537626802921, + 0.013903488405048847, + -0.008902760222554207, + 0.05465508997440338, + 0.02350541763007641, + 0.010494203306734562, + -0.04812950640916824, + -0.012884697876870632, + 0.04527955874800682, + 0.03678298369050026, + 0.03265455365180969, + -0.016873294487595558, + -0.031083086505532265, + -0.0037222460377961397, + -0.0016596956411376595, + 0.02485048770904541, + 0.019084002822637558, + 0.0024670700076967478, + -0.0017129656625911593, + 0.04999396204948425, + -0.01507542934268713, + 0.008163638412952423, + -0.12209499627351761, + -0.013756995089352131, + 0.015874480828642845, + -0.04695756733417511, + 0.022959399968385696, + 0.1298724263906479, + 0.004804294556379318, + -0.015847845003008842, + -0.014689221978187561, + -0.03294753655791283, + 0.05012713372707367, + 0.048688843846321106, + -0.0009180763736367226, + 0.05753167346119881, + -0.018697794526815414, + -0.008416671305894852, + -0.04581226035952568, + 0.036037202924489975, + 0.021361296996474266, + 0.03145597502589226, + 0.004967433866113424, + 0.0005035686190240085, + -0.06658758968114853, + 0.058863427489995956, + 0.00019352017261553556, + 0.05545414239168167, + 0.1070195734500885, + -0.07234075665473938, + 0.020735373720526695, + -0.005004057195037603, + -0.015847845003008842, + 0.022839542478322983, + 0.00722475303336978, + -0.025423141196370125, + 0.058597076684236526, + -0.14990197122097015, + -0.06728009879589081, + 0.046291690319776535, + -0.030363939702510834, + -0.00035166568704880774, + -0.06973052024841309, + 0.01963002048432827, + 0.018271634355187416, + 0.032228391617536545, + 0.01689993031322956, + 0.03795492276549339, + -0.02678152732551098, + -0.011366501450538635, + 0.04828931763768196, + -0.005759826395660639, + 0.041603922843933105, + 0.03387976437807083, + -0.07505752891302109, + 0.007064943201839924, + -0.02767380140721798, + 0.001841146731749177, + 0.012318703345954418, + -0.06349792331457138, + 0.026035746559500694, + -0.007351269479840994, + -0.0053136893548071384, + 0.044800128787755966, + 0.0216542836278677, + 0.04163055866956711, + -0.027274275198578835, + -0.03702269867062569, + -0.028179867193102837, + -0.04008572921156883, + -0.0689314678311348, + -0.013770313002169132, + -0.01847139745950699, + -0.0690380111336708, + 0.05023367702960968, + -0.009994796477258205, + 0.015767941251397133, + 0.01972324401140213, + -0.011026903986930847, + -0.05896996706724167, + -0.02176082320511341, + -0.057957835495471954, + -0.015781257301568985, + -0.026488542556762695, + -0.09471418708562851, + -0.015608130022883415, + 0.08986660838127136, + 0.0566260851919651, + -0.028499487787485123, + 0.1061139777302742, + 0.013164365664124489, + 0.0539093092083931, + -0.001165282796137035, + -0.008057097904384136, + -0.05635973438620567, + -0.04109785705804825, + -0.054069120436906815, + -0.010707284323871136, + 0.008063756860792637, + 0.0064723133109509945, + -0.024291152134537697, + -0.07543041557073593, + -0.05324343591928482, + -0.06786607205867767, + 0.008796220645308495, + 0.003139604814350605, + -0.0415506549179554, + -0.08949371427297592, + -0.06376427412033081, + 0.04322865977883339, + -0.018897557631134987, + 0.014928936958312988, + 0.043202027678489685, + -0.03094991110265255, + -0.051778506487607956, + 0.028845742344856262, + 0.025436459109187126, + 0.015807893127202988, + -0.020215991884469986, + 0.05324343591928482, + -0.02369186282157898, + -0.010767213068902493, + -0.008876125328242779, + -0.11644837260246277, + 0.07708179205656052, + 0.034971799701452255, + -0.003938655834645033, + -0.008290154859423637, + -0.007650913670659065, + -0.06749317795038223, + 0.0010612396290525794, + 0.06445678323507309, + -0.039126865565776825, + -0.036649808287620544, + 0.014982206746935844, + 0.06046152859926224, + 0.04802296683192253, + 0.037368953227996826, + 0.03702269867062569, + 0.03300080820918083, + 0.003111304948106408, + -0.05060656741261482, + -0.03960629552602768, + -0.010920364409685135, + 0.035690948367118835, + -0.016566991806030273, + 0.013850217685103416, + 0.0389404222369194, + -0.038434356451034546, + 0.04208335652947426, + 0.018804334104061127, + 0.08464614301919937, + 0.08352746814489365, + -0.057957835495471954, + 0.005010716151446104, + -0.016047608107328415, + -0.01490230206400156, + 0.06680066883563995, + -0.011166738346219063, + 0.04839585721492767, + 0.026102334260940552, + 0.019869735464453697, + 0.009382191114127636, + -0.0022872835397720337, + 0.04365482181310654, + 0.03920677304267883, + 0.02271968498826027, + -0.08155647665262222, + 0.0486622080206871, + -0.016287323087453842, + -0.013071143068373203, + -0.055027980357408524, + 0.0565728135406971, + -0.01490230206400156, + -0.048236049711704254, + -0.02229352481663227, + 0.01688661240041256, + 0.0955132320523262, + 0.09087873995304108, + 0.011026903986930847, + -0.05508125200867653, + -0.010687307454645634, + -0.03233493119478226, + -0.02916536293923855, + -0.06301849335432053, + 0.06648104637861252, + 0.026142286136746407, + -0.0433085672557354, + -0.08384709060192108, + 0.002841625362634659, + -0.014223108999431133, + -0.024251198396086693, + 0.008916078135371208, + -0.02706119604408741, + 0.019070684909820557, + -0.09055911749601364, + 0.026408636942505836, + 0.02493039332330227, + -0.10984288156032562, + 0.05604011192917824, + -0.06738663464784622, + -0.014622634276747704, + -0.05247101932764053, + 0.009475413709878922, + 9.155792940873653e-05, + 0.01970992609858513, + 0.051432251930236816, + -0.04757017269730568, + 0.07239402085542679, + -0.04943462461233139, + 0.030923275277018547, + -0.1052083894610405, + -0.06871838867664337, + 0.0486622080206871, + -0.06728009879589081, + 0.027700435370206833, + 0.01074723619967699, + -0.08102377504110336, + -0.021720871329307556, + 0.03941985219717026, + -0.057957835495471954, + -0.03571758046746254, + 0.04229643568396568, + 0.0016139165963977575, + -0.036303553730249405, + 0.021973904222249985, + -0.05329670384526253, + 0.11570259183645248, + 0.008250202052295208, + -0.0028366311453282833, + 0.03553113713860512, + 0.0071981181390583515, + 0.04852903261780739, + -0.0433352030813694, + 0.0742584764957428, + -0.009874938987195492, + -0.10488876700401306, + 0.01251180749386549, + -0.018804334104061127, + 0.018684476613998413, + -0.020628834143280983, + -0.0008831179002299905, + 0.019843101501464844, + 0.04005909338593483, + 0.04786315932869911, + -0.02889901213347912, + 0.04727718606591225, + -0.03140270709991455, + -0.057425133883953094, + 0.029378443956375122, + 0.0362236462533474, + -0.05156542733311653, + -0.05332333967089653, + -0.026142286136746407, + 0.04352164641022682, + 0.04765007644891739, + 0.06829223036766052, + -0.00247539347037673, + 0.013756995089352131, + -0.00440143933519721, + 0.09556650370359421, + -0.08496575802564621, + -0.056998975574970245, + 0.04466695338487625, + -0.016114195808768272, + -0.038247909396886826, + -0.022000538185238838, + 0.02176082320511341, + 0.01964333839714527, + -0.0006051146774552763, + 0.047090742737054825, + 0.04671785235404968, + -0.0477566160261631, + 0.05865034833550453, + -0.0176856629550457, + 0.062379252165555954, + 0.06770625710487366, + -0.012864721938967705, + -0.023838356137275696, + -0.008729632943868637, + -0.024197928607463837, + 0.020562246441841125, + 0.03150924667716026, + -0.02333229035139084, + 0.015328462235629559, + -0.008063756860792637, + 0.0371558740735054, + 0.040618427097797394, + 0.03156251460313797, + 0.054415374994277954, + 0.07484444975852966, + 0.05817091464996338, + 0.0035191539209336042, + 0.056998975574970245, + 0.007524397224187851, + -0.007717501372098923, + -0.07393885403871536, + 0.002780031645670533, + 0.006222609896212816, + -0.024277834221720695, + 0.001746259513311088, + -0.04780988767743111, + 0.019403623417019844, + 0.011146762408316135, + 0.09066566079854965, + -0.0013533927267417312, + -0.023039305582642555, + -0.06733337044715881, + 0.02916536293923855, + 0.03294753655791283, + -0.06269887089729309, + 0.024903757497668266, + 0.030577020719647408, + -0.03094991110265255, + -0.01961670257151127, + 0.054415374994277954, + 0.012438560836017132, + 0.07505752891302109, + -0.05334997549653053, + 0.02723432332277298, + 0.013943440280854702, + -0.017192915081977844, + -0.06962398439645767, + 0.044773492962121964, + -0.08832177519798279, + -0.02572944387793541, + 0.07095573097467422, + -0.04011236131191254, + 0.04765007644891739, + 0.04765007644891739, + -0.022573191672563553, + 0.05028694495558739, + -0.0592363178730011, + 0.024970345199108124, + 0.047889791429042816, + -0.04458704963326454, + -0.0067786164581775665, + 0.04946126043796539, + -0.07814719527959824, + 0.06690720468759537, + -0.04485340043902397, + 0.003995255101472139, + -0.006142704747617245, + -0.003928667400032282, + 0.0689847394824028, + -0.0654689148068428, + -0.021814092993736267, + 0.04855566844344139, + 0.00660881819203496, + -0.06536237895488739, + -0.006272550672292709, + -0.020708739757537842, + 0.05801110714673996, + 0.010707284323871136, + -0.025489728897809982, + -0.044347334653139114, + 0.012218821793794632, + 0.024530867114663124, + -0.058490537106990814, + -0.10765881091356277, + -0.04754353687167168, + 0.006152693182229996, + 0.011925837025046349, + -0.005956259556114674, + 0.015541543252766132, + -0.0066321236081421375, + -0.015461637638509274, + -0.06536237895488739, + 0.13573214411735535, + -0.026382001116871834, + 0.03260128200054169, + 0.018950827419757843, + 0.015421684831380844, + 0.09338243305683136, + -0.06482967734336853, + 0.008077073842287064, + 0.007064943201839924, + 0.04290904104709625, + -0.01875106431543827, + -0.06520256400108337, + 0.04237633943557739, + -0.00410845410078764, + 0.0014790768036618829, + -0.025156790390610695, + -0.008363400585949421, + 0.0362236462533474, + -0.04653140529990196, + 0.05180514231324196, + -0.020042864605784416, + 0.016234053298830986, + -0.05556068196892738, + 0.058597076684236526, + -0.022666415199637413, + 0.035504501312971115, + -0.09801692515611649, + -0.006086105480790138, + -0.03827454522252083, + -0.004271593876183033, + 0.034439101815223694, + -0.06935763359069824, + -0.033719953149557114, + 0.011979106813669205, + 0.03678298369050026, + -0.021427884697914124, + 0.014595999382436275, + -0.07026322185993195, + 0.0014158185804262757, + 0.09407494217157364, + -0.06605488806962967, + 0.08240880072116852, + 0.014316331595182419, + 0.013304200023412704, + 0.021640965715050697, + -0.046025339514017105, + 0.016060926020145416, + -0.05028694495558739, + -0.025263329967856407, + -0.027074512094259262, + -0.025236696004867554, + 0.008270177990198135, + 0.01207232940942049, + -0.027434086427092552, + 0.0451197475194931, + 0.005430217832326889, + -0.012245457619428635, + -0.009495389647781849, + 0.009408826008439064, + 0.012498490512371063, + 0.014436189085245132, + 0.01599433831870556, + 0.06312502920627594, + 0.03680961951613426, + 0.0013625484425574541, + 0.04208335652947426, + 0.011153420433402061, + -0.1166614517569542, + -0.03633018583059311, + -0.03838108479976654, + -0.004065172281116247, + 0.047969698905944824, + 0.015275192447006702, + 0.05694570392370224, + -0.04392117261886597, + 0.01893750950694084, + -0.03830118104815483, + -0.021108265966176987, + -0.029032187536358833, + 0.005636639427393675, + -0.03598393127322197, + 0.044959940016269684, + 0.02405143715441227, + 0.004890858195722103, + 0.014715856872498989, + -0.014183156192302704, + 0.012431902810931206, + -0.015941068530082703, + -0.08528538048267365, + 0.1016392931342125, + 0.0451197475194931, + 0.034891895949840546, + 0.0637110024690628, + 0.05907650664448738 + ] + }, + { + "id": "1a79c0cf-1dae-471c-9e41-64483c908dfa", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "omiller", + "reviewDate": "2021-10-19T20:04:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a53e117c-218a-4664-8bb9-a13aad34e2f5", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "travis14", + "reviewDate": "2021-06-19T10:12:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "047e81a3-3683-4109-8d11-89ecfb4ac90f", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifer24", + "reviewDate": "2021-04-22T14:29:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d32f5eb4-cc69-45a5-bae8-0d529e8ffa70", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "mrogers", + "reviewDate": "2021-08-19T06:17:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "24da49fb-2eee-40b9-a5e6-20706a9914db", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "steven25", + "reviewDate": "2022-06-24T15:41:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ac2044c7-34c6-4738-a025-b7c9ed25343b", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "kennethphillips", + "reviewDate": "2022-08-23T02:53:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a35cc9d9-1033-45a6-88f2-f28f4174dcb3", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "ellenberry", + "reviewDate": "2021-04-04T19:43:27", + "stars": 4, + "verifiedUser": true + }, + { + "id": "75f963c3-9bda-4931-9108-bd90ecb00b6d", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsjames", + "reviewDate": "2021-05-06T08:26:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e7ef4635-80cb-48ef-807d-04b673927685", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jodynelson", + "reviewDate": "2021-04-18T14:57:23", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c077ad75-2b54-45a5-b9f6-d43e97e9b743", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonesmary", + "reviewDate": "2022-04-13T12:36:52", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c3bbd58c-3b00-4d63-add4-74184044cef3", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "hkirk", + "reviewDate": "2022-04-26T08:00:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0996a389-f992-483c-8d13-4f5630c72825", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "khinton", + "reviewDate": "2022-12-28T20:47:21", + "stars": 5, + "verifiedUser": false + }, + { + "id": "071df4ab-b23a-4506-9ca5-9c5b36daa540", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissa88", + "reviewDate": "2021-03-16T08:57:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0689ea33-a30d-4aee-b76d-5044fbc1baa1", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "iancarter", + "reviewDate": "2022-07-02T09:22:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bfb2cf58-1254-4d81-a300-4e0198ee3796", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "wardashley", + "reviewDate": "2022-08-05T20:37:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f97de17b-ebaf-4e25-bb1a-70ef0b32fe92", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "rherrera", + "reviewDate": "2021-04-30T06:41:55", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a9d74d67-ebe2-4d2b-8480-d1584aa8929c", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "clayton25", + "reviewDate": "2022-12-30T10:55:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "326fc9eb-7460-46c4-8a38-e2772cdea535", + "productId": "fdc24aa4-90d6-4193-b4bd-29d0df51c2bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "samuel16", + "reviewDate": "2022-01-02T20:58:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bb9411a8-8548-4942-9abd-948f78702559", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "product", + "name": "Premium Speaker + (Black)", + "description": "This Premium Speaker + (Black) is a free option for the Premium Speaker at only $6.98 (regular price)", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-09-27T12:29:32", + "price": 440.34, + "stock": 72, + "priceHistory": [ + { + "priceDate": "2021-01-30T07:59:52", + "newPrice": 479.8 + }, + { + "priceDate": "2021-07-23T07:59:52", + "newPrice": 403.85 + }, + { + "priceDate": "2022-01-13T07:59:52", + "newPrice": 459.72 + }, + { + "priceDate": "2022-07-06T07:59:52", + "newPrice": 439.33 + }, + { + "priceDate": "2022-12-27T07:59:52", + "newPrice": 463.08 + }, + { + "priceDate": "2025-03-14T07:59:52", + "newPrice": 440.34 + } + ], + "descriptionVector": [ + -0.022632554173469543, + -0.008093454875051975, + -0.035788554698228836, + 0.009218464605510235, + -0.024326687678694725, + -0.03949446976184845, + 0.011686868965625763, + 0.08327721059322357, + -0.03271793946623802, + 0.07978305965662003, + -0.022566378116607666, + -0.00482430774718523, + 0.03102380596101284, + -0.023175206035375595, + 0.01924428902566433, + -0.016570735722780228, + -0.04513275623321533, + -0.0555887296795845, + -0.0037125330418348312, + -0.016888385638594627, + -0.016173673793673515, + -0.023929625749588013, + -0.014744249172508717, + 4.226542660035193e-05, + -0.07078298181295395, + -0.020236944779753685, + 0.001960495486855507, + 0.053391650319099426, + 0.07369477301836014, + 0.06204761192202568, + 0.01352659147232771, + 0.015432490035891533, + 0.00940376054495573, + 0.017153093591332436, + -0.08603017777204514, + 0.001934024621732533, + 0.017404567450284958, + -0.013831005431711674, + 0.08131837099790573, + 0.03494148701429367, + -0.019482526928186417, + 0.004341214895248413, + 0.02321491204202175, + -0.08687724173069, + 0.029806148260831833, + 0.02972673438489437, + 0.024035507813096046, + 0.06268291175365448, + -0.046165116131305695, + 0.018331045284867287, + 0.0049434262327849865, + 0.054371073842048645, + -0.08047130703926086, + 0.02232814021408558, + 0.003059034701436758, + 0.04436510056257248, + 0.07152416557073593, + 0.13362471759319305, + -0.028323780745267868, + -0.022936968132853508, + -0.011832457967102528, + 4.0093993447953835e-05, + 0.018053101375699043, + 0.024922281503677368, + -0.028879668563604355, + 0.01679573766887188, + -0.02230166830122471, + 0.021613428369164467, + -0.05675344541668892, + 0.05505931377410889, + -0.0035206195898354053, + 0.0006158602773211896, + 0.009622144512832165, + 0.028614960610866547, + 0.06893002241849899, + 0.03067968413233757, + 0.040315065532922745, + 0.06262996792793274, + -0.04732983186841011, + -0.05355047807097435, + -0.005198208149522543, + 0.013328059576451778, + -0.056647561490535736, + -0.0029912032186985016, + 0.02612670324742794, + -0.013619238510727882, + -0.009569202549755573, + -0.08820078521966934, + 0.0055522555485367775, + 0.032109107822179794, + -0.017232505604624748, + 0.07374771684408188, + 0.06877119839191437, + -0.015935435891151428, + 0.040288593620061874, + 0.03422677516937256, + -0.08888902515172958, + 0.010436122305691242, + -0.09127140045166016, + 0.014003065414726734, + 0.06781825423240662, + -0.1257893592119217, + -0.011183923110365868, + 0.019350172951817513, + 0.038329754024744034, + 0.02289726212620735, + 0.00451658433303237, + -0.036715034395456314, + -0.0003180634812451899, + -0.1036597490310669, + 0.05384165421128273, + -0.036079734563827515, + 0.004337906371802092, + 0.05490048974752426, + 0.0410827174782753, + 0.08703606575727463, + 0.016319263726472855, + -0.02943555638194084, + 0.02805907279253006, + 0.011342748068273067, + -0.04762101173400879, + -0.02624582126736641, + 0.017417801544070244, + 0.0005513376090675592, + 0.029938502237200737, + -0.03292970359325409, + -0.024551689624786377, + 0.026550237089395523, + 0.06850649416446686, + -0.04952691122889519, + -0.02117665857076645, + 0.05135339871048927, + -0.016266321763396263, + 0.0021672986913472414, + -0.032479699701070786, + 0.01133613009005785, + 0.013228794559836388, + 0.006915502715855837, + -0.04312097281217575, + 0.006237187888473272, + -0.013817770406603813, + -0.008821401745080948, + 0.07226534932851791, + 0.080894835293293, + -0.04804454371333122, + 0.02027665078639984, + 0.006339762359857559, + 0.023466385900974274, + -0.023810505867004395, + 0.02935614436864853, + 0.022275198251008987, + -0.08481252193450928, + 0.0030557257123291492, + -0.0770830363035202, + 0.016663383692502975, + -0.00943684857338667, + -0.1213422566652298, + -0.04073859751224518, + -0.06961826980113983, + 0.09571850299835205, + 0.00783536396920681, + 0.039944473654031754, + -0.003725768532603979, + 0.02085900865495205, + 0.030176740139722824, + 0.05521813780069351, + 0.05156516656279564, + -0.023784035816788673, + -0.07290064543485641, + 0.044550396502017975, + 0.049129847437143326, + -0.08645371347665787, + -0.006051891949027777, + -0.07247711718082428, + -0.008702283725142479, + 0.009198611602187157, + 0.02039577066898346, + 0.0027082960586994886, + 0.04378274455666542, + -0.013619238510727882, + -0.004089742433279753, + 0.06585940718650818, + -0.014003065414726734, + -0.036079734563827515, + -0.030864980071783066, + 0.01716632954776287, + 0.008450810797512531, + -0.0041823904030025005, + -0.02186490036547184, + -0.017364859580993652, + 0.0023691386450082064, + 0.004172463435679674, + -0.00032509479206055403, + -0.027582598850131035, + 0.042909204959869385, + -0.04007682576775551, + 0.0632123276591301, + 0.04860043153166771, + -0.059877004474401474, + -0.027820836752653122, + -0.009430230595171452, + 0.05294164642691612, + 0.08920667320489883, + -0.005694536026567221, + -0.06781825423240662, + -0.06813590228557587, + 0.004907029215246439, + 0.07973012328147888, + 0.005327253136783838, + -0.0017371478024870157, + -0.0349150151014328, + -0.01402953639626503, + 0.007729480508714914, + 0.019522232934832573, + 0.061571136116981506, + 0.013500120490789413, + 0.015061899088323116, + -0.03787975013256073, + -0.005128722172230482, + -0.050135739147663116, + 0.03102380596101284, + 0.03798563405871391, + -0.005095633678138256, + -0.020236944779753685, + -0.028826726600527763, + -0.04140036925673485, + 0.04433862864971161, + -0.03295617550611496, + 0.12038930505514145, + 0.009238317608833313, + -0.08825372904539108, + -0.06861237436532974, + -0.025213459506630898, + -0.04542393237352371, + -0.02903849445283413, + 0.002518037101253867, + -0.02563699334859848, + -0.03171204775571823, + -0.03515325486660004, + 0.04992397502064705, + -0.04444451257586479, + 0.03385618329048157, + -0.0009041440789587796, + 0.009423613548278809, + -0.09571850299835205, + -0.025160517543554306, + 0.09555967152118683, + -0.04539746418595314, + -0.04433862864971161, + -0.01156775001436472, + -0.08655959367752075, + -0.03520619496703148, + -0.05818287283182144, + 0.02517375349998474, + -0.022936968132853508, + -0.012527317740023136, + 0.07168298959732056, + -0.05548284575343132, + 0.029462026432156563, + 0.030759098008275032, + 0.007947864942252636, + 0.02771495282649994, + -0.03568267077207565, + 0.035762082785367966, + -0.013566297478973866, + -0.026510531082749367, + 0.01061480026692152, + -0.11202452331781387, + -0.04592688009142876, + 0.09624791890382767, + 0.05095633491873741, + 0.04804454371333122, + -0.02416786178946495, + -0.0035503993276506662, + 0.04791219159960747, + 0.022222256287932396, + -0.043438620865345, + 0.011369219049811363, + 0.0007262932485900819, + -0.01645161770284176, + 0.04134742543101311, + 0.0036165763158351183, + 0.0366356186568737, + 0.03136792778968811, + 0.031473807990550995, + -0.042935676872730255, + -0.031103217974305153, + 0.047197479754686356, + -0.04383568465709686, + -0.06898296624422073, + -0.000753177679143846, + -0.011587603017687798, + 0.06930061429738998, + 0.07194770127534866, + 0.0945008397102356, + 0.049473971128463745, + 0.0008454119670204818, + 0.023201677948236465, + 0.023426679894328117, + 0.030759098008275032, + 0.03226793557405472, + 0.02382374182343483, + -0.06707707047462463, + 0.002258292166516185, + -0.009688321501016617, + 0.0758124366402626, + -0.02134872041642666, + 0.006210716906934977, + -0.024181097745895386, + 0.0014103986322879791, + 0.11795399338006973, + -0.0840713381767273, + -0.0837007462978363, + 0.0003565289080142975, + 0.025597287341952324, + -0.027662010863423347, + -0.034438543021678925, + 0.005668065045028925, + 0.007239770144224167, + 0.009714792482554913, + -0.05296811833977699, + -0.06236525997519493, + -0.012308932840824127, + 0.04203566908836365, + -0.04950043931603432, + 0.042538613080978394, + -0.04412686452269554, + -0.032135579735040665, + 0.04198272526264191, + 0.04060624539852142, + -0.014903074130415916, + -0.0398121178150177, + 0.09508319944143295, + -0.04346509277820587, + 0.06437704712152481, + 0.003758857026696205, + 0.011488338001072407, + 0.002259946661069989, + 0.03848857805132866, + -0.03922976180911064, + 0.06141231209039688, + -0.019548702985048294, + 0.03920328989624977, + -0.03692679852247238, + -0.004658864811062813, + -0.02678847312927246, + 0.06469469517469406, + -0.03817092627286911, + -0.006882414221763611, + 0.02837672270834446, + 0.0014889838639646769, + -0.00973464548587799, + 0.09645967930555344, + 0.0011498264502733946, + 0.04447098448872566, + -0.0676594227552414, + -0.023770799860358238, + 0.020845774561166763, + 0.004768057260662317, + -0.01471777819097042, + -0.07152416557073593, + 0.020673712715506554, + -0.061518196016550064, + 0.022447258234024048, + 0.025081105530261993, + 0.0938655436038971, + -0.027953190729022026, + -0.0017454199260100722, + -0.060247596353292465, + -0.050082799047231674, + -0.025332579389214516, + -0.020819302648305893, + -0.005717698018997908, + -0.040262121707201004, + -0.015101605094969273, + 0.06178290396928787, + 0.025279637426137924, + 0.010409651324152946, + -0.06390056759119034, + 0.012348639778792858, + -0.00997950043529272, + 0.01794721931219101, + -0.012077313847839832, + -0.032453231513500214, + 0.13351882994174957, + 0.03525913879275322, + -0.048838671296834946, + 0.017695745453238487, + -0.014572188258171082, + 0.013321442529559135, + -0.05413283407688141, + 0.0168222077190876, + -0.05807698890566826, + 0.05352400615811348, + 0.05415930598974228, + -0.0012689451687037945, + -0.0190457571297884, + 0.0755477324128151, + -0.048785727471113205, + 0.026920827105641365, + 0.050135739147663116, + 0.07575950026512146, + -0.0415327213704586, + -0.031526751816272736, + -0.0429886169731617, + -0.10874214768409729, + 0.009959647431969643, + -0.020673712715506554, + 0.020064884796738625, + -0.03422677516937256, + 0.0180928073823452, + -0.0077824220061302185, + -0.09582438319921494, + 0.010588329285383224, + 0.02531934343278408, + 0.010078766383230686, + 0.04447098448872566, + -0.019482526928186417, + 0.0204487107694149, + -0.03467677906155586, + 0.08677136152982712, + -0.0036397383082658052, + 0.01627955585718155, + 0.005747477523982525, + 0.03189734369516373, + -0.003798563266173005, + 0.01197142992168665, + 0.017642803490161896, + -0.025213459506630898, + -0.010204502381384373, + -0.05254458636045456, + -0.06977709382772446, + 0.00029696954879909754, + 0.005995641462504864, + -0.012289079837501049, + 0.01618690975010395, + 0.010363327339291573, + 0.012176578864455223, + -0.08248309046030045, + -0.01897958107292652, + 0.005856669973582029, + -0.04346509277820587, + 0.018000159412622452, + 0.06935355812311172, + -0.06040642037987709, + -0.049447499215602875, + -0.05521813780069351, + 0.01422806829214096, + 0.02872084453701973, + 0.06135936826467514, + -0.07655362039804459, + -0.009039786644279957, + 0.014995722100138664, + 0.007147122640162706, + 0.019681056961417198, + -0.01762956939637661, + 0.02906496450304985, + 0.051115162670612335, + -0.031526751816272736, + 0.021097246557474136, + 0.0034147363621741533, + 0.0985773503780365, + 0.06098878011107445, + -0.017722217366099358, + -0.04365038871765137, + -0.021759016439318657, + 0.012242755852639675, + 0.07088886946439743, + 0.017669275403022766, + 0.0945008397102356, + -0.07485949248075485, + -0.06310644745826721, + 0.014611895196139812, + 0.03862093389034271, + -0.004996368195861578, + -0.026867887005209923, + -0.019575174897909164, + -0.006816237233579159, + 0.034756191074848175, + -0.01021112035959959, + 0.017073681578040123, + 0.053338710218667984, + -0.004936808720231056, + 0.030256152153015137, + -0.051406338810920715, + -0.0044967313297092915, + 0.019058993086218834, + 0.02220902219414711, + -0.02073989063501358, + -0.0026454280596226454, + 0.02181195840239525, + 0.08100072294473648, + 0.043279796838760376, + 0.012778790667653084, + -0.018503105267882347, + -0.07687127590179443, + 0.046800415962934494, + -0.1377541720867157, + 0.040023885667324066, + 0.025239931419491768, + -0.0077162450179457664, + -0.037350334227085114, + -0.04809748753905296, + -0.06808295845985413, + 0.004059962462633848, + -0.022857556119561195, + -0.05548284575343132, + -0.009509643539786339, + 0.06755354255437851, + 0.07051827758550644, + -0.008907432667911053, + 0.04523863643407822 + ] + }, + { + "id": "6af0b068-9f3e-44a4-95c8-7296d79e6785", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "zbright", + "reviewDate": "2021-01-30T07:59:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a39e7ce3-b5e3-4647-8c51-0d75d80027ac", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "sarah39", + "reviewDate": "2022-05-23T03:50:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a03c24f2-41b1-4d47-8a7e-74ee8af1c9a5", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "joannajoseph", + "reviewDate": "2021-10-26T15:09:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0146c5c3-cd0a-41c3-8290-7f96841396aa", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "gomezandrew", + "reviewDate": "2021-05-16T10:46:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8c59d9f2-c075-4a88-8942-56f35f155674", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "mbaker", + "reviewDate": "2022-10-10T05:47:23", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ed78d561-a01b-4520-9818-247b2e919374", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "dylanberry", + "reviewDate": "2022-06-10T19:18:50", + "stars": 4, + "verifiedUser": false + }, + { + "id": "11fe1083-3f4f-4711-9181-8e04925eb58c", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "jason81", + "reviewDate": "2022-01-30T01:14:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "61f80fac-b612-493a-b8f1-bb8a8e22fe2a", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "fostermichael", + "reviewDate": "2022-05-13T05:07:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ddc28d68-5c7f-4465-b612-added8e2b894", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "jonathangross", + "reviewDate": "2021-07-09T06:48:06", + "stars": 3, + "verifiedUser": false + }, + { + "id": "908e3f98-f77d-4516-8862-91ccb58d5963", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "fostertanner", + "reviewDate": "2022-08-28T11:49:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "25a69f92-f88e-4442-8680-80e78f8ceff8", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "rodriguezbenjamin", + "reviewDate": "2021-03-23T03:20:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "28830b11-0ea3-483a-932e-e2ce7a0a7b04", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "jamie13", + "reviewDate": "2022-11-25T07:39:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6a0fb4c4-0160-4721-97c6-f0e9aeeef3f9", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "bethhester", + "reviewDate": "2022-12-27T19:30:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "124e333b-9714-4c8d-8467-e1a0dade768d", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "xlawrence", + "reviewDate": "2021-06-18T22:02:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "689ba40f-58b1-43e1-a7ad-271e2e6c6939", + "productId": "bb9411a8-8548-4942-9abd-948f78702559", + "category": "Media", + "docType": "customerRating", + "userName": "yvonneperry", + "reviewDate": "2022-09-05T07:11:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Pro (Silver)", + "description": "This Luxe Keyboard Pro (Silver) is not simply made for Mac users, because it's designed for the Mac (and is an OS X machine, not the Mac!) It's not just that they are all built with Mac-optimized, super low-resolution keyboards. It's just that when you add them to your Mac, the top edge gives way to the bottom", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-07-02T09:36:31", + "price": 396.25, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-05-22T20:18:29", + "newPrice": 412.74 + }, + { + "priceDate": "2025-03-14T20:18:29", + "newPrice": 396.25 + } + ], + "descriptionVector": [ + 0.024070847779512405, + 0.05550220608711243, + -0.036583710461854935, + 0.03562883287668228, + -0.00026871447334997356, + 0.005080242175608873, + -0.015019414015114307, + -0.03523096814751625, + -0.014820480719208717, + 0.018550468608736992, + 0.030496371909976006, + -0.02432946115732193, + 0.029581282287836075, + -0.015268079936504364, + -0.022081522271037102, + 0.011209853924810886, + -0.029422136023640633, + -0.024289675056934357, + -0.03413683921098709, + 0.010453909635543823, + -0.01650146208703518, + -0.06608542054891586, + -0.07173510640859604, + -0.02914363145828247, + -0.01611354388296604, + -0.016053862869739532, + 0.018769294023513794, + -0.012373609468340874, + 0.042213503271341324, + -0.00782799907028675, + 0.04567493125796318, + -0.0218626968562603, + -0.046391088515520096, + 0.0403236448764801, + 0.030337225645780563, + -0.05355266481637955, + -0.0008162454469129443, + -0.026318786665797234, + 0.04078118875622749, + 0.05025038495659828, + -0.031988367438316345, + -0.02375255711376667, + 0.04201457276940346, + 0.005028022453188896, + -0.02755216881632805, + -0.006763709709048271, + -0.004068172536790371, + 0.020320968702435493, + -0.0009666882688179612, + -0.034793317317962646, + 0.012144837528467178, + 0.04511792212724686, + -0.08458615839481354, + 0.011100441217422485, + 0.014870214276015759, + 0.013238966464996338, + -0.00852426327764988, + 0.032943245023489, + 0.00398113951086998, + -0.03901068866252899, + -0.019226839765906334, + -0.04056236520409584, + 0.03322175145149231, + -0.009001702070236206, + 0.028765657916665077, + 0.027731209993362427, + -0.006947722285985947, + 0.017923830077052116, + 0.07420187443494797, + 0.054427970200777054, + -0.0040159523487091064, + -0.014621548354625702, + 0.054825834929943085, + 0.02731345035135746, + 0.027154304087162018, + 0.03505193069577217, + 0.09270260483026505, + -0.012691901996731758, + 0.09843187034130096, + 0.012691901996731758, + 0.022817572578787804, + -0.033361002802848816, + -0.07101894915103912, + -0.022021843120455742, + 0.03628531098365784, + 0.032445911318063736, + 0.027054838836193085, + -0.030973810702562332, + -0.07499760389328003, + 0.08864437788724899, + -0.06664243340492249, + 0.03614605963230133, + 0.02576177567243576, + -0.043128594756126404, + -0.003046155907213688, + 0.025403697043657303, + -0.04257158190011978, + 0.04388453811407089, + 0.0017506071599200368, + -0.052478428930044174, + -0.015228292904794216, + -0.04746532812714577, + -0.03907036781311035, + 0.0398859940469265, + -0.08649590611457825, + 0.06111210584640503, + 0.05848619341850281, + -0.011916064657270908, + -0.04798255115747452, + -0.06270356476306915, + 0.02627900056540966, + 0.04273073002696037, + -0.07742457836866379, + -0.0295414961874485, + -0.08291511982679367, + 0.08156237751245499, + -0.09206601977348328, + -0.016819754615426064, + -0.00021898130944464356, + 0.021663764491677284, + 0.059242136776447296, + -0.0057292599231004715, + -0.015427225269377232, + 0.03298303112387657, + -0.025523057207465172, + 0.018242122605443, + 0.01099102757871151, + -0.004602803848683834, + 0.0514041930437088, + -0.03236633911728859, + -0.07284913212060928, + 0.11148184537887573, + 0.05800875648856163, + 0.05888405814766884, + -0.04109948128461838, + 0.06441438943147659, + 0.003946326207369566, + 0.13957113027572632, + -0.04957401379942894, + 0.020301075652241707, + 0.018500734120607376, + -0.03228676691651344, + -0.02661718614399433, + -0.008181104436516762, + -0.025980601087212563, + -0.024468714371323586, + -0.01562615856528282, + 0.08705291897058487, + 0.015675891190767288, + 0.07360507547855377, + 0.031132956966757774, + -0.07444059103727341, + -0.024428928270936012, + -0.03596701845526695, + 0.046908315271139145, + 0.017197726294398308, + -0.02243960089981556, + -0.01598423719406128, + 0.0638175904750824, + 0.13240955770015717, + -0.0051473816856741905, + 0.044839415699243546, + -0.02375255711376667, + 0.02253906801342964, + -0.008419823832809925, + 0.060276586562395096, + 0.03819506615400314, + 0.010513589717447758, + -0.029342563822865486, + 0.005674553569406271, + -0.06887047737836838, + 0.0713372454047203, + -0.01469117496162653, + -0.060037869960069656, + 0.05983893573284149, + -0.012990300543606281, + 0.03200826048851013, + 0.023911703377962112, + 0.06421545147895813, + -0.01948545128107071, + 0.016939112916588783, + 0.04499856010079384, + -0.12238335609436035, + -0.014850321225821972, + 0.1438680738210678, + -0.059082992374897, + -0.006092311814427376, + 0.016710340976715088, + 0.07642991840839386, + -0.02335469052195549, + -0.004075632430613041, + 0.004883795976638794, + -0.025801561772823334, + -0.02180301584303379, + 0.02542359009385109, + 0.027810782194137573, + 0.05208056420087814, + 0.018500734120607376, + 0.02214120142161846, + 0.03857303783297539, + 0.05128483101725578, + 0.06532947719097137, + 0.0118165984749794, + -0.02816886082291603, + 0.03041679970920086, + -0.01827196218073368, + -0.019196998327970505, + -0.022578854113817215, + -0.01921689324080944, + 0.039050474762916565, + 0.023215439170598984, + 0.03381854668259621, + 0.015228292904794216, + 0.014512135647237301, + 0.08347213268280029, + -0.02898448519408703, + -0.014671281911432743, + 0.037160616368055344, + 0.00930010061711073, + -0.02317565120756626, + 0.09134986251592636, + 0.0026109907776117325, + 0.03467395901679993, + 0.0040010325610637665, + 0.022936932742595673, + 0.016620822250843048, + 0.010334550403058529, + 0.004379004705697298, + 0.029282882809638977, + 0.04722660779953003, + 0.012373609468340874, + -0.015347653068602085, + 0.020688993856310844, + 0.03447502478957176, + -0.0030411826446652412, + 0.0057441797107458115, + -0.007275960873812437, + -0.02737312950193882, + -0.04233286529779434, + 0.051563337445259094, + -0.013636832125484943, + -0.03873218223452568, + -0.042651157826185226, + 0.0041303387843072414, + 0.023593410849571228, + -0.045237280428409576, + 0.07471909373998642, + -0.019107479602098465, + -0.1336827278137207, + 0.04698788747191429, + 0.031013596802949905, + 0.07750415056943893, + -0.0375186949968338, + 0.03200826048851013, + -0.014253523200750351, + 0.019594864919781685, + 0.04296945035457611, + -0.03511160984635353, + -0.03029743954539299, + -0.08156237751245499, + 0.014969680458307266, + 0.05331394448876381, + 0.009976471774280071, + -0.008225864730775356, + 0.04388453811407089, + 0.012323876842856407, + 0.03194858133792877, + -0.07627077400684357, + -0.03706115111708641, + 0.014303256757557392, + 0.0149199478328228, + -0.07913540303707123, + 0.053632237017154694, + 0.03373897448182106, + 0.015765411779284477, + 0.004926069173961878, + -0.08617761731147766, + 0.1019330844283104, + 0.01494978740811348, + -0.04869870841503143, + -0.010294763371348381, + 0.05896363407373428, + 0.019833583384752274, + -0.00020748052338603884, + 0.0905541330575943, + -0.014054590836167336, + 0.002899443032220006, + 0.018321694806218147, + 0.03023776039481163, + -0.004774383269250393, + 0.00033414465724490583, + 0.014014803804457188, + 0.08172152936458588, + 0.08394957333803177, + -0.005015588831156492, + -0.052876293659210205, + 0.0704619362950325, + 0.08474530279636383, + 0.041736066341400146, + -0.003359474940225482, + 0.0447598434984684, + -0.049653586000204086, + -0.05295586585998535, + -0.10559344291687012, + -0.0392891950905323, + 0.08562060445547104, + -0.05999808385968208, + -0.006216644775122404, + 0.00825073104351759, + -0.00909122172743082, + 0.06441438943147659, + 0.005530327092856169, + -0.04336731508374214, + 0.014183896593749523, + 0.04241243749856949, + -0.018928440287709236, + 0.05737217143177986, + -0.006251458078622818, + -0.020987393334507942, + 0.011020868085324764, + -0.021206218749284744, + -0.013835764490067959, + -0.10933337360620499, + 0.029521603137254715, + 0.05633772164583206, + -0.00563476700335741, + -0.052597787231206894, + -0.039149943739175797, + -0.04460069537162781, + -0.0787375345826149, + -0.03837410360574722, + -0.0029243098106235266, + -0.01099102757871151, + 0.0019756497349590063, + 0.04428240284323692, + -0.041855424642562866, + 0.06755752116441727, + 0.05021059513092041, + 0.015586371533572674, + 0.011707185767591, + 0.07205340266227722, + 0.006539910100400448, + -0.031650181859731674, + -0.03453470394015312, + -0.02301650494337082, + -0.036583710461854935, + -0.065886490046978, + 0.01744639128446579, + 0.011548039503395557, + 0.04762447252869606, + 0.0012022991431877017, + -0.037220295518636703, + 0.07627077400684357, + -0.03823485225439072, + -0.018858812749385834, + 0.052478428930044174, + -0.0033097416162490845, + 0.01144857332110405, + -0.005172248464077711, + 0.06819410622119904, + -0.054030101746320724, + -0.006848256103694439, + 0.05025038495659828, + 0.04503834992647171, + -0.06922855973243713, + 0.06708008050918579, + -0.07734500616788864, + -0.0447598434984684, + -0.01970427669584751, + -0.003963732626289129, + 0.004898716229945421, + -0.04611258581280708, + 0.008429770357906818, + 0.09620381891727448, + -0.014054590836167336, + 0.05590007081627846, + 0.003503700951114297, + 0.038652610033750534, + -0.07038236409425735, + 0.03596701845526695, + -0.033142175525426865, + 0.05518391355872154, + 0.04348667338490486, + -0.022638533264398575, + 0.02226056158542633, + -0.09962546080350876, + -0.05128483101725578, + -0.028904911130666733, + -0.003384341485798359, + 0.0203110221773386, + -0.055621564388275146, + -0.036245524883270264, + -0.006569750141352415, + 0.03278409689664841, + -0.022598747164011, + 0.018868761137127876, + 0.011130280792713165, + -0.007106868550181389, + -0.0018177469028159976, + 0.04611258581280708, + 0.005008128937333822, + 0.03952791541814804, + -0.0024045982863754034, + -0.07869774848222733, + 0.012463129125535488, + -0.09906844794750214, + 0.021086858585476875, + 0.031113063916563988, + -0.03194858133792877, + -0.05204077810049057, + -0.03254538029432297, + 0.011756918393075466, + 0.017217619344592094, + 0.003202815307304263, + 0.045754507184028625, + 0.03529064729809761, + 0.05148376524448395, + 0.08371084928512573, + 0.06715966016054153, + -0.07885689288377762, + 0.08203981816768646, + -0.043804965913295746, + -0.024289675056934357, + 0.03455459699034691, + -0.021962162107229233, + 0.02375255711376667, + 0.0052816616371273994, + -0.014233630150556564, + 0.03642456606030464, + -0.02405095472931862, + 0.039050474762916565, + 0.016939112916588783, + -0.009688018821179867, + -0.004279538057744503, + 0.03178943321108818, + 0.007032268680632114, + -0.0014049616875126958, + 0.025662310421466827, + 0.052597787231206894, + 0.10615045577287674, + -0.02858661860227585, + -0.08824651688337326, + -0.025224657729268074, + 0.009578606113791466, + -0.07587290555238724, + -0.0010151780443266034, + -0.009692993015050888, + 0.025045618414878845, + 0.008176131173968315, + -0.0704619362950325, + 0.00668413657695055, + -0.07268998771905899, + -0.035768087953329086, + 0.018610147759318352, + 0.10702575743198395, + -0.01017043087631464, + 0.00913598109036684, + 0.05263757333159447, + -0.0037299869582057, + -0.020748673006892204, + -0.01474090851843357, + 0.0751965343952179, + 0.050926752388477325, + 0.02645803987979889, + 0.0084944237023592, + 0.018858812749385834, + -0.019435718655586243, + -0.046391088515520096, + -0.004321811255067587, + -0.023553622886538506, + 0.03258516639471054, + -0.05888405814766884, + 0.034057267010211945, + -0.03041679970920086, + -0.04981273040175438, + -0.05359245091676712, + 0.030277546495199203, + -0.02421010099351406, + -0.040482789278030396, + -0.035827767103910446, + 0.0028770631179213524, + 0.042770516127347946, + -0.060714241117239, + -0.020967500284314156, + 0.0058386726304888725, + 0.019843529909849167, + -0.019415825605392456, + 0.0565764419734478, + 0.08983797580003738, + -0.0013141987146809697, + 0.046152371913194656, + 0.008951968513429165, + -0.0003220222133677453, + -0.01342795230448246, + -0.027671528980135918, + -0.012343769893050194, + -0.03137167543172836, + 0.035091716796159744, + -0.0632207915186882, + 0.09119071811437607, + 0.004371544811874628, + -0.05136440694332123, + -0.012602382339537144, + 0.007086975034326315, + 0.06612520664930344, + 0.01753591187298298, + -0.06393694877624512, + 0.022360028699040413, + 0.031311996281147, + 0.025960708037018776, + 0.09127029031515121, + -0.09294132888317108 + ] + }, + { + "id": "f6f93c1d-4570-496e-a9ca-df38f8cffc3b", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsmichele", + "reviewDate": "2022-11-14T22:28:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bac786fb-6165-44c7-8123-c2c1c5e55349", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aalexander", + "reviewDate": "2021-05-22T20:18:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f9f06a67-a3c1-4130-a975-c54ecf525717", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fostertimothy", + "reviewDate": "2021-10-19T12:02:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dfeef938-5a21-42f5-80fa-30439cac050a", + "productId": "3e3cf755-7ef0-4c0e-9cf9-a9bd35ae4257", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jespinoza", + "reviewDate": "2022-02-28T18:13:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Mini (Gold)", + "description": "This Basic Stand Mini (Gold) is rated 3.5 out of 5 by 4.\n\nRated 5 out of 5 by jaybegg from Excellent product, especially with", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-04-18T02:56:46", + "price": 440.71, + "stock": 33, + "priceHistory": [ + { + "priceDate": "2021-09-26T12:14:41", + "newPrice": 469.1 + }, + { + "priceDate": "2024-01-09T12:14:41", + "newPrice": 440.71 + } + ], + "descriptionVector": [ + -0.010117616504430771, + 0.001902111922390759, + -0.02580147795379162, + 0.04089384898543358, + -0.00918368250131607, + 0.03471743315458298, + -0.06480255722999573, + 0.021505381911993027, + -0.038876552134752274, + 0.050507139414548874, + -0.008685584180057049, + 0.0011822045780718327, + -0.022725723683834076, + -0.0539938285946846, + 0.05787898972630501, + 0.005307856947183609, + -0.0022507805842906237, + 0.029686642810702324, + -0.014407485723495483, + 0.039723318070173264, + 0.06310901790857315, + -0.15560582280158997, + -0.0832819938659668, + 0.04592463746666908, + -0.0014335884479805827, + -0.028989305719733238, + -0.0022165363188833, + 0.02739539183676243, + 0.047319311648607254, + 0.016897976398468018, + 0.0143950330093503, + 0.026673149317502975, + -0.06898657977581024, + 0.024967163801193237, + -0.05259915068745613, + 0.06704399734735489, + 0.032202038913965225, + 0.0300104059278965, + -0.051154669374227524, + 0.06405540555715561, + 0.016163282096385956, + 0.004840890411287546, + 0.06106681749224663, + -0.04029612988233566, + 0.03065793402493, + -0.010653072036802769, + -0.0034991386346518993, + -0.006630930118262768, + -0.010927025228738785, + -0.0399225577712059, + 0.006185755133628845, + -0.000406261213356629, + 0.020571447908878326, + -0.0009915264090523124, + 0.05812804028391838, + -0.012925644405186176, + -0.061465296894311905, + 0.1265168935060501, + 0.07292155176401138, + -0.06186377629637718, + 0.018703581765294075, + -0.009314433671534061, + 0.042886242270469666, + -0.0026663809549063444, + -0.019263941794633865, + 0.010136295109987259, + -0.06066834181547165, + -0.005731240380555391, + -0.020708424970507622, + 0.0442311055958271, + -0.008131450042128563, + 0.026125241070985794, + -0.05389420688152313, + -0.0055818110704422, + 0.07695614546537399, + -0.018230387941002846, + 0.11366596817970276, + 0.06305921077728271, + 0.04343414679169655, + 0.02317401021718979, + 0.04704535752534866, + -0.016200639307498932, + 0.011344182305037975, + 0.007988247089087963, + 0.015503301285207272, + -0.00609547458589077, + 0.05578697845339775, + -0.10559678077697754, + -0.0733698382973671, + 0.038378454744815826, + -0.061166439205408096, + 0.057231463491916656, + 0.02317401021718979, + -0.02336079813539982, + 0.023560037836432457, + 0.0156153729185462, + -0.011518516577780247, + 0.04238814115524292, + 0.002439123811200261, + -0.006353863049298525, + -0.0023799745831638575, + 0.01856660470366478, + -0.07790253311395645, + -0.0003081981558352709, + -0.0034057453740388155, + 0.05728127434849739, + 0.054541733115911484, + -0.012029067613184452, + 0.027544820681214333, + -0.13976630568504333, + 0.028665542602539062, + -0.01764512248337269, + 0.010746465064585209, + 0.018305102363228798, + -0.0575801320374012, + -0.005759258288890123, + -0.029786262661218643, + -0.026274671778082848, + 0.020945021882653236, + -0.09493748843669891, + 0.022190267220139503, + 0.055089641362428665, + 0.012408867478370667, + 0.015988947823643684, + 0.027171248570084572, + 0.015789708122611046, + -0.05484059453010559, + 0.0318782739341259, + 0.07272231578826904, + -0.07127782702445984, + -0.027694251388311386, + 0.01717193052172661, + 0.036236632615327835, + -0.030085120350122452, + -0.07700595259666443, + 0.06545007973909378, + 0.023485321551561356, + 0.016088565811514854, + -0.018143221735954285, + 0.007409208454191685, + -0.05160295590758324, + -0.040096890181303024, + 0.026199957355856895, + 0.023510226979851723, + -0.011207206174731255, + 0.002249223878607154, + -0.030732648447155952, + 0.03797997534275055, + -0.011643041856586933, + 0.03347218781709671, + 0.001895885681733489, + -0.11147434264421463, + -0.07929720729589462, + -0.08024359494447708, + 0.04418129473924637, + 0.034468382596969604, + -0.029761357232928276, + -0.01036043930798769, + -0.07356908172369003, + 0.05175238475203514, + 0.005796615965664387, + -0.02099483273923397, + -0.014619177207350731, + -0.017956433817744255, + -0.029088925570249557, + 0.03479214757680893, + 0.018155673518776894, + 0.08741620182991028, + -0.09160023182630539, + 0.04592463746666908, + 0.024792829528450966, + -0.011375313624739647, + -0.04756836220622063, + -0.04435563087463379, + -0.05195162445306778, + 0.026100337505340576, + 0.024618495255708694, + -0.059323474764823914, + 0.00501833762973547, + -0.06694437563419342, + -0.006792812142521143, + 0.009015574119985104, + -0.061465296894311905, + -0.011593231931328773, + 0.02052163891494274, + -0.038478072732686996, + 0.047966841608285904, + 0.01537877693772316, + -0.02495471201837063, + -0.014332771301269531, + 0.008965764194726944, + -0.00048681299085728824, + 0.008928406983613968, + 0.014843321405351162, + 0.011979257687926292, + -0.01678590290248394, + 0.004177797120064497, + 0.007303362246602774, + -0.07889872789382935, + -0.01875339075922966, + -0.011643041856586933, + 0.09309452027082443, + 0.06355731189250946, + -0.016076114028692245, + 0.041491568088531494, + -0.06161472573876381, + 0.021617455407977104, + 0.06923563033342361, + 0.03817921504378319, + 0.008411630988121033, + 0.02831687405705452, + 0.004464203491806984, + -0.048041556030511856, + -0.00546039966866374, + 0.04413148760795593, + 0.1265168935060501, + 0.04517749324440956, + 0.014282961376011372, + -0.06181396543979645, + -0.0496852770447731, + 0.02906402014195919, + 0.0034368764609098434, + -0.016524402424693108, + -0.007477696519345045, + -0.03262542188167572, + -0.05075618997216225, + -0.011288146488368511, + -0.033795952796936035, + 0.04657216742634773, + 0.06281016021966934, + -0.030981697142124176, + 0.019936373457312584, + -0.1177503764629364, + 0.039424460381269455, + -0.020397113636136055, + -0.036784540861845016, + -0.022949866950511932, + -0.07441584765911102, + -0.09234737604856491, + 0.031554508954286575, + -0.05374477803707123, + 0.036336250603199005, + -0.05489040166139603, + -0.019562799483537674, + 0.04198966547846794, + 0.05120447650551796, + 0.0539938285946846, + 0.0006514188135042787, + -0.03974822163581848, + -0.0348917655646801, + -0.06554970145225525, + -0.07048086822032928, + 0.011686624959111214, + 0.07904815673828125, + 0.0459495447576046, + 0.038478072732686996, + 0.06699418276548386, + 0.03327294811606407, + -0.043259814381599426, + 0.015465944074094296, + 0.04893813282251358, + 0.013635433278977871, + -0.04066970571875572, + 0.02542790398001671, + 0.020857855677604675, + 0.031355272978544235, + 0.035016290843486786, + -0.019014893099665642, + -0.018118316307663918, + 0.06066834181547165, + -0.029562117531895638, + -0.05449192598462105, + 0.04385753348469734, + -0.05563754960894585, + -0.07262269407510757, + 0.04811627045273781, + -0.028640637174248695, + 0.07805196195840836, + 0.0011619692668318748, + -0.0637565478682518, + 0.1288081556558609, + 0.054442115128040314, + 0.12303021550178528, + 0.0287900660187006, + 0.01527915708720684, + -0.04639783129096031, + -0.014096174389123917, + -0.06300940364599228, + -0.03299899399280548, + -0.04438053444027901, + -0.01940091885626316, + 0.041591186076402664, + 0.0018554151756688952, + -0.003299899399280548, + 0.005753032397478819, + 0.017122119665145874, + -0.019488085061311722, + 0.02231479249894619, + 0.01753305085003376, + 0.0028578373603522778, + 0.03611210733652115, + 0.058476708829402924, + -0.05309725180268288, + -0.06440407782793045, + 0.029761357232928276, + 0.05043242499232292, + -0.09249680489301682, + -0.019176773726940155, + -0.06928543746471405, + 0.02267591282725334, + 0.06654589623212814, + 0.013996554538607597, + -0.03730754181742668, + -0.019438276067376137, + 0.06594818085432053, + -0.04089384898543358, + -0.0028531677089631557, + 0.022900057956576347, + 0.01087098941206932, + 0.05449192598462105, + 0.01082740630954504, + -0.047394029796123505, + -0.020409567281603813, + 0.022078195586800575, + 0.05484059453010559, + 0.020023541525006294, + 0.04151647165417671, + -0.05279839038848877, + -0.028466302901506424, + -0.00445486418902874, + -0.020235233008861542, + -0.07760367542505264, + 0.008224844001233578, + 0.043185099959373474, + -0.04022141546010971, + -0.039798032492399216, + -0.0017059857491403818, + -0.05364516004920006, + 0.038303740322589874, + 0.02851611189544201, + -0.00802560430020094, + 0.047020453959703445, + 0.0004638537939172238, + -0.009034252725541592, + 0.023037033155560493, + -0.08173789083957672, + -0.0023130427580326796, + -0.020745784044265747, + 0.045999351888895035, + 0.020695973187685013, + 0.0011845394037663937, + -0.03929993510246277, + -0.0005210572271607816, + -0.02222762443125248, + 0.056882794946432114, + 0.007502601481974125, + 0.10828651487827301, + -0.02370946668088436, + 0.05299763008952141, + 0.010074032470583916, + 0.08796411007642746, + -0.054342497140169144, + 0.012776214629411697, + 0.011842280626296997, + 0.028640637174248695, + 0.024356994777917862, + -0.030159836634993553, + 0.040570084005594254, + -0.08866144716739655, + 0.00895953830331564, + -0.0835808515548706, + -0.01595158874988556, + 0.026125241070985794, + 0.039773128926754, + 0.014743701554834843, + 0.021243881434202194, + 0.04527711123228073, + 0.03322313725948334, + -0.04789212718605995, + 0.015465944074094296, + -0.02250157855451107, + -0.00445486418902874, + 0.022850247099995613, + -0.03768111765384674, + 0.05018337815999985, + 0.002162056742236018, + -0.04301076382398605, + 0.06111662834882736, + -0.00330612575635314, + -0.025627143681049347, + -0.06744247674942017, + -0.07072991877794266, + -0.05110485851764679, + 0.04433072358369827, + -0.005108618177473545, + -0.0824352279305458, + 0.012589427642524242, + 0.06639646738767624, + 0.005027676932513714, + 0.01560292113572359, + 0.028615731745958328, + 0.006381880957633257, + 0.006381880957633257, + 0.006960920058190823, + 0.019998636096715927, + -0.050208281725645065, + -0.03778073564171791, + 0.12183477729558945, + 0.028615731745958328, + -0.07556147128343582, + -0.003934974316507578, + -0.073519267141819, + 0.0008140789577737451, + 0.03294918313622475, + 0.029387783259153366, + 0.045800115913152695, + 0.07715538889169693, + 0.01307507324963808, + 0.019376013427972794, + -0.005793502554297447, + 0.005516435950994492, + -0.028615731745958328, + -0.056285079568624496, + -0.04811627045273781, + -0.014096174389123917, + 0.03616191819310188, + -0.11575797945261002, + -0.0029294390697032213, + -0.026747863739728928, + -0.03289937600493431, + 0.0051055047661066055, + -0.11187282204627991, + -0.010814953595399857, + 0.04502806067466736, + -0.022825341671705246, + 0.0269969142973423, + -0.0009712911560200155, + 0.021530287340283394, + -0.03113112784922123, + 0.028541017323732376, + -0.002121586352586746, + -0.03185337036848068, + 0.0835808515548706, + 0.035863056778907776, + -0.08019378036260605, + 0.019899016246199608, + -0.06609760969877243, + 0.035788342356681824, + 0.04061989486217499, + -0.02118161879479885, + 0.025153949856758118, + 0.007789007853716612, + -0.07142725586891174, + -0.006086135283112526, + 0.03075755387544632, + 0.0637565478682518, + 0.023124201223254204, + 0.10430172830820084, + -0.0356140099465847, + -0.04883851110935211, + -0.04211418703198433, + 0.009351790882647038, + -0.018168125301599503, + 0.03177865594625473, + 0.00876652542501688, + -0.05648431554436684, + -0.05304744094610214, + -0.045526161789894104, + -0.02577657252550125, + 0.012570749036967754, + 0.009744042530655861, + -0.02662334032356739, + -0.016673831269145012, + -0.000822640024125576, + -0.007035634946078062, + -0.04584992304444313, + -0.025527523830533028, + -0.04039575159549713, + 0.014096174389123917, + -0.0399225577712059, + -0.0006156180170364678, + 0.010254593566060066, + -0.025353189557790756, + 0.019201679155230522, + 0.07416679710149765, + -0.021729527041316032, + -0.005650299601256847, + -0.0052922917529940605, + 0.0676417127251625, + 0.05309725180268288, + -0.04497825354337692, + 0.06928543746471405, + 0.0369090661406517, + -0.04669668897986412, + -0.001902111922390759, + 0.017396073788404465, + -0.03768111765384674, + 0.025191308930516243, + -0.011344182305037975, + 0.011705303564667702, + 0.008212391287088394, + -0.023460417985916138, + 0.005668978206813335, + 0.06868772208690643, + 0.0661972314119339, + -0.01072778645902872, + 0.0039941235445439816, + -0.017582859843969345, + -0.02101973630487919, + -0.03242618218064308, + -0.002499829512089491, + -0.07317060232162476 + ] + }, + { + "id": "85b09de7-7ccc-4b9e-857e-b13b96a7d70c", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "bartonjoshua", + "reviewDate": "2022-01-18T14:25:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4e0e3ad5-3549-42a2-acb5-8b992d25cd59", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael89", + "reviewDate": "2022-10-07T22:04:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ab606c97-ba5a-4c9e-ad96-27aa7465aeef", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "dawn92", + "reviewDate": "2022-07-19T03:54:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d5d60e28-f817-4274-818e-952c74b6a19b", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "gordonscott", + "reviewDate": "2022-03-31T00:33:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3107833c-db97-451e-b519-42033e30c8da", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "elizabeth70", + "reviewDate": "2021-11-05T10:36:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dadb508e-7680-44e3-932b-033ebb84bcd5", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "brett24", + "reviewDate": "2022-10-26T07:56:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "041cf095-44d3-4d54-8c88-c341d136d1d5", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "michaelgarner", + "reviewDate": "2021-09-30T15:09:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dab61c22-a91d-4a41-804c-e71db2cd35a6", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "jford", + "reviewDate": "2022-12-31T18:49:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e589f632-f8c0-4545-8e64-11ac88d800ad", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "shanesmith", + "reviewDate": "2021-09-26T12:14:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d92611e-cde5-4f3c-87fc-b2a17a431b1f", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "stefanie71", + "reviewDate": "2022-11-14T06:34:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0ed9603e-dcab-4c51-af42-50df7c2c2da3", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "vlucas", + "reviewDate": "2021-10-30T04:38:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "077adbf1-97a1-41d2-8488-27ae0ee9b6a1", + "productId": "5dd9596e-de3a-45fc-a6e3-4eae27daeaf8", + "category": "Accessory", + "docType": "customerRating", + "userName": "jstuart", + "reviewDate": "2022-12-16T04:49:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "product", + "name": "Awesome TV Pro (Gold)", + "description": "This Awesome TV Pro (Gold) is not just for watching TV anymore. It's for viewing videos using the most advanced apps that come with Android.\n\nIn a recent interview at GDC, GIMP CEO Jack Dorsey gave an impressive list of other smartwatch apps that he recommends to anyone, anytime they need a new app installed:\n\n\"I'd say every single smartwatch has a smartwatch app that you use for whatever", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-03-19T08:19:57", + "price": 550.5, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-01-20T06:42:16", + "newPrice": 527.17 + }, + { + "priceDate": "2022-11-02T06:42:16", + "newPrice": 526.58 + }, + { + "priceDate": "2025-03-05T06:42:16", + "newPrice": 550.5 + } + ], + "descriptionVector": [ + 0.04138697311282158, + 0.011532865464687347, + -0.051412053406238556, + 0.004540102556347847, + 0.03406919911503792, + 0.04773976653814316, + 0.0028932683635503054, + 0.04653353989124298, + 0.08250589668750763, + 0.08631221204996109, + 0.026791630312800407, + 9.23517145565711e-05, + 0.04262000322341919, + 0.00017946807201951742, + 0.04127975180745125, + 0.04597063362598419, + -0.0013092583976686, + -0.022315191105008125, + -0.09676617383956909, + 0.029271095991134644, + 0.044952042400836945, + -0.08813495188951492, + -0.07301691174507141, + -0.0333990715444088, + 0.043156106024980545, + -0.007049723993986845, + 0.009971472434699535, + 0.0020857667550444603, + 0.028520556166768074, + -0.026282334700226784, + 0.06159796565771103, + -0.02397710271179676, + -0.051599688827991486, + 0.034605298191308975, + -0.061008255928754807, + 0.006245573051273823, + 0.05390492454171181, + 0.02435237355530262, + 0.05280591547489166, + -0.027930844575166702, + 0.06047215685248375, + -0.03910854458808899, + -0.020371826365590096, + 0.005032645072788, + 0.010112199001014233, + 0.018991366028785706, + -0.01303394790738821, + -0.09312068670988083, + -0.042861249297857285, + 0.008436884731054306, + -0.0006286618299782276, + -0.023253366351127625, + 0.013677268289029598, + 0.05575447157025337, + 0.026657605543732643, + -0.027354536578059196, + 0.013844800181686878, + -0.0859905481338501, + 0.013898409903049469, + -0.04074365273118019, + -0.041440583765506744, + -0.032434090971946716, + 0.016940781846642494, + -0.010608091950416565, + -0.02117597684264183, + -0.0841141939163208, + 0.018200617283582687, + 0.05119761452078819, + -0.038572441786527634, + 0.043719008564949036, + -0.011720500886440277, + 0.02790403924882412, + 0.029405122622847557, + 0.06481457501649857, + -0.03369392827153206, + -0.0005557856056839228, + 0.018924353644251823, + 0.019433649256825447, + -0.004406077321618795, + -0.06765590608119965, + 0.030128857120871544, + 0.0035282126627862453, + 0.004938827361911535, + -0.02999483235180378, + 0.023628637194633484, + -0.009341553784906864, + 0.03884049504995346, + -0.10797067731618881, + -0.010916350409388542, + 0.017838750034570694, + -0.019661491736769676, + 0.09773115068674088, + -0.01139213889837265, + 0.002906670793890953, + 0.02479465678334236, + 0.021578053012490273, + -0.006275728344917297, + -0.0083497678861022, + 0.028252504765987396, + 0.04085087031126022, + 0.049616117030382156, + -0.07559019327163696, + 0.03329185023903847, + -0.07301691174507141, + -0.006882192566990852, + 0.05452143773436546, + 0.011278217658400536, + 0.033559903502464294, + -0.006238871719688177, + -0.0756974145770073, + -0.005856900010257959, + -0.046185072511434555, + -0.005538590252399445, + 0.035650696605443954, + -0.021296599879860878, + 0.04358498379588127, + 0.028788605704903603, + -0.04093128815293312, + -0.036803312599658966, + -0.06744146347045898, + 0.013683970086276531, + 0.030209273099899292, + -0.10250245034694672, + 0.01691397652029991, + -0.03197840601205826, + 0.04283444210886955, + 0.04511287063360214, + 0.05998966470360756, + 0.030155662447214127, + -0.004074364900588989, + -0.055593639612197876, + 0.1048612892627716, + 0.10732735693454742, + 0.0366692878305912, + 0.03286297246813774, + 0.018910951912403107, + -0.010655000805854797, + 0.09676617383956909, + 0.04811503365635872, + 0.023963700979948044, + 0.0071100350469350815, + -0.005267189349979162, + -0.007766758557409048, + 0.018817134201526642, + -0.013717476278543472, + 0.015305674634873867, + 0.02368224784731865, + -0.004010702949017286, + -0.014501523226499557, + 0.053770896047353745, + 0.01628405787050724, + -0.1000363826751709, + -0.034605298191308975, + -0.045327313244342804, + 0.03999311104416847, + 0.03819717466831207, + 0.021149171516299248, + -0.05800609290599823, + -0.07714488357305527, + 0.06561872363090515, + -0.033935174345970154, + -0.038706470280885696, + 0.006583986338227987, + -0.03795592859387398, + -0.03197840601205826, + -0.035168204456567764, + 0.06481457501649857, + 0.02080070599913597, + -0.08695553243160248, + 0.018884146586060524, + 0.046667564660310745, + 0.008845660835504532, + 0.010480768047273159, + 0.013020545244216919, + -0.021537844091653824, + 0.021296599879860878, + 0.014273680746555328, + -0.002305232919752598, + 0.004010702949017286, + -0.006225469056516886, + -0.04160141199827194, + 0.034122806042432785, + -0.006292481441050768, + -0.012042161077260971, + 0.03741982579231262, + 0.04567577689886093, + 0.08025427162647247, + 0.013476231135427952, + -0.03618679568171501, + -0.04503245651721954, + 0.06502901017665863, + -0.0368301160633564, + 0.01879032887518406, + -0.061008255928754807, + 0.0401807464659214, + -0.0014382576337084174, + 0.04653353989124298, + -0.029083462432026863, + -0.08872465789318085, + 0.062134068459272385, + -0.0023303625639528036, + 0.0024007258471101522, + 0.10555822402238846, + 0.0087987519800663, + 0.03819717466831207, + 0.0035282126627862453, + 0.0457293875515461, + -0.025049304589629173, + 0.017155220732092857, + 0.008108522742986679, + 0.008477091789245605, + -0.005809991154819727, + -0.053958531469106674, + -0.019205806776881218, + 0.0772521048784256, + -0.008008004166185856, + 0.039644643664360046, + 0.002002001041546464, + -0.009100308641791344, + 0.02035842277109623, + 0.08138008415699005, + 0.03642804175615311, + 0.022328592836856842, + -0.020184190943837166, + 0.013543243519961834, + -0.036803312599658966, + 0.0032769152894616127, + -0.011010167188942432, + 0.04111891984939575, + 0.003963794559240341, + -0.011512761935591698, + -0.06561872363090515, + -0.0016074643936008215, + -0.0055486420169472694, + -0.011063777841627598, + 0.03272894769906998, + 0.03433724865317345, + -0.0012238173512741923, + -0.04302207753062248, + -0.009870953857898712, + -0.008255950175225735, + -0.0350341796875, + -0.023561624810099602, + -0.03642804175615311, + 0.10464685410261154, + -0.005250435788184404, + -0.0021175977308303118, + 0.09649812430143356, + -0.03382795304059982, + 0.014689158648252487, + -0.12523311376571655, + -0.06577955186367035, + -0.07886040955781937, + 0.03380114585161209, + 0.002703957725316286, + 0.03573111072182655, + 0.11708438396453857, + -0.031844381242990494, + 0.06808478385210037, + -0.008698233403265476, + -0.04956250637769699, + -0.009736928157508373, + -0.016498498618602753, + 0.024513203650712967, + 0.040287964046001434, + 0.017503686249256134, + 0.06325987726449966, + -0.07821708917617798, + -0.011418944224715233, + -0.00046573745203204453, + 0.0050460477359592915, + -0.019406843930482864, + 0.010340041480958462, + 0.03803634271025658, + 0.006882192566990852, + -0.016980988904833794, + -0.06674453616142273, + 0.027032876387238503, + 0.059292733669281006, + 0.03350629284977913, + 0.057845260947942734, + -0.0218058954924345, + 0.06797756254673004, + 0.03634762391448021, + 0.013436023145914078, + 0.023253366351127625, + -0.050179023295640945, + 0.02771640568971634, + 0.04784698411822319, + 0.0040542613714933395, + -0.040019914507865906, + -0.0014114525401964784, + 0.11258114129304886, + 0.016927378252148628, + 0.049133628606796265, + 0.0002531819336581975, + -0.04216431826353073, + 0.0628846064209938, + 0.03436405211687088, + 0.02240900881588459, + -0.0008150405483320355, + -0.019219208508729935, + -0.07757376879453659, + -0.029565952718257904, + -0.021457429975271225, + 0.04497884586453438, + 0.002005351474508643, + 0.03465890884399414, + -0.032809361815452576, + -0.04792740195989609, + 0.06953226029872894, + -0.020130580291152, + -0.03993950039148331, + -0.03747343644499779, + 0.016860365867614746, + 0.056826669722795486, + -0.06904976814985275, + -0.013925215229392052, + -0.031763963401317596, + -0.02924429252743721, + 0.018508875742554665, + 0.06154435873031616, + -0.13895729184150696, + 0.03959103301167488, + 0.019594479352235794, + 0.0663156509399414, + -0.03028968721628189, + -0.016297459602355957, + 0.0036622376646846533, + -0.0032651880756020546, + -0.017342856153845787, + -0.015640737488865852, + 0.03637443110346794, + 0.02924429252743721, + 0.06974669545888901, + -0.04109211638569832, + 0.03157632797956467, + 0.0166593287140131, + 0.04294166341423988, + 0.05950717628002167, + 0.027984455227851868, + 0.038572441786527634, + -0.00857090950012207, + -0.04985736310482025, + -0.00395039189606905, + -0.09966111183166504, + -0.05119761452078819, + 0.058166924864053726, + 0.03776829317212105, + -0.03173715993762016, + 0.0020103775896131992, + -0.058434974402189255, + 0.054441023617982864, + -0.03980547562241554, + -0.029458731412887573, + 0.04881196469068527, + -0.00022344508033711463, + -0.051412053406238556, + -0.013831397518515587, + 0.10126941651105881, + 0.022837888449430466, + -0.03530222922563553, + -0.008751843124628067, + 0.0721055418252945, + -0.026979265734553337, + 0.03240728750824928, + -0.06701258569955826, + -0.005813341587781906, + -0.11097283661365509, + -0.014045837335288525, + 0.050473880022764206, + -0.009515786543488503, + -0.08196979016065598, + 0.0577380433678627, + -0.03406919911503792, + 0.05897107347846031, + 0.0021846103481948376, + -0.04310249537229538, + -0.017530491575598717, + 0.035945549607276917, + -0.033935174345970154, + -0.004597063176333904, + -0.02397710271179676, + 0.02673802152276039, + 0.031951598823070526, + -0.01968829706311226, + 0.015131441876292229, + -0.0861513763666153, + 0.023293573409318924, + 0.009535891003906727, + -0.08325643092393875, + 0.019447052851319313, + -0.0031311630737036467, + -0.003173045814037323, + 0.06406403332948685, + -0.031201058998703957, + -0.0543069988489151, + 0.044362328946590424, + 0.04430872201919556, + -0.016217045485973358, + -0.013583450578153133, + 0.016498498618602753, + 0.0001726621121633798, + 0.07028280198574066, + -0.07001474499702454, + -0.01518505159765482, + -0.05173371359705925, + 0.0006311747711151838, + -0.021162573248147964, + -0.011881330981850624, + -0.05133163928985596, + -0.07580463588237762, + -0.003973846323788166, + 0.08095119893550873, + 0.0669589713215828, + 0.010688506998121738, + 0.013301998376846313, + 0.07934290170669556, + 0.1353118121623993, + -0.06620842963457108, + -0.04886557534337044, + 0.12212373316287994, + 0.025330757722258568, + -0.013717476278543472, + -0.042968470603227615, + -0.026469970121979713, + 0.10663042217493057, + 0.008604415692389011, + -0.11011508107185364, + -0.047712959349155426, + 0.026322543621063232, + 0.021242989227175713, + 0.034900154918432236, + -0.01680675521492958, + 0.01718202605843544, + -0.02801126055419445, + 0.016860365867614746, + 0.0421375147998333, + -0.034524884074926376, + -0.02943192608654499, + -0.08416780829429626, + -0.024111127480864525, + -0.03372073173522949, + 0.10218078643083572, + -0.03396197780966759, + 0.015064428560435772, + -0.015935592353343964, + -0.04186946153640747, + 0.03814356401562691, + -0.045917022973299026, + -0.027126694098114967, + -0.032916583120822906, + -0.017423272132873535, + 0.019031573086977005, + -0.05449463427066803, + -0.004570258315652609, + -0.005850198678672314, + 0.057845260947942734, + -0.027957649901509285, + -0.03540945053100586, + 0.052457451820373535, + 0.0010638247476890683, + -0.0028815411496907473, + -0.002479465678334236, + 0.013234985060989857, + -0.016498498618602753, + -0.05800609290599823, + -0.02046564407646656, + 0.015935592353343964, + 0.01367056742310524, + -0.0644393041729927, + -0.08314921706914902, + 0.04889238253235817, + -0.014635547995567322, + -0.012082369066774845, + -0.05939995497465134, + 0.030798982828855515, + 0.04631909728050232, + 0.004935476928949356, + -0.0034377456177026033, + 0.025947272777557373, + 0.061651576310396194, + 0.07033640891313553, + -0.03685691952705383, + 0.02498229220509529, + -0.03902813047170639, + -0.012471041642129421, + 0.02222137339413166, + 0.024178139865398407, + 0.03739302232861519, + 0.030530933290719986, + 0.03993950039148331, + 0.017048001289367676, + 0.015091233886778355, + -0.014407705515623093, + -0.041628215461969376, + -0.03372073173522949, + 0.019661491736769676, + -0.019071782007813454, + 0.03607957437634468, + -0.021484235301613808, + 0.073821060359478, + -0.11097283661365509, + -0.014581938274204731, + -0.04109211638569832, + -0.0030540984589606524, + 0.0526718907058239, + -0.01617683842778206, + 0.01456853561103344, + -0.024419385939836502, + -0.03709816560149193, + 0.036615677177906036 + ] + }, + { + "id": "55badc7d-75b2-44f3-93de-63d09f97fa19", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "jpeterson", + "reviewDate": "2022-02-11T08:20:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7650cddb-6bbb-4402-a3f4-2ec0b401f5ba", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "melissa95", + "reviewDate": "2022-10-17T08:45:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "67fbe89f-d60a-4e5d-b50a-95041392b484", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "mstone", + "reviewDate": "2021-09-12T20:54:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4255134c-9e61-486d-9c4b-a88f2aa738f3", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "qbradshaw", + "reviewDate": "2022-03-22T09:13:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "44461ad6-160a-48f1-b255-69a105d65cd3", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "donovansandra", + "reviewDate": "2022-03-03T07:31:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6d86f6a4-45eb-44a4-b2f5-2c81e7069769", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "jcolon", + "reviewDate": "2021-04-29T16:35:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "41c3d0fa-859f-454e-a391-6b2d9ddf8896", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "hicksdennis", + "reviewDate": "2022-07-03T18:35:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9e97a7fd-cbd6-45e0-a184-526814475aca", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "oadams", + "reviewDate": "2021-06-06T16:12:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "59c0b31b-fdcf-4543-ae9f-88489225ff2c", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "haneyfrank", + "reviewDate": "2022-07-17T07:19:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1e6a404a-3d69-4318-a7ae-40ec6cd245f6", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "ashley08", + "reviewDate": "2022-05-21T05:35:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "41cbfe4c-b51a-4921-9be2-4e626a4dab5f", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "tbennett", + "reviewDate": "2021-01-20T06:42:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "634d943b-8672-4e4d-871d-62f228290085", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "danielvillegas", + "reviewDate": "2021-07-18T01:33:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "89e2e04b-cdcc-41f6-a16e-4afbdebc1e05", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "nguyenamber", + "reviewDate": "2022-11-02T07:42:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "86125367-9d8b-4320-90cd-eaf2ef7683bb", + "productId": "a1a51e21-38a3-4741-bb82-cfbf6040e62c", + "category": "Media", + "docType": "customerRating", + "userName": "kristin19", + "reviewDate": "2022-07-06T20:46:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer 3000 (Black)", + "description": "This Amazing Computer 3000 (Black) is a beautifully designed, fully programmable, computer that can handle virtually any work you might do; any computer. It is a super-computer that combines a wide variety of features to create an awesome game machine – a computer", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-11-18T23:22:12", + "price": 676.25, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-03-20T06:56:55", + "newPrice": 732.52 + }, + { + "priceDate": "2021-10-17T06:56:55", + "newPrice": 633.17 + }, + { + "priceDate": "2022-05-16T06:56:55", + "newPrice": 687.79 + }, + { + "priceDate": "2022-12-13T06:56:55", + "newPrice": 694.48 + }, + { + "priceDate": "2024-09-09T06:56:55", + "newPrice": 676.25 + } + ], + "descriptionVector": [ + -0.013343668542802334, + 0.034680262207984924, + -0.044478897005319595, + 0.020765669643878937, + -0.006562296766787767, + 0.01983626000583172, + -0.06622708588838577, + 0.02878514863550663, + 0.08943577110767365, + 0.16145175695419312, + 0.08741762489080429, + -0.03999117389321327, + 0.05565836653113365, + -0.04981636255979538, + 0.012593502178788185, + 0.02292986772954464, + -0.05042712017893791, + -0.03295421600341797, + -0.04280595853924751, + -0.07116623222827911, + -0.024310704320669174, + -0.026262464001774788, + -0.04904628172516823, + 0.04522242397069931, + -0.034175723791122437, + -0.01849525421857834, + 0.014990052208304405, + 0.00013287655019667, + 0.011956192553043365, + -0.020513402298092842, + 0.07190976291894913, + 0.03441471606492996, + 0.02292986772954464, + 0.011451655998826027, + -0.00874972902238369, + -0.0181367676705122, + -0.027882292866706848, + 0.008318217471241951, + 0.07881394773721695, + -0.007534857839345932, + 0.017738448455929756, + 0.014458960853517056, + 0.035450343042612076, + 0.0024645954836159945, + 0.07998234778642654, + 0.004026336129754782, + -0.023089194670319557, + -0.01748618111014366, + -0.03592832759022713, + 0.02801506593823433, + 0.031095394864678383, + 0.016185007989406586, + 0.03850411996245384, + 0.011969470418989658, + -0.009075022302567959, + 0.02173491194844246, + 0.05879180505871773, + 0.08359377086162567, + 0.023646840825676918, + -0.02990044094622135, + 0.00945342518389225, + 0.019424663856625557, + 0.020566510036587715, + -0.019915923476219177, + -0.0006991319241933525, + -0.03738882765173912, + -0.04474444314837456, + 0.047665443271398544, + 0.027537083253264427, + 0.030962621793150902, + -0.060703735798597336, + -0.03526446223258972, + -0.006728263106197119, + 0.020486846566200256, + 0.028333721682429314, + -0.0002066277083940804, + 0.05356055870652199, + 0.0567205511033535, + 0.010601909831166267, + 0.0013053228612989187, + 0.06681128591299057, + 0.03930075466632843, + 0.00022052736312616616, + -0.037707481533288956, + 0.07509630918502808, + 0.02745741978287697, + -0.05475551262497902, + -0.15412269532680511, + -0.0097654415294528, + 0.0375216007232666, + -0.042938731610774994, + 0.057888951152563095, + 0.026913052424788475, + -0.009938046336174011, + 0.00920779537409544, + 0.043363604694604874, + -0.08773627877235413, + 0.019570713862776756, + -0.024868350476026535, + 0.005961499642580748, + 0.057464078068733215, + -0.04323083162307739, + -0.040177058428525925, + -0.0868334248661995, + -0.030882958322763443, + -0.028254056349396706, + -0.016981644555926323, + -0.012673165649175644, + 0.03507858142256737, + -0.14381952583789825, + -0.04309805855154991, + -0.0211772657930851, + -0.0080062011256814, + -0.0007360593299381435, + 0.014976774342358112, + 0.018787354230880737, + -0.05143619328737259, + -0.07063513994216919, + 0.031281277537345886, + -0.06819212436676025, + 0.0009053446701727808, + -0.04174377769231796, + 0.0059980121441185474, + 0.006001331843435764, + 0.01065501943230629, + -0.015282152220606804, + -0.025558767840266228, + -0.039274200797080994, + 0.007355614565312862, + 0.005815449636429548, + -0.10467809438705444, + 0.09134770184755325, + 0.04214209318161011, + 0.06792657822370529, + -0.025917256250977516, + 0.039194539189338684, + 0.0024629358667880297, + 0.06755481660366058, + -0.01946449652314186, + 0.04450545087456703, + -0.019079454243183136, + -0.005603013094514608, + -0.0533481203019619, + -0.016384165734052658, + -0.03452093526721001, + 0.03924764692783356, + -0.022279279306530952, + 0.04811687022447586, + 0.00043400118011049926, + 0.05454307794570923, + -0.024456754326820374, + -0.036432862281799316, + -0.04803720861673355, + -0.09039174020290375, + 0.01602567918598652, + 0.0004157449002377689, + 0.0004176120273768902, + 0.026156246662139893, + -0.0211772657930851, + 0.11291000992059708, + -0.03619387373328209, + 0.006319986656308174, + -0.05741097033023834, + 0.022743985056877136, + 0.025704819709062576, + -0.0053905765525996685, + 0.047798216342926025, + 0.012467368505895138, + -0.08051344007253647, + 0.04662981629371643, + -0.0020928315352648497, + -0.05000224709510803, + 0.0375216007232666, + 0.02371322736144066, + 0.04493032395839691, + 0.0037475130520761013, + 0.07913260161876678, + 0.029103802517056465, + 0.009254265576601028, + -0.05419786646962166, + -0.049842920154333115, + 0.03667185455560684, + -0.007169732358306646, + 0.03614076226949692, + 0.0771675631403923, + 0.06330608576536179, + 0.02785573899745941, + -0.00016358026186935604, + 0.033697742968797684, + -0.04219520464539528, + 0.09193190187215805, + -0.010601909831166267, + 0.05836693197488785, + -0.008597040548920631, + 0.0016762568848207593, + 0.041372012346982956, + -0.006071037612855434, + 0.006595490034669638, + -0.0098384665325284, + 0.0063067092560231686, + -0.011577790603041649, + -0.0019799747969955206, + 0.09092283248901367, + 0.022611211985349655, + 0.005257803946733475, + -0.017605677247047424, + -0.019769873470067978, + -0.008968804031610489, + 0.04944460093975067, + -0.00020289346866775304, + 0.01609206572175026, + 0.04665637016296387, + -0.05040056258440018, + -0.06914808601140976, + 0.0835406631231308, + -0.06999783217906952, + 0.00010015012958319858, + 0.008729813620448112, + -0.015494588762521744, + -0.06574910134077072, + 0.044266458600759506, + 0.00948661845177412, + -0.06431515514850616, + -0.04126579314470291, + 0.022876758128404617, + -0.06107550114393234, + 0.09001997858285904, + 0.016264671459794044, + 0.012507200241088867, + 0.03914142772555351, + -0.06999783217906952, + 0.016211561858654022, + -0.0019036303274333477, + 0.038477566093206406, + -0.04376192390918732, + 0.04211553931236267, + 0.004759905859827995, + -0.03922109305858612, + -0.06314675509929657, + 0.13500340282917023, + 0.02087188884615898, + -0.027324646711349487, + -0.04339015856385231, + -0.02314230240881443, + 0.013662323355674744, + -0.025425996631383896, + 0.03560966998338699, + -0.019703486934304237, + 0.0069241030141711235, + -0.023607008159160614, + 0.01990264654159546, + 0.07275950908660889, + -0.00786678958684206, + 0.07578672468662262, + -0.0015941037563607097, + 0.006207129452377558, + 0.03295421600341797, + -0.04012394696474075, + 0.006539061665534973, + -0.023965494707226753, + -0.07748621702194214, + -0.00970569346100092, + -0.0007053556037135422, + 0.06123482808470726, + -0.04761233553290367, + -0.0006991319241933525, + 0.013217534869909286, + -0.03207791596651077, + -0.005762340500950813, + -0.027616746723651886, + 0.031706150621175766, + -0.04344327002763748, + -0.010820984840393066, + 0.009566281922161579, + 0.015109547413885593, + -0.02399204857647419, + -0.006675153970718384, + 0.09076350182294846, + -0.023301631212234497, + -0.025452550500631332, + 0.03683118149638176, + 0.026355406269431114, + 0.05369333177804947, + 0.008842670358717442, + 0.025160450488328934, + -0.0673423781991005, + -0.02737775631248951, + -0.04777166247367859, + 0.0158663522452116, + -0.039645966142416, + 0.0029293005354702473, + 0.03699050843715668, + 0.02510734088718891, + 0.0588449165225029, + 0.04033638536930084, + 0.027908848598599434, + 0.044425785541534424, + -0.023182135075330734, + -0.004643729422241449, + 0.04463822394609451, + 0.05130342021584511, + -0.06160658970475197, + 0.025850869715213776, + -0.040601931512355804, + -0.04057537391781807, + 0.09862365573644638, + 0.004789779428392649, + 0.0062270453199744225, + -0.008942250162363052, + -0.011737117543816566, + 0.021562306210398674, + -0.03401639685034752, + -0.03526446223258972, + -0.00235339836217463, + 0.0860367938876152, + -0.03239656984806061, + 0.06378406286239624, + 0.05448996648192406, + 0.014140306040644646, + -0.010801069438457489, + -0.05194072797894478, + -0.03542378917336464, + -0.07063513994216919, + 0.048647962510585785, + 0.03879621997475624, + -0.011531319469213486, + -0.06681128591299057, + 0.00460389768704772, + -0.05297635868191719, + -0.08678031712770462, + -0.006303390022367239, + 0.02279709465801716, + 0.042646631598472595, + 0.02412482164800167, + 0.035370681434869766, + -0.10154465585947037, + 0.007495026104152203, + 0.10021692514419556, + 0.02849304862320423, + 0.071962870657444, + 0.064633809030056, + 0.030803294852375984, + -0.046815697103738785, + -0.007262673694640398, + -0.006890909746289253, + -0.03924764692783356, + -0.008689980953931808, + -0.03367118909955025, + -0.005138308275490999, + -0.0080062011256814, + 0.0015824860893189907, + -0.042088985443115234, + 0.07222841680049896, + 0.03082985058426857, + 0.026421792805194855, + 0.0039831846952438354, + 0.020978106185793877, + -0.06330608576536179, + -0.04317772388458252, + -0.00906174536794424, + -0.038690000772476196, + -0.016105344519019127, + 0.09283475577831268, + 0.03497236222028732, + -0.04001772776246071, + 0.00787342805415392, + 0.046258050948381424, + 0.05847315117716789, + 0.0204470157623291, + -0.010947119444608688, + 0.017446348443627357, + -0.013390139676630497, + -0.07456521689891815, + -0.00393339479342103, + -0.028466492891311646, + -0.0038105801213532686, + 0.0005091007915325463, + -0.027563638985157013, + -0.04325738549232483, + 0.006253600120544434, + -0.027072379365563393, + 0.05969466269016266, + 0.07302505522966385, + 0.02569154091179371, + 0.06973228603601456, + -0.1261872947216034, + -0.03558311611413956, + -0.08789560943841934, + -0.04508965089917183, + 0.04182343930006027, + -0.037919919937849045, + 0.013589298352599144, + -0.0594291165471077, + -0.0015376752708107233, + -0.00393671402707696, + -0.06867010146379471, + 0.006990489084273577, + 0.02870548516511917, + 0.022982975468039513, + -0.023168858140707016, + 0.017034754157066345, + 0.03486614301800728, + 0.025213560089468956, + -0.014990052208304405, + -0.04870107024908066, + -0.06006642431020737, + 1.8087705029756762e-05, + -0.01651693880558014, + -0.058313824236392975, + -0.013376861810684204, + 0.004195621237158775, + -0.03210446983575821, + -0.011790227144956589, + 0.018880296498537064, + 0.03048464097082615, + -0.03210446983575821, + 0.06792657822370529, + 0.03988495469093323, + 0.03321976214647293, + -0.08539947867393494, + 0.01044258289039135, + 0.07201597839593887, + 0.020354073494672775, + 0.02950212173163891, + -0.07244085520505905, + -0.0039931428618729115, + 0.06654573976993561, + -0.006970573216676712, + -0.05571147799491882, + -0.03183892369270325, + 0.05751718580722809, + -0.028094729408621788, + -0.007753932848572731, + 0.06410271674394608, + -0.010104011744260788, + -0.010316448286175728, + 0.02397877164185047, + 0.018110213801264763, + 0.005264442414045334, + 0.07090068608522415, + 0.006432843394577503, + -0.11046698689460754, + -0.04190310463309288, + 0.06054440885782242, + -0.051462747156620026, + 0.02785573899745941, + -0.0454348623752594, + 0.0018322649411857128, + 0.07387480139732361, + -0.03486614301800728, + -0.0393538661301136, + 0.0028048260137438774, + -0.026076583191752434, + 0.011657454073429108, + 0.08226604014635086, + -0.021987179294228554, + -0.04344327002763748, + 0.07121933996677399, + -0.03619387373328209, + 0.0013849865645170212, + 0.009506533853709698, + 0.00973888672888279, + 0.06187213584780693, + -0.052604593336582184, + -0.03332597762346268, + 0.04296528548002243, + -0.06739548593759537, + -0.0551803857088089, + -0.002489490434527397, + 0.033910177648067474, + -0.050188127905130386, + -0.02990044094622135, + 0.007694185245782137, + 0.09506534039974213, + -0.02539944089949131, + -0.11514059454202652, + 0.06033197045326233, + 0.021137433126568794, + -0.048647962510585785, + 0.005234568379819393, + -0.00265379692427814, + -0.02632885053753853, + -0.0017409836873412132, + -0.048780735582113266, + 0.023089194670319557, + 0.025784483179450035, + 0.020420460030436516, + -0.008059310726821423, + 0.020632896572351456, + 0.02489490434527397, + 0.0186147503554821, + 0.08853291720151901, + 0.024045158177614212, + -0.037627819925546646, + -0.04559418931603432, + 0.011889806017279625, + -0.0603850819170475, + 0.07605227082967758, + -0.028254056349396706, + 0.08959510177373886, + -0.061128608882427216, + -0.03019254095852375, + -0.03959285467863083, + 0.06245633587241173, + -0.0038271767552942038, + 0.04288562387228012, + -0.016848871484398842, + 0.04978980869054794, + -0.04445234313607216, + -0.06245633587241173, + 0.02801506593823433, + -0.04463822394609451 + ] + }, + { + "id": "f1295605-eed9-4f8e-bd9c-fe4de3a4a618", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "marilyn62", + "reviewDate": "2021-12-17T02:17:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a7a4f059-ba1b-404a-b78d-94ff477f6ea4", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "david44", + "reviewDate": "2021-09-10T00:24:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3f9242c6-6009-4e90-aa8b-4e387d01d79e", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "sadams", + "reviewDate": "2022-03-11T14:08:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "47855050-5496-4792-9adc-3626569d69d7", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "epeterson", + "reviewDate": "2021-06-26T20:36:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "38d59a7a-726f-403c-a12a-90ce2c81281e", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "tiffanywinters", + "reviewDate": "2022-08-06T21:02:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "474e44e3-95e5-48c9-be47-f68ab9cf69d8", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "warrenmike", + "reviewDate": "2022-05-31T15:41:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ace4183f-8f92-4eac-bd1e-4d73da6d6b27", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "fishertom", + "reviewDate": "2022-05-03T11:11:05", + "stars": 5, + "verifiedUser": true + }, + { + "id": "681439de-9ff1-4489-964b-c2c1722c29df", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "xcarlson", + "reviewDate": "2022-07-11T09:59:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4f8dbe3d-0df1-40d8-8206-8b3b0ca9d470", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "qfreeman", + "reviewDate": "2021-08-03T07:18:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "26fb60d7-2462-436d-9764-273673b96ca4", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnathan21", + "reviewDate": "2022-12-14T17:35:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6a4784ae-99b4-46ed-a6ff-7a1d39e299cd", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeffrey53", + "reviewDate": "2022-08-21T00:59:25", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0d435ddb-075b-4ecd-8e2c-c44d4580aeaa", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "jenna12", + "reviewDate": "2021-11-04T02:26:51", + "stars": 5, + "verifiedUser": false + }, + { + "id": "bf919dc2-71db-4846-87e4-2c7b9a505147", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrisrebecca", + "reviewDate": "2022-08-26T08:02:19", + "stars": 4, + "verifiedUser": true + }, + { + "id": "53fd9479-b32c-40eb-878a-90b1e0c7a08a", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "bsosa", + "reviewDate": "2021-03-20T06:56:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7d770563-7cae-4a7c-aa5b-480b1b363c0a", + "productId": "07fc5c28-13d9-44d4-82e2-4677aebcd653", + "category": "Electronics", + "docType": "customerRating", + "userName": "pottssara", + "reviewDate": "2021-04-04T10:09:17", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Black)", + "description": "This Premium Computer Ultra (Black) is the first of four ultra high performance computers.\n\nThe model has both a standard and a custom keyboard with four sides. It contains a keyboard on the left with a stylus and stylus on the right with a standard keyboard. There are three types of keys, including left, right", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-06-30T21:42:03", + "price": 649.22, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-06-12T11:09:55", + "newPrice": 600.06 + }, + { + "priceDate": "2021-12-17T11:09:55", + "newPrice": 710.66 + }, + { + "priceDate": "2022-06-23T11:09:55", + "newPrice": 663.36 + }, + { + "priceDate": "2022-12-28T11:09:55", + "newPrice": 615.37 + }, + { + "priceDate": "2023-11-27T11:09:55", + "newPrice": 649.22 + } + ], + "descriptionVector": [ + 0.008430395275354385, + 0.0325344018638134, + -0.0462152436375618, + -0.029283788055181503, + 0.011469012126326561, + -0.011490211822092533, + -0.05039864033460617, + 0.09039532393217087, + 0.053734052926301956, + 0.07213535159826279, + 0.10017542541027069, + -0.0697609931230545, + 0.030216572806239128, + -0.02189217507839203, + 0.0029167188331484795, + 0.009956770576536655, + -0.0434451550245285, + 0.004151598550379276, + -0.007766139693558216, + -0.024407867342233658, + -0.0193764828145504, + 0.03892256319522858, + -0.07807125896215439, + 0.030386168509721756, + -0.001249896246008575, + 0.020252734422683716, + 0.04972025379538536, + -0.018599161878228188, + 0.03733965381979942, + 0.0017260051099583507, + 0.04242757335305214, + 0.001701272209174931, + 0.03366504982113838, + 0.02661263197660446, + 0.050115980207920074, + -0.06823461502790451, + -0.07134389877319336, + -0.019899407401680946, + 0.1036239042878151, + 0.013779774308204651, + 0.04683709889650345, + -0.003314212430268526, + 0.015376814641058445, + 0.04008147865533829, + 0.03821590915322304, + -0.03236480429768562, + -0.028902193531394005, + 0.016125869005918503, + -0.007589475717395544, + 0.023814277723431587, + 0.0134193804115057, + 0.04381261765956879, + 0.05000291392207146, + 0.021651912480592728, + -0.0033212790731340647, + 0.013426447287201881, + 0.035926345735788345, + 0.16846658289432526, + 0.06461654603481293, + 0.0009955003624781966, + 0.036039408296346664, + -0.04542379081249237, + -0.022627096623182297, + 0.02029513381421566, + 0.008720124140381813, + -0.006603691726922989, + -0.04409527778625488, + 0.016662927344441414, + 0.0043317959643900394, + 0.07518810033798218, + -0.04140998795628548, + -0.01691732369363308, + 0.06772582232952118, + 0.050229042768478394, + -0.010522094555199146, + 0.03256266564130783, + 0.09084758162498474, + 0.031008025631308556, + 0.040872931480407715, + 0.05421457812190056, + 0.039600953459739685, + 0.022386834025382996, + -0.03994014486670494, + -0.004261130467057228, + 0.10175833106040955, + 0.04290809854865074, + -0.00429646298289299, + -0.11973564326763153, + -0.02702249027788639, + 0.03736792132258415, + -0.08434635400772095, + 0.045678187161684036, + 0.0712873637676239, + -0.0712873637676239, + -0.009158249944448471, + 0.02112898789346218, + -0.05302739888429642, + 0.043303824961185455, + -0.036039408296346664, + 0.0325344018638134, + 0.04474540054798126, + -0.0387529656291008, + -0.01946128159761429, + -0.023475082591176033, + 0.04160785302519798, + 0.010140500962734222, + 0.05981128662824631, + 0.030499234795570374, + -0.018768759444355965, + -0.07965416461229324, + -0.05969822406768799, + -0.01594213955104351, + -0.012189800851047039, + 0.013899905607104301, + 0.013765641488134861, + -0.001724238391034305, + -0.06947833299636841, + -0.012981254607439041, + -0.021284451708197594, + -0.02764434739947319, + 0.014352165162563324, + 0.013871639966964722, + 0.05141622573137283, + -0.0030933828093111515, + -0.007165482733398676, + 0.02693769335746765, + -0.03736792132258415, + 0.03872469812631607, + 0.036011144518852234, + -0.03369331359863281, + -0.01444402989000082, + 0.09260008484125137, + -0.013172050938010216, + 0.08055867999792099, + -0.0337781123816967, + -0.0009557510493323207, + -0.023065222427248955, + 0.05461030453443527, + 0.013772708363831043, + 0.08021948486566544, + -0.03321278840303421, + -0.012055535800755024, + -0.02037993259727955, + -0.01109448540955782, + -0.12912002205848694, + 0.05461030453443527, + -0.00551190972328186, + 0.0772232711315155, + 0.03185601159930229, + 0.030951494351029396, + 0.016168268397450447, + -0.03985534608364105, + -0.02888805978000164, + -0.03646340221166611, + 0.04892880097031593, + 0.010331297293305397, + -0.02956645004451275, + 0.04726109281182289, + -0.016903189942240715, + 0.053790587931871414, + -0.009532777592539787, + 0.035474084317684174, + -0.02156711369752884, + -0.0012295799097046256, + 0.0235881470143795, + 0.025255853310227394, + 0.034739166498184204, + -0.005292846821248531, + -0.020394066348671913, + 0.00872719008475542, + 0.05110529810190201, + -0.0533948577940464, + 0.034004244953393936, + -0.02672569639980793, + 0.10000582784414291, + -0.03688739612698555, + 0.04313422739505768, + 0.053847119212150574, + -0.01079768966883421, + -0.0409577302634716, + 0.036604736000299454, + 0.06190298870205879, + -0.03863989934325218, + 0.01881115883588791, + 0.0784669816493988, + 0.03866816684603691, + 0.056871604174375534, + 0.07705367356538773, + 0.02172257751226425, + 0.014055370353162289, + 0.041381724178791046, + -0.02577877789735794, + -0.01567360945045948, + 0.03666126728057861, + 0.002114665461704135, + 0.043332092463970184, + 0.034202106297016144, + 0.0558822862803936, + -0.011914204806089401, + 0.009850772097706795, + 0.033467184752225876, + 0.08734256774187088, + 0.05701293423771858, + 0.007405745331197977, + -0.0017772376304492354, + 0.0026040240190923214, + -0.01153967808932066, + 0.04604564607143402, + -0.03242133557796478, + 0.028930459171533585, + -0.02731928601861, + -0.012917655520141125, + -0.029001126065850258, + -0.02796940878033638, + 0.032845329493284225, + -0.04177745059132576, + -0.01385044027119875, + 0.040985994040966034, + -0.02823793701827526, + -0.12097935378551483, + 0.07733633369207382, + 0.014288566075265408, + 0.019786342978477478, + -0.028690196573734283, + 0.010069834999740124, + -0.0501442477107048, + 0.04771335422992706, + 0.03561541810631752, + -0.03688739612698555, + -0.006561292801052332, + -0.054327644407749176, + -0.029622981324791908, + -0.0031622815877199173, + 0.03813111037015915, + 0.02245749905705452, + 0.05412977933883667, + -0.02518518827855587, + 0.019221018999814987, + -0.04126865789294243, + 0.09921437501907349, + -0.008649458177387714, + -0.004239930771291256, + -0.05534522607922554, + -0.0010219999821856618, + 0.04661097005009651, + -0.06139419600367546, + 0.08977346122264862, + -0.03499355912208557, + -0.09356113523244858, + -0.0074976105242967606, + 0.031121090054512024, + 0.035276222974061966, + -0.03818764165043831, + 0.07829738408327103, + 0.009179449640214443, + 0.014825624413788319, + 0.07484890520572662, + -0.04748722165822983, + 0.004027934279292822, + -0.016450930386781693, + -0.019899407401680946, + 0.011963671073317528, + -0.05656067281961441, + 0.01599867083132267, + -0.07490544021129608, + 0.032251738011837006, + 0.07213535159826279, + -0.050087712705135345, + -0.06665170937776566, + 0.012069669552147388, + 0.07055244594812393, + 0.009313714690506458, + 0.056221481412649155, + -0.053055666387081146, + 0.05721079558134079, + 0.01276925764977932, + -0.0484200082719326, + 0.12832856178283691, + -0.051246628165245056, + -0.03324105590581894, + 0.016125869005918503, + 0.0722484141588211, + 0.04369955137372017, + -0.05037037655711174, + 0.04494326561689377, + -0.03878123313188553, + -0.025015590712428093, + 0.037283122539520264, + 0.03448477014899254, + -0.0665951743721962, + -0.011730474419891834, + 0.03010350652039051, + 0.020394066348671913, + 0.0018655695021152496, + 0.013758574612438679, + 0.008331463672220707, + 0.0687999427318573, + -0.05828491225838661, + 0.031658150255680084, + -0.023248953744769096, + 0.018556762486696243, + -0.008402128703892231, + -0.012825789861381054, + 0.028040073812007904, + 0.02956645004451275, + 0.13126824796199799, + 0.010734090581536293, + -0.04969198629260063, + -0.03742445260286331, + -0.0009495677659288049, + 0.004381261765956879, + -0.07518810033798218, + -0.05181195214390755, + 0.019772209227085114, + 0.06557759642601013, + -0.041381724178791046, + 0.07586649060249329, + -0.005441244225949049, + -0.03434343636035919, + 0.0039466689340770245, + -0.02097352407872677, + -0.04115559160709381, + -0.09746187180280685, + 0.05777611956000328, + 0.05763478949666023, + -0.040872931480407715, + -0.0777885913848877, + 0.06269443780183792, + -0.04477366805076599, + -0.12561501562595367, + -0.03623727336525917, + -0.021425781771540642, + -0.02897285856306553, + 0.004907719790935516, + 0.07049591094255447, + -0.08819055557250977, + -0.027008358389139175, + 0.0955962985754013, + -0.0018143369816243649, + 0.03247786685824394, + 0.08016295731067657, + 0.039629217237234116, + -0.029340319335460663, + -0.0072785476222634315, + -0.0033636782318353653, + -0.017440248280763626, + -0.0038654033560305834, + -0.0650688037276268, + -0.0603766106069088, + 0.06563412398099899, + 0.0015590578550472856, + -0.0233478844165802, + 0.006603691726922989, + 0.021793242543935776, + 0.06817808747291565, + 0.006759156007319689, + 0.05104876309633255, + -0.02791287563741207, + 0.021680178120732307, + 0.05048343911767006, + -0.06263791024684906, + -0.022584697231650352, + 0.05025731027126312, + 0.05839797854423523, + -0.0325344018638134, + -0.006561292801052332, + 0.04912666231393814, + 0.06597331911325455, + 0.028167271986603737, + 0.012663259170949459, + 0.013779774308204651, + -0.02234443463385105, + -0.03575674816966057, + 0.014387497678399086, + -0.056815069168806076, + 0.026146238669753075, + -0.05407324805855751, + 0.02423826977610588, + 0.009879038669168949, + 0.04118385910987854, + -0.05294260010123253, + 0.07462278008460999, + 0.0005339662893675268, + 0.043303824961185455, + 0.07072204351425171, + -0.10102341324090958, + -0.025439582765102386, + -0.03326932340860367, + -0.03490876033902168, + 0.03131895512342453, + -0.02580704353749752, + 0.05757825821638107, + -0.053253527730703354, + -0.03513489291071892, + 0.024365467950701714, + -0.01355364453047514, + -0.012656193226575851, + 0.08428981900215149, + -0.004045600537210703, + 0.03620900586247444, + 0.0444910041987896, + 0.05302739888429642, + -0.0068898871541023254, + -0.014005904085934162, + -0.00872719008475542, + -0.07507503777742386, + 0.01872636005282402, + 0.02337615005671978, + -0.018033837899565697, + -0.0301883053034544, + -0.0004383469931781292, + 0.002169431187212467, + -0.029651248827576637, + -0.0003994809521827847, + 0.07863657921552658, + -0.03431517258286476, + 0.04361475259065628, + 0.08666418492794037, + 3.1606254196958616e-05, + -0.04686536639928818, + 0.05483643710613251, + 0.01902315579354763, + -0.01931994967162609, + 0.018895957618951797, + -0.03208214044570923, + -0.008274931460618973, + -0.0018108036601915956, + -0.02835100330412388, + -0.003282412886619568, + -0.027333419770002365, + 0.015899740159511566, + -0.06026354804635048, + 0.02453506551682949, + -0.012076735496520996, + -0.012677392922341824, + -0.010924887843430042, + 0.014168434776365757, + 0.040307607501745224, + -0.015659477561712265, + 0.06591678410768509, + 0.019150353968143463, + -0.0600939504802227, + 0.03575674816966057, + -0.01076942402869463, + -0.062298715114593506, + 0.024422001093626022, + -0.060489676892757416, + 0.02112898789346218, + 0.06478613615036011, + -0.007511743810027838, + -0.015207218006253242, + 0.008854388259351254, + -0.008395062759518623, + -0.021680178120732307, + 0.07603608816862106, + -0.018599161878228188, + 0.018924223259091377, + 0.00020702785695903003, + -0.023743610829114914, + -0.005109116435050964, + -0.039063893258571625, + 0.037283122539520264, + 0.12052709609270096, + -0.06619945168495178, + -0.03725485876202583, + -0.04053373634815216, + -0.04070333391427994, + -0.03188427910208702, + -0.0055437092669308186, + 0.07954109460115433, + -0.023192420601844788, + -0.08383756130933762, + 0.032393068075180054, + -0.007398678921163082, + 0.018895957618951797, + -0.0765448808670044, + 0.014995221048593521, + 0.007964002899825573, + -0.03948788717389107, + 0.04683709889650345, + 0.014366297982633114, + -0.012642059475183487, + 0.027163822203874588, + -0.007320947013795376, + 0.003762938315048814, + -0.008635325357317924, + -0.0030050508212298155, + 0.03929002210497856, + -0.005087916739284992, + 0.04751548916101456, + 0.05579748749732971, + 0.05280127003788948, + 0.007034751586616039, + -0.012020203284919262, + -0.051387958228588104, + -0.006169098895043135, + -0.0004277471743989736, + 0.030979759991168976, + 0.008444528095424175, + 0.06625597923994064, + -0.022909758612513542, + -0.013461779803037643, + -0.0033954777754843235, + 0.04115559160709381, + 0.023969741538167, + 0.0030651164706796408, + -0.017666377127170563, + 0.03643513843417168, + 0.0012922955211251974, + -0.018471963703632355, + 0.019560212269425392, + -0.07298333942890167 + ] + }, + { + "id": "54c0d363-2a80-4d28-896f-81b6d75a0be1", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "reynoldsjohn", + "reviewDate": "2022-12-29T17:31:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a6f6294b-bfc6-4bf8-8bde-ebd96e46a9de", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "terri36", + "reviewDate": "2022-02-09T04:10:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a0534d94-dc5b-448f-b84c-24b59c90baea", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "goodmancaitlin", + "reviewDate": "2021-08-08T11:29:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5cb65a38-ff35-4140-b4b5-b8480aacffd1", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "cclark", + "reviewDate": "2022-02-24T12:14:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fcb988f1-0f52-4852-82ca-809a37f44a74", + "productId": "5a46bba5-db6a-4e72-980f-04b6d76a319a", + "category": "Electronics", + "docType": "customerRating", + "userName": "markduran", + "reviewDate": "2021-06-12T11:09:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "product", + "name": "Basic Filter 3000 (Gold)", + "description": "This Basic Filter 3000 (Gold) is the only Filter that gives a low FPS with its very low amount of \"overclocking\" in it's original build. It also is the only Filter that can be used on 3 models at once. I like mine a lot as an upgrade over it, but", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-12-15T20:29:36", + "price": 1080.24, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-04-03T06:45:59", + "newPrice": 1055.09 + }, + { + "priceDate": "2022-12-01T06:45:59", + "newPrice": 1171.38 + }, + { + "priceDate": "2024-05-23T06:45:59", + "newPrice": 1080.24 + } + ], + "descriptionVector": [ + 0.013282443396747112, + -0.008355085738003254, + -0.040452223271131516, + 0.013370657339692116, + -0.011631589382886887, + 0.008953677490353584, + -0.08589481562376022, + -0.007781697437167168, + 0.054087523370981216, + 0.0299674104899168, + -0.01395034696906805, + -0.02294813096523285, + 0.028379566967487335, + -0.05121428146958351, + 0.06250561773777008, + 0.048845116049051285, + -0.05812014266848564, + -0.011177919805049896, + 1.2946523384016473e-05, + 0.008682736195623875, + 0.043829545378685, + 0.003916052635759115, + -0.10147081315517426, + 0.00041665160097181797, + -0.014908093959093094, + -0.004237402230501175, + -0.0029567298479378223, + -0.016382521018385887, + -0.027799878269433975, + -0.014025958254933357, + 0.05565016344189644, + 0.030244654044508934, + 0.01238140556961298, + 0.10182366520166397, + -0.02567015029489994, + -0.027068965137004852, + -0.005935513414442539, + -0.028757624328136444, + 0.034756146371364594, + 0.01955820992588997, + -0.014807278290390968, + -0.006228508427739143, + -0.052272845059633255, + -0.01170090027153492, + 0.04261975735425949, + -0.028455179184675217, + -0.03208453580737114, + 0.016609355807304382, + -0.04592146724462509, + -0.03397482633590698, + 0.06376580893993378, + -0.019709432497620583, + -0.010119357146322727, + 0.004013717640191317, + -0.02608601376414299, + 0.025317296385765076, + -0.029917003586888313, + 0.12551531195640564, + 0.0392676405608654, + -0.015034113079309464, + 0.021738344803452492, + -0.08715501427650452, + -0.012274288572371006, + -0.04675319418311119, + -0.10464650392532349, + -0.026237236335873604, + -0.06411866843700409, + 0.05076061189174652, + 0.00019946506654378027, + -0.044963717460632324, + -0.07682142406702042, + -0.026892537251114845, + -0.03856193274259567, + 0.0632617324590683, + 0.019696831703186035, + -0.005664571654051542, + 0.12551531195640564, + -0.004927358124405146, + 6.239436515897978e-06, + 0.003122130408883095, + -0.01440401654690504, + 0.07908976823091507, + -0.06855455040931702, + -0.002046239795163274, + 0.013736113905906677, + 0.0076934839598834515, + 0.0035978537052869797, + -0.02343960665166378, + -0.026816926896572113, + -0.05655750259757042, + -0.02951374091207981, + 0.09063314646482468, + 0.009753900580108166, + -0.058977074921131134, + -0.04498892277479172, + 0.08191260695457458, + -0.044636067003011703, + 0.015941452234983444, + -0.03609195351600647, + 0.04914756119251251, + -0.042720574885606766, + -0.030269857496023178, + -0.04861827939748764, + 0.051365502178668976, + 0.02472500503063202, + -0.008985182270407677, + -0.028682013973593712, + -0.021146053448319435, + 0.005214052274823189, + -0.0421660877764225, + -0.036898478865623474, + -0.06749598681926727, + -0.03145444020628929, + 0.023250577971339226, + -0.005711828824132681, + 0.04592146724462509, + -0.04171241819858551, + -0.0028700917027890682, + 0.06295929104089737, + -0.0467027872800827, + 0.012759462930262089, + 0.11523213237524033, + 0.011688298545777798, + -0.03452931344509125, + 0.016722772270441055, + -0.03823428228497505, + 0.024737605825066566, + 0.01283507514744997, + 0.034378089010715485, + -0.01582803577184677, + -0.06764721125364304, + 0.023376597091555595, + 0.04937439784407616, + -0.003591552609577775, + -0.04869389161467552, + 0.05015571787953377, + 0.0134336668998003, + 0.09436331689357758, + -0.011763909831643105, + 0.08569318801164627, + -0.024737605825066566, + -0.02963976003229618, + 0.013496676459908485, + 0.06472355872392654, + 0.039217233657836914, + -0.046778399497270584, + -0.06003563851118088, + 0.044711679220199585, + 0.0363691970705986, + -0.011215725913643837, + 0.048719096928834915, + -0.09829512238502502, + -0.025808772072196007, + -0.035134207457304, + 0.020478151738643646, + -0.0008600823348388076, + -0.04997929185628891, + -0.01984805427491665, + -0.015802832320332527, + -0.0143662104383111, + -0.027673859149217606, + 0.0034844360779970884, + -0.04410678520798683, + -0.007378435228019953, + 0.01914234459400177, + 0.05630546435713768, + 0.046652380377054214, + 0.03203412890434265, + -0.06270724534988403, + 0.024447761476039886, + 0.01918015070259571, + 0.009829512797296047, + 0.0194321908056736, + 0.034756146371364594, + -0.03198372200131416, + 0.030849546194076538, + 0.03319350630044937, + -0.022469257935881615, + -0.014139375649392605, + -0.014958501793444157, + 0.042897000908851624, + 0.025569334626197815, + -0.054591599851846695, + -0.09239741414785385, + 0.060842160135507584, + 0.01752929762005806, + 0.03551226481795311, + 0.023553024977445602, + 0.04191404953598976, + 0.01645813323557377, + 0.049878474324941635, + 0.04443443566560745, + 0.07793039083480835, + 0.027472227811813354, + -0.008229066617786884, + 0.04314903914928436, + -0.08458421379327774, + -0.03707490488886833, + -0.008626027032732964, + 0.01860046200454235, + 0.014467026107013226, + 0.049676842987537384, + 0.06023726984858513, + -0.000782895484007895, + 0.059178706258535385, + 0.000775019230786711, + 0.05237365886569023, + 0.10605791956186295, + 0.0027094169054180384, + 0.02175094746053219, + 0.025027450174093246, + -0.011051900684833527, + -0.07712386548519135, + -0.06331214308738708, + 0.05559975653886795, + 0.01819719932973385, + -0.035285428166389465, + -0.04204006865620613, + -0.07556122541427612, + 0.004007416777312756, + 0.0553981252014637, + -0.0023581378627568483, + -0.07787998020648956, + -0.002164382953196764, + 0.004023169167339802, + -0.002487307647243142, + 0.05771687999367714, + 0.03021945059299469, + 0.03581470996141434, + 0.0673951730132103, + -0.025115665048360825, + 0.016710171476006508, + -0.00428780959919095, + 0.059884414076805115, + -0.04004896432161331, + 0.04105711728334427, + -0.07551082223653793, + -0.024876227602362633, + 0.05701117217540741, + 0.0690586268901825, + 0.02070498652756214, + 0.03153005242347717, + -0.046198707073926926, + -0.0057401834055781364, + 0.08045078068971634, + 0.01703782193362713, + 0.05680954083800316, + -0.025405509397387505, + -0.037805818021297455, + -0.026766518130898476, + -0.01807118020951748, + 0.004653266165405512, + -0.022065995261073112, + 0.06880658864974976, + -0.019003724679350853, + 0.08896969258785248, + 0.012041152454912663, + -0.02691774256527424, + -0.08614685386419296, + -0.08523951470851898, + 0.017554501071572304, + 0.07420022040605545, + -0.03478135168552399, + 0.019873257726430893, + -0.09431291371583939, + -0.01002484280616045, + 0.029160887002944946, + -0.003900300245732069, + -0.06704231351613998, + 0.04642554372549057, + 0.011833220720291138, + 0.04287179559469223, + 0.0037553778383880854, + -0.030043022707104683, + 0.034176457673311234, + -0.008985182270407677, + -0.05932993069291115, + 0.03891478851437569, + 0.013988152146339417, + -0.022834714502096176, + 0.08251749724149704, + 0.12097861617803574, + 0.06426989287137985, + 0.027547838166356087, + 0.057565659284591675, + 0.002252596663311124, + 0.02340180054306984, + -0.057767290621995926, + -0.0051289889961481094, + -0.08962499350309372, + 0.004243703093379736, + 0.03732694312930107, + -0.006704231724143028, + -0.09930328279733658, + 0.014013356529176235, + -0.01810898631811142, + 0.018991122022271156, + 0.016722772270441055, + 0.03994814679026604, + 0.013584890402853489, + -0.06220317259430885, + 0.03339513763785362, + -0.016684968024492264, + -0.14829961955547333, + -0.0297657810151577, + 0.03286585584282875, + -0.02601040154695511, + -0.049172766506671906, + -0.030068226158618927, + -0.13569767773151398, + 0.004757232032716274, + -0.010365094989538193, + -0.01921795681118965, + -0.03616756573319435, + 0.044056378304958344, + -0.06396744400262833, + -0.02943813055753708, + 0.0219147726893425, + -0.011303938925266266, + 0.01781914196908474, + -0.044258009642362595, + -0.058472998440265656, + 0.06043890118598938, + 0.08912091702222824, + 0.006994076073169708, + -0.009060794487595558, + -0.002121851546689868, + 0.038965195417404175, + -0.033067487180233, + -0.033924419432878494, + 0.03558787703514099, + -0.05716239660978317, + -0.08881846815347672, + 0.05018092319369316, + -0.014630851335823536, + -0.028379566967487335, + 0.010591929778456688, + -0.0005072280764579773, + 0.0048391446471214294, + -0.02380506321787834, + -0.00880245491862297, + 0.07248635590076447, + 0.008676434867084026, + 0.013206832110881805, + 0.02327578142285347, + -0.024788014590740204, + 0.012230182066559792, + -0.04657676815986633, + 0.030446285381913185, + 0.0030181643087416887, + 0.0016414026031270623, + -0.01097628939896822, + 0.013244638219475746, + -0.06064053252339363, + 0.07596448808908463, + -0.0731416568160057, + 0.08347524702548981, + 0.01064233761280775, + 0.023490015417337418, + 0.032891061156988144, + 0.014605647884309292, + 0.0010183942504227161, + 0.05023133009672165, + 0.008153454400599003, + -0.05358344689011574, + 0.1446702629327774, + 0.0055417027324438095, + 0.03304228559136391, + -0.0121986772865057, + 0.025985198095440865, + -0.05691035836935043, + -0.0066475230269134045, + -0.01814679242670536, + 0.05685994774103165, + -0.057364027947187424, + -0.058271367102861404, + 0.038637544959783554, + 0.04014977812767029, + -0.03624317795038223, + 0.030572304502129555, + -0.018751684576272964, + 0.021524112671613693, + 0.02289772406220436, + -0.06815128773450851, + 0.11301419138908386, + -0.001931247184984386, + -0.032059334218502045, + -0.029337314888834953, + -0.044333621859550476, + -0.03621797263622284, + -0.019570810720324516, + -0.05151672661304474, + 0.016319511458277702, + 0.029664965346455574, + -0.054843638092279434, + -0.00045682030031457543, + -0.007069687824696302, + 0.02369164489209652, + 0.07873691618442535, + -0.009004085324704647, + 0.033747993409633636, + 0.024447761476039886, + -0.06275765597820282, + -0.02893405221402645, + -0.04186364263296127, + -0.0010522619122639298, + 0.02583397552371025, + 0.02938772179186344, + -0.07425062358379364, + -0.0475345142185688, + 0.013232036493718624, + -0.03583991527557373, + 0.008651231415569782, + -0.03581470996141434, + 0.020515955984592438, + 0.004253154620528221, + -0.03657082840800285, + 0.035134207457304, + 0.05302895978093147, + 0.0054629407823085785, + -0.0033993730321526527, + 0.08856642991304398, + -0.013937744311988354, + 0.03682286664843559, + 0.02653968334197998, + -0.037478167563676834, + -0.0005036837537772954, + 0.02848038263618946, + 0.038965195417404175, + -0.021675335243344307, + 0.031076380982995033, + -0.05423874408006668, + -0.042266905307769775, + -0.005822096019983292, + -0.07843446731567383, + -0.0022195165511220694, + 0.013811725191771984, + 0.09264945983886719, + -0.1116027757525444, + -0.03866275027394295, + 0.026489276438951492, + -0.06855455040931702, + 0.012841375544667244, + 0.0268673337996006, + -0.009936628863215446, + -0.07238553464412689, + -0.00831097923219204, + 0.01682358793914318, + -0.034453701227903366, + 0.010680143721401691, + -0.005459790118038654, + 0.01219237595796585, + -0.02365383878350258, + 0.011915133334696293, + 0.020289121195673943, + 0.017289860174059868, + 0.0644715204834938, + 0.0934559777379036, + 0.05176876485347748, + 0.033420342952013016, + -0.07425062358379364, + 0.052272845059633255, + 0.032513003796339035, + -0.02653968334197998, + -0.004161790478974581, + 0.054137930274009705, + -0.043627914041280746, + -0.09648044407367706, + -0.0006245836266316473, + -0.0021344535052776337, + -0.07561163604259491, + -0.04065385460853577, + -0.01914234459400177, + 0.035613078624010086, + -0.01897851936519146, + -0.006452193018049002, + 0.05096224322915077, + -0.010743153281509876, + 0.062404803931713104, + -0.006735736504197121, + 0.007372134365141392, + -0.039292845875024796, + -0.011014094576239586, + 0.05005490034818649, + -0.025040052831172943, + 0.046072687953710556, + 0.015059317462146282, + 0.06437070667743683, + 0.05116387456655502, + 0.08130770921707153, + 0.005242406856268644, + 0.004996669013053179, + 0.008229066617786884, + 0.002602300373837352, + -0.04088069126009941, + -0.029740575700998306, + 0.024649392813444138, + 0.03112678974866867, + -0.010510017164051533, + 0.021763548254966736, + 0.014769472181797028, + 0.024447761476039886, + 0.010888075456023216, + -0.0665382370352745, + -0.0020147350151091814, + 0.0343024767935276, + 0.049752455204725266, + -0.05171835795044899, + -0.004177542869001627, + -0.041359562426805496, + 0.007233513053506613, + -0.0169496089220047 + ] + }, + { + "id": "0bb5898e-4fe3-49d1-b80c-9bc19ab3f380", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "daydaniel", + "reviewDate": "2022-12-01T19:51:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "06f4f34d-0f09-4583-a05f-e7e64fe767fe", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "nrobertson", + "reviewDate": "2022-03-29T15:37:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d3d8061f-9a38-46c0-ba4f-90794268a228", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "cmason", + "reviewDate": "2022-05-20T20:04:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e2c54892-4e11-4c42-b314-6be9218bff7b", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "allendeborah", + "reviewDate": "2021-06-19T08:44:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6a16cc3b-0f1f-4520-bd7b-817d894a2c01", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "welchkrista", + "reviewDate": "2022-06-08T10:02:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6a5ca2b5-d48f-4689-808e-1abed704321c", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "robertsondenise", + "reviewDate": "2021-07-13T11:22:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cffdea50-4c50-4422-8ef8-ee119e28a48c", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "kimberly92", + "reviewDate": "2022-08-30T21:48:29", + "stars": 5, + "verifiedUser": false + }, + { + "id": "80621497-a0ed-406c-92a7-1a23d834408f", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "melanie39", + "reviewDate": "2022-08-12T03:06:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "39e6a655-b191-490a-967a-51917b8ba954", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "tjohnson", + "reviewDate": "2022-09-15T18:04:01", + "stars": 5, + "verifiedUser": false + }, + { + "id": "62510b61-181c-4628-817f-5f1ab9322813", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "jenniferanthony", + "reviewDate": "2021-09-04T11:16:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "87edd0fe-9697-49e9-877b-176dd637d6ee", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "jenkinsann", + "reviewDate": "2022-01-28T08:26:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "61fc5174-defe-4ab8-902f-2755f6297b0e", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "browndavid", + "reviewDate": "2022-05-11T23:23:19", + "stars": 5, + "verifiedUser": false + }, + { + "id": "13b4dbbc-f310-4575-bf60-927de410b656", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "janetreed", + "reviewDate": "2021-04-27T05:43:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "be86b1b9-d429-40e6-b096-606aa276e566", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "heatherrobinson", + "reviewDate": "2021-11-03T04:24:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d8b44a55-b35a-430c-b527-1adf2f44ff04", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "herreralarry", + "reviewDate": "2021-04-03T06:45:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e0373846-c940-4c58-a313-bfb6ac7a0cf4", + "productId": "426f5fe1-685b-41ea-a036-de0a5e4a4c2b", + "category": "Other", + "docType": "customerRating", + "userName": "aedwards", + "reviewDate": "2021-09-06T16:09:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "dceeb3df-c949-4223-8a6a-09ea0b5419ae", + "productId": "dceeb3df-c949-4223-8a6a-09ea0b5419ae", + "category": "Media", + "docType": "product", + "name": "Awesome TV Micro (Steel)", + "description": "This Awesome TV Micro (Steel) is a fantastic TV Micro to fit any screen and will stand up to many use cases. Made of durable plastic, the box is extremely large and comes equipped with all parts that", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-11-10T00:43:01", + "price": 431.99, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-02-24T22:43:26", + "newPrice": 467.45 + }, + { + "priceDate": "2021-05-09T22:43:26", + "newPrice": 390.12 + }, + { + "priceDate": "2021-07-22T22:43:26", + "newPrice": 401.25 + }, + { + "priceDate": "2021-10-04T22:43:26", + "newPrice": 464.04 + }, + { + "priceDate": "2021-12-17T22:43:26", + "newPrice": 472.59 + }, + { + "priceDate": "2024-05-20T22:43:26", + "newPrice": 431.99 + } + ], + "descriptionVector": [ + 0.02497895248234272, + 0.03059536963701248, + -0.028877105563879013, + 0.015259216539561749, + -0.0010867383098229766, + 0.013297317549586296, + -0.0541125163435936, + -0.020157553255558014, + 0.045316025614738464, + 0.05375347286462784, + 0.012592059560120106, + 0.023273510858416557, + 0.05218908563256264, + -0.022132275626063347, + 0.04431584104895592, + -0.03233927860856056, + 0.04275145009160042, + 0.023196574300527573, + 0.004074467346072197, + -0.023017052561044693, + 0.10730178654193878, + -0.10335233807563782, + -0.010918674990534782, + 0.007738602347671986, + -0.017118532210588455, + -0.04018687829375267, + -0.03336511179804802, + 0.018170008435845375, + -0.027543526142835617, + -0.031031347811222076, + -0.006526841316372156, + 0.014797592535614967, + -0.03964831680059433, + 0.04611104354262352, + -0.017169823870062828, + -0.03651953488588333, + -0.01761862449347973, + 0.03490385413169861, + -0.005433691665530205, + 0.0176699161529541, + 0.0015595817239955068, + 0.020272959023714066, + -0.0015283259563148022, + 0.02915920875966549, + 0.04336695000529289, + 0.04177691414952278, + -0.006193446461111307, + -0.0776040181517601, + 0.023350447416305542, + -0.01836235076189041, + 0.000625916407443583, + -0.02079869620501995, + -0.03582710027694702, + 0.02032425068318844, + 0.007975826039910316, + -0.02095257118344307, + 0.014028220437467098, + 0.1442316472530365, + 0.08124571293592453, + -0.03995606675744057, + -0.03923798352479935, + 0.020247312262654305, + 0.024235226213932037, + 0.038314737379550934, + -0.0068281786516308784, + -0.04839351400732994, + 0.04185384884476662, + 0.008225871250033379, + -0.0012053498066961765, + 0.030441494658589363, + -0.029210500419139862, + -0.0384686142206192, + 0.03551935404539108, + -0.020042147487401962, + 0.009027301333844662, + -0.01545155979692936, + 0.04977838322520256, + -0.003330740612000227, + 0.02473531849682331, + -0.04390551149845123, + 0.03685292974114418, + 0.07596268504858017, + -0.0003991118574049324, + 0.01656714826822281, + 0.0608316995203495, + 0.03392931818962097, + 0.019183015450835228, + -0.08257928490638733, + -0.03341640159487724, + 0.1024290919303894, + -0.032236699014902115, + 0.029287436977028847, + 0.04264886677265167, + -0.04521344229578972, + 0.05034258961677551, + 0.046213626861572266, + -0.08504127711057663, + 0.04108447954058647, + -0.04541860893368721, + -0.026235593482851982, + 0.06555051356554031, + -0.026517696678638458, + -0.005811966024339199, + -0.0690896287560463, + -0.060164909809827805, + 0.000851118064019829, + -0.007257745135575533, + 0.047957535833120346, + 0.05960070341825485, + -0.18454675376415253, + 0.06580697000026703, + -0.05041952803730965, + 0.047393329441547394, + 0.05683096498250961, + 0.0270562581717968, + -0.02356843650341034, + -0.041828203946352005, + -0.025107180699706078, + -0.015592611394822598, + -0.025915022939443588, + 0.0037090154364705086, + -0.017362168058753014, + -0.0065108127892017365, + 0.05147100239992142, + -0.01773403026163578, + 0.01230995636433363, + -0.07852726429700851, + 0.018464934080839157, + 0.03962267190217972, + 0.04521344229578972, + -0.13089586794376373, + 0.010893029160797596, + 0.04377727955579758, + -0.018464934080839157, + -0.07421877980232239, + 0.028595002368092537, + -0.0014433744363486767, + 0.015669548884034157, + 0.06078040972352028, + 0.03477562591433525, + -0.002832251600921154, + -0.005164411384612322, + -0.02573550119996071, + 0.023401739075779915, + 0.011149486526846886, + 0.04111012443900108, + -0.061908818781375885, + 0.024042882025241852, + -0.03844296559691429, + 0.05395863950252533, + 0.03208282217383385, + -0.12217631191015244, + -0.07191065698862076, + -0.05677967146039009, + 0.10104422271251678, + 0.05013742670416832, + -0.016477389261126518, + 0.06313981860876083, + -0.04977838322520256, + 0.08370769768953323, + 0.021439841017127037, + -0.0657556802034378, + -0.053907349705696106, + 0.011822686530649662, + 0.020337073132395744, + -0.0382378026843071, + 0.08693906664848328, + 0.012739522382616997, + -0.07098741084337234, + 0.0614984892308712, + 0.07950180023908615, + 0.003523083869367838, + 0.040468979626894, + 0.0017423075623810291, + -0.0226964820176363, + -0.04064850136637688, + 0.03528853878378868, + -0.022837532684206963, + -0.07026933133602142, + -0.02285035513341427, + -0.05672838166356087, + 0.02578679285943508, + 0.011816275306046009, + -0.037109389901161194, + -0.023247864097356796, + 0.05683096498250961, + 0.0178879052400589, + 0.05359959974884987, + -0.02669721655547619, + -0.013579419814050198, + 0.011598287150263786, + -0.004273221828043461, + 0.07996342331171036, + -0.0496501550078392, + 0.029441311955451965, + -0.07909146696329117, + -0.024055706337094307, + -0.023671019822359085, + -0.05944683030247688, + 0.016823606565594673, + -0.052522480487823486, + -0.010424993932247162, + 0.10709661990404129, + -0.010348056443035603, + -0.04611104354262352, + -0.03464739769697189, + 0.0038917413912713528, + 0.03844296559691429, + 0.05683096498250961, + -0.00883495807647705, + -0.04536731541156769, + -0.05744646117091179, + 0.002202328061684966, + 0.03418577462434769, + 0.0641656443476677, + 0.040597207844257355, + -0.023068344220519066, + -0.0677560493350029, + -0.015413090586662292, + 0.012431773357093334, + 0.0722184106707573, + -0.044469717890024185, + -0.00028851459501311183, + -0.024453215301036835, + -0.012515122070908546, + -0.04523908719420433, + 0.04844480752944946, + 0.017849436029791832, + 0.06452468782663345, + 0.01641327515244484, + -0.061242032796144485, + -0.024030059576034546, + -0.024209579452872276, + 0.003192894859239459, + 0.0541125163435936, + 0.001185314147733152, + -0.005751057527959347, + -0.020901279523968697, + -0.010399348102509975, + -0.013810232281684875, + -0.029749060049653053, + 0.01529768481850624, + -0.022670835256576538, + -0.021055154502391815, + 0.04721381142735481, + 0.03775053098797798, + 0.08216895908117294, + -0.017516041174530983, + -0.04280274361371994, + -0.044469717890024185, + -0.0444953627884388, + 0.0444953627884388, + -0.00434374762699008, + 0.05380476638674736, + 0.04680347815155983, + 0.04054591804742813, + 0.058421000838279724, + 0.00018943788018077612, + 0.015079695731401443, + -0.02122185193002224, + -0.0764756053686142, + -0.08063021302223206, + 0.0019635020289570093, + 0.045675065368413925, + 0.008091231808066368, + 0.014207741245627403, + 0.030287621542811394, + -0.09663315117359161, + -0.05780550092458725, + 0.023529967293143272, + 0.04398244619369507, + -0.034673042595386505, + -0.038186509162187576, + 0.03056972473859787, + -0.061036866158246994, + -0.023363269865512848, + -0.029902935028076172, + 0.0722184106707573, + -0.03441658616065979, + 0.030441494658589363, + 0.07298777997493744, + -0.048137057572603226, + 0.042905326932668686, + 0.05024000629782677, + 0.05672838166356087, + -0.05013742670416832, + 0.03616049513220787, + -0.0018881676951423287, + -0.006565310060977936, + -0.03477562591433525, + -0.07796305418014526, + -0.045521192252635956, + 0.05036823824048042, + 0.012572824954986572, + 0.01815718598663807, + 0.029954226687550545, + -0.0004187468730378896, + -0.021478308364748955, + -0.0012582441559061408, + -0.002181490883231163, + -0.007264156360179186, + 0.026133010163903236, + -0.013797408901154995, + -0.03826344758272171, + -0.06703796982765198, + 0.042879682034254074, + 0.035032082349061966, + 0.02386336214840412, + -0.009245289489626884, + -0.05995974317193031, + 0.016477389261126518, + 0.042905326932668686, + -0.0677560493350029, + 0.018644453957676888, + 0.021478308364748955, + -0.03662211820483208, + -0.04021252319216728, + -0.010707097128033638, + 0.02428651787340641, + 0.0424949936568737, + 0.029082270339131355, + 0.004170638974756002, + -0.058780040591955185, + 0.09340178966522217, + 0.029415665194392204, + -0.09801802784204483, + -0.04075108468532562, + -0.004151404369622469, + -0.002380245365202427, + 0.008046351373195648, + -0.009546627290546894, + 0.0565745048224926, + 0.008411803282797337, + 0.05698483809828758, + 0.028518063947558403, + -0.05954941362142563, + -0.00288194022141397, + -0.05288152024149895, + -0.033980607986450195, + 0.01893937960267067, + 0.07842467725276947, + -0.029466956853866577, + 0.028005149215459824, + -0.06247302517294884, + 0.019606169313192368, + -0.0856567770242691, + 0.009245289489626884, + -0.05221473053097725, + 0.00042515830136835575, + -0.05462542921304703, + 0.001347202924080193, + -0.04626491665840149, + 0.014630896039307117, + 0.10678886622190475, + 0.07078224420547485, + 0.03474998101592064, + -0.013233202509582043, + -0.016900543123483658, + 0.025440575554966927, + -0.0010747169144451618, + 0.02497895248234272, + -0.028005149215459824, + 0.024953307583928108, + -0.0010009853867813945, + -0.04959886521100998, + 0.05867745727300644, + -0.04644443839788437, + 0.010713508352637291, + -0.05549738556146622, + 0.0833999514579773, + 0.07170549035072327, + -0.052522480487823486, + 0.02272212691605091, + 0.07550106197595596, + -0.02218356728553772, + -0.0020837164483964443, + 0.09252983331680298, + -0.016785137355327606, + -0.02464555762708187, + 0.03351898491382599, + -0.03474998101592064, + 0.03685292974114418, + 0.01875985972583294, + 0.01936253532767296, + 0.01990109495818615, + 0.012598470784723759, + -0.06657634675502777, + -0.016182463616132736, + -0.0845283642411232, + 0.030518433079123497, + -0.04767543449997902, + 0.012912631034851074, + 0.02106797695159912, + 0.005045799538493156, + 0.03262138366699219, + -0.004904747940599918, + -0.06390918791294098, + 0.0110148461535573, + 0.01761862449347973, + 0.0012566413497552276, + 0.061754945665597916, + 0.06749959290027618, + -0.003664135467261076, + -0.027466589584946632, + -0.03969960659742355, + -0.052471186965703964, + -0.0016733846860006452, + 0.05147100239992142, + -0.016541503369808197, + -0.03562193363904953, + -0.03531418740749359, + -0.049880966544151306, + -0.026286885142326355, + -0.01875985972583294, + 0.05729258805513382, + 0.07934792339801788, + 0.07868113368749619, + -0.026953674852848053, + 0.05049646645784378, + -0.07591139525175095, + 0.047983184456825256, + -0.0022776625119149685, + 0.03474998101592064, + -0.048829492181539536, + 0.025453398004174232, + 0.04823964089155197, + -0.06324239820241928, + 0.003072680439800024, + 0.016092702746391296, + -0.08406674116849899, + 0.024684026837348938, + -0.03162119910120964, + -0.02620994858443737, + -0.003830832662060857, + 0.06472985446453094, + 0.05257377028465271, + 0.02862064726650715, + -0.026197124272584915, + -0.015066873282194138, + -0.001662164693698287, + 0.003462175140157342, + 0.007975826039910316, + -0.004013558384031057, + 0.018080247566103935, + -0.08416932076215744, + -0.024940483272075653, + 0.017118532210588455, + 0.009597918950021267, + 0.09422245621681213, + -0.018541870638728142, + -0.05447155609726906, + -0.01519510243088007, + -0.0608316995203495, + 0.009867198765277863, + -0.040263812988996506, + 0.022350264713168144, + 0.09453020244836807, + 0.0914527177810669, + -0.016400452703237534, + -0.004443124867975712, + 0.02128596603870392, + 0.09596636891365051, + -0.003943032585084438, + 0.03582710027694702, + -0.004478387534618378, + -0.01791355013847351, + -0.05044517293572426, + 0.06749959290027618, + 0.005754263140261173, + 0.015246393159031868, + -0.04367469996213913, + -0.06344756484031677, + -0.03392931818962097, + 0.048290930688381195, + -0.0003476200217846781, + -0.05116325616836548, + 0.03303171694278717, + -0.057702917605638504, + -0.026286885142326355, + 0.002431536791846156, + 0.004648290574550629, + 0.021606536582112312, + -0.00596584053710103, + 0.08442578464746475, + 0.018028955906629562, + -0.050009194761514664, + -0.07016675174236298, + 0.03149297088384628, + 0.01665690913796425, + 0.010508342646062374, + 0.049368053674697876, + 0.002338571008294821, + -0.04295661672949791, + -0.03513466566801071, + -0.019016318023204803, + 0.01086738333106041, + 0.008751609362661839, + 0.05518963560461998, + -0.07150033116340637, + 0.005276611540466547, + 0.01643892005085945, + 0.06857671588659286, + -0.0632936879992485, + 0.0572412945330143, + 0.03880200907588005, + -0.013284494169056416, + 0.036750346422195435, + 0.02578679285943508, + 0.02867193892598152, + -9.034864888235461e-06, + 0.012540767900645733, + 0.06934608519077301 + ] + }, + { + "id": "500d697b-f462-4a83-8ec1-3f52bf216017", + "productId": "dceeb3df-c949-4223-8a6a-09ea0b5419ae", + "category": "Media", + "docType": "customerRating", + "userName": "pricerobert", + "reviewDate": "2021-02-24T22:43:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a46ea860-9552-4f64-8356-af2959c5dba2", + "productId": "dceeb3df-c949-4223-8a6a-09ea0b5419ae", + "category": "Media", + "docType": "customerRating", + "userName": "mirandamontgomery", + "reviewDate": "2021-12-19T19:45:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "product", + "name": "Basic Filter + (Gold)", + "description": "This Basic Filter + (Gold) is the one you want to use, but it's too expensive and too slow for some people. It can actually make certain combinations better", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-01-06T22:51:47", + "price": 972.38, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-04-11T15:15:38", + "newPrice": 997.89 + }, + { + "priceDate": "2022-09-27T15:15:38", + "newPrice": 1054.24 + }, + { + "priceDate": "2025-02-04T15:15:38", + "newPrice": 972.38 + } + ], + "descriptionVector": [ + -0.0024995156563818455, + -0.0469546876847744, + -0.02971569076180458, + 0.0036587617360055447, + -0.058261688798666, + -0.05725909769535065, + -0.06890029460191727, + -0.016055384650826454, + -0.017726369202136993, + 0.07580703496932983, + -0.021388612687587738, + -0.004765789490193129, + 0.0469268374145031, + -0.050073862075805664, + 0.05152205005288124, + 0.03531349077820778, + -0.016807327046990395, + -0.015679413452744484, + -0.011829184368252754, + -0.021291138604283333, + -0.001476907404139638, + -0.0338096022605896, + -0.04642554372549057, + -0.01598576083779335, + -0.03548058867454529, + -0.003531697206199169, + -0.04157968610525131, + 0.017949167639017105, + -0.06516843289136887, + 0.06812050193548203, + 0.10816845297813416, + 0.05302593484520912, + 0.025301503017544746, + 0.017322547733783722, + -0.06149226054549217, + -0.011105090379714966, + 0.003305417951196432, + -0.006725715938955545, + -0.010206935927271843, + 0.026373719796538353, + 0.014140713959932327, + 0.0009286153363063931, + -0.05659070611000061, + 0.024396385997533798, + -0.04965611547231674, + -0.004999031312763691, + -0.031860120594501495, + 0.047066088765859604, + -0.03063473105430603, + -0.06349744647741318, + 0.023421645164489746, + -0.0506865568459034, + -0.013458394445478916, + -0.013827404007315636, + 0.005938960704952478, + 0.06505703181028366, + 0.006005103699862957, + 0.06132516264915466, + 0.04603564739227295, + -0.01286658737808466, + 0.003516031662002206, + -0.06149226054549217, + -0.04759523272514343, + 0.007240936625748873, + -0.06310755014419556, + -0.040521394461393356, + -0.08332647383213043, + -0.007519434206187725, + 0.02577495016157627, + 0.043250672519207, + -0.07051558047533035, + -0.02971569076180458, + 0.0038920033257454634, + 0.03445014730095863, + 0.02555215172469616, + 0.024312837049365044, + 0.1110091283917427, + -0.017002277076244354, + -0.00016503156803082675, + 0.013131160289049149, + -0.0310246292501688, + 0.04116193950176239, + -0.010854442603886127, + -0.014774295501410961, + 0.036343932151794434, + -0.0017980498960241675, + 0.04684329032897949, + -0.01899353414773941, + -0.00901635829359293, + -0.047650933265686035, + 0.010722155682742596, + 0.0432228222489357, + 0.0068997773341834545, + -0.034700796008110046, + 0.017350398004055023, + 0.10064902156591415, + -0.024326762184500694, + 0.025412902235984802, + -0.11401690542697906, + 0.05959847941994667, + -0.004870226141065359, + -0.0545298233628273, + -0.0507144071161747, + 0.05770469456911087, + 0.020232848823070526, + -0.0003054770058952272, + -0.019620154052972794, + -0.051577746868133545, + 0.047010388225317, + -0.008508100174367428, + 0.0357312373816967, + -0.0376250222325325, + 0.008535950444638729, + 0.05397282913327217, + 0.0036169870290905237, + 0.017977017909288406, + -0.07123968005180359, + -0.007749194744974375, + 0.06711791455745697, + -0.021179739385843277, + -0.003961627837270498, + 0.07619693130254745, + 0.02690286375582218, + -0.02539897710084915, + -0.05770469456911087, + -0.031693022698163986, + -0.015289516188204288, + 0.06973578780889511, + -0.002081769285723567, + -0.015665488317608833, + -0.0901775136590004, + 0.014154638163745403, + 0.04639769345521927, + 0.04157968610525131, + -0.03717942535877228, + 0.05731479823589325, + 0.04639769345521927, + 0.06644951552152634, + -0.014071089215576649, + 0.06823190301656723, + -0.03832126408815384, + -0.0770881250500679, + 0.04102269187569618, + 0.04533940181136131, + 0.004389817826449871, + -0.058707285672426224, + -0.03706802427768707, + 0.11295861005783081, + -0.01203109510242939, + -0.0012384438887238503, + 0.025593925267457962, + -0.14181095361709595, + 0.006287082564085722, + -0.04024289920926094, + 0.000600075232796371, + 0.016055384650826454, + -0.016222482547163963, + -0.06878890097141266, + -0.018868209794163704, + 0.010276559740304947, + -0.025621775537729263, + 0.00788148120045662, + -0.038989659398794174, + -0.02365836873650551, + 0.006294045131653547, + 0.09524616599082947, + -0.008995471522212029, + 0.06745211035013199, + -0.07491584122180939, + 0.040688492357730865, + 0.026401568204164505, + -0.012142493389546871, + -0.005535139236599207, + 0.011745634488761425, + -0.028852347284555435, + 0.0807642936706543, + 0.051187850534915924, + -0.06037827208638191, + 0.015749037265777588, + -0.07263216376304626, + 0.0022036118898540735, + -0.011501949280500412, + -0.012539352290332317, + -0.04597994685173035, + 0.020775917917490005, + -0.03840481489896774, + -0.001776292221620679, + 0.01164816040545702, + 0.015902210026979446, + 0.008675199002027512, + 0.03628823161125183, + 0.011515874415636063, + 0.03534134104847908, + -0.03612113371491432, + -0.01024871040135622, + 0.027209211140871048, + -0.09619306027889252, + -0.09886663407087326, + -0.0017754220170900226, + -0.028044704347848892, + 0.005496845580637455, + 0.024382460862398148, + 0.08677984029054642, + 0.006701347418129444, + 0.0319993682205677, + -0.01108420267701149, + 0.04648124426603317, + 0.03174872323870659, + -0.028852347284555435, + 0.015916135162115097, + 0.013005835935473442, + -0.0068127466365695, + -0.04355701804161072, + -0.05904148146510124, + 0.03793136775493622, + 0.00652380520477891, + -0.01267163921147585, + -0.04586854949593544, + -0.09418787807226181, + -0.03043978288769722, + 0.04403046518564224, + -0.021318988874554634, + -0.01767067052423954, + -0.009531578980386257, + 0.0583173893392086, + -0.030718281865119934, + 0.003303677309304476, + 0.05313733592629433, + 0.03325260803103447, + 0.044281113892793655, + 0.005228791851550341, + 0.0036309119313955307, + -0.020023975521326065, + 0.02198738232254982, + -0.0807642936706543, + -0.026791466400027275, + -0.009636015631258488, + -0.06266195327043533, + 0.01032529678195715, + 0.0263319443911314, + 0.05970987677574158, + 0.009510692209005356, + -0.06990288943052292, + -0.029465042054653168, + 0.05305378511548042, + 0.000683189311530441, + 0.06032257154583931, + -0.041858185082674026, + -0.044671010226011276, + 0.00930878147482872, + -0.04375196620821953, + -0.051048602908849716, + -0.048402875661849976, + 0.05792749300599098, + -0.05205119401216507, + 0.1261036992073059, + 0.05171699821949005, + -0.0414125882089138, + -0.08054149150848389, + -0.06411013752222061, + 0.03659458085894585, + 0.02971569076180458, + -0.025983823463320732, + 0.02798900566995144, + -0.10811275243759155, + -0.015428764745593071, + 0.03509069234132767, + -0.04806867986917496, + -0.03592618554830551, + 0.0770324245095253, + 0.006576023530215025, + 0.057036299258470535, + 0.007289673667401075, + -0.00761690828949213, + 0.07079408317804337, + -0.00027066480834037066, + -0.030773980543017387, + 0.023533044382929802, + 0.038627613335847855, + 0.0272231362760067, + 0.042415179312229156, + 0.15451045334339142, + 0.05210689455270767, + 0.03770856931805611, + 0.04213668033480644, + -0.05012956261634827, + -0.0155123146250844, + -0.011564611457288265, + -0.05388927832245827, + -0.08627854287624359, + -0.008932809345424175, + 0.014927469193935394, + -0.04208097979426384, + -0.034310899674892426, + 0.03461724519729614, + -0.013186859898269176, + 0.024326762184500694, + 0.014732521027326584, + -0.008563799783587456, + 0.07469304651021957, + -0.07157387584447861, + -0.014537572860717773, + -0.0027205729857087135, + -0.09368658065795898, + -0.023031748831272125, + 0.061993557959795, + 0.020010050386190414, + -0.012991911731660366, + -0.06834330409765244, + -0.07775651663541794, + 0.05898578464984894, + 0.01672377809882164, + 0.007498546969145536, + 0.01267163921147585, + 0.04542295262217522, + -0.03238926827907562, + -0.01899353414773941, + 0.0301055870950222, + 0.02634586952626705, + 0.02292034961283207, + -0.0733005553483963, + -0.012539352290332317, + 0.02704211324453354, + 0.05135495215654373, + 0.004240125417709351, + -0.01345143187791109, + -0.03715157508850098, + -0.0061443522572517395, + -0.0301055870950222, + -0.04280507564544678, + -0.036761678755283356, + -0.042192380875349045, + -0.0770324245095253, + 0.06087956577539444, + -0.02007967419922352, + -0.06544692814350128, + 0.015735112130641937, + -0.00920434482395649, + -0.06316325068473816, + -0.01672377809882164, + 0.0003633523010648787, + 0.017614969983696938, + 0.028309276327490807, + -0.018715037032961845, + 0.029659990221261978, + 0.005221829283982515, + -0.0016901320777833462, + -0.08416195958852768, + 0.04478240758180618, + -0.01352105662226677, + 0.001818937249481678, + 0.02370014227926731, + -0.014927469193935394, + -0.019620154052972794, + 0.06277334690093994, + -0.0291586946696043, + 0.03344755619764328, + -0.024744508787989616, + 0.02218233048915863, + -0.019954349845647812, + 0.04687114059925079, + -0.028991596773266792, + 0.019982200115919113, + -0.022795025259256363, + -0.049739666283130646, + 0.14426173269748688, + -0.022474752739071846, + 0.0639430433511734, + -0.0310246292501688, + -0.0076517206616699696, + -0.034645095467567444, + -0.008501138538122177, + 0.0507979542016983, + 0.022516528144478798, + -0.058707285672426224, + -0.027153512462973595, + 0.0639430433511734, + 0.013966652564704418, + -0.015581938438117504, + 0.04907127097249031, + -0.013395733200013638, + 0.04419756308197975, + 0.04430896043777466, + -0.06522412598133087, + 0.1463783234357834, + -0.042916473001241684, + -0.07942750304937363, + 0.0206784438341856, + -0.020734144374728203, + -0.02649904228746891, + -0.05416777729988098, + -0.06488993018865585, + -0.04224808141589165, + 0.011146864853799343, + -0.019703703001141548, + -0.03341970592737198, + 0.014593272469937801, + 0.030773980543017387, + 0.045395102351903915, + 0.0014673339901492, + 0.03631608188152313, + 0.003152244258671999, + -0.05305378511548042, + -0.06160366162657738, + -0.04642554372549057, + 0.00761690828949213, + 0.009336630813777447, + 0.009350555948913097, + -0.011042428202927113, + -0.021179739385843277, + 0.010645569302141666, + -0.05915288254618645, + -0.021653184667229652, + -0.054501973092556, + -0.03628823161125183, + -0.011613348498940468, + 0.015595863573253155, + 0.033753905445337296, + 0.0620492585003376, + -0.012894436717033386, + -0.020970866084098816, + 0.05776039510965347, + -0.002227980410680175, + -0.01409893948584795, + 0.012323517352342606, + -0.025524301454424858, + 0.01934165507555008, + -0.021722810342907906, + 0.05678565427660942, + -0.013472319580614567, + 0.05355508252978325, + -0.044671010226011276, + -0.03330830857157707, + -0.017057975754141808, + -0.030328383669257164, + -0.03305765986442566, + 0.008737861178815365, + 0.0734119564294815, + -0.09741844981908798, + -0.04196958243846893, + 0.029743539169430733, + -0.0525803379714489, + -0.0008485472644679248, + 0.07396895438432693, + -0.012734301388263702, + -0.05219044163823128, + -0.0394352562725544, + 0.03589833527803421, + 0.023449495434761047, + -0.0016370434314012527, + -0.02460525929927826, + -0.0014212079113349319, + -0.07608553767204285, + -0.02084554173052311, + 0.08923061937093735, + 0.002175762318074703, + 0.0013045870000496507, + 0.05319303274154663, + 0.028239652514457703, + 0.007561208680272102, + -0.06884459406137466, + 0.05040805786848068, + 0.04999031126499176, + -0.06054536998271942, + 0.05653500556945801, + 0.031275276094675064, + -0.04249872639775276, + -0.045172303915023804, + 0.004462923388928175, + -0.020580969750881195, + -0.055365316569805145, + -0.10393529385328293, + -0.026262320578098297, + 0.03230571746826172, + -0.0413290373980999, + 0.01015819888561964, + 0.023992564529180527, + -0.03520209342241287, + 0.025663550943136215, + -0.017601046711206436, + 0.025078704580664635, + -0.0450887568295002, + -0.05809459090232849, + 0.07369045168161392, + 0.018882134929299355, + 0.05135495215654373, + 0.0771995261311531, + 0.05096505209803581, + 0.02141646295785904, + 0.10594047605991364, + -0.0319993682205677, + 0.015066717751324177, + 0.0007088633137755096, + 0.013249521143734455, + -0.007080800365656614, + -0.06734070926904678, + -0.012219080701470375, + -0.061770759522914886, + 0.019244180992245674, + 0.033921003341674805, + 0.01934165507555008, + -0.017350398004055023, + -0.036956626921892166, + -0.0751386433839798, + 0.035759087651968, + 0.0071782744489610195, + 0.07825781404972076, + -0.06087956577539444, + -0.0004786676727235317, + -0.027571259066462517, + -0.03272346407175064, + -0.010819630697369576 + ] + }, + { + "id": "499dde0f-8b75-44e5-a912-49cf70d4f859", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "herreracindy", + "reviewDate": "2021-10-15T18:47:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "573bef2b-8f21-4ab3-80bd-c23bf82f2423", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "ericksonmadison", + "reviewDate": "2021-04-19T10:20:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4478867c-51a8-4607-8a9d-04e7e4913028", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "michael90", + "reviewDate": "2021-04-11T15:15:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "296ee6cf-bd42-4d18-9efb-8b4d66bfc317", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "fsmith", + "reviewDate": "2022-09-28T00:24:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "386fb3ae-341c-433d-b407-19d187a0401f", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "kelly39", + "reviewDate": "2021-05-09T07:48:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bf607804-32d9-4efc-b7e1-4efc2b2675e6", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "harperjoe", + "reviewDate": "2021-11-10T07:42:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f7b5e62e-b001-4bb4-9c8e-8c43e7b91044", + "productId": "e712de35-e6a2-4e34-9fa1-6d7fc35845d9", + "category": "Other", + "docType": "customerRating", + "userName": "kathryn16", + "reviewDate": "2022-07-06T17:57:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Silver)", + "description": "This Amazing Filter Micro (Silver) is a simple, lightweight, and very lightweight filter.\n\n\nThis amazing filter is the perfect value because of the lightweight, lightweight silver aluminum construction. Made from the", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-06-05T23:30:16", + "price": 269.98, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-02-09T21:21:21", + "newPrice": 279.87 + }, + { + "priceDate": "2021-06-13T21:21:21", + "newPrice": 269.85 + }, + { + "priceDate": "2021-10-15T21:21:21", + "newPrice": 274.47 + }, + { + "priceDate": "2022-02-16T21:21:21", + "newPrice": 255.52 + }, + { + "priceDate": "2022-06-20T21:21:21", + "newPrice": 277.43 + }, + { + "priceDate": "2024-07-14T21:21:21", + "newPrice": 269.98 + } + ], + "descriptionVector": [ + -0.0011955915251746774, + 0.04799756407737732, + -0.023419102653861046, + 0.013873692601919174, + 0.046580567955970764, + -0.06239940971136093, + -0.029628125950694084, + -0.059874579310417175, + -0.011026815511286259, + 0.057865019887685776, + -0.04737924039363861, + 0.006382929161190987, + 0.037614841014146805, + 0.011877014301717281, + 0.015290689654648304, + 0.003167311195284128, + -0.06580020487308502, + -0.03480660915374756, + -0.014285909943282604, + 0.033312320709228516, + 0.055855460464954376, + -0.07775451242923737, + -0.02756704017519951, + 0.010736975818872452, + -0.014556427486240864, + -0.014324555173516273, + -0.012559749186038971, + 0.01612800545990467, + -0.03308044746518135, + -0.020585106685757637, + 0.07497204095125198, + 0.0227234847843647, + 0.03534764423966408, + 0.08501984179019928, + -0.05508255213499069, + -0.00012771091132890433, + 0.03766636550426483, + 0.011200720444321632, + 0.016321232542395592, + 0.06239940971136093, + -0.02895827405154705, + 0.014079800806939602, + -0.07048917561769485, + 0.0017760774353519082, + -0.03300315514206886, + -0.02374114654958248, + -0.021319368854165077, + 0.003645547665655613, + -0.04325706511735916, + 0.006505305878818035, + 0.06420285999774933, + -0.013216720893979073, + -0.01641140505671501, + -0.0011988119222223759, + 0.0017615853575989604, + 0.0009669396677054465, + 0.04387539252638817, + 0.12325301021337509, + 0.040629178285598755, + -0.01053730770945549, + 0.01951591856777668, + -0.00847622100263834, + 0.038980308920145035, + -0.00815417617559433, + -0.04871894419193268, + -0.0006171184359118342, + -0.021113261580467224, + -0.01222482230514288, + 0.05559782311320305, + 0.013306893408298492, + -0.013963865116238594, + 0.02674260549247265, + -0.021783113479614258, + -0.00860503874719143, + 0.03818163648247719, + 0.050342053174972534, + 0.08331944793462753, + -0.049053873866796494, + 0.015264926478266716, + 0.007220245897769928, + 0.027103295549750328, + 0.048229437321424484, + -0.03436862677335739, + 0.008527747355401516, + 0.028339946642518044, + 0.0331835001707077, + 0.05242890119552612, + -0.0748174637556076, + -0.018936237320303917, + 0.05302146449685097, + -0.02025018073618412, + 0.021203434094786644, + 0.05250619351863861, + -0.03527035191655159, + 0.022671958431601524, + 0.05129530280828476, + -0.02365097403526306, + 0.030117634683847427, + -0.05160446837544441, + -0.023290283977985382, + -0.06038985028862953, + -0.07115903496742249, + -0.018279265612363815, + 0.040165435522794724, + -0.0554947704076767, + -0.011606496758759022, + -0.008508425205945969, + -0.023032648488879204, + -0.0009290993912145495, + -0.10377573221921921, + 0.037614841014146805, + -0.043025191873311996, + -0.05139835923910141, + 0.0025409338995814323, + 0.03537340834736824, + -0.026317505165934563, + -0.0454469695687294, + 0.06054443120956421, + 0.0516817569732666, + 0.006076986435800791, + -0.005742059554904699, + -0.00925556942820549, + 0.0351930633187294, + 0.024243537336587906, + 0.01666904240846634, + -0.003993356134742498, + -0.01776399463415146, + -0.002637547440826893, + 0.0050206794403493404, + 0.05436117202043533, + -0.11439033597707748, + -0.04495746269822121, + 0.05142412334680557, + 0.004843554459512234, + -0.11882167309522629, + -0.001544205122627318, + 0.03542493283748627, + 0.10320893675088882, + -0.038310457020998, + 0.059874579310417175, + -0.03676464036107063, + -0.009242687374353409, + 0.029164381325244904, + 0.02491338923573494, + 0.020314589142799377, + -0.12675686180591583, + -0.016334114596247673, + -0.026613786816596985, + 0.015277807600796223, + -0.04588495194911957, + 0.04918269068002701, + -0.08156751841306686, + -0.03251364827156067, + -0.059307780116796494, + 0.0443391352891922, + 0.011522765271365643, + -0.03194684907793999, + 0.0019676941446959972, + 0.013268248178064823, + -0.03380182757973671, + 0.011194279417395592, + -0.016527341678738594, + -0.03042679838836193, + 0.009088105522096157, + 0.01630835235118866, + -0.01190277747809887, + 0.01933557353913784, + 0.04606529697775841, + -0.08069156110286713, + 0.06229635700583458, + 0.024307945743203163, + -0.0007254060474224389, + 0.01806027628481388, + -0.06806740164756775, + -0.000600211089476943, + 0.053176045417785645, + -0.0017036172794178128, + -0.002486186334863305, + -0.015909016132354736, + -0.06507882475852966, + -0.016913795843720436, + 0.07151972502470016, + -0.013822165317833424, + -0.01650157757103443, + -0.017622293904423714, + 0.0007680769776925445, + 0.02052069827914238, + 0.014904235489666462, + 0.016153769567608833, + 0.07404455542564392, + -0.035218823701143265, + -0.039083365350961685, + 0.03743449226021767, + 0.04240686818957329, + -0.00478558661416173, + -0.020816979929804802, + -0.046941258013248444, + -0.05966847017407417, + -0.00561002129688859, + 0.014646600000560284, + -0.010601717047393322, + 0.01159361470490694, + 0.028365710750222206, + -0.020494934171438217, + 0.012076682411134243, + -0.06100817769765854, + 0.03235906735062599, + 0.05047086998820305, + -0.00948744174093008, + -0.04111868888139725, + 0.0032220587600022554, + -0.026691077277064323, + -0.002513560000807047, + 0.044854406267404556, + 0.06940710544586182, + 0.05724669247865677, + -0.012018714100122452, + -0.06858266890048981, + 0.00796739012002945, + 0.036429714411497116, + 0.02611139602959156, + -0.09970508515834808, + 0.019902372732758522, + -0.011709551326930523, + -0.017003968358039856, + -0.013989628292620182, + 0.0011722432682290673, + 0.047868747264146805, + 0.07832130789756775, + 0.07244721055030823, + -0.05946236103773117, + 0.009197601117193699, + -0.040010854601860046, + 0.035502225160598755, + -0.028546055778861046, + 0.010189499706029892, + -0.044107262045145035, + -0.008804705925285816, + 0.009584055282175541, + 0.02859758399426937, + 0.032977394759655, + 0.030993597581982613, + -0.04294790327548981, + -0.0202630627900362, + 0.05534018948674202, + -0.05137259513139725, + 0.02446252666413784, + -0.06466660648584366, + -0.08218584954738617, + 0.01274009421467781, + -0.016900913789868355, + 0.02921590954065323, + -0.008817587979137897, + 0.04124750569462776, + 0.00597715238109231, + 0.0746113508939743, + 0.08965728431940079, + -0.01813756674528122, + -0.0534852109849453, + -0.07976406812667847, + 0.01035052165389061, + -0.0073297410272061825, + 0.08739009499549866, + 0.01094952505081892, + -0.07497204095125198, + -0.04013967141509056, + -0.0218217596411705, + -0.0991382896900177, + -0.003928947262465954, + 0.015303571708500385, + -0.03931523486971855, + 0.028649110347032547, + 0.0318695604801178, + 0.014917117543518543, + -0.07430218905210495, + 0.0253900159150362, + -0.09125462919473648, + 0.08352555334568024, + 0.034677788615226746, + -0.004775925073772669, + 0.11037120968103409, + 0.0007479491760022938, + 0.04194312170147896, + 0.04884776473045349, + 0.18333369493484497, + 0.0041092922911047935, + 0.013126548379659653, + -0.07626022398471832, + -0.08852369338274002, + 0.02566053345799446, + -0.04735347628593445, + -0.015638498589396477, + 0.01932269148528576, + 0.015690024942159653, + -0.002631106413900852, + -0.0022816879209131002, + 0.02949930913746357, + -0.008398929610848427, + -0.018098920583724976, + 0.05338215455412865, + -0.027000240981578827, + 0.03452320769429207, + -0.040268488228321075, + 9.938103175954893e-05, + -0.026150042191147804, + 0.0808461382985115, + 0.023573683574795723, + 0.014723890461027622, + -0.026794131845235825, + -0.09604665637016296, + 0.06276009976863861, + 0.0197091456502676, + 0.04895081743597984, + 0.03756331279873848, + 0.04083528742194176, + -0.011838369071483612, + -0.02491338923573494, + -0.018008748069405556, + 0.055649351328611374, + 0.028546055778861046, + 0.016450051218271255, + 0.019464390352368355, + 0.03606902435421944, + 0.08800841867923737, + -0.025274081155657768, + -0.00040537395398132503, + -0.031173942610621452, + -0.03555375337600708, + -0.04021696001291275, + -0.047868747264146805, + -0.0349869541823864, + -0.011851251125335693, + -0.03655853122472763, + 0.020816979929804802, + -0.029576599597930908, + -0.08053697645664215, + 0.050058651715517044, + 0.01842096634209156, + -0.0018372659105807543, + 0.028880983591079712, + -0.016540223732590675, + -0.039263710379600525, + 0.034600500017404556, + 0.01822773925960064, + 0.09584055095911026, + -0.03369877487421036, + 0.015483916737139225, + -0.05286688357591629, + 0.03967592492699623, + -0.014749654568731785, + 0.0014129717601463199, + -0.010144412517547607, + 0.039804745465517044, + 0.02924167364835739, + 0.10454864054918289, + -0.029808470979332924, + 0.03527035191655159, + -0.02903556451201439, + 0.07322011888027191, + 0.018743010237812996, + -0.0022204993292689323, + -0.016166651621460915, + 0.029190145432949066, + -0.007052782457321882, + -0.09197600930929184, + 0.10511544346809387, + -0.024758808314800262, + 0.018098920583724976, + -0.021924814209342003, + -0.01136174239218235, + -0.03946981579065323, + 0.02566053345799446, + 0.0031689214520156384, + 0.02839147485792637, + -0.0494660884141922, + -0.08167057484388351, + 0.086874820291996, + -0.011245806701481342, + 0.010273231193423271, + 0.06920100003480911, + 0.022929593920707703, + 0.04351470246911049, + 0.0008960898267105222, + -0.06399675458669662, + 0.06626395136117935, + -0.03194684907793999, + -0.04982677847146988, + 0.05868945270776749, + -0.007767722010612488, + 0.014401845633983612, + -0.043849628418684006, + -0.011432592757046223, + 0.03251364827156067, + -0.07172583043575287, + 0.02233703061938286, + 0.004299298860132694, + 0.006405472289770842, + 0.04673514887690544, + 0.09578902274370193, + 0.03905760124325752, + 0.07084986567497253, + 0.01585748791694641, + -0.008817587979137897, + -0.045575786381959915, + -0.042381104081869125, + 0.00533950375393033, + 0.06806740164756775, + 0.06842809170484543, + 0.012656362727284431, + -0.11902777850627899, + 0.003516729921102524, + -0.07224110513925552, + 0.01768670417368412, + -0.05626767873764038, + 0.017519239336252213, + 0.06770671159029007, + 0.03006610833108425, + -0.025248317047953606, + 0.09115157276391983, + -0.014723890461027622, + 0.06461507827043533, + -0.02335469238460064, + -0.023509275168180466, + 0.044751353561878204, + -0.021113261580467224, + 0.06466660648584366, + -0.020907152444124222, + 0.00855995249003172, + 0.041556667536497116, + -0.07208652049303055, + 0.002706787083297968, + 0.0036036819219589233, + -0.001521661994047463, + 0.004824231844395399, + -0.07404455542564392, + -0.056937530636787415, + 0.0174934770911932, + 0.061987195163965225, + -0.027927730232477188, + 0.01228279061615467, + -0.012843148782849312, + -0.00483389338478446, + -0.03977898135781288, + 0.04408150166273117, + -0.13500119745731354, + -0.05003288760781288, + -0.043205536901950836, + 0.04560155048966408, + -0.009693549945950508, + -0.1312912404537201, + -0.03869691118597984, + 0.027721621096134186, + -0.029293200001120567, + -0.03784671053290367, + 0.025789352133870125, + -0.02857181988656521, + 0.05884403735399246, + 0.09027561545372009, + -0.005184922367334366, + 0.025982579216361046, + -0.035038478672504425, + 0.11026816070079803, + -0.028700636699795723, + -0.04194312170147896, + 0.04784298315644264, + 0.029628125950694084, + -0.027438221499323845, + 0.046786677092313766, + 0.014079800806939602, + 0.013087903149425983, + -0.015561207197606564, + -0.035502225160598755, + -0.07054070383310318, + 0.02877792902290821, + -0.03114817850291729, + -0.005397471599280834, + -0.015110344626009464, + 0.026613786816596985, + 0.046580567955970764, + 0.04495746269822121, + -0.0202630627900362, + 0.01222482230514288, + -0.03004034422338009, + 0.087287038564682, + -0.006904641631990671, + -0.011973627842962742, + 0.007207363843917847, + -0.013989628292620182, + 0.03122546896338463, + 0.06456355005502701, + 0.01942574605345726, + 0.053536735475063324, + -0.00833452120423317, + -0.013667583465576172, + -0.041350558400154114, + -0.011600055731832981, + -0.02398589998483658, + -0.04730194807052612, + 0.000673073751386255, + 0.06641852855682373, + -0.0066920919343829155, + 0.014504900202155113, + -0.0008968948968686163, + 0.01108478382229805, + -0.028880983591079712, + 0.05165599659085274, + -0.029628125950694084, + -0.048152148723602295, + -0.032977394759655, + -0.026510732248425484, + -0.0052396696992218494, + 0.06770671159029007 + ] + }, + { + "id": "cd590365-7573-4dc1-8cdc-7daa13b66fa6", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "lukejohnson", + "reviewDate": "2022-06-22T21:59:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e8931d17-3240-49c6-b085-fe4c471ea28f", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "manningmichael", + "reviewDate": "2021-06-27T08:41:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5ff88eed-74fe-4ce3-bd75-3a7036ab94e9", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "julie21", + "reviewDate": "2021-04-15T18:44:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3165bc9a-c7f1-4436-920f-08d7b3cc073d", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "walkerlori", + "reviewDate": "2021-02-11T02:57:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f7c71627-e5e1-4ecd-aebc-a58eaeeb5274", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "lanejill", + "reviewDate": "2021-11-19T17:59:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "378cb742-41ea-4560-9452-12908eeb48f9", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "idavis", + "reviewDate": "2021-03-28T21:18:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c306b20e-b03b-4e0f-a051-b409c57eea99", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "oyoung", + "reviewDate": "2022-01-18T04:03:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e14f180b-4038-4f45-9e20-116542dd35f4", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "david08", + "reviewDate": "2022-04-10T08:13:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "18e383cf-7983-4304-ab45-277e0cf44598", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "ahamilton", + "reviewDate": "2022-03-06T18:13:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6ad02356-5066-4c83-b341-93300efb95ba", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "qbutler", + "reviewDate": "2021-06-04T20:27:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7b17530a-7c20-458b-866c-f664379ca633", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "williamkrueger", + "reviewDate": "2021-02-09T21:21:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "932bd947-18cf-433f-af8e-6bb0be29e0da", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "johnbates", + "reviewDate": "2021-04-18T09:58:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fbc0a148-d7f4-4484-a784-6fe477952ede", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "vgreen", + "reviewDate": "2021-07-02T13:35:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "639357c8-522b-4975-abd8-eaabe18a1ab1", + "productId": "e9ec7cbd-8477-46c2-9e60-db9b8a51b315", + "category": "Other", + "docType": "customerRating", + "userName": "longhannah", + "reviewDate": "2022-03-23T19:35:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Micro (Gold)", + "description": "This Awesome Computer Micro (Gold) is powered by an Intel Broadwell-E processor, built using the latest Haswell i9-6700K processor.\n\n\nThe computer also has an Intel i5-2500K processor, which will give it a much faster performance than its competitors. In fact, it runs more than", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-06-26T00:11:06", + "price": 932.84, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-01-20T07:20:40", + "newPrice": 952.81 + }, + { + "priceDate": "2022-10-26T07:20:40", + "newPrice": 905.29 + }, + { + "priceDate": "2023-01-08T07:20:40", + "newPrice": 932.84 + } + ], + "descriptionVector": [ + -0.003136035520583391, + 0.026747429743409157, + -0.02918587066233158, + -0.025440223515033722, + 0.03438955172896385, + -0.012374456971883774, + 0.019281277433037758, + 0.019230999052524567, + 0.06350000947713852, + 0.08577277511358261, + 0.06898020952939987, + -0.07702454924583435, + 0.047486741095781326, + -0.07079018652439117, + 0.021556315943598747, + 0.08944300562143326, + -0.02657146006822586, + -0.019520092755556107, + -0.024686068296432495, + -0.007937501184642315, + 0.0040378812700510025, + 0.023554831743240356, + -0.03499287739396095, + -0.024723775684833527, + -0.033937059342861176, + -0.0003234625910408795, + 0.007623268757015467, + -0.004788896068930626, + -0.03235333040356636, + -0.0015782302943989635, + 0.08838718384504318, + 0.02797921933233738, + -0.020563343539834023, + -0.02599327266216278, + 0.043112631887197495, + -0.06319834291934967, + -0.03931671008467674, + -0.03210194408893585, + 0.06551109254360199, + -0.027627279981970787, + 0.004672630224376917, + 0.0028139478527009487, + -0.007667261175811291, + 0.01843913458287716, + 0.04899505525827408, + 0.03499287739396095, + -0.0035256831906735897, + 0.008729365654289722, + 0.03956809639930725, + -0.05887451022863388, + 0.0560087151825428, + 0.026697153225541115, + 0.002780953422188759, + -0.013336006551980972, + -0.016541173681616783, + -0.03557106480002403, + -0.07099130004644394, + 0.09482265263795853, + -0.014932305552065372, + 0.004726049490272999, + 0.02570417895913124, + -0.013361145742237568, + -0.05243903771042824, + -0.03177514299750328, + -0.061338089406490326, + -0.03175000473856926, + -0.018941905349493027, + 0.04879394918680191, + 0.03154889494180679, + 0.06365083903074265, + -0.038562554866075516, + -0.04303721711039543, + 0.031071262434124947, + -0.020638758316636086, + 0.033660534769296646, + 0.0015625187661498785, + 0.07521457970142365, + 0.0071142129600048065, + 0.07601901143789291, + -0.014831751585006714, + 0.04708452522754669, + -0.0016002265037968755, + 0.029613224789500237, + -0.05140835791826248, + 0.009866885840892792, + -0.0018272591987624764, + -0.004147862549871206, + -0.10497863590717316, + -0.002787237986922264, + -0.012229910120368004, + -0.06435471773147583, + 0.05882423371076584, + -0.007277613505721092, + 0.015359661541879177, + -0.02389420196413994, + 0.051785435527563095, + -0.05741647630929947, + 0.03891449421644211, + 0.003934185020625591, + -0.016654297709465027, + -0.028984760865569115, + -0.08848773688077927, + -0.01053934171795845, + -0.08356057852506638, + -0.02745130844414234, + 0.04039767012000084, + 0.054148461669683456, + 0.03318290039896965, + 0.015259106643497944, + -0.04763757437467575, + -0.06797467172145844, + -0.05158432945609093, + 0.007880939170718193, + 0.0181877501308918, + -0.024045033380389214, + -0.02017369493842125, + -0.020324526354670525, + 0.02285095304250717, + -0.06329889595508575, + 0.003290009219199419, + 0.06169002875685692, + 0.051458634436130524, + 0.018049487844109535, + 0.011042113415896893, + -0.028130050748586655, + 0.045777320861816406, + -0.06887965649366379, + -0.005062277894467115, + -0.005546194966882467, + -0.012569280341267586, + -0.12710057199001312, + 0.0779295414686203, + 0.013336006551980972, + 0.004320690408349037, + -0.024045033380389214, + 0.006919389124959707, + 0.06616469472646713, + 0.1217711940407753, + 0.07305265963077545, + 0.002429013606160879, + -0.0030559063889086246, + -0.01879107393324375, + -0.10291726887226105, + -0.05651148781180382, + -0.05399763211607933, + 0.027627279981970787, + -0.09366627782583237, + -0.0072838980704545975, + -0.00021191021369304508, + 0.030719323083758354, + -0.015032859519124031, + -0.05223793163895607, + -0.0363755002617836, + -0.04090043902397156, + -0.00023763797071296722, + 0.029613224789500237, + 0.02303949184715748, + 0.015460215508937836, + -0.04193112254142761, + 0.05651148781180382, + -0.0293869785964489, + 0.018979614600539207, + -0.0791361927986145, + -0.011199229396879673, + 0.009986293502151966, + -0.0305936299264431, + 0.02448495849967003, + 0.027577001601457596, + -0.10135868191719055, + 0.02795408107340336, + 0.05832146108150482, + 0.02223505824804306, + 0.025289392098784447, + -0.046908557415008545, + 0.046883419156074524, + 0.06003088504076004, + 0.06229335442185402, + -0.02363024838268757, + -0.02256185933947563, + -0.09974981099367142, + 0.0029380694031715393, + 0.05952811241149902, + -0.03587272763252258, + 0.043741095811128616, + 0.0403473898768425, + -0.004194997251033783, + -0.014995152130723, + 0.06108670309185982, + 0.017182206735014915, + 0.02948753349483013, + 0.006536026019603014, + -0.06068448722362518, + 0.07400792837142944, + 0.012556711211800575, + 0.015988124534487724, + 0.014806612394750118, + -0.01845170371234417, + 0.03692854568362236, + -0.049749214202165604, + 0.054952897131443024, + -0.017446162179112434, + 0.023177754133939743, + 0.007767815608531237, + -0.026420628651976585, + 0.10497863590717316, + -0.018388858065009117, + 0.020110849291086197, + 0.007051366381347179, + -0.01155745331197977, + 0.1034703180193901, + 0.0410764105618, + 0.004908304195851088, + -0.07119240611791611, + -0.029236147180199623, + 0.06656691431999207, + 0.038813937455415726, + 0.01679255999624729, + 0.005728449672460556, + -0.048014651983976364, + -0.036777716130018234, + -0.027752971276640892, + -0.03831116855144501, + -0.022649843245744705, + 0.000895561242941767, + -0.047159940004348755, + -0.09039826691150665, + 0.0345655232667923, + -0.030216550454497337, + 0.01640291139483452, + -0.047813545912504196, + -0.10940302163362503, + -0.004103870131075382, + 0.02659659832715988, + 0.04333887994289398, + -0.06872882694005966, + 0.01053934171795845, + 0.008408849127590656, + -0.04012114554643631, + -0.01012455578893423, + 0.04208195209503174, + 0.08501861244440079, + 0.023881632834672928, + -0.0691310465335846, + -0.036501191556453705, + 0.022323042154312134, + -0.004424386657774448, + 0.04359026625752449, + 0.021279793232679367, + -0.0757676213979721, + 0.030719323083758354, + -0.021166669204831123, + -0.026043549180030823, + -0.024346696212887764, + 0.09537570178508759, + 0.022360751405358315, + 0.06415361166000366, + 0.009929731488227844, + -0.043715957552194595, + 0.009370398707687855, + -0.029839472845196724, + -0.014932305552065372, + -0.0906999334692955, + 0.0047920383512973785, + 0.021857978776097298, + -0.08104672282934189, + -0.014819182455539703, + 0.06872882694005966, + 0.01906759850680828, + -0.006812550127506256, + 0.042584724724292755, + 0.059930332005023956, + 0.014504950493574142, + -0.019985156133770943, + 0.013939332216978073, + 0.01298406720161438, + -0.035948142409324646, + -0.03325831517577171, + 0.03813519701361656, + 0.026621736586093903, + 0.04090043902397156, + 0.020010294392704964, + 0.04351485148072243, + 0.07627039402723312, + 0.03609897568821907, + 0.06732106953859329, + -0.014567796140909195, + 0.0006763844285160303, + -0.03891449421644211, + -0.007221051957458258, + -0.047436464577913284, + -0.011507176794111729, + 0.06596358865499496, + 0.01473119668662548, + 0.11644181609153748, + 0.006850257981568575, + 0.024736344814300537, + 0.03230305016040802, + -0.03117181546986103, + 0.0008358571794815361, + 0.03662688285112381, + 0.07772843539714813, + 0.004823461640626192, + 0.01960807852447033, + -0.002831230405718088, + -0.04414331540465355, + 0.031850557774305344, + 0.043137770146131516, + 0.024434681981801987, + 0.0001597673399373889, + -0.04406789690256119, + 0.05072961747646332, + -0.007390737067908049, + -0.021455762907862663, + 0.05565677583217621, + 0.06525970250368118, + -0.023177754133939743, + 0.04044794663786888, + 0.02017369493842125, + -0.04766271263360977, + -0.011984809301793575, + 0.04296180233359337, + -0.05284125730395317, + -0.07410848140716553, + 0.08295725286006927, + 0.0346912145614624, + 0.0248117595911026, + -0.02014855667948723, + 0.029512671753764153, + -0.043690819293260574, + -0.05942755937576294, + 0.033333733677864075, + -0.09834205359220505, + 0.020261680707335472, + -0.014454673044383526, + 0.003959323279559612, + -0.07541568577289581, + -0.011469468474388123, + 0.08758275210857391, + -0.02599327266216278, + 0.05030226334929466, + 0.016352634876966476, + 0.02134263888001442, + -0.059578392654657364, + -0.023026922717690468, + -0.016038402915000916, + -0.042006537318229675, + -0.06008116155862808, + -0.07415875792503357, + 0.012638411484658718, + -0.021707147359848022, + 0.0014454672345891595, + -0.026018410921096802, + 0.02046278864145279, + -0.04731077328324318, + 0.07878424972295761, + -0.06611441820859909, + 0.014844320714473724, + 0.0066931420005857944, + 0.06224307790398598, + 0.01055191084742546, + -0.024346696212887764, + -0.04871853068470955, + 0.08753246814012527, + 0.03343428671360016, + -0.053494859486818314, + 0.023605110123753548, + -0.03813519701361656, + -0.0654105395078659, + 0.006102385930716991, + 0.06887965649366379, + 0.04620467498898506, + -0.049472689628601074, + -0.006957096979022026, + 0.10688916593790054, + -0.03813519701361656, + -0.05912589654326439, + -0.010790727101266384, + 0.03655146807432175, + -0.07772843539714813, + 0.06495804339647293, + 0.03175000473856926, + 0.04077474772930145, + 0.03750673308968544, + -0.031020985916256905, + 0.09200713783502579, + -0.11895567178726196, + 0.04434442147612572, + -0.04122724011540413, + -0.01700623705983162, + 0.0491458885371685, + 0.004528083372861147, + 0.006328633055090904, + -0.027225062251091003, + 0.018916767090559006, + 0.042308200150728226, + -0.03494260087609291, + -0.0005609041545540094, + 0.037079378962516785, + 0.013763362541794777, + 0.056410931050777435, + 0.07249961048364639, + 0.0727510005235672, + 0.05364568904042244, + 0.010859858244657516, + -0.0782814770936966, + -0.06943270564079285, + -0.015648754313588142, + 0.0041824281215667725, + -0.026194380596280098, + -0.045752182602882385, + -0.029336702078580856, + -0.02823060378432274, + 0.02767755649983883, + -0.04195626080036163, + 0.06546081602573395, + 0.0018885344034060836, + 0.036501191556453705, + 0.07803009450435638, + 0.044847194105386734, + -0.0368531309068203, + -0.04180542752146721, + 0.0380597822368145, + 0.011167805641889572, + 0.06737134605646133, + -0.01757185533642769, + -0.00045485084410756826, + 0.01906759850680828, + 0.012544142082333565, + 0.06078504025936127, + -0.04477177932858467, + -0.020990699529647827, + -0.042308200150728226, + 0.05072961747646332, + 0.025503071025013924, + -0.0025609908625483513, + 0.027551863342523575, + 0.04869339242577553, + 0.03843685984611511, + -0.04967379942536354, + 0.07476208359003067, + 0.010991835966706276, + -0.06591331213712692, + -0.0363755002617836, + 0.022360751405358315, + -0.030744461342692375, + 0.026923399418592453, + -0.05279098078608513, + -0.016088679432868958, + -0.008572249673306942, + -0.048944778740406036, + -0.0727510005235672, + -0.027225062251091003, + -0.018313441425561905, + -0.03280582278966904, + 0.06234363093972206, + 0.07109185308218002, + -0.029613224789500237, + 0.05399763211607933, + -0.04763757437467575, + 0.02596813440322876, + -0.04670744761824608, + 0.011494607664644718, + 0.024007325991988182, + -0.05434957146644592, + -0.004817177075892687, + 0.07390736788511276, + -0.0363755002617836, + -0.0855213850736618, + -0.02419586479663849, + -0.0009819751139730215, + -0.007177059538662434, + -0.028356296941637993, + -0.01094155851751566, + 0.045199133455753326, + -0.03428899869322777, + -0.06148892268538475, + 0.030115997418761253, + 0.008119755424559116, + 0.0077049690298736095, + 0.018300872296094894, + 0.0013566967099905014, + -0.023278307169675827, + 0.01699366793036461, + -0.00191367301158607, + -0.019419539719820023, + -0.00034270930336788297, + 0.05626010149717331, + 0.05736619606614113, + -0.013021774590015411, + 0.06641607731580734, + -0.008559680543839931, + 0.03323317691683769, + 0.022385889664292336, + -0.0071142129600048065, + -0.020324526354670525, + 0.031574033200740814, + -0.02712450735270977, + 0.10548140108585358, + 0.008452841080725193, + 0.003927900455892086, + -0.09054909646511078, + -0.04705938696861267, + -0.002466721460223198, + 0.017974071204662323, + 0.01587500236928463, + -0.013964471407234669, + 0.04929671809077263, + 0.06068448722362518, + -0.04366568103432655, + -0.038210611790418625, + 0.012060225009918213, + -0.015648754313588142 + ] + }, + { + "id": "3707a541-8c5e-4829-ab49-82aedd2e0eca", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicolasbryan", + "reviewDate": "2021-07-02T04:09:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6199c621-227c-4180-9500-675948520e65", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "wilsonanthony", + "reviewDate": "2022-03-01T01:50:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "62903b91-fb9f-44de-bfbf-b3c167234460", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "carmen69", + "reviewDate": "2021-06-10T18:36:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5d974465-f6de-4bad-82c2-6e037807d69b", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "ingrammeghan", + "reviewDate": "2022-08-14T20:12:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7f520244-cf5c-499d-8931-74d6de620555", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "mikaylacarter", + "reviewDate": "2021-12-10T23:21:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a84abe4c-e1d3-4098-889d-a3957945ca96", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrismichael", + "reviewDate": "2021-08-05T18:56:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "337a07fc-3241-4af7-9015-341d01f7dbfb", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "xpeters", + "reviewDate": "2022-10-26T23:15:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "19adba14-8543-4566-83e3-3b8c56839546", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "ann00", + "reviewDate": "2022-08-08T11:25:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8c41d5d9-71d4-469c-adc4-5c9761193ee3", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelle10", + "reviewDate": "2022-07-23T10:38:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b454c4ca-4afd-42e7-a028-e72e183fc457", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "lewischristopher", + "reviewDate": "2022-09-10T07:18:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "229faff9-1204-4c5b-bab9-13b564bdd997", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "hcollins", + "reviewDate": "2021-03-30T17:40:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7c4693a0-bd37-47aa-bf2a-10c264bf7cd4", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "angela58", + "reviewDate": "2022-03-11T19:23:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a11c238b-4f51-47c9-a9cc-4f3ce62ac201", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "delgadobethany", + "reviewDate": "2021-12-10T19:35:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "221a96be-a7ff-4929-83a8-64905b059ddf", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnsontimothy", + "reviewDate": "2022-05-06T08:51:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b1b88090-cd2c-4fc0-a263-5bb3ab303b42", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "jgilbert", + "reviewDate": "2022-06-14T21:57:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6e3c560d-d14c-4807-888e-6d6a67c50e1f", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "andersonethan", + "reviewDate": "2022-10-11T18:45:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4e921edb-f0f7-4be8-bbee-c1420cb55dae", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "james44", + "reviewDate": "2021-12-13T05:36:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b3ace4da-9206-4d4b-9c1f-89b83fdc6b4f", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "james08", + "reviewDate": "2022-03-23T03:09:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bed78ddc-5465-434e-bf49-d9c3112cf4ea", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "uramirez", + "reviewDate": "2021-01-20T07:20:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "45db596f-cd39-490e-a40b-cd0eef8e1694", + "productId": "b290a185-b16c-4645-a118-b4b93b20ddf0", + "category": "Electronics", + "docType": "customerRating", + "userName": "anthony53", + "reviewDate": "2021-05-19T21:22:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Black)", + "description": "This Awesome Stand + (Black) is a powerful, high output stand that makes working at your desk the whole effort of a single day. Featuring a deep purple shine to create high contrast colors and a subtle metallic shimmer (which is good) the stand is also great for the job or any job. The solid metal construction is ideal for making a stand with up to two hands.\n\n", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-08-25T15:15:01", + "price": 684.56, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-03-02T20:40:06", + "newPrice": 680.65 + }, + { + "priceDate": "2022-10-11T20:40:06", + "newPrice": 700.93 + }, + { + "priceDate": "2023-09-24T20:40:06", + "newPrice": 684.56 + } + ], + "descriptionVector": [ + -0.021456317976117134, + -0.018840717151761055, + -0.047080811113119125, + -0.029708748683333397, + 0.013273824006319046, + -0.012098901905119419, + -0.012056940235197544, + 0.035443488508462906, + -0.046633221209049225, + 0.027442825958132744, + 0.0333733856678009, + 0.029037363827228546, + 0.03675828129053116, + -0.05099721997976303, + 0.029429003596305847, + 0.009168589487671852, + -0.03631069138646126, + 0.03874446079134941, + 0.01553974486887455, + -0.0035492442548274994, + 0.08465035259723663, + -0.10837259143590927, + -0.06892877072095871, + 0.01216883771121502, + -0.09779828786849976, + -0.013959195464849472, + 0.048395607620477676, + -0.010231614112854004, + -0.020784933120012283, + 0.10171469300985336, + -0.005017897114157677, + 0.008916820399463177, + 0.026295877993106842, + 0.04422742873430252, + -0.039807483553886414, + 0.016728654503822327, + -0.0163230262696743, + 0.009588204324245453, + -0.002372573595494032, + 0.03295377269387245, + 0.015693604946136475, + 0.0167706161737442, + 0.022211624309420586, + 0.01612720638513565, + 0.05407439544796944, + 0.00708799809217453, + -0.013189900666475296, + -0.02102271467447281, + 0.018477050587534904, + -0.020701009780168533, + 0.05175252631306648, + 0.046073734760284424, + 0.008252429775893688, + -0.020113550126552582, + 0.03029620833694935, + -0.009063685312867165, + 0.05852231755852699, + 0.12163242697715759, + 0.05116506665945053, + -0.05189239978790283, + 0.006066934671252966, + 0.03941584378480911, + -0.015204053372144699, + 0.01374239381402731, + 0.024911148473620415, + 0.010672209784388542, + 0.02737289108335972, + -0.059529393911361694, + -0.009196563623845577, + 0.027358902618288994, + -0.026309866458177567, + 0.014196977019309998, + 0.0306598749011755, + 0.04957052692770958, + -0.0007972686435095966, + -0.004500371869653463, + 0.03922002390027046, + 0.017525922507047653, + 0.04218530282378197, + 0.0028935957234352827, + 0.08951788395643234, + -0.01069319061934948, + -0.04892711713910103, + -0.022575290873646736, + 0.07832814753055573, + -0.008721000514924526, + -0.012840221635997295, + -0.09399377554655075, + -0.027079159393906593, + 0.053906552493572235, + -0.07116671651601791, + -0.0004237675166223198, + 0.040506843477487564, + -0.001343642477877438, + 0.008224455639719963, + -0.020001651719212532, + -0.029904568567872047, + 0.05555703863501549, + 0.03272997587919235, + -0.023512432351708412, + 0.07027153670787811, + -0.02832401730120182, + -0.05038178339600563, + -0.01560968067497015, + -0.012980093248188496, + 0.0659634917974472, + 0.053654782474040985, + 0.00946931354701519, + -0.0035667282063513994, + -0.15688009560108185, + 0.04959850385785103, + -0.00305269961245358, + 0.053375039249658585, + 0.03930394724011421, + 0.02478526346385479, + 0.07631399482488632, + -0.004213634878396988, + -0.06937635689973831, + 0.012189818546175957, + -0.09539249539375305, + 0.010196646675467491, + 0.003491547191515565, + 0.005892095156013966, + 0.07133456319570541, + 0.026561634615063667, + -0.002867369679734111, + -0.060984060168266296, + -0.010217627510428429, + 0.039639636874198914, + -0.007101985160261393, + -0.046353477984666824, + 0.05785093083977699, + 0.0163230262696743, + -0.006619427818804979, + -0.040842533111572266, + 0.08487414568662643, + 0.03905217722058296, + 0.0650683119893074, + -0.026631571352481842, + 0.017246179282665253, + -0.014700515195727348, + -0.040255073457956314, + 0.017078334465622902, + -0.0024932129308581352, + -0.021484293043613434, + 0.01595935970544815, + -0.0320306196808815, + 0.05080140009522438, + 0.0018463063752278686, + -0.02610005810856819, + 0.047668274492025375, + -0.06764195114374161, + -0.0641171857714653, + -0.04968242719769478, + 0.04590589180588722, + -0.04397565871477127, + -0.08744778484106064, + -0.05477375537157059, + -0.01549778413027525, + 0.04366794228553772, + -0.0033271978609263897, + 0.01601530984044075, + -0.03790522739291191, + 0.041961509734392166, + -0.006444588303565979, + 0.0022449407260864973, + 0.09914105385541916, + 0.07525096833705902, + -0.046857018023729324, + 0.047360554337501526, + 0.03913610056042671, + 0.023386547341942787, + -0.019987665116786957, + -0.05757118761539459, + -0.024659380316734314, + 0.009798011742532253, + 0.08112557977437973, + -0.033848948776721954, + 0.052703652530908585, + -0.04996217042207718, + -0.04417148232460022, + 0.02481323853135109, + -0.0160432830452919, + 0.011993997730314732, + 0.026967262849211693, + 0.019456151872873306, + 0.02598816156387329, + 0.024379637092351913, + 0.013273824006319046, + -0.01553974486887455, + -0.07094292342662811, + -0.063054159283638, + 0.033401358872652054, + 0.004923483822494745, + 0.03815699741244316, + -0.004790605511516333, + -0.03896825388073921, + -0.012028966099023819, + 0.0028900988399982452, + -0.003989839926362038, + -0.059417497366666794, + 0.07810435444116592, + 0.04238112270832062, + 0.009322448633611202, + 0.0639493390917778, + -0.03796117752790451, + 0.03824092075228691, + 0.015805501490831375, + 0.04445122554898262, + -0.0052137174643576145, + 0.017651807516813278, + -0.009098653681576252, + -0.07267732918262482, + 0.015455822460353374, + -0.0060144830495119095, + 0.00419265404343605, + 0.03768143430352211, + 0.007035546004772186, + -0.011560395359992981, + -0.040982406586408615, + 0.05186442285776138, + -0.0028883505146950483, + -0.053263142704963684, + -0.01637897454202175, + -0.03272997587919235, + -0.04543032497167587, + -0.034492358565330505, + 0.019064512103796005, + 0.05211619287729263, + 0.05178049951791763, + -0.08023039996623993, + -0.023176738992333412, + -0.001459036604501307, + 0.014686527661979198, + -0.04800396412611008, + 0.040003303438425064, + -0.0634457990527153, + -0.065515898168087, + -0.03745764121413231, + -0.01519006583839655, + 0.002458245027810335, + -0.00889583956450224, + -0.07267732918262482, + 0.020631074905395508, + 0.003720587119460106, + -0.023456482216715813, + 0.08409085869789124, + -0.10384074598550797, + -0.04308048263192177, + -0.053235165774822235, + -0.04845155403017998, + 0.047556374222040176, + 0.005374569911509752, + 0.041262149810791016, + 0.07592235505580902, + 0.0656837448477745, + 0.0664670318365097, + -0.0047206697054207325, + 0.009630165994167328, + -0.028561800718307495, + -0.034464385360479355, + 0.02442159689962864, + -0.013189900666475296, + 0.040506843477487564, + -0.028617748990654945, + 0.00646906578913331, + 0.052871499210596085, + 0.046661198139190674, + 0.006769789848476648, + 0.05508147180080414, + -0.022155676037073135, + -0.010112723335623741, + 0.023960020393133163, + -0.041206199675798416, + -0.027890415862202644, + 0.05566893517971039, + 0.013427682220935822, + 0.05161265656352043, + -0.040842533111572266, + -0.02306484244763851, + 0.05757118761539459, + -0.0006517146830447018, + 0.08067799359560013, + 0.034800078719854355, + 0.03779333084821701, + -0.09807803481817245, + 0.10887612402439117, + -0.08470629900693893, + 0.014630579389631748, + -0.016952449455857277, + -0.013875272125005722, + -0.04319237917661667, + 0.07060723006725311, + 0.04520653188228607, + 0.07010369002819061, + -0.01135058794170618, + -0.023428509011864662, + 0.0004349135560914874, + 0.015721578150987625, + -0.024659380316734314, + 0.0652921050786972, + 0.019791845232248306, + -0.023036867380142212, + -0.047528401017189026, + -0.040087226778268814, + 0.1341649293899536, + -0.05060558021068573, + 0.035275641828775406, + -0.03801712766289711, + 0.00026510056341066957, + 0.07525096833705902, + 0.02818414568901062, + -0.053430985659360886, + -0.018784768879413605, + 0.04548627510666847, + -0.05485767871141434, + 0.0333174392580986, + 0.0025456647854298353, + -0.02720504440367222, + 0.05261973291635513, + -0.03821294754743576, + -0.05670398473739624, + -0.03161100298166275, + 0.07032749056816101, + 0.04912294074892998, + -0.020393293350934982, + -0.0034425919875502586, + -0.023694265633821487, + -0.041877586394548416, + -0.04559817165136337, + -0.028673697263002396, + 0.020281394943594933, + 0.04833965748548508, + -0.08218860626220703, + 0.018281230702996254, + -0.05829852074384689, + -0.00401781452819705, + 0.005996998865157366, + 0.0036121865268796682, + 0.018281230702996254, + 0.03639461472630501, + 0.027442825958132744, + -0.002019397681578994, + -0.046912964433431625, + 0.04285668581724167, + -0.09690310806035995, + 0.05077342316508293, + -0.039891406893730164, + 0.05586475506424904, + 0.022575290873646736, + 0.0016111470758914948, + -0.053458962589502335, + 0.004507365170866251, + -0.007616013754159212, + 0.04951458051800728, + -0.015889424830675125, + 0.004287067335098982, + -0.07306897640228271, + 0.01416200865060091, + -0.03919204697012901, + -0.025610506534576416, + -0.03278592601418495, + 0.0610959567129612, + 0.03074379824101925, + 0.03894028067588806, + -0.04193353280425072, + -0.011357581242918968, + 0.018924640491604805, + -0.02107866480946541, + 0.029484953731298447, + -0.040646713227033615, + -0.018113384023308754, + 0.015511770732700825, + 0.0060144830495119095, + -0.034828051924705505, + 0.024519508704543114, + -0.008280403912067413, + 0.04302453249692917, + -0.01084704976528883, + 0.04190555959939957, + -0.07167025655508041, + 0.09751854836940765, + 0.019064512103796005, + 0.009895922616124153, + 0.08828701078891754, + -0.033569205552339554, + -0.059697240591049194, + 0.06747410446405411, + 0.026897326111793518, + -0.029960516840219498, + -0.09253910928964615, + -0.047276630997657776, + 0.0040038274601101875, + 0.027974339202046394, + 0.059249650686979294, + -0.052395936101675034, + 0.0651802122592926, + 0.06904067099094391, + -0.007077507674694061, + 0.03860458731651306, + 0.028701672330498695, + 0.021148599684238434, + 0.040786586701869965, + -0.0031156418845057487, + -0.0008020767709240317, + -0.026561634615063667, + -0.009371403604745865, + 0.05634031817317009, + -0.016253091394901276, + -0.05155670642852783, + 0.014008150435984135, + -0.02253332920372486, + -0.0325341559946537, + 0.05664803460240364, + 0.10171469300985336, + 0.05536121502518654, + 0.10428833216428757, + 0.000320612161885947, + 0.05706765130162239, + -0.10943561047315598, + 0.06976800411939621, + -0.03161100298166275, + -0.011763209477066994, + -0.03119138814508915, + -0.08207671344280243, + 0.046996887773275375, + 0.014252925291657448, + -0.013805336318910122, + -0.05071747675538063, + -0.03790522739291191, + 0.060536470264196396, + -0.06999179720878601, + -0.002769459504634142, + 0.046996887773275375, + -0.012063933536410332, + 0.006448084954172373, + 0.047975990921258926, + 0.01919039711356163, + -0.035023871809244156, + 0.0635017454624176, + -0.0309675931930542, + -0.07989471405744553, + 0.059305597096681595, + 0.016784602776169777, + -0.09388188272714615, + -0.03272997587919235, + -0.07228568941354752, + 0.04590589180588722, + 0.047444477677345276, + 0.04176568612456322, + -0.07648184150457382, + -0.07553071528673172, + -0.08593717217445374, + 0.006203309632837772, + 0.040227100253105164, + -0.030827721580863, + -0.00607043132185936, + 0.04828370735049248, + -0.026030121371150017, + 0.029093312099575996, + 0.0066159311681985855, + 0.08879055082798004, + 0.040366970002651215, + -0.05790688097476959, + 0.006311709992587566, + -0.014532669447362423, + -0.05653613805770874, + 0.03046405501663685, + -0.004580798093229532, + 0.040898483246564865, + -0.07245353609323502, + -0.05510944873094559, + -0.03824092075228691, + 0.007434180472046137, + 0.02149827964603901, + -0.05779498443007469, + -0.010434428229928017, + -0.05880206078290939, + -0.035471461713314056, + -0.0055144415237009525, + 0.03854863718152046, + -0.008588122203946114, + -0.08196481317281723, + -0.014308874495327473, + -0.03189074620604515, + -0.041262149810791016, + -0.00532561494037509, + -0.03857661411166191, + -0.026519672945141792, + 0.012539497576653957, + 0.02559651993215084, + 0.0672503113746643, + 0.022603265941143036, + -0.035191718488931656, + 0.0026837880723178387, + -0.011896087788045406, + -0.0021819984540343285, + 0.060984060168266296, + 0.01657479628920555, + 0.05046570673584938, + 2.155444599338807e-05, + -0.029568875208497047, + 0.011889093555510044, + 0.015204053372144699, + 0.07385225594043732, + 0.021736061200499535, + -0.04909496381878853, + 0.008637077175080776, + -0.02565246820449829, + -0.07116671651601791, + 0.041290123015642166, + -0.027442825958132744 + ] + }, + { + "id": "bec2bd33-c55d-4a8d-9415-87a1d8cfb746", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "btucker", + "reviewDate": "2022-07-20T15:52:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ab04752d-3eb9-4347-b955-63b10d01019f", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "aburns", + "reviewDate": "2021-08-24T10:38:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3df9d083-5fe7-40dc-8304-e1609e8fde83", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "foxmatthew", + "reviewDate": "2021-07-06T21:43:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "64ca3c46-7532-4235-9818-710b145134d6", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "joseph64", + "reviewDate": "2021-04-08T04:16:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2733fed9-6013-4a40-8a84-f520518b18de", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "ricebruce", + "reviewDate": "2021-03-25T11:05:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f5493a3c-5d2c-46a0-a4df-931f332e95ca", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "erica40", + "reviewDate": "2021-03-02T20:40:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "55b4b086-c79c-4f65-8c6c-f3726b6f67e1", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "sergio50", + "reviewDate": "2022-06-17T10:06:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ba24c734-e2d2-440b-adc3-6ac20ac8a9b4", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "schmidttodd", + "reviewDate": "2021-04-06T16:21:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3b908c31-fb48-4b67-aedf-fd193573cda0", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "blackwellkaitlyn", + "reviewDate": "2021-07-13T00:45:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2ff50a8b-d549-4425-a588-f92a59166dbd", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "trandana", + "reviewDate": "2022-07-21T10:28:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "52ae9f3f-aa87-4566-9fbd-578abc9ed464", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "medinascott", + "reviewDate": "2021-11-21T12:43:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "03b6809f-0938-4f15-9f6f-cd9c72f9fdb6", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "woodsamber", + "reviewDate": "2022-10-12T02:15:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ef088329-d896-42f5-b1e6-00f585f3e106", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "dmunoz", + "reviewDate": "2021-08-08T09:54:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "58281082-759d-4879-8b79-7ac247ab9f4c", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "mason04", + "reviewDate": "2021-06-07T05:26:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7d028c3c-cd6b-4637-85ef-983d317e6f21", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "hendersondaniel", + "reviewDate": "2022-09-10T19:00:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f3cc5426-22bb-42e7-b4c0-f00edf21d3bd", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomas70", + "reviewDate": "2021-10-05T00:32:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d7549a3e-a06c-4f8b-a855-83bab69dff04", + "productId": "5fd58a6b-cd09-4afe-8100-66cb9516ddc5", + "category": "Accessory", + "docType": "customerRating", + "userName": "rcox", + "reviewDate": "2022-08-11T10:38:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Ultra (Black)", + "description": "This Premium Stand Ultra (Black) is rated 4.9 out of 5 by 5.\n\nRated 2 out of 5 by rj from Poor quality for a low price! The product seems to be not good quality when you only look at some of the colors. It was a shame because this is the only stand and I will buy a replacement. Only 5/6 of the", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-05-23T13:53:31", + "price": 199.35, + "stock": 70, + "priceHistory": [ + { + "priceDate": "2021-01-10T11:56:17", + "newPrice": 181.83 + }, + { + "priceDate": "2022-01-01T11:56:17", + "newPrice": 190.41 + }, + { + "priceDate": "2022-12-23T11:56:17", + "newPrice": 218.02 + }, + { + "priceDate": "2025-08-15T11:56:17", + "newPrice": 199.35 + } + ], + "descriptionVector": [ + -0.023008644580841064, + 0.0032309771049767733, + -0.01742115616798401, + 0.01880667172372341, + 0.003296277951449156, + 0.024257879704236984, + -0.029981650412082672, + 0.03436532989144325, + -0.02932296320796013, + 0.008273345418274403, + 0.032979816198349, + 0.015422378666698933, + -0.03486502543091774, + -0.03654581308364868, + 0.011328293941915035, + -0.002296889666467905, + 0.006427884101867676, + -0.033752068877220154, + 0.03152615949511528, + 0.009051278233528137, + 0.04279199242591858, + -0.03634139522910118, + -0.04467720165848732, + 0.039907392114400864, + -0.07227394729852676, + -0.03620511293411255, + 0.052240755409002304, + -0.0005312799476087093, + 0.05900933966040611, + 0.008057568222284317, + 0.0003740608226507902, + -0.0003740608226507902, + 0.02014676108956337, + 0.040225379168987274, + -0.0009709966252557933, + 0.05355812981724739, + 0.0052042012102901936, + -0.009903029538691044, + 0.011101160198450089, + 0.10602601617574692, + -0.002653205767273903, + 0.038476452231407166, + 0.05155935138463974, + -0.04049794003367424, + 0.019896913319826126, + -0.07427272200584412, + 0.01174281258136034, + 0.0006963068153709173, + 0.00230824644677341, + 0.00033910354250110686, + 0.012435570359230042, + 0.03854459151625633, + -0.030867472290992737, + -0.024144314229488373, + 0.031389880925416946, + 0.003080500988289714, + 0.012378787621855736, + 0.16826064884662628, + 0.04678954556584358, + -0.023735472932457924, + -0.023508340120315552, + -0.0108058862388134, + 0.018216123804450035, + -0.002485694596543908, + 0.04345067963004112, + 0.013855156488716602, + -0.018852097913622856, + -0.08344892412424088, + -0.009267055429518223, + 0.004182099364697933, + 0.010885383002460003, + 0.03516029939055443, + 0.058509644120931625, + 0.06300689280033112, + 0.06109897047281265, + 0.02306542918086052, + 0.050877951085567474, + 0.037318069487810135, + -0.0162854865193367, + 0.0751812607049942, + 0.04447278007864952, + 0.03207128122448921, + -0.00830741599202156, + -0.007058179937303066, + 0.045040614902973175, + 0.028732415288686752, + 0.011969946324825287, + -0.07731631398200989, + -0.07068400830030441, + 0.07608979195356369, + -0.06232549250125885, + 0.01278762798756361, + 0.07727088779211044, + -0.05623830854892731, + 0.034183625131845474, + 0.028664274141192436, + -0.038794439285993576, + 0.04965142905712128, + -0.04308726638555527, + -0.0024927924387156963, + 0.07304619997739792, + -0.014604697935283184, + -0.03588712587952614, + 0.012446927838027477, + 0.03493316471576691, + 0.010334583930671215, + 0.02316763810813427, + -0.018659034743905067, + 0.0021620290353894234, + -0.07181967794895172, + 0.029913509264588356, + -0.035955265164375305, + 0.0097553925588727, + -0.04992398992180824, + -0.038158465176820755, + 0.024030746892094612, + -0.030504057183861732, + -0.05101423338055611, + 0.057555682957172394, + -0.06623218953609467, + -0.01248099748045206, + -0.041792601346969604, + 0.011867736466228962, + 0.0371817871928215, + 0.0755900964140892, + 0.05978159233927727, + -0.04563116282224655, + 0.045563023537397385, + 0.07336419075727463, + -0.08385776728391647, + -0.01434349361807108, + 0.012038086540997028, + 0.04883374646306038, + -0.0066379825584590435, + -0.0780431404709816, + 0.05455751717090607, + -0.02182755060493946, + 0.015320168808102608, + -0.010646892711520195, + -0.020828161388635635, + 0.005184326786547899, + -0.046289850026369095, + 0.0707748681306839, + 0.041815318167209625, + -0.015308812260627747, + -0.018556823953986168, + -0.033252377063035965, + 0.030663050711154938, + 0.008261988870799541, + 0.022474881261587143, + 0.004423429258167744, + -0.1013016328215599, + -0.04656241089105606, + -0.0695483461022377, + 0.028550706803798676, + 0.010760460048913956, + -0.040134526789188385, + 0.004639205988496542, + -0.0844937413930893, + 0.0715925469994545, + -0.028982261195778847, + 0.03872629627585411, + 0.019170084968209267, + -0.03227569907903671, + 0.058191657066345215, + -0.0014706908259540796, + 0.01911330223083496, + 0.0546937994658947, + -0.033047955483198166, + 0.03413819521665573, + 0.05619288235902786, + -0.04479076713323593, + -0.014025506563484669, + -0.042837418615818024, + 0.013537169434130192, + 0.051105085760354996, + 0.04769808053970337, + -0.01534288190305233, + 0.051195938140153885, + -0.02639293670654297, + 0.023939892649650574, + 0.03443346917629242, + -0.05174105986952782, + -0.030254211276769638, + 0.04204244911670685, + -0.03652309998869896, + 0.03706822171807289, + 0.07581723481416702, + -0.004724381025880575, + 0.011458896100521088, + -0.030345063656568527, + 0.015376952476799488, + -0.014014150016009808, + -0.011021663434803486, + -0.005022494122385979, + 0.014127717353403568, + -0.012878481298685074, + 0.003722153604030609, + -0.04345067963004112, + 0.0035518035292625427, + -0.03098103776574135, + 0.09049007296562195, + 0.07931509613990784, + -0.028755128383636475, + 0.0215095616877079, + -0.05660172179341316, + 0.026324797421693802, + 0.10039310157299042, + -0.004301344510167837, + 0.042451292276382446, + -0.005664146970957518, + -0.033025242388248444, + 0.0025325408205389977, + 0.018534110859036446, + 0.01818205416202545, + 0.07300077378749847, + 0.006802654825150967, + 0.013571239076554775, + -0.052240755409002304, + -0.09212543070316315, + 0.06287061423063278, + -0.03883986547589302, + -0.02359919250011444, + -0.0643242672085762, + -0.02943652868270874, + -0.05582946538925171, + -0.019999124109745026, + -0.021691270172595978, + -0.0001462173240724951, + 0.016853321343660355, + -0.030208783224225044, + -0.0699571818113327, + -0.047652654349803925, + -0.026642784476280212, + -0.0036909228656440973, + 0.07754345238208771, + -0.08503886312246323, + -0.049742281436920166, + -0.06305231899023056, + 0.01981741562485695, + 0.002910150680691004, + -0.012583207339048386, + -0.027324184775352478, + 0.026143090799450874, + -0.023144925013184547, + -0.036295969039201736, + 0.09253427386283875, + -0.11874550580978394, + -0.07513583451509476, + -0.022497594356536865, + -0.022486237809062004, + -0.051286790519952774, + -0.010425437241792679, + 0.0828583762049675, + 0.06641389429569244, + 0.034819599241018295, + 0.0912623256444931, + 0.020283039659261703, + -0.012356073595583439, + -0.03661395609378815, + -0.000717955466825515, + 0.07218309491872787, + -0.0396348312497139, + 0.025120988488197327, + -0.010033631697297096, + 0.04276927933096886, + 0.04310997948050499, + 0.00139545276761055, + 0.01023805234581232, + 0.08572026342153549, + -0.05310386046767235, + -0.024144314229488373, + 0.031162746250629425, + -0.047970641404390335, + 0.03254825994372368, + 0.05959988757967949, + -0.023962607607245445, + 0.06627761572599411, + -0.0046250103041529655, + -0.018818028271198273, + 0.06682273745536804, + 0.06005415320396423, + -0.0025438976008445024, + 0.02337205968797207, + 0.04747094586491585, + -0.0687306597828865, + 0.060599274933338165, + -0.009454441256821156, + 0.02546168863773346, + -0.02755131945014, + -0.011339650489389896, + 0.0029669341165572405, + -0.0005437013460323215, + -0.051105085760354996, + -0.0002271337143611163, + -0.011277188546955585, + -0.022043326869606972, + 0.042315009981393814, + 0.0069048646837472916, + -0.03316152095794678, + 0.06564164161682129, + 0.06863980740308762, + -0.06105354055762291, + -0.05564776062965393, + 0.03579627349972725, + 0.057464830577373505, + -0.05178648605942726, + -0.03161701187491417, + -0.0379994697868824, + 0.014468417502939701, + 0.03890800476074219, + 0.009999562054872513, + -0.051513925194740295, + -0.03613697364926338, + 0.05196819454431534, + -0.0237127598375082, + -0.012503710575401783, + 0.039521265774965286, + 0.023213066160678864, + 0.002656044904142618, + -0.07931509613990784, + -0.05687428265810013, + 0.02337205968797207, + 0.07990563660860062, + 0.03829474374651909, + -0.05737397447228432, + -0.024553153663873672, + -0.011992660351097584, + -0.05269502103328705, + 0.021748052909970284, + 0.001134958816692233, + 0.015888003632426262, + 0.031230885535478592, + 0.017262162640690804, + 0.0699571818113327, + 0.015013538300991058, + -0.0111636221408844, + -0.05010569840669632, + 0.06087183579802513, + 0.04247400537133217, + 0.026756351813673973, + 0.042632997035980225, + 0.004911766387522221, + -0.06650475412607193, + 0.01174281258136034, + -0.11238576471805573, + 0.05655629560351372, + -0.07495412230491638, + 0.04426836222410202, + 0.03068576380610466, + 0.0011825149413198233, + -0.03650038689374924, + -0.013332748785614967, + 0.021793479099869728, + 0.053194716572761536, + 0.01284441165626049, + 0.04029352217912674, + -0.02975451573729515, + -0.013900583609938622, + -0.033888351172208786, + 0.0688215121626854, + -0.008971781469881535, + 0.01597885601222515, + 0.0438368059694767, + 0.05269502103328705, + 0.03954397886991501, + -0.01734165847301483, + 0.04747094586491585, + -0.05437581241130829, + 0.020214900374412537, + -0.03924870491027832, + -0.058282509446144104, + -0.005556258372962475, + 0.03602340817451477, + -0.07686205208301544, + 0.05355812981724739, + -0.0021279589273035526, + 0.08458459377288818, + 0.0017418316565454006, + -0.009471476078033447, + -0.1085699126124382, + 0.03947583958506584, + -0.05678342655301094, + 0.043586958199739456, + 0.0530584342777729, + 0.04310997948050499, + -0.025279982015490532, + 0.07309162616729736, + -0.0035801951307803392, + -0.019249582663178444, + -0.04251943156123161, + -0.05251331254839897, + 0.024371447041630745, + 0.06455139815807343, + 0.04127019643783569, + -0.05623830854892731, + 0.04258757084608078, + 0.06745871156454086, + -0.04165632277727127, + 0.013026118278503418, + 0.0007630272884853184, + 0.04113391414284706, + -0.0156722255051136, + 0.007302348967641592, + 0.04063422232866287, + -0.06686816364526749, + 0.04856118932366371, + 0.07209224253892899, + -0.030413204804062843, + -0.08944525569677353, + -0.017250806093215942, + -0.03933955729007721, + -0.01794356293976307, + 0.07540839165449142, + 0.029618235304951668, + 0.08185899257659912, + 0.09857603162527084, + -0.02496199496090412, + 0.07300077378749847, + -0.03661395609378815, + 0.0848117247223854, + -0.00555909750983119, + -0.014366207644343376, + -0.004576744511723518, + -0.019669778645038605, + 0.08322179317474365, + -0.0720013901591301, + -0.027165191248059273, + -0.09939371049404144, + -0.02725604549050331, + 0.05487550422549248, + -0.12883023917675018, + -0.017046384513378143, + -0.004687471780925989, + 0.016092423349618912, + 0.04433650150895119, + 0.004951514769345522, + 0.025211842730641365, + 0.010925131849944592, + 0.0071036070585250854, + -0.012798984535038471, + 0.005272341426461935, + 0.08131387084722519, + 0.05446666479110718, + -0.07386388629674911, + -0.0071603902615606785, + -0.03809032216668129, + 0.030504057183861732, + 0.010266443714499474, + 0.06691358983516693, + -0.004590940196067095, + -0.0014891454484313726, + -0.030435917899012566, + -0.010868348181247711, + 0.04635798931121826, + -0.015308812260627747, + 0.047016680240631104, + 0.0671861544251442, + -0.015524589456617832, + 0.008790074847638607, + -0.05619288235902786, + 0.09385164827108383, + 0.06541451066732407, + 0.02254302054643631, + -0.04061150923371315, + -0.02013540454208851, + -0.03681837394833565, + 0.019896913319826126, + 0.0005106959724798799, + 0.04919716343283653, + -0.04127019643783569, + -0.07168339937925339, + -0.0016452998388558626, + -0.03550099954009056, + 0.032934390008449554, + 0.0008148421766236424, + -0.03068576380610466, + -0.023462912067770958, + -0.044313788414001465, + -0.01538830902427435, + -0.014979468658566475, + 0.05006026849150658, + -0.04674411937594414, + 0.02242945320904255, + 0.010947844944894314, + -0.028891408815979958, + -0.051423072814941406, + -0.007694154512137175, + 0.004304183647036552, + 0.017920849844813347, + -0.034819599241018295, + 0.09439677000045776, + 0.008477766066789627, + -0.06055384874343872, + -0.023735472932457924, + -0.027505893260240555, + 0.010357297025620937, + -0.0363641083240509, + 0.011935876682400703, + 0.03602340817451477, + 0.08308551460504532, + -0.02078273519873619, + -0.003977679181843996, + 0.04887917637825012, + 0.033774781972169876, + -0.03191228583455086, + -0.026688210666179657, + 0.04633527621626854, + -0.024189740419387817, + -0.00893203355371952, + 0.11765526235103607, + -0.011146587319672108 + ] + }, + { + "id": "806d9266-0ad1-4c9a-ba7a-d08cd91d7cd2", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasmitchell", + "reviewDate": "2021-01-10T11:56:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bc0ccbf0-c475-4311-b897-02141bf33234", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "ashleyrodriguez", + "reviewDate": "2021-09-20T11:05:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8815b324-c7df-4b86-a707-fe5a1a28a9f1", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "perry80", + "reviewDate": "2022-03-06T11:32:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aebf1ce2-8a4c-4cff-a385-54f015206f0e", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "patricia36", + "reviewDate": "2021-07-29T21:54:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f9fa8856-05ca-4e33-bfdc-cd4e80462fde", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "robertsemily", + "reviewDate": "2021-10-24T13:54:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "976bddce-2ede-4d30-95e3-76bb1a330f0a", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "tracyking", + "reviewDate": "2021-11-26T09:00:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "221ee045-5291-41b5-9769-a3223044b9f8", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "rramirez", + "reviewDate": "2022-07-20T09:11:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a3e24c6-048d-4864-b686-88dfcb495c7e", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "lisagreene", + "reviewDate": "2021-10-27T08:52:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a68d3108-65ba-40ad-b36a-1ffa74b2cccc", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "randywest", + "reviewDate": "2022-12-23T15:39:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dabdd7ad-1d77-4fc1-9e0c-e2649c132781", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "darren16", + "reviewDate": "2021-03-07T09:05:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f2d2e3d6-04d6-454b-8a75-f92d1540de15", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "qjensen", + "reviewDate": "2022-06-13T16:10:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f33b86f7-4905-40ce-931e-d0b251f9cbad", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "katie29", + "reviewDate": "2022-11-14T00:30:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "57ff2e09-e177-4b0a-9095-d5beb7322b9d", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "molinajacqueline", + "reviewDate": "2021-05-12T10:22:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e57d5988-47fa-4b00-9219-e2b50bcb66e3", + "productId": "2b2454e2-a1da-47c1-8c03-6ef2ddc00c49", + "category": "Accessory", + "docType": "customerRating", + "userName": "brownmichael", + "reviewDate": "2022-12-18T04:13:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "product", + "name": "Awesome TV Super (Gold)", + "description": "This Awesome TV Super (Gold) is an interactive, action game set in a cybernetically connected planet inhabited by a group of human, robotic aliens. You play as a robot named Robot", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-12-22T06:26:36", + "price": 626.09, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-01-13T09:39:38", + "newPrice": 627.75 + }, + { + "priceDate": "2021-12-24T09:39:38", + "newPrice": 577.14 + }, + { + "priceDate": "2022-12-04T09:39:38", + "newPrice": 626.57 + }, + { + "priceDate": "2024-06-20T09:39:38", + "newPrice": 626.09 + } + ], + "descriptionVector": [ + 0.03411513566970825, + -0.03879610821604729, + -0.030426325276494026, + 0.01133355125784874, + 0.012452914379537106, + -0.0035743298940360546, + -0.01210311334580183, + -0.012173074297606945, + 0.029179761186242104, + 0.12292642146348953, + -0.022845184430480003, + 0.0306044053286314, + 0.04215419664978981, + -0.033886175602674484, + 0.09972507506608963, + 0.004248491954058409, + -0.044011324644088745, + 0.06609330326318741, + -0.0011694482527673244, + -0.03335193172097206, + 0.10094620287418365, + 0.013101636432111263, + -0.013343317434191704, + -0.034166015684604645, + -0.03434409573674202, + -0.020797258242964745, + -0.08115382492542267, + 0.01305075641721487, + -0.08537688106298447, + -0.04263756051659584, + 0.0025662672705948353, + -0.034471295773983, + 0.020097656175494194, + 0.04729309305548668, + 0.01836773194372654, + 0.03510729968547821, + 0.004614192992448807, + 0.0436297208070755, + -0.013941158540546894, + -0.057036638259887695, + 0.04968445748090744, + -0.057189278304576874, + -0.042968280613422394, + -0.0022705262526869774, + -0.012090393342077732, + 0.04892125725746155, + 0.0031895488500595093, + -0.0267375148832798, + 0.02139510028064251, + 0.004102211445569992, + -0.0057494561187922955, + 0.030909685418009758, + -0.005231114570051432, + 0.07153747975826263, + 0.02661031484603882, + -0.03454761579632759, + 0.061107050627470016, + -0.004388412460684776, + 0.028340239077806473, + -0.025160230696201324, + 0.009578187018632889, + 0.009845307096838951, + -0.02096261829137802, + 0.014106519520282745, + 0.024791348725557327, + -0.021217018365859985, + -0.013674038462340832, + 0.054492633789777756, + -0.02610151283442974, + 0.013623158447444439, + 0.024969428777694702, + 0.035209059715270996, + -0.09743547439575195, + -0.004296191968023777, + -0.0026950575411319733, + 0.03742234408855438, + 0.08695416152477264, + -0.040780432522296906, + -0.008471543900668621, + -0.0548996739089489, + -0.03833818808197975, + 0.058868322521448135, + 0.012243034318089485, + 0.0021067559719085693, + 0.08547864109277725, + -0.005771716125309467, + -0.005609535612165928, + -0.1604759693145752, + -0.011231791228055954, + -0.006474498193711042, + -0.021980220451951027, + 0.09804603457450867, + -0.09601082652807236, + -0.025847112759947777, + -0.01774444989860058, + 0.04279020056128502, + -0.0007321970188058913, + 0.0016806346829980612, + -0.04072955250740051, + 0.085834801197052, + 0.033326491713523865, + -0.08959992974996567, + -0.028111279010772705, + -0.07331828773021698, + 0.012128554284572601, + -0.010977390222251415, + 0.03024824522435665, + 0.025592710822820663, + 0.06380369514226913, + -0.051134541630744934, + -0.001579669420607388, + 0.030222805216908455, + 0.050905581563711166, + 0.011448032222688198, + 0.03737146407365799, + 0.07286036014556885, + -0.04764925315976143, + -0.03032456524670124, + -0.05362766981124878, + -0.03047720529139042, + -0.013266997411847115, + 0.03553977981209755, + -0.02201838232576847, + -0.024804068729281425, + -0.007981821894645691, + -0.04299372062087059, + -0.061259690672159195, + 0.07657461613416672, + 0.036353860050439835, + 0.08395223319530487, + -0.08853144943714142, + 0.01715932786464691, + 0.0422305166721344, + 0.08781912177801132, + -0.012007713317871094, + 0.01886381208896637, + -0.08710680156946182, + 0.03159656748175621, + 0.0415181964635849, + 0.05215214565396309, + 0.025770792737603188, + 0.042052436619997025, + -0.000837137340568006, + 0.045003484934568405, + -0.031927287578582764, + 0.07311476767063141, + -0.01568380370736122, + -0.02610151283442974, + -0.001709254807792604, + -0.021420540288090706, + 0.06187025085091591, + -0.030528085306286812, + -0.0717409998178482, + -0.029714003205299377, + 0.025923432782292366, + 0.05917360633611679, + -0.08181526511907578, + 0.008834064938127995, + 0.013559557497501373, + 0.10511837154626846, + 0.04098395258188248, + -0.0830363929271698, + -0.09560378640890121, + 0.03721882402896881, + 0.02800951898097992, + -0.039940912276506424, + 0.07957654446363449, + 0.04688604921102524, + -0.016650525853037834, + 0.02546551078557968, + 0.04210331663489342, + -0.028034958988428116, + 0.028696399182081223, + 0.07331828773021698, + 0.0049258335493505, + 0.06558450311422348, + 0.024333428591489792, + -0.056120797991752625, + -0.009228385984897614, + -0.028060398995876312, + -0.04546140506863594, + -0.014628040604293346, + -0.04334988072514534, + -0.026864714920520782, + -0.02574535273015499, + 0.059428006410598755, + 0.041543636471033096, + 0.0158237237483263, + -0.04518156498670578, + -0.013877558521926403, + 0.01732468791306019, + -0.06304049491882324, + 0.009851667098701, + -0.05322062969207764, + -0.00978806708008051, + 0.06003856658935547, + -0.03477657586336136, + -0.03714250400662422, + -0.018545811995863914, + 0.04630092903971672, + 0.008725943975150585, + -0.007886421866714954, + 0.09774075448513031, + -0.03464937582612038, + 0.06319313496351242, + -0.003920950926840305, + -0.006906979251652956, + -0.0943317860364914, + 0.0028492880519479513, + 0.014208279550075531, + 0.014475400559604168, + -0.029942963272333145, + 0.023621106520295143, + -0.029256081208586693, + 0.055001433938741684, + -0.04245947673916817, + -0.005154794547706842, + -0.02012309618294239, + -0.031418487429618835, + 0.05286446586251259, + 0.041060276329517365, + 0.029663123190402985, + 0.008821344934403896, + 0.0014834741596132517, + 0.0004308912029955536, + -0.06538098305463791, + -0.016523325815796852, + -0.009050305001437664, + 0.004448832478374243, + -0.030986007302999496, + -0.09550202637910843, + 0.011950473301112652, + 0.04729309305548668, + -0.017782609909772873, + -0.029103441163897514, + 0.030426325276494026, + 0.03693898394703865, + -0.029586803168058395, + -0.06527922302484512, + 0.004318451974540949, + 0.012096753343939781, + 0.018698452040553093, + -0.04322268068790436, + -0.0619211345911026, + 0.15437035262584686, + -0.03258873149752617, + 0.01850765198469162, + 0.03365721553564072, + -0.01196319330483675, + -0.03597225993871689, + -0.035361699759960175, + 0.02490582875907421, + -0.0351836197078228, + 0.03475113585591316, + 0.05673135817050934, + 0.008261662907898426, + 0.06100529059767723, + -0.05166878551244736, + 0.058868322521448135, + 0.06324401497840881, + -0.08751384168863297, + -0.003529809881001711, + -0.011829633265733719, + 0.05617167800664902, + -0.012942636385560036, + -0.013712198473513126, + 0.008592383936047554, + -0.04284108057618141, + -0.005393295083194971, + -0.03024824522435665, + -0.008846784941852093, + -0.013292437419295311, + -0.08100118488073349, + 0.054848793894052505, + -0.0005235089338384569, + -0.035081859678030014, + -0.035641539841890335, + 0.02344302460551262, + 0.01731196790933609, + -0.03968651220202446, + 0.06456690281629562, + -0.06085265055298805, + 0.019855976104736328, + -0.02138238027691841, + 0.05871568247675896, + -0.04245947673916817, + -0.00957182701677084, + 0.05693487823009491, + 0.02047925628721714, + 0.006652578711509705, + -0.03429321572184563, + -0.011212711222469807, + 0.06207377463579178, + -0.015340362675487995, + 0.0626334547996521, + 0.03230889141559601, + -0.01548028364777565, + -0.038592588156461716, + 0.021585900336503983, + -0.0008816574700176716, + 0.05469615384936333, + 0.02905256114900112, + -0.019537974148988724, + -0.05729103833436966, + -0.06746707111597061, + 0.0443420447409153, + 0.00030388959567062557, + 0.003968650940805674, + -0.03467481583356857, + -0.03182552754878998, + 0.01892741210758686, + 0.047394853085279465, + -0.08039062470197678, + -0.049150217324495316, + 0.05820688232779503, + -0.045639488846063614, + -0.015607483685016632, + 0.031214967370033264, + -0.03553977981209755, + 0.008140822872519493, + 0.0492519773542881, + -0.024740468710660934, + -0.07311476767063141, + 0.018812932074069977, + 0.09295801818370819, + 0.07637109607458115, + 0.019703334197402, + 0.023239504545927048, + -0.016854047775268555, + -0.023671986535191536, + -0.009730827063322067, + 0.0929071381688118, + 0.011918673291802406, + 0.0696549117565155, + 0.021344220265746117, + -0.03284313157200813, + 0.005806696135550737, + 0.049150217324495316, + 0.024943988770246506, + 0.011683352291584015, + 0.030578965321183205, + -0.0034725696314126253, + 0.040780432522296906, + -0.06578802317380905, + -0.05952976644039154, + -0.03414057567715645, + 0.03126584738492966, + 0.00018354614439886063, + 0.016777725890278816, + 0.03724426403641701, + 0.0016122645465657115, + -0.04449468478560448, + 0.0239391066133976, + 0.01746460795402527, + 0.06604242324829102, + -0.007479380816221237, + -0.01802428998053074, + -0.019970456138253212, + 0.03678634390234947, + 0.019652454182505608, + 0.04828525334596634, + -0.010786590166389942, + 0.027068234980106354, + 0.056476958096027374, + -0.036684583872556686, + -0.017604529857635498, + 0.018533091992139816, + 0.03419145569205284, + -0.03953387215733528, + 0.003758770413696766, + 0.06873907148838043, + -0.02175126038491726, + -0.07677813619375229, + 0.06232817471027374, + -0.027475276961922646, + 0.029179761186242104, + 0.032894011586904526, + -0.01802428998053074, + -0.03569241985678673, + 0.03907594829797745, + 0.0018237350741401315, + 0.043324440717697144, + 0.0014985791640356183, + -0.03955931216478348, + 0.01009970810264349, + 0.01835501194000244, + -0.004770013503730297, + -0.11081694811582565, + -0.005266094580292702, + -0.011339911259710789, + 0.018278691917657852, + -0.022717982530593872, + -0.007765581831336021, + 0.04841245338320732, + 0.021166138350963593, + 0.04118747636675835, + 0.034954655915498734, + 0.050498541444540024, + 0.0401189923286438, + 0.000583531626034528, + 0.04630092903971672, + 0.04991341754794121, + 0.04937917739152908, + -0.025808952748775482, + -0.054848793894052505, + -0.05861392244696617, + -0.07520084828138351, + -0.031571127474308014, + -0.04533420503139496, + -0.03162200748920441, + -0.004391592461615801, + -0.012179434299468994, + -0.001120158121921122, + -0.01220487430691719, + 0.059428006410598755, + 0.04884493723511696, + 0.11448031663894653, + 0.06858643144369125, + 0.06304049491882324, + -0.03785482421517372, + 0.006248717661947012, + 0.13554470241069794, + 0.08334167301654816, + 0.04602108895778656, + 0.007224980276077986, + -0.02440974861383438, + 0.015645643696188927, + 0.034522175788879395, + -0.030706165358424187, + -0.05479791387915611, + 0.008891304954886436, + -0.024447908625006676, + -0.01280907541513443, + 0.04256124049425125, + -0.062379054725170135, + 0.04960813745856285, + 0.06421074271202087, + -0.02984120324254036, + -0.011416232213377953, + 0.0014802941586822271, + 0.013572277501225471, + -0.009756267070770264, + -0.057036638259887695, + -0.01368675846606493, + -0.0010923329973593354, + -0.06583890318870544, + -1.675715611781925e-05, + -0.012014073319733143, + 0.06934963166713715, + 0.03411513566970825, + -0.04228139668703079, + -0.029332401230931282, + -0.015582043677568436, + 0.036430180072784424, + -0.05958064645528793, + 0.060903530567884445, + 0.039508428424596786, + 0.04904845729470253, + -0.023417584598064423, + 0.043807800859212875, + 0.05367854982614517, + 0.04156907647848129, + 0.009533667005598545, + -0.048030853271484375, + 0.01921997405588627, + 0.06609330326318741, + -0.027984078973531723, + 0.0047668335027992725, + -0.014106519520282745, + 0.01715932786464691, + -0.04474908486008644, + -0.08695416152477264, + 0.0015582042979076505, + 0.0908210501074791, + -0.00739034079015255, + -0.03019736334681511, + 0.0548996739089489, + -0.004560132510960102, + 0.05037134140729904, + 0.00739034079015255, + 0.04708957299590111, + -0.037117063999176025, + -0.00939374603331089, + -0.05530671402812004, + 0.025516390800476074, + 0.019805096089839935, + 0.047827333211898804, + 0.033173851668834686, + -0.029154321178793907, + 0.012618275359272957, + 0.08822616934776306, + -0.06207377463579178, + -0.01319067645817995, + -0.03999179229140282, + -0.04754749312996864, + -0.03884698823094368, + -0.04075499251484871, + -0.03442041575908661, + -0.023035984486341476, + -0.008560583926737309, + -0.048234373331069946, + -0.034725695848464966, + -0.04581756889820099, + 0.10069180279970169, + -0.0022307762410491705, + -0.01908005401492119, + 0.04635180905461311, + 0.07525172829627991, + 0.012166714295744896, + 0.002051105722784996, + 0.03793114423751831, + 0.07301300019025803 + ] + }, + { + "id": "19d7c002-862d-4d57-9cd0-b187a358b3f9", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "jjohnson", + "reviewDate": "2021-01-22T10:50:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "47fed938-2731-454c-8756-e4391665b560", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "sarahdixon", + "reviewDate": "2022-12-04T19:17:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3c2d806d-ed0d-430d-ab69-c02c0d8f7f43", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "gmyers", + "reviewDate": "2022-03-14T10:54:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6cf2f41f-c776-45ec-b096-7dce0a9f0427", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "huffsarah", + "reviewDate": "2022-10-12T17:58:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4db9bb0b-bb31-4842-b877-acbea7a71fb2", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "joshua84", + "reviewDate": "2022-05-29T08:20:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9d9772cc-1e9e-4b4b-bcb0-834d21e4859c", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "swilliams", + "reviewDate": "2021-02-03T00:30:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cee06003-3c36-4549-9d39-14c56e2d14c4", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "josephrobinson", + "reviewDate": "2021-07-22T22:00:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b969f3e1-cf35-4eea-9316-55c44cc6046e", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "rosalesandrew", + "reviewDate": "2021-01-20T12:49:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7f2803c0-1279-413a-8c11-40712aa8d30e", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "jonestimothy", + "reviewDate": "2022-09-13T02:26:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "61fa4ac4-09d6-43de-ba0b-f85ee15fc487", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "sandra21", + "reviewDate": "2021-10-23T12:14:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0aa04e44-9e27-46ca-bf06-255235343e2c", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "christinejenkins", + "reviewDate": "2021-09-15T13:13:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6211973f-5a9f-44de-a635-19d61349c55f", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "hkaiser", + "reviewDate": "2022-10-28T09:20:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e5fb3ae1-40fb-4e66-b7fc-f18420ec9f2b", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "michael51", + "reviewDate": "2022-11-30T14:48:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "936d96e0-7791-4730-a34b-da48d9c7b197", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "tdavis", + "reviewDate": "2021-05-15T15:46:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a05b8882-fc6f-4773-82fa-21d9940c37a5", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "jgalloway", + "reviewDate": "2021-01-13T09:39:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2ec6f0e8-7427-4311-9b82-84e3d4226ac2", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "nicholas12", + "reviewDate": "2022-05-10T11:07:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7f3bcb26-b2a0-4c33-aa48-8808bc051327", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "dwaynelopez", + "reviewDate": "2021-06-08T18:09:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "342812bc-f325-48d9-af62-122e4342338d", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "jonesdavid", + "reviewDate": "2021-10-12T05:31:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8a8b925b-53fa-4575-9ae2-ef960e65d261", + "productId": "8eee8fa3-5cf6-4a57-9a54-5d9d02450fdd", + "category": "Media", + "docType": "customerRating", + "userName": "ericanash", + "reviewDate": "2021-11-09T23:18:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Pro (Red)", + "description": "This Amazing Stand Pro (Red) is a full size Super Glide stand top. It features a full sized head which can be used as shoulder straps, and is a bit on the heavy side with the", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-05-20T05:52:11", + "price": 931.77, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-02-03T22:05:04", + "newPrice": 989.87 + }, + { + "priceDate": "2021-12-06T22:05:04", + "newPrice": 942.27 + }, + { + "priceDate": "2022-10-08T22:05:04", + "newPrice": 947.88 + }, + { + "priceDate": "2024-06-21T22:05:04", + "newPrice": 931.77 + } + ], + "descriptionVector": [ + 0.009728553704917431, + 0.017547765746712685, + -0.028912898153066635, + 0.03384861350059509, + 0.03423827514052391, + -0.0720614418387413, + -0.03826478123664856, + -0.0019775331020355225, + -0.011183290742337704, + 0.045252714306116104, + 0.022600378841161728, + 0.038576509803533554, + 0.06255369633436203, + -0.040602751076221466, + 0.059748128056526184, + 0.019028479233384132, + -0.01248216349631548, + -0.008981701917946339, + -0.011501514352858067, + -0.022080829367041588, + 0.11336557567119598, + -0.04133011773228645, + -0.00717626977711916, + 0.021535303443670273, + -0.014677257277071476, + -0.03273158520460129, + -0.059124670922756195, + 0.0013289087219163775, + -0.051071662455797195, + 0.02888692170381546, + 0.00861801765859127, + 0.048136208206415176, + 0.022288650274276733, + 0.0590207614004612, + -0.0415898934006691, + 0.08442670106887817, + 0.04465522989630699, + 0.04361613467335701, + -0.019171355292201042, + -0.006396946497261524, + -0.0019483085488900542, + 0.03870639577507973, + 0.036186583340168, + 0.009585677646100521, + 0.0616704598069191, + -0.0069424728862941265, + -0.041979555040597916, + 0.03706981614232063, + -0.020522182807326317, + 0.026587916538119316, + 0.008423186838626862, + 0.015781298279762268, + -0.04683733731508255, + 0.002726008417084813, + 0.03686199709773064, + -0.048006322234869, + 0.07569827884435654, + 0.19088228046894073, + 0.07315248996019363, + -0.064424067735672, + 0.00018691584409680218, + -0.02670481614768505, + -0.002170740393921733, + 0.038758352398872375, + -0.021067708730697632, + -0.03395252302289009, + 0.01115081924945116, + -0.096220463514328, + 0.01143657136708498, + 0.05528000742197037, + -0.018924569711089134, + -0.00014642757014371455, + 0.01304717268794775, + 0.04062872752547264, + -0.004887007176876068, + -0.03701786324381828, + 0.05026635900139809, + -0.018340077251195908, + 0.03177041932940483, + 0.010098733007907867, + 0.026626883074641228, + 0.020846901461482048, + -0.03348492830991745, + -0.013287464156746864, + 0.007098337635397911, + -0.05166914314031601, + 0.06494361907243729, + -0.07575023919343948, + -0.010871561244130135, + 0.03849857673048973, + -0.027977710589766502, + -0.009527228772640228, + -0.019431130960583687, + -0.052292600274086, + -0.011670367792248726, + 0.025535831227898598, + -0.07086647301912308, + 0.07455527037382126, + 0.010475405491888523, + -0.004958445206284523, + 0.009241476655006409, + 0.00918952189385891, + -0.05559173598885536, + -0.010884550400078297, + -0.009624644182622433, + 0.01120277401059866, + 0.01063126977533102, + -0.008741411380469799, + 0.025016281753778458, + -0.21135251224040985, + 0.03940778598189354, + -0.035874854773283005, + 0.023717408999800682, + 0.004429154563695192, + -0.08219264447689056, + 0.019054457545280457, + -0.0010715697426348925, + -0.07039888203144073, + 0.1229252815246582, + -0.06515143811702728, + 0.023808330297470093, + 0.054812412708997726, + -0.043642111122608185, + 0.05366940423846245, + 0.01675545424222946, + 0.001436877530068159, + -0.05959226191043854, + -0.018677784129977226, + 0.0261982548981905, + -0.035121507942676544, + -0.0694117397069931, + 0.05772188678383827, + 0.03244583308696747, + 0.04574628546833992, + -0.09580482542514801, + 0.01989872381091118, + 0.05611128732562065, + -0.0080010537058115, + 0.001894730026833713, + 0.05366940423846245, + -0.014781167730689049, + -0.08058203756809235, + 0.04377199709415436, + 0.09107693284749985, + -0.008176401257514954, + 0.002557154977694154, + -0.003958313725888729, + 0.023145904764533043, + 0.04574628546833992, + 0.005250691436231136, + 0.02102874405682087, + -0.0507599301636219, + -0.05502023175358772, + -0.0427069216966629, + 0.05522805079817772, + 0.05346158519387245, + -0.10224723070859909, + -0.0074944933876395226, + -0.004893501754850149, + 0.08053008466959, + -0.003097810549661517, + 0.047382865101099014, + -0.014222652651369572, + 0.0645279809832573, + -0.00723471911624074, + 0.000304220273392275, + 0.08842723071575165, + 0.042083464562892914, + -0.012975734658539295, + 0.03551116958260536, + 0.01060529239475727, + 0.04192759841680527, + 0.00023562356363981962, + -0.07164579629898071, + 0.06681399047374725, + 0.007903638295829296, + 0.09242776036262512, + 0.013274475932121277, + 0.023886263370513916, + -0.013417351059615612, + 0.022236695513129234, + 0.021574269980192184, + -0.03460196033120155, + 0.004081706516444683, + 0.020158499479293823, + 0.059696175158023834, + 0.0348617322742939, + 0.11149520426988602, + 0.023119928315281868, + -0.07294467091560364, + 0.02751011587679386, + -0.044395457953214645, + 0.0027519857976585627, + -0.027588048949837685, + -0.005909869447350502, + 0.0028380360454320908, + -0.007078854367136955, + -0.06291737407445908, + -0.012137962505221367, + 0.0280816201120615, + -0.06406038254499435, + 0.07362008839845657, + 0.06494361907243729, + 0.019093424081802368, + -0.014196675270795822, + -0.044031772762537, + -0.002974417759105563, + -0.01193663664162159, + -0.014014832675457, + -0.044915005564689636, + -0.01927526667714119, + -0.07917925715446472, + -0.03655026853084564, + 0.038810305297374725, + 0.0024922112934291363, + 0.07408767938613892, + 0.028341393917798996, + 0.02344464510679245, + 0.028159553185105324, + 0.027406206354498863, + 0.056526925414800644, + -0.03083522990345955, + -0.00021674932213500142, + 0.0051078153774142265, + -0.08188091218471527, + 0.00959217268973589, + 0.022470491006970406, + -0.0778803899884224, + 0.03678406402468681, + 0.0024662339128553867, + -0.052188690751791, + -0.02514616958796978, + 0.05252639949321747, + 0.011572952382266521, + 0.0036920446436852217, + 0.0008791742147877812, + -0.0802183598279953, + -0.06645031273365021, + -0.05496827885508537, + -0.014248630031943321, + -0.05709842965006828, + -0.031276848167181015, + -0.031198913231492043, + -0.004974680952727795, + 0.026626883074641228, + 0.05317583307623863, + 0.04029101878404617, + -0.0748150497674942, + -0.03693993017077446, + -0.021769100800156593, + -0.042784854769706726, + 0.05735820159316063, + 0.021340472623705864, + -0.006871034856885672, + 0.10983264446258545, + -0.007533459458500147, + 0.030289703980088234, + -0.009533722884953022, + -0.004620738327503204, + -0.06031963229179382, + 0.013716092333197594, + -0.05600737780332565, + 0.008098469115793705, + 0.06302128732204437, + -0.010144192725419998, + 0.044499367475509644, + 0.010826101526618004, + 0.006910000927746296, + -0.015222784131765366, + -0.020807934924960136, + -0.04187564551830292, + -0.015755321830511093, + 0.002782833995297551, + -0.00014602165902033448, + 0.029354514554142952, + 0.023197859525680542, + 0.007039888296276331, + 0.06769722700119019, + 0.07091843336820602, + 0.009579183533787727, + 0.06889218837022781, + -0.008299794048070908, + 0.088063545525074, + 0.03860248625278473, + 0.03002992831170559, + -0.047720570117235184, + -0.02727632038295269, + -0.011514503508806229, + 0.012566589750349522, + -0.012131467461585999, + -0.02632814273238182, + 0.017184080556035042, + 0.029432447627186775, + 0.0023590768687427044, + 0.007754268124699593, + -0.017729608342051506, + -0.007643864024430513, + 0.05943639948964119, + 0.0697234645485878, + -0.04405774921178818, + 0.04384993016719818, + 0.044395457953214645, + -0.008793366141617298, + -0.04909737408161163, + -0.01060529239475727, + 0.05959226191043854, + -0.028289439156651497, + -0.026133311912417412, + -0.06837264448404312, + -0.003487472189590335, + 0.09762324392795563, + 0.044343501329422, + -0.0107286861166358, + -0.02258739061653614, + 0.04229128360748291, + 0.01624889299273491, + 0.03626451641321182, + 0.037251658737659454, + 0.014534381218254566, + -0.004799333401024342, + 0.014118742197751999, + -0.04868173599243164, + 0.0017745844088494778, + 0.02063908241689205, + 0.05829339101910591, + -0.08546580374240875, + 0.01427460741251707, + 0.0037862129975110292, + -0.017495810985565186, + -0.07497091591358185, + -0.03790109604597092, + 0.037823162972927094, + 0.06603466719388962, + -0.0335368849337101, + -0.03358883783221245, + 0.023847296833992004, + 0.00892974715679884, + -0.039096057415008545, + -0.059124670922756195, + 0.02187301032245159, + 0.07616587728261948, + 0.008046514354646206, + -0.011904165148735046, + -0.05161718651652336, + 0.05818948149681091, + -0.04200553148984909, + 0.07180166244506836, + 0.008046514354646206, + 0.004377199802547693, + -0.02500329352915287, + 0.0011909035965800285, + 0.015274738892912865, + 0.022223705425858498, + -0.037823162972927094, + 0.04091447964310646, + 0.024262934923171997, + 0.058709029108285904, + -0.04644767567515373, + 0.01766466349363327, + -0.046629518270492554, + 0.00031578834750689566, + -0.009579183533787727, + 0.030939139425754547, + 0.039563652127981186, + 0.04909737408161163, + 0.06842459738254547, + -0.08053008466959, + -0.02756207063794136, + -0.07133407145738602, + 0.027068499475717545, + -0.05980008468031883, + -0.056474968791007996, + 0.015898197889328003, + -0.0057377684861421585, + -0.00577673502266407, + 0.01789846085011959, + 0.03158857673406601, + 0.034030456095933914, + 0.0003718022198881954, + 0.03951169550418854, + -0.0006612071883864701, + 0.0616704598069191, + -0.01800237037241459, + 0.03551116958260536, + 0.1282246857881546, + 0.028003688901662827, + -0.005383825860917568, + -0.00303611415438354, + -0.02050919458270073, + -0.01077414583414793, + 0.01404081005603075, + -0.0469932034611702, + 0.03470586985349655, + 0.044161658734083176, + -0.00961165502667427, + -0.07060670107603073, + -0.037537410855293274, + 0.03405643254518509, + -0.01762569695711136, + 0.03774522989988327, + -0.021704157814383507, + 0.010202642530202866, + -0.03239387646317482, + 0.0041109309531748295, + -0.048707712441682816, + -0.042083464562892914, + 0.00890376977622509, + 0.06099504604935646, + 0.032991357147693634, + -0.08271218836307526, + 0.019028479233384132, + -0.034212298691272736, + -0.012345781549811363, + 0.010222125798463821, + 0.06572294235229492, + 0.08167309314012527, + 0.06115091219544411, + 0.03603072091937065, + 0.05907271429896355, + -0.08489429950714111, + 0.01392391137778759, + 0.011644390411674976, + -0.024730529636144638, + -0.0020781958010047674, + -0.06639835238456726, + 0.08333565294742584, + 0.043356359004974365, + 0.031172936782240868, + -0.08421888202428818, + -0.08208873122930527, + 0.07133407145738602, + -0.04003124684095383, + 0.013832991011440754, + -0.0020035107154399157, + -0.08925850689411163, + -0.023327747359871864, + 0.013352408073842525, + 0.00630927225574851, + -0.011728817597031593, + 0.04400579631328583, + -0.08905068784952164, + 0.036680154502391815, + 0.0015862478176131845, + -0.008033525198698044, + -0.06265760213136673, + -0.046863313764333725, + 0.012248366139829159, + 0.03138075768947601, + 0.04972083494067192, + -0.055383916944265366, + -0.05725429207086563, + -0.01984676904976368, + -0.053305722773075104, + 0.03301733359694481, + -0.019249288365244865, + -0.01828812249004841, + 0.015534513629972935, + 0.08110158890485764, + -0.017313968390226364, + 0.006439159624278545, + 0.023314759135246277, + 0.017872484400868416, + 0.05741015821695328, + -0.0468892902135849, + 0.05943639948964119, + 0.057046473026275635, + 0.010455922223627567, + 0.0029955243226140738, + 0.0018768705194815993, + 0.059124670922756195, + -0.036160606890916824, + -0.0005747510003857315, + -0.055383916944265366, + 0.026120323687791824, + -0.004403177183121443, + -0.0507599301636219, + -0.012852341867983341, + -0.04701917991042137, + -0.054292865097522736, + 0.012488657608628273, + -0.03439414128661156, + 0.0009611655259504914, + -0.030393613502383232, + -0.02063908241689205, + -0.016080040484666824, + 0.019716883078217506, + -0.003711527679115534, + 0.06250173598527908, + -0.01889859326183796, + -0.008306289091706276, + 0.07559437304735184, + 0.06904805451631546, + 0.02595146931707859, + -0.034264251589775085, + -0.0034712364431470633, + -0.04343429207801819, + 0.03171846270561218, + 0.009299926459789276, + -0.061826325953006744, + 0.03470586985349655, + 0.01913239061832428, + -0.05161718651652336, + 0.027977710589766502, + 0.06208609789609909, + 0.032367900013923645, + 0.05387722700834274, + -0.00828680582344532, + 0.022938085719943047, + 0.0388362817466259, + -0.1014159545302391, + 0.0221197959035635, + 0.05200684815645218 + ] + }, + { + "id": "32fa0291-b4e8-49a5-85ed-e4f965d44b65", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "richard69", + "reviewDate": "2022-02-17T06:28:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1ab77142-0322-4304-bf10-70358f5e1bf6", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "melanie10", + "reviewDate": "2022-09-28T14:46:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "60bfabe5-8f97-45b2-87b8-68bf564eaf38", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "yacosta", + "reviewDate": "2022-04-06T13:51:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ba3158c7-78e6-4218-9c06-895435006ed6", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "davilachristina", + "reviewDate": "2021-02-03T22:05:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2b0212d6-b0e6-48a5-9368-161307802864", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "mlyons", + "reviewDate": "2022-10-06T09:17:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e331388d-b00f-43c3-95f8-5c475a1732a6", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "spencermassey", + "reviewDate": "2021-08-27T20:28:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c07298c6-6ac1-49ae-8f5c-b64afe688bed", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "nlewis", + "reviewDate": "2022-06-28T06:05:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e6c6b16f-4529-4a83-8800-2dc099a340bf", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "dbaker", + "reviewDate": "2022-09-28T10:55:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d22f02fa-b828-4c62-a686-1a94f9ceade5", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonathan38", + "reviewDate": "2022-07-02T07:31:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8970333c-854a-451f-a70b-ef9e3cfbc825", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "porterdale", + "reviewDate": "2021-04-29T22:50:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4e6cdf9f-83a6-44b4-b696-a00775e7ee58", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "kayleepowell", + "reviewDate": "2022-03-11T19:13:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a19de43e-3cca-4c9f-8883-d7d8fef88bbe", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarahanderson", + "reviewDate": "2022-03-27T16:22:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "46d1cbea-6037-477d-a74e-7f8b92e90107", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "amber22", + "reviewDate": "2022-05-10T06:20:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9bf9cf03-d2bd-4bf9-9592-62da3a49250a", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael73", + "reviewDate": "2021-03-17T22:13:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3976f839-f4d0-43dd-b54c-cf21584d9e37", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "baldwinamy", + "reviewDate": "2022-07-06T15:27:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5c610e8f-f0ad-4b1a-9682-45702d16d1ee", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "hectormcfarland", + "reviewDate": "2022-10-09T05:01:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4433dcd9-529f-4de1-a31f-c7d51136bdd7", + "productId": "6d5f8d0b-6ada-4e89-a965-87b3c2fc5a8b", + "category": "Accessory", + "docType": "customerRating", + "userName": "stevensjodi", + "reviewDate": "2021-09-09T08:18:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "69812845-bca0-451d-9327-7e0ad3d54772", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Steel)", + "description": "This Awesome Phone Super (Steel) is a beautiful sleek titanium phone, with a super slim build with all its functions. It also features a curved bezel as well as a silver back with a matte black finish. Just like in other titanium phones, the device sports a removable battery pack, 3GB or 4GB of RAM.\n\nAndroid 4.3 Jelly Bean is another important feature for Samsung phones. To", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-01-16T00:44:36", + "price": 315.13, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-01-15T17:37:28", + "newPrice": 306.94 + }, + { + "priceDate": "2022-11-28T17:37:28", + "newPrice": 329.1 + }, + { + "priceDate": "2023-07-10T17:37:28", + "newPrice": 315.13 + } + ], + "descriptionVector": [ + -0.04326930642127991, + -0.0029476755298674107, + -0.04074709862470627, + 0.05015027895569801, + 0.013835404068231583, + -0.007848224602639675, + -0.03173572197556496, + -0.021708115935325623, + 0.020508231595158577, + 0.03714744746685028, + 0.06028807908296585, + -0.024083396419882774, + 0.03303355723619461, + 0.05480289086699486, + 0.015206700190901756, + 0.03629038482904434, + -0.0031650017481297255, + -0.05940653011202812, + 0.04299994558095932, + -0.04530176520347595, + 0.0946684405207634, + -0.037735145539045334, + 0.004756685346364975, + -0.08315934985876083, + 0.004606699571013451, + -0.03161328658461571, + 0.03217649459838867, + -0.007076870184391737, + -0.04853410646319389, + -0.08477551490068436, + -0.013308923691511154, + -0.012941611930727959, + 0.010352064855396748, + 0.06430401653051376, + 0.0035200694110244513, + 0.023703841492533684, + 0.004413860850036144, + 0.029360441491007805, + 0.06763430684804916, + 0.0031221485696733, + 0.04246122017502785, + -0.07380514591932297, + -0.02492821402847767, + 0.0069544329307973385, + 0.03070724941790104, + -0.020422525703907013, + 0.020447012037038803, + 0.015488306060433388, + 0.03406202793121338, + -0.02992365136742592, + 0.023324286565184593, + 0.01738608255982399, + -0.013712966814637184, + 0.019724633544683456, + 0.08120035380125046, + -0.02326306886970997, + 0.030878661200404167, + 0.11979255825281143, + -0.008013514801859856, + 0.0017125903395935893, + 0.0185492355376482, + -0.08360011875629425, + 0.005751487333327532, + 0.003507825778797269, + -0.021695872768759727, + -0.027793245390057564, + 0.002361507387831807, + 0.020704129710793495, + -0.11518891900777817, + 0.07664568722248077, + -0.039375804364681244, + 0.03070724941790104, + -0.006372856441885233, + 0.04317135736346245, + -0.040967486798763275, + 0.04645267501473427, + 0.0321030355989933, + 0.015757666900753975, + 0.042485710233449936, + -0.06596916168928146, + 0.05705573409795761, + 0.07096460461616516, + -0.025320013985037804, + -0.025785274803638458, + 0.022038696333765984, + 0.015659717842936516, + 0.03545781224966049, + -0.09378689527511597, + -0.004334277007728815, + -0.0012779382523149252, + 0.013100780546665192, + 0.04623228684067726, + -0.019296102225780487, + -0.008350216783583164, + 0.12929368019104004, + 0.09545204043388367, + -0.025393474847078323, + 0.03325394541025162, + 0.011998845264315605, + 0.03741680830717087, + 0.036853596568107605, + -0.03746578469872475, + -0.03371920436620712, + -0.02314063161611557, + -0.016920821741223335, + 0.0663609653711319, + 0.011564193293452263, + -0.0018993071280419827, + -0.015549524687230587, + -0.11528686434030533, + -0.01321097370237112, + -0.03621692210435867, + -0.04532625153660774, + 0.02801363170146942, + 0.009623563848435879, + -0.01786358840763569, + -0.01905122771859169, + -0.026103612035512924, + 0.02059393748641014, + -0.002404360566288233, + -0.01816968061029911, + 0.049195267260074615, + -0.08404089510440826, + -0.048436157405376434, + -0.036780133843421936, + -0.012794687412679195, + 0.07262974977493286, + 0.004159803967922926, + 0.016994282603263855, + -0.052647996693849564, + -0.0849224403500557, + 0.028454406186938286, + 0.06773225963115692, + -0.015169968828558922, + -0.00996638834476471, + 0.011919261887669563, + 0.07855571061372757, + 0.08389396965503693, + -0.01690857671201229, + 0.0613655261695385, + 0.024058910086750984, + 0.015316893346607685, + 0.017239157110452652, + -0.014288421720266342, + -0.04199596121907234, + 0.010817326605319977, + -0.03467421606183052, + -0.01657799631357193, + -0.051031824201345444, + 0.023250823840498924, + 0.0035659833811223507, + -0.119400754570961, + -0.06361836940050125, + -0.009519492276012897, + 0.005524978507310152, + 0.003939416725188494, + -0.09075045585632324, + -0.012353913858532906, + -0.04312238097190857, + 0.06415709108114243, + 0.006617730483412743, + -0.07101357728242874, + 0.006746289785951376, + -0.10510009527206421, + -0.047456659376621246, + -0.032837655395269394, + 0.06307964771986008, + 0.03482114151120186, + -0.030119551345705986, + 0.01328443642705679, + 0.045987412333488464, + 0.002171729924157262, + 0.0016008664388209581, + -0.07527439296245575, + 0.026691310107707977, + 0.0015488305361941457, + 0.06748738139867783, + -0.016614727675914764, + 0.024793533608317375, + -0.01726364530622959, + 0.03286214545369148, + 0.00805024616420269, + -0.051031824201345444, + -0.01496182568371296, + 0.05220722407102585, + 0.08761606365442276, + -0.004915853496640921, + -0.010535720735788345, + -0.043367255479097366, + 0.020936761051416397, + -0.026079123839735985, + -0.016418827697634697, + 0.006011666730046272, + 0.010474502108991146, + 0.06498966366052628, + -0.036902572959661484, + 0.07649876177310944, + -0.01985931396484375, + -0.011778458952903748, + 0.046722035855054855, + 0.0513746477663517, + 0.052647996693849564, + 0.05029720067977905, + -0.04033081233501434, + -0.02977672778069973, + -0.022503957152366638, + 0.026152586564421654, + 0.005800462327897549, + 0.038518741726875305, + 0.03487011417746544, + 0.00640958733856678, + 0.007915564812719822, + -0.05715368688106537, + -0.0038537108339369297, + 0.08257164806127548, + -0.0018044182797893882, + 0.0423387847840786, + -0.07483361661434174, + 0.024413978680968285, + -0.05690881237387657, + -0.013859891332685947, + 0.035139475017786026, + 0.07757621258497238, + 0.016786139458417892, + -0.006146347615867853, + -0.030315451323986053, + 0.09652949124574661, + 0.026250535622239113, + -0.042706094682216644, + 0.03504152595996857, + 0.01786358840763569, + -0.032813169062137604, + 0.027523882687091827, + -0.02558937482535839, + 0.01703101396560669, + 0.09770488739013672, + 0.04140825942158699, + -0.02235703356564045, + -0.06954433023929596, + 0.0527949221432209, + 0.016541264951229095, + -0.0782618597149849, + -0.008595091290771961, + -0.11597251892089844, + 0.07507849484682083, + -0.04295096918940544, + 0.002623216947540641, + -0.013994571752846241, + -0.07032793015241623, + 0.024107884615659714, + -0.05632111057639122, + -0.07889853417873383, + -0.05196234956383705, + 0.054166216403245926, + 0.050835926085710526, + 0.015965810045599937, + -0.030437888577580452, + -0.02975223958492279, + 0.09359099715948105, + -0.0028282993007451296, + -0.011049957014620304, + -0.016590241342782974, + -0.012433498166501522, + 0.03237239643931389, + -0.017594225704669952, + 0.05313774570822716, + 0.03668218478560448, + -0.01174784917384386, + -0.01013167854398489, + 0.0026507654692977667, + 0.011949870735406876, + -0.016406584531068802, + 0.032592784613370895, + 0.03413549065589905, + -0.051815424114465714, + -0.007689055986702442, + -0.11979255825281143, + 0.06974022835493088, + -0.0038292233366519213, + -0.005705573596060276, + 0.05788830667734146, + 0.012231476604938507, + 0.09491331875324249, + -0.018022755160927773, + 0.11793151497840881, + -0.030217500403523445, + -0.03545781224966049, + 0.01869616098701954, + 0.10216160118579865, + -0.02639746107161045, + -0.026348484680056572, + 0.06964228302240372, + 0.03161328658461571, + -0.04116338863968849, + 0.01670043356716633, + -0.014937338419258595, + 0.003547617932781577, + -0.12204539775848389, + 0.02899312973022461, + 0.02977672778069973, + -0.0071993074379861355, + -0.009525613859295845, + -0.06146347522735596, + -0.002271210076287389, + -0.00849101971834898, + 0.08448167145252228, + 0.010254115797579288, + 0.02556488662958145, + -0.017986025661230087, + 0.0006370560731738806, + 0.051815424114465714, + -0.03976760432124138, + -0.036118973046541214, + -0.02326306886970997, + 0.004536298103630543, + -0.008876697160303593, + -0.04716280847787857, + 0.02347121201455593, + 0.04243673384189606, + -0.007125845178961754, + 0.06293272227048874, + 0.036070000380277634, + -0.04224083572626114, + 0.06415709108114243, + 0.055978287011384964, + -0.007015651557594538, + -0.014814901165664196, + -0.03651077300310135, + -0.004116951022297144, + -0.012684494256973267, + 0.02152445912361145, + 0.035947561264038086, + 0.016369853168725967, + -0.0013506353134289384, + 0.006813629996031523, + 0.008527751080691814, + 0.087518110871315, + 0.042510196566581726, + 0.05274594575166702, + 0.032813169062137604, + 0.07498054206371307, + 0.009519492276012897, + 0.004573029465973377, + 0.02899312973022461, + -0.031858161091804504, + -0.0404287651181221, + -0.06552839279174805, + -0.05798625946044922, + 0.005769853014498949, + -0.04806884378194809, + 0.0014309848193079233, + -0.0075727407820522785, + 0.04204493388533592, + 0.03962067887187004, + 0.10069235414266586, + -0.006611608900129795, + 0.04963603988289833, + -0.04380803182721138, + 0.010039850138127804, + 0.014447589404881, + 0.013566041365265846, + -0.012806931510567665, + 0.11597251892089844, + 0.010339821688830853, + -0.037539247423410416, + 0.027058621868491173, + -0.01406803447753191, + 0.0789475068449974, + -0.10265135020017624, + 4.235083542880602e-05, + 0.03332740440964699, + -0.001111117540858686, + -0.016002541407942772, + 0.09839053452014923, + -0.015708692371845245, + -0.023079412057995796, + 0.015990298241376877, + -0.030903149396181107, + -0.006758533418178558, + 0.036853596568107605, + -0.014019059017300606, + -0.023312043398618698, + -0.04060017690062523, + 0.004413860850036144, + 0.026348484680056572, + -0.08531424403190613, + 0.0032476468477398157, + 0.05245209485292435, + -0.06719353795051575, + 0.10852833092212677, + -0.025368988513946533, + 0.026666821911931038, + 0.011147907003760338, + 0.08071060478687286, + 0.043489694595336914, + -0.03396407887339592, + -0.02480577677488327, + -0.008790991269052029, + 0.03166225925087929, + -0.04824025556445122, + 0.03952272981405258, + 0.05230517312884331, + -0.006746289785951376, + 0.004876061342656612, + 0.05720265954732895, + -0.05308876931667328, + 0.04449367895722389, + -0.03788207098841667, + -0.051864396780729294, + -0.07062177360057831, + 0.00809922069311142, + -0.02899312973022461, + 0.007101357448846102, + -0.0018732891185209155, + 0.05960242822766304, + 0.015316893346607685, + 0.053480569273233414, + 0.009268496185541153, + 0.08345319330692291, + -0.018732892349362373, + -0.022834537550807, + 0.03229893371462822, + 0.0005291582783684134, + 0.014986312948167324, + 0.0030379730742424726, + 0.04468957707285881, + -0.029409416019916534, + 0.03908195346593857, + 0.006648339796811342, + -0.0799270048737526, + 0.07880058139562607, + -0.03866566717624664, + 0.03655974939465523, + -0.011796824634075165, + -0.01917366497218609, + -0.054166216403245926, + -0.006568755954504013, + 0.014790413901209831, + -0.029556339606642723, + 0.003422119654715061, + -0.01910020411014557, + 0.002588016213849187, + -0.04877898097038269, + 0.05132567510008812, + -0.07478464394807816, + -0.09128917753696442, + -0.016296392306685448, + -0.011319318786263466, + -0.02573630027472973, + -0.03802899271249771, + -0.043391745537519455, + 0.0008425209671258926, + 0.009721513837575912, + -0.048411667346954346, + -0.005895351059734821, + -0.01029696874320507, + 0.005880046635866165, + 0.06954433023929596, + -0.0722869262099266, + -0.013247705064713955, + -0.052696969360113144, + 0.03966965153813362, + 0.021720359101891518, + -0.0682709813117981, + 0.00040595585596747696, + 0.03873912990093231, + -0.06640993803739548, + -0.012360035441815853, + -0.016994282603263855, + 0.04390598088502884, + -0.0017049380112439394, + -0.05558649078011513, + 0.0056688422337174416, + 0.051031824201345444, + -0.0035874100867658854, + -0.08257164806127548, + 0.05397031828761101, + -0.04231429472565651, + -0.006305515766143799, + 0.014484320767223835, + 0.047750506550073624, + 0.04030632600188255, + 0.05191337317228317, + 0.007523765787482262, + 0.000233778526308015, + -0.09280739724636078, + -0.009084840305149555, + 0.002459457376971841, + -0.007701300084590912, + 0.0036792377941310406, + 0.03944926708936691, + 0.060043204575777054, + -0.06807508319616318, + -0.03374369069933891, + -0.03562922403216362, + -0.010780595242977142, + 0.03986555337905884, + -0.02266312576830387, + -0.021291829645633698, + 0.033498816192150116, + -0.018806353211402893, + -0.046722035855054855, + -0.07233589887619019, + -0.007989027537405491, + 0.0022467225790023804, + -0.0008585908799432218, + -0.049219753593206406, + 0.07591106742620468, + 0.010829570703208447, + 0.037563733756542206, + 0.03452729061245918, + -0.010517355985939503 + ] + }, + { + "id": "853f458d-04d5-481b-9c52-b1b1cbb5581f", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandon97", + "reviewDate": "2021-11-04T04:18:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "102cfb17-16e6-40bc-a61f-7bef39064573", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "bestrobert", + "reviewDate": "2021-01-15T17:37:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0a8d48c8-7009-458b-9524-c93d30fe2696", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "zavalakenneth", + "reviewDate": "2021-06-11T03:05:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9fd6d63c-9153-4316-b21b-4df8f0ece66c", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleyhoward", + "reviewDate": "2021-09-05T00:34:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2444d361-9725-44bb-82ca-45ced922b123", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "cynthia31", + "reviewDate": "2022-07-09T03:23:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d591a3c4-a2ad-472e-b3d6-f841cf3273bc", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "frankknight", + "reviewDate": "2022-02-17T09:46:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "47a4286d-d3da-43ef-b66f-d70d067dd4c2", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "kramerrobert", + "reviewDate": "2021-07-09T06:45:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "529ff600-7023-45ed-be27-84b8cafa7ac0", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "joshua92", + "reviewDate": "2022-01-25T09:42:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5576eba8-b837-4fdb-abf7-a9427e1d9191", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "trannancy", + "reviewDate": "2022-06-08T09:26:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "75363250-eeee-492a-8b3c-baec1b571e16", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "pperry", + "reviewDate": "2021-04-07T11:14:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "99318881-6d05-464a-ab47-c77710323643", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "samuel51", + "reviewDate": "2021-09-29T19:21:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "604be29a-1087-4cc4-a42b-8225e08726d6", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "paynecraig", + "reviewDate": "2022-04-07T06:27:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b755b84b-e34a-4aef-824d-604d8fd45b50", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "greenlinda", + "reviewDate": "2022-07-21T09:55:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3641e5cb-a13b-46f5-8b87-488a41af20f0", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "meadowsdavid", + "reviewDate": "2021-03-12T03:53:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4cce41f9-0b8f-4d5b-8871-0e54953323b8", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "jordanamanda", + "reviewDate": "2022-07-17T01:30:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "64de9dd6-cab9-4d7a-ae48-b586fd004b72", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "laura85", + "reviewDate": "2022-11-29T00:23:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "adb96776-e05d-4389-b004-82880440be1a", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "glyons", + "reviewDate": "2021-04-08T11:19:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f4e19b3c-fdfe-45c6-b641-caf01ad986ef", + "productId": "69812845-bca0-451d-9327-7e0ad3d54772", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeremiahwalls", + "reviewDate": "2021-10-31T05:48:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5225a75f-a666-4034-907f-af53b7d981d6", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Silver)", + "description": "This Amazing Filter Micro (Silver) is great for those who cannot afford the expensive 4x3 Micro filter sets made by the original Japanese maker of that device. This lens is super cool for using the 4x3 in some situations without having to pull out a filter or the 1/4th lens mount.\n\nThe first shot shows the great silver filter filter kit.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-01-11T04:17:42", + "price": 600.26, + "stock": 10, + "priceHistory": [ + { + "priceDate": "2021-02-05T19:01:46", + "newPrice": 592.6 + }, + { + "priceDate": "2022-11-21T19:01:46", + "newPrice": 600.26 + } + ], + "descriptionVector": [ + 0.049294792115688324, + 0.028533542528748512, + -0.03820280358195305, + 0.05480126664042473, + -0.004778644070029259, + -0.04120633751153946, + -0.06365377455949783, + 0.01970737800002098, + 0.01957564428448677, + 0.06692077219486237, + -0.045316431671381, + -0.004903791006654501, + 0.08647007495164871, + -0.03614775836467743, + 0.03327596187591553, + -0.02123549021780491, + -0.0688704326748848, + 0.002888263901695609, + -0.042971570044755936, + 0.06470764428377151, + 0.02422584779560566, + -0.06918659806251526, + -0.03085205890238285, + 0.015188908204436302, + 0.021222317591309547, + -0.004202308598905802, + -0.03203766420483589, + 0.007969895377755165, + -0.04046862572431564, + -0.02331688441336155, + 0.0634956955909729, + 0.021182795986533165, + 0.032749027013778687, + 0.07540443539619446, + -0.021841466426849365, + -0.015610456466674805, + 0.06591960042715073, + -0.010578225366771221, + 0.032986145466566086, + 0.04882055148482323, + -0.020418740808963776, + 0.016888273879885674, + -0.023909686133265495, + -0.001286051352508366, + -0.058647893369197845, + -0.004284642171114683, + -0.06892313063144684, + -0.032590944319963455, + -0.024001900106668472, + 0.04117998853325844, + 0.041812311857938766, + -0.01983911171555519, + -0.023119283840060234, + -0.024910863488912582, + -0.012126097455620766, + 0.01854811981320381, + 0.06897582113742828, + 0.1350008100271225, + 0.06734232604503632, + -0.055802442133426666, + 0.03865069895982742, + -0.04494757577776909, + 0.05985984206199646, + -0.0004861800989601761, + -0.02927125245332718, + 0.0035139992833137512, + -0.0541689433157444, + 0.009010592475533485, + -0.008984246291220188, + 0.020063059404492378, + 0.00460080336779356, + -0.02877066470682621, + 0.03464599326252937, + -0.010723131708800793, + -0.011645268648862839, + 0.03588429093360901, + 0.1634553074836731, + -0.03177419677376747, + 0.0011707842350006104, + 0.006244182586669922, + -0.004660083446651697, + 0.042945221066474915, + -0.07946183532476425, + 0.011816523037850857, + -0.011895563453435898, + -0.012000950053334236, + 0.021960025653243065, + -0.09453218430280685, + -0.005536113400012255, + 0.016295472159981728, + -0.020550474524497986, + 0.040363240987062454, + 0.001597272465005517, + -0.02384381927549839, + 0.005552580114454031, + -0.006583397276699543, + -0.037386056035757065, + 0.012099750339984894, + -0.04455237463116646, + 0.00964950118213892, + 0.01634816639125347, + -0.05843711644411087, + -0.02693956345319748, + 0.001146084163337946, + -0.031695153564214706, + 0.006398969795554876, + -0.021801944822072983, + -0.03617410361766815, + -0.012956020422279835, + -0.1070205494761467, + -0.0031039780005812645, + -0.015202081762254238, + -0.04315599799156189, + -0.00230040168389678, + 0.05387912690639496, + 0.030404163524508476, + -0.03238017112016678, + 0.006046582013368607, + -0.0038532139733433723, + -0.020128926262259483, + 0.004143028520047665, + 0.05959637463092804, + 0.04318234324455261, + 0.012264417484402657, + -0.004972951486706734, + 4.5875269279349595e-05, + -0.0328807607293129, + 0.012462018057703972, + 0.005437313113361597, + 0.018495427444577217, + -0.09310945868492126, + -0.0521402433514595, + 0.08873589336872101, + -0.03514657914638519, + -0.11076179146766663, + 0.0381501130759716, + 0.03461964428424835, + 0.11402878910303116, + -0.016361339017748833, + 0.06750040501356125, + -0.01712539605796337, + -0.009418967179954052, + 0.03688546642661095, + 0.050980985164642334, + -0.0063627432100474834, + -0.0706620141863823, + -0.05996523052453995, + 0.03954648971557617, + -0.016282299533486366, + 0.006520823575556278, + -0.0009896502597257495, + -0.09937998652458191, + -0.025200678035616875, + -0.07371824234724045, + 0.05274621769785881, + 0.07082009315490723, + -0.007943549193441868, + 0.028349116444587708, + -0.05880597233772278, + -0.04094287008047104, + -0.0024321353994309902, + -0.017204435542225838, + -0.00394872110337019, + 0.03498850017786026, + 0.022829469293355942, + 0.008200429379940033, + 0.021090583875775337, + 0.014082344248890877, + -0.06022869795560837, + 0.04081113263964653, + 0.05169234797358513, + 0.018192438408732414, + 0.04052131995558739, + -0.01296919398009777, + 0.018442733213305473, + 0.02073490247130394, + 0.027532367035746574, + -0.03793933615088463, + -0.05066482350230217, + -0.12361900508403778, + -0.015636803582310677, + -0.007311226334422827, + -0.027137164026498795, + -0.008832751773297787, + -0.0011304407380521297, + -0.019127748906612396, + 0.000832804711535573, + -0.03161611407995224, + 0.06681539118289948, + 0.05922752246260643, + 0.022052239626646042, + -0.0450793094933033, + -0.0002330041752429679, + 0.005266059190034866, + 0.019536124542355537, + -0.06781656295061111, + -0.03282806649804115, + -0.04692358151078224, + -0.000641790684312582, + 0.008062109351158142, + -0.06180950254201889, + 0.0010489304549992085, + 0.08815626800060272, + -0.0014416618505492806, + -0.0029870641883462667, + 0.012606925331056118, + -9.69478496699594e-05, + 0.05221928283572197, + -0.052166588604450226, + -0.06112448871135712, + 0.01522842887789011, + -0.028665276244282722, + -0.0481882281601429, + -0.00498941820114851, + 0.04887324199080467, + 0.04236559197306633, + -0.014991307631134987, + -0.04199673980474472, + 0.03483042120933533, + -0.00886568520218134, + 0.007146559190005064, + -0.0718739703297615, + 0.021433090791106224, + -0.008733951486647129, + -0.0007171259494498372, + -0.020524127408862114, + 0.002502942457795143, + 0.08141149580478668, + 0.08251805603504181, + 0.01607152447104454, + -0.05522281304001808, + -0.004940018057823181, + -0.02566174603998661, + 0.0339609757065773, + 0.004607390146702528, + -0.04007342457771301, + -0.049057669937610626, + -0.009109392762184143, + 0.031194565817713737, + 0.04131172224879265, + -0.029323946684598923, + 0.027163511142134666, + -0.06402263045310974, + 0.02969280071556568, + 0.08820895850658417, + -0.04199673980474472, + 0.022895336151123047, + -0.06823811680078506, + -0.06049216538667679, + -0.03317057341337204, + -0.04038958624005318, + 0.0034678925294429064, + -0.045553550124168396, + 0.03954648971557617, + -0.03359211981296539, + 0.07867143303155899, + 0.045553550124168396, + 0.000826217990834266, + -0.005262765567749739, + -0.07788103073835373, + 0.005539406556636095, + 0.00295083737000823, + 0.07292784005403519, + 0.017968492582440376, + -0.06502380967140198, + -0.02101154252886772, + -0.0064582498744130135, + -0.06365377455949783, + -0.07782833278179169, + 0.04560624435544014, + -0.025437798351049423, + -0.012527884915471077, + 0.02850719727575779, + 0.014055997133255005, + -0.06997700035572052, + -0.030088001862168312, + -0.10638822615146637, + 0.10854865610599518, + 0.07788103073835373, + 0.03135264664888382, + 0.1384785771369934, + 0.013067994266748428, + 0.018310999497771263, + -0.013265594840049744, + 0.09421601891517639, + 0.01916726864874363, + 0.022645041346549988, + -0.014372158795595169, + -0.07134702801704407, + -0.010742892511188984, + -0.018719375133514404, + -0.06865966320037842, + -0.002025407273322344, + -0.04513200372457504, + 0.052430056035518646, + -0.0016845461213961244, + -0.00043636825284920633, + 0.005848980974406004, + -0.03340769559144974, + 0.020405566319823265, + -0.04070574790239334, + 0.017784064635634422, + -0.020787594839930534, + -0.019206790253520012, + -0.05769940838217735, + 0.019206790253520012, + 0.011052466928958893, + 0.004581043031066656, + -0.027137164026498795, + -0.06739501655101776, + 0.08220189809799194, + 0.0184163860976696, + -0.020128926262259483, + 0.07155780494213104, + 0.0963764563202858, + -0.08278152346611023, + -0.010393797419965267, + -0.038044724613428116, + 0.020510954782366753, + 0.0492684468626976, + 0.043076954782009125, + 0.015149388462305069, + 0.029771842062473297, + 0.08051570504903793, + 0.008885445073246956, + 0.039072249084711075, + -0.028428155928850174, + -0.002547402633354068, + -0.07266437262296677, + 0.006471423432230949, + -0.011375214904546738, + -0.043208688497543335, + -0.030404163524508476, + 0.05195581540465355, + -0.02929759956896305, + -0.07608944922685623, + 0.04370927810668945, + 0.04144345596432686, + -0.037649523466825485, + 0.033486735075712204, + 0.008536350913345814, + -0.041812311857938766, + 0.024146808311343193, + -0.006836984772235155, + 0.08436233550310135, + -0.039968039840459824, + 0.01140814833343029, + -0.05271987244486809, + 0.022460615262389183, + 0.00612562196329236, + 0.0017932264599949121, + -0.01367396954447031, + -0.04157518967986107, + -0.01127641461789608, + 0.05343123525381088, + -0.003458012593910098, + 0.07645830512046814, + 0.004656790290027857, + 0.03032512404024601, + -0.029640106484293938, + 0.017691850662231445, + -0.05427432805299759, + 0.045316431671381, + 0.008075282908976078, + -0.04655472934246063, + 0.08615390956401825, + -0.012804526835680008, + 0.026135988533496857, + -0.012224897742271423, + 0.02607012167572975, + -0.01341708842664957, + -0.04526373744010925, + -0.03359211981296539, + 0.017836757004261017, + 8.933198841987178e-05, + -0.06154603511095047, + 0.06180950254201889, + 0.021354051306843758, + 0.0033493321388959885, + 0.035067539662122726, + -0.007166319061070681, + 0.03656930476427078, + -0.002880030544474721, + -0.005308872554451227, + 0.07561520487070084, + 0.01790262572467327, + -0.058226343244314194, + 0.010677025653421879, + -0.06423340737819672, + 0.014438025653362274, + -0.04752955958247185, + 0.00651423679664731, + 0.007778881583362818, + -0.016927795484662056, + 0.01167161576449871, + 0.03772856295108795, + -0.03865069895982742, + 0.03509388864040375, + 0.07245359569787979, + -0.028296422213315964, + 0.022315707057714462, + 0.022183973342180252, + -0.050612129271030426, + -0.00964950118213892, + -0.03896686062216759, + 0.007363920100033283, + 0.02073490247130394, + 0.04958460479974747, + -0.02255282923579216, + -0.11856042593717575, + 0.0477139875292778, + -0.038413580507040024, + -0.005559166893362999, + -0.07577329128980637, + 0.06065024808049202, + 0.07550982385873795, + 0.014885921031236649, + -0.04597510024905205, + 0.057330552488565445, + -0.024660568684339523, + 0.04486853629350662, + 0.00434392224997282, + 0.0539318211376667, + 0.048925936222076416, + 0.0006627857219427824, + 0.021064236760139465, + 0.007660320959985256, + 0.030430510640144348, + 0.027822181582450867, + -0.08636468648910522, + -0.00486097764223814, + -0.02045826055109501, + -0.048794202506542206, + -0.016519419848918915, + -0.025819826871156693, + 0.0014704786008223891, + 0.018100226297974586, + 0.0998542308807373, + -0.04497392103075981, + 0.014885921031236649, + 0.04726609215140343, + -0.018495427444577217, + -0.025832999497652054, + 0.02293485589325428, + -0.16630075871944427, + -0.07008238881826401, + -0.03522562235593796, + 0.05622398853302002, + -0.018060704693198204, + -0.0719793513417244, + -0.08847242593765259, + 0.041654229164123535, + -0.03743875026702881, + -0.02525337226688862, + 0.024805476889014244, + 0.010005182586610317, + 0.015636803582310677, + 0.09395255148410797, + 0.006023528520017862, + 0.03796568512916565, + -0.028454503044486046, + 0.05432702228426933, + -0.026201855391263962, + -0.03757048398256302, + 0.02591204084455967, + -0.09379447251558304, + -0.07898759096860886, + 0.04602779448032379, + 0.012330284342169762, + 0.012462018057703972, + -0.010492597706615925, + -0.013305114582180977, + -0.06054485961794853, + 0.01879841461777687, + -0.0388614758849144, + 0.002804283518344164, + -0.027532367035746574, + -0.011217134073376656, + 0.06750040501356125, + 0.04589606076478958, + -0.0024057887494564056, + 0.021551651880145073, + -0.03380289673805237, + 0.07735409587621689, + 0.05003250017762184, + -0.024291714653372765, + -0.004459189251065254, + 0.01385839655995369, + 0.0368327721953392, + 0.06317953765392303, + 0.03670103847980499, + 0.046475689858198166, + -0.016124218702316284, + 0.00959022156894207, + -0.035568129271268845, + -0.01647990010678768, + -0.07561520487070084, + -0.005957661662250757, + -0.07503557950258255, + 0.04120633751153946, + 0.057594023644924164, + 0.0741397887468338, + -0.03825549781322479, + 0.031932275742292404, + 0.02396238036453724, + -0.015729017555713654, + 0.016809234395623207, + -0.03317057341337204, + -0.055275507271289825, + -0.048293616622686386, + 0.021314529702067375, + 0.048557084053754807 + ] + }, + { + "id": "42792259-55ae-4d1e-93cb-153965d2721e", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "jillian14", + "reviewDate": "2022-11-21T02:49:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "156fd3b5-8efb-4058-b49d-dde0931cb456", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "billybass", + "reviewDate": "2022-02-06T01:39:29", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4fbe3a13-8498-4877-914f-942f1b653159", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "lstone", + "reviewDate": "2022-01-30T17:23:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "272c4a0e-c806-457e-8cbc-02de4e1fdd92", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "kyle34", + "reviewDate": "2021-04-04T10:44:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6157cf46-d5d3-4df5-9e9d-e9ddae3b3a10", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "amy90", + "reviewDate": "2022-12-16T06:50:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "395b2e06-0e02-43b2-b058-66d971c97d60", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "deandonald", + "reviewDate": "2021-05-05T00:51:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fc75c219-3fd3-4f31-a072-a7aa8f1f52ee", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "linda20", + "reviewDate": "2022-05-09T02:06:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "10f6c22c-94ee-4691-aac5-4a664830995a", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "joseph49", + "reviewDate": "2022-08-15T04:01:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7bf4ae15-67d2-4237-b899-817305ed3a81", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "hturner", + "reviewDate": "2022-02-26T12:18:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bbecba61-0304-47db-ae2e-1cdbbc5add64", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "jonesstephanie", + "reviewDate": "2022-04-29T21:55:28", + "stars": 5, + "verifiedUser": false + }, + { + "id": "284c602e-c93f-46b2-bacc-2c0c1660c95f", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "rebeccadavis", + "reviewDate": "2021-11-27T09:14:05", + "stars": 5, + "verifiedUser": true + }, + { + "id": "0ab90891-f133-4a2a-b109-1a2907895270", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "gloverpatrick", + "reviewDate": "2021-02-05T19:01:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ecb77ae9-9244-490c-b0ca-8b1b1a9f8ec2", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "lewissierra", + "reviewDate": "2022-01-16T21:46:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "893cd6e9-a7db-4efb-b20b-49cb5a8d6a4b", + "productId": "5225a75f-a666-4034-907f-af53b7d981d6", + "category": "Other", + "docType": "customerRating", + "userName": "eluna", + "reviewDate": "2022-06-23T20:05:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "786102e8-0d7e-4244-aa04-8114a07f064c", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Micro (Steel)", + "description": "This Luxe Phone Micro (Steel) is a perfect companion to your smartphone\n\nYou are getting your phone from an LG device with a single micro SD card to expand your personal data\n\nPerfect for use in the middle of your day, as long as your time and time is spent with your friends or family\n\nPerfect for using just one phone or tablets,", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-03-05T11:42:45", + "price": 293.9, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-03-04T08:25:46", + "newPrice": 278.4 + }, + { + "priceDate": "2022-08-19T08:25:46", + "newPrice": 273.12 + }, + { + "priceDate": "2025-03-11T08:25:46", + "newPrice": 293.9 + } + ], + "descriptionVector": [ + -0.01999438926577568, + 0.05639239400625229, + -0.05154285952448845, + 0.02139890007674694, + 0.045765820890665054, + 0.02345266379415989, + -0.03479474410414696, + -0.0016777929849922657, + 0.02830219641327858, + 0.0008488340536132455, + -0.01141495443880558, + -0.022458907216787338, + 0.04764733090996742, + -0.017516622319817543, + 0.04868083819746971, + -0.028355197980999947, + -0.06333544105291367, + -0.03914077207446098, + 0.03492724522948265, + -0.007015923969447613, + 0.1119367778301239, + -0.16875317692756653, + -0.09386365115642548, + -0.018430879339575768, + 0.0074465516954660416, + -0.02300216071307659, + 0.002007388975471258, + 0.011063827201724052, + -0.0024512670934200287, + -0.04120778664946556, + -0.02563892863690853, + -0.015012354589998722, + -0.02300216071307659, + 0.01957038603723049, + -0.07303451001644135, + -0.041313789784908295, + 0.08739761263132095, + -0.05300036817789078, + 0.05029734969139099, + 0.028010696172714233, + 0.0010078351479023695, + 0.003019364783540368, + -0.05633939430117607, + -0.033072229474782944, + 0.03394673764705658, + 0.01415109820663929, + -0.008963687345385551, + 0.01738412119448185, + -0.04165828973054886, + -0.02463192120194435, + 0.0012165241641923785, + 0.030872715637087822, + -0.08787461370229721, + 0.0039187148213386536, + 0.021147146821022034, + -0.019914889708161354, + 0.055438388139009476, + 0.05596838891506195, + 0.03339023143053055, + -0.009765317663550377, + -0.023373162373900414, + -0.050986357033252716, + 0.026420684531331062, + 0.006558795925229788, + -0.01546285767108202, + 0.00418702932074666, + 0.004985347390174866, + 0.02280340902507305, + 0.039723776280879974, + 0.060738421976566315, + 0.023505663499236107, + 0.019080132246017456, + -0.02078939415514469, + -0.008897436782717705, + 0.02867319993674755, + -0.03450324013829231, + -0.011686581186950207, + 0.04449380934238434, + 0.07891754806041718, + -0.11045277118682861, + 0.03731226176023483, + 0.026778437197208405, + 0.005117848049849272, + 0.007751304190605879, + 0.0404127836227417, + -0.006244106218218803, + 0.06572046130895615, + -0.12105284631252289, + -0.00398827763274312, + 0.08273357897996902, + 0.021531399339437485, + 0.02467167191207409, + 0.011832332238554955, + -0.0019527323311194777, + 0.07372351735830307, + -0.026592934504151344, + 0.010414572432637215, + 0.04876033961772919, + -0.0003306312137283385, + -0.06672746688127518, + -0.013872846961021423, + -0.011785957030951977, + 0.016416864469647408, + -0.02321416139602661, + 0.043751806020736694, + 0.11490479856729507, + 0.03511274605989456, + -0.03691475838422775, + 0.019755886867642403, + -0.2266295850276947, + 0.055438388139009476, + -0.019066883251070976, + -0.047567833214998245, + 0.0195968858897686, + 0.010348321869969368, + 0.019716138020157814, + 0.03715325891971588, + -0.026738686487078667, + 0.01938488520681858, + -0.028249196708202362, + -0.03619925305247307, + -0.02912370301783085, + 0.033867236226797104, + -0.01878863014280796, + 0.0027195813599973917, + -0.005581601522862911, + 0.01354159414768219, + 0.06026142090559006, + 0.041896793991327286, + -0.030475212261080742, + -0.07022549211978912, + 0.07621452957391739, + 0.025559429079294205, + 0.0009598035831004381, + -0.003965090028941631, + 0.06079142540693283, + 0.03702075779438019, + -0.0009780224645510316, + -0.021292898803949356, + 0.07202750444412231, + 0.021266398951411247, + 0.010719324462115765, + 0.01393909752368927, + -0.03596075251698494, + -0.026950687170028687, + -0.0893586203455925, + 0.0013415717985481024, + -0.07722153514623642, + -0.016271114349365234, + 0.07367051392793655, + -0.02342616394162178, + -0.05114535614848137, + 0.00958644226193428, + -0.05898941308259964, + 0.05957241356372833, + -0.01717212051153183, + 0.017463622614741325, + -0.0549083836376667, + -0.06508445739746094, + 0.0597844161093235, + 0.028779201209545135, + 0.005071472842246294, + 0.013124216347932816, + -0.023876667022705078, + -0.025956930592656136, + 0.030766714364290237, + 0.0501648485660553, + -0.043778304010629654, + -0.04343380406498909, + 0.05655139312148094, + -0.02587743103504181, + 0.03288672864437103, + -0.033443234860897064, + -0.04987334832549095, + -0.009367815218865871, + -0.037709761410951614, + 0.05257636681199074, + -0.013674095273017883, + 0.014813602901995182, + 0.0011875395430251956, + 0.05814140662550926, + 0.03755076229572296, + -0.050005849450826645, + 0.020312391221523285, + 0.03492724522948265, + 0.03137622028589249, + -0.04359280318021774, + -0.012633963488042355, + 0.01171970646828413, + 0.03980327770113945, + -0.011666706763207912, + 0.0048296586610376835, + 0.029415205121040344, + -0.032648228108882904, + 0.07520752400159836, + -0.05798240378499031, + 0.05920141190290451, + 0.040730785578489304, + -0.013713845983147621, + 0.008234932087361813, + -0.028620200231671333, + 0.04950234666466713, + 0.029256204143166542, + 0.021279647946357727, + 0.00239826668985188, + -0.0008144666207954288, + 0.018921131268143654, + 0.08071956038475037, + -0.0035410872660577297, + -0.019689638167619705, + 0.04202929139137268, + -0.044122807681560516, + -0.01799362525343895, + 0.009924319572746754, + 0.09773267805576324, + 0.015065355226397514, + 0.05371587350964546, + -0.047196827828884125, + -0.025334177538752556, + -0.06365344673395157, + -0.020908646285533905, + -0.012872464954853058, + 0.053848374634981155, + -0.03604025021195412, + -0.007512802258133888, + -0.06471344828605652, + 0.06683346629142761, + 0.1082797572016716, + 0.060102418065071106, + 0.023903166875243187, + 0.07817554473876953, + 0.005733977537602186, + 0.020497892051935196, + -0.013210342265665531, + -0.021703651174902916, + -0.032436225563287735, + 0.0006852782098576427, + -0.06736347079277039, + -0.026526685804128647, + 0.01100420206785202, + -0.00867881067097187, + -0.08707960695028305, + 0.0015999486204236746, + -0.035245247185230255, + 0.04547431692481041, + -0.005985729396343231, + 0.02909720316529274, + 0.0399622768163681, + -0.02668568678200245, + 0.03924677520990372, + -0.042532797902822495, + -0.003387054894119501, + -0.010845200158655643, + 0.056286390870809555, + -0.019901638850569725, + 0.027825193479657173, + 0.012865839526057243, + -0.08957062661647797, + 0.03074021451175213, + -0.04751482978463173, + 0.02102789655327797, + -0.07223950326442719, + -0.017225120216608047, + 0.03943227604031563, + -0.038504768162965775, + 0.03924677520990372, + 0.06932448595762253, + -0.11522280424833298, + -0.013886096887290478, + 0.02423441968858242, + -0.023161161690950394, + -0.06084442511200905, + 0.03662325441837311, + -0.008327683433890343, + -0.0492638424038887, + -0.011461329646408558, + -0.13801296055316925, + 0.08146157115697861, + -0.060526423156261444, + -0.0039915903471410275, + 0.06842347979545593, + 0.03723276033997536, + -0.0006890047807246447, + -0.05533238500356674, + 0.05819440633058548, + -0.04687882587313652, + -0.013183841481804848, + -0.021133897826075554, + 0.0224191565066576, + -0.01858988031744957, + -0.013084466569125652, + -0.04915784299373627, + 0.07409451901912689, + 0.00017991141066886485, + 0.024366920813918114, + -0.009334689937531948, + 0.007148424629122019, + -0.006714484188705683, + -0.03691475838422775, + 0.039326272904872894, + -0.011706456542015076, + 0.03614625334739685, + 0.004736908245831728, + -0.03166772052645683, + -0.027613192796707153, + 0.08331657946109772, + 0.038504768162965775, + 0.06746947020292282, + -0.059678416699171066, + 0.007135174702852964, + 0.10865075886249542, + 0.0027262065559625626, + -0.11108877509832382, + 0.02907070331275463, + 0.022485407069325447, + -0.0006306215655058622, + -0.028567198663949966, + -0.0006761687691323459, + 0.030024709179997444, + 0.01132882945239544, + 0.021902402862906456, + 0.004104216117411852, + -0.07494252175092697, + 0.04542131721973419, + 0.017635872587561607, + -0.011269203387200832, + -0.026023181155323982, + -0.03659675642848015, + -0.038266267627477646, + -0.007400176487863064, + -0.05739939957857132, + 0.017516622319817543, + 0.017437120899558067, + 0.006943048443645239, + 0.002254171995446086, + 0.01574110984802246, + 0.062328435480594635, + 0.03617275133728981, + 0.05798240378499031, + -0.01938488520681858, + 0.06826447695493698, + 0.025214925408363342, + -0.03834576904773712, + -0.023929666727781296, + 0.034211739897727966, + 0.004872721619904041, + -0.07038448750972748, + 0.02463192120194435, + 0.017476871609687805, + -0.01020257081836462, + 0.0015858703991398215, + -0.020749645307660103, + 0.014204098843038082, + 0.025758178904652596, + 0.04640182480216026, + 0.05111885815858841, + 0.015078605152666569, + -0.0059691667556762695, + -0.024724671617150307, + -0.04587182030081749, + -0.018311627209186554, + -0.008692060597240925, + 0.044334810227155685, + 0.054855383932590485, + -0.04017427936196327, + 0.045580316334962845, + -0.007406801450997591, + 0.02504267543554306, + -0.054855383932590485, + -0.02790469489991665, + 0.031641218811273575, + -0.027401190251111984, + 0.020882146432995796, + 0.03845176845788956, + -0.07791054248809814, + 0.044944312423467636, + 0.10244971513748169, + -0.00641304487362504, + 0.02930920384824276, + 0.035881251096725464, + 0.015714609995484352, + 0.0735115110874176, + 0.05437837913632393, + -0.017052868381142616, + 0.06635646522045135, + -0.034052737057209015, + -0.0582474060356617, + 0.08972962200641632, + -0.006711171939969063, + 0.02869969978928566, + -0.0006293794140219688, + -0.027215689420700073, + -0.005276849493384361, + 0.06577345728874207, + 0.05538538470864296, + 0.030634213238954544, + -0.0097984429448843, + 0.06105642393231392, + 0.0013838065788149834, + 0.0026814874727278948, + 0.03376123681664467, + 0.0722925066947937, + -0.026765186339616776, + -0.05408687889575958, + 0.025612428784370422, + -0.028355197980999947, + 0.05432537943124771, + 0.06508445739746094, + -0.016496365889906883, + -0.06407744437456131, + -0.0007921070791780949, + -0.012130459770560265, + -0.03604025021195412, + -0.04430830851197243, + 0.03376123681664467, + 0.04693182557821274, + 0.0009747099247761071, + -0.010248946025967598, + 0.004117466043680906, + 0.003461586544290185, + 0.0230286605656147, + -0.025214925408363342, + -0.02203490398824215, + 0.026526685804128647, + -0.01485335361212492, + -0.019318634644150734, + -0.10589473694562912, + -0.010235696099698544, + 0.012474961578845978, + -0.0997466966509819, + 0.06105642393231392, + -0.024777673184871674, + 0.056445393711328506, + 0.04743533208966255, + 0.03312522917985916, + -0.05639239400625229, + -0.018523629754781723, + -0.008221682161092758, + -0.012461711652576923, + 0.0205906443297863, + 0.0091889388859272, + 0.008354183286428452, + 0.025572678074240685, + 0.08734460920095444, + -0.09264464676380157, + -0.010315196588635445, + -0.06248743459582329, + -0.02644718438386917, + 0.018695879727602005, + -0.04202929139137268, + -0.04478531330823898, + 0.0059227910824120045, + -0.04004177823662758, + -0.03174722194671631, + 0.011136702261865139, + -0.04107528552412987, + 0.027719194069504738, + 0.08257457613945007, + -0.03980327770113945, + -0.035086244344711304, + 0.004922409541904926, + 0.0594664141535759, + 0.03397323563694954, + 0.02204815298318863, + 0.010434447787702084, + -0.09190264344215393, + -0.05085385590791702, + 0.03903477266430855, + 0.00019574940961319953, + 0.03193272277712822, + 0.006519045680761337, + -0.05755840241909027, + -0.0433013029396534, + -0.018099626526236534, + -0.052867867052555084, + -0.06487245112657547, + 0.00046623763046227396, + -0.04123428836464882, + -0.061109427362680435, + -0.013289842754602432, + 0.01526410598307848, + 0.04724983125925064, + -0.02748069167137146, + 0.07695653289556503, + 0.06582646071910858, + -0.04176429286599159, + 0.00859931018203497, + -0.03206522390246391, + 0.02200840413570404, + 0.00590622890740633, + 0.01758287288248539, + 0.02402241714298725, + -0.10865075886249542, + -0.05596838891506195, + -0.08888161927461624, + 0.02461867220699787, + -0.0655614584684372, + 0.05239086598157883, + -0.017662372440099716, + 0.029574206098914146, + 0.038690268993377686, + 0.018894631415605545, + -0.019040383398532867, + 0.02339966408908367, + -0.04420230910181999, + 0.04287729784846306, + -0.03725925832986832, + -0.030210210010409355, + 0.0006550514372065663, + -0.016695115715265274, + 0.01839112862944603, + -0.023333413526415825 + ] + }, + { + "id": "b3ce28c6-d34b-4015-a292-874de892c5d2", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "davenporttonya", + "reviewDate": "2022-08-20T00:36:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fb4fb368-261b-44d1-a1f7-52c9f5e0c444", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "allenjeffery", + "reviewDate": "2021-03-04T08:25:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea4c44c1-76bb-4fc1-9c66-69245a1487a7", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "brownjorge", + "reviewDate": "2021-04-03T20:50:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "97c21881-84d9-4152-89be-e2cbd58323b1", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelle51", + "reviewDate": "2022-06-12T02:49:28", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1044cb83-ce88-40d1-826d-36dec5227c29", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "douglasdavidson", + "reviewDate": "2021-12-09T14:21:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d03ffabb-993e-42ec-bcad-3ed6d33ff277", + "productId": "786102e8-0d7e-4244-aa04-8114a07f064c", + "category": "Electronics", + "docType": "customerRating", + "userName": "esparzajoanne", + "reviewDate": "2022-08-18T00:20:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Super (Black)", + "description": "This Premium Stand Super (Black) is a super wide angle lens for Canon's new Light Cinema DSLR models featuring 16 megapixels. Unlike other Canon cameras this lens comes with a", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-06-18T16:39:02", + "price": 896.33, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2021-02-21T09:08:48", + "newPrice": 862.34 + }, + { + "priceDate": "2022-03-15T09:08:48", + "newPrice": 896.33 + } + ], + "descriptionVector": [ + 0.010512130334973335, + 0.005333799868822098, + -0.010864926502108574, + 0.08113116025924683, + 0.04551668465137482, + 0.020629607141017914, + -0.05324232205748558, + 0.025927528738975525, + -0.033222634345293045, + 0.04487089067697525, + 0.03762361779808998, + 0.020521974191069603, + 0.0006536446162499487, + -0.07070274651050568, + -0.029060836881399155, + 0.003456206526607275, + 0.023152995854616165, + 0.010111496783792973, + 0.06324020773172379, + -0.008712271228432655, + 0.002441170159727335, + -0.003396410495042801, + -0.027410468086600304, + -0.025305651128292084, + -0.001686246134340763, + 0.034107618033885956, + 0.018464993685483932, + 0.015032704919576645, + -0.0042993295937776566, + 0.024181487038731575, + 0.06807172298431396, + 0.0032110430765897036, + 0.017795277759432793, + 0.03185928985476494, + -0.01737670600414276, + 0.0011652738321572542, + 0.051520198583602905, + 0.007863168604671955, + 0.003599716816097498, + -0.0023649302311241627, + 0.01143298763781786, + -0.018225809559226036, + 0.0027700478676706553, + 0.05204640328884125, + -0.02220821939408779, + -0.06539286673069, + 0.012365804985165596, + -0.058982737362384796, + -0.0553949773311615, + -0.041498396545648575, + 0.0025787008926272392, + 0.014219479635357857, + -0.05065913870930672, + -0.00459830928593874, + 0.027577897533774376, + 0.030400266870856285, + 0.04888917878270149, + 0.15786133706569672, + 0.07759124040603638, + 0.01979246363043785, + -0.027219122275710106, + -0.008724230341613293, + 0.03633202612400055, + 0.04223986715078354, + -0.12628906965255737, + 0.020545892417430878, + -0.019003156572580338, + -0.028606388717889786, + -0.015403439290821552, + 0.014853316359221935, + -0.03114173747599125, + -0.015451276674866676, + 0.02158634178340435, + 0.000710824504494667, + 0.03310304507613182, + 0.050228606909513474, + 0.10849379003047943, + 0.0519985668361187, + -0.033126961439847946, + 0.04202460125088692, + 0.06773686408996582, + -0.03470557555556297, + -0.01839323714375496, + 0.032863859087228775, + 0.013705234043300152, + -0.0009597251773811877, + 0.06721065938472748, + -0.04097219184041023, + -0.023105159401893616, + 0.012868090532720089, + -0.0046072788536548615, + 0.06706715375185013, + -0.009220536798238754, + -0.04912836104631424, + 0.004051176365464926, + 0.013537805527448654, + 0.012030947022140026, + 0.03001757338643074, + -0.02220821939408779, + 0.05372069031000137, + 0.09399925172328949, + -0.0327921062707901, + 0.011062253266572952, + 0.032696433365345, + -0.04147448018193245, + 0.004215615335851908, + -0.0009604726219549775, + -0.062474820762872696, + -0.012072804383933544, + -0.12179241329431534, + -0.0449187271296978, + -0.040996111929416656, + 0.010338721796870232, + 0.060417838394641876, + -0.08218356966972351, + 0.023511771112680435, + -0.06644526869058609, + -0.02970663271844387, + 0.07840446382761002, + 0.016467807814478874, + -0.0466647669672966, + 0.02164613828063011, + 0.03865211084485054, + 0.011038334108889103, + 0.01787899248301983, + 0.03633202612400055, + -0.07146812975406647, + -0.0015442307339981198, + 0.01261694822460413, + -0.10600627958774567, + -0.0006925119669176638, + 0.011253600008785725, + 0.046688687056303024, + -0.004906258545815945, + -0.06443613022565842, + 0.036212433129549026, + 0.014183602295815945, + 0.04714313521981239, + -0.03991978242993355, + 0.04035031422972679, + -0.009866333566606045, + -0.0656798854470253, + 0.09825672209262848, + 0.09581705182790756, + 0.03327047452330589, + 0.00366848218254745, + 0.013298621401190758, + 0.008951455354690552, + -0.01431515347212553, + 0.007432638201862574, + 0.08620185405015945, + -0.10571926087141037, + -0.08137034624814987, + -0.09816104918718338, + 0.03932182490825653, + -0.005614840891212225, + -0.04125921428203583, + 0.0016488736728206277, + -0.07912201434373856, + 0.08352299779653549, + -0.01215651910752058, + -0.018740054219961166, + 0.003214032854884863, + 0.011289477348327637, + 0.07094192504882812, + 0.03135700151324272, + 0.03834117203950882, + -0.03171577677130699, + -0.023810751736164093, + 0.03140483796596527, + 0.062474820762872696, + -0.021418914198875427, + -0.009208577685058117, + -0.08916773647069931, + 0.04979807510972023, + -0.008556801825761795, + 0.045971136540174484, + 0.049319710582494736, + 0.014757643453776836, + -0.012676743790507317, + 0.00629651453346014, + -0.04551668465137482, + -0.06089620664715767, + -0.0023918384686112404, + 0.018536748364567757, + -0.08988528698682785, + 0.09385573863983154, + 0.10562358796596527, + 0.0044249012134969234, + 0.0292521845549345, + -0.009938089177012444, + -0.04635382816195488, + 0.05831301957368851, + 0.0035279616713523865, + 0.03592541441321373, + 0.0005564761813730001, + 0.027171283960342407, + 0.00752831157296896, + 0.06070486083626747, + -0.027410468086600304, + -0.00868237391114235, + 0.03707349672913551, + 0.048028115183115005, + 0.02442067116498947, + -0.06343155354261398, + -0.03511218726634979, + 0.007958842441439629, + 0.07209000736474991, + -0.07094192504882812, + 0.015487154014408588, + -0.04989375174045563, + -0.003199083963409066, + 0.005342768970876932, + -0.0038658089470118284, + 0.04066125303506851, + 0.04692786931991577, + 0.005581953097134829, + -0.030615532770752907, + 0.05926975607872009, + -0.0799352377653122, + 0.0834273248910904, + -0.0730467438697815, + 0.06515368074178696, + -0.05654305964708328, + 0.01752021722495556, + 0.014614133164286613, + 0.07682584971189499, + -0.047621503472328186, + 0.04898485168814659, + -0.011636294424533844, + -0.009142802096903324, + -0.011606396175920963, + 0.013143151998519897, + 0.029539205133914948, + 0.0003617655602283776, + 0.018369318917393684, + -0.03551880270242691, + -0.05185505747795105, + -0.0898374542593956, + -0.0090710474178195, + -0.0760604590177536, + 0.02051001414656639, + -0.03494476154446602, + 0.04518182948231697, + -0.013860703445971012, + 0.03960884362459183, + 0.0519985668361187, + -0.03645161911845207, + -0.05668657273054123, + -0.04618639871478081, + -0.052811793982982635, + 0.014972908422350883, + 0.0030765021219849586, + 0.00529194250702858, + -0.02414560876786709, + 0.018596544861793518, + 0.025066467002034187, + -0.03678647428750992, + 0.0002231136750197038, + -0.010314803570508957, + -0.02024691179394722, + 0.07960038632154465, + -0.029874062165617943, + 0.025568753480911255, + -0.11270342767238617, + 0.04233554005622864, + -0.004069115035235882, + -0.050180770456790924, + -0.04374672472476959, + 0.004448819439858198, + -0.0029210327193140984, + 0.030950389802455902, + 0.03743227198719978, + -0.002201986266300082, + -0.04683219641447067, + 0.03508827090263367, + -0.04173758253455162, + 0.050850484520196915, + 0.04625815525650978, + -0.05668657273054123, + 0.05056346580386162, + -0.04178541898727417, + 0.02616671286523342, + 0.006786841433495283, + 0.07534290850162506, + -0.04984591156244278, + -0.010888844728469849, + -0.0071515971794724464, + 0.016563480719923973, + -0.05797816440463066, + -0.025162139907479286, + 0.06013081967830658, + -0.03408369794487953, + -0.010667599737644196, + 0.03535137325525284, + -0.010625742375850677, + -0.030926471576094627, + -0.07271189242601395, + -0.022447403520345688, + 0.021622220054268837, + -0.016611317172646523, + -0.007432638201862574, + -0.009633129462599754, + -0.08414487540721893, + 0.05386420339345932, + 0.04365105181932449, + -0.11002457141876221, + -0.014434744603931904, + -0.03150051087141037, + -0.03042418509721756, + -0.008933516219258308, + -0.003360532922670245, + 0.04202460125088692, + 0.02913259156048298, + -0.011008436791598797, + 0.02055785059928894, + 0.04750191047787666, + -0.0397762730717659, + 0.021466750651597977, + 0.0011914345668628812, + -0.051424525678157806, + 0.008012658916413784, + 0.03437071666121483, + 0.04697570577263832, + 0.09854374080896378, + 0.014398867264389992, + -0.016479765996336937, + 0.0190151147544384, + -0.06032216548919678, + -0.08381001651287079, + -0.03640378266572952, + -0.09883076697587967, + 0.04539709538221359, + -0.01650368608534336, + -0.05319448560476303, + 0.002137705683708191, + -0.008640516549348831, + -0.009710864163935184, + -0.039441414177417755, + 0.009358067996799946, + 0.10677167028188705, + 0.02621454931795597, + -0.06783253699541092, + -0.024851201102137566, + 0.04819554463028908, + -0.02389446645975113, + 0.018572624772787094, + -0.00034569541458040476, + -0.028295448049902916, + 0.024121690541505814, + 0.0008946970920078456, + 0.008012658916413784, + 0.020019687712192535, + 0.03575798496603966, + 0.03212239220738411, + -0.03678647428750992, + 0.020330626517534256, + 0.0008707786910235882, + 0.05864787846803665, + -0.05128101631999016, + -0.01073935441672802, + -0.007097780704498291, + 0.015307766385376453, + 0.00868835300207138, + -0.01176784560084343, + 0.09639108926057816, + 0.014948990195989609, + 0.031237410381436348, + -0.04446427524089813, + -0.07022437453269958, + -0.002922527492046356, + 0.005764330737292767, + -0.00996798649430275, + 0.05204640328884125, + 0.014123805798590183, + 0.0517115481197834, + 0.05955677852034569, + 0.055012285709381104, + 0.06414910405874252, + 0.04214419424533844, + -0.0008192046661861241, + 0.06080053374171257, + -0.01850087009370327, + -0.0028552571311593056, + 0.09399925172328949, + -0.042526885867118835, + -0.041761498898267746, + -0.017699604853987694, + -0.04157015308737755, + -0.023511771112680435, + -0.02549699693918228, + 0.011773824691772461, + 0.01223425380885601, + -0.020785076543688774, + 0.012939846143126488, + -0.011295457370579243, + -0.007809352595359087, + -0.017316909506917, + -0.049463219940662384, + 0.00530689163133502, + 0.013454091735184193, + 0.010559966787695885, + -0.0863453671336174, + 0.02599928341805935, + 0.008891659788787365, + -0.060513511300086975, + 0.003680441528558731, + 0.054199058562517166, + -0.0018671288853511214, + -0.06142241135239601, + -0.00384189048781991, + -0.09026798605918884, + -0.1041884794831276, + 0.004583360627293587, + 0.1038057878613472, + 0.040517743676900864, + 0.09050716459751129, + -0.04243121296167374, + 0.04420117288827896, + -0.026501569896936417, + 0.06625392287969589, + 0.020187117159366608, + -0.06362289935350418, + -0.013705234043300152, + -0.0011301436461508274, + 0.07146812975406647, + 0.0027087570633739233, + 0.02889340929687023, + -0.05683008208870888, + -0.05027644336223602, + -0.007073862012475729, + -0.09232496470212936, + 0.02867814339697361, + -0.042168110609054565, + -0.06462747603654861, + 0.0060483613051474094, + 0.013394295237958431, + 0.05395987629890442, + -0.009698905050754547, + 0.07873932272195816, + -0.06037000194191933, + 0.004176747985184193, + 0.01680266484618187, + 0.061852943152189255, + -0.09734782576560974, + -0.0760604590177536, + -0.04927187040448189, + -0.01064368151128292, + 0.022184301167726517, + -0.016455847769975662, + -0.09873509407043457, + 0.06075269728899002, + -0.0022572975140064955, + -0.04092435538768768, + -0.02733871340751648, + -0.00614104513078928, + 0.06271400302648544, + 0.08486242592334747, + -0.0448230542242527, + 0.012365804985165596, + -0.012377764098346233, + 0.03685823082923889, + 0.05123317986726761, + -0.014913112856447697, + -0.01243755966424942, + -0.004813574720174074, + -0.08572348952293396, + 0.06099187955260277, + -0.016994012519717216, + 0.0448230542242527, + -0.004565421491861343, + -0.05735628679394722, + -0.008706292137503624, + -0.02210058644413948, + 0.012329927645623684, + 0.010219129733741283, + -0.01505662314593792, + 0.010799150913953781, + -0.016718950122594833, + 0.01563066430389881, + -0.03083079680800438, + 0.01726907305419445, + -0.022578954696655273, + 0.0018073329702019691, + 0.05721277743577957, + 0.0060872286558151245, + -0.010559966787695885, + 0.018787890672683716, + -0.019648952409625053, + -0.002169098472222686, + 0.04994158819317818, + 0.08089197427034378, + -0.02065352536737919, + -0.04640166461467743, + -0.04652125760912895, + -0.02082095295190811, + 0.021885322406888008, + -0.03437071666121483, + 0.020282790064811707, + 0.05955677852034569, + 0.0343468002974987, + 0.0694589912891388, + -0.025257814675569534, + 0.08328381180763245, + 0.039441414177417755, + -0.013179030269384384, + -0.020904667675495148, + -0.039345741271972656, + -0.004499645903706551, + 0.01521209254860878, + 0.023200832307338715, + 0.022782260552048683 + ] + }, + { + "id": "faf58b95-f733-4cdd-9bd2-e9b85cdb0a1a", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "allison42", + "reviewDate": "2021-09-13T01:55:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d2f4ae46-60f7-4ddd-8d81-b9eda1cd0661", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "lrussell", + "reviewDate": "2022-04-04T03:53:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9049523d-e921-4b64-a8b0-741a2b0160a6", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael64", + "reviewDate": "2022-06-01T11:11:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e146c56d-d790-41c4-8b97-f536d1a1c83a", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "carlabennett", + "reviewDate": "2022-12-25T23:45:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b119475a-a7a1-4138-9683-c4a716ebfe5e", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "chasekenneth", + "reviewDate": "2021-09-23T12:39:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "51f98225-d972-4990-92b7-dc1ee8fff32c", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "perezgregory", + "reviewDate": "2021-02-21T09:08:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "69764602-4f51-49f6-bfe6-455b6d2fa6c3", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "judyharrison", + "reviewDate": "2021-12-05T09:16:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "81c2a757-5c91-4adf-bb91-75fd39be99b7", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "priceamy", + "reviewDate": "2022-08-31T02:34:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8ba608fe-ea22-4b73-8f33-15792219f6ae", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "xsmith", + "reviewDate": "2022-07-13T19:40:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3e25700f-5ac0-4c7c-acbc-d9b1771bbf00", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "vjohnson", + "reviewDate": "2022-05-29T12:32:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0af3cd04-7012-45a8-9b59-8055b5024f9f", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "douglaserika", + "reviewDate": "2022-05-02T05:36:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "25d1d356-bdc0-42db-9f67-ac814d744766", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "ericawalsh", + "reviewDate": "2021-05-27T12:05:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "22e3219d-1e61-47f1-a86e-0e8eb7403406", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "tanya81", + "reviewDate": "2022-04-10T07:55:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "20ee57b1-676c-4f3b-af74-b51c476be1d2", + "productId": "5eb6c1d9-d928-4cc3-943f-493ebb9e9989", + "category": "Accessory", + "docType": "customerRating", + "userName": "qhouston", + "reviewDate": "2022-06-28T05:33:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "658c26dc-1fed-492b-8847-8d51816657ed", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer 3000 (Black)", + "description": "This Basic Computer 3000 (Black) is an easy-to-use, yet advanced computer for the classroom. It's the perfect way to begin exploring the science and technology of programming. Designed to mimic a typical", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-06-13T06:54:54", + "price": 165.91, + "stock": 72, + "priceHistory": [ + { + "priceDate": "2021-05-21T23:50:55", + "newPrice": 158.75 + }, + { + "priceDate": "2021-11-05T23:50:55", + "newPrice": 173.33 + }, + { + "priceDate": "2022-04-22T23:50:55", + "newPrice": 171.11 + }, + { + "priceDate": "2022-10-07T23:50:55", + "newPrice": 179.39 + }, + { + "priceDate": "2024-11-22T23:50:55", + "newPrice": 165.91 + } + ], + "descriptionVector": [ + -0.04081772267818451, + 0.010635257698595524, + -0.01845167949795723, + 0.040670011192560196, + -0.003785117529332638, + 0.08143849670886993, + -0.025086406618356705, + 0.029173102229833603, + 0.058247730135917664, + 0.10635257512331009, + 0.05160069465637207, + -0.10536782443523407, + 0.03618941828608513, + -0.043919675052165985, + 0.026514288038015366, + 0.03350598365068436, + -0.02021191269159317, + -0.00024984084302559495, + -0.029099246487021446, + -0.05485035479068756, + 8.674227865412831e-05, + -0.03143801912665367, + -0.07523459941148758, + 0.1024135872721672, + -0.034663062542676926, + 0.003234275383874774, + -0.005560738034546375, + 0.01702379807829857, + -0.023166151717305183, + -0.0035266217309981585, + 0.04305802285671234, + 0.04931115731596947, + 0.008265712298452854, + -0.03542624041438103, + -0.034367635846138, + -0.015054305084049702, + -0.09926240146160126, + -0.02996089868247509, + 0.0033942966256290674, + -0.049335777759552, + 0.03321056067943573, + -0.010924526490271091, + 0.044756706804037094, + -0.037912722676992416, + 0.058690864592790604, + -0.011386126279830933, + -0.025234118103981018, + -0.017651572823524475, + -0.01900559850037098, + -0.02582496590912342, + 0.04465823248028755, + 0.009816687554121017, + 0.06287603825330734, + 0.0683906152844429, + -0.013823372311890125, + 0.0862637534737587, + 0.024372464045882225, + 0.18385209143161774, + 0.027400558814406395, + -0.05864162743091583, + 0.04268874228000641, + 0.014635788276791573, + 0.026957422494888306, + -0.050418999046087265, + -0.00013924924132879823, + 0.04652925208210945, + -0.07533307373523712, + 0.04209789261221886, + 0.015177398920059204, + 0.06021722033619881, + -0.022341426461935043, + -0.03948831558227539, + 0.008733466267585754, + 0.06292527168989182, + 0.02725284732878208, + 0.014746571891009808, + 0.03899594396352768, + 0.036263272166252136, + 0.005000663455575705, + -0.006745510268956423, + -0.008881178684532642, + -0.0006843215669505298, + 0.03495848551392555, + -0.05238848924636841, + 0.06519018858671188, + 0.0011101473355665803, + -0.03739573061466217, + -0.08685459941625595, + 0.02131975255906582, + 0.06607645750045776, + -0.030527127906680107, + 0.06848908960819244, + 0.034613825380802155, + 0.02268608659505844, + -0.016605280339717865, + 0.056425947695970535, + -0.07168951630592346, + 0.0032435073517262936, + -0.021442845463752747, + 0.013257144019007683, + 0.09286155551671982, + 0.018870195373892784, + -0.11560918390750885, + -0.04896649718284607, + 0.006037724204361439, + -0.060167983174324036, + -0.024815600365400314, + 0.007280966266989708, + 0.03023170307278633, + -0.08537748456001282, + -0.09355087578296661, + 0.014254199340939522, + -0.005693063139915466, + -0.01258013118058443, + -0.026120388880372047, + 0.014943521469831467, + -0.014795809052884579, + -0.049261920154094696, + 0.04608611389994621, + -0.0026849715504795313, + 0.025751110166311264, + -0.00666549988090992, + 0.017811594530940056, + 0.020396552979946136, + -0.054111797362565994, + -0.059675611555576324, + -0.04246717318892479, + 0.008278021588921547, + 0.028680728748440742, + 0.0186732467263937, + -0.016556043177843094, + 0.0699169710278511, + 0.023990875110030174, + 0.08764240145683289, + 0.01591595821082592, + 0.07360976934432983, + 0.06469781696796417, + 0.03993145376443863, + -0.0680459514260292, + 0.0317334420979023, + -0.04037458822131157, + 0.015435894019901752, + -0.05209306627511978, + -0.024938693270087242, + -0.04123624041676521, + -0.011133785359561443, + -0.03542624041438103, + 0.0945848599076271, + 0.022156786173582077, + 0.06435315310955048, + -0.05627823621034622, + 0.011693859472870827, + 0.04059615731239319, + -0.09177833050489426, + 0.013306381180882454, + -0.03860204666852951, + 0.00737944059073925, + 0.0609065443277359, + -0.044313572347164154, + 0.05194535478949547, + -0.0256033968180418, + 0.02826221100986004, + -0.003212733892723918, + 0.004043613560497761, + 0.021504392847418785, + 0.049483489245176315, + 0.04889264330267906, + 0.0395621731877327, + -0.10901138931512833, + 0.04197480157017708, + -0.043156497180461884, + -0.021061256527900696, + -0.008554981090128422, + 0.03685412183403969, + -0.042713358998298645, + -0.018205491825938225, + -0.00033792946487665176, + -0.003600477706640959, + 0.005166839342564344, + -0.11423054337501526, + -0.015226636081933975, + 0.006776283960789442, + -0.03264433145523071, + 0.03151187300682068, + 0.039192892611026764, + 0.00422825338318944, + 0.06740586459636688, + 0.011681550182402134, + -0.04234407842159271, + -0.01794699765741825, + 0.04007916525006294, + -0.021442845463752747, + 0.02236604504287243, + 0.05034514144062996, + 0.0019679535180330276, + -0.012309325858950615, + -0.03916827589273453, + 0.03170882165431976, + -0.05509654060006142, + 0.011109166778624058, + -0.03707568719983101, + 0.03774039074778557, + 0.08399883657693863, + -0.010395225137472153, + 0.003218888770788908, + 0.00397898955270648, + -0.028656110167503357, + 0.0515514574944973, + -0.01379875373095274, + -0.02836068719625473, + -0.016826847568154335, + -0.007188646122813225, + -0.06139891594648361, + 0.0094227883964777, + 0.09167985618114471, + 0.0056592123582959175, + 0.017823902890086174, + -0.04005454480648041, + -0.029591618105769157, + -0.06809519231319427, + 0.0927138403058052, + -0.049335777759552, + -0.06775052845478058, + -0.04844950512051582, + 0.004994508810341358, + -0.07897663116455078, + 0.12791851162910461, + 0.03239814564585686, + 0.01667913608253002, + 0.027351321652531624, + -0.058296967297792435, + 0.054210271686315536, + -0.013306381180882454, + 0.02577572874724865, + -0.03618941828608513, + 0.03542624041438103, + 0.04079310595989227, + -0.05514577776193619, + -0.0927138403058052, + 0.12713071703910828, + -0.019030217081308365, + -0.0016356016276404262, + -0.0672089159488678, + -0.07779493927955627, + 0.0036651017144322395, + -0.0005042976699769497, + 0.06725815683603287, + -0.06607645750045776, + -0.00941663421690464, + -0.07464375346899033, + 0.0009701287490315735, + 0.050369761884212494, + -0.029887042939662933, + 0.04239331930875778, + -0.006530097220093012, + 0.032299671322107315, + 0.0421963669359684, + -0.052733149379491806, + -0.021012019366025925, + 0.00842573307454586, + -0.020248841494321823, + 0.005822311155498028, + -0.06799671798944473, + 0.03355522081255913, + -0.003185037989169359, + -0.01192158181220293, + 0.028385305777192116, + -0.09231994301080704, + 0.032471999526023865, + 0.01910407282412052, + 0.03446611016988754, + 0.007631781976670027, + 0.02813911810517311, + -0.008690384216606617, + 0.0029696247074753046, + 0.0026449663564562798, + -4.1039100324269384e-05, + 0.05238848924636841, + -0.0784350261092186, + -0.009952089749276638, + 0.013860301114618778, + 0.005126833915710449, + 0.006536251865327358, + -0.03569704294204712, + 0.008081072010099888, + -0.038306619971990585, + -0.011693859472870827, + -0.0034435337875038385, + 0.003585091093555093, + -0.012555512599647045, + -0.03966064751148224, + 0.05859239026904106, + -0.019854942336678505, + 0.032299671322107315, + 0.049212682992219925, + 0.05667213350534439, + 0.04207327589392662, + -0.0515514574944973, + 0.002186443889513612, + 0.03188115358352661, + 0.01371258869767189, + -0.1019212156534195, + 0.0032558166421949863, + -0.0799613818526268, + 0.04027611389756203, + 0.039463698863983154, + 0.041334714740514755, + -0.06095578148961067, + -0.03210272267460823, + 0.013109431602060795, + 0.010512163862586021, + -0.029394669458270073, + -0.024643270298838615, + -0.05908476188778877, + 0.08271867036819458, + -0.024434011429548264, + 0.09945935010910034, + 0.025209499523043633, + -0.024273989722132683, + -0.005253004841506481, + -0.034613825380802155, + -0.003825122956186533, + -0.04384581744670868, + 0.10251206159591675, + 0.07257578521966934, + -0.05029590427875519, + -0.04864645376801491, + 0.0007277888944372535, + -0.0534224733710289, + -0.023424645885825157, + 0.00787796825170517, + -0.025406448170542717, + -0.0014301898190751672, + 0.029665475711226463, + 0.06794747710227966, + -0.11275342106819153, + 0.004982199519872665, + 0.057755354791879654, + 0.013010957278311253, + 0.06233442574739456, + 0.06046340614557266, + 0.04335344582796097, + -0.06194052845239639, + -0.03840509429574013, + 0.01308481302112341, + 0.01192158181220293, + -0.027105135843157768, + 0.004083618987351656, + -0.030330179259181023, + -0.010949145071208477, + 0.0016909936675801873, + -0.055588915944099426, + 0.04825255647301674, + -0.0016448335954919457, + 0.040571536868810654, + 0.017725428566336632, + 0.03611556068062782, + -0.024040112271904945, + -0.05632747337222099, + 0.00829033087939024, + -0.03355522081255913, + -0.02693280391395092, + 0.11639698594808578, + 0.04212251305580139, + -0.04963120073080063, + -0.022489137947559357, + 0.05238848924636841, + 0.07577621191740036, + 0.04244255647063255, + 0.028656110167503357, + 0.050468236207962036, + 0.0034404564648866653, + -0.02863149158656597, + 0.00608696136623621, + 0.004280568100512028, + -0.006511633284389973, + -0.0023110758047550917, + 0.008351877331733704, + -0.03618941828608513, + -0.006056188140064478, + -0.016235999763011932, + 0.03335827216506004, + 0.03244738280773163, + -0.03586937487125397, + 0.09015350043773651, + -0.13638733327388763, + -0.07198493927717209, + -0.0702616274356842, + -0.012075448408722878, + 0.018414750695228577, + 0.024052422493696213, + 0.02621886320412159, + -0.07577621191740036, + 0.020556574687361717, + -0.012026211246848106, + -0.022735323756933212, + -0.03606632351875305, + -0.02826221100986004, + 0.021344371140003204, + -0.012493965215981007, + 0.024852529168128967, + -0.005797692574560642, + 0.015891339629888535, + -0.047612473368644714, + -0.06779976934194565, + -0.05947866290807724, + -0.023646214976906776, + -0.014303436502814293, + -0.021898290142416954, + -0.006640881299972534, + -0.021282823756337166, + -0.045298319309949875, + 0.030970264226198196, + 0.043033402413129807, + -0.03508157655596733, + -0.0437227264046669, + -0.049975860863924026, + 0.059035524725914, + -0.006345457397401333, + -0.042048655450344086, + 0.038848232477903366, + -0.009293541312217712, + -0.027942169457674026, + -0.023609286174178123, + 0.015509750694036484, + -0.02946852520108223, + 0.006671654526144266, + -0.053570184856653214, + -0.031585730612277985, + 0.029862424358725548, + 0.02406473085284233, + 0.0027126676868647337, + -0.05312705039978027, + 0.033899884670972824, + -0.003001936711370945, + -0.019153309985995293, + 0.01651911437511444, + 0.0927138403058052, + -0.016863776370882988, + 0.0787796825170517, + 0.002538798376917839, + -0.07149256020784378, + 0.017306912690401077, + 0.06415620446205139, + -0.09197527915239334, + 0.004997586365789175, + -0.043427299708127975, + 0.021467464044690132, + 0.07617010921239853, + 0.007040934171527624, + -0.04047306254506111, + -0.018267039209604263, + -0.038922086358070374, + 0.004856029059737921, + 0.03801119700074196, + -0.023609286174178123, + -0.040571536868810654, + 0.014734262600541115, + 0.009158138185739517, + 0.005197612568736076, + -0.04913882911205292, + 0.018439369276165962, + 0.04273797944188118, + -0.02186136320233345, + -0.04793251305818558, + 0.029936280101537704, + -0.029050009325146675, + -0.05711527168750763, + -0.030748695135116577, + 0.03636174649000168, + -0.012592440471053123, + -0.054554931819438934, + -0.015238945372402668, + 0.05007433518767357, + 0.021467464044690132, + -0.03259509429335594, + 0.02236604504287243, + 0.027129754424095154, + -0.029394669458270073, + -0.011133785359561443, + 0.005345324520021677, + -0.06967078149318695, + -0.03244738280773163, + -0.026785092428326607, + -0.00633314810693264, + 0.03508157655596733, + 0.01944873481988907, + 0.005265314131975174, + 0.02946852520108223, + 0.007397904526442289, + -0.01558360643684864, + 0.04490441828966141, + -0.025972677394747734, + -0.027351321652531624, + -0.005465340800583363, + -0.013675660826265812, + -0.02461865171790123, + 0.040620774030685425, + -0.04460899531841278, + 0.0755300223827362, + -0.03515543416142464, + -0.032521236687898636, + -0.039020560681819916, + 0.03050250932574272, + -0.025406448170542717, + 0.029099246487021446, + 0.031191831454634666, + 0.025209499523043633, + 0.022944582626223564, + 0.019731849431991577, + -0.010339833796024323, + -0.08390036225318909 + ] + }, + { + "id": "33935c52-c4da-4e02-9d13-ce01dcc12e09", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "nielsentony", + "reviewDate": "2021-10-16T01:57:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "43f3e06a-98d1-4e85-9c38-ddd2e32acdf2", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciadalton", + "reviewDate": "2021-12-05T02:11:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "494ce1e5-afcb-4a8b-a6db-13dabfaf6c75", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevinarcher", + "reviewDate": "2022-10-10T13:33:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c931f4cf-b6cc-471c-ac59-d44588d8153d", + "productId": "658c26dc-1fed-492b-8847-8d51816657ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "corey19", + "reviewDate": "2021-05-21T23:50:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Super (Black)", + "description": "This Luxe Filter Super (Black) is the world's premiere ultra-clean, high-quality tube filter that's built for the extreme performance you want from your favorite brand, and the ultimate, non-invasive, ultra-tight tube filter to keep your filter from falling out of sight.\n\n\nFeatures: Full color tint-less\n\nNon-invasive, low emission, ultra-tight and clear-coated filter\n\nNo need to apply special additives\n", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-10-30T02:37:28", + "price": 913.18, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-06-03T19:39:27", + "newPrice": 914.73 + }, + { + "priceDate": "2021-10-22T19:39:27", + "newPrice": 825.19 + }, + { + "priceDate": "2022-03-12T19:39:27", + "newPrice": 878.27 + }, + { + "priceDate": "2022-07-31T19:39:27", + "newPrice": 995.58 + }, + { + "priceDate": "2025-08-23T19:39:27", + "newPrice": 913.18 + } + ], + "descriptionVector": [ + 0.02268780767917633, + -0.01833813078701496, + -0.036985114216804504, + -0.00361293344758451, + 0.019972477108240128, + -0.01142111700028181, + -0.05399775132536888, + -0.02684444934129715, + 0.005720209795981646, + 0.009670951403677464, + -0.024721087887883186, + 0.022070102393627167, + 0.010520296171307564, + -0.03847790136933327, + 0.06774169951677322, + 0.01427157036960125, + -0.059557102620601654, + -0.029624124988913536, + 0.042287085205316544, + -0.035878393799066544, + 0.02604657970368862, + -0.061101365834474564, + -0.06238825246691704, + -0.02190280705690384, + -0.017849113792181015, + 0.009156196378171444, + 0.01727001555263996, + 0.01976657472550869, + 0.0026413341984152794, + -0.05914529785513878, + 0.10614238679409027, + 0.024103382602334023, + 0.0379631482064724, + 0.10305386036634445, + -0.06002037972211838, + -0.06156464293599129, + 0.08127974718809128, + 0.010616812855005264, + 0.04432036727666855, + 0.06480760127305984, + 0.007200129330158234, + -0.044577743858098984, + -0.0936853289604187, + 0.05806431546807289, + -0.018646983429789543, + -0.07850006967782974, + -0.03165740519762039, + -0.009291320107877254, + -0.0025158629287034273, + -0.04843840375542641, + 0.005022074095904827, + 0.0016552576562389731, + -0.0901850014925003, + -0.023176824674010277, + -0.017321491613984108, + 0.00017925925203599036, + 0.05585087090730667, + 0.18551753461360931, + 0.0724259689450264, + -0.014155750162899494, + -0.0061609684489667416, + -0.06187349930405617, + 0.048798732459545135, + -0.003979695960879326, + 0.003045094897970557, + -0.003970044665038586, + -0.016034604981541634, + -0.09069975465536118, + 0.001930329599417746, + 0.05976300314068794, + -0.03384511172771454, + 0.04239003732800484, + 0.05976300314068794, + 0.04594184458255768, + 0.02526157908141613, + 0.03505478426814079, + 0.03340756893157959, + -0.02304813452064991, + 0.015056570991873741, + 0.004298200365155935, + 0.08797155320644379, + -0.011942305602133274, + -0.031528715044260025, + 0.047537583857774734, + 0.00844197440892458, + 0.03770577162504196, + -0.01306189689785242, + -0.09126598387956619, + 0.042441513389348984, + 0.007425334304571152, + -0.006209226790815592, + 0.09404565393924713, + 0.040871512144804, + -0.05945415049791336, + 0.03886396810412407, + 0.01679386757314205, + -0.04699709266424179, + 0.002678332384675741, + -0.07541154325008392, + 0.0936853289604187, + -0.001437291270121932, + -0.07093317806720734, + -0.0036354539915919304, + 0.047923650592565536, + 0.02604657970368862, + -0.023421332240104675, + 0.03361347317695618, + -0.07335252314805984, + 0.024875514209270477, + -0.04565872997045517, + 0.04733167961239815, + -0.0748453140258789, + -0.03538937494158745, + 0.013049027882516384, + -0.00938783586025238, + 0.012514970265328884, + -0.020023951306939125, + 0.006871973164379597, + 0.05258217826485634, + 0.026715761050581932, + -7.726345211267471e-05, + 0.034488555043935776, + 0.05657152459025383, + 0.01486353762447834, + -0.01755313016474247, + -0.02012690342962742, + 0.04432036727666855, + -0.034771669656038284, + 0.039507411420345306, + -0.0515526682138443, + -0.08761122822761536, + -0.0038799624890089035, + 0.03976478800177574, + 0.04051118344068527, + -0.06501349806785583, + 0.030962485820055008, + 0.00653094844892621, + 0.08277253061532974, + -0.020976247265934944, + 0.013242061249911785, + -0.016111817210912704, + -0.06516792625188828, + 0.015790095552802086, + 0.05518168956041336, + 0.03858085349202156, + -0.07108760625123978, + -0.04123184084892273, + 0.0006434431998059154, + -0.04357397183775902, + -0.03173461928963661, + 0.06964629143476486, + -0.1259089708328247, + -0.03479740768671036, + -0.03562101349234581, + 0.0673813745379448, + 0.03981626406311989, + -0.06959481537342072, + 0.034926097840070724, + -0.0010246832389384508, + -0.0029694903641939163, + 0.02573772706091404, + -0.043496761471033096, + 0.008171728812158108, + 0.023254036903381348, + 0.026020843535661697, + 0.04462921991944313, + 0.02095051109790802, + -0.050265781581401825, + -0.07294072210788727, + 0.035955604165792465, + 0.05301971733570099, + 0.011073657311499119, + -0.008686482906341553, + -0.015957390889525414, + -0.026870187371969223, + 0.0213108379393816, + 0.06676366925239563, + 0.013100503012537956, + 0.04184954613447189, + -0.04190102219581604, + 0.014619029127061367, + 0.022867970168590546, + -0.020706001669168472, + -0.03201773390173912, + 0.026201006025075912, + -0.051810044795274734, + 0.07520563900470734, + 0.0032606483437120914, + 0.026355432346463203, + 0.02616240084171295, + -0.025544695556163788, + 0.023743053898215294, + 0.01223828922957182, + 0.022906577214598656, + -0.018016409128904343, + -0.060535136610269547, + -0.023704446852207184, + -0.014979357831180096, + 0.01533968560397625, + -0.0011203954927623272, + -0.00019323403830640018, + 0.06305743008852005, + 0.009934762492775917, + 0.0058488985523581505, + 0.025866417214274406, + -0.04043396934866905, + 0.047975122928619385, + 0.10248763114213943, + -0.008828040212392807, + 0.017347227782011032, + -0.0073288180865347385, + -0.015905914828181267, + -0.12220273166894913, + 0.014052798971533775, + 0.02455379255115986, + -0.014065667986869812, + -0.03158019110560417, + -0.07886039465665817, + -0.007348121143877506, + -0.0315544530749321, + 0.007811400573700666, + -0.06182202324271202, + 0.006025845650583506, + -0.011575543321669102, + 0.011993780732154846, + -0.053225621581077576, + 0.027333466336131096, + 0.045478563755750656, + 0.06861678510904312, + 0.02142665907740593, + 0.05996890738606453, + -0.0008807128760963678, + 0.005684820469468832, + 0.01364099606871605, + -0.02497846446931362, + -0.00415986031293869, + -0.059402674436569214, + -0.007142219226807356, + 0.0801987573504448, + -0.005765250883996487, + 0.03291855379939079, + -0.044217415153980255, + -0.056468576192855835, + 0.0421326607465744, + 0.04545282572507858, + -0.0008501493139192462, + 0.027539368718862534, + -0.08395646512508392, + -0.01755313016474247, + -0.0014694633428007364, + -0.011491895653307438, + 0.03479740768671036, + -0.023923218250274658, + 0.10933386534452438, + -0.030705109238624573, + 0.04290479049086571, + -0.029624124988913536, + -0.06851383298635483, + -0.053894802927970886, + -0.05265939235687256, + -0.0417465940117836, + 0.029315272346138954, + 0.10274501144886017, + 0.022958053275942802, + -0.07762498408555984, + -0.00732238357886672, + 0.011556239798665047, + 0.021400921046733856, + 0.009522959589958191, + 0.046662501990795135, + -0.0047421762719750404, + 0.04205544665455818, + 0.021259363740682602, + 0.043496761471033096, + -0.03163166716694832, + -0.0023903914261609316, + -0.10104631632566452, + -0.0038896140176802874, + 0.0007986738346517086, + -0.05080627277493477, + 0.06779317557811737, + -0.03008740395307541, + 0.0037963148206472397, + -0.04568446800112724, + 0.1057305857539177, + -0.029932977631688118, + 0.08055908977985382, + -0.0442688912153244, + -0.020178377628326416, + -0.008705786429345608, + -0.017385834828019142, + 0.05466693267226219, + 0.05713775381445885, + -0.0562111958861351, + 0.03289281576871872, + 0.018878623843193054, + 0.001046399469487369, + -0.025995105504989624, + -0.04130905121564865, + 0.039584625512361526, + -0.05739513412117958, + 0.022250264883041382, + 0.019972477108240128, + -0.03438560292124748, + -0.043548233807086945, + 0.1192171573638916, + -0.018878623843193054, + 0.07222006469964981, + 0.007013530936092138, + -0.06434431672096252, + 0.04187528416514397, + -0.007425334304571152, + -0.02123362571001053, + -0.014194357208907604, + 0.08967024087905884, + -0.00986398383975029, + -0.016690917313098907, + -0.009696688503026962, + 0.02648412249982357, + 0.007451072335243225, + -0.07083022594451904, + 0.013254929333925247, + -0.011504764668643475, + 0.08647876232862473, + 0.06635186076164246, + -0.028414450585842133, + -0.034334130585193634, + -0.029701337218284607, + -0.0038381386548280716, + -0.050780538469552994, + -0.060535136610269547, + 0.02802838571369648, + -0.025171497836709023, + -0.012405584566295147, + -0.02972707524895668, + -0.01905878819525242, + -0.0004990706220269203, + -0.03562101349234581, + -0.03466871753334999, + -0.010011975653469563, + 0.058167263865470886, + -0.008692917414009571, + -0.004886950831860304, + -0.0062896572053432465, + 0.07716170698404312, + -0.05605677142739296, + 0.0011935870861634612, + -0.020152641460299492, + 0.028440188616514206, + 0.04205544665455818, + 0.0018579422030597925, + -0.032944291830062866, + 0.03585265576839447, + -0.017334358766674995, + -0.006360435858368874, + 0.004877299536019564, + 0.01766894944012165, + -0.03888970613479614, + 0.033021505922079086, + 0.02802838571369648, + 0.0032976462971419096, + 0.002572164172306657, + 0.04143774136900902, + 0.03981626406311989, + -0.015506980940699577, + 0.08894958347082138, + -0.034565769135951996, + -0.010307960212230682, + -0.06326333433389664, + 0.025596169754862785, + -0.02585354819893837, + -0.02569912187755108, + -0.0481552891433239, + 0.08158859610557556, + 0.0003285581769887358, + -0.06321185827255249, + 0.07355842739343643, + 0.012366978451609612, + -0.015983128920197487, + 0.06897711008787155, + -0.007991564460098743, + 0.03240380063652992, + 0.06079251319169998, + 0.014117144048213959, + 0.06897711008787155, + 0.04084577411413193, + -0.09301614761352539, + -0.02434789016842842, + -0.025403136387467384, + -0.023176824674010277, + -0.01568714529275894, + -0.033150192350149155, + 0.006524513941258192, + -0.00437863077968359, + 0.014837799593806267, + 0.07216858863830566, + -0.03430839255452156, + 0.054255131632089615, + 0.04401151463389397, + -0.0646531730890274, + 0.048567093908786774, + 0.011729969643056393, + -0.025570431724190712, + -0.0655282512307167, + -0.04846414178609848, + 0.019509198144078255, + 0.042235612869262695, + 0.009355664253234863, + 0.016150424256920815, + -0.09301614761352539, + -0.011125132441520691, + -0.0673813745379448, + -0.01877567172050476, + 0.004983467515558004, + 0.04100019857287407, + 0.04861856624484062, + 0.08704499155282974, + -0.01612468622624874, + 0.04800086095929146, + -0.014953619800508022, + 0.036187246441841125, + 0.053740374743938446, + -0.04239003732800484, + -0.020963380113244057, + 0.03127133846282959, + 0.03749987110495567, + 0.0511666014790535, + 0.024412235245108604, + -0.017759032547473907, + -0.027848221361637115, + 0.06686661392450333, + -0.012855995446443558, + -0.046276435256004333, + -0.0716538354754448, + -0.012765913270413876, + -0.019303295761346817, + 0.054975785315036774, + 0.008474146947264671, + -0.02411625161767006, + 0.04722873121500015, + -0.03399953991174698, + -0.011865092441439629, + 0.011781444773077965, + 0.061770547181367874, + -0.09461189061403275, + -0.07628662139177322, + -0.030293306335806847, + 0.02261059358716011, + -0.022237395867705345, + -0.0012868863996118307, + -0.0315544530749321, + 0.0221344456076622, + -0.03623872250318527, + -0.014799193479120731, + -0.0012080646120011806, + -0.025724858045578003, + 0.047460369765758514, + 0.06748431921005249, + 0.09275876730680466, + -0.027101827785372734, + -0.04344528540968895, + 0.08683909475803375, + 0.01625337451696396, + -0.02684444934129715, + -0.043496761471033096, + -0.00790791679173708, + -0.09126598387956619, + 0.0219414122402668, + 0.0074832444079220295, + 0.025467481464147568, + 0.0733010470867157, + -0.02707608975470066, + -0.017102720215916634, + 0.03127133846282959, + -0.004652094095945358, + 0.023254036903381348, + 0.007232301402837038, + -0.05636562407016754, + 0.06362365931272507, + -0.039275772869586945, + 0.0017196019180119038, + 0.04985397681593895, + -0.03613577038049698, + 0.07088170200586319, + 0.05590234324336052, + 0.017900589853525162, + 0.055953819304704666, + 0.04722873121500015, + 0.06923449039459229, + 0.0037930975668132305, + 0.025956498458981514, + -0.02071887068450451, + -0.07608072459697723, + -0.10228172689676285, + -0.02486264519393444, + -0.02699887566268444, + -0.03170888125896454, + -0.005919677205383778, + 0.01893009804189205, + 0.009954066015779972, + 0.04115462675690651, + 0.05636562407016754, + -0.004539491608738899, + 0.011376075446605682, + -0.017205670475959778, + 0.055439066141843796, + 0.025158628821372986, + -0.0027764574624598026, + -0.033896587789058685, + -0.015030832961201668, + 0.030808059498667717, + 0.030035927891731262 + ] + }, + { + "id": "74882611-a68c-4349-a408-e2d6dd4e0e6c", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "elizabeth04", + "reviewDate": "2021-09-14T13:19:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cd29e08e-3664-4635-b7b4-ce5689896619", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "danieltate", + "reviewDate": "2021-06-03T19:39:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9fbc0f18-e84c-452f-91b3-970166feba65", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "jordan69", + "reviewDate": "2021-08-05T13:47:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d5b596cd-83d0-4302-9cdf-4fe45f20568a", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "jenniferfrederick", + "reviewDate": "2021-07-06T03:24:36", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5545805c-fe22-4acd-9bf1-51a801cf880e", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "ntaylor", + "reviewDate": "2022-02-04T10:03:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "dbd321d7-690b-403f-aaa9-de37803d092b", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "erinberg", + "reviewDate": "2021-10-04T21:02:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1cf38ef4-1f4a-4b93-ae46-cf9cbe2e68cd", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "rebekah06", + "reviewDate": "2022-05-19T18:53:28", + "stars": 5, + "verifiedUser": false + }, + { + "id": "48784eb6-f64c-43d5-8f58-aa23cc789562", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "erin13", + "reviewDate": "2022-05-06T16:03:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2b59a7f4-3cc2-48e3-a111-b401beac1154", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "mlowe", + "reviewDate": "2021-10-10T05:54:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "08a69c8f-2181-47f3-a684-26bf9c25c393", + "productId": "f7a442d8-d389-4bb4-becb-02ec31ce43fd", + "category": "Other", + "docType": "customerRating", + "userName": "heather58", + "reviewDate": "2022-08-03T12:15:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Steel)", + "description": "This Basic Speaker Mini (Steel) is rated 4.5 out of 5 by 1.\n\nRated 5 out of 5 by Anonymous from Exactly what I was looking for Bought my first set of speakers and they are simply brilliant. Great sound performance and the value price can't be understated. Highly recommend!\n\nRated 5 out of 5 by Anonymous from I bought mine 2 minutes ago and got the speakers to quiet with my two", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-12-19T08:47:28", + "price": 384.93, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-03-05T20:56:42", + "newPrice": 370.26 + }, + { + "priceDate": "2022-12-18T20:56:42", + "newPrice": 408.69 + }, + { + "priceDate": "2024-07-18T20:56:42", + "newPrice": 384.93 + } + ], + "descriptionVector": [ + 0.0033980330917984247, + 0.021069414913654327, + -0.01877366378903389, + -0.00023433555907104164, + -0.02375136688351631, + 0.01834455132484436, + -0.037804797291755676, + 0.05192258954048157, + -0.026819519698619843, + 0.055098023265600204, + -0.008968447335064411, + -0.03814808651804924, + -0.036903660744428635, + -0.02924400381743908, + -0.02574673853814602, + -0.010019772686064243, + 0.02546781674027443, + 0.025446360930800438, + 0.024824148043990135, + -0.010379154235124588, + -0.0018947990611195564, + -0.1039310023188591, + -0.06702734529972076, + 0.016778292134404182, + -0.08496423810720444, + 0.012798274867236614, + -0.02330079860985279, + 0.06582582741975784, + 0.025103069841861725, + -0.024652503430843353, + 0.026390407234430313, + 0.034135885536670685, + -0.0024539860896766186, + 0.05617080256342888, + -0.023515354841947556, + 0.029501471668481827, + -0.048103492707014084, + -0.10315860062837601, + 0.008260412141680717, + 0.12135296314954758, + -0.026883887127041817, + -0.005406815093010664, + 0.038212452083826065, + -0.0898561179637909, + 0.02272149734199047, + 0.003706457559019327, + -0.0211337823420763, + 0.033556584268808365, + 0.08226083219051361, + -0.05179385840892792, + -0.018677113577723503, + 0.012658813036978245, + -0.011907867155969143, + 0.03752587363123894, + -0.0028616427443921566, + 0.0019175956258550286, + -0.03407151997089386, + 0.0573723167181015, + 0.031647033989429474, + -0.0823037400841713, + 0.042310476303100586, + -0.023644089698791504, + -0.020125368610024452, + -0.044627681374549866, + -0.07342112064361572, + -0.019685527309775352, + -0.04295414313673973, + 0.025660917162895203, + -0.011671855114400387, + 0.06016154587268829, + 0.061062682420015335, + -0.05200841277837753, + -0.005878838710486889, + -0.025145981460809708, + 0.07483718544244766, + -0.05355321615934372, + 0.055398400872945786, + 0.07612452656030655, + -0.06372317671775818, + 0.022356752306222916, + 0.027763567864894867, + 0.043318890035152435, + 0.03872738778591156, + 0.02924400381743908, + 0.06462431699037552, + 0.0006614364101551473, + -0.002824095543473959, + -0.12109549343585968, + -0.002960874931886792, + 0.08097349852323532, + -0.0447993278503418, + -0.022936053574085236, + 0.0888262540102005, + 0.010867269709706306, + 0.09165839105844498, + -0.011897139251232147, + -0.041259150952100754, + -0.00220054155215621, + -0.038040805608034134, + -0.020146822556853294, + 0.031089188531041145, + -0.027720656245946884, + -0.06295077502727509, + -0.03317038342356682, + 0.011006730608642101, + 0.0742364302277565, + 0.005540912970900536, + 0.04497097060084343, + -0.007815208286046982, + -0.09491964429616928, + -0.030188051983714104, + -0.008904080837965012, + -0.005192258860915899, + -0.017110854387283325, + 0.04254648834466934, + -0.00032585716689936817, + -0.008179953321814537, + -0.018902398645877838, + -0.0048838346265256405, + -0.0314539335668087, + 0.00742364302277565, + 0.022099284455180168, + 0.010926272720098495, + 0.003245161846280098, + 0.017700882628560066, + 0.0034650820307433605, + 0.008716343902051449, + 0.057157762348651886, + 0.037032391875982285, + -0.03147538751363754, + -0.025961294770240784, + 0.014385990798473358, + -0.04673033207654953, + -0.0005521468701772392, + -0.03113209828734398, + 0.00917227566242218, + 0.04853260517120361, + 0.018526924774050713, + 0.01550168264657259, + -0.03349221497774124, + -0.027248632162809372, + 0.02372991107404232, + 0.022335296496748924, + -0.007048170082271099, + -0.029737483710050583, + -0.02184181660413742, + -0.05921750143170357, + -0.005637463182210922, + 0.007042806129902601, + 0.013216659426689148, + -0.03424316272139549, + -0.09792343527078629, + -0.0030627890955656767, + -0.043447621166706085, + 0.02924400381743908, + 0.07256289571523666, + -0.07556667923927307, + 0.02651914209127426, + -0.05968952551484108, + 0.033427849411964417, + 0.00785811897367239, + -0.04874715954065323, + -0.007659655064344406, + -0.022785864770412445, + 0.0044252206571400166, + 0.06964492797851562, + 0.03098190948367119, + 0.09569204598665237, + -0.09346066415309906, + 0.017969079315662384, + 0.014911653473973274, + -0.040250737220048904, + -0.025296172127127647, + 0.024931425228714943, + -0.011950777843594551, + -0.026991164311766624, + 0.027763567864894867, + -0.02506016008555889, + -0.0007717316620983183, + -0.010084139183163643, + -0.0421602837741375, + 0.07230542600154877, + -0.040122002363204956, + -0.0004901267238892615, + 0.036453090608119965, + -0.019138408824801445, + 0.06153470650315285, + -0.07633908092975616, + -0.0447993278503418, + 0.08170298486948013, + 0.016778292134404182, + -0.0020744898356497288, + -0.009161547757685184, + 0.04205300658941269, + -0.03692511469125748, + 0.013602860271930695, + 0.004755100701004267, + 0.05256626009941101, + -0.04677324369549751, + -0.07569541037082672, + -0.02154143899679184, + 0.06784265488386154, + 0.08419183641672134, + -0.058745477348566055, + 0.006061211694031954, + -0.07123264670372009, + 0.05823054164648056, + 0.12092385441064835, + 0.029372738674283028, + -0.02037210762500763, + 0.034586451947689056, + -0.049133360385894775, + -0.048103492707014084, + 0.0288148932158947, + 0.030767353251576424, + 0.07736895233392715, + 0.01586642861366272, + 0.003035969566553831, + -0.06059065833687782, + -0.06973075121641159, + 0.041130416095256805, + -0.025124525651335716, + 0.04711653292179108, + 0.004840923473238945, + -0.10281531512737274, + -0.04016491398215294, + -0.0019028449896723032, + -0.011875683441758156, + 0.05977534502744675, + 0.043297432363033295, + -0.029587294906377792, + 0.03482246398925781, + -0.05222297087311745, + 0.06029028072953224, + -0.03235507011413574, + -0.0009205800015479326, + 0.007595288101583719, + -0.021316153928637505, + -0.0747513696551323, + 0.051450565457344055, + -0.024094656109809875, + 0.08942700922489166, + -0.04801766946911812, + -0.04177408292889595, + -0.033706773072481155, + -0.03919941186904907, + 0.10702061653137207, + -0.08766764402389526, + -0.0445418581366539, + -0.041409339755773544, + -0.10350189357995987, + -0.03765460476279259, + -0.039542701095342636, + 0.07118973135948181, + -0.03231215849518776, + 0.03143247589468956, + 0.06985948234796524, + 0.03808371722698212, + 0.0593891441822052, + -0.052180059254169464, + 0.020887041464447975, + -0.011189104057848454, + 0.004358171951025724, + 0.05544131249189377, + -0.0722196027636528, + 0.021316153928637505, + 0.05531257763504982, + -0.020597390830516815, + 0.01048643235117197, + 0.07578123360872269, + -0.06235001981258392, + 0.02651914209127426, + 0.011693310923874378, + 0.017647244036197662, + -0.031647033989429474, + -0.009349284693598747, + -0.07067479938268661, + -0.015287126414477825, + -0.07865628600120544, + -0.013205931521952152, + 0.12615902721881866, + 0.0317113995552063, + 0.05488346517086029, + -0.02050084061920643, + 0.027420276775956154, + -0.04042237997055054, + 0.005964661482721567, + -0.0030869266483932734, + -0.019996633753180504, + -0.05256626009941101, + -0.05179385840892792, + 0.0520942360162735, + -0.013045014813542366, + 0.05376777425408363, + -0.03190449997782707, + 0.07492300868034363, + 0.02025410160422325, + -0.058573830872774124, + 0.010679532773792744, + 0.044885147362947464, + 0.034135885536670685, + 0.07015986740589142, + -0.07312074303627014, + -0.08320488035678864, + 0.016413547098636627, + 0.023193521425127983, + -0.01600589044392109, + 0.03628144785761833, + -0.033256206661462784, + -0.06955910474061966, + 0.007123264484107494, + -0.011832771822810173, + -0.05659991502761841, + 0.004669278394430876, + 0.033406395465135574, + -0.010025136172771454, + -0.008914808742702007, + -0.016520824283361435, + 0.02707698754966259, + 0.055398400872945786, + 0.010368426330387592, + -0.054239798337221146, + -0.06174926459789276, + 0.06217837706208229, + -0.022056372836232185, + -0.014482541009783745, + 0.051879677921533585, + -0.06857214868068695, + 0.06629785150289536, + 0.045228440314531326, + 0.007026714272797108, + -0.019181320443749428, + -0.021434159949421883, + 0.03042406402528286, + 0.011822044849395752, + -0.01715376414358616, + -0.007370003964751959, + -0.05883130058646202, + 0.01746487058699131, + 0.035315945744514465, + 0.0317113995552063, + -0.03744005039334297, + 0.07101809233427048, + 0.0029796487651765347, + -0.020490113645792007, + -0.053209926933050156, + 0.005084981210529804, + -0.0029286916833370924, + -0.007756205275654793, + -0.05179385840892792, + 0.001083508599549532, + 0.02836432494223118, + -0.01715376414358616, + -0.02840723656117916, + 0.02896508201956749, + -0.03767606243491173, + -0.023965923115611076, + -0.021369794383645058, + 0.1144871637225151, + 0.019438788294792175, + 0.05067816376686096, + -0.00415166188031435, + 0.009156184270977974, + 0.02370845526456833, + 0.013356121256947517, + 9.4957860710565e-05, + -0.04891880601644516, + 0.025253260508179665, + -0.08492133021354675, + 0.005084981210529804, + -0.03728986158967018, + -0.015405132435262203, + -0.000333064905134961, + 0.04100168123841286, + 0.012712452560663223, + 0.016660286113619804, + 0.02428775653243065, + -0.058874212205410004, + -0.043168701231479645, + 0.010373790748417377, + 0.01420361828058958, + 0.052480436861515045, + 0.07093226909637451, + 0.010159234516322613, + -0.000692614121362567, + 0.015115481801331043, + -0.05415397509932518, + 0.0626503974199295, + -0.010588346980512142, + 0.032955825328826904, + 0.008694888092577457, + -0.03827681764960289, + -0.07050315290689468, + 0.07994362711906433, + 0.03507993370294571, + -0.03168994560837746, + 0.029029447585344315, + 0.049390826374292374, + -0.046644508838653564, + -0.054068151861429214, + -0.00859833788126707, + 0.04100168123841286, + 0.026390407234430313, + -0.014568363316357136, + -0.032827094197273254, + -0.020597390830516815, + 0.0004032985307276249, + 0.06496760249137878, + -0.017293225973844528, + -0.04308287799358368, + -0.0009634912712499499, + -0.0865519568324089, + -5.845817213412374e-05, + -0.020028818398714066, + -0.04509970545768738, + 0.0878392904996872, + 0.015061842277646065, + -0.06252166628837585, + 0.00567501038312912, + 0.00851251557469368, + 0.05471182242035866, + -0.029737483710050583, + 0.006265040021389723, + -0.049390826374292374, + 0.018097812309861183, + 0.018548380583524704, + -0.06462431699037552, + -0.008051220327615738, + 0.024545224383473396, + -0.03477955237030983, + -0.09131510555744171, + -0.07136137783527374, + -0.028042489662766457, + 0.036152713000774384, + 0.023365166038274765, + -0.001259176409803331, + -0.0009118636953644454, + 0.011650399304926395, + -0.024073200300335884, + -0.02445940300822258, + 0.01646718569099903, + 0.025875473394989967, + 0.03229070082306862, + 0.0442843921482563, + -0.10272949188947678, + -0.01861274614930153, + -0.035015564411878586, + 0.01410706713795662, + 0.07076062262058258, + 0.06586874276399612, + 0.019546065479516983, + -0.0024593500420451164, + -0.12427093088626862, + -0.033277660608291626, + 0.01498674787580967, + 0.00764892715960741, + 0.03057425282895565, + 0.09002776443958282, + -0.026883887127041817, + -0.001240402809344232, + -0.08676651120185852, + 0.04896171763539314, + 9.168923133984208e-05, + 0.0671989917755127, + -0.061792172491550446, + -0.05063525214791298, + -0.04276104271411896, + -0.04117332771420479, + -0.024631047621369362, + 0.012143878266215324, + 0.021605804562568665, + -0.0014026608550921082, + 0.017529238015413284, + 0.03057425282895565, + 0.003041333518922329, + -0.030531341210007668, + -0.04771729186177254, + -0.04132351651787758, + 0.047245267778635025, + 0.04642995446920395, + -0.011961505748331547, + -0.029608750715851784, + 0.017239587381482124, + 0.04306142032146454, + 0.07376440614461899, + 0.028021033853292465, + -0.019857171922922134, + 0.010593710467219353, + 0.06792847812175751, + 0.019824989140033722, + -0.05123601108789444, + 0.06428102403879166, + 0.00043782865395769477, + -0.037761885672807693, + 0.003950515296310186, + 0.036474548280239105, + 0.002181767951697111, + -0.04005763679742813, + -0.022635674104094505, + 0.03149684518575668, + 0.03160412237048149, + -0.04233193024992943, + -0.016960663720965385, + 0.04690197482705116, + -0.010084139183163643, + 0.01833382435142994, + -0.0028562787920236588, + -0.06621202826499939, + -0.04394110292196274, + 0.10581909865140915, + 0.06582582741975784, + -0.044456034898757935 + ] + }, + { + "id": "cb5a0621-df55-46bf-9b46-f85283069bcd", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "kimberly23", + "reviewDate": "2022-11-21T21:07:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "63ecf1bf-be14-4ef1-a128-5a06ac477d87", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "brandonphillips", + "reviewDate": "2022-10-30T14:37:51", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7e75ace9-600d-4d9a-b7f0-b07fef37eaf8", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "jeffrey76", + "reviewDate": "2022-05-22T14:07:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fdb1294a-ac64-4292-9e8a-858d109adbb2", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "kimberlyrobinson", + "reviewDate": "2021-10-02T15:42:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "af3939ff-aea2-459c-adc1-94592f1322c0", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "cchandler", + "reviewDate": "2021-12-27T02:45:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aa732973-b67f-45fe-91ea-0079a15174ee", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "wgreer", + "reviewDate": "2021-09-28T02:28:03", + "stars": 5, + "verifiedUser": true + }, + { + "id": "5889940c-1a6c-44cc-bff0-ca139c2972fd", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "kristielin", + "reviewDate": "2022-03-14T11:18:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "81a1f2e8-2bc8-48d9-8ac5-582acf6d8cc1", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "emilyforbes", + "reviewDate": "2022-12-19T00:22:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5f336f37-106c-40f4-a97e-683c37809e00", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "derrickobrien", + "reviewDate": "2021-10-30T04:08:35", + "stars": 5, + "verifiedUser": true + }, + { + "id": "42a5047a-25b3-4d8c-b792-44349aaefa3c", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "patrick64", + "reviewDate": "2022-08-11T05:55:08", + "stars": 5, + "verifiedUser": true + }, + { + "id": "948fd3d6-e27d-4728-93eb-4d5a740819e2", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "lesliebecker", + "reviewDate": "2021-03-05T20:56:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ecc1d639-2a75-410b-98c8-aca11e4f017f", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "sandovaltimothy", + "reviewDate": "2021-11-24T13:08:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c0b00874-6b1f-48c2-8e34-4bf60985921b", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "jessica19", + "reviewDate": "2022-10-15T21:08:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0311aa6b-7a17-4fc1-b025-771cfbe52d93", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "yjacobs", + "reviewDate": "2022-04-03T16:47:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1127edcb-52f6-4025-87ad-a4e228cd744a", + "productId": "0205710a-d0f4-46fe-921b-9f2d6eccf697", + "category": "Media", + "docType": "customerRating", + "userName": "sarah65", + "reviewDate": "2022-03-18T17:53:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b8f7a41e-0de0-4f0b-8263-a8c987d250dc", + "productId": "b8f7a41e-0de0-4f0b-8263-a8c987d250dc", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer Mini (Red)", + "description": "This Basic Computer Mini (Red) is a small computer small enough to fit over a backpack or closet. The computer is 2-way limited range. This computer (mini with small front panel) has an integrated USB cable and is compatible with the Intel Core2 Duo CPUs and Core i7-2600U.\n\nThe Blue computer is the single top-notch computer.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-06-09T20:33:39", + "price": 496.45, + "stock": 31, + "priceHistory": [ + { + "priceDate": "2019-06-09T20:33:39", + "newPrice": 484.03 + }, + { + "priceDate": "2024-02-13T20:33:39", + "newPrice": 496.45 + } + ], + "descriptionVector": [ + -0.03811074420809746, + 0.03130918741226196, + -0.04521520435810089, + 0.01732056215405464, + 0.01649446226656437, + -0.014608200639486313, + 0.014952409081161022, + 0.035136785358190536, + 0.058157436549663544, + 0.04695001244544983, + 0.03926728293299675, + -0.1235845535993576, + 0.04813408851623535, + -0.025856928899884224, + 0.020735109224915504, + 0.013417240232229233, + -0.038716550916433334, + 0.025967074558138847, + -0.00551421707496047, + -0.007834181189537048, + 0.032796166837215424, + -0.07247649878263474, + -0.06338940560817719, + 0.07622148841619492, + -0.022855430841445923, + 0.017540855333209038, + -0.030207721516489983, + -0.01693504862487316, + -0.024548936635255814, + 0.015888655558228493, + 0.04661957174539566, + 0.04554564505815506, + 0.006054623983800411, + -0.05771685019135475, + 0.011875187046825886, + -0.08161867409944534, + -0.05438491329550743, + -0.05876324325799942, + 0.03995570167899132, + 0.020280754193663597, + 0.04777611419558525, + 0.035026635974645615, + 0.00945196021348238, + -0.0006002132431603968, + 5.5288459407165647e-05, + 0.06774019449949265, + -0.07534031569957733, + -0.017334330826997757, + 0.029299011453986168, + -0.08205926418304443, + -0.015516910701990128, + 0.006508979015052319, + 0.10359293222427368, + 0.07517509162425995, + -0.02756420150399208, + 0.005854983348399401, + -0.03221789747476578, + 0.18108110129833221, + 0.006705177947878838, + -0.10623645037412643, + 0.05510086566209793, + 0.0029360968619585037, + -0.058928463608026505, + -0.01015414483845234, + -0.06873151659965515, + 0.030372941866517067, + -0.07341274619102478, + 0.02018437534570694, + 0.03736725449562073, + -0.001999850384891033, + -0.04290212318301201, + -0.0008265302167274058, + 0.025196047499775887, + 0.04290212318301201, + 0.01747201383113861, + 0.012777012772858143, + 0.018738700076937675, + 0.017527086660265923, + 0.029849745333194733, + -0.02315833419561386, + 0.014263992197811604, + -0.03133672475814819, + 0.011420832015573978, + -0.04229631647467613, + -0.008853037841618061, + -0.0090664466843009, + 0.027467822656035423, + -0.10469439625740051, + 0.04816162586212158, + 0.04185573011636734, + -0.0004106835403945297, + 0.08332594484090805, + 0.11950912326574326, + 0.01575097255408764, + 0.052319664508104324, + 0.037670157849788666, + -0.0373397171497345, + 0.05837772786617279, + 0.005256060976535082, + -0.0016281052958220243, + 0.06157198175787926, + 0.01259114034473896, + -0.022759053856134415, + -0.03216282278299332, + 0.06355462223291397, + 0.034283146262168884, + 0.06140676140785217, + 0.03122657723724842, + -0.0021358125377446413, + -0.08806225657463074, + -0.041690509766340256, + 0.0071801855228841305, + -0.0710996687412262, + -0.006643220316618681, + -0.022222088649868965, + 0.01667345128953457, + -0.05606465041637421, + -0.012357078492641449, + -0.028170008212327957, + -0.014360371045768261, + 0.07214605808258057, + 0.010697994381189346, + 0.004698443226516247, + -0.019069140776991844, + -0.07357797026634216, + -0.006946123670786619, + -0.054439984261989594, + -0.002424947451800108, + 0.053421128541231155, + -0.04981382563710213, + -0.015434300526976585, + 0.10375814884901047, + 0.027096077799797058, + 0.0017494386993348598, + -0.023392396047711372, + -0.01305237878113985, + 0.09714934974908829, + 0.11631487309932709, + -0.038358572870492935, + 0.007297215983271599, + -0.05130080506205559, + 0.011696198023855686, + -0.07247649878263474, + -0.015007481910288334, + -0.13338761031627655, + 0.01365130115300417, + -0.08327087014913559, + 0.042709365487098694, + -0.044967371970415115, + 0.026421429589390755, + -0.023172102868556976, + 0.0010988849680870771, + 0.02527865767478943, + -0.018380723893642426, + 0.018256809562444687, + 0.06977790594100952, + -0.02476922981441021, + 0.039873089641332626, + -0.061516907066106796, + 0.06283866614103317, + 0.01141394767910242, + -8.465372957289219e-05, + 0.011448368430137634, + -0.04006584733724594, + 0.005645016208291054, + 0.01000269316136837, + 0.07082430273294449, + 0.05146602541208267, + -0.10524513572454453, + -0.007228374481201172, + -0.005854983348399401, + -0.019275665283203125, + -0.0006608799449168146, + 0.02869320474565029, + 0.07478958368301392, + 0.02861059457063675, + 0.03992816433310509, + 0.03808320686221123, + -0.034393295645713806, + -0.08172882348299026, + -0.002689987886697054, + 0.016962585970759392, + -0.02318587154150009, + 0.023943129926919937, + 0.008846153505146503, + -0.015392995439469814, + 0.019716251641511917, + 0.021588744595646858, + -0.035384614020586014, + -0.02387428842484951, + 0.02940915711224079, + -0.05826758220791817, + 0.0308961383998394, + -0.0036830289755016565, + 0.03778030350804329, + -0.019551031291484833, + 0.017513317987322807, + 0.042020950466394424, + -0.012770128436386585, + 0.011393294669687748, + 0.001910356106236577, + 0.04342532157897949, + 0.01997785083949566, + 0.02866566739976406, + 0.06889673322439194, + -0.004939389415085316, + 0.003603860968723893, + 0.015076324343681335, + 0.033622268587350845, + 0.040891945362091064, + 0.0026504038833081722, + -0.014401675201952457, + -0.04009338468313217, + 0.004213109612464905, + 0.06493145227432251, + -0.003992816433310509, + 0.018422028049826622, + 0.010890751145780087, + -0.0483543835580349, + 0.013830290175974369, + 0.1087147518992424, + 0.017348099499940872, + -0.010546542704105377, + -0.014966176822781563, + -0.08437234163284302, + -0.0426267571747303, + 0.04956599697470665, + 0.03893684223294258, + -0.0004343478649388999, + -0.04045135900378227, + -0.09296377748250961, + -0.00020727794617414474, + 0.023640226572752, + -0.00389299588277936, + -0.039487577974796295, + 0.05843280255794525, + 0.057441484183073044, + -0.00965848471969366, + -0.14396168291568756, + 0.10876982659101486, + -0.02289673686027527, + 0.039404965937137604, + -0.06129661574959755, + -0.05958934128284454, + 0.026930857449769974, + 0.002035992220044136, + 0.03711942210793495, + -0.07980125397443771, + -0.08332594484090805, + 0.023640226572752, + -0.06531696766614914, + 0.01747201383113861, + -0.033539656549692154, + 0.03243819251656532, + -0.038716550916433334, + 0.014250223524868488, + 0.027825798839330673, + -0.01019544992595911, + -0.01959233731031418, + -0.019096676260232925, + 0.0036864709109067917, + 0.0009612016729079187, + -0.04706015810370445, + 0.02804609201848507, + -0.03166716545820236, + 0.0280736293643713, + 0.0675199031829834, + -0.02730260230600834, + 0.01128314808011055, + 0.046013765037059784, + 0.019578568637371063, + -0.029574377462267876, + -0.006636335980147123, + 0.005018556956201792, + -0.009355581365525723, + -0.010622268542647362, + -0.026834480464458466, + 0.033952709287405014, + -0.044251419603824615, + 0.009011373855173588, + 0.046867404133081436, + 0.07473450899124146, + 0.024039508774876595, + -0.0550733283162117, + -0.028968570753932, + -0.02023944817483425, + -0.06206764280796051, + -0.03367733955383301, + 0.004602065309882164, + -0.07082430273294449, + -0.03998323529958725, + 0.045297812670469284, + 0.007324752863496542, + 0.04851960390806198, + -0.008563903160393238, + 0.022676443681120872, + 0.019785093143582344, + 0.005304249934852123, + 0.05667045712471008, + -0.0007456412422470748, + -0.00011703082418534905, + -0.038055669516325, + -0.014814725145697594, + -0.08222448080778122, + 0.03497156500816345, + 0.019785093143582344, + -0.03188745677471161, + 0.021148158237338066, + -0.040203530341386795, + 0.017485782504081726, + 0.03574259206652641, + -0.049318164587020874, + -0.04959353432059288, + 0.0018277461640536785, + 0.08519843965768814, + -0.0426267571747303, + 0.04984136298298836, + -0.026600418612360954, + -0.02134091593325138, + -0.003872343571856618, + 0.023475006222724915, + -0.05033702403306961, + -0.12149176746606827, + 0.12028015404939651, + 0.04956599697470665, + -0.041993413120508194, + -0.038331035524606705, + 0.05479796230792999, + -0.061186470091342926, + -0.06052558869123459, + -0.05036456137895584, + -0.07225620746612549, + 0.012074827216565609, + 0.004213109612464905, + 0.0685112252831459, + -0.08872313052415848, + -0.037697695195674896, + 0.059644415974617004, + 0.01431906595826149, + 0.04224124178290367, + 0.06862136721611023, + -0.014759652316570282, + 0.004082310479134321, + 0.006281801499426365, + -0.02869320474565029, + -0.029877280816435814, + -0.04706015810370445, + -0.006808440200984478, + 0.00930050853639841, + -0.04221370816230774, + 0.0021994910202920437, + -0.054192155599594116, + 0.025168512016534805, + -0.009534570388495922, + 0.09004489332437515, + -0.0209554024040699, + 0.01082190964370966, + -0.026214905083179474, + 0.03637593239545822, + 0.08057227730751038, + -0.01765100285410881, + -0.056505236774683, + 0.08976952731609344, + 0.03521939367055893, + -0.0312541127204895, + -0.016604607924818993, + 0.0021220443304628134, + 0.038358572870492935, + -0.032493263483047485, + 0.08762166649103165, + 0.019743788987398148, + 0.02092786505818367, + -0.10017838329076767, + 0.03995570167899132, + 0.013506733812391758, + -0.05003412067890167, + 0.04956599697470665, + -0.03736725449562073, + -0.008591439574956894, + -0.007317868527024984, + -0.017279256135225296, + 0.0725315734744072, + 0.006164770573377609, + -0.0033181679900735617, + 0.07313738018274307, + -0.11609458178281784, + 0.003655492328107357, + -0.03901945427060127, + -0.005861867684870958, + 0.02489314414560795, + -0.01654953509569168, + 0.0026159831322729588, + -0.038716550916433334, + 0.04885004460811615, + 0.011393294669687748, + -0.06796048581600189, + -0.006581262685358524, + 0.034696198999881744, + 0.017155341804027557, + 0.021740196272730827, + 0.010849446058273315, + 0.04394851624965668, + 0.012907811440527439, + -0.05278778448700905, + -0.06933732330799103, + -0.07776354253292084, + -0.007971864193677902, + 0.008412451483309269, + -0.02262137085199356, + -0.017637234181165695, + 0.004003142472356558, + -0.06173720210790634, + -0.0046605803072452545, + -0.004560760222375393, + -0.02461777813732624, + -0.061516907066106796, + -0.015090092085301876, + 0.03389763459563255, + 0.011964680626988411, + -0.004884316120296717, + 0.022015564143657684, + -0.029904818162322044, + -0.06707931309938431, + -0.044581860303878784, + 0.011813228949904442, + -0.042736902832984924, + 0.007173301186412573, + 0.00901825726032257, + 0.027605505660176277, + -0.03736725449562073, + -0.001626384211704135, + -0.046096377074718475, + -0.02408081293106079, + 0.002201212104409933, + -0.013431007973849773, + 0.01732056215405464, + 0.009527686052024364, + 0.03893684223294258, + -0.05738640949130058, + 0.05997485667467117, + 0.010890751145780087, + 0.010801256634294987, + -0.01314187329262495, + -0.027343908324837685, + -0.05361388623714447, + 0.03706435114145279, + -0.02131337858736515, + 0.018986530601978302, + 0.04447171464562416, + 0.019537264481186867, + -0.058157436549663544, + -0.0030668959952890873, + -0.02625620923936367, + -0.051245734095573425, + 0.06371983885765076, + 0.02023944817483425, + 0.010725530795753002, + -0.023048188537359238, + 0.004543549846857786, + -0.003555671777576208, + -0.024135885760188103, + 0.01451182272285223, + 0.020087996497750282, + -0.03486141562461853, + -0.03086860105395317, + -0.027977250516414642, + -0.04984136298298836, + -0.07743310183286667, + -0.032493263483047485, + 0.032135289162397385, + -0.0479964055120945, + -0.05581681802868843, + 0.030703380703926086, + 0.037697695195674896, + 0.004946273285895586, + -0.02390182577073574, + -0.0069151450879871845, + 0.01836695522069931, + -0.02310326136648655, + 0.041277460753917694, + 0.027275066822767258, + -0.01310056820511818, + -0.01414007693529129, + -0.040175992995500565, + 0.06091110035777092, + 0.03703681379556656, + -0.03185991942882538, + 0.05466027930378914, + 0.06757497787475586, + 0.014800957404077053, + 0.012887159362435341, + 0.03378748893737793, + 0.017637234181165695, + -0.050089191645383835, + 0.0029722386971116066, + -0.007242142688483, + 0.01239838358014822, + 0.03309907019138336, + -0.022882968187332153, + 0.07759831845760345, + -0.02584316022694111, + -0.020266985520720482, + -0.03128165006637573, + 0.05322837457060814, + -0.012446572072803974, + 0.07126488536596298, + 0.06856629252433777, + 0.10188566148281097, + -0.01117988582700491, + -0.0465645007789135, + 0.016508230939507484, + -0.08222448080778122 + ] + }, + { + "id": "a780defc-f898-4fce-b481-55d0875ebda4", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "product", + "name": "Basic TV Ultra (Red)", + "description": "This Basic TV Ultra (Red) is a new Ultra-HD broadcast/broadcast digital cable series from NBC Universal Studios. This series debuted in October 2015.\n\nNBC Universal Studios: Universal Studios in Las Vegas, Nevada.\n\nNBC Universal Studios: Universal Studios in Nevada.\n\nNBC Universal Studios: Universal Studios in Las Vegas, Nevada.\n\nNBC Universal Studios: Universal Studios in Phoenix, Arizona.\n\nNBC Universal Studios:", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-08-28T03:14:32", + "price": 386.88, + "stock": 90, + "priceHistory": [ + { + "priceDate": "2021-05-02T12:13:46", + "newPrice": 382.9 + }, + { + "priceDate": "2021-09-22T12:13:46", + "newPrice": 348.6 + }, + { + "priceDate": "2022-02-12T12:13:46", + "newPrice": 354.32 + }, + { + "priceDate": "2022-07-05T12:13:46", + "newPrice": 367.99 + }, + { + "priceDate": "2024-08-01T12:13:46", + "newPrice": 386.88 + } + ], + "descriptionVector": [ + 0.005391616839915514, + 0.0010502031072974205, + -0.04019466042518616, + 0.04113582521677017, + -0.012522094883024693, + 0.010674196295440197, + -0.03744002804160118, + 0.035213369876146317, + 0.011161995120346546, + 0.026719922199845314, + 0.01911025494337082, + -0.06331060826778412, + -0.030002525076270103, + -0.05174115672707558, + 0.06184146925806999, + -0.016493353992700577, + -0.06859032064676285, + 0.058995019644498825, + 0.04304111376404762, + 0.04728783667087555, + 0.13819067180156708, + -0.04487753286957741, + -0.02419484406709671, + 0.011483368463814259, + -0.04113582521677017, + 0.06767210364341736, + -0.006014278158545494, + 0.006232352927327156, + 0.020349837839603424, + -0.03870256990194321, + -0.03562656417489052, + -0.004131946712732315, + -0.00881482008844614, + 0.032412827014923096, + -0.01900695636868477, + 0.03833528608083725, + 0.03105846792459488, + 0.030507540330290794, + -0.0028292357455939054, + 0.04102104902267456, + 0.05674540251493454, + -0.040653765201568604, + 0.030392764136195183, + 0.08066478371620178, + 0.017101669684052467, + 0.0051419781520962715, + -0.0029052752070128918, + -0.04880288243293762, + 0.018857745453715324, + 0.001071006408892572, + -0.040470123291015625, + -0.034593578428030014, + -0.0018565066857263446, + -0.030737092718482018, + 0.038381196558475494, + -0.03523632511496544, + 0.016963936388492584, + 0.11321534216403961, + 0.0272708497941494, + -0.04331657662987709, + -0.024057112634181976, + -0.010002754628658295, + 0.008177811279892921, + 0.05683722347021103, + -0.0050329407677054405, + 0.047058284282684326, + 0.007184996269643307, + -0.015104561112821102, + 0.03222918510437012, + -0.0068349288776516914, + 0.043660905212163925, + 0.03505268320441246, + 0.026628101244568825, + 0.04451024904847145, + -0.018088744953274727, + 0.11229713261127472, + 0.029612286016345024, + 0.03351467847824097, + 0.025916488841176033, + -0.008780387230217457, + 0.0180084016174078, + -0.014817620627582073, + 0.01812317781150341, + 0.030025480315089226, + 0.03296375274658203, + 0.07281408458948135, + -0.004195073619484901, + -0.1167045459151268, + -0.013910887762904167, + 0.10596147924661636, + -0.02249615453183651, + 0.09815669059753418, + 0.015001262538135052, + -0.08268484473228455, + 0.025411473587155342, + 0.11404173076152802, + -0.0462089404463768, + 0.0366365946829319, + -0.011351375840604305, + 0.07184996455907822, + 0.1150517612695694, + 0.02499827742576599, + -0.0052309297025203705, + -0.08548539131879807, + 0.07552280277013779, + -0.04866515100002289, + -0.003084613010287285, + 0.08998461812734604, + -0.009526433423161507, + -0.013796111568808556, + -0.008545096032321453, + -0.05334802344441414, + 0.018961044028401375, + 0.03652181848883629, + -0.043959323316812515, + 0.04701237380504608, + -0.07129903882741928, + -0.0025107315741479397, + 0.047930583357810974, + 0.02855634316802025, + 0.008304065093398094, + -0.016975414007902145, + 0.025411473587155342, + -0.024562127888202667, + -0.01792805828154087, + 0.020648255944252014, + -0.02947455458343029, + 0.14764823019504547, + 0.04134242236614227, + -0.02371278405189514, + -0.03753184899687767, + 0.0545416995882988, + 0.004857907071709633, + 0.016103114932775497, + -0.06960035115480423, + 0.018375685438513756, + -0.04242132231593132, + -0.020476091653108597, + 0.04014874994754791, + -0.014151917770504951, + -0.010771756060421467, + -0.017273833975195885, + 0.04361499473452568, + -0.00787365436553955, + -0.057204507291316986, + -0.07423730939626694, + 0.01563253253698349, + 0.025021234527230263, + 0.043454308062791824, + -0.01861671544611454, + 0.04848150908946991, + 0.03551178798079491, + -0.02110736258327961, + 0.02368982881307602, + 0.01961527019739151, + 0.08897458761930466, + -0.011225122027099133, + -0.004020039923489094, + -0.06537657976150513, + 0.05109841004014015, + 0.0575258806347847, + -0.0032854715827852488, + -0.04439547285437584, + -0.03845006227493286, + 0.0090042008087039, + 0.01822647638618946, + 0.09090282768011093, + 0.06317287683486938, + -0.0018981130560860038, + 0.004760347306728363, + 0.0182149987667799, + -0.001538002397865057, + -0.021577944979071617, + -0.0579390749335289, + -0.037876177579164505, + 0.004149163141846657, + 0.06955444067716599, + 0.03555769845843315, + -0.006020016968250275, + -0.10917522013187408, + -0.017491908743977547, + 0.0038363977801054716, + 0.004958336241543293, + -0.06280559301376343, + 0.0016456051962450147, + 0.014829098246991634, + 0.004898078739643097, + 0.014151917770504951, + -0.05224617198109627, + -0.026995385065674782, + 0.0024375617504119873, + 0.017491908743977547, + 0.026260817423462868, + -0.05486307293176651, + 0.02261093072593212, + -0.005540825892239809, + -0.0332392156124115, + -0.03222918510437012, + -0.07552280277013779, + 0.014794665388762951, + 0.05068521574139595, + -0.01652778685092926, + 0.09531024098396301, + -0.030048435553908348, + -0.011081651784479618, + -0.05931639298796654, + 0.007007093168795109, + -0.0634942501783371, + 0.049629271030426025, + 0.10660422593355179, + -0.0328260213136673, + -0.013956798240542412, + 0.04467093572020531, + -0.0015322635881602764, + 0.06574386358261108, + 0.004103252664208412, + -0.055919013917446136, + -0.034111518412828445, + -0.037394117563962936, + -0.010570897720754147, + 0.05991322919726372, + 0.03682023659348488, + -0.019867777824401855, + -0.030737092718482018, + 0.027523357421159744, + -0.03603975847363472, + 0.07873654365539551, + -0.00019763044838327914, + -0.030920734629034996, + 0.03321626037359238, + -0.12322383373975754, + -0.006060188636183739, + -0.038082778453826904, + 0.008585267700254917, + -0.004393063019961119, + 0.0334458127617836, + 0.014014186337590218, + -0.05256754532456398, + -0.14930100739002228, + -0.006725891027599573, + -0.048435598611831665, + 0.06629478931427002, + -0.060877349227666855, + -0.03794504329562187, + 0.09315244853496552, + -0.08814819902181625, + 0.07400775700807571, + 0.0515575148165226, + -0.052108440548181534, + -0.022220691666007042, + -0.026605146005749702, + -0.00995110534131527, + 0.08103206753730774, + 0.022737184539437294, + -0.04377568140625954, + -0.06106099113821983, + -0.0340656079351902, + 0.017664073035120964, + -0.014197828248143196, + -0.04019466042518616, + -0.0907650962471962, + 0.03721047565340996, + 0.008860730566084385, + -0.008091729134321213, + -0.029153181239962578, + 0.02052200213074684, + -0.058214541524648666, + -0.060372333973646164, + -0.015781741589307785, + 0.07042673975229263, + -0.03046162985265255, + -0.001972717698663473, + 0.03964373469352722, + 0.029818883165717125, + 0.004209420643746853, + 0.04265087470412254, + 0.03257351368665695, + 0.05403668433427811, + -0.04779285192489624, + -0.03353763371706009, + 0.08341941237449646, + -0.001170000876300037, + 0.019098777323961258, + -0.05692904442548752, + -0.007448981981724501, + -0.011735877022147179, + -0.0009088848601095378, + 9.693216998130083e-05, + 0.0694626197218895, + 0.012177765369415283, + -0.04209994897246361, + -0.04875697195529938, + 0.021658288314938545, + 0.017767371609807014, + 0.0015925212064757943, + -0.03755480423569679, + 0.03512154892086983, + -0.038082778453826904, + 0.06344833970069885, + -0.0034547667019069195, + -0.025158965960144997, + -0.01671142876148224, + -0.0261919517070055, + -0.07566053420305252, + -0.020085852593183517, + 0.05702086538076401, + -0.03741707280278206, + 0.026214906945824623, + 0.011070174165070057, + -0.06840667873620987, + 0.01673438400030136, + -0.042559053748846054, + -0.03714160993695259, + 0.005598213989287615, + 0.0014935266226530075, + 0.00649633863940835, + -0.004631223622709513, + -0.03209145367145538, + -0.0011585232568904757, + 0.017296789214015007, + -0.00450496980920434, + 0.011156256310641766, + -0.12276472896337509, + 0.03872552514076233, + 0.07506369799375534, + -0.014415903016924858, + 0.020671211183071136, + -0.008252415806055069, + -0.026742877438664436, + -0.07960884273052216, + -0.022037049755454063, + 0.0029497509822249413, + -0.02697242982685566, + 0.06064779683947563, + 0.09870761632919312, + -0.045359592884778976, + 0.026306727901101112, + 0.06978399306535721, + 0.04467093572020531, + -0.023643918335437775, + 0.11955099552869797, + 0.037394117563962936, + 0.04060785472393036, + -0.029520465061068535, + -0.010760278441011906, + -0.0257787574082613, + -0.03314739465713501, + 0.06275968253612518, + 0.0063528683967888355, + 0.007908087223768234, + 0.0012596698943525553, + -0.04292633756995201, + 0.052613455802202225, + -0.049216076731681824, + 0.07671648263931274, + -0.046622134745121, + -0.010174918919801712, + -0.029727062210440636, + -0.001081049325875938, + 0.044647980481386185, + 0.0750177875161171, + -0.03553474321961403, + -0.056010834872722626, + 0.05743405967950821, + -0.01992516592144966, + 0.0036125839687883854, + 0.00956660509109497, + 0.015368546359241009, + 0.021876363083720207, + 0.013600992038846016, + 0.009612515568733215, + 0.03397378325462341, + -0.022622408345341682, + 0.008074512705206871, + -0.00835571438074112, + 0.0031821730080991983, + 0.03179303556680679, + 0.017491908743977547, + -0.014656933955848217, + 0.03243578225374222, + -0.062484219670295715, + 0.047655120491981506, + 0.03273420035839081, + 0.05403668433427811, + 0.07221724838018417, + 0.0685444101691246, + -0.09852397441864014, + -0.05605674535036087, + -0.026214906945824623, + -0.07106948643922806, + -0.02876294031739235, + -0.026903564110398293, + 0.047241926193237305, + 0.006243830546736717, + 0.01801987923681736, + -0.03076004795730114, + -0.015437412075698376, + 0.01244175061583519, + 0.04460207000374794, + 0.00629548029974103, + 0.00721369031816721, + 0.047241926193237305, + 0.056010834872722626, + 0.025434428825974464, + -0.13561967015266418, + -0.011689966544508934, + -0.055000804364681244, + 0.015219337306916714, + 0.03792208805680275, + -0.036200445145368576, + -0.05509262531995773, + -0.06179555878043175, + -0.054817162454128265, + 0.02060234546661377, + 0.03278011083602905, + -0.010616808198392391, + 0.02060234546661377, + -0.024447351694107056, + 0.050042469054460526, + -0.052429813891649246, + 0.04478571191430092, + 0.08842366188764572, + -0.03252760320901871, + 0.008499184623360634, + 0.04212290421128273, + -0.03955191373825073, + -0.04159492999315262, + 0.006335651967674494, + -0.05408259481191635, + 0.007087436504662037, + 0.05642402917146683, + -0.06083143875002861, + 0.012166287750005722, + 0.04577278718352318, + -0.01803135685622692, + 0.02240433357656002, + 0.03294079750776291, + 0.04935380816459656, + -0.03851892799139023, + 0.03154052793979645, + -0.007563758175820112, + 0.0004530076985247433, + -0.01820352114737034, + 0.020877808332443237, + -0.07350274175405502, + -0.021486124023795128, + 0.03831233084201813, + -0.04618598520755768, + -0.005888024345040321, + -0.013612469658255577, + -0.02538851834833622, + 0.04806831479072571, + -0.035488832741975784, + -0.02091224119067192, + 0.0066398088820278645, + -0.030392764136195183, + -0.0033055574167519808, + 0.0259853545576334, + 0.046254850924015045, + -0.03980442136526108, + -0.030438674613833427, + 0.029704106971621513, + -0.001092526945285499, + -0.07855290174484253, + -0.05605674535036087, + -0.047930583357810974, + -0.08484264463186264, + -0.0340656079351902, + -0.009078805334866047, + 0.011276771314442158, + -0.01711314730346203, + -0.04317884519696236, + -0.02896953746676445, + -0.01712462492287159, + 0.05904093012213707, + -0.025250786915421486, + -0.03505268320441246, + -0.0971466600894928, + 0.06170373782515526, + -0.01660813018679619, + 0.0065709431655704975, + 0.036384087055921555, + 0.010639763437211514, + -0.022519109770655632, + 0.011678488925099373, + -0.00965268723666668, + -0.01621789112687111, + 0.03755480423569679, + -0.02458508312702179, + -0.017285311594605446, + 0.07189587503671646, + -0.036384087055921555, + 0.03252760320901871, + -0.021061452105641365, + -0.0047546084970235825, + 0.01982186734676361, + -0.0028191928286105394, + 0.0028823199681937695, + -0.005601083394140005, + 0.008275371044874191, + -0.048343777656555176, + 0.06312696635723114, + -0.02857929840683937, + 0.04657622426748276, + -0.02248467691242695, + -0.015207859687507153, + 0.07887427508831024, + 0.05913275107741356, + 0.00861396174877882, + 0.025457384064793587, + -0.030805958434939384, + 0.018582282587885857 + ] + }, + { + "id": "1689956e-74f0-4bb0-b765-665ccaed5ff5", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "customerRating", + "userName": "brian86", + "reviewDate": "2022-03-04T03:26:28", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1f329333-e139-4e09-95e1-efe7560eb52d", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "customerRating", + "userName": "xjensen", + "reviewDate": "2021-05-02T12:13:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "06fe4e8f-d3da-44ac-9195-c1f0c8f7ecdb", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "customerRating", + "userName": "joseph70", + "reviewDate": "2022-07-06T20:33:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "24b233bd-5c86-4360-81fe-e4e52eafdc29", + "productId": "a780defc-f898-4fce-b481-55d0875ebda4", + "category": "Media", + "docType": "customerRating", + "userName": "mstewart", + "reviewDate": "2022-05-11T08:48:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Pro (Red)", + "description": "This Luxe Stand Pro (Red) is the new stand (from Amazon) by Fosco. This is a fully lined out stand with a unique fit. The upper portion of the stand boasts an eye for an ultra-slim silhouette that works really well. This is definitely the ideal setup for most fans of the $100-200 Pro series. Features: Full lined-out\n\nFull lined-out VESA\n\nFull lined-out S", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-10-04T18:07:46", + "price": 936.69, + "stock": 77, + "priceHistory": [ + { + "priceDate": "2021-02-19T17:12:22", + "newPrice": 961.41 + }, + { + "priceDate": "2025-07-15T17:12:22", + "newPrice": 936.69 + } + ], + "descriptionVector": [ + 0.004398943856358528, + 0.055217090994119644, + -0.05778035894036293, + 0.03852913901209831, + 0.004555810708552599, + -0.05804736912250519, + -0.0070022642612457275, + 0.026353612542152405, + -0.030625727027654648, + 0.020506154745817184, + 0.010460007935762405, + 0.019998840987682343, + 0.0149791045114398, + -0.06611098349094391, + 0.059115394949913025, + 0.0068821110762655735, + -0.01859705150127411, + -0.003551195841282606, + -0.01088721863925457, + -0.057620156556367874, + 0.08389366418123245, + -0.10231716185808182, + -0.019544927403330803, + 0.0031423410400748253, + -0.0062980325892567635, + -0.023229626938700676, + 0.01117425225675106, + 0.005523711908608675, + 0.054416071623563766, + 0.05772696062922478, + 0.058581382036209106, + 0.047420479357242584, + -0.029851406812667847, + 0.031213143840432167, + -0.027061181142926216, + 0.0006520816823467612, + 0.06621778756380081, + 0.04608544334769249, + 0.04082540422677994, + 0.1136382669210434, + -0.0123757841065526, + 0.00038528305594809353, + -0.010099547915160656, + -0.006131153088063002, + 0.010633561760187149, + -0.029344093054533005, + -0.013390411622822285, + 0.006691868416965008, + -0.034791041165590286, + -0.04627234861254692, + -0.0019758534617722034, + 0.026019852608442307, + -0.06584397703409195, + 0.005523711908608675, + 0.008844614028930664, + -0.05601811408996582, + 0.007983515970408916, + 0.192031592130661, + 0.032735083252191544, + -0.061251454055309296, + -0.027248086407780647, + -0.0523868165910244, + 0.04122591391205788, + -0.030332019552588463, + -0.017662527039647102, + 0.0065383389592170715, + 0.02254875935614109, + -0.07892733067274094, + 0.027581844478845596, + 0.02990480698645115, + -0.018236592411994934, + 0.04907592386007309, + 0.0838402658700943, + 0.03535175323486328, + -0.0034377179108560085, + 0.008637683466076851, + 0.05284072831273079, + -0.01728871650993824, + 0.04125261306762695, + -0.05412236228585243, + 0.10205015540122986, + -0.020132344216108322, + -0.011381182819604874, + 0.00838402658700943, + 0.015967031940817833, + -0.03209426626563072, + 0.018022986128926277, + -0.09371953457593918, + -0.043842583894729614, + 0.07241235673427582, + -0.042213838547468185, + 0.08068957924842834, + 0.052733924239873886, + -0.007269271183758974, + 0.0018924135947600007, + 0.016728002578020096, + -0.05334804207086563, + 0.06573717296123505, + 0.010119573213160038, + -0.047340378165245056, + -0.019197817891836166, + 0.0043288543820381165, + -0.0456315316259861, + 0.0030755894258618355, + 0.030785931274294853, + 0.05842117965221405, + 0.05569770559668541, + 0.005543737206608057, + -0.020452752709388733, + -0.12047365307807922, + 0.09585558623075485, + -0.005854133050888777, + -0.011407882906496525, + -0.004832830745726824, + -0.050464361906051636, + 0.08314604312181473, + -0.0321209691464901, + -0.06360112130641937, + 0.04309496283531189, + -0.040184587240219116, + 0.029023684561252594, + 0.02982470579445362, + -0.007816636003553867, + 0.03706059977412224, + 0.0029153849463909864, + 0.025258881971240044, + 0.02118702232837677, + -0.024017298594117165, + 0.029290691018104553, + -0.03535175323486328, + -0.10039471089839935, + 0.08966102451086044, + 0.04272115230560303, + 0.02891688048839569, + -0.034150224179029465, + 0.08928721398115158, + 0.006678517907857895, + 3.209822898497805e-05, + -0.0062980325892567635, + 0.02027919702231884, + -0.03868934512138367, + -0.07048990577459335, + -0.0024080711882561445, + 0.04314836487174034, + -0.01995878852903843, + -0.00422538910061121, + -0.03436382859945297, + -0.02113362029194832, + -0.03342930227518082, + 0.012228930369019508, + 0.048648715019226074, + -0.06653819978237152, + -0.028543071821331978, + -0.038983054459095, + 0.08416067063808441, + -0.020439401268959045, + -0.09585558623075485, + -0.06162526458501816, + 0.03126654401421547, + 0.05406896024942398, + 0.04787439480423927, + 0.014645345509052277, + -0.033108893781900406, + 0.025646042078733444, + -0.013857673853635788, + 0.029851406812667847, + 0.08079638332128525, + 0.02528558298945427, + -0.06514976173639297, + 0.017889482900500298, + -0.00874448660761118, + 0.004268778022378683, + -0.04181332886219025, + -0.03633968159556389, + -0.02429765649139881, + -0.004302153829485178, + 0.13660089671611786, + -0.0006487441132776439, + 0.07962155342102051, + -0.02565939351916313, + 0.03230787441134453, + 0.0171685628592968, + -0.03236127272248268, + -0.028890179470181465, + 0.0028085820376873016, + 0.05292082950472832, + 0.026874275878071785, + 0.02886348031461239, + 0.02676747366786003, + -0.04608544334769249, + -0.01206205040216446, + 0.05372185260057449, + 0.010927270166575909, + -0.011474634520709515, + -0.0002011941105592996, + -0.060397032648324966, + 0.038128629326820374, + 0.022775715216994286, + -0.010573485866189003, + 0.021267123520374298, + -0.007976840250194073, + 0.07823311537504196, + 0.05815416947007179, + 0.023189576342701912, + -0.009498781524598598, + -0.0704365000128746, + 0.011234328150749207, + 0.0034126858226954937, + 0.03086603432893753, + 0.026633968576788902, + -0.028035758063197136, + 0.004979684483259916, + -0.034470632672309875, + 0.04891572147607803, + 0.027795450761914253, + 0.05751335248351097, + 0.04549802839756012, + 0.01612723618745804, + 0.03164035454392433, + -0.026166707277297974, + 0.04904922470450401, + -0.03874274715781212, + -0.013136754743754864, + -0.045738335698843, + -0.019665081053972244, + 0.005497010890394449, + 0.05815416947007179, + 0.022134898230433464, + 0.04349547624588013, + 0.013724170625209808, + 0.00016886119556147605, + -0.0011506342561915517, + 0.04621894657611847, + 0.026073254644870758, + -0.01806303858757019, + -0.01504585612565279, + -0.060610637068748474, + -0.06392152607440948, + -0.021026818081736565, + -0.06258649379014969, + -0.06402833014726639, + -0.01322353258728981, + -0.02639366313815117, + 0.03527165204286575, + -0.009665661491453648, + 0.051826100796461105, + 0.05986301600933075, + -0.01591362990438938, + -0.05649872496724129, + 0.018370095640420914, + -0.05011725425720215, + -0.019344672560691833, + -0.04322846606373787, + 0.061198052018880844, + 0.044162992388010025, + 0.002563269343227148, + 0.00506979925557971, + -0.03257488086819649, + 0.004962996579706669, + 0.00987259205430746, + -0.037407711148262024, + 0.0024247593246400356, + 0.0021110258530825377, + 0.0049229455180466175, + -0.019598329439759254, + 0.02535233460366726, + 0.03321569785475731, + -0.023883795365691185, + 0.014391688629984856, + 0.022575460374355316, + -0.010473357513546944, + -0.018690504133701324, + 0.06381472200155258, + 0.03674019128084183, + 0.03770141676068306, + 0.06226608157157898, + -0.02332307957112789, + 0.10637567192316055, + -0.040184587240219116, + -0.03946366533637047, + 0.08432088047266006, + -0.01461864449083805, + 0.021934643387794495, + -0.034550733864307404, + 0.04095890745520592, + -0.08207801729440689, + 0.013750871643424034, + -0.053267937153577805, + 0.045925240963697433, + -0.037594616413116455, + -0.0530543327331543, + -0.014191433787345886, + 0.05564430356025696, + -0.032601580023765564, + 0.023683540523052216, + -0.005159914493560791, + -0.013383736833930016, + 0.056178316473960876, + -0.006244631018489599, + -0.06349431723356247, + 0.023550035431981087, + 0.03612607717514038, + 0.023870443925261497, + -0.05452287197113037, + -0.041172511875629425, + 0.08950081467628479, + -0.06995589286088943, + 0.08608312159776688, + -0.056178316473960876, + -0.03022521734237671, + 0.09831205755472183, + 0.02742164023220539, + -0.0657905787229538, + -0.03989087790250778, + 0.03268168121576309, + 0.0026366962119936943, + 0.009331902489066124, + 0.013964476995170116, + 0.046432554721832275, + 0.00870443508028984, + -0.04181332886219025, + -0.04432319849729538, + -0.0703297033905983, + 0.038635943084955215, + 0.10723009705543518, + -0.034871142357587814, + 0.009805839508771896, + 0.012662816792726517, + -0.06194567307829857, + -0.007209194824099541, + -0.08544230461120605, + 0.01651439629495144, + 0.0493963360786438, + -0.01397782750427723, + -0.0040551722049713135, + 0.033562805503606796, + -0.005093162413686514, + -0.016861505806446075, + -0.01923787035048008, + -0.023122824728488922, + 0.09804505109786987, + 0.056445322930812836, + -0.047019969671964645, + -0.06482934951782227, + 0.01800963655114174, + -0.09217088669538498, + 0.06541676819324493, + -0.02234850451350212, + 0.046299051493406296, + 0.03345600515604019, + 0.0015669985441491008, + -0.047740887850522995, + -0.010480033233761787, + -0.05219991132616997, + 0.02691432647407055, + 0.0343371257185936, + 0.03748781234025955, + -0.06162526458501816, + 0.010159624740481377, + 0.01664789952337742, + -0.02723473496735096, + -0.004732702858746052, + 0.035965871065855026, + 0.09703042358160019, + 0.043976087123155594, + 0.05575110763311386, + -0.061838869005441666, + 0.005957598332315683, + -0.07209194451570511, + 0.06514976173639297, + -0.06675180047750473, + -0.03420362249016762, + -0.0036446484737098217, + 0.01942477375268936, + 0.020906664431095123, + 0.008343975059688091, + 0.02592639997601509, + 0.04854191094636917, + -0.0031323283910751343, + 0.04015788435935974, + -0.049556538462638855, + 0.06840724498033524, + 0.024511262774467468, + 0.052280012518167496, + 0.11641514301300049, + -0.0044990717433393, + -0.04378918185830116, + -0.01056681014597416, + -0.014485141262412071, + -0.04875551536679268, + -0.03868934512138367, + -0.0500638522207737, + 0.02444451116025448, + 0.05115858092904091, + 0.038769446313381195, + -0.058581382036209106, + -0.03569886460900307, + 0.06013002246618271, + -0.04907592386007309, + -0.03703390061855316, + -0.005637189839035273, + 0.052146509289741516, + -0.04141281917691231, + -0.031106339767575264, + -0.04237404465675354, + -0.012469236738979816, + 0.051185283809900284, + 0.08287903666496277, + 0.013523914851248264, + -0.08565591275691986, + 0.013136754743754864, + -0.04595194011926651, + -0.03660668805241585, + 0.06765962392091751, + 0.07113072276115417, + 0.051639195531606674, + 0.02150743082165718, + -0.0012424179585650563, + 0.06045043468475342, + -0.07502902299165726, + 0.04977014288306236, + 0.004495733883231878, + -0.02489842288196087, + -0.022722313180565834, + -0.02268226258456707, + 0.04322846606373787, + -0.034871142357587814, + -0.04224054142832756, + -0.04926282912492752, + -0.00845077820122242, + 0.07396099716424942, + -0.06450894474983215, + -0.014124681241810322, + 0.0006070241797715425, + -0.02222835086286068, + -0.020386001095175743, + 0.04600534215569496, + 0.0064181857742369175, + 0.06680520623922348, + 0.0718783438205719, + -0.04555143043398857, + -0.020706409588456154, + 0.06141166016459465, + 0.052733924239873886, + -0.07700487971305847, + -0.05607151612639427, + -0.03254817798733711, + 0.058794986456632614, + -0.004178662784397602, + -0.006411510519683361, + -0.005456959828734398, + -0.034791041165590286, + -0.09954028576612473, + 0.06392152607440948, + 0.0538286529481411, + -0.03834223747253418, + 0.0055504124611616135, + 0.06675180047750473, + 0.027848852798342705, + 0.018677154555916786, + 0.009111621417105198, + 0.07251916080713272, + 0.0762038603425026, + 0.0010830480605363846, + -0.01955827884376049, + -0.0053968834690749645, + -0.05874158814549446, + 0.007502902764827013, + 0.01878395676612854, + 0.011888496577739716, + 0.027795450761914253, + -0.00524669187143445, + -0.04595194011926651, + 0.027528444305062294, + 0.012896448373794556, + 0.014925703406333923, + -0.005013060290366411, + -0.052093107253313065, + -0.011941897682845592, + -0.04918272793292999, + -0.013924426399171352, + 0.04691316559910774, + -0.046432554721832275, + -0.021947992965579033, + 0.012535988353192806, + 0.0022779053542762995, + -0.011855119839310646, + 0.017889482900500298, + 0.016928257420659065, + -0.010132923722267151, + 0.011134200729429722, + 0.036686789244413376, + 0.01465869601815939, + -0.07668447494506836, + -0.013777571730315685, + -0.021988043561577797, + -0.001932464656420052, + 0.03489784151315689, + -0.04766078665852547, + 0.01192854717373848, + 0.01923787035048008, + 0.013450488448143005, + -0.009739087894558907, + 0.024644766002893448, + 0.05070466920733452, + 0.06824704259634018, + 0.005336806643754244, + 0.03708730265498161, + -0.025646042078733444, + -0.06611098349094391, + 0.07011609524488449, + 0.009592234157025814 + ] + }, + { + "id": "c1c2fecf-6859-4236-88e7-3cea411b7a4c", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "aliciawhite", + "reviewDate": "2021-06-06T01:44:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "75349ad2-0155-4513-a188-eeed6561f63a", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "erincollins", + "reviewDate": "2021-04-13T01:20:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9c5d20d7-3ccd-4c7e-aa09-59d711ac78b2", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "john00", + "reviewDate": "2021-11-04T17:56:41", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b1323816-83f7-4544-a6bc-b3e293cdf06e", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jamesgraham", + "reviewDate": "2021-12-20T17:29:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "127acc88-882d-4387-be8b-9707339af2e9", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jwilson", + "reviewDate": "2021-11-04T16:08:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "89308a5f-8d6f-424c-b85b-de07eb84798b", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jason82", + "reviewDate": "2022-12-22T07:14:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cdbe0211-0853-4f9d-bbad-c98a197e0316", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "ggarcia", + "reviewDate": "2021-10-29T19:55:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1b2ac2ca-d5d0-49ca-84fe-86851c157599", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "ivanroy", + "reviewDate": "2022-03-19T20:05:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e327974d-1cb4-49d3-9fde-d1b5b17c772e", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "cynthianelson", + "reviewDate": "2021-08-26T17:27:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b483aef-5493-4519-92b9-6b35c81e0387", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "eenglish", + "reviewDate": "2022-03-03T11:19:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "369af58c-809b-45f1-bbde-833debbacbbc", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "richard97", + "reviewDate": "2022-05-01T20:16:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d8075f91-c1d2-4c5a-a8fb-bb9776327111", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthewgonzalez", + "reviewDate": "2022-07-16T20:54:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "abcfe187-5533-4e6c-bf5c-3c58b716b2e2", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "btucker", + "reviewDate": "2021-04-08T16:29:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3563f33f-bf86-4b03-a803-6df59f6dd098", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jeffrey28", + "reviewDate": "2022-09-22T17:28:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0f48186c-bee6-497f-83e0-0580fea6cb94", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasspencer", + "reviewDate": "2021-03-21T18:54:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a456d6f6-b5b6-4f4b-b9dd-6d33d4bc7204", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "vernon09", + "reviewDate": "2021-02-19T17:12:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7e0a99d8-f7b9-4de0-adcb-158ff09dc602", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "timothy44", + "reviewDate": "2022-11-03T20:08:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "60493812-cdf6-4b5d-853b-92412be9dec0", + "productId": "fb02af40-8534-4648-8906-c4e0f6f2cea6", + "category": "Accessory", + "docType": "customerRating", + "userName": "rayjonathan", + "reviewDate": "2022-04-11T06:19:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "13e246ec-09b5-4b92-b336-0191e1438251", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Super (Silver)", + "description": "This Premium Stand Super (Silver) is 100% Made in the USA! Simply snap the two screws together so that you hold the Premium Stand securely. The Premium Stand is designed for use on", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-09-15T02:15:16", + "price": 911.5, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-01-16T10:09:13", + "newPrice": 827.09 + }, + { + "priceDate": "2021-08-05T10:09:13", + "newPrice": 857.1 + }, + { + "priceDate": "2022-02-22T10:09:13", + "newPrice": 964.57 + }, + { + "priceDate": "2022-09-11T10:09:13", + "newPrice": 981.83 + }, + { + "priceDate": "2024-09-24T10:09:13", + "newPrice": 911.5 + } + ], + "descriptionVector": [ + 0.05459422618150711, + 0.011146114207804203, + -0.012611564248800278, + 0.047987282276153564, + 0.02432895638048649, + -0.02332301065325737, + -0.06308887153863907, + 0.010798379778862, + 0.023434782400727272, + 0.09383848309516907, + 0.046223774552345276, + 0.011568362824618816, + 0.01603301800787449, + -0.12081269919872284, + 0.0007567870197817683, + 0.005771762225776911, + -0.018243612721562386, + -0.0008033585036173463, + -0.020975807681679726, + -0.028812238946557045, + 0.05509098991751671, + -0.07203059643507004, + -0.003244481747969985, + -0.024006059393286705, + -0.05474325641989708, + -0.04952724650502205, + 0.0031854910776019096, + 0.01174222957342863, + -0.01348710898309946, + 0.03467404097318649, + -0.02348445914685726, + -0.014207414351403713, + -0.03604013845324516, + 0.027098407968878746, + -0.001539188320748508, + 0.05225944146513939, + 0.0019311652285978198, + 0.002750823739916086, + -0.006178486626595259, + 0.043839313089847565, + -0.02034243382513523, + 0.028514182195067406, + 0.007619098760187626, + 0.05265685170888901, + 0.022242551669478416, + -0.0363381952047348, + -0.009848321788012981, + -0.01891424134373665, + -0.047639548778533936, + -0.015859151259064674, + -0.029408354312181473, + 0.01492772065103054, + -0.004141759593039751, + 0.009053501300513744, + 0.05211041122674942, + -0.03273666650056839, + -0.01952277682721615, + 0.20844164490699768, + 0.06502624601125717, + 0.026328425854444504, + -0.024862974882125854, + 0.01608269475400448, + 0.040858734399080276, + 0.04694407805800438, + -0.02640293911099434, + -0.019945023581385612, + -0.010717656463384628, + -0.05509098991751671, + 0.02210594154894352, + 0.06562235951423645, + 0.015300292521715164, + -0.0028796715196222067, + 0.028315477073192596, + -0.022627543658018112, + 0.008115861564874649, + 0.014008709229528904, + 0.07401765137910843, + -0.007047821301966906, + 0.08718185871839523, + 0.05817091837525368, + 0.034574687480926514, + -0.03653689846396446, + -0.029110297560691833, + -0.0071968501433730125, + 0.01639316976070404, + 0.01363613735884428, + 0.07943236082792282, + -0.0912553146481514, + -0.047937605530023575, + 0.037927836179733276, + 0.009922835975885391, + -0.00897898618131876, + 0.019050851464271545, + -0.03643754869699478, + 0.012878574430942535, + 0.10551241040229797, + -0.028166446834802628, + 0.028414828702807426, + -0.006408239249140024, + -0.013338079676032066, + -0.006917421240359545, + -0.0027151189278811216, + -0.04324319586157799, + -0.011152323335409164, + -0.045404113829135895, + 0.016765743494033813, + 0.08256196975708008, + -0.004126235377043486, + 0.017933135852217674, + -0.19781093299388885, + -0.037108175456523895, + -0.05479292944073677, + 0.09537845104932785, + -0.0041510737501084805, + -0.05181235447525978, + -0.030228013172745705, + -0.02722259797155857, + -0.023869449272751808, + 0.03370535373687744, + -0.06467851251363754, + -0.06567203253507614, + 0.03020317479968071, + 0.038871683180332184, + -0.014132900163531303, + 0.013772747479379177, + 0.04483283683657646, + -0.05941282585263252, + -0.024403469637036324, + 0.026477454230189323, + -0.041256144642829895, + -0.01429434772580862, + 0.0044832839630544186, + -0.002229222794994712, + 0.04234902560710907, + -0.04858339577913284, + 0.07163318991661072, + -0.038126539438962936, + 0.04704343155026436, + -0.0429203025996685, + 0.030426718294620514, + -0.03522047773003578, + -0.020677749067544937, + 0.021186931058764458, + 0.01754814386367798, + -0.0181690976023674, + -0.035841431468725204, + -0.05722706764936447, + 0.029780926182866096, + -0.04421188309788704, + 0.03030252829194069, + 0.056730303913354874, + -0.05956185236573219, + -0.039293933659791946, + -0.048484042286872864, + 0.08593995869159698, + 0.021621597930788994, + -0.09195078164339066, + -0.0090845488011837, + -0.009693083353340626, + 0.05593548342585564, + 0.05255749821662903, + -0.05235879495739937, + -0.07322283089160919, + 0.04289546236395836, + -0.03673560544848442, + -0.0034028247464448214, + 0.048484042286872864, + 0.03410276398062706, + 0.04632312431931496, + 0.03770429268479347, + -0.01695202849805355, + -0.02468910813331604, + 0.03643754869699478, + -0.09359010308980942, + 0.05156397446990013, + 0.01213963981717825, + -0.008550528436899185, + -0.07963106781244278, + 0.06502624601125717, + -0.06303919106721878, + -0.014257091097533703, + 0.02322365902364254, + -0.05981023609638214, + -0.04061035439372063, + -0.026874864473938942, + 0.04908015951514244, + -0.020528720691800117, + 0.04567733407020569, + 0.0196345467120409, + 0.0002811754820868373, + 0.03740623593330383, + -0.02843966707587242, + 0.020019538700580597, + 0.008693347685039043, + -0.015722541138529778, + -0.04654666781425476, + 1.9198618247173727e-05, + 0.055786456912755966, + -0.04493219032883644, + -0.02737162820994854, + -0.04997433349490166, + 0.10029640048742294, + 0.020677749067544937, + -0.05186203122138977, + 0.003159100655466318, + -0.047937605530023575, + -0.004120026249438524, + 0.00804134737700224, + -0.008190375752747059, + 0.06522494554519653, + 0.022788990288972855, + -0.05717739090323448, + 0.0163434948772192, + -0.0070726596750319, + 0.030675100162625313, + 0.06840422749519348, + -0.017734430730342865, + -0.026700997725129128, + 0.03767945617437363, + 0.03889652341604233, + 0.011971982195973396, + -0.05240846797823906, + -0.033407293260097504, + -0.055885810405015945, + 0.008463595062494278, + -0.035444021224975586, + 0.004070349968969822, + 0.006619363557547331, + 0.02362106926739216, + 0.05019787698984146, + 0.008966567926108837, + -0.08698315918445587, + -0.03445049747824669, + 0.10059445351362228, + -0.028514182195067406, + 0.04982530325651169, + -0.027992580085992813, + -0.04396350309252739, + -0.05434584617614746, + -0.026825187727808952, + -0.038424599915742874, + -0.016815418377518654, + -0.06611911952495575, + 0.008258680813014507, + -0.02468910813331604, + 0.05489228293299675, + 0.056084513664245605, + -0.031966682523489, + -0.05116656422615051, + -0.050918180495500565, + 0.005753133445978165, + -0.011773277074098587, + -0.01731218211352825, + 0.07083836942911148, + 0.07352088391780853, + 0.02863837219774723, + 0.0605057030916214, + -0.03566756471991539, + -0.023136725649237633, + 0.003171519609168172, + -0.01654219999909401, + 0.009128015488386154, + -0.05687933415174484, + -0.0010781304445117712, + -0.011928515508770943, + 0.029731251299381256, + -0.01507674902677536, + -0.06040634959936142, + -0.033879220485687256, + 0.05280587822198868, + -0.03375503048300743, + -0.01846715435385704, + -0.011698762886226177, + 0.02524796687066555, + 0.017535725608468056, + 0.06597009301185608, + 0.016914771869778633, + 0.06959646195173264, + -0.0033127865754067898, + -0.026626482605934143, + 0.056531600654125214, + -0.026899702847003937, + 0.030873805284500122, + 0.02722259797155857, + 0.0975642055273056, + -0.040709707885980606, + -0.002733747474849224, + -0.016939610242843628, + -0.031395405530929565, + 0.03221506252884865, + -0.00974275916814804, + -0.02762000821530819, + 0.03643754869699478, + 0.022851087152957916, + 0.04284578561782837, + 0.04696891829371452, + -0.000926773005630821, + 0.016504941508173943, + -0.012878574430942535, + -0.03459952399134636, + 0.06428109854459763, + 0.036114651709795, + 0.02580682560801506, + 0.0060977628454566, + 0.005930105224251747, + 0.06810617446899414, + -0.013027602806687355, + -0.026477454230189323, + -0.0970674380660057, + -0.004281473811715841, + 0.0795317143201828, + 0.058767031878232956, + -0.042473215609788895, + 0.05166332423686981, + 0.02913513593375683, + 0.022441256791353226, + 0.034077923744916916, + 0.018044907599687576, + 0.01695202849805355, + 0.03884684666991234, + -0.013102116994559765, + 0.02600552886724472, + -0.05727674439549446, + 0.007097497582435608, + 0.08877149969339371, + 0.003880959004163742, + 0.014629662968218327, + -0.007631517481058836, + -0.002072432078421116, + 0.006706296931952238, + -0.008494642563164234, + -0.056332893669605255, + -0.003995835315436125, + -0.08375419676303864, + -0.034773390740156174, + -0.05250782147049904, + 0.008743024431169033, + -0.002747718943282962, + -0.006849116180092096, + -0.01654219999909401, + 0.04061035439372063, + 0.015846731141209602, + -0.037257205694913864, + 0.001083563780412078, + 0.09274560213088989, + -0.050868503749370575, + 0.05677998065948486, + 0.004051721189171076, + 0.019870510324835777, + 0.02316156215965748, + 0.0011681686155498028, + -0.06025731936097145, + 0.07923366129398346, + 0.043541256338357925, + 0.12518420815467834, + 0.02565779536962509, + 0.0375552624464035, + -0.021124836057424545, + 0.030228013172745705, + -0.01558593101799488, + 0.04987498000264168, + -0.0076625654473900795, + 0.049254026263952255, + 0.029631897807121277, + 0.08852311968803406, + 0.03991488739848137, + -0.07540858536958694, + 0.03040187992155552, + -0.03166862577199936, + -0.018690697848796844, + -0.06860293447971344, + 0.030327364802360535, + 0.009550264105200768, + -0.02580682560801506, + -0.03487274423241615, + 0.06865261495113373, + 0.0344008207321167, + 0.029582221060991287, + 0.027644846588373184, + 0.010022188536822796, + -0.07734595984220505, + 0.08027686178684235, + -0.05191170796751976, + -0.006339934654533863, + 0.059164442121982574, + -0.051265913993120193, + -0.011723601259291172, + 0.08266132324934006, + -0.039741020649671555, + 0.002608004491776228, + -0.05533936992287636, + -0.004772027023136616, + 0.0021857561077922583, + 0.014555148780345917, + 0.04205096513032913, + -0.03531983122229576, + -0.031966682523489, + 0.023298172280192375, + -0.009966302663087845, + 0.07371959090232849, + 0.03919458016753197, + 0.004787550773471594, + -0.04406285658478737, + -0.04632312431931496, + 0.07679951936006546, + -0.04751535505056381, + 0.035543374717235565, + 0.07362023741006851, + -0.012083753943443298, + -0.0795317143201828, + -0.02888675406575203, + -0.04649699479341507, + -0.007780546322464943, + 0.10660528391599655, + 0.055836133658885956, + 0.05429616943001747, + 0.0570780411362648, + -0.008656091056764126, + 0.13621234893798828, + -0.07491182535886765, + 0.06338692456483841, + -0.026551969349384308, + -0.032960209995508194, + -0.025682633742690086, + -0.050371743738651276, + 0.0761040523648262, + -0.038225892931222916, + -0.02347203902900219, + 0.006762182805687189, + -0.038672979921102524, + 0.04314384609460831, + -0.06110181659460068, + -0.019460679963231087, + 0.006793230772018433, + -0.0017479838570579886, + 0.04736632853746414, + 0.038424599915742874, + -0.011872629635035992, + -0.03238892927765846, + 0.02398122102022171, + -0.018044907599687576, + -0.019199879840016365, + 0.0751602053642273, + -0.00675597321242094, + -0.07208027690649033, + -0.03348181024193764, + -0.02485055662691593, + 0.005532694980502129, + 0.01618204638361931, + -0.04309416934847832, + -0.04421188309788704, + 0.013822423294186592, + -0.04845920577645302, + 0.02771936170756817, + -0.06770876049995422, + 0.03191700577735901, + -0.027918066829442978, + 0.07352088391780853, + 0.00948816817253828, + 0.017237666994333267, + -0.03181765228509903, + 0.11942176520824432, + 0.10710205137729645, + 0.0026825189124792814, + -0.015846731141209602, + 0.010456855408847332, + -0.02098822593688965, + 0.03258763626217842, + 0.01593366451561451, + 0.017175571992993355, + 0.007054030895233154, + 0.03912006691098213, + 0.029209649190306664, + -0.024763623252511024, + 0.022068684920668602, + -0.03688463568687439, + 0.02893643081188202, + -0.00994146429002285, + -0.05024755001068115, + -0.0648772120475769, + -0.02645261585712433, + 0.07163318991661072, + -0.06527462601661682, + -0.007016773801296949, + 0.005051456391811371, + -0.029333841055631638, + -0.04860823601484299, + 0.03892135992646217, + 0.0003368672332726419, + 0.0858902782201767, + 0.0600089393556118, + 0.056034836918115616, + -0.020218243822455406, + -0.020205825567245483, + -0.011549733579158783, + -0.025881338864564896, + -0.007178221829235554, + -0.005855591036379337, + -0.0011130589991807938, + 0.02965673618018627, + 0.0198829285800457, + -0.036859795451164246, + -0.0038188635371625423, + 0.025260385125875473, + 0.037257205694913864, + 0.008780281990766525, + -0.05762447789311409, + 0.024453146383166313, + -0.003124948125332594, + -0.02434137463569641, + 0.03137056902050972, + 0.03956715390086174 + ] + }, + { + "id": "ff16234e-ed9d-4d7e-9a2c-ba35a9a193ab", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "uvazquez", + "reviewDate": "2022-09-14T03:32:39", + "stars": 5, + "verifiedUser": false + }, + { + "id": "708fa7d6-6f7d-4072-a735-4b57903b22b9", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandanelson", + "reviewDate": "2021-05-17T08:32:52", + "stars": 5, + "verifiedUser": false + }, + { + "id": "77f5ebcc-f25d-49b2-ae25-2bdc4f6225ab", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissaflynn", + "reviewDate": "2021-12-31T17:59:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "505fcfda-df96-4673-8c7c-a4c19cd2bc97", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "katelyn34", + "reviewDate": "2022-07-24T04:57:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f1d420a2-c5e7-47cc-b0d3-8bf132c999fe", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "cweaver", + "reviewDate": "2022-01-03T11:04:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "14e94500-aa29-413b-8d0e-369d3a0726d3", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "marissamoss", + "reviewDate": "2021-02-15T11:52:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "667065e7-5e5d-416d-bdef-f82cbbbfc8b4", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "dianeharris", + "reviewDate": "2021-01-16T10:09:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e32b9de6-0439-45ba-95d7-7455ef26765f", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "ejohnson", + "reviewDate": "2021-08-30T06:37:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "eff651a7-d1f3-4c74-ac1b-7abb2445d5fd", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "wgibbs", + "reviewDate": "2021-12-26T20:13:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8bc9f6ad-b2fc-4c12-87d2-ba612b6db38d", + "productId": "13e246ec-09b5-4b92-b336-0191e1438251", + "category": "Accessory", + "docType": "customerRating", + "userName": "william47", + "reviewDate": "2021-09-17T03:09:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse 3000 (Steel)", + "description": "This Premium Mouse 3000 (Steel) is rated 4.9 out of 5 by 15.\n\nRated 3 out of 5 by B3D8 from I love this Mouse! Very responsive after a", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-02-01T22:58:21", + "price": 366.72, + "stock": 94, + "priceHistory": [ + { + "priceDate": "2021-05-19T19:03:21", + "newPrice": 361.63 + }, + { + "priceDate": "2023-10-08T19:03:21", + "newPrice": 366.72 + } + ], + "descriptionVector": [ + -0.04853474348783493, + 0.009108170866966248, + -0.009176692925393581, + 0.02780943736433983, + 0.031667761504650116, + 0.05907660722732544, + -0.034682732075452805, + 0.06371502578258514, + 0.03322795405983925, + 0.10845469683408737, + 0.06734143197536469, + -0.020387966185808182, + -0.01625555381178856, + -0.08066634833812714, + -0.02584865130484104, + 0.03139367327094078, + -0.027598600834608078, + -0.020451216027140617, + -0.013609546236693859, + -0.06991364061832428, + 0.012386690825223923, + -0.027155842632055283, + -0.020999394357204437, + 0.027345595881342888, + 0.01011491846293211, + -0.054691191762685776, + 0.01045225840061903, + 0.018479887396097183, + 0.054353851824998856, + -0.015201368369162083, + -0.03445081040263176, + 0.04621553421020508, + 0.006045759189873934, + 0.013556837104260921, + 0.011427381075918674, + -0.03898381441831589, + -0.005334183108061552, + -0.053847841918468475, + 0.0761965960264206, + 0.06831128150224686, + -0.013019202277064323, + 0.017668165266513824, + 0.08315422385931015, + -0.052877992391586304, + 0.04176686704158783, + -0.0207358468323946, + 0.018522055819630623, + 0.014800777658820152, + 0.017994962632656097, + 0.05106478929519653, + 0.027303427457809448, + 0.055871881544589996, + -0.0808350145816803, + -0.01934432052075863, + 0.04786006361246109, + -0.015665210783481598, + 0.053468335419893265, + 0.12211695313453674, + 0.03780312463641167, + -0.053341832011938095, + 0.02319210208952427, + -0.018817227333784103, + -0.021990329027175903, + -0.05089611932635307, + -0.08905766904354095, + -0.06936546415090561, + -0.011121666990220547, + 0.005381621886044741, + 0.03333337604999542, + 0.008928959257900715, + -0.04629986733198166, + -0.06409453600645065, + 0.03327012434601784, + 0.031836431473493576, + 0.0554502047598362, + 0.06999798119068146, + 0.0880456492304802, + 0.011596051044762135, + -0.002402227371931076, + -0.00968797318637371, + 0.03322795405983925, + 0.02314993366599083, + -0.04495050758123398, + 0.04604686424136162, + 0.0914190486073494, + 0.01934432052075863, + -0.03360746428370476, + -0.10390061140060425, + -0.020082252100110054, + 0.07547974586486816, + 0.009962061420083046, + 0.034809235483407974, + -0.03198401629924774, + -0.09917785972356796, + -0.016909150406718254, + 0.004414405673742294, + -0.009477135725319386, + 0.024646878242492676, + -0.03303820267319679, + -0.008417678996920586, + -0.015612500719726086, + 0.02094668336212635, + -0.08226870745420456, + -0.04638420417904854, + 0.014979989267885685, + 0.002362695289775729, + -0.021094270050525665, + -0.01941811293363571, + -0.04764922708272934, + -0.04554085433483124, + -0.02365594357252121, + -0.06932330131530762, + -0.02991781011223793, + -0.0592452771961689, + -0.010889745317399502, + -0.01136412937194109, + -0.07328703999519348, + -0.05928744375705719, + 0.00572423217818141, + -0.02340293861925602, + 0.0045725335367023945, + 0.05991995707154274, + 0.02361377514898777, + 0.025448059663176537, + 0.04524568095803261, + 0.00761649664491415, + -0.025954069569706917, + -0.03000214509665966, + 0.040944598615169525, + -0.0503479428589344, + -0.005935069639235735, + 0.09049136191606522, + 0.020619885995984077, + 0.01920727640390396, + -0.04874558001756668, + 0.093949094414711, + -0.06468487530946732, + 0.05064311623573303, + -0.009972603060305119, + 0.03752903640270233, + 0.014969446696341038, + -0.0490829199552536, + -0.018079297617077827, + 0.021652989089488983, + -0.018226882442831993, + 0.0393633209168911, + -0.07328703999519348, + 0.014336935244500637, + 0.04807090014219284, + 0.006530684884637594, + 0.0448661744594574, + -0.053974345326423645, + 0.031709928065538406, + -0.052793655544519424, + 0.06784743815660477, + -0.016023634001612663, + -0.07100999355316162, + 0.02420412003993988, + -0.09512978047132492, + 0.029179880395531654, + -0.02344510518014431, + -0.026734167709946632, + -0.013419792987406254, + -0.010209795087575912, + 0.013525212183594704, + 0.10449095815420151, + -0.0002811712911352515, + 0.0007122347014956176, + -0.03795070946216583, + 0.01866964064538479, + -0.07138950377702713, + -0.02907446213066578, + 0.03204726800322533, + -0.02230658382177353, + 0.03160450980067253, + -0.04689021036028862, + -4.7685462050139904e-05, + -0.04807090014219284, + 0.020335255190730095, + -0.016814272850751877, + 0.08243738114833832, + 0.02487879991531372, + -0.10938238352537155, + -0.04277888312935829, + 0.12034592032432556, + 0.01599200814962387, + 0.019238902255892754, + 0.017046194523572922, + -0.03141475468873978, + 0.033628545701503754, + 0.040775932371616364, + 0.02184274233877659, + 0.025658898055553436, + 0.011079499498009682, + -0.010130731388926506, + 0.11747853457927704, + -0.0006918098079040647, + 0.04172469675540924, + 0.013841467909514904, + -0.04629986733198166, + -0.04533001407980919, + 0.06620290875434875, + 0.09799716621637344, + -0.018732892349362373, + 0.02831544727087021, + -0.0222222488373518, + 0.02255958877503872, + 0.011163834482431412, + 0.020387966185808182, + -0.013577921316027641, + 0.020345797762274742, + -0.02226441726088524, + 0.0031151208095252514, + -0.03360746428370476, + 0.08509393036365509, + 0.056209221482276917, + 0.00045066469465382397, + -0.006978713907301426, + -0.09504544734954834, + -0.07122083753347397, + 0.03333337604999542, + 0.01155388355255127, + -0.03750795125961304, + 0.004577804356813431, + -0.03472490236163139, + -0.0036632977426052094, + 0.09631047397851944, + -0.027008255943655968, + 0.03394480422139168, + 0.04971543326973915, + -0.019818704575300217, + -0.02764076739549637, + -0.018079297617077827, + 0.017952794209122658, + -0.052920158952474594, + 0.07408822327852249, + -0.08863599598407745, + -0.036791104823350906, + 0.026923920959234238, + 0.075353242456913, + -0.020999394357204437, + -0.030191898345947266, + -0.011427381075918674, + -0.01811092346906662, + 0.028589535504579544, + -0.04071268066763878, + 0.08344939351081848, + -0.026945004239678383, + -0.10246691852807999, + -0.05747424438595772, + -0.036664605140686035, + -0.02738776244223118, + -0.013114078901708126, + 0.08593727648258209, + 0.06337768584489822, + 0.017531119287014008, + 0.021948160603642464, + 0.01858530566096306, + -0.02348727360367775, + -0.00037654221523553133, + -0.03198401629924774, + 0.08450358361005783, + -0.029348550364375114, + 0.04629986733198166, + 0.025869734585285187, + 0.04895641654729843, + 0.023086681962013245, + -0.07792545855045319, + -0.024942049756646156, + 0.0245414599776268, + -0.027303427457809448, + -0.0028041359037160873, + 0.0880456492304802, + -0.03740253299474716, + -0.012239104136824608, + -0.009398072026669979, + -0.03356529399752617, + 0.017583830282092094, + -0.024899883195757866, + -0.04045967385172844, + 0.05658872798085213, + 0.0554502047598362, + 0.0486612431704998, + 0.06029946357011795, + 0.0023047151044011116, + -0.02610165625810623, + 0.029938893392682076, + -0.02542697638273239, + 0.01502215676009655, + -0.011005706153810024, + -0.008665412664413452, + 0.03261652588844299, + 0.021315649151802063, + -0.03889947757124901, + 0.020799098536372185, + 0.052034642547369, + -0.00385568686760962, + 0.020957225933670998, + -0.005487040150910616, + 0.01377821620553732, + 0.03291169926524162, + 0.040312089025974274, + -0.0837867334485054, + -0.052161142230033875, + 0.07628092914819717, + 0.056040551513433456, + 0.009788121096789837, + -0.054902028292417526, + -0.04301080480217934, + -0.05148646607995033, + 0.011922848410904408, + 0.008254279382526875, + -0.0664137452840805, + -0.024562543258070946, + 0.13274314999580383, + 0.0059877787716686726, + 0.007901127450168133, + 0.06088980659842491, + 0.0406072624027729, + 0.001370442332699895, + -0.0482395701110363, + -0.03761336952447891, + -0.016097426414489746, + 0.04731188714504242, + 0.02213791385293007, + -0.03398697078227997, + -0.03972174599766731, + 0.0107948686927557, + -0.0321737676858902, + -0.010315214283764362, + 0.02030363120138645, + -0.034176722168922424, + -0.05612488463521004, + 0.020113876089453697, + 0.03883622586727142, + -0.0001321850868407637, + -0.05844409391283989, + 0.055028531700372696, + 0.07889530807733536, + 0.007774624973535538, + -0.020546093583106995, + 0.0744677260518074, + -0.02192707732319832, + 0.019534073770046234, + 0.02352944016456604, + -0.0125869857147336, + 0.015939299017190933, + -0.10482829809188843, + 0.022032495588064194, + 0.01127979438751936, + 0.001062092836946249, + -0.07400389015674591, + -0.001931796665303409, + 0.0005313758156262338, + 0.05890793725848198, + -0.01827959157526493, + 0.007063048891723156, + -0.003260071389377117, + 0.003650120459496975, + 0.06944980472326279, + 0.06337768584489822, + 0.008254279382526875, + -0.004235194064676762, + 0.03609534353017807, + -0.012934867292642593, + 0.015580874867737293, + -0.022116830572485924, + 0.03601100668311119, + 0.040185585618019104, + -0.04811306670308113, + 0.013915260322391987, + -0.039848245680332184, + 0.06371502578258514, + 0.0748894065618515, + -0.031203918159008026, + 0.016181761398911476, + 0.03181534633040428, + 0.05730557441711426, + -0.07337137311697006, + 0.005993049591779709, + -0.007294970098882914, + 0.05979345366358757, + 0.031246084719896317, + -0.00203194422647357, + 0.04756489023566246, + -0.00929265283048153, + 0.027872689068317413, + 0.01832175999879837, + -0.02551131136715412, + 0.0056346263736486435, + 0.0639258623123169, + -0.0002455924986861646, + -0.027240177616477013, + 0.028252195566892624, + 0.026354661211371422, + -0.06717275828123093, + 0.0023323874920606613, + 0.07240152359008789, + -0.00798019114881754, + -0.04634203389286995, + -0.017415160313248634, + 0.011912306770682335, + -0.015812795609235764, + -0.004106055945158005, + 0.06118497997522354, + -0.08416624367237091, + 0.07092566043138504, + -0.023424021899700165, + -0.08188919723033905, + -0.026987172663211823, + -0.02014550194144249, + -0.06181749328970909, + 0.08049767464399338, + 0.027619684115052223, + 0.021094270050525665, + -1.6409894669777714e-05, + 0.09892485290765762, + -0.005671523045748472, + 0.009029106236994267, + -0.07016664743423462, + 0.08475659042596817, + -0.012597527354955673, + -0.001176735619083047, + 0.03263761103153229, + -0.04012233391404152, + 0.031330421566963196, + -0.11157508939504623, + -0.0032679778523743153, + 0.0634620189666748, + -0.030529238283634186, + -0.04819740355014801, + -0.12709271907806396, + -0.037212781608104706, + 0.014410728588700294, + 0.00713157095015049, + 0.02894795872271061, + 0.005497582256793976, + 0.014231516979634762, + 0.017341366037726402, + 0.006525414064526558, + 0.029770225286483765, + -0.06164882332086563, + 0.05899227038025856, + 0.001448188559152186, + -0.0292009636759758, + 0.06312467902898788, + -0.04828173667192459, + 0.027345595881342888, + 0.028505200520157814, + 0.0024944685865193605, + 0.04511917755007744, + -0.004754380788654089, + -0.07248585671186447, + -0.014695358462631702, + 0.008760289289057255, + 0.0003679769579321146, + -0.002946451073512435, + 0.07058832049369812, + -0.01516974251717329, + -0.005961424205452204, + -0.11402080208063126, + 0.031077414751052856, + 0.06152231991291046, + 0.06029946357011795, + -0.0063514732755720615, + -0.024899883195757866, + -0.01292432565242052, + -0.022665007039904594, + -0.0020622522570192814, + -0.008823540061712265, + -0.026565497741103172, + -0.022285500541329384, + 0.004954676143825054, + 0.04113435372710228, + 0.03835130110383034, + -0.04929375648498535, + 0.007073590997606516, + 0.04406499117612839, + 0.00036534148966893554, + 0.0499262697994709, + 0.011965015903115273, + -0.005898172967135906, + 0.009872456081211567, + 0.04667937383055687, + 0.0184060949832201, + -0.013029743917286396, + 0.0698293074965477, + 0.004854528233408928, + 0.021631905809044838, + 0.054564688354730606, + -0.024562543258070946, + 0.0507696196436882, + -0.031330421566963196, + -0.04937809333205223, + -0.03440864384174347, + 0.05051661282777786, + -0.017383534461259842, + -0.004533001687377691, + 0.010847577825188637, + 0.020830724388360977, + 0.0355471670627594, + -0.036917608231306076, + -0.0031836428679525852, + 0.055365871638059616, + -0.015665210783481598, + -0.028969042003154755, + -0.05186597257852554, + -0.011585508473217487, + 0.02932746522128582, + -0.04193553701043129, + 0.06957630068063736, + -0.08104585111141205 + ] + }, + { + "id": "3b38a89d-1e1c-4032-8894-a2025d6fe3f2", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenniferburns", + "reviewDate": "2022-06-23T15:27:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9ccea635-8edc-4243-8d43-c76f5b39134d", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "petersonashley", + "reviewDate": "2021-05-19T19:03:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7d4aa265-1189-42b1-bbed-324872bdf60a", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rebecca18", + "reviewDate": "2022-07-01T22:45:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2cdbd118-f1a5-4f88-89f9-c8cc5aa5f1ea", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dana05", + "reviewDate": "2022-02-13T13:20:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ddd8da01-abc8-4d6f-8202-8655678b251e", + "productId": "db6a1f34-6a31-4d09-8bd3-37ce52acba78", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "krystal81", + "reviewDate": "2021-11-24T14:27:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "97f82315-db68-4357-b679-856bde7ace55", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Black)", + "description": "This Premium Computer Super (Black) is the first to offer 4×4 panels. It is designed to look like a conventional laptop. So if you are looking to add a small touch screen display to your gaming PC, here's what your PC should look like. The keyboard and mouse are all built in to the standard computer keyboard. You may be seeing this here when you are using your computer from an Intel laptop or from", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-06-04T12:45:08", + "price": 714.85, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-01-12T07:30:32", + "newPrice": 654.09 + }, + { + "priceDate": "2025-02-21T07:30:32", + "newPrice": 714.85 + } + ], + "descriptionVector": [ + -0.020217526704072952, + 0.05831022560596466, + -0.03844601660966873, + -0.008322554640471935, + 0.003421930829063058, + 0.008165525272488594, + -0.043837353587150574, + 0.04203151911497116, + 0.057263363152742386, + 0.0557977557182312, + 0.09411291033029556, + -0.05181967839598656, + 0.0720764622092247, + -0.06532420217990875, + -0.02152610383927822, + 0.03506988286972046, + -0.005846071057021618, + -0.00121207011397928, + -0.007216806523501873, + -0.004406635649502277, + 0.028867226094007492, + 0.034206222742795944, + -0.07909043878316879, + 0.048391204327344894, + -0.0165142510086298, + 0.016658194363117218, + 0.043130721896886826, + -0.02729693241417408, + -0.030332833528518677, + 0.010383564978837967, + 0.03575034439563751, + 0.014865443110466003, + -0.014734585769474506, + -0.0065199886448681355, + 0.06244533136487007, + -0.10311593115329742, + -0.08071307837963104, + -0.03292381763458252, + 0.06171252578496933, + 0.03614291921257973, + 0.021513018757104874, + 0.033368732780218124, + 0.018948206678032875, + -0.020662443712353706, + -0.022729996591806412, + 0.011011681519448757, + -0.00454730773344636, + 0.025962183251976967, + 0.004818837624043226, + -0.02944299951195717, + 0.05098218843340874, + 0.022062622010707855, + 0.007171005941927433, + 0.06757495552301407, + 0.018019115552306175, + 0.013792409561574459, + 0.017783571034669876, + 0.1209125891327858, + 0.04051356762647629, + -0.048888467252254486, + 0.04553850740194321, + -0.013426007702946663, + -0.018398603424429893, + -0.011535112746059895, + 0.0038275900296866894, + -0.011862257495522499, + -0.06129378080368042, + 0.01589922048151493, + -0.010723794810473919, + 0.08589504659175873, + -0.06490545719861984, + -0.0216177050024271, + 0.05846725404262543, + 0.034337081015110016, + 0.008931043557822704, + 3.2267175811284687e-06, + 0.07820060849189758, + 0.0032223728485405445, + 0.018293917179107666, + 0.02986174449324608, + 0.03465113788843155, + 0.018660318106412888, + -0.028579339385032654, + -0.0011507305316627026, + 0.06705152243375778, + 0.038158126175403595, + 0.04655919596552849, + -0.07898575067520142, + -0.003153672441840172, + 0.00909461546689272, + -0.04765840247273445, + 0.09180981665849686, + 0.092071533203125, + -0.03344724699854851, + 0.05762976408004761, + 0.027820363640785217, + -0.08594738692045212, + 0.0325574167072773, + -0.012745547108352184, + 0.04017333686351776, + 0.07804358005523682, + -0.036718692630529404, + -0.03083009272813797, + -0.07223349064588547, + 0.015702933073043823, + -0.010023705661296844, + 0.0595141164958477, + -0.009951733984053135, + -0.018908949568867683, + -0.12038915604352951, + -0.05496026575565338, + -0.03310701623558998, + -0.016749795526266098, + -0.03493902459740639, + -0.036901891231536865, + 0.06867416203022003, + -0.06924993544816971, + -0.013020348735153675, + -0.005077281966805458, + 0.00848612654954195, + 0.007969238795340061, + 0.05993286147713661, + 0.01952398009598255, + 0.01566367596387863, + -0.029835572466254234, + 0.04153425991535187, + 0.0032812587451189756, + 0.013726980425417423, + 0.040984656661748886, + -0.018163058906793594, + 0.001356831518933177, + 0.08898328989744186, + -0.0019759524147957563, + 0.07259989529848099, + 0.007328035309910774, + 0.054384492337703705, + 0.006366231013089418, + 0.05846725404262543, + -0.01327552180737257, + 0.03745149448513985, + -0.020845644176006317, + 0.001769851427525282, + -0.04915018007159233, + -0.005878785625100136, + -0.09081529825925827, + 0.027637163177132607, + -0.0012595060979947448, + 0.1069893166422844, + -0.04375883936882019, + 0.06202658638358116, + -0.0022867396473884583, + -0.008263668976724148, + -0.05757742002606392, + -0.06218361482024193, + 0.09379885345697403, + 0.06003754958510399, + -0.024627434089779854, + 0.05574541166424751, + 0.009421760216355324, + 0.028108250349760056, + 0.014224240556359291, + 0.020492328330874443, + -0.047030285000801086, + -0.027506304904818535, + 0.056478217244148254, + 0.0009536260622553527, + 0.03692806512117386, + -0.04365415498614311, + -0.06124144047498703, + -0.01243803184479475, + -0.04124636948108673, + -0.02041381411254406, + 0.04006865248084068, + 0.030489861965179443, + 0.09458400309085846, + 0.010789223946630955, + 0.03889093175530434, + 0.02403857372701168, + 0.00845995545387268, + -0.0572110190987587, + 0.0036411175969988108, + -0.04176980257034302, + -0.07197177410125732, + -0.003771975403651595, + 0.0353577695786953, + 0.017103111371397972, + 0.021277474239468575, + 0.024679776281118393, + -0.001019054907374084, + 0.006850404664874077, + 0.03870772942900658, + -0.04320923611521721, + 0.025543438270688057, + -0.013465264812111855, + 0.021656962111592293, + -0.03865538910031319, + -0.00647745979949832, + 0.020754043012857437, + 0.013033434748649597, + -0.010422822088003159, + -0.01566367596387863, + 0.08573801815509796, + 0.04472718760371208, + 0.028945740312337875, + 0.005211411044001579, + 0.030620720237493515, + 0.00454730773344636, + 0.02724458836019039, + 0.0007054051966406405, + -0.00012186130334157497, + -0.00045186825445853174, + -0.010592937469482422, + -0.0376608669757843, + -0.028160594403743744, + 0.027584819123148918, + -0.0674179270863533, + 0.014538299292325974, + 0.039597563445568085, + -0.033604275435209274, + -0.10667525976896286, + 0.08244039863348007, + 0.026956701651215553, + -0.011960401199758053, + -0.029416827484965324, + 0.03179844096302986, + 0.0011679056333377957, + 0.09003014862537384, + 0.009703104384243488, + -0.02352822758257389, + -0.01311194896697998, + -0.0851098969578743, + -0.06008988991379738, + -6.123734783614054e-05, + 0.019864210858941078, + 0.03818430006504059, + 0.010363935492932796, + 0.030385175719857216, + 0.0202306117862463, + -0.03716360777616501, + 0.02826528064906597, + -0.027218418195843697, + -0.011724856682121754, + -0.09500274807214737, + -0.038524530827999115, + 0.003997704945504665, + -0.017521856352686882, + 0.06056097894906998, + -0.08542395383119583, + -0.06097972393035889, + -0.038576871156692505, + -0.041508086025714874, + 0.04980447143316269, + -0.07757248729467392, + 0.0511653907597065, + 0.013197006657719612, + 0.0283699668943882, + 0.05370403081178665, + -0.03407536447048187, + -0.012608147226274014, + 0.024143259972333908, + -0.02580515295267105, + 0.011175254359841347, + -0.06380625069141388, + 0.00161936494987458, + -0.04841737821698189, + 0.012012744322419167, + 0.05804850906133652, + -0.03022814728319645, + -0.053128257393836975, + 0.06354453414678574, + 0.05757742002606392, + -0.050903674215078354, + 0.036849550902843475, + -0.0005712760030291975, + 0.05325911566615105, + 0.0003866438346449286, + -0.0446486733853817, + 0.0953168049454689, + -0.010547136887907982, + 0.030123461037874222, + -0.011829542927443981, + 0.04263346269726753, + 0.012123973108828068, + -0.052159909158945084, + 0.056844618171453476, + -0.029887916520237923, + -0.01841168850660324, + 0.03758235275745392, + 0.023737600073218346, + -0.037739381194114685, + 0.006611589342355728, + 0.013543779961764812, + 0.05129624903202057, + 0.01595156267285347, + 0.05836256965994835, + 0.014145725406706333, + -0.020060496404767036, + 0.019497808068990707, + 0.02571355365216732, + -0.044570159167051315, + 0.007269149646162987, + -0.03389216586947441, + -0.06867416203022003, + 0.05053727328777313, + -0.018542546778917313, + 0.09756755828857422, + -0.023659085854887962, + -0.0005287472158670425, + -0.0179013442248106, + -0.015127158723771572, + 0.05053727328777313, + -0.03873390331864357, + -0.04862675070762634, + 0.03088243491947651, + 0.014446698129177094, + -0.019929639995098114, + 0.06537654250860214, + 0.014459784142673016, + -0.03446793928742409, + -0.0008939221734181046, + -0.019236093387007713, + -0.09830036014318466, + -0.10866429656744003, + 0.10772211849689484, + 0.07840997725725174, + -0.05537901073694229, + -0.10363935679197311, + 0.016658194363117218, + -0.020256783813238144, + -0.10081283003091812, + 0.00195305235683918, + 0.0022556609474122524, + -0.014289669692516327, + -0.035828858613967896, + 0.05867662653326988, + -0.016906823962926865, + -0.06333516538143158, + 0.08327788859605789, + 0.0002580351720098406, + 0.06364922225475311, + 0.07307098060846329, + -0.009532989002764225, + -0.01595156267285347, + -0.03363044932484627, + -0.05715867877006531, + -0.07197177410125732, + -0.015912305563688278, + -0.02920745499432087, + -0.02706138789653778, + 0.029495343565940857, + 0.001673343824222684, + -0.0548555813729763, + -0.01985112391412258, + 0.005849342793226242, + 0.04784160479903221, + -0.018712662160396576, + 0.03807961195707321, + -0.03428473696112633, + -0.015140244737267494, + 0.03946670517325401, + -0.021604618057608604, + -0.05142710730433464, + 0.045459993183612823, + 0.0804513618350029, + -0.08919265866279602, + 0.0014713321579620242, + -0.04820800572633743, + 0.0008628434734418988, + 0.012248287908732891, + 0.005253939889371395, + 0.03041134774684906, + -0.042711976915597916, + -0.04962126910686493, + 0.03509605675935745, + -0.03548862785100937, + 0.04493656009435654, + -0.05454152077436447, + 0.018437860533595085, + -0.043601810932159424, + -0.007956152781844139, + -0.030018774792551994, + 0.026263155043125153, + -0.034023020416498184, + 0.019968897104263306, + 0.0399901382625103, + -0.0753217339515686, + 0.04514593258500099, + -0.06108441203832626, + -0.032714445143938065, + 0.0716053768992424, + 0.03988545015454292, + 0.069773368537426, + -0.03847218677401543, + 0.00902264378964901, + 0.021513018757104874, + -0.059828177094459534, + -0.024025488644838333, + 0.03292381763458252, + 0.017521856352686882, + 0.015114073641598225, + 0.03679720684885979, + 0.05320677161216736, + -0.0010738515993580222, + -0.04608811065554619, + -0.06626638025045395, + -0.05679227411746979, + -0.017639627680182457, + 0.03841984272003174, + -0.09338010847568512, + -0.02594909630715847, + 0.012837148271501064, + -0.0001037150141200982, + -0.025006921961903572, + 0.05391340330243111, + 0.05867662653326988, + 0.006647575180977583, + 0.04778926074504852, + 0.03957139328122139, + 0.045826394110918045, + -0.04148191586136818, + 0.059043027460575104, + 0.03297615796327591, + 0.023750687018036842, + 0.0021902320440858603, + -0.026799673214554787, + -0.0306992344558239, + 0.02376377210021019, + 0.04129871353507042, + -0.016540423035621643, + -0.07699671387672424, + 0.06684215366840363, + -0.07521705329418182, + -0.031458210200071335, + -0.06113675236701965, + -0.02543875202536583, + -0.004786123055964708, + 0.08626144379377365, + 0.023593656718730927, + -0.02897191233932972, + 0.07683968544006348, + 0.018634147942066193, + -0.06427734345197678, + 0.02032221294939518, + 0.00457020802423358, + -0.06841244548559189, + 0.07710140198469162, + -0.02254679426550865, + 0.0020266599021852016, + 0.08458646386861801, + 0.02980940230190754, + -0.062288302928209305, + -0.03821047022938728, + -0.06302110850811005, + -0.06715621054172516, + 0.02529480867087841, + -0.023659085854887962, + -0.01164634246379137, + 0.008597356267273426, + -0.016592765226960182, + 0.03389216586947441, + 0.03315936028957367, + 0.03245272859930992, + 0.08861688524484634, + -0.03174609690904617, + -0.03156289458274841, + -0.08055604994297028, + -0.09521211683750153, + -0.038105785846710205, + 0.012791347689926624, + 0.024679776281118393, + -0.02473212033510208, + -0.020636271685361862, + 0.0283699668943882, + 0.014760756865143776, + 0.0404612235724926, + -0.0711342841386795, + 0.026106126606464386, + 0.00544041208922863, + -0.036666348576545715, + -0.023502057418227196, + 0.027925049886107445, + 0.03760852664709091, + -0.026250069960951805, + -0.0008980114944279194, + 0.018908949568867683, + -0.015179501846432686, + 0.010782680474221706, + 0.02516395039856434, + 0.01818923093378544, + -0.011796828359365463, + 0.07165771722793579, + 0.06904056668281555, + 0.014289669692516327, + -0.08259742707014084, + -0.03910030424594879, + 0.00583625677973032, + -0.035410113632678986, + 0.05140093341469765, + 0.048888467252254486, + 0.09128638356924057, + -0.022167308256030083, + -0.03467731177806854, + -0.0074981506913900375, + 0.03151055425405502, + 0.040565911680459976, + 0.055588383227586746, + 0.011587455868721008, + 0.011639798991382122, + -0.00045513969962485135, + 0.007975781336426735, + 0.07280926406383514, + -0.06359688192605972 + ] + }, + { + "id": "eaaffd01-e05d-4f67-ae22-73e12601140c", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "kenneth80", + "reviewDate": "2022-02-12T18:10:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5f8a46e6-71ea-4b7d-9cbc-ecf9298653b7", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "dylan41", + "reviewDate": "2022-09-01T13:12:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "23ba10f0-1258-4633-b84b-4cddb71339c4", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "ijensen", + "reviewDate": "2022-12-06T05:30:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e4d7381d-2b5d-4e76-961a-8d45e62a4334", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamselizabeth", + "reviewDate": "2022-11-04T14:37:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1055da6e-537f-4f9d-a7b8-d45d390fa839", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "pattersoncynthia", + "reviewDate": "2021-07-29T23:16:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0556308f-57ba-449f-b99b-8db3777a0662", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "matthewwatkins", + "reviewDate": "2022-08-26T02:54:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0f6f24ed-ebc9-4f82-bfb1-6cd74e672bae", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "fjohnson", + "reviewDate": "2021-09-05T20:06:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a75cf7c3-53ad-4c14-8cc5-35900ab0dc7b", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "timothymeyer", + "reviewDate": "2022-12-28T08:42:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c84391c9-013f-4341-8722-3f16d6987e80", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamesparza", + "reviewDate": "2021-08-26T21:53:33", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9475a651-9a26-49b0-aa9d-1c94193be460", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "guerrerotracey", + "reviewDate": "2022-12-17T16:46:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "08888f21-2a93-46cc-8ff6-068c03edb35e", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "richardadams", + "reviewDate": "2021-01-12T07:30:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "da48c3bb-dfec-4c46-ab7c-89fc0463d9c9", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcintoshmichael", + "reviewDate": "2022-12-06T18:17:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "207515a6-d308-431c-b1db-3ae730ca9bf9", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashley46", + "reviewDate": "2021-07-29T15:59:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "68e0f50f-e194-415b-bd85-0e8a82362be2", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "steven16", + "reviewDate": "2021-02-12T11:34:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f12e992a-ede5-4d88-b134-cde3a1dc8930", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "twilliams", + "reviewDate": "2022-07-11T23:38:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d8464df4-2917-4d3d-be18-453d4ce3658b", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "wstewart", + "reviewDate": "2021-08-16T05:16:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fd1ecd38-f183-409b-ab78-681767b92438", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "hvazquez", + "reviewDate": "2022-08-15T22:37:46", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c508c035-b998-4d3d-9c9d-805c919f9ea3", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "boothjessica", + "reviewDate": "2021-05-09T19:02:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "94d3e808-201a-4557-9284-e899e7182d9f", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "gavinbrown", + "reviewDate": "2022-01-05T12:56:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e4383343-7f56-44f3-b20d-19cf4185886e", + "productId": "97f82315-db68-4357-b679-856bde7ace55", + "category": "Electronics", + "docType": "customerRating", + "userName": "mark22", + "reviewDate": "2022-12-08T13:46:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "96939938-db4b-42d6-a0cc-4c695f032053", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Pro (Black)", + "description": "This Amazing Stand Pro (Black) is rated 4.3 out of 5 by 27.\n\nRated 4 out of 5 by Joe from Great Pro I bought this because it turned out to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-02-15T04:48:44", + "price": 767.84, + "stock": 71, + "priceHistory": [ + { + "priceDate": "2021-01-21T23:34:25", + "newPrice": 827.94 + }, + { + "priceDate": "2022-01-08T23:34:25", + "newPrice": 821.8 + }, + { + "priceDate": "2022-12-26T23:34:25", + "newPrice": 800.37 + }, + { + "priceDate": "2025-05-15T23:34:25", + "newPrice": 767.84 + } + ], + "descriptionVector": [ + 0.010150665417313576, + 0.023803137242794037, + -0.01714283600449562, + 0.06728964298963547, + -0.006471477914601564, + -0.007301154546439648, + -0.07649046927690506, + 0.043738264590501785, + 0.037764593958854675, + 0.10436760634183884, + 0.025657035410404205, + -0.002493321429938078, + 0.0015835380181670189, + -0.049757711589336395, + 0.016707971692085266, + -0.034720540046691895, + 0.027419384568929672, + -0.01398434303700924, + -0.00476634968072176, + 0.01906539872288704, + 0.04419601708650589, + -0.10720567405223846, + -0.04044244810938835, + 0.04920841008424759, + -0.0006644565728493035, + -0.058958541601896286, + 0.009910345077514648, + 0.011031839065253735, + 0.05923319235444069, + 0.03913785144686699, + -0.032637763768434525, + 0.02703029476106167, + -0.017337381839752197, + 0.03909207507967949, + 0.003930951002985239, + 0.10299434512853622, + 0.004895092453807592, + 0.01609000563621521, + -0.04463088512420654, + 0.10262814164161682, + -0.01114627718925476, + 0.032866641879081726, + 0.05854656547307968, + -0.009893178939819336, + 0.043578051030635834, + -0.04806402698159218, + 0.005392898339778185, + -0.016570646315813065, + -0.035613156855106354, + 0.012324989773333073, + 0.0300972368568182, + 0.02723628282546997, + -0.045615050941705704, + -0.012038894928991795, + 0.033759258687496185, + -0.006002281792461872, + -0.04250233247876167, + 0.08971951901912689, + 0.01364102866500616, + -0.07942008227109909, + -0.023803137242794037, + 0.021022289991378784, + 0.031790923327207565, + -0.010322322137653828, + -0.005973672028630972, + 0.004511724691838026, + -0.02606901340186596, + -0.04829290509223938, + -0.035521604120731354, + 0.0602402500808239, + 0.053648609668016434, + 0.019362937659025192, + 0.0698988288640976, + 0.008313932456076145, + 0.032866641879081726, + -0.014957067556679249, + 0.09850837290287018, + 0.04140372574329376, + 0.02812889963388443, + 0.05905009061098099, + 0.04428756982088089, + 0.030852528288960457, + 0.03492652624845505, + 0.04536328837275505, + 0.043715376406908035, + -0.022326884791254997, + 0.01366391684859991, + -0.1104099377989769, + -0.03112718090415001, + 0.04943728446960449, + -0.0707685574889183, + 0.019397268071770668, + -0.05662400275468826, + -0.0449741967022419, + 0.022429879754781723, + -0.0001313356769969687, + -0.04144950211048126, + 0.050947871059179306, + 0.00651725335046649, + -0.0354071669280529, + -0.012725523672997952, + -0.054976094514131546, + -0.05753950774669647, + -0.011003229767084122, + -0.04627879336476326, + 0.025771474465727806, + 0.023150840774178505, + -0.024695755913853645, + 0.009246603585779667, + -0.09118432551622391, + 0.05135984718799591, + 0.001647909521125257, + -0.007816126570105553, + -0.03716951608657837, + -0.06289521604776382, + 0.02899863012135029, + -0.02828911319375038, + -0.043761152774095535, + 0.050718992948532104, + -0.09393084049224854, + -0.04426468163728714, + 0.02817467600107193, + -0.03341594338417053, + 0.07131786644458771, + 0.07346930354833603, + 0.0451572984457016, + 0.028540877625346184, + 0.029410608112812042, + 0.05145139619708061, + -0.10748032480478287, + -0.04948306083679199, + 0.07127209007740021, + 0.05850078910589218, + -0.0009956120047718287, + -0.05932474508881569, + 0.07818415015935898, + 0.0003011154185514897, + 0.0504901185631752, + 0.01035093143582344, + 0.020061010494828224, + 0.010631305165588856, + -0.043852705508470535, + 0.0124966474249959, + 0.052870430052280426, + 0.02123972214758396, + 0.023620037361979485, + 0.03250043839216232, + 0.010127777233719826, + 0.021857688203454018, + 0.02611478790640831, + 0.03524695336818695, + -0.10317745059728622, + -0.07493411004543304, + -0.11581142246723175, + 0.06683188676834106, + -0.0149913989007473, + -0.037650156766176224, + -0.020129673182964325, + -0.03719240427017212, + 0.08660680055618286, + -0.03547583147883415, + -0.0005042431293986738, + -0.041815705597400665, + 0.03897763788700104, + 0.012714079581201077, + 0.025565484538674355, + 0.07594116777181625, + 0.05424368754029274, + -0.10839582979679108, + 0.021800469607114792, + 0.018985291942954063, + -0.03510962799191475, + 0.0016979762585833669, + -0.07562074065208435, + -0.030783865600824356, + -0.013972899876534939, + 0.020575981587171555, + -0.003178519895300269, + 0.022429879754781723, + 0.02030133083462715, + 0.026847193017601967, + -0.0018853687215596437, + -0.0500781387090683, + -0.011981675401329994, + 0.05845501273870468, + 0.018229998648166656, + 0.07191294431686401, + 0.04057977348566055, + 0.023196615278720856, + -0.00655158469453454, + -0.0176806952804327, + -0.009286656975746155, + 0.016845297068357468, + -0.02414645254611969, + -0.03703219071030617, + 0.01451075915247202, + -0.005083915311843157, + -0.01819566823542118, + -0.05666977912187576, + 0.008943342603743076, + -0.047606274485588074, + 0.09951542317867279, + 0.12276925891637802, + -0.022796081379055977, + 0.028426440432667732, + -0.06678611040115356, + 0.02103373408317566, + 0.040739987045526505, + 0.033736370503902435, + -0.021651700139045715, + 0.0006276217754930258, + -0.022727418690919876, + -0.03449166193604469, + 0.03405679762363434, + 0.027854248881340027, + 0.09292379021644592, + 0.040762875229120255, + 0.014682415872812271, + -0.007827570661902428, + -0.055708497762680054, + 0.06490932404994965, + -0.03128739446401596, + 0.012965844012796879, + -0.03133316710591316, + -0.05392326042056084, + -0.038680098950862885, + -0.008760240860283375, + -0.0009433996165171266, + 0.03234022483229637, + 0.027739809826016426, + -0.03543005511164665, + -0.001266687409952283, + -0.006282655056566, + 0.06793048977851868, + -0.026686979457736015, + 0.004391564521938562, + -0.054701440036296844, + -0.00681479275226593, + -0.05341973528265953, + 0.015334714204072952, + -0.04801825433969498, + -0.06349029392004013, + -0.02410067617893219, + 0.02815178781747818, + 0.031722258776426315, + -0.006065222434699535, + 0.048659104853868484, + -0.01908828504383564, + -0.08358563482761383, + -0.039572715759277344, + -0.018939515575766563, + -0.020392879843711853, + -0.014373432844877243, + 0.025428159162402153, + 0.06541285663843155, + -0.02632077783346176, + 0.05424368754029274, + -0.006208270322531462, + 0.0013281978899613023, + -0.008176607079803944, + -0.014522203244268894, + 0.013938568532466888, + -0.0014555103844031692, + 0.02510773204267025, + 0.0454777255654335, + 0.01599845476448536, + 0.0057076034136116505, + 0.021136729046702385, + -0.02723628282546997, + 0.04405869171023369, + -0.03618534654378891, + -0.06948684900999069, + 0.03799346834421158, + -0.0076330252923071384, + 0.009223716333508492, + 0.0900857225060463, + -0.02098795957863331, + 0.09429704397916794, + 0.028449326753616333, + -0.02159448154270649, + 0.04728584736585617, + 0.004468810278922319, + 0.06486354768276215, + 0.06458889693021774, + 0.025542598217725754, + -0.09676890820264816, + 0.05534229427576065, + -0.022235335782170296, + 0.0005199784063734114, + 0.0026192034129053354, + -0.030486326664686203, + 0.006603082176297903, + 0.06861712038516998, + -0.014293326064944267, + 0.014156000688672066, + 0.013515147380530834, + 0.0016493400325998664, + 0.015884017571806908, + 0.018699195235967636, + -0.015460595488548279, + 0.11489591747522354, + 0.02721339464187622, + -0.05456411466002464, + -0.03925228863954544, + 0.04518018662929535, + 0.06751851737499237, + -0.08349408209323883, + -0.01595268025994301, + -0.08495888859033585, + 0.008411205373704433, + 0.04186147823929787, + 0.045523501932621, + -0.046667881309986115, + -0.028884192928671837, + 0.09740976244211197, + -0.02909018099308014, + 0.014190332032740116, + 0.02911306917667389, + 0.025931688025593758, + 0.014098781161010265, + -0.055845823138952255, + -0.04643900692462921, + -0.01057408656924963, + 0.04215901717543602, + 0.03808502107858658, + -0.028380664065480232, + 0.010453926399350166, + -0.03929806500673294, + -0.01613578014075756, + 0.0018925211625173688, + -0.03108140453696251, + -0.022704530507326126, + 0.045729488134384155, + 0.01871063932776451, + -0.0022873326670378447, + 0.009589917957782745, + -0.027602484449744225, + -0.008119387552142143, + 0.009326710365712643, + 0.04302874952554703, + 0.05103942006826401, + 0.00699217151850462, + -0.003453171579167247, + -0.05410636216402054, + 0.06898332387208939, + -0.08477579057216644, + 0.07296577095985413, + -0.03387369588017464, + 0.015506370924413204, + -0.017978236079216003, + 0.0010084862587973475, + -0.022075122222304344, + -0.011867237277328968, + -0.0031069961842149496, + 0.018115561455488205, + 0.06761006265878677, + 0.053648609668016434, + -0.06966995447874069, + 0.0013253369834274054, + -0.0200266782194376, + 0.022807525470852852, + -0.030944079160690308, + 0.013457927852869034, + 0.023333940654993057, + 0.02922750636935234, + 0.06683188676834106, + -0.04856755584478378, + 0.03929806500673294, + -0.0452488511800766, + -0.0302803386002779, + -0.050810545682907104, + -0.06701498478651047, + 0.01398434303700924, + 0.024558430537581444, + -0.01613578014075756, + 0.0349494144320488, + -2.7514332032296807e-05, + 0.04215901717543602, + 0.03650577366352081, + 0.01871063932776451, + -0.04733162373304367, + 0.05451834201812744, + 0.010184996761381626, + 0.008439814671874046, + 0.061842381954193115, + -0.008348263800144196, + 0.013824130408465862, + -0.0063856495544314384, + -0.02094218321144581, + 0.020873520523309708, + -0.07209604233503342, + -0.03641422465443611, + -0.04554639011621475, + 0.021880576387047768, + 0.048842206597328186, + -0.1208466961979866, + -0.01162691693753004, + 0.09246603399515152, + 0.023288166150450706, + -0.05259577929973602, + 0.012508091516792774, + 0.03822234645485878, + 0.02922750636935234, + -0.02911306917667389, + -0.02248709835112095, + -0.03238600119948387, + 0.011689858511090279, + 0.10363519936800003, + -0.007890511304140091, + -0.12633973360061646, + 0.019992347806692123, + -0.049757711589336395, + -0.002600607229396701, + 0.06110997870564461, + 0.11462126672267914, + 0.07232491672039032, + 0.08683567494153976, + -0.017303049564361572, + 0.04057977348566055, + -0.0805186927318573, + 0.04637034237384796, + -0.0020384297240525484, + 0.010465369559824467, + -0.009086390025913715, + -0.061933934688568115, + 0.05323663353919983, + -0.024375328794121742, + 0.00011336530587868765, + -0.09695201367139816, + -0.0030326112173497677, + 0.06468044966459274, + -0.07520876079797745, + -0.03403390944004059, + 0.056761328130960464, + -0.03245466202497482, + 0.018367325887084007, + 0.032729312777519226, + 0.03337016701698303, + 0.046736545860767365, + 0.04044244810938835, + -0.03309551626443863, + -0.02154870517551899, + 0.05639512464404106, + 0.030944079160690308, + -0.10867048054933548, + -0.02728205733001232, + -0.04410446807742119, + 0.08546242117881775, + 0.05351128429174423, + -0.03920651599764824, + 0.014854073524475098, + -0.002097079297527671, + -0.08271590620279312, + 0.014934180304408073, + 0.027739809826016426, + -0.03245466202497482, + -0.023620037361979485, + 0.11160009354352951, + -0.0011222092434763908, + -0.02248709835112095, + -0.022773195058107376, + 0.02148004248738289, + 0.023459823802113533, + 0.026778530329465866, + 0.003627689788118005, + -0.061018429696559906, + -0.05840923637151718, + -0.03133316710591316, + 0.010207884013652802, + -0.007095166016370058, + -0.0006551584810949862, + -0.08280745148658752, + -0.025542598217725754, + 0.007684522774070501, + -0.009320988319814205, + -0.039549827575683594, + -0.010333766229450703, + -0.009120721369981766, + -0.027877137064933777, + -0.008857513777911663, + -0.013320602476596832, + 0.04197591915726662, + -0.04211324453353882, + -0.016593532636761665, + 0.022075122222304344, + -0.008434092625975609, + -0.04710274934768677, + -0.06454312056303024, + 0.013526590541005135, + 0.01313750073313713, + -0.012874293141067028, + 0.09740976244211197, + 0.03632267192006111, + -0.06197970733046532, + 0.005887843668460846, + -0.01700551062822342, + -0.05135984718799591, + 0.047743599861860275, + -0.024581316858530045, + 0.004282848443835974, + 0.006219713948667049, + -0.02799157425761223, + -0.007078000344336033, + 0.054747216403484344, + 0.05392326042056084, + -0.011867237277328968, + -0.014224663376808167, + -0.043600939214229584, + -0.02304784581065178, + -0.03721528872847557, + 0.03412545844912529, + -0.00950981117784977 + ] + }, + { + "id": "d3816c2c-8f87-4303-8f22-18f2a4462747", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "tuckererica", + "reviewDate": "2021-11-24T20:10:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "05991be6-f074-4a5e-ae54-db33518085d8", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "ftate", + "reviewDate": "2021-11-13T18:20:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ea588f38-6d22-4b13-9076-d16cc6875648", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "wiserandall", + "reviewDate": "2022-05-17T22:55:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b3984001-1e35-4949-bc15-25e56ea9abda", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "eanderson", + "reviewDate": "2022-04-23T04:33:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ec7358fe-d584-49c2-95d8-1eca38c515e8", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "amanda84", + "reviewDate": "2022-11-08T16:39:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c206aa88-f377-4f15-adf0-47499308185a", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "jillpalmer", + "reviewDate": "2021-11-24T23:47:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "11778cbe-e75d-42e0-a74b-1a8cd859abed", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "bryan09", + "reviewDate": "2022-08-27T19:37:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "56143caf-431e-414f-803a-42b2d72a1405", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "mitchell74", + "reviewDate": "2021-11-17T08:33:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c9dc258b-1bd7-4720-815f-9f5bae11c546", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "christopherbennett", + "reviewDate": "2022-12-27T10:54:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e4becc8c-d14b-4652-96dc-631236257264", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "stewartedward", + "reviewDate": "2021-03-03T21:54:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f1819457-51a4-45a6-ba1a-88885f3799d0", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "collinskenneth", + "reviewDate": "2021-04-11T10:28:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "03d28ad4-632f-4d2c-92dc-2a596f0b73aa", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "valeriecameron", + "reviewDate": "2022-02-17T10:07:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ad7480c7-b46c-478f-a442-62ad4b8ce6c6", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "perezjane", + "reviewDate": "2022-01-14T10:56:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "91a3aec1-8f89-436d-aed8-bcab5fec8f13", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "pamelafarrell", + "reviewDate": "2022-12-14T19:21:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "72f74651-07a1-46b9-a7c3-03196e7699fd", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer56", + "reviewDate": "2021-01-21T23:34:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bc580dc4-1d55-439b-bff0-01445db0d611", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "jimenezgabriel", + "reviewDate": "2021-06-26T19:59:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ec6f1b45-06fe-4af3-b602-f099b64f0ceb", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "miguelmyers", + "reviewDate": "2022-02-07T07:06:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c29d5483-efd1-4fe0-b7e9-4f41c89b8935", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "vargasjillian", + "reviewDate": "2021-08-25T04:18:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7d69feac-d91f-49ce-b070-44b576658f05", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "robertduran", + "reviewDate": "2022-01-03T23:30:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a2c3232b-dd26-41d8-b926-21354ee43e19", + "productId": "96939938-db4b-42d6-a0cc-4c695f032053", + "category": "Accessory", + "docType": "customerRating", + "userName": "rickybartlett", + "reviewDate": "2022-06-14T09:30:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b5f33623-66ab-4ac4-9a28-f32087052377", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "product", + "name": "Basic Speaker + (Steel)", + "description": "This Basic Speaker + (Steel) is included to remove the 2nd and 4th Speaker. (This Basic Speaker +(Steel) is included to remove the 1st and 3rd Speaker)\n", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-01-08T00:05:36", + "price": 994.93, + "stock": 33, + "priceHistory": [ + { + "priceDate": "2021-01-12T12:31:45", + "newPrice": 950.05 + }, + { + "priceDate": "2021-06-30T12:31:45", + "newPrice": 1019.81 + }, + { + "priceDate": "2021-12-16T12:31:45", + "newPrice": 1017.7 + }, + { + "priceDate": "2022-06-03T12:31:45", + "newPrice": 914.03 + }, + { + "priceDate": "2022-11-19T12:31:45", + "newPrice": 1022.98 + }, + { + "priceDate": "2024-04-24T12:31:45", + "newPrice": 994.93 + } + ], + "descriptionVector": [ + 0.04643473029136658, + -0.06323393434286118, + -0.052666228264570236, + -0.012965541332960129, + -0.03178926557302475, + -0.03612547367811203, + -0.05045505240559578, + 0.04462558403611183, + 0.0029201183933764696, + 0.004285951144993305, + -0.04583168029785156, + 0.006572510115802288, + 0.007739121560007334, + -0.021480010822415352, + -0.02634747326374054, + -0.008105257526040077, + -0.04020322859287262, + 0.01946984976530075, + 0.02722332812845707, + -0.06633532792329788, + 0.06369339674711227, + -0.05140269920229912, + -0.04827259108424187, + 0.003148056333884597, + -0.08126795291900635, + -0.01697150617837906, + -0.006457643583416939, + 0.004461840260773897, + -0.045286063104867935, + -0.01433675829321146, + 0.04094985872507095, + -0.010316435247659683, + -0.01794786937534809, + 0.006597636733204126, + -0.06455489993095398, + 0.015636183321475983, + -0.0013290398055687547, + -0.012972719967365265, + 0.0017050476744771004, + 0.03738900274038315, + -0.02426552027463913, + 0.013726530596613884, + 0.034718360751867294, + -0.04390766844153404, + 0.017201239243149757, + 0.05062735080718994, + -0.014372654259204865, + 0.05614093691110611, + 0.0061956048011779785, + -0.010876408778131008, + 0.021408218890428543, + 0.03580959141254425, + -0.02746742032468319, + -0.0011208445066586137, + 0.016224874183535576, + 0.002579108811914921, + 0.020001105964183807, + 0.2095162570476532, + 0.0025396235287189484, + -0.02939143218100071, + 0.001796581782400608, + -0.09114646166563034, + -0.004935664124786854, + 0.05944334343075752, + -0.1100994125008583, + 0.010165673680603504, + -0.024150652810931206, + 0.02650541439652443, + -0.04988072067499161, + 0.056169651448726654, + -0.02008725516498089, + -0.024523969739675522, + 0.0033472776412963867, + 0.027539212256669998, + 0.010352331213653088, + -0.015277226455509663, + 0.016368458047509193, + 0.06846035271883011, + 0.0023296335712075233, + -0.0070606921799480915, + -0.018306827172636986, + 0.06989618390798569, + -0.05375745892524719, + 0.03934172913432121, + 0.0006438798154704273, + -0.028472499921917915, + -0.008672410622239113, + -0.07661586999893188, + 0.022083058953285217, + 0.07345703989267349, + 0.01609564945101738, + 0.020474929362535477, + 0.09976144134998322, + -0.03974376246333122, + 0.05832339823246002, + 0.009864149615168571, + -0.05717473477125168, + 0.020934395492076874, + -0.08299095183610916, + -0.0221692081540823, + 0.03325381129980087, + -0.04060526192188263, + -0.10332229733467102, + 0.016698697581887245, + 0.10636625438928604, + 0.077477365732193, + 0.031674399971961975, + 0.011314337141811848, + 0.015406451188027859, + 0.021235918626189232, + 0.0018360670655965805, + -0.04123702645301819, + 0.009914402849972248, + 0.009785178117454052, + 0.10010603815317154, + -0.0033472776412963867, + -0.03718798607587814, + -0.010840513743460178, + -0.028127901256084442, + 0.045688096433877945, + -9.501153544988483e-05, + 0.021767176687717438, + 0.052407778799533844, + -0.01385575532913208, + -0.052982110530138016, + -0.004591064993292093, + 0.04718136042356491, + 0.048416174948215485, + -0.027036670595407486, + -0.014990060590207577, + -0.03916943073272705, + -0.004124420695006847, + 0.001248274347744882, + -0.016038216650485992, + -0.037130553275346756, + 0.02275789901614189, + -0.012484538368880749, + 0.024940360337495804, + -0.03190413489937782, + 0.04054782912135124, + -0.00944775901734829, + 0.027582285925745964, + 0.06398056447505951, + 0.06237243860960007, + -0.05769163370132446, + -0.030726753175258636, + -0.021824609488248825, + 0.05398719385266304, + 0.019828805699944496, + 0.00604843208566308, + -0.027424344792962074, + -0.1145792007446289, + -0.04574552923440933, + -0.004300309810787439, + 0.06995362043380737, + 0.020934395492076874, + -0.06185553967952728, + 0.006669428199529648, + -0.04715264216065407, + 0.018550917506217957, + 0.07058538496494293, + -0.057634200900793076, + -0.06518666446208954, + -0.006016125902533531, + -0.030870335176587105, + 0.07334217429161072, + 0.044970180839300156, + 0.07041308283805847, + -0.05398719385266304, + -0.0014708279632031918, + 0.015837199985980988, + 0.0020891320891678333, + 0.0010427712695673108, + -0.03107135184109211, + -0.02265739068388939, + -0.11647449433803558, + 0.049852002412080765, + -0.016856638714671135, + 0.02083388715982437, + -0.024811135604977608, + 0.0032952288165688515, + 0.005635631270706654, + 0.0378197506070137, + 0.0020765685476362705, + 0.02585929073393345, + 0.028400709852576256, + -0.016224874183535576, + -0.023892203345894814, + -0.0671393945813179, + -0.014803403057157993, + 0.04445328190922737, + -0.04531478136777878, + 0.041926223784685135, + 0.0015587725210934877, + -0.020805170759558678, + -0.03290921449661255, + 0.014236249960958958, + -0.0019114480819553137, + 0.0026024410035461187, + -0.04370665177702904, + 0.015593109652400017, + 0.05967307835817337, + 0.04373537003993988, + -0.035522423684597015, + -0.042242106050252914, + -0.010208748281002045, + -0.010266181081533432, + 0.09206539392471313, + 0.020489288493990898, + -0.029779106378555298, + 0.004440302960574627, + -0.023001989349722862, + -0.0247393436729908, + 0.02555776573717594, + 0.08603490889072418, + 0.027122821658849716, + -0.014458803460001945, + -0.006181246135383844, + -0.0036416228394955397, + -0.012800420634448528, + -0.003715208964422345, + -0.02515573427081108, + 0.023088140413165092, + 0.004716699942946434, + -0.04373537003993988, + 0.008751381188631058, + 0.003955710679292679, + 0.0014950576005503535, + 0.04115087538957596, + -0.010783080011606216, + -0.06576099246740341, + 0.11153524369001389, + -0.02529931627213955, + 0.01033797301352024, + -0.003783410880714655, + -0.00788270402699709, + 0.03276563063263893, + 0.013568589463829994, + -0.027539212256669998, + -0.03916943073272705, + -0.030382154509425163, + 0.003481886815279722, + -0.07586923241615295, + -0.05932847782969475, + -0.029132982715964317, + 0.06386569887399673, + 0.08741330355405807, + -0.008392424322664738, + -0.03635520488023758, + -0.03371327742934227, + -0.04956483840942383, + 0.02916169911623001, + -0.04318975284695625, + 0.00852164812386036, + -0.017718136310577393, + 0.06512922793626785, + 0.06547383219003677, + -0.035206541419029236, + 0.023490171879529953, + -0.05183344706892967, + -0.024724984541535378, + -0.004537221509963274, + -0.04390766844153404, + 0.04916280508041382, + -0.02297327294945717, + -0.080119289457798, + -0.03052573651075363, + -0.03813563287258148, + -0.006385852117091417, + 0.08075105398893356, + 0.07667329907417297, + 0.028544291853904724, + -0.025916723534464836, + 0.016641264781355858, + 0.0017570964992046356, + -0.015119285322725773, + -0.08218688517808914, + 0.02634747326374054, + -0.05157499760389328, + -0.006680197082459927, + 0.07994698733091354, + 0.06863265484571457, + 0.024638835340738297, + -0.0018683732487261295, + 0.0011746881064027548, + -0.019800089299678802, + -0.0886194035410881, + 0.10711288452148438, + -0.008579081855714321, + -0.06955158710479736, + -0.03224873170256615, + -0.01108460407704115, + -0.00013135597691871226, + 0.03836536779999733, + 0.11274133622646332, + 0.019010383635759354, + 0.07632870227098465, + -0.09206539392471313, + 0.007875525392591953, + 0.013252707198262215, + 0.010108239948749542, + 0.009340071119368076, + -0.02267174981534481, + -0.0342588946223259, + 0.029290923848748207, + 0.06392313539981842, + 0.07156174629926682, + 0.016354098916053772, + -0.10188646614551544, + -0.06754142045974731, + 0.044884033501148224, + -0.04812900722026825, + -0.0366998054087162, + 0.029176056385040283, + -0.0021555391140282154, + -0.0007336191483773291, + -0.004486967343837023, + -0.038078200072050095, + -0.011343053542077541, + 0.06472719460725784, + -0.09103159606456757, + -0.06564612686634064, + -0.02305942215025425, + -0.004246465861797333, + -0.04347692057490349, + -0.02499779313802719, + 0.0160095002502203, + -0.039858628064394, + 0.035752154886722565, + -0.003693671664223075, + 0.028400709852576256, + -0.005879722069948912, + 0.042816437780857086, + -0.009340071119368076, + -0.006209963001310825, + -0.04990943521261215, + 0.03532140702009201, + -0.09149105846881866, + -0.06564612686634064, + -0.10022090375423431, + 0.04143804311752319, + 0.02570134960114956, + 0.06478463113307953, + 0.0006860573193989694, + -0.005262315273284912, + -0.04646344482898712, + 0.04916280508041382, + -0.06472719460725784, + -0.003769052680581808, + -0.04135189205408096, + 0.0018136322032660246, + 0.006270985584706068, + 0.026390546932816505, + -0.05622708797454834, + 0.06949415057897568, + -0.06541639566421509, + -0.05677270144224167, + -0.011694831773638725, + 0.07236581295728683, + -0.015593109652400017, + -0.018292468041181564, + -0.0015103132463991642, + 0.01850784383714199, + -0.003926993813365698, + -0.0013514745514839888, + 0.05332671105861664, + -0.04766954109072685, + -0.0006757372757419944, + -0.058667995035648346, + 0.021480010822415352, + 0.0030403691343963146, + -0.009139055386185646, + 0.06386569887399673, + -0.024710627272725105, + -0.028931966051459312, + -0.05660040304064751, + 0.08092335611581802, + -0.037992049008607864, + 0.0052694943733513355, + 0.009311354719102383, + 0.032306164503097534, + 0.07586923241615295, + 0.04339076951146126, + -0.07495030760765076, + 0.03701568767428398, + -0.017028938978910446, + -0.07133201509714127, + 0.04916280508041382, + -0.03181798383593559, + 0.03339739516377449, + 0.026462338864803314, + 0.04606141149997711, + -0.047927990555763245, + 0.06375083327293396, + 0.06145350635051727, + 0.033110231161117554, + -0.05077093467116356, + 0.0478992760181427, + -0.02786945179104805, + -0.02610338106751442, + 0.011508174240589142, + 0.04003093019127846, + 0.008464215323328972, + -0.05700243264436722, + -0.012362492270767689, + -0.016153082251548767, + -0.08293351531028748, + -0.0018827315652742982, + 0.012664017267525196, + -0.036814671009778976, + 0.08121052384376526, + -0.029836539179086685, + -0.019642148166894913, + -0.050139170140028, + 0.018392976373434067, + 0.017990944907069206, + 0.04396510124206543, + 0.05516457185149193, + 0.01730174571275711, + -0.031128784641623497, + 0.08965320140123367, + -0.023432739078998566, + -0.019972389563918114, + 0.0292191319167614, + 0.053786177188158035, + 0.0034424015320837498, + 0.012857853434979916, + -0.04298873618245125, + 0.019512923434376717, + -0.010696930810809135, + -0.06748399138450623, + -0.037848468869924545, + 0.001021233736537397, + 0.07764966040849686, + 0.02564391680061817, + -0.03345482796430588, + 0.002135796472430229, + -0.017430970445275307, + -0.08172742277383804, + -0.004407996777445078, + 0.027840735390782356, + 0.02442346140742302, + -0.01786172017455101, + 0.018464768305420876, + -0.06725426018238068, + -0.07483543455600739, + -0.025184450671076775, + -0.027898168191313744, + 0.02763971872627735, + 0.04778440669178963, + -0.03566600754857063, + 0.014487520791590214, + -0.067598856985569, + -0.010646676644682884, + -0.028573008254170418, + -0.020460572093725204, + 0.023490171879529953, + 0.008392424322664738, + 0.014516237191855907, + 0.0005509995971806347, + -0.10355202853679657, + 0.07282527536153793, + 0.10734261572360992, + 0.0013837807346135378, + 0.016311023384332657, + -0.05341286212205887, + -0.023992711678147316, + -0.033052798360586166, + -0.005129501223564148, + 0.022398941218852997, + 0.0033957369159907103, + -0.0608791746199131, + 0.08655180782079697, + 0.028371991589665413, + 0.017517121508717537, + -0.017761211842298508, + -0.04034681245684624, + -0.10900817811489105, + 0.010395405814051628, + 0.07006848603487015, + -0.005793572403490543, + -0.01061078067868948, + -0.030094988644123077, + 0.025213167071342468, + 0.009268280118703842, + -0.0030511377844959497, + 0.034804508090019226, + 0.053211845457553864, + -0.038796115666627884, + 0.020934395492076874, + 0.06363596767187119, + 0.05214932933449745, + -0.014365474693477154, + 0.0648994967341423, + 0.023274797946214676, + -0.0016063343500718474, + 0.0507996492087841, + -0.09327148646116257, + -0.0293196402490139, + 0.09108902513980865, + -0.03325381129980087, + -0.0322200171649456, + -0.06024741008877754, + -0.046176280826330185, + 0.014142921194434166, + 0.0005716396262869239, + -0.0024516789708286524, + -0.03994477912783623, + 0.022700466215610504, + 0.10740005224943161, + 0.03397172689437866, + 0.01697150617837906 + ] + }, + { + "id": "1535f1f2-2e6b-4fd6-8e40-cc950031d4db", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "eparker", + "reviewDate": "2022-02-18T01:25:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b5c19406-eaf1-471c-9f6b-12b39e9f692f", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "tonyamorrison", + "reviewDate": "2021-01-23T11:18:41", + "stars": 5, + "verifiedUser": false + }, + { + "id": "58c312b9-5d58-4cf4-b6a0-650f4783bf1f", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "trubio", + "reviewDate": "2021-07-14T01:44:36", + "stars": 5, + "verifiedUser": true + }, + { + "id": "6e8a92d9-860d-4476-a6a5-134d92f942cf", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "darrellbrown", + "reviewDate": "2021-05-05T17:24:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f801f14e-6f8e-4c09-a74f-85a1926d91a7", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "parksbrian", + "reviewDate": "2021-08-27T02:56:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "37880afb-503c-4b00-9f8e-f20a37f1d224", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "pattersonbrittany", + "reviewDate": "2022-11-14T15:04:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "adbc801d-6a4e-4c31-b891-f8f42245d396", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "millseric", + "reviewDate": "2021-09-27T18:19:17", + "stars": 5, + "verifiedUser": true + }, + { + "id": "dac764a2-6103-4226-acad-d528a36898be", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "andrea65", + "reviewDate": "2022-06-18T06:48:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "80de501a-9af3-44ba-98b0-20ec1e61b0ce", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "tylerclay", + "reviewDate": "2022-09-27T00:21:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cd57ac1d-6560-4e2d-91a1-a126f0ee6573", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "doylethomas", + "reviewDate": "2021-04-05T23:48:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "45a37011-3c66-4c1c-b66b-d104c29413ba", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonmichael", + "reviewDate": "2022-03-11T23:04:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dcbb1cf2-afc9-4f83-acfb-64fa0a5b286d", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "rowlandrandy", + "reviewDate": "2021-12-24T04:40:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "447f3480-6429-4820-8ffa-117e92b18f44", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "ugray", + "reviewDate": "2022-04-19T21:49:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "12348b4f-a08d-4775-a546-b1116ab9977d", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "wanda95", + "reviewDate": "2021-01-12T12:31:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e6c342b9-9a45-4c90-b1c6-0acaf150d6cd", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "georgejessica", + "reviewDate": "2022-11-20T09:04:34", + "stars": 4, + "verifiedUser": true + }, + { + "id": "55a61c3d-0254-4f6e-ae40-70d2dfcc5242", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "brian67", + "reviewDate": "2022-03-06T03:01:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bd3faf2a-9857-4930-82ad-342299df2f62", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "rmahoney", + "reviewDate": "2021-11-08T14:59:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5a5c90f2-59d3-4631-9d99-12396af2b082", + "productId": "b5f33623-66ab-4ac4-9a28-f32087052377", + "category": "Media", + "docType": "customerRating", + "userName": "cdiaz", + "reviewDate": "2022-01-25T23:10:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "354a063b-5fdd-4349-98e1-4c616572de43", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone + (Silver)", + "description": "This Basic Phone + (Silver) is not compatible with iOS 6.5+\n\n-No additional code is required, but can be added to your order via PayPal to receive this item\n\n-This basic phone features the iPhone's built-in headphone jack\n\n-No extra code is necessary, but can", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-07-09T06:03:20", + "price": 566.47, + "stock": 58, + "priceHistory": [ + { + "priceDate": "2021-02-15T18:56:05", + "newPrice": 520.79 + }, + { + "priceDate": "2022-10-03T18:56:05", + "newPrice": 542.7 + }, + { + "priceDate": "2025-01-27T18:56:05", + "newPrice": 566.47 + } + ], + "descriptionVector": [ + -0.05024361610412598, + 0.03953239321708679, + -0.0036570485681295395, + 0.11083577573299408, + -0.048067521303892136, + -0.05208120867609978, + -0.03585721179842949, + 0.0320611335337162, + -0.013298358768224716, + 0.046302467584609985, + -0.02310287579894066, + -0.09125091880559921, + 0.019778285175561905, + 0.01922217197716236, + 0.06600821763277054, + 0.04654425382614136, + -0.08805931359529495, + -0.03281067684292793, + -0.03281067684292793, + 0.02099931612610817, + 0.11973358690738678, + -0.022522583603858948, + -0.009478102438151836, + -0.03385036811232567, + -0.0049959514290094376, + -0.034890055656433105, + -0.05280657112598419, + 0.01881113275885582, + 0.022945713251829147, + 0.01007048413157463, + -0.01806158944964409, + -0.01831546612083912, + -0.04946989193558693, + 0.015474453568458557, + 1.997587241930887e-05, + 0.005754562560468912, + 0.01456774678081274, + -0.07050547748804092, + -0.04054790362715721, + -0.001663806033320725, + -0.013963276520371437, + -0.04567381739616394, + 0.045649636536836624, + 0.036244072020053864, + 0.0354461707174778, + 0.008335652761161327, + 0.04729379713535309, + 0.00822684820741415, + -0.0177230853587389, + -0.07239142805337906, + -0.009762204252183437, + 0.04190191999077797, + -0.060253653675317764, + 0.054354019463062286, + 0.03493841364979744, + 0.01896829530596733, + -0.057062048465013504, + 0.08602829277515411, + -0.01557116862386465, + -0.04804334044456482, + -0.07882300019264221, + 0.0567719005048275, + -0.001683451235294342, + 0.06291332095861435, + 0.02258303016424179, + 0.06339690089225769, + -0.0032036954071372747, + 0.07577646523714066, + 0.0164536964148283, + 0.001836080220527947, + 0.015607437118887901, + -0.02509762905538082, + -0.04289324954152107, + 0.06712044030427933, + 0.060156937688589096, + 0.08128923922777176, + 0.040427010506391525, + 0.07688868790864944, + 0.044875916093587875, + -0.030852191150188446, + -0.029087137430906296, + -0.047994986176490784, + -0.10783759504556656, + 0.01998380571603775, + -0.03452737256884575, + 0.042941607534885406, + 0.042603105306625366, + -0.0922180712223053, + -0.03701779246330261, + 0.053967155516147614, + 0.03583303093910217, + 0.019548587501049042, + 0.0015519788721576333, + 0.01570415310561657, + 0.033294253051280975, + 0.04763230308890343, + -0.007211336866021156, + 0.016925184056162834, + -0.07882300019264221, + -0.10870803892612457, + 0.0977308452129364, + -0.000980753917247057, + -0.05952828750014305, + 0.050098542124032974, + -0.007719092536717653, + 0.03065876103937626, + 0.02879699133336544, + -0.021543340757489204, + -0.022776460275053978, + -0.04995346814393997, + -0.017650548368692398, + 0.0055218408815562725, + -0.04613321274518967, + 0.019596943631768227, + 0.024408532306551933, + -0.01670757308602333, + -0.016393249854445457, + 0.019536497071385384, + 0.04852692037820816, + 0.030126826837658882, + 0.018242929130792618, + -0.07316514849662781, + -0.026596717536449432, + 0.022292884066700935, + 0.005053376313298941, + -0.036413323134183884, + 0.019790375605225563, + 0.005636690650135279, + 0.04888959974050522, + -0.09216970950365067, + -0.07476095110177994, + 0.031190695241093636, + 0.01762636937201023, + -0.055127739906311035, + -0.026427464559674263, + 0.00021704280516132712, + 0.025049271062016487, + 0.011654198169708252, + -0.06291332095861435, + 0.0011938299285247922, + -0.05145255848765373, + 0.042869072407484055, + 0.07123084366321564, + -0.02099931612610817, + 0.009707801975309849, + 0.024650320410728455, + -0.02804744616150856, + 0.038009125739336014, + -0.016054745763540268, + 0.07123084366321564, + -0.049663323909044266, + -0.11557482182979584, + 0.0007593664922751486, + -0.07306843250989914, + -0.003502908395603299, + 0.02703193575143814, + -0.03322171792387962, + -0.09657026082277298, + -0.014712819829583168, + 0.0586094930768013, + 0.0001736909180181101, + 0.009780338034033775, + -0.012282847426831722, + -0.04746304824948311, + -0.058899637311697006, + 0.006824475713074207, + 0.07538960129022598, + 0.07311679422855377, + -0.016574589535593987, + 0.05164598673582077, + -0.006757983937859535, + 0.01619981788098812, + -0.050678834319114685, + -0.09715054929256439, + -0.011515169404447079, + 0.049252282828092575, + 0.041200730949640274, + -0.04625410959124565, + 0.016695484519004822, + -0.013999545015394688, + 0.01991126872599125, + 0.060592155903577805, + -0.031118158251047134, + -0.032617244869470596, + 0.02947399765253067, + -0.04332846775650978, + -0.036389146000146866, + -0.025000913068652153, + 0.016018476337194443, + -0.051597628742456436, + -0.03126323223114014, + -0.025822993367910385, + -0.08409398049116135, + 0.00415573688223958, + 0.06286496669054031, + 0.005201471503823996, + 0.03433394432067871, + 0.011025547981262207, + -0.06895803660154343, + -0.0027956776320934296, + 0.08143430948257446, + -0.006703581660985947, + 0.02604060433804989, + -0.06789416074752808, + -0.036244072020053864, + -0.028240878134965897, + -0.03435812145471573, + 0.020527830347418785, + 0.015244754031300545, + -0.01939142495393753, + 0.0035814896691590548, + -0.0088978111743927, + 0.02451733686029911, + 0.012863139621913433, + 0.06097901612520218, + 0.06373540312051773, + 0.003496863879263401, + 0.0005534685915336013, + -0.019524408504366875, + -0.01563161611557007, + 0.030126826837658882, + 0.018424270674586296, + -0.032447993755340576, + 0.043038323521614075, + -0.0587545670568943, + -0.0689096748828888, + 0.014882071875035763, + 0.029957573860883713, + 0.06968339532613754, + 0.01711861416697502, + -0.002753364620730281, + 0.022981980815529823, + 0.023949135094881058, + -0.04482755810022354, + -0.0750027447938919, + 0.02409420721232891, + 0.01948813907802105, + -0.024880019947886467, + -0.0641222670674324, + 0.03297992795705795, + -0.05145255848765373, + 0.011291515082120895, + -0.04591560363769531, + -0.08888138830661774, + 0.015667883679270744, + -0.026838505640625954, + 0.010445255786180496, + 0.042119529098272324, + -0.053531937301158905, + 0.014749088324606419, + -0.003644959069788456, + -0.014664462767541409, + -0.032036952674388885, + 0.04729379713535309, + 0.0024843751452863216, + 0.05275821313261986, + 0.04620575159788132, + -0.03694525733590126, + 0.012113595381379128, + -0.02475912496447563, + 0.009768248535692692, + 0.05082390829920769, + -0.04013686254620552, + 0.032206207513809204, + 0.017154881730675697, + 0.03073129802942276, + 0.0725848600268364, + -0.09197628498077393, + 0.05280657112598419, + 0.01557116862386465, + 0.013117017224431038, + -0.04359443485736847, + 0.0016743842279538512, + -0.009713846258819103, + 0.0317709855735302, + -0.05048540607094765, + -0.09637682884931564, + 0.06349361687898636, + -0.020527830347418785, + 0.04199863225221634, + 0.047487229108810425, + 0.113543801009655, + 0.02073334902524948, + -0.011279425583779812, + 0.040257759392261505, + -0.022788550704717636, + -0.08689872920513153, + -0.0001977752981474623, + -0.04238549619913101, + -0.008928034454584122, + 0.06257481873035431, + -0.010753536596894264, + 0.02241377905011177, + 0.05503102391958237, + 0.013068659231066704, + -0.02947399765253067, + 0.037573907524347305, + 0.05043704807758331, + -0.002650604583323002, + 0.10290511697530746, + 0.02392495609819889, + -0.057980842888355255, + -0.07495438307523727, + -0.03242381662130356, + -0.0266208965331316, + 0.07814598828554153, + 0.016780110076069832, + -0.022534672170877457, + 0.007634466513991356, + 0.013685219921171665, + 0.12747080624103546, + -0.04352189972996712, + -0.09594161063432693, + -0.033632759004831314, + 0.02099931612610817, + 0.006334854289889336, + 0.010445255786180496, + 0.05851277709007263, + 0.01688891462981701, + -0.01939142495393753, + 0.018424270674586296, + -0.01763845980167389, + -0.006455748341977596, + -0.013697309419512749, + 0.05778741091489792, + 0.03256888687610626, + -0.010360630229115486, + -0.019681571051478386, + -0.016828468069434166, + 0.002230497309938073, + -0.010662865824997425, + -0.027104472741484642, + 0.07882300019264221, + -0.031867701560258865, + 0.0015670906286686659, + -0.008208713494241238, + 0.004977817181497812, + 0.033560220152139664, + 0.01846054010093212, + -0.013407163321971893, + 0.0586094930768013, + 0.08520621061325073, + -0.03293156996369362, + 0.005119868088513613, + -0.052709855139255524, + -0.04620575159788132, + -0.027684764936566353, + -0.04105566069483757, + 0.007459170185029507, + -0.061510954052209854, + 0.0013570369919762015, + -0.055127739906311035, + 0.0713275596499443, + -0.07553467899560928, + 0.06320346891880035, + -0.022740192711353302, + -0.033608578145504, + -0.029619071632623672, + 0.0003054466797038913, + -0.04158759489655495, + 0.020709170028567314, + -0.03904881700873375, + 0.07282664626836777, + -0.036389146000146866, + -0.04485173523426056, + 0.0943458080291748, + -0.03334261104464531, + 0.0013729044003412127, + -0.053967155516147614, + -0.041611772030591965, + -0.034382302314043045, + -0.004394502844661474, + -0.05290328711271286, + 0.01604265533387661, + -0.06257481873035431, + 0.013250000774860382, + 0.048333488404750824, + 0.023562273010611534, + 0.013588504865765572, + 0.04033029451966286, + 0.00359962391667068, + -0.016731752082705498, + 0.01192016527056694, + -0.05986679345369339, + 0.05769069492816925, + -0.0408138707280159, + -0.05053376033902168, + 0.07713048160076141, + -0.025968067348003387, + 0.0728750005364418, + -0.002319656778126955, + -0.05928650125861168, + -0.04492427408695221, + 0.06770073622465134, + 0.07480931282043457, + 0.0022803661413490772, + 0.01502714492380619, + -0.023646898567676544, + -0.03592974692583084, + 0.01804949901998043, + 0.040354471653699875, + -0.0013532590819522738, + -0.03126323223114014, + 0.02300615981221199, + -0.02107185311615467, + -0.13907665014266968, + -0.1175091341137886, + -0.005645757541060448, + -0.016949363052845, + -0.025508670136332512, + 0.026234034448862076, + -0.008885721676051617, + -0.022570941597223282, + 0.016417426988482475, + 0.0018708372954279184, + 0.0006754961796104908, + -0.042192064225673676, + 0.038758669048547745, + 0.049083031713962555, + 0.0656697079539299, + 0.011370096355676651, + 0.0010260891867801547, + -0.023477647453546524, + -0.01981455460190773, + 0.0231633223593235, + 0.021047674119472504, + -0.07862956821918488, + 0.028651917353272438, + 0.020697081461548805, + -0.025073450058698654, + -0.03527691960334778, + 0.03247217461466789, + 0.02148289419710636, + -0.014857892878353596, + -0.0406687967479229, + 0.044368159025907516, + -0.09864964336156845, + 0.030755477026104927, + -0.024807482957839966, + -0.012077326886355877, + -0.09357208758592606, + -0.005597400013357401, + -0.11412409693002701, + 0.041007302701473236, + -0.05725547671318054, + -0.026161497458815575, + -0.016949363052845, + 0.029208030551671982, + -0.007205292582511902, + -0.019161725416779518, + -0.04315921664237976, + -0.020431114360690117, + 0.06571806967258453, + 0.014918340370059013, + 0.006183736491948366, + -0.010173244401812553, + -0.01557116862386465, + 0.018496807664632797, + -0.030755477026104927, + -0.021192748099565506, + 0.01696145161986351, + 0.027926553040742874, + 0.048406023532152176, + 0.06165602430701256, + 0.036751825362443924, + -0.04424726590514183, + -0.002677805721759796, + -0.04550456628203392, + -0.01293567568063736, + 0.01545027457177639, + -0.00030280210194177926, + -0.0673622265458107, + 0.07698540389537811, + 0.003303433069959283, + -0.005633668042719364, + 0.02318750135600567, + 0.002514598658308387, + 0.020370667800307274, + -0.030005931854248047, + -0.030005931854248047, + 0.03133576735854149, + 0.0006433836533688009, + -0.036413323134183884, + 0.014724909327924252, + -0.017529653385281563, + -0.017239509150385857, + 0.01755383238196373, + 0.03955657035112381, + 0.018085766583681107, + 0.06760402023792267, + 0.03218202665448189, + 0.054450731724500656, + 0.040692977607250214, + 0.0833202600479126, + -0.005905679892748594, + -0.08254653960466385, + 0.03680018335580826, + -0.08128923922777176, + -0.01167233195155859, + 0.02763640694320202, + -0.002426950493827462, + -0.035059306770563126, + 0.010130931623280048, + -0.007314097136259079, + 0.08056387305259705, + -0.02409420721232891, + -0.02410629764199257, + 0.048671990633010864, + 0.07577646523714066, + 0.04209534823894501, + -0.01888366974890232, + -0.06886132061481476 + ] + }, + { + "id": "55f0ad1e-0468-4e18-87af-a43fb3af4384", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "lauren91", + "reviewDate": "2021-07-12T02:53:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "65ed91a8-ccc4-449a-b60e-7f219f2d9977", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "jerrywright", + "reviewDate": "2021-07-13T23:44:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2f3c80d0-8654-48d5-870f-af636cd70ee6", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicholaschandler", + "reviewDate": "2021-08-21T05:06:12", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8cffcd95-185a-456e-be44-ed0f57425e07", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "sbaker", + "reviewDate": "2022-09-24T02:24:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "23aaa6e2-200e-4f0d-89aa-634db600fb72", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "danahunter", + "reviewDate": "2022-04-13T06:37:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "39ded00d-ef85-4bca-b6d9-04e225aa6f29", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "philipflores", + "reviewDate": "2022-04-19T16:56:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ba895286-8836-427a-99e4-36a0d6fefaad", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelly58", + "reviewDate": "2021-12-04T17:17:40", + "stars": 4, + "verifiedUser": true + }, + { + "id": "37713b88-05aa-4467-a4d1-f42ab83df3b3", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "alanmaxwell", + "reviewDate": "2021-02-15T18:56:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "204e3960-ea34-4835-910a-4970b6a99732", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "ismith", + "reviewDate": "2022-10-03T20:13:29", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d5ce5949-2005-4f20-9bf0-69e4cdd97e82", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamburns", + "reviewDate": "2022-09-21T07:00:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "db40994e-d430-41f1-b642-f5657c9f61b8", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "griffinvalerie", + "reviewDate": "2022-09-21T15:03:48", + "stars": 5, + "verifiedUser": false + }, + { + "id": "382cf7cb-577e-4689-82de-76fd178e2fa6", + "productId": "354a063b-5fdd-4349-98e1-4c616572de43", + "category": "Electronics", + "docType": "customerRating", + "userName": "dhayes", + "reviewDate": "2021-07-23T05:09:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76abcf09-887e-4ead-9294-f508d9e01d96", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand + (Steel)", + "description": "This Premium Stand + (Steel) is an upgraded stainless steel set of Stand and Steel for sale on the site.\n\nThe Steel Set Includes:\n\n• 5 6\" High-Density Stainless Steel Parts", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-03-17T11:56:25", + "price": 108.18, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-01-25T23:59:28", + "newPrice": 113.1 + }, + { + "priceDate": "2022-01-04T23:59:28", + "newPrice": 113.89 + }, + { + "priceDate": "2022-12-14T23:59:28", + "newPrice": 105.28 + }, + { + "priceDate": "2024-09-05T23:59:28", + "newPrice": 108.18 + } + ], + "descriptionVector": [ + -0.009771485812962055, + 0.0012015897082164884, + -0.03868180513381958, + 0.017839817330241203, + 0.058715518563985825, + -0.07366863638162613, + -0.04231904819607735, + 0.04240565001964569, + 0.017305778339505196, + 0.04673570394515991, + 0.061429016292095184, + 0.03224445879459381, + 0.021260559558868408, + -0.047601714730262756, + 0.029761897400021553, + -0.007108503486961126, + -0.0007857242017053068, + -0.01717587560415268, + 0.018272822722792625, + -0.0953766331076622, + 0.06847257167100906, + -0.03106091171503067, + -0.005654327571392059, + -0.025042138993740082, + -0.0028434013947844505, + -0.07528518885374069, + -0.006191975437104702, + -0.01639646664261818, + -0.03697865083813667, + 0.05784950777888298, + 0.02094302326440811, + 0.015559323132038116, + 0.021433761343359947, + -0.006054857280105352, + 0.004766666330397129, + -0.007743577938526869, + 0.031955789774656296, + 0.03481362387537956, + 0.020394548773765564, + 0.019672874361276627, + 0.015285086818039417, + 0.023541053757071495, + 0.03452495485544205, + 0.06933858245611191, + 0.02893918752670288, + 0.008775574155151844, + 0.005892480257898569, + 0.02209770306944847, + -0.05880211666226387, + -0.049102798104286194, + -0.040529295802116394, + 0.05201836675405502, + -0.012456119060516357, + 0.04058703035116196, + 0.03686318174004555, + -0.05761856958270073, + 0.06824163347482681, + 0.2701953053474426, + 0.02518647350370884, + 0.020394548773765564, + 0.0016418116865679622, + -0.05510713905096054, + -0.012715921737253666, + 0.0005317846080288291, + -0.03472702577710152, + -0.0013793022371828556, + -0.000513291684910655, + -0.0111426692456007, + 0.014852081425487995, + 0.03149391710758209, + -0.04217471554875374, + -0.00459346454590559, + 0.05554014444351196, + 0.022227603942155838, + 0.0027820589020848274, + 0.018215088173747063, + 0.026499923318624496, + 0.012398384511470795, + 0.016367599368095398, + -0.043473731726408005, + 0.007011077366769314, + 0.04739964380860329, + -0.023353418335318565, + -0.009136411361396313, + 0.11038748174905777, + 0.04930486902594566, + 0.02657209150493145, + -0.13440483808517456, + -0.009980771690607071, + 0.06425798684358597, + 0.02225647121667862, + 0.009858086705207825, + 0.064835324883461, + -0.03928801417350769, + -0.00614506658166647, + 0.08313701301813126, + -0.0355353020131588, + 0.03031037002801895, + -0.024161694571375847, + 0.00444191275164485, + -0.01658410206437111, + -0.037238456308841705, + -0.014866515062749386, + -0.003709411947056651, + 0.016656270250678062, + 0.034063082188367844, + 0.030829977244138718, + 0.016901640221476555, + -0.046793438494205475, + -0.1310562640428543, + -0.00956219993531704, + -0.053230784833431244, + 0.010623062960803509, + 0.05178743228316307, + 0.03172485530376434, + 0.014310824684798717, + -0.03140731528401375, + -0.05415452644228935, + 0.024565832689404488, + -0.07135926932096481, + -0.04748624563217163, + 0.002166830701753497, + 0.011561241000890732, + -0.050690487027168274, + 0.016858339309692383, + 0.01619439758360386, + -0.020019277930259705, + -0.05256684124469757, + 0.019470805302262306, + -0.05063275247812271, + -0.062064092606306076, + -0.029198989272117615, + -0.02092858962714672, + 0.02522977441549301, + -0.05279777944087982, + 0.024378197267651558, + -0.03847973793745041, + 0.02931445837020874, + 0.03146504983305931, + 0.035881705582141876, + -0.0234544537961483, + -0.04081796482205391, + 0.03478475660085678, + 0.07222528010606766, + -0.032735198736190796, + 0.025301942601799965, + 0.011669492349028587, + 0.014296391047537327, + -0.01991824246942997, + -0.016916073858737946, + 0.008154933340847492, + -0.09630037844181061, + -0.03576623648405075, + -0.0060584656894207, + 0.0684148371219635, + -0.01242003496736288, + -0.07672853767871857, + 0.04090456664562225, + -0.07349543273448944, + 0.04901620000600815, + 0.015386121347546577, + 0.01270870491862297, + -0.05802270770072937, + 0.018893463537096977, + 0.011748876422643661, + 0.010081806220114231, + 0.05100802332162857, + 0.05981246381998062, + -0.0313207171857357, + 0.02191006764769554, + 0.051874034106731415, + -0.05692576244473457, + 0.00541978282853961, + -0.11789290606975555, + 0.0084147360175848, + 0.01203033048659563, + 0.05707009509205818, + -0.0012061001034453511, + 0.1120617687702179, + -0.01620883122086525, + -0.0005484733846969903, + 0.026081351563334465, + -0.0550205372273922, + 0.0004266906180419028, + 0.03758485987782478, + 0.058917585760354996, + 0.00047314848052337766, + 0.05643502250313759, + 0.07586252689361572, + -0.0030346454586833715, + 0.03706525266170502, + -0.04864092543721199, + 0.019037799909710884, + 0.03455382212996483, + -0.031118646264076233, + -0.03758485987782478, + 0.030223768204450607, + 0.04263658821582794, + -0.0008953286451287568, + -0.08169366419315338, + -0.01857592724263668, + 0.04780378192663193, + 0.038970474153757095, + -0.058109309524297714, + 0.010226141661405563, + -0.0014442530227825046, + -0.010255008935928345, + 0.0448882132768631, + 0.007656977046281099, + 0.039143677800893784, + -0.040182892233133316, + -0.06177541986107826, + -0.0001561750832479447, + 0.042492251843214035, + -0.010103456676006317, + 0.04765944927930832, + -0.007476557977497578, + -0.047197576612234116, + 0.0006174835725687444, + -0.00344239198602736, + 0.00821266695857048, + -0.04122210294008255, + -0.02677416056394577, + -0.04390673711895943, + -0.06154448539018631, + 0.007184279151260853, + 0.04477274790406227, + 0.0036011605989187956, + 0.05239364132285118, + 0.08839081227779388, + 0.0005786935216747224, + -0.10334392637014389, + -0.021376026794314384, + 0.015256219543516636, + -0.029415491968393326, + 0.014491243287920952, + -0.04947806894779205, + -0.04901620000600815, + 0.03302387148141861, + -0.02831854484975338, + -0.0456676259636879, + 0.04454180970788002, + -0.08394528925418854, + -0.01873469538986683, + -0.06518173217773438, + 0.061082612723112106, + 0.08284834772348404, + -0.05834024399518967, + -0.03657451272010803, + -0.04419540613889694, + 0.024695735424757004, + 0.0057734036818146706, + -0.004813575651496649, + 0.038393136113882065, + 0.017262477427721024, + 0.027856674045324326, + 0.02113065868616104, + -0.006538379937410355, + 0.028260812163352966, + -0.03969215229153633, + 0.011438556015491486, + -0.024378197267651558, + -0.03201352432370186, + 0.04471501335501671, + -0.018691394478082657, + 0.05476073548197746, + -0.0028307719621807337, + -0.053634922951459885, + -0.0414530411362648, + 0.06864576786756516, + 0.048929598182439804, + 0.036026038229465485, + -0.0014198964927345514, + -0.019398637115955353, + 0.006754882633686066, + -0.036430176347494125, + -0.021751299500465393, + 0.04012515768408775, + -0.00021616436424665153, + -0.002726129023358226, + 0.026904061436653137, + -0.0476883165538311, + 0.015588190406560898, + 0.03556416928768158, + 0.07170567661523819, + -0.06391157954931259, + 0.011965379118919373, + -0.015414988622069359, + 0.02873711660504341, + -0.048554327338933945, + -0.013964420184493065, + 0.0007699375273659825, + 0.06489305943250656, + 0.04295412451028824, + 0.05063275247812271, + 0.030166035518050194, + 0.0038068380672484636, + 0.023757556453347206, + 0.04038495942950249, + 0.003965606912970543, + 0.04084683209657669, + 0.05288437753915787, + -0.04809245467185974, + 0.028015442192554474, + 0.018287256360054016, + 0.08954549580812454, + 0.015400554984807968, + -0.07083966583013535, + 0.011640625074505806, + -0.051498763263225555, + 0.0907001718878746, + -0.0016003153286874294, + -0.06269916892051697, + 0.08204007148742676, + 0.05923512205481529, + 0.021145092323422432, + 0.0250132717192173, + -0.02637002244591713, + 0.010009638965129852, + -0.03276406601071358, + -0.03862407058477402, + 0.0074043902568519115, + -0.05571334809064865, + 0.06368064135313034, + 0.037238456308841705, + -0.03804673254489899, + -0.04713984206318855, + 0.03345687687397003, + 0.018330557271838188, + -0.00829926785081625, + 0.033716678619384766, + -0.02147706225514412, + -0.006863133981823921, + -0.018013019114732742, + 0.04976674169301987, + -0.04916053265333176, + -0.01230456680059433, + -0.08856401592493057, + -0.004420262295752764, + -0.02872268483042717, + 0.04448407515883446, + 0.004553772043436766, + -0.035650767385959625, + -0.024551399052143097, + 0.0503440797328949, + -0.02674529328942299, + 0.04598516225814819, + -0.02934332564473152, + 0.04592742770910263, + 0.059696994721889496, + 0.0016003153286874294, + -0.01641090027987957, + 0.053808122873306274, + 0.015443854965269566, + 0.13036346435546875, + -0.006707973778247833, + -0.03224445879459381, + -0.04916053265333176, + 0.039172545075416565, + -0.08966096490621567, + 0.05935059115290642, + 0.0025366893969476223, + 0.012080847285687923, + 0.050921421498060226, + 0.0673178881406784, + 0.04006742313504219, + -0.014996416866779327, + 0.03045470453798771, + -0.013553065247833729, + 0.019398637115955353, + -0.026687558740377426, + -0.05784950777888298, + 0.0897764265537262, + 0.0215059295296669, + -0.013516982086002827, + -0.005823920946568251, + 0.04182831197977066, + 0.06073620915412903, + -0.022992581129074097, + 0.003911481238901615, + 0.002865051617845893, + -0.006123416591435671, + 0.0027531918603926897, + 0.050921421498060226, + 0.07366863638162613, + -0.029790762811899185, + 0.020466716960072517, + 0.05476073548197746, + -0.10957920551300049, + 0.014909815043210983, + -0.02987736463546753, + -0.0071698459796607494, + -0.026528790593147278, + 0.04304072633385658, + 0.06275689601898193, + -0.026297854259610176, + -0.0071698459796607494, + 0.0469089075922966, + -0.037642594426870346, + 0.0026088568847626448, + -0.004413045477122068, + 0.048958465456962585, + -0.06114034727215767, + -0.05005541071295738, + 0.044657278805971146, + -0.07280262559652328, + 0.04861206188797951, + 0.00012629320553969592, + 0.06096714362502098, + -0.0582825131714344, + -0.05040181428194046, + -0.06801069527864456, + -0.007909563370049, + 0.04783264920115471, + 0.07436144351959229, + 0.05727216601371765, + 0.07990390807390213, + 0.009641584008932114, + 0.026644257828593254, + -0.056983496993780136, + 0.053259652107954025, + -0.03201352432370186, + -0.034496087580919266, + -0.03342800959944725, + -0.03261973336338997, + 0.08954549580812454, + -0.08134725689888, + -0.012232399545609951, + -0.027293765917420387, + -0.01056532934308052, + -0.05689689517021179, + -0.06691375374794006, + -0.00780852884054184, + 0.006523946300148964, + 0.021938934922218323, + -0.006567246746271849, + 0.06587453931570053, + -0.01915326714515686, + -0.023295683786273003, + -0.02053888328373432, + -0.05718556419014931, + -0.02854948118329048, + 0.06980045139789581, + 0.010255008935928345, + -0.010861216112971306, + -0.04965127259492874, + -0.03088770993053913, + 0.004052207805216312, + -0.04356033354997635, + 0.04257885366678238, + -0.04537895321846008, + -0.010882866568863392, + -0.06194862350821495, + -0.03853746876120567, + -0.03960555046796799, + -0.04517688602209091, + 0.03891274333000183, + 0.08492676913738251, + 0.04884299635887146, + -0.00957663357257843, + -0.02934332564473152, + 0.07973070442676544, + 0.07592026144266129, + -0.016555234789848328, + 0.026701992377638817, + -0.050690487027168274, + -0.057503100484609604, + -0.024147260934114456, + 0.037988997995853424, + 0.08585051447153091, + -0.049333736300468445, + -0.04748624563217163, + -0.0023292074911296368, + 0.0061053745448589325, + -0.046966638416051865, + -0.012355084531009197, + -0.004784708376973867, + -0.05894645303487778, + -0.039172545075416565, + 0.03140731528401375, + -0.015155185014009476, + -0.004579030908644199, + -0.0012494006659835577, + 0.05885985121130943, + -0.06448891758918762, + 0.010016855783760548, + -0.006440953817218542, + 0.029242290183901787, + -0.05216270312666893, + 0.11535260826349258, + -0.04009629040956497, + 0.04041382670402527, + -0.022617310285568237, + -0.014267523773014545, + -0.002000845270231366, + -0.043300528079271317, + 0.07453463971614838, + -0.03718072175979614, + -0.0414530411362648, + -0.011979812756180763, + -0.011424122378230095, + -0.069511778652668, + -0.04217471554875374, + 0.025071006268262863, + 0.001732923206873238, + 0.01716144196689129, + -0.02948766015470028, + -0.040154024958610535, + 0.017276911064982414, + 0.038393136113882065, + 0.01024779211729765, + 0.0008817972266115248 + ] + }, + { + "id": "432a0b36-3241-41f3-9ae0-0cbe793e8c39", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "tmoore", + "reviewDate": "2022-12-16T19:55:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cd7c2167-52a9-456f-8c67-12332d80a2ce", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "tinaestes", + "reviewDate": "2022-08-28T22:04:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e81ed2de-adb1-4b22-9107-a10cb46699d5", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "donnahorton", + "reviewDate": "2022-01-27T10:20:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ed8764da-2227-4a92-bda6-68eb02edab88", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "prodgers", + "reviewDate": "2022-12-16T21:31:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a4d08890-7f4e-4f49-b3a8-4604964fbd6c", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "halldevin", + "reviewDate": "2021-09-07T17:15:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b8e2ec5f-21d9-4384-a6aa-a1271abc9717", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "zacharybrown", + "reviewDate": "2021-02-21T11:22:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "011b6ee9-6042-4f3d-89e9-ccbb7e188df0", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "uthompson", + "reviewDate": "2021-06-19T06:48:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "82b69945-9f93-4d40-b5b1-18da52e0c03c", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasmorris", + "reviewDate": "2022-05-06T14:44:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "177b9ffb-1de9-4d34-b16a-64a48cadd59b", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "dawn68", + "reviewDate": "2021-01-25T23:59:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "72372312-f5c2-453f-abe8-496818dfe0ee", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandagallegos", + "reviewDate": "2021-10-27T13:28:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "88afc946-afff-4825-bb54-ffbf64b63fcb", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "amywalker", + "reviewDate": "2021-09-03T13:10:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76d8995f-e860-4054-897d-427b4f99e12f", + "productId": "76abcf09-887e-4ead-9294-f508d9e01d96", + "category": "Accessory", + "docType": "customerRating", + "userName": "raymond82", + "reviewDate": "2022-05-27T18:15:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "product", + "name": "Luxe TV + (Steel)", + "description": "This Luxe TV + (Steel) is rated 4.8 out of 5 by 7.\n\nRated 5 out of 5 by kristen from Great TV! I love my LG Smart TV. It is pretty affordable! It has a lot of features, including HDR, the built in Wi-Fi can be a bit slow, but it works great! Love the music playing in all its", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-09-07T02:16:59", + "price": 418.53, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-03-27T20:34:43", + "newPrice": 426.38 + }, + { + "priceDate": "2022-02-01T20:34:43", + "newPrice": 419.14 + }, + { + "priceDate": "2022-12-09T20:34:43", + "newPrice": 419.34 + }, + { + "priceDate": "2023-12-17T20:34:43", + "newPrice": 418.53 + } + ], + "descriptionVector": [ + 0.02367069199681282, + 0.05767758935689926, + -0.03221186622977257, + 0.03700518235564232, + -0.030081504955887794, + 0.0076042101718485355, + -0.03789283335208893, + -0.00011033994815079495, + 0.010888518765568733, + 0.06493660062551498, + 0.045487180352211, + -0.038701582700014114, + -0.017782608047127724, + 0.03797173500061035, + 0.015060477890074253, + -0.01920284889638424, + 0.061622701585292816, + -0.012644095346331596, + 0.019173260778188705, + -0.03313896805047989, + 0.042331088334321976, + -0.08012529462575912, + -0.013393666595220566, + 0.0031289695762097836, + -0.011578913778066635, + -0.027852514758706093, + 0.009907171130180359, + 0.05590228736400604, + 0.03128476440906525, + -0.08067761361598969, + 0.03751804679632187, + 0.015405675396323204, + -0.054166436195373535, + 0.03765612840652466, + -0.010908244177699089, + -0.04264669865369797, + 0.07716646045446396, + 0.031758178025484085, + 0.035249605774879456, + 0.1173277348279953, + 0.007421748246997595, + 0.02096828818321228, + 0.012575055472552776, + -0.014537750743329525, + 0.03276418522000313, + -0.0762985348701477, + 0.011578913778066635, + -0.024262459948658943, + 0.03568356856703758, + -0.016460994258522987, + -0.03489454463124275, + -0.004277984611690044, + -0.07270848006010056, + -0.012959703803062439, + -0.03444085642695427, + -0.027319924905896187, + 0.011805757880210876, + 0.10486117005348206, + -0.004255793057382107, + -0.0465129092335701, + -0.04166042059659958, + -0.012397524900734425, + 0.0020674869883805513, + -0.02315782755613327, + -0.07621963322162628, + -0.062135569751262665, + 0.0075696902349591255, + -0.0025569279678165913, + 0.010563046671450138, + 0.03406607359647751, + 0.008447478525340557, + -0.021185269579291344, + 0.04868272319436073, + -0.004593593999743462, + 0.04406693950295448, + 0.028227301314473152, + -0.007623935583978891, + -0.03450003266334534, + -0.030357662588357925, + 0.0020859797950834036, + 0.04710467904806137, + 0.028641538694500923, + 0.005182895343750715, + 0.042291637510061264, + 0.04039798304438591, + 0.05531051754951477, + -0.04450090229511261, + -0.11559188365936279, + -0.03187653422355652, + 0.0817427933216095, + 0.045132119208574295, + 0.0374588705599308, + 0.000993675901554525, + -0.061622701585292816, + 0.05830880627036095, + -0.008324193768203259, + -0.05069473385810852, + 0.0444614514708519, + 0.005202620755881071, + -0.006869432050734758, + 0.023867947980761528, + -0.02254633419215679, + 0.011213990859687328, + -0.029785621911287308, + 0.021658683195710182, + 0.0040634688921272755, + 0.018068628385663033, + 0.02008063718676567, + 0.00808255560696125, + -0.1693243533372879, + 0.00489194318652153, + -0.032310497015714645, + -0.026215292513370514, + -0.04631565511226654, + 0.036137256771326065, + 0.0725112184882164, + -0.03722216561436653, + -0.050024062395095825, + 0.027970869094133377, + -0.012200269848108292, + 0.015297184698283672, + 0.012890664860606194, + -0.05534996837377548, + -0.01460678968578577, + 0.01756562665104866, + 0.032823361456394196, + -0.0029908905271440744, + 0.036610670387744904, + 0.08020419627428055, + -0.012101641856133938, + -0.06024191156029701, + 0.07913901656866074, + 0.031087510287761688, + 0.02921357937157154, + -0.0007637497037649155, + 0.04702577739953995, + -0.006366429850459099, + -0.04860382154583931, + 0.016332777217030525, + -0.05475820228457451, + 0.001489281072281301, + -0.03517070412635803, + -0.0057894568890333176, + 0.015218283049762249, + -0.007653524167835712, + -0.002226524520665407, + -0.025130385532975197, + -0.08197949826717377, + -0.02175731211900711, + 0.0321526899933815, + 0.07878395169973373, + -0.07373420894145966, + -0.03294171392917633, + -0.011578913778066635, + 0.0571252703666687, + 0.05318015441298485, + -0.0407135896384716, + 0.022151822224259377, + -0.10446665436029434, + 0.028128672391176224, + -0.03288253769278526, + -0.057006917893886566, + -0.06047862023115158, + -0.042015478014945984, + 0.04430364444851875, + 0.06178050860762596, + 0.016806190833449364, + 0.0032621172722429037, + -0.10383544117212296, + 0.022112371399998665, + 0.03909609466791153, + -0.01313723437488079, + -0.019459281116724014, + -0.021047191694378853, + -0.026018036529421806, + -0.0005615625414066017, + 0.07618018239736557, + 0.0007064222590997815, + 0.01636236533522606, + 0.002203100360929966, + 0.017437409609556198, + 0.012436976656317711, + -0.07452323287725449, + -0.029253030195832253, + 0.04237053915858269, + 0.009749366901814938, + 0.037123534828424454, + -0.006775735877454281, + 0.02199401892721653, + 0.059531792998313904, + -0.03838597238063812, + 0.020889386534690857, + 0.008220634423196316, + -0.045487180352211, + -0.009557042270898819, + -0.05523161590099335, + 0.10699152946472168, + 0.03388854116201401, + -0.04915613681077957, + 0.022684413939714432, + 0.02763553336262703, + 0.07404981553554535, + 0.11819566041231155, + -0.02152060531079769, + 0.026511175557971, + -0.06927622854709625, + 0.07180110365152359, + 0.05168101191520691, + 0.02465697191655636, + 0.03327704966068268, + -0.01006990671157837, + -0.004132508300244808, + -0.027990594506263733, + 0.08000694215297699, + 0.01395584549754858, + 0.02753690630197525, + -0.0009412798681296408, + -0.030416840687394142, + -0.08560900390148163, + -0.10415104776620865, + 0.027931416407227516, + 0.017447272315621376, + -0.004894408863037825, + -0.03732079267501831, + 0.0031462295446544886, + -0.06114928796887398, + 0.0489194318652153, + 0.010997009463608265, + 0.05586283281445503, + 0.008043103851377964, + 0.021500879898667336, + -0.04118700325489044, + -0.04025990143418312, + 0.04248889163136482, + -0.02801031991839409, + -0.01149014849215746, + -0.025564348325133324, + -0.0234339851886034, + -0.03116641193628311, + 0.03862268105149269, + -0.020021460950374603, + -0.0649760514497757, + 0.008733498863875866, + -0.008092418313026428, + 0.0020674869883805513, + -0.01644126884639263, + 0.09602411091327667, + 0.02315782755613327, + -0.0016742083244025707, + 0.010474281385540962, + -0.059058379381895065, + -0.10825397074222565, + -0.041265908628702164, + 0.06525220721960068, + -0.0101783974096179, + -0.015573343262076378, + 0.08316303044557571, + 0.006938471924513578, + 0.07708755880594254, + 0.023138102144002914, + -0.057756491005420685, + -0.020475149154663086, + -0.00666231382638216, + -0.018847789615392685, + 0.024893678724765778, + 0.03974703699350357, + 0.02986452355980873, + -0.10541348159313202, + -0.002692541340366006, + -0.000545227259863168, + -0.050260771065950394, + -0.010168534703552723, + 0.016934407874941826, + 0.009986073710024357, + -0.0690789744257927, + 0.0072639440186321735, + -0.06410812586545944, + 0.0047341384924948215, + -0.040792495012283325, + 0.006203693803399801, + 0.0755884125828743, + 0.005606995429843664, + -0.04785424843430519, + 0.00906390231102705, + 0.053890276700258255, + -0.05475820228457451, + 0.03006177954375744, + -0.03071272373199463, + 0.05396917834877968, + -0.0012014108942821622, + -0.00994662195444107, + 0.07783712446689606, + 0.06268788129091263, + -0.030357662588357925, + 0.02059350162744522, + 0.053653568029403687, + 0.012446839362382889, + -0.057795941829681396, + 0.03722216561436653, + -0.024262459948658943, + 0.021126093342900276, + 0.06627793610095978, + -0.0212049949914217, + -0.05282509699463844, + -0.08426766842603683, + 0.031659550964832306, + 0.004993036855012178, + 0.03852405399084091, + -0.008891304023563862, + -0.03209351375699043, + 0.040792495012283325, + 0.03680792823433876, + -0.015050615184009075, + -0.0038292277604341507, + 0.022664688527584076, + 0.006834912579506636, + -0.05590228736400604, + 0.0714854896068573, + 0.03544686362147331, + 0.03532850742340088, + -0.0076042101718485355, + 0.017634665593504906, + -0.052864547818899155, + 0.08324193209409714, + 0.005207552574574947, + -0.05215442553162575, + -0.013590922579169273, + -0.07349750399589539, + -0.003895801492035389, + 0.033198148012161255, + -0.004776055458933115, + 0.04371187835931778, + -0.024262459948658943, + 0.08939631283283234, + 0.09910129755735397, + 0.007505582179874182, + 0.0295883659273386, + -0.0208696611225605, + 0.04765699431300163, + -0.005853564944118261, + 0.08852838724851608, + -0.016697701066732407, + 0.028483733534812927, + -0.03676847741007805, + 0.022763315588235855, + -0.060557521879673004, + -0.026175841689109802, + 0.017624802887439728, + 0.06896061450242996, + 0.009349923580884933, + 0.0010547019774094224, + -0.019745303317904472, + -0.0011527134338393807, + 0.054166436195373535, + 0.017782608047127724, + 0.03826761990785599, + 0.0042237392626702785, + -0.034835368394851685, + -0.006203693803399801, + -0.0075696902349591255, + 0.07144603878259659, + -0.017447272315621376, + -0.01078989077359438, + 0.01896614208817482, + -0.0711698830127716, + 0.016697701066732407, + -0.050576381385326385, + 0.0317976288497448, + -0.06734312325716019, + 0.02106691710650921, + 0.035111527889966965, + -0.06288514286279678, + -0.04663126543164253, + 0.06623848527669907, + 0.034874819219112396, + 0.04248889163136482, + -0.004803177900612354, + -0.0005800552316941321, + -0.023197278380393982, + 0.03755749762058258, + -0.05629679560661316, + 0.025367092341184616, + 0.03647259250283241, + -0.011707129888236523, + 0.016668112948536873, + 0.027694709599018097, + -0.051049795001745224, + -0.021461427211761475, + -0.0437907800078392, + -0.006908883340656757, + 0.022684413939714432, + -0.025524897500872612, + 0.01929161511361599, + 0.06915787607431412, + 0.09925910085439682, + -0.022526608780026436, + -0.004990571178495884, + 0.03359265625476837, + 0.04600004479289055, + -0.09207899123430252, + -0.004514691419899464, + 0.029331933706998825, + 0.03690655529499054, + -0.08268962055444717, + -0.0434357225894928, + -0.042843952775001526, + 0.03065354749560356, + 0.0625695288181305, + 0.0005304330843500793, + -0.0896330252289772, + -0.052864547818899155, + -0.04114755243062973, + 0.018147531896829605, + -0.030436566099524498, + 0.030180133879184723, + 0.027832789346575737, + 0.06588342785835266, + -0.0509708896279335, + 0.02945028617978096, + -0.05838770791888237, + 0.0814271792769432, + 0.0961030125617981, + -0.03057464398443699, + -0.0004595443024300039, + 0.017299331724643707, + 0.048998333513736725, + -0.04509266838431358, + -0.04169987142086029, + -0.026629529893398285, + -0.03448030725121498, + 0.05992630496621132, + -0.06639629602432251, + 0.05306180194020271, + 0.023453710600733757, + 0.00889623537659645, + 0.012348211370408535, + 0.003752791089937091, + 0.01549444068223238, + -0.013433118350803852, + 0.013650099746882915, + 0.018246158957481384, + -0.020988013595342636, + -0.03621615841984749, + 0.058742769062519073, + -0.08695034682750702, + -0.020376522094011307, + -0.0023041940294206142, + 0.03680792823433876, + 0.023986302316188812, + -0.015297184698283672, + 0.03927362337708473, + -0.0047390698455274105, + -0.0023670692462474108, + -0.0827685222029686, + -0.04063468798995018, + 0.021974293515086174, + 0.02479504980146885, + 0.06931567937135696, + -0.017585352063179016, + -0.07760041952133179, + -0.0022228260058909655, + 0.06817159801721573, + -0.01855190470814705, + 0.07886286079883575, + -0.061583250761032104, + -0.038741033524274826, + -0.07692974805831909, + -0.03351375460624695, + -0.015918539837002754, + 0.020376522094011307, + -0.05755923315882683, + -0.05657295510172844, + -0.07878395169973373, + 0.007451336830854416, + -0.04059523716568947, + -0.018482865765690804, + 0.037123534828424454, + -0.05625734478235245, + -0.018650533631443977, + 0.026451999321579933, + 0.038977742195129395, + 0.009626081213355064, + 0.06406867504119873, + 0.027063492685556412, + 0.10454555600881577, + -0.005883153527975082, + 0.08371534943580627, + 0.043317366391420364, + 0.04911668598651886, + -0.009611287154257298, + -0.06103093549609184, + -0.027201570570468903, + -0.033198148012161255, + -0.09768106043338776, + -0.04248889163136482, + 0.017220428213477135, + 0.0038711444940418005, + -0.004615785088390112, + -0.05791429430246353, + -0.012397524900734425, + 0.008679253980517387, + 0.07507554441690445, + -0.07468103617429733, + 0.034697290509939194, + -0.00801844708621502, + -0.011125225573778152, + 0.0075746215879917145, + 0.0023202209267765284, + 0.005577406845986843, + 0.08837058395147324, + 0.08979082852602005, + 0.00184064288623631 + ] + }, + { + "id": "d9dafb8c-eb30-4762-9b5b-3cb22ec728ce", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "davieskatherine", + "reviewDate": "2021-07-06T12:18:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "233b6ab0-412f-4962-b986-28412f197f32", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "john40", + "reviewDate": "2021-06-22T14:15:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6e7dfce1-e9c3-46d7-9ef0-749a0c189891", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "jason59", + "reviewDate": "2022-06-07T04:59:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "af2a79d1-ac07-4cbd-bf11-1279a8c4169a", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "acantu", + "reviewDate": "2022-02-14T21:58:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8e3af50c-dc7d-46e2-8bc5-bfb42e6fa8aa", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "joshua24", + "reviewDate": "2021-11-28T09:30:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f4a4e610-af9a-4656-8e49-f7e74eea6d63", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "thomas70", + "reviewDate": "2022-10-08T22:48:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2ded52c3-c90a-49b8-afc4-c65c7ec45ec4", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "thomas23", + "reviewDate": "2021-03-27T20:34:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b8b131f-e6b7-4426-b137-0ad9470eae85", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "hunterryan", + "reviewDate": "2021-05-11T13:44:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e72ad692-b9a8-42a4-813a-bde3f1fccdae", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "brandon76", + "reviewDate": "2021-12-25T04:42:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bc42fd8d-6da9-4ff2-9a28-44235f0a961d", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "james59", + "reviewDate": "2022-10-28T08:19:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a190df3c-c328-432d-998f-24e7b8e5c95e", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "stephanie69", + "reviewDate": "2022-12-11T07:20:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d0d01894-cf2a-4a65-9fc9-ab824794c0cd", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "hannahbrown", + "reviewDate": "2022-02-14T09:23:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bb964667-0147-41e1-9e2f-93ec25c9f433", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "karen88", + "reviewDate": "2021-11-29T18:28:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3815aa0c-95b3-4d43-9a8d-f8b7642e6670", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "ashleyrobinson", + "reviewDate": "2021-06-06T05:37:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b4144045-d006-4106-b2bc-57ea8115ec20", + "productId": "93e13e8a-07e2-48d3-aa8d-37c7a9c5330e", + "category": "Media", + "docType": "customerRating", + "userName": "wilsonbelinda", + "reviewDate": "2021-11-02T15:01:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "product", + "name": "Awesome TV Micro (Silver)", + "description": "This Awesome TV Micro (Silver) is the \"ultimate gift\" for a new series of games on PC and Mac that will soon be available in Japanese on Steam and the PlayStation 4. Not to be outdone, we see other games on the list and we'll get some updates on PC and Mac, too. It's been a nice season for Xbox and PS4, and we can't wait to see what those plans go for next. And by", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-02-03T07:25:45", + "price": 660.89, + "stock": 68, + "priceHistory": [ + { + "priceDate": "2021-02-18T06:14:33", + "newPrice": 721.25 + }, + { + "priceDate": "2021-12-06T06:14:33", + "newPrice": 655.56 + }, + { + "priceDate": "2022-09-23T06:14:33", + "newPrice": 665.27 + }, + { + "priceDate": "2023-07-18T06:14:33", + "newPrice": 660.89 + } + ], + "descriptionVector": [ + -0.03601928800344467, + 0.03220118582248688, + -0.06193183735013008, + 0.03630002960562706, + -0.006436026189476252, + -0.01754641905426979, + -0.04688403010368347, + 0.01667611673474312, + 0.06698520481586456, + 0.047052476555109024, + 0.01572159118950367, + -0.04508727788925171, + 0.12038246542215347, + 0.03677729144692421, + 0.0022143579553812742, + -0.05151628330349922, + -0.04671558365225792, + 0.0027653155848383904, + -0.015861961990594864, + 0.007250180002301931, + 0.02540721371769905, + 0.015539107844233513, + 0.007369495928287506, + -0.0011519223917275667, + 0.04284133389592171, + 0.005039331503212452, + -0.011208652518689632, + 0.007930980995297432, + -0.012163177132606506, + 0.04135340079665184, + 0.020395956933498383, + 0.010731389746069908, + -0.06193183735013008, + 0.02661440707743168, + 0.00174323667306453, + -0.035963140428066254, + -0.017574492841959, + 0.07641816139221191, + 0.10151655972003937, + -0.05044946074485779, + 0.023189347237348557, + -0.030657103285193443, + 0.010998095385730267, + -0.019062429666519165, + 0.0016028652898967266, + 0.03585084155201912, + -0.013749373145401478, + -0.037591446191072464, + -0.03621580824255943, + 0.04997219890356064, + 0.023540275171399117, + 0.013265091925859451, + 0.017293749377131462, + 0.09882143139839172, + -0.021897930651903152, + -0.03621580824255943, + 0.020508253946900368, + -0.03127473592758179, + 0.024270206689834595, + -0.06271791458129883, + -0.0008141538128256798, + -0.05078635364770889, + 0.02706359513103962, + 0.009124137461185455, + 0.009432954713702202, + -0.08714253455400467, + 0.03399794176220894, + 0.11145485192537308, + 0.002135399030521512, + 0.02665651962161064, + 0.03071325086057186, + 0.04343089461326599, + 0.05867522209882736, + 0.07939403504133224, + -0.02728818915784359, + -0.03214503824710846, + 0.0167743768543005, + 0.010927909053862095, + 0.04738936573266983, + -0.021434705704450607, + 0.001887994585558772, + 0.044469643384218216, + -0.0070571694523096085, + 0.03076940029859543, + -0.00833805836737156, + 0.010008476674556732, + 0.0011019150260835886, + -0.13599176704883575, + -0.024873802438378334, + 0.01377042941749096, + 0.015651404857635498, + 0.08349287509918213, + 0.01927298679947853, + -0.021673336625099182, + 0.0021476815454661846, + 0.052807699888944626, + -0.0309939943253994, + 0.03211696445941925, + 0.009089045226573944, + -0.004884922876954079, + 0.0882093533873558, + -0.06187568977475166, + 0.05437986180186272, + -0.10763674974441528, + -0.02055036462843418, + -0.03234155848622322, + 0.047529738396406174, + 0.07114019989967346, + -0.0270074475556612, + -0.15822657942771912, + 0.027947936207056046, + 0.05760839954018593, + -0.002230149693787098, + -0.012261437252163887, + -0.007127355318516493, + 0.03655269742012024, + -0.04637869447469711, + -0.030207913368940353, + -0.05631698668003082, + -0.021617187187075615, + -0.01591811142861843, + 0.0250843595713377, + 0.018655352294445038, + 0.005425352603197098, + -0.024073686450719833, + -0.0009387333993799984, + -0.03447520360350609, + 0.08450355380773544, + 0.009306620806455612, + 0.007776572834700346, + -0.08366132527589798, + 0.05266733095049858, + 0.01310366578400135, + 0.01327912975102663, + -0.013166832737624645, + -0.005098989233374596, + -0.023020900785923004, + 0.08444740623235703, + -5.856117059011012e-05, + -0.012387771159410477, + -0.03447520360350609, + 0.02245941571891308, + -0.018093867227435112, + -0.010141829960048199, + -0.06400933116674423, + 0.011461320333182812, + -0.06412163376808167, + 0.04270096495747566, + 0.004519957583397627, + 0.008815320208668709, + 0.029955245554447174, + -0.056513503193855286, + -0.029534131288528442, + -0.024228094145655632, + 0.04943878948688507, + 0.08366132527589798, + -0.02831290103495121, + -0.023568348959088326, + -0.0167743768543005, + 0.04211140424013138, + -0.019637951627373695, + 0.033436454832553864, + -0.08989381045103073, + 0.02415790967643261, + 0.020157326012849808, + -0.04637869447469711, + 0.043094005435705185, + -0.0022283950820565224, + -0.04300978034734726, + 0.014289802871644497, + -0.0034180423244833946, + -0.031780071556568146, + 0.05126361548900604, + 0.030179839581251144, + 0.05637313425540924, + 0.00937680620700121, + 0.09135366976261139, + -0.03304341435432434, + -0.06271791458129883, + -0.009987421333789825, + -0.046996328979730606, + 0.025477400049567223, + -0.07338614016771317, + -0.003888286417350173, + 0.04694017767906189, + 0.021561039611697197, + 0.048428114503622055, + 0.023063013330101967, + -0.012563236057758331, + -0.006074570119380951, + -0.007867814041674137, + -0.035935066640377045, + 0.07849565893411636, + -0.10853512585163116, + 0.027021484449505806, + 0.016016371548175812, + 0.02661440707743168, + -0.03860212117433548, + -0.05230236425995827, + 0.08377362042665482, + -0.02776545286178589, + 0.015272402204573154, + 0.1204947680234909, + 0.016255002468824387, + 0.08203301578760147, + 0.0065799071453511715, + 0.021996190771460533, + 0.03492439165711403, + 0.05196547135710716, + 0.016605930402874947, + -0.007008039392530918, + 0.02738644927740097, + -0.02626347914338112, + -0.00010237238893751055, + 0.04489075765013695, + -0.01145430188626051, + 0.06681676208972931, + 0.013938874937593937, + 0.04326244816184044, + 0.005825411062687635, + 0.053284965455532074, + -0.0263617392629385, + -0.036187734454870224, + 0.019834471866488457, + 0.05805759131908417, + -0.03717033192515373, + -0.00923643447458744, + 0.0196519885212183, + 0.012808885425329208, + -0.041297249495983124, + -0.06142650172114372, + -0.004814737010747194, + 0.018290387466549873, + 0.003993564750999212, + 0.0332399345934391, + 0.017139341682195663, + 0.04062346741557121, + 0.01895013265311718, + 0.005235851276665926, + -0.006172830238938332, + -0.04118495434522629, + -0.010752445086836815, + -0.009025877341628075, + 0.03447520360350609, + 0.023442015051841736, + -0.04444156959652901, + 0.05148820951581001, + 0.06333555281162262, + -0.005962273105978966, + 0.019932731986045837, + -0.06855736672878265, + -0.046799808740615845, + -0.03952857106924057, + 0.07136479020118713, + -0.05151628330349922, + 0.0469682514667511, + 0.0814715325832367, + 0.02019943669438362, + 0.08382976800203323, + -0.024915914982557297, + -0.12004557996988297, + -0.06316711008548737, + -0.004765607416629791, + 0.03658077493309975, + 0.0012519370066002011, + 0.049803752452135086, + 0.04764203727245331, + -0.03506476432085037, + -0.08731097728013992, + -0.011334986425936222, + 0.01587599888443947, + -0.04783855378627777, + 0.010212015360593796, + -0.03795641288161278, + -0.05314459279179573, + -0.03220118582248688, + -0.03211696445941925, + 0.05805759131908417, + 0.039416275918483734, + 0.006600962486118078, + 0.07591282576322556, + 0.003976018633693457, + 0.04943878948688507, + -0.0290849432349205, + 0.033436454832553864, + -0.017279712483286858, + -0.0013273865915834904, + 0.02390523999929428, + -0.03587891533970833, + 0.00977686420083046, + -0.021940041333436966, + -0.026993410661816597, + 0.10909660905599594, + 0.00868898630142212, + 0.0655253455042839, + -0.05067405477166176, + -0.013812541030347347, + 0.018065791577100754, + -0.006955400109291077, + 0.011398153379559517, + -0.040118131786584854, + 0.01872553862631321, + -0.02425616979598999, + -0.023863129317760468, + -0.07849565893411636, + 0.06670446693897247, + 0.02815849334001541, + 0.043767787516117096, + -0.051909323781728745, + -0.04180258885025978, + 0.10146041214466095, + -0.06541305035352707, + -0.0693434476852417, + 0.05564320087432861, + 0.018093867227435112, + -0.058787520974874496, + -0.008506503887474537, + -0.006772917695343494, + -0.02888842299580574, + 0.006113172043114901, + 0.051460135728120804, + -0.05345340818166733, + -0.0863003060221672, + 0.06041582673788071, + 0.10117966681718826, + 0.01907646656036377, + -0.009994439780712128, + -0.024663245305418968, + -0.062268730252981186, + 0.014921474270522594, + -0.012535161338746548, + -0.003114489372819662, + 0.017855236306786537, + -0.010583999566733837, + 0.06108960881829262, + -0.014002041891217232, + 0.02841116115450859, + 0.032931119203567505, + 0.02841116115450859, + 0.03121858835220337, + 0.04556453973054886, + 0.045648761093616486, + 0.03764759376645088, + -0.007050151005387306, + -0.07282465696334839, + -0.05426756292581558, + -0.0827629491686821, + -0.005165665410459042, + 0.06030353158712387, + 0.03554202616214752, + 0.0019441432086750865, + -0.0818084180355072, + 0.05724343657493591, + 0.0204521045088768, + 0.10370635241270065, + -0.03121858835220337, + 0.0377037450671196, + -0.04876500740647316, + 0.05690654367208481, + 0.07973092794418335, + -0.0037549335975199938, + -0.04870885610580444, + 0.025673920288681984, + 0.06625527888536453, + -0.046799808740615845, + 0.018458832055330276, + -0.0038181005511432886, + -0.02255767583847046, + -0.04713669791817665, + -0.05294807255268097, + 0.04592950642108917, + -0.03680536895990372, + -0.0946102887392044, + 0.029983319342136383, + 0.01984850876033306, + -0.0010913872392848134, + -0.0102260522544384, + 0.014795140363276005, + -0.04969145730137825, + 0.04744551703333855, + -0.007432662881910801, + 0.053256887942552567, + -0.008850413374602795, + -0.012324604205787182, + -0.022038301452994347, + 0.010106736794114113, + 0.031358957290649414, + -0.12532353401184082, + -0.014626694843173027, + 0.03975316509604454, + -0.025800254195928574, + 0.05934900417923927, + 0.006948381662368774, + 0.038489822298288345, + -0.02102762833237648, + 0.005337620619684458, + 0.045003052800893784, + 0.03728263080120087, + 0.01725163869559765, + 0.025575660169124603, + 0.021841781213879585, + 0.05946130305528641, + 0.041241101920604706, + 0.04733321815729141, + -0.09006225317716599, + 0.002102060941979289, + -0.05755225196480751, + -0.007081734482198954, + -0.04107265546917915, + -0.07164553552865982, + -0.02245941571891308, + 0.0222067479044199, + -0.029646428301930428, + -0.028397124260663986, + 0.07024182379245758, + 0.005762243643403053, + 0.03947242349386215, + 0.046771734952926636, + 0.044750384986400604, + -0.04963530972599983, + 0.0015116239665076137, + 0.03694573789834976, + 0.05345340818166733, + 0.05224621668457985, + -0.019315097481012344, + -0.021968115121126175, + 0.018486905843019485, + 0.030376359820365906, + 0.0021687373518943787, + -0.11016343533992767, + -0.00019937117758672684, + -0.046799808740615845, + -0.017911383882164955, + -0.014710917137563229, + 0.03329608216881752, + -0.031106291338801384, + 0.05934900417923927, + 0.07916943728923798, + -0.026080995798110962, + 0.0050744242034852505, + -0.018206164240837097, + -0.048400040715932846, + 0.037114184349775314, + 0.06631142646074295, + -0.017139341682195663, + 0.04831581935286522, + 0.01300540566444397, + 0.09854068607091904, + 0.07961862534284592, + 0.01927298679947853, + -0.050758279860019684, + 0.0042146495543420315, + 0.019006280228495598, + 0.024845728650689125, + -0.0005645559867843986, + 0.013672169297933578, + -0.024396540597081184, + 0.04292555898427963, + -0.004004092887043953, + 0.09753001481294632, + 0.09270124137401581, + 0.06704135239124298, + -0.00819768663495779, + -0.00925047229975462, + -0.029534131288528442, + -0.06979263573884964, + -0.08293139189481735, + 0.017335861921310425, + -0.02230500802397728, + -0.011608710512518883, + -0.020648624747991562, + -0.06827662140130997, + -0.04949493706226349, + 0.002995173679664731, + 0.008731097914278507, + -0.03093784488737583, + 0.022248858585953712, + 0.0004579615197144449, + 0.005155137740075588, + 0.02856556884944439, + 0.059292856603860855, + 0.017335861921310425, + 0.00060622877208516, + -0.006067551672458649, + 0.01259130984544754, + -0.022375192493200302, + -0.01975024864077568, + 0.040819987654685974, + 0.07641816139221191, + 0.06749054044485092, + 0.08163997530937195, + -0.01850094459950924, + 0.03374527022242546, + -0.022641899064183235, + -0.06822047382593155, + 0.009039915166795254, + 0.004607689566910267, + 0.03003946878015995, + -0.03717033192515373, + 0.044694237411022186, + -0.016704190522432327, + -0.007222105748951435, + -0.023849092423915863, + 0.04590143263339996, + 0.08068545162677765, + 0.008204705081880093, + -0.007460737135261297, + 0.02150489017367363, + -0.03604736179113388, + 0.03211696445941925, + 0.02585640177130699, + 0.027976009994745255 + ] + }, + { + "id": "5c60e7cc-65db-4841-8823-92c93548e2bc", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "burnsstephanie", + "reviewDate": "2021-04-30T23:11:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "39a903e2-a8da-4539-92b7-eda0bc971a57", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "james21", + "reviewDate": "2022-03-05T18:07:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ea01ecb0-9a19-49ad-bf36-40b3821b32e2", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "rhunt", + "reviewDate": "2021-02-18T06:14:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ff098cc8-e9e0-407c-8447-3dee64c74351", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "tinalopez", + "reviewDate": "2022-04-01T13:57:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0e2fb450-24e8-40d2-8425-25a87ab65e93", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "knightraymond", + "reviewDate": "2022-08-13T06:45:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e9450f87-3da8-4174-801d-4439166852b7", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "vickiekelley", + "reviewDate": "2021-04-19T23:28:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3dd8f529-2e18-4c89-9457-55d43fe9080d", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "mollymarks", + "reviewDate": "2022-05-25T21:05:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "531677b0-c861-4263-8e4c-62f9189059eb", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "reyesmatthew", + "reviewDate": "2021-07-03T09:15:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "86acdfab-c0eb-4da6-b8a1-d17a190f80d4", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "clewis", + "reviewDate": "2022-07-07T11:35:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c7ea0025-03b8-4732-bf30-69e7079dc7d0", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "kathryn96", + "reviewDate": "2021-12-16T11:13:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98143365-64d1-4ff7-a1c9-b5db7d065814", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "melindabradshaw", + "reviewDate": "2022-07-02T11:53:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5abf4648-873c-48b5-8e7d-13ae34bca1df", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "jamessingleton", + "reviewDate": "2022-09-23T07:10:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d75061c2-e4fa-4a9d-ac33-8cfb0c68ee60", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "brianamercado", + "reviewDate": "2021-12-14T06:41:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6f2ae73b-7e79-40fe-8386-3d9484b0d742", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "mhubbard", + "reviewDate": "2021-10-15T14:19:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1a988f91-ca13-47f4-996b-8afb48b3c537", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "brian70", + "reviewDate": "2021-08-08T09:52:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f574b854-222f-474b-b745-c82b8158dbf4", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "elizabethbrown", + "reviewDate": "2022-04-19T22:26:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c61c2571-e21d-4082-a280-27028bcb6e57", + "productId": "5c7f503b-c123-4eaa-a4f9-67d3ba8fe5e1", + "category": "Media", + "docType": "customerRating", + "userName": "rhoward", + "reviewDate": "2021-10-02T00:08:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a196637d-7b37-40a9-9beb-e63312d52cda", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Ultra (Steel)", + "description": "This Premium Speaker Ultra (Steel) is crafted with ultra soft and hard suede and soft felt. This Speaker Ultra is great on those occasions for a soft look. The Ultra comes with a removable silicone cover and a brushed gold finish.\n\nMade in USA.\n\nSize & Measurements\n\nThis product is", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-06-06T20:17:07", + "price": 371.13, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-02-28T17:28:00", + "newPrice": 389.01 + }, + { + "priceDate": "2021-08-09T17:28:00", + "newPrice": 351.78 + }, + { + "priceDate": "2022-01-18T17:28:00", + "newPrice": 337.79 + }, + { + "priceDate": "2022-06-29T17:28:00", + "newPrice": 401.21 + }, + { + "priceDate": "2022-12-08T17:28:00", + "newPrice": 350.77 + }, + { + "priceDate": "2024-04-07T17:28:00", + "newPrice": 371.13 + } + ], + "descriptionVector": [ + -0.04044724628329277, + -0.017514001578092575, + -0.02815542183816433, + -0.03564382717013359, + -0.014865963719785213, + 0.012433463707566261, + -0.07251930236816406, + 0.04212228208780289, + 0.0051482790149748325, + 0.059463854879140854, + -0.019657066091895103, + 0.03589015454053879, + 0.018339205533266068, + -0.054635804146528244, + 0.03098820522427559, + 0.007611570414155722, + -0.001865943311713636, + -0.024817660450935364, + -0.02618478797376156, + -0.013646634295582771, + 0.04953679069876671, + -0.06241980567574501, + -0.037442028522491455, + -0.0240170918405056, + -0.01673806458711624, + -0.007162019610404968, + 0.0157896988093853, + 0.025027040392160416, + 0.045595522969961166, + 0.030544813722372055, + 0.029731927439570427, + 0.010019437409937382, + -0.045718688517808914, + 0.07340608537197113, + -0.0732090175151825, + 0.011583628132939339, + 0.005163674708455801, + -0.0018228356493636966, + 0.06478456407785416, + -0.0016288514016196132, + -0.014262457378208637, + -0.0058626336976885796, + 0.014139292761683464, + 0.02603699080646038, + 0.02494082599878311, + -0.04665473848581314, + 0.008005697280168533, + 0.07508112490177155, + 0.010339666157960892, + -0.021800128743052483, + -0.049807753413915634, + 0.0014733561547473073, + -0.06320805847644806, + -0.009305083192884922, + 0.010124127380549908, + -0.04660547524690628, + 0.04480727016925812, + 0.17380984127521515, + 0.07685469090938568, + 0.016109926626086235, + 0.03377172723412514, + -0.12621904909610748, + -0.025692129507660866, + 0.05961165204644203, + 0.006441507022827864, + 0.011152551509439945, + 0.006262918468564749, + -0.02882050909101963, + 0.015013760887086391, + 0.12020862102508545, + 0.06192714720964432, + -0.008430615067481995, + 0.03593942150473595, + 0.0713861882686615, + 0.044955067336559296, + 0.010148760862648487, + 0.018770281225442886, + 0.026973040774464607, + 0.02085176110267639, + -0.04126013070344925, + 0.0206916481256485, + 0.040250182151794434, + -0.025667496025562286, + 0.017538635060191154, + 0.061434488743543625, + -0.02204645797610283, + 0.04052114486694336, + -0.1136069968342781, + 0.005499298218637705, + 0.0451274998486042, + 0.026652812957763672, + 0.010992437601089478, + 0.051827650517225266, + 0.0006265997653827071, + 0.055325526744127274, + 0.03148086369037628, + -0.01845005340874195, + 0.03022458590567112, + -0.1274014264345169, + -0.027909092605113983, + 0.05192618444561958, + 0.003008294617757201, + -0.013548103161156178, + -0.0012970769312232733, + -0.018770281225442886, + 0.03431364893913269, + 0.03507727012038231, + -0.022551432251930237, + 0.031136004254221916, + -0.12878087162971497, + 0.0120085459202528, + -0.05281296744942665, + 0.021196622401475906, + -0.025987723842263222, + 0.03909243643283844, + -0.002700383309274912, + 0.017563268542289734, + -0.017748015001416206, + -0.01982949674129486, + 0.01237803976982832, + 0.0020368341356515884, + 0.00029944386915303767, + 0.07074572890996933, + 0.015321672894060612, + -0.0035255858674645424, + 0.053207095712423325, + 0.007549988105893135, + 0.060744766145944595, + 0.014607317745685577, + -0.0006035063997842371, + -0.07104132324457169, + 0.06774051487445831, + -0.0072297602891922, + 0.02173854596912861, + -0.06488309800624847, + -0.006620095577090979, + 0.03416585177183151, + 0.026357218623161316, + 0.004116775933653116, + 0.02503935806453228, + -0.001207782537676394, + 0.04606354981660843, + 0.05700056254863739, + 0.038057852536439896, + -0.10119201242923737, + -0.06232127174735069, + -0.04719666391611099, + -0.03443681448698044, + -0.049019500613212585, + 0.002138444921001792, + 0.07217443734407425, + -0.06931702047586441, + 0.004061351530253887, + -0.041506461799144745, + 0.041604992002248764, + 0.030101420357823372, + -0.09439332783222198, + -0.0012185594532638788, + -0.01264900155365467, + 0.07675616443157196, + 0.05680349841713905, + -0.021369053050875664, + 0.01816677488386631, + 0.004181437194347382, + 0.007100437302142382, + 0.060794033110141754, + -0.02963339537382126, + 0.04000385105609894, + -0.050448209047317505, + 0.018560901284217834, + -0.0056070671416819096, + 0.0016072976868599653, + -0.007802475709468126, + -0.07784000784158707, + 0.03212131932377815, + -0.09321095049381256, + 0.062124211341142654, + 0.00803648866713047, + 0.02253911644220352, + -0.013917597010731697, + 0.005102092400193214, + 0.11390259861946106, + -0.014631951227784157, + 0.0010853877756744623, + -0.0026449591387063265, + 0.04468410462141037, + 0.040767472237348557, + 0.07049939781427383, + 0.037442028522491455, + 0.0001886919781100005, + -0.026899142190814018, + 0.02207109145820141, + -0.06177935004234314, + 0.010549045167863369, + -0.04318149760365486, + -0.008800108917057514, + 0.05296076461672783, + 0.10651271790266037, + -0.0634051188826561, + -0.036013320088386536, + -0.005720994435250759, + 0.02061774954199791, + 0.05473433434963226, + -0.0025541253853589296, + -0.042171549052000046, + -0.09483671933412552, + -0.03709716722369194, + 0.012525836937129498, + -0.024571331217885017, + 0.03773762285709381, + -0.021886344999074936, + -0.05995651334524155, + -0.05567038804292679, + 0.022674597799777985, + 0.02468218095600605, + 0.02439890243113041, + 0.008005697280168533, + -0.0005777188343927264, + -0.009459039196372032, + 0.01112791895866394, + 0.009286608546972275, + 0.01273521687835455, + 0.04734446108341217, + -0.03975752368569374, + -0.09089545160531998, + 0.018363837152719498, + 0.05902046337723732, + 0.020962610840797424, + 0.09064912796020508, + 0.02194792591035366, + 0.014422571286559105, + -0.049044132232666016, + -0.018671749159693718, + 0.007494564168155193, + 0.02549506537616253, + -0.007248234935104847, + -0.026973040774464607, + -0.06729712337255478, + 0.01760021783411503, + 0.02682524360716343, + -0.05340415984392166, + -0.018351521342992783, + -0.03997921943664551, + -0.009083387441933155, + -0.005720994435250759, + -0.009668419137597084, + 0.09193003922700882, + -0.029116105288267136, + -0.05424167588353157, + 0.044265348464250565, + -0.055177729576826096, + 0.003134538419544697, + -0.0732090175151825, + 0.07813560217618942, + -0.012297982349991798, + 0.01473048236221075, + 0.031136004254221916, + -0.08867849409580231, + 0.03162866085767746, + 0.005311472341418266, + 0.02434963546693325, + -0.07035160064697266, + -0.017329255118966103, + 0.02104882523417473, + -0.07532744854688644, + 0.018868811428546906, + 0.021369053050875664, + -0.08015549927949905, + 0.025913825258612633, + -0.0050743804313242435, + -0.010364298708736897, + 0.020839445292949677, + 0.007562304846942425, + 0.053896814584732056, + -0.009797741658985615, + 0.040250182151794434, + -0.034633878618478775, + 0.03630891442298889, + -0.01165136881172657, + -0.04608818143606186, + 0.10483768582344055, + 0.08079595863819122, + 0.07045013457536697, + 0.013560418970882893, + 0.04369879141449928, + -0.011472780257463455, + 0.018363837152719498, + 0.058035146445035934, + 0.0040305606089532375, + -0.08035256713628769, + 0.014040760695934296, + -0.027909092605113983, + 0.04382195323705673, + 0.052517373114824295, + -0.008344399742782116, + -0.007162019610404968, + 0.012267190963029861, + -0.004843446891754866, + -0.0023493641056120396, + -0.0034178169444203377, + -0.0071373870596289635, + 0.0404718779027462, + -0.03239228203892708, + -0.008116545155644417, + 0.04177742078900337, + 0.12917500734329224, + 0.0014410255244001746, + 0.008153494447469711, + -0.05852780491113663, + -0.013055444695055485, + 0.04963532090187073, + -0.023290419951081276, + -0.03564382717013359, + -0.02667744643986225, + 0.09956623613834381, + 0.03367319330573082, + -0.005761022679507732, + 0.03704790398478508, + 0.034559980034828186, + 0.006558513268828392, + -0.06256759911775589, + -0.018942711874842644, + -0.07020380347967148, + 0.0546850711107254, + -0.038131751120090485, + 0.00028943674988113344, + -0.0010584455449134111, + -0.033968787640333176, + 0.09153591096401215, + -0.007131228689104319, + 0.03160402923822403, + -0.01926293969154358, + 0.031998153775930405, + 0.037491295486688614, + 0.04544772580265999, + 0.02882050909101963, + -0.013511153869330883, + -0.04199912026524544, + 0.049733854830265045, + 0.00042992131784558296, + 0.0700560063123703, + 0.007377557922154665, + -0.03276177495718002, + -0.03722033277153969, + 0.006792526226490736, + -0.02337663620710373, + 0.01788349635899067, + -0.014570368453860283, + -0.08700345456600189, + 0.012384197674691677, + 0.0014325579395517707, + -0.027638129889965057, + 0.08192907273769379, + 0.023856977000832558, + 0.021011875942349434, + 0.023549066856503487, + -0.014237824827432632, + -0.0167873315513134, + 0.024977775290608406, + 0.007950273342430592, + 0.025273369625210762, + 0.018757963553071022, + 0.013129343278706074, + 0.03643207997083664, + 0.04727056249976158, + 0.005437715910375118, + -0.07419433444738388, + -0.004387737717479467, + -0.040250182151794434, + 0.031037472188472748, + -0.0057333107106387615, + 0.015641899779438972, + -0.007143544964492321, + 0.034757040441036224, + -0.10464061796665192, + 0.09621616452932358, + 0.07601717114448547, + 0.030495548620820045, + -0.01098627969622612, + 0.04305833578109741, + -0.0172430407255888, + 0.06517869234085083, + -0.0017427786951884627, + 0.05207398161292076, + 0.061434488743543625, + 0.018487002700567245, + -0.0851806178689003, + 0.06360218673944473, + 0.007457614876329899, + 0.03576699271798134, + -0.025864560157060623, + -0.067641980946064, + -0.01576506532728672, + 0.027268636971712112, + 0.05217251181602478, + 0.014521103352308273, + -0.0027665842790156603, + 0.0889248177409172, + -0.0860181376338005, + 0.06892289221286774, + 0.02018667384982109, + 0.07917018979787827, + -0.03650597855448723, + -0.02503935806453228, + 0.021171988919377327, + -0.0960683673620224, + 0.02033447101712227, + 0.034633878618478775, + -0.009514463134109974, + -0.03359929472208023, + 0.03837808221578598, + -0.07251930236816406, + -0.015703482553362846, + 0.05985798314213753, + 0.0053053139708936214, + 0.00896638073027134, + 0.06330659240484238, + 0.001260127522982657, + 0.05980871617794037, + -0.04990628361701965, + 0.09734927862882614, + 0.0038488928694278, + -0.051876917481422424, + -0.042171549052000046, + 0.004166041500866413, + 0.057394690811634064, + -0.005117488093674183, + -0.04123549908399582, + 0.0036118009593337774, + -0.05571965128183365, + -0.09276755154132843, + -0.057296156883239746, + -0.009415931068360806, + -0.021479900926351547, + 0.004664858337491751, + 0.013129343278706074, + -0.009027963504195213, + -0.018252989277243614, + -0.04889633506536484, + -0.003876604838296771, + -0.033279068768024445, + -0.043674156069755554, + 0.044314611703157425, + 0.013585052452981472, + -0.06823316961526871, + -0.060055043548345566, + -0.06202567741274834, + 0.002213883213698864, + 0.02680061012506485, + -0.04475800693035126, + 0.025273369625210762, + 0.026431117206811905, + -0.01092469785362482, + 0.055965982377529144, + 0.011294190771877766, + -0.041531093418598175, + 0.04783711954951286, + 0.0663118064403534, + -0.04734446108341217, + -0.02549506537616253, + -0.027293268591165543, + 0.10257145762443542, + 0.05414314568042755, + 0.007950273342430592, + -0.027096206322312355, + -0.0027280952781438828, + -0.019657066091895103, + 0.05616304278373718, + -0.011029386892914772, + 0.05995651334524155, + -0.004535535350441933, + -0.03229375183582306, + -0.007008064072579145, + -0.031825724989175797, + -0.03983142226934433, + -0.050448209047317505, + 0.01885649561882019, + -0.051236461848020554, + 0.03549603000283241, + 0.01155899465084076, + -0.028549548238515854, + 0.02427573688328266, + 0.0005977330729365349, + 0.06774051487445831, + 0.01624540612101555, + -0.07104132324457169, + 0.003962819930166006, + 0.05975944921374321, + -0.028007622808218002, + 0.0565079040825367, + -0.004396975040435791, + 0.08527915179729462, + -0.01179300807416439, + -0.03081577643752098, + -0.017871178686618805, + -0.009754634462296963, + 0.0562615767121315, + -0.059316057711839676, + 0.003116063540801406, + 0.0698096826672554, + 0.05498066544532776, + 0.00274656992405653, + -0.04995555058121681, + 0.019078191369771957, + 0.014952179044485092, + -0.0010137984063476324, + -0.05502992868423462, + 0.028697345405817032, + -0.029263902455568314, + 0.09459038823843002, + 0.050546739250421524, + 0.013252507895231247 + ] + }, + { + "id": "35c8ef1a-d9dd-49cc-a811-b77995bab403", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "jessicawhite", + "reviewDate": "2021-02-28T17:28:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "50fef3cd-9e48-4773-804c-4835c3567e0c", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "qewing", + "reviewDate": "2022-09-27T02:59:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "659acb99-4cb0-4dcf-bc23-0ad351740119", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "robert83", + "reviewDate": "2022-07-09T08:46:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4e758684-f124-45ff-8f23-d2cc5ae4c900", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "ablair", + "reviewDate": "2021-07-08T05:49:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6d351c16-8774-42ff-8733-62eb98089f64", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "marc83", + "reviewDate": "2022-12-10T00:25:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "70dae5ed-ec71-476a-bf85-4093ae30c5be", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "frederickhill", + "reviewDate": "2021-11-25T10:19:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ecb31e6d-c466-44b3-8179-c308e0137bcf", + "productId": "a196637d-7b37-40a9-9beb-e63312d52cda", + "category": "Media", + "docType": "customerRating", + "userName": "kristensantos", + "reviewDate": "2021-08-18T20:31:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Steel)", + "description": "This Awesome Phone Super (Steel) is on sale at $999 when it's announced!\n\nAs you can imagine, this super phone is a HUGE bargain because of", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-06-27T02:50:56", + "price": 332.22, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-05-15T10:38:32", + "newPrice": 361.05 + }, + { + "priceDate": "2022-10-26T10:38:32", + "newPrice": 301.41 + }, + { + "priceDate": "2023-11-30T10:38:32", + "newPrice": 332.22 + } + ], + "descriptionVector": [ + -0.015124582685530186, + 0.00399281270802021, + -0.020987123250961304, + 0.05588013678789139, + 0.008466687984764576, + -0.10021479427814484, + -0.023924807086586952, + 0.015842968598008156, + 0.013136194087564945, + 0.1004713624715805, + 0.03391806408762932, + -0.010403763502836227, + 0.06270480155944824, + -0.0052082957699894905, + 0.03807443752884865, + -0.005214709788560867, + 0.010910481214523315, + 0.008845122531056404, + -0.00250152125954628, + -0.050312649458646774, + 0.047079913318157196, + -0.01865237019956112, + -0.023681068792939186, + -0.08194727450609207, + -0.07204381376504898, + -0.03281483054161072, + -0.03281483054161072, + 0.0050222850404679775, + 0.003120487555861473, + -0.03663766756653786, + -0.025477033108472824, + 0.021910760551691055, + 0.022488035261631012, + 0.042590003460645676, + 0.023155108094215393, + 0.07732908427715302, + -0.04069141298532486, + 0.02696511708199978, + 0.08138282597064972, + -0.0026217869017273188, + -0.017741559073328972, + -0.015406806021928787, + -0.011372300796210766, + 0.040973637253046036, + 0.039459895342588425, + -0.06280742585659027, + 0.004544430412352085, + 0.014585793949663639, + -0.05028699338436127, + 0.005371856968849897, + -0.006058171391487122, + 0.0474647656083107, + -0.09251780807971954, + 0.02105126343667507, + -0.013841751962900162, + -0.009236386977136135, + 0.0005327759427018464, + -0.018190549686551094, + -0.014085489325225353, + -0.0029088202863931656, + -0.014162459410727024, + -0.01961449347436428, + 0.028427544981241226, + 0.012315182015299797, + -0.023309048265218735, + -0.011282502673566341, + -0.026657238602638245, + 0.016163676977157593, + -0.04433465376496315, + 0.05942075327038765, + -0.03214775770902634, + 0.027837442234158516, + 0.09390326589345932, + 0.02513066865503788, + -0.03207078576087952, + 0.040049999952316284, + -0.027016431093215942, + 0.020255908370018005, + 0.04756738990545273, + -0.09174810349941254, + 0.041307173669338226, + 0.08225515484809875, + 0.015445291064679623, + -0.006353222765028477, + 0.10478167235851288, + 0.02162853814661503, + 0.03353321552276611, + -0.06537309288978577, + -0.008723254315555096, + -0.0029825831297785044, + -0.015368320979177952, + 0.02534874901175499, + -0.03522655367851257, + -0.07188987731933594, + 0.10406328737735748, + 0.09292831271886826, + -0.007318553514778614, + 0.04471950605511665, + -0.035046957433223724, + -0.04397546127438545, + 0.042333438992500305, + -0.038510601967573166, + -0.009383912198245525, + 0.022937025874853134, + -0.12602536380290985, + 0.010115126147866249, + 0.0030595529824495316, + 0.016176505014300346, + -0.016279131174087524, + -0.10683420300483704, + 0.05018436536192894, + -0.017228426411747932, + -0.03135240077972412, + 0.04897850379347801, + -0.00397357065230608, + 0.05195467546582222, + -0.005689357407391071, + 0.03599625080823898, + 0.06357713043689728, + 0.018588228151202202, + -0.05316053703427315, + 0.020063484087586403, + -0.011147805489599705, + -0.027478249743580818, + 0.013636498712003231, + -0.05736822262406349, + 0.011782807298004627, + 0.0059844087809324265, + -0.017651760950684547, + -0.03748433664441109, + -0.09477558732032776, + -0.01607387885451317, + 0.03650938346982002, + 0.04702860116958618, + -0.05916418880224228, + -0.009518609382212162, + 0.07594362646341324, + 0.027401279658079147, + -0.01831883378326893, + 0.055572260171175, + -0.018459944054484367, + 0.02881239540874958, + 0.011988059617578983, + 0.006131934467703104, + 0.01295018382370472, + 0.04823446273803711, + -0.02270611748099327, + 0.020332878455519676, + -0.011160633526742458, + -0.00653923349454999, + 0.02123086154460907, + -0.1291041523218155, + -0.03060835786163807, + -0.07086361199617386, + -0.007389109116047621, + 0.009229972027242184, + -0.09354407340288162, + -0.00477534020319581, + -0.015830140560865402, + 0.03656069561839104, + 0.022308439016342163, + -0.06373106688261032, + -0.07168462127447128, + -0.06722036749124527, + -0.09390326589345932, + 0.0035790998954325914, + 0.0688110813498497, + 0.020076312124729156, + -0.051672451198101044, + 0.03050573170185089, + 0.05901024863123894, + -0.007575119845569134, + -0.013072052970528603, + -0.136903777718544, + 0.06491126865148544, + 0.07378846406936646, + 0.050210025161504745, + 0.011981645599007607, + -0.004486702848225832, + -0.0389980748295784, + 0.03594493865966797, + 0.059626005589962006, + -0.05269871652126312, + -0.0338410958647728, + 0.0014287534868344665, + 0.10211338102817535, + 0.01990954391658306, + -0.0024598294403403997, + 0.025258950889110565, + -0.007703403010964394, + 0.02097429521381855, + -0.0702991634607315, + -0.02016611024737358, + -0.0024662434589117765, + -0.00677976431325078, + -0.04146111384034157, + 0.03989605978131294, + 0.015535089187324047, + -0.010288308374583721, + 0.029813002794981003, + 0.003184629138559103, + 0.0467207208275795, + 0.11483906954526901, + -0.0581379234790802, + 0.004464253317564726, + -0.03999868407845497, + 0.004730441141873598, + 0.08918244391679764, + 0.05957469344139099, + -0.006481505930423737, + -0.010365278460085392, + -0.038279689848423004, + 0.009634064510464668, + 0.03186553344130516, + 0.08712991327047348, + 0.04423202946782112, + 0.0349443294107914, + -0.0621916688978672, + -0.008274262771010399, + -0.12479384243488312, + -0.001553829642944038, + -0.042333438992500305, + 0.03922898694872856, + -0.00677976431325078, + 0.03604756295681, + -0.05475124716758728, + 0.06711774319410324, + 0.0042237224988639355, + 0.027324309572577477, + 0.0008282280759885907, + -0.04025525227189064, + -0.08733516931533813, + 0.0008041749824769795, + -0.013149022124707699, + 0.018459944054484367, + -0.04554051533341408, + -0.02071772888302803, + 0.009762347675859928, + -0.050056084990501404, + 0.056649837642908096, + 0.035560086369514465, + -0.02873542532324791, + -0.01445751078426838, + -0.0739424079656601, + 0.02660592459142208, + -0.023116622120141983, + 0.004624607507139444, + -0.005105669144541025, + -0.052493464201688766, + 0.026400672271847725, + 0.012911698780953884, + -0.08394849300384521, + -0.04176899418234825, + 0.05136457085609436, + 0.019960857927799225, + 0.040306564420461655, + 0.018241863697767258, + 0.02126934565603733, + 0.11022087931632996, + -0.021513083949685097, + -0.015701856464147568, + -0.020114798098802567, + -0.0003503733314573765, + 0.04541223496198654, + -0.017382366582751274, + 0.038946762681007385, + -0.0065103694796562195, + -0.05290396884083748, + -0.010955380275845528, + 0.017010346055030823, + -0.01634327322244644, + 0.007145371288061142, + 0.06819532066583633, + -0.04802921041846275, + -0.041153233498334885, + 0.003745867870748043, + -0.04720819741487503, + 0.06829794496297836, + -0.03591928258538246, + -0.034636449068784714, + 0.04333404824137688, + 0.0003355405933689326, + 0.05295528471469879, + -0.0018168101087212563, + 0.05062052980065346, + -0.03522655367851257, + 0.0091979019343853, + 0.0017334260046482086, + -0.0013237217208370566, + -0.06716905534267426, + -0.028684111312031746, + 0.004929279908537865, + 0.025451377034187317, + 0.04838840290904045, + 0.02428399957716465, + 0.04223081097006798, + 0.05526437982916832, + -0.07348058372735977, + -0.04692597687244415, + -0.02247520722448826, + 0.06101146340370178, + 0.01534266397356987, + -0.0791250467300415, + -0.020486818626523018, + 0.07019653916358948, + 0.053365789353847504, + 0.093441441655159, + 0.03910070285201073, + 0.0290689617395401, + -0.03009522706270218, + 0.09061921387910843, + -0.0537249818444252, + 0.009300528094172478, + 0.008800223469734192, + -0.02288571372628212, + -0.02339884638786316, + -0.026888146996498108, + 0.00942239724099636, + 0.0838971808552742, + -0.004922865889966488, + 0.06137065589427948, + -0.020961465314030647, + -0.022488035261631012, + 0.012116342782974243, + 0.011660938151180744, + 0.06634804606437683, + -0.024707334116101265, + -0.0268624909222126, + 0.031737249344587326, + -0.0038933935575187206, + 0.025887539610266685, + -0.002447000937536359, + -0.0002337158512091264, + 0.0011922315461561084, + 0.004124303348362446, + -0.015060441568493843, + 0.06229429692029953, + 0.06429551541805267, + -0.01013436820358038, + 0.026131276041269302, + 0.07363452762365341, + -0.021833792328834534, + -0.04518132284283638, + 0.02030722238123417, + -0.013905893079936504, + -0.03645807132124901, + -0.0023459780495613813, + -0.08184465020895004, + 0.04471950605511665, + 0.04690031707286835, + 0.0012884438037872314, + -0.007562291342765093, + 0.038613226264715195, + 0.019640149548649788, + 0.12417808920145035, + -0.03925464302301407, + 0.013187507167458534, + -0.0448991023004055, + -0.007414765655994415, + -0.038613226264715195, + -0.027247339487075806, + 0.027863100171089172, + -0.006478298921138048, + 0.0303517933934927, + -0.07419896870851517, + 0.05972863361239433, + 0.028863707557320595, + 0.1218176782131195, + -0.03612453490495682, + -0.008056181482970715, + 0.07440422475337982, + 0.03263523429632187, + -0.01348255854099989, + 0.007183856330811977, + 0.003029085695743561, + 0.004765718709677458, + 0.030377449467778206, + -0.022988339886069298, + -0.0456174872815609, + 0.068451888859272, + -0.02781178615987301, + -0.03812574967741966, + 0.015393977984786034, + 0.037509992718696594, + 0.06870844960212708, + -0.03296876698732376, + -0.005580316763371229, + 0.012590990401804447, + -0.09600710868835449, + 0.10000953823328018, + 0.010249823331832886, + -0.033943720161914825, + -0.072864830493927, + 0.10693682730197906, + 0.04595102369785309, + -0.00261216564103961, + 0.00016596632485743612, + 0.04510435461997986, + 0.03145502880215645, + -0.010499975644052029, + -0.007607190404087305, + 0.07112017273902893, + 0.03604756295681, + -0.010012499988079071, + 0.038023125380277634, + -0.06265348941087723, + 0.05026133731007576, + -0.04956860840320587, + -0.054545994848012924, + -0.04392414912581444, + -0.04849103093147278, + 0.009364670142531395, + -0.003649655496701598, + -0.02038419246673584, + 0.03930595517158508, + -0.0057695345021784306, + 0.10991299897432327, + -0.03245563432574272, + 0.09046527743339539, + -0.005452033597975969, + 0.0038805652875453234, + 0.034969985485076904, + 0.006991431582719088, + 0.05977994576096535, + -0.025271780788898468, + -0.0012547695077955723, + -0.011603211052715778, + 0.002796572633087635, + -0.06075489893555641, + -0.017715902999043465, + 0.006856734398752451, + -0.041820306330919266, + 0.04654112458229065, + 0.01916550286114216, + -0.016574181616306305, + -0.01835731789469719, + 0.0027725195977836847, + 0.02395046316087246, + -0.04515566676855087, + -0.0028222291730344296, + -0.015740342438220978, + 0.045976679772138596, + -0.054186802357435226, + 0.04248737916350365, + -0.1295146644115448, + 0.002522367285564542, + -0.031660281121730804, + -0.0031718008685857058, + 0.008973405696451664, + -0.03892110660672188, + -0.09297962486743927, + -0.013598013669252396, + -0.02012762613594532, + 0.005910646170377731, + 0.0028238326776772738, + -0.04359061270952225, + -0.019178330898284912, + 0.023578442633152008, + -0.05036396160721779, + 0.058445800095796585, + 0.03212210163474083, + 0.0901573970913887, + 0.02406591922044754, + -0.051492854952812195, + -0.0015466136392205954, + 0.06501390039920807, + -0.008466687984764576, + 0.02965906262397766, + 0.005054356064647436, + 0.030557045713067055, + -0.024784304201602936, + -0.04859365522861481, + -0.014034176245331764, + 0.034277256578207016, + -0.0057470849715173244, + -0.09410851448774338, + -0.025951679795980453, + -0.05736822262406349, + 0.015445291064679623, + -0.008543657138943672, + 0.05803529545664787, + 0.042256467044353485, + 0.03638109937310219, + -0.012995082885026932, + -0.01470124814659357, + -0.08810486644506454, + -0.04076838493347168, + -0.0069850170984864235, + 0.00506718410179019, + 0.0312754325568676, + -0.03576534241437912, + 0.02211601473391056, + -0.011134977452456951, + 0.0036464484874159098, + -0.04574577137827873, + -0.037176456302404404, + 0.005525796674191952, + -0.0033193263225257397, + -0.004560465924441814, + 0.047156885266304016, + -0.03650938346982002, + -0.03774090111255646, + -0.014508823864161968, + 0.07609756290912628, + -0.03645807132124901, + -0.058958932757377625, + -0.027324309572577477, + 0.04574577137827873, + 0.03720211237668991, + 0.0189474206417799, + 0.02696511708199978, + 0.028247948735952377 + ] + }, + { + "id": "7a7aa131-d9c3-415c-bc42-420f045c0111", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "emily22", + "reviewDate": "2022-10-26T16:38:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "50f1e0bb-2035-49a2-aad7-1b5014242b01", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonya94", + "reviewDate": "2021-06-12T22:39:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "18eda323-9df5-4df4-9b45-858a001eda78", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "rogerslori", + "reviewDate": "2021-11-26T12:42:52", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bf7f80a3-8dca-46e4-abc5-f6f38f36d07c", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "edwardsjames", + "reviewDate": "2021-07-28T14:27:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d1dbc7c8-4a9b-402d-b598-37759ea02b50", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "astewart", + "reviewDate": "2022-06-04T00:18:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c23510d9-b989-47b5-aa05-d6adb221a2d5", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "laurafoster", + "reviewDate": "2022-07-03T14:25:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "581338de-1005-46f5-949a-11db9ffa0b2d", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "megan68", + "reviewDate": "2022-05-23T09:59:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "85f16b6b-649f-4b4f-90e7-efc8946444e2", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "josephbrenda", + "reviewDate": "2022-03-09T20:59:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "19f4647e-af5f-4cb6-8cef-7cac9b0ead17", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "fjohnson", + "reviewDate": "2021-09-02T15:20:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1a34f24b-fd60-452f-9510-45f9d1a5cc60", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "hudsontina", + "reviewDate": "2021-05-15T10:38:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0bcfba3a-a2d4-41a6-af16-ebb7295cd284", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica17", + "reviewDate": "2022-10-15T15:28:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9099f780-4856-4d8e-9db8-f60e7094f025", + "productId": "c77b29dd-9b3b-4073-b901-f44cb6c3384e", + "category": "Electronics", + "docType": "customerRating", + "userName": "fitzgeraldthomas", + "reviewDate": "2021-09-11T16:00:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Gold)", + "description": "This Luxe Filter 3000 (Gold) is the top filter produced in the world for the luxury of high-performance and light weight applications, and is one of the most advanced, most powerful filters on the", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-11-15T01:26:43", + "price": 615.28, + "stock": 52, + "priceHistory": [ + { + "priceDate": "2021-04-02T08:41:17", + "newPrice": 576.49 + }, + { + "priceDate": "2024-04-09T08:41:17", + "newPrice": 615.28 + } + ], + "descriptionVector": [ + 0.012595804408192635, + 0.029885387048125267, + -0.02504180744290352, + 0.021846042945981026, + 0.016890112310647964, + -0.04314281418919563, + -0.08793344348669052, + -0.010080388747155666, + 0.07125554978847504, + 0.03333082050085068, + -0.023181773722171783, + 0.004041518084704876, + 0.023668628185987473, + -0.03365539014339447, + 0.06855912506580353, + -0.000235820232774131, + -0.07335276901721954, + -0.03662645071744919, + -0.008644791319966316, + -0.0231318399310112, + 0.046887852251529694, + -0.06521356105804443, + -0.0244925357401371, + -0.020298095420002937, + -0.027438631281256676, + -0.03437943011522293, + 0.01241479441523552, + 0.015704184770584106, + -0.032581813633441925, + -0.03999698534607887, + 0.07929489761590958, + 0.054777394980192184, + 0.03862380608916283, + 0.031108764931559563, + -0.06900852918624878, + -0.02464233711361885, + 0.07794668525457382, + 0.037275590002536774, + 0.047037653625011444, + 0.013157559558749199, + 0.03160810470581055, + -0.028037836775183678, + -0.07989410310983658, + 0.05542653426527977, + 0.07684814184904099, + -0.05952110514044762, + -0.0108106704428792, + 0.018725179135799408, + -0.016166072338819504, + -0.024417635053396225, + -0.006447703577578068, + 0.011416117660701275, + -0.054028384387493134, + -0.0034984878730028868, + -0.055376600474119186, + -0.03432949632406235, + 0.04122036322951317, + 0.20792439579963684, + 0.0764986053109169, + 0.042443741112947464, + 0.06771025061607361, + -0.08019370585680008, + -0.0065725380554795265, + -0.045190099626779556, + -0.053479112684726715, + -0.041619833558797836, + -0.015017594210803509, + -0.03722565621137619, + 0.024080581963062286, + 0.07400190830230713, + -0.06546323001384735, + -0.00062261224957183, + 0.025054290890693665, + 0.05887196585536003, + 0.02506677433848381, + 0.020947234705090523, + 0.061768125742673874, + -0.041120495647192, + 0.026539821177721024, + -0.0372006893157959, + 0.05797315761446953, + 0.003070929553359747, + -0.0716550201177597, + -0.004416021518409252, + 0.017501801252365112, + 0.038474004715681076, + 0.034853801131248474, + -0.0704566091299057, + 0.005486477632075548, + -0.02497939020395279, + -0.008688483387231827, + 0.10326312482357025, + -0.044740695506334305, + -0.06456442177295685, + -0.003317477647215128, + 0.05687461420893669, + -0.015292230062186718, + 0.0123960692435503, + -0.06311634182929993, + 0.0635158121585846, + -0.054477788507938385, + -0.0347789004445076, + -0.004609514959156513, + 0.027313796803355217, + 0.0029148864559829235, + 0.01856289431452751, + -0.04009685292840004, + -0.05088255554437637, + 0.016003787517547607, + -0.08368907123804092, + 0.0747009813785553, + -0.022370347753167152, + 0.004924722481518984, + 0.033430688083171844, + -0.009793269447982311, + 0.008763384073972702, + -0.014880276285111904, + 0.01775147020816803, + 0.06741064786911011, + 0.031458303332328796, + 0.023506343364715576, + 0.06990733742713928, + 0.02461737021803856, + -0.03338075429201126, + -0.03310611844062805, + -0.022819751873612404, + 0.02515415847301483, + -0.04643844813108444, + -0.014068852178752422, + -0.023181773722171783, + -0.09562325477600098, + 0.04696275293827057, + 0.00386674958281219, + 0.06496389210224152, + -0.08219105750322342, + 0.06606243550777435, + -0.0054490272887051105, + 0.07819635421037674, + -0.02128428779542446, + 0.11155214160680771, + -0.03632684797048569, + -0.06116892024874687, + -0.014967660419642925, + 0.012333652004599571, + 0.0055551365949213505, + -0.07050654292106628, + -0.07490071654319763, + 0.038174401968717575, + -0.03490373492240906, + -0.03897334262728691, + 0.10216458141803741, + -0.08393874019384384, + -0.029810486361384392, + -0.03340572118759155, + 0.028986578807234764, + 0.052780039608478546, + -0.05632534250617027, + 0.03050955943763256, + 0.002360932994633913, + -0.016790244728326797, + -0.007259128149598837, + -0.031008897349238396, + -0.044441092759370804, + -0.017551735043525696, + 0.01862531155347824, + 0.05832269415259361, + 0.0032613021321594715, + -0.027738234028220177, + -0.08104258030653, + 0.04314281418919563, + 0.060519780963659286, + -0.0276633333414793, + -0.03432949632406235, + -0.033305853605270386, + -0.05642521008849144, + 0.006216759793460369, + 0.054178185760974884, + 0.009512391872704029, + -0.0027994143310934305, + 0.007752224337309599, + 0.06141858920454979, + 0.04883527010679245, + -0.03397995978593826, + -0.06436468660831451, + 0.016677893698215485, + 0.017888788133859634, + 0.0632162094116211, + -0.0003239846264477819, + 0.0009268964058719575, + 0.011934181675314903, + 0.01977379061281681, + 0.03375525772571564, + 0.004069605842232704, + 0.009431248530745506, + -0.06451448798179626, + -0.019736340269446373, + -0.028012869879603386, + -0.04309288039803505, + -0.011846797540783882, + -0.038299236446619034, + -0.01138490904122591, + 0.07210442423820496, + 0.03203254193067551, + 0.02808777056634426, + 0.015005110763013363, + 0.0006308045121841133, + 0.053029708564281464, + 0.043742019683122635, + 0.00278224959038198, + 0.018163423985242844, + -0.03782486543059349, + -0.008488748222589493, + -0.06890866160392761, + 0.0013014000141993165, + 0.030983930453658104, + 0.04149499908089638, + -0.01575411856174469, + -0.04471572861075401, + 0.019511638209223747, + -0.03450426459312439, + 0.038324203342199326, + -0.026989225298166275, + 0.03035975806415081, + 0.0029757432639598846, + 0.02921128086745739, + 0.016852661967277527, + 0.03562777489423752, + -0.0064726704731583595, + 0.0846877470612526, + 0.042743343859910965, + 0.02319425716996193, + -0.036451682448387146, + -0.03939777985215187, + 0.04007188603281975, + 0.02168375812470913, + -0.03632684797048569, + -0.0858861580491066, + -0.06536336243152618, + 0.0426434762775898, + 0.015329680405557156, + 0.04269341006875038, + -0.009899378754198551, + -0.04813619703054428, + -0.0017679691081866622, + 0.05312957614660263, + 0.010099113918840885, + -0.008582374081015587, + -0.04226897284388542, + -0.008969360962510109, + 0.014131269417703152, + -0.03565274178981781, + -0.002735436661168933, + -0.0450652651488781, + 0.09687159955501556, + -0.005258654709905386, + 0.07340270280838013, + -0.009025536477565765, + -0.012639496475458145, + -0.07844602316617966, + -0.020722532644867897, + -0.023244190961122513, + 0.0005481016123667359, + 0.0601702444255352, + -0.0010673352517187595, + -0.041594866663217545, + -0.022208062931895256, + -0.018038589507341385, + -0.016565542668104172, + 0.020510314032435417, + 0.013819183222949505, + -0.033006250858306885, + -0.01123510766774416, + 0.02198336087167263, + 0.01832570880651474, + 0.015679217875003815, + 0.025353893637657166, + -0.05193116515874863, + -0.020447896793484688, + 0.018650278449058533, + -0.05972084030508995, + 0.06606243550777435, + 0.013170043006539345, + 0.016565542668104172, + -0.03210744261741638, + 0.1285296380519867, + -0.01881256327033043, + 0.09931835532188416, + -0.05000871419906616, + -0.024267833679914474, + -0.02164630778133869, + -0.01138490904122591, + 0.049634210765361786, + -0.041894469410181046, + -0.06581276655197144, + -0.02678949013352394, + -0.038324203342199326, + 0.02594061568379402, + 0.012339893728494644, + 0.0003003831079695374, + 0.028562141582369804, + -0.04940950870513916, + 0.016740310937166214, + 0.02270740084350109, + -0.04226897284388542, + -0.027139026671648026, + 0.10266391932964325, + 0.003031918779015541, + 0.014805375598371029, + 0.017676569521427155, + -0.0683593899011612, + 0.033031217753887177, + 0.0058797067031264305, + 0.0037107064854353666, + -0.01483034249395132, + 0.06795991957187653, + -0.032856449484825134, + -0.005395972635596991, + 0.0032488186843693256, + 0.05015851557254791, + 0.008732175454497337, + -0.006176188588142395, + 2.1029254639870487e-06, + -0.023094389587640762, + 0.03667638450860977, + 0.043891821056604385, + -0.00015077671559993178, + -0.03368035703897476, + -0.043866854161024094, + -0.048211097717285156, + -0.07025687396526337, + -0.020485347136855125, + -0.038024600595235825, + -0.017938721925020218, + -0.04291811212897301, + -0.011503501795232296, + -0.059371303766965866, + -0.01690259575843811, + -0.022033294662833214, + -0.0326567143201828, + 0.016153588891029358, + 0.07629887014627457, + 0.018163423985242844, + -0.040021952241659164, + 0.014306037686765194, + 0.09477438032627106, + -0.0538286492228508, + -0.0007080458453856409, + -0.024330250918865204, + 0.05547646805644035, + 0.08144205063581467, + 0.0007607104489579797, + -0.01820087432861328, + 0.0300851222127676, + -0.016977496445178986, + 0.05422811955213547, + 0.0025669101160019636, + 0.05188123136758804, + -0.04568943753838539, + -0.008713450282812119, + 0.0468628853559494, + -0.023381508886814117, + 0.013731799088418484, + 0.06885872781276703, + 0.046638183295726776, + -0.03580254316329956, + 0.13352301716804504, + -0.005283621605485678, + 0.02791300229728222, + -0.04154493287205696, + -0.018700212240219116, + -0.029560817405581474, + 0.001906847464852035, + -0.031707972288131714, + 0.061368655413389206, + -0.06346587836742401, + -0.04199433699250221, + 0.05747381970286369, + 0.061218854039907455, + -0.024317767471075058, + 0.0592714361846447, + 0.007870817556977272, + -0.008114244788885117, + 0.07370230555534363, + -0.0017352000577375293, + 0.08493741601705551, + 0.009899378754198551, + -0.03308115154504776, + -0.04124533012509346, + -0.03465406596660614, + -0.03135843575000763, + 0.008707208558917046, + -0.07365237176418304, + 0.0015502888709306717, + -0.04993381351232529, + -0.060369979590177536, + 0.002034802921116352, + 0.006828449200838804, + 0.03320598602294922, + 0.061917927116155624, + -0.05387858301401138, + -0.02219557948410511, + 0.043317582458257675, + -0.040471356362104416, + -0.07510045170783997, + -0.009724610485136509, + 0.030958963558077812, + 0.04666315019130707, + 0.019698889926075935, + -0.007190469186753035, + -0.06776018440723419, + -0.025104224681854248, + -0.055226799100637436, + -0.019761307165026665, + -0.01609117165207863, + -0.00831397995352745, + -0.03140836954116821, + 0.035428039729595184, + 0.02255759947001934, + 0.0598706416785717, + -0.06496389210224152, + -0.01917458511888981, + 0.08159185200929642, + -0.04771175980567932, + -0.02413051575422287, + -0.01177813857793808, + 0.03535313904285431, + 0.037425391376018524, + 0.018038589507341385, + 0.028537174686789513, + 0.009793269447982311, + 0.07554985582828522, + -0.03580254316329956, + -0.029985254630446434, + -0.004125781357288361, + -0.06056971475481987, + -0.04583923891186714, + 0.0638154149055481, + 0.03964744880795479, + -0.013856633566319942, + 0.05138189345598221, + -0.0015674536116421223, + -0.056225474923849106, + 0.039023276418447495, + 0.09397543966770172, + -0.07345263659954071, + -0.07894536107778549, + -0.024118032306432724, + 0.001652497099712491, + -0.012533387169241905, + -0.07535012066364288, + 6.900033895362867e-06, + 0.0024467569310218096, + -0.019873658195137978, + 0.012158883735537529, + -0.011865522712469101, + 0.022969553247094154, + -0.01194666512310505, + 0.08378893882036209, + 0.05198109894990921, + 0.0031739179976284504, + -0.05772348865866661, + 0.1067584902048111, + 0.024954423308372498, + -0.0849873498082161, + 0.02848724089562893, + 0.03378022462129593, + -0.08448801189661026, + -0.037425391376018524, + 0.045439768582582474, + 0.0057018171064555645, + -0.010017971508204937, + -0.018288258463144302, + -0.029286181554198265, + 0.01639077439904213, + -0.03105883114039898, + -0.020809916779398918, + 0.03550294041633606, + -0.010255157016217709, + 0.07030680775642395, + -0.043042946606874466, + -0.011965390294790268, + 0.02806280367076397, + -0.00926896370947361, + 0.07929489761590958, + 0.05193116515874863, + -0.024604886770248413, + 0.10376246273517609, + 0.04251864179968834, + 0.02991035394370556, + 0.07295329868793488, + 0.008619824424386024, + -0.036576516926288605, + -0.06586270034313202, + -0.04509023204445839, + -0.04873540252447128, + -0.01360696367919445, + -0.044441092759370804, + 0.002584074856713414, + -0.025266509503126144, + -0.033880092203617096, + 0.03368035703897476, + 0.02119690366089344, + -0.013569513335824013, + -0.023007003590464592, + -0.03797466680407524, + 0.0750005841255188, + 0.0048092505894601345, + -0.03255684673786163, + -0.03735049068927765, + -0.06920826435089111, + 0.022233029827475548, + 0.018101006746292114 + ] + }, + { + "id": "8b05d1ac-abdc-4377-98b2-a4f91e58c05c", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "customerRating", + "userName": "bradleygreen", + "reviewDate": "2022-02-04T19:55:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "137f4a9b-435c-4e72-a7b9-bf82311d6ba4", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "customerRating", + "userName": "etran", + "reviewDate": "2021-04-02T08:41:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0f3ba430-3ee4-4be2-bd5d-3b00ae81ce1b", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "customerRating", + "userName": "cindyweiss", + "reviewDate": "2022-10-19T20:42:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5693a4f0-40bd-4d53-b1fa-bd3e043c475a", + "productId": "cd9381fe-9fcc-43e5-8636-4b1bc0df19c4", + "category": "Other", + "docType": "customerRating", + "userName": "hollowaykyle", + "reviewDate": "2021-05-30T13:29:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer + (Black)", + "description": "This Luxe Computer + (Black) is a special edition computer designed with performance for all applications. It is designed for your everyday workflow using the best technologies available – including advanced 3D", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-08-04T14:44:45", + "price": 792.77, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2021-01-01T09:04:00", + "newPrice": 762.14 + }, + { + "priceDate": "2021-07-22T09:04:00", + "newPrice": 777.77 + }, + { + "priceDate": "2022-02-09T09:04:00", + "newPrice": 793.17 + }, + { + "priceDate": "2022-08-30T09:04:00", + "newPrice": 855.42 + }, + { + "priceDate": "2023-02-25T09:04:00", + "newPrice": 792.77 + } + ], + "descriptionVector": [ + -0.03853500634431839, + 0.04279857128858566, + -0.04689919576048851, + 0.014650906436145306, + -0.0005180942243896425, + 0.014678062871098518, + -0.025798629969358444, + 0.05214038863778114, + 0.027061404660344124, + 0.10085906833410263, + 0.10884306579828262, + -0.039050981402397156, + 0.020883312448859215, + -0.03334812447428703, + 0.025594957172870636, + 0.05876656621694565, + -0.030686791986227036, + -0.01141928881406784, + 0.03239765018224716, + -0.06903170049190521, + 0.024372916668653488, + -0.04920749366283417, + -0.06713075190782547, + 0.03459732234477997, + -0.017339395359158516, + -0.021860944107174873, + 0.047931138426065445, + 0.03937685862183571, + 0.056648362427949905, + -0.004630175419151783, + 0.09819773584604263, + 0.039784204214811325, + 0.00023189064813777804, + 0.021086985245347023, + -0.005146147683262825, + -0.09483033418655396, + 0.027943991124629974, + -0.022852154448628426, + 0.06702212989330292, + 0.026749106124043465, + 0.01757022552192211, + -0.005906528327614069, + 0.010631751269102097, + -0.035710737109184265, + 0.07495181262493134, + -0.04019154980778694, + -0.008235194720327854, + -0.01175195537507534, + -0.008941262029111385, + -0.04225544258952141, + -0.014691641554236412, + 0.02047596499323845, + 0.022295447066426277, + -0.005360004957765341, + -0.031175607815384865, + -0.014229981228709221, + 0.03228902444243431, + 0.17738595604896545, + -0.005601018667221069, + -0.041712310165166855, + 0.005896344780921936, + -0.016293872147798538, + 0.012308662757277489, + 0.00111511186696589, + -0.02251270040869713, + 0.01689131371676922, + 0.0212499238550663, + -0.03446153923869133, + -0.0015928957145661116, + 0.05531769618391991, + -0.03269637003540993, + -0.019661271944642067, + 0.05996144935488701, + 0.04402061179280281, + 0.06761956959962845, + 0.015832211822271347, + -0.0050409166142344475, + 0.031066982075572014, + 0.018384918570518494, + -0.03913244977593422, + 0.13002510368824005, + -0.007977208122611046, + -0.032370492815971375, + -0.023273080587387085, + 0.046383220702409744, + 0.0028005093336105347, + -0.03264205530285835, + -0.11666411906480789, + 0.023911256343126297, + 0.04247269406914711, + -0.04377620294690132, + 0.09091980755329132, + 0.053688306361436844, + -0.040381643921136856, + 0.004266957752406597, + 0.032750681042671204, + -0.04855573922395706, + 0.03552063927054405, + 0.0018551251851022243, + 0.01043486688286066, + 0.02870437130331993, + -0.06577292829751968, + -0.016103776171803474, + -0.011996363289654255, + 0.012580227106809616, + 0.057245802134275436, + 0.04393913969397545, + -0.05357968062162399, + -0.008404922671616077, + -0.11959701776504517, + -0.01795041561126709, + -0.032017458230257034, + 0.00047099473886191845, + -0.014569437131285667, + 0.003460750449448824, + 0.05173304304480553, + -0.06278572231531143, + -0.04632890969514847, + 0.015207613818347454, + -0.02209177426993847, + 0.038616474717855453, + -0.021304236724972725, + 0.03017081879079342, + -0.014474389143288136, + -0.017896102741360664, + -0.01799114979803562, + -0.011860581114888191, + -0.04328738525509834, + 0.05309086665511131, + -0.06669624894857407, + -0.058712251484394073, + 0.1343701332807541, + -0.02582578733563423, + 0.050809722393751144, + -0.00635800464078784, + 0.018873734399676323, + 0.034515850245952606, + 0.03777462616562843, + -0.0365254282951355, + 0.010699642822146416, + -0.03147432953119278, + -0.07761314511299133, + -0.054991818964481354, + -0.06512117385864258, + -0.02370758354663849, + -0.012709219940006733, + -0.02585294283926487, + 0.00040925623034127057, + -0.05094550549983978, + 0.11612099409103394, + 0.07457161694765091, + -0.01872437447309494, + 0.00858822837471962, + -0.06914032995700836, + 0.06251415610313416, + -0.0003309692838229239, + -0.008085833862423897, + 0.027319392189383507, + -0.010237982496619225, + 0.08369618654251099, + 0.0011456628562882543, + 0.014637328684329987, + -0.05010365694761276, + 0.030415227636694908, + 0.0020248531363904476, + 0.019552646204829216, + 0.05428574979305267, + -0.018466388806700706, + -0.09249488264322281, + 0.02335454896092415, + 0.04486246034502983, + -0.04975062236189842, + -0.02897593565285206, + 0.019579803571105003, + -0.01050275843590498, + 0.0008766442770138383, + 0.10971207171678543, + 0.07897096872329712, + 0.03964842110872269, + -0.018398497253656387, + 0.002277747495099902, + 0.07663550972938538, + -0.04478099197149277, + 0.013781899586319923, + 0.0794597789645195, + -0.028514275327324867, + 0.05431290715932846, + 0.0026460569351911545, + 0.02272995188832283, + -0.0018432443030178547, + 0.035357702523469925, + -0.020041462033987045, + 0.07609238475561142, + -0.04584009200334549, + 0.0028599139768630266, + 0.013578226789832115, + 0.04597587510943413, + 0.02627386897802353, + 0.013184458017349243, + 0.0004291992518119514, + 0.03304940462112427, + 0.07207322865724564, + 0.05010365694761276, + 0.022784264758229256, + -0.00035897435736842453, + -0.05795187130570412, + 0.009952840395271778, + 0.05719149112701416, + 0.006249378900974989, + 0.018384918570518494, + -0.002904043300077319, + 0.08445657044649124, + -0.08842141181230545, + 0.022404074668884277, + 0.04214681684970856, + -0.02385694347321987, + 0.05159725993871689, + 0.032967932522296906, + -0.04700782150030136, + -0.10563860088586807, + 0.014270716346800327, + -0.0022505910601466894, + -0.019688429310917854, + -0.044699523597955704, + 0.031202765181660652, + -0.04366757720708847, + 0.11438298225402832, + 0.03076826222240925, + 0.02410135231912136, + 0.026545433327555656, + -0.021372128278017044, + -0.015655694529414177, + 0.06055888906121254, + 0.009789901785552502, + -0.008208038285374641, + -0.014325029216706753, + 0.00427714129909873, + -0.05398702993988991, + -0.02209177426993847, + 0.08049172908067703, + 0.00253403652459383, + -0.04233691096305847, + -0.03196314349770546, + -0.0020010911393910646, + -0.007583439350128174, + -0.017203612253069878, + 0.0967312827706337, + 0.039892829954624176, + -0.02894877828657627, + 0.001048917998559773, + -0.02848711982369423, + 0.03304940462112427, + -0.02873152680695057, + 0.09135431051254272, + -0.007067467086017132, + 0.0010344911133870482, + 0.03693277761340141, + -0.053308118134737015, + -0.007800691295415163, + -0.019172456115484238, + -0.04711644724011421, + -0.044210705906152725, + -0.034868884831666946, + 0.011589016765356064, + -0.04627459496259689, + 0.007855003699660301, + 0.0199192576110363, + -0.03161011263728142, + -0.0018059040885418653, + -0.015017518773674965, + 0.00254252296872437, + -0.05099982023239136, + 0.04630175232887268, + -0.0071557252667844296, + -0.018425652757287025, + 0.038589321076869965, + -0.01175195537507534, + 0.0770156979560852, + -0.0052989027462899685, + -0.06354609876871109, + 0.0032485907431691885, + 0.005366793833673, + 0.026925623416900635, + -0.08353324979543686, + 0.050918348133563995, + -0.10031593590974808, + 0.013714008964598179, + -0.003452264005318284, + 0.02957337722182274, + -0.06691350042819977, + -0.006517548579722643, + 0.07207322865724564, + 0.06327453255653381, + 0.020951204001903534, + 0.06886876374483109, + -0.011174880899488926, + 0.0413864329457283, + -0.0308768879622221, + 0.012464812025427818, + -9.775262151379138e-05, + 0.01496320590376854, + -0.04152221605181694, + 0.05064678564667702, + -0.0030449172481894493, + -0.026328181847929955, + 0.13100272417068481, + -0.041332121938467026, + 0.03351106494665146, + 0.02020440064370632, + 0.003913923632353544, + 0.03687846288084984, + -0.029057404026389122, + -0.04353179410099983, + 0.003302903613075614, + 0.04994071647524834, + -0.03527623414993286, + 0.03791040927171707, + 0.007359398994594812, + -0.010041098110377789, + 0.011935261078178883, + -0.08918178826570511, + -0.02406061813235283, + -0.1365426480770111, + 0.05768030509352684, + 0.08814984560012817, + -0.02848711982369423, + -0.08673771470785141, + 0.01350354589521885, + -0.06501255184412003, + -0.08891022950410843, + -0.05132569745182991, + -0.012797478586435318, + 0.01363253965973854, + -0.013028308749198914, + -0.019715584814548492, + -0.01960695907473564, + -0.005037521943449974, + 0.025880100205540657, + 0.010299084708094597, + 0.008751166984438896, + 0.08733515441417694, + 0.044346489012241364, + -0.09026805311441422, + 0.005017154850065708, + 0.007257562130689621, + -0.006812875159084797, + -0.010815057903528214, + -0.0043416377156972885, + 0.015886524692177773, + 0.07690707594156265, + 0.0015657392796128988, + -0.03171873837709427, + 0.04608450084924698, + -0.01892804726958275, + 0.015017518773674965, + 0.006561677902936935, + 0.048039764165878296, + -0.043151602149009705, + -0.028812997043132782, + 0.026301024481654167, + -0.01717645674943924, + -0.0020282475743442774, + 0.07473456114530563, + 0.04668194428086281, + -0.025133296847343445, + 0.04214681684970856, + 0.0076581197790801525, + -0.0018432443030178547, + -0.038806572556495667, + 0.03959411010146141, + 0.024807419627904892, + -0.0071149906143546104, + -0.02704782783985138, + 0.01918603479862213, + -0.043504636734724045, + -0.006320664659142494, + 0.036335334181785583, + 0.020666060969233513, + -0.009749166667461395, + 0.058332059532403946, + -0.030306601896882057, + 0.01619882509112358, + 0.05746305361390114, + 0.004674304276704788, + 0.09287507086992264, + -0.09993574768304825, + -0.0394040122628212, + -0.058820877224206924, + 0.0018720979569479823, + -0.007182881701737642, + 0.008208038285374641, + -0.018452810123562813, + -0.041603684425354004, + 0.030849730595946312, + 0.02607019431889057, + -0.0168234221637249, + 0.012356186285614967, + 0.02824271097779274, + 0.01907740905880928, + -0.004070073366165161, + 0.01496320590376854, + 0.0019094380550086498, + 0.020299449563026428, + -0.053661152720451355, + -0.01742086373269558, + -0.015452021732926369, + 0.04092477634549141, + 0.04130496457219124, + 0.00414475379511714, + -0.04391198605298996, + -0.00906346645206213, + -0.03147432953119278, + 0.01967485062777996, + 0.033212341368198395, + 0.044672366231679916, + -0.08516263961791992, + 0.06256847083568573, + 0.030306601896882057, + -0.019348973408341408, + -0.06007007509469986, + 0.028921622782945633, + 0.013021519407629967, + -0.05800618231296539, + -0.0349775105714798, + -0.0460301898419857, + -0.020638903602957726, + 0.032261867076158524, + -0.037991877645254135, + 0.0038664001040160656, + -0.00477614114060998, + 0.08293581008911133, + -0.0785907730460167, + 0.013802267611026764, + -0.03017081879079342, + 0.014257137663662434, + 0.01945759914815426, + 0.026925623416900635, + 0.030469540506601334, + -0.0033538220450282097, + 0.1168813705444336, + -0.03359253332018852, + -0.10791974514722824, + 0.009688064455986023, + 0.047550950199365616, + -0.03723149746656418, + 0.03432575613260269, + -0.07707001268863678, + 0.049343276768922806, + 0.029274657368659973, + -0.022634902969002724, + -0.04532412067055702, + -0.020801842212677002, + -0.013055465184152126, + -0.06207965314388275, + 0.02813408523797989, + 0.006161120254546404, + -0.059635572135448456, + 0.07793901860713959, + -0.017651693895459175, + -0.026409650221467018, + -0.023191610351204872, + 0.03657974302768707, + 0.059635572135448456, + -0.018384918570518494, + -0.061102017760276794, + -0.02965484745800495, + -0.03766600042581558, + -0.048392798751592636, + 0.0016760623548179865, + 0.04507971182465553, + -0.023870522156357765, + -0.06539274007081985, + 0.05072825402021408, + 0.059418320655822754, + -0.008343820460140705, + -0.0484742671251297, + 0.022458387538790703, + -0.032723527401685715, + -0.029491908848285675, + -0.00888694915920496, + 0.026409650221467018, + 0.009620173834264278, + 0.04011008143424988, + 0.002123295096680522, + 0.04309729114174843, + -0.00016696975217200816, + 0.06647899746894836, + 0.06604449450969696, + 0.05681129917502403, + 0.022784264758229256, + 0.003055101027712226, + 0.05816912278532982, + -0.02775389514863491, + -0.04784967005252838, + -0.0641978532075882, + -0.0263417586684227, + -0.032723527401685715, + 0.06876014173030853, + -0.013557858765125275, + 0.06202533841133118, + -0.03302224725484848, + 0.008832636289298534, + -0.043260231614112854, + 0.017054252326488495, + 0.04198387637734413, + 0.02062532678246498, + 0.0046369642950594425, + 0.025282658636569977, + -0.02560853585600853, + -0.04070752486586571, + 0.03812766075134277, + -0.05686561390757561 + ] + }, + { + "id": "6580a658-b2a0-4d88-91b6-eef7d0607b09", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleelopez", + "reviewDate": "2022-02-22T00:18:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7c311658-badf-45eb-854c-463041f8b62a", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnsonchristine", + "reviewDate": "2022-06-25T13:43:54", + "stars": 5, + "verifiedUser": true + }, + { + "id": "996e2681-ff2b-472c-b394-71c905ca86b6", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "sharon92", + "reviewDate": "2021-01-14T10:52:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f2f9a8cf-38ca-48b8-a2d4-498b929314cd", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "ohatfield", + "reviewDate": "2021-05-27T00:32:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4a97a670-75f9-4217-b89e-9fb252ed0b03", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "turneredward", + "reviewDate": "2022-08-31T05:39:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7a295799-5284-4178-a0c5-53b5b0e64bb5", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "walkermelissa", + "reviewDate": "2022-01-03T23:21:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5dfb9c55-4c0d-4104-8b27-9c084aab5c27", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "nguyenjessica", + "reviewDate": "2021-01-01T09:04:00", + "stars": 5, + "verifiedUser": true + }, + { + "id": "fa5bc1bd-f6f0-49a9-bd35-1443a442edc8", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandykemp", + "reviewDate": "2021-05-22T13:05:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fd1be890-c2de-4f16-b5e5-7c3853a3bc89", + "productId": "471580d5-9c31-4bee-a2ce-af8e140d066c", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessicarojas", + "reviewDate": "2021-12-12T17:38:28", + "stars": 5, + "verifiedUser": false + }, + { + "id": "507d2434-b77e-4280-8c63-86450ff47cc1", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Micro (Red)", + "description": "This Basic Phone Micro (Red) is available now for $199.99. All of the specifications are from Amazon:\n\n\"As soon as the new Galaxy Note 8 launches... all Galaxy phones will be based off Android 5.1 Lollipop. With the new feature list, this will ensure a new generation of Galaxy phones will receive the benefits of the new feature set, allowing them to run on new flavors and specs, including 4K, OLED and 3D display capabilities.\" – AT&", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-12-17T21:15:17", + "price": 161.76, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-01-23T20:30:29", + "newPrice": 162.95 + }, + { + "priceDate": "2021-07-13T20:30:29", + "newPrice": 150.91 + }, + { + "priceDate": "2021-12-31T20:30:29", + "newPrice": 173.23 + }, + { + "priceDate": "2022-06-20T20:30:29", + "newPrice": 159.88 + }, + { + "priceDate": "2022-12-08T20:30:29", + "newPrice": 167.59 + }, + { + "priceDate": "2025-05-17T20:30:29", + "newPrice": 161.76 + } + ], + "descriptionVector": [ + -0.10979972034692764, + 0.004276291001588106, + -0.024364648386836052, + 0.09038059413433075, + -0.037000689655542374, + -0.0219939723610878, + 0.04237724840641022, + 0.060843564569950104, + 0.03901973366737366, + 0.030580583959817886, + 0.06134265288710594, + -0.06542611122131348, + 0.06270381063222885, + 0.005994746927171946, + 0.08715920150279999, + 0.06474553793668747, + -0.05680547654628754, + -0.04212770238518715, + 0.04253605008125305, + -0.00022437765437643975, + 0.08924630284309387, + -0.09464554488658905, + -0.013758993707597256, + -0.01307841669768095, + 0.015982210636138916, + 0.041016094386577606, + 0.01985015533864498, + 0.016299813985824585, + 0.000797550892457366, + -0.055761925876140594, + -0.007208442315459251, + -0.01597086898982525, + -0.006272649392485619, + -0.005583565216511488, + 0.03493627533316612, + 0.00621593464165926, + 0.01593684032559395, + -0.028107821941375732, + 0.03945076838135719, + 0.03078475594520569, + 0.04015402868390083, + -0.00020647706696763635, + 0.016889646649360657, + -0.02706426940858364, + 0.034437187016010284, + -0.01239784061908722, + -0.013475419953465462, + 0.00471866549924016, + -0.015267605893313885, + -0.09764008224010468, + -0.05503597483038902, + 0.041333697736263275, + -0.01708247698843479, + -0.04882004112005234, + 0.049001529812812805, + -0.037409037351608276, + 0.001661741640418768, + 0.0717327892780304, + -0.016379214823246002, + -0.06796693801879883, + -0.014813887886703014, + -0.003059759736061096, + 0.017558880150318146, + -0.022844694554805756, + -0.019056150689721107, + -0.01674218848347664, + -0.005904003512114286, + 0.005869974847882986, + 0.020950421690940857, + 0.037136808037757874, + 0.02590728923678398, + 0.02552162855863571, + -0.024727623909711838, + 0.020303873345255852, + -0.024659564718604088, + 0.058983322232961655, + 0.09782157093286514, + 0.01593684032559395, + 0.027540674433112144, + -0.06397421658039093, + 0.06424644589424133, + -0.03693263232707977, + 0.028969885781407356, + 0.02311692386865616, + -0.019090179353952408, + 0.00971523392945528, + 0.06361124664545059, + -0.08666010946035385, + 0.03915585204958916, + -0.024432705715298653, + -0.002275678562000394, + 0.12304828315973282, + -0.019986271858215332, + 0.01092325709760189, + 0.08489061146974564, + 0.04401063174009323, + 0.006397421937435865, + 0.03808961436152458, + -0.006624280475080013, + 0.0020502374973148108, + 0.013895109295845032, + -0.025498943403363228, + -0.019146893173456192, + -0.01446225680410862, + -0.03035372495651245, + 0.030308352783322334, + 0.051451604813337326, + 0.062340833246707916, + -0.0363427996635437, + -0.027540674433112144, + 0.0069191972725093365, + -0.017955884337425232, + -0.07422824203968048, + 0.04877467080950737, + -0.0681484192609787, + 0.012227696366608143, + 0.019441809505224228, + -0.009505389258265495, + 0.029423603788018227, + -0.01197815127670765, + -0.010219994932413101, + 0.007622459903359413, + -0.06283992528915405, + -0.02244769036769867, + 0.012102923355996609, + -0.021755771711468697, + 0.011070715263485909, + 0.0011080640833824873, + 0.027472615242004395, + -0.10390138626098633, + -0.07940062135457993, + 0.051451604813337326, + 0.0366150327026844, + -0.021029822528362274, + 0.02290140837430954, + 0.031079672276973724, + 0.06692337989807129, + 0.04149249941110611, + -0.029151372611522675, + 0.07645145803689957, + -0.04981822147965431, + 0.03622937202453613, + 0.06261306256055832, + -0.025816546753048897, + -0.05676010251045227, + 0.0361386276781559, + -0.01907883584499359, + -0.0158687811344862, + 0.025816546753048897, + -0.07023552060127258, + -0.053130362182855606, + -0.10526254028081894, + 0.016640102490782738, + -0.048547811806201935, + -0.025272084400057793, + -0.00868302583694458, + -0.049001529812812805, + -0.031034301966428757, + -0.053130362182855606, + 0.06746784597635269, + -0.01681024581193924, + 0.022912751883268356, + 0.008473181165754795, + -0.09128803014755249, + -0.07168742269277573, + -0.0017680817982181907, + 0.04593893140554428, + 0.052676644176244736, + -0.052404411137104034, + 0.024659564718604088, + 0.013600192964076996, + 0.012930958531796932, + -0.07499956339597702, + -0.02100713737308979, + -0.016050269827246666, + 0.03380198031663895, + 0.09133340418338776, + 0.002403286751359701, + 0.024727623909711838, + -0.04167398437857628, + 0.061932485550642014, + 0.007486344780772924, + -0.11352020502090454, + -0.005572222173213959, + 0.0179331973195076, + 0.039518825709819794, + 0.013191846199333668, + 0.005489985924214125, + -0.007786932867020369, + 0.003709143493324518, + -0.02184651419520378, + 0.01932838000357151, + -0.03609325364232063, + 0.0360705703496933, + 0.05771291255950928, + -0.09373810887336731, + 0.03223665431141853, + -0.018160056322813034, + -0.10326618701219559, + 0.018545717000961304, + -0.013895109295845032, + 0.03981374204158783, + 0.043330054730176926, + -0.05077102780342102, + -0.004313155543059111, + -0.021687712520360947, + -0.010288052260875702, + 0.042173076421022415, + 0.08234979212284088, + 0.013225875794887543, + 0.004670458380132914, + -0.041265640407800674, + -0.03266768530011177, + 0.030762070789933205, + 0.11587954312562943, + 0.035526107996702194, + 0.01978209801018238, + -0.06960032135248184, + 0.010356109589338303, + -0.08643325418233871, + 0.02363870106637478, + -0.04355691373348236, + 0.019759412854909897, + 0.020644161850214005, + -3.3231288398383185e-05, + -0.03915585204958916, + 0.08207756280899048, + 0.0441240631043911, + -0.0022317247930914164, + 0.005254619754850864, + -0.001446225680410862, + -0.015948181971907616, + -0.003207218134775758, + -0.08171458542346954, + -0.04201427474617958, + 0.018160056322813034, + 0.07499956339597702, + 0.01146771851927042, + -0.11188682168722153, + 0.05181457847356796, + 0.011320260353386402, + -0.037068746984004974, + 0.007616788614541292, + -0.06683263927698135, + 0.06184174492955208, + -0.012658728286623955, + -0.008467509411275387, + 0.00442091329023242, + -0.08974539488554001, + 0.043398112058639526, + -0.0641557052731514, + -0.044033318758010864, + -0.04355691373348236, + 0.016753531992435455, + -0.03990448638796806, + 0.0050391037948429585, + 0.010605654679238796, + -0.011331603862345219, + 0.04673293977975845, + -0.014258083887398243, + 0.059573154896497726, + -0.020213130861520767, + -0.01456434279680252, + -0.007032626774162054, + -0.05771291255950928, + 0.05403779819607735, + 0.052222926169633865, + -0.022050688043236732, + -0.01362287811934948, + 0.022322919219732285, + 0.048547811806201935, + 0.0281531922519207, + 0.0808071494102478, + 0.04940987378358841, + -0.05748605355620384, + 0.012749471701681614, + -0.1006346195936203, + 0.07967285811901093, + 0.011649206280708313, + 0.01510880421847105, + 0.09074357151985168, + 0.06973643600940704, + 0.07568013668060303, + -0.057894397526979446, + 0.01961195468902588, + 0.019543897360563278, + -0.04981822147965431, + -0.02674666792154312, + 0.010027164593338966, + 0.006255635060369968, + -0.07413749396800995, + 0.020394617691636086, + -0.0006951099494472146, + -0.035412680357694626, + -0.03616131469607353, + -0.0362066850066185, + 0.03171487897634506, + -0.025430886074900627, + 0.008484523743391037, + 0.03686457499861717, + 0.007208442315459251, + -0.015812067314982414, + 0.014995374716818333, + -0.04181009903550148, + 0.0028116328176110983, + 0.028448108583688736, + 0.008603624999523163, + 0.03459598496556282, + 0.00927853025496006, + -0.003765858244150877, + 0.12205010652542114, + -0.10353841632604599, + -0.04430554807186127, + -0.0014845081605017185, + 0.019169580191373825, + 0.000997470342554152, + -0.041583240032196045, + 0.020791620016098022, + 0.09555298089981079, + -0.02951434627175331, + 0.06333900988101959, + 0.02835736609995365, + -0.012511270120739937, + 0.018216772004961967, + 0.09401033818721771, + 0.02441002056002617, + -0.01670815981924534, + -0.03323483467102051, + -0.016129668802022934, + 0.0020488197915256023, + -0.05508134886622429, + 0.07427361607551575, + 0.04668756574392319, + -0.014757173135876656, + 0.028697654604911804, + -0.0016943525988608599, + 0.04346616938710213, + 0.012908273376524448, + 0.10081610828638077, + -0.04741351678967476, + 0.08706845343112946, + 0.01600489765405655, + -0.06125190854072571, + -0.013169161044061184, + -0.08897407352924347, + -0.030489839613437653, + -0.043783772736787796, + -0.012704099528491497, + 0.019702697172760963, + -0.004233754705637693, + 0.0013320872094482183, + -0.02345721237361431, + 0.03949613869190216, + -0.01939643919467926, + 0.0685567706823349, + 0.0483209528028965, + 0.047005169093608856, + -0.042422618716955185, + -0.04813946411013603, + 0.0016759203281253576, + -0.00982299167662859, + -0.010412824340164661, + 0.06515388190746307, + 0.0219599436968565, + -0.03511776030063629, + 0.051451604813337326, + 0.004503149539232254, + 0.08756754547357559, + -0.0037204863037914038, + -0.0045343427918851376, + 0.08239515870809555, + 0.007367243524640799, + -0.0025138803757727146, + 0.04262679070234299, + 0.01582341082394123, + 0.0026471600867807865, + -0.020042985677719116, + -0.014292112551629543, + -0.024886423721909523, + 0.0438518300652504, + -0.003207218134775758, + 0.02062147669494152, + -0.05889257788658142, + -0.0022997823543846607, + 0.09101580083370209, + -0.03858870267868042, + -0.014337483793497086, + 0.030194923281669617, + -0.014348827302455902, + 0.08815737813711166, + -0.02461419440805912, + -0.015381035394966602, + -0.03793081268668175, + 0.09981793165206909, + 0.013293933123350143, + -0.05426465719938278, + -0.02699621208012104, + 0.0017184563912451267, + 0.0729578286409378, + -0.02506791055202484, + 0.02258380688726902, + 0.003025730838999152, + 0.03781738132238388, + -0.01691233366727829, + -0.02016775868833065, + -0.03434644266963005, + -0.027994392439723015, + -0.0018914362881332636, + 0.003224232466891408, + -0.040494319051504135, + -0.002502537565305829, + 0.06447330862283707, + -0.04813946411013603, + -0.04029014706611633, + -0.0061819059774279594, + -0.028380051255226135, + -0.03899705037474632, + -0.006595923099666834, + -0.030580583959817886, + 0.0722772553563118, + 0.03148801997303963, + -0.029990749433636665, + -0.013566164299845695, + 0.030512526631355286, + -0.005994746927171946, + -0.03570759668946266, + 0.000981873832643032, + 0.0026712638791650534, + -0.04355691373348236, + -0.018931377679109573, + 0.09764008224010468, + 0.024954482913017273, + 0.04621116444468498, + -0.07994508743286133, + -0.013089760206639767, + -0.03595713898539543, + -0.05108863115310669, + 0.019283009693026543, + -0.03736366704106331, + 0.012477241456508636, + -0.002801707712933421, + 0.038293786346912384, + -0.07835707068443298, + 0.11760366708040237, + -0.1656070202589035, + -0.04745888710021973, + 0.007945734076201916, + 0.012681414373219013, + 0.031669504940509796, + -0.022425005212426186, + -0.04607504978775978, + 0.06810305267572403, + 0.0023238861467689276, + -0.041197579354047775, + 0.028561538085341454, + -0.020927736535668373, + -0.01038446743041277, + 0.013203189708292484, + -0.0006848303601145744, + 0.0360025130212307, + -0.03232739865779877, + 0.0025961168576031923, + 0.030444467440247536, + -0.000507242395542562, + 0.00518372654914856, + -0.03486821800470352, + -0.07531716674566269, + -0.03806692734360695, + -0.010679383762180805, + 0.022629177197813988, + -0.03046715445816517, + -0.07967285811901093, + 0.034958962351083755, + -0.006533537060022354, + 0.043193940073251724, + -0.04478195309638977, + -0.02860691025853157, + 0.012363811954855919, + -0.00786066148430109, + 0.019248979166150093, + 0.08085252344608307, + 0.07009940594434738, + 0.013316619209945202, + -0.05058953911066055, + 0.0024330620653927326, + -0.05998149886727333, + -0.04904690012335777, + 0.04137906804680824, + 0.02244769036769867, + -0.014723144471645355, + 0.042808279395103455, + 0.06247694790363312, + -0.023196324706077576, + 0.0011775395832955837, + -0.007463658694177866, + -0.027949020266532898, + 0.0839831754565239, + -0.013418705202639103, + -0.01040148176252842, + 0.006244292017072439, + 0.023729443550109863, + -0.006006089970469475, + -0.014416884630918503, + -0.024727623909711838, + -0.0814877301454544, + -0.020950421690940857, + -0.019248979166150093, + 0.0011576894903555512, + 0.025498943403363228, + 0.010656697675585747, + 0.02370675839483738, + -0.03053521178662777 + ] + }, + { + "id": "46fe4cdf-78ff-472a-bf8a-ac02822f0b85", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "alopez", + "reviewDate": "2022-10-16T01:06:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "08fdce54-974c-44fb-8927-ea11f58c0cfc", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcantu", + "reviewDate": "2022-11-24T09:11:31", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2be40891-feb0-470f-89d8-ff743865f39c", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "uthomas", + "reviewDate": "2021-10-15T21:39:09", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8a1af0d9-0449-4ca5-ba1d-8055f7d390da", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "garrettjessica", + "reviewDate": "2021-01-28T14:31:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4c82995a-e92d-483b-aa8d-5c4879653ac8", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "wigginsjustin", + "reviewDate": "2022-10-23T09:23:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3f2021ab-2957-404b-a3c0-717b61ac158b", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "glassbrooke", + "reviewDate": "2022-12-11T14:39:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1085d3ac-fc31-44a8-b884-3151b60eb01a", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "parkerjulia", + "reviewDate": "2022-02-14T05:45:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4e8e4a10-548d-4a00-a73b-e3e4d5117a77", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "stuart62", + "reviewDate": "2021-11-03T15:12:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e591c6d9-1f55-4b54-9360-bee6593daf9e", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "crystal56", + "reviewDate": "2022-11-15T06:50:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bc9655d7-dddc-4af6-87f7-10b8c76982e4", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert55", + "reviewDate": "2021-09-27T11:02:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "357f67a7-ae72-43ea-9f2a-ead646d5180c", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "briannadavis", + "reviewDate": "2022-08-20T08:59:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d07b6746-590c-494d-8b6c-663b9504d4da", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "enorris", + "reviewDate": "2021-01-26T01:48:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a00593cb-70db-4772-877e-678ac600e038", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "martinezdarrell", + "reviewDate": "2022-10-23T09:00:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7270a2c8-a66e-4572-9c2b-77af22eb62dc", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "ynguyen", + "reviewDate": "2021-09-30T06:34:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "61f73daf-6ba6-4969-afb2-7b03584a0573", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "gloverfrank", + "reviewDate": "2021-06-25T07:17:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7de23fd6-f4ee-4353-af45-8d2c849764ec", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissaward", + "reviewDate": "2021-10-08T20:47:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5d99a016-6419-4804-9d72-a47e2deec4ef", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "tomreilly", + "reviewDate": "2021-01-23T20:30:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "892f96ab-caeb-47fb-bd45-58c83375ade4", + "productId": "507d2434-b77e-4280-8c63-86450ff47cc1", + "category": "Electronics", + "docType": "customerRating", + "userName": "abarnett", + "reviewDate": "2022-02-17T10:18:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "78233570-f505-4525-b5b6-17f0920966ef", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Silver)", + "description": "This Amazing Filter Micro (Silver) is rated 4.9 out of 5 by 13.\n\nRated 5 out of 5 by Steve from Good thing. I will use this for making glass beads, which it does. In the past I've had some issues with the filter because it would", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-02-16T07:46:14", + "price": 827.86, + "stock": 1, + "priceHistory": [ + { + "priceDate": "2021-04-09T08:45:03", + "newPrice": 907.08 + }, + { + "priceDate": "2025-01-05T08:45:03", + "newPrice": 827.86 + } + ], + "descriptionVector": [ + 0.01339200884103775, + 0.039990782737731934, + -0.006499864161014557, + 0.0057153040543198586, + -0.00146015384234488, + -0.026827603578567505, + -0.05417824909090996, + -0.007616772782057524, + 0.016094382852315903, + 0.059931688010692596, + -0.03489113971590996, + -0.0235586017370224, + -0.0004266727773938328, + 0.0028985145036131144, + 0.0049634333699941635, + 0.02129209414124489, + -0.04737872630357742, + -0.03824731335043907, + -0.0471172034740448, + 0.012803588062524796, + 0.007453322876244783, + -0.057883117347955704, + -0.05504998192191124, + -0.017325706779956818, + 0.029486391693353653, + -0.010319147258996964, + -0.004723706748336554, + 0.02014794386923313, + -0.04369565099477768, + -0.026587877422571182, + 0.04938371106982231, + 0.020823538303375244, + 0.026064837351441383, + 0.05805746093392372, + -0.01398042868822813, + -0.01873137801885605, + 0.05653192847967148, + 0.023406049236655235, + -0.004810880403965712, + 0.06041114404797554, + -0.0066469693556427956, + 0.01627962663769722, + -0.005421093665063381, + 0.057795941829681396, + 0.002730978187173605, + -0.0599752776324749, + -0.043652065098285675, + -0.05932147800922394, + -0.00014472141629084945, + 0.014525262638926506, + 0.08342491090297699, + -0.012106201611459255, + -0.031970832496881485, + -0.019472351297736168, + 0.026718636974692345, + 0.006162067409604788, + 0.014688712544739246, + 0.14401039481163025, + 0.06006244942545891, + -0.07509985566139221, + 0.021608097478747368, + -0.012629241682589054, + 0.021706167608499527, + -0.025345657020807266, + -0.05814463645219803, + -0.009807003661990166, + -0.046550579369068146, + 0.001879675779491663, + 0.06006244942545891, + 0.03242849186062813, + 0.026522496715188026, + 0.012945245020091534, + 0.010400872677564621, + 0.020420361310243607, + 0.043325163424015045, + 0.021030575037002563, + 0.13468284904956818, + -0.07401018589735031, + -0.017194947227835655, + 0.04981957748532295, + -0.004750948399305344, + 0.02654428966343403, + 0.009992247447371483, + 0.04628905653953552, + 0.03253746032714844, + -0.004056285601109266, + 0.04169066250324249, + -0.0953676626086235, + -0.005922340787947178, + 0.009360239841043949, + 0.02484440989792347, + 0.06176232919096947, + -0.006739590782672167, + -0.0610213577747345, + -0.014111189171671867, + 0.026696844026446342, + -0.012269651517271996, + 0.01472140196710825, + -0.06459546834230423, + 0.05753442272543907, + -0.0963265672326088, + -0.0471172034740448, + -0.0014438088983297348, + 0.040230508893728256, + -0.0482068732380867, + 0.012291444465517998, + 0.0039010082837194204, + -0.05308857932686806, + 0.010618805885314941, + -0.0696079358458519, + 0.012411308474838734, + -0.01790323108434677, + -0.04330337047576904, + -0.013065108098089695, + 0.0015582239720970392, + -0.011419710703194141, + -0.030292745679616928, + 0.03075040504336357, + -0.02025691047310829, + -0.016530249267816544, + -0.0171404629945755, + 0.04221370443701744, + 0.007736636325716972, + 0.027590369805693626, + 0.03397582098841667, + 0.004157079849392176, + 0.00556547474116087, + -0.0029257561545819044, + 0.028985144570469856, + 0.04254060238599777, + -0.055224329233169556, + -0.04254060238599777, + 0.046637751162052155, + -0.05230402201414108, + -0.07958928495645523, + -0.02582510933279991, + 0.00541292130947113, + 0.13468284904956818, + 0.004375013522803783, + 0.03157855197787285, + -0.022022170946002007, + -0.04121121019124985, + -0.0027949961367994547, + -0.024604683741927147, + 0.025846904143691063, + -0.06973869353532791, + -0.050822071731090546, + 0.03885752707719803, + 0.007486012764275074, + -0.015811068937182426, + 0.005012468434870243, + -0.061413638293743134, + -0.001743467291817069, + -0.07671256363391876, + -0.012019027955830097, + 0.014710505492985249, + -0.003939146641641855, + 0.04772741720080376, + -0.06180591881275177, + 0.013152281753718853, + -0.05069131404161453, + -0.05291423201560974, + 0.010858532972633839, + -0.01129984762519598, + -0.002936652861535549, + 0.06969510763883591, + -0.05287064611911774, + 0.04304185137152672, + -0.10120827704668045, + 0.03789862245321274, + 0.023950882256031036, + 0.02656608447432518, + 0.05557302013039589, + -0.0214119590818882, + -0.004042665008455515, + 0.032079797238111496, + -0.011953648179769516, + -0.022120241075754166, + -0.030336331576108932, + -0.052652712911367416, + 0.009970453567802906, + 0.04746589809656143, + -0.032733600586652756, + -0.0363730862736702, + 0.05474487319588661, + -0.00889168307185173, + -0.0014914817875251174, + -0.010646047070622444, + 0.05539867654442787, + 0.09083464741706848, + -0.015179062262177467, + -0.04489428550004959, + -0.001363445888273418, + -0.004456738475710154, + -0.03526162728667259, + 0.015473272651433945, + -0.07544855028390884, + -0.01109281089156866, + -0.024582888931035995, + -0.03654743358492851, + -0.06769011914730072, + 0.0115068843588233, + 0.08172503113746643, + -0.025977663695812225, + 0.0664261057972908, + 0.018393579870462418, + 0.08329415321350098, + 0.04441482946276665, + -0.030270950868725777, + -0.08216089755296707, + 0.04881708696484566, + -0.03375788778066635, + -0.010090317577123642, + 0.023645775392651558, + 0.04467635229229927, + 0.0825095921754837, + -0.049427300691604614, + -0.04594036564230919, + -0.05858050286769867, + -0.01797950640320778, + -0.010237421840429306, + -0.054047487676143646, + -0.0321015939116478, + 0.007611324544996023, + 0.004780914168804884, + -0.057229313999414444, + -0.02721988409757614, + 0.0283967237919569, + 0.0792405903339386, + 0.06250330060720444, + -0.02399447001516819, + 0.0011611764784902334, + -0.09005008637905121, + 0.038269106298685074, + -0.03698330000042915, + -0.00551643967628479, + -0.06097777187824249, + 0.03264642506837845, + -0.008003604598343372, + 0.059931688010692596, + 0.03569749370217323, + 0.052652712911367416, + -0.07549213618040085, + -0.019112760201096535, + 0.09266529232263565, + -0.09772134572267532, + 0.0235586017370224, + -0.07509985566139221, + -0.05775235593318939, + -0.03523983433842659, + -0.033452779054641724, + -0.010297354310750961, + -0.042344462126493454, + 0.0664261057972908, + 0.015549548901617527, + 0.07357431948184967, + 0.053829554468393326, + 0.03672178089618683, + -0.07653821259737015, + -0.04358668252825737, + 0.055006396025419235, + 0.00572620052844286, + 0.051040004938840866, + 0.046114712953567505, + -0.058318983763456345, + -0.025650763884186745, + -0.01595272682607174, + -0.03009660542011261, + -0.04467635229229927, + 0.022665075957775116, + -0.07762788236141205, + 9.900647273752838e-05, + 0.07658180594444275, + -0.023820122703909874, + -0.09597788006067276, + -0.011485091410577297, + -0.0621110238134861, + 0.06777729094028473, + 0.043216194957494736, + 0.0417342483997345, + 0.10007502883672714, + -0.0028876177966594696, + 0.016148867085576057, + 0.06877978891134262, + 0.06263406574726105, + -0.0013409715611487627, + 0.022359969094395638, + -0.06241613253951073, + -0.06594665348529816, + 9.177040192298591e-05, + -0.03907546028494835, + -0.032820772379636765, + 0.025781523436307907, + -0.006510760635137558, + -0.02410343661904335, + -0.006538002751767635, + -0.0008444919949397445, + -0.004639257676899433, + -0.043761029839515686, + 0.015549548901617527, + -0.0035223488230258226, + 0.017096877098083496, + -0.03162213787436485, + 0.007616772782057524, + -0.005448335316032171, + 0.004892605356872082, + 0.057665180414915085, + 0.0028467553202062845, + -0.031861864030361176, + -0.07623311132192612, + 0.05600888654589653, + -0.032384905964136124, + -0.00877726823091507, + 0.03922801464796066, + 0.09266529232263565, + -0.0771484300494194, + -0.03983822837471962, + 0.024038055911660194, + 0.031229859218001366, + 0.012858071364462376, + -0.008744578808546066, + 0.021074160933494568, + 0.044807109981775284, + 0.09292680770158768, + 0.006799522787332535, + -0.01993001066148281, + -0.03713585436344147, + -0.03419375419616699, + 0.00824877992272377, + 0.005238574463874102, + 0.038922909647226334, + -0.0449814572930336, + -0.042911089956760406, + 0.020082565024495125, + -0.028658244758844376, + -0.07754071056842804, + -0.04199577122926712, + 0.012171581387519836, + 0.010259215719997883, + 0.059059955179691315, + -0.014067602343857288, + -0.041930388659238815, + 0.008118019439280033, + -0.010978396050632, + 0.0856914222240448, + -0.028897970914840698, + 0.012051718309521675, + -0.06882337480783463, + 0.03386685252189636, + -0.051563046872615814, + 0.0010310974903404713, + -0.05121435225009918, + -0.006374552380293608, + 0.019581317901611328, + 0.02913769707083702, + 0.023623982444405556, + 0.06873620301485062, + -0.03245028480887413, + 0.06442111730575562, + 0.030118398368358612, + 0.040949687361717224, + -0.027481403201818466, + 0.06673121452331543, + -0.021967688575387, + -0.033256638795137405, + 0.09807004034519196, + -0.06843109428882599, + 0.022970182821154594, + 0.013936841860413551, + -0.042366255074739456, + -0.07566647976636887, + 0.0013688942417502403, + 0.045460909605026245, + 0.03312588110566139, + -0.013457388617098331, + -0.07902266085147858, + 0.01886213757097721, + 0.0273288507014513, + 0.028789004310965538, + 0.03491293266415596, + 0.034324511885643005, + 0.008172502741217613, + 0.0214228555560112, + -0.0803302600979805, + 0.01865510083734989, + -0.004206114914268255, + 0.008172502741217613, + 0.047596659511327744, + -0.04317260906100273, + 0.004304185044020414, + -0.09013725817203522, + 0.009714381769299507, + -0.02922487072646618, + -0.04628905653953552, + 0.016246935352683067, + -0.06293917447328568, + -0.009485552087426186, + 0.07034890353679657, + 0.1103614792227745, + -0.042562395334243774, + 0.03397582098841667, + 0.013904152438044548, + 0.017434673383831978, + -0.055747367441654205, + -0.03140420466661453, + -0.06381090730428696, + 0.032929740846157074, + -0.017369292676448822, + -0.03513086587190628, + -0.11227929592132568, + 0.01108191441744566, + -0.06904130429029465, + 0.05535508692264557, + -0.057142142206430435, + 0.025018757209181786, + 0.0632006898522377, + 0.07034890353679657, + -0.035828255116939545, + 0.06259047985076904, + -0.012149788439273834, + 0.03502190113067627, + 0.050604138523340225, + 0.055965300649404526, + 0.00012343884736765176, + -0.01615976355969906, + 0.04147272929549217, + -0.016203349456191063, + 0.04807611182332039, + 0.008750027045607567, + -0.06381090730428696, + 0.01391504891216755, + 0.01884034462273121, + -0.01445988193154335, + 0.015135475434362888, + 0.01797950640320778, + -0.0050233653746545315, + 0.0374845489859581, + 0.0331694670021534, + -0.028832590207457542, + -0.0022542488295584917, + 0.03343098610639572, + -0.020736364647746086, + 0.014634229242801666, + -0.012868967838585377, + -0.12117098271846771, + -0.007409736048430204, + -0.07662539184093475, + 0.0781509205698967, + -0.008924373425543308, + -0.08002515137195587, + 0.018687790259718895, + 0.05452693998813629, + -0.02506234310567379, + -0.023907296359539032, + 0.03650384768843651, + 0.0019668492022901773, + 0.032275937497615814, + 0.11611492186784744, + 0.012008131481707096, + -0.0026982880663126707, + -0.11855577677488327, + 0.04223549738526344, + -0.06311351805925369, + 0.027263469994068146, + 0.024691855534911156, + -0.09257811307907104, + -0.08970139175653458, + -0.001649483572691679, + 0.008096226491034031, + -0.0004164571291767061, + -0.003121896181255579, + -0.037223026156425476, + -0.057011380791664124, + -0.01198633760213852, + -0.018829448148608208, + 0.03580646216869354, + -0.004116217605769634, + 0.03676536679267883, + 0.08128916472196579, + 0.03327843174338341, + -0.025127723813056946, + 0.029050525277853012, + -0.02676222287118435, + 0.09283963590860367, + 0.047073617577552795, + 0.014013119041919708, + 0.019439660012722015, + 0.00028212161851115525, + 0.045460909605026245, + 0.0492965392768383, + -0.010095765814185143, + 0.020431257784366608, + -0.029856877401471138, + -0.051693808287382126, + 0.02086712419986725, + 0.007289872970432043, + -0.07148215919733047, + 0.03724482282996178, + -0.05696779489517212, + -0.034978315234184265, + 0.06904130429029465, + 0.009970453567802906, + -0.021183127537369728, + 0.005453783553093672, + 0.007589531131088734, + -0.022577902302145958, + -0.0166174229234457, + -0.059190716594457626, + -0.022774042561650276, + 0.0065597957000136375, + 0.01854613423347473, + 0.05688062310218811 + ] + }, + { + "id": "92f9715c-5186-413d-afbf-fe0738ba93ff", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "stephanie90", + "reviewDate": "2021-10-30T00:50:18", + "stars": 5, + "verifiedUser": false + }, + { + "id": "91f2982f-5e24-4f09-a97e-29897ad282c7", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "jasonkim", + "reviewDate": "2022-08-21T17:54:09", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7d4e005d-181d-4d78-b18c-f3db694902d3", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "vwatson", + "reviewDate": "2022-07-17T11:26:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f6e7d6db-c653-4ae4-b636-080a7a9cf466", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "brandonjohnson", + "reviewDate": "2022-08-01T18:52:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "49ba9e80-7aca-4768-ab08-5b337dac6a62", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "dennissusan", + "reviewDate": "2022-02-22T00:55:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cd22310d-4bba-4055-933d-1f9dc0d0838d", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "savannahandrade", + "reviewDate": "2022-11-17T12:51:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "894fc581-2f63-425c-bacb-29ea0968f5ae", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "kentflores", + "reviewDate": "2022-03-23T03:15:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "046602d0-3307-4374-a7a8-08850505a410", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "traviscamacho", + "reviewDate": "2021-07-01T05:26:49", + "stars": 5, + "verifiedUser": true + }, + { + "id": "16c02fe6-f9d5-47b4-8a42-fe698d24e68e", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "robert04", + "reviewDate": "2021-04-09T08:45:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "786679ae-ceca-470f-a19a-5c818237d984", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "olopez", + "reviewDate": "2022-09-29T23:54:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "48903f3f-4b15-41fc-be46-719db41d9511", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "johnsonlisa", + "reviewDate": "2022-04-20T02:24:59", + "stars": 5, + "verifiedUser": true + }, + { + "id": "10fe280b-9cd6-4fda-a6b0-fd166426e9d5", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "prodriguez", + "reviewDate": "2021-06-02T14:11:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "bd855426-9d3c-45de-8a7d-015150b2e291", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "rachel20", + "reviewDate": "2022-07-22T17:44:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6aee3677-21a9-47e6-9c70-271a85b0e97b", + "productId": "78233570-f505-4525-b5b6-17f0920966ef", + "category": "Other", + "docType": "customerRating", + "userName": "kristi01", + "reviewDate": "2022-02-19T06:44:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker 3000 (Red)", + "description": "This Luxe Speaker 3000 (Red) is one of the most beautiful speaker designs and I have had great success with it. The only problem is the fact that this piece has multiple speaker parts.\n\nI would have also liked that this is a one-piece design. But my wife loved this idea so much we decided to create", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-01-02T06:45:29", + "price": 240.14, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-02-05T14:07:52", + "newPrice": 231.44 + }, + { + "priceDate": "2021-03-31T14:07:52", + "newPrice": 244.84 + }, + { + "priceDate": "2021-05-24T14:07:52", + "newPrice": 248.43 + }, + { + "priceDate": "2021-07-17T14:07:52", + "newPrice": 231.53 + }, + { + "priceDate": "2021-09-09T14:07:52", + "newPrice": 230.62 + }, + { + "priceDate": "2022-02-09T14:07:52", + "newPrice": 240.14 + } + ], + "descriptionVector": [ + 0.0005906004225835204, + -0.012159958481788635, + -0.03225785121321678, + -0.05111711099743843, + -0.007378551177680492, + -0.03833117336034775, + -0.04680185765028, + 0.003532781032845378, + -0.004042220767587423, + 0.10511105507612228, + 0.00777145242318511, + 0.019045718014240265, + -0.045176975429058075, + -0.11262279003858566, + 0.002162621356546879, + 0.004028901923447847, + -0.03851763531565666, + -0.030899347737431526, + -0.0062864189967513084, + 0.008803649805486202, + 0.004997836425900459, + -0.1013818234205246, + -0.007418507244437933, + 0.0066893091425299644, + -0.01210002414882183, + -0.030339961871504784, + -0.0084573645144701, + 0.03742550313472748, + -0.013811475597321987, + -0.046482209116220474, + 0.04483069106936455, + 0.04360537230968475, + 0.003579396288841963, + 0.057803090661764145, + -0.04341891035437584, + -0.030925985425710678, + 0.023360971361398697, + 0.004202045034617186, + 0.054553329944610596, + -0.0065328143537044525, + -0.017780443653464317, + -0.010901343077421188, + -0.005700396839529276, + -0.036200184375047684, + 0.09669364988803864, + 0.027210071682929993, + -0.01989811472594738, + 0.06281091272830963, + -0.008577232249081135, + 0.006283089052885771, + -0.027915962040424347, + 0.000659691053442657, + -0.025425368919968605, + 0.0016032366547733545, + 0.0030266710091382265, + -0.02613125741481781, + -0.019405322149395943, + 0.048959482461214066, + 0.040648624300956726, + 0.03028668835759163, + 0.05410049483180046, + -0.06206506863236427, + -0.04642893373966217, + -0.011487364768981934, + -0.008990111760795116, + 0.0032247863709926605, + -0.07346586138010025, + 0.01807345449924469, + 0.013145540840923786, + 0.04230014234781265, + 0.009263144806027412, + -0.047627612948417664, + 0.032977063208818436, + 0.014024574309587479, + 0.09919755905866623, + -0.059614431113004684, + 0.05098392441868782, + 0.013758201152086258, + -0.0292478296905756, + -0.01848633401095867, + 0.03460194170475006, + 0.04091499745845795, + -0.02142976224422455, + -0.040222425013780594, + -0.0005456498474813998, + -0.049465592950582504, + -0.021349851042032242, + -0.10425865650177002, + 0.009556155651807785, + 0.02719675377011299, + -0.10111545026302338, + 0.05551227554678917, + 0.025918159633874893, + -0.011880266480147839, + 0.05082409828901291, + -0.01639530062675476, + -0.058069463819265366, + 0.06057337671518326, + -0.08305531740188599, + -0.015969103202223778, + 0.009336397983133793, + 0.0064995177090168, + -0.06803184002637863, + -0.03044651262462139, + -0.0013068958651274443, + 0.025452004745602608, + 0.09669364988803864, + 0.04072853550314903, + 0.040648624300956726, + -0.13670296967029572, + 0.07762128859758377, + -0.01158059574663639, + -0.03588053584098816, + -0.07975228130817413, + -0.010841408744454384, + 0.010814771987497807, + 0.004335231613367796, + -0.07826058566570282, + 0.007951254025101662, + -0.06781873852014542, + 0.09520195424556732, + -0.009975694119930267, + -0.0007824727217666805, + -0.010108881630003452, + 0.05431359261274338, + -0.008956815116107464, + 0.04770752787590027, + -0.013411914929747581, + 0.015782641246914864, + 0.045043788850307465, + -0.06302401423454285, + 0.1053241565823555, + 0.03004695102572441, + 0.053780846297740936, + 0.0376918762922287, + 0.06643359363079071, + -0.01666167378425598, + 0.013691606931388378, + -0.04392502084374428, + -0.029167918488383293, + 0.056364670395851135, + 0.03212466463446617, + 0.07831386476755142, + 0.0467752180993557, + -0.010581694543361664, + 0.019858157262206078, + -0.09573470056056976, + 0.06781873852014542, + 0.005667100194841623, + 0.03675956651568413, + -0.02393367514014244, + -0.07991210371255875, + 0.013485168106853962, + 0.0076249465346336365, + -0.020377587527036667, + 0.04003596305847168, + -0.08268239349126816, + 0.033483173698186874, + 0.037638600915670395, + 0.07836713641881943, + -0.0299137644469738, + -0.04277961328625679, + -0.014837014488875866, + 0.0018929180223494768, + -0.016448574140667915, + 0.023360971361398697, + 0.06611394882202148, + 0.030846072360873222, + -0.10212767124176025, + 0.031298909336328506, + 0.02316119149327278, + 0.006642693653702736, + -0.02377385087311268, + 0.016235476359725, + -0.011906903237104416, + -0.05620484799146652, + 0.11155729740858078, + 0.007917957380414009, + 0.0022758301347494125, + -0.048826295882463455, + 0.011480705812573433, + 0.08262911438941956, + -0.046109285205602646, + -0.009835848584771156, + 0.016475211828947067, + 0.08225619047880173, + 0.056631043553352356, + -0.03910365700721741, + 0.015196618624031544, + 0.03305697441101074, + 0.004055539146065712, + 0.04456431791186333, + 0.0455232635140419, + -0.0008590551442466676, + -0.08262911438941956, + -0.03809143602848053, + 0.054020583629608154, + 0.03225785121321678, + -0.0325508639216423, + 0.0038424404338002205, + -0.029993677511811256, + 0.07580994814634323, + 0.05966770648956299, + 0.011394134722650051, + -0.08353478461503983, + -0.03241767734289169, + -0.009636067785322666, + 0.03225785121321678, + 0.0325508639216423, + 0.012033430859446526, + -0.05242234095931053, + 0.03353644534945488, + -0.01638198085129261, + -0.005760330706834793, + 0.08502648025751114, + 0.01085472758859396, + -0.017114508897066116, + 0.0325508639216423, + -0.01768721267580986, + -0.06861785799264908, + 0.007598309312015772, + -0.017740488052368164, + 0.021549630910158157, + 0.028928181156516075, + -0.03441547974944115, + 0.022708356380462646, + 0.024746114388108253, + 0.00033234278089366853, + 0.07506410032510757, + 0.018126729875802994, + -0.0029850502032786608, + -0.018792662769556046, + 0.0006209836574271321, + -0.01554290484637022, + -0.034282293170690536, + 0.02394699491560459, + -0.013078947551548481, + -0.07106849551200867, + 0.03537442535161972, + -0.008210969157516956, + -0.03433556854724884, + 0.03891719505190849, + -0.04469750449061394, + -0.003962308634072542, + 0.006056671496480703, + 0.009935738518834114, + 0.14245665073394775, + -0.057270340621471405, + -0.04195385426282883, + -0.0069190566428005695, + -0.05966770648956299, + 0.018100092187523842, + -0.015223256312310696, + 0.02182932384312153, + -0.028022510930895805, + -0.010328639298677444, + 0.07858023792505264, + -0.07485100626945496, + 0.04925249516963959, + -0.02626444585621357, + -0.06451570242643356, + -0.06190524250268936, + -0.023614026606082916, + 0.007331935688853264, + -0.03806480020284653, + -0.07751474529504776, + -0.015662772580981255, + -0.0598275288939476, + 0.01976492814719677, + 0.04261979088187218, + -0.025119038298726082, + -0.07858023792505264, + 0.046615395694971085, + 0.04147438332438469, + -0.004897946026176214, + 0.023480840027332306, + -0.012126661837100983, + 0.03260413929820061, + -0.014091167598962784, + -0.027276664972305298, + 0.059241507202386856, + -0.011327540501952171, + 0.036333370953798294, + -0.06456898152828217, + -0.015169980935752392, + -0.05308827385306358, + 0.03942330554127693, + -0.0033046985045075417, + -0.04072853550314903, + -0.037265677005052567, + -0.006749243009835482, + -0.009123298339545727, + 0.010967936366796494, + -0.011620552279055119, + 0.014703826978802681, + 0.07442481070756912, + 0.059614431113004684, + -0.016208838671445847, + -0.0273299403488636, + 0.012512903660535812, + 0.016595080494880676, + -0.026357676833868027, + -0.004788066726177931, + -0.09669364988803864, + -0.06403623521327972, + 0.05029135197401047, + 0.006742584053426981, + 0.07490427792072296, + -0.052315790206193924, + -0.03926347941160202, + 0.10047615319490433, + -0.004731462337076664, + -0.04435122013092041, + -0.02780941314995289, + 0.0636633113026619, + -0.031405456364154816, + 0.04877302050590515, + -0.0010272035142406821, + 0.026877105236053467, + 0.044537678360939026, + -0.04408484324812889, + -0.06824493408203125, + -0.09035395085811615, + 0.05513935163617134, + -0.03041987493634224, + -0.022601807489991188, + 0.012233211658895016, + -0.057430166751146317, + 0.017980223521590233, + 0.03628009557723999, + 0.019978025928139687, + -0.008683782070875168, + 0.02433323673903942, + 0.003552759066224098, + 0.057536713778972626, + -0.003739220555871725, + 0.007684880867600441, + -0.05178304389119148, + 0.07687544822692871, + -0.03878400847315788, + 0.07453135401010513, + 0.009782573208212852, + -0.03617354482412338, + -0.0169014111161232, + 0.030925985425710678, + -0.029034731909632683, + -0.039210207760334015, + -0.007584990467876196, + 0.04056871309876442, + -0.01756734400987625, + 0.0016198849771171808, + -0.040515437722206116, + 0.027622951194643974, + -0.013838113285601139, + -0.003446209477260709, + 0.02365398220717907, + 0.01937868632376194, + -0.05135684460401535, + 0.022521894425153732, + -0.002302467590197921, + 0.021869279444217682, + 0.038810644298791885, + 0.033989280462265015, + -0.004152099601924419, + 0.0507175475358963, + 0.048826295882463455, + -0.00018614942382555455, + -0.010448507964611053, + -0.056737594306468964, + 0.029194556176662445, + -0.014517365954816341, + -0.0021842641290277243, + -0.042832888662815094, + -0.04099490866065025, + -0.03966304287314415, + 0.02352079562842846, + 0.09003430604934692, + 0.006659341976046562, + -0.016328707337379456, + 0.03287051245570183, + -0.02353411540389061, + -0.0036792864557355642, + 0.0493856817483902, + 0.012013453058898449, + 0.020510774105787277, + 0.017980223521590233, + -0.06217161938548088, + -0.003404588671401143, + -0.031911566853523254, + 0.02884826995432377, + -0.017860354855656624, + -0.09083342552185059, + -0.0006055839476175606, + 0.07490427792072296, + 0.01939200423657894, + -0.07474445551633835, + 0.007272001355886459, + 0.03675956651568413, + -0.08646489679813385, + -0.02703692950308323, + -0.04331235960125923, + 0.05801618844270706, + 0.012539541348814964, + -0.002052742289379239, + -0.00769819924607873, + -0.0857723280787468, + -0.029567478224635124, + 0.06041355058550835, + -0.07074885070323944, + -0.01884593814611435, + 0.02222888357937336, + 0.004728132858872414, + -0.0055905175395309925, + 0.003263077698647976, + 0.019218862056732178, + -0.020044619217514992, + 0.06446243077516556, + -0.000983085366897285, + -0.006978990510106087, + -0.04602937400341034, + 0.06062665209174156, + 0.07202744483947754, + 0.026224488392472267, + 0.0286085344851017, + -0.05812273919582367, + 0.004984517581760883, + 0.03446875512599945, + -0.09072687476873398, + 0.0009980689501389861, + -0.08598542213439941, + -0.028448710218071938, + -0.08151035010814667, + -0.018006861209869385, + -0.04741451516747475, + -0.004298605490475893, + 0.016808180138468742, + -0.05263543874025345, + 0.05407385900616646, + -0.03705257922410965, + 0.05386075749993324, + -0.008557254448533058, + -0.04256651550531387, + 0.04104818403720856, + 0.07975228130817413, + -0.08507975190877914, + -0.09402991086244583, + -0.025651786476373672, + -0.004691506270319223, + 0.004571638535708189, + -0.01936536654829979, + 0.04040888696908951, + 0.013065628707408905, + -0.09706657379865646, + 0.02796923741698265, + 0.01587587222456932, + -0.03457530587911606, + -0.022814905270934105, + 0.03670629486441612, + -0.05732361599802971, + -0.0029600774869322777, + -0.03433556854724884, + 0.07996538281440735, + 0.035294514149427414, + 0.08870244026184082, + -0.04720141738653183, + 0.012859189882874489, + 0.03233776614069939, + 0.022441983222961426, + 0.02754303812980652, + 0.039982691407203674, + -0.018646158277988434, + 0.03801152482628822, + -0.06179869547486305, + -0.006685979664325714, + -0.08758366852998734, + -0.05407385900616646, + 0.027356578037142754, + -0.044271305203437805, + 0.045336801558732986, + 0.04086172208189964, + -0.07106849551200867, + 0.025412049144506454, + -0.019285455346107483, + 0.04850664734840393, + 0.061851970851421356, + -0.00393567094579339, + 0.0338294580578804, + 0.002310791751369834, + 0.029967039823532104, + 0.00891685951501131, + 0.020177805796265602, + 0.03651983290910721, + -0.0649419054389, + -0.0008881897665560246, + -0.03159191831946373, + -0.025425368919968605, + 0.014064530842006207, + -0.05354110896587372, + -0.09333734214305878, + 0.0584956593811512, + 0.07341258972883224, + -0.03702594339847565, + -0.03995605185627937, + -0.04371192306280136, + 0.032204579561948776, + -0.056364670395851135, + -0.0961608961224556, + -0.011906903237104416, + -0.0034295611549168825, + 0.01639530062675476, + 0.026197852566838264, + -0.03454866632819176 + ] + }, + { + "id": "e7eee95e-cede-4434-ad82-688cb8ded352", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "customerRating", + "userName": "vcox", + "reviewDate": "2021-05-18T12:36:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "61c52ae9-279e-4c7f-b4da-43cf1566f2f9", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "customerRating", + "userName": "yvillanueva", + "reviewDate": "2021-09-10T05:44:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "abd35d02-37f8-461c-9ad5-a2b97ee45fd3", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "customerRating", + "userName": "hortonjohn", + "reviewDate": "2021-02-05T14:07:52", + "stars": 3, + "verifiedUser": true + }, + { + "id": "322e22d8-eba1-48e7-a65c-d04dbc510801", + "productId": "2784d047-d878-41f0-945b-8a9e9b6bba0c", + "category": "Media", + "docType": "customerRating", + "userName": "matthewwest", + "reviewDate": "2021-05-20T19:37:45", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Pro (Black)", + "description": "This Premium Stand Pro (Black) is the ultimate upgrade to your Android smartphone. Whether it's a simple, quiet setup with a light weight screen, high screen brightness, low screen resolution, or just great for outdoor work, this Premium Stand Pro features over 500 high-performance Super HD monitors, including ultra-bright gaming monitors, gaming monitors, monitor cameras, and more to keep up-", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-12-03T19:34:48", + "price": 1041.59, + "stock": 68, + "priceHistory": [ + { + "priceDate": "2021-02-01T23:58:20", + "newPrice": 1022.48 + }, + { + "priceDate": "2021-08-18T23:58:20", + "newPrice": 999.9 + }, + { + "priceDate": "2022-03-04T23:58:20", + "newPrice": 975.74 + }, + { + "priceDate": "2022-09-18T23:58:20", + "newPrice": 1049.49 + }, + { + "priceDate": "2023-06-25T23:58:20", + "newPrice": 1041.59 + } + ], + "descriptionVector": [ + 0.004009304568171501, + 0.03915686160326004, + -0.04857296124100685, + 0.03530358895659447, + 0.004114455543458462, + 0.02892669104039669, + -0.047216176986694336, + 0.04784029722213745, + 0.06729661673307419, + 0.04192470759153366, + 0.0438513457775116, + -0.03695886954665184, + 0.04206038638949394, + -0.01761109009385109, + 0.05953579768538475, + 0.009015846997499466, + 0.01121384184807539, + -0.04005234315991402, + 0.03668751195073128, + -0.02600960060954094, + 0.06165238469839096, + -0.10490674525499344, + -0.05953579768538475, + 0.016674907878041267, + 0.001211780123412609, + 0.007184185553342104, + 0.04653778299689293, + -0.008737705647945404, + 0.02462567761540413, + 0.05682222545146942, + -0.029903577640652657, + 0.006543103605508804, + -0.009782431647181511, + 0.029333727434277534, + -0.027407091110944748, + 0.06018705666065216, + -0.0011185009498149157, + -0.05212774500250816, + 0.03644328936934471, + 0.058613184839487076, + 0.006760189775377512, + 0.02154577150940895, + 0.01081359013915062, + 0.006719485856592655, + 0.007638708688318729, + 0.012462085112929344, + 0.0156980212777853, + -0.009782431647181511, + -0.07983332872390747, + -0.0613810271024704, + 0.0259281937032938, + 0.042114656418561935, + -0.04132772237062454, + -0.0042365663684904575, + 0.04157194495201111, + -0.013846008107066154, + 0.05283327400684357, + 0.10989972203969955, + 0.05720212683081627, + -0.02621311880648136, + 0.030202070251107216, + -0.00924650114029646, + 0.005559433251619339, + -0.0024761357344686985, + 0.0030510739888995886, + -0.021287983283400536, + -0.030446292832493782, + -0.04670059680938721, + -0.030717650428414345, + 0.06821923702955246, + -0.050146836787462234, + 0.04225033521652222, + 0.06930465996265411, + 0.03622620552778244, + -0.007319863885641098, + 0.013866359367966652, + 0.0803760439157486, + 0.03893977776169777, + 0.0303106140345335, + -0.05600815266370773, + 0.05427146703004837, + 0.03397393971681595, + 0.003059553913772106, + 0.004552019294351339, + 0.10930273681879044, + -0.02484276331961155, + 0.05218201503157616, + -0.11011680215597153, + -0.01876435987651348, + 0.027271412312984467, + -0.053593073040246964, + 0.07370065152645111, + 0.06344334781169891, + -0.021165871992707253, + 0.056876495480537415, + 0.041300587356090546, + -0.05893881246447563, + 0.034950822591781616, + 0.0017824785318225622, + -0.025480452924966812, + 0.025738243013620377, + -0.10724041610956192, + 0.032264385372400284, + -0.054244332015514374, + 0.0008306078379973769, + 0.032400064170360565, + 0.01651209406554699, + -0.016389982774853706, + -0.017882447689771652, + -0.14696712791919708, + -0.011166354641318321, + -0.049794070422649384, + 0.023323163390159607, + 0.0073809195309877396, + -0.04005234315991402, + 0.053294580429792404, + -0.023418137803673744, + -0.026565883308649063, + 0.048111654818058014, + -0.05779911205172539, + -0.042033251374959946, + 0.015223146416246891, + -0.034082479774951935, + 0.006875516381114721, + -0.045262403786182404, + 0.005793479271233082, + -0.00469448184594512, + 0.04754180461168289, + 0.05660513788461685, + -0.1037127748131752, + -0.015209578908979893, + 0.06593982875347137, + 0.017665361985564232, + 0.06518003344535828, + -0.0067635816521942616, + 0.084717757999897, + 0.015019628219306469, + 0.0949750691652298, + 0.007516598328948021, + 0.0072248890064656734, + -0.010230171494185925, + -0.045832253992557526, + 0.023906581103801727, + 0.03557494655251503, + 0.010047005489468575, + 0.05370161682367325, + 0.06051268428564072, + 0.014544753357768059, + -0.02432718500494957, + 0.0504181906580925, + -0.028899556025862694, + -0.09399817883968353, + -0.04640210419893265, + -0.08292680233716965, + 0.1147298812866211, + -0.05736494064331055, + -0.06056695803999901, + -0.05291467905044556, + -0.07858508080244064, + 0.0401608869433403, + 0.008941223844885826, + -0.00558656919747591, + -0.023391002789139748, + -0.003198624588549137, + 0.04493677243590355, + -0.0013330428628250957, + 0.037447310984134674, + 0.006085188128054142, + -0.04575084522366524, + 0.03448951616883278, + 0.010047005489468575, + -0.0219121053814888, + -0.03554781153798103, + -0.04463827982544899, + -0.0019927804823964834, + 0.017407573759555817, + 0.05177497863769531, + 0.026647290214896202, + 0.05093377083539963, + -0.007604789454489946, + 0.01701410487294197, + -0.007211321033537388, + -0.06555993109941483, + -0.042765915393829346, + 0.07266949117183685, + 0.039916664361953735, + 0.06800214946269989, + 0.028519656509160995, + 0.018452297896146774, + 0.005467850249260664, + -0.006169987376779318, + -0.03682319074869156, + 0.05367448180913925, + -0.0027254451997578144, + 0.058124739676713943, + -0.04946844279766083, + 0.06528857350349426, + 0.017556820064783096, + 0.01987692527472973, + -0.005824006628245115, + -0.0715840607881546, + 0.0833066999912262, + 0.09866552799940109, + -0.00799825694411993, + 0.008235694840550423, + -0.03191162273287773, + 0.004345109220594168, + 0.08846248686313629, + 0.013947767205536366, + 0.005705288145691156, + -0.05237196385860443, + -0.00232858513481915, + -0.04352571442723274, + -0.011118866503238678, + 0.039618171751499176, + 0.0019707325845956802, + 0.0650172159075737, + -0.014191988855600357, + 0.010847508907318115, + -0.03676891699433327, + 0.0643116906285286, + -0.034950822591781616, + 0.03169453516602516, + -0.01500606071203947, + -0.013676409609615803, + -0.003544605104252696, + 0.05166643485426903, + -0.01288947369903326, + 0.00021125593048054725, + 0.053945839405059814, + -0.06610264629125595, + -0.08102729916572571, + -0.0009149829857051373, + 0.036633238196372986, + -0.007638708688318729, + 0.023703062906861305, + -0.021532204002141953, + -0.016322143375873566, + -0.03212870657444, + 0.07114989310503006, + -0.054461415857076645, + -0.04558803141117096, + -0.05454282462596893, + -0.001232979935593903, + 0.05959007143974304, + 0.005556041374802589, + 0.03880409896373749, + 0.035384997725486755, + -0.05714785307645798, + -0.008866600692272186, + -0.041734758764505386, + -0.007869362831115723, + -0.09454089403152466, + 0.050798092037439346, + 0.002988322637975216, + 0.011532686650753021, + 0.05302322283387184, + -0.06094685569405556, + 0.0129640968516469, + 0.03492368757724762, + -0.01914425939321518, + 0.004463828168809414, + -0.021667882800102234, + -0.01092213299125433, + -0.021315118297934532, + 0.07880216836929321, + 0.02124727889895439, + 0.008629162795841694, + -0.02141009271144867, + 0.04105636477470398, + -0.019320642575621605, + -0.04651064798235893, + 0.010230171494185925, + -0.006302273832261562, + 0.017882447689771652, + 0.03668751195073128, + -0.0335940383374691, + 0.038017161190509796, + 0.021233711391687393, + 0.02979503571987152, + 0.06257499754428864, + -0.05741921067237854, + 0.0993167832493782, + 0.0357920303940773, + 0.05410865321755409, + -0.01099675614386797, + 0.04865437000989914, + -0.02039250358939171, + 0.022169893607497215, + -0.021749289706349373, + -0.019931195303797722, + -0.010637207888066769, + 0.07429763674736023, + -0.037881482392549515, + 0.07560015469789505, + -0.019374914467334747, + -0.052616186439991, + 0.03755585476756096, + 0.017570387572050095, + -0.00566119235008955, + 0.03614479675889015, + 0.02914377674460411, + -0.019374914467334747, + -0.019619135186076164, + 0.014137716963887215, + 0.11516404896974564, + -0.07136698067188263, + 0.03470660373568535, + -0.06952174752950668, + 0.002206474309787154, + 0.09649466723203659, + 0.006017348729074001, + -0.09215295314788818, + 0.022997533902525902, + -0.017909584566950798, + -0.0003481005842331797, + -0.0014169940259307623, + 0.0129708806052804, + -0.0056204888969659805, + -0.02775985561311245, + -0.04998401924967766, + -0.035167910158634186, + -0.08629163354635239, + 0.09074189513921738, + 0.06892476230859756, + -0.01972767896950245, + -0.036931734532117844, + 0.025399046018719673, + -0.028221162036061287, + 0.019089987501502037, + -0.06773079186677933, + -0.01511460356414318, + 0.009904542937874794, + -0.06376897543668747, + 0.041816163808107376, + 0.02162718027830124, + 0.013757816515862942, + -0.0017977423267439008, + -0.006176771130412817, + 0.05763629823923111, + 0.02944227121770382, + -0.006475264206528664, + -0.03492368757724762, + -0.06523430347442627, + 0.006848380900919437, + -0.1132102757692337, + 0.03375685214996338, + -0.022888990119099617, + 0.012841985560953617, + -0.009599265642464161, + 0.0015772645128890872, + -0.07418909668922424, + 0.08422931283712387, + 0.037284497171640396, + 0.04352571442723274, + 0.015033196657896042, + 0.04935989901423454, + -0.04005234315991402, + -0.04268450662493706, + 0.0008937832317315042, + -0.024951307103037834, + -0.04670059680938721, + 0.041164908558130264, + 0.05959007143974304, + 0.026932215318083763, + 0.04075787216424942, + -0.039129726588726044, + 0.06295490264892578, + -0.013635706156492233, + 0.013859575614333153, + -0.0005257548182271421, + -0.014124149456620216, + -0.04471968859434128, + 0.06821923702955246, + -0.015806565061211586, + 0.08737706393003464, + 0.01723119057714939, + 0.029849305748939514, + 0.005498378071933985, + 0.04029656574130058, + -0.02936086431145668, + 0.05503126606345177, + 0.012903041206300259, + 0.03337695077061653, + 0.09312983602285385, + 0.004128023516386747, + 0.010976403951644897, + -0.0014280179748311639, + -0.0059325494803488255, + 0.019524160772562027, + -0.05253478139638901, + -0.04176189377903938, + -0.02366235852241516, + 0.02345884218811989, + 0.073049396276474, + 0.014992492273449898, + -0.025738243013620377, + 0.043064408004283905, + 0.030581971630454063, + -0.005254156421869993, + 0.08265544474124908, + 0.0066991341300308704, + 0.0133304288610816, + -0.034136753529310226, + -0.034082479774951935, + -0.03492368757724762, + 0.028736742213368416, + 0.08661726117134094, + -0.034380972385406494, + -0.053131766617298126, + -0.034516651183366776, + -0.06610264629125595, + -0.0906333476305008, + 0.08249262720346451, + 0.07874789834022522, + 0.09508360922336578, + 0.04097495600581169, + 0.02614527940750122, + 0.06707952916622162, + -0.07060717791318893, + 0.014490481466054916, + -0.017204055562615395, + -0.04005234315991402, + -0.02461211010813713, + -0.07310366630554199, + 0.06366042792797089, + -0.001694287289865315, + 0.005172749049961567, + -0.08488057553768158, + -0.006139459554105997, + 0.09117606282234192, + -0.09578914195299149, + 0.013282941654324532, + 0.0024642636999487877, + -0.055628255009651184, + -0.02879101224243641, + 0.05834182724356651, + 0.026036735624074936, + -0.007062074728310108, + 0.010928916744887829, + -0.07114989310503006, + -0.08498911559581757, + 0.06382324546575546, + 0.03074478544294834, + -0.059210170060396194, + -0.03229152411222458, + -0.045262403786182404, + 0.009029415436089039, + 0.0038125705905258656, + -0.014965357258915901, + -0.06192374229431152, + -0.041897572576999664, + -0.01659350097179413, + -0.013595002703368664, + 0.011010323651134968, + -0.028438247740268707, + -0.01709551177918911, + 0.059861429035663605, + 0.04838301241397858, + 0.004263702314347029, + 0.018900038674473763, + 0.07977905869483948, + 0.05725639685988426, + 0.0008734313887543976, + -0.03470660373568535, + 0.0025931585114449263, + -0.07793382555246353, + -0.01373068057000637, + 0.025819649919867516, + 0.03679605573415756, + -0.020134713500738144, + -0.04406842961907387, + 0.012814849615097046, + -0.01307942345738411, + 0.01651209406554699, + -0.026348797604441643, + -0.010535448789596558, + 0.0019876924343407154, + 0.013961334712803364, + -0.019564863294363022, + 0.01657993346452713, + 0.0387226901948452, + -0.0387226901948452, + 0.01739400438964367, + -0.035819169133901596, + -0.008140720427036285, + -0.05807046964764595, + -0.0133304288610816, + -0.013974902220070362, + 0.06273781508207321, + -0.002250569872558117, + 0.05779911205172539, + 0.04360712319612503, + -0.023838741704821587, + -0.03828851878643036, + -0.04694481939077377, + 0.016172897070646286, + 0.03704027459025383, + 0.04062219336628914, + 0.04523526877164841, + -0.03345835953950882, + 0.002184426411986351, + -0.028899556025862694, + 0.023065373301506042, + -0.0035005095414817333, + 0.043579988181591034, + -0.008228911086916924, + -0.006217475049197674, + -0.03921113535761833, + -0.04870864003896713, + 0.0715840607881546, + 0.008337453939020634 + ] + }, + { + "id": "bba7fe9b-c11b-4460-a433-607a42dcc75b", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "adrianedwards", + "reviewDate": "2022-09-21T14:07:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b61a71cb-1779-46b2-b55b-752b48c8b32b", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "melanie31", + "reviewDate": "2021-02-01T23:58:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cfa7e8f5-d8a9-45cc-b9d0-e87216dbd2a9", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "escobarrichard", + "reviewDate": "2021-07-24T01:49:08", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f012325d-d4a5-4cee-91a7-d3343ac86fe4", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "jillmayo", + "reviewDate": "2022-07-03T15:25:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0287d6c3-8616-4d2b-8f78-bba14da0d130", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "victoriapaul", + "reviewDate": "2021-10-26T00:47:31", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6e9c272e-fa06-42b8-859e-764128982d73", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "kristina46", + "reviewDate": "2021-09-29T18:20:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4d24b5d7-3332-4b27-82b2-6985a0863dce", + "productId": "a3e3dc9c-4a97-447f-b292-59b6d4568e07", + "category": "Accessory", + "docType": "customerRating", + "userName": "aaronwalker", + "reviewDate": "2021-11-15T11:18:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Pro (Steel)", + "description": "This Premium Mouse Pro (Steel) is a complete ergonomic mouse, featuring a great wide range of mouse types, mouse mounts, and mouse controls for your iPhone, Android, Wii Remote, or Kinect. The Pro contains all-around great quality mouse work with the sleek", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-01-03T18:49:26", + "price": 824.58, + "stock": 7, + "priceHistory": [ + { + "priceDate": "2021-01-08T16:41:06", + "newPrice": 853.22 + }, + { + "priceDate": "2021-09-04T16:41:06", + "newPrice": 841.55 + }, + { + "priceDate": "2022-05-01T16:41:06", + "newPrice": 886.2 + }, + { + "priceDate": "2022-12-26T16:41:06", + "newPrice": 773.15 + }, + { + "priceDate": "2023-08-31T16:41:06", + "newPrice": 824.58 + } + ], + "descriptionVector": [ + -0.055102165788412094, + 0.008961377665400505, + -0.03264415264129639, + 0.010768204927444458, + 0.03584551066160202, + 0.023755531758069992, + -0.031019220128655434, + 0.02279755100607872, + 0.04013824090361595, + 0.06839264929294586, + 0.039459165185689926, + 0.0036318437196314335, + 0.04464924335479736, + -0.043776147067546844, + 0.015085187740623951, + 0.009488874115049839, + -0.014951798133552074, + -0.03206208720803261, + 0.011416965164244175, + -0.0610683336853981, + 0.03046140819787979, + -0.057187896221876144, + 0.008579397574067116, + -0.03426908329129219, + 0.02250651828944683, + -0.02089371159672737, + 0.0072091189213097095, + 0.014721397310495377, + 0.009252410382032394, + 0.057672951370477676, + 0.014721397310495377, + 0.018310798332095146, + -0.02049354277551174, + 0.0762990340590477, + -0.03628205880522728, + 0.008112533017992973, + -0.01660098135471344, + -0.043412357568740845, + 0.06640392541885376, + 0.07925786823034286, + -0.007839689962565899, + 0.002508640056475997, + 0.05379251763224602, + 0.023246224969625473, + 0.011550354771316051, + 0.04336385056376457, + 0.0015385315055027604, + 0.024713514372706413, + -0.016188686713576317, + 0.03965318575501442, + 0.02049354277551174, + 0.042272478342056274, + -0.09283939003944397, + 0.019632572308182716, + -0.007845752872526646, + -0.018383556976914406, + 0.09667131304740906, + 0.1788880079984665, + 0.025635117664933205, + -0.06829564273357391, + -0.015182198956608772, + -0.07052689045667648, + -0.024907536804676056, + 0.0035651489160954952, + -0.0391438789665699, + -0.09172376245260239, + 0.0017264899797737598, + -0.03385678678750992, + -0.0002442323893774301, + 0.053889527916908264, + -0.05903110280632973, + -0.05893409252166748, + 0.03526344522833824, + 0.005090038292109966, + -0.01799551397562027, + 0.08260474354028702, + 0.061116836965084076, + 0.05723640322685242, + 0.0672285184264183, + 0.008518765680491924, + -0.026144424453377724, + 0.045498091727495193, + -0.0322561077773571, + 0.022894561290740967, + 0.09322743117809296, + 0.038901351392269135, + 0.035966772586107254, + -0.08876492828130722, + 0.020432911813259125, + 0.072127565741539, + -0.004562541842460632, + 0.08333232253789902, + -0.009901170618832111, + -0.037324924021959305, + 0.02305220440030098, + 0.004010792355984449, + -0.03916813060641289, + 0.027696598321199417, + -0.029345782473683357, + -0.02723579667508602, + 0.02444673515856266, + 0.010695446282625198, + -0.07566846907138824, + -0.026265688240528107, + -0.002003880450502038, + 0.0016294792294502258, + 0.012975201942026615, + -0.019947856664657593, + -0.072127565741539, + -0.10195840895175934, + -0.009446431882679462, + -0.04593463987112045, + -0.019511308521032333, + 0.005890377797186375, + -0.03160128369927406, + 4.741594966617413e-05, + -0.0715940073132515, + 0.01002243347465992, + 0.046565208584070206, + -0.043339598923921585, + -0.004404899198561907, + 0.05306493490934372, + -0.008039774373173714, + 0.01438185852020979, + -0.028351422399282455, + -0.002531376900151372, + 0.039459165185689926, + 0.01949918083846569, + 0.028011884540319443, + -0.04644394665956497, + -0.07203055918216705, + 0.08750379085540771, + 0.07304917275905609, + -0.005565997678786516, + -0.01792275533080101, + 0.03858606517314911, + 0.012708421796560287, + 0.03814951702952385, + 0.014054447412490845, + 0.07916085422039032, + -0.0035681803710758686, + -0.05544170364737511, + -0.10496574640274048, + 0.0030967683997005224, + -0.01641908660531044, + -0.00535984942689538, + -0.00808221660554409, + 0.061262354254722595, + 0.018941368907690048, + -0.019887225702404976, + 0.0014362153597176075, + -0.10448069125413895, + 0.02580488659441471, + -0.03613654151558876, + 0.11660704761743546, + -0.023294731974601746, + -0.07348572462797165, + -0.0023585762828588486, + -0.08469047397375107, + 0.05830352380871773, + -0.0007234129589051008, + -0.03274116292595863, + 0.026556720957159996, + 0.024434609338641167, + 0.020093372091650963, + 0.035966772586107254, + 0.021560661494731903, + 0.004917237441986799, + 0.001214909367263317, + 0.012138483114540577, + -0.03385678678750992, + -0.046128660440444946, + 0.00923422072082758, + -0.09055963158607483, + 0.06582186371088028, + -0.04906323924660683, + 0.05937064066529274, + 0.030655428767204285, + 0.004614078905433416, + 0.06407567113637924, + 0.07789971679449081, + 0.03705814480781555, + -0.0610683336853981, + -0.03228036314249039, + 0.08857090771198273, + 0.07033286988735199, + 0.042054206132888794, + 0.0659673810005188, + 0.010980416089296341, + -0.04666221886873245, + 0.030437154695391655, + -0.04253925755620003, + 0.006857454776763916, + -0.04309707134962082, + 0.027332806959748268, + 0.04120536148548126, + 0.04782634973526001, + 0.0851755291223526, + 0.03145577013492584, + -0.06460922956466675, + -0.028521191328763962, + 0.033517248928546906, + 0.11030133813619614, + -0.027939125895500183, + 0.03140726312994957, + -0.0639786571264267, + 0.008057964034378529, + -0.0536470003426075, + -0.014866913668811321, + -0.005080943461507559, + 0.01312071830034256, + -0.037882737815380096, + 0.034172073006629944, + -0.024640757590532303, + 0.06174740940332413, + -0.012253683060407639, + 0.01634632796049118, + 0.0050081852823495865, + -0.03254714235663414, + -0.0866306945681572, + 0.03295943886041641, + 0.013351118192076683, + -0.018553325906395912, + -0.00558115541934967, + -0.058255016803741455, + 0.023112835362553596, + 0.055878251791000366, + -0.006463347934186459, + 0.019996361806988716, + 0.035020917654037476, + -0.0315285287797451, + -0.023925302550196648, + 0.016394834965467453, + 0.016916267573833466, + -0.034729886800050735, + 0.04050203040242195, + -0.023003699257969856, + -0.0395076684653759, + 0.015194324776530266, + 0.069944828748703, + -0.043048564344644547, + -0.04069605469703674, + -0.03984720632433891, + 0.004732310771942139, + 0.06732553243637085, + -0.0001817058800952509, + 0.047123022377491, + 0.001545352628454566, + -0.11078639328479767, + -0.06611289829015732, + -0.048359911888837814, + 0.04593463987112045, + -0.01014976017177105, + 0.051949311047792435, + -0.04287879541516304, + 0.027866367250680923, + 0.04006548225879669, + -0.033590007573366165, + 0.039968471974134445, + -0.011568544432520866, + -0.05772145837545395, + 0.058837082237005234, + -0.03361425921320915, + 0.06611289829015732, + -0.010319529101252556, + 0.042345236986875534, + -0.021851694211363792, + -0.08032498508691788, + -0.022930940613150597, + 0.037106651812791824, + -0.04705026373267174, + -0.0019735645037144423, + 0.04991208389401436, + -0.007785120978951454, + 0.05340447276830673, + 0.00954950600862503, + -0.07178802788257599, + 0.05786697566509247, + 0.03822227567434311, + -0.010252834297716618, + 0.038392044603824615, + -0.008549081161618233, + 0.07144849002361298, + 0.06810162216424942, + 0.011071363463997841, + -0.012647789902985096, + 0.006245073862373829, + 0.0041199298575520515, + 0.009792032651603222, + -0.052579883486032486, + -0.025610866025090218, + -0.037906989455223083, + 0.07586248964071274, + -0.017752986401319504, + 0.0686836838722229, + 0.010931910946965218, + 0.01814102940261364, + 0.046637967228889465, + 0.06228096783161163, + 0.004902079701423645, + 0.07741466164588928, + 0.01247802097350359, + -0.07169102132320404, + -0.017910629510879517, + 0.09410052746534348, + 0.08580610156059265, + -0.014466743916273117, + 0.018080398440361023, + -0.057333413511514664, + -0.05025162175297737, + 0.061698902398347855, + 0.029079003259539604, + -0.09172376245260239, + -0.04365488514304161, + 0.0878918319940567, + 0.018892863765358925, + 0.048214394599199295, + 0.011829260736703873, + 0.03167404234409332, + 0.008258048444986343, + -0.09914509207010269, + -0.020287394523620605, + -0.13765840232372284, + 0.05340447276830673, + 0.01598253846168518, + -0.07707512378692627, + -0.021572789177298546, + 0.005177954211831093, + 0.020566301420331, + -0.06635542213916779, + -0.07979142665863037, + -0.01444249041378498, + 0.00471108965575695, + -0.019402170553803444, + 0.03919238597154617, + -0.015667252242565155, + 0.002657187869772315, + 0.02745407074689865, + 0.007766931317746639, + 0.022700538858771324, + 0.005690292920917273, + 0.005796398501843214, + 0.012114230543375015, + -0.018044019117951393, + 0.02209422178566456, + -0.08265324681997299, + 0.017583217471837997, + -0.08968653529882431, + -0.04877220466732979, + 0.028836475685238838, + 0.001380888861604035, + -0.1194203570485115, + -0.006420905701816082, + -0.05849754437804222, + 0.028787970542907715, + -0.006693748757243156, + -0.02044503763318062, + -0.01530346181243658, + -0.0027269143611192703, + 0.013193476013839245, + -0.041981447488069534, + -0.03778572753071785, + -0.012453768402338028, + 0.05650882050395012, + 0.007888195104897022, + 0.05966167524456978, + -0.06422118842601776, + 0.0166737399995327, + 0.010349845513701439, + -0.0329836905002594, + -0.020238889381289482, + -0.06475474685430527, + 0.058837082237005234, + 0.1056448221206665, + -0.0570908859372139, + 0.05747893080115318, + 0.04736554995179176, + 0.027769356966018677, + -0.02199721150100231, + 0.019402170553803444, + 0.0036470016930252314, + 0.04954829439520836, + -0.03737343102693558, + 0.01890498958528042, + 0.03477839007973671, + -0.014005942270159721, + 0.016685865819454193, + -0.04884496331214905, + -0.0076456679962575436, + 0.026265688240528107, + 0.038101013749837875, + 0.005820651073008776, + -0.04586188122630119, + 0.043266840279102325, + 0.057672951370477676, + -0.012162735685706139, + -0.008846176788210869, + 0.08920148015022278, + -0.031577032059431076, + 0.017086036503314972, + 0.02055417373776436, + 0.0026526404544711113, + -0.06165039539337158, + -0.05966167524456978, + 0.01681925728917122, + -0.039750196039676666, + 0.03511792793869972, + 0.04389741271734238, + -0.01447886973619461, + -0.04093857854604721, + -0.041496392339468, + -0.016940521076321602, + -0.01689201407134533, + -0.0067968228831887245, + 0.05039713904261589, + 0.026338446885347366, + 0.07809373736381531, + 0.053307462483644485, + 0.04775359109044075, + -0.06504577398300171, + 0.09439156204462051, + -0.0665009394288063, + 0.006627053953707218, + -0.012168798595666885, + -0.03269265592098236, + 0.029879342764616013, + -0.05670284479856491, + -0.01355726644396782, + 0.052870914340019226, + -0.010155824013054371, + -0.00795488990843296, + -0.06931425631046295, + 0.013108591549098492, + 0.00923422072082758, + -0.002501060953363776, + -0.009434305131435394, + 0.009919359348714352, + 0.03198932856321335, + 0.057042382657527924, + 0.038755834102630615, + -0.041544899344444275, + -0.03489965572953224, + 0.059467654675245285, + 0.03218334913253784, + -0.008112533017992973, + 0.010434729978442192, + -0.03620930016040802, + -0.03356575593352318, + 0.033226218074560165, + -0.035457465797662735, + 0.025901896879076958, + -0.05650882050395012, + -0.019765961915254593, + -0.0036197174340486526, + 0.02510155737400055, + 0.023076456040143967, + 0.016479719430208206, + 0.03456011787056923, + -0.015267083421349525, + -0.0072091189213097095, + -0.03312920778989792, + 0.10351058095693588, + 0.069944828748703, + 0.06781058758497238, + 0.008251985535025597, + -0.06436669826507568, + -0.0112350694835186, + -0.030412903055548668, + 0.01835930347442627, + 0.03797974810004234, + 0.01365427765995264, + -0.03405081108212471, + 0.00785787869244814, + 0.008706724271178246, + 0.03184381127357483, + -0.03618504852056503, + 0.023476626724004745, + -0.016831383109092712, + -0.04702601209282875, + 0.008258048444986343, + 0.033881042152643204, + 0.013569393195211887, + -0.06848966330289841, + 0.03286242485046387, + -0.02638695202767849, + -0.0337112732231617, + 0.014660765416920185, + 0.010968289338052273, + -0.003425695700570941, + 0.04537682607769966, + 0.05544170364737511, + 0.049135997891426086, + -0.010640878230333328, + -0.023549385368824005, + -0.01696477271616459, + 0.022142726927995682, + 0.0387800894677639, + 0.049087490886449814, + 0.01627357117831707, + -0.015545989386737347, + -0.00941611547023058, + -0.0254653487354517, + 0.007196992635726929, + 0.01942642405629158, + -0.017874250188469887, + 0.02752682939171791, + -0.011938397772610188, + -0.023949554190039635, + 0.05966167524456978, + -0.07920936495065689, + 0.04896622896194458, + 0.006141999736428261 + ] + }, + { + "id": "812e7fb0-f923-4e23-92d4-556bd71cadf8", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "trandonna", + "reviewDate": "2021-12-10T18:42:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d5cc1a1b-b11d-4f75-8344-371adc40d722", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alechansen", + "reviewDate": "2021-03-21T11:21:36", + "stars": 4, + "verifiedUser": true + }, + { + "id": "196052f7-3ac5-41e2-b8c5-6077e374e5c5", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qbartlett", + "reviewDate": "2021-07-28T10:58:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f8587cae-f36e-4410-9c15-5eaa9af4ae47", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathryn31", + "reviewDate": "2022-12-06T19:48:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "12c2ae60-d40f-41d1-942a-d3517adda735", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marianunez", + "reviewDate": "2021-01-08T16:41:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e876816e-dd33-4b1f-8b6c-fa10a69a20f8", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gloria56", + "reviewDate": "2022-09-11T09:47:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ddc429a9-bc5b-4a0e-b55f-b6edcdfaaf6e", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "noahfields", + "reviewDate": "2021-05-24T08:29:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a8cdf4e2-7abe-4100-906e-189a1f0f1388", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jonathan40", + "reviewDate": "2022-04-02T11:21:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e32a4c44-03d7-4316-bae9-eba3d082d7ed", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cassidypetersen", + "reviewDate": "2022-06-29T09:58:20", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d892821c-8261-49a0-a19c-f08d54135a9f", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnortega", + "reviewDate": "2022-12-27T13:36:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2936dd06-d130-46b2-94fd-34ad5f38d5e8", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dmyers", + "reviewDate": "2021-03-21T19:36:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5d32a6d2-0fab-4ac1-9829-bcc99b49fcee", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlesreynolds", + "reviewDate": "2022-11-16T05:00:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "489abce7-65c2-4522-a082-6272cec52e07", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jperez", + "reviewDate": "2022-03-26T11:28:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8f29504e-a7f3-438a-b68c-ce895a7b1d3b", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bryan46", + "reviewDate": "2022-10-18T11:35:50", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e01519c5-3b25-4550-9ded-3e62cf548b50", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "devin91", + "reviewDate": "2022-06-19T13:46:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "58e082d0-ed63-493e-bc25-3b7940ef23fa", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marquezemily", + "reviewDate": "2021-02-22T19:43:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e0bc20f3-8e02-474a-8e62-7972583f860b", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christine86", + "reviewDate": "2022-07-20T01:24:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7568aa70-d93b-4009-99ad-b8357c2688b3", + "productId": "d7f298cc-dad1-4bd5-a321-03ce7429f1c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bday", + "reviewDate": "2021-03-09T10:06:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ed151cb3-f29b-4b10-83ed-dba836421376", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer + (Steel)", + "description": "This Amazing Computer + (Steel) is a digital tool that will turn even your most serious gaming equipment into a fully functional gaming computer.\n\nFeatures of Cyberpunk 2049\n\nYou will take on the role of the Cyberpunk 2049 robot, fighting cyber thieves, stealing technology and other goods!\n\nFight off attacks by cyber bandits and cyber robots alike, including robots from other universes!\n\nCreate", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-04-15T16:33:32", + "price": 1034.76, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-01-24T20:45:33", + "newPrice": 999.55 + }, + { + "priceDate": "2022-12-02T20:45:33", + "newPrice": 1009.89 + }, + { + "priceDate": "2023-03-18T20:45:33", + "newPrice": 1034.76 + } + ], + "descriptionVector": [ + -0.025285812094807625, + -0.03345291689038277, + -0.05230870842933655, + -0.07598351687192917, + 0.028129590675234795, + -0.03866417706012726, + -0.03328481316566467, + 0.035218022763729095, + 0.078617163002491, + 0.1673206239938736, + 0.052028533071279526, + -0.0625351071357727, + 0.04653710126876831, + 0.012026520445942879, + 0.005911696702241898, + -4.0466711652697995e-05, + -0.027303073555231094, + 0.0334809347987175, + -0.008013010956346989, + -0.07575937360525131, + 0.08147494494915009, + -0.012993124313652515, + -0.0675782561302185, + 0.022862296551465988, + -0.021223271265625954, + -0.02908218465745449, + -0.0017598504200577736, + -0.0026494066696614027, + -0.021265298128128052, + -0.00038130092434585094, + 0.045836661010980606, + 0.026182372123003006, + 0.0033253293950110674, + 0.040765490382909775, + 0.04603278636932373, + 0.012152599170804024, + -0.03020288608968258, + -0.0392245277762413, + 0.05651133880019188, + -0.022091813385486603, + 0.003271045396104455, + -0.021279307082295418, + -0.004325204528868198, + -0.008118076249957085, + 0.019135965034365654, + 0.021251289173960686, + 0.017763108015060425, + -0.05208456888794899, + -0.030539097264409065, + 0.003053909633308649, + 0.04676124081015587, + -0.006647156551480293, + -0.00391544820740819, + 0.002504065865650773, + 0.030539097264409065, + -0.049871183931827545, + 0.10450534522533417, + 0.03084728866815567, + -0.009021641686558723, + -0.06612134724855423, + -0.006979864556342363, + 0.04415561258792877, + -0.001348343095742166, + -0.006549095269292593, + 0.016684433445334435, + -0.061526473611593246, + -0.02029869332909584, + 0.05071171000599861, + -0.00442676804959774, + 0.02497761882841587, + -0.05275699123740196, + 0.01651632785797119, + -0.007613760884851217, + 0.01568981073796749, + 0.018869798630475998, + 0.01000925898551941, + 0.06488857418298721, + 0.03353697061538696, + 0.040149107575416565, + -0.048610396683216095, + 0.007613760884851217, + 0.10433724522590637, + -0.01014934666454792, + -0.039392631500959396, + 0.05208456888794899, + -0.02580413594841957, + -0.01749694161117077, + -0.18278630077838898, + 0.01605403795838356, + 0.02346467226743698, + -0.013938715681433678, + 0.04575261101126671, + 0.03897237032651901, + -0.050263430923223495, + -0.016040030866861343, + 0.049114711582660675, + -0.09537163376808167, + 0.00973608810454607, + -0.010751723311841488, + 0.0009517201106064022, + 0.026574617251753807, + -0.033060673624277115, + 0.003705316921696067, + -0.06937137991189957, + -0.010191372595727444, + -0.026014266535639763, + 0.017286809161305428, + 0.07239726930856705, + -0.02854985184967518, + -0.07379814982414246, + -0.10276826471090317, + -0.0003600688942242414, + -0.005635023582726717, + -0.00636347895488143, + 0.06909120082855225, + 0.016894564032554626, + -0.06920327246189117, + 0.02141939289867878, + -0.03580639138817787, + -0.06528081744909286, + -0.0017090686596930027, + 0.007823891937732697, + 0.0853973999619484, + -0.024179119616746902, + -0.03303265571594238, + 0.02871795743703842, + -0.006423016544431448, + -0.01651632785797119, + 0.001104065333493054, + 0.048218149691820145, + -0.04967506229877472, + 0.028886063024401665, + 0.02479550428688526, + 0.08091459423303604, + 0.03121151775121689, + 0.009280803613364697, + -0.010744718834757805, + 0.03320075944066048, + -0.02649056538939476, + 0.04297887533903122, + -0.004952096380293369, + 0.023338593542575836, + -0.08651810139417648, + -0.013231273740530014, + -0.06068594753742218, + 0.03359300643205643, + -0.03978487849235535, + 0.01878574676811695, + -0.01793121173977852, + 0.02119525335729122, + -0.045472435653209686, + -0.012068546377122402, + -0.098621666431427, + -0.034461550414562225, + 0.10344067960977554, + -0.020887060090899467, + -0.05794022977352142, + 0.007753848563879728, + -0.016068046912550926, + 0.07379814982414246, + 0.05068369209766388, + -0.019878430292010307, + -0.07637576013803482, + 0.06533685326576233, + 0.016614388674497604, + -0.011192998848855495, + 0.09139315038919449, + 0.04636899381875992, + -0.06970758736133575, + 0.052280690521001816, + 0.019458167254924774, + -0.04194222763180733, + 0.028269676491618156, + 0.029222272336483, + 0.04084954410791397, + -0.006885305512696505, + 0.06791447103023529, + 0.0036667929962277412, + 0.009077676571905613, + -0.02268018200993538, + 0.00942789576947689, + 0.03541414439678192, + -0.04211033135652542, + 0.04286680370569229, + 0.05850058048963547, + 0.07704818248748779, + 0.033172741532325745, + 0.0037263301201164722, + 0.046845294535160065, + -0.030174868181347847, + 0.0018876803806051612, + -0.0820913314819336, + 0.015255539678037167, + -0.059621281921863556, + -0.02220388501882553, + 0.0288300272077322, + 0.014877302572131157, + -0.03776761516928673, + -0.013896689750254154, + 0.043931469321250916, + -0.013056164607405663, + 0.01914997398853302, + 0.08819915354251862, + -0.014751223847270012, + 0.007396625354886055, + 0.015269548632204533, + -0.015815889462828636, + -0.02141939289867878, + 0.051664307713508606, + -0.02275022678077221, + 0.019696315750479698, + 0.025243785232305527, + -0.043315086513757706, + -0.023856917396187782, + -0.025972241535782814, + -0.05850058048963547, + 0.017987247556447983, + 0.008125080727040768, + -0.09150522202253342, + -0.02268018200993538, + -0.03171583265066147, + -0.005246280692517757, + -0.041521962732076645, + 0.002894560107961297, + -0.0055859931744635105, + -0.04488406702876091, + 0.09223367273807526, + 0.049871183931827545, + -0.0016539092175662518, + -0.010142342187464237, + -0.04370732977986336, + 0.04664916917681694, + 0.05737987905740738, + 0.029866676777601242, + 0.04188619181513786, + 0.031043412163853645, + -0.004703441169112921, + -0.0004198250244371593, + -0.07346193492412567, + 0.035582251846790314, + 0.04390345513820648, + -0.030427025631070137, + -0.03272446244955063, + -0.06606531143188477, + 0.07906544208526611, + -0.009357851929962635, + 0.0476578027009964, + 0.036983124911785126, + -0.00522876949980855, + 0.026476556435227394, + -0.004983616527169943, + 0.051524218171834946, + -0.005361852701753378, + 0.08735862374305725, + 0.05110395699739456, + 0.006377487909048796, + 0.03236023709177971, + -0.038103826344013214, + 0.06006956100463867, + -0.020929086953401566, + -0.07598351687192917, + -0.049759116023778915, + -0.005099188536405563, + 0.05135611444711685, + -0.05135611444711685, + -0.01734284497797489, + 0.009357851929962635, + 0.017861168831586838, + -0.013196251355111599, + -0.007284555118530989, + 0.006839776877313852, + -0.0510479211807251, + -0.0434831902384758, + 0.01277598924934864, + 0.03202402591705322, + -0.01573183760046959, + -0.04337112233042717, + 0.096884585916996, + 0.015998004004359245, + -0.0221338402479887, + 0.04098962992429733, + -0.016782494261860847, + 0.08741465955972672, + 0.005817137658596039, + 0.004080051090568304, + -0.05558675900101662, + -0.005137712694704533, + 0.005603503901511431, + 0.005768106784671545, + 0.018869798630475998, + 0.022918330505490303, + -0.017230775207281113, + 0.02447330392897129, + 0.04782590642571449, + 0.05850058048963547, + 0.009813136421144009, + -0.029810640960931778, + -0.021517455577850342, + 0.014569110237061977, + -0.003610757878050208, + 0.033705078065395355, + -0.0017782369395717978, + -0.019668299704790115, + -0.009007632732391357, + -0.055558741092681885, + 0.11946670711040497, + 0.06567306816577911, + 0.0217415951192379, + -0.03801977261900902, + -0.03510595113039017, + 0.08399652689695358, + -0.02864791452884674, + -0.08354824036359787, + 0.04841427505016327, + 0.02630845084786415, + -0.05059964209794998, + 0.03846805542707443, + 0.02263815514743328, + -0.015773864462971687, + -0.0032185125164687634, + 0.011879428289830685, + -0.052897077053785324, + -0.03247230499982834, + 0.07547919452190399, + 0.02983865886926651, + -0.011354099959135056, + -0.006521077826619148, + 0.02832571230828762, + -0.03776761516928673, + -0.08326806873083115, + 0.02436123415827751, + 0.06656962633132935, + 0.0019104445818811655, + 0.02871795743703842, + 0.009785118512809277, + -0.036590881645679474, + -0.05550270527601242, + 0.11487182974815369, + 0.0006636650068685412, + -0.00787992775440216, + 0.0417461059987545, + -0.020929086953401566, + -0.007844905368983746, + 0.0004570357850752771, + -0.05463416501879692, + -0.06903516501188278, + 0.032192129641771317, + -0.047965992242097855, + -0.02944641374051571, + 0.03283653408288956, + 0.001772108138538897, + -0.08590171486139297, + -0.03020288608968258, + -0.0477418527007103, + 0.10052686184644699, + 0.00532683078199625, + 0.05015135928988457, + -0.04664916917681694, + -0.015451662242412567, + 0.025131715461611748, + 0.000878174148965627, + -0.02818562462925911, + 0.061750613152980804, + 0.0560910739004612, + -0.04538838192820549, + 0.007284555118530989, + -0.03552621603012085, + 0.0360025130212307, + -0.009743092581629753, + 0.006349470466375351, + 0.044043540954589844, + -0.051272060722112656, + -0.08091459423303604, + 0.05110395699739456, + -0.04970308020710945, + -0.06741015613079071, + 0.020648911595344543, + -0.0039644790813326836, + -0.08377238363027573, + 0.050991885364055634, + 0.009778114035725594, + 0.014877302572131157, + 0.017552975565195084, + -0.01304916013032198, + 0.04415561258792877, + -0.025860169902443886, + 0.025005636736750603, + -0.05320527032017708, + -0.0064650424756109715, + 0.022161858156323433, + 0.0576600544154644, + -0.003404128598049283, + -0.07116450369358063, + 0.05799626559019089, + 0.017552975565195084, + 0.030763236805796623, + 0.03653484582901001, + 0.0801861435174942, + 0.019878430292010307, + -0.012972111813724041, + 0.02112521044909954, + 0.03639475628733635, + 0.0325283408164978, + 0.004713947884738445, + -0.020284684374928474, + -0.05749195069074631, + -0.025005636736750603, + -0.07043604552745819, + -0.07553523033857346, + -0.04208231344819069, + 0.04541639983654022, + 0.016306197270751, + -0.02997874654829502, + 0.005134210456162691, + 0.09369058907032013, + 0.03628268837928772, + 0.03729131817817688, + 0.05407381430268288, + 0.01958424597978592, + -0.020999131724238396, + 0.0035564738791435957, + 0.057071685791015625, + 0.01667042449116707, + 0.07503091543912888, + -0.06752222031354904, + 0.020901069045066833, + -0.004889057017862797, + 0.04706943407654762, + -0.04154998064041138, + -0.08993624150753021, + -0.03818788006901741, + -0.0636558011174202, + -0.009007632732391357, + 0.029754605144262314, + 0.008489308878779411, + -0.010394499637186527, + 0.07110846787691116, + 0.04858237877488136, + 0.009462917223572731, + 0.028423773124814034, + -0.012173612602055073, + -0.055810898542404175, + 0.018519580364227295, + -0.08831122517585754, + -0.02770932763814926, + 0.010989871807396412, + -0.08450084179639816, + 0.01644628494977951, + 0.04250257834792137, + -0.039000388234853745, + -0.07973786443471909, + -0.05082378163933754, + -0.031911954283714294, + 0.005635023582726717, + -0.009245781227946281, + -0.008510321378707886, + -0.017987247556447983, + 0.049114711582660675, + 0.0035652294754981995, + 0.060517843812704086, + 0.06544892489910126, + 0.021433401852846146, + 0.01864565908908844, + -0.018995879217982292, + 0.003988994285464287, + -0.0007354599074460566, + -0.054045796394348145, + -0.05799626559019089, + -0.021615516394376755, + 0.030062798410654068, + -0.04617287218570709, + -0.06079801917076111, + 0.060013528913259506, + 0.08203529566526413, + -0.006780239753425121, + -0.08819915354251862, + 0.008699439465999603, + -0.03070720098912716, + 0.0006487806676886976, + 0.027597256004810333, + 0.035218022763729095, + -0.06343166530132294, + -0.01206154190003872, + -0.07222916930913925, + -0.004748969804495573, + 0.035694319754838943, + 0.010891810990869999, + -0.008650409057736397, + -0.022259918972849846, + 0.0333968847990036, + 0.04084954410791397, + -0.001281801494769752, + -0.022161858156323433, + -0.037207264453172684, + -0.058612652122974396, + -0.010429522022604942, + -0.016530336812138557, + 0.0510479211807251, + -0.029642535373568535, + 0.10943643003702164, + -0.07744042575359344, + -0.0735740065574646, + -0.02396898902952671, + 0.046200890094041824, + -0.009869171306490898, + 0.01896786130964756, + 0.07077225297689438, + 0.11016488820314407, + -0.010324455797672272, + -0.006517575588077307, + 0.02699488028883934, + 0.016390249133110046 + ] + }, + { + "id": "9c2a3e46-0296-4ab3-bfa3-c3382e283aa5", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "todd20", + "reviewDate": "2022-07-07T05:26:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9f2209ad-9412-4747-9e5a-87abd7a92cba", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "hugheskatie", + "reviewDate": "2021-06-09T16:24:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ec98dc4b-ab9e-40bf-9d8e-81a86dad3e96", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonyanichols", + "reviewDate": "2022-08-11T21:38:19", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b96b8b5b-9896-4e73-991c-00000c42e8c2", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "barbaragreen", + "reviewDate": "2021-08-11T02:15:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5577e294-ae53-4a1a-97e4-0779b0acf899", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "masondonald", + "reviewDate": "2021-01-24T20:45:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7d7c0542-f0ae-4b00-bafa-634ad67c2474", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "santanatodd", + "reviewDate": "2022-01-24T21:19:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "43631bcc-8ceb-47f7-a529-c987ac87386e", + "productId": "ed151cb3-f29b-4b10-83ed-dba836421376", + "category": "Electronics", + "docType": "customerRating", + "userName": "kbest", + "reviewDate": "2022-12-03T12:45:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Mini (Silver)", + "description": "This Awesome Computer Mini (Silver) is powered by a small laptop chassis, with a 12.5x32x21.4mm touchscreen with a 2.66g VRAM system with 3.42Gps latency. The processor power is built-in and comes standard with a 3.", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-05-10T04:20:17", + "price": 942.54, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-03-29T17:58:18", + "newPrice": 850.01 + }, + { + "priceDate": "2022-09-09T17:58:18", + "newPrice": 943.62 + }, + { + "priceDate": "2023-07-07T17:58:18", + "newPrice": 942.54 + } + ], + "descriptionVector": [ + -0.03318316489458084, + 0.08792252838611603, + -0.02700955420732498, + -0.01416072342544794, + -0.02007710188627243, + 0.01740187034010887, + -0.009466205723583698, + 0.08185181021690369, + 0.04228924587368965, + 0.06194191053509712, + 0.035549718886613846, + -0.0392281636595726, + 0.05232136324048042, + -0.011929219588637352, + 0.024655863642692566, + 0.041800498962402344, + -0.062199145555496216, + 0.015961360186338425, + -0.02010282501578331, + 0.03217995539307594, + 0.0664692297577858, + -0.015035318210721016, + -0.05813485011458397, + 0.019073890522122383, + -0.017633380368351936, + -0.007588398642838001, + 0.00457554729655385, + -0.003106098622083664, + -0.041337478905916214, + -0.006668787449598312, + 0.05551106482744217, + 0.03670727089047432, + -0.0498519204556942, + -0.029967743903398514, + 0.06070718914270401, + -0.05016060173511505, + -0.04426994547247887, + -0.004678440745919943, + 0.023009568452835083, + 0.016064254567027092, + 0.025877725332975388, + 0.018572283908724785, + -0.013929212465882301, + 0.026803767308592796, + 0.009678423404693604, + 0.009871348738670349, + -0.049105942249298096, + -0.010810252279043198, + 0.04316383972764015, + -0.034289270639419556, + 0.021106036379933357, + -0.02263657934963703, + 0.07732449471950531, + 0.04514453932642937, + -0.017157496884465218, + -0.04401271045207977, + 0.006131811998784542, + 0.17100906372070312, + -0.012308639474213123, + -0.0323600172996521, + 0.01750476285815239, + -0.009491928853094578, + -0.0007415569270960987, + 0.004337605554610491, + -0.04426994547247887, + -0.010604465380311012, + -0.040874458849430084, + 0.10330511629581451, + 0.015665540471673012, + 0.01877807080745697, + -0.04712524265050888, + -0.08869422972202301, + 0.02410281077027321, + 0.03009635955095291, + 0.03943394869565964, + 0.02618640661239624, + 0.04005131125450134, + 0.026006342843174934, + 0.025208916515111923, + -0.05198695883154869, + 0.08437269926071167, + 0.0076462761498987675, + -0.025054575875401497, + -0.03374908119440079, + 0.009491928853094578, + 0.0006591617129743099, + -0.013260404579341412, + -0.13900917768478394, + 0.00980704091489315, + 0.024270012974739075, + -0.060038380324840546, + 0.08910580724477768, + 0.06616054475307465, + 0.01918964460492134, + 0.028913084417581558, + 0.036527205258607864, + -0.03174265846610069, + 0.05412200093269348, + 0.026392193511128426, + -0.0594724640250206, + 0.06744671612977982, + -0.018147848546504974, + -0.019768420606851578, + -0.08267495781183243, + -0.014225032180547714, + 0.05118953436613083, + 0.059215232729911804, + -0.006591617129743099, + 0.04192911833524704, + -0.06682935357093811, + -0.048848707228899, + -0.06595475971698761, + -0.02618640661239624, + -0.04254647716879845, + 0.05034066364169121, + 0.0007789362571202219, + -0.06086152791976929, + -0.004057863727211952, + -0.10001251846551895, + -0.03771048039197922, + 0.02845006436109543, + 0.057414595037698746, + 0.04576190188527107, + 0.018173571676015854, + -0.0367329940199852, + 0.06266216188669205, + -0.04895159974694252, + -0.0026688012294471264, + 0.004745964426547289, + -0.048642922192811966, + -0.036450035870075226, + 0.04977475106716156, + -0.009903503581881523, + -0.009633407928049564, + -0.006655925884842873, + 0.017993507906794548, + 0.03616707772016525, + 0.11915072053670883, + 0.01663016900420189, + 0.04969757795333862, + -0.044372837990522385, + 0.04851430281996727, + -0.06276506185531616, + -0.0775817260146141, + -0.12676483392715454, + 0.01181989535689354, + -0.1195622906088829, + 0.001823144848458469, + -0.06086152791976929, + 0.10217328369617462, + -0.006893867161124945, + -0.00019041333871427923, + -0.09759452193975449, + -0.05244998261332512, + -0.0028118875343352556, + 0.095948226749897, + -0.03488091006875038, + 0.05371042713522911, + 0.04527315869927406, + 0.05448212847113609, + 0.042109180241823196, + -0.007344026584178209, + -0.008019264787435532, + -0.04663649573922157, + -0.005549820140004158, + -0.04398698732256889, + 0.00654981704428792, + 0.09491928666830063, + -0.11308000236749649, + 0.0068166968412697315, + -0.0054404959082603455, + 0.024244289845228195, + 0.013954936526715755, + -0.014405095018446445, + 0.06065574288368225, + 0.022044939920306206, + 0.029993467032909393, + 0.008585179224610329, + -0.08277785032987595, + -0.09353023022413254, + 0.0005225062486715615, + -0.0014533712528645992, + -0.013633393682539463, + 0.04776832461357117, + -0.010533725842833519, + -0.0012845615856349468, + -0.022610854357481003, + -0.03367191180586815, + -0.02132468670606613, + -0.023009568452835083, + 0.01916392147541046, + -0.024733034893870354, + 0.028990253806114197, + 0.011742725037038326, + 0.01791633665561676, + 0.007974249310791492, + 0.004135034047067165, + 0.03176838159561157, + -0.03786482289433479, + 0.060038380324840546, + -0.04072011634707451, + 0.031176742166280746, + 0.016385795548558235, + -0.019858453422784805, + -0.0064887236803770065, + -0.018662314862012863, + -0.008051419630646706, + -0.03588412329554558, + 0.013697702437639236, + -0.0008762027719058096, + 0.051755450665950775, + 0.039562564343214035, + -0.028604403138160706, + 0.02056584693491459, + 0.048668645322322845, + -0.006276505999267101, + 0.03547254577279091, + -0.019884176552295685, + -0.01885524019598961, + -0.017607657238841057, + 0.05803195759654045, + 0.004633424803614616, + 0.02187773957848549, + -0.047485366463661194, + -0.05319596081972122, + -0.04059150069952011, + 0.02935038134455681, + 0.05162683501839638, + 0.017581934109330177, + -0.036501482129096985, + -0.09800609946250916, + 0.021581919863820076, + -0.0034501489717513323, + 0.015536924824118614, + -0.04946606978774071, + 0.01882951706647873, + 0.008405116386711597, + -0.012366517446935177, + -0.04843713343143463, + 0.069710373878479, + -0.024681588634848595, + 0.00447908416390419, + -0.018546560779213905, + -0.05244998261332512, + 0.009350450709462166, + 0.01618000864982605, + 0.028192829340696335, + 0.006186474114656448, + -0.013594808988273144, + -0.0030851985793560743, + -0.00579097680747509, + 0.017736272886395454, + -0.013942074961960316, + 0.07799330353736877, + -0.01219931524246931, + 0.05036638677120209, + 0.05499659851193428, + -0.017131773754954338, + -0.001106909359805286, + 0.0002493962529115379, + -0.04841141030192375, + -0.07079075276851654, + -0.00852730218321085, + 0.010861699469387531, + -0.041311755776405334, + -0.009871348738670349, + 0.09810899198055267, + -0.004340821411460638, + 0.03449505940079689, + 0.04792266711592674, + 0.01873948611319065, + -0.05906089022755623, + -0.009909934364259243, + 0.03225712478160858, + -0.04424422234296799, + -0.06698369234800339, + -0.055253829807043076, + 0.00033741845982149243, + -0.06153033673763275, + 0.033440399914979935, + 0.05983259156346321, + 0.03372335806488991, + 0.06837275624275208, + 0.014340787194669247, + 0.0481027290225029, + 0.0028729804325848818, + 4.51164050900843e-05, + -0.04074584320187569, + -0.034314993768930435, + 0.009427620097994804, + -0.017749136313796043, + 0.006720234174281359, + 0.055356722325086594, + 0.09569098800420761, + 0.01621859334409237, + 0.024681588634848595, + 0.05293872579932213, + -0.03539537638425827, + -0.011626970022916794, + -0.024205705150961876, + -0.007189685944467783, + -0.018237879499793053, + -0.06075863540172577, + 0.0045273154973983765, + -0.008900291286408901, + 0.09985817968845367, + -0.061375997960567474, + 0.007324733771383762, + -0.05581974610686302, + 0.017813444137573242, + 0.08401257544755936, + 0.042134903371334076, + -0.04154326766729355, + -0.001250799628905952, + 0.021080313250422478, + -0.06461714208126068, + 0.013363298028707504, + 0.026932382956147194, + -0.018456527963280678, + -0.008231483399868011, + 0.060912974178791046, + -0.021504750475287437, + -0.10263630747795105, + 0.06086152791976929, + 0.046096306294202805, + 0.027832701802253723, + -0.07717015594244003, + 0.0489773228764534, + -0.05324740707874298, + -0.06652067601680756, + 0.01660444401204586, + -0.03107384964823723, + 0.008019264787435532, + 0.005417987704277039, + -0.005652713589370251, + -0.08231483399868011, + -0.011189672164618969, + 0.08890001475811005, + 0.003091629361733794, + 0.11009608954191208, + 0.02919604256749153, + -0.042983777821063995, + -0.02136327140033245, + 0.017774859443306923, + -0.09965239465236664, + -0.04244358465075493, + -0.05767183005809784, + -0.015897052362561226, + -0.00773630803450942, + -0.02446293830871582, + 0.0017170358914881945, + -0.04295805096626282, + 0.056591447442770004, + -0.00644692312926054, + 0.09075210243463516, + -0.010758806020021439, + 0.03050793521106243, + 0.01287455391138792, + -0.014649467542767525, + 0.032514359802007675, + 0.026044927537441254, + -0.012790952809154987, + 0.05417344719171524, + 0.06636632978916168, + -0.030070636421442032, + 0.02450152486562729, + -0.0013070694403722882, + -0.0027089938521385193, + -0.03372335806488991, + 0.06019271910190582, + 0.04051433131098747, + -0.06482292711734772, + -0.10196749866008759, + 0.07341454178094864, + -0.00784563273191452, + -0.049105942249298096, + 0.03333750739693642, + -0.024835927411913872, + -0.0638454407453537, + 0.04532460495829582, + -0.010745944455265999, + 0.02318963222205639, + -0.055716849863529205, + -0.02356262132525444, + 0.029093148186802864, + -0.0795881524682045, + 0.022430792450904846, + -0.046070583164691925, + -0.04249503090977669, + 0.07547241449356079, + 0.0017073897179216146, + -0.010726651176810265, + 0.04571045562624931, + 0.0184308048337698, + 0.04254647716879845, + -0.02052726037800312, + 0.022096388041973114, + -0.002837610896676779, + -0.001993562327697873, + 0.027395404875278473, + -0.01965266652405262, + 0.04066867008805275, + 0.052475705742836, + -0.029556168243288994, + -0.013170372694730759, + -0.09250129014253616, + -0.05239853635430336, + 0.024372907355427742, + -0.018945273011922836, + -0.10016685724258423, + 0.06317663192749023, + -0.05818629637360573, + -0.036913055926561356, + 0.03938250243663788, + 0.042134903371334076, + -0.020797356963157654, + 0.02527322620153427, + 0.009009615518152714, + 0.015922775492072105, + -0.0323600172996521, + 0.004109310917556286, + -0.0010176814394071698, + -0.015922775492072105, + -0.003967832308262587, + -0.019408293068408966, + 0.02582627907395363, + -0.04681656137108803, + 0.026096373796463013, + 0.06466858834028244, + -0.1119481697678566, + 0.013813457451760769, + -0.0603470616042614, + -0.03308027237653732, + -0.037813376635313034, + 0.005147892516106367, + 0.014983871951699257, + 0.03799343854188919, + 0.06291940063238144, + -0.018006369471549988, + 0.033903419971466064, + -0.012655905447900295, + -0.07269428670406342, + -0.021491888910531998, + 0.015253967605531216, + -0.022546546533703804, + 0.043472521007061005, + -0.006347245071083307, + -0.00098633102606982, + 0.0629708468914032, + -0.02963333949446678, + -0.06101587042212486, + 0.009697715751826763, + 0.006752388551831245, + -0.028244275599718094, + 0.02092597261071205, + 0.03277159109711647, + 0.002028931863605976, + 0.05504804477095604, + -0.05648855119943619, + -0.004501592367887497, + 0.04470724239945412, + 0.02968478575348854, + 0.016411518678069115, + -0.041311755776405334, + -0.006617340724915266, + 0.035215314477682114, + -0.05293872579932213, + -0.03593556955456734, + -0.03246290981769562, + 0.02968478575348854, + -0.006752388551831245, + -0.0055112349800765514, + 0.03151114657521248, + 0.04679083824157715, + 0.005813485011458397, + -0.06724093109369278, + 0.050880856812000275, + 0.0011286134831607342, + -0.02366551384329796, + 0.04455290362238884, + 0.034263547509908676, + -0.0017250744858756661, + -0.01285526156425476, + -0.007279717829078436, + 0.06456569582223892, + -0.05198695883154869, + 0.014533712528645992, + 0.01117681059986353, + 0.04982619732618332, + 0.04751109331846237, + -0.03377480432391167, + 0.048668645322322845, + 0.006032133940607309, + -0.052167024463415146, + -0.03308027237653732, + -0.013337574899196625, + 0.00018428394105285406, + 0.04367830604314804, + -0.03441789001226425, + 0.0988292470574379, + -0.08226338773965836, + 0.03403203934431076, + -0.04794839024543762, + 0.06749816238880157, + 0.02014140971004963, + 0.019073890522122383, + 0.05013487860560417, + 0.0798453837633133, + -0.01831505075097084, + -0.02845006436109543, + 0.076964370906353, + -0.04766543209552765 + ] + }, + { + "id": "1f4ead68-1714-4d98-801f-9649aaba6e53", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "hallen", + "reviewDate": "2021-04-26T20:30:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d90c1202-c072-4cbc-88db-7e2b1330b864", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "carrollbruce", + "reviewDate": "2021-10-11T06:42:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dc6a5a82-2e2e-4faa-861b-21048eb02764", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher12", + "reviewDate": "2021-05-25T00:29:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e01f6541-0480-47ac-a091-f61fc503fbce", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "creid", + "reviewDate": "2021-09-12T21:10:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "21f2e623-f998-4191-95aa-68e50d031573", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "robinsonchelsey", + "reviewDate": "2022-02-15T03:30:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "abebdda2-882f-4bc2-af4c-9fac185fef27", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "arianaholmes", + "reviewDate": "2021-11-27T14:06:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e31ceb8a-710f-407d-94a7-b630ee713e58", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "mburnett", + "reviewDate": "2021-03-29T17:58:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b091c6bc-8ccb-4c75-9ae9-7e083330b6eb", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "hoffmanemma", + "reviewDate": "2022-02-06T17:21:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4b6c1a13-9e2a-409a-8b30-a0adf34231b9", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "beckernicole", + "reviewDate": "2022-03-22T02:35:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b31c272e-18d6-42ad-8f46-1d3d94c0d0c2", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "trevor10", + "reviewDate": "2021-08-20T23:13:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2825cb7c-295c-4b6e-a596-49618d84daf1", + "productId": "84d7fb69-c49a-4f91-be86-e23967ae1e51", + "category": "Electronics", + "docType": "customerRating", + "userName": "samuelgeorge", + "reviewDate": "2022-09-09T23:19:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Silver)", + "description": "This Premium Stand Micro (Silver) is part of the Premium Stand platform.\n\n\nGet it on your PC or Mac?\n\nWith today's digital sale, buy Premium Desktop Desktop Micro ($1,299) when it hits retailers on July 8th. A free trial of the premium", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-02-23T09:00:35", + "price": 1090.23, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-01-05T08:33:08", + "newPrice": 1123.75 + }, + { + "priceDate": "2021-12-31T08:33:08", + "newPrice": 1090.23 + } + ], + "descriptionVector": [ + -0.03765520453453064, + 0.0026503887493163347, + -0.03594483807682991, + 0.0241351667791605, + 0.0016560688382014632, + -0.033202823251485825, + -0.01649281568825245, + 0.0803600624203682, + 0.060813017189502716, + 0.12423230707645416, + 0.008769020438194275, + -0.06070442125201225, + 0.06374507397413254, + -0.037492312490940094, + -0.016574261710047722, + -0.017619485035538673, + -0.04172750189900398, + -0.01044545043259859, + -0.007506607100367546, + -0.012834533117711544, + 0.025166815146803856, + -0.017035789787769318, + -0.05481316149234772, + 0.017578762024641037, + -0.04449666664004326, + -0.04935627803206444, + 0.0025808203499764204, + -0.014986065216362476, + 0.05891261249780655, + 0.06124739721417427, + 0.03684074431657791, + -0.0026096657384186983, + -0.013038148172199726, + 0.01960133947432041, + -0.01242730300873518, + 0.008069941774010658, + 0.016262052580714226, + -0.0004377722798381001, + 0.05695790797472, + 0.02197684720158577, + -0.026103444397449493, + 0.04884045571088791, + 0.05983566492795944, + -0.0218818262219429, + -0.004011215642094612, + -0.03361005336046219, + 0.05196255072951317, + 0.01771450601518154, + -0.06781737506389618, + -0.024596692994236946, + 0.0024603481870144606, + 0.10609699785709381, + -0.0007402254268527031, + 0.0494648739695549, + 0.03602628409862518, + -0.022479098290205002, + 0.09241406619548798, + 0.07150959223508835, + 0.04058726131916046, + -0.05378151312470436, + 0.020972346886992455, + 0.019981419667601585, + -0.015583335421979427, + 0.02299492247402668, + -0.042623408138751984, + 0.02294062450528145, + 0.0007877355674281716, + 0.044958196580410004, + -0.010228261351585388, + 0.07954560220241547, + 0.009603841230273247, + -0.043519314378499985, + 0.04148316755890846, + 0.02224833332002163, + 0.012827745638787746, + 0.00391280185431242, + 0.04981780797243118, + -0.01278702262789011, + 0.08823317289352417, + -0.010173963382840157, + -0.0019004067871719599, + -0.017850250005722046, + -0.019737081602215767, + -0.003532720496878028, + 0.11847679316997528, + 0.0030593154951930046, + 0.03966420516371727, + -0.11076656728982925, + -0.04544687271118164, + 0.11261267960071564, + 0.035510458052158356, + 0.0746588408946991, + 0.07389867305755615, + -0.03933842107653618, + -0.007384438067674637, + -0.014483815059065819, + -0.041293125599622726, + 0.03021646849811077, + 0.0038720788434147835, + -0.053591471165418625, + 0.04083159938454628, + -0.10653137415647507, + 0.03078659065067768, + -0.06846894323825836, + -0.06260482966899872, + 0.04400799050927162, + 0.039229825139045715, + 0.05614344775676727, + -0.026999350637197495, + -0.14106447994709015, + 0.013526824302971363, + -0.03325711935758591, + 0.07389867305755615, + 0.010798382572829723, + -0.023076368495821953, + 0.05429733917117119, + -0.016560688614845276, + -0.053374283015728, + -0.022927051410079002, + -0.04780880734324455, + -0.03941986709833145, + -0.044958196580410004, + 0.04053296148777008, + 0.005904835648834705, + 0.0575551763176918, + 0.018420372158288956, + -0.05207114666700363, + 0.008836891502141953, + 0.05570906773209572, + -0.025207538157701492, + -0.03385439142584801, + 0.06846894323825836, + -0.023334281519055367, + 0.04550116881728172, + -0.03252410516142845, + 0.03841536492109299, + 0.03659640625119209, + 0.10544542968273163, + -0.01820318214595318, + 0.050415076315402985, + -0.05435163527727127, + -0.012121880427002907, + -0.02089090086519718, + 0.013275698758661747, + -0.04628847911953926, + -0.002708079759031534, + -0.07161818444728851, + 0.09876685589551926, + 0.00048570663784630597, + -0.01642494462430477, + -0.00884367898106575, + -0.11065797507762909, + -0.026212040334939957, + -0.05750088021159172, + 0.06814315915107727, + -0.021325279027223587, + -0.031492456793785095, + -0.0644509419798851, + -0.048406075686216354, + 0.07845965027809143, + -0.009332355111837387, + 0.03659640625119209, + -0.060758721083402634, + 0.017375148832798004, + 0.04884045571088791, + 0.025886256247758865, + 0.06559118628501892, + 0.00803600624203682, + -0.0025808203499764204, + 0.015162531286478043, + -0.05465026944875717, + -0.004309851210564375, + 0.010873042047023773, + -0.10756302624940872, + 0.0245831198990345, + 0.024868180975317955, + 0.030542252585291862, + -0.01840679720044136, + 0.007750944700092077, + -0.05543757975101471, + 0.014592409133911133, + 0.06423375010490417, + -0.0878530889749527, + -0.0017230920493602753, + 0.017863823100924492, + 0.03933842107653618, + 0.07623346149921417, + 0.037519458681344986, + 0.02902192622423172, + -0.021121663972735405, + -0.0010986726265400648, + -0.010771234519779682, + 0.027827385812997818, + -0.04430662840604782, + 0.05288560688495636, + -0.02785453386604786, + 0.018121736124157906, + 0.0641794502735138, + -0.026877181604504585, + 0.004649209324270487, + -0.05136528238654137, + 0.04685860127210617, + 0.06629704684019089, + 0.005592625588178635, + 0.04061440750956535, + -0.04194469377398491, + 8.977088873507455e-05, + 0.01609916053712368, + -0.0027589835226535797, + 0.020999494940042496, + 0.01193184033036232, + -0.03301278129220009, + -0.0041673206724226475, + 0.018298203125596046, + 0.05945558473467827, + 0.019560616463422775, + 0.01669643074274063, + -0.0025061615742743015, + -0.0089929960668087, + -0.040668707340955734, + 0.05641493201255798, + -0.06037864089012146, + -0.0009561421466059983, + -0.029754940420389175, + -0.028370358049869537, + -0.045039642602205276, + 0.012447664514183998, + -0.01551546435803175, + 0.06825175136327744, + -0.018936196342110634, + -0.10430518537759781, + -0.039827097207307816, + -0.014117307960987091, + 0.044686708599328995, + 0.0410759374499321, + 0.02847895398736, + -0.01867828331887722, + -0.013520036824047565, + -0.02123025804758072, + 0.052505526691675186, + -0.006885581184178591, + 0.046397075057029724, + -0.06493961811065674, + -0.007099376991391182, + -0.04061440750956535, + -0.04156460985541344, + 0.0890476331114769, + -0.03445165976881981, + -0.11185251176357269, + 0.012895617634057999, + -0.07042364776134491, + 0.03502178192138672, + -0.0701521635055542, + 0.037492312490940094, + -0.015379720367491245, + 0.02691790461540222, + 0.05380866304039955, + -0.06331069767475128, + 0.008517894893884659, + -0.021718934178352356, + -0.021216684952378273, + -0.005110736936330795, + -0.005650316830724478, + 0.026130594313144684, + -0.055600471794605255, + 0.05722939223051071, + 0.02500392310321331, + -0.061627477407455444, + -0.07438734918832779, + 0.021718934178352356, + -0.00804958026856184, + -0.032388363033533096, + 0.07009786367416382, + -0.03301278129220009, + -0.037247974425554276, + 0.000889967312105, + -0.04400799050927162, + 0.056197743862867355, + 0.024094443768262863, + -0.04634277895092964, + 0.033474307507276535, + -0.04216188192367554, + 0.045229680836200714, + 0.038931190967559814, + 0.06651423871517181, + -0.028071723878383636, + 0.025831958279013634, + -0.03648781031370163, + -0.016384221613407135, + -0.002521432703360915, + -0.04001713916659355, + -0.02326640859246254, + 0.03303993120789528, + 0.06765448302030563, + 0.047591615468263626, + -0.00724869454279542, + -0.009807456284761429, + 0.08834176510572433, + 0.0034953909926116467, + -0.0070586539804935455, + 0.018881898373365402, + 0.01161963026970625, + -0.01451096311211586, + -0.03798098862171173, + -0.004968206398189068, + 0.09138242155313492, + 0.026402080431580544, + -0.011266697198152542, + 0.028614696115255356, + 0.0062509807758033276, + 0.13085658848285675, + -0.039474163204431534, + -0.0956176146864891, + 0.09920123219490051, + 0.06765448302030563, + -0.026279911398887634, + 0.017225829884409904, + -0.013201040215790272, + 0.015583335421979427, + 0.012393367476761341, + -0.027053648605942726, + -0.03472314774990082, + -0.051310982555150986, + 0.04780880734324455, + 0.09876685589551926, + -0.011870755814015865, + -0.04547401890158653, + 0.013954415917396545, + -0.022031145170331, + -0.0027488027699291706, + -0.02524826116859913, + -0.020212184637784958, + 0.038333918899297714, + -0.0184339452534914, + 0.05831534042954445, + -0.04395369440317154, + 0.006736263632774353, + 0.029184818267822266, + 0.023972274735569954, + 0.03559190407395363, + 0.06211615353822708, + 0.03920267894864082, + -0.011728225275874138, + -0.05581766366958618, + 0.006271342281252146, + -0.02425733581185341, + 0.0126648535951972, + -0.02386368066072464, + 0.014918193221092224, + 0.041374571621418, + 0.001878348528407514, + -0.06705721467733383, + 0.027257263660430908, + 0.003515752498060465, + 0.10300204902887344, + -0.0014312438433989882, + 0.022234760224819183, + -0.007845965214073658, + 0.02599485032260418, + -0.009026932530105114, + -0.05429733917117119, + -0.06667713075876236, + 0.037166528403759, + 0.048161737620830536, + -0.0488676019012928, + 0.004839250352233648, + -0.021773232147097588, + 0.0071265255101025105, + -0.0007542239618487656, + 0.014198753982782364, + -0.020334353670477867, + -0.03279559314250946, + -0.006990781985223293, + 0.06189896538853645, + -0.034614551812410355, + 0.05378151312470436, + 0.01778237707912922, + 0.07509321719408035, + -0.008884401991963387, + 0.03912123292684555, + -0.03545616194605827, + 0.0614645853638649, + 0.04091304540634155, + 0.002930359449237585, + 0.09279415011405945, + -0.03640636429190636, + -0.0011181858135387301, + -0.027365857735276222, + -0.06586267054080963, + 0.03583624213933945, + -0.07036934792995453, + 0.034940335899591446, + -0.060813017189502716, + 0.01539329532533884, + 0.06515680253505707, + -0.028098871931433678, + 0.026931479573249817, + 0.05342857912182808, + 0.026279911398887634, + 0.023700788617134094, + 0.032334063202142715, + 0.00516503443941474, + 0.025669066235423088, + -0.015135383233428001, + -0.012400154024362564, + -0.06640564650297165, + 0.03591768816113472, + 0.020239332690835, + -0.005297383759170771, + -0.10294774919748306, + -0.01567835547029972, + -0.0794370025396347, + -0.021298130974173546, + 0.05988996475934982, + 0.045826952904462814, + 0.0013022876810282469, + 0.082749143242836, + -0.02659212052822113, + 0.022886328399181366, + -0.07444164901971817, + 0.06792596727609634, + -0.03874114900827408, + -0.050062146037817, + 0.06401655822992325, + -0.0428677462041378, + 0.013038148172199726, + -0.060487233102321625, + 0.004703506827354431, + -0.022316206246614456, + -0.009956774301826954, + -0.027935979887843132, + -0.06640564650297165, + 0.01900406740605831, + -0.023497173562645912, + 0.010900190100073814, + 0.007947772741317749, + 0.07498462498188019, + 0.08823317289352417, + -0.03141101077198982, + 0.0614645853638649, + -0.026130594313144684, + -0.05853252857923508, + 0.06613415479660034, + 0.04175465181469917, + -0.09827817976474762, + 0.009569905698299408, + -0.049600616097450256, + 0.06124739721417427, + 0.057337988168001175, + -0.010737298056483269, + -0.06341928988695145, + 0.009590267203748226, + -0.012725938111543655, + -0.0015237190527841449, + 0.02649710141122341, + 0.008368576876819134, + 0.008456810377538204, + 0.016479242593050003, + -0.006247587502002716, + 0.021040217950940132, + 0.026727864518761635, + 0.010364004410803318, + 0.07759089767932892, + 0.022655563428997993, + 0.0020208789501339197, + -0.04878615587949753, + -0.0656454786658287, + -0.011314207687973976, + 0.006281523033976555, + 0.03217117115855217, + -0.0350760817527771, + -0.053618621081113815, + 0.019777804613113403, + 0.023334281519055367, + 0.023347854614257812, + -0.06119309738278389, + 0.006033791694790125, + -0.020687285810709, + -0.05150102451443672, + -0.006271342281252146, + 0.050768010318279266, + 0.08817887306213379, + -0.022194037213921547, + -0.006593733094632626, + -0.0018613806460052729, + 0.009800669737160206, + -0.05717509612441063, + -0.011823245324194431, + 0.012420515529811382, + 0.06461383402347565, + 0.020239332690835, + 0.08231476694345474, + 0.043220680207014084, + -0.03800813481211662, + -0.05182680860161781, + -0.0287775881588459, + 0.02956490032374859, + 0.05063226819038391, + 0.013173891231417656, + 0.03453310579061508, + 0.009318780153989792, + -0.018067438155412674, + -0.03369149938225746, + 0.021447448059916496, + 0.016384221613407135, + 0.018759729340672493, + -0.051310982555150986, + -0.015936268493533134, + 0.03475029766559601, + 0.0025621557142585516, + 0.03366434946656227, + 0.0020836603362113237 + ] + }, + { + "id": "f42214e3-6f2e-48ae-87dd-c81abd788483", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonesbrianna", + "reviewDate": "2021-01-13T09:35:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "94ae566a-3c97-4183-971d-da55d6d5ad37", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "jamesalexander", + "reviewDate": "2021-01-28T21:30:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "dea95d35-787d-4d0c-8579-0dce943c7c69", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "padillajuan", + "reviewDate": "2022-11-06T09:12:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d9de38c3-9ef3-4a8e-a2bf-ae1fc3d15a27", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "jeffreycaldwell", + "reviewDate": "2021-01-26T00:05:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7f73b8ea-c054-49c0-81ff-f6318e03f368", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissa37", + "reviewDate": "2021-09-03T20:27:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "61371f4c-052c-4f30-8bb8-867ee80cc5f8", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "susanfrost", + "reviewDate": "2021-05-10T17:36:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7e069b1c-8dad-4475-89ef-0deae4b389fa", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "vwatson", + "reviewDate": "2021-12-15T19:26:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ed9e3bd7-5fad-4269-b072-ef80ba115df6", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "icortez", + "reviewDate": "2022-07-30T11:15:24", + "stars": 5, + "verifiedUser": true + }, + { + "id": "e2ad1302-80da-4a80-96bb-d08776af7eb0", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "kenneth50", + "reviewDate": "2021-12-23T22:50:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "11ef4849-f4b8-4cd2-ba01-d338427c0b9d", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "abigail03", + "reviewDate": "2022-08-16T08:19:34", + "stars": 5, + "verifiedUser": false + }, + { + "id": "fac93520-46a7-4c6c-825b-da13f2d7db59", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "scottcolleen", + "reviewDate": "2022-07-24T19:38:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bfb487c3-bcf3-445e-bd1a-4ad4d76a9a1e", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "laura10", + "reviewDate": "2022-02-10T06:08:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f6494a17-bc7b-463f-b7b4-1f91972b16db", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "ruthhunt", + "reviewDate": "2021-01-05T08:33:08", + "stars": 5, + "verifiedUser": true + }, + { + "id": "793733ff-e606-4acb-a1ea-63e5d7b52313", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "jcarpenter", + "reviewDate": "2021-08-27T22:24:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "25c4b048-9f43-4ea0-8ee0-1ab119a1c68b", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael19", + "reviewDate": "2022-11-17T23:07:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d7533f15-7410-4b86-9f9e-ed94e6afd6ad", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "illoyd", + "reviewDate": "2021-12-25T12:41:20", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f591d962-88a6-4b8c-a597-3d2bcd6c6172", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarah45", + "reviewDate": "2021-07-25T04:12:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "983de35f-6ce5-4373-acb7-c08c613b88af", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "tramirez", + "reviewDate": "2022-12-13T03:39:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d6b8b106-238c-42af-a5a3-740f71b9a2e5", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "willie84", + "reviewDate": "2021-04-28T23:43:15", + "stars": 5, + "verifiedUser": true + }, + { + "id": "3a99004e-43af-4f1e-bbe7-33bc49ab9462", + "productId": "8717225c-5869-4f0f-b7ea-0fc222047a4d", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicolemoyer", + "reviewDate": "2022-10-01T16:03:26", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c748cf92-4202-404a-a66c-978f6de79bf3", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Mini (Silver)", + "description": "This Luxe Mouse Mini (Silver) is an excellent alternative to the standard mouse for an increased durability. Designed by a German company, the Luxe Mouse Mini is made from top-of-the", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-11-05T14:49:53", + "price": 890.5, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-01-11T10:14:20", + "newPrice": 811.01 + }, + { + "priceDate": "2021-11-25T10:14:20", + "newPrice": 879.3 + }, + { + "priceDate": "2022-10-09T10:14:20", + "newPrice": 950.82 + }, + { + "priceDate": "2023-02-01T10:14:20", + "newPrice": 890.5 + } + ], + "descriptionVector": [ + -0.06340184807777405, + 0.03214429318904877, + -0.0330532006919384, + -0.0067835538648068905, + 0.06632808595895767, + -0.017524180933833122, + -0.06176137551665306, + 0.0106962900608778, + -0.007747882977128029, + 0.029927443712949753, + -0.0038240624126046896, + 0.033186208456754684, + 0.019862955436110497, + -0.03507053107023239, + 0.0291737150400877, + -0.01980753429234028, + -0.058303095400333405, + -0.046864159405231476, + -0.01733574829995632, + -9.785304428078234e-05, + -0.0004974051844328642, + -0.11935508251190186, + -0.022966543212532997, + 0.02737806923687458, + -0.0011541463900357485, + -0.020627768710255623, + 0.026491330936551094, + 0.03245465084910393, + 0.039016518741846085, + 0.02706770971417427, + 0.012691453099250793, + 0.0018912481609731913, + -0.04225311800837517, + 0.02700120583176613, + -0.018488509580492973, + -0.06499797850847244, + 0.05617492273449898, + -0.035048361867666245, + 0.0212041474878788, + 0.08078192919492722, + 0.02303304709494114, + 0.006866685580462217, + -0.012225914746522903, + -0.03407295048236847, + 0.030082622542977333, + -0.0001913763117045164, + -0.05081015080213547, + 0.038617487996816635, + -0.007149334065616131, + 0.031922608613967896, + -0.01602780818939209, + 0.03196694329380989, + -0.06588471680879593, + -0.01469770073890686, + 0.007803304120898247, + -0.07843207567930222, + -0.011294838972389698, + 0.16324865818023682, + 0.04677548632025719, + -0.023321237415075302, + -0.012037483043968678, + -0.07054009288549423, + 0.01721382327377796, + -0.004588874988257885, + -0.03469366580247879, + -0.036533650010824203, + -0.020195482298731804, + -0.03303103148937225, + 0.04333937168121338, + 0.020250903442502022, + -0.06858927011489868, + -0.06592904776334763, + 0.008473900146782398, + 0.007071744184941053, + 0.03664449229836464, + -0.007531740237027407, + 2.4181825210689567e-05, + -0.023742439225316048, + 0.004896462429314852, + -0.006395605858415365, + 0.06623940914869308, + -0.07062876969575882, + -0.05382506176829338, + -0.018676942214369774, + 0.07333332300186157, + 0.01699213683605194, + 0.05568721517920494, + -0.04455864056944847, + -0.008058241568505764, + 0.06819023936986923, + -0.0396815724670887, + 0.030769845470786095, + 0.05652961507439613, + -0.013511686585843563, + -0.07807737588882446, + -0.0075483666732907295, + 0.033097535371780396, + 0.030836351215839386, + 0.009488108567893505, + -0.039548564702272415, + 0.016471179202198982, + 0.02210197225213051, + -0.07750099897384644, + 0.03163441643118858, + 0.04859330132603645, + 0.021714024245738983, + -0.009842803701758385, + -0.03786375746130943, + -0.029373232275247574, + -0.07923013716936111, + 0.07674726843833923, + -0.009759671986103058, + -0.03950422629714012, + -0.00735439220443368, + -0.012979643419384956, + -0.02380894497036934, + -0.07643690705299377, + 0.02434098720550537, + -0.049347031861543655, + 0.014065898954868317, + 0.09372831881046295, + 0.03183393180370331, + 0.01314590685069561, + 0.08313179016113281, + -0.01388855092227459, + -0.022334741428494453, + -0.004236950073391199, + -0.03245465084910393, + 0.04311768710613251, + -0.05245061591267586, + -0.08410720527172089, + 0.07692461460828781, + -0.01395505666732788, + 0.0036411723122000694, + -0.07116080820560455, + 0.042740825563669205, + 0.008130288682878017, + -0.033407896757125854, + -0.04387141764163971, + 0.060785964131355286, + -0.015440343879163265, + -0.041809748858213425, + -0.03533655405044556, + -0.07590486854314804, + -0.06269245594739914, + -0.0778113529086113, + -0.08375250548124313, + -0.0037437016144394875, + -0.0831761285662651, + 0.058214422315359116, + 0.04611043259501457, + -0.048903658986091614, + -0.007991735823452473, + -0.06442159414291382, + 0.018588267266750336, + 0.10312775522470474, + -0.10321643203496933, + -0.01897621713578701, + -0.04369406774640083, + 0.06858927011489868, + 0.03389560058712959, + 0.018887542188167572, + -0.051918573677539825, + 0.011660618707537651, + -0.038307130336761475, + 0.01260277908295393, + 0.01944175362586975, + 0.052228931337594986, + -0.0685005933046341, + 0.03209995478391647, + -0.0591454952955246, + -0.0684562548995018, + -0.0057638040743768215, + -0.03167875483632088, + 0.043428048491477966, + 0.02052800916135311, + 0.05471180006861687, + 0.004378274083137512, + 0.018399836495518684, + -0.026801688596606255, + 0.02653566747903824, + 0.09284158051013947, + -0.07164851576089859, + 0.025560254231095314, + 0.08734379708766937, + -0.029506243765354156, + 0.023631596937775612, + 0.00779776182025671, + -0.016903463751077652, + -0.014730952680110931, + -0.04076782986521721, + -0.024052796885371208, + -0.01470878440886736, + -0.017657192423939705, + -0.008967149071395397, + 0.05280531197786331, + 0.016759369522333145, + 0.075417160987854, + 0.04770656302571297, + 0.015274080447852612, + -0.005869104526937008, + 0.07798869907855988, + 0.0032061159145087004, + 0.0019009469542652369, + 0.010746168904006481, + -0.026668677106499672, + 0.01244760025292635, + -0.02480652555823326, + 0.020605599507689476, + -0.03358524292707443, + -0.024540504440665245, + -0.0022251608315855265, + 0.0268460251390934, + 0.06185005232691765, + 0.07302296161651611, + 0.08410720527172089, + 0.0513421930372715, + -0.005808141082525253, + -0.03609028086066246, + -0.07754532992839813, + 0.0295727476477623, + -0.012890969403088093, + 0.047263193875551224, + -0.02108222246170044, + -0.07124948501586914, + -0.035203542560338974, + 0.039548564702272415, + 0.05559854209423065, + 0.0863683894276619, + 0.05147520452737808, + -0.026469161733984947, + -0.03382909670472145, + 0.0029373231809586287, + 0.006816806737333536, + -0.01032496802508831, + 0.029971780255436897, + -0.09514710307121277, + -0.04916968196630478, + 0.02653566747903824, + 0.03797459974884987, + -0.04602175951004028, + -0.028353482484817505, + -0.022700520232319832, + -0.007404271513223648, + 0.027954449877142906, + -0.009488108567893505, + 0.07954049855470657, + -0.050898823887109756, + -0.054800476878881454, + -0.004561163950711489, + -0.0369548499584198, + -0.030437318608164787, + -0.05865779146552086, + 0.1104876920580864, + -0.025382906198501587, + 0.01568419672548771, + 0.06774686276912689, + 0.0010017380118370056, + 0.01674828492105007, + -0.026158802211284637, + 0.003871170338243246, + -0.024451829493045807, + -0.023365575820207596, + 0.03755339980125427, + -0.039637237787246704, + 0.024318819865584373, + 0.00871221162378788, + -0.06034259498119354, + 0.015772871673107147, + 0.023077385500073433, + -0.09399434179067612, + -0.02784360758960247, + 0.05564287677407265, + -0.023831112310290337, + 0.00480501726269722, + -0.025471581146121025, + -0.05777105316519737, + 0.06353485584259033, + 0.03611245006322861, + -0.003402861300855875, + 0.07253525406122208, + 0.01875453256070614, + 0.014121320098638535, + 0.03203345090150833, + 0.057372018694877625, + -0.002347087487578392, + 0.007492945063859224, + 0.01649334654211998, + -0.011100864969193935, + -0.04690849781036377, + -0.019796449691057205, + 0.03837363421916962, + 0.014520352706313133, + -0.06198306381702423, + 0.04695283621549606, + -0.004475261550396681, + 0.08831921219825745, + 0.04956871643662453, + -0.04766222462058067, + 0.011405681259930134, + -0.0054423613473773, + -0.013079401105642319, + -0.07878676801919937, + -0.03207778558135033, + 0.03704352676868439, + 0.07297862321138382, + -0.026668677106499672, + 0.02130390703678131, + -0.048105593770742416, + -0.009011485613882542, + 0.07124948501586914, + 0.03524787724018097, + -0.050056420266628265, + 0.005941151641309261, + 0.09080208092927933, + -0.05559854209423065, + -0.00941051822155714, + -0.01306831743568182, + 0.06960901618003845, + 0.02808746136724949, + -0.006068620830774307, + -0.0221684779971838, + -0.08308745175600052, + 0.08432888984680176, + 0.07590486854314804, + -0.03959289938211441, + -0.05085448548197746, + 0.019308743998408318, + 0.02855299785733223, + -0.04846028983592987, + -0.045622725039720535, + -0.03797459974884987, + -0.05280531197786331, + -0.058923810720443726, + -0.021968960762023926, + -0.08348648250102997, + -0.013600360602140427, + 0.03531438484787941, + 0.05546553060412407, + 0.0025230497121810913, + 0.02064993605017662, + -0.006318015977740288, + -0.012979643419384956, + 0.043206360191106796, + -0.005539348348975182, + -0.03010479174554348, + -0.04806125909090042, + -0.010552194900810719, + 0.008684501051902771, + 0.0855259820818901, + 0.0006307624280452728, + -0.07940748333930969, + 0.016415758058428764, + 0.003397319233044982, + 0.03431680426001549, + 0.015063480474054813, + 0.04930269345641136, + -0.016482261940836906, + -0.007260176353156567, + 0.10392582416534424, + 0.04234179109334946, + -0.004422611091285944, + -0.03389560058712959, + 0.05041111633181572, + -0.040169280022382736, + 0.019851870834827423, + -0.04176541045308113, + -0.037464726716279984, + -0.014476015232503414, + 0.03462716192007065, + -0.022645099088549614, + -0.06437725573778152, + 0.013633613474667072, + 0.05648528039455414, + -0.033806927502155304, + 0.019973797723650932, + 0.10933493077754974, + 0.023609427735209465, + -0.06774686276912689, + 0.00962666142731905, + -0.02268943563103676, + -0.0007523426902480423, + 0.010435810312628746, + 0.02520555816590786, + 0.03934904560446739, + -0.049347031861543655, + -0.039637237787246704, + 0.030237803235650063, + 0.02948407456278801, + -0.018920795992016792, + 0.012968558818101883, + -0.05874646455049515, + 0.017590686678886414, + -0.025072548538446426, + 0.06810156255960464, + 0.021348243579268456, + 0.013256749138236046, + 0.015063480474054813, + -0.03895001485943794, + -0.04837161675095558, + 0.006412231829017401, + -0.02558242343366146, + -0.017280327156186104, + -0.03407295048236847, + -0.0005701454938389361, + -0.016670694574713707, + 0.01723599061369896, + 0.07723497599363327, + -0.042120106518268585, + -0.11297056078910828, + -0.07510679960250854, + -0.0268238577991724, + 0.04214227572083473, + 0.015706365928053856, + 0.009925935417413712, + -0.004228637088090181, + 0.09638854116201401, + -0.025471581146121025, + -0.0016238410025835037, + -0.03471583500504494, + 0.05688431113958359, + -0.021503422409296036, + 0.0002760668285191059, + 0.004616585560142994, + 0.0036910513881593943, + 0.05023377016186714, + -0.08060458302497864, + 0.011937725357711315, + 0.05085448548197746, + -0.017158402130007744, + 0.03252115473151207, + -0.06969769299030304, + -0.06739217042922974, + -0.026158802211284637, + 0.01551793422549963, + 0.052938323467969894, + 0.0064842794090509415, + -0.004868751857429743, + 0.05692864954471588, + 0.08428455144166946, + -0.0007083521340973675, + -0.048194270581007004, + 0.034494150429964066, + 0.012757958844304085, + -0.07510679960250854, + 0.012137241661548615, + -0.07373235374689102, + 0.034738004207611084, + -0.0108958063647151, + -0.04327286779880524, + 0.027976617217063904, + -0.030481655150651932, + 0.01825574040412903, + -0.030237803235650063, + 0.03451631963253021, + -0.023454248905181885, + 0.013578192330896854, + 0.11084238439798355, + 0.018211403861641884, + -0.023853281512856483, + 0.029461905360221863, + 0.05515517294406891, + 0.0026325066573917866, + 0.0412333682179451, + 0.011959893628954887, + -0.044935502111911774, + -0.011771460995078087, + 0.058214422315359116, + -0.008119205012917519, + 0.05582022666931152, + 0.02932889573276043, + 0.007964025251567364, + -0.05302699655294418, + 0.0025078090839087963, + 0.012469768524169922, + -0.008967149071395397, + -0.01587262935936451, + 0.012192662805318832, + -0.03591293469071388, + 0.017324665561318398, + 0.002776601817458868, + 0.06158402934670448, + -0.0021877516992390156, + 0.06810156255960464, + 0.06903263926506042, + -0.07249092310667038, + 0.12627165019512177, + -0.036444976925849915, + 0.0933736264705658, + 0.0016044435324147344, + -0.01711406372487545, + 0.010469063185155392, + -0.07674726843833923, + -0.05998789891600609, + -0.021370412781834602, + 0.023897618055343628, + -0.014121320098638535, + 0.02442966215312481, + -0.021137643605470657, + 0.07847640663385391, + 0.0295505803078413, + 0.008956064470112324, + -0.022922204807400703, + 0.05351470410823822, + 0.0008195408736355603, + 0.002815396524965763, + -0.027178553864359856, + 0.02111547440290451, + 0.01469770073890686, + -0.061096321791410446, + 0.04566706344485283, + -0.03471583500504494 + ] + }, + { + "id": "9836555e-f9c2-47fa-aecf-4287773e3195", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nblack", + "reviewDate": "2022-06-28T08:17:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cbf1577c-1286-4706-9525-e136b796b533", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas54", + "reviewDate": "2022-08-26T13:13:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5f7cc887-a7ed-4102-9ad4-56f45da5d71f", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisa81", + "reviewDate": "2021-01-11T10:14:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c5ce564f-892d-43f0-98e3-1e9edde2cf76", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeremy81", + "reviewDate": "2022-03-09T00:04:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "aa4e67c7-000a-4bcf-b600-a966144ea8b2", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gzavala", + "reviewDate": "2021-01-30T23:46:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e5fafb45-3f14-4d68-8f6e-be467c626b60", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "troydavis", + "reviewDate": "2022-05-26T14:46:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "39d3e545-3973-4800-bebe-16e0cdbfa612", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garciacharles", + "reviewDate": "2022-10-11T04:38:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "81905c6b-a0da-4bf2-8677-a938b59f5eef", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "palmersandra", + "reviewDate": "2021-08-30T21:35:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c6d795c7-6df3-421d-8cf0-7a99708034d3", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "warrenjudith", + "reviewDate": "2022-03-24T23:14:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "610c50a8-4a3f-48f6-a8c9-2b030ec30f6a", + "productId": "c748cf92-4202-404a-a66c-978f6de79bf3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shannonhernandez", + "reviewDate": "2022-01-25T11:43:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "product", + "name": "Amazing Filter + (Black)", + "description": "This Amazing Filter + (Black) is a highly accurate lens to use with one of the best lenses available. This lens combines the performance and quality of", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-06-30T07:21:46", + "price": 206.55, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-06-03T07:35:43", + "newPrice": 217.35 + }, + { + "priceDate": "2022-03-10T07:35:43", + "newPrice": 190.12 + }, + { + "priceDate": "2022-12-15T07:35:43", + "newPrice": 189.5 + }, + { + "priceDate": "2024-12-17T07:35:43", + "newPrice": 206.55 + } + ], + "descriptionVector": [ + 0.02914448082447052, + 0.0025067066308110952, + -0.0023721184115856886, + 0.0016028240788727999, + 0.02914448082447052, + -0.02554730325937271, + -0.084912970662117, + -0.030416950583457947, + 0.00794070865958929, + 0.06744096428155899, + 0.02425036020576954, + 0.030588245019316673, + 0.0329618938267231, + -0.04960189759731293, + 0.002603059634566307, + -0.01006965059787035, + -0.009237649850547314, + -0.015710122883319855, + -0.006466355174779892, + 0.0032607070170342922, + 0.008907296694815159, + -0.0791379064321518, + -0.061616960912942886, + -0.0020249418448656797, + -0.024923302233219147, + 0.009390591643750668, + -0.00965976808220148, + 0.046836722642183304, + -0.031077656894922256, + -0.02752942033112049, + 0.10483203828334808, + 0.03061271645128727, + 0.039862602949142456, + 0.046616487205028534, + -0.10610450804233551, + 0.0001761691819410771, + 0.07096473127603531, + 0.007194355130195618, + -0.04370448365807533, + 0.05740801990032196, + -0.006558119785040617, + -0.008289414457976818, + -0.06029554829001427, + 0.052905429154634476, + 0.03550683706998825, + -0.02929130382835865, + -0.0016303535085171461, + -0.06499390304088593, + -0.04798683896660805, + 0.03208095207810402, + 0.04145319014787674, + -0.0409882478415966, + -0.0045698839239776134, + -0.07610355317592621, + 0.0021381182596087456, + 0.05138825252652168, + 0.07228614389896393, + 0.17755864560604095, + 0.12636615335941315, + -0.036436717957258224, + 0.0069312965497374535, + 0.013324239291250706, + 0.028801891952753067, + -0.03624095395207405, + -0.04333742707967758, + -0.09470120817422867, + -0.019074829295277596, + -0.04035201296210289, + 0.008173178881406784, + 0.03200754150748253, + -0.01589365303516388, + -0.028508244082331657, + 0.051143545657396317, + -0.012932710349559784, + 0.0454174280166626, + 0.035922836512327194, + 0.09049226343631744, + 0.0615190789103508, + -0.019087065011262894, + 0.04341083765029907, + 0.04965084046125412, + 0.0011998239206150174, + -0.06259578466415405, + 0.09122638404369354, + 0.01087106205523014, + 0.02278212457895279, + 0.052171312272548676, + -0.05398213490843773, + 0.020090360194444656, + -0.01391153410077095, + -0.031444717198610306, + 0.08089978992938995, + 0.009506826288998127, + -0.05779954791069031, + 0.046910133212804794, + 0.03455248102545738, + -0.005261178128421307, + 0.021105889230966568, + -0.015551064163446426, + 0.04443860426545143, + -0.004582119174301624, + -0.05549931153655052, + 0.003087883349508047, + 0.06347672641277313, + -0.004429177846759558, + -0.021105889230966568, + -0.05726119503378868, + -0.10992191731929779, + 0.009109179489314556, + -0.05677178502082825, + -0.04204048588871956, + -0.0769355520606041, + -0.051143545657396317, + 0.0461270734667778, + 0.013984945602715015, + -0.035629186779260635, + -0.0798720270395279, + 0.03885930776596069, + 0.0673920214176178, + -0.017300711944699287, + -0.05476519465446472, + 0.05985507741570473, + 0.06998590379953384, + 0.025180242955684662, + 0.0041080014780163765, + -0.011299298144876957, + -0.01135435700416565, + 0.014560004696249962, + 0.02907106839120388, + -0.021424006670713425, + -0.06269367039203644, + -0.01809600554406643, + 0.0717967301607132, + -0.004637178033590317, + -0.0446588397026062, + -0.0013833533739671111, + 0.021056948229670525, + 0.06563013792037964, + -0.032619304955005646, + 0.034528009593486786, + 0.03227671608328819, + -0.06915390491485596, + 0.033647071570158005, + 0.0483538992702961, + 0.07825696468353271, + -0.05549931153655052, + 0.03602071851491928, + 0.05133930966258049, + -0.038418836891651154, + -0.019099300727248192, + 0.032839540392160416, + -0.15132616460323334, + -0.06675578653812408, + -0.09636520594358444, + 0.061323314905166626, + -0.006552002392709255, + -0.005359060596674681, + 0.00018066182383336127, + -0.05266072228550911, + 0.041551072150468826, + -0.07879532128572464, + -0.03770918771624565, + 0.028092244639992714, + 0.06817508488893509, + 0.027040008455514908, + 0.05535249039530754, + 0.0016104711685329676, + 0.04018072038888931, + -0.0380762480199337, + 0.05961037427186966, + 0.13928663730621338, + 0.008491297252476215, + -0.030000951141119003, + -0.03751342371106148, + -0.040376484394073486, + -0.0052214134484529495, + 0.0615190789103508, + 0.009127532131969929, + -0.04806024953722954, + -0.050556253641843796, + -0.00575059000402689, + -0.01580800488591194, + -0.046763308346271515, + -0.020237183198332787, + -0.0002343824307899922, + -0.07791437953710556, + 0.041991543024778366, + 0.022292712703347206, + 0.03156707063317299, + 0.01639529876410961, + -0.00039267659303732216, + -0.019466359168291092, + 0.0519755482673645, + 0.011293180286884308, + 0.006747766863554716, + 0.026012243703007698, + -0.060442373156547546, + -0.07590778917074203, + 0.018854593858122826, + -0.04994448646903038, + 0.009219297207891941, + 0.04091483727097511, + 0.08266167342662811, + 0.014657887630164623, + -0.031958598643541336, + 0.007261649239808321, + 0.04336189851164818, + 0.035115305334329605, + -0.041330836713314056, + -0.009714826941490173, + 0.0014032357139512897, + -0.008209885098040104, + -0.012302592396736145, + 0.021424006670713425, + 0.04955295845866203, + 0.045221660286188126, + -0.03655907139182091, + -0.04091483727097511, + 0.023039067164063454, + -0.007371766958385706, + -0.02212141826748848, + -0.013385416008532047, + 0.01479247584939003, + 0.007824473083019257, + 0.008173178881406784, + -0.005924943368881941, + 0.05647813528776169, + -0.014816946350038052, + 0.0673430785536766, + 0.02292894944548607, + -0.024495067074894905, + 0.022292712703347206, + 0.0035298834554851055, + 0.038198601454496384, + -0.012492239475250244, + -0.018695535138249397, + -0.06753884255886078, + -0.04044989496469498, + 0.02811671607196331, + 0.03983813151717186, + 0.04784001410007477, + -0.03934871777892113, + -0.04108612984418869, + 0.02584094926714897, + 0.0571143701672554, + 0.00311082461848855, + -0.014608945697546005, + -0.00999623816460371, + -0.07091578841209412, + -0.027700714766979218, + -0.0009344709105789661, + 0.039373189210891724, + -0.03866354376077652, + 0.0747331976890564, + -0.05403107777237892, + 0.03685271739959717, + 0.013373181223869324, + -0.06303625553846359, + -0.03396518900990486, + -0.10307015478610992, + 0.008693179115653038, + 0.016811300069093704, + 0.05882731452584267, + 0.04815813526511192, + -0.07669084519147873, + -0.044560957700014114, + -0.009464003145694733, + -0.05868048965930939, + -0.010442826896905899, + 0.06186166778206825, + 0.013887063600122929, + -0.004765648860484362, + -0.02182777225971222, + -0.02166871353983879, + -0.0075063556432724, + 0.029413657262921333, + -0.05109460651874542, + 0.005352942738682032, + 0.05065413564443588, + 0.04089036583900452, + 0.07424379140138626, + 0.018695535138249397, + 0.06582590192556381, + -0.005827060900628567, + 0.04840283840894699, + -0.008289414457976818, + 0.07962732017040253, + -0.01325082778930664, + -0.026305891573429108, + -0.006998590659350157, + -0.01150118000805378, + -0.0024638832546770573, + 0.0005532648647204041, + -0.06744096428155899, + 0.03017224557697773, + -0.004545413423329592, + 0.013581180945038795, + -0.05447154864668846, + -0.00901129748672247, + 0.04996895790100098, + 0.01706824079155922, + -0.02021271176636219, + 0.028018832206726074, + -0.03487059846520424, + -0.014180710539221764, + 0.09391815215349197, + 0.004768707323819399, + 0.012859297916293144, + 0.03381836414337158, + -0.04886778071522713, + 0.026599537581205368, + 0.04377789795398712, + -0.021399537101387978, + 0.00934164971113205, + -0.018866829574108124, + -0.023920007050037384, + -0.015367534942924976, + -0.02256188914179802, + 0.04218730702996254, + 0.012724709697067738, + -0.05339484289288521, + 0.02774965576827526, + 0.0571143701672554, + 0.11912286281585693, + 0.018340712413191795, + 0.01288376934826374, + -0.012241415679454803, + -0.03609412908554077, + -0.083493672311306, + -0.042358603328466415, + -0.03991154208779335, + -0.03675483539700508, + 0.011378827504813671, + -0.014009416103363037, + -0.030221186578273773, + -0.07385226339101791, + -0.0003389559860806912, + 0.02262306585907936, + -0.0028615302871912718, + 0.01816941797733307, + 0.033720482140779495, + -0.010773180052638054, + -0.017839064821600914, + 0.035873893648386, + 0.042725659906864166, + -0.06797931343317032, + 0.011654121801257133, + -0.07233507931232452, + 0.04840283840894699, + -0.008619767613708973, + 0.0009551179828122258, + 0.00131758872885257, + 0.02504565566778183, + -0.023234831169247627, + 0.019662125036120415, + -0.020702123641967773, + 0.02190118283033371, + -0.05187766253948212, + 0.06621743738651276, + -0.011831533163785934, + -0.007787767332047224, + 0.011874357238411903, + 0.012100709602236748, + -0.044120486825704575, + -0.019148241728544235, + 0.06269367039203644, + -0.02313694916665554, + 0.043973661959171295, + -0.02892424538731575, + -0.03653459995985031, + -0.03582495450973511, + 0.020518595352768898, + 0.004784001503139734, + 0.03450354188680649, + -0.09636520594358444, + -0.06362354755401611, + 0.044634368270635605, + 0.0013466475065797567, + 0.0381007194519043, + 0.04752189666032791, + 0.00503176636993885, + -0.012944945134222507, + 0.028361421078443527, + -0.022439537569880486, + 0.10816003382205963, + -0.0012617651373147964, + -0.11608850955963135, + -0.010718121193349361, + -0.038272012025117874, + 0.014731299132108688, + -0.061763785779476166, + -0.013116239570081234, + -0.028581656515598297, + -0.014400945976376534, + 0.04216283932328224, + -0.008081414736807346, + -0.005946354940533638, + 0.04069460183382034, + 0.029413657262921333, + 0.0023721184115856886, + 0.010595767758786678, + 0.005830119363963604, + -0.01262682769447565, + -0.03690166026353836, + -0.04304377734661102, + 0.021766595542430878, + 0.07336284965276718, + 0.06856661289930344, + 0.03677930682897568, + -0.05721225589513779, + -0.02373647876083851, + -0.014547769911587238, + -0.06416190415620804, + -0.04311719164252281, + 0.0790889710187912, + 0.013593416661024094, + 0.023846596479415894, + -0.02907106839120388, + 0.023173654451966286, + -0.049675311893224716, + 0.0329374223947525, + 0.04145319014787674, + -0.021277183666825294, + -0.018560947850346565, + -0.06269367039203644, + 0.07625038176774979, + 0.050996724516153336, + 0.032545894384384155, + -0.05226919427514076, + 0.011452239006757736, + 0.02174212411046028, + -0.07164990901947021, + 0.0026183538138866425, + 0.012908239848911762, + -0.019821183755993843, + -0.029046596959233284, + 0.04402260109782219, + 0.049014605581760406, + -0.02796989120543003, + 0.013520004227757454, + -0.03450354188680649, + -0.03597177565097809, + 0.009145885705947876, + 0.06034449115395546, + -0.15788428485393524, + -0.07600567489862442, + -0.022586360573768616, + 0.018622124567627907, + -0.0028661186806857586, + -0.08231908828020096, + -0.04806024953722954, + 0.04774213209748268, + -0.015465416945517063, + -8.158458513207734e-05, + 0.018805652856826782, + -0.008852237835526466, + -0.02606118470430374, + 0.15024946630001068, + 0.022060243412852287, + 0.028361421078443527, + -0.05985507741570473, + 0.06215531378984451, + 0.03391624614596367, + -0.03068612702190876, + -0.012822592630982399, + -0.05388425290584564, + -0.08882826566696167, + 0.0013275298988446593, + -0.023418361321091652, + -0.004447530955076218, + 0.009274356067180634, + -0.045588720589876175, + 0.011629651300609112, + 0.0018062358722090721, + -0.041991543024778366, + 0.01150118000805378, + -0.03795389458537102, + 0.04196707159280777, + -0.0005700884503312409, + -0.0065030609257519245, + -0.04446307197213173, + -0.01624847576022148, + -0.02774965576827526, + 0.04164895415306091, + 0.07561413943767548, + 0.004239530768245459, + 0.045001424849033356, + 0.003835765877738595, + 0.02043294720351696, + 0.034601423889398575, + 0.043753426522016525, + 0.028899773955345154, + -0.05589084327220917, + -0.025155773386359215, + -0.04365554451942444, + -0.011293180286884308, + -0.02929130382835865, + 0.00937835592776537, + -0.04216283932328224, + 0.03766024857759476, + 0.0432150736451149, + 0.034748245030641556, + -0.06425978243350983, + 0.052611783146858215, + -0.01911153644323349, + 0.0036705895327031612, + 0.03770918771624565, + -0.058044254779815674, + -0.017092712223529816, + -0.017374122515320778, + -0.00482988404110074, + 0.04137977957725525 + ] + }, + { + "id": "b217514c-bb54-442c-b3ae-0c5528c131fe", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "kim85", + "reviewDate": "2021-12-13T00:32:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "69552fb7-1fab-47a2-9d1f-4fcdef2dfa8b", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "mooreleslie", + "reviewDate": "2021-12-29T07:57:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "90a05391-63aa-4afa-85eb-a0006f349144", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "marykrueger", + "reviewDate": "2021-06-03T07:35:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7d7236bc-3696-4c05-a297-dc536c9b5889", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "amyhopkins", + "reviewDate": "2022-01-30T11:00:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "827150f0-40f9-4351-923d-cb6fd61b0c3f", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "michelle78", + "reviewDate": "2022-06-03T15:49:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7a778d03-adbd-45cd-8c34-082c3e916d6f", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "maureen35", + "reviewDate": "2021-07-23T13:09:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8acbe4cf-4cc4-449d-aa37-b2fa9e77009f", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "davidjensen", + "reviewDate": "2022-04-08T13:10:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ae185c73-5b33-4908-ac2b-0dc33bad6b09", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "powersbrittney", + "reviewDate": "2021-10-01T02:50:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "266a23fd-195f-404f-be49-2361f4441b76", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "ronald56", + "reviewDate": "2022-10-21T22:39:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cfb1b56e-8353-4934-9cd8-49afb1752700", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "harrisonamanda", + "reviewDate": "2022-01-10T17:12:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "da470c3d-1acf-49ab-88c5-a4f1e67da3c2", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "stricklandjohn", + "reviewDate": "2022-12-16T12:26:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8c9bfedf-3cf6-481a-9d35-f106a146493f", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "monique64", + "reviewDate": "2022-06-09T07:47:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "530625ea-5b70-4c92-8cce-01e783ec16f9", + "productId": "f871b233-7d03-4a21-9b8d-de3595e8f9fd", + "category": "Other", + "docType": "customerRating", + "userName": "rothyvonne", + "reviewDate": "2022-11-22T23:44:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "31273cbc-158b-4599-8d40-ee72ff807018", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Red)", + "description": "This Premium Keyboard Mini (Red) is designed with the utmost effort to avoid your eyes. You will notice different colors of the soft gray, red, and white keys that are printed on the screen. The design of the keyboard is based most closely upon the color palette used on these keyboards. For example,", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-07-29T03:46:56", + "price": 461.12, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-01-24T05:07:26", + "newPrice": 469.77 + }, + { + "priceDate": "2021-07-29T05:07:26", + "newPrice": 433.04 + }, + { + "priceDate": "2022-01-31T05:07:26", + "newPrice": 424.87 + }, + { + "priceDate": "2022-08-05T05:07:26", + "newPrice": 443.1 + }, + { + "priceDate": "2023-07-26T05:07:26", + "newPrice": 461.12 + } + ], + "descriptionVector": [ + -0.03687431290745735, + 0.0010121158557012677, + -0.03624338656663895, + 0.015890073031187057, + 0.02434919960796833, + -0.04061315581202507, + 0.04248257726430893, + -0.012186283245682716, + -0.02855539508163929, + 0.007559468038380146, + 0.019699016585946083, + -0.03787912800908089, + 0.015025465749204159, + -0.07225309312343597, + 0.04809083789587021, + 0.05898020789027214, + -0.03911761939525604, + -0.009639197960495949, + -0.005543999373912811, + -0.007495206780731678, + 0.016883201897144318, + -0.06580359488725662, + -0.03883720561861992, + -0.023367753252387047, + -0.018086640164256096, + 0.015527872368693352, + 0.014908626675605774, + 0.009370469488203526, + 0.00586822722107172, + 0.016018595546483994, + 0.05159600079059601, + -0.027457110583782196, + -0.030050931498408318, + -0.010188340209424496, + -0.045239970088005066, + -0.00513798464089632, + -0.02869560196995735, + -0.0012698913924396038, + 0.03182687982916832, + 0.020458467304706573, + 0.0041098035871982574, + 0.04037947952747345, + 0.004936438053846359, + -0.045333441346883774, + -0.061503928154706955, + 0.04474924877285957, + 0.014616529457271099, + -0.007845723070204258, + -0.005932488478720188, + -0.026499032974243164, + 0.03549561649560928, + 0.04175817593932152, + 0.013529929332435131, + 0.03710799291729927, + 0.029420001432299614, + -0.011742295697331429, + 0.007874933071434498, + 0.11842777580022812, + 0.047226227819919586, + -0.09258303791284561, + 0.0339299775660038, + -0.057858556509017944, + -0.04012243077158928, + -0.0374818779528141, + 0.024652980268001556, + -0.03428049385547638, + -0.026662606745958328, + -0.0983315035700798, + -0.002371826907619834, + 0.04051968455314636, + -0.02090245485305786, + 0.026382192969322205, + 0.02210589498281479, + 0.06528950482606888, + 0.0027968280483037233, + 0.037294935435056686, + 0.10618307441473007, + -0.014931994490325451, + 0.0479973666369915, + 0.052483972162008286, + -0.010229233652353287, + -0.03722482919692993, + -0.05636302009224892, + -0.04526333883404732, + -0.010632327757775784, + -0.022818611934781075, + 0.1053418293595314, + -0.06290598958730698, + -0.05136232078075409, + 0.06739260256290436, + -0.09393836557865143, + 0.0064319740049541, + 0.061270248144865036, + -0.014452955685555935, + 0.07416924834251404, + -0.015422716736793518, + -0.02458287589251995, + 0.04047294706106186, + -0.039234459400177, + 0.019278395920991898, + 0.03243444114923477, + -0.01643921434879303, + -0.030494917184114456, + -0.02949010394513607, + 0.05930735915899277, + 0.05879326909780502, + 0.047436539083719254, + 0.013716870918869972, + -0.010994527488946915, + -0.10851984471082687, + -0.01889282837510109, + -0.004837125074118376, + -0.0386035293340683, + -0.00042171491077169776, + -0.06407438218593597, + 0.024045418947935104, + -0.007798987440764904, + -0.010807585902512074, + 0.047950629144907, + 0.006058089900761843, + 0.010784218087792397, + 0.008675278164446354, + -0.02853202633559704, + 0.021241288632154465, + -0.053652361035346985, + -0.017444027587771416, + -0.0070512196980416775, + 0.03542551398277283, + 0.06070942431688309, + -0.03720146417617798, + -0.020131319761276245, + 0.0724867731332779, + 0.07543110847473145, + 0.12067107856273651, + 0.03710799291729927, + 0.06926202028989792, + -0.013973916880786419, + 0.08440432697534561, + -0.00450413441285491, + 0.05865306034684181, + -0.017385607585310936, + -0.005456370301544666, + 0.021323075518012047, + 0.04407158121466637, + -0.12805528938770294, + 0.025120334699749947, + -0.004323034547269344, + 0.08440432697534561, + 0.008523387834429741, + 0.03547224774956703, + -0.01608869805932045, + -0.08164692670106888, + 0.016334058716893196, + -0.05281112343072891, + 0.06281252205371857, + 0.06767301261425018, + -0.09160159528255463, + -0.012443328276276588, + 0.004244168289005756, + 0.028415188193321228, + -0.004410663619637489, + 0.01883440837264061, + 0.06393416970968246, + 0.01073164027184248, + 0.0019906405359506607, + -0.007296580821275711, + 0.014008968137204647, + 0.04372106492519379, + -0.0415712334215641, + 0.030635124072432518, + -0.07753420621156693, + 0.0328083261847496, + 0.04841798543930054, + -0.03790249675512314, + 0.04400147870182991, + -0.012700374238193035, + 0.04470251128077507, + -0.041033774614334106, + 0.02154506929218769, + -0.03603307530283928, + 0.01803990639746189, + 0.03343925625085831, + -0.07706685364246368, + -0.034350596368312836, + 0.06594379991292953, + 0.02321586199104786, + -0.006291767582297325, + 0.02493339218199253, + -0.006467025727033615, + 0.042646151036024094, + 0.047226227819919586, + 0.02855539508163929, + -0.06594379991292953, + -0.0003733363701030612, + 0.03979528322815895, + 0.03825301304459572, + 0.03346262127161026, + -0.020984241738915443, + 0.05313827097415924, + -0.0034409016370773315, + -0.017876330763101578, + 0.07033693790435791, + 0.015142303891479969, + 0.008371497504413128, + 0.021147817373275757, + 0.014149175025522709, + -0.005523552652448416, + 0.006648125592619181, + -0.003531451802700758, + 0.05921388790011406, + -0.027994567528367043, + -0.0050445138476789, + 0.025213805958628654, + -0.052390504628419876, + 0.06725239753723145, + 0.018694203346967697, + 0.004250010009855032, + 0.021323075518012047, + 0.0068292259238660336, + -0.03428049385547638, + 0.03488805517554283, + 0.04145439341664314, + 0.026171883568167686, + -0.003239354817196727, + -0.01027596928179264, + 0.04727296531200409, + 0.015504504553973675, + -0.014628213830292225, + -0.0035694243852049112, + 0.05898020789027214, + -0.12328826636075974, + -0.08043180406093597, + -0.013833709992468357, + -0.02055193856358528, + 0.03194371983408928, + 0.03243444114923477, + 0.0072440034709870815, + -0.04636162146925926, + -0.07589846104383469, + 0.05276438593864441, + -0.002066585700958967, + -0.006753280758857727, + -0.08365655690431595, + -0.02163853868842125, + 0.07477681338787079, + -0.03418702259659767, + 0.09001258760690689, + -0.07533763349056244, + -0.10777207463979721, + 0.018203480169177055, + -0.02117118425667286, + 0.009066687896847725, + -0.058933474123477936, + 0.06865446269512177, + -0.07678643614053726, + 0.03928119316697121, + 0.04631488770246506, + 0.006513761356472969, + 0.016953304409980774, + -0.0737486258149147, + 0.03320557624101639, + 0.037271566689014435, + -0.004945200867950916, + -0.010112395510077477, + -0.02306397259235382, + 0.044188421219587326, + 0.08828337490558624, + -0.12188620120286942, + -0.018764305859804153, + 0.07636582106351852, + 0.061503928154706955, + -0.023169128224253654, + 0.029910724610090256, + -0.04481935128569603, + -0.034467436373233795, + 0.030845433473587036, + -0.03582276403903961, + 0.06538297235965729, + -0.005453449208289385, + -0.015083884820342064, + -0.0009434730163775384, + 0.0585128553211689, + 0.11048273742198944, + -0.021767063066363335, + 0.036804210394620895, + 0.002490126295015216, + 0.008973217569291592, + 0.013448142446577549, + -0.08052527904510498, + -0.030868802219629288, + -0.026171883568167686, + -0.008330604061484337, + 0.023250915110111237, + 0.014756736345589161, + -0.0019512074068188667, + 0.016684575006365776, + 0.0040075695142149925, + 0.004556711763143539, + 0.0644482672214508, + -0.004130250308662653, + -0.0035781871993094683, + -0.07561805099248886, + -0.08459126949310303, + -0.0972098559141159, + 0.0008989282650873065, + 0.05430665984749794, + -0.04409494996070862, + 0.0690750777721405, + -0.010503805242478848, + 0.006402764469385147, + 0.06164413318037987, + -0.03273822367191315, + -0.03124268539249897, + 0.022853663191199303, + 0.05912041664123535, + -0.06571011990308762, + -0.01433611661195755, + 0.037271566689014435, + -0.012279754504561424, + -0.00950483325868845, + 0.0467822402715683, + -0.03858016058802605, + -0.08758234232664108, + 0.0725802406668663, + 0.02832171693444252, + -0.053792569786310196, + -0.06650462746620178, + 0.0008514625369571149, + 0.009510675445199013, + -0.03958497568964958, + -0.08473147451877594, + -0.03266811743378639, + -0.024162257090210915, + 0.014628213830292225, + 0.0643080547451973, + -0.026148516684770584, + -0.013261199928820133, + 0.05094170197844505, + 0.04615131393074989, + 0.03916435316205025, + 0.02869560196995735, + -0.01150277629494667, + 0.015247458592057228, + -0.08216102421283722, + -0.06402764469385147, + -0.058699797838926315, + -0.05570872500538826, + 0.002433167304843664, + 0.007980087772011757, + 0.013004154898226261, + 0.0014750894624739885, + -0.05701731890439987, + 0.05673690512776375, + -0.03722482919692993, + 0.004974410403519869, + 0.02014300413429737, + -0.014780104160308838, + -0.05313827097415924, + 0.019570494070649147, + 0.09739679843187332, + 0.01409075502306223, + 2.6448462449479848e-05, + 0.07159879803657532, + 0.03636022284626961, + 0.011718927882611752, + -0.003064096672460437, + -0.05841938406229019, + 0.056129343807697296, + -0.03152310103178024, + 0.0655699148774147, + 0.052390504628419876, + -0.008412390947341919, + -0.08566618710756302, + 0.10908067226409912, + 0.033392518758773804, + 0.08286205679178238, + -0.04703928902745247, + -0.01538766548037529, + -0.024395935237407684, + 0.03325231373310089, + -0.04388464242219925, + 0.03185024857521057, + -0.05005372688174248, + 0.03776228800415993, + 0.06725239753723145, + -0.0041185664013028145, + -0.06019533425569534, + -0.0065254452638328075, + -0.008126135915517807, + -0.023928578943014145, + -0.07580499351024628, + -0.044188421219587326, + -0.024839920923113823, + 0.025424115359783173, + -0.024886656552553177, + 0.0010259904665872455, + 0.00795671995729208, + 0.06608400493860245, + 0.054353393614292145, + 0.013880445621907711, + -0.025587689131498337, + 0.049446165561676025, + 0.0010457069147378206, + -0.030751964077353477, + -0.035986341536045074, + -0.10945455729961395, + -0.032598014920949936, + 0.054119717329740524, + 0.005178878549486399, + -0.019336815923452377, + -0.018437156453728676, + 0.0029399555642157793, + -0.00957493670284748, + -0.010141604579985142, + 0.0037271566689014435, + -0.021334758028388023, + 0.08636721968650818, + 0.08318920433521271, + 0.008073559030890465, + 0.021767063066363335, + 0.055755458772182465, + -0.0339767150580883, + -0.07996445149183273, + -0.013716870918869972, + -0.012630270794034004, + -0.017128562554717064, + 0.014032335951924324, + -0.0018402105197310448, + 0.03596297279000282, + -0.07323453575372696, + 0.0035285307094454765, + -0.008085242472589016, + -0.04813757166266441, + -0.07080429047346115, + 0.012256386689841747, + 0.03383650630712509, + -0.09174180030822754, + 0.015352614223957062, + -0.012525116093456745, + 0.09033973515033722, + -0.0178646482527256, + -0.06253210455179214, + -0.04238910600543022, + 0.005257744342088699, + -0.0889844074845314, + 0.04119734838604927, + 0.03841658681631088, + 0.06743933260440826, + 0.06239189952611923, + -0.00043814536184072495, + -0.04460904002189636, + -0.0274804774671793, + -0.021159499883651733, + -0.030938904732465744, + 0.07444965839385986, + -0.06454173475503922, + 0.007863248698413372, + 0.03180351108312607, + -0.005237297620624304, + 0.02107771299779415, + -0.006595548242330551, + 0.0251670703291893, + 0.012186283245682716, + 0.008517545647919178, + -0.05103517323732376, + -0.03900077939033508, + 0.03935129567980766, + 0.03607981279492378, + -0.008745381608605385, + 0.004711523186415434, + -0.02382342517375946, + -0.011596247553825378, + 0.016450898721814156, + -0.049212489277124405, + 0.061036571860313416, + -0.041594602167606354, + -0.025190437212586403, + -0.028859175741672516, + -0.03731830045580864, + -0.06332661211490631, + 0.03343925625085831, + -0.0409870408475399, + -0.018647467717528343, + -0.011894186027348042, + 0.036220017820596695, + 0.006618916057050228, + -0.020037848502397537, + 0.039140988141298294, + 0.049586374312639236, + -0.01924334466457367, + 0.006478709634393454, + 0.007448471151292324, + 0.013144360855221748, + -0.0783287063241005, + -0.0006061011226847768, + 0.0071388487704098225, + -0.04526333883404732, + -0.03547224774956703, + 0.011753980070352554, + 0.005993828643113375, + 0.07664623111486435, + -0.03182687982916832, + -0.009276998229324818, + 0.013623400591313839, + -0.030518285930156708, + 0.03161656856536865, + -0.013331303372979164, + 0.056222815066576004, + 0.04245920851826668, + -0.01310930959880352, + 0.02265503630042076, + -0.09552737325429916 + ] + }, + { + "id": "a2ece215-edd7-4d37-ad7f-56dce022abdc", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fbright", + "reviewDate": "2021-03-19T22:53:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "06aacc51-73ab-41e4-8486-457409d431d3", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas48", + "reviewDate": "2021-05-24T18:00:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b04494a7-3607-4216-8923-6651b78d0f73", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kingrobert", + "reviewDate": "2022-07-14T10:18:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7d9387f4-f18d-42ab-98a1-d369391a7960", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rpittman", + "reviewDate": "2022-05-07T13:30:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "602b2023-6841-4a3a-b317-925b1cd13926", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael60", + "reviewDate": "2022-02-16T11:40:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7ca16a13-8336-456a-95e0-26466016b1d0", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perezlindsey", + "reviewDate": "2021-02-13T23:34:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cc67c6bd-49ed-4db2-af62-5b529399eb8f", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithlori", + "reviewDate": "2022-02-20T08:10:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d34ab4a3-57ff-44df-9385-1cc21bedb721", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "barbaramartinez", + "reviewDate": "2021-01-24T05:07:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "89146569-6701-43d7-85c6-dd38b45ed3e8", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emilyjohnson", + "reviewDate": "2021-05-29T10:35:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "77a2abf4-38b5-4dff-ab59-50cff2febbac", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sara82", + "reviewDate": "2021-02-05T18:12:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1dc3da96-db02-4c31-ad03-a0dc076e0906", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenniferweber", + "reviewDate": "2022-08-05T12:07:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "db4fe616-d2f5-4131-a7ca-06fe106b43fd", + "productId": "31273cbc-158b-4599-8d40-ee72ff807018", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissaduke", + "reviewDate": "2021-09-01T14:03:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e25a7994-99c1-4118-9aa1-a0b7042f79d9", + "productId": "e25a7994-99c1-4118-9aa1-a0b7042f79d9", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Pro (Steel)", + "description": "This Premium Mouse Pro (Steel) is available in two major sizes, as well as a smaller version containing a new and improved version for those running older models or older machines.\n\nProduct Specifications", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-04-15T06:48:36", + "price": 299.8, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-06-01T11:15:22", + "newPrice": 271.43 + }, + { + "priceDate": "2021-09-13T11:15:22", + "newPrice": 313.42 + }, + { + "priceDate": "2021-12-26T11:15:22", + "newPrice": 326.36 + }, + { + "priceDate": "2022-04-09T11:15:22", + "newPrice": 282.39 + }, + { + "priceDate": "2022-07-22T11:15:22", + "newPrice": 317.65 + }, + { + "priceDate": "2023-02-21T11:15:22", + "newPrice": 299.8 + } + ], + "descriptionVector": [ + -0.0323571115732193, + -0.026702968403697014, + -0.04564434289932251, + 0.041429437696933746, + 0.0068684970028698444, + -0.010003975592553616, + 0.007433911319822073, + 0.0628637745976448, + 0.04903682693839073, + 0.048085905611515045, + 0.06882632523775101, + -0.001497062505222857, + 0.03592950105667114, + -0.03852526471018791, + 0.03744583949446678, + 0.010826395824551582, + -0.050219058990478516, + -0.0037426562048494816, + 0.0024817183148115873, + -0.07653651386499405, + 0.034850072115659714, + -0.036315008997917175, + -0.025546438992023468, + -0.02324623242020607, + 0.006502262782305479, + -0.015214781276881695, + -0.022205356508493423, + -0.01123118121176958, + -0.01294027455151081, + 0.0286819189786911, + 0.035672493278980255, + 0.0415322408080101, + -0.028579115867614746, + 0.010190305300056934, + 0.003954686690121889, + -0.014508013613522053, + -0.04047851264476776, + -0.0044462112709879875, + 0.060293711721897125, + 0.08414390683174133, + 0.02354178950190544, + 0.005721605848520994, + 0.016011500731110573, + -0.06091052666306496, + -0.01968669332563877, + 0.03428465873003006, + -0.048111606389284134, + 0.039964500814676285, + -0.005477449856698513, + 0.009175130166113377, + -0.007446761708706617, + 0.04299717769026756, + -0.0968400239944458, + 0.02065046690404415, + -0.007228306028991938, + -0.11688652634620667, + 0.06420020759105682, + 0.23253943026065826, + 0.03906497731804848, + -0.04076122120022774, + 0.011539588682353497, + -0.06728428602218628, + -0.0050726644694805145, + 0.032023001462221146, + -0.06692447513341904, + -0.08291027694940567, + -0.05993390083312988, + -0.02721698209643364, + 0.07453186810016632, + 0.07797574996948242, + -0.06353199481964111, + -0.050244759768247604, + 0.0690833330154419, + 0.023850196972489357, + -0.008545463904738426, + -0.0012280088849365711, + 0.06188714876770973, + 0.015317583456635475, + 0.06748989224433899, + -0.04155794158577919, + -0.009791945107281208, + 0.034850072115659714, + -0.03559539094567299, + 0.05762084200978279, + 0.0835270956158638, + 0.00561559060588479, + -0.0019693118520081043, + -0.0878961980342865, + 0.013088053092360497, + 0.06856931746006012, + 0.0082627572119236, + 0.03644351288676262, + 0.0810084268450737, + -0.041480839252471924, + -0.051118578761816025, + 0.023143429309129715, + -0.03081507235765457, + 0.03726593405008316, + -0.05510218068957329, + -0.025160931050777435, + 0.042560264468193054, + 0.016756819561123848, + -0.03019825555384159, + -0.00718333013355732, + 0.04374249652028084, + 0.012991675175726414, + 0.024865372106432915, + -0.029632842168211937, + -0.0672328844666481, + -0.08213925361633301, + -0.0002935495285782963, + -0.021575691178441048, + -0.0096955681219697, + -0.023438986390829086, + -0.06430301070213318, + -0.014867822639644146, + -0.07627951353788376, + -0.03425895795226097, + -0.028424911201000214, + 0.020984575152397156, + 0.03559539094567299, + 0.077101930975914, + 0.02588054910302162, + 0.054742369800806046, + -0.0628637745976448, + -0.004960224032402039, + 0.008545463904738426, + 0.04438501223921776, + -0.008070002309978008, + -0.08969524502754211, + -0.0894896388053894, + 0.08003180474042892, + 0.04024720937013626, + 0.006900622975081205, + -0.044873323291540146, + 0.012021476402878761, + 0.01522763166576624, + 0.06738708913326263, + -0.005991462618112564, + 0.08059722185134888, + -0.004963436629623175, + -0.0791579857468605, + -0.034567367285490036, + -0.01347998809069395, + -0.07648511230945587, + -0.042483165860176086, + -0.05142698809504509, + 0.03348793834447861, + -0.001085049007087946, + 0.015240482054650784, + -0.008751069195568562, + -0.10999875515699387, + 0.026497364044189453, + -0.024903923273086548, + 0.08440091460943222, + 0.008468362502753735, + -0.09391015022993088, + 0.01157813984900713, + -0.0672328844666481, + 0.0878961980342865, + 0.03968179225921631, + -0.04263736680150032, + -0.015510338358581066, + 0.02893892489373684, + 0.010672192089259624, + 0.024338509887456894, + 0.013036651536822319, + 0.011102678254246712, + -0.007061251904815435, + -0.023413285613059998, + -0.01874862052500248, + -0.046158354729413986, + 0.02306632697582245, + -0.11524168401956558, + 0.0628637745976448, + -0.050450362265110016, + -0.007819420658051968, + 0.012400561012327671, + 0.01585729792714119, + 0.029427237808704376, + 0.05212090536952019, + 0.06748989224433899, + -0.0874335914850235, + -0.0020464137196540833, + 0.07787294685840607, + 0.023644592612981796, + 0.034567367285490036, + 0.09396155178546906, + 0.015895847231149673, + -0.021691342815756798, + 0.0539199523627758, + 0.03433606028556824, + -0.019198380410671234, + -0.01953248865902424, + 0.009502813220024109, + 0.06748989224433899, + 0.018787169829010963, + 0.06774690002202988, + 0.010562964715063572, + -0.021588541567325592, + -0.017065227031707764, + 0.008982375264167786, + 0.051324184983968735, + 0.005679842084646225, + 0.047032177448272705, + -0.005406772717833519, + -0.04119813069701195, + 0.02809080295264721, + 0.02850201353430748, + -0.049191031605005264, + 0.0022793258540332317, + -0.025662092491984367, + -0.0081471037119627, + -0.013672742061316967, + 0.01856871508061886, + 0.023850196972489357, + 0.05330313369631767, + 0.029504338279366493, + -0.056901223957538605, + -0.07448046654462814, + 0.022436661645770073, + 0.005034113768488169, + 0.03451596572995186, + -0.043819598853588104, + -0.09452696889638901, + -0.02125443145632744, + 0.06887772679328918, + 0.0286819189786911, + 0.03777994588017464, + 0.004671092145144939, + -0.0027515750844031572, + -0.030095454305410385, + 0.0015356134390458465, + 0.044693417847156525, + -0.03706032782793045, + 0.07103657722473145, + -0.06990575045347214, + -0.017245132476091385, + 0.01863296702504158, + 0.01576734520494938, + -0.02744828723371029, + 0.015150529332458973, + -0.01860726624727249, + -0.010755719617009163, + 0.05122138187289238, + -0.040786921977996826, + 0.06903193145990372, + -0.006650041788816452, + -0.09195690602064133, + 0.008770344778895378, + -0.07910658419132233, + 0.00979837030172348, + -0.028759019449353218, + 0.024274257943034172, + -0.01714232936501503, + 0.03729163482785225, + 0.034361761063337326, + -0.01520193088799715, + -0.00457792729139328, + -0.030917873606085777, + -0.0114175109192729, + 0.012567615136504173, + -0.05181249603629112, + 0.0750458762049675, + -0.036546315997838974, + 0.05078447237610817, + 0.02719128131866455, + -0.06692447513341904, + -0.0392448827624321, + 0.06800390034914017, + 0.023413285613059998, + -0.019134128466248512, + 0.011411085724830627, + 0.0010392697295174003, + 0.022552315145730972, + -0.02198689989745617, + -0.03220290690660477, + 0.0796205922961235, + 0.03572389483451843, + 0.023850196972489357, + 0.04998775199055672, + 0.05936848744750023, + 0.004035001154989004, + 0.057929251343011856, + -0.019288333132863045, + -0.006113540846854448, + -0.04597845301032066, + 0.06646186113357544, + -0.013441436924040318, + -0.04279157146811485, + -0.02450556308031082, + -0.01166809257119894, + 0.05916288122534752, + -0.012079302221536636, + -0.006701442878693342, + -0.002147610066458583, + 0.0034663742408156395, + 0.040195807814598083, + 0.016422711312770844, + 0.006669316906481981, + -0.014533714391291142, + -0.0069841500371694565, + -0.06533103436231613, + 0.023310484364628792, + 0.07936358451843262, + 0.05145268887281418, + -0.010871372185647488, + -0.04032431170344353, + -0.027808096259832382, + -0.0417635478079319, + -0.0015083064790815115, + -0.01179659552872181, + -0.07884957641363144, + 0.03066086769104004, + 0.07288702577352524, + 0.008551889099180698, + 0.034001950174570084, + -0.0397074930369854, + -0.039758894592523575, + -0.011950799264013767, + -0.07674212008714676, + -0.0819336548447609, + -0.12726958096027374, + 0.07468607276678085, + 0.034593068063259125, + -0.05638721212744713, + -0.06502262502908707, + 0.03554398939013481, + 0.001468952395953238, + -0.08810180425643921, + -0.04214905574917793, + -0.021511439234018326, + -0.03963039442896843, + -0.012773219496011734, + 0.02719128131866455, + -0.006399460136890411, + -0.013467137701809406, + -0.03454166650772095, + 0.018504463136196136, + 0.001954855164512992, + 0.051992401480674744, + 0.0227193683385849, + -0.04847141355276108, + 0.06476562470197678, + 0.014623666182160378, + -0.035698194056749344, + -0.05834046006202698, + -0.0830644816160202, + -0.02414575405418873, + 0.040375709533691406, + 0.0014850152656435966, + -0.060293711721897125, + 0.05407415330410004, + 0.03667481988668442, + 0.06512542814016342, + 0.014893523417413235, + 0.015214781276881695, + 0.030326759442687035, + 0.026625866070389748, + 0.042534563690423965, + 0.004809232894331217, + -0.033333733677864075, + -0.0038679467979818583, + 0.03431035950779915, + 0.042740169912576675, + 0.00788367260247469, + -0.014109653420746326, + 0.029658542945981026, + -0.03551828861236572, + 0.00766521692276001, + 0.004905610345304012, + 6.902028690092266e-05, + 0.06651326268911362, + 0.10177455097436905, + -0.05633581057190895, + 0.08023741096258163, + 0.09303633123636246, + 0.02917023003101349, + -0.02306632697582245, + 0.017707742750644684, + 0.018029002472758293, + 0.048317208886146545, + -0.0258162971585989, + 0.007620241027325392, + 0.06060211732983589, + -0.027088478207588196, + 0.011456062085926533, + -0.019699543714523315, + 0.0061649419367313385, + -0.005310395732522011, + 0.06543383747339249, + -0.016923874616622925, + 0.004195630084723234, + -0.008603290654718876, + 0.010607941076159477, + -0.02788519859313965, + 0.013222981244325638, + 0.030737970024347305, + -0.05273772031068802, + 0.061373136937618256, + 0.025662092491984367, + 0.022359559312462807, + -0.046363960951566696, + -0.03001835197210312, + 0.04397379979491234, + -0.05458816885948181, + 0.04505322873592377, + 0.021074527874588966, + 0.012516213580965996, + -0.05726103484630585, + -0.03819115832448006, + -0.0055738273076713085, + 0.028116503730416298, + 0.026240358129143715, + 0.044256508350372314, + 0.004584352485835552, + 0.017322232946753502, + 0.025764895603060722, + 0.03857666626572609, + -0.07499448210000992, + 0.05649001523852348, + -0.04196915030479431, + -0.036700520664453506, + -0.03284542262554169, + 0.0023339397739619017, + -0.009130153805017471, + -0.1048586294054985, + 0.0543825626373291, + 0.07699912786483765, + -0.028964625671505928, + -0.00723473122343421, + -0.06728428602218628, + -0.08691957592964172, + -0.005471024662256241, + -0.03022395633161068, + 0.04880552366375923, + 0.01007465273141861, + -0.0015701487427577376, + 0.04330558329820633, + 0.011950799264013767, + -0.039964500814676285, + -0.02893892489373684, + 0.06234976276755333, + -0.015960099175572395, + -0.05679842084646225, + 0.011186204850673676, + -0.07998040318489075, + 0.013685592450201511, + 0.026728669181466103, + -0.04973074421286583, + -0.02421000599861145, + -0.026188956573605537, + -0.046363960951566696, + -0.0015211568679660559, + 0.07432626187801361, + 0.0012609378900378942, + -0.014225305989384651, + 0.017078077420592308, + 0.02976134605705738, + -0.022218206897377968, + -0.016654016450047493, + 0.053662944585084915, + 0.12295188009738922, + 0.043177083134651184, + 0.009335759095847607, + -0.02719128131866455, + 0.01865866780281067, + 0.023002076894044876, + -0.006415523122996092, + 0.04582424834370613, + -0.0060492889024317265, + 0.011905822902917862, + 0.004757831804454327, + 0.005673416890203953, + 0.032896824181079865, + -0.025135230273008347, + 0.014803570695221424, + 0.028836121782660484, + -0.023644592612981796, + 0.06671886891126633, + 0.007369659375399351, + 0.03315383195877075, + -0.055153582245111465, + 0.04949944093823433, + -0.03690612316131592, + -0.05029616132378578, + 0.005165829323232174, + 0.044050902128219604, + 0.03089217282831669, + 0.04759759083390236, + 0.0006208311533555388, + 0.06959734112024307, + -0.0031949111726135015, + -0.02003365196287632, + -0.0075302887707948685, + 0.057518038898706436, + 0.057106830179691315, + 0.008751069195568562, + 0.011970074847340584, + 0.013634191825985909, + -0.004542588721960783, + -0.008757494390010834, + -0.04214905574917793, + 0.047237783670425415, + 0.008082852698862553, + 0.042740169912576675, + -0.027165580540895462, + -0.010858521796762943, + 0.02852771431207657, + -0.06301797926425934, + 0.020984575152397156, + -0.009759819135069847 + ] + }, + { + "id": "8c081d14-4ecb-4f43-b781-e53074e250ee", + "productId": "e25a7994-99c1-4118-9aa1-a0b7042f79d9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew26", + "reviewDate": "2021-06-01T11:15:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "60c293e4-f331-45db-9ab2-d853dfdb1ce5", + "productId": "e25a7994-99c1-4118-9aa1-a0b7042f79d9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "roblesjeffrey", + "reviewDate": "2022-07-23T09:56:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "product", + "name": "Basic TV Super (Gold)", + "description": "This Basic TV Super (Gold) is a fantastic upgrade over the standard Ultra HD and Ultra FHD TV sets, yet still offers a 4K-capable HDTV viewing experience and an in", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-01-10T23:59:10", + "price": 889.08, + "stock": 58, + "priceHistory": [ + { + "priceDate": "2021-01-30T11:53:01", + "newPrice": 903.7 + }, + { + "priceDate": "2021-09-14T11:53:01", + "newPrice": 895.19 + }, + { + "priceDate": "2022-04-29T11:53:01", + "newPrice": 964.38 + }, + { + "priceDate": "2022-12-12T11:53:01", + "newPrice": 954.81 + }, + { + "priceDate": "2025-07-24T11:53:01", + "newPrice": 889.08 + } + ], + "descriptionVector": [ + 0.07281208038330078, + 0.057949505746364594, + -0.02720770426094532, + 0.05155908316373825, + -0.05862727761268616, + 0.02737714722752571, + -0.06177407503128052, + 0.021967073902487755, + 0.07048828899860382, + -0.004290538839995861, + 0.05272097885608673, + -0.053350336849689484, + 0.06918115168809891, + -0.00936172530055046, + 0.047226183116436005, + -0.0314679853618145, + 0.016472280025482178, + 0.016496486961841583, + -0.007606780156493187, + 0.020526809617877007, + 0.06647006422281265, + -0.05736855790019035, + -0.07392556220293045, + -0.02057522162795067, + -0.07528110593557358, + 0.04025481641292572, + -0.046693649142980576, + 0.03546199947595596, + 0.01958276890218258, + -0.01192757673561573, + 0.020672045648097992, + 0.03577667847275734, + -0.011879164725542068, + -0.01422110851854086, + -0.03875403478741646, + 0.06981051713228226, + -0.025489067658782005, + 0.020974623039364815, + 0.012732431292533875, + -0.03502628952264786, + 0.03171004727482796, + -0.031129099428653717, + 0.06066059321165085, + 0.042263925075531006, + 0.0873841717839241, + 0.006384369917213917, + 0.054270170629024506, + -0.0010998665820807219, + -0.011219547130167484, + -0.07397396862506866, + -0.07557157427072525, + -0.0056460825726389885, + -0.02803071215748787, + 0.01831194758415222, + 0.0016671980265527964, + 0.028829514980316162, + -0.016544898971915245, + 0.11493076384067535, + 0.05620666220784187, + 0.01115903165191412, + -0.029047371819615364, + -0.0007367744692601264, + 0.008653695695102215, + 0.002806399716064334, + -0.06971368938684464, + -0.030136646702885628, + -0.05441540852189064, + 0.0005132458754815161, + -0.005564386956393719, + 0.05586777627468109, + 0.018892893567681313, + 0.011516071856021881, + 0.03246043622493744, + 0.04301431402564049, + -0.021023035049438477, + 0.08418896049261093, + 0.03659968823194504, + 0.000315436307573691, + 0.04427303373813629, + -0.020345263183116913, + 0.0451444573700428, + 0.04620952531695366, + 0.008520562201738358, + 0.016460176557302475, + 0.09314523637294769, + 0.04749245196580887, + 0.054851118475198746, + -0.07581363618373871, + -0.07852472364902496, + 0.03597032651305199, + -0.0414167083799839, + 0.03693857416510582, + 0.04650000110268593, + -0.02580374851822853, + 0.04812180995941162, + 0.10757210105657578, + -0.09140239655971527, + 0.002429691608995199, + -0.055964600294828415, + 0.040811557322740555, + 0.05330192670226097, + -0.05814315378665924, + -0.02053891122341156, + -0.039988547563552856, + 0.032775115221738815, + -0.038608796894550323, + 0.045362312346696854, + 0.06647006422281265, + 0.005037903320044279, + -0.13313378393650055, + -0.04420041665434837, + -0.06017646938562393, + -0.0001620676921447739, + 0.0741192102432251, + 0.02476288378238678, + 0.02931363880634308, + -0.04032743349671364, + -0.019606975838541985, + 0.04502342641353607, + 0.031008068472146988, + 0.039577044546604156, + 0.07106923311948776, + -0.029967203736305237, + 0.0277402400970459, + -0.012998698279261589, + -0.030088234692811966, + -8.004101255210117e-05, + 0.07857313752174377, + 0.0287811029702425, + -0.017549453303217888, + -0.07721759378910065, + -0.019534356892108917, + -0.004877537488937378, + 0.0372774600982666, + -0.03430010378360748, + 0.032242581248283386, + -0.01892920397222042, + 0.015056220814585686, + 0.014378448948264122, + 0.03209734335541725, + -0.020103201270103455, + -0.02252381481230259, + 0.08781988173723221, + 0.0014205980114638805, + 0.0008290603873319924, + 0.05702967196702957, + 0.011794443242251873, + -0.01097143441438675, + -0.016593310981988907, + 0.017658380791544914, + 0.07029464095830917, + -0.11318792402744293, + -0.05519000440835953, + -0.08617386966943741, + 0.04272384196519852, + 0.09459760785102844, + -0.027304528281092644, + -0.020986726507544518, + -0.02645731344819069, + 0.049380529671907425, + -0.024036699905991554, + -0.046814680099487305, + -0.09972930699586868, + -0.0019576717168092728, + 0.032823529094457626, + -0.014414757490158081, + 0.0368659533560276, + 0.045071836560964584, + -0.01578240469098091, + 0.06414628028869629, + -0.010245249606668949, + -0.057659029960632324, + -0.008351119235157967, + 0.00193346559535712, + -0.01872345060110092, + -0.0025976216420531273, + 0.019643284380435944, + 0.03916553780436516, + 0.013349687680602074, + -0.06768037378787994, + -0.07227954268455505, + -0.06007964536547661, + -0.06976210325956345, + -0.033937010914087296, + 0.048557523638010025, + 0.055964600294828415, + 0.05305986478924751, + 0.04654841125011444, + -0.06893909722566605, + 0.021301405504345894, + 0.04666944220662117, + -0.02149505540728569, + -0.016254425048828125, + -0.01509253028780222, + 0.014741540886461735, + -0.004354079719632864, + 0.018832378089427948, + 0.0007730836514383554, + -0.04981623962521553, + 0.0467904731631279, + -0.013797501102089882, + 0.02744976617395878, + 0.07261842489242554, + -0.05460905656218529, + 0.0165570005774498, + -0.02803071215748787, + 0.035340968519449234, + 0.04712935909628868, + 0.0554804801940918, + 0.026844611391425133, + -0.03088703751564026, + -0.016097085550427437, + -0.010196837596595287, + -0.01161894854158163, + 0.08196199685335159, + 0.03926236182451248, + -0.016629619523882866, + -0.06855179369449615, + -0.0820104107260704, + -0.059450287371873856, + 0.036962781101465225, + -0.042796459048986435, + 0.00651145214214921, + -0.017658380791544914, + -0.002933481940999627, + -0.03577667847275734, + 0.09527537971735, + -0.08104216307401657, + -0.03570406138896942, + 0.043474230915308, + -0.1035054624080658, + -0.0683097317814827, + -0.03870562091469765, + -0.0026324179489165545, + -0.042505986988544464, + -0.025900572538375854, + -0.002618802012875676, + -0.03744690120220184, + -0.13758771121501923, + 0.026529932394623756, + -0.04749245196580887, + 0.04415200278162956, + -0.018372463062405586, + 0.016593310981988907, + 0.0894174873828888, + 0.0034433237742632627, + 0.09270952641963959, + 0.047928161919116974, + 0.006523555610328913, + -0.023782534524798393, + -0.023032143712043762, + -0.0554804801940918, + -0.03488105162978172, + 0.04630634933710098, + -0.001635427470318973, + 0.02832118608057499, + 0.015552446246147156, + 0.02761920914053917, + -0.022886907681822777, + -0.023116866126656532, + 0.025585893541574478, + 0.010136322118341923, + -0.016181806102395058, + -0.0067414105869829655, + -0.009428292512893677, + 0.0716501846909523, + -0.007624934893101454, + -0.033598124980926514, + -0.07804059982299805, + 0.04633055627346039, + -0.027183497324585915, + 0.024411894381046295, + -0.025150181725621223, + 0.07344143837690353, + 0.0015363335842266679, + -0.007540213409811258, + 0.015383003279566765, + 0.015552446246147156, + -0.0034433237742632627, + 0.04115044325590134, + 0.11541488766670227, + 0.025973191484808922, + 0.004959233570843935, + -0.0035764575004577637, + 0.0985674113035202, + -0.04497501254081726, + -0.02062363363802433, + 0.0036732822190970182, + 0.05577095225453377, + -0.012290668673813343, + -0.020490499213337898, + 0.0459674634039402, + -0.002431204542517662, + -0.05151067301630974, + 0.06433992832899094, + 0.0024009468033909798, + 0.014862571842968464, + -0.00826034601777792, + 0.0405694954097271, + 0.005261810030788183, + 0.038826651871204376, + -0.006081793457269669, + -0.01693219691514969, + -0.039601247757673264, + -0.05417334660887718, + 0.05862727761268616, + -0.011933628469705582, + 0.01051756925880909, + -0.08230088651180267, + -0.05475429445505142, + 0.03388860076665878, + 0.03887506574392319, + 0.012199895456433296, + -0.03538937866687775, + 0.0038033900782465935, + -0.002233016537502408, + -0.025198593735694885, + 0.051074959337711334, + -0.04144091531634331, + 0.014414757490158081, + -0.022753773257136345, + 0.010590187273919582, + -0.03088703751564026, + 0.054270170629024506, + 0.01465681940317154, + -0.011812597513198853, + -0.052769389003515244, + -0.003482658648863435, + 0.04236074909567833, + 0.014620509929955006, + 0.021930765360593796, + -0.018711348995566368, + -0.02108355052769184, + 0.029991410672664642, + 0.029579905793070793, + -0.06332326680421829, + 0.04688729718327522, + -0.00498041370883584, + -0.015552446246147156, + 0.025948984548449516, + 0.07852472364902496, + 0.059450287371873856, + -0.02182183787226677, + -0.06855179369449615, + -0.013410203158855438, + -0.0509297251701355, + -0.017791515216231346, + -0.015963951125741005, + 0.030281884595751762, + 0.04165877029299736, + 0.0007613588240928948, + 0.012441957369446754, + -0.02190655842423439, + 0.015274075791239738, + 0.06317803263664246, + -0.020635737106204033, + 0.00012660947686526924, + 0.01144950557500124, + 0.006699049845337868, + 0.012169637717306614, + 0.04335319995880127, + -0.057707443833351135, + -0.027231911197304726, + 0.037204839289188385, + -0.05954711139202118, + 0.08094534277915955, + -0.008090903051197529, + 0.04894481971859932, + 0.020200025290250778, + 0.027546590194106102, + 0.05267256498336792, + 0.030959656462073326, + -0.0023449701257050037, + 0.047274596989154816, + -0.023455752059817314, + 0.043885737657547, + -0.015274075791239738, + -0.013979047536849976, + 0.021833941340446472, + 0.047226183116436005, + 0.009809539653360844, + 0.02000637724995613, + 0.022124413400888443, + -0.019485944882035255, + 0.08646433800458908, + 0.04550754651427269, + -0.0641946867108345, + -0.09014367312192917, + -0.03200051933526993, + 0.007691501639783382, + -0.020091097801923752, + 0.01598815806210041, + -0.0020302901975810528, + -0.007050038781017065, + 0.0447329506278038, + 0.04853331670165062, + -0.004862409085035324, + 0.026384694501757622, + 0.006281494162976742, + -0.01054177526384592, + 0.014148490503430367, + 0.0192559864372015, + 0.005034877452999353, + -0.07624934613704681, + -0.04744403809309006, + -0.015007808804512024, + -0.026893025264143944, + 0.08341436833143234, + 0.004384337458759546, + -0.0521884448826313, + -0.05586777627468109, + -0.07852472364902496, + -0.0026430082507431507, + -0.015286179259419441, + 0.006481194868683815, + 0.05804632976651192, + 0.059111401438713074, + 0.028127538040280342, + 0.06942321360111237, + -0.016871681436896324, + 0.03701119124889374, + 0.10505466163158417, + 0.016544898971915245, + -0.03945601359009743, + 0.05877251550555229, + 0.032605674117803574, + 0.030959656462073326, + -0.006090870592743158, + -0.012454059906303883, + 0.012780843302607536, + -0.0010075806640088558, + -0.10244039446115494, + 0.07513586431741714, + -0.014148490503430367, + -0.06908433139324188, + 0.04301431402564049, + 0.04613690823316574, + -0.007630986627191305, + -0.03950442373752594, + 0.05325351282954216, + -0.029918791726231575, + -0.05891774967312813, + -0.003957704175263643, + 0.008205882273614407, + -0.051123373210430145, + -0.0823977068066597, + -0.011358732357621193, + -0.020490499213337898, + 0.006717204581946135, + 0.016375456005334854, + -0.05151067301630974, + 0.0006055317935533822, + 0.008024335838854313, + -0.019268089905381203, + -0.030572358518838882, + 0.06903591752052307, + 0.05320510268211365, + 0.06937480717897415, + 0.03304138407111168, + 0.0410052053630352, + -0.04485398158431053, + 0.028224362060427666, + 0.023637298494577408, + -0.03490525856614113, + -0.039407599717378616, + -0.0023903565015643835, + -0.08138105273246765, + -0.026021603494882584, + -0.00202877726405859, + -0.004133198875933886, + 0.030499739572405815, + -0.0794929713010788, + -0.06182248890399933, + -0.03630921244621277, + -0.011806545779109001, + 0.004136224742978811, + 0.006287545431405306, + -0.05373763665556908, + 0.06922956556081772, + -0.040400050580501556, + 0.03415486589074135, + -0.0005605234764516354, + 0.035098906606435776, + 0.06903591752052307, + 0.0447329506278038, + 0.03006402961909771, + 0.023673607036471367, + 0.11725455522537231, + 0.03909292072057724, + 0.0646304041147232, + 0.019606975838541985, + 0.002466000849381089, + 0.032944560050964355, + -0.022003384307026863, + -0.05344716086983681, + -0.03630921244621277, + 0.02219703234732151, + -0.0006399498670361936, + 0.038076262921094894, + 0.06516293436288834, + -0.10302134603261948, + 0.07436127215623856, + -0.08690005540847778, + 0.013615955598652363, + 0.0023510216269642115, + -0.021640291437506676, + 0.041925039142370224, + -0.01606077514588833, + -0.02082938514649868, + -0.016411764547228813, + -0.0012322439579293132, + -0.02062363363802433 + ] + }, + { + "id": "194b14bf-8ac1-4e0c-8a73-fcc96d87b02f", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "afields", + "reviewDate": "2022-12-14T04:41:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b0b9a7c6-9581-442a-a9b6-3e973dfc1029", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "wilsonkaren", + "reviewDate": "2022-07-07T10:50:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a65c99f3-f4f3-4acc-8028-1137e5c69c4e", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "sweeneysusan", + "reviewDate": "2021-07-30T13:16:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a9fe90b0-5110-4039-9977-78b6ba02ce36", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "mary57", + "reviewDate": "2021-01-31T13:44:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f386d791-9b0f-4497-b932-01a19cbcfebf", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "taylordenise", + "reviewDate": "2021-05-16T10:42:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a967ccf3-3262-4cbd-b9aa-1db7bf5febc1", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "joshuastewart", + "reviewDate": "2021-01-30T11:53:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4359461b-13a8-4005-a3a9-3a4c54e34ab8", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "ashley09", + "reviewDate": "2022-01-29T09:55:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "46ec9ccf-f777-4ddd-862c-c922e1732027", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "edwinparker", + "reviewDate": "2021-08-22T14:49:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8d60b5e7-8884-4c15-a466-c1144a8d291a", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "mcintyrejeffrey", + "reviewDate": "2022-01-07T02:42:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0871970c-f025-4ff6-beca-0e13646472ea", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "trevor08", + "reviewDate": "2021-08-02T21:49:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2ced4808-ee6b-4b50-b50b-4f2004f8af35", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "lopezmichael", + "reviewDate": "2022-07-11T13:51:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a6c00aa7-7906-4feb-976f-6281d253ad86", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "barbaraknapp", + "reviewDate": "2021-12-20T16:41:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dd7e7cb1-a587-4a47-a86c-4c6652b3171c", + "productId": "6cc6e8fe-bb9b-4ba6-abbd-4e9a829a160f", + "category": "Media", + "docType": "customerRating", + "userName": "justin45", + "reviewDate": "2022-06-17T17:48:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "43d76d88-20ec-400b-a3ef-225457bbb596", + "productId": "43d76d88-20ec-400b-a3ef-225457bbb596", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone 3000 (Silver)", + "description": "This Awesome Phone 3000 (Silver) is a unique phone that offers the highest resolution phone from a smartphone manufacturer, which also comes in one of the cheapest phones in the world, yet it has a lot of great features. The app was developed under Google's Android OS, so its simplicity is good. And the app should be downloaded from the Google Play Store very soon", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-05-18T21:02:09", + "price": 448.33, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2022-05-11T16:26:30", + "newPrice": 450.22 + }, + { + "priceDate": "2022-08-17T16:26:30", + "newPrice": 434.73 + }, + { + "priceDate": "2023-07-16T16:26:30", + "newPrice": 448.33 + } + ], + "descriptionVector": [ + -0.05039622634649277, + 0.021110989153385162, + -0.017594430595636368, + 0.02248500846326351, + 0.03141613304615021, + -0.0071146246045827866, + -0.010171234607696533, + 0.015556691214442253, + 0.013973075896501541, + 0.1502571403980255, + -0.03483953699469566, + -0.0775039941072464, + 0.03663274645805359, + 0.003729064716026187, + 0.0031468530651181936, + 0.03579436242580414, + -0.01839788258075714, + -0.051467496901750565, + -0.00094973249360919, + 0.009460936300456524, + 0.03805334493517876, + 0.0012459325371310115, + 0.004852732643485069, + -0.041523322463035583, + 0.0476016104221344, + -0.013635393232107162, + 0.020086295902729034, + -0.015079277567565441, + -0.011917869560420513, + -0.044527534395456314, + 0.011428811587393284, + 0.017023863270878792, + -0.021308939903974533, + 0.04087124764919281, + -0.029832517728209496, + 0.027946151793003082, + 0.016779335215687752, + -0.002256069565191865, + 0.026828305795788765, + 0.0034641583915799856, + 0.03639986366033554, + 0.027922863140702248, + 0.012680565938353539, + -0.0027582270558923483, + 0.04068493843078613, + -0.04476042091846466, + -0.032347671687603, + 0.017338259145617485, + -0.015219008550047874, + -0.008995167911052704, + 0.001061080489307642, + 0.030321573838591576, + -0.0085817975923419, + 0.04115070775151253, + 0.025058383122086525, + 0.01863076724112034, + 0.04077809303998947, + 0.10321445018053055, + 0.016790978610515594, + -0.02222883515059948, + 0.005228259135037661, + -0.0376807264983654, + 0.03719167038798332, + 0.03649301454424858, + -0.009158186614513397, + 0.017373191192746162, + -0.012657278217375278, + 0.01652316190302372, + -0.05444841831922531, + -0.0002787337580230087, + -0.00027509493520483375, + 0.013076470233500004, + -0.013111403211951256, + 0.0741504579782486, + -0.019049959257245064, + 0.0903126448392868, + 0.03777388110756874, + -0.003912461455911398, + 0.03020513243973255, + -0.011795604601502419, + 0.03658616915345192, + 0.034164171665906906, + -0.0013507306575775146, + -0.07349837571382523, + 0.03586422652006149, + 0.01537038292735815, + -0.01765265315771103, + -0.11541760712862015, + -0.03973011299967766, + 0.09385249018669128, + -0.04047534242272377, + 0.07489568740129471, + -0.055053919553756714, + 0.03407101705670357, + 0.046996112912893295, + 0.08104383945465088, + -0.015708066523075104, + 0.050722263753414154, + -0.03861226513981819, + 0.0003611530701164156, + 0.08532891422510147, + 0.02316037379205227, + 0.0020450178999453783, + -0.03232438117265701, + -0.07177503407001495, + 0.04194251447916031, + -0.05184011161327362, + 0.009321206249296665, + 0.039520516991615295, + -0.09911568462848663, + 0.007859854958951473, + -0.004028903320431709, + 0.0027349384035915136, + -0.02251994051039219, + 0.03339565172791481, + 0.05030307173728943, + 0.0021308939903974533, + -0.02543099783360958, + -0.003158497391268611, + -0.019387641921639442, + -0.049744151532649994, + -0.015323806554079056, + -0.09268806874752045, + -0.019049959257245064, + 0.007580393459647894, + -0.06395011395215988, + 0.04368915036320686, + 0.0017873892793431878, + -0.02887769043445587, + -0.0018878207774832845, + -0.04739201441407204, + -0.024569325149059296, + 0.05575257167220116, + 0.03954380378127098, + 0.004299631807953119, + 0.057662226259708405, + 0.035817649215459824, + 0.09073183685541153, + -0.014613508246839046, + 0.10759268701076508, + 0.012436037883162498, + 0.04003286361694336, + 0.02866809442639351, + 0.0003063887997996062, + -0.02369600720703602, + 0.026968035846948624, + -0.05426211282610893, + -0.003403026144951582, + 0.01234288327395916, + 0.046250879764556885, + -0.04278090223670006, + -0.10246922075748444, + -0.018910229206085205, + -0.0803917646408081, + 0.0008827782003208995, + -0.0199116338044405, + -0.04233841970562935, + -0.08262745290994644, + -0.032138075679540634, + 0.026688573881983757, + -0.03826294094324112, + -0.01962052658200264, + -0.0006495296838693321, + -0.07210107147693634, + -0.014578576199710369, + -0.024010401219129562, + 0.05663753300905228, + 0.04373572766780853, + -0.04613443836569786, + 0.031066805124282837, + 0.04573853313922882, + -0.019457507878541946, + -0.003839684883132577, + -0.05514707416296005, + -0.020586999133229256, + 0.02459261380136013, + 0.002325934823602438, + -0.008861258625984192, + 0.002104694489389658, + -0.03286001831293106, + 0.04401518777012825, + -0.035328593105077744, + -0.06492822617292404, + -0.012890162877738476, + 0.036865632981061935, + 0.06227334216237068, + 0.028691383078694344, + 0.009152364917099476, + -0.024825498461723328, + 0.0035573123022913933, + 0.019049959257245064, + 0.01583615317940712, + -0.06269253045320511, + 0.05300453305244446, + 0.05621834099292755, + -0.07578064501285553, + 0.05533337965607643, + 0.017838960513472557, + -0.015219008550047874, + 0.03500255569815636, + -0.024895362555980682, + -0.003071165643632412, + 0.12929752469062805, + -0.02227541245520115, + -0.013565528206527233, + -0.018432816490530968, + -0.006561523303389549, + 0.006153975613415241, + -0.012773720547556877, + 0.023090507835149765, + 0.015137499198317528, + -0.008878725580871105, + -0.04497001692652702, + -0.0077143022790551186, + 0.044783707708120346, + 0.03020513243973255, + 0.030484594404697418, + -0.07899445295333862, + 0.05556626617908478, + -0.0846768394112587, + 0.06790915131568909, + -0.02129729650914669, + 0.04503988102078438, + -0.006427614949643612, + -0.014811459928750992, + -0.04918522760272026, + 0.05966503545641899, + 0.07042430341243744, + 0.06967907398939133, + 0.014788172207772732, + -0.005478610284626484, + -0.024709055200219154, + -0.01755949854850769, + 0.0028761248104274273, + -0.006858451291918755, + 0.056684110313653946, + -0.0005581952864304185, + -0.00863419659435749, + -0.09417852759361267, + 0.11336822062730789, + 0.015812864527106285, + -0.022880911827087402, + -0.011318190954625607, + -0.10228291153907776, + 0.07559434324502945, + -0.031299691647291183, + -0.03306961432099342, + -0.006561523303389549, + -0.06259938329458237, + -0.015207364223897457, + -0.012692210264503956, + -0.06646526604890823, + -0.07675876468420029, + 0.03653959184885025, + 0.03069419041275978, + 0.00451213913038373, + 0.04685638099908829, + -0.042361706495285034, + 0.05728961154818535, + -0.00308572081848979, + -0.04322338104248047, + -0.006439259275794029, + -0.01637178659439087, + 0.05272507295012474, + -0.011527787894010544, + 0.08365214616060257, + 0.025594016537070274, + -0.05961845815181732, + 0.01888694055378437, + 0.0425713025033474, + 0.022391853854060173, + 0.009915061295032501, + 0.043991900980472565, + -0.0038251294754445553, + -0.028109170496463776, + 0.012424393557012081, + -0.0781094953417778, + 0.02808588184416294, + -0.008249936625361443, + -0.015708066523075104, + 0.08989345282316208, + -0.02787628583610058, + 0.1145792230963707, + 0.013705258257687092, + 0.05533337965607643, + -0.009105787612497807, + 0.005653273779898882, + -0.0692598819732666, + 0.023963825777173042, + 0.007609504275023937, + -0.026385825127363205, + 0.02729407511651516, + -0.01888694055378437, + -0.021995950490236282, + 0.01661631651222706, + 0.02140209451317787, + 0.05109488219022751, + -0.06259938329458237, + -0.015323806554079056, + 0.011155172251164913, + 0.009018455632030964, + -0.01234288327395916, + -0.07377783954143524, + -0.07587379962205887, + 0.020645219832658768, + 0.0973457619547844, + -0.03851911053061485, + 0.00704475911334157, + -0.05193326622247696, + -0.010171234607696533, + 0.09827730059623718, + -0.036469727754592896, + -0.035049133002758026, + -0.04259459301829338, + 0.013484017923474312, + -0.01952737383544445, + -0.05039622634649277, + 0.03579436242580414, + 0.02715434320271015, + 0.0016243701102212071, + 0.09320041537284851, + 0.00506523996591568, + -0.030810631811618805, + 0.04096440225839615, + 0.06390353292226791, + 0.06064314767718315, + 0.011917869560420513, + -0.0537031888961792, + -0.005385456141084433, + 0.007958831265568733, + -0.011085307225584984, + -0.03109009377658367, + 0.029250305145978928, + -0.03034486249089241, + 0.017140306532382965, + -0.03637657314538956, + 0.06348434090614319, + 0.07233395427465439, + 0.06665157526731491, + 0.042268555611371994, + 0.051420919597148895, + 0.06385695934295654, + -0.013635393232107162, + 0.025500863790512085, + -0.0005287207895889878, + -0.019049959257245064, + -0.08821668475866318, + -0.028458498418331146, + 0.07769030332565308, + -0.030624324455857277, + 0.0016039926558732986, + -0.04413163289427757, + 0.07596695423126221, + -0.013146335259079933, + 0.06534741818904877, + 0.03122982382774353, + 0.010433229617774487, + -0.06129522621631622, + -0.003758175065740943, + -0.012366171926259995, + -0.008599263615906239, + 0.020621931180357933, + 0.04215211048722267, + 0.013367575593292713, + -0.03791361302137375, + 0.057708803564310074, + 0.04552893713116646, + 0.08379187434911728, + -0.024848787114024162, + -0.0643693059682846, + 0.07992599159479141, + 0.02582690119743347, + -0.09455114603042603, + 0.013332643546164036, + -0.05617176368832588, + 0.01227301824837923, + 0.03039143979549408, + -0.030274998396635056, + -0.020191093906760216, + 0.02566388249397278, + -0.011836359277367592, + 0.030414728447794914, + 0.02517482452094555, + 0.027480382472276688, + 0.09920883923768997, + -0.02866809442639351, + 0.0006306078284978867, + 0.03379155322909355, + -0.05272507295012474, + 0.0492783822119236, + -0.027363939210772514, + 0.03663274645805359, + 0.030111977830529213, + 0.11532445251941681, + 0.011306547559797764, + -0.005140927620232105, + -0.00963560026139021, + -0.040009573101997375, + 0.007143734954297543, + -0.07824922353029251, + 0.042617879807949066, + 0.05193326622247696, + 0.048020802438259125, + 0.06269253045320511, + -0.005979312118142843, + -0.01360046025365591, + 0.022659670561552048, + -0.04725228622555733, + -0.061947301030159, + -0.06017737835645676, + -0.030810631811618805, + -0.04019588232040405, + -0.024383017793297768, + 0.03807663172483444, + -0.018549257889389992, + -0.0034932689741253853, + 0.01408951822668314, + 0.003929927479475737, + 0.10973522067070007, + -0.022694604471325874, + -0.014205960556864738, + 0.04746188223361969, + 0.03192847967147827, + 0.046250879764556885, + -0.0587334968149662, + -0.02503509446978569, + 0.04231513291597366, + 0.02021438255906105, + -0.021995950490236282, + -0.03560805320739746, + 0.03369840234518051, + -0.0034234034828841686, + 0.04590155556797981, + 0.04951126500964165, + -0.09310726076364517, + -0.07019142061471939, + -0.04105755314230919, + 0.055007342249155045, + -0.00808691792190075, + -0.023742584511637688, + -0.03423403576016426, + 0.0010028593242168427, + -0.05542653426527977, + 0.13125376403331757, + -0.11141198873519897, + -0.029040709137916565, + 0.006549879442900419, + 0.014008008874952793, + 0.015219008550047874, + -0.04191922768950462, + -0.0130066042765975, + 0.00468389131128788, + 0.0030653434805572033, + -0.013856633566319942, + 0.040009573101997375, + -0.030484594404697418, + -0.10144452750682831, + 0.0785752609372139, + -0.023544631898403168, + 0.021972661837935448, + -0.024709055200219154, + 0.04853314906358719, + 0.023870671167969704, + -0.08225484192371368, + -0.03521215170621872, + 0.018758853897452354, + -0.032044921070337296, + -0.04017259180545807, + 0.017128661274909973, + -0.0014176849508658051, + -0.05798826366662979, + -0.045272763818502426, + 0.016802623867988586, + 0.015579979866743088, + 0.0002407080610282719, + -0.0813233032822609, + 0.0643693059682846, + 0.01162676326930523, + 0.021763065829873085, + -0.016301922500133514, + 0.09930199384689331, + 0.03053116984665394, + 0.019643815234303474, + -0.02843520976603031, + 0.015288873575627804, + -0.06134180352091789, + 0.0014271459076553583, + -0.06772284209728241, + -0.004305453971028328, + 0.025337843224406242, + 0.0022662582341581583, + 0.039613671600818634, + -0.046693362295627594, + 0.008511931635439396, + -0.07219422608613968, + -0.048812612891197205, + -0.009973282925784588, + -0.023288460448384285, + -0.09892937541007996, + 0.019294489175081253, + -0.04520289972424507, + -0.048067379742860794, + -0.04313022643327713, + -0.01556833554059267, + -0.05351687967777252, + 0.013355931267142296, + -0.03244082257151604, + 0.05100172758102417, + -0.025594016537070274, + -0.0076211486011743546, + 0.10135137289762497, + -0.012447681277990341 + ] + }, + { + "id": "cb40bdee-746e-4556-8b0c-491623f99a49", + "productId": "43d76d88-20ec-400b-a3ef-225457bbb596", + "category": "Electronics", + "docType": "customerRating", + "userName": "eric17", + "reviewDate": "2022-05-11T16:26:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "11745809-e944-4b0c-83f6-a8ca43c97d01", + "productId": "43d76d88-20ec-400b-a3ef-225457bbb596", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeremyallen", + "reviewDate": "2022-08-18T04:17:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9d012c07-8eb9-4204-90c6-da7770c949c8", + "productId": "43d76d88-20ec-400b-a3ef-225457bbb596", + "category": "Electronics", + "docType": "customerRating", + "userName": "eddie16", + "reviewDate": "2022-07-31T18:38:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Super (Silver)", + "description": "This Basic Phone Super (Silver) is the best phone I've encountered in years. It's a pretty basic phone with a little more complexity and so far so good. It also features a lot of performance and so far so good. However, it can also be a bit annoying for some, especially those", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-22T07:39:25", + "price": 1029.92, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-04-03T07:17:41", + "newPrice": 959.91 + }, + { + "priceDate": "2021-06-14T07:17:41", + "newPrice": 1042.25 + }, + { + "priceDate": "2021-08-25T07:17:41", + "newPrice": 1124.36 + }, + { + "priceDate": "2021-11-05T07:17:41", + "newPrice": 974.69 + }, + { + "priceDate": "2022-01-16T07:17:41", + "newPrice": 1010.36 + }, + { + "priceDate": "2022-02-23T07:17:41", + "newPrice": 1029.92 + } + ], + "descriptionVector": [ + -0.01537408772855997, + 0.04829040542244911, + -0.02041255123913288, + 0.03175833076238632, + 0.003825043560937047, + 0.014388569630682468, + -0.04888171702623367, + -0.03234964236617088, + 0.023553891107439995, + 0.047970112413167953, + 0.06770511716604233, + -0.10229681432247162, + 0.05809631198644638, + 0.013255223631858826, + 0.01199868693947792, + 0.04316570982336998, + 0.003868160070851445, + -0.043412089347839355, + 0.013119714334607124, + -0.005555860232561827, + 0.05878617614507675, + -0.05868762359023094, + -0.08470530807971954, + -0.01950094662606716, + -0.035552579909563065, + 0.013883491046726704, + -0.01568206213414669, + 0.029122071340680122, + 0.020067619159817696, + -0.03279312700033188, + -0.03259602189064026, + 0.028900329023599625, + -0.039593204855918884, + 0.06346739083528519, + 0.01623641699552536, + 0.0833255872130394, + -0.02255605347454548, + -0.08371978998184204, + 0.03306414559483528, + 0.019648773595690727, + 0.045949798077344894, + -0.02853075973689556, + 0.03895261883735657, + 0.0015260137151926756, + 0.025451013818383217, + -0.03165978193283081, + -0.01442552637308836, + 0.025746669620275497, + 0.021866191178560257, + -0.06908484548330307, + 0.005121616180986166, + -0.040504809468984604, + 0.04489036649465561, + 0.01887267827987671, + 0.056322380900382996, + 0.03764680400490761, + -0.04215555265545845, + 0.04959621652960777, + 0.014782777056097984, + -0.021730681881308556, + -0.021176327019929886, + -0.04627009108662605, + 0.005423431284725666, + 0.01728353090584278, + -0.03338443860411644, + 0.04178598150610924, + -0.07549071311950684, + 0.02223576046526432, + -0.023849546909332275, + 0.002570047276094556, + -0.07209067791700363, + -0.031906161457300186, + -0.07228777557611465, + 0.08899232000112534, + -0.009417860768735409, + 0.025377100333571434, + 0.012263545766472816, + 0.019476309418678284, + 0.041317861527204514, + -0.021792277693748474, + 0.056026723235845566, + 0.015509597025811672, + 0.01240521389991045, + -0.019279204308986664, + 0.06908484548330307, + 0.0007222002604976296, + 0.0703660175204277, + -0.09579239785671234, + -0.04821649193763733, + 0.03961784392595291, + 0.009966055862605572, + 0.022346630692481995, + -0.01502915658056736, + -0.012238907627761364, + 0.06657177209854126, + 0.04449616000056267, + 0.0007379839662462473, + 0.06519204378128052, + -0.04385557025671005, + 0.011758467182517052, + 0.09761560708284378, + -0.02210025116801262, + -0.04560486599802971, + 0.013637111522257328, + -0.010600483044981956, + 0.03195543587207794, + 0.037991736084222794, + -0.050902027636766434, + 0.0032306527718901634, + -0.0905691459774971, + -0.046048350632190704, + 0.015583510510623455, + -0.0472063347697258, + -0.00592542951926589, + -0.01587916538119316, + 0.02813655138015747, + -0.04126858711242676, + -0.021373432129621506, + 0.05982097238302231, + -0.0016569029539823532, + 0.028210466727614403, + 0.09855184704065323, + -0.028161190450191498, + -0.01819513365626335, + -0.022543733939528465, + -0.05469627305865288, + 0.09017493575811386, + 0.016815409064292908, + -0.0029642547015100718, + -0.007533056661486626, + -0.054006412625312805, + 0.002825666218996048, + 0.04981795698404312, + -0.0009177640895359218, + -0.0015337130753323436, + 0.051000580191612244, + 0.002015693113207817, + 0.057258620858192444, + -0.06627611815929413, + 0.09855184704065323, + 0.0013281401479616761, + 0.015608148649334908, + 0.06120069697499275, + -0.04496427997946739, + 0.006027061492204666, + 0.0548933781683445, + -0.07770813256502151, + 0.02053574100136757, + 0.021176327019929886, + 0.07642695307731628, + 0.01594076119363308, + -0.07913713157176971, + -0.001932540093548596, + -0.09426484256982803, + 0.04609762504696846, + -0.0034801121801137924, + -0.08327630907297134, + -0.05016288906335831, + -0.012522243894636631, + 0.058342691510915756, + -0.0520353764295578, + -0.08549372851848602, + -0.0058453562669456005, + -0.05878617614507675, + -0.03855840861797333, + 0.06514277309179306, + 0.01300884410738945, + 0.10545047372579575, + -0.03510909527540207, + 0.035749681293964386, + 0.01874948851764202, + 0.004693531896919012, + -0.03818884119391441, + -0.043412089347839355, + -0.006590654607862234, + 0.025598842650651932, + 0.03207862749695778, + -0.03619316592812538, + 0.022814752534031868, + -0.031536590307950974, + 0.03557721525430679, + 0.00713884923607111, + -0.12121877074241638, + -0.02631334215402603, + 0.06706453114748001, + 0.05395713448524475, + 0.03905116766691208, + 0.02366476133465767, + -0.03818884119391441, + 0.016150183975696564, + 0.005096978507936001, + -0.004989187233150005, + -0.03971639275550842, + 0.004203852266073227, + 0.08549372851848602, + 0.009768951684236526, + 0.02692929282784462, + 0.04439760744571686, + -0.04466862604022026, + -0.005217088386416435, + 0.02168140560388565, + 0.07149936258792877, + 0.09860112518072128, + -0.07287909090518951, + 0.011764626950025558, + -0.003991349600255489, + 0.01472118217498064, + 0.05513975769281387, + -0.04378165677189827, + 0.003994429484009743, + 0.014758138917386532, + -0.02134879305958748, + 0.0006336575606837869, + -0.04740343615412712, + 0.05908183008432388, + 0.0248104277998209, + 0.022900985553860664, + -0.026387257501482964, + -0.0068123964592814445, + -0.12831450998783112, + 0.07228777557611465, + -0.006498262286186218, + 0.04245120659470558, + 0.03629171848297119, + -0.055928174406290054, + -0.024034330621361732, + 0.05898328125476837, + 0.040307704359292984, + 0.02288866601884365, + 0.07775740325450897, + 0.016741495579481125, + 0.012011006474494934, + 0.002377563389018178, + 0.03873087465763092, + -0.08534590154886246, + 0.09401845932006836, + 0.001659982604905963, + 0.02451477199792862, + -0.1608366072177887, + 0.05238030478358269, + 0.018071943894028664, + -0.00322757288813591, + -0.04043089598417282, + -0.12023325264453888, + 0.09958664327859879, + -0.04218019172549248, + 0.03705549240112305, + -0.04760054126381874, + -0.060855764895677567, + -0.023689400404691696, + -0.04385557025671005, + -0.06184128299355507, + 0.003152119228616357, + 0.053710754960775375, + 0.015632785856723785, + 0.01871253177523613, + 0.029516277834773064, + -0.030280055478215218, + 0.02451477199792862, + 0.034345317631959915, + -0.011407376267015934, + -0.014561035670340061, + 0.001726197195239365, + 0.07312546670436859, + -0.07573709636926651, + 0.05617455393075943, + 0.08017192780971527, + -0.003127481322735548, + -0.06440363079309464, + 0.043116431683301926, + -0.021755319088697433, + 0.015891484916210175, + 0.0472063347697258, + 0.040800463408231735, + 0.0072066038846969604, + 0.06538914889097214, + -0.05908183008432388, + 0.04942375048995018, + -0.006187207996845245, + -0.022703882306814194, + 0.123386912047863, + 0.053316548466682434, + 0.06987325847148895, + 0.00899901520460844, + 0.08603575825691223, + -0.003501670202240348, + -0.04651647061109543, + -0.017554547637701035, + 0.042599037289619446, + 0.026756826788187027, + -0.0039482335560023785, + 0.012688550166785717, + -0.05533686280250549, + -0.03942073881626129, + 0.034049663692712784, + -0.01149360928684473, + 0.048068661242723465, + -0.07243560999631882, + 0.02380027063190937, + 0.04124394804239273, + 0.05607600137591362, + 0.005401873029768467, + -0.03074817545711994, + -0.0717950165271759, + 0.06415725499391556, + 0.06593118607997894, + -0.03045251965522766, + 0.0573078989982605, + -0.09278656542301178, + -0.006113294046372175, + 0.02265460602939129, + -0.016014674678444862, + 0.03291631489992142, + -0.02180459536612034, + 0.015250897966325283, + -0.010785267688333988, + 0.005913110915571451, + 0.03914972022175789, + -0.0029719541780650616, + -0.005081579554826021, + 0.051591891795396805, + -0.006658409256488085, + 0.015312492847442627, + 0.04981795698404312, + 0.07100660353899002, + -0.0024453175719827414, + -0.03234964236617088, + -0.008783433586359024, + -0.01920529082417488, + 0.05513975769281387, + -0.032719213515520096, + 0.02774234488606453, + -0.03520764783024788, + 0.012688550166785717, + -0.010304827243089676, + -0.06908484548330307, + 0.012516084127128124, + 0.056223828345537186, + 0.01077294908463955, + -0.007570013869553804, + 0.02419447898864746, + 0.06317173689603806, + -0.044126588851213455, + 0.00744066433981061, + -0.016470476984977722, + 0.003477032296359539, + -0.09357497841119766, + -0.06292535364627838, + 0.017813246697187424, + -0.06514277309179306, + 0.0011525946902111173, + -0.0332612469792366, + 0.06144707649946213, + 0.010452655144035816, + 0.07967916876077652, + 0.05144406482577324, + 0.051197685301303864, + -0.06543842703104019, + 0.0402337908744812, + -0.006596814375370741, + 0.05454844608902931, + -0.0520353764295578, + 0.05991952121257782, + 0.0017708535306155682, + -0.019390076398849487, + 0.047970112413167953, + -0.01704946905374527, + 0.07149936258792877, + -0.01610090769827366, + -0.03345835208892822, + 0.006051699165254831, + 0.05395713448524475, + -0.014918285422027111, + -0.037671443074941635, + 0.002357544843107462, + 0.015300174243748188, + 0.04087437689304352, + -0.03641490638256073, + 0.03658737242221832, + 0.034148216247558594, + -0.03653809800744057, + 0.0038589206524193287, + -0.020350955426692963, + -0.0503353551030159, + 0.05780065804719925, + -0.04476717486977577, + -0.06775439530611038, + 0.067951500415802, + -0.03942073881626129, + 0.05819486454129219, + -0.029935123398900032, + 0.04925128445029259, + -0.03478880226612091, + 0.06011662632226944, + 0.016384243965148926, + -0.020905310288071632, + -0.009251554496586323, + -0.05479482561349869, + 0.023923460394144058, + -0.06563553214073181, + 0.04528457298874855, + 0.029220622032880783, + 0.00019065548258367926, + -0.040184516459703445, + 0.004921432584524155, + -0.05307016894221306, + 0.005352597218006849, + 0.016716856509447098, + -0.09189959615468979, + -0.06189056113362312, + -0.008247558027505875, + -0.04015987738966942, + 0.028309017419815063, + 0.008025815710425377, + 0.0007764807669445872, + 0.014807415194809437, + 0.03722795844078064, + 0.03432067856192589, + 0.09909388422966003, + -0.012750145047903061, + -0.04501355439424515, + -0.009393222630023956, + 0.07736320048570633, + 0.0024591765832155943, + 0.0009362425189465284, + -0.013637111522257328, + 0.016322650015354156, + -0.029417725279927254, + 0.01815817691385746, + 0.027791621163487434, + 0.02249445952475071, + 0.033138059079647064, + 0.03518300876021385, + -0.017579184845089912, + -0.06790222227573395, + -0.036562733352184296, + -0.0800241008400917, + 0.03436995670199394, + -0.04417586326599121, + 0.022420544177293777, + -0.04033234342932701, + 0.031043831259012222, + -0.013033481314778328, + 0.05021216720342636, + -0.12210574001073837, + -0.02177995815873146, + -0.01754222810268402, + 0.07450519502162933, + -0.020695887506008148, + 0.022063294425606728, + 0.02089299075305462, + -0.019229929894208908, + -0.01645815744996071, + -0.04821649193763733, + 0.011247229762375355, + 0.06736018508672714, + -0.02409592643380165, + 0.06691670417785645, + -0.011290346272289753, + -0.0006413569208234549, + -0.025869859382510185, + 0.06888774037361145, + 0.020905310288071632, + -0.050187528133392334, + 0.0032460514921694994, + 0.00527252396568656, + -0.02744668908417225, + -0.02298721857368946, + -0.020461827516555786, + -0.019242247566580772, + 0.05242958292365074, + -0.05287306383252144, + -0.07746174931526184, + 0.027274223044514656, + 0.022321993485093117, + -0.01392044872045517, + -0.00457342155277729, + -0.00504462281242013, + 0.022962579503655434, + 0.00891894195228815, + 0.05193682387471199, + -0.010637439787387848, + -0.03158586844801903, + 0.04296860471367836, + 0.04878316447138786, + 0.0005805319524370134, + -0.008383066393435001, + -0.035133734345436096, + 0.026387257501482964, + -0.010501931421458721, + 0.02461332269012928, + 0.02041255123913288, + -0.011160996742546558, + -0.03505982086062431, + -0.011302664875984192, + -0.026066962629556656, + 0.004092981573194265, + -0.03331052511930466, + -0.030107589438557625, + 0.06331956386566162, + -0.03269457444548607, + -0.0371047705411911, + -0.017751650884747505, + 0.01300884410738945, + -0.02976265735924244, + 0.0049275923520326614, + -0.004841359332203865, + 0.007964220829308033, + -6.267762728384696e-06, + -0.02894960530102253, + 0.030353968963027, + -0.06770511716604233 + ] + }, + { + "id": "ee83e92a-2d79-4b45-a44d-96f8a9a7da74", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacoblowe", + "reviewDate": "2022-01-16T20:06:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "698affc2-b738-42ac-94a1-d6d828d6545a", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "lloydphillip", + "reviewDate": "2021-04-03T07:17:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c3655691-8b4a-4eb8-8bd6-146f5bff4a7d", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "sara31", + "reviewDate": "2021-05-30T10:43:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cb07dd65-8602-44f6-9b83-49af5d7f7341", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacksonmaurice", + "reviewDate": "2021-10-23T09:29:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ca9de9d7-71d8-4cc7-961e-ce384d62df20", + "productId": "6daa5dec-770d-4a48-8c67-fcb1f7de93fd", + "category": "Electronics", + "docType": "customerRating", + "userName": "nchristian", + "reviewDate": "2021-06-17T06:32:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker + (Red)", + "description": "This Amazing Speaker + (Red) is your first step towards hearing your voice for free. All our speakers are printed in high quality, easy-to-read blueprints. Get notified when you open the box, and you'll receive a notification when any of our speakers release product or demo tape. When you order, there is an important step to take. You will receive full billing at no additional cost to your order. When you register for our first speaker, you will receive an email", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-12-08T00:20:15", + "price": 677.35, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-04-19T11:18:01", + "newPrice": 636.31 + }, + { + "priceDate": "2022-01-03T11:18:01", + "newPrice": 625.05 + }, + { + "priceDate": "2022-09-19T11:18:01", + "newPrice": 700.47 + }, + { + "priceDate": "2022-11-11T11:18:01", + "newPrice": 677.35 + } + ], + "descriptionVector": [ + -0.02541312947869301, + 0.005524757318198681, + -0.027958961203694344, + -0.00885768886655569, + -0.05576728284358978, + -0.03729870170354843, + 0.009949835017323494, + 0.07037945836782455, + -0.006940782070159912, + 0.11575251072645187, + -0.038202546536922455, + -0.04362562298774719, + -0.01607339084148407, + -0.020487170666456223, + 0.030037807300686836, + -0.05570702627301216, + -0.021375952288508415, + -0.004703763872385025, + 0.013806244358420372, + -0.012216981500387192, + 0.04067305848002434, + -0.04537305608391762, + 0.01613364741206169, + -0.05203138664364815, + -0.06344997137784958, + -0.02981184609234333, + -0.02785351313650608, + 0.024991335347294807, + 0.04190831631422043, + -0.03576216474175453, + 0.05992497503757477, + 0.059051256626844406, + -0.051519207656383514, + 0.03061024285852909, + -0.011832847259938717, + 0.00677507696673274, + 0.008496150374412537, + -0.04904869571328163, + 0.0035833718720823526, + 0.03537049889564514, + -0.008872752077877522, + -0.023620503023266792, + 0.005166985094547272, + -0.09942303597927094, + -0.04148652032017708, + 0.06170253828167915, + 0.03500895947217941, + 0.012683968991041183, + -0.020110568031668663, + 0.002161697717383504, + -0.014808006584644318, + 0.06254612654447556, + -0.05965381860733032, + 0.0269948597997427, + 0.019116338342428207, + -0.046457670629024506, + 0.021089734509587288, + 0.027717936784029007, + 0.0246900524944067, + -0.08074355125427246, + 0.019779158756136894, + -0.003995751496404409, + 0.00735127879306674, + 0.04471023753285408, + -0.023334285244345665, + -0.006541583687067032, + -0.011418584734201431, + 0.03672626614570618, + -0.03416537120938301, + 0.09333714097738266, + 0.04814485087990761, + -0.001535596325993538, + 0.0177003126591444, + 0.09478329122066498, + 0.04245062172412872, + 0.0005150038050487638, + 0.07532048225402832, + 0.03518972918391228, + 0.010326437652111053, + -0.0330205000936985, + 0.021421143785119057, + 0.021827874705195427, + 0.019131401553750038, + 0.011004322208464146, + -0.006398474797606468, + -0.01113989856094122, + -0.008654323406517506, + -0.12075379490852356, + 0.029239410534501076, + 0.017142940312623978, + -0.02591024525463581, + 0.031152550131082535, + 0.01648012176156044, + 0.022852232679724693, + 0.05320638790726662, + -0.03338203579187393, + -0.028471142053604126, + 0.012683968991041183, + -0.08827560395002365, + -0.005343988072127104, + 0.02943524345755577, + -0.06537817418575287, + -0.07068073749542236, + -0.030881397426128387, + -0.03998010978102684, + 0.024403834715485573, + 0.04287241771817207, + 0.02241537533700466, + -0.021707361564040184, + -0.1135832816362381, + 0.07284996658563614, + 0.01470255758613348, + 0.0052121770568192005, + 0.015832364559173584, + 0.09297560155391693, + 0.0708012506365776, + -0.008006567135453224, + 0.045342929661273956, + -0.03606344759464264, + -0.012879801914095879, + -0.012277238070964813, + -0.08303329348564148, + -0.035069216042757034, + 0.04079357162117958, + -0.013090698979794979, + -0.01473268587142229, + -0.0001904195814859122, + -0.009957367554306984, + 0.03841344639658928, + -0.001427323091775179, + -0.029706398025155067, + -0.0027661446947604418, + -0.06194356083869934, + 0.021812811493873596, + 0.016977235674858093, + 0.01958332397043705, + 0.051097411662340164, + -0.011132366955280304, + -0.02387659251689911, + 0.022099029272794724, + -0.06332945823669434, + 0.05212177336215973, + 0.029269538819789886, + 0.08604611456394196, + -0.04440895467996597, + -0.010333970189094543, + -0.02943524345755577, + -0.007102721370756626, + -0.04540318623185158, + -0.03645511344075203, + -0.05597817897796631, + -0.05763523280620575, + 0.022912489250302315, + -0.03380383178591728, + 0.013324192725121975, + 0.012156725861132145, + -0.11810251325368881, + 0.0020882603712379932, + 0.005174517165869474, + 0.06308843195438385, + -0.031875625252723694, + -0.02942018024623394, + -0.03892562538385391, + 0.026452552527189255, + -0.05700254067778587, + 0.0587499737739563, + 0.08068329840898514, + 0.02975158952176571, + -0.10147175192832947, + 0.05284484848380089, + 0.0023048066068440676, + -0.03296024352312088, + 0.05537561699748039, + -0.01886024884879589, + -0.015576275065541267, + -0.013196147978305817, + 0.09659098088741302, + 0.02829037234187126, + -0.05576728284358978, + -0.060196127742528915, + 0.0039016008377075195, + 0.09888072311878204, + 0.02780832163989544, + -0.0026644619647413492, + -0.03729870170354843, + 0.11948841065168381, + 0.06471535563468933, + -0.03199613839387894, + -0.00885768886655569, + 0.04510190337896347, + -0.004417546093463898, + -0.032749343663454056, + 0.009701278060674667, + 0.05257369577884674, + -0.0001038010377669707, + -0.03479806333780289, + 0.03961857408285141, + 0.03223716467618942, + -0.022535888478159904, + -0.030655434355139732, + -0.04043203219771385, + 0.06170253828167915, + 0.07754996418952942, + 0.013520026579499245, + -0.08080381155014038, + -0.02628684788942337, + -0.005050238221883774, + 0.08315380662679672, + 0.02473524585366249, + 0.014152717776596546, + -0.013459770008921623, + -0.06004548817873001, + -0.00488829892128706, + -0.011682206764817238, + 0.02866697497665882, + 0.020607683807611465, + -0.06067818030714989, + -0.003451561089605093, + 0.029872102662920952, + -0.006036936305463314, + -0.0065076895989477634, + -0.05998523160815239, + 0.018333004787564278, + -0.01682659611105919, + -0.020170824602246284, + -0.009279482997953892, + -0.019010888412594795, + -0.04483075067400932, + 0.07706791162490845, + 0.012254642322659492, + -0.0962294414639473, + 0.005660334136337042, + 0.052754465490579605, + 0.007720349356532097, + -0.08634740114212036, + 0.026121143251657486, + -0.0012314898194745183, + -0.015124352648854256, + -0.05525510385632515, + 0.053959593176841736, + -0.03796152025461197, + 0.035099342465400696, + -0.07495894283056259, + 0.02230992540717125, + 0.010740700177848339, + 0.021827874705195427, + 0.07532048225402832, + -0.05088651552796364, + -0.049229465425014496, + 0.025398066267371178, + -0.05218202993273735, + 0.08261150121688843, + -0.024599669501185417, + 0.0032915049232542515, + -0.06977689266204834, + 0.0791768878698349, + 0.06106984615325928, + -0.044891007244586945, + 0.036997418850660324, + -0.04712049290537834, + 0.003364942502230406, + -0.021662170067429543, + -0.004711295943707228, + 0.07881534844636917, + -0.06549868732690811, + -0.039799340069293976, + 0.022927554324269295, + -0.038684599101543427, + 0.042962800711393356, + 0.09671149402856827, + 0.05926215276122093, + 0.039347417652606964, + 0.05956343561410904, + -0.025383001193404198, + -0.00801409874111414, + 0.027266014367341995, + -0.05724356323480606, + 0.050344210118055344, + -0.07128330320119858, + -0.049259595572948456, + 0.017926273867487907, + -0.03175511583685875, + 0.11894610524177551, + -0.06363074481487274, + -0.02624165453016758, + -0.0688127875328064, + -0.0005752601427957416, + 0.016163775697350502, + -0.10153200477361679, + -0.07532048225402832, + -0.03422562777996063, + -0.0041953506879508495, + 0.006198875606060028, + 0.029585884883999825, + 0.08851663023233414, + 0.05441151559352875, + -0.0032161844428628683, + -0.05362818017601967, + -0.0006548174424096942, + 0.051157668232917786, + 0.03537049889564514, + -0.025714412331581116, + -0.03244806453585625, + -0.04383651912212372, + -0.025970501825213432, + 0.0839371457695961, + -0.055827539414167404, + 0.06845125555992126, + -0.016736211255192757, + -0.009761534631252289, + 0.09767559915781021, + -0.0691140741109848, + -0.04820510745048523, + -0.004733892157673836, + 0.024042297154664993, + -0.008963136933743954, + 0.05359805375337601, + -0.004297033417969942, + 0.0447704941034317, + -0.02157178521156311, + 0.01080095674842596, + -0.054682668298482895, + -0.06959612667560577, + 0.053477540612220764, + 0.002453564666211605, + 0.011991020292043686, + 0.0579063855111599, + -0.016675954684615135, + 0.08146663010120392, + 0.06549868732690811, + -0.044529467821121216, + -0.040552545338869095, + 0.07188586890697479, + -0.01730864681303501, + 0.031514089554548264, + -0.01390416081994772, + -0.010793425142765045, + 0.018604159355163574, + 0.024584604427218437, + -0.022520823404192924, + 0.04654805734753609, + -0.10418328642845154, + 0.00540047837421298, + -0.05028395354747772, + -0.004526760894805193, + -0.034255754202604294, + 0.014830602332949638, + 0.008307849057018757, + 0.024569541215896606, + -0.035069216042757034, + 0.001904666656628251, + -0.027311205863952637, + 0.0716448426246643, + -0.028184924274683, + 0.09309611469507217, + -0.002125920495018363, + -0.03799165040254593, + -0.08887816965579987, + 0.01848364621400833, + -0.0022144222166389227, + -0.02072819694876671, + 0.03434613719582558, + -0.01956826075911522, + 0.03928716108202934, + 0.006518987473100424, + -0.058267924934625626, + -0.015154480934143066, + 0.01848364621400833, + -0.001867947867140174, + 0.036605753004550934, + -0.06125061586499214, + 0.0052347732707858086, + -0.06869227439165115, + -0.0006816503591835499, + -0.01565159484744072, + -0.03759998455643654, + 0.014431403949856758, + -0.053055744618177414, + -0.011855443939566612, + 0.04121536761522293, + 0.05257369577884674, + 0.037057675421237946, + 0.018197428435087204, + 0.026015693321824074, + 0.07291022688150406, + 0.019282042980194092, + -0.014845666475594044, + 0.03362306207418442, + -0.031634602695703506, + 0.05450189858675003, + -0.0640525370836258, + -0.0003210535505786538, + -0.014664897695183754, + 0.05103715881705284, + 0.0604371540248394, + -0.01315848808735609, + 0.05465254187583923, + 0.07351278513669968, + 0.015606403350830078, + 0.002253965474665165, + -0.03443652391433716, + 0.006714820861816406, + 0.024885887280106544, + -0.023982040584087372, + -0.08694995939731598, + -0.08375637233257294, + -0.024449028074741364, + -0.03280960023403168, + -0.009271951392292976, + -0.011094707064330578, + -0.002137218602001667, + -0.029088769108057022, + 0.0018528838409110904, + 7.279017881955951e-05, + -0.005419308319687843, + 0.005197112914174795, + 0.007279724348336458, + 0.022520823404192924, + 0.031634602695703506, + -0.024192938581109047, + 0.04278203099966049, + -0.015455762855708599, + -0.015576275065541267, + 0.05564676970243454, + -0.037871137261390686, + 0.029284602031111717, + 0.08050253242254257, + -0.05477305129170418, + -0.040883954614400864, + -0.051609594374895096, + -0.06465510278940201, + -0.01526746153831482, + -0.031483959406614304, + -0.008036695420742035, + -0.027522103860974312, + -0.009392463602125645, + 0.015561210922896862, + -0.03967882692813873, + -0.09267431497573853, + 0.03097178041934967, + -0.00040014003752730787, + 0.0337134450674057, + -0.054260872304439545, + 0.009716342203319073, + -0.09478329122066498, + -0.05173010379076004, + -0.060527537018060684, + -0.005408010445535183, + 0.052664078772068024, + -0.008466022089123726, + -0.06040702387690544, + 0.01916152983903885, + -0.04582497850060463, + 0.05534548684954643, + -0.029691332951188087, + -0.056249335408210754, + -0.08333458006381989, + 0.005543587263673544, + -0.026573065668344498, + 0.02621152624487877, + 0.01491345465183258, + 0.062124330550432205, + 0.05013331025838852, + -0.025277553126215935, + -0.009897110983729362, + 0.00607083085924387, + -0.0200051199644804, + 0.013384449295699596, + 0.03476793318986893, + 0.02431345172226429, + -0.033592935651540756, + -0.035912804305553436, + 0.03458716347813606, + 0.01039422582834959, + 0.019342299550771713, + -0.07369355857372284, + -0.0786345824599266, + -0.01473268587142229, + 0.026347104460000992, + 0.01370832696557045, + -0.03515959903597832, + -0.02199357934296131, + -0.05754484608769417, + -0.007324916776269674, + 0.023364413529634476, + -0.032297421246767044, + -0.003523115534335375, + 0.03769036754965782, + 0.07634484022855759, + -0.006304324138909578, + 0.001995992613956332, + 0.09845893085002899, + 0.03946793079376221, + 0.04636728763580322, + -0.0008972552022896707, + -0.08652816712856293, + 0.009399996139109135, + -0.07013843208551407, + 0.04233010858297348, + 0.013203680515289307, + -0.008782368153333664, + -0.04817497730255127, + 0.01917659491300583, + -0.022581079974770546, + -0.0769473984837532, + 0.024388771504163742, + -0.049199339002370834, + 0.014792942441999912, + 0.01843845285475254, + 0.06977689266204834, + 0.020457042381167412, + 0.03208652511239052 + ] + }, + { + "id": "15fc3d4d-3c5a-4b97-9c82-951ae50724d5", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "yolanda50", + "reviewDate": "2021-11-30T22:48:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "88e6542e-e58c-48f2-9727-8bcbe2844e16", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "tami55", + "reviewDate": "2022-06-28T09:35:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ff64786d-a7e6-4ef6-9932-30e7a6fe248f", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "nancyhernandez", + "reviewDate": "2021-04-19T11:18:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "065bbdbe-06cb-4382-983f-d5010a59ede0", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "ajohnson", + "reviewDate": "2022-05-03T13:46:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cf637297-4e9e-4c32-86d4-a709e34749a1", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "natalie28", + "reviewDate": "2022-08-09T15:41:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8d54d635-48bc-4e80-960a-48e352bb409a", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "charlesbowman", + "reviewDate": "2021-11-27T12:01:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9a082ad2-9f95-4fb7-a9a4-bb2a8288175a", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "anichols", + "reviewDate": "2022-09-19T22:57:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a584dfb-df76-4913-9acc-a10c9e46a239", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "ccarter", + "reviewDate": "2021-08-03T23:10:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ff5b36f0-cd38-44d8-ab74-90d77bbb7689", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "daymichelle", + "reviewDate": "2022-05-28T18:57:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5c7fcf15-a0c6-4b2e-b075-0aef6456f4ed", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "javier88", + "reviewDate": "2021-11-07T01:48:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d0761f7b-0689-4af0-89fa-fa71eebd4fa7", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "nancy79", + "reviewDate": "2021-07-02T06:40:31", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c9d2df2f-5e70-4f4a-b514-38afd2508d58", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "xmathis", + "reviewDate": "2021-12-20T21:28:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "58ad9cbb-4aa1-4948-8f89-d05215e94ee4", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "eugene26", + "reviewDate": "2022-02-11T14:25:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a048a581-d180-4255-95ee-20793ec8cdfd", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "tina33", + "reviewDate": "2021-11-24T10:08:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ce138a32-fcbd-4a25-b588-383e9a930dc3", + "productId": "b4a7f807-b1a4-4f05-b35a-8ad400dc1b7b", + "category": "Media", + "docType": "customerRating", + "userName": "kimberlydiaz", + "reviewDate": "2021-07-28T11:25:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse 3000 (Gold)", + "description": "This Amazing Mouse 3000 (Gold) is a perfect example of an ultra efficient mouse, it is one of the most efficient products available, it has a very good price at $2000 and is very comfortable for a long time. The high quality was designed by a manufacturer using the most rigorous and practical technology available on the market.\n\nThe mouse will work great in a variety", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-11-22T15:08:05", + "price": 719.41, + "stock": 2, + "priceHistory": [ + { + "priceDate": "2021-01-27T22:51:40", + "newPrice": 675.54 + }, + { + "priceDate": "2022-11-11T22:51:40", + "newPrice": 702.71 + }, + { + "priceDate": "2022-12-13T22:51:40", + "newPrice": 719.41 + } + ], + "descriptionVector": [ + -0.061100538820028305, + -0.02247626893222332, + -0.022981612011790276, + -0.04559570178389549, + 0.03222708776593208, + -0.04656044766306877, + -0.06569456309080124, + 0.020052921026945114, + 0.012334958650171757, + 0.07796061038970947, + -0.021166972815990448, + -0.03734942525625229, + 0.07120739668607712, + -0.13304297626018524, + 0.04428640380501747, + 0.009147853590548038, + -0.04610104486346245, + -0.03360529616475105, + -0.02200538106262684, + 0.019536092877388, + -0.004909864626824856, + -0.03661438450217247, + 0.029562553390860558, + -0.05159090459346771, + 0.0013243714347481728, + -0.04325275123119354, + 0.01606760360300541, + 0.02025965228676796, + -0.0030521557200700045, + -0.013024061918258667, + 0.021235883235931396, + 0.038865454494953156, + 0.011668824590742588, + 0.011042888276278973, + -0.022441813722252846, + -0.01895035430788994, + -0.008343898691236973, + -0.020604204386472702, + 0.06992106884717941, + 0.03188253566622734, + 0.010319329798221588, + 0.028437016531825066, + 0.0013753363164141774, + -0.004852439276874065, + 0.01324227824807167, + 0.04316087067127228, + -0.05168278515338898, + 0.04401076212525368, + 0.005461147520691156, + 0.01213971246033907, + 0.0198921300470829, + 0.03877357393503189, + -0.1102566123008728, + -0.017330961301922798, + 0.022384388372302055, + -0.041989393532276154, + 0.07295312732458115, + 0.0737341046333313, + 0.06992106884717941, + -0.022315477952361107, + 0.04651450738310814, + -0.043298691511154175, + -0.012633569538593292, + -0.041552960872650146, + 0.002977502765133977, + -0.06826721876859665, + 0.008860726840794086, + 0.03247975930571556, + 0.04782380536198616, + 0.031055612489581108, + -0.08999695628881454, + -0.0225911196321249, + 0.01923748105764389, + -0.02912612073123455, + -0.004562441725283861, + 0.01738838665187359, + 0.038451991975307465, + 0.031560953706502914, + 0.014677911065518856, + -0.011944466270506382, + 0.05770095810294151, + -0.01429890375584364, + -0.010474378243088722, + -0.024141604080796242, + 0.12909211218357086, + 0.043551359325647354, + -0.0117205074056983, + -0.08324374258518219, + -0.02013331651687622, + 0.03553478792309761, + -0.05843600258231163, + 0.11200234293937683, + -0.043781060725450516, + 0.005788472015410662, + -0.024738827720284462, + 0.03645359352231026, + -0.016044633463025093, + 0.03858981281518936, + -0.005541543010622263, + 0.03479974344372749, + 0.0028439888264983892, + 0.060687076300382614, + -0.07327470928430557, + -0.010434180498123169, + -0.06459199637174606, + -0.022372903302311897, + -0.019742824137210846, + -0.02176419459283352, + -0.009055973030626774, + -0.08976725488901138, + 0.019467182457447052, + -0.01971985399723053, + 0.009538345038890839, + 0.019432727247476578, + -0.01348346471786499, + -0.02260260470211506, + -0.07460696995258331, + -0.044378284364938736, + -0.01845649629831314, + 0.006259359885007143, + 0.06711871176958084, + 0.024233484640717506, + 0.025129318237304688, + 0.06105459854006767, + 0.005532929208129644, + -0.029447702690958977, + -0.0017816204344853759, + -0.031262341886758804, + -0.02007589116692543, + -0.0520043671131134, + -0.09445316344499588, + 0.01300109177827835, + 0.029172061011195183, + 0.047915685921907425, + -0.05002893880009651, + 0.07796061038970947, + -0.038750603795051575, + -0.018743623048067093, + -0.022935671731829643, + 0.07125333696603775, + -0.03973831981420517, + -0.03482271358370781, + -0.07584735751152039, + 0.029332851991057396, + -0.07557171583175659, + 0.006454605609178543, + -0.08898627012968063, + 0.04591728374361992, + -0.03429440036416054, + 0.022212112322449684, + 0.0359482504427433, + -0.07198838144540787, + 0.0026731486432254314, + -0.062111224979162216, + 0.03606310114264488, + 0.03895733505487442, + -0.06629178673028946, + -0.032571639865636826, + -0.06716465204954147, + 0.08379502594470978, + -0.019168570637702942, + -0.03261758014559746, + -0.05999797210097313, + -0.039462678134441376, + -0.0026903762482106686, + 0.007752418052405119, + 0.05030457675457001, + 0.020006980746984482, + -0.045756492763757706, + 0.03709675371646881, + -0.030297597870230675, + -0.062478747218847275, + 0.03270946070551872, + -0.07134521752595901, + 0.06794563680887222, + 0.028551867231726646, + 0.009877154603600502, + 0.024853678420186043, + 0.012174167670309544, + -0.04610104486346245, + 0.056184932589530945, + 0.09068606048822403, + -0.06615396589040756, + 0.06022767350077629, + 0.046353716403245926, + 0.067348413169384, + 0.005690848920494318, + 0.006626881659030914, + -0.011749220080673695, + -0.04164484143257141, + 0.05627681314945221, + 0.013977322727441788, + -0.018077490851283073, + -0.02517525851726532, + -0.038038529455661774, + 0.08949161320924759, + -0.03027462773025036, + 0.0314001627266407, + 0.0006126563530415297, + -0.03973831981420517, + -0.03909515589475632, + 0.03918703645467758, + 0.10097667574882507, + 0.0446079857647419, + 0.02432536520063877, + -0.05108556151390076, + 0.025611691176891327, + -0.01543592568486929, + 0.06064113602042198, + -0.0037671008612960577, + 0.010439923033118248, + -0.025680601596832275, + -0.04619292542338371, + -0.07589329779148102, + 0.030848881229758263, + 0.041736721992492676, + 0.014677911065518856, + 0.0020658758003264666, + -0.04123137891292572, + -0.06900226324796677, + -0.018203826621174812, + -0.011691794730722904, + -0.0521421879529953, + -0.0018792435294017196, + -0.061697762459516525, + -0.01791669987142086, + 0.06284626573324203, + 0.005326198413968086, + 0.035328056663274765, + -0.015860872343182564, + -0.0676240548491478, + -0.023774081841111183, + 0.005598968360573053, + 0.04237988591194153, + -0.06472981721162796, + 0.03434034064412117, + -0.07727150619029999, + -0.08158989250659943, + 0.011651596985757351, + 0.04669826850295067, + -0.023452499881386757, + -0.03349044546484947, + -0.03385796770453453, + 0.010991205461323261, + 0.01893886923789978, + -0.00296027516014874, + 0.03909515589475632, + -0.0674862340092659, + -0.037372395396232605, + -0.012541688978672028, + -0.049293894320726395, + -0.019536092877388, + -0.03415657952427864, + 0.04819132760167122, + 0.03422548994421959, + 0.03553478792309761, + 0.05719561502337456, + -0.018123431131243706, + -0.002732009394094348, + -0.04633074626326561, + -0.033352624624967575, + 0.04421749338507652, + -0.044745806604623795, + 0.06201934441924095, + -0.013563860207796097, + 0.08168177306652069, + -0.0075399442575871944, + -0.0338120274245739, + 0.010221706703305244, + 0.0234410148113966, + -0.04051930457353592, + 0.04842102900147438, + 0.08540293574333191, + -0.034133609384298325, + 0.04786974564194679, + -0.01828422211110592, + -0.02384299226105213, + 0.016561461612582207, + 0.0330999530851841, + -0.07805249094963074, + 0.01513731386512518, + 0.08246275782585144, + 0.05880352482199669, + 0.019501637667417526, + 0.01785927452147007, + -0.022395873442292213, + 0.07129927724599838, + -0.041139498353004456, + -0.016079088672995567, + -0.018869958817958832, + -0.007224104832857847, + 0.044630955904722214, + 0.026875048875808716, + -0.015355530194938183, + 0.05701185390353203, + 0.008315186016261578, + 0.03948564827442169, + 0.08577045798301697, + -0.05407167971134186, + 0.01966242864727974, + 0.03261758014559746, + -0.00023939179664012045, + -0.040611185133457184, + -0.06753217428922653, + 0.043000079691410065, + 0.05237188935279846, + -0.0017055319622159004, + -0.019616488367319107, + 0.0022510725539177656, + -0.06344348937273026, + 0.07093175500631332, + -0.0004131033783778548, + -0.007379153277724981, + -0.019869159907102585, + 0.12449809163808823, + -0.06766999512910843, + 0.036338742822408676, + 0.0027420588303357363, + 0.10318180918693542, + 0.012185652740299702, + -0.03162986412644386, + -0.07575547695159912, + -0.06385695189237595, + 0.05094774067401886, + 0.010698337107896805, + -0.04279334843158722, + -0.04874261096119881, + -0.012576144188642502, + -0.0552661269903183, + -0.04465392604470253, + -0.048696670681238174, + -0.032870251685380936, + -0.0306191798299551, + -0.016469581052660942, + 0.01519473921507597, + -0.11668824404478073, + -0.016504036262631416, + 0.03902624547481537, + 0.018651742488145828, + 0.11191046237945557, + 0.03459301218390465, + 0.033237773925065994, + -0.018559861928224564, + 0.03799258917570114, + 0.03813041001558304, + -0.06794563680887222, + -0.028138406574726105, + -0.05907916650176048, + 0.02121291309595108, + 0.056598395109176636, + 0.0009913045214489102, + -0.12302800267934799, + 0.004157593008130789, + -0.010640911757946014, + 0.0176869984716177, + 0.013311188668012619, + 0.018961839377880096, + -0.06413259357213974, + -0.0229471568018198, + 0.03799258917570114, + -0.029861165210604668, + -0.006862325593829155, + 0.01623987965285778, + 0.04649153724312782, + -0.04279334843158722, + 0.07042641192674637, + 0.019570548087358475, + 0.0210980623960495, + 0.04559570178389549, + -0.07056423276662827, + -0.013506434857845306, + -0.05048833787441254, + 0.05848194286227226, + 0.0413462296128273, + -0.0845300704240799, + 0.0018778078956529498, + 0.06523516029119492, + 0.0446079857647419, + -0.06243280693888664, + -0.0028411175590008497, + 0.022935671731829643, + 0.02786276489496231, + 0.05609305202960968, + 0.007631824817508459, + 0.08962943404912949, + -0.019386786967515945, + -0.04391888156533241, + -0.004295413848012686, + 0.0017773135332390666, + -0.02055826410651207, + -0.008366868831217289, + 0.015539291314780712, + -0.009923094883561134, + 0.00011754244769690558, + 0.013517919927835464, + -0.09665829688310623, + 0.03957752883434296, + 0.05094774067401886, + -0.03420251980423927, + -0.013747621327638626, + -0.031055612489581108, + 0.06114647909998894, + -0.02025965228676796, + -0.008872211910784245, + -0.01564265601336956, + 0.015481865964829922, + 0.02469288744032383, + 0.02127033844590187, + -0.08884844928979874, + -0.005153922364115715, + -0.05664433538913727, + 0.001106873038224876, + 0.02930988185107708, + -0.021075092256069183, + -0.05255565047264099, + -0.026645347476005554, + 0.05113150179386139, + -0.030734030529856682, + 0.046238865703344345, + -0.10988909006118774, + 0.03050432913005352, + 0.018445011228322983, + 0.01636621542274952, + 0.05604711174964905, + -0.07111551612615585, + -0.006701534613966942, + -0.013586830347776413, + -0.008619540371000767, + 0.07093175500631332, + -0.01061219908297062, + 0.01756066270172596, + -0.08544887602329254, + -0.03397281840443611, + 0.022200627252459526, + -0.05388791859149933, + -0.013931382447481155, + 0.03636171296238899, + 0.048099447041749954, + 0.060733016580343246, + 0.01940975710749626, + 0.03571854904294014, + -0.051223382353782654, + 0.022568149492144585, + 0.0892159715294838, + 0.015102858655154705, + -0.015470380894839764, + -0.02313091792166233, + 0.02019074186682701, + 0.035994190722703934, + -0.049523595720529556, + 0.002762157702818513, + -0.014999493025243282, + -0.0020314205903559923, + 0.026576437056064606, + 0.09822026640176773, + 0.04488362744450569, + -0.03314589336514473, + 0.0014944939175620675, + -0.004881151951849461, + -0.0021563207264989614, + -0.02823028713464737, + 0.07382598519325256, + 0.03326074406504631, + -0.0180430356413126, + 0.03519023582339287, + -0.006305299699306488, + -0.007488261442631483, + -0.007947663776576519, + 0.008384096436202526, + -0.005779858212918043, + -0.01575750671327114, + -0.030711060389876366, + -0.05191248655319214, + 0.02894235961139202, + -0.001968252705410123, + -0.03939376771450043, + 0.01929490640759468, + -0.0010250419145449996, + 0.049707356840372086, + 0.03548884764313698, + 0.012851785868406296, + 0.04019772261381149, + -0.024601006880402565, + 0.029401762410998344, + -0.0060526286251842976, + -0.06491357833147049, + 0.07152897864580154, + 0.020454898476600647, + 0.03819932043552399, + 0.05232594907283783, + 0.0016682054847478867, + 0.07690398395061493, + 0.008872211910784245, + -0.027012869715690613, + -0.054577022790908813, + 0.02223508246243, + -0.05338257551193237, + 0.07088581472635269, + -0.034018758684396744, + -0.010043688118457794, + -0.019570548087358475, + -0.043229781091213226, + 0.004596896469593048, + -0.007953406311571598, + -0.04509035870432854, + -0.01905371993780136, + -0.009911609813570976, + 0.006730247288942337, + -0.031859565526247025, + -0.13331861793994904, + 0.02132776379585266, + -0.041208408772945404 + ] + }, + { + "id": "be17f249-4b1e-4c2a-80a5-84dd1a68a56d", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "youngkathleen", + "reviewDate": "2021-01-27T22:51:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bf9c1fbc-c106-4291-a5e3-c7e03c64510b", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uholmes", + "reviewDate": "2022-01-03T20:57:04", + "stars": 4, + "verifiedUser": false + }, + { + "id": "89b21aec-dc6b-4b3b-b003-d5d3b0fedb54", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eric75", + "reviewDate": "2022-11-12T15:34:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2d99291e-a1df-4310-8bf1-b1d5c6a665c9", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nataliestephens", + "reviewDate": "2022-08-08T20:10:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fce04210-4149-4fd8-b26b-ebe1fc97c113", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xjenkins", + "reviewDate": "2021-10-31T05:15:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d90837ce-cbe9-4ff4-a024-84e599e497d3", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mccarthykimberly", + "reviewDate": "2021-05-12T08:54:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "21dd52b6-2b4b-4add-bbcf-9f51694162e6", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ivanharris", + "reviewDate": "2022-05-30T01:17:52", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f78a5b71-aac7-4681-afbd-38739e3d5f4b", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "saraochoa", + "reviewDate": "2022-04-18T14:16:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "29d59e8b-2dbe-444b-aea3-e979ff990b18", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ifox", + "reviewDate": "2022-10-26T21:15:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cbdac30a-8149-42e9-b262-995dfcc91148", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kennethrobinson", + "reviewDate": "2021-11-03T14:55:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4189da7a-603b-40e6-9e40-c1271173b18b", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reyesjennifer", + "reviewDate": "2022-08-24T11:27:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "870e9864-19cf-41bb-92a0-5a5227b48da5", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dylan73", + "reviewDate": "2021-03-26T11:05:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "22eac3d6-5863-4d7f-8bdd-e3d498f88bc8", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinehamilton", + "reviewDate": "2022-09-29T05:48:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "af402405-c349-4185-a329-082550885096", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wreese", + "reviewDate": "2021-03-10T02:16:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bb6007b6-0059-4f1a-9b9b-4c35aa6e5f68", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "latoyaaguilar", + "reviewDate": "2022-01-14T22:59:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "91f638fe-2d27-4046-923d-742394c18493", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kcurtis", + "reviewDate": "2022-05-13T13:48:27", + "stars": 4, + "verifiedUser": false + }, + { + "id": "53b426c9-18c7-43b4-952d-6ab2f8e2755c", + "productId": "99c19f15-e3f9-482a-a9f9-129c24f7c3e1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "abbottsusan", + "reviewDate": "2022-10-16T09:12:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a42bac78-76da-4168-9027-4dc08b7ef4c9", + "productId": "a42bac78-76da-4168-9027-4dc08b7ef4c9", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Ultra (Steel)", + "description": "This Awesome Speaker Ultra (Steel) is a special product designed to deliver this speaker great sound and quality. All aluminum and stainless steel construction comes from our factory in the USA. The cabinet is hand-assembled using a 3-degree heat control (CRC) system as it should.The Speaker Ultra is made of 10\" square metal cabinet and includes a speaker box, a top shelf, and some cabinets in black.", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-08-19T05:32:00", + "price": 789.13, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2022-11-14T10:23:18", + "newPrice": 834.09 + }, + { + "priceDate": "2022-11-15T10:23:18", + "newPrice": 838.61 + }, + { + "priceDate": "2025-02-19T10:23:18", + "newPrice": 789.13 + } + ], + "descriptionVector": [ + 0.011472064070403576, + 0.020595621317625046, + -0.053672634065151215, + -0.07852987200021744, + 0.008285745978355408, + -0.021585160866379738, + -0.07858265191316605, + 0.010660641826689243, + -0.009743668138980865, + 0.04776178300380707, + -0.04237869009375572, + 0.01533126924186945, + 0.015608340501785278, + -0.0365733876824379, + -0.012560557574033737, + -0.058052998036146164, + -0.010251631960272789, + -0.006389128044247627, + -0.007916318252682686, + -0.030161172151565552, + 0.08787112683057785, + -0.04892284423112869, + -0.01993592642247677, + -0.030530599877238274, + -0.05282822996377945, + -0.009262092411518097, + -0.001697060652077198, + 0.02762794867157936, + 0.00199722102843225, + 0.001584088196977973, + 0.05380457267165184, + 0.03525400161743164, + -0.04116485267877579, + 0.06776367872953415, + -0.002919142134487629, + -0.009671101346611977, + -0.0252530537545681, + 0.00367778935469687, + 0.02278580144047737, + -0.0010043828515335917, + 0.011861283332109451, + -0.02271983213722706, + -0.0014109187759459019, + 0.03818304091691971, + 0.04446331784129143, + 0.01481670793145895, + -0.03572897985577583, + 0.03406655415892601, + 0.03184998407959938, + 0.013048730790615082, + -0.014777126722037792, + -0.01603054441511631, + -0.05889740586280823, + 0.02278580144047737, + 0.019236652180552483, + -0.047709010541439056, + 0.030161172151565552, + 0.20730197429656982, + 0.03958158940076828, + 0.05121857672929764, + 0.062855564057827, + -0.12170019745826721, + -0.048579804599285126, + 0.026163430884480476, + -0.037708062678575516, + 0.012824434787034988, + -0.006458396092057228, + 0.04623129591345787, + -0.024962788447737694, + 0.09335977584123611, + 0.04665350168943405, + -0.03364435210824013, + 0.0203581303358078, + 0.049397822469472885, + 0.030161172151565552, + 0.002523326314985752, + -0.02936953864991665, + 0.0345415323972702, + 0.019236652180552483, + -0.009209316223859787, + 0.05087553709745407, + 0.06844976544380188, + -0.019368590787053108, + -0.052537962794303894, + 0.06306666880846024, + 0.023775340989232063, + -0.0438036248087883, + -0.08998214453458786, + -0.0003500496968626976, + 0.0778437927365303, + -0.01881444826722145, + 0.008800306357443333, + 0.06000569090247154, + -0.011148814111948013, + 0.05990013852715492, + 0.07842431962490082, + -0.09921785444021225, + -0.009215913712978363, + -0.09779291599988937, + -0.006946568842977285, + 0.03509567677974701, + -0.02056923322379589, + -0.06739425659179688, + -0.039819080382585526, + -0.01489587128162384, + 0.0510074757039547, + 0.06106119975447655, + 0.030477823689579964, + 0.009948172606527805, + -0.0938347578048706, + 0.021202538162469864, + -0.03477902337908745, + 0.050690822303295135, + -0.022033751010894775, + 0.08591843396425247, + 0.0070719108916819096, + -0.0365733876824379, + -0.05731414258480072, + -0.056047532707452774, + 0.03567620739340782, + 0.014526443555951118, + -0.01324663870036602, + 0.032193027436733246, + 0.013484127819538116, + -0.009869009256362915, + 0.015304881148040295, + 0.008483653888106346, + 0.08058811724185944, + 0.025833584368228912, + 0.060375116765499115, + -0.07911040633916855, + 0.03224579989910126, + -0.05230047553777695, + -0.02762794867157936, + -0.05235324800014496, + -0.022297628223896027, + 0.0244878102093935, + -0.0012484693434089422, + 0.03472624719142914, + 2.5150800865958445e-05, + 0.013398367911577225, + 0.04673266410827637, + 0.011478660628199577, + 0.017811715602874756, + -0.04351336136460304, + -0.03427765518426895, + -0.06808033585548401, + 0.009539162740111351, + -0.026044685393571854, + 0.030293110758066177, + 0.015370850451290607, + -0.04974086582660675, + -0.01224390510469675, + -0.0036744908429682255, + 0.006563947070389986, + 0.03665255382657051, + -0.13531626760959625, + 0.06501935422420502, + 0.02984451875090599, + 0.05905573070049286, + 0.05441149324178696, + -0.05705026537179947, + -0.02690228633582592, + 0.030741700902581215, + -0.033934615552425385, + 0.022548312321305275, + 0.05726136639714241, + 0.05385734885931015, + -0.033881839364767075, + 0.02674396149814129, + 0.06169450283050537, + -0.006781645584851503, + -0.008655174635350704, + -0.05435871705412865, + 0.03396100550889969, + -0.058264099061489105, + 0.06654984503984451, + -0.025701645761728287, + 0.014671576209366322, + 0.009466596879065037, + -0.04871174320578575, + 0.05551977455615997, + 0.011142217554152012, + -0.015146555379033089, + 0.06000569090247154, + 0.06892473995685577, + 0.02225804701447487, + -0.0025497141759842634, + -0.015199330635368824, + 0.06876641511917114, + -0.0059966109693050385, + -0.01443408615887165, + -0.035333164036273956, + 0.030082007870078087, + -0.024157963693141937, + -0.033987391740083694, + 0.021769873797893524, + 0.04214119911193848, + -0.05736691877245903, + 0.004703612066805363, + 0.04995196685194969, + 0.07921595126390457, + 0.08011313527822495, + -0.04731319472193718, + -0.0433022603392601, + -0.10533980280160904, + -0.009671101346611977, + 0.03747057169675827, + -0.015740279108285904, + -0.006692586932331324, + -0.05016306787729263, + -0.05298655480146408, + -0.06333054602146149, + 0.02597871609032154, + 0.02942231483757496, + 0.020885884761810303, + -0.008358312770724297, + -0.036151185631752014, + -0.013332398608326912, + -0.03995101898908615, + 0.04530772566795349, + -0.0002644957276061177, + 0.046468786895275116, + 0.006280278787016869, + -0.07963816076517105, + -0.02783905155956745, + 0.04678544029593468, + -0.020885884761810303, + 0.03541233018040657, + 0.013695229776203632, + -0.035333164036273956, + 0.024303095415234566, + 0.00012152784620411694, + -0.0007710164063610137, + -0.004779477138072252, + 0.01089813094586134, + 0.007441338617354631, + -0.02849874459207058, + -0.01964566297829151, + 0.056153081357479095, + -0.02773350104689598, + 0.04644239693880081, + -0.08027146011590958, + -0.0371275320649147, + -0.030187558382749557, + -0.0226802509278059, + 0.10122331976890564, + -0.08850443363189697, + -0.07436061650514603, + 0.01314108818769455, + -0.05472814291715622, + 0.016677042469382286, + -0.04319670796394348, + 0.02684951201081276, + -0.0027740097139030695, + 0.02555651217699051, + 0.04475358501076698, + -0.06992747634649277, + 0.031823597848415375, + -0.04839508980512619, + -0.026915481314063072, + -0.038895510137081146, + -0.01963246800005436, + 0.006313263438642025, + -0.09515414386987686, + -0.018128367140889168, + 0.006141743157058954, + -0.05016306787729263, + 0.05493924766778946, + 0.05456981807947159, + -0.00981623400002718, + 0.018009623512625694, + 0.002214919775724411, + 0.0365997776389122, + 0.008226374164223671, + 0.048263151198625565, + -0.08259358257055283, + 0.0172575730830431, + -0.07393840700387955, + -0.0011833246098831296, + 0.1071869432926178, + -0.028525132685899734, + 0.06528323143720627, + 0.00027294803294353187, + 0.09130153059959412, + -0.021677516400814056, + 0.02936953864991665, + 0.026110654696822166, + 0.03995101898908615, + -0.09800401329994202, + -0.008298940025269985, + 0.0032011610455811024, + 0.02468571811914444, + 0.07071910798549652, + 0.006280278787016869, + 0.048474252223968506, + 0.0572085902094841, + -0.09673740714788437, + 0.030134784057736397, + 0.023168424144387245, + 0.029211213812232018, + 0.022126108407974243, + -0.03654700145125389, + -0.011821701191365719, + 0.020424099639058113, + 0.13003870844841003, + -0.004561778157949448, + 0.033063821494579315, + -0.04258979111909866, + -0.09911230206489563, + 0.02489681914448738, + -0.0020565935410559177, + -0.03356518968939781, + -0.02731129713356495, + 0.05916128307580948, + 0.007236834149807692, + 0.011874476447701454, + -0.02484404481947422, + 0.02860429510474205, + 0.03715391829609871, + -0.044357769191265106, + 0.0015552266268059611, + -0.11768925935029984, + 0.06966359913349152, + -0.021426834166049957, + 0.007771185599267483, + 0.014618800021708012, + -0.03736501932144165, + 0.07742159068584442, + 0.02509472705423832, + 0.05116580054163933, + 0.01481670793145895, + 0.006296771112829447, + -0.009783249348402023, + 0.001441429601982236, + -0.02571483887732029, + -0.0365997776389122, + -0.00028325573657639325, + 0.026862705126404762, + 0.002454058500006795, + 0.07467726618051529, + -0.02092546783387661, + 0.0014826604165136814, + -0.01684856414794922, + 0.012831032276153564, + -0.07193294167518616, + 0.03166527301073074, + -0.04314393177628517, + -0.060691770166158676, + -0.03158610686659813, + 0.0016376882558688521, + -0.017349930480122566, + 0.042695339769124985, + 0.03736501932144165, + 0.0747300386428833, + -0.012494588270783424, + -0.04013573005795479, + -0.05889740586280823, + 0.0891905128955841, + 0.04454248398542404, + 0.003895488101989031, + 0.05551977455615997, + -0.013431352563202381, + -0.005086234305053949, + -0.003770146518945694, + 0.06428050249814987, + -0.0025645571295171976, + 7.462778739864007e-05, + -0.04575631767511368, + 0.018788062036037445, + -0.033169373869895935, + -0.026453696191310883, + -0.010027335956692696, + 0.026480084285140038, + -0.028419582173228264, + 0.044964686036109924, + 0.0572085902094841, + -0.03567620739340782, + -0.023669790476560593, + 0.03374990075826645, + 0.02170390449464321, + 0.023801729083061218, + -0.014750738628208637, + 0.024606555700302124, + 0.055941980332136154, + 0.04324948415160179, + -0.08549623191356659, + 0.054094839841127396, + -0.035544268786907196, + 0.039555203169584274, + -0.003281973535194993, + -0.0340137779712677, + -0.03293188288807869, + 0.06528323143720627, + 0.037338633090257645, + 0.014288953505456448, + 0.023564239963889122, + 0.08581288903951645, + -0.05689193680882454, + -0.010917921550571918, + 0.031876374036073685, + 0.07726326584815979, + 0.021783068776130676, + -0.024553779512643814, + -0.009024602361023426, + -0.07446616142988205, + 0.015621533617377281, + 0.014618800021708012, + -0.008582607842981815, + -0.027179358527064323, + 0.00021831720368936658, + -0.09335977584123611, + -0.01432853564620018, + 0.036256734281778336, + 0.028841784223914146, + 0.05456981807947159, + 0.05916128307580948, + 0.040742650628089905, + 0.037549734115600586, + -0.040373221039772034, + 0.04633684828877449, + 0.005112621933221817, + -0.009499581530690193, + -0.033116597682237625, + 0.010627657175064087, + 0.050321392714977264, + 0.038367755711078644, + -0.06005846709012985, + -0.032852720469236374, + -0.07098298519849777, + -0.020595621317625046, + -0.028947336599230766, + -0.031981922686100006, + 0.011650181375443935, + 0.006999344564974308, + -0.015911798924207687, + 0.005696450360119343, + -0.016769399866461754, + -0.03356518968939781, + -0.022389985620975494, + -0.015265299938619137, + 0.012013012543320656, + 0.01865612342953682, + 0.004429839551448822, + -0.09942895174026489, + -0.10275380313396454, + -0.043011993169784546, + -0.006339651066809893, + 0.04554521664977074, + 0.016017349436879158, + -0.00743474205955863, + 0.0006996870506554842, + -0.032852720469236374, + 0.05375180020928383, + -0.00426491629332304, + -0.030847251415252686, + 0.04359252378344536, + 0.05641695857048035, + -0.05536144971847534, + 0.04617851972579956, + -0.04158705845475197, + 0.10006225854158401, + 0.038631632924079895, + 0.003618417074903846, + -0.05441149324178696, + 0.0001030770581564866, + -0.04805205017328262, + 0.01849779672920704, + -0.006794839631766081, + -0.007975690066814423, + -0.008457266725599766, + -0.06813310831785202, + 0.0066332146525382996, + 0.009116959758102894, + -0.037602510303258896, + -0.06354164332151413, + 0.01489587128162384, + -0.07562722265720367, + 0.027548786252737045, + 0.022429566830396652, + -0.030530599877238274, + -0.00627368176355958, + -0.0008246164652518928, + -0.002816889900714159, + 0.01033739186823368, + -0.07536334544420242, + 0.0011165306204929948, + 0.03520122542977333, + -0.06982192397117615, + 0.01917068287730217, + 0.04538688808679581, + 0.0767882838845253, + -0.038262203335762024, + 0.004403451923280954, + 0.00806804746389389, + -0.02695506252348423, + 0.047893721610307693, + -0.03282633051276207, + -0.032193027436733246, + 0.07615497708320618, + -0.005261052865535021, + -0.07773824036121368, + 0.02066159062087536, + 0.040320444852113724, + 0.004271513316780329, + 0.028789009898900986, + -0.026480084285140038, + 0.05314487963914871, + -0.04256340116262436, + 0.08739615231752396, + 0.009380836971104145, + 0.028208479285240173 + ] + }, + { + "id": "00edb812-7a6a-4270-acdc-4fd24b7f4d14", + "productId": "a42bac78-76da-4168-9027-4dc08b7ef4c9", + "category": "Media", + "docType": "customerRating", + "userName": "jmyers", + "reviewDate": "2022-11-14T10:23:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "738f6fbf-00fa-4203-8e10-86c8fe6d19e3", + "productId": "738f6fbf-00fa-4203-8e10-86c8fe6d19e3", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Micro (Black)", + "description": "This Basic Keyboard Micro (Black) is powered by the new Arduino IDE 5.5 as shown here.\n\nTo run, you need a Microcontroller-specific software like Arduino Mini, or to use the serial driver and connect to an external USB power source. It can be found in the Accessories section of the main page.\n\nHere are some examples of how a basic keyboard can start working:\n\nIn basic mode, the USB power needs to be turned on", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-03-29T22:24:16", + "price": 1052.4, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-07-10T15:44:53", + "newPrice": 1149.8 + }, + { + "priceDate": "2021-07-11T15:44:53", + "newPrice": 1112.53 + }, + { + "priceDate": "2024-06-17T15:44:53", + "newPrice": 1052.4 + } + ], + "descriptionVector": [ + -0.04073396697640419, + 0.03396625444293022, + -0.01485491544008255, + 0.025559820234775543, + -0.019600827246904373, + 0.056993503123521805, + 0.06222890317440033, + 0.05886632949113846, + -0.01465273555368185, + 0.020824549719691277, + 0.041925765573978424, + -0.019803008064627647, + 0.0214310884475708, + -0.09466284513473511, + 0.04215987026691437, + -0.013737604953348637, + -0.0462673157453537, + -0.006900725420564413, + -0.03339163586497307, + 0.032838303595781326, + -0.01961146853864193, + -0.039542168378829956, + -0.1448035091161728, + 0.026602642610669136, + -0.004259082954376936, + 0.02300596609711647, + -0.0010235366644337773, + 0.015887098386883736, + -0.0797227993607521, + 0.03307240456342697, + -0.040627557784318924, + -0.030922912061214447, + -0.03609446436166763, + -0.006288864649832249, + 0.04011678695678711, + -0.05805760622024536, + -0.04196833074092865, + -0.03354061394929886, + -0.0612073615193367, + 0.01871762052178383, + 0.10240953415632248, + 0.05469503253698349, + 0.04503295570611954, + -0.011439136229455471, + -0.030688809230923653, + 0.10836852341890335, + 0.0194837749004364, + -0.026113154366612434, + -0.00676239188760519, + -0.06508070230484009, + 0.06512326747179031, + 0.0016679856926202774, + -0.06312274932861328, + 0.015865815803408623, + 0.033093687146902084, + 0.03856319189071655, + -0.025687512010335922, + 0.03971242532134056, + -0.005549311172217131, + -0.10445261746644974, + 0.042138587683439255, + -0.0001636062515899539, + -0.020888395607471466, + -0.03779703378677368, + 0.015759406611323357, + 0.003088566940277815, + -0.05741914361715317, + 0.05380118638277054, + 0.09576951712369919, + 0.0688263550400734, + -0.00977381132543087, + 0.03886114060878754, + -0.03209342807531357, + -0.005017258692532778, + 0.021239550784230232, + 0.010124965570867062, + 0.09474797546863556, + 0.051460154354572296, + 0.06337814033031464, + 0.0052886055782437325, + 1.6470776245114394e-05, + -0.0699755921959877, + -0.05435451865196228, + -0.04814014211297035, + -0.031114451587200165, + 0.026240846142172813, + 0.021814167499542236, + -0.08602230995893478, + -0.05167297273874283, + 0.09015103429555893, + -0.04233012720942497, + 0.08759718388319016, + -0.05380118638277054, + 0.01553594321012497, + 0.00521145761013031, + -0.02553853765130043, + 0.0049720341339707375, + 0.02430417388677597, + -0.007470021955668926, + -0.06661301851272583, + 0.07074175029993057, + -0.02607058919966221, + 0.0017384827369824052, + -0.04388371855020523, + 0.0033439521212130785, + 0.0060281590558588505, + 0.08972539752721786, + 0.036732930690050125, + -0.06248428672552109, + -0.004562353249639273, + -0.043713461607694626, + 0.0014046195428818464, + 0.022473912686109543, + 0.02547469176352024, + 0.007906305603682995, + 0.0035567732993513346, + -0.04835296422243118, + -0.037009596824645996, + 0.008002075366675854, + 0.02628341130912304, + 0.11236956715583801, + 0.024325456470251083, + 0.058227863162755966, + 0.03468984737992287, + -0.05954735726118088, + 0.04230884462594986, + 0.013514142483472824, + 0.011747727170586586, + 0.02319750376045704, + 0.004078185185790062, + -0.06874123215675354, + -0.006262262351810932, + 0.025091612711548805, + 0.0558442696928978, + -0.025921614840626717, + 0.05073656141757965, + -0.009263040497899055, + 0.04890630021691322, + 0.0017078897217288613, + 0.03445574268698692, + 0.03130599111318588, + -0.01584453508257866, + -0.07014584541320801, + -0.0353921577334404, + -0.05175810307264328, + -0.019845571368932724, + -0.01677030697464943, + 0.03439189866185188, + 0.05460990592837334, + 0.042202431708574295, + -0.061590440571308136, + -0.025027766823768616, + 0.014110041782259941, + -0.059462226927280426, + 0.029390599578619003, + 0.009268361143767834, + 0.029880087822675705, + 0.007225277833640575, + -0.06086684763431549, + 0.0795525461435318, + -0.010167529806494713, + 0.015291199088096619, + -0.0036498825065791607, + -0.020835189148783684, + 0.010428235866129398, + 0.0050119380466639996, + 0.027007002383470535, + 0.020547881722450256, + -0.0769561231136322, + 0.011460418812930584, + -0.023112375289201736, + -6.808614125475287e-05, + 0.020984165370464325, + -0.049331940710544586, + -0.03100804053246975, + 0.012003112584352493, + 0.05167297273874283, + 0.022133398801088333, + 0.0284116230905056, + -0.06989046186208725, + 0.0028810661751776934, + 0.006773032713681459, + -0.022133398801088333, + 0.0996854230761528, + 0.06146274507045746, + 0.003857383271679282, + -0.02924162521958351, + 0.0002755036111921072, + 0.01561043132096529, + -0.0318167619407177, + 0.005879184231162071, + -0.023431608453392982, + -0.085383839905262, + 0.01434414554387331, + 0.04109576344490051, + 0.04758680611848831, + -0.11134802550077438, + 0.017834411934018135, + -0.007555150426924229, + 0.008741628378629684, + -0.04375602677464485, + 0.018579285591840744, + -0.004296327009797096, + 0.015280557796359062, + 0.054865289479494095, + 0.047544244676828384, + -0.0028571239672601223, + 0.008193613961338997, + 0.007709445897489786, + -0.00986426044255495, + 0.0284116230905056, + -0.026538796722888947, + -0.0015908380737528205, + -0.036732930690050125, + 0.05188579484820366, + 0.0006008871714584529, + -0.030710091814398766, + -0.009651439264416695, + -0.031731631606817245, + -0.051162201911211014, + 0.011811573058366776, + -0.03162522241473198, + 0.015897739678621292, + -0.04054242745041847, + -0.07606227695941925, + -0.07329560071229935, + -0.02029249630868435, + 0.0420534573495388, + 0.036860622465610504, + 0.06686840206384659, + -0.05878119915723801, + -0.009784451685845852, + 0.0413937121629715, + -0.015950944274663925, + -0.06065402552485466, + 0.03202958032488823, + 0.07529611885547638, + -0.0584406852722168, + -0.09151308983564377, + 0.08159562945365906, + -0.0010155559284612536, + -0.010103683918714523, + -0.043500643223524094, + -0.03943575918674469, + 0.0436709001660347, + -0.08440486341714859, + -0.003117829794064164, + 0.03598805516958237, + -0.06078171730041504, + -0.02477238141000271, + -0.03822267800569534, + 0.09934490919113159, + 0.07014584541320801, + 0.02949701063334942, + -0.060143254697322845, + 0.07487048208713531, + 0.010555928573012352, + -0.04243653640151024, + -0.01040695421397686, + -0.04347936064004898, + -0.014535684138536453, + 0.010140927508473396, + -0.05052373930811882, + 0.06273967027664185, + -0.04345807805657387, + 0.027645466849207878, + 0.06248428672552109, + -0.027198541909456253, + -0.007757330778986216, + 0.014173888601362705, + 0.13518399000167847, + 0.03877601400017738, + 0.052056051790714264, + 0.06593199074268341, + -0.06499557942152023, + -0.001928691635839641, + -0.05077912658452988, + 0.05984530597925186, + 0.023431608453392982, + -0.04971501976251602, + 0.02875213697552681, + 0.09815311431884766, + 0.049331940710544586, + 0.01599350944161415, + 0.027900852262973785, + -0.011790291406214237, + -0.012747986242175102, + 0.047544244676828384, + -0.040350887924432755, + 0.033306509256362915, + -0.008736307732760906, + -0.014173888601362705, + -0.047544244676828384, + 0.03060368075966835, + 0.046437572687864304, + -0.018919799476861954, + -0.0021175704896450043, + -0.006267582532018423, + 0.04101063311100006, + 0.04792732000350952, + 0.04011678695678711, + -0.056865811347961426, + -0.024474430829286575, + -8.33410958875902e-05, + 0.023942379280924797, + 0.004176614806056023, + 0.029050085693597794, + -0.03658395633101463, + -0.01454632543027401, + -0.04882116988301277, + 0.04916168376803398, + -0.02069685608148575, + -0.05107707530260086, + -0.03128470852971077, + 0.062271468341350555, + -0.017717359587550163, + 0.007012456655502319, + 0.04779962822794914, + -0.012567088939249516, + 0.002705488819628954, + -0.04422423243522644, + -0.026389822363853455, + -0.07082687318325043, + 0.09508848935365677, + 0.06222890317440033, + -0.08040382713079453, + 0.01618504710495472, + 0.010508043691515923, + 0.0037908765953034163, + -0.04443705454468727, + -0.02594289742410183, + -0.0436709001660347, + -0.01094964798539877, + 0.00046454864786937833, + 0.025559820234775543, + -0.11969061195850372, + 0.02396366000175476, + 0.053843747824430466, + 0.030369577929377556, + 0.013322603888809681, + -0.027411364018917084, + 0.04486269876360893, + -0.04054242745041847, + -0.0732104703783989, + -0.02238878421485424, + -0.05933453515172005, + -0.007251880597323179, + 0.03564754128456116, + 0.024687252938747406, + -0.02328263223171234, + 0.0014844274846836925, + -0.06405916064977646, + 0.08836334198713303, + -0.1224147230386734, + 0.011173110455274582, + -0.06346326321363449, + 0.004078185185790062, + -0.01177965011447668, + -0.08759718388319016, + 0.06435711681842804, + -0.04443705454468727, + -0.005810017231851816, + 0.08623512834310532, + 0.014908120967447758, + 0.0030140795279294252, + -0.02396366000175476, + -0.02155878208577633, + -0.08614999800920486, + 0.04639500752091408, + 0.007273162715137005, + 0.0004758547875098884, + -0.05375862121582031, + -0.00881611555814743, + 0.027347516268491745, + -0.023708274587988853, + 0.05337554216384888, + -0.008608615025877953, + -0.008640538901090622, + -0.025730077177286148, + 0.013375808484852314, + 0.03281702101230621, + -0.04071268439292908, + -0.0769561231136322, + 0.036392416805028915, + 0.023389043286442757, + -0.04271320253610611, + 0.007124187890440226, + 0.019930699840188026, + 0.014376068487763405, + 0.038712166249752045, + -0.004711328074336052, + -0.007821177132427692, + -0.05903658643364906, + 0.07265713810920715, + -0.01006644032895565, + -0.0366903655230999, + 0.05252425745129585, + -0.01782377064228058, + 0.020005187019705772, + 0.03400881960988045, + 0.051928360015153885, + 0.06010068953037262, + 0.033710870891809464, + -0.027560338377952576, + -0.0767858698964119, + -0.09585464000701904, + -0.024219045415520668, + 0.05920684337615967, + 0.0011213014367967844, + -0.07653048634529114, + -0.013194911181926727, + -0.0061026462353765965, + -0.022026987746357918, + -0.05703606829047203, + -0.02656007930636406, + 0.020303137600421906, + 0.02016480267047882, + 0.027347516268491745, + -0.0017717360751703382, + 0.010486762039363384, + 0.0532478503882885, + 0.025453409180045128, + -0.04635244607925415, + -0.01074746809899807, + -0.018664414063096046, + -0.028028544038534164, + -0.028922393918037415, + 0.0001024201774271205, + -0.01099221222102642, + -0.015663636848330498, + -0.056184783577919006, + -0.005618478171527386, + -0.0775945857167244, + -7.274160452652723e-05, + 0.005868542939424515, + -0.03649882599711418, + 0.007698805071413517, + 0.0639740377664566, + -0.06950738281011581, + 0.05482272803783417, + -0.03005034476518631, + 0.01862185075879097, + -0.039669860154390335, + 0.006060081999748945, + -0.13416245579719543, + 0.05214117839932442, + -0.01846223510801792, + 0.033859845250844955, + 0.04294730722904205, + -0.06248428672552109, + -0.07223149389028549, + -0.04079781472682953, + -0.061164796352386475, + -0.022410066798329353, + 0.09117257595062256, + -0.015344404615461826, + 0.03705216199159622, + 0.04486269876360893, + -0.00019885475921910256, + -0.03249778971076012, + 0.01813236065208912, + 0.055290933698415756, + 0.026645207777619362, + -0.032008301466703415, + 0.008204255253076553, + -0.06431455165147781, + -0.008672461844980717, + 0.0034370615612715483, + -0.03828652203083038, + -0.03828652203083038, + 0.07269970327615738, + -0.06942225992679596, + 0.04362833499908447, + 0.015386968851089478, + 0.06989046186208725, + -0.04622475057840347, + -0.036179594695568085, + 0.05499298498034477, + -0.024495713412761688, + -0.017164025455713272, + -0.024389302358031273, + 0.021048011258244514, + -0.040776532143354416, + -0.015429533086717129, + 0.03658395633101463, + -0.042415253818035126, + 0.012152086943387985, + 0.0314975306391716, + 0.01177965011447668, + 0.056227345019578934, + -0.007161431480199099, + 0.04703347384929657, + 0.021356601268053055, + -0.0013580649392679334, + -0.02260160632431507, + 0.024602124467492104, + -0.014780428260564804, + 0.06354839354753494, + -0.028326494619250298, + 0.055971961468458176, + -0.008789513260126114, + -0.01338644977658987, + 0.015120942145586014, + -0.043713461607694626, + 0.07035867124795914, + 0.03128470852971077, + -0.03845677897334099, + -0.0002675228170119226, + 0.015365686267614365, + -0.003865364007651806, + 0.0015309820882976055, + -0.085383839905262 + ] + }, + { + "id": "ea0369b6-c6ba-40c3-911f-3a67347c85a4", + "productId": "738f6fbf-00fa-4203-8e10-86c8fe6d19e3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ianderson", + "reviewDate": "2021-07-10T15:44:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "31aa6f4a-7583-47a2-b35a-479d6190750c", + "productId": "31aa6f4a-7583-47a2-b35a-479d6190750c", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse 3000 (Silver)", + "description": "This Amazing Mouse 3000 (Silver) is a light and very bright white mouse that is powered by a 3.4 v CPU. It has a very smooth click/roll of 8p. It has a black border with an 80% White area. In my tests it performed well. The mouse is very smooth in hand. No noise, no buzzing. The mouse will still function just fine when you", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-10-19T09:56:28", + "price": 861.47, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2022-03-26T22:11:52", + "newPrice": 884.28 + }, + { + "priceDate": "2022-05-28T22:11:52", + "newPrice": 883.49 + }, + { + "priceDate": "2022-07-30T22:11:52", + "newPrice": 839.96 + }, + { + "priceDate": "2022-10-01T22:11:52", + "newPrice": 788.33 + }, + { + "priceDate": "2022-12-03T22:11:52", + "newPrice": 912.23 + }, + { + "priceDate": "2023-10-09T22:11:52", + "newPrice": 861.47 + } + ], + "descriptionVector": [ + -0.04942469671368599, + -0.014351663179695606, + -0.0143120177090168, + 0.024593411013484, + 0.032535724341869354, + -0.021672861650586128, + -0.014734902419149876, + 0.028994059190154076, + 0.07786372303962708, + 0.06935315579175949, + 0.03401581943035126, + 0.0009316687355749309, + 0.03150494024157524, + -0.06782019883394241, + -0.023655135184526443, + 0.02571669965982437, + -0.08288548141717911, + -0.01485383976250887, + 0.0006314368220046163, + -0.017761174589395523, + 0.010274786502122879, + -0.024302678182721138, + -0.0015123097691684961, + 0.030051272362470627, + 0.008021601475775242, + -0.05056120082736015, + -0.024461260065436363, + -0.0011976237874478102, + -0.02981339953839779, + 0.011966327205300331, + 0.008887195028364658, + 0.04387433081865311, + 0.08573995530605316, + 0.06248127296566963, + -0.0014288891106843948, + -0.05777667835354805, + -0.019479144364595413, + -0.08235687762498856, + 0.03663242235779762, + -0.002114425413310528, + 0.012243845500051975, + 0.0064985547214746475, + 0.011867213062942028, + -0.01844836212694645, + -0.009395978413522243, + 0.06417281180620193, + -0.04675523564219475, + 0.012309920974075794, + 0.03602452576160431, + 0.0364738404750824, + 0.04437650740146637, + 0.010545697063207626, + -0.06945887953042984, + 0.00023456908820662647, + 0.051724135875701904, + -0.030632739886641502, + 0.038535404950380325, + 0.14113789796829224, + 0.028016138821840286, + -0.03475587069988251, + 0.025161663070321083, + -0.0587281696498394, + -0.002008704235777259, + -0.010671241208910942, + -0.04501083493232727, + -0.023734426125884056, + -0.015607103705406189, + 0.020443851128220558, + 0.04805032163858414, + 0.01869945041835308, + -0.08573995530605316, + -0.014298802241683006, + 0.03237714245915413, + 0.05116909742355347, + 0.0402798056602478, + 0.05101051554083824, + 0.09403907507658005, + 0.014391308650374413, + 0.027355380356311798, + -0.007618539500981569, + 0.03377794846892357, + -0.010915721766650677, + -0.05925677344202995, + 0.031557802110910416, + 0.07426919788122177, + 0.028386162593960762, + -0.005282760132104158, + -0.12485682964324951, + -0.039169732481241226, + 0.06549432873725891, + -0.02455376647412777, + 0.02431589365005493, + 0.04900181293487549, + -0.017126847058534622, + 0.0012042314046993852, + -0.053997140377759933, + -0.005025064572691917, + 0.031161345541477203, + -0.007288160268217325, + 0.028439022600650787, + 0.0279897078871727, + 0.04120486602187157, + -0.054922204464673996, + 0.007215477060526609, + -0.00015259379870258272, + -0.034359414130449295, + 0.004321357235312462, + -0.03420083224773407, + -0.04437650740146637, + -0.05962679907679558, + -0.039196163415908813, + -0.05288706719875336, + -0.01880517229437828, + -0.033804379403591156, + -0.01624143123626709, + 0.009587598033249378, + -0.08669144660234451, + -0.009415801614522934, + -0.04160132259130478, + -0.02991912141442299, + 0.04120486602187157, + 0.013981638476252556, + -0.0015618667239323258, + 0.0740048959851265, + -0.015792116522789, + 0.006191302090883255, + 0.04080841317772865, + -0.06285130232572556, + 0.014483815059065819, + -0.03620953857898712, + -0.07368773221969604, + 0.04683452472090721, + 0.057300932705402374, + 0.04630591720342636, + -0.027461102232336998, + 0.051063377410173416, + -0.05222630873322487, + 0.03819181025028229, + -0.0379539392888546, + 0.045724451541900635, + -0.05629657953977585, + 0.000693382928147912, + -0.033804379403591156, + 0.057618096470832825, + -0.05005902424454689, + 0.03391009941697121, + -0.10540410876274109, + -0.00899952370673418, + -0.0059005687944591045, + 0.02631138265132904, + 0.028148289769887924, + -0.07083325833082199, + 0.036605991423130035, + -0.06353848427534103, + 0.012323136441409588, + 0.015131358057260513, + -0.07310625910758972, + -0.003799358382821083, + -0.028280440717935562, + 0.014457384124398232, + -0.027091076597571373, + -0.042394232004880905, + -0.04215635731816292, + 0.004053750075399876, + 0.006227643694728613, + 0.028914768248796463, + 0.05286063626408577, + 0.07046323269605637, + -0.07078039646148682, + 0.03665885329246521, + -0.01634715311229229, + -0.028148289769887924, + 0.0009002827573567629, + -0.06745017319917679, + 0.05497506260871887, + -0.0007227040478028357, + 0.01119324006140232, + 0.04955684766173363, + -0.024540551006793976, + -0.0291526410728693, + 0.03314362093806267, + 0.043795038014650345, + -0.06496572494506836, + 0.025201309472322464, + 0.06940601766109467, + -0.004367610439658165, + 0.001927761361002922, + 0.016003558412194252, + -0.05920391529798508, + -0.01468204241245985, + 0.015356015413999557, + 0.014470599591732025, + 0.02785755693912506, + -0.008345372974872589, + -0.018897678703069687, + 0.12263668328523636, + -0.0402798056602478, + 0.0014445821288973093, + 0.035760220140218735, + -0.033407922834157944, + -0.003957940265536308, + 0.049583278596401215, + 0.07606645673513412, + 0.04223565012216568, + 0.009990660473704338, + -0.028148289769887924, + 0.03044772706925869, + -0.03002484329044819, + 0.05077264457941055, + -0.02224111370742321, + 0.058040980249643326, + -0.0017146669561043382, + -0.03213926777243614, + -0.017880110070109367, + 0.02118390053510666, + -0.004896216560155153, + -0.014219511300325394, + -0.012124909088015556, + -0.034147970378398895, + -0.03129349648952484, + 0.006723212543874979, + 0.0012703072279691696, + -0.040781982243061066, + 0.02368156611919403, + -0.13733193278312683, + -0.002287874463945627, + 0.06406709551811218, + 0.02196359448134899, + 0.020285269245505333, + -0.025201309472322464, + -0.08505276590585709, + -0.006263985764235258, + 0.004370913840830326, + 0.08452416211366653, + -0.09958944469690323, + 0.09805648028850555, + -0.07247193157672882, + -0.019452715292572975, + -0.012342958711087704, + 0.10640846192836761, + -0.06057829037308693, + -0.01971701718866825, + -0.01124610099941492, + -0.04630591720342636, + 0.06078973412513733, + -0.055239368230104446, + 0.045724451541900635, + -0.0733705684542656, + -0.06945887953042984, + 0.015184218063950539, + -0.0496097095310688, + 0.0026694622356444597, + -0.031874965876340866, + 0.04844677448272705, + 0.019426284357905388, + 0.031346358358860016, + 0.010691064409911633, + -0.020787445828318596, + -0.013413387350738049, + -0.04654379189014435, + -0.03615667670965195, + 0.024923790246248245, + -0.03129349648952484, + 0.03570736199617386, + -0.03494088351726532, + 0.010010483674705029, + -0.027910416945815086, + -0.0375310517847538, + -0.0036903333384543657, + 0.0007503732922486961, + -0.009633851237595081, + 0.009673496708273888, + 0.03335506096482277, + -0.04469367116689682, + -0.05101051554083824, + 0.002436544978991151, + -0.058146700263023376, + 0.024302678182721138, + 0.002664506435394287, + -0.0996422991156578, + 0.06454283744096756, + 0.07902665436267853, + 0.10746567696332932, + 0.03784821555018425, + 0.02578277699649334, + 0.01732507348060608, + 0.01387591753154993, + -0.004294926766306162, + -0.008603068999946117, + -0.008233044296503067, + 0.017417579889297485, + -0.010254964232444763, + 0.01350589282810688, + -0.020457066595554352, + 0.03739890083670616, + 0.008642714470624924, + 0.05190914496779442, + 0.007407096680253744, + -0.01708720065653324, + 0.045486580580472946, + 0.034465137869119644, + -0.031240636482834816, + -0.11354465037584305, + -0.027196798473596573, + 0.039381176233291626, + 0.06930029392242432, + 0.022822581231594086, + -0.04501083493232727, + -0.03763677552342415, + -0.06819022446870804, + 0.09055027365684509, + 0.043240003287792206, + -0.04950398579239845, + -0.0285183135420084, + 0.1138618141412735, + -0.05241132155060768, + 0.02960195764899254, + 0.004304838366806507, + 0.01848800852894783, + 0.00801499467343092, + -0.02364191971719265, + -0.04117843881249428, + -0.05346853658556938, + 0.06877169013023376, + 0.021699292585253716, + -0.0368967242538929, + 0.00579815125092864, + 0.03893186151981354, + -0.04361002519726753, + -0.012276883237063885, + -0.02743467129766941, + -0.038746848702430725, + -0.011146986857056618, + -0.026284951716661453, + 0.004420470912009478, + -0.0379539392888546, + 0.028016138821840286, + 0.10566841810941696, + 0.07194332778453827, + 0.07532641291618347, + 0.006766161881387234, + 0.0379539392888546, + -0.0013818101724609733, + 0.03171638399362564, + 0.02817472070455551, + -0.096682108938694, + 0.031452078372240067, + -0.07701794803142548, + 0.021844659000635147, + 0.004301534499973059, + 0.001726230257190764, + -0.10540410876274109, + 0.047865308821201324, + -0.013743765652179718, + 0.02567705512046814, + -0.006237555295228958, + -0.03560163825750351, + 0.005015152972191572, + 0.029866261407732964, + 0.0784451887011528, + -0.0029238539282232523, + -0.0028709934558719397, + 0.05201486870646477, + 0.017073985189199448, + -0.0587281696498394, + 0.03449156507849693, + -0.00527945626527071, + -0.003868737956508994, + 0.06216410920023918, + -0.053997140377759933, + -0.05341567471623421, + -0.044561516493558884, + -0.03208640590310097, + 0.10587985813617706, + -0.05212058871984482, + -0.042843546718358994, + 0.0627455785870552, + 0.005342228338122368, + -0.029443375766277313, + 0.03673814237117767, + 0.06549432873725891, + 0.06856025010347366, + 0.03396296128630638, + 0.0011365037644281983, + 0.057829536497592926, + -0.01392877846956253, + 0.03554878011345863, + 0.0014330188278108835, + -0.04405934363603592, + -0.01094215176999569, + 0.010783569887280464, + 0.04038552567362785, + 0.07088611274957657, + 0.08008386939764023, + 0.03293217718601227, + -0.04871107637882233, + 0.048737507313489914, + 0.03615667670965195, + -0.012131516821682453, + -0.07622504234313965, + -0.01719292253255844, + 0.037583913654088974, + 0.02991912141442299, + -0.008048032410442829, + -0.016849327832460403, + -0.016545379534363747, + 0.0356280691921711, + 0.014827408827841282, + -0.08378411084413528, + -0.0811939388513565, + -0.018184060230851173, + -0.06708014756441116, + 0.07448063790798187, + -0.07453349977731705, + -0.01908268965780735, + -0.005685822572559118, + 0.0801367238163948, + -0.0364738404750824, + 0.06078973412513733, + -0.08573995530605316, + 0.028861908242106438, + 0.02357584424316883, + 0.01719292253255844, + 0.07812802493572235, + -0.04514298588037491, + 0.0021243367809802294, + -0.03258858248591423, + 0.010684456676244736, + 0.13236303627490997, + -0.03845611587166786, + 0.015554242767393589, + -0.05989110469818115, + -0.02981339953839779, + -0.027025001123547554, + -0.0561908595263958, + 0.010215318761765957, + 0.009012739174067974, + 0.03517875447869301, + 0.004506369587033987, + 0.03002484329044819, + 0.045169416815042496, + -0.011920074000954628, + 0.005893961060792208, + 0.009131675586104393, + -0.02785755693912506, + 0.009501699358224869, + -0.03216569870710373, + 0.01844836212694645, + -0.0034161186777055264, + -0.036262396723032, + 0.00038323961780406535, + -0.026007434353232384, + 0.06565291434526443, + -0.0024167222436517477, + 0.07574929296970367, + 0.004542711190879345, + -0.03208640590310097, + 0.026284951716661453, + -0.015303154475986958, + -0.00981886312365532, + -0.06322132050991058, + 0.0784451887011528, + 0.058358144015073776, + 0.0006392833311110735, + -0.011292354203760624, + -0.02613958530128002, + -0.013690905645489693, + -0.0041165221482515335, + -0.015012421645224094, + -0.008609676733613014, + 0.004341179970651865, + -0.038852568715810776, + -0.042077068239450455, + 0.06464856117963791, + 0.005071317311376333, + -0.043900761753320694, + 0.04345144331455231, + 0.019095905125141144, + 0.026364242658019066, + 0.007030464708805084, + 0.0011811049189418554, + 0.03192782402038574, + -0.06713300943374634, + 0.02027205377817154, + 0.049371834844350815, + -0.05878102779388428, + 0.10635560750961304, + -0.009045776911079884, + 0.030156994238495827, + 0.015977127477526665, + -0.030289145186543465, + 0.07601359486579895, + 0.0286240354180336, + -0.07606645673513412, + -0.09810934215784073, + 0.018540868535637856, + 0.0016105975955724716, + 0.03840325400233269, + -0.035522349178791046, + 0.045486580580472946, + -0.013862702064216137, + -0.039064012467861176, + -0.00046707328874617815, + 0.015104927122592926, + -0.011490581557154655, + 0.01873909682035446, + -0.05175056308507919, + 0.032747164368629456, + -0.010459798388183117, + -0.05841100588440895, + 0.0477067269384861, + -0.048816800117492676 + ] + }, + { + "id": "a6b94e07-23b5-4bac-b759-f910834256c6", + "productId": "31aa6f4a-7583-47a2-b35a-479d6190750c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sandra80", + "reviewDate": "2022-12-04T07:49:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "db58f405-db39-4d3c-b512-82a285932429", + "productId": "31aa6f4a-7583-47a2-b35a-479d6190750c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "usmith", + "reviewDate": "2022-03-26T22:11:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3c2afd20-3d12-45be-a065-dc541220c421", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer 3000 (Red)", + "description": "This Luxe Computer 3000 (Red) is equipped with a display of a 3K resolution screen that will display an image of the display (or a video) for a maximum pixel density of 2445 pixels per inch (ppi). The computer will run the Java code provided in the software. With the display you'll see the display as a graphical representation of the graphics information and as a file of information that can be displayed by Microsoft Excel", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-10-14T05:48:29", + "price": 830.93, + "stock": 82, + "priceHistory": [ + { + "priceDate": "2021-01-24T16:32:48", + "newPrice": 889.11 + }, + { + "priceDate": "2021-11-17T16:32:48", + "newPrice": 880.07 + }, + { + "priceDate": "2022-09-10T16:32:48", + "newPrice": 813.93 + }, + { + "priceDate": "2025-07-22T16:32:48", + "newPrice": 830.93 + } + ], + "descriptionVector": [ + -0.018458927050232887, + 0.05483613908290863, + -0.02641402743756771, + 0.0670391097664833, + 0.009634941816329956, + -0.018857968971133232, + 0.0016766213811933994, + 0.07960250973701477, + 0.052622098475694656, + 0.10019824653863907, + 0.061581242829561234, + -0.10184590518474579, + 0.05900677666068077, + -0.05112890899181366, + 0.026568496599793434, + 0.0420667864382267, + -0.06564889848232269, + 0.035707853734493256, + -0.041448913514614105, + -0.02682594209909439, + 0.013721907511353493, + -0.026156581938266754, + -0.059985075145959854, + 0.02622094377875328, + 0.01043302658945322, + -0.00833483599126339, + 0.022166159003973007, + -0.021870095282793045, + -0.005296965129673481, + -0.0800144225358963, + 0.03182040899991989, + 0.062456563115119934, + -0.000717632588930428, + -0.022861264646053314, + 0.01614190638065338, + -0.05555699020624161, + 0.04000721126794815, + -0.03702083230018616, + 0.08037485182285309, + -0.015318077057600021, + -0.007131272926926613, + 0.018162863329052925, + 0.01691424660384655, + 0.017403393983840942, + 0.03949232026934624, + -0.08923101425170898, + -0.007144145201891661, + -0.001747419242747128, + -0.019128287211060524, + -0.07841825485229492, + 0.02757253870368004, + -0.007369410712271929, + -0.0009058904834091663, + 0.018137117847800255, + -0.02454753965139389, + -0.05483613908290863, + 0.02880828268826008, + 0.19020159542560577, + 0.04579976201057434, + -0.04631465673446655, + 0.020106585696339607, + -0.004209253005683422, + -0.014429885894060135, + 0.0028174319304525852, + -0.03920912742614746, + -0.03297891840338707, + -0.04234997555613518, + 0.05151508003473282, + 0.01710733212530613, + 0.05844039469957352, + -0.008881909772753716, + -0.007652602158486843, + 0.08294931799173355, + 0.042607422918081284, + 0.011095951311290264, + 0.03387998044490814, + 0.07203357666730881, + -0.05447571724653244, + 0.03725253418087959, + -0.014713076874613762, + 0.07399017363786697, + -0.007485262118279934, + -0.03725253418087959, + -0.0020161292050033808, + 0.02323456108570099, + -0.008643771521747112, + -0.02973509021103382, + -0.11131993681192398, + -0.048837631940841675, + 0.050897207111120224, + -0.059573158621788025, + 0.12481014430522919, + 0.06683315336704254, + -0.06400123983621597, + 5.742267603636719e-05, + 0.01713307574391365, + -0.024856476113200188, + 0.03833381086587906, + 0.03336508944630623, + 0.04955848306417465, + 0.03259274736046791, + 0.00915866531431675, + -0.01851041615009308, + -0.0926293134689331, + 0.022140413522720337, + -0.000611838127952069, + 0.0002083708968712017, + -0.03416317328810692, + 0.0237494558095932, + -0.07867570221424103, + -0.0072149429470300674, + -0.007182762026786804, + -0.031974878162145615, + -0.08207400143146515, + -0.047241464257240295, + 0.07620421797037125, + -0.03614551201462746, + 0.002154506742954254, + 0.027315091341733932, + -0.025937752798199654, + 0.045902740210294724, + -0.007350102532655001, + 0.045104656368494034, + -0.02490796521306038, + -0.029168708249926567, + 0.044769976288080215, + 0.0262466873973608, + -0.04783359169960022, + 0.007324357982724905, + -0.041011255234479904, + -0.018960947170853615, + 0.06662719696760178, + 0.02166413702070713, + 0.008405634202063084, + -0.01674690656363964, + 0.07743995636701584, + -0.008077389560639858, + 0.043894656002521515, + 0.017313288524746895, + 0.06482507288455963, + -0.02767551690340042, + 0.000410707900300622, + -0.04003295674920082, + -0.05076848343014717, + -0.07419613003730774, + 0.027855729684233665, + -0.07347527891397476, + 0.06446464359760284, + -0.03537317365407944, + 0.07635868340730667, + -0.021947328001260757, + 0.003697577863931656, + -0.00023753478308208287, + -0.046855293214321136, + 0.025577327236533165, + 0.040625084191560745, + -0.0429421029984951, + 0.03462657704949379, + -0.04041912779211998, + 0.05375486612319946, + -0.014069460332393646, + 0.05725613981485367, + -0.0429421029984951, + -0.0239682849496603, + 0.04700976237654686, + -0.0032180834095925093, + 0.01870349980890751, + 0.012878770008683205, + -0.1471565216779709, + 0.013850631192326546, + 0.014919034205377102, + -0.03297891840338707, + 0.016103290021419525, + -0.00175063731148839, + -0.006770847365260124, + -0.01870349980890751, + 0.05813145637512207, + 0.057101670652627945, + 0.009802281856536865, + -0.0997348427772522, + 0.02408413589000702, + -0.04652061313390732, + -0.0439976342022419, + 0.006220554932951927, + 0.013097599148750305, + -0.03285019472241402, + 0.08645059168338776, + -0.020801691338419914, + 0.00966712273657322, + -0.026619985699653625, + 0.06786294281482697, + 0.020660094916820526, + 0.027778495103120804, + 0.05432124808430672, + -0.0379476398229599, + -0.045207634568214417, + 0.008450686931610107, + -0.0005201227031648159, + 0.02976083569228649, + 0.022951370105147362, + -0.05967613682150841, + 0.02103339321911335, + 0.03133125975728035, + 0.021046265959739685, + -0.04157763719558716, + -0.014635843224823475, + 0.009126484394073486, + -0.005396725609898567, + 0.042633168399333954, + 0.0481167808175087, + -0.03012126125395298, + 0.03624849021434784, + -0.10117654502391815, + -0.015253715217113495, + 0.03377700224518776, + -0.011977706104516983, + -0.0006766020087525249, + 0.03287594020366669, + -0.02643977291882038, + -0.08835569769144058, + 0.06729655712842941, + -0.07229102402925491, + 0.00042358023347333074, + -0.020093712955713272, + -0.013284248299896717, + -0.03843678906559944, + 0.08701697736978531, + 0.026542751118540764, + 0.003382205730304122, + -0.0005945409066043794, + -0.02556445449590683, + 0.002194732893258333, + 0.057462096214294434, + 0.004765981342643499, + 0.011926217004656792, + -0.03640295937657356, + 0.00257124868221581, + -0.03058466501533985, + -0.06147826462984085, + 0.08078676462173462, + 0.00185361597687006, + -0.056689757853746414, + -0.02447030507028103, + -0.023633604869246483, + -0.009435420855879784, + 0.006455475464463234, + 0.05689571425318718, + -0.04093401879072189, + 0.008663080632686615, + 0.0064265127293765545, + 0.05071699246764183, + -0.01361892931163311, + -0.030842110514640808, + 0.034446366131305695, + -0.028138920664787292, + 0.03285019472241402, + -0.0014071069890633225, + 0.004283268935978413, + -0.0561748631298542, + -3.567547173588537e-05, + -0.021561158820986748, + -0.006014597602188587, + -0.051695290952920914, + -0.051309119910001755, + -0.006629251874983311, + 0.032000619918107986, + 0.005827948916703463, + -0.058285925537347794, + 0.0028544398956000805, + 0.017004352062940598, + 0.06013954058289528, + -0.017609352245926857, + 0.0685323029756546, + -0.016077544540166855, + -0.032335299998521805, + -0.011977706104516983, + -0.018047012388706207, + 0.03140849247574806, + -0.022938499227166176, + -0.07604974508285522, + 0.012569833546876907, + 0.030301472172141075, + -0.010420153848826885, + -0.01204206794500351, + 0.019913500174880028, + -0.04451252892613411, + 0.011076643131673336, + -0.01708158664405346, + 0.03256700560450554, + -0.027418069541454315, + 0.007124836556613445, + -0.009911696426570415, + 0.05859486386179924, + 0.0038359554018825293, + -0.00874675065279007, + 0.01892233081161976, + -0.0064007677137851715, + -0.01131478138267994, + -0.024779241532087326, + -0.03421466425061226, + -0.022372115403413773, + -0.040161680430173874, + -0.016489459201693535, + -0.09958036988973618, + 0.0045471517369151115, + 0.04587699845433235, + 0.002873748540878296, + 0.06219911575317383, + 0.015691375359892845, + -0.00514249736443162, + 0.07934506237506866, + 0.03346806764602661, + -0.055042099207639694, + 0.023440519347786903, + 0.06271401047706604, + -0.0635378360748291, + 0.05390933156013489, + 0.04420359432697296, + 0.006233427673578262, + 0.014275417663156986, + 0.04376593232154846, + 0.007073347456753254, + -0.07805783301591873, + 0.07728549093008041, + 0.11739568412303925, + 0.006059650797396898, + -0.09695441275835037, + 0.06348635256290436, + -0.006674305070191622, + -0.07692506164312363, + -0.015807226300239563, + 0.002418389543890953, + -0.024212859570980072, + -0.015575523488223553, + 0.03964678570628166, + -0.03336508944630623, + -0.020415520295500755, + 0.03305615112185478, + 0.008997760713100433, + 0.046391889452934265, + 0.11070206761360168, + 0.0667816698551178, + -0.05777103453874588, + -0.034446366131305695, + 0.024315837770700455, + -0.05823443830013275, + -0.020312542095780373, + 0.007749144919216633, + 0.027366580441594124, + 0.07543187588453293, + 0.0019775121472775936, + -0.0007848101085983217, + 0.05761656537652016, + -0.008025899529457092, + 0.016347862780094147, + 0.022114668041467667, + 0.03516721352934837, + -0.02062147855758667, + -0.09535824507474899, + 0.036557428538799286, + -0.027031900361180305, + 0.007794198114424944, + 0.08284633606672287, + 0.06755400449037552, + -0.05576295033097267, + 0.0022333499509841204, + -0.011765312403440475, + 0.01999073475599289, + 0.06497953832149506, + 0.058749329298734665, + 0.016927119344472885, + -0.03913189470767975, + -0.06647273153066635, + 0.12254461646080017, + -0.028962749987840652, + -0.013747652061283588, + -0.004518189001828432, + 0.033982958644628525, + -0.07465953379869461, + 0.01875499077141285, + -0.03799912706017494, + 0.06194166839122772, + 0.09643952548503876, + 0.0012043677270412445, + 0.05040805786848068, + -0.02369796670973301, + 0.007601113058626652, + -0.04631465673446655, + 0.004012949764728546, + -0.02199881710112095, + -0.008412069641053677, + -0.040135934948921204, + -0.017532117664813995, + 0.05401230975985527, + -0.011166749522089958, + 0.015948820859193802, + -0.0018198261968791485, + 0.010317175649106503, + 0.05771954357624054, + -0.08320676535367966, + -0.07213655859231949, + 0.04546508193016052, + 0.010793451219797134, + -0.054166778922080994, + -0.00016020021575968713, + -0.03799912706017494, + 0.013567439280450344, + -0.06410422176122665, + 0.003235782729461789, + -0.03328785300254822, + 0.020582862198352814, + -0.033545300364494324, + 0.012132174335420132, + 0.03431764245033264, + -0.009184409864246845, + -0.04605720937252045, + 0.07213655859231949, + 0.044358059763908386, + -0.03254126012325287, + -0.022887008264660835, + 0.0023942540865391493, + 0.014095204882323742, + -0.057925499975681305, + 0.02078881859779358, + -0.07723399996757507, + -0.0529310368001461, + 0.032798707485198975, + -0.015755735337734222, + 0.06049996614456177, + -0.06147826462984085, + 0.014108077622950077, + -0.050485290586948395, + 0.015935948118567467, + 0.026066474616527557, + 0.005686353426426649, + 0.012621322646737099, + 0.022475093603134155, + 0.0276497732847929, + 0.010265685617923737, + 0.09479186683893204, + -0.013966482132673264, + -0.06539145112037659, + -0.007697655353695154, + 0.02040264941751957, + -0.07836676388978958, + -0.01696573570370674, + -0.050871461629867554, + -0.009055686183273792, + -0.022011689841747284, + 0.015408183448016644, + -0.035141471773386, + 0.00195337668992579, + -0.046778060495853424, + -0.024727752432227135, + 0.051695290952920914, + 0.014223928563296795, + -0.11173185706138611, + 0.0032486552372574806, + -0.0013628583401441574, + 0.00473701860755682, + 0.0002176228881580755, + 0.02026105299592018, + 0.0481167808175087, + -0.012222280725836754, + -0.06194166839122772, + 0.043971892446279526, + -0.0785212367773056, + -0.04960997402667999, + 0.025487219914793968, + 0.01204206794500351, + -0.043971892446279526, + 0.002004866022616625, + 0.012389620766043663, + -0.001333895605057478, + -0.034060195088386536, + -0.04858018830418587, + 0.05643231049180031, + 0.029786579310894012, + -0.02345339208841324, + -0.026092220097780228, + 0.06642124056816101, + -0.011044462211430073, + -0.006439385004341602, + -0.041809339076280594, + 0.049661461263895035, + 0.06842932850122452, + 0.0817650631070137, + 0.06729655712842941, + 0.002189905848354101, + 0.002212432213127613, + 0.004971938673406839, + 0.03624849021434784, + -0.05156656727194786, + -0.060808904469013214, + -0.05308550223708153, + -0.012325258925557137, + -0.04703550785779953, + 0.06307443231344223, + -0.05375486612319946, + 0.058337416499853134, + -0.011623716913163662, + -0.03223232179880142, + -0.03635146841406822, + 0.04044487327337265, + -0.006815900560468435, + 0.04912082478404045, + 0.023594986647367477, + 0.04878614470362663, + -0.07718250900506973, + -0.050897207111120224, + 0.06868676841259003, + -0.059933584183454514 + ] + }, + { + "id": "ef9d13aa-2202-4688-a290-fc76d1f9ae81", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "ldominguez", + "reviewDate": "2021-09-07T03:27:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "62dc5587-e844-4327-ae47-39ae2afe5e42", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "dennis09", + "reviewDate": "2022-06-11T13:55:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "98212c37-6e46-4271-b5a1-b91a84ee8a0e", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "hubbardemily", + "reviewDate": "2022-08-16T03:28:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d8f636bf-5fc5-41a7-bb80-ee1b53fdd028", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "marshallkathryn", + "reviewDate": "2022-02-22T11:46:47", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ae42bd42-6949-44c8-85fa-9e50f13c3f76", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "adeleon", + "reviewDate": "2021-06-21T20:38:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "be52c02a-7119-4629-ac8e-0d7077ca2d7b", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "grahamerica", + "reviewDate": "2021-02-07T14:08:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fef57b8d-7555-4a1f-ab5c-3edb2e0e40b3", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "joseph47", + "reviewDate": "2022-09-11T17:24:09", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9a8fb567-3636-4625-ad82-d6a282fdc058", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "danielpark", + "reviewDate": "2021-01-24T16:32:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "54d66ecd-34a8-4c24-ab12-9fdcb8f375ef", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "darleneholt", + "reviewDate": "2022-07-02T12:37:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "94ac0226-8268-4db0-b6ae-03d9bac2f1f4", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "amandahartman", + "reviewDate": "2022-02-10T02:13:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8e36e3a1-5f86-45ac-b340-caabd127da40", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamie37", + "reviewDate": "2021-11-03T05:36:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "610d337a-6a90-4f4c-b559-e9ff3235c9a1", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "joneslinda", + "reviewDate": "2022-06-09T22:25:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f3fdd641-997d-416d-ab0f-38308bc1c818", + "productId": "3c2afd20-3d12-45be-a065-dc541220c421", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnramos", + "reviewDate": "2021-12-17T03:13:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f5366a9b-9b95-47e4-8968-1e892f98d54d", + "productId": "f5366a9b-9b95-47e4-8968-1e892f98d54d", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Pro (Black)", + "description": "This Basic Keyboard Pro (Black) is perfect. In a sense it's the only one available with the Core i2, but it has plenty of features beyond what i have.\n\nIn case you need a PC that can't be found as a", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-08-25T15:43:50", + "price": 764.51, + "stock": 7, + "priceHistory": [ + { + "priceDate": "2022-01-20T04:21:37", + "newPrice": 799.06 + }, + { + "priceDate": "2022-03-09T04:21:37", + "newPrice": 803.54 + }, + { + "priceDate": "2022-04-26T04:21:37", + "newPrice": 753.69 + }, + { + "priceDate": "2024-11-02T04:21:37", + "newPrice": 764.51 + } + ], + "descriptionVector": [ + -0.00411119032651186, + 0.014308433048427105, + -0.021251501515507698, + 0.019376002252101898, + 0.0262818094342947, + 0.018692875280976295, + 0.010625750757753849, + -0.0060177394188940525, + -0.004260236397385597, + 0.047048911452293396, + 0.06413953751325607, + -0.03375896066427231, + 0.0355723537504673, + -0.07477150112390518, + 0.04605526849627495, + 0.013004278764128685, + -0.03075319528579712, + -0.021090034395456314, + -0.02968502976000309, + 0.008253431878983974, + -0.0005302007193677127, + -0.04451512545347214, + -0.12072740495204926, + -0.0033597492147237062, + 0.022841326892375946, + 0.0007514411699958146, + -0.008787514641880989, + -0.0049309441819787025, + 0.010309027507901192, + 0.05166934058070183, + 0.030877400189638138, + 0.020618055015802383, + -0.027126403525471687, + 0.01833268068730831, + -0.02695251628756523, + -0.055792953819036484, + -0.11397064477205276, + -0.026902835816144943, + 0.021114874631166458, + -0.014842514880001545, + 0.07715623825788498, + 0.03703797608613968, + -0.032665953040122986, + -0.00563270365819335, + 0.04280109331011772, + 0.06314589828252792, + 0.07680846005678177, + -0.022083675488829613, + -0.02588435262441635, + -0.048638734966516495, + 0.03770868107676506, + -0.017686812207102776, + -0.004424808546900749, + 0.013836453668773174, + -0.02675378881394863, + 0.08068366348743439, + -0.018109111115336418, + 0.06801474094390869, + 0.047446366399526596, + -0.10135140269994736, + -0.03845391422510147, + -0.050924111157655716, + -0.04118642583489418, + -0.061009567230939865, + -0.021686218678951263, + 0.019674096256494522, + -0.058078326284885406, + 0.012817971408367157, + 0.00778766255825758, + 0.05286170914769173, + -0.07402627170085907, + -0.07238675653934479, + -0.001159765524789691, + 0.06329493969678879, + -0.0065890830010175705, + -0.002297795144841075, + 0.025462055578827858, + 0.09474368393421173, + 0.05529613047838211, + 0.009104236960411072, + 0.037410590797662735, + 0.007750401273369789, + 0.0063189370557665825, + -0.041360314935445786, + 0.040416356176137924, + 0.059469424188137054, + -0.004083244130015373, + -0.07641100883483887, + -0.036143697798252106, + 0.07819955796003342, + -0.03703797608613968, + 0.06697141379117966, + 0.011457924731075764, + -0.01330237090587616, + 0.05748214200139046, + 0.03544814884662628, + -0.08391299843788147, + 0.015401437878608704, + -0.013910976238548756, + -0.028567183762788773, + 0.05802864581346512, + -0.06339430809020996, + -0.04352148249745369, + 0.048042550683021545, + -0.022841326892375946, + 0.024058537557721138, + 0.06920710951089859, + 0.03778320550918579, + 0.017599869519472122, + -0.08490663766860962, + -0.02146264910697937, + 0.005207300651818514, + -0.03425578027963638, + -0.015463541261851788, + -0.06503381580114365, + -0.015003982000052929, + -0.09404813498258591, + -0.0071045346558094025, + 0.03765900060534477, + -0.03696345165371895, + 0.04056540131568909, + 0.04821643978357315, + 0.02874107100069523, + 0.01684221811592579, + -0.05465026572346687, + -0.005253877956420183, + -0.034330300986766815, + 0.0438692569732666, + 0.0009214469464495778, + -0.028169726952910423, + -0.06582872569561005, + 0.07571545988321304, + 0.032864682376384735, + 0.05743246152997017, + -0.013513520359992981, + 0.006812652572989464, + 0.04727248102426529, + 0.11476555466651917, + -0.06448731571435928, + 0.031920723617076874, + -0.021611696109175682, + -0.04098770022392273, + -0.03815582022070885, + -0.05281202867627144, + -0.04277625307440758, + 0.010569858364760876, + -0.03629274293780327, + 0.10164949297904968, + 0.08108112215995789, + 0.07541736215353012, + -0.021375706419348717, + -0.09275640547275543, + -0.02460503950715065, + -0.08197540044784546, + 0.019003387540578842, + 0.03467807546257973, + -0.008104385808110237, + -0.04332275688648224, + 0.00014797878975514323, + 0.09737683832645416, + -0.03229333832859993, + 0.020940987393260002, + -0.018618350848555565, + -0.022915849462151527, + -0.008601206354796886, + 0.024182742461562157, + 0.051917750388383865, + 0.037410590797662735, + -0.06533190608024597, + -0.02027028053998947, + -0.0012505905469879508, + 0.021835265681147575, + -0.02861686609685421, + -0.04558328911662102, + 0.03169715404510498, + -0.006694657262414694, + 0.0608605220913887, + 0.002993344096466899, + 0.04945848882198334, + -0.0037882570177316666, + 0.012817971408367157, + 0.008290693163871765, + -0.07015106827020645, + -8.771988359512761e-05, + 0.07447340339422226, + 0.0030771824531257153, + 0.02680347114801407, + 0.036864086985588074, + 0.013861294835805893, + -0.02286616712808609, + -0.014457479119300842, + 0.00039609798113815486, + 0.011662863194942474, + 0.0274741780012846, + 0.03149842470884323, + 0.044838059693574905, + -0.04829096049070358, + 0.019102752208709717, + -0.06354335695505142, + 0.03055446594953537, + 0.03360991179943085, + 0.07680846005678177, + 0.1008048951625824, + -0.0018196053570136428, + 0.05837642028927803, + 0.012470196932554245, + 0.010116509161889553, + 0.05782991647720337, + 0.031523264944553375, + 0.013973078690469265, + -0.025462055578827858, + -0.010613329708576202, + -0.022481132298707962, + -0.0774543285369873, + 0.0755167305469513, + -0.002948319772258401, + 0.00170471565797925, + -0.013463838025927544, + -0.04406798630952835, + -0.061208296567201614, + 0.06816378235816956, + -0.017413562163710594, + -0.004871946759521961, + -0.0009719053050503135, + -0.015488381497561932, + -0.046104948967695236, + 0.093650683760643, + 0.028517501428723335, + 0.025288168340921402, + 0.08649646490812302, + -0.037808045744895935, + 0.011544868350028992, + 0.0070300111547112465, + 0.03825518488883972, + -0.018966125324368477, + 0.0616554357111454, + 0.007911867462098598, + -0.08669519424438477, + -0.09812206774950027, + 0.09479337185621262, + -0.0003211867588106543, + -0.0020726732909679413, + -0.05350757762789726, + -0.03947239741683006, + 0.058674510568380356, + -0.05763118714094162, + 0.057333096861839294, + 0.013265109620988369, + -0.10020871460437775, + 0.03189588338136673, + -0.04908587411046028, + 0.05628977343440056, + -0.015215130522847176, + 0.03035573847591877, + -0.025784987956285477, + 0.03430546075105667, + 0.015562904998660088, + -0.02767290733754635, + -0.013786771334707737, + -0.022158198058605194, + 0.020208178088068962, + 0.011501397006213665, + -0.0036174750421196222, + 0.014221489429473877, + -0.024890711531043053, + -0.008669518865644932, + 0.016929160803556442, + -0.0504024475812912, + -0.052513934671878815, + 0.06657396256923676, + 0.07000201940536499, + -0.015389017760753632, + 0.028169726952910423, + 0.03542330861091614, + 0.04593106359243393, + -0.01784827932715416, + -0.06319557875394821, + 0.06344398856163025, + 0.02854234352707863, + 0.029461460188031197, + 0.00511414697393775, + 0.12658987939357758, + 0.02385980822145939, + 0.018034586682915688, + -0.024120640009641647, + -0.0008197539718821645, + -0.0029638453852385283, + 0.009799785912036896, + 0.0004653811629395932, + -0.03765900060534477, + -0.03390800580382347, + 0.012755868956446648, + 0.0072908420115709305, + 0.03770868107676506, + 0.027722589671611786, + 0.046378202736377716, + 0.05857514590024948, + 0.007961549796164036, + 0.07134343683719635, + 0.0695548802614212, + 0.036739882081747055, + -0.06433826684951782, + -0.024617459625005722, + -0.007918078452348709, + 0.054252807050943375, + 0.04364568740129471, + -0.03604433313012123, + -0.02869138866662979, + -0.03952207788825035, + -0.03492648899555206, + 0.025710465386509895, + -0.058674510568380356, + -0.032069768756628036, + -0.052116479724645615, + 0.046775657683610916, + 0.037013135850429535, + 0.03467807546257973, + 0.021437808871269226, + -0.03775836527347565, + -0.008843406103551388, + -0.07283389568328857, + -0.02527574822306633, + -0.08127985149621964, + 0.07417531311511993, + 0.019711356610059738, + -0.06314589828252792, + -0.012041688896715641, + 0.018109111115336418, + -0.005284929182380438, + -0.05246425420045853, + -0.07616259902715683, + 0.0016457182355225086, + -0.015438700094819069, + -0.010799637995660305, + 0.04545908421278, + -0.046378202736377716, + 0.012731027789413929, + 0.013848873786628246, + 0.014966720715165138, + 0.022108515724539757, + 0.08833470195531845, + 0.06846188008785248, + -0.014991560950875282, + -0.08003779500722885, + -0.04173292964696884, + -0.046576932072639465, + -0.07293326407670975, + -0.07800083607435226, + -0.015749212354421616, + -0.03271563723683357, + 0.001573523972183466, + -0.05315980315208435, + -0.0010805848287418485, + -0.0766594186425209, + 0.007129375357180834, + -0.006048790644854307, + 0.02588435262441635, + -0.01280555035918951, + -0.028641706332564354, + 0.045632969588041306, + -0.052513934671878815, + -0.022754382342100143, + 0.050178878009319305, + 0.05514708533883095, + -0.047173116356134415, + 0.05147061496973038, + 0.019972188398241997, + 0.026033399626612663, + -0.01578647457063198, + 0.0375596359372139, + 0.02018333598971367, + -0.018804660066962242, + -0.01691674068570137, + 0.05852546542882919, + -0.03524941951036453, + 0.029784394428133965, + 0.015587746165692806, + -0.011762227863073349, + -0.053457897156476974, + 0.0013522835215553641, + 0.018630772829055786, + -0.018469305709004402, + 0.0076820882968604565, + -0.03008248656988144, + 0.05902228504419327, + -0.12957081198692322, + -0.06423890590667725, + -0.04312402755022049, + -0.019164854660630226, + 0.013600463978946209, + -0.02105277217924595, + 0.036367267370224, + -0.07601355016231537, + 0.03383348137140274, + -0.03666536137461662, + -0.06170511618256569, + -0.0033504338935017586, + 0.01564984768629074, + -0.007272211369127035, + 0.07268485426902771, + 0.05763118714094162, + 0.0054557109251618385, + -0.016817377880215645, + -0.01572437211871147, + -0.09399845451116562, + -0.11347382515668869, + 0.008787514641880989, + 0.1079094335436821, + -0.02774742990732193, + -0.037808045744895935, + -0.04054056107997894, + -0.049110714346170425, + -0.013612884096801281, + -0.00902971439063549, + 0.005340821575373411, + -0.03209460899233818, + 0.059419743716716766, + 0.058475784957408905, + 0.025375111028552055, + -0.0012327360454946756, + 0.0018848130712285638, + -0.04511130973696709, + -0.0076324064284563065, + -0.00021328352158889174, + 0.0014283591881394386, + -0.0032293337862938643, + 0.043099187314510345, + 0.017289357259869576, + -0.04672597721219063, + -0.02854234352707863, + 0.04752089083194733, + -0.03765900060534477, + 0.029461460188031197, + 0.0011714098509401083, + -0.020307540893554688, + -0.03683924674987793, + -0.018543828278779984, + 0.04526035487651825, + -0.028964640572667122, + 0.10999608039855957, + -0.03216913342475891, + -0.02580983005464077, + -0.06597777456045151, + 0.06095988675951958, + -0.07278421521186829, + 0.026033399626612663, + -0.04449028521776199, + 0.06433826684951782, + 0.06871028989553452, + -0.027995839715003967, + -0.030405420809984207, + -0.016196351498365402, + -0.0496075376868248, + -0.03271563723683357, + 0.11665347218513489, + -0.0015137502923607826, + -0.002580361906439066, + 0.06145670637488365, + 0.017624709755182266, + -0.005300454795360565, + -0.04779414087533951, + 0.00633446266874671, + 0.05932037904858589, + -0.0034901646431535482, + -0.032591432332992554, + -0.030107328668236732, + -0.010445652529597282, + -0.055792953819036484, + 0.0038130979519337416, + 0.01885434053838253, + 0.04404314607381821, + -0.05524645000696182, + 0.006138839293271303, + 0.0008461475954391062, + 0.02259291708469391, + -0.06885933130979538, + -0.001420596381649375, + 0.04873809963464737, + -0.027275450527668, + -0.00832795538008213, + -0.033808641135692596, + -0.04774446040391922, + -0.05529613047838211, + -0.03482712432742119, + 0.020071551203727722, + 0.04779414087533951, + -0.014991560950875282, + 0.03363475576043129, + 0.053457897156476974, + 0.03785772994160652, + 0.021499911323189735, + 0.015898259356617928, + 0.005483657121658325, + -0.005635808687657118, + -0.0035957391373813152, + -0.012196945957839489, + -0.025126701220870018, + 0.013749510049819946, + -0.017488084733486176, + 0.035671718418598175, + -0.017401142045855522, + -0.07487086206674576, + -0.0023257413413375616, + -0.0517687052488327, + 0.06304652988910675, + 0.005073780193924904, + 0.060413382947444916, + 0.014022761024534702, + 0.049905627965927124, + -0.011327509768307209, + -0.008290693163871765, + -0.09782397747039795 + ] + }, + { + "id": "8f398d74-cf03-4fff-890e-abfdb79ddfbf", + "productId": "f5366a9b-9b95-47e4-8968-1e892f98d54d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "olewis", + "reviewDate": "2022-01-20T04:21:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "79acfcb2-9d60-4210-8aeb-689e700fb820", + "productId": "f5366a9b-9b95-47e4-8968-1e892f98d54d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sierrageorge", + "reviewDate": "2022-04-26T13:11:50", + "stars": 4, + "verifiedUser": true + }, + { + "id": "934064e5-4ad3-4f50-ba31-a5b252bbf7a8", + "productId": "934064e5-4ad3-4f50-ba31-a5b252bbf7a8", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Micro (Gold)", + "description": "This Luxe Speaker Micro (Gold) is designed for use on your desktops. It has 3 adjustable-backward tilt knobs to select from and can be programmed for a wider selection. This can be configured for an extremely wide selection of audio content, such as acoustic guitar and bass.\n\nBuilt in headphone jack is a micro USB port where you can", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-10-08T18:38:51", + "price": 109.29, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2022-01-29T17:27:47", + "newPrice": 108.8 + }, + { + "priceDate": "2022-05-19T17:27:47", + "newPrice": 103.37 + }, + { + "priceDate": "2025-08-01T17:27:47", + "newPrice": 109.29 + } + ], + "descriptionVector": [ + -0.004178701899945736, + 0.03527135029435158, + -0.04330216720700264, + -0.031052494421601295, + -0.011446592397987843, + 0.00585178891196847, + -0.027240533381700516, + 0.02327866293489933, + 0.015247846022248268, + 0.08210708200931549, + -0.017903368920087814, + -0.048698876053094864, + -0.020280491560697556, + -0.011585792526602745, + 0.03642778843641281, + -0.036127969622612, + -0.020815879106521606, + -0.032123271375894547, + -0.008073648437857628, + 0.02861112542450428, + 0.07097101211547852, + -0.1493089646100998, + -0.05482371523976326, + -0.016950378194451332, + -0.04445860534906387, + -0.008914207108318806, + 0.0015793940983712673, + 0.055637504905462265, + 0.014969443902373314, + -0.018524419516324997, + 0.0409250482916832, + 0.007051057647913694, + -0.0450582392513752, + 0.002296813763678074, + -0.025612954050302505, + -0.04642883315682411, + 0.035506922751665115, + -0.01774275302886963, + 0.07448315620422363, + -0.025869939476251602, + -0.042167145758867264, + 0.040839385241270065, + 0.030045965686440468, + -0.08596187084913254, + 0.007093888707458973, + -0.026790807023644447, + 0.004845260176807642, + 0.040175504982471466, + 0.004454426933079958, + -0.04167458787560463, + -0.0029071560129523277, + 0.05169704928994179, + -0.10870514810085297, + 0.04068947583436966, + 0.02392112836241722, + -0.040518153458833694, + -0.009899321012198925, + 0.11761400103569031, + 0.004312549252063036, + -0.07602507621049881, + 0.05152572691440582, + -0.021394098177552223, + -0.024863410741090775, + -0.013459649868309498, + -0.0004989145672880113, + 0.027240533381700516, + 0.0485275536775589, + 0.031930532306432724, + 0.014894490130245686, + 0.10776286572217941, + 0.05927814170718193, + 0.007008226588368416, + -0.013416819274425507, + -0.029125098139047623, + 0.07276991754770279, + -0.05229668319225311, + 0.038783494383096695, + 0.05460955947637558, + 0.05272499471902847, + -0.008346696384251118, + 0.022571951150894165, + -0.05212536081671715, + -0.029853226616978645, + -0.0341363288462162, + 0.03655628114938736, + -0.03450039401650429, + 0.013127709738910198, + -0.05606581270694733, + -0.01805327832698822, + 0.10784852504730225, + -0.04544372111558914, + 0.06553146988153458, + 0.00391903892159462, + 0.022057978436350822, + 0.033343955874443054, + -0.024435101076960564, + -0.029232176020741463, + 0.03912614285945892, + -0.02578427828848362, + 0.0012434382224455476, + 0.05011230334639549, + -0.03916897252202034, + -0.01644711382687092, + 0.012774353846907616, + -0.06330426037311554, + 0.09174405783414841, + 0.04385897144675255, + -0.05533768609166145, + 0.05615147575736046, + -0.11718568950891495, + 0.056965265423059464, + -0.008175372146070004, + 0.011639331467449665, + -0.016704101115465164, + -0.0013665774604305625, + 0.064803346991539, + 0.03450039401650429, + -0.07127083092927933, + -0.06493183970451355, + 0.016693392768502235, + -0.00369952991604805, + -0.02166179195046425, + 0.060220424085855484, + -0.01989501155912876, + -0.01655419170856476, + -0.023257248103618622, + -0.00126552302390337, + -0.010172368958592415, + 0.021608253940939903, + 0.016928963363170624, + -0.07940872758626938, + 0.12866440415382385, + -0.015622616745531559, + 0.008325280621647835, + -0.01560120191425085, + 0.05088325962424278, + 0.037584226578474045, + 0.04274536669254303, + -0.027583181858062744, + -0.009385349228978157, + 0.012603029608726501, + 0.023107338696718216, + -0.05341029167175293, + 0.019070515409111977, + -0.03557116910815239, + -0.03253016620874405, + -0.07366936653852463, + 0.037241578102111816, + -0.0567939430475235, + 0.07229877263307571, + -0.033343955874443054, + -0.06865813583135605, + 0.0019662119448184967, + -0.0735837072134018, + 0.10699190944433212, + 0.004363411106169224, + -0.07071402668952942, + -0.04090363159775734, + -0.00837346538901329, + 0.06972891092300415, + 0.042788196355104446, + -0.007029642350971699, + -0.013855837285518646, + 0.03340820223093033, + 0.02578427828848362, + 0.07936589419841766, + 0.03569966182112694, + -0.0005377301713451743, + -0.07311256229877472, + 0.03263724222779274, + -0.03970436379313469, + 0.008239618502557278, + -0.02839697152376175, + -0.006761948578059673, + 0.008898145519196987, + -0.034628886729478836, + 0.0791945680975914, + 0.0358709841966629, + 0.018727866932749748, + -0.0482705682516098, + 0.022700443863868713, + 0.08574771881103516, + -0.01742151938378811, + 0.010140245780348778, + 0.015119352377951145, + 0.00759179936721921, + 0.048784539103507996, + -0.036384958773851395, + 0.020708801224827766, + 0.001994319725781679, + -0.0367918536067009, + 0.025805693119764328, + -0.03242308646440506, + -0.04351632297039032, + -0.010268738493323326, + -0.03651345148682594, + 0.024841995909810066, + 0.0973120927810669, + -0.015504831448197365, + 0.01990571990609169, + -0.021361974999308586, + 0.000661873200442642, + 0.020044920966029167, + 0.06017759442329407, + -0.03218751773238182, + -0.04908435791730881, + 0.033986419439315796, + 0.043345000594854355, + 0.021394098177552223, + -0.009449595585465431, + 0.013780882582068443, + -0.03111674077808857, + -0.048570383340120316, + 0.032251764088869095, + 0.019841473549604416, + 0.02512039802968502, + 0.026490990072488785, + 0.04081796854734421, + -0.05396709591150284, + -0.05251083895564079, + 0.05011230334639549, + -0.06763019412755966, + 0.02903943695127964, + 0.0030891878996044397, + -0.03741290047764778, + -0.03111674077808857, + 0.007174197118729353, + -0.007120658177882433, + 0.09020214527845383, + -0.06386106461286545, + 0.009385349228978157, + 0.06518882513046265, + 0.02818281576037407, + -0.01142517663538456, + -0.023771220818161964, + -0.047285452485084534, + 0.007565030362457037, + -0.07366936653852463, + 0.015472708269953728, + 0.05627996847033501, + -0.003410420613363385, + 0.02099791169166565, + -0.0994536429643631, + -0.0054234787821769714, + -0.0241352841258049, + -0.03218751773238182, + 0.10844816267490387, + -0.009776181541383266, + -0.06034891679883003, + 0.022571951150894165, + -0.10690624266862869, + 0.015751110389828682, + -0.01402716152369976, + 0.006676286458969116, + -0.026298251003026962, + 0.02065526321530342, + 0.06715904921293259, + -0.10973308980464935, + 0.026084095239639282, + -0.07165630906820297, + 0.023321494460105896, + -0.0685296431183815, + -0.019059807062149048, + -0.03863358497619629, + -0.07448315620422363, + -0.05666545033454895, + 0.087460957467556, + -0.10485035181045532, + 0.038226690143346786, + -0.03308696672320366, + -0.07161347568035126, + 0.010755941271781921, + 0.03527135029435158, + 0.08476260304450989, + -0.06210498884320259, + 0.03961870074272156, + -0.08065082132816315, + 0.02533455193042755, + -0.03400783613324165, + -0.06458918750286102, + 0.11161765456199646, + 0.04113920032978058, + 0.038462262600660324, + -0.049427006393671036, + 0.0613340325653553, + -0.026683729141950607, + 0.0326586589217186, + 0.022978845983743668, + -0.06077722832560539, + 0.0035603290889412165, + 0.01641499064862728, + -0.007174197118729353, + 0.041374772787094116, + 0.02946774661540985, + 0.009267563931643963, + 0.00478904414921999, + 0.0051156310364604, + 0.026276834309101105, + -0.02655523642897606, + 0.0005474340869113803, + 0.032037608325481415, + 0.03319404646754265, + 0.008989161811769009, + -0.05790754780173302, + -0.041503265500068665, + 0.034436147660017014, + -0.021950900554656982, + 0.12095481902360916, + -0.017871245741844177, + 0.013266910798847675, + 0.0893455222249031, + -0.009144424460828304, + -0.09191538393497467, + -0.02524889074265957, + 0.073069728910923, + -0.03880491107702255, + 0.020077044144272804, + 0.02739044278860092, + 0.02424236200749874, + 0.07144215703010559, + -0.06424654275178909, + -0.04148184880614281, + -0.09636981040239334, + 0.03632071241736412, + 0.04167458787560463, + 0.03231601044535637, + 0.021779578179121017, + -0.011821363121271133, + 0.010140245780348778, + -0.022357795387506485, + -0.0330655537545681, + -0.026148341596126556, + 0.026362497359514236, + -0.06972891092300415, + 0.0010634141508489847, + -0.013406111858785152, + -0.02250770479440689, + 0.023963959887623787, + 0.023792635649442673, + -0.001752056647092104, + 0.04668581858277321, + -0.016232959926128387, + -0.005131692625582218, + -0.03799112141132355, + -0.0036700835917145014, + -0.0543954037129879, + -0.05863567441701889, + 0.030924001708626747, + -0.007907678373157978, + 0.025056151673197746, + 0.001090852776542306, + -0.006654870696365833, + 0.04450143873691559, + -0.06467485427856445, + -0.020398275926709175, + -0.007184905000030994, + 0.003423805348575115, + -0.034093499183654785, + -0.020730217918753624, + 0.04938417300581932, + -0.04865604639053345, + -0.03293706104159355, + 0.08326351642608643, + 0.049555499106645584, + -0.003956516273319721, + 0.04570070654153824, + 0.03510002791881561, + -0.043130844831466675, + -0.055466178804636, + 0.03634212538599968, + -0.03841943293809891, + -0.0578647181391716, + -0.046300340443849564, + 0.06814416497945786, + -0.018642203882336617, + 0.040839385241270065, + 0.046386003494262695, + -0.031480804085731506, + -0.036127969622612, + 0.025934187695384026, + -0.013341864570975304, + 0.03340820223093033, + 0.09088744223117828, + -0.026512404903769493, + 0.07542543858289719, + 0.021040741354227066, + -0.04441577568650246, + -0.012046226300299168, + 0.0237283892929554, + -0.01022055372595787, + -0.00842165108770132, + -0.04058239981532097, + 0.004312549252063036, + 0.10433638095855713, + 0.020194828510284424, + -0.009588796645402908, + -0.033129800111055374, + 0.07045704126358032, + -0.03317262977361679, + 0.000954328803345561, + 0.015322799794375896, + 0.08313502371311188, + 0.004433011170476675, + -0.03201619163155556, + -0.0391903892159462, + -0.03381509706377983, + -0.032787151634693146, + 0.047156959772109985, + 0.01818177103996277, + -0.06210498884320259, + 0.06767302006483078, + -0.03223034739494324, + -0.014583964832127094, + -0.03535701334476471, + 0.03961870074272156, + 0.06810133159160614, + 0.029831809923052788, + 0.02100861817598343, + 0.018513711169362068, + -0.07525411248207092, + 0.04293810576200485, + 0.020044920966029167, + -0.050626274198293686, + -0.0004811798280570656, + -0.009144424460828304, + -0.01892060600221157, + -0.014776704832911491, + -0.043023765087127686, + 0.03456464037299156, + -0.06681640446186066, + -0.007597153540700674, + -0.03674902021884918, + -0.017817707732319832, + 0.011114651337265968, + -0.01774275302886963, + -0.0041064247488975525, + 0.023749804124236107, + 0.01913476176559925, + -0.04176025092601776, + 0.02272186055779457, + -0.023300079628825188, + -0.009513841941952705, + 0.041803084313869476, + 0.08120762556791306, + -0.037798382341861725, + -0.060091931372880936, + -0.054438237100839615, + 0.02936066873371601, + 0.0842486321926117, + -0.02871820330619812, + 0.03777696564793587, + -0.009128362871706486, + 0.00018086070485878736, + 0.02631966583430767, + 0.0333225391805172, + 0.018310263752937317, + -0.005637634079903364, + 0.043452076613903046, + -0.017817707732319832, + -0.01523713767528534, + -0.05495220795273781, + 0.06655941903591156, + 0.0021924132015556097, + 0.013545311987400055, + 0.009331810288131237, + -0.03859075531363487, + -0.023685557767748833, + 0.010520370677113533, + -0.0035844214726239443, + -0.03381509706377983, + 0.016693392768502235, + -0.04570070654153824, + 0.08056516200304031, + -0.007971924729645252, + -0.01644711382687092, + -0.07696735858917236, + -0.0024306608829647303, + -0.10193784534931183, + -0.012881431728601456, + -0.026940716430544853, + -0.01441264059394598, + 0.05148289352655411, + 0.018899191170930862, + 0.07726716995239258, + 0.05135440081357956, + -0.02285035327076912, + 0.01529067661613226, + 0.05328179895877838, + 0.02796865999698639, + 0.029424915090203285, + 0.0333225391805172, + 0.07062836736440659, + 0.020719509571790695, + -0.0003321077674627304, + -0.022550536319613457, + 0.003421128261834383, + -0.043773308396339417, + 0.022036563605070114, + 0.0012996540172025561, + 0.06900078803300858, + 0.04535805806517601, + -0.0333225391805172, + -0.037819795310497284, + 0.029510578140616417, + 0.0017373334849253297, + 0.01017772313207388, + -0.07388351857662201, + 0.0016931639984250069, + 0.013074170798063278, + -0.009840428829193115, + 0.02927500754594803, + -0.04250979423522949 + ] + }, + { + "id": "d6d7671b-eb5a-4192-b706-c8ce76b33660", + "productId": "934064e5-4ad3-4f50-ba31-a5b252bbf7a8", + "category": "Media", + "docType": "customerRating", + "userName": "andrew46", + "reviewDate": "2022-01-29T17:27:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cf052491-e73b-4146-bb1d-57d8adb4b43f", + "productId": "934064e5-4ad3-4f50-ba31-a5b252bbf7a8", + "category": "Media", + "docType": "customerRating", + "userName": "ohernandez", + "reviewDate": "2022-05-20T09:47:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "product", + "name": "Basic TV Mini (Silver)", + "description": "This Basic TV Mini (Silver) is a special Mini TV set that will give you amazing digital experience. Featuring HDMI (High Definition) and DVI-D displays, a wide variety of connectivity options and a HDMI-based AV channel,", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-02-18T01:44:45", + "price": 741.58, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-01-21T03:16:30", + "newPrice": 668.68 + }, + { + "priceDate": "2021-07-02T03:16:30", + "newPrice": 763.83 + }, + { + "priceDate": "2021-12-11T03:16:30", + "newPrice": 732.7 + }, + { + "priceDate": "2022-05-22T03:16:30", + "newPrice": 774.57 + }, + { + "priceDate": "2022-10-31T03:16:30", + "newPrice": 760.58 + }, + { + "priceDate": "2023-09-02T03:16:30", + "newPrice": 741.58 + } + ], + "descriptionVector": [ + 0.02130603790283203, + 0.061680808663368225, + -0.053603559732437134, + 0.04217609018087387, + -0.03416768088936806, + 0.023681024089455605, + -0.026480525732040405, + 0.03074861690402031, + 0.033525172621011734, + 0.052777476608753204, + 0.0012835826491937041, + -0.06682087481021881, + 0.07788120210170746, + 0.036554139107465744, + 0.036003418266773224, + 0.00951141957193613, + -0.024874255061149597, + -0.019711241126060486, + 0.05548519268631935, + 0.03949132189154625, + 0.07260344922542572, + -0.0678764283657074, + -0.04031740501523018, + 0.020445534959435463, + -7.784857007209212e-05, + 0.018460644409060478, + -0.04846349358558655, + 0.015213681384921074, + -0.008513236418366432, + 0.03361696004867554, + 0.026274004951119423, + 0.02728366106748581, + -0.032148368656635284, + -0.020101334899663925, + -0.058605946600437164, + -0.006717654876410961, + -0.01784108206629753, + 0.05979917570948601, + 0.007882201112806797, + 0.006402137689292431, + 0.05846826732158661, + -0.013343523256480694, + 0.004552057478576899, + 0.01645280420780182, + -0.01582176983356476, + 0.029234133660793304, + -0.06034989655017853, + -0.0332268625497818, + -0.023956384509801865, + -0.06021221727132797, + -0.04827991873025894, + -0.014800640754401684, + -0.006172670051455498, + 0.06622426211833954, + -0.035613324493169785, + 0.014720327220857143, + 0.00834687240421772, + 0.10188347846269608, + 0.031482912600040436, + -0.048325810581445694, + -0.03421357274055481, + 0.0095056826248765, + 0.05488857626914978, + 0.049243681132793427, + -0.05658663436770439, + -0.02365807816386223, + -0.05594412609934807, + 0.02574623003602028, + -0.01100869383662939, + 0.025654442608356476, + -0.004377088509500027, + -0.05759629234671593, + 0.05231854319572449, + 0.04483791068196297, + 0.029119400307536125, + 0.034236520528793335, + 0.02921118587255478, + 0.05732093006372452, + 0.024736573919653893, + -0.00823213905096054, + 0.005960412789136171, + 0.0065226079896092415, + 0.005277747754007578, + -6.42239538137801e-05, + -0.023841651156544685, + 0.050069764256477356, + 0.020147228613495827, + -0.11739546805620193, + -0.0623692087829113, + 0.1026177704334259, + -0.05989096313714981, + 0.06067115068435669, + 0.0832507312297821, + -0.03164353966712952, + 0.03804567828774452, + 0.07021699100732803, + -0.02240748144686222, + 0.011909352615475655, + -0.04217609018087387, + -0.02413995936512947, + 0.058881308883428574, + -0.014112238772213459, + 0.012047032825648785, + -0.08802365511655807, + 0.04036329686641693, + 0.012792801484465599, + 0.01862127147614956, + 0.0050712269730865955, + 0.023164723068475723, + -0.17301833629608154, + -0.056448955088853836, + 0.010773489251732826, + 0.015190734528005123, + -0.002574336249381304, + 0.023451557382941246, + 0.008151825517416, + -0.059156667441129684, + -0.016877319663763046, + -0.014444965869188309, + -0.028798146173357964, + 0.01317142229527235, + -0.038688186556100845, + -0.03701307624578476, + 0.059477921575307846, + -0.07237398624420166, + -0.033525172621011734, + -0.07769762724637985, + 0.052502118051052094, + 0.039629001170396805, + -0.02602159045636654, + -0.05883541330695152, + -0.04906010627746582, + 0.010664492845535278, + 0.02870635874569416, + -0.03487902879714966, + -0.004580740816891193, + -0.04109759256243706, + -0.014261391945183277, + -0.027788490056991577, + 0.0013796720886602998, + -0.012322393245995045, + 0.020216068252921104, + 0.0010247149039059877, + -0.04697195440530777, + -0.05204318091273308, + -0.014640013687312603, + 0.014777693897485733, + 0.01256333477795124, + -0.019344093278050423, + 0.0736590027809143, + 0.017118260264396667, + -0.07402615249156952, + -0.03343338519334793, + -0.0969269871711731, + 0.0443330816924572, + 0.07861549407243729, + -0.014984214678406715, + 0.029188239946961403, + -0.05764218419790268, + -0.012941955588757992, + 0.0512629933655262, + -0.028476892039179802, + -0.015064528211951256, + -0.041992515325546265, + 0.007079065777361393, + -0.017255939543247223, + 0.004526242148131132, + 0.034626614302396774, + -0.0693909078836441, + 0.03471840173006058, + -0.006579974666237831, + -0.016361018642783165, + 0.0035108495503664017, + -0.0159479770809412, + -0.0228319950401783, + 0.04382825270295143, + 0.034947868436574936, + 0.03386937081813812, + -0.06172670051455498, + -0.09821200370788574, + -0.06012042984366417, + 0.0069299121387302876, + -0.026044538244605064, + -0.008851700462400913, + 0.03079451061785221, + 0.036600034683942795, + 0.0667290911078453, + -0.003014626679942012, + -0.10390278697013855, + 0.0032469620928168297, + 0.05979917570948601, + -0.027031246572732925, + -0.00927047897130251, + -0.004979440476745367, + 0.012884588912129402, + -0.05328230559825897, + 0.03646235167980194, + 0.00988430343568325, + -0.010819382965564728, + 0.01763456128537655, + 0.01653311774134636, + 0.037311382591724396, + 0.05658663436770439, + 0.019045785069465637, + -0.037976838648319244, + -0.08862026780843735, + 0.02453005313873291, + 0.057504504919052124, + 0.04772919788956642, + 0.03623288497328758, + -0.0025011934340000153, + -0.013423836790025234, + 0.022396007552742958, + -0.023440083488821983, + 0.07255756109952927, + 0.05461321398615837, + 0.01878189854323864, + -0.02980780228972435, + -0.023520397022366524, + -0.03646235167980194, + 0.09555017948150635, + -0.02106509730219841, + 0.014617066830396652, + -0.012069979682564735, + -0.024897200986742973, + -0.06461799144744873, + 0.08843669295310974, + 0.029601281508803368, + 0.02721482142806053, + 0.03570511192083359, + -0.1300620585680008, + -0.028247423470020294, + -0.045067377388477325, + 0.02134045772254467, + -0.00927047897130251, + -0.0071937995962798595, + 0.02031932957470417, + -0.025677390396595, + -0.13208137452602386, + 0.027100088074803352, + -0.06764695793390274, + -0.020422589033842087, + -0.005119989160448313, + -0.01449085958302021, + 0.046604808419942856, + 0.029578333720564842, + 0.08907920122146606, + 0.013435309752821922, + -0.002590112155303359, + -0.011978192254900932, + -0.02453005313873291, + -0.02276315540075302, + 0.0076584708876907825, + 0.038366932421922684, + -0.024346480146050453, + 0.046719539910554886, + 0.05094173923134804, + 0.006235773675143719, + 0.0085074994713068, + -0.02370397187769413, + -0.037036020308732986, + -0.10206705331802368, + 0.027650808915495872, + -0.0020996257662773132, + -0.027100088074803352, + 0.046834275126457214, + 0.03575100377202034, + -0.11803797632455826, + 0.03141407296061516, + 0.02932591922581196, + -0.02130603790283203, + -0.0005611192318610847, + 0.0019705502782016993, + 0.018173810094594955, + -0.07407204061746597, + -0.050299230962991714, + -0.054521430283784866, + 0.02749018184840679, + -0.047775089740753174, + -0.019068732857704163, + 0.08219518512487411, + 0.01289606187492609, + 0.0832507312297821, + -0.010039194487035275, + 0.008513236418366432, + -0.03575100377202034, + -0.019550614058971405, + 0.05906488001346588, + -0.003926759120076895, + 0.00399559922516346, + -0.016475751996040344, + 0.0046639228239655495, + 0.03469545394182205, + -0.007348690181970596, + 0.06613247096538544, + 0.04050097614526749, + -0.009155744686722755, + -0.020571742206811905, + 0.025287296622991562, + -0.010974273085594177, + -0.06746338307857513, + -0.029624227434396744, + -0.0325155146420002, + -0.09247531741857529, + -0.0997723788022995, + 0.0734754279255867, + -0.08687631785869598, + 0.029830748215317726, + -0.027513127774000168, + -0.0034907711669802666, + 0.01443349290639162, + 0.009046748280525208, + -0.0707218199968338, + -0.010710385628044605, + -0.018885158002376556, + -0.027696702629327774, + 0.006786494981497526, + 0.04378236085176468, + 0.02464478649199009, + 0.022786101326346397, + 0.04499853774905205, + 0.02453005313873291, + -0.05993685871362686, + 0.09747770428657532, + 0.07870728522539139, + -0.011783145368099213, + -0.033961158245801926, + -0.017978763207793236, + 0.02425469271838665, + -0.015030107460916042, + -0.03207952901721001, + -0.026641152799129486, + -0.013756563887000084, + 0.035613324493169785, + 0.03818335756659508, + -0.05851415917277336, + 0.053603559732437134, + -0.03166648745536804, + 0.021948546171188354, + 0.08086427301168442, + 0.044195402413606644, + 0.015362835489213467, + 0.03008316271007061, + -0.04437897354364395, + -0.07384257763624191, + -0.042313769459724426, + -0.08311305195093155, + 0.03448893502354622, + 0.029280027374625206, + -0.04736204817891121, + 0.0013330616056919098, + -0.0429103821516037, + 0.023141777142882347, + 0.010228504426777363, + 0.10702354460954666, + -0.04873885214328766, + -0.020135754719376564, + 0.0028482626657932997, + 0.002101060003042221, + 0.017749294638633728, + 0.035223230719566345, + -0.05424606800079346, + 0.01776076853275299, + 0.014123711735010147, + -0.07567831128835678, + 0.03689834102988243, + -0.028729304671287537, + 0.007170852739363909, + -0.06172670051455498, + 0.06925322860479355, + 0.021982965990900993, + -0.02827037125825882, + -0.06475567072629929, + 0.07884496450424194, + 0.03804567828774452, + 0.03019789606332779, + 0.05878952145576477, + -0.09100672602653503, + 0.02402522601187229, + 0.024231746792793274, + -0.022705787792801857, + -0.008404240012168884, + -0.040776338428258896, + -0.038481663912534714, + -0.014238446019589901, + -0.04428718611598015, + -0.051400672644376755, + -0.04401182755827904, + -0.06567353755235672, + 0.0015775876818224788, + -0.017623087391257286, + -0.0005819147336296737, + 0.0008454435737803578, + 0.013045215979218483, + 0.04763741046190262, + 0.04256618395447731, + 0.010113771073520184, + 0.023841651156544685, + 0.043690573424100876, + -0.003350222483277321, + 0.05479678884148598, + 0.0017884107073768973, + 0.03499376401305199, + -0.05213496834039688, + -0.05989096313714981, + -0.03141407296061516, + -0.05456732213497162, + 0.11170467734336853, + -0.005099910777062178, + -0.07095129042863846, + 0.03788505122065544, + -0.14621655642986298, + -0.06305760890245438, + -0.001087101292796433, + 0.0010784962214529514, + 0.03051915019750595, + 0.01476622000336647, + -0.030174948275089264, + 0.06484745442867279, + 0.02035374939441681, + 0.07310827821493149, + 0.034236520528793335, + 0.0065340809524059296, + 0.0002839657827280462, + 0.012483020313084126, + 0.03233194351196289, + -0.015179261565208435, + -0.0031178868375718594, + -0.0014054871862754226, + -0.06039579212665558, + 0.008840227499604225, + -0.04428718611598015, + -0.020686477422714233, + 0.0004585760470945388, + -0.01756572164595127, + 0.0026331371627748013, + 0.0030949402134865522, + 0.06122187525033951, + -0.08650916814804077, + 0.04203840717673302, + -0.016785532236099243, + -0.08403092622756958, + -0.005317904520779848, + 0.049243681132793427, + -0.0748063400387764, + 0.007434740196913481, + 0.015420202165842056, + 0.007646997459232807, + 0.03969784080982208, + 0.01929819956421852, + -0.05052869766950607, + -0.01145615428686142, + -0.017106786370277405, + -0.04437897354364395, + -0.025218455120921135, + 0.04593935236334801, + 0.06994163244962692, + 0.09316372126340866, + 0.031230498105287552, + 0.02082415670156479, + 0.020204594358801842, + 0.06062525883316994, + -0.05842237174510956, + 0.013492676429450512, + -0.03779326379299164, + -0.030335575342178345, + -0.03182711452245712, + -0.00163925695233047, + -0.022499268874526024, + 0.041946619749069214, + 0.04151063412427902, + -0.049519043415784836, + 0.0021139674354344606, + -0.008295242674648762, + 0.05107941851019859, + -0.048692960292100906, + -0.010727595537900925, + 0.006304613780230284, + -0.014341705478727818, + 0.013768037781119347, + 0.04263502359390259, + 0.01823117583990097, + 0.0018701584776863456, + 0.0193670392036438, + 0.07333774864673615, + 0.057275038212537766, + -0.01088822353631258, + 0.028132690116763115, + -0.008874647319316864, + 0.02595275081694126, + 0.014949793927371502, + -0.000953006325289607, + 0.031230498105287552, + -0.0063218241557478905, + -0.050069764256477356, + 0.04038624465465546, + -0.005200302693992853, + 0.0228778887540102, + 0.013825404457747936, + 0.10500423610210419, + -0.08618791401386261, + 0.08210339397192001, + -0.0776517316699028, + 0.0359804704785347, + 0.034075893461704254, + 0.029050558805465698, + 0.058055225759744644, + -0.027031246572732925, + -0.04245144873857498, + 0.021512558683753014, + -0.0450444296002388, + -0.04414950683712959 + ] + }, + { + "id": "2536ee49-110c-47fd-a520-ef565a2ce764", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "customerRating", + "userName": "monicamiller", + "reviewDate": "2022-11-02T15:43:25", + "stars": 5, + "verifiedUser": false + }, + { + "id": "e047e494-0a5e-4cf7-8d4c-cdd135cbb336", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "customerRating", + "userName": "kevin48", + "reviewDate": "2021-01-21T03:16:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7558fc09-f6ad-447b-b706-cb9653c8518e", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "customerRating", + "userName": "michael10", + "reviewDate": "2021-05-09T19:27:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6addade2-be0d-4ba0-b50b-724d20564ac1", + "productId": "f8885a26-064d-478c-b5a0-9978bf6395f6", + "category": "Media", + "docType": "customerRating", + "userName": "robin92", + "reviewDate": "2021-06-23T02:56:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse 3000 (Silver)", + "description": "This Premium Mouse 3000 (Silver) is in the same state. It will not change its colour from the previous colour of the top bracket, and will still make a different colour (this is more consistent", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-10-04T22:23:09", + "price": 347.79, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2021-01-27T21:35:49", + "newPrice": 354.75 + }, + { + "priceDate": "2021-07-16T21:35:49", + "newPrice": 355.27 + }, + { + "priceDate": "2022-01-02T21:35:49", + "newPrice": 367.19 + }, + { + "priceDate": "2022-06-21T21:35:49", + "newPrice": 361.04 + }, + { + "priceDate": "2022-12-08T21:35:49", + "newPrice": 371.99 + }, + { + "priceDate": "2025-07-25T21:35:49", + "newPrice": 347.79 + } + ], + "descriptionVector": [ + -0.00885710772126913, + -0.0029812809079885483, + -0.029333217069506645, + 0.04225833714008331, + 0.04859844967722893, + 0.015047559514641762, + -0.06236710026860237, + 0.03322435915470123, + -0.0023078140802681446, + -0.010802678763866425, + 0.05790453404188156, + 0.04315629228949547, + 0.016707416623830795, + -0.09262548387050629, + -0.025292417034506798, + 0.07711534202098846, + -0.03695223480463028, + 0.029033899307250977, + 0.005244877189397812, + -0.026312822476029396, + -0.0010739753488451242, + -0.09126494824886322, + -0.012857092544436455, + 0.0054557607509195805, + 0.005605420097708702, + -0.04397261515259743, + -0.007986363023519516, + -0.004908144008368254, + 0.037850189954042435, + 0.033496465533971786, + -0.027850231155753136, + 0.05578209459781647, + 0.05300659313797951, + 0.03659849613904953, + -0.05088415369391441, + -0.05194537341594696, + 0.007360515184700489, + -0.042938604950904846, + 0.061006564646959305, + 0.044734518975019455, + -0.030965864658355713, + 0.030884232372045517, + -0.016448915004730225, + 0.01642170362174511, + -0.021741410717368126, + 0.015469326637685299, + -0.03453047573566437, + 0.018081560730934143, + 0.009578193537890911, + 0.0013545865658670664, + -0.027278805151581764, + 0.023210793733596802, + -0.035183534026145935, + 0.018394485116004944, + 0.05259843170642853, + -0.04598621279001236, + -0.023877456784248352, + 0.11646212637424469, + 0.027482885867357254, + 0.00939452089369297, + -0.018870674073696136, + 0.020816244184970856, + -0.05937391519546509, + 0.0378774031996727, + -0.011925123631954193, + -0.052081428468227386, + -0.052326325327157974, + -0.08576837182044983, + 0.05589093640446663, + -0.014938716776669025, + -0.07548269629478455, + -0.031237972900271416, + 0.03355088829994202, + 0.030993076041340828, + 0.07678881287574768, + 0.03953725844621658, + 0.10291115939617157, + -0.06127867102622986, + 0.028761791065335274, + -0.01370742917060852, + 0.0007835853612050414, + 0.016652995720505714, + -0.04280255362391472, + 0.023931879550218582, + 0.046013426035642624, + 0.01406797207891941, + 0.028462473303079605, + -0.06231268122792244, + 0.04261207580566406, + 0.07760513573884964, + -0.02002713270485401, + 0.018108772113919258, + 0.09376833587884903, + -0.08549626171588898, + -0.07863914966583252, + -0.013360491953790188, + -0.02371419221162796, + 0.038258351385593414, + -0.06976843625307083, + -0.011925123631954193, + 0.01740129292011261, + -0.020394477993249893, + -0.02447609417140484, + 0.009047583676874638, + 0.05082973092794418, + 0.03768692538142204, + -0.027809415012598038, + -0.006782286334782839, + -0.07814935594797134, + -0.031591713428497314, + 0.008836699649691582, + 0.008931937627494335, + -0.05621746554970741, + -0.010965943336486816, + -0.040217529982328415, + -0.03534679859876633, + -0.023006713017821312, + -0.02315637096762657, + 0.0372515544295311, + 0.007550990674644709, + 0.059265073388814926, + 0.027999889105558395, + 0.025428472086787224, + 0.02114277333021164, + 0.04326513782143593, + -0.026476087048649788, + -0.012972737662494183, + -0.02093869261443615, + 0.03330599144101143, + -0.06568681448698044, + -0.05352360010147095, + 0.03186381980776787, + 0.007829900830984116, + 0.014693819917738438, + -0.027278805151581764, + 0.09376833587884903, + -0.04911545291543007, + 0.030503282323479652, + -0.0944213941693306, + 0.05466645210981369, + -0.08876155316829681, + -0.06329226493835449, + 0.028462473303079605, + 0.04013589769601822, + 0.01997270993888378, + -0.011836688034236431, + -0.09398602694272995, + 0.05156442150473595, + -0.022040730342268944, + 0.027632543817162514, + -0.0007602010737173259, + -0.0711289718747139, + 0.04952361434698105, + -0.03540122136473656, + 0.01339450478553772, + 0.046584852039813995, + -0.1024213656783104, + -0.03156450018286705, + -0.015823066234588623, + 0.021496513858437538, + 0.0077550713904201984, + -0.038720935583114624, + -0.016149597242474556, + 0.0003822263970505446, + -0.022163178771734238, + 0.024598542600870132, + 0.05496577173471451, + 0.05948276072740555, + -0.042993027716875076, + 0.018598565831780434, + -0.07085686177015305, + -0.07232624292373657, + 0.05937391519546509, + -0.050013408064842224, + 0.08887039870023727, + -0.038775358349084854, + -0.039183519780635834, + -0.04742838442325592, + -0.0205849539488554, + -0.034720953553915024, + 0.03341483324766159, + 0.021755017340183258, + -0.10965943336486816, + -0.041605278849601746, + 0.08778196573257446, + 0.012272060848772526, + -0.02884342335164547, + 0.02315637096762657, + -0.057305898517370224, + -0.008707448840141296, + 0.021224405616521835, + 0.013278859667479992, + 0.15564565360546112, + -0.019931893795728683, + 0.008999964222311974, + 0.06144193559885025, + 0.0020595157984644175, + -0.01980944536626339, + 0.013857088051736355, + 0.004629233386367559, + 0.0359182246029377, + 0.0196053646504879, + 0.036516863852739334, + -0.04331955686211586, + 0.01790469139814377, + -0.01424484234303236, + -0.0048707290552556515, + -0.023374058306217194, + 0.028734581544995308, + -0.020571347326040268, + -0.0004596070502884686, + -0.02695227414369583, + 0.01853054016828537, + -0.009115610271692276, + 0.02136046066880226, + 0.02710193395614624, + -0.014925111085176468, + 0.02443527802824974, + -0.052897751331329346, + -0.00021959947480354458, + 0.05322428047657013, + -0.03589101508259773, + -0.016489731147885323, + 0.03322435915470123, + -0.07542827725410461, + 0.010414925403892994, + 0.04372771829366684, + 0.008156430907547474, + 0.043809350579977036, + 0.04255765676498413, + -0.019333256408572197, + -0.03455768898129463, + 0.01663939096033573, + -0.00023788171529304236, + -0.022135967388749123, + 0.12658452987670898, + -0.07787724584341049, + -0.008156430907547474, + 0.0038945425767451525, + 0.05937391519546509, + -0.034149523824453354, + 0.08190444111824036, + -0.0643806979060173, + -0.029169952496886253, + 0.02176862210035324, + -0.051863741129636765, + 0.10639414191246033, + -0.06209499388933182, + -0.041142694652080536, + 0.011387710459530354, + 0.005027191247791052, + -0.03972773626446724, + -0.06748272478580475, + 0.07537385076284409, + 0.030312806367874146, + 0.040217529982328415, + 0.056435152888298035, + -0.02232644334435463, + -0.03648965060710907, + -0.05088415369391441, + -0.00323978322558105, + 0.10906079411506653, + 0.024816228076815605, + 0.0017601971048861742, + -0.016027146950364113, + 0.03760529309511185, + 0.022598549723625183, + -0.07885683327913284, + -0.03953725844621658, + 0.043809350579977036, + 0.03357809782028198, + -0.0099795525893569, + 0.025333233177661896, + -0.06329226493835449, + 0.016340071335434914, + -0.005210863891988993, + -0.043183501809835434, + 0.011748253367841244, + -0.005785691551864147, + -0.03629917651414871, + 0.03115634061396122, + 0.06476165354251862, + 0.0698772743344307, + 0.0008222757023759186, + -0.000382864149287343, + 0.02808152139186859, + 0.019414890557527542, + 0.0650881826877594, + -0.039809368550777435, + -0.01031968742609024, + -0.008428538218140602, + -0.057414740324020386, + 0.04087058827280998, + -0.046938590705394745, + 0.05137394741177559, + 0.009530575014650822, + 0.028680158779025078, + 0.05882970243692398, + 0.030040698125958443, + 0.0345032662153244, + 0.014408106915652752, + -0.05697936937212944, + -0.11733286827802658, + -0.06797251850366592, + 0.038503248244524, + 0.1209246963262558, + -0.009380915202200413, + -0.04342840239405632, + -0.0288978461176157, + -0.01314280554652214, + 0.07727860659360886, + 0.047972600907087326, + -0.07385005056858063, + -0.018462512642145157, + 0.07085686177015305, + -0.13529197871685028, + 0.010142817161977291, + 0.0023265215568244457, + -0.018816253170371056, + 0.00627548573538661, + -0.03270735591650009, + -0.0472106970846653, + -0.053197070956230164, + 0.06688409298658371, + 0.03798624500632286, + -0.05833990499377251, + -0.0757548063993454, + 0.017156394198536873, + -0.027836624532938004, + -0.058231063187122345, + -0.015210824087262154, + -0.05785011127591133, + -0.022367259487509727, + -0.035754960030317307, + 0.04171412065625191, + -0.029142742976546288, + -0.028299208730459213, + 0.0570882111787796, + 0.023210793733596802, + 0.007054394111037254, + 0.017129184678196907, + 0.07221740484237671, + -0.016557758674025536, + 0.02186385914683342, + 0.04048963636159897, + -0.035292379558086395, + 0.017278844490647316, + -0.05937391519546509, + 0.04985014349222183, + 0.06427185237407684, + 0.001875842921435833, + -0.10889752954244614, + 0.03455768898129463, + -0.01817679964005947, + 0.09001325070858002, + 0.008394524455070496, + 0.014938716776669025, + -0.00025488846586085856, + 0.04029916226863861, + -0.029578115791082382, + -0.013986339792609215, + -0.034720953553915024, + 0.06024466082453728, + 0.01955094374716282, + 0.06165962293744087, + -0.0026649555657058954, + 0.01708836853504181, + 0.05888412147760391, + 0.03499305993318558, + 0.0003696839266922325, + 0.028299208730459213, + -0.0006670891889370978, + -0.018027139827609062, + 0.10280231386423111, + -0.011768661439418793, + 0.04266649857163429, + -0.0010221048723906279, + 0.05485692620277405, + -0.036217544227838516, + 0.025959081947803497, + 0.005965963006019592, + 0.06253036856651306, + 0.024163169786334038, + -0.002962573431432247, + 0.06922421604394913, + -0.02695227414369583, + 0.0022755011450499296, + -0.011074786074459553, + 0.010142817161977291, + -0.016176806762814522, + -0.013646204955875874, + -0.06770041584968567, + 0.004333316348493099, + 0.008585000410676003, + 0.01869380474090576, + -0.018802646547555923, + -0.01168022584170103, + 0.0352107472717762, + 0.0005216816207394004, + 0.003224477171897888, + -0.027401253581047058, + 0.01188430655747652, + -0.026857037097215652, + -0.026720983907580376, + -0.018244825303554535, + 0.006670041941106319, + 0.024353645741939545, + 0.05341475456953049, + -0.035183534026145935, + -0.04361887648701668, + -0.015618986450135708, + -0.019265230745077133, + 0.06726504117250443, + -0.035999856889247894, + -0.02423119731247425, + -0.024421673268079758, + 0.08604047447443008, + -0.009809485636651516, + 0.04625832289457321, + -0.04326513782143593, + 0.09746900200843811, + -0.02658492885529995, + -0.020802639424800873, + 0.040734533220529556, + -0.05039435997605324, + -0.04726511985063553, + -0.06302016228437424, + -0.0035374010913074017, + 0.0817955955862999, + -0.0358365923166275, + -0.08941461145877838, + -0.07319699227809906, + -0.0033503270242363214, + -0.06731946021318436, + -0.040979430079460144, + 0.04233996942639351, + -9.959569433704019e-05, + -0.04405424743890762, + 0.011476145125925541, + 0.04410867020487785, + 0.0491698756814003, + -0.08103369176387787, + 0.04198623076081276, + 0.022081546485424042, + 0.01668020710349083, + 0.03151008114218712, + 0.028761791065335274, + -0.007741466164588928, + -0.019360467791557312, + 0.05072088912129402, + -0.04522431269288063, + 0.028408052399754524, + 0.00939452089369297, + -0.008346905931830406, + 0.05839432775974274, + -0.03355088829994202, + 0.05882970243692398, + 0.0102924769744277, + -0.009619009681046009, + 0.062584787607193, + -0.04759164899587631, + 0.03238082677125931, + 0.0438365638256073, + 0.03382299467921257, + -0.027945468202233315, + -0.0031938650645315647, + 0.03202708438038826, + 0.06895211338996887, + -0.0022499910555779934, + 0.005826507695019245, + -0.012659814208745956, + -0.06334669142961502, + -0.055455565452575684, + 0.04122432693839073, + -0.01801353506743908, + -0.010489754378795624, + -0.017156394198536873, + 0.006142832804471254, + 0.0006305247079581022, + -0.007523779757320881, + 0.0022006717044860125, + 0.015074770897626877, + -0.08560510724782944, + 0.07297930121421814, + 0.014761846512556076, + -0.039292361587285995, + 0.027020301669836044, + -0.057251475751399994, + -0.058231063187122345, + 0.05839432775974274, + 0.02941485121846199, + 0.0723806694149971, + 0.020965903997421265, + -0.020149581134319305, + -0.010639414191246033, + 0.030720967799425125, + 0.04272092133760452, + 0.004982973448932171, + 0.03531958907842636, + 0.024394461885094643, + 0.054231077432632446, + -0.0062448736280202866, + -0.029523693025112152, + 0.006462559569627047, + 0.005585012026131153, + -0.020095158368349075, + -0.08930577337741852, + -0.023278819397091866, + 0.03619033470749855, + -0.05970044434070587, + 0.0012738044606521726, + -0.05240795761346817 + ] + }, + { + "id": "1d3f9043-b53d-4e6e-849e-d344cafdf7ad", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "natalie73", + "reviewDate": "2021-08-07T09:25:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "92b10903-6c5e-4123-b2f7-a461c292aa4d", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicajackson", + "reviewDate": "2021-11-18T19:54:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "15dd80f3-f2f8-428d-aa0c-280ede7cc220", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kelsey46", + "reviewDate": "2022-12-12T05:30:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e016dd3d-6e33-4366-a031-cbfbe82c35d9", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "benjaminmartinez", + "reviewDate": "2022-06-29T04:17:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d436cb95-7183-4f33-b94d-a69f3211ff1b", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amanda05", + "reviewDate": "2022-02-28T15:08:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "71c4d71f-6626-468f-824d-715ce741ae12", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithmatthew", + "reviewDate": "2021-09-15T10:06:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "60c86620-7f59-4141-bbb3-2c44af055a37", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jandrews", + "reviewDate": "2021-05-25T07:48:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "27de2289-89e9-417c-85eb-994ae2d21bf5", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brodriguez", + "reviewDate": "2021-09-07T23:01:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "03e79e6d-0140-42b2-a933-7e0cfd002d24", + "productId": "34fb211e-88f3-4864-93d0-f83cf90d2049", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "glassjacqueline", + "reviewDate": "2021-01-27T21:35:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b901ada0-586c-4706-b38a-2ce6e74348ce", + "productId": "b901ada0-586c-4706-b38a-2ce6e74348ce", + "category": "Other", + "docType": "product", + "name": "Premium Filter + (Steel)", + "description": "This Premium Filter + (Steel) is best for low-maintenance and fast-access storage: We have designed and manufactured our premium filters for you to enhance your existing water or air conditioning, even to enhance the flavor-defining properties of your water or air tanks to the extent that the filter retains its original color for maximum enjoyment in your home. Water filters that include the original color have the most energy efficiency benefit of their kind. The main", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-01-28T19:28:55", + "price": 782.94, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2020-01-28T19:28:55", + "newPrice": 796.62 + }, + { + "priceDate": "2021-12-26T19:28:55", + "newPrice": 782.94 + } + ], + "descriptionVector": [ + -0.029164107516407967, + 0.02387304976582527, + -0.016974421218037605, + -0.018050353974103928, + -0.014999768696725368, + -0.014164338819682598, + -0.050859976559877396, + -0.07387227565050125, + -0.007651780731976032, + -0.018911100924015045, + 0.010658062994480133, + 0.028024883940815926, + 0.006854324601590633, + -0.045644864439964294, + -0.021404733881354332, + -0.020771831274032593, + -0.028657786548137665, + -0.037037402391433716, + 0.004411324393004179, + -0.06896096467971802, + 0.033695682883262634, + -0.02913879044353962, + -0.06658124923706055, + -0.026252759620547295, + 0.005955604370683432, + -0.0009754596394486725, + -0.008487210609018803, + -0.0013623207341879606, + -0.013075747527182102, + 0.019468054175376892, + 0.05230299010872841, + 0.058530744165182114, + 0.018037697300314903, + 0.041341133415699005, + -0.07797347754240036, + -0.029797008261084557, + -0.000812487443909049, + 0.01239854283630848, + 0.0576193630695343, + 0.07954307645559311, + -0.00859480444341898, + -0.05772062763571739, + -0.06961917877197266, + 0.0076644388027489185, + 0.01832883059978485, + -0.023518623784184456, + -0.034961484372615814, + -0.00044619565596804023, + 0.004088544752448797, + -0.06668251752853394, + 0.025278091430664062, + -0.0439993217587471, + 0.020721198990941048, + 0.03255645930767059, + -0.02279711700975895, + 0.033391889184713364, + 0.046379029750823975, + 0.22136367857456207, + 0.06617619097232819, + 0.0397968553006649, + -0.001320391078479588, + -0.08328985422849655, + 0.002276863669976592, + -0.02540467120707035, + -0.04493601620197296, + -0.027062874287366867, + -0.050252389162778854, + -0.05002454295754433, + 0.02974637597799301, + 0.05473333224654198, + -0.02663250081241131, + 0.05372069031000137, + 0.030581805855035782, + 0.07250521332025528, + -0.006012565456330776, + 0.012221330776810646, + 0.10531482845544815, + -0.022012319415807724, + 0.07179635763168335, + -0.021974343806505203, + -0.0366576611995697, + 0.0743279680609703, + -0.036075394600629807, + 0.029088158160448074, + 0.025341380387544632, + 0.004015760961920023, + 0.02313888445496559, + -0.049822017550468445, + 0.04536638781428337, + 0.013025115244090557, + 0.009753013961017132, + 0.007841651327908039, + 0.063847117125988, + -0.05326500162482262, + 0.041113290935754776, + 0.0670875757932663, + -0.10308701545000076, + 0.0013623207341879606, + -0.05473333224654198, + 0.05407511442899704, + -0.041138604283332825, + -0.08354301750659943, + -0.013999784365296364, + 0.0764545202255249, + 0.07685957103967667, + 0.004832203965634108, + -0.02353128232061863, + -0.021708525717258453, + 0.017936432734131813, + -0.13397261500358582, + -0.033999476581811905, + -0.06769515573978424, + -0.019632607698440552, + 0.015176980756223202, + -0.007885954342782497, + -0.051290348172187805, + 0.0007389126694761217, + -0.03111344389617443, + 0.15280777215957642, + 0.07908738404512405, + -0.05944212153553963, + 0.059999074786901474, + 0.036303237080574036, + -0.04075886309146881, + 0.010139084421098232, + -0.001146343071013689, + 0.047619517892599106, + -0.027948936447501183, + 0.05832821503281593, + 0.0011146980104967952, + -0.0701761320233345, + 0.0029825489036738873, + 0.009158086962997913, + 0.007082169409841299, + 0.009499853476881981, + 0.01945539563894272, + 0.028733734041452408, + 0.15564316511154175, + -0.012759297154843807, + 0.04220188036561012, + -0.041138604283332825, + -0.1173652783036232, + -0.009677065536379814, + 0.05141692981123924, + 0.027214769273996353, + -0.07032802700996399, + -0.049189113080501556, + 0.02597428299486637, + -0.029797008261084557, + -0.050758711993694305, + 0.0172908715903759, + -0.08156836032867432, + -0.023379385471343994, + 0.004427147097885609, + 0.1079476997256279, + 0.013189669698476791, + -0.07088498026132584, + 0.05093592405319214, + -0.05584723874926567, + -0.02210092544555664, + 0.013214985840022564, + -0.08096077293157578, + -0.025455303490161896, + -0.00494929077103734, + 0.06060665845870972, + 0.07898612320423126, + -0.014708633534610271, + -0.06065729260444641, + -0.020214878022670746, + 0.04832836985588074, + 0.0076454514637589455, + 0.05280931293964386, + 0.063847117125988, + -0.01792377419769764, + -0.06161930412054062, + -0.004031583201140165, + 0.01802503876388073, + 0.001587000791914761, + 0.01488584652543068, + 0.0027452108915895224, + 0.06754326075315475, + 0.03030332922935486, + -0.011892221868038177, + -0.07280900329351425, + 0.02797425165772438, + 0.043974004685878754, + 0.000843341404106468, + -0.0008979291887953877, + 0.04610055312514305, + 0.03541717678308487, + -0.027265401557087898, + 0.012233988381922245, + 0.03237924724817276, + 0.0031945710070431232, + 0.04891063645482063, + -0.03569565340876579, + -0.014695975929498672, + -0.02086043730378151, + -4.452561915968545e-05, + -0.08966950327157974, + 0.0037088035605847836, + 0.03653108328580856, + 0.06025223433971405, + -0.0016582022653892636, + 0.04156897962093353, + 0.07027740031480789, + 0.07372038066387177, + 0.06015096977353096, + -0.012531451880931854, + 0.08941633999347687, + -0.001299030613154173, + -0.05377132073044777, + -0.043974004685878754, + -0.026252759620547295, + 0.042075298726558685, + 0.03040459379553795, + -0.06050539389252663, + -0.025518594309687614, + -0.028227413073182106, + -0.006275219842791557, + 0.026784397661685944, + 0.019847795367240906, + -0.041012026369571686, + -0.012721322476863861, + 0.036505766212940216, + -0.021949028596282005, + -0.01550608966499567, + -0.014733949676156044, + 0.05944212153553963, + 0.11027678102254868, + -0.008177089504897594, + -0.027898304164409637, + -0.03964495658874512, + 0.017632639035582542, + 0.03445516526699066, + 0.0044176531955599785, + -0.07346721738576889, + -0.02617681212723255, + 0.04288541525602341, + 0.011974498629570007, + 0.06268257647752762, + 0.030657755210995674, + -0.08399870246648788, + -0.0272400863468647, + -0.004936632700264454, + -0.0046898010186851025, + 0.021670551970601082, + -0.044581592082977295, + -0.0031249518506228924, + 0.007791019044816494, + -0.015303561463952065, + -0.02964511141180992, + -0.022708510980010033, + 0.04954354092478752, + -0.046682823449373245, + 0.10744138062000275, + 0.028834998607635498, + -0.006167626474052668, + -0.08298606425523758, + -0.06997360289096832, + -0.013949152082204819, + 0.03686019033193588, + 0.04853089526295662, + 0.04556891694664955, + -0.09655547142028809, + -0.044682856649160385, + 0.022683193907141685, + -0.019240209832787514, + -0.03040459379553795, + 0.11655516177415848, + -0.022556614130735397, + 0.08511260896921158, + -0.011297293938696384, + 0.00044619565596804023, + 0.06663188338279724, + 0.012151711620390415, + -0.026961609721183777, + 0.015518748201429844, + 0.027391983196139336, + 0.0002968704211525619, + 0.07098624855279922, + -0.04088544473052025, + 0.02467050589621067, + 0.04797394201159477, + 0.035265278071165085, + -0.04617650434374809, + 0.04222719743847847, + -0.04042975604534149, + -0.058733269572257996, + -0.053163737058639526, + 0.0040727220475673676, + -0.012746638618409634, + 0.03954369202256203, + -0.05048023536801338, + 0.014518762938678265, + -0.02746793068945408, + -0.016607338562607765, + -0.027695775032043457, + 0.03346783667802811, + 0.04025254398584366, + -0.03807536140084267, + -0.008828978054225445, + -0.0013718142872676253, + -0.024050261825323105, + 0.012860560789704323, + 0.036201972514390945, + -0.0008821066585369408, + -0.02232876978814602, + 0.041442397981882095, + -0.03815130889415741, + 0.041974034160375595, + -0.0017214923864230514, + -0.01863262429833412, + -0.01922755129635334, + 0.01039857417345047, + 0.03382226452231407, + -0.0009730862802825868, + -0.02536669746041298, + -0.04632839933037758, + 0.00704419519752264, + -0.029619796201586723, + 0.040910761803388596, + -0.043113257735967636, + 0.02913879044353962, + -0.05336626619100571, + -0.08040381968021393, + -0.07108750939369202, + -0.034227319061756134, + 0.04569549858570099, + 0.00035660050343722105, + -0.023556599393486977, + 0.01926552504301071, + -0.0424550399184227, + 0.021873081102967262, + 0.03382226452231407, + -0.0807076171040535, + -0.048556212335824966, + -0.06349269300699234, + -0.08268226683139801, + 0.004661320708692074, + -0.0019176919013261795, + -0.08541640639305115, + -0.006696099415421486, + 0.03050585836172104, + 0.07412543892860413, + -0.03561970219016075, + -0.004518917761743069, + -0.04151834547519684, + -0.030202066525816917, + 0.027721092104911804, + 0.001352036138996482, + -0.028683101758360863, + 0.05827758088707924, + -0.004363856744021177, + 0.08187215775251389, + 0.008373288437724113, + 0.006993562914431095, + -0.04392337426543236, + 0.02807551622390747, + -0.0015996588626876473, + 0.0534675307571888, + 0.0009477701969444752, + 0.014328893274068832, + 0.038404472172260284, + 0.05802442133426666, + 0.09690989553928375, + -0.05751809850335121, + 0.03916395455598831, + 0.021075624972581863, + 0.013265618123114109, + -0.021088281646370888, + 0.058834534138441086, + 0.033265311270952225, + 0.0596952810883522, + -0.0013726054457947612, + -0.0121833560988307, + 0.06587240099906921, + 0.05321436747908592, + 0.0002672031696420163, + 0.05751809850335121, + -0.022619904950261116, + -0.005560040939599276, + -0.010404902510344982, + -0.008923913352191448, + 0.0722520500421524, + -0.016632655635476112, + -0.03774625435471535, + 0.01588583178818226, + -0.024885691702365875, + -0.009208718314766884, + -0.03437921777367592, + -0.027113506570458412, + -0.037720937281847, + -0.04954354092478752, + 0.010246677324175835, + 0.021113598719239235, + -0.00238287472166121, + 0.0393158495426178, + 0.0900745615363121, + -0.048986587673425674, + -0.021885737776756287, + 0.03544249013066292, + -0.038404472172260284, + -0.1193905621767044, + -0.0013393780682235956, + -0.01645544171333313, + 0.03177166357636452, + -0.03217671811580658, + 0.016240255907177925, + -0.015632670372724533, + -0.03645513206720352, + -0.06612556427717209, + 0.01094919815659523, + 0.015480773523449898, + 0.005895478650927544, + 0.01639215275645256, + 0.028936263173818588, + 0.04632839933037758, + 0.0701761320233345, + 0.015341535210609436, + 0.023784443736076355, + -0.013911177404224873, + -0.03627792000770569, + 0.025619857013225555, + -0.009854278527200222, + 0.04078418016433716, + -0.029417267069220543, + 0.0019303499720990658, + 0.01651873253285885, + 0.030151434242725372, + 0.016936447471380234, + -0.016999738290905952, + -0.041239868849515915, + -0.059138327836990356, + -0.020974360406398773, + 0.00884796492755413, + 0.04156897962093353, + -0.03293620049953461, + -0.063847117125988, + -0.04275883361697197, + -0.01999969221651554, + -0.02489835023880005, + -0.004996758420020342, + -0.029391951858997345, + -0.026126179844141006, + -0.07083435356616974, + -0.01123400405049324, + -0.0038606999441981316, + -0.01029730960726738, + 0.024189500138163567, + -0.023024961352348328, + -0.014164338819682598, + -0.016544047743082047, + -0.022683193907141685, + -0.0008639107109047472, + -0.03311341255903244, + 0.012601071037352085, + 0.05615103244781494, + 0.0330374650657177, + 0.03174634650349617, + -0.06172056496143341, + 0.061568669974803925, + 0.03460706025362015, + 0.027518562972545624, + 0.0324551947414875, + -0.02924005500972271, + -0.02734135091304779, + -0.02630339190363884, + 0.007607477717101574, + 0.03888547420501709, + -0.05427764356136322, + -0.06420154124498367, + -0.04073354974389076, + 0.008291011676192284, + 0.018809836357831955, + 0.01026566419750452, + 0.012904863804578781, + -0.09250490367412567, + 0.022138899192214012, + -0.04620181769132614, + 0.0021850927732884884, + -0.018936416134238243, + -0.03939179703593254, + 0.06202435865998268, + -0.022746484726667404, + 0.04465753957629204, + -0.02236674353480339, + 0.044910699129104614, + 0.01091755274683237, + 0.05848011001944542, + 0.012107408605515957, + 0.01612633280456066, + -0.015898488461971283, + -0.046379029750823975, + -0.002643946558237076, + -0.02136675827205181, + 0.01199981477111578, + -0.004670814145356417, + 0.05301184207201004, + -0.04149303212761879, + 0.06627745926380157, + -0.025417329743504524, + 0.018873127177357674, + -0.03635387122631073, + -0.07366974651813507, + 0.045442335307598114, + 0.040505703538656235, + -0.09994782507419586, + 0.014860530383884907, + 0.008272023871541023, + 0.017835168167948723, + 0.04202466830611229 + ] + }, + { + "id": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Micro (Black)", + "description": "This Awesome Filter Micro (Black) is rated 4.4 out of 5 by 2.\n\nRated 5 out of 5 by Joe from Awesome Filter You will love this filter for all times of your filter needs. I use my first filter here on the market which was the 602 in a vintage collection of 5D. It is a great filter.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-01-03T11:49:50", + "price": 728.57, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-11-17T06:46:01", + "newPrice": 757.98 + }, + { + "priceDate": "2022-03-29T06:46:01", + "newPrice": 667.72 + }, + { + "priceDate": "2022-08-08T06:46:01", + "newPrice": 733.9 + }, + { + "priceDate": "2022-12-18T06:46:01", + "newPrice": 745.48 + }, + { + "priceDate": "2025-08-14T06:46:01", + "newPrice": 728.57 + } + ], + "descriptionVector": [ + -0.016194621101021767, + 0.015732906758785248, + -0.02931884303689003, + 0.02664090134203434, + -0.044093694537878036, + 0.016113821417093277, + -0.058406829833984375, + 0.009136167354881763, + 0.00903228111565113, + 0.06898008286952972, + -0.02140044793486595, + -0.005254883319139481, + 0.018710963428020477, + -0.006614054087549448, + -0.0014089493779465556, + 0.018353134393692017, + -0.07318168133497238, + 0.001904570497572422, + -0.024609360843896866, + 0.0034888270311057568, + 0.039961352944374084, + -0.04183129593729973, + -0.09769869595766068, + 0.03144272789359093, + 0.0074624535627663136, + 0.023258846253156662, + -0.009257366880774498, + 0.03049621544778347, + 0.02022307552397251, + -0.012108451686799526, + 0.06390123069286346, + 0.008235825225710869, + 0.012777936644852161, + 0.1272483915090561, + -0.02571747452020645, + -0.01710650697350502, + 0.02601758763194084, + -0.015617478638887405, + 0.012766393832862377, + 0.10296224057674408, + 0.03989209607243538, + -0.04224683716893196, + -0.036244556307792664, + 0.014601707458496094, + 0.002100798999890685, + -0.05069620534777641, + -0.05402054637670517, + -0.0427316389977932, + 0.04642535001039505, + 0.02074250392615795, + 0.04949574917554855, + -0.0017876991769298911, + -0.033405013382434845, + -0.061361800879240036, + 0.03455929830670357, + 0.044093694537878036, + 0.0011896351352334023, + 0.11413571983575821, + 0.03363586962223053, + -0.07904545217752457, + 0.00866291020065546, + -0.02398604527115822, + 0.016379306092858315, + -0.060438372194767, + -0.10471675544977188, + -0.009257366880774498, + -0.022335417568683624, + -0.011479366570711136, + 0.023685932159423828, + 0.010146167129278183, + 0.017498962581157684, + 0.020500104874372482, + -0.0012776494259014726, + -0.009892224334180355, + 0.04169278219342232, + 0.005335683468729258, + 0.11025732010602951, + 0.003863969584926963, + 0.0013988493010401726, + 0.03345118463039398, + 0.038922496140003204, + 0.0032752843108028173, + 0.005777197424322367, + 0.051989004015922546, + -0.020869476720690727, + 0.0037802839651703835, + -0.010959938168525696, + -0.10684064030647278, + -0.0207078754901886, + -0.010994566604495049, + -0.057945117354393005, + 0.05397437512874603, + -0.050095975399017334, + -0.0600690022110939, + 0.012408565729856491, + 0.004449769388884306, + -0.030080672353506088, + 0.02243930473923683, + -0.04222375154495239, + 0.04270855337381363, + -0.020834848284721375, + -0.04778740555047989, + 0.02407838962972164, + 0.001719884923659265, + -0.03869163990020752, + 0.00029668735805898905, + 0.008737938478589058, + -0.06810282915830612, + 0.0031598557252436876, + -0.09880681335926056, + 0.04400135204195976, + -0.04319335147738457, + -0.004819140769541264, + 0.030426956713199615, + 0.004357426427304745, + 0.023628218099474907, + -0.03529804199934006, + 0.049034032970666885, + 0.006117711309343576, + -0.02631770260632038, + -0.02423998899757862, + 0.051804319024086, + 0.04383975267410278, + 0.02797987312078476, + 0.034120671451091766, + 0.01800684817135334, + -0.015502049587666988, + 0.03839152678847313, + 0.07225824892520905, + 0.02284330315887928, + -0.09123469889163971, + 0.0037889410741627216, + 0.016621707007288933, + -0.031789012253284454, + -0.0824621319770813, + 0.0310964435338974, + 0.02202376164495945, + 0.10083835572004318, + 0.042639296501874924, + 0.017395077273249626, + 0.008258910849690437, + -0.06260842829942703, + 0.02754124440252781, + -0.0035984839778393507, + 0.01422079373151064, + -0.0388532392680645, + -0.030080672353506088, + 0.02735655941069126, + 0.058545343577861786, + -0.04670237749814987, + 0.06662534177303314, + -0.1162596046924591, + -0.039361122995615005, + -0.05508248880505562, + 0.04640226438641548, + 0.04437072202563286, + -0.004697940777987242, + 0.03525187075138092, + -0.056190602481365204, + 0.000214444546145387, + -0.00033456235541962087, + -0.020892562344670296, + 0.006158111616969109, + 4.2767169361468405e-05, + 0.014393935911357403, + 0.04557117819786072, + 0.019276563078165054, + 0.009609424509108067, + -0.06939562410116196, + 0.07332019507884979, + 0.11164246499538422, + -0.014266964979469776, + 0.0207078754901886, + 0.0379759818315506, + -0.08227744698524475, + 0.006487082690000534, + 0.022277703508734703, + -0.053050946444272995, + -0.02601758763194084, + -0.027864445000886917, + -0.007318167947232723, + 0.02779518812894821, + -0.002975170034915209, + -0.04691014811396599, + 0.03645232692360878, + -0.09871447086334229, + -0.005641568917781115, + 0.03596752509474754, + 0.022589361295104027, + 0.04637917876243591, + -0.057668086141347885, + -0.0003736998187378049, + 0.06403974443674088, + -0.00509616918861866, + -0.03107335790991783, + 0.0224623903632164, + -0.09105001389980316, + -0.015917593613266945, + -0.03605986759066582, + 0.0112311951816082, + -0.042339179664850235, + 0.017037250101566315, + 0.06787196546792984, + -0.03926878049969673, + 0.04847997799515724, + -0.01962284743785858, + 0.06671768426895142, + 0.11284291744232178, + 0.0011874708579853177, + -0.038599297404289246, + 0.025325017049908638, + -0.04838763549923897, + -0.05582123249769211, + -0.009355481714010239, + 0.07701390981674194, + 0.07087311148643494, + -0.01495953556150198, + -0.06524019688367844, + -0.004374740645289421, + -0.010705995373427868, + 0.0643167719244957, + -0.02134273387491703, + -0.0189879909157753, + -0.03864546865224838, + -0.025532787665724754, + -0.04972660541534424, + -0.001043906668201089, + 0.05000363290309906, + 0.06459379941225052, + 0.02918032929301262, + 0.003431112738326192, + -0.014636335894465446, + -0.0556827187538147, + -0.00356962694786489, + -0.01956513337790966, + 0.033381927758455276, + -0.06602511554956436, + -0.025809817016124725, + 0.06727173924446106, + 0.06163882836699486, + 0.03227381408214569, + 0.04594055190682411, + -0.04568660631775856, + 0.02779518812894821, + 0.11302760243415833, + -0.06085391342639923, + 0.012604794465005398, + -0.016471650451421738, + -0.08301618695259094, + 0.012443194165825844, + -0.0332203283905983, + 0.02292410284280777, + -0.012962622568011284, + 0.14617867767810822, + -0.009730624035000801, + 0.06510168313980103, + 0.018918734043836594, + 0.01531736459583044, + -0.07428979128599167, + -0.03391289710998535, + -0.003171398537233472, + 0.06981116533279419, + 0.044740092009305954, + 0.03382055461406708, + -0.05535951629281044, + -0.044717006385326385, + 0.06787196546792984, + -0.004438226576894522, + -0.02040776237845421, + 0.07747562229633331, + 0.011629423126578331, + 0.02918032929301262, + 0.026410045102238655, + 0.026109930127859116, + -0.05295860394835472, + 0.025809817016124725, + -0.0872177854180336, + 0.08435516059398651, + 0.013562850654125214, + 0.01113308034837246, + 0.10508612543344498, + 0.02991907112300396, + 0.04760272055864334, + 0.02060399018228054, + 0.06339333951473236, + -0.003497484140098095, + 0.04003060981631279, + -0.05328180268406868, + -0.03878398239612579, + -0.037121810019016266, + -0.07544407993555069, + -0.055451858788728714, + 0.031488899141550064, + -0.07669071108102798, + 0.011889137327671051, + -0.024309245869517326, + 0.013735993765294552, + -0.03231998533010483, + -0.011496680788695812, + 0.005133683327585459, + -0.0035147983580827713, + 0.040700096637010574, + -0.005973425693809986, + -0.041000209748744965, + -0.019438162446022034, + 0.06371654570102692, + 0.021019533276557922, + -0.018018390983343124, + -0.00985182449221611, + -0.055128660053014755, + 0.005130797624588013, + 0.03065781481564045, + -0.014093821868300438, + -0.004819140769541264, + 0.12161548435688019, + -0.06565573811531067, + -0.02000376209616661, + 0.026271531358361244, + 0.027125701308250427, + 0.05609825998544693, + -0.0354134701192379, + 0.011300452053546906, + 0.0401691235601902, + 0.08006121963262558, + 0.014139993116259575, + 0.016794849187135696, + 0.0016405278583988547, + -0.004894169047474861, + -0.03642924129962921, + -0.025348102673888206, + -0.013528222218155861, + -0.03335884213447571, + 8.736045060686592e-07, + 0.062423743307590485, + 0.014463193714618683, + -0.07964567840099335, + -0.02691793069243431, + 0.02617918886244297, + 0.01712959259748459, + 0.02975747175514698, + -0.01199302263557911, + -0.03439769893884659, + 0.016841020435094833, + 0.01592913642525673, + 0.07941482216119766, + -0.0713348239660263, + 0.008847596123814583, + -0.0845860168337822, + 0.014578621834516525, + -0.01332045067101717, + 0.0011708780657500029, + -0.019495876505970955, + 0.010977252386510372, + 0.04046924039721489, + 0.019911419600248337, + 0.03352044150233269, + 0.07387425005435944, + -0.007502853870391846, + 0.046194493770599365, + -0.015813706442713737, + -0.0514349490404129, + -0.021792903542518616, + 0.014290050603449345, + -0.012766393832862377, + -0.01699107699096203, + 0.054112888872623444, + -0.018122278153896332, + 0.04328569397330284, + -0.019992219284176826, + -0.03569049760699272, + -0.014255422167479992, + -0.03647541254758835, + -0.019276563078165054, + 0.06699471175670624, + -0.06510168313980103, + -0.06500934064388275, + 0.013886050321161747, + -0.03137347102165222, + 0.019692106172442436, + 0.04861849173903465, + -0.016379306092858315, + 0.027772100642323494, + 0.006319711450487375, + -0.01407073624432087, + 0.025925245136022568, + 0.0025019131135195494, + -0.04654077813029289, + -0.01203919481486082, + -0.041300322860479355, + -0.023709017783403397, + -0.08661755919456482, + -0.06777962297201157, + -0.02574056014418602, + -0.021515876054763794, + -0.012662508524954319, + -0.10351629555225372, + -0.022993361577391624, + 0.09386647492647171, + 0.08537093549966812, + -0.054805461317300797, + 0.049311064183712006, + 0.03081941418349743, + 0.014624793082475662, + 0.009955709800124168, + -0.05739105865359306, + 0.01303187943994999, + 0.035921353846788406, + 0.020453933626413345, + 0.008697538636624813, + -0.09081915766000748, + 0.014901821501553059, + 0.01702570728957653, + -0.022358503192663193, + -0.04088478162884712, + 0.042177580296993256, + 0.035782840102910995, + 0.017556678503751755, + -0.03063472919166088, + 0.052312202751636505, + -0.0302191860973835, + 0.046356093138456345, + 0.06699471175670624, + 0.029826728627085686, + 0.03432844206690788, + 0.016183078289031982, + 0.04702557995915413, + -0.04194672405719757, + 0.019980676472187042, + 0.009014966897666454, + -0.060346029698848724, + 0.05623677372932434, + -0.014059193432331085, + -0.03691403940320015, + 0.027887530624866486, + -0.03315107151865959, + -0.010117310099303722, + 0.028903301805257797, + 0.053050946444272995, + -0.04268546774983406, + -0.007341253571212292, + 0.03243541345000267, + -0.019530504941940308, + -0.02322421781718731, + 0.03582901135087013, + -0.15134987235069275, + 0.008668681606650352, + -0.05014214664697647, + 0.04852614924311638, + 0.015467421151697636, + -0.04326260834932327, + -0.03137347102165222, + 0.029064901173114777, + -0.05078854784369469, + -0.06574808061122894, + 0.04319335147738457, + 0.041300322860479355, + 0.07618281990289688, + 0.12734074890613556, + -0.01674867793917656, + -0.02825690060853958, + -0.07165802270174026, + 0.07327402383089066, + 0.007612510584294796, + -0.020073018968105316, + 0.016252335160970688, + -0.06177734211087227, + -0.08763333410024643, + 0.00647553987801075, + -0.018179992213845253, + -0.02210456132888794, + -0.0010547280544415116, + -0.030288442969322205, + -0.000958056712988764, + 0.027264216914772987, + -0.013585936278104782, + 0.037398841232061386, + -0.04801826551556587, + 0.014694049954414368, + 0.08486304432153702, + 0.025255760177969933, + 0.031004099175333977, + -0.011842966079711914, + -0.004594055004417896, + 0.04866466298699379, + 0.053789690136909485, + -0.030911756679415703, + 0.003500369843095541, + -0.00033997304853983223, + 0.0187686774879694, + 0.03746809810400009, + -0.013862964697182178, + 0.04921872168779373, + -0.03469781205058098, + -0.050095975399017334, + -0.059284087270498276, + 0.034743983298540115, + -0.05716020241379738, + 0.03527495637536049, + -0.03368204087018967, + -0.04014603793621063, + 0.07650601863861084, + 0.045178722590208054, + 0.01760284975171089, + 0.041000209748744965, + 0.034305356442928314, + -0.007121939677745104, + 0.016702506691217422, + -0.03111952915787697, + -0.04596363753080368, + -0.009038053452968597, + 0.0093843387439847, + 0.047833576798439026 + ] + }, + { + "id": "d31ce3b4-2c69-4098-9ea2-ecc0f99a3ceb", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "johnsonrichard", + "reviewDate": "2022-10-03T00:10:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8fbd8b90-4b91-4278-833e-ebc5c41adcd9", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "garciamadison", + "reviewDate": "2022-12-18T15:01:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7eded254-212a-40e8-99f0-76cd4ecd63ec", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "gregory44", + "reviewDate": "2022-11-11T06:40:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "16cce745-bff0-4f3a-bbf9-2b54231e4c02", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "mary37", + "reviewDate": "2021-11-17T06:46:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9deef29b-348b-468e-afc4-3cd21c9dc985", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "deannasalazar", + "reviewDate": "2021-11-27T10:52:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0a518ed7-7718-42a1-a7b2-b5b1e6efc9fa", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "psalazar", + "reviewDate": "2022-09-18T21:25:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a571fff-c09b-43f1-b562-191b557b4b74", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "dfoster", + "reviewDate": "2022-01-10T13:39:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "019c8240-66bb-4099-96bb-c8d6f321878d", + "productId": "ec7ab0fd-d24d-4afb-92e4-1a2bc4097dea", + "category": "Other", + "docType": "customerRating", + "userName": "anthonysmith", + "reviewDate": "2022-08-23T15:55:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Pro (Silver)", + "description": "This Amazing Phone Pro (Silver) is an android phone with an Android 5.0 Lollipop phone skin that is compatible with the Qualcomm Snapdragon 543 with its Snapdragon 600 (Galaxy Tab 7). It is an amazing phone that can actually perform well", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-11-14T00:07:57", + "price": 801.5, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-04-27T01:23:28", + "newPrice": 804.26 + }, + { + "priceDate": "2021-09-16T01:23:28", + "newPrice": 853.2 + }, + { + "priceDate": "2022-02-05T01:23:28", + "newPrice": 762.91 + }, + { + "priceDate": "2022-06-27T01:23:28", + "newPrice": 780.96 + }, + { + "priceDate": "2022-11-16T01:23:28", + "newPrice": 841.54 + }, + { + "priceDate": "2023-11-08T01:23:28", + "newPrice": 801.5 + } + ], + "descriptionVector": [ + -0.025692535564303398, + 0.06022808328270912, + -0.03118954412639141, + 0.04617486521601677, + -0.0062797339633107185, + 0.0025065159425139427, + -0.04149045795202255, + 0.01602497324347496, + 0.05033347010612488, + 0.08522751927375793, + 0.0533926747739315, + -0.026744138449430466, + 0.037331853061914444, + 0.018988575786352158, + 0.032312843948602676, + 0.0745203047990799, + -0.030902743339538574, + -0.048923369497060776, + -0.022752832621335983, + 0.00118603918235749, + 0.028417140245437622, + -0.07174789905548096, + -0.004747143946588039, + 0.006273758597671986, + 0.029612142592668533, + -0.028775639832019806, + 0.00892068725079298, + -0.017709925770759583, + 0.0006090773968026042, + -0.03716455399990082, + 0.008789237588644028, + 0.017423124983906746, + 0.012135242111980915, + 0.052006471902132034, + 0.05439647659659386, + 0.049664270132780075, + 0.054253075271844864, + -0.0542052760720253, + 0.02260943129658699, + 0.03845515474677086, + 0.05434867739677429, + -0.019693627953529358, + 0.008914712816476822, + 0.0177218746393919, + 0.0397457554936409, + -0.0177218746393919, + -0.03042474202811718, + 0.01264311745762825, + -0.016347622498869896, + 0.03941115364432335, + -0.008837037719786167, + 0.007970660924911499, + -0.024282434955239296, + -0.04454966261982918, + 0.08231171220541, + -0.06653769314289093, + 0.0017850337317213416, + 0.07232150435447693, + -0.00035924738040193915, + -0.02223898097872734, + -0.052341073751449585, + 0.0031249294988811016, + 0.015499171800911427, + 0.012917968444526196, + 0.014435620047152042, + 0.004995107185095549, + -0.04493206366896629, + 0.021545879542827606, + 0.037451352924108505, + 0.07973051071166992, + -0.009972289204597473, + -0.020064078271389008, + 0.007241710089147091, + 0.012463867664337158, + 0.009470388293266296, + 0.1041085496544838, + 0.03451164811849594, + 0.046772364526987076, + 0.036280252039432526, + -0.040892958641052246, + 0.05788588151335716, + 0.055113475769758224, + 0.01435197051614523, + 0.03200214356184006, + 0.025047235190868378, + 0.022896232083439827, + 0.08412811905145645, + -0.13699498772621155, + -0.030687643215060234, + 0.030592042952775955, + -0.021462230011820793, + 0.04734596610069275, + -0.038192253559827805, + 0.020064078271389008, + 0.04894726723432541, + 0.06539048999547958, + 0.0019448652165010571, + 0.07891791313886642, + -0.01414882019162178, + 0.006351434160023928, + -0.015116771683096886, + -0.05645187944173813, + -0.030998343601822853, + -0.03596955165266991, + 0.0033400296233594418, + 0.021581729874014854, + -0.04851706698536873, + -0.07165230065584183, + 0.019478527829051018, + -0.08384131640195847, + -0.04285275936126709, + -0.03448775038123131, + -0.027724038809537888, + 0.02581203542649746, + -0.009984239004552364, + -0.008574137464165688, + -0.04309175908565521, + -0.03291034698486328, + 0.013336218893527985, + -0.06424328684806824, + -0.02272893115878105, + 0.01753067411482334, + -0.07958710938692093, + -0.000829032389447093, + 0.02061377838253975, + 0.01269091758877039, + 0.12102977186441422, + 0.027485039085149765, + -0.03472675010561943, + -0.07093530148267746, + -0.07265610247850418, + 0.01753067411482334, + 0.07714930921792984, + 0.038622453808784485, + -0.012702868320047855, + 0.01716022379696369, + 0.027580639347434044, + 0.15181301534175873, + 0.022191181778907776, + 0.06118408590555191, + 0.0512416735291481, + 0.01178271695971489, + -0.003325092140585184, + -0.07681471109390259, + -9.756068175192922e-05, + 0.027485039085149765, + 0.030472543090581894, + -0.037881553173065186, + 0.025453535839915276, + 0.02091252990067005, + -0.07322970032691956, + -0.08909932523965836, + -0.0011972422944381833, + -0.05740788206458092, + -0.01953827776014805, + -0.04113195836544037, + -0.05626067891716957, + -0.0548744760453701, + 0.022047780454158783, + 0.046437766402959824, + -0.07361210137605667, + -0.024832135066390038, + 0.006925034802407026, + -0.034439947456121445, + -0.05023787170648575, + -0.012206941843032837, + 0.029851142317056656, + 0.06964469701051712, + -0.10324814170598984, + 0.026815837249159813, + 0.03460725024342537, + 0.007600210607051849, + -0.03128514438867569, + -0.11424215883016586, + -0.017088523134589195, + 0.038622453808784485, + 0.05559147894382477, + 0.0433785617351532, + -0.03161974623799324, + -0.041514359414577484, + 0.04325906187295914, + 0.007170009892433882, + -0.07294290512800217, + -0.01729167439043522, + 0.05171967297792435, + 0.0533926747739315, + 0.01038456428796053, + -0.019801177084445953, + 0.028225939720869064, + 0.03460725024342537, + 0.024473633617162704, + -0.01879737712442875, + -0.058555081486701965, + -0.005027969367802143, + 0.04509936273097992, + -0.009452463127672672, + 0.03264744579792023, + -0.013001617975533009, + -0.04985547065734863, + 0.019299278035759926, + 0.04227915778756142, + 0.011860392056405544, + 0.06902329623699188, + -0.05162407085299492, + 0.016586624085903168, + -0.01987287774682045, + -0.03152414411306381, + 0.007743611000478268, + 0.009512213058769703, + 0.0021614592988044024, + 0.034439947456121445, + 0.012296567671000957, + -0.023015731945633888, + 0.014865821227431297, + 0.08345891535282135, + -0.006417158991098404, + 0.03183484449982643, + -0.02882344089448452, + 0.018725676462054253, + -0.07982610911130905, + 0.009763163514435291, + -0.01510482095181942, + 0.022035831585526466, + 0.01419662032276392, + -0.05774248018860817, + -0.046676766127347946, + 0.01526017114520073, + 0.018164025619626045, + 0.006435084156692028, + -0.02934924140572548, + -0.004579843953251839, + -0.051385071128606796, + 0.026959238573908806, + 0.030400842428207397, + -0.034870147705078125, + 0.04567296430468559, + 0.012655068188905716, + -0.009631713852286339, + -0.08484511822462082, + 0.0968429371714592, + 0.0052251447923481464, + -0.07150889933109283, + -0.010432364419102669, + -0.08121231198310852, + 0.05004667118191719, + -0.05033347010612488, + -0.010462239384651184, + 0.015738172456622124, + -0.07767511159181595, + 0.007749585900455713, + -0.020255278795957565, + -0.0679238960146904, + -0.07944370806217194, + 0.03890925645828247, + 0.012248767539858818, + 0.027365539222955704, + 0.00932101346552372, + -0.027293838560581207, + 0.07428130507469177, + -0.005685220472514629, + -0.026218336075544357, + -0.05023787170648575, + -0.0013936706818640232, + -0.01488972082734108, + -0.04541006311774254, + 0.04610316455364227, + 0.011250941082835197, + -0.013312318362295628, + -0.02753283828496933, + 0.007426935248076916, + 0.014208570122718811, + 0.006333508994430304, + 0.00746876047924161, + 0.04335466027259827, + -0.053297076374292374, + 0.002179384231567383, + -0.09626933187246323, + 0.0801607146859169, + 0.0425659604370594, + -0.004741169046610594, + 0.0656294897198677, + 0.026911437511444092, + 0.12255937606096268, + 0.03142854571342468, + 0.06605969369411469, + 0.016837574541568756, + -0.02335033193230629, + -0.05348827689886093, + 0.03718845173716545, + 0.06701569259166718, + -0.03020964190363884, + 0.02913414128124714, + 0.034344349056482315, + -0.0007550916634500027, + -0.023027682676911354, + -0.0397457554936409, + 0.019908728078007698, + -0.04423896223306656, + 0.00026047302526421845, + -0.011973916552960873, + 0.015355771407485008, + -0.02294403314590454, + -0.04756106808781624, + -0.04110805690288544, + 0.0361129492521286, + 0.0765279084444046, + -0.03410534933209419, + 0.009141762740910053, + -0.05023787170648575, + 0.011585541069507599, + 0.0903899297118187, + -0.036160752177238464, + -0.06194888800382614, + -0.019108077511191368, + 0.006393258925527334, + -0.028632240369915962, + -0.03737965226173401, + 0.024294383823871613, + 0.04937747120857239, + -0.01122704055160284, + 0.06534269452095032, + 0.022716982290148735, + -0.07781851291656494, + 0.01456707064062357, + 0.04734596610069275, + -0.01839107647538185, + -0.007068434730172157, + -0.04306786134839058, + -0.001127782859839499, + -0.00728951022028923, + -0.021366629749536514, + 0.021450279280543327, + 0.03281474485993385, + -0.010043988935649395, + 0.01110754068940878, + 0.03807275369763374, + 0.05884188413619995, + 0.06543829292058945, + 0.04830196872353554, + 0.04670066386461258, + 0.035419851541519165, + 0.012965768575668335, + -0.03341224789619446, + 0.04335466027259827, + -0.02270503155887127, + -0.05697768181562424, + -0.043235160410404205, + -0.009219437837600708, + 0.010611615143716335, + -0.037570852786302567, + 0.0013914300361648202, + -0.058985281735658646, + 0.04725036770105362, + 0.0048756068572402, + 0.032527945935726166, + 0.01493752095848322, + -0.040438856929540634, + -0.04887557029724121, + -0.045816365629434586, + -0.01817597635090351, + -0.01253556739538908, + -0.009757189080119133, + 0.02362518385052681, + -0.003507329849526286, + 0.001770096248947084, + 0.06648989021778107, + -0.010163489729166031, + 0.0642910897731781, + -0.009816939011216164, + -0.01584572158753872, + 0.05219767242670059, + -0.032862547785043716, + 0.04371315985918045, + 0.04646166414022446, + -0.048588767647743225, + -0.012667017988860607, + 0.005359582602977753, + -0.02667243778705597, + 0.011460065841674805, + 0.04349806159734726, + 0.005777833051979542, + 0.05697768181562424, + -0.03972185403108597, + 0.013981519266963005, + 0.08068651705980301, + -0.05391847714781761, + 0.03190654516220093, + 0.0022690093610435724, + -0.023923933506011963, + 0.09990213811397552, + -0.025477435439825058, + 0.005804720800369978, + 0.019024426117539406, + 0.09383153170347214, + 0.0875697210431099, + -0.0433068610727787, + -0.029612142592668533, + -0.01858227699995041, + 0.08130791783332825, + -0.04662896692752838, + 0.06190108880400658, + 0.021366629749536514, + 0.0277718398720026, + -0.03195434436202049, + -0.004815856926143169, + -0.07638450711965561, + 0.019418777897953987, + 0.06438668817281723, + -0.07012269645929337, + -0.08967292308807373, + -0.007558385841548443, + -0.00694295996800065, + -0.004203418269753456, + -0.019980428740382195, + 0.014053219929337502, + 0.07322970032691956, + 0.040653958916664124, + 0.02913414128124714, + 0.08718731999397278, + -0.007259635254740715, + -0.062092285603284836, + 0.009410638362169266, + 0.021605629473924637, + 0.03910045325756073, + -0.09502653032541275, + 0.036280252039432526, + 0.048923369497060776, + 0.06591629236936569, + -0.03410534933209419, + -0.04873216897249222, + 0.12408897280693054, + 0.005595595575869083, + 0.07060069590806961, + 0.013670818880200386, + -0.08250291645526886, + -0.010241164825856686, + -0.05922428518533707, + -0.060371484607458115, + 0.009745238348841667, + -0.002194321947172284, + -0.09411833435297012, + -0.023433983325958252, + -0.04641386494040489, + 0.06271369010210037, + -0.13527418673038483, + -0.05038126930594444, + 0.0022241969127207994, + -0.013395968824625015, + 0.007934811525046825, + -0.07380330562591553, + -0.046963565051555634, + 0.0184269268065691, + 0.02669633738696575, + -0.028369339182972908, + 0.0809733122587204, + 0.001160645391792059, + -0.052436672151088715, + 0.09407053142786026, + -0.030018441379070282, + -0.02667243778705597, + -0.05549587681889534, + -0.005858495831489563, + 0.03384244814515114, + -0.03350784629583359, + -0.02292013168334961, + 0.03221724554896355, + -0.07939591258764267, + -0.04650946706533432, + 0.015379671938717365, + 0.011519815772771835, + 0.004950294271111488, + -0.08231171220541, + 0.020410628989338875, + 0.04125145822763443, + -0.03943505510687828, + -0.04861266911029816, + 0.028321539983153343, + 0.03291034698486328, + -0.04261375963687897, + 0.004935356788337231, + 0.07251270115375519, + 0.05004667118191719, + 0.005240082275122404, + 0.008149911649525166, + 0.017267774790525436, + -0.07757950574159622, + 0.013957619667053223, + -0.040869057178497314, + -0.010617589578032494, + 0.03601735085248947, + 0.04854096844792366, + 0.055352479219436646, + -0.05516127869486809, + -0.01694512367248535, + -0.0462704636156559, + -0.06300048530101776, + 0.03800105303525925, + 0.00801248662173748, + -0.007540460675954819, + 0.05301027372479439, + -0.04648556560277939, + -0.0585072822868824, + -0.039363354444503784, + 0.019299278035759926, + -0.03257574513554573, + -0.0020703403279185295, + 0.024903835728764534, + 0.002449753461405635, + -0.01596522331237793, + -0.032934244722127914, + 0.03835955262184143, + -0.018773475661873817 + ] + }, + { + "id": "1f6c8a43-ac08-43e5-9a4e-6acbbe1750e7", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "samanthamorales", + "reviewDate": "2022-07-30T11:00:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eebf0a8a-8a6e-438f-b4e6-bb8000498411", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "phillipblake", + "reviewDate": "2021-09-07T13:33:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "be3bbc68-757f-4136-b406-b53fe1954de1", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "rmorgan", + "reviewDate": "2021-06-21T17:49:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "17f5a6dd-cd4b-459c-ae61-78a80e44ea89", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "wglover", + "reviewDate": "2022-11-19T12:51:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8bdf0601-c5d8-4a72-9574-ea452f0dc0a6", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "ryan71", + "reviewDate": "2021-09-10T02:38:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "dbb17e06-4856-472c-a7c3-07fdf6664a4e", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "jose89", + "reviewDate": "2021-04-27T01:23:28", + "stars": 5, + "verifiedUser": false + }, + { + "id": "27870f8c-3b3c-4c02-a90a-6f4c3cd42e6c", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "hodgesjessica", + "reviewDate": "2021-11-05T22:06:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b5dfb3f4-2ec0-4353-aa97-efe71a296557", + "productId": "99c7f90f-5bb1-48b5-89af-e0032332494b", + "category": "Electronics", + "docType": "customerRating", + "userName": "yeseniamarshall", + "reviewDate": "2021-10-16T12:44:16", + "stars": 5, + "verifiedUser": true + }, + { + "id": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard 3000 (Red)", + "description": "This Amazing Keyboard 3000 (Red) is the first of two new line of mechanical keyboards of its kind built for professionals using Cherry MX RGB keys. This keyboard features eight keys for different combinations. It features the built-in", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-10-22T10:21:35", + "price": 994.27, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-02-06T07:58:52", + "newPrice": 895.35 + }, + { + "priceDate": "2021-07-11T07:58:52", + "newPrice": 1065.6 + }, + { + "priceDate": "2021-12-13T07:58:52", + "newPrice": 897.29 + }, + { + "priceDate": "2022-05-17T07:58:52", + "newPrice": 903.99 + }, + { + "priceDate": "2022-10-19T07:58:52", + "newPrice": 967.22 + }, + { + "priceDate": "2024-11-11T07:58:52", + "newPrice": 994.27 + } + ], + "descriptionVector": [ + -0.02698560431599617, + -0.028300225734710693, + -0.02808510698378086, + 0.0027099139988422394, + -0.0024365324061363935, + -0.03566211089491844, + -0.016827162355184555, + 0.018034223467111588, + 0.03508845716714859, + 0.09116306155920029, + 0.06458379328250885, + -0.01714984141290188, + 0.01769959181547165, + -0.05679167062044144, + 0.04106401279568672, + 0.0035763694904744625, + -0.049190763384103775, + -0.0038721594028174877, + -0.043621547520160675, + -0.01492693554610014, + -0.016719602048397064, + -0.019420552998781204, + -0.03633137047290802, + 0.03109678626060486, + 0.007343956734985113, + -0.05311072990298271, + 0.02574268914759159, + -0.024356359615921974, + -0.06969887018203735, + 0.0035853327717632055, + 0.06305405497550964, + 0.0041828881949186325, + 0.014783522114157677, + 0.0361640565097332, + -0.04077718406915665, + -0.02808510698378086, + -0.023256858810782433, + 0.040394749492406845, + 0.010271978564560413, + -0.04374105855822563, + 0.008730284869670868, + 0.03580552339553833, + 0.01814178377389908, + -0.04245033860206604, + 0.01725740171968937, + 0.11903304606676102, + 0.02089053951203823, + -0.05769995599985123, + -0.01087550912052393, + 0.030881665647029877, + 0.08356215804815292, + 0.085761159658432, + -0.0421157069504261, + -0.0033463104628026485, + 0.051533181220293045, + -0.03869768977165222, + 0.023340515792369843, + 0.1371031254529953, + 0.10775119811296463, + -0.06740425527095795, + 0.03231579810380936, + -0.03449090197682381, + -0.012184156104922295, + -0.07242371886968613, + -0.010511000640690327, + -0.07247152924537659, + -0.012704028747975826, + -0.043095700442790985, + 0.030833860859274864, + 0.02645975537598133, + -0.0651574432849884, + 0.00030550023075193167, + 0.010929289273917675, + 0.01563205011188984, + -0.0188827533274889, + 0.0025874150451272726, + 0.11310529708862305, + 0.04180498048663139, + 0.0149149838835001, + 0.01651643216609955, + 0.033558715134859085, + 0.01753227785229683, + -0.059468720108270645, + -0.09044599533081055, + 0.03525577113032341, + -0.006513354368507862, + -0.045414213091135025, + -0.10354440659284592, + -0.004756541457027197, + 0.043621547520160675, + -0.08805577456951141, + 0.03628356754779816, + 0.00684201018884778, + -0.03073825314640999, + 4.789780359715223e-05, + -0.010188320651650429, + -0.027248529717326164, + 0.0469200536608696, + -0.030284110456705093, + 0.026889994740486145, + -0.0016731552314013243, + 0.004648981615900993, + -0.049907833337783813, + -0.04386056959629059, + -0.048664916306734085, + 0.06391452997922897, + 0.0002885072317440063, + 0.0608072429895401, + -0.06028139591217041, + -0.10956776887178421, + -0.034801628440618515, + 0.008222362957894802, + -0.04101620614528656, + 0.03903232142329216, + -0.0222768671810627, + 0.02755925804376602, + -0.08078949898481369, + -0.010815753601491451, + -0.002790583996102214, + -0.03484943509101868, + 0.002666591200977564, + -0.005231597926467657, + -0.026531461626291275, + 0.036259666085243225, + -0.04044255241751671, + -0.04923857003450394, + 0.020412493497133255, + 0.012345495633780956, + -0.00547062000259757, + 0.0008179040160030127, + -0.07089398056268692, + 0.04304789379239082, + 0.07672612369060516, + 0.1552688032388687, + 0.005847080145031214, + 0.09202354401350021, + -0.020998097956180573, + 0.08246265351772308, + -0.03262652829289436, + 0.0679779052734375, + 0.012608420103788376, + -0.020986147224903107, + 0.004299411550164223, + 0.06009017676115036, + -0.0465376190841198, + 0.003229787340387702, + -0.0521068349480629, + 0.08619140088558197, + 0.04627469554543495, + 0.04307179898023605, + -0.03095337189733982, + -0.03575771674513817, + -0.01015844289213419, + -0.06348428875207901, + 0.02265930362045765, + 0.012632322497665882, + -0.08251045644283295, + -0.04971661418676376, + 0.01717374473810196, + 0.02588610164821148, + -0.03647478669881821, + 0.030547035858035088, + -0.007624807767570019, + 0.07352322340011597, + -0.031933363527059555, + -0.004341240506619215, + 0.015883024781942368, + 0.015894975513219833, + -0.027822181582450867, + 0.03458651155233383, + -0.03862598538398743, + -0.0017299230676144361, + 0.008957356214523315, + -0.04787614196538925, + 0.025814395397901535, + -0.046322498470544815, + 0.0970430076122284, + -0.0045922137796878815, + 0.028706563636660576, + -0.07161104679107666, + 0.04268936067819595, + 0.03042752295732498, + -0.02318515256047249, + 0.029280217364430428, + 0.10000687837600708, + 0.07012911140918732, + -0.0059785423800349236, + 0.02282661758363247, + 0.020938342437148094, + 0.013707921840250492, + 0.08227143436670303, + 0.022456133738160133, + -0.029280217364430428, + 0.04388447105884552, + -0.042378634214401245, + 0.10488293319940567, + -0.003686917247250676, + -0.03236360475420952, + 0.031048981472849846, + 0.027989497408270836, + 0.0029967406298965216, + 0.07261493802070618, + 0.0743837058544159, + -0.00742761418223381, + 0.024129290133714676, + 0.05253707617521286, + 0.005581167992204428, + 0.05507070943713188, + 0.04261765629053116, + 0.03695283085107803, + -0.024523675441741943, + -0.017233500257134438, + -0.006800181232392788, + -0.06582670658826828, + 0.06205016002058983, + 0.02660316973924637, + -0.020185424014925957, + 0.00930393859744072, + 0.03829135373234749, + -0.05158098787069321, + 0.03719185292720795, + -0.015894975513219833, + 0.029375826939940453, + -0.0021407424937933683, + -0.00742761418223381, + -0.004929832648485899, + 0.05564436316490173, + -0.05162879079580307, + -0.027846084907650948, + 0.04942978918552399, + -0.07710855454206467, + -0.0568394735455513, + 0.02122516930103302, + 0.018930556252598763, + -0.0053033046424388885, + -0.02164345793426037, + -0.04393227770924568, + -0.08078949898481369, + -0.10708193480968475, + 0.05573997274041176, + 0.00231552729383111, + 0.05330194532871246, + -0.03735916689038277, + -0.045963965356349945, + 0.07734757661819458, + -0.04390837624669075, + 0.05162879079580307, + -0.028156813234090805, + -0.1321314573287964, + -0.01937274821102619, + 0.004831235855817795, + 0.06448818743228912, + 0.02103395201265812, + 0.0011368492851033807, + 0.012381348758935928, + 0.06338868290185928, + 0.03621185943484306, + -0.03582942485809326, + -0.02200199104845524, + -0.0993376225233078, + -0.001244409242644906, + 0.028921684250235558, + -0.01824934408068657, + 0.02194223552942276, + -0.03657039254903793, + 0.01940860040485859, + 0.00230805785395205, + -0.024930013343691826, + -0.05870384722948074, + -0.003028112230822444, + 0.01871543750166893, + -0.006937618833035231, + 0.06353209912776947, + -0.023639293387532234, + 0.015165957622230053, + 0.005162879358977079, + -0.015894975513219833, + 0.028491444885730743, + -0.003086373908445239, + -0.04053816199302673, + 0.006830058991909027, + 0.08069388568401337, + 0.12257057428359985, + -0.01865568198263645, + 0.022946128621697426, + -0.0132179269567132, + 0.05306292325258255, + 0.01913372613489628, + -0.0373830683529377, + 0.0008642145548947155, + -0.03202897310256958, + -0.01097111776471138, + -0.002745767356827855, + 0.025766590610146523, + 0.003140153829008341, + 0.01865568198263645, + 0.029782164841890335, + -0.05000343918800354, + 0.03363041952252388, + 0.00815663207322359, + 0.06487061828374863, + -0.04751760885119438, + -0.082701675593853, + -0.0930752381682396, + -0.041996195912361145, + 0.05922969803214073, + -0.029256315901875496, + 0.04591616243124008, + 0.03680941462516785, + -0.04383666813373566, + 0.01850031688809395, + -0.057460933923721313, + -0.015309371054172516, + 0.028921684250235558, + 0.07596124708652496, + -0.05487949401140213, + 0.06262381374835968, + 0.05105513706803322, + 0.027081213891506195, + -0.03002118691802025, + 0.028849977999925613, + -0.052441466599702835, + -0.06114187464118004, + 0.08169778436422348, + 0.003931914921849966, + -0.013994748704135418, + -0.01882299780845642, + 0.03238750621676445, + 0.004335264675319195, + -0.08313191682100296, + -0.06099846214056015, + -0.028658758848905563, + -0.026340244337916374, + -0.013803531415760517, + 0.007320054341107607, + -0.09240597486495972, + 0.007355907466262579, + 0.09441376477479935, + 0.005324218887835741, + 0.020197374746203423, + 0.013755726628005505, + -0.028348030522465706, + -0.025503667071461678, + -0.05559656023979187, + -0.021404435858130455, + -0.03575771674513817, + -0.005327207036316395, + -0.05793897807598114, + 0.04115961864590645, + -0.01259646937251091, + 0.0012324581621214747, + -0.026866093277931213, + 0.050816114991903305, + -0.06228918209671974, + 0.017687641084194183, + 0.01101294718682766, + 0.004711724817752838, + -0.0333435945212841, + -0.009781982749700546, + 0.10019809752702713, + -0.05258487910032272, + 0.012512811459600925, + 0.05110294371843338, + 0.024714894592761993, + -0.024595381692051888, + 0.01918153092265129, + -0.002579945605248213, + 0.026125123724341393, + 0.028873879462480545, + 0.00893345382064581, + 0.007517247460782528, + 0.01954006403684616, + -0.0453186072409153, + 0.09278841316699982, + -0.02092639170587063, + 0.008072974160313606, + -0.03288945183157921, + -0.03647478669881821, + -0.05636142939329147, + 0.023687098175287247, + 0.005530375521630049, + 0.027439747005701065, + -0.04735029488801956, + 0.030451426282525063, + 0.028682662174105644, + -0.10230149328708649, + -0.009035038761794567, + -0.04280887171626091, + -0.005841104779392481, + 0.009686374105513096, + -0.041637662798166275, + 0.03276994079351425, + 0.005279402248561382, + 0.09484399855136871, + 0.010009054094552994, + 0.0008515165536664426, + 0.011980987153947353, + 0.04735029488801956, + 0.05091172456741333, + -0.003259665099903941, + -0.03666600212454796, + 0.0329611599445343, + 0.0318138524889946, + -0.021488094702363014, + -0.06147650629281998, + -0.07677392661571503, + 0.017102036625146866, + 0.030857764184474945, + -0.013265730813145638, + -0.0392952486872673, + -0.01465205941349268, + -0.032841648906469345, + 0.004986600484699011, + -0.028730466961860657, + -0.026555364951491356, + 0.00048775464529171586, + 0.07328420132398605, + 0.08121974021196365, + 0.04027523845434189, + -0.02987777255475521, + 0.04027523845434189, + 0.014365233480930328, + -0.04283277690410614, + 0.03449090197682381, + -0.06190674379467964, + -0.005721593275666237, + 0.07945097237825394, + -0.03348700702190399, + 0.0069256676360964775, + -0.03131190687417984, + 0.05239366367459297, + -0.04414739832282066, + -0.019253237172961235, + 0.04787614196538925, + -0.03236360475420952, + -0.06338868290185928, + -0.036976732313632965, + 0.016743503510951996, + 0.010606609284877777, + 0.0902547761797905, + 0.02150004543364048, + -0.006961521226912737, + -0.05430584028363228, + -0.02291027642786503, + -0.06687840819358826, + 0.004341240506619215, + -0.047039564698934555, + 0.03339139744639397, + 0.06248039752244949, + -0.035518694669008255, + -0.03406066074967384, + -0.007296151947230101, + -0.04149425029754639, + 0.028467541560530663, + 0.0632452666759491, + 0.0017612946685403585, + -0.01547668594866991, + 0.03353481367230415, + -0.008790040388703346, + 0.05124635621905327, + -0.014436939731240273, + 0.03886500746011734, + 0.052967317402362823, + -0.017902761697769165, + -0.0011637392453849316, + 0.007612856570631266, + -0.03798062354326248, + 0.005312268156558275, + -0.009035038761794567, + 0.004066364839673042, + 0.03602064400911331, + -0.06338868290185928, + 0.043263014405965805, + -0.04245033860206604, + 0.05134196579456329, + -0.10822924226522446, + 0.0202571302652359, + 0.0397493876516819, + -0.02569488435983658, + 0.010714169591665268, + -0.03962987661361694, + -0.05072050541639328, + -0.02354368567466736, + 0.009094794280827045, + 0.01763983629643917, + 0.04180498048663139, + -0.013074513524770737, + 0.0053959256038069725, + 0.021105658262968063, + 0.03432358428835869, + 0.04754151031374931, + 0.05889506638050079, + 0.005007514730095863, + -0.04529470205307007, + -0.04804345965385437, + 0.03489723801612854, + -0.05392340570688248, + 0.03274603933095932, + -0.0381479412317276, + 0.020328836515545845, + -0.006375916767865419, + -0.0369289256632328, + 0.01097111776471138, + -0.009734177961945534, + -0.02767876908183098, + 0.03649868816137314, + -0.04995563626289368, + 0.0775865986943245, + 0.04706346616148949, + -0.05464047193527222, + -0.005380986724048853, + -0.07572222501039505 + ] + }, + { + "id": "2546bf8f-0b1a-479d-95f9-a7233c08b068", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaron74", + "reviewDate": "2022-10-22T21:15:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2bab9d00-4b96-46e9-8f5e-4eea6f3e42e2", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "caitlin32", + "reviewDate": "2022-05-14T06:51:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4f07ae8c-13e2-4b3b-b347-7a799c74784f", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john87", + "reviewDate": "2021-02-06T07:58:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "da984711-52b0-4603-91fa-3a19143d30b9", + "productId": "26aa2c55-0626-4ef8-84c8-09320200ec1f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownrobert", + "reviewDate": "2022-10-17T21:54:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Pro (Steel)", + "description": "This Awesome Mouse Pro (Steel) is an interesting and innovative mouse that uses a very clever combination of features and a simple user interface.\n\nTo read my demo of Steel Mouse", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-03-07T04:22:31", + "price": 773.33, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-03-09T02:06:51", + "newPrice": 847.79 + }, + { + "priceDate": "2021-07-19T02:06:51", + "newPrice": 843.56 + }, + { + "priceDate": "2021-11-28T02:06:51", + "newPrice": 706.66 + }, + { + "priceDate": "2022-04-09T02:06:51", + "newPrice": 767.93 + }, + { + "priceDate": "2022-08-19T02:06:51", + "newPrice": 739.66 + }, + { + "priceDate": "2025-09-04T02:06:51", + "newPrice": 773.33 + } + ], + "descriptionVector": [ + -0.040161874145269394, + -0.026245316490530968, + -0.05014229938387871, + -0.034771375358104706, + -0.0066247074864804745, + -0.014863896183669567, + 0.022856242954730988, + 0.040909070521593094, + 0.043711062520742416, + 0.11378752440214157, + 0.034024178981781006, + -0.0028820480220019817, + 0.02563154697418213, + -0.0513431541621685, + -0.0070983776822686195, + -0.01888008415699005, + -0.013649700209498405, + 0.010707609355449677, + -0.014463611878454685, + -0.039548102766275406, + 0.011154592968523502, + -0.026058517396450043, + -0.03359720855951309, + -0.027939854189753532, + 0.027232686057686806, + -0.017759287729859352, + -0.028019912540912628, + 0.023977039381861687, + 0.005794117227196693, + 0.00830590259283781, + 0.026071861386299133, + 0.04779396206140518, + -0.026205288246273994, + 0.03485143184661865, + 0.039281249046325684, + 0.005817467346787453, + -0.009813640266656876, + 0.02174878865480423, + 0.05822804570198059, + 0.09446713328361511, + -0.0047333636321127415, + -0.05243726447224617, + 0.022402586415410042, + 0.026458801701664925, + -0.06127020716667175, + 0.029220765456557274, + -0.070450060069561, + 0.016505062580108643, + -0.013236072845757008, + 0.023816924542188644, + 0.07605404406785965, + 0.04952852800488472, + -0.08187151700258255, + -0.004953519906848669, + 0.041682954877614975, + -0.004886806011199951, + 0.04675322398543358, + 0.01735900156199932, + 0.021215075626969337, + -0.10455429553985596, + -0.014236783608794212, + -0.05817467346787453, + 0.023536724969744682, + 0.023443326354026794, + -0.041042499244213104, + -0.10604869574308395, + 0.00593755254521966, + 0.001756248064339161, + 0.06377865374088287, + 0.049982186406850815, + -0.0698629766702652, + -0.026592230424284935, + -0.011895119212567806, + 0.030955331400036812, + -0.0020114292856305838, + 0.011728334240615368, + 0.0667140781879425, + 0.04360431805253029, + 0.05684039369225502, + -0.07151748985052109, + 0.006020945496857166, + 0.03381069377064705, + -0.026098545640707016, + -0.01936042495071888, + 0.045952655375003815, + 0.03882759064435959, + -0.0086194584146142, + -0.13065284490585327, + 0.003228961257264018, + 0.05278417468070984, + -0.016384975984692574, + 0.04592597112059593, + 0.01822628453373909, + -0.0081724738702178, + -0.024790950119495392, + -0.02125510387122631, + -0.03957479074597359, + 0.013416200876235962, + -0.008806257508695126, + -0.012081919237971306, + 0.026071861386299133, + 0.01737234555184841, + -0.10204584896564484, + -0.02401706762611866, + -0.02337661199271679, + 0.03786690905690193, + -0.004109587054699659, + 0.0046899993903934956, + -0.094627246260643, + -0.020014222711324692, + -0.017946086823940277, + 0.000493684143293649, + -0.01647837646305561, + -0.006114345043897629, + 0.004109587054699659, + -0.0052670761942863464, + -0.09948402643203735, + -0.02513786405324936, + -0.029994647949934006, + -0.023977039381861687, + 0.048594530671834946, + 0.07541359215974808, + -0.012448846362531185, + 0.07648101449012756, + -0.025084491819143295, + -0.036132343113422394, + 0.07439953833818436, + -0.03503823280334473, + 0.04824762046337128, + -0.04197649657726288, + -0.05177012085914612, + 0.08277882635593414, + 0.011421449482440948, + -0.0011349732521921396, + -0.05491902679204941, + 0.08870303630828857, + -0.0062544443644583225, + 0.0032489753793925047, + 0.026632258668541908, + 0.11047850549221039, + 0.04261695221066475, + -0.012395475059747696, + -0.06852869689464569, + 0.010100510902702808, + -0.04629956930875778, + 0.021228419616818428, + -0.05598645284771919, + 0.02780642732977867, + -0.01823962852358818, + 0.03106207400560379, + -0.010347353294491768, + -0.05566622316837311, + -0.00524706207215786, + -0.013396186754107475, + 0.05844153091311455, + 0.04792739078402519, + -0.03872084990143776, + 0.020427849143743515, + -0.05291760340332985, + 0.0356786884367466, + -0.01263564545661211, + -0.07738832384347916, + -0.025204578414559364, + 0.03391743451356888, + 0.0008923007408156991, + 0.014009956270456314, + 0.06767475605010986, + 0.08539401739835739, + -0.04819424822926521, + 0.022028988227248192, + -0.063885398209095, + 0.0009273256291635334, + 0.052357207983732224, + -0.0968688353896141, + 0.016238205134868622, + -0.02954099327325821, + 0.06425900012254715, + 0.037146396934986115, + -0.009786955080926418, + -0.019200310111045837, + 0.014663754031062126, + 0.05609319359064102, + -0.06505956500768661, + 0.04726025089621544, + 0.09713569283485413, + 0.019160281866788864, + 0.06906241178512573, + 0.04237677901983261, + -0.029514307156205177, + -0.036772798746824265, + 0.02416383847594261, + -0.02842019684612751, + 0.037279825657606125, + -0.02048122137784958, + 0.001308429753407836, + 0.11058524996042252, + 0.0027619628235697746, + 0.07050343602895737, + 0.023830268532037735, + 0.024604151025414467, + 0.0017896051285788417, + 0.01737234555184841, + 0.07429279386997223, + -0.03877422213554382, + 0.031222186982631683, + -0.022202445194125175, + 0.0005111966165713966, + -0.03180927038192749, + 0.06804835796356201, + -0.0308219026774168, + 0.016011377796530724, + -0.022202445194125175, + -0.05206366255879402, + -0.023550068959593773, + 0.03909444808959961, + 0.016638491302728653, + 0.004596599843353033, + -0.04275038093328476, + -0.059775810688734055, + -0.06319157034158707, + 0.03381069377064705, + 0.02541806362569332, + 0.03317023813724518, + -0.05993592366576195, + -0.09809637814760208, + -0.010414066724479198, + 0.0741860494017601, + -0.013863184489309788, + 0.04939510300755501, + 0.009580140933394432, + -0.046192824840545654, + 0.004986877087503672, + 0.02415049448609352, + 0.020894847810268402, + -0.070450060069561, + 0.019213654100894928, + -0.042803749442100525, + -0.014557011425495148, + 0.05812130123376846, + 0.05259737744927406, + -0.023963695392012596, + -0.03629245609045029, + -0.06265786290168762, + -0.056893762201070786, + 0.06431236863136292, + 0.008319245651364326, + 0.05774770304560661, + -0.004269700963050127, + -0.08411310613155365, + -0.014503640122711658, + -0.033757321536540985, + 0.025204578414559364, + -0.024230552837252617, + 0.07589393109083176, + 0.028366824612021446, + 0.08630132675170898, + 0.041816383600234985, + -0.029754478484392166, + 0.008786243386566639, + -0.04979538545012474, + -0.04888807609677315, + 0.05246394872665405, + -0.021975615993142128, + 0.08293893933296204, + 0.005006891209632158, + 0.023963695392012596, + 0.017919400706887245, + -0.07039669156074524, + -0.04712682217359543, + 0.08128442615270615, + -0.009760268963873386, + 0.014063326641917229, + 0.0404554158449173, + 0.0069582778960466385, + 0.02967442013323307, + -0.047607164829969406, + -0.04088238626718521, + 0.0437377467751503, + 0.0069582778960466385, + -0.016678519546985626, + 0.05737410485744476, + 0.013102644123136997, + 0.07023657858371735, + 0.030635103583335876, + -0.012202003970742226, + -0.02818002551794052, + 0.038400620222091675, + 0.043310776352882385, + -0.026445459574460983, + -0.054011713713407516, + -0.06062975153326988, + -0.0282867681235075, + 0.03888096287846565, + -0.00694493530318141, + 0.06276459991931915, + 0.04464505985379219, + 0.06527305394411087, + -0.04968864470720291, + 0.020454535260796547, + -0.007478647865355015, + 0.07301188260316849, + -0.008939686231315136, + -0.11026502400636673, + -0.013556299731135368, + 0.07028994709253311, + 0.0691157802939415, + 0.007178434636443853, + 0.025604862719774246, + -0.03973490372300148, + -0.06212414801120758, + 0.0407489575445652, + 0.03202275559306145, + -0.06372528523206711, + 0.007765518501400948, + 0.06025615334510803, + -0.035758744925260544, + 0.026979172602295876, + 0.028767108917236328, + 0.03599891439080238, + 0.004813420586287975, + -0.02577831782400608, + -0.06084323674440384, + -0.11773700267076492, + 0.0334370955824852, + 0.011167936027050018, + -0.03079521656036377, + -0.013362829573452473, + 0.016892004758119583, + -0.01936042495071888, + -0.05721399188041687, + -0.006147702224552631, + -0.01647837646305561, + -0.04779396206140518, + 0.050462525337934494, + -0.02677902951836586, + -0.05774770304560661, + 2.4340213713003322e-05, + 0.0437377467751503, + -0.021561989560723305, + 0.0018746654968708754, + -0.02388363890349865, + 0.042056553065776825, + 0.00402619456872344, + 0.023550068959593773, + 0.025564834475517273, + -0.0535847470164299, + 0.028366824612021446, + -0.08192488551139832, + -0.008152459748089314, + 0.0018446441972628236, + 0.0017178874695673585, + -0.06500619649887085, + -0.004359764978289604, + -0.057267364114522934, + 0.04312397912144661, + -0.029727792367339134, + -0.04018855839967728, + -0.04227003827691078, + -0.024830978363752365, + 0.09019742906093597, + 0.03826719522476196, + -0.04248352348804474, + 0.02412381023168564, + 0.038560736924409866, + -0.042963866144418716, + 0.02879379503428936, + -0.018546512350440025, + -0.022055672481656075, + -0.0005053591448813677, + -0.0178393442183733, + 0.00735189113765955, + -0.06906241178512573, + -0.029220765456557274, + 0.10615544021129608, + -0.07365234196186066, + -0.00641455827280879, + 0.07909620553255081, + 0.019680652767419815, + -0.04248352348804474, + 0.02679237350821495, + 0.06084323674440384, + -0.0009581809281371534, + -0.011775034479796886, + 0.05353137478232384, + -0.002329989103600383, + -0.012749060057103634, + 0.020187679678201675, + -0.017505774274468422, + -0.010067153722047806, + 0.008339259773492813, + 0.050489213317632675, + 0.04384449124336243, + -0.059775810688734055, + 0.024830978363752365, + 0.08614121377468109, + -0.03461126238107681, + 0.029487621039152145, + 0.07365234196186066, + -0.046059396117925644, + 0.007578718941658735, + -0.007071692030876875, + 0.004146279767155647, + -0.040668901056051254, + -0.008879643864929676, + 0.024083781987428665, + -0.0011258000740781426, + 0.02512452006340027, + -0.007792204152792692, + -0.0260451752692461, + -0.04376443475484848, + 0.009480070322751999, + -0.07375907897949219, + 0.042937178164720535, + -0.002321649808436632, + 0.03760005161166191, + 0.08405973762273788, + 0.06778150051832199, + 0.06772813200950623, + 0.03317023813724518, + -0.07984340190887451, + 0.03511828929185867, + 0.007138405926525593, + 0.023937011137604713, + 0.03394412249326706, + -0.08891651779413223, + 0.046326253563165665, + -0.12595617771148682, + -0.029861219227313995, + 0.04421808943152428, + -0.05636005103588104, + 0.002880380256101489, + -0.03674611449241638, + -0.06356517225503922, + 0.04122930020093918, + -0.01150150690227747, + -0.03079521656036377, + 0.04010850191116333, + 0.0008376786136068404, + 0.04677990823984146, + 0.0026835736352950335, + -0.023470012471079826, + -0.034504517912864685, + 0.041949812322854996, + -0.038160450756549835, + -0.1000177413225174, + 0.02049456350505352, + -0.06281797587871552, + -0.005850824527442455, + 0.03458457812666893, + -0.0676213875412941, + -0.06575339287519455, + -0.05897524207830429, + -0.07306525856256485, + -0.03623908758163452, + -0.005553946830332279, + -0.012655660510063171, + -0.05155663564801216, + 0.07482650876045227, + 0.0040862369351089, + -0.003340707393363118, + -0.016651833429932594, + 0.11069199442863464, + 0.04325740784406662, + -0.002460081595927477, + 0.01888008415699005, + -0.015771208330988884, + 0.0030321546364575624, + 0.006581343710422516, + 0.012929188087582588, + -0.010033796541392803, + 0.013449558056890965, + -0.026272002607584, + -0.039681531488895416, + 0.094627246260643, + -0.012555588968098164, + -0.02248264290392399, + 0.0017278945306316018, + 0.007185105700045824, + 0.030955331400036812, + 0.032609838992357254, + -0.0064612580463290215, + -0.02565823309123516, + -0.08080408722162247, + 0.008025703020393848, + 0.0004253022198099643, + -0.0889698937535286, + 0.06233763322234154, + -0.015290865674614906, + 0.001333447638899088, + 0.020014222711324692, + -0.034637946635484695, + 0.05166338011622429, + -0.05195692181587219, + 0.006474601104855537, + -0.016318263486027718, + 0.040402043610811234, + 0.02012096531689167, + 0.07584056258201599, + -0.03559863194823265, + 0.02780642732977867, + 0.022722814232110977, + 0.02641877345740795, + -0.0037860237061977386, + 0.0655399039387703, + -0.003856073599308729, + 0.04315066337585449, + 0.014130041003227234, + -0.03583880141377449, + 0.045819226652383804, + -0.07023657858371735, + 0.016638491302728653, + -0.016384975984692574 + ] + }, + { + "id": "bad2cdc5-1020-472b-8278-56ff8666a8c7", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lanejason", + "reviewDate": "2021-03-11T05:14:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1688e3d6-8b2a-4b2d-8ba2-d0fcb2adbd71", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vhogan", + "reviewDate": "2021-04-25T08:11:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c18a04d2-f27e-4bf2-843c-98cfdb6868b5", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carlwhite", + "reviewDate": "2022-03-02T16:18:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4570ca02-54e8-4401-bb10-9f029692d001", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amanda94", + "reviewDate": "2021-04-04T21:20:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d6c3de3d-0cd9-4e13-882d-0194c4afa31b", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "llittle", + "reviewDate": "2021-03-09T02:06:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e5a305d6-7fca-4321-a6bc-04af03ff2228", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "katelyn99", + "reviewDate": "2021-09-21T01:09:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3a10f40f-fb52-4227-a23e-99a7e2ff95ac", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownamanda", + "reviewDate": "2021-08-10T11:26:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d89c2a91-ce9a-4211-a4b8-d0263c161b3d", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlottemoore", + "reviewDate": "2021-06-16T21:11:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "96ee82d1-5917-4f6e-9298-b70ba9d58e17", + "productId": "66a36651-8705-4e26-99ba-633eadf1fbfd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "luke94", + "reviewDate": "2022-08-22T12:16:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Steel)", + "description": "This Premium Computer Ultra (Steel) is the successor to the Deluxe Computer Ultra. The new Ultra features:\n\n- High quality sound reproduction in all channels", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-07-29T14:17:02", + "price": 446.42, + "stock": 43, + "priceHistory": [ + { + "priceDate": "2021-05-03T01:11:36", + "newPrice": 477.58 + }, + { + "priceDate": "2021-11-08T01:11:36", + "newPrice": 466.71 + }, + { + "priceDate": "2022-05-16T01:11:36", + "newPrice": 411.06 + }, + { + "priceDate": "2022-11-21T01:11:36", + "newPrice": 449.08 + }, + { + "priceDate": "2023-06-05T01:11:36", + "newPrice": 446.42 + } + ], + "descriptionVector": [ + 0.02404572069644928, + 0.004137049894779921, + -0.04851502925157547, + -0.015009161084890366, + -0.022972628474235535, + -0.009015380404889584, + -0.12606000900268555, + 0.08562140166759491, + 0.02283143252134323, + 0.09477091580629349, + 0.09087390452623367, + -0.03199506923556328, + 0.01890617609024048, + -0.005767866503447294, + -0.009933155961334705, + -0.04933396726846695, + -0.040269169956445694, + -0.03832066059112549, + -0.01030732598155737, + -0.055885471403598785, + 0.046227648854255676, + 0.009128336794674397, + -0.03928079456090927, + -0.0252741277217865, + -0.05196021869778633, + -0.016717635095119476, + -0.006046729162335396, + 0.007183359004557133, + 0.035214342176914215, + -0.018002521246671677, + 0.07833567261695862, + 0.03846185654401779, + -0.02780153974890709, + 0.015757501125335693, + 0.04128578305244446, + -0.012107578106224537, + -0.024201035499572754, + -0.03620271757245064, + 0.11035898327827454, + 0.021306512877345085, + -0.0042429473251104355, + 0.0061173271387815475, + 0.021800700575113297, + 0.034790754318237305, + 0.056732650846242905, + -0.038631293922662735, + -0.011013306677341461, + 0.07426922023296356, + -0.020784087479114532, + 0.022605517879128456, + -0.02024754136800766, + 0.015263314358890057, + 0.022083092480897903, + 0.042867179960012436, + -0.025175290182232857, + -0.07528583705425262, + 0.01056147925555706, + 0.17056506872177124, + 0.06026255711913109, + -0.017395377159118652, + 0.06952503323554993, + -0.026064826175570488, + -0.06161804124712944, + 0.023438576608896255, + -0.03154323995113373, + -0.04012797400355339, + -0.05947185680270195, + 0.005414876155555248, + 0.07071107625961304, + 0.03716285154223442, + -0.01284179836511612, + -0.017635410651564598, + 0.03953494876623154, + 0.08974432945251465, + 0.0717276930809021, + 0.025570640340447426, + 0.04100338742136955, + 0.02147594839334488, + 0.014394956640899181, + 0.014500854536890984, + 0.03752996027469635, + 0.08658153563737869, + -0.03171267732977867, + 0.004098220728337765, + 0.07890046387910843, + 0.04182232543826103, + -0.04360140115022659, + -0.10296030342578888, + -0.00823174137622118, + 0.05430407449603081, + -0.03538377955555916, + -0.01851082779467106, + 0.12278424948453903, + -0.05032234266400337, + -0.008309398777782917, + 0.031119652092456818, + -0.0947144404053688, + 0.011133323423564434, + -0.04673595726490021, + 0.01729653961956501, + 0.042048241943120956, + -0.08307986706495285, + -0.008853004314005375, + -0.05006818845868111, + 0.06167452037334442, + 0.04122930392622948, + 0.028013335540890694, + 0.0282957274466753, + -0.029707688838243484, + -0.026403697207570076, + -0.02103823982179165, + -0.052073173224925995, + 0.004761843476444483, + -0.01288415677845478, + 0.06489379703998566, + -0.016308166086673737, + -0.060093119740486145, + -0.048769183456897736, + -0.020558172836899757, + -0.03205154836177826, + 0.023452695459127426, + -0.015037399716675282, + 0.0011481019901111722, + 0.002827454824000597, + -0.023396218195557594, + 0.04371435567736626, + -0.01015201024711132, + 0.006950384937226772, + 0.050830647349357605, + -0.0008427650900557637, + -0.10476761311292648, + 0.051677826792001724, + -0.036485109478235245, + 0.005954951513558626, + -0.03001832216978073, + -0.03459307923913002, + -0.011514553800225258, + 0.02151830680668354, + 0.0414552167057991, + 0.046142932027578354, + 0.007829331792891026, + -0.006692701950669289, + 0.023297380656003952, + -0.0068303681910037994, + -0.09330248087644577, + 0.027985095977783203, + -0.07059811800718307, + 0.06206986680626869, + -0.0138866500928998, + 0.0074057430028915405, + 0.002995125250890851, + -0.04769609123468399, + -0.042754221707582474, + -0.00802700687199831, + 0.06715293228626251, + 0.04806319996714592, + -0.03552497550845146, + 0.022083092480897903, + -0.01412668451666832, + 0.10222607851028442, + 0.00621616467833519, + 0.0076740155927836895, + -0.06461139768362045, + -0.006191455293446779, + 0.059245944023132324, + 0.000675977033097297, + 0.04552166908979416, + 0.022252527996897697, + -0.007377503905445337, + 0.013180669397115707, + 0.019908670336008072, + -0.02999008260667324, + 0.004412382375448942, + -0.03930903226137161, + 0.09618288278579712, + -0.02908642590045929, + 0.05455822870135307, + 0.03476251661777496, + 0.020120464265346527, + -0.05913298577070236, + -0.03470603749155998, + 0.05534892901778221, + -0.04679243639111519, + -0.009869617410004139, + 0.13825936615467072, + 0.03702165558934212, + 0.07376091927289963, + 0.07195360213518143, + 0.006230284459888935, + 0.007906989194452763, + 0.035186104476451874, + 0.018327271565794945, + 0.0056972685270011425, + -0.030696062371134758, + -0.08500013500452042, + 0.03967614471912384, + 0.05475590378046036, + 0.06286057084798813, + -0.006113797426223755, + 0.012058159336447716, + 0.02864871732890606, + 0.02654489316046238, + 0.050802409648895264, + -0.00717629911378026, + -0.006336181424558163, + -0.01433141902089119, + 0.0011622215388342738, + 0.0908174216747284, + -0.017974281683564186, + 0.021024120971560478, + -0.06703997403383255, + -0.002123238518834114, + -0.037671156227588654, + -0.004574758466333151, + 0.07681075483560562, + 0.0017243591137230396, + 0.043319009244441986, + 0.03930903226137161, + -0.05410639941692352, + -0.1140865609049797, + 0.028027454391121864, + -0.031853873282670975, + 0.03671102225780487, + -0.029764167964458466, + -0.0405515618622303, + -0.031034933403134346, + 0.09234233945608139, + -0.03673926368355751, + 0.011796945706009865, + 0.021744221448898315, + -0.05393696576356888, + 0.0257259551435709, + 0.00019249018805567175, + 0.045775823295116425, + -0.018807340413331985, + -0.011373357847332954, + -0.005114833824336529, + -0.04608645290136337, + -0.00925541389733553, + 0.09155164659023285, + -0.0328422449529171, + 0.02410219796001911, + -0.0370781347155571, + -0.027603864669799805, + -0.03575088828802109, + -0.029622972011566162, + 0.10024933516979218, + -0.011669869534671307, + -0.05724095553159714, + 0.018779100850224495, + 0.033576466143131256, + -0.011210981756448746, + -0.023085584864020348, + 0.044476818293333054, + -0.00560196116566658, + 0.05148015171289444, + 0.04337548464536667, + -0.031882110983133316, + -0.004189998377114534, + -0.09239882230758667, + -0.06647519022226334, + -0.0320797860622406, + 0.012757080607116222, + 0.02791449800133705, + -0.08985728770494461, + 0.06280408799648285, + 0.049108054488897324, + -0.0011507493909448385, + 0.0026791987475007772, + 0.015051519498229027, + 0.02902994677424431, + 0.033576466143131256, + -0.024285754188895226, + 0.022478442639112473, + 0.058003418147563934, + -0.014190222136676311, + -0.019273286685347557, + 0.05981072783470154, + -0.032249223440885544, + 0.010455581359565258, + 0.10832575708627701, + 0.07048516720533371, + 0.0048500909470021725, + -0.07127586007118225, + 0.037727635353803635, + -0.01332892570644617, + 0.006082028150558472, + 0.02274671569466591, + 0.05701504275202751, + -0.07861806452274323, + 0.018256673589348793, + -0.0017217117128893733, + -0.019682755693793297, + -0.009036559611558914, + 0.012051098980009556, + 0.015009161084890366, + 0.0538804866373539, + -0.04224591702222824, + 0.019965149462223053, + -0.05396520346403122, + 0.0379817895591259, + 0.020995881408452988, + 0.0011189802316948771, + -0.020501693710684776, + -0.03549673408269882, + 0.13023941218852997, + -0.003298697294667363, + 0.037332285195589066, + -0.04103162884712219, + 0.0022767893970012665, + -0.019160330295562744, + -0.004137049894779921, + -0.05599842965602875, + -0.0005431643221527338, + 0.04950340464711189, + -0.04396850988268852, + 0.026770807802677155, + 0.014924443326890469, + -0.0069998037070035934, + 0.007779913023114204, + -0.07534231245517731, + -0.018397871404886246, + -0.13125602900981903, + 0.04187880456447601, + 0.020374618470668793, + -0.044928643852472305, + -0.014882083982229233, + 0.0862426683306694, + 0.018750861287117004, + -0.07986059784889221, + 0.0440249890089035, + -0.010815632529556751, + -0.0019414483103901148, + 0.007229247596114874, + 0.04727250337600708, + -0.0274626687169075, + -0.042358871549367905, + 0.021772461012005806, + 0.008697688579559326, + -0.014613810926675797, + 0.08522605150938034, + 0.04761137440800667, + -0.06342535465955734, + 0.005647849757224321, + -0.04987051337957382, + -0.0029157025273889303, + 0.02233724482357502, + -0.07618949562311172, + -0.027660343796014786, + 0.030554866418242455, + 0.0017164167948067188, + -0.02448342926800251, + 0.06489379703998566, + 0.023085584864020348, + 0.09437556564807892, + -0.01519271545112133, + 0.0003682133392430842, + -0.04004325345158577, + 0.006844487972557545, + 0.021207675337791443, + 0.009135397151112556, + -0.01327244658023119, + 0.05574427545070648, + 0.05396520346403122, + -0.022054852917790413, + 0.042838938534259796, + 0.029679451137781143, + 0.04803496226668358, + -0.015785740688443184, + 0.028973469510674477, + 0.0479784831404686, + -0.00909303780645132, + -0.031430285423994064, + 0.0835317000746727, + -0.025161171332001686, + 0.05656321346759796, + 0.027956856414675713, + 0.019174449145793915, + 0.0076740155927836895, + 0.024384591728448868, + -0.01178988628089428, + 0.0608273409307003, + 0.02740619145333767, + 0.04185056686401367, + 0.10730914771556854, + -0.033548228442668915, + -0.03620271757245064, + -0.04190704599022865, + -0.027745062485337257, + 0.022125450894236565, + -0.02828160673379898, + 0.015418630093336105, + -0.06286057084798813, + 0.04269774258136749, + 0.04461801424622536, + 0.00044851869461126626, + 0.05517949163913727, + 0.054275836795568466, + -0.054671186953783035, + 0.0016166969435289502, + 0.030159518122673035, + 0.055038295686244965, + 0.0006887729396112263, + -0.04927748814225197, + -0.009537805803120136, + -0.02996184304356575, + 0.054247595369815826, + 0.048769183456897736, + 3.3782305308704963e-07, + -0.014514973387122154, + 0.015715142711997032, + -0.07127586007118225, + -0.030865497887134552, + 0.02356565371155739, + 0.056789129972457886, + 0.004006443545222282, + 0.056280821561813354, + 0.03419772908091545, + 0.009001260623335838, + -0.016985908150672913, + 0.03428244963288307, + 0.024991735816001892, + -0.002883933251723647, + -0.011034486815333366, + 0.035722650587558746, + -0.003446953371167183, + -0.01692942902445793, + -0.05342865735292435, + 0.0033216415904462337, + -0.020953522995114326, + 0.03320935741066933, + -0.0892925038933754, + 0.011330998502671719, + -0.021659504622220993, + -0.029425296932458878, + -0.005686678923666477, + 0.0068127186968922615, + -0.016322284936904907, + -0.034734275192022324, + 0.04391203075647354, + -0.04809144139289856, + -0.03552497550845146, + 0.044956885278224945, + -0.025980109348893166, + -0.020529933273792267, + -0.04594525694847107, + -0.02914290502667427, + 0.027194395661354065, + -0.011330998502671719, + 0.00601143017411232, + -0.028521640226244926, + 0.027970975264906883, + 0.0015002101426944137, + 0.025485921651124954, + 0.033943578600883484, + 0.01094976905733347, + 0.020205182954669, + 0.06331239640712738, + 0.016181088984012604, + 0.005287799518555403, + -0.04371435567736626, + 0.06212634593248367, + 0.09087390452623367, + -0.05896355211734772, + -0.048260875046253204, + 0.014825605787336826, + -0.05862468108534813, + -0.03247513622045517, + 0.011514553800225258, + 0.07438217848539352, + 0.0047653731890022755, + -0.08025594800710678, + 0.025048213079571724, + -0.001174576231278479, + -0.028874631971120834, + -0.07630244642496109, + 0.03385885804891586, + 0.0036958116106688976, + -0.035242583602666855, + 0.009968454949557781, + -0.0319385901093483, + -0.002707438077777624, + 0.08680745214223862, + -0.015291552990674973, + 0.009982574731111526, + 0.011288640089333057, + -0.01537627074867487, + 0.10126594454050064, + -0.04425090178847313, + 0.11329586803913116, + -0.008535312488675117, + 0.05114128068089485, + 0.011253340169787407, + -0.008118784055113792, + -0.036428630352020264, + 0.004878330044448376, + 0.019245047122240067, + 0.02408807910978794, + 0.006435018964111805, + 0.058455243706703186, + -0.022902030497789383, + -0.03659806773066521, + -0.024822300300002098, + 0.04975755512714386, + -0.03425420820713043, + 0.047385457903146744, + 0.005605490878224373, + 0.009573105722665787, + 0.015743380412459373, + 0.0732526108622551, + 0.025909511372447014, + -0.019979268312454224 + ] + }, + { + "id": "5e9797f1-2383-45c3-b220-68e3c219ef8d", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "averychelsea", + "reviewDate": "2021-11-11T16:47:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f6d2171d-1d56-4872-a0e9-372affe8cd73", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "andersensean", + "reviewDate": "2022-11-21T18:05:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fad02204-724a-41da-a9a9-929eeacffb9b", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandon82", + "reviewDate": "2022-01-05T08:59:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "65e05967-5f2b-4aae-95f2-424231f1ee3b", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "xbooth", + "reviewDate": "2022-02-02T15:51:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4e26f1c9-be3d-43d4-ad5e-f6d0b2beb948", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeffrey66", + "reviewDate": "2021-12-20T12:06:18", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0ea58fb3-ec43-4761-be4e-b71e7de9759b", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "john28", + "reviewDate": "2021-12-16T10:53:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "81900dae-ef48-4f07-9acf-0bd0abb58ff8", + "productId": "fd0c3e0d-c5f4-4671-b793-28dcf11f8709", + "category": "Electronics", + "docType": "customerRating", + "userName": "laurenjoseph", + "reviewDate": "2021-05-03T01:11:36", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3654fcc0-6f1b-4dd0-8fdd-bedbccbbe297", + "productId": "3654fcc0-6f1b-4dd0-8fdd-bedbccbbe297", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Mini (Silver)", + "description": "This Luxe Computer Mini (Silver) is a modern, modern compact computer without a microprocessor, power supply that is powered by a 12v single-lane 5V battery. It is made of a flexible fiberglass body with six-foot-tall legs and the integrated battery pack offers enough power to last up", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-10-19T22:42:51", + "price": 336.77, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-08-16T00:36:20", + "newPrice": 350.29 + }, + { + "priceDate": "2021-09-29T00:36:20", + "newPrice": 352.62 + }, + { + "priceDate": "2021-11-12T00:36:20", + "newPrice": 324.52 + }, + { + "priceDate": "2021-12-26T00:36:20", + "newPrice": 321.41 + }, + { + "priceDate": "2023-07-28T00:36:20", + "newPrice": 336.77 + } + ], + "descriptionVector": [ + -0.04397749900817871, + 0.09055721759796143, + -0.024864202365279198, + -0.03549426421523094, + 0.005526462569832802, + 0.011599390767514706, + -0.00032812354038469493, + 0.045252587646245956, + 0.03890317305922508, + 0.04850536212325096, + 0.08160558342933655, + -0.08540482819080353, + 0.03479166701436043, + -0.03913737088441849, + 0.03359464555978775, + 0.0046221911907196045, + -0.06713724881410599, + -0.006203039549291134, + 0.01800735481083393, + 0.008977655321359634, + 0.031512871384620667, + -0.06989560276269913, + -0.0529811754822731, + 0.03388088941574097, + 0.002594087040051818, + -0.01821553334593773, + -0.028962695971131325, + 0.023029636591672897, + 0.0003576017916202545, + -0.0027420881669968367, + 0.04267638921737671, + 0.04569496586918831, + -0.060579657554626465, + -0.002115929266437888, + 0.006830824539065361, + -0.08504051715135574, + 0.03177309408783913, + -0.012581728398799896, + 0.06536773592233658, + 0.04574700817465782, + -0.022795436903834343, + 0.022964581847190857, + -0.02786976471543312, + 0.011241585947573185, + 0.03643106669187546, + -0.004095241893082857, + 0.02188466116786003, + -0.003447940107434988, + 0.026113266125321388, + -0.03773217275738716, + 0.008971150033175945, + 0.014143059961497784, + 0.001022184151224792, + 0.03778421878814697, + -0.03913737088441849, + -0.05553135275840759, + 0.009296427480876446, + 0.16997693479061127, + 0.0006151808192953467, + 0.009849398396909237, + -0.013661649078130722, + 0.029899494722485542, + -0.018527798354625702, + -0.02295157127082348, + -0.03213740512728691, + 0.05542726442217827, + -0.01103991363197565, + 0.04975442588329315, + 0.0519142672419548, + 0.04069870337843895, + -0.07791043817996979, + -0.01834564283490181, + 0.019165342673659325, + 0.04468009993433952, + 0.06817813217639923, + -0.004680741112679243, + 0.026399511843919754, + -0.0040204282850027084, + 0.024343758821487427, + -0.06448298692703247, + 0.08696615695953369, + -0.0014263412449508905, + -0.05246073380112648, + -0.04181765764951706, + -0.024616990238428116, + -0.014962758868932724, + 0.06833426654338837, + -0.11616305261850357, + -0.001847575418651104, + 0.06443093717098236, + 0.0015117265284061432, + 0.08524869382381439, + 0.07161306589841843, + -0.017317766323685646, + -0.017525944858789444, + 0.024421824142336845, + -0.02786976471543312, + 0.05495886504650116, + 0.035858575254678726, + -0.08306282758712769, + 0.036639243364334106, + -0.02287350408732891, + -0.005809453781694174, + -0.008053867146372795, + 0.050977468490600586, + 0.062036897987127304, + 0.042702414095401764, + 0.013193249702453613, + 0.0058745089918375015, + -0.11762029677629471, + -0.01462446991354227, + 0.009582671336829662, + -0.06599227339029312, + -0.024760112166404724, + 0.028364187106490135, + 0.02076570689678192, + -0.01945158652961254, + -0.021130017936229706, + -0.040204282850027084, + 0.013232283294200897, + 0.12428197264671326, + 0.011091957800090313, + 0.04064666107296944, + 0.03239762410521507, + -0.006954430136829615, + -0.004290408454835415, + -0.024304725229740143, + -0.10544191300868988, + 0.017786165699362755, + 0.004544124938547611, + -0.06796995550394058, + 0.04553883150219917, + -0.0333864688873291, + 0.014455325901508331, + -0.04762060567736626, + -0.01795531064271927, + -0.0023712720721960068, + 0.046059273183345795, + -0.07660932838916779, + 0.0037602062802761793, + -0.029899494722485542, + 0.015756435692310333, + -0.054282285273075104, + -0.11637122929096222, + -0.09060925990343094, + -0.02405751310288906, + -0.08774682134389877, + 0.0028055172879248857, + -0.08998472988605499, + 0.11251994967460632, + 0.0519142672419548, + 0.009875420480966568, + -0.04173959046602249, + -0.054334331303834915, + 0.0010449535911902785, + 0.05870606005191803, + -0.06999968737363815, + 0.05009271577000618, + 0.002107797423377633, + 0.03669128566980362, + 0.0182025209069252, + -0.0036463593132793903, + -0.025423679500818253, + 0.0022623040713369846, + 0.002611977281048894, + -0.007396807428449392, + 0.053605709224939346, + 0.05527113005518913, + -0.10065382719039917, + 0.03169502690434456, + -0.01347949355840683, + -0.010109620168805122, + -0.023550081998109818, + -0.00975832063704729, + 0.0805126503109932, + 0.05212244391441345, + 0.05475068464875221, + 0.05615588277578354, + -0.006921902298927307, + -0.08920406550168991, + 0.015314058400690556, + 0.06443093717098236, + -0.039865992963314056, + 0.015496213920414448, + 0.026854898780584335, + 0.030159717425704002, + -0.02650360018014908, + -0.026802854612469673, + 0.03997008129954338, + -0.04814105108380318, + -0.024877212941646576, + -0.052694931626319885, + -0.0008896336075849831, + -0.05050906911492348, + -0.017395833507180214, + 0.0024037996772676706, + 0.017656056210398674, + 0.0516800694167614, + 0.0071561019867658615, + -0.008164461702108383, + -0.035129956901073456, + 0.06094396859407425, + 0.003376379143446684, + 0.029405074194073677, + -0.011911656707525253, + 0.0006192467990331352, + -0.008984160609543324, + 0.014390270225703716, + -0.013453471474349499, + -0.03676935285329819, + -0.021871650591492653, + -0.00010480030323378742, + -0.030732205137610435, + 0.06136032193899155, + 0.07312235236167908, + -0.003913086839020252, + 0.024278702214360237, + -0.008138439618051052, + -0.029144851490855217, + -0.07483981549739838, + 0.04840127006173134, + -0.033568624407052994, + 0.008314089849591255, + -0.022717371582984924, + -0.0758286565542221, + -0.06255733966827393, + 0.018306609243154526, + 0.0969066321849823, + 0.06666884571313858, + -0.011983217671513557, + -0.01912630908191204, + 0.014416293241083622, + 0.0740591511130333, + 0.034817688167095184, + -0.028364187106490135, + 0.0012832192005589604, + 0.009244382381439209, + -0.052694931626319885, + -0.03429724648594856, + 0.033308401703834534, + -0.025722933933138847, + 0.05175813287496567, + -0.06786587089300156, + -0.045929163694381714, + -0.04241617023944855, + 0.003932603169232607, + 0.05214846879243851, + -0.05214846879243851, + -0.026477577164769173, + 0.02431773580610752, + -0.0033340929076075554, + 0.023641159757971764, + -0.017981333658099174, + 0.10346422344446182, + -0.019893962889909744, + -0.007331751752644777, + 0.024603979662060738, + -0.054126154631376266, + 0.0028900892939418554, + 0.048479337245225906, + -0.044341810047626495, + -0.10174676030874252, + -0.035676419734954834, + 0.03010767325758934, + -0.06875062733888626, + 0.022235959768295288, + 0.08509255945682526, + -0.02852031961083412, + -0.009374493733048439, + 0.015105880796909332, + 0.0074033127166330814, + -0.07931563258171082, + 0.01906125433743, + 0.04905182495713234, + -0.06541978567838669, + -0.04436783120036125, + -0.0887356624007225, + 0.04816707223653793, + -0.07817065715789795, + -0.0243307463824749, + 0.020011063665151596, + -0.04041245952248573, + 0.009511110372841358, + -0.09883227199316025, + 0.06016330048441887, + -0.02794783189892769, + 0.01932147517800331, + -0.019178353250026703, + -0.0027160660829395056, + 0.006216050591319799, + 0.004098495002835989, + 0.05922650173306465, + 0.019880952313542366, + 0.05818561464548111, + -0.0011400971561670303, + 0.004433530382812023, + 0.09237877279520035, + 0.00279250624589622, + -0.020687639713287354, + 0.04468009993433952, + 0.0069284080527722836, + -0.0009164689690805972, + 0.017525944858789444, + 0.03630095347762108, + -0.034947801381349564, + 0.0774940773844719, + -0.04441987723112106, + 0.03169502690434456, + -0.055062953382730484, + 0.06385844945907593, + 0.07317439466714859, + -0.018657909706234932, + -0.04777674004435539, + -0.023185770958662033, + 0.06661680340766907, + -0.028025897219777107, + 0.042312078177928925, + -0.04991056025028229, + 0.017252711579203606, + 0.0009831507923081517, + -0.02582702226936817, + -0.023511048406362534, + -0.11605896055698395, + 0.031330715864896774, + 0.027453409507870674, + -0.033230334520339966, + -0.06188076734542847, + 0.047308340668678284, + -0.034817688167095184, + -0.04023030400276184, + 0.0077676232904195786, + -0.026594677940011024, + 0.05056111514568329, + -0.026464566588401794, + 0.023901380598545074, + -0.04876558110117912, + -0.01085125282406807, + 0.05948672443628311, + 0.0038903173990547657, + 0.06515955924987793, + 0.07395505905151367, + -0.05547930672764778, + -0.011085452511906624, + -0.01846274361014366, + 0.010935825295746326, + -0.0216374509036541, + -0.05048304796218872, + 0.03440133482217789, + -0.022730382159352303, + 0.031981270760297775, + 0.0014157696859911084, + -0.06406662613153458, + 0.08353123068809509, + -0.06063169986009598, + 0.037315819412469864, + 0.013427449390292168, + 0.01328432746231556, + -0.04387341067194939, + -0.01578245684504509, + 0.020791729912161827, + -0.018892109394073486, + -0.013921870850026608, + 0.10002929717302322, + 0.08072083443403244, + -0.050457023084163666, + 0.016524089500308037, + -0.016446024179458618, + -0.08035652339458466, + -0.04387341067194939, + 0.0710926204919815, + -0.00445629982277751, + -0.02556680142879486, + -0.10773186385631561, + 0.014767592772841454, + 0.018527798354625702, + 0.006902385503053665, + 0.097791388630867, + 0.008144944906234741, + -0.015964612364768982, + 0.0417916364967823, + 0.009829881601035595, + 0.037055596709251404, + 0.0005139382556080818, + -0.045460764318704605, + 0.02839020825922489, + -0.1025274246931076, + -0.005129624158143997, + -0.04306672140955925, + -0.0219627283513546, + 0.04952022433280945, + 0.022522205486893654, + -0.05495886504650116, + 0.020622584968805313, + -0.026178322732448578, + 0.041115060448646545, + 0.008990666829049587, + 0.019490620121359825, + -0.00940702110528946, + -0.033750779926776886, + -0.04127119109034538, + 0.04376932233572006, + -0.0013864947250112891, + 0.008099406026303768, + -0.07957585155963898, + -0.030680160969495773, + -0.06484729796648026, + -0.0029031005688011646, + 0.04707413911819458, + -0.04842729493975639, + -0.10273560136556625, + 0.017057545483112335, + -0.060059212148189545, + 0.01423413772135973, + 0.011117979884147644, + 0.023380937054753304, + -0.009706276468932629, + 0.031044472008943558, + -0.03229353576898575, + -0.0037797230761498213, + -0.023693203926086426, + 0.03161695972084999, + -0.012217418290674686, + -0.054126154631376266, + -0.010434897616505623, + -0.011033408343791962, + -0.01847575418651104, + -0.004332694690674543, + -0.025722933933138847, + 0.04051654785871506, + -0.038773063570261, + -0.014273170381784439, + -0.027661588042974472, + -0.027583520859479904, + -0.041661523282527924, + 0.015509224496781826, + 0.004401002544909716, + 0.08202193677425385, + 0.06744951754808426, + -0.024890223518013954, + 0.10773186385631561, + -0.006694208364933729, + -0.02550174482166767, + -0.0007310608634725213, + 0.026724787428975105, + -0.10486942529678345, + -0.014377259649336338, + -0.04905182495713234, + 0.0546986423432827, + 0.024955280125141144, + -0.03177309408783913, + -0.04265036806464195, + -0.01114400289952755, + -0.023719225078821182, + -0.0013206261210143566, + 0.05521908402442932, + -0.0275574978441, + -0.005907036829739809, + 0.05563544109463692, + -0.018748987466096878, + -0.011267608031630516, + 0.06177667900919914, + 0.016446024179458618, + 0.03419315814971924, + -0.013401427306234837, + 0.024369779974222183, + -0.017851222306489944, + -0.006167259067296982, + -0.017577989026904106, + -0.016146767884492874, + 0.02256123721599579, + 0.03499984368681908, + -0.0246560238301754, + 0.00025148005806840956, + 0.022600270807743073, + -0.004231858532875776, + -0.03674333170056343, + 0.0014637481654062867, + -0.032970115542411804, + -0.02643854357302189, + -0.012113329023122787, + -0.038356706500053406, + 0.012100317515432835, + -0.023719225078821182, + 0.024825168773531914, + 0.07874314486980438, + 0.005988356191664934, + 0.06692907214164734, + -0.0141040263697505, + 0.06666884571313858, + 0.07827474176883698, + -0.03728979825973511, + 0.017590999603271484, + -0.04038643836975098, + -0.028910651803016663, + -0.028156008571386337, + -0.02176756039261818, + -0.05113360285758972, + 0.02924893982708454, + -0.014481347985565662, + 0.06396254152059555, + -0.023445991799235344, + -0.015509224496781826, + -0.01894415356218815, + 0.04915591701865196, + 0.021676484495401382, + 0.025007324293255806, + -0.005783431697636843, + 0.005802948027849197, + -0.041115060448646545, + 0.0165761336684227, + 0.07910745590925217, + -0.07270599901676178 + ] + }, + { + "id": "beb19377-e96a-427f-b33f-b6652638ede0", + "productId": "3654fcc0-6f1b-4dd0-8fdd-bedbccbbe297", + "category": "Electronics", + "docType": "customerRating", + "userName": "sheila47", + "reviewDate": "2021-08-16T00:36:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7cc0e8f7-4369-4f21-9f27-8136c8d4f1b2", + "productId": "3654fcc0-6f1b-4dd0-8fdd-bedbccbbe297", + "category": "Electronics", + "docType": "customerRating", + "userName": "jsantiago", + "reviewDate": "2021-12-28T07:23:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7682a094-0755-4abb-b387-8151732951b7", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand + (Gold)", + "description": "This Premium Stand + (Gold) is in the same form as above.\n\nCannot be used in a PvP Battle.net lobby except in a Single Character or Tournament setting with the ability to place Premium Stand Units at multiple points in the battlefield.\n\nCannot be used in a PvP Battle.net lobby except in a Single Character or Tournament setting with the ability", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-11-27T06:35:57", + "price": 220.74, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-04-21T21:07:38", + "newPrice": 212.28 + }, + { + "priceDate": "2021-10-31T21:07:38", + "newPrice": 210.37 + }, + { + "priceDate": "2022-05-12T21:07:38", + "newPrice": 203.96 + }, + { + "priceDate": "2022-11-21T21:07:38", + "newPrice": 205.62 + }, + { + "priceDate": "2025-08-23T21:07:38", + "newPrice": 220.74 + } + ], + "descriptionVector": [ + -0.007252249401062727, + -0.01614576205611229, + -0.06170082837343216, + -0.0033342333044856787, + 0.017666934058070183, + -0.03923019766807556, + -0.08966902643442154, + 0.05849836394190788, + -0.006785223260521889, + -0.006591740995645523, + 0.03199796378612518, + 0.06335543841123581, + -0.05518915131688118, + -0.10258563607931137, + 0.04798360541462898, + -0.008459845557808876, + -0.013583789579570293, + 0.026380307972431183, + -0.021349769085645676, + -0.021643327549099922, + 0.08945553004741669, + -0.019922003149986267, + -0.07883401960134506, + 0.0362946055829525, + -0.05099925771355629, + -0.029649490490555763, + -0.02487247996032238, + -0.011829106137156487, + -0.007232233881950378, + 0.04923790320754051, + 0.021549921482801437, + -0.014477811753749847, + 0.03971057012677193, + -0.02416526898741722, + 0.021896855905652046, + -0.018801139667630196, + 0.09639420360326767, + 0.0519866868853569, + -0.035654112696647644, + 0.007365670055150986, + 0.022617410868406296, + -0.03973725438117981, + -0.0012868238845840096, + 0.05828486755490303, + 0.016079043969511986, + -0.04160536080598831, + -0.024458827450871468, + 0.014170908369123936, + -0.07104135304689407, + -0.04083143174648285, + 0.026580462232232094, + 0.011001802049577236, + 0.024832449853420258, + 0.049104467034339905, + 0.07125484943389893, + -0.04259278625249863, + -0.01017449889332056, + 0.0874273031949997, + -0.051106005907058716, + 0.022056980058550835, + -0.04080474376678467, + 0.016212480142712593, + -0.020962804555892944, + 0.006515015382319689, + -0.037495531141757965, + 0.0011700673494488, + -0.018560955300927162, + -0.027354391291737556, + 0.005567619111388922, + 0.016012325882911682, + 0.008353096432983875, + 0.04736979678273201, + -0.024952542036771774, + 0.03573417291045189, + 0.04715630039572716, + 0.03365257382392883, + 0.08358434587717056, + -0.013837318867444992, + 0.04859741032123566, + 0.03012986108660698, + 0.010721586644649506, + 0.030930476263165474, + -0.08780092000961304, + 0.0032525036949664354, + 0.045101385563611984, + -0.05807137116789818, + -0.021830137819051743, + -0.08822792023420334, + 0.005120608489960432, + -0.02634027600288391, + 0.047102924436330795, + 0.04155198484659195, + -0.003264179453253746, + -0.050919197499752045, + -0.056203264743089676, + 0.034960243850946426, + 0.0015570318792015314, + 0.07312295585870743, + 0.018440863117575645, + 0.05540264770388603, + -0.0069053154438734055, + -0.04718298837542534, + -0.016225824132561684, + 0.035280492156744, + 0.05785787105560303, + 0.040404435247182846, + 0.02794150821864605, + -0.00378958391956985, + 0.015091617591679096, + -0.013743913732469082, + 0.01288325060158968, + 0.0023134476505219936, + 0.06319531053304672, + 0.06976036727428436, + -0.04718298837542534, + 0.09148375689983368, + -0.037495531141757965, + -0.035867609083652496, + -0.003432642435654998, + -0.04760998487472534, + -0.026780614629387856, + 0.019895315170288086, + 0.04224585369229317, + -0.12841886281967163, + 0.01998872123658657, + -0.0374421551823616, + -0.029622802510857582, + 0.07381682097911835, + 0.008700030855834484, + -0.06543704122304916, + -0.029302556067705154, + -0.013116763904690742, + 0.024258675053715706, + 0.02069593220949173, + -0.06554378569126129, + 0.06330206245183945, + -0.010121124796569347, + 0.006021301727741957, + -0.050759073346853256, + 0.012429567985236645, + -0.08128923922777176, + -0.005590970627963543, + -0.008072881028056145, + 0.02269747294485569, + -0.04342009127140045, + 0.028181694447994232, + 0.04387377202510834, + 0.02756788767874241, + -0.01535848993808031, + 0.0016587768914178014, + 0.035680800676345825, + -0.06116708740592003, + -0.02176341973245144, + -0.012663081288337708, + 0.020042095333337784, + 0.05105263367295265, + -0.07413706928491592, + -0.0025819875299930573, + -0.07082785665988922, + 0.07856714725494385, + 0.0163459163159132, + -0.007465747185051441, + -0.07467081397771835, + 0.025286132469773293, + 0.036935098469257355, + 0.02593996748328209, + 0.06789226084947586, + 0.07536467909812927, + -0.011275346390902996, + 0.011315377429127693, + 0.018200676888227463, + -0.01594560779631138, + 0.04208572953939438, + -0.023111123591661453, + 0.03266514465212822, + 0.018734421581029892, + -0.006498335860669613, + -0.0432065948843956, + 0.09020277112722397, + 0.011482172645628452, + -0.019508350640535355, + -0.005951248109340668, + -0.07819352298974991, + -0.03274520859122276, + 0.0036895067896693945, + 0.01334360521286726, + -0.0014185920590534806, + 0.07461743801832199, + 0.033839382231235504, + 0.02180345170199871, + 0.048036977648735046, + 0.009300492703914642, + 0.06602416187524796, + -0.050572264939546585, + 0.008513219654560089, + 0.01633257232606411, + -0.07781990617513657, + 0.013183481991291046, + 0.004413397517055273, + 0.021710045635700226, + -0.00021037027181591839, + 0.08385121822357178, + 0.08860153704881668, + -0.004303312860429287, + -0.008646655827760696, + 0.0420590415596962, + -0.045448318123817444, + 0.009554021060466766, + -0.0034192989114671946, + 0.028555314987897873, + 0.035867609083652496, + -0.0493980273604393, + -0.021176300942897797, + 0.011388766579329967, + 0.013837318867444992, + -0.009020277298986912, + -0.0326918326318264, + 0.009867596440017223, + -0.032985392957925797, + 0.00261201080866158, + 0.03447987511754036, + -0.018987949937582016, + -0.06004622206091881, + -0.018387487158179283, + -0.0482504777610302, + 0.06378243118524551, + -0.011035161092877388, + -0.016612788662314415, + -0.037655655294656754, + 0.03183784335851669, + -0.04787685349583626, + -0.06527691334486008, + -0.031704407185316086, + 0.08662668615579605, + 0.02612677961587906, + 0.006631771568208933, + 0.025019260123372078, + -0.021122926846146584, + 0.0030073150992393494, + -0.05652351304888725, + -0.05871186405420303, + 0.05441522225737572, + -0.10194513946771622, + 0.03522711619734764, + -0.01471799612045288, + 0.01024788897484541, + 0.06773214042186737, + 0.0016329237259924412, + 0.02523275651037693, + -0.11123229563236237, + 0.004239930305629969, + 0.01162227988243103, + -0.0870003029704094, + 0.08096899837255478, + 0.06447629630565643, + 0.0028171685989946127, + 0.07328307628631592, + -0.013316918164491653, + 0.016439322382211685, + 0.00016971398144960403, + -0.022550692781805992, + 0.03626791760325432, + -0.0711481049656868, + 0.014090847223997116, + -0.008786763995885849, + 0.02017553150653839, + -0.029542742297053337, + -0.023871708661317825, + -0.033866070210933685, + 0.08603956550359726, + -0.0003659066860564053, + -0.025112664327025414, + -0.055082403123378754, + 0.02142982929944992, + 0.07040086388587952, + -0.004363358952105045, + 0.013443682342767715, + -0.005000515840947628, + 0.07563155144453049, + -0.04905109107494354, + 0.0769125372171402, + -0.019855285063385963, + -0.0007851877599023283, + 0.006234799511730671, + -0.022977687418460846, + -0.05289405211806297, + -0.012416224926710129, + -0.02703414484858513, + -0.016946379095315933, + -0.06992048770189285, + 0.022403912618756294, + 0.04189892113208771, + 0.018614329397678375, + 0.05759099870920181, + 0.06821250915527344, + 0.009127025492489338, + -0.048570722341537476, + 0.10562797635793686, + 0.06372905522584915, + -0.04360690340399742, + 0.010114452801644802, + -0.01741340383887291, + -0.03552067652344704, + -0.03616116940975189, + -0.033278949558734894, + 0.051666438579559326, + -0.01781371235847473, + -0.019535038620233536, + -0.03069029189646244, + 0.017213251441717148, + 0.09239111840724945, + -0.02812832035124302, + -0.0736033245921135, + 0.04552838206291199, + 0.015451895073056221, + -0.02561972104012966, + 0.019748535007238388, + 0.02940930612385273, + -0.05318760871887207, + 0.018440863117575645, + -0.035654112696647644, + -0.07995488494634628, + -0.02399180270731449, + 0.0015687075210735202, + 0.07029411196708679, + -0.004943805746734142, + -0.06068671494722366, + 0.037655655294656754, + 0.02013549953699112, + -0.07744628190994263, + 0.02906237170100212, + -0.05951247736811638, + -0.006408266257494688, + -0.016439322382211685, + 0.004353350959718227, + -0.03813602402806282, + 0.01707981526851654, + -0.032051339745521545, + 0.033278949558734894, + -0.04043112322688103, + 0.015491925179958344, + 0.045501694083213806, + -0.03907007724046707, + -0.0312507227063179, + 0.006141394376754761, + -0.04787685349583626, + -0.0250592902302742, + -0.03578754886984825, + 0.06244807317852974, + 0.10279913246631622, + 0.0011450480669736862, + 0.014811401255428791, + -0.00024518874124623835, + 0.004186556208878756, + 0.08305060118436813, + 0.029302556067705154, + 0.008419814519584179, + -0.08224998414516449, + -0.028074944391846657, + -0.07595179975032806, + 0.03407956659793854, + -0.022777533158659935, + 0.002034899778664112, + 0.03669491410255432, + 0.0031224035192281008, + 0.07712604105472565, + 0.03525380417704582, + 0.019521694630384445, + -0.04750323295593262, + -0.006845269352197647, + -0.049851708114147186, + -0.023031063377857208, + 0.026807302609086037, + -0.0019164752447977662, + -0.08326409757137299, + 0.03274520859122276, + 0.009907626546919346, + 0.06298181414604187, + 0.02980961464345455, + -0.006998721044510603, + -0.03034335747361183, + 0.07525793462991714, + 0.041872233152389526, + -0.022817565128207207, + 0.11624948680400848, + -0.024632295593619347, + 0.037468843162059784, + -0.026366963982582092, + -0.01615910604596138, + -0.05361460521817207, + -0.03335901349782944, + 0.018627673387527466, + -0.051853250712156296, + 0.015878889709711075, + 0.012516302056610584, + -0.044754453003406525, + -0.01278984546661377, + -0.0274344515055418, + -0.05297411233186722, + 0.07990150898694992, + 0.053134236484766006, + 0.02812832035124302, + -0.021096238866448402, + 0.003696178551763296, + -0.005754429847002029, + -0.020375685766339302, + -0.018627673387527466, + 0.0596192292869091, + 0.01777368225157261, + -0.003709522308781743, + -0.03939032182097435, + -0.08224998414516449, + -0.07515118271112442, + 0.013210169039666653, + 0.09095001220703125, + 0.07707266509532928, + 0.10984455794095993, + 0.03979063034057617, + 0.07573830336332321, + -0.048170413821935654, + 0.039096761494874954, + 0.025673096999526024, + -0.02903568558394909, + 0.01722659356892109, + -0.06565053761005402, + -0.024045176804065704, + -0.018374145030975342, + 0.0071455007418990135, + 0.005557611584663391, + -0.039497070014476776, + 0.057110629975795746, + -0.10087765753269196, + -0.0006980373291298747, + 0.042032357305288315, + -0.02599334344267845, + 0.030530167743563652, + 0.04648911952972412, + 0.013984098099172115, + -0.005971263162791729, + 0.031117286533117294, + -0.05812474340200424, + -0.023484744131565094, + 0.07595179975032806, + -0.07579167932271957, + 0.07333645224571228, + -0.0007134659099392593, + -0.009500646963715553, + -0.07264258712530136, + -0.0151583356782794, + 0.07760640978813171, + -0.0658106580376625, + -0.04416733235120773, + -0.04488788917660713, + 0.028208380565047264, + 0.021122926846146584, + 0.05609651654958725, + 0.030236609280109406, + 0.038563020527362823, + 0.027167579159140587, + 0.01960175670683384, + -0.029516054317355156, + -0.03576086089015007, + 0.07456406205892563, + -0.04261947423219681, + 0.0006225625984370708, + 0.03346576169133186, + -0.11955869942903519, + -0.03028998337686062, + 0.03255839645862579, + -0.05070570111274719, + -0.01034129410982132, + -0.02413858100771904, + -0.06260819733142853, + -0.003509368048980832, + -0.07680579274892807, + 0.007252249401062727, + -0.018987949937582016, + -0.10520098358392715, + -0.015932263806462288, + -0.03800258785486221, + 0.00026979102403856814, + -0.051639750599861145, + -0.06399592757225037, + -0.0190813560038805, + -0.02393842674791813, + -0.02248397469520569, + -0.0038663095328956842, + 0.004269953817129135, + -0.07018736004829407, + 0.10835007578134537, + 0.07872726768255234, + -0.0007901916396804154, + 0.05139956623315811, + 0.003976394422352314, + 0.010721586644649506, + -0.0038929968141019344, + 0.024805761873722076, + 0.0303166713565588, + 0.022470630705356598, + -0.004039776511490345, + 0.001004106248728931, + -0.031651031225919724, + 0.012269444763660431, + 0.019681816920638084, + 0.08171623945236206, + -0.07947450876235962, + 0.016092387959361076, + 0.04769004508852959, + -0.018574297428131104, + -0.015305114910006523, + -0.012563004158437252, + 0.046409059315919876 + ] + }, + { + "id": "bc9022e3-5380-47b1-80bc-d9bb53d27c72", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "tina55", + "reviewDate": "2022-06-07T17:13:34", + "stars": 5, + "verifiedUser": true + }, + { + "id": "0b9d4eea-b31e-4883-863e-92502dc88fae", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "garciacrystal", + "reviewDate": "2021-11-04T12:40:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7d770f6c-8732-4ba2-a8d8-b5142f063286", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "valerierice", + "reviewDate": "2022-11-24T08:51:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fdd2194c-35c1-4fef-8c4b-3ecbfd47213d", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "dennis79", + "reviewDate": "2021-05-05T16:48:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8e4f9e4f-d4d8-46ac-862a-3c8d7f4a2bfa", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "patriciaortiz", + "reviewDate": "2022-05-24T03:05:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ac6657b5-7ba5-48c5-9034-5adbe1f32345", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "mcdowellanthony", + "reviewDate": "2021-04-21T21:07:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "29c21a92-834e-4257-9f22-61a5a6246791", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "athomas", + "reviewDate": "2021-08-10T17:46:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a6bc7024-4b8d-431d-9482-9426423d0d48", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "michaelmitchell", + "reviewDate": "2021-11-07T14:33:09", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bab9ce53-2629-4e74-8934-cf36191b300a", + "productId": "7682a094-0755-4abb-b387-8151732951b7", + "category": "Accessory", + "docType": "customerRating", + "userName": "mariahmeyers", + "reviewDate": "2021-12-29T22:06:10", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone 3000 (Silver)", + "description": "This Premium Phone 3000 (Silver) is a great option.\n\nIn addition to its unique look and function, the 3000 Mobile PRO offers several premium features such as:\n\nPremium", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-08-29T15:13:49", + "price": 221.45, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-03-06T01:47:08", + "newPrice": 208.08 + }, + { + "priceDate": "2022-12-30T01:47:08", + "newPrice": 217.05 + }, + { + "priceDate": "2025-08-22T01:47:08", + "newPrice": 221.45 + } + ], + "descriptionVector": [ + -0.03319700434803963, + 0.015641890466213226, + -0.024665065109729767, + 0.03645465523004532, + 0.033869218081235886, + 0.0409274622797966, + -0.057138148695230484, + 0.03826446086168289, + 0.027353918179869652, + 0.10290037840604782, + 0.05750010907649994, + 0.013088773004710674, + 0.05475954711437225, + 0.002525648334994912, + 0.03872983902692795, + 0.011873617768287659, + -0.017128517851233482, + -0.06577350944280624, + -0.03834202513098717, + 0.0007788627408444881, + 0.006127484608441591, + -0.022273536771535873, + -0.04110844060778618, + -0.021032527089118958, + 0.013049990870058537, + -0.05067455768585205, + 0.025376059114933014, + -0.007879117503762245, + 0.02385065145790577, + 0.004466341808438301, + 0.005649178754538298, + 0.019377846270799637, + -0.022312317043542862, + 0.028103696182370186, + -0.040074266493320465, + 0.00711641414090991, + 0.014905042015016079, + -0.026707559823989868, + 0.09100736677646637, + 0.017270715907216072, + 0.030895967036485672, + -0.038807403296232224, + -0.004440487362444401, + -0.027948569506406784, + 0.0705307126045227, + -0.020580075681209564, + 0.005810768809169531, + 0.03984157741069794, + -0.012474731542170048, + 0.004081757739186287, + 0.011007496155798435, + 0.014478445053100586, + -0.0527687594294548, + 0.03567902371287346, + 0.03161988779902458, + -0.006541154347360134, + 0.05610397458076477, + 0.17270715534687042, + 0.057862069457769394, + 0.006961287930607796, + 0.01662435755133629, + -0.0581723228096962, + -0.02550533227622509, + 0.01226789690554142, + -0.025854365900158882, + 0.01253290381282568, + -0.023449908941984177, + -0.018731487914919853, + -0.04188407212495804, + 0.06835894286632538, + -0.05263948813080788, + -0.015383347868919373, + -0.02841394767165184, + 0.06468762457370758, + 0.01076187938451767, + 0.10186620056629181, + 0.04620175063610077, + 0.05002819746732712, + 0.02370845340192318, + -0.04299581050872803, + 0.008570722304284573, + 0.10631315410137177, + -0.0010883072391152382, + -0.03601513057947159, + 0.053415119647979736, + 0.015822872519493103, + 0.006870797835290432, + -0.13744181394577026, + -0.010949323885142803, + 0.07751138508319855, + -0.018602216616272926, + 0.04038451984524727, + -0.015577254816889763, + 0.0015003611333668232, + 0.046382732689380646, + 0.02807784080505371, + -0.014801624231040478, + 0.027379773557186127, + -0.08935268968343735, + -0.03244723007082939, + 0.06355003267526627, + -0.01141470205038786, + -0.005532834213227034, + 0.001480162376537919, + 0.06163680925965309, + 0.06065434217453003, + -0.007736918982118368, + -0.026048272848129272, + 0.021368633955717087, + -0.16009023785591125, + -0.04059135541319847, + -0.0056007020175457, + -0.007362030446529388, + -0.04646029323339462, + -0.020631784573197365, + 0.035317063331604004, + 0.029112014919519424, + -0.043461188673973083, + 0.03766981139779091, + -0.057086437940597534, + -0.03443801403045654, + 0.03345555067062378, + -0.06210218742489815, + -0.005439111962914467, + 0.006735062226653099, + -0.04842522740364075, + 0.02399285137653351, + 0.04922671243548393, + -0.0011093139182776213, + -0.030870111659169197, + -0.10041835904121399, + 0.053259994834661484, + 0.07306443899869919, + 0.10052177309989929, + -0.011324211955070496, + 0.11500021815299988, + 0.011052741669118404, + 0.08728434145450592, + -0.020386166870594025, + 0.07502936571836472, + -0.010684316977858543, + -0.021407414227724075, + 0.01667606644332409, + -0.042504578828811646, + 0.007446057163178921, + 0.023165510967373848, + -0.013043527491390705, + 0.041186004877090454, + 0.010942860506474972, + 0.02127814292907715, + -0.010768343694508076, + -0.09043857455253601, + 0.0271987933665514, + -0.08309593051671982, + -0.0026872381567955017, + -0.005342158488929272, + -0.06882432103157043, + -0.04576222598552704, + -0.010755416005849838, + 0.04436609148979187, + -0.08356130868196487, + -0.02138156071305275, + -0.01459478959441185, + -0.03870398551225662, + -0.012836692854762077, + 0.01818854548037052, + 0.05760352686047554, + -0.0053292312659323215, + -0.06484274566173553, + 0.05760352686047554, + -0.03870398551225662, + -0.06153339147567749, + 0.008906829170882702, + -0.06365344673395157, + 0.011072131805121899, + 0.002641992876306176, + 0.017180226743221283, + -0.024458229541778564, + 0.0014486524742096663, + -0.026099981740117073, + 0.05134677141904831, + 0.05543176084756851, + -0.09922905266284943, + -0.05729327350854874, + 0.026500724256038666, + 0.09478210657835007, + 0.046770546585321426, + -0.011505193077027798, + -0.0011666782665997744, + -0.010968714952468872, + 0.028000278398394585, + 0.03151647001504898, + -0.03433459624648094, + 0.029163723811507225, + 0.04736519604921341, + -0.01091054268181324, + 0.08821509778499603, + 0.028956890106201172, + -0.015577254816889763, + 0.02540191449224949, + -0.025091661140322685, + 0.013127554208040237, + 0.11955058574676514, + 0.0033125905320048332, + -0.04392656683921814, + -0.006188888568431139, + -0.02467799186706543, + 0.07833872735500336, + -0.060395799577236176, + 0.024742627516388893, + -0.03916936367750168, + -0.02346283756196499, + 0.017813658341765404, + -0.021950356662273407, + 0.032602354884147644, + 0.059361621737480164, + 0.04801155626773834, + -0.0024286943953484297, + 0.03371409326791763, + -0.07642550766468048, + 0.06975507736206055, + 0.03562731668353081, + 0.02647487074136734, + 0.02337234653532505, + -0.02986179292201996, + -0.010432236827909946, + 0.07394348829984665, + 0.07125463336706161, + 0.049381837248802185, + 0.06365344673395157, + -0.03798006474971771, + -0.030611569061875343, + -0.016365813091397285, + 0.039789870381355286, + 0.023049166426062584, + 0.09803975373506546, + -0.024471156299114227, + -0.08325105905532837, + -0.05238094553351402, + 0.05589713901281357, + -0.030611569061875343, + -0.01900295913219452, + -0.030120335519313812, + -0.04770130291581154, + 0.05941333249211311, + -0.0700136199593544, + 0.04617589712142944, + 0.012940109707415104, + -0.06665255129337311, + -0.005969126708805561, + -0.0312320739030838, + -0.06070604920387268, + -0.09038686007261276, + 0.020011279731988907, + 0.039298634976148605, + -0.016908755525946617, + 0.009760023094713688, + -0.015473837964236736, + 0.021071307361125946, + 0.01711558923125267, + -0.023113802075386047, + 0.01808512955904007, + 0.02758660726249218, + 0.01799463853240013, + -0.006676889955997467, + 0.04591735452413559, + 0.01944248378276825, + -0.11127719283103943, + -0.04152211174368858, + 0.007000069599598646, + -0.024471156299114227, + -0.05002819746732712, + 0.02952568605542183, + -0.03040473349392414, + 0.04159967601299286, + 0.01780073158442974, + -0.08366473019123077, + 0.027095375582575798, + -0.01701217330992222, + 0.00657024048268795, + 0.07973486185073853, + -0.03733370453119278, + 0.10439992696046829, + 0.004094684962183237, + 0.044443655759096146, + -0.010981641709804535, + 0.0011585988104343414, + 0.00706470524892211, + 0.009495016187429428, + -0.038186896592378616, + 0.0054326485842466354, + 0.006295538041740656, + 0.03402434661984444, + -0.054862964898347855, + 0.024884827435016632, + 0.02691439539194107, + 0.06086117774248123, + -0.0112531129270792, + 0.021497905254364014, + 0.038186896592378616, + 0.01180251780897379, + -0.017723167315125465, + -0.06856577843427658, + -0.028724201023578644, + 0.03627367317676544, + 0.12854790687561035, + -0.039014238864183426, + 0.003500034799799323, + -0.03180086985230446, + -0.023643817752599716, + 0.04692567512392998, + -0.07239222526550293, + -0.09648849070072174, + -0.024212613701820374, + -0.00036458694376051426, + 0.00023693102411925793, + 0.002360826823860407, + 0.030120335519313812, + -0.0029554772190749645, + -0.036247819662094116, + 0.07104779779911041, + -0.007581792771816254, + -0.05080382898449898, + -0.021123016253113747, + 0.01595214381814003, + -0.009242936037480831, + -0.017826585099101067, + -0.019481264054775238, + -0.007530083879828453, + 0.003946022596210241, + -0.04159967601299286, + -0.028491510078310966, + 0.022480370476841927, + -0.04198748990893364, + 0.012158015742897987, + -0.009643678553402424, + 0.024497011676430702, + 0.06479103863239288, + 0.07290931046009064, + 0.00245454884134233, + 0.030895967036485672, + 0.06075775995850563, + -0.04808912053704262, + 0.04475390538573265, + 0.0026629995554685593, + -0.01891246810555458, + -0.045167576521635056, + -0.024884827435016632, + 0.04951110854744911, + -0.010781270451843739, + 0.0014753147261217237, + -0.04819253832101822, + 0.08764629811048508, + 0.00020663293253164738, + 0.08764629811048508, + 0.027509044855833054, + 0.034308742731809616, + -0.07564987242221832, + -0.051217496395111084, + 0.04209090769290924, + -0.011188476346433163, + 0.035420481115579605, + 0.015008458867669106, + 0.045115869492292404, + 0.01852465234696865, + 0.07104779779911041, + -0.0051805684342980385, + 0.12048134207725525, + -0.036920033395290375, + -0.05186385661363602, + 0.03650636598467827, + -0.0069936057552695274, + -0.04247872158885002, + 0.017438769340515137, + -0.013948430307209492, + 0.07916606962680817, + 0.05512150749564171, + 0.005313072353601456, + -0.01016076561063528, + 0.02337234653532505, + -0.019675172865390778, + -0.01042577251791954, + 0.01662435755133629, + -0.00010887111420743167, + 0.06810040026903152, + -0.05543176084756851, + -0.06391198933124542, + 0.03394678235054016, + -0.11468996852636337, + 0.0465378575026989, + -0.023385273292660713, + 0.005910954438149929, + -0.032266248017549515, + 0.08278568089008331, + 9.957970178220421e-05, + -0.023256001994013786, + -0.013011209666728973, + -0.04803740978240967, + 0.03156818076968193, + -0.06928969919681549, + -0.017774876207113266, + 0.033765800297260284, + -0.021110089495778084, + 0.03423117846250534, + 0.01683119125664234, + -0.05196727439761162, + 0.027379773557186127, + 0.011679709888994694, + -0.0390917994081974, + -0.03637709096074104, + -0.002485250821337104, + -0.09866026043891907, + 0.04178065434098244, + 0.07782164216041565, + 0.028956890106201172, + -0.03180086985230446, + 0.08061391115188599, + 0.00882280245423317, + 0.10827808082103729, + -0.002966788364574313, + 0.0005784914246760309, + 0.028620783239603043, + 0.0009953930275514722, + 0.029654957354068756, + -0.021316925063729286, + -0.004207797814160585, + 0.015499692410230637, + 0.004156089387834072, + 0.037695664912462234, + -0.006011140067130327, + 0.018938323482871056, + -0.04426267370581627, + 0.025880219414830208, + 0.014840405434370041, + -0.0778733491897583, + -0.027948569506406784, + -0.03208526596426964, + 0.045839790254831314, + -0.06298123300075531, + 0.006967751309275627, + -0.03322286158800125, + -0.047830577939748764, + -0.007497766055166721, + 0.07208196818828583, + -0.06210218742489815, + -0.03373994678258896, + 0.0036907107569277287, + -0.009604896418750286, + -0.03273162618279457, + -0.024884827435016632, + -0.012326069176197052, + 0.011169086210429668, + -0.023411128669977188, + 0.02079983800649643, + 0.0290861614048481, + -0.035032667219638824, + -0.04097916930913925, + 0.0778733491897583, + -0.04188407212495804, + 0.020877400413155556, + -0.02681097760796547, + 0.039298634976148605, + 0.03405020013451576, + -0.018731487914919853, + -0.020489584654569626, + 0.03710101544857025, + -0.011847763322293758, + -0.0053583174012601376, + 0.025815583765506744, + 0.07508108019828796, + 0.009301108308136463, + -0.03366238251328468, + 0.00573320547118783, + 0.007672282867133617, + -0.01979151740670204, + -0.10098715126514435, + 0.07694259285926819, + 0.01643044874072075, + -0.04056549817323685, + -0.024858972057700157, + 0.002152375876903534, + -0.006263220217078924, + 0.013250362128019333, + 0.017632678151130676, + 0.04242701455950737, + 0.014685279689729214, + 0.023501617833971977, + -0.07203026115894318, + -0.03195599466562271, + 0.06954824179410934, + -0.008208760991692543, + 0.0017096198862418532, + -0.08025195449590683, + -0.01570652797818184, + -0.028155403211712837, + -0.054707836359739304, + 0.0369458869099617, + 0.012112770229578018, + -0.013392561115324497, + 0.0006665578694082797, + 0.024122122675180435, + -0.03798006474971771, + -0.030818404629826546, + 0.020062988623976707, + -0.023152584210038185, + -0.007517156656831503, + -0.034593142569065094, + -0.028439803048968315, + 0.015913361683487892, + -0.047597888857126236, + 0.00573320547118783, + -0.02531142346560955 + ] + }, + { + "id": "098afdf9-5c95-4ce0-b30f-8b62ad59c32b", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "arnoldrebecca", + "reviewDate": "2022-12-30T07:16:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bf46bd6c-cf3a-48a0-80f2-aaa1d6f7569e", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "lopezeric", + "reviewDate": "2022-02-24T21:08:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b33249a8-2908-4244-b7a6-fc783fe87a0c", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "onewton", + "reviewDate": "2022-09-12T08:13:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "21602142-d3d0-4885-be71-4a47f8f26624", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamsbruce", + "reviewDate": "2021-04-14T07:31:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2693894a-2b39-40a9-b374-1a5d186d906f", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "laurawilson", + "reviewDate": "2022-11-03T03:17:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "05b89c21-711f-47ad-a821-eedb116e3dad", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "camposshawn", + "reviewDate": "2022-06-25T18:49:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0eed3104-1d86-4f87-bd56-abfc6921ff8e", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "nanderson", + "reviewDate": "2021-07-26T10:42:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "07453875-8a81-4d30-a509-49094b699191", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "lopezhannah", + "reviewDate": "2022-07-08T00:04:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "23d5630c-c49b-4dd3-b0fc-07c0b9b69000", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "smurphy", + "reviewDate": "2022-05-04T21:40:36", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0d6c923d-82df-43f8-89a4-059a2e1df9eb", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandon47", + "reviewDate": "2022-05-26T08:13:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "466cf044-3dd3-4422-b4d8-be22bdf79142", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "dennismichelle", + "reviewDate": "2021-11-19T17:52:09", + "stars": 4, + "verifiedUser": true + }, + { + "id": "13a86f06-732b-4197-8509-8dd83eff35d4", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "ritabeck", + "reviewDate": "2022-06-18T04:23:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e82dbc98-5dfc-4953-be04-93502a2b9aec", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "tammygreer", + "reviewDate": "2021-06-18T20:41:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "59b23cb9-00df-4724-82c0-763cada3f9fc", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "mgonzales", + "reviewDate": "2021-06-05T07:17:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "07247370-101d-41fa-8335-5a4c499463a9", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "danielwilson", + "reviewDate": "2022-02-15T23:54:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4500d621-01d9-4ac0-a35a-655f1021822a", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "youngbrenda", + "reviewDate": "2022-02-13T13:54:40", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7515b7be-046c-495a-a093-176ed692dc0f", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "bbailey", + "reviewDate": "2021-04-22T00:15:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b27a2d53-cc6d-4f71-a811-bbfefcc1c080", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "serranojodi", + "reviewDate": "2021-08-25T02:31:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2c72b0ba-3a1e-43e0-a478-3c51d16ad414", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelesantana", + "reviewDate": "2022-09-04T13:48:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "494a6fc4-a2f1-454d-afb3-1b74188fb27a", + "productId": "1f99e4b8-0441-4f96-a72e-f3be89f7a9b4", + "category": "Electronics", + "docType": "customerRating", + "userName": "ryan72", + "reviewDate": "2021-03-06T01:47:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "16961ec2-422d-4db2-a072-3cac225658a8", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Super (Steel)", + "description": "This Premium Speaker Super (Steel) is rated 4.6 out of 5 by 4.\n\nRated 5 out of 5 by Anonymous from Great tool! This is a great tool that I use when traveling for my work. I used it to pick my nails from a collection of books during a commute. I also did not have bad reviews but the design is perfect. It doesn't slide easily on the bench. However, it does allow me to set it to a different position and it is", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-03-14T21:07:09", + "price": 349.15, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-01-18T11:42:46", + "newPrice": 347.73 + }, + { + "priceDate": "2021-12-23T11:42:46", + "newPrice": 368.8 + }, + { + "priceDate": "2022-11-27T11:42:46", + "newPrice": 338.26 + }, + { + "priceDate": "2023-07-31T11:42:46", + "newPrice": 349.15 + } + ], + "descriptionVector": [ + -0.022287702187895775, + 0.008521768264472485, + -0.034811269491910934, + -0.009077400900423527, + 0.034261878579854965, + -0.005097453482449055, + -0.04749715328216553, + 0.04127907380461693, + 0.018729161471128464, + 0.1180686354637146, + 0.019415898248553276, + -0.01181810162961483, + -0.026470549404621124, + -0.011774400249123573, + 0.014746093191206455, + -0.009545629844069481, + -0.0035054748877882957, + -0.05403987690806389, + 0.03935621306300163, + -0.040879517793655396, + 0.024098187685012817, + -0.06822409480810165, + -0.042003266513347626, + -0.07566581666469574, + -0.05673687532544136, + -0.007835032418370247, + 0.02954213134944439, + 0.023074327036738396, + 0.0315399095416069, + -0.03883179649710655, + -0.009907727129757404, + 0.025896187871694565, + -0.05853487551212311, + 0.05169248580932617, + 0.042078182101249695, + 0.03890671208500862, + 0.022936981171369553, + -0.06183120608329773, + 0.015507746487855911, + 0.06188115105032921, + -0.005356540437787771, + -0.03498607501387596, + 0.08335725963115692, + 0.025946132838726044, + 0.02662038244307041, + -0.005965237971395254, + 0.02188814803957939, + 0.03965587913990021, + 0.04292723909020424, + 0.06278014928102493, + 0.015395371243357658, + 0.03935621306300163, + -0.05164254084229469, + 0.0010753660462796688, + 0.07726403325796127, + -0.021713342517614365, + 0.0008919763495214283, + 0.13275229930877686, + 0.05993331968784332, + -0.04452545940876007, + 0.052042096853256226, + -0.06018304079771042, + -0.017530495300889015, + -0.0018885238096117973, + -0.006717525888234377, + -0.013185329735279083, + -0.09304647892713547, + 0.007310616318136454, + -0.025721382349729538, + 0.045873962342739105, + 0.00823458842933178, + -0.019902857020497322, + 0.02000274509191513, + 0.00804105307906866, + 0.05913420766592026, + -0.02624579891562462, + 0.025421716272830963, + -0.009083643555641174, + 0.0030231988057494164, + 0.037058766931295395, + 0.010550761595368385, + 0.06183120608329773, + -0.03556043654680252, + -0.018866509199142456, + 0.09509419649839401, + -0.032588742673397064, + -0.002550287637859583, + -0.11287441849708557, + 0.014571287669241428, + 0.05169248580932617, + -0.003041928168386221, + -0.0037957767490297556, + 0.030765770003199577, + 0.010944074019789696, + 0.07226959615945816, + 0.011318656615912914, + -0.03863201662898064, + -0.0030637788586318493, + -0.00874651875346899, + 0.01969059184193611, + -0.008084754459559917, + -0.030366213992238045, + -0.09194769710302353, + 0.021401189267635345, + -0.01101899053901434, + 0.023049354553222656, + 0.028118714690208435, + 0.001535791321657598, + -0.0081846434623003, + -0.09379564225673676, + 6.057713471818715e-05, + -0.043201934546232224, + 0.010987775400280952, + -0.030291298404335976, + 0.012592240236699581, + 0.001541253994219005, + 0.008921324275434017, + -0.026320716366171837, + 0.013197815977036953, + -0.08875125646591187, + -0.043201934546232224, + 0.05398993194103241, + 0.007866248488426208, + 0.02366117388010025, + 0.02086428552865982, + 0.01139981672167778, + 0.007635254878550768, + 0.0334627702832222, + 0.05051879212260246, + -0.015158135443925858, + 0.012355003505945206, + 0.07846270501613617, + 0.01749303750693798, + -0.017979996278882027, + -0.06887336820363998, + 0.037608157843351364, + -0.011680753901600838, + 0.05493887513875961, + -0.026845132932066917, + -0.03683402016758919, + 0.0006484972545877099, + -0.004950741771608591, + 0.010644407011568546, + 0.035260770469903946, + -0.038607046008110046, + -0.005796675570309162, + -0.08905091881752014, + 0.029766881838440895, + -0.02060207724571228, + 0.08475570380687714, + 0.038082629442214966, + -0.03458651900291443, + -0.054239653050899506, + -0.08455592393875122, + 0.05638726428151131, + 0.04013035073876381, + -0.14813518524169922, + 0.04180349037051201, + -0.06078237295150757, + 0.052691373974084854, + 0.026295743882656097, + -0.08505536615848541, + -0.0014117106329649687, + -0.012379975989460945, + -0.02373609133064747, + 0.08670353144407272, + 0.02949218638241291, + 0.01033849734812975, + -0.07636503875255585, + 0.0283184926956892, + 0.0002616229758132249, + 0.018604300916194916, + 0.024223050102591515, + -0.09409531205892563, + 0.03995554521679878, + -0.04577407240867615, + 0.005465793889015913, + 0.0006641048821620643, + 0.0394311286509037, + -0.03266365826129913, + 0.04787173867225647, + 0.048720791935920715, + -0.048121459782123566, + -0.07077126204967499, + 0.07037170231342316, + 0.06837392598390579, + 0.0733683705329895, + 0.01100650429725647, + -0.01192423328757286, + 0.037058766931295395, + -0.004292099736630917, + -0.05668693035840988, + -0.011917989701032639, + 0.0025034646969288588, + -0.001727765193209052, + -0.05304098501801491, + 0.01788010634481907, + 0.06233065202832222, + -0.0078287897631526, + -0.016818787902593613, + -0.08530508726835251, + 0.059184152632951736, + 0.04292723909020424, + -0.02836843766272068, + -0.01098153181374073, + -0.024585146456956863, + 0.040430016815662384, + 0.06982231885194778, + -0.00017695156566333026, + -0.03134012967348099, + 0.016843760386109352, + -0.03770804777741432, + 0.008852650411427021, + -0.0008412515162490308, + 0.020876772701740265, + 0.02227521687746048, + 0.00809099804610014, + -0.014321565628051758, + -0.0022178448271006346, + -0.042128127068281174, + 0.016481662169098854, + 0.0043919882737100124, + 0.046398378908634186, + -0.019565731287002563, + -0.041528794914484024, + -0.014583773910999298, + -0.0032182943541556597, + -0.013984440825879574, + 0.029691964387893677, + 0.05224187672138214, + 0.08775236457586288, + 5.340737698134035e-05, + -0.008584199473261833, + 0.03286343440413475, + -0.019228605553507805, + 0.01247362233698368, + -0.030266325920820236, + -0.06997215002775192, + -0.06587670743465424, + 0.010669379495084286, + 0.006086977664381266, + 0.004657318349927664, + -0.06223076209425926, + -0.03338785097002983, + -0.016356801614165306, + -0.03211427107453346, + 0.11097652465105057, + -0.060882262885570526, + -0.045374516397714615, + -0.03905654698610306, + -0.09948930889368057, + -0.018841536715626717, + -0.014746093191206455, + 0.08785225450992584, + 0.033687520772218704, + -0.0023848465643823147, + 0.08955036848783493, + -0.017817676067352295, + 0.044800154864788055, + -0.00285619730129838, + -0.030241353437304497, + 0.0026033534668385983, + -0.010794240050017834, + 0.04892057180404663, + -0.04167862981557846, + -0.04060482233762741, + 0.024922272190451622, + -0.04834621027112007, + -0.04807151481509209, + 0.035935018211603165, + -0.07246936857700348, + 0.010425900109112263, + 0.0700220912694931, + 0.0007807719521224499, + -0.025496631860733032, + -0.0021039091516286135, + -0.01046960148960352, + 0.044200822710990906, + -0.03903157263994217, + -0.014821010641753674, + 0.10508308559656143, + 0.031464993953704834, + 0.0630798190832138, + 0.05723631754517555, + 0.05633731931447983, + -0.03843224048614502, + 0.0501941554248333, + 0.02721971459686756, + 0.05199215188622475, + -0.022437535226345062, + -0.04130404442548752, + -0.02731960453093052, + 0.054739098995923996, + 0.03730849176645279, + -0.031390074640512466, + 0.00859044212847948, + -0.03271360322833061, + -0.04634843394160271, + -0.0327385738492012, + -0.010001372545957565, + 0.020489703863859177, + 0.06672576069831848, + -0.07706426084041595, + -0.05513865128159523, + 0.026945021003484726, + 0.03391226753592491, + 0.002082058461382985, + 0.03558540716767311, + -0.09444492310285568, + -0.11557141691446304, + 0.07596547901630402, + 0.015045760199427605, + -0.04844610020518303, + 0.017243314534425735, + 0.1302550733089447, + -0.0003219074569642544, + -0.012642184272408485, + 0.011474733240902424, + 0.05848493054509163, + 0.03885676711797714, + -0.027544355019927025, + -0.05968359485268593, + -0.06347937136888504, + 0.05359037593007088, + -0.06517748534679413, + -0.0463734045624733, + 0.02421056292951107, + -0.037008825689554214, + 0.006127557717263699, + 0.026320716366171837, + 0.07806314527988434, + -0.02478492446243763, + -0.00409232173115015, + 0.024722494184970856, + 0.023811008781194687, + 0.0038145058788359165, + -0.08480564504861832, + -0.019728051498532295, + 0.057585928589105606, + 0.03915643319487572, + -0.006761227268725634, + -0.031390074640512466, + 0.05106818303465843, + -0.012579753994941711, + 0.06283009797334671, + -0.0638289824128151, + 0.050468847155570984, + -0.08370687067508698, + -0.010906615294516087, + -0.0013633269118145108, + 0.0014663373585790396, + -0.03236399218440056, + 0.015258023515343666, + 0.023486368358135223, + 0.019927827641367912, + -0.04330182075500488, + 0.019440870732069016, + -0.06278014928102493, + 0.06527737528085709, + 0.008134699426591396, + 0.05668693035840988, + -0.021900633350014687, + 0.028543243184685707, + 0.00017265946371480823, + 0.035910047590732574, + 0.0690731480717659, + -0.029242465272545815, + 0.032039351761341095, + -0.09039942175149918, + -0.06352932006120682, + -0.04457540437579155, + -0.037108711898326874, + 0.040380071848630905, + 0.035260770469903946, + 0.01181810162961483, + 0.04667307063937187, + 0.044825129210948944, + 0.03406210243701935, + -0.01269212830811739, + 0.0329882986843586, + -0.018054911866784096, + 0.026545464992523193, + 0.029267437756061554, + -0.013160358183085918, + 0.0052472869865596294, + 0.041478849947452545, + -0.044775184243917465, + 0.06497770547866821, + -0.04185343533754349, + 0.02528436854481697, + -0.014496371150016785, + -0.025371771305799484, + -0.02248748019337654, + 0.006255540065467358, + 0.034311823546886444, + -0.05001934990286827, + 0.015020787715911865, + 0.07087115198373795, + -0.010775511153042316, + -0.015332940965890884, + -0.02896776981651783, + 0.06243053823709488, + -0.02889285422861576, + -0.03910649195313454, + 0.05888448655605316, + -0.10128730535507202, + -0.042003266513347626, + -0.003733346238732338, + -0.11577119678258896, + -0.00040618868661113083, + 0.0074854218401014805, + -0.039281297475099564, + 0.04280237853527069, + 0.04077962785959244, + 0.029192520305514336, + 0.041478849947452545, + 0.12635941803455353, + -0.007266914937645197, + 0.034161992371082306, + -0.03738340735435486, + 0.06602653861045837, + -0.01651911996304989, + 0.06442831456661224, + -0.006264904513955116, + -0.017443092539906502, + 0.05578793212771416, + 0.013297704979777336, + -0.024385368451476097, + 0.016381774097681046, + -0.11726952344179153, + -0.030740797519683838, + -0.014696149155497551, + -0.03333790972828865, + 0.04130404442548752, + 0.03181460499763489, + -0.012985552661120892, + 0.02093920297920704, + -0.013035496696829796, + -0.02235013246536255, + 0.011318656615912914, + -0.011786885559558868, + -0.019228605553507805, + 0.06402876228094101, + 0.004342044238001108, + -0.09859030693769455, + -0.04400104284286499, + -0.04415087774395943, + 0.06552709639072418, + 0.030965548008680344, + -0.01073180977255106, + 0.03411204740405083, + -0.0017948780441656709, + -0.06697548180818558, + 0.01625691168010235, + -0.03493613004684448, + -0.012398704886436462, + 0.021526049822568893, + 0.07092109322547913, + -0.028792964294552803, + -0.030466103926301003, + -0.0834072008728981, + 0.09184780716896057, + 0.03508596494793892, + 0.043626461178064346, + -0.046498265117406845, + -0.026520492509007454, + -0.05344054102897644, + 0.029142575338482857, + 0.006268026307225227, + 0.010763024911284447, + -0.03890671208500862, + -0.0611819289624691, + -0.0018822808051481843, + 0.023798521608114243, + -0.0018401402048766613, + -0.018679218366742134, + 0.011605837382376194, + -0.006024546921253204, + 0.023748576641082764, + 0.004491877276450396, + -0.004797786939889193, + 0.029142575338482857, + -0.0026033534668385983, + 0.03496110066771507, + 0.06417859345674515, + -0.018441980704665184, + -0.01916617527604103, + -0.05493887513875961, + 0.017605412751436234, + 0.013509969227015972, + 0.041478849947452545, + 0.06962253898382187, + -0.05773576349020004, + -0.05076851323246956, + -0.01420919131487608, + 0.01338510774075985, + -0.006118192803114653, + -0.024297965690493584, + -0.009364580735564232, + 0.03124024160206318, + 0.06797437369823456, + -0.007522880099713802, + -0.0532907098531723, + 0.04457540437579155, + 0.00847182422876358, + -0.03853213042020798, + -0.05893443152308464, + -0.04005543515086174, + -0.010812969878315926, + 0.049769625067710876, + 0.10488330572843552, + -0.036958880722522736 + ] + }, + { + "id": "825c67b3-874d-4591-8e69-e85e6ff46c45", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "lyoung", + "reviewDate": "2021-12-13T17:23:05", + "stars": 4, + "verifiedUser": false + }, + { + "id": "80627cdb-42b6-4586-8ed3-934087e085ac", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "mark61", + "reviewDate": "2021-06-13T22:26:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8d92a5ef-93c7-4c4d-8837-56cbd916e243", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "karen93", + "reviewDate": "2021-04-06T21:30:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ecb35594-665a-4a2e-a5e9-a9874c231ee9", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "jose35", + "reviewDate": "2021-05-29T15:53:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dfa4eaea-58c5-470e-9d5e-ffdf9c93513c", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "mcdanielmatthew", + "reviewDate": "2021-08-20T16:11:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5716ead3-e99a-4396-8524-e62d81be788d", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "harrisoncraig", + "reviewDate": "2022-03-10T23:02:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c0ad5b5f-c3fd-44be-b104-a3c7b1814db0", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "fwall", + "reviewDate": "2021-03-11T00:05:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d88f5ccb-57b5-4db7-8575-043f6d20773e", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "probertson", + "reviewDate": "2022-11-28T03:35:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "653e3442-168b-46e3-b5a4-775ef6158113", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "michael78", + "reviewDate": "2021-06-22T19:48:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "79a56d13-5169-4f24-90b3-499a10a33f30", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "gjacobs", + "reviewDate": "2021-08-28T00:36:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "320369aa-abb8-4271-b26f-efae7f43f3f7", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "hunternicole", + "reviewDate": "2022-01-11T23:48:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6b8dcd13-6bc6-4a60-8f28-bba405457d89", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "williamrivera", + "reviewDate": "2022-03-25T04:44:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "063e407d-a738-4f59-833e-18618b06a979", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "jamesfrazier", + "reviewDate": "2021-07-05T13:53:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1b6d5230-ee4a-4608-a822-f9b099d272ed", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "vtaylor", + "reviewDate": "2022-09-20T22:40:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c9cccbe-e72a-41b3-bfb7-a5357051ec93", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "julie85", + "reviewDate": "2021-05-12T02:23:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b12728ab-9041-4be7-99fb-5b10a31f696a", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "deniseestrada", + "reviewDate": "2021-01-18T11:42:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a8436c17-1b17-4720-abd5-49ea62a12b5f", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "dianadixon", + "reviewDate": "2022-09-02T15:32:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cd36ccf0-a68b-452b-b9ca-f3e3251b4244", + "productId": "16961ec2-422d-4db2-a072-3cac225658a8", + "category": "Media", + "docType": "customerRating", + "userName": "steve35", + "reviewDate": "2022-09-25T22:59:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Pro (Steel)", + "description": "This Amazing Speaker Pro (Steel) is a durable metal speaker built to last. It features a smooth, yet precise steel construction and is made of solid wood. Made to your specifications, this speaker is designed to last so, even with heavy use, this speaker will carry you through your day and night!\n\n\nSpeakers from SteelSeries\n\nSpeakers", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-03-06T01:40:48", + "price": 577.99, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-01-28T05:45:58", + "newPrice": 559.58 + }, + { + "priceDate": "2022-12-25T05:45:58", + "newPrice": 540.71 + }, + { + "priceDate": "2023-05-21T05:45:58", + "newPrice": 577.99 + } + ], + "descriptionVector": [ + -0.02578665502369404, + 0.018282737582921982, + -0.04971667006611824, + -0.016039298847317696, + 0.028133239597082138, + -0.023723721504211426, + -0.05636962503194809, + -0.00277528865262866, + 0.033600009977817535, + 0.09535904973745346, + 0.016039298847317696, + 0.03646232932806015, + -0.009721568785607815, + -0.01982993632555008, + 0.009296088479459286, + -0.02378818765282631, + 0.016645284369587898, + 0.007439449895173311, + -0.033909451216459274, + -0.05750424042344093, + 0.016735538840293884, + -0.1090259701013565, + -0.013396167196333408, + -0.06441505998373032, + -0.00795518234372139, + -0.0051025343127548695, + 0.011365467682480812, + 0.0046222577802836895, + -0.01810223050415516, + -0.0227438285946846, + 0.0720994845032692, + 0.054151974618434906, + -0.02144160307943821, + 0.06286786496639252, + -0.02167368307709694, + 0.05987660959362984, + -0.00012137858720961958, + -0.01306094042956829, + 0.03906678035855293, + 0.07075858116149902, + -0.0031927102245390415, + -0.004725404549390078, + -0.0004291060322429985, + -0.024007374420762062, + 0.0018421340500935912, + 0.0411812849342823, + -0.02650867961347103, + 0.08973755687475204, + 0.023530321195721626, + -0.03976302221417427, + 0.03166601061820984, + 0.03439939767122269, + -0.1090259701013565, + 0.04131022095680237, + 0.020655110478401184, + -0.0619395449757576, + 0.0619395449757576, + 0.08721046149730682, + 0.02924206666648388, + -0.022099163383245468, + 0.04275427386164665, + -0.058071546256542206, + -0.009985881857573986, + 0.019004764035344124, + 0.019159484654664993, + -0.04138758033514023, + -0.0009597470052540302, + 0.0009492711978964508, + -0.016954725608229637, + 0.07318252325057983, + 0.03370315581560135, + -0.08757147938013077, + 0.0650339424610138, + 0.05936087667942047, + 0.04798896238207817, + -0.011217194609344006, + 0.008026096038520336, + 0.09695781767368317, + 0.01579432561993599, + -0.05353309214115143, + 0.06028919667005539, + 0.10871653258800507, + -0.01560092531144619, + 0.004544897936284542, + 0.04203224554657936, + -0.018411671742796898, + -0.02839110605418682, + -0.10799450427293777, + 0.02970622479915619, + 0.07926817238330841, + -0.006762550212442875, + 0.002920338651165366, + 0.06462135165929794, + -0.01233246736228466, + 0.012126173824071884, + 0.004644820932298899, + -0.10165099054574966, + -0.0010846510995179415, + -0.08540540188550949, + -0.06658113747835159, + 0.013950579799711704, + -0.02980937249958515, + -0.06297101080417633, + 0.017496244981884956, + -0.016426099464297295, + 0.05384253337979317, + -0.005012280773371458, + 0.0217510424554348, + -0.013305913656949997, + -0.061991117894649506, + 0.029989879578351974, + -0.003584344871342182, + -0.010450041852891445, + -0.016426099464297295, + 0.053275227546691895, + -0.004325711168348789, + -0.03027353249490261, + -0.06070178374648094, + -0.0006370109622366726, + -0.009038222022354603, + -0.04051083326339722, + -0.03597238287329674, + 0.007181582972407341, + 0.04749901592731476, + 0.004077514633536339, + -0.013396167196333408, + 0.05105757340788841, + 0.014556566253304482, + 0.000905756198335439, + 0.04711221531033516, + -0.1207846850156784, + 0.03757115453481674, + -0.016967618837952614, + 0.008651422336697578, + -0.011803841218352318, + 0.028133239597082138, + 0.00805188249796629, + 0.0501808300614357, + 0.0229372289031744, + 0.026289494708180428, + 0.028571613132953644, + 0.04007245972752571, + -0.0038615514058619738, + 0.013654033653438091, + -0.03011881187558174, + -0.04729272425174713, + -0.027694866061210632, + 0.012996473349630833, + -0.015149659477174282, + -0.003926018252968788, + -0.03702963516116142, + -0.07627692073583603, + 0.010153494775295258, + -0.02993830479681492, + 0.06255842000246048, + 0.010205068625509739, + -0.147396519780159, + 0.0113719142973423, + 0.002552878810092807, + 0.06874722242355347, + 0.010127708315849304, + -0.07013969868421555, + -0.03385787829756737, + 0.04303792491555214, + -0.0447140596807003, + 0.027952732518315315, + 0.07276993989944458, + 0.058999866247177124, + -0.09757670015096664, + 0.007355642970651388, + 0.00616623368114233, + 0.033677369356155396, + 0.00860629603266716, + -0.08947969228029251, + 0.01337037980556488, + -0.07756625860929489, + 0.10593157261610031, + 0.017934618517756462, + -0.007993862964212894, + 0.029113132506608963, + 0.01315764058381319, + 0.09597792476415634, + 0.004096854478120804, + -0.02520645409822464, + 0.04553923010826111, + 0.11490532755851746, + 0.06163010373711586, + 0.024071842432022095, + 0.007961629889905453, + 0.023891335353255272, + -0.01932709664106369, + -0.022537535056471825, + 0.03839632868766785, + 0.0053636240772902966, + -0.01179739460349083, + -0.03535350412130356, + 0.036178674548864365, + 0.037751663476228714, + -0.030608758330345154, + -0.002514198888093233, + 0.00644666375592351, + 0.07720524072647095, + 0.0940697118639946, + -0.05678221210837364, + -0.025141987949609756, + -0.06482765078544617, + -0.0028091336134821177, + 0.0642603412270546, + 0.029293639585375786, + -0.03733907639980316, + -0.015033619478344917, + -0.06054706498980522, + -0.03378051519393921, + 0.019120803102850914, + 0.021763935685157776, + 0.016232699155807495, + 0.03754536807537079, + -0.00977958831936121, + 0.010250194929540157, + -0.009869841858744621, + 0.0008646587375551462, + -0.02674075961112976, + 0.03638496994972229, + 0.019185271114110947, + -0.10010378807783127, + 0.001961397472769022, + 0.028520040214061737, + -0.03331635892391205, + 0.030608758330345154, + 0.013744286261498928, + -0.02493569441139698, + 0.04094920679926872, + 0.04476563259959221, + 0.062145836651325226, + -0.00977958831936121, + 0.06921137869358063, + -0.008528935723006725, + -0.0015899083809927106, + -0.0121584078297019, + 0.01129455491900444, + -0.00993430893868208, + -0.033445291221141815, + -0.06714844703674316, + -0.045358724892139435, + -0.03592080995440483, + -0.024007374420762062, + 0.05678221210837364, + -0.04682856425642967, + -0.10696303844451904, + -0.01932709664106369, + -0.08019649237394333, + 0.007942289113998413, + -0.039092566817998886, + 0.024793867021799088, + 0.017650965601205826, + 0.030144598335027695, + 0.04675120487809181, + -0.10634416341781616, + 0.07968076318502426, + -0.042135391384363174, + -0.021854190155863762, + -0.05987660959362984, + 0.020925870165228844, + 0.02643132023513317, + -0.07983548194169998, + 0.002649578731507063, + -0.044198326766490936, + -0.0023755955044180155, + 0.026792334392666817, + 0.03739064931869507, + -0.014324486255645752, + -0.026534467935562134, + -0.003555334871634841, + 0.03723592683672905, + 0.03233646601438522, + 0.03960829973220825, + -0.06890194118022919, + 0.029422571882605553, + -0.01197145413607359, + -0.01302226074039936, + 0.053894106298685074, + -0.023685041815042496, + 0.0556476004421711, + 0.0517280288040638, + 0.037751663476228714, + -0.028133239597082138, + -0.0006527247023768723, + 0.03158865123987198, + 0.01229378767311573, + -0.07003655284643173, + -0.02563193440437317, + 0.028674758970737457, + 0.04515243321657181, + 0.06333202123641968, + 0.02947414480149746, + 0.06544652581214905, + 0.01924973726272583, + -0.024613361805677414, + 0.030763478949666023, + 0.07751468569040298, + 0.054925572127103806, + 0.015201232396066189, + -0.054616134613752365, + -0.06163010373711586, + 0.01227444689720869, + 0.05144437402486801, + -0.013641140423715115, + 0.05317208170890808, + 0.009173601865768433, + -0.04455933719873428, + 0.01694183237850666, + 0.006923716515302658, + -0.02604452148079872, + -0.01375718042254448, + 0.0933476909995079, + 0.06637484580278397, + -0.014401846565306187, + -0.01625848561525345, + 0.03816424682736397, + 0.01787015050649643, + -0.03746800869703293, + -0.04020139202475548, + -0.14461155235767365, + 0.07503916323184967, + -0.04680277779698372, + -0.03873155266046524, + 0.005837453994899988, + -0.07937131822109222, + 0.05709165334701538, + 0.015265699476003647, + -0.003033155109733343, + 0.020809829235076904, + 0.004444974474608898, + -0.014311593025922775, + 0.03741643577814102, + -0.011545974761247635, + 0.008206603117287159, + -0.0067045302130281925, + 0.011152727529406548, + 0.0293967854231596, + 0.09107846021652222, + -0.052269548177719116, + 0.005756870377808809, + -0.024909907951951027, + 0.005650500766932964, + -0.08164054900407791, + 0.023955801501870155, + -0.05425512045621872, + -0.06859250366687775, + -0.05590546503663063, + 0.0015302767278626561, + -0.0023481971584260464, + 0.03316163644194603, + -0.023117735981941223, + 0.05533815920352936, + 0.025141987949609756, + -0.035714514553546906, + -0.03679755702614784, + 0.058226265013217926, + 0.039479367434978485, + -0.010785267688333988, + 0.032800622284412384, + 0.015807218849658966, + 0.01820537820458412, + 0.037364862859249115, + 0.04131022095680237, + -0.03927307575941086, + -0.0031459718011319637, + -0.019662324339151382, + 0.01591036468744278, + -0.025722187012434006, + -0.014169766567647457, + 0.04076870158314705, + 0.03965987265110016, + -0.018128016963601112, + 0.013202766887843609, + 0.07050070911645889, + -0.049123577773571014, + -0.020268309861421585, + 0.018875831738114357, + 0.05936087667942047, + 0.07411084324121475, + 0.04595181718468666, + 0.014543673023581505, + 0.03749379515647888, + 0.011913434602320194, + -0.02777222730219364, + 0.02278250828385353, + -0.030221957713365555, + 0.039092566817998886, + 0.0030621651094406843, + -0.019107909873127937, + 0.0009718345245346427, + 0.08447708189487457, + 0.08091852068901062, + -0.0006982542690820992, + 0.01752203144133091, + 0.0736982598900795, + -0.023839762434363365, + 0.011952114291489124, + 0.02800430729985237, + 0.07901030778884888, + 0.029035773128271103, + -0.04515243321657181, + -0.0057343072257936, + -0.06436348706483841, + 0.0018888723570853472, + 0.02270514890551567, + -0.01591036468744278, + -0.01833431050181389, + 0.0038067547138780355, + -0.08968598395586014, + -0.015265699476003647, + 0.00040956458542495966, + 0.000786895863711834, + 0.09525590389966965, + 0.05317208170890808, + 0.039556726813316345, + 0.10758192092180252, + -0.05435826629400253, + 0.041748594492673874, + -0.06812833994626999, + 0.02643132023513317, + 0.010424254462122917, + -0.05425512045621872, + 0.032568544149398804, + 0.026843907311558723, + -0.031408146023750305, + -0.023272454738616943, + -0.059928182512521744, + -0.05533815920352936, + -0.05025818943977356, + -0.0029993101488798857, + 0.0627131462097168, + -0.031176064163446426, + -0.03339371830224991, + 0.043785739690065384, + -0.0415680855512619, + -0.012822413817048073, + -0.005179894156754017, + -0.06776732951402664, + 0.010927095077931881, + 0.09221307188272476, + 0.057968396693468094, + -0.06869564950466156, + -0.08654001355171204, + -0.058226265013217926, + -0.014143980108201504, + 0.04404360428452492, + -0.00748457619920373, + 0.007871376350522041, + -0.05420354753732681, + -0.049433015286922455, + 0.04025296866893768, + 0.034218888729810715, + -0.027952732518315315, + -0.01728995144367218, + 0.04296056553721428, + 0.0014915968058630824, + 0.05652434751391411, + -0.0301961712539196, + 0.07503916323184967, + 0.02451021410524845, + 0.08354876190423965, + -0.03898942098021507, + 0.03811267390847206, + -0.022318348288536072, + -0.0474216565489769, + 0.014118192717432976, + 0.0046029179356992245, + -0.014517886564135551, + -0.039556726813316345, + 0.013093173503875732, + 0.04133600741624832, + -0.0372617170214653, + -0.11088261008262634, + 0.01110115461051464, + -0.054151974618434906, + -0.016077978536486626, + -0.0077424431219697, + -0.04100077971816063, + -0.018411671742796898, + -0.03937622159719467, + 0.0019855722784996033, + 0.009083349257707596, + -0.001693860860541463, + -0.019572069868445396, + 0.004164544865489006, + -0.032645903527736664, + 0.03300691768527031, + 0.0309697724878788, + 0.11356442421674728, + -0.01756071113049984, + -0.010881967842578888, + 0.04337315261363983, + 0.004190331324934959, + 0.038061100989580154, + -0.01616823300719261, + 0.006507907062768936, + 0.06389933079481125, + -0.019468924030661583, + -0.0388089157640934, + 0.014956259168684483, + 0.019765470176935196, + -0.007748889736831188, + 0.028520040214061737, + -0.013086726889014244, + -0.030789265409111977, + -0.0188242569565773, + 0.08958283811807632, + -0.0011886035790666938, + -0.0015085192862898111 + ] + }, + { + "id": "370ee267-ce89-4859-8e64-931e9ebe0bd4", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "zquinn", + "reviewDate": "2022-08-20T01:16:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4ba8aaae-9a25-47cf-b0e6-448d7485b071", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "lisa13", + "reviewDate": "2021-01-28T05:45:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2a63544b-f520-4fa2-9f89-f82ce9788c62", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "clifford20", + "reviewDate": "2022-10-12T09:58:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f1b44c4c-faa2-4f84-a633-93b62ed27791", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "tinalopez", + "reviewDate": "2021-11-23T12:47:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "722058ab-ef16-48d4-aaf8-a8b883cf5cad", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "mark85", + "reviewDate": "2022-07-13T00:52:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c6a0fccf-ee92-48ec-9ade-ed3dc0aa9125", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "bennettshane", + "reviewDate": "2022-06-08T03:59:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ea3779f7-4bdf-4c8b-baad-224f0612d851", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "smithmadison", + "reviewDate": "2022-12-25T09:31:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e5ea74d5-6fa9-40c5-ab44-6958cd6a9abe", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "scotthughes", + "reviewDate": "2021-06-14T20:44:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5b29673c-6696-48a1-9b05-07b46e81a27e", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "vjensen", + "reviewDate": "2022-01-01T02:31:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5e73d78f-c1c0-452b-853c-713d2163952b", + "productId": "edb47657-0a6f-41d4-818e-d3e0095681e5", + "category": "Media", + "docType": "customerRating", + "userName": "barrettrobert", + "reviewDate": "2022-06-05T06:29:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Ultra (Silver)", + "description": "This Basic Keyboard Ultra (Silver) is the new \"Unibody\" \"Able-to-Use\" keyboard standard for the Raspberry Pi 3. The new keyboard is designed for use with all the common keyboard layouts. It is fully customizable, and even comes with a variety of accessories to try for free. The $200 price tag is not so great when it comes to buying a new,", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-06-20T10:31:46", + "price": 828.83, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-01-18T15:31:43", + "newPrice": 776.13 + }, + { + "priceDate": "2022-10-23T15:31:43", + "newPrice": 828.83 + } + ], + "descriptionVector": [ + -0.026465008035302162, + 0.002271129749715328, + -0.018352672457695007, + 0.009667829610407352, + 0.016505522653460503, + -0.05776933208107948, + -0.0324709452688694, + 0.030591389164328575, + -0.04588708281517029, + -0.01128813624382019, + 0.017769362777471542, + -0.08274365961551666, + 0.05772612243890762, + -0.09384816139936447, + -0.0021658099722117186, + -0.019443679600954056, + -0.012519569136202335, + -0.017780164256691933, + -0.07172557711601257, + -0.03242773562669754, + 0.036726951599121094, + -0.058244623243808746, + -0.08153382688760757, + -0.023937329649925232, + 0.015716973692178726, + 0.005468534771353006, + -0.004604371264576912, + 0.015943817794322968, + -0.018331069499254227, + 0.0022562770172953606, + 0.04636237397789955, + -0.03260057047009468, + -0.04999186098575592, + 0.03512824699282646, + -0.007966507226228714, + -0.04770182818174362, + -0.06468264013528824, + -0.015241684392094612, + -0.019011598080396652, + 0.0012894939864054322, + 0.018050216138362885, + 0.009748844429850578, + 0.03208206966519356, + 0.016645949333906174, + 0.02884145826101303, + 0.05759650096297264, + 0.010423972271382809, + -0.005268697161227465, + -0.0030326738487929106, + -0.01864432916045189, + 0.03002968244254589, + 0.048004284501075745, + -0.009316762909293175, + 0.016807980835437775, + 0.0599297396838665, + -0.016462314873933792, + 0.009711037389934063, + 0.09652706980705261, + 0.07639205455780029, + -0.05725083500146866, + 0.02132323570549488, + -0.07306502759456635, + 0.001624357420951128, + -0.01374020054936409, + 0.018061017617583275, + -0.01599782705307007, + -0.04506612941622734, + 0.007847685366868973, + 0.054183054715394974, + -0.024520641192793846, + -0.008468803018331528, + 0.02382930926978588, + 0.07323785871267319, + 0.05772612243890762, + -0.044201966375112534, + 0.05098564922809601, + 0.13722917437553406, + 0.01315688993781805, + 0.05859028920531273, + 0.03011609986424446, + -0.022943541407585144, + 0.005209285765886307, + -0.024520641192793846, + -0.060534656047821045, + 0.03342152386903763, + 0.07505260407924652, + 0.04024841636419296, + -0.039319440722465515, + -0.030180910602211952, + 0.0653739720582962, + -0.08693484961986542, + 0.03532268479466438, + 0.015857400372624397, + -0.0036456899251788855, + 0.015252486802637577, + 0.004283010493963957, + -0.09765047580003738, + 0.030677804723381996, + -0.053016431629657745, + -0.030310535803437233, + 0.06848496198654175, + 0.001048473408445716, + -0.06299751996994019, + -0.001224006642587483, + -0.012854432687163353, + -0.01631108671426773, + 0.07462052255868912, + 0.04003237560391426, + -0.03383200243115425, + -0.09497157484292984, + -0.0010025646770372987, + 0.01735888421535492, + -0.029165519401431084, + -0.0026505514979362488, + -0.012271122075617313, + 0.025190366432070732, + -0.07112065702676773, + -0.025730468332767487, + 0.030829034745693207, + 0.008544417098164558, + 0.07142311334609985, + -0.04029162600636482, + -0.005849306937307119, + 0.011298938654363155, + -0.026789069175720215, + -0.03610043227672577, + -0.06018899008631706, + 0.031844425946474075, + 0.02128002792596817, + -0.011601395905017853, + -0.09574931859970093, + 0.06096673756837845, + -0.007258973550051451, + 0.06740475445985794, + -0.011698613874614239, + 0.0547015517950058, + 0.01851470395922661, + 0.0574236661195755, + -0.030677804723381996, + 0.025730468332767487, + -0.009505799040198326, + -0.005708880256861448, + 0.029316747561097145, + 0.01495002955198288, + -0.09341607987880707, + 0.01058060210198164, + -0.023245999589562416, + 0.05871991068124771, + 0.08157704025506973, + 0.03871452808380127, + -0.0007088841521181166, + -0.04631916433572769, + -0.00803672056645155, + -0.0323629230260849, + -0.002913851523771882, + 0.030332140624523163, + -0.04506612941622734, + -0.00047022648504935205, + 0.034177668392658234, + 0.11381033807992935, + 0.015176871791481972, + 0.03914660960435867, + -0.04502291977405548, + 0.012011873535811901, + -0.03538749739527702, + 0.07388598471879959, + 0.04515254497528076, + 0.0947987362742424, + -0.00439643207937479, + 0.005600859876722097, + -0.04014039784669876, + -0.05703479424118996, + -0.035581935197114944, + -0.028387771919369698, + 0.02123681828379631, + 0.026594633236527443, + 0.010288947261869907, + 0.004210096783936024, + -0.00745881162583828, + -0.057942163199186325, + 0.012973255477845669, + 0.03586278855800629, + -0.01879555732011795, + 0.05072639882564545, + 0.09618140012025833, + 0.0031839024741202593, + 0.022986749187111855, + 0.029295144602656364, + 0.005211986135691404, + -0.015846598893404007, + 0.048133909702301025, + 0.037051010876894, + -0.11726699024438858, + 0.03244934231042862, + -0.023094769567251205, + 0.06749117374420166, + 0.003686197567731142, + -0.005671073216944933, + 0.0072859786450862885, + 0.06852816790342331, + 0.06628134101629257, + 0.0680960863828659, + 0.03607882931828499, + -0.04342421889305115, + -0.01988656260073185, + 0.037915173918008804, + 0.024153370410203934, + -0.00744260847568512, + 0.026659445837140083, + -0.012616788037121296, + 0.021031580865383148, + 0.007820679806172848, + -0.015987025573849678, + 0.024412618950009346, + 0.06783683598041534, + 0.016602741554379463, + 0.037051010876894, + 0.0064272163435816765, + -0.03648930415511131, + -0.03845527768135071, + 0.017099635675549507, + -0.0421711802482605, + 0.03992435708642006, + -0.0396651066839695, + 0.008603828027844429, + -0.05660271272063255, + 0.046794455498456955, + 0.06481226533651352, + -0.0211396012455225, + 0.08252761512994766, + -0.05323247238993645, + -0.012119893915951252, + 0.017931394279003143, + 0.003540369914844632, + -0.010218733921647072, + 0.016818782314658165, + 0.048220325261354446, + -0.06662701070308685, + -0.14224131405353546, + 0.07621922343969345, + -0.0023818507324904203, + 0.006286789663136005, + -0.04834995046257973, + -0.03765592724084854, + 0.0211936105042696, + -0.02018902078270912, + 0.125303715467453, + -0.044504422694444656, + -0.11994589865207672, + 0.044245172291994095, + -0.026853881776332855, + -0.003121790708974004, + -0.0031352932564914227, + 0.06904666870832443, + -0.02629217505455017, + 0.02996486984193325, + 0.016667554154992104, + -0.00935456994920969, + 0.00867944210767746, + -0.05962728336453438, + 0.0399891659617424, + 0.09402099251747131, + -0.0234836433082819, + -0.03482579067349434, + -0.0601457804441452, + 0.01893598400056362, + 0.036726951599121094, + -0.07341068983078003, + 0.00016101797518786043, + -0.023029958829283714, + -0.0032838215120136738, + 0.029467975720763206, + 0.0503375269472599, + 0.013394534587860107, + -0.016980813816189766, + 0.04197674244642258, + -0.04210636764764786, + 0.07440447807312012, + -0.04459083825349808, + -0.03504183143377304, + 0.04383469372987747, + 0.11311900615692139, + 0.016959208995103836, + 0.040334831923246384, + 0.08006475120782852, + -0.03571155667304993, + 0.011925457045435905, + -0.02002698928117752, + 0.006324596703052521, + 0.0017121239798143506, + 0.0014515246730297804, + 0.05081281438469887, + -0.0023602466098964214, + 0.08572502434253693, + 0.018028611317276955, + -0.022965146228671074, + 0.03739667683839798, + 0.01249796524643898, + -0.022662688046693802, + -0.007669451180845499, + 0.03527947515249252, + -0.0645098090171814, + -0.10032938420772552, + -0.0626518577337265, + -0.007496618665754795, + 0.03653251379728317, + -0.025341596454381943, + -0.02251145988702774, + -0.03858490288257599, + -0.04731295257806778, + 0.051763396710157394, + -0.036856573075056076, + -0.025298386812210083, + -0.028452584519982338, + 0.06796646118164062, + 0.0007966507691890001, + 0.01620306633412838, + -0.0001217761673615314, + 0.008290569297969341, + 0.017110437154769897, + -0.07950304448604584, + 0.028322959318757057, + -0.057855747640132904, + 0.08451519161462784, + 0.06381847709417343, + -0.07086140662431717, + 0.021625692024827003, + 0.01316769141703844, + 0.009154732339084148, + -0.07155273854732513, + -0.040788520127534866, + -0.011234126053750515, + -0.05141773074865341, + -0.02105318382382393, + 0.0236996840685606, + -0.07323785871267319, + 0.007588435895740986, + 0.08101533353328705, + 0.04865240678191185, + 0.01989736594259739, + 0.07544147968292236, + -0.010126916691660881, + 0.011493374593555927, + -0.07604639232158661, + -0.006459622643887997, + -0.04147984832525253, + -0.06602209061384201, + -0.019130419939756393, + -0.0030110697261989117, + 0.012616788037121296, + 0.0014353216392919421, + -0.0544855110347271, + 0.045671042054891586, + -0.03839046508073807, + 0.08006475120782852, + -0.04402913153171539, + 0.047874659299850464, + -0.03698619827628136, + -0.015328100882470608, + -0.000865513808093965, + 0.033248692750930786, + -0.06455301493406296, + 0.00503105204552412, + 0.023418832570314407, + -0.10542795062065125, + 0.028971081599593163, + -0.004496350884437561, + 0.009133128449320793, + 0.014593562111258507, + 0.003853629343211651, + 0.02994326688349247, + -0.013696991838514805, + 0.025644052773714066, + -0.037785548716783524, + 0.011568989604711533, + 0.08002154529094696, + -0.03478258103132248, + -0.031887635588645935, + -0.04882523790001869, + 0.001564946142025292, + 0.01981094852089882, + -0.001894408487714827, + -0.08084249496459961, + 0.005946525372564793, + 0.044374797493219376, + -0.10369962453842163, + -0.04873882234096527, + -0.010121515020728111, + 0.012984056957066059, + -0.00018110302335117012, + -0.02510395087301731, + 0.026897089555859566, + -0.03599241003394127, + -0.011082896962761879, + -0.04770182818174362, + -0.015241684392094612, + 0.05085602402687073, + -0.002524977782741189, + -0.020448269322514534, + 0.04722653701901436, + -0.01768294721841812, + 0.025968113914132118, + -0.06075069680809975, + -0.0036537915002554655, + -0.04701049625873566, + -0.14008091390132904, + -0.023159582167863846, + 0.02385091409087181, + 0.0010923567460849881, + -0.11242767423391342, + -0.02642180025577545, + 0.00463137635961175, + -0.03743988648056984, + -0.003005668753758073, + -0.027826065197587013, + -0.005870910827070475, + 0.05089923366904259, + 0.04523896053433418, + 0.01437752041965723, + -0.02728596329689026, + 0.03972991928458214, + -0.04340261220932007, + -0.054226260632276535, + 0.01728327013552189, + 0.03288142383098602, + -0.02143125608563423, + -0.02367808111011982, + -0.02130163088440895, + -0.011968664824962616, + -0.02890627086162567, + 0.046664830297231674, + 0.007761268876492977, + -0.018201444298028946, + 0.0010923567460849881, + -0.03962189704179764, + -0.05336209759116173, + -0.0046070716343820095, + 0.1023169606924057, + -0.02877664566040039, + 0.03372398018836975, + 0.005446930881589651, + -0.03750469908118248, + -0.07565751671791077, + 0.0118498420342803, + -0.05751008167862892, + 0.025384804233908653, + -0.00039157411083579063, + 0.03015930764377117, + 0.06641096621751785, + 0.01739129051566124, + 0.017834175378084183, + 0.013448544777929783, + -0.06351602077484131, + 0.019206034019589424, + 0.1310936063528061, + -0.022684292867779732, + -0.006999724544584751, + 0.03333510830998421, + 0.022921938449144363, + 0.0703861191868782, + 0.004941935185343027, + 0.04070210084319115, + 0.025708865374326706, + -0.04657841473817825, + -0.002876044251024723, + -0.06476905941963196, + 0.010051301680505276, + 0.009473392739892006, + -0.0009782601846382022, + 0.027761254459619522, + -0.05120168998837471, + -0.0804104134440422, + 0.023116374388337135, + 0.011406959034502506, + 0.05120168998837471, + -0.04852278158068657, + 0.018071819096803665, + 0.008468803018331528, + -0.03774234279990196, + 0.018352672457695007, + -0.03339992091059685, + -0.02622736245393753, + 0.03154196962714195, + -0.03733186423778534, + 0.019108816981315613, + -0.020955964922904968, + -0.03756950795650482, + 0.05383738875389099, + 0.06796646118164062, + 0.02112879790365696, + 0.035581935197114944, + 0.05591138079762459, + 0.06839854270219803, + -0.02359166368842125, + -0.013146087527275085, + -0.049343738704919815, + -0.005460433196276426, + 0.003081283066421747, + -0.020610300824046135, + 0.10974876582622528, + -0.021960556507110596, + -0.06416413933038712, + -0.029381560161709785, + -0.006751277483999729, + 0.007745065726339817, + 0.02605453133583069, + -0.060577861964702606, + 0.05500400811433792, + -0.007480415515601635, + 0.044418007135391235, + 0.03709422051906586, + -0.08818788826465607 + ] + }, + { + "id": "f909affe-758c-4f62-a8bf-51b4788c710d", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "saranewman", + "reviewDate": "2021-12-29T17:03:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4b8bcd6c-4fde-4784-81b1-96e65ae91eae", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rodriguezjoshua", + "reviewDate": "2021-05-07T13:25:29", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b3374d32-43bb-4ae4-83ed-ec8826d5abd8", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennafoster", + "reviewDate": "2022-12-14T06:44:43", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2663d4c3-bbe8-467e-a824-493950178817", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "todd54", + "reviewDate": "2022-12-05T10:48:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a3703f34-490f-4e15-b3a6-785f88afe3cc", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bthomas", + "reviewDate": "2021-01-18T15:31:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a5005f4d-c660-4794-bbc3-6d993c9c82b8", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gtucker", + "reviewDate": "2021-04-16T09:24:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5367a4dd-c21d-436c-b630-3bb9cfba04a3", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mark04", + "reviewDate": "2022-06-17T03:32:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a63860db-12f3-4c07-a78c-260ef2fbac5c", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "krivas", + "reviewDate": "2021-03-12T16:33:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8ac8fbf9-e2f3-4998-9ec1-233510c87428", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "haley08", + "reviewDate": "2022-11-09T01:08:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "886b3fc2-3fc9-4b5e-b10b-a7e16a597197", + "productId": "f310e8c1-94fc-40c2-aa81-3d7d73b0d2bb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aprilvincent", + "reviewDate": "2022-01-19T12:42:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Super (Red)", + "description": "This Basic Phone Super (Red) is not even remotely resembling its other devices. Most notably, its basic Android OS is a complete mess, but is capable of performing numerous tasks without having to worry about crashing it.\n\nThe only thing missing from this phone is a bit of a battery that, if filled properly, can be filled up to 10 times, so that with a quick glance at the screen you can quickly get a", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-09-23T09:11:17", + "price": 148.15, + "stock": 94, + "priceHistory": [ + { + "priceDate": "2021-01-15T17:37:18", + "newPrice": 159.54 + }, + { + "priceDate": "2022-12-16T17:37:18", + "newPrice": 147.95 + }, + { + "priceDate": "2023-03-05T17:37:18", + "newPrice": 148.15 + } + ], + "descriptionVector": [ + -0.02542491815984249, + 0.041330620646476746, + -0.008618388324975967, + 0.07696046680212021, + -0.0022991334553807974, + 0.015811583027243614, + -0.025277022272348404, + -0.045740652829408646, + 0.03267189487814903, + 0.02828875184059143, + 0.07389495521783829, + -0.07620753347873688, + -0.009122584946453571, + -0.061041317880153656, + 0.09164264798164368, + 0.04450369253754616, + -0.0572766549885273, + -0.0096267806366086, + 0.04237934574484825, + 0.010487275198101997, + 0.06996894627809525, + -0.09180399030447006, + -0.04350874572992325, + 0.03259122371673584, + -0.010628449730575085, + 0.033424828201532364, + -0.031139139086008072, + 0.0055427937768399715, + 0.00097393844043836, + -0.04095415398478508, + -0.0029848397243767977, + 0.029310589656233788, + 0.006873870734125376, + 0.057760681957006454, + 0.015986371785402298, + 0.09702073782682419, + 0.03388196602463722, + -0.07470166683197021, + 0.041895318776369095, + 0.018890539184212685, + 0.044772595167160034, + 0.030009740963578224, + 0.028718998655676842, + 0.01730400323867798, + 0.0034890356473624706, + -0.03433910384774208, + -0.007959572598338127, + -0.010285596363246441, + -0.008161251433193684, + -0.03334415704011917, + 0.026567762717604637, + 0.0068974001333117485, + -0.004890700336545706, + 0.022480415180325508, + 0.06808661669492722, + 0.05856739729642868, + 0.022547641769051552, + 0.04224489629268646, + -0.01759979873895645, + -0.0539422407746315, + -0.03799620270729065, + -0.04081970080733299, + 0.019334232434630394, + 0.022950997576117516, + -0.031650058925151825, + 0.031004687771201134, + -0.04383143037557602, + -0.024860220029950142, + 0.010601559653878212, + 0.05232881382107735, + -0.04081970080733299, + 0.044772595167160034, + -0.020880432799458504, + 0.05759933963418007, + -0.04479948803782463, + 0.02268209308385849, + 0.03267189487814903, + 0.010110808536410332, + 0.05878252163529396, + -0.005038597621023655, + 0.032537441700696945, + 0.03899114951491356, + 0.024524088948965073, + -0.047407861799001694, + 0.016443509608507156, + -0.01051416527479887, + 0.0683017373085022, + -0.09965600073337555, + -0.017922483384609222, + 0.03267189487814903, + 0.030520658940076828, + 0.0318920724093914, + 0.0045512085780501366, + 0.05128008499741554, + 0.1100894957780838, + 0.05953545123338699, + -0.035307157784700394, + 0.04912884905934334, + -0.033290375024080276, + 0.017788032069802284, + 0.07201261818408966, + -0.0016831740504130721, + -0.054668281227350235, + 0.049155738204717636, + 0.03560295328497887, + 0.009115861728787422, + 0.03928694501519203, + -0.05265149846673012, + 0.02222495526075363, + -0.035522282123565674, + -0.009277204982936382, + 0.020100610330700874, + -0.0429440476000309, + 0.00229745265096426, + -0.043885212391614914, + -0.024510644376277924, + 0.01958969235420227, + 0.016672078520059586, + 0.05512541905045509, + 0.020530857145786285, + 0.03283323720097542, + 0.06200937554240227, + -0.05448004975914955, + 0.0068436190485954285, + -0.01727711223065853, + -0.04041634500026703, + 0.08067134767770767, + -0.025599706918001175, + 0.044960830360651016, + -0.04837591573596001, + -0.019993048161268234, + 0.05370022729039192, + 0.0891687273979187, + 0.031784508377313614, + 0.029014794155955315, + 0.04095415398478508, + -0.027051791548728943, + 0.055770788341760635, + -0.04124994948506355, + 0.09486950188875198, + 0.008927629329264164, + 0.028261860832571983, + 0.07744449377059937, + 0.005556238815188408, + -0.00791923701763153, + 0.07679911702871323, + -0.051011182367801666, + 0.008746118284761906, + -0.009882239624857903, + 0.05684640631079674, + -0.03839955851435661, + -0.12391118705272675, + 0.032752566039562225, + -0.06044972687959671, + -0.03834578022360802, + 0.01784181222319603, + -0.10336688160896301, + -0.008080579340457916, + -0.0650211051106453, + 0.041357509791851044, + -0.016981318593025208, + -0.0034033223055303097, + 0.04506839066743851, + -0.1233733743429184, + -0.020073719322681427, + -0.038157545030117035, + 0.041142385452985764, + 0.06351523846387863, + -0.018406512215733528, + 0.03130048140883446, + -0.02577449567615986, + 0.039125602692365646, + -0.0649673268198967, + -0.03420465067028999, + -0.014104040339589119, + 0.01586536504328251, + 0.06313877552747726, + 0.023394690826535225, + 0.007018406875431538, + -0.050043124705553055, + 0.06970003992319107, + -0.011704067699611187, + -0.0748630091547966, + -0.05980435758829117, + -0.02651398256421089, + 0.042460016906261444, + -0.047192737460136414, + -0.022265290841460228, + -0.060718633234500885, + 0.024739213287830353, + 0.002884000539779663, + -0.04875238239765167, + -0.019132554531097412, + 0.011872133240103722, + 0.08610321581363678, + -0.05985813960433006, + -0.01694098301231861, + 0.02566693350672722, + -0.007925959303975105, + -0.021996386349201202, + -0.0014008242869749665, + 0.07739070802927017, + 0.088039331138134, + -0.019414903596043587, + -0.02223840169608593, + 0.0008999896817840636, + 0.022211510688066483, + 0.04692383110523224, + 0.026500536128878593, + 0.018850203603506088, + 0.05044648051261902, + -0.07029163092374802, + -0.002969713881611824, + -0.007361260242760181, + 0.12036164849996567, + 0.023650148883461952, + -0.024645095691084862, + -0.06313877552747726, + 0.016134269535541534, + -0.06840930134057999, + 0.03490380197763443, + -0.001862163539044559, + 0.01628216728568077, + 0.01204692106693983, + -0.04415411502122879, + -0.047622982412576675, + 0.10535677522420883, + 0.04609023034572601, + 0.021324126049876213, + 0.047730546444654465, + 0.038695354014635086, + -0.03095090575516224, + 0.039367616176605225, + -0.03944828733801842, + -0.047838106751441956, + 0.09755855053663254, + 0.018648525699973106, + 0.016443509608507156, + -0.1950095295906067, + 0.07093700021505356, + 0.011253653094172478, + 0.02520979568362236, + -0.04549863934516907, + -0.10492652654647827, + 0.1452084183692932, + -0.02442997321486473, + -0.005438593216240406, + -0.0065780761651694775, + -0.05074227601289749, + -0.03423153981566429, + -0.002191571518778801, + -0.06555891036987305, + -0.037270162254571915, + 0.028665218502283096, + 0.023972835391759872, + -0.005199940409511328, + 0.06512866914272308, + -0.03982475399971008, + -0.015233439393341541, + 0.0065074884332716465, + 0.03358617052435875, + 0.027804723009467125, + -0.02159303054213524, + 0.013848581351339817, + -0.05625481903553009, + 0.11605917662382126, + 0.06012704223394394, + -0.049720440059900284, + -0.006305810064077377, + 0.060718633234500885, + 0.028665218502283096, + 0.024739213287830353, + 0.04579443484544754, + 0.01983170583844185, + -0.005556238815188408, + 0.02178126387298107, + -0.05243637412786484, + 0.04141129180788994, + -0.005068849306553602, + 0.013714129105210304, + 0.10815338045358658, + 0.015219993889331818, + 0.10030137002468109, + -0.05528676137328148, + 0.04479948803782463, + 0.0010747775668278337, + -0.026661880314350128, + -0.008672169409692287, + 0.017814921215176582, + -0.02574760466814041, + -0.06442951411008835, + 0.023757711052894592, + -0.024147622287273407, + 0.0031562664080411196, + 0.022077057510614395, + 0.002277284860610962, + 0.04444991052150726, + -0.08508137613534927, + 0.039905425161123276, + 0.03347860649228096, + 0.04106171429157257, + -0.030735783278942108, + -0.00936459843069315, + -0.06674209237098694, + 0.08836201578378677, + 0.03597941994667053, + 0.015179658308625221, + 0.04361630603671074, + -0.04579443484544754, + 0.014130930416285992, + 0.07507812976837158, + -0.04985488951206207, + -0.012873802334070206, + -0.06797905266284943, + 0.04235245659947395, + -0.0036940753925591707, + 0.031999632716178894, + 0.0015630073612555861, + 0.0198182612657547, + -0.010137698613107204, + 0.01837962120771408, + -0.05491029471158981, + -0.009068803861737251, + 0.05437248572707176, + 0.05297418311238289, + -0.044880159199237823, + -0.0616329088807106, + -0.02740136720240116, + -0.043885212391614914, + 0.0021932520903646946, + 0.018903985619544983, + 0.0627085268497467, + 0.019952712580561638, + 0.031004687771201134, + 0.009001577273011208, + -0.004349530208855867, + 0.10057027637958527, + 0.04918263107538223, + 0.02752237394452095, + 0.019401459023356438, + 0.03807687386870384, + 0.04996245354413986, + -0.058298490941524506, + -0.02038295939564705, + 0.034070197492837906, + -0.013142706826329231, + -0.0671723410487175, + -0.015031760558485985, + 0.010877186432480812, + -0.04103482514619827, + 0.0017209886573255062, + -0.030897125601768494, + 0.09325607866048813, + 0.017788032069802284, + 0.047300297766923904, + 0.02853076532483101, + -0.00018602727504912764, + -0.048268355429172516, + 0.016900647431612015, + -0.02445686236023903, + 0.03183829039335251, + -0.02687700279057026, + 0.08561918884515762, + 0.03600630909204483, + -0.024187957867980003, + 0.06448329240083694, + -0.019401459023356438, + 0.06588159501552582, + -0.0351995974779129, + -0.01751912757754326, + 0.06674209237098694, + 0.04990867152810097, + -0.06222449615597725, + -0.01583847403526306, + -0.018231723457574844, + 0.038157545030117035, + -0.0010789792286232114, + -0.0264198649674654, + -0.028557656332850456, + 0.041572634130716324, + -0.014951089397072792, + 0.0005121789872646332, + -0.04606333747506142, + 0.0016176284989342093, + 0.044960830360651016, + -0.02543836459517479, + -0.04063146933913231, + -0.01245027780532837, + 0.0011806586990132928, + 0.05953545123338699, + -0.038587793707847595, + -0.029203027486801147, + -0.002949546091258526, + 0.0869637131690979, + 0.008591498248279095, + 0.018339285627007484, + -0.0770142450928688, + -0.015031760558485985, + 0.02047707699239254, + -0.0637841448187828, + 0.04020122066140175, + 0.026124071329832077, + 0.002260478213429451, + -0.028880340978503227, + -0.0220367219299078, + -0.04781121760606766, + 5.288804823067039e-05, + -0.020880432799458504, + -0.09825769811868668, + -0.08104781061410904, + 0.004810029175132513, + 0.004722634796053171, + 0.004803306423127651, + 0.019562801346182823, + -0.01617460511624813, + 0.0017814922612160444, + -0.010090640746057034, + 0.01807038113474846, + 0.023193011060357094, + 0.045202843844890594, + -0.055770788341760635, + 0.04334740340709686, + 0.02081320621073246, + 0.013848581351339817, + -0.010823405347764492, + 0.01547545287758112, + 0.0028083710931241512, + -0.013183042407035828, + -0.05219436064362526, + -0.07787473499774933, + -0.005778084974735975, + -0.0036974367685616016, + 0.018204834312200546, + -0.006695721764117479, + -0.024497197940945625, + 0.011522557586431503, + -0.0594816729426384, + -0.004094070754945278, + -0.049478426575660706, + -0.0018335924251005054, + -0.010144421830773354, + 0.05668506398797035, + -0.038157545030117035, + 0.06152534484863281, + -0.14886552095413208, + -0.01458806823939085, + -0.04485326632857323, + 0.04272892326116562, + 0.004272220190614462, + 0.007213362958282232, + -0.04194910079240799, + 0.017478791996836662, + 0.02775094285607338, + 0.014413280412554741, + 0.003332735039293766, + -0.030977796763181686, + 0.010487275198101997, + -0.0009201575303450227, + -0.06211693584918976, + -0.008309148252010345, + -0.060395948588848114, + -0.014803191646933556, + -0.002431904897093773, + -0.02445686236023903, + 0.010151144117116928, + 0.00918981060385704, + 0.01107214204967022, + -0.013835135847330093, + 0.0014285551151260734, + -0.0006718410295434296, + -0.03678613528609276, + -0.10218370705842972, + -0.03210719674825668, + 0.02280309982597828, + 0.01117298100143671, + -0.008618388324975967, + -0.030413096770644188, + -0.013969588093459606, + -0.016981318593025208, + -0.03390885517001152, + -0.017895594239234924, + 0.005364644341170788, + -0.004991539288312197, + -0.042997825890779495, + 0.06233206018805504, + -0.018137607723474503, + -0.008941073901951313, + -0.02775094285607338, + -0.0006768830353394151, + -0.002082329010590911, + 0.025693822652101517, + 0.0836292952299118, + -0.05668506398797035, + -0.010433494113385677, + -0.034715570509433746, + -0.04017433151602745, + 0.03468867763876915, + -0.05095740035176277, + -0.02455097995698452, + -0.0051259915344417095, + -0.005539432168006897, + -0.044745706021785736, + -0.0048335581086575985, + 0.030735783278942108, + -0.019777925685048103, + -0.017882147803902626, + 0.02455097995698452, + 0.05899764224886894, + 0.02135101519525051, + -0.05386156961321831, + 0.04875238239765167, + -0.06771014630794525 + ] + }, + { + "id": "a4fa1af8-9bce-4839-93fa-9e6fa7cf9ee7", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "tgilbert", + "reviewDate": "2022-04-24T07:37:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "270b0805-6661-4db4-b707-ba6286473693", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanieball", + "reviewDate": "2021-01-15T17:37:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "80cd2b86-74b0-4d22-aab4-efe39a3f0141", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "tiffanyjordan", + "reviewDate": "2021-05-08T07:44:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "775745a3-d7e9-45ca-a5eb-3239fd41e28c", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "bfowler", + "reviewDate": "2022-05-12T13:46:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d8d0bd18-3847-4733-aca0-8b40a6e2a140", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "dominiclong", + "reviewDate": "2021-11-30T20:37:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a4731ff5-d24f-4cdd-9f48-c1c24358c8e1", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "adam92", + "reviewDate": "2022-07-23T20:18:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "77dcbb68-f4a8-40b5-a220-77bebc7a44a7", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael08", + "reviewDate": "2021-02-01T11:59:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "342d1def-2c98-4d9c-9e84-f257a7c0b4ac", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "pking", + "reviewDate": "2022-12-17T07:50:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b3f8364c-0ddc-43e2-91b5-9131d8a1cb0b", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "imoore", + "reviewDate": "2022-10-28T05:22:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c35fbe68-9a23-4917-ba13-247643d17370", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "lawrence16", + "reviewDate": "2022-04-06T23:02:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "68b5eebf-2371-4254-ad67-bdd55185643f", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "garygarrison", + "reviewDate": "2021-11-26T16:04:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b4f0f251-9273-4bde-bbcb-1f467cffc6fd", + "productId": "546cf98e-d58e-4fd8-9727-f4b299620deb", + "category": "Electronics", + "docType": "customerRating", + "userName": "jose37", + "reviewDate": "2021-11-27T20:29:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Super (Silver)", + "description": "This Awesome Filter Super (Silver) is rated 4.8 out of 5 by 23.\n\nRated 5 out of 5 by Jeff from Easy to use and very convenient I need a new pair of filters to replace my filter. They are easy and convenient.\n\nRated 5 out of 5 by Paul from Great Service Customer service was great, and I would recommend to others!!\n\nRated 5 out of 5 by Jim", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-06-29T13:12:51", + "price": 707.32, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-03-11T18:53:51", + "newPrice": 683.43 + }, + { + "priceDate": "2024-09-25T18:53:51", + "newPrice": 707.32 + } + ], + "descriptionVector": [ + 0.018999002873897552, + 0.033339593559503555, + -0.017685970291495323, + 0.04295327141880989, + -0.007489991374313831, + -0.03555462136864662, + -0.034595537930727005, + -0.0003584077931009233, + 0.016235925257205963, + 0.07599601149559021, + -0.01483155321329832, + -0.041628822684288025, + -0.04493994638323784, + 0.016863897442817688, + -0.002854417311027646, + -0.003345377277582884, + -0.054941825568675995, + 0.02065456472337246, + -0.023680247366428375, + 0.00799807719886303, + 0.022230202332139015, + -0.0006925530033186078, + -0.05987425893545151, + -0.004076107870787382, + 0.012022806331515312, + 0.02216169610619545, + -0.03726727515459061, + 0.03706175461411476, + -0.006142706144601107, + -0.05133384093642235, + 0.03329392522573471, + 0.02660316973924637, + -0.0006365350564010441, + 0.08389703929424286, + 0.00741577660664916, + 0.02975444681942463, + 0.01972973346710205, + -0.0009248312562704086, + -0.020825829356908798, + 0.11225853115320206, + -0.021202612668275833, + -0.0631168782711029, + -0.04261074215173721, + 0.029229234904050827, + -0.005314925219863653, + -0.04982671141624451, + -0.007609876804053783, + -0.014272087253630161, + -4.901569991488941e-05, + 0.01582488976418972, + 0.036376696079969406, + -0.02461649477481842, + -0.018576547503471375, + -0.030804872512817383, + 0.035851482301950455, + 0.025096038356423378, + -0.027859114110469818, + 0.13600727915763855, + 0.06549175083637238, + -0.05877816304564476, + -0.03027966059744358, + -0.0961824506521225, + 0.03968781977891922, + -0.02237863279879093, + -0.08243557810783386, + 0.012479512952268124, + -0.06804931163787842, + 0.0066450838930904865, + 0.037632640451192856, + -0.0009369624895043671, + 0.0042702085338532925, + 0.05827578529715538, + 0.021921925246715546, + 0.055809568613767624, + 0.01635010354220867, + 0.0205403883010149, + 0.13947825133800507, + -0.08412539213895798, + -0.04443756863474846, + 0.01412365771830082, + 0.032586030662059784, + -0.0071588787250220776, + 0.0158819779753685, + 0.06987613439559937, + 0.06740991771221161, + -0.014671705663204193, + -0.016452861949801445, + -0.1312575340270996, + -0.004963831976056099, + 0.00822072196751833, + -0.009248312562704086, + -0.008352025412023067, + -0.024045612663030624, + -0.043752510100603104, + 0.011240695603191853, + 0.01624734327197075, + -0.07051552832126617, + 0.0072844731621444225, + -0.044643089175224304, + 0.03703891858458519, + -0.04044138640165329, + -0.057590726763010025, + -0.028315819799900055, + 0.02573542669415474, + -0.0024019922129809856, + 0.012879131361842155, + 0.012844878248870373, + -0.07293607294559479, + -0.04055556282401085, + -0.12833461165428162, + 0.0310332253575325, + -0.037632640451192856, + -0.023075109347701073, + -0.0018425264861434698, + 0.00445860018953681, + -0.01917026750743389, + -0.04418637976050377, + 0.029937129467725754, + 0.054713472723960876, + 0.036742061376571655, + -0.018553713336586952, + 0.06818632036447525, + 0.05316067114472389, + 0.04708646982908249, + 0.050192076712846756, + 0.028567008674144745, + 0.04964402690529823, + -0.025666920468211174, + 0.08924050629138947, + -0.023132199421525, + -0.03966498374938965, + -0.031170237809419632, + -0.017594628036022186, + -0.021339625120162964, + -0.10248500108718872, + 0.02623780444264412, + 0.04057839885354042, + 0.11518145352602005, + -0.03665072098374367, + 0.0085289990529418, + -0.024822013452649117, + -0.05284097418189049, + 0.03144426271319389, + -0.014306340366601944, + 0.028658350929617882, + -0.010595597326755524, + -0.013278749771416187, + 0.025803932920098305, + -0.020974259823560715, + -0.0200950987637043, + 0.06398461759090424, + -0.08668294548988342, + -0.03153560310602188, + -0.06288852542638779, + -0.007495699916034937, + 0.06480669230222702, + -0.03544044494628906, + 0.08028905093669891, + -0.014511858113110065, + 0.021077018231153488, + -0.0602852962911129, + -0.03128441423177719, + -0.0428619310259819, + -0.0012109866365790367, + -0.005603221245110035, + 0.07311875373125076, + 0.049050308763980865, + 0.0011496165534481406, + -0.07293607294559479, + 0.02486768364906311, + 0.00272454135119915, + -0.018462371081113815, + 0.03790666162967682, + -0.03413883224129677, + -0.010041840374469757, + 0.04813689365983009, + -0.03180962800979614, + -0.04873061552643776, + -0.041103608906269073, + -0.01223974209278822, + -0.009031376801431179, + 0.0267401821911335, + -0.04336430877447128, + -0.05937188118696213, + 0.04859360307455063, + -0.04459741711616516, + 0.019992340356111526, + -0.04660692811012268, + 0.02813313715159893, + 0.04450607672333717, + -0.03676489740610123, + 0.009807778522372246, + 0.018610801547765732, + 0.01630443148314953, + -0.034321513026952744, + 0.02291526272892952, + -0.034709714353084564, + 0.02374875359237194, + -0.01275353692471981, + -0.03436718508601189, + -0.011805870570242405, + 0.02986862324178219, + 0.0653090700507164, + -0.06275150924921036, + 0.08120246976613998, + 0.04781720042228699, + 0.07910161465406418, + 0.06544607877731323, + -0.005092280451208353, + 0.020426210016012192, + 0.017708806321024895, + -0.044003698974847794, + -0.016818227246403694, + 0.0021707843989133835, + 0.01984390988945961, + 0.05361737683415413, + -0.06978479772806168, + -0.01563078910112381, + -0.02788194827735424, + 0.00794098898768425, + 0.038751572370529175, + -0.03137575462460518, + 0.020643146708607674, + -0.010310155339539051, + -0.003930532839149237, + -0.09992744773626328, + -0.023771587759256363, + -0.007421485148370266, + 0.07992368936538696, + 0.064989373087883, + 0.023314882069826126, + -0.04347848519682884, + -0.04500845447182655, + 0.03242618218064308, + -0.022595567628741264, + -0.006325388792902231, + -0.09910537302494049, + -0.04379818215966225, + -0.006450983230024576, + 0.013929557055234909, + 0.012068476527929306, + 0.02938908152282238, + -0.06348223984241486, + -0.03555462136864662, + 0.08238990604877472, + -0.05288664624094963, + 0.04009885713458061, + -0.0011196451960131526, + -0.057773407548666, + -0.006074200384318829, + -0.07321009784936905, + -0.010972380638122559, + -0.07800551503896713, + 0.07416918128728867, + 0.03984766826033592, + 0.06640516966581345, + 0.018553713336586952, + 0.007798268459737301, + -0.08892080932855606, + -0.039870500564575195, + -0.0065194894559681416, + 0.048684943467378616, + 0.06407596170902252, + 0.048410918563604355, + -0.04592186585068703, + -0.05060311034321785, + 0.01342717930674553, + -0.002008082577958703, + -0.019855327904224396, + 0.04637857526540756, + -0.020951423794031143, + 0.06357358396053314, + 0.016315849497914314, + 0.004176012706011534, + -0.023908600211143494, + -0.03217499330639839, + -0.0427020825445652, + 0.0058458466082811356, + 0.03011981211602688, + -0.01109226606786251, + 0.11600352078676224, + 0.0024062739685177803, + 0.028292985633015633, + 0.0038877164479345083, + 0.10358110070228577, + -0.03238051012158394, + -0.02964027039706707, + -0.03128441423177719, + -0.008557543158531189, + 0.03651370853185654, + -0.03203798085451126, + 0.027539419010281563, + 0.014683122746646404, + -0.028087466955184937, + 0.007318726275116205, + 0.025278721004724503, + 0.09727854281663895, + -0.0013865332584828138, + -0.021636484190821648, + -0.0019838199950754642, + 0.005483335815370083, + 0.06252315640449524, + -0.09727854281663895, + -0.03244901821017265, + -0.006108453031629324, + 0.009271147660911083, + -0.003961931448429823, + 0.02260698564350605, + -0.05425676703453064, + -0.06439565867185593, + 0.048547931015491486, + 0.012148400768637657, + 0.024410977959632874, + 0.018987584859132767, + 0.10065817832946777, + 0.014237834140658379, + -0.06581144779920578, + 0.04267925024032593, + -0.0002986434265039861, + -0.014477605000138283, + -0.020860081538558006, + 0.04334147274494171, + -0.0212711188942194, + 0.07206833362579346, + 0.013529938645660877, + 0.00578304985538125, + -0.03439002111554146, + -0.009636512957513332, + -0.0016355811385437846, + 0.022903844714164734, + 0.09380757063627243, + 0.008494745939970016, + -0.03418450430035591, + 0.04836525022983551, + 0.025461403653025627, + -0.08513014763593674, + -0.012353918515145779, + 0.011783035472035408, + -0.021533725783228874, + 0.04142330586910248, + -0.002980011748149991, + -0.07051552832126617, + 0.009316818788647652, + 0.030690696090459824, + 0.07686375081539154, + -0.04612738639116287, + 0.04082958772778511, + -0.04914164915680885, + 0.004541378002613783, + 0.0018724978435784578, + 0.0010982371168211102, + -0.06859736144542694, + 0.01086962129920721, + -0.0023020876105874777, + 0.05238426849246025, + -0.012342500500380993, + 0.023451892659068108, + -0.014180745929479599, + 0.06005694344639778, + -0.03831769898533821, + 0.05567255616188049, + -0.014991399832069874, + 0.002334913471713662, + 0.0015870560891926289, + -0.014237834140658379, + 0.07069820910692215, + -0.06403028964996338, + 0.025438567623496056, + -0.017925741150975227, + -0.07197698950767517, + -0.07193131744861603, + 0.020471882075071335, + 0.006799222435802221, + 0.035714469850063324, + -0.0017340586055070162, + -0.06791229546070099, + -0.0032997066155076027, + -0.04247372969985008, + 0.009790651500225067, + 0.041491810232400894, + 0.05151652544736862, + 0.035623129457235336, + -0.035737305879592896, + -0.037609804421663284, + 0.023314882069826126, + 0.01557370088994503, + -0.04279342666268349, + 0.06051364913582802, + -0.021876255050301552, + 0.020437628030776978, + -0.06891705095767975, + -0.010156016796827316, + -0.020825829356908798, + -0.04822823777794838, + -0.009168388321995735, + -0.001959557645022869, + -0.010544218122959137, + 0.062112122774124146, + 0.07394082844257355, + -0.07307308167219162, + 0.0005305648082867265, + 0.038614559918642044, + -0.0022064647637307644, + -0.04555650055408478, + -0.02749374881386757, + -0.03381913900375366, + 4.7677691327407956e-05, + 0.028681185096502304, + -0.046036042273044586, + -0.06393895298242569, + -0.01690956950187683, + -0.03128441423177719, + 0.01738911122083664, + 0.00869455561041832, + 0.02461649477481842, + 0.08832709491252899, + 0.0638476088643074, + 0.011269239708781242, + 0.1097923144698143, + -0.05612926557660103, + -0.012525183148682117, + 0.09444696456193924, + 0.07453455030918121, + 0.06850601732730865, + 0.047771528363227844, + 0.04836525022983551, + -0.006165541708469391, + 0.04649275168776512, + 0.013895303942263126, + -0.04642424359917641, + -0.006108453031629324, + 0.0014507576124742627, + -0.014112239703536034, + 0.03311124071478844, + -0.06832333654165268, + 0.016372937709093094, + 0.027927620336413383, + 0.020380539819598198, + -0.04626439884305, + -0.03315691277384758, + 0.004247372969985008, + -0.008397695608437061, + -0.030576519668102264, + -0.015836307778954506, + -0.11189316213130951, + -0.08535850048065186, + -0.06188376992940903, + 0.09079331159591675, + 0.011229277588427067, + -0.03564596548676491, + -0.017046580091118813, + 0.03628535568714142, + -0.04863927140831947, + -0.07074388116598129, + -0.049050308763980865, + 0.037472791969776154, + 0.021704990416765213, + 0.11792169511318207, + 0.006068491376936436, + -0.06654217839241028, + -0.05932621285319328, + 0.06389328092336655, + -0.021008512005209923, + 0.014363428577780724, + 0.04473442956805229, + -0.025598416104912758, + -0.0843537449836731, + -0.04649275168776512, + 0.01342717930674553, + -0.003105606185272336, + 0.0011945737060159445, + -0.013518520630896091, + 0.0011831560404971242, + 0.00016546700499020517, + -0.03299706429243088, + 0.05663163959980011, + 0.023954270407557487, + 0.012079894542694092, + 0.10924426466226578, + 0.019626973196864128, + -0.0008249266538769007, + 0.027859114110469818, + -0.00675355177372694, + 0.03231200575828552, + 0.05037475749850273, + -0.01995808631181717, + 0.03327108919620514, + 0.012296830303966999, + 0.08860111236572266, + 0.043889522552490234, + -0.003211219562217593, + 0.03676489740610123, + -0.04624156281352043, + -0.05891517549753189, + -0.027859114110469818, + -0.006439565680921078, + -0.04535098373889923, + -0.017857234925031662, + -0.029183562844991684, + -0.007946697995066643, + 0.06585711985826492, + -0.010641268454492092, + -0.03219782933592796, + 0.006445274688303471, + -0.043272968381643295, + -0.03525776416063309, + 0.0070389932952821255, + -0.041263457387685776, + -0.02986862324178219, + 0.021054182201623917, + 0.06115303933620453, + 0.07599601149559021 + ] + }, + { + "id": "7cca5336-5fbd-4d25-b746-bc31278c435e", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "ericamiddleton", + "reviewDate": "2022-05-13T14:00:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d0804e15-c0e6-4703-8007-6fc7e22aa539", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "moorewilliam", + "reviewDate": "2021-04-28T01:16:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "09f6713b-6075-4504-b909-18ada88a091a", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "xthomas", + "reviewDate": "2021-03-11T18:53:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "57e5a55f-1677-4ede-ba13-51f719b904d6", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "devoncantu", + "reviewDate": "2021-07-22T06:03:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "18103c25-2126-4772-b46b-4e0658847eff", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "christopherclark", + "reviewDate": "2022-07-28T02:42:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d6bbe446-8292-49ef-9370-8f7ce5e885d2", + "productId": "16d9a3f0-41ff-458f-bd85-fcc39d7a5ee7", + "category": "Other", + "docType": "customerRating", + "userName": "brian60", + "reviewDate": "2021-07-23T21:40:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard 3000 (Steel)", + "description": "This Awesome Keyboard 3000 (Steel) is rated 4.3 out of 5 by 7.\n\nRated 5 out of 5 by Anonymous from What a nice little keyboard! I had never got one, but I", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-11-07T04:54:04", + "price": 580.33, + "stock": 4, + "priceHistory": [ + { + "priceDate": "2021-02-28T01:07:27", + "newPrice": 596.37 + }, + { + "priceDate": "2022-12-24T01:07:27", + "newPrice": 635.7 + }, + { + "priceDate": "2023-10-28T01:07:27", + "newPrice": 580.33 + } + ], + "descriptionVector": [ + -0.005555152427405119, + 0.020697258412837982, + -0.017345886677503586, + 0.02681097202003002, + 0.037718161940574646, + 0.001911805127747357, + -0.021286286413669586, + 0.020392587408423424, + 0.003277743002399802, + 0.1046440377831459, + 0.03489488735795021, + -0.00820070505142212, + -0.02928895689547062, + -0.06178710609674454, + 0.008221016265451908, + 0.028801484033465385, + -0.029674870893359184, + -0.027156265452504158, + -0.04667546600103378, + -0.011983692646026611, + 0.020880060270428658, + 0.001362129463814199, + -0.056587401777505875, + 0.03324966877698898, + 0.0340011864900589, + -0.05272824689745903, + 0.014197628945112228, + 0.017711490392684937, + -0.008962379768490791, + -0.025957895442843437, + -0.005301260389387608, + 0.022626835852861404, + -0.039789918810129166, + 0.04135389253497124, + 0.016320163384079933, + -0.03654010593891144, + -0.07243024557828903, + -0.007007413078099489, + -0.02240341156721115, + 0.08506390452384949, + 0.015294441021978855, + 0.025836028158664703, + 0.05142831802368164, + -0.055449966341257095, + 0.026059452444314957, + 0.01659436710178852, + 0.040196146816015244, + 0.02250496856868267, + 0.039952412247657776, + 0.10301913321018219, + 0.06824611127376556, + 0.057521723210811615, + -0.03373714163899422, + -0.004689381457865238, + 0.05215952917933464, + 0.017254484817385674, + 0.010109971277415752, + 0.03871341794729233, + 0.0866888090968132, + -0.10253165662288666, + 0.00856630876660347, + -0.050372131168842316, + -0.02798902988433838, + -0.10691890865564346, + -0.06682431697845459, + -0.051509566605091095, + -0.011983692646026611, + 0.03747442737221718, + 0.028171831741929054, + 0.02250496856868267, + -0.047041069716215134, + -0.044034991413354874, + -0.016370942816138268, + 0.040460195392370224, + 0.03280282020568848, + -0.028598370030522346, + 0.10253165662288666, + 0.019610600546002388, + -0.012653966434299946, + 0.0014738418394699693, + 0.022362789139151573, + 0.018452854827046394, + -0.028476502746343613, + -0.04257257282733917, + 0.07003351300954819, + 0.019915271550416946, + -0.1039128303527832, + -0.11390601098537445, + -0.055815570056438446, + 0.08912616968154907, + -0.027501558884978294, + 0.00074707658495754, + -0.06028406694531441, + -0.06292454153299332, + 0.03515893593430519, + -0.019346553832292557, + -0.0805547833442688, + 0.0392618253827095, + 0.013110972009599209, + -0.004064807668328285, + 0.021225353702902794, + -0.012928169220685959, + -0.10050052404403687, + -0.04858473315834999, + -0.017315419390797615, + 0.04919407144188881, + 0.021184731274843216, + 0.03680415451526642, + -0.047731656581163406, + -0.12861141562461853, + -0.010109971277415752, + 0.0124406972900033, + -0.016177983954548836, + -0.018554411828517914, + -0.01767086796462536, + 0.02019963040947914, + -0.03907902166247368, + -0.04257257282733917, + -0.014573388732969761, + -0.03302624449133873, + 0.025104818865656853, + 0.09741319715976715, + -0.016878725960850716, + 0.028395257890224457, + 0.028110899031162262, + 0.02104255184531212, + -0.00903346948325634, + 0.015081171877682209, + 0.03436679020524025, + -0.011191549710929394, + -0.05354069918394089, + 0.041191402822732925, + 0.02959362603724003, + 0.057562343776226044, + -0.038794662803411484, + 0.06958665698766708, + -0.038388438522815704, + 0.07693936675786972, + 0.019752779975533485, + 0.050778355449438095, + 0.006154336966574192, + -0.030974797904491425, + -0.021733136847615242, + 0.005154003389179707, + -0.0712115690112114, + 0.05163143202662468, + -0.0859576016664505, + 0.017152929678559303, + 0.07454262673854828, + 0.06763677299022675, + 0.039525873959064484, + -0.052281394600868225, + -0.049640920013189316, + -0.04444121941924095, + 0.020687103271484375, + 0.07308021187782288, + -0.05561245605349541, + 0.03485426306724548, + -0.028212454169988632, + 0.013689844869077206, + -0.05240326374769211, + -0.018026316538453102, + -0.03997272253036499, + -0.027623426169157028, + -0.01025215070694685, + 0.059390366077423096, + 0.04781290143728256, + 0.025429802015423775, + -0.04265382140874863, + 0.01756931096315384, + -0.024129875004291534, + -0.015436620451509953, + 0.047366052865982056, + -0.04744729772210121, + -0.009886546060442924, + -0.05886227265000343, + 0.029512381181120872, + -0.04448183998465538, + 0.03318873420357704, + 0.0005547535256482661, + 0.042897555977106094, + 0.038693107664585114, + -0.0472848042845726, + -0.02347991243004799, + 0.14567294716835022, + 0.006951557006686926, + 0.01776226982474327, + 0.02060585655272007, + 0.010460341349244118, + 0.041191402822732925, + 0.027400001883506775, + 0.01666545681655407, + -0.021611269563436508, + 0.028740549460053444, + -0.06588999927043915, + 0.10854381322860718, + -0.006971868220716715, + -0.014380430802702904, + -0.012257895432412624, + 0.007322239223867655, + -0.027928097173571587, + 0.07080534100532532, + 0.06219333037734032, + -0.042328838258981705, + 0.036519795656204224, + 0.0009400343406014144, + -0.019326241686940193, + 0.036783840507268906, + 0.02207843028008938, + 0.00496612349525094, + 0.011638399213552475, + 0.0009603456710465252, + -0.020565234124660492, + -0.05459688976407051, + 0.054353151470422745, + 0.02561260387301445, + 0.0017950149485841393, + -0.02321586385369301, + -0.014451520517468452, + -0.1017192080616951, + 0.005768421106040478, + 0.020026983693242073, + -0.02010822854936123, + 0.015619422309100628, + -0.03333091363310814, + -0.02711564302444458, + 0.04574114456772804, + -0.049803413450717926, + 0.0701960027217865, + 0.054150041192770004, + -0.010897035710513592, + -0.0268515944480896, + -0.04391312226653099, + 0.0014433747855946422, + -0.018107561394572258, + -0.018391920253634453, + -0.05878102406859398, + -0.03686508536338806, + -0.03739318251609802, + 0.0820172056555748, + -0.011364196427166462, + -0.007307005580514669, + -0.020260564982891083, + -0.0687335804104805, + 0.011120459996163845, + -0.06272142380475998, + 0.0788080096244812, + -0.02581571601331234, + -0.06576813012361526, + 0.02701408602297306, + -0.029167087748646736, + 0.025104818865656853, + 0.011811045929789543, + 0.08985737711191177, + 0.04151638597249985, + 0.06320890039205551, + -0.005900444928556681, + 0.019123129546642303, + 0.0038769275415688753, + -0.04070392996072769, + 0.012085248716175556, + 0.06958665698766708, + -0.020362121984362602, + 0.06649933755397797, + 0.03623543679714203, + 0.04659422114491463, + 0.06251831352710724, + -0.0802704244852066, + -0.05666864663362503, + 0.016756858676671982, + -0.00230787624605, + -0.03391994163393974, + 0.07377079874277115, + -0.03442772477865219, + -0.03861186280846596, + 0.0006410767673514783, + 0.00010838005255209282, + 0.024129875004291534, + -0.05853728950023651, + -0.017609933391213417, + 0.04076486453413963, + 0.06288391351699829, + 0.04076486453413963, + 0.051306452602148056, + 0.03739318251609802, + -0.04078517481684685, + 0.06341201066970825, + -0.0010339743457734585, + 0.041597630828619, + -0.05569370090961456, + -0.023886138573288918, + 0.03292468562722206, + -0.002833432285115123, + 0.004529429599642754, + -0.01552802138030529, + 0.05739985406398773, + 0.04846286401152611, + -0.013395330868661404, + 0.00788080133497715, + -0.004425333812832832, + 0.04415686056017876, + -0.01830052025616169, + -0.10488777607679367, + -0.12073062360286713, + 0.004250148311257362, + 0.02254559099674225, + 0.0076675317250192165, + 0.000545232614967972, + -0.00706326961517334, + -0.05780608206987381, + 0.009510786272585392, + -0.009460007771849632, + -0.02971549518406391, + -0.001981625333428383, + 0.08417020738124847, + -0.046269237995147705, + 0.017051372677087784, + 0.03893684223294258, + 0.07360830903053284, + 0.007337472401559353, + 0.007794477976858616, + -0.027623426169157028, + -0.054353151470422745, + 0.05833417549729347, + -0.020423054695129395, + -0.02003713883459568, + 0.04003365710377693, + 0.01150637585669756, + 0.03231534734368324, + -0.04659422114491463, + 0.022119052708148956, + 0.001163459150120616, + -0.038693107664585114, + 0.0465535968542099, + 0.02855774760246277, + -0.06796175241470337, + -0.036986954510211945, + 0.06723054498434067, + 0.0684492215514183, + 0.05711549520492554, + 0.03660104051232338, + 0.012999258935451508, + 0.023886138573288918, + -0.034549593925476074, + -0.0001506689004600048, + -0.012887546792626381, + 0.014157005585730076, + -0.08335775136947632, + -0.0009108367958106101, + -0.022647147998213768, + 0.0010847526136785746, + -0.014004671014845371, + 0.01786382682621479, + -0.0061848037876188755, + 0.038286879658699036, + -0.008337805978953838, + -0.02187531627714634, + -0.0028461269102990627, + 0.007093736436218023, + 0.06576813012361526, + -0.004648758564144373, + -0.03422461077570915, + 0.038449373096227646, + 0.023926761001348495, + -0.05703425034880638, + 0.013364863581955433, + -0.012075093574821949, + 0.07214588671922684, + 0.027257822453975677, + -0.036012012511491776, + 0.03682446479797363, + -0.06324952095746994, + -0.006387917324900627, + 0.05390630289912224, + -0.014989770948886871, + 0.05817168578505516, + -0.059065382927656174, + 0.005468829069286585, + -0.06885544955730438, + 0.024718904867768288, + 0.0055602299980819225, + 0.03509800136089325, + 0.007002335507422686, + -0.0077589331194758415, + 0.0011780578643083572, + -0.05532809719443321, + 0.003249814733862877, + 0.055815570056438446, + -0.024637658149003983, + 0.005123536102473736, + -0.003940400667488575, + 0.04080548882484436, + -0.037454117089509964, + 0.04708169400691986, + 0.0004224124422762543, + -0.027298444882035255, + 0.04574114456772804, + 0.06544314324855804, + 0.027968719601631165, + 0.014827280305325985, + -0.028334323316812515, + 0.059796594083309174, + 0.027339067310094833, + -0.03597138822078705, + -0.0002596043632365763, + -0.1039128303527832, + -0.0022342477459460497, + 0.029126465320587158, + -0.05821231007575989, + -0.053053226321935654, + -0.03970867395401001, + -0.06097465008497238, + 0.03373714163899422, + -0.022098740562796593, + 0.030568569898605347, + 0.04011490195989609, + 0.10805634409189224, + -0.0056871757842600346, + 0.04427872598171234, + -0.07657375931739807, + 0.057156119495630264, + -0.02591727301478386, + -0.016523277387022972, + 0.008327650837600231, + 0.01656389981508255, + 0.030142033472657204, + -0.027928097173571587, + -0.041455451399087906, + 0.06560564041137695, + -0.07596442103385925, + 0.03363558277487755, + -0.05232201889157295, + -0.06093402951955795, + 0.07730496674776077, + 0.020880060270428658, + -0.027298444882035255, + -0.056018684059381485, + 0.027542181313037872, + -0.011049370281398296, + 0.055653080344200134, + 0.03322935849428177, + -0.057562343776226044, + -0.03300593048334122, + -0.005585619248449802, + -0.08315463364124298, + 0.039586808532476425, + -0.03796190023422241, + 0.06999288499355316, + 0.07255211472511292, + -0.017843514680862427, + 0.010744700208306313, + -0.006865233648568392, + -0.0645088255405426, + 0.01511163916438818, + 0.04452246427536011, + 0.009729132987558842, + 0.05768421292304993, + 0.0888824388384819, + -0.013202372938394547, + -0.008144848048686981, + -0.08806998282670975, + 0.038794662803411484, + 0.015954559668898582, + 0.011049370281398296, + -0.012318829074501991, + -0.030873240903019905, + -0.014614011161029339, + -0.056749891489744186, + 0.013293773867189884, + 0.017345886677503586, + -0.013639066368341446, + -0.04525367170572281, + 0.009074091911315918, + 0.039789918810129166, + 0.03150289133191109, + -0.08352024108171463, + 0.02374395914375782, + 0.029613938182592392, + -0.0051311529241502285, + 0.08636382967233658, + -0.032944999635219574, + -0.05289073660969734, + 0.014228095300495625, + 0.028212454169988632, + 0.052809491753578186, + -0.020280875265598297, + -0.015223351307213306, + -0.0014776501338928938, + 0.06402134895324707, + 0.02835463359951973, + -0.023033061996102333, + 0.02784685045480728, + -0.030649816617369652, + -0.11374352127313614, + -0.01497961487621069, + 0.08579511195421219, + -0.07007413357496262, + 0.03983054310083389, + -0.0830327719449997, + -0.02066679112613201, + 0.029329579323530197, + -0.031177911907434464, + -0.005697331856936216, + 0.037718161940574646, + 0.0045700520277023315, + 0.005956301465630531, + -0.06446820497512817, + 0.02675003930926323, + 0.054312530905008316, + 0.012430542148649693, + 0.06154336780309677, + -0.0995255783200264 + ] + }, + { + "id": "ea332148-a917-49f9-8def-6ca0df7f0f99", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephen29", + "reviewDate": "2022-04-01T05:21:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f58fb8e7-ea95-493b-b82b-1e6cde224d54", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robersonjonathan", + "reviewDate": "2021-10-30T22:48:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f993dc13-3103-43e3-8aa2-ade87f14a59c", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qyoung", + "reviewDate": "2021-07-31T17:45:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "56ca16ad-3d71-4fec-9b00-b3b982692c84", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "edward85", + "reviewDate": "2021-02-28T01:07:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d7384d3a-76f8-4760-961b-ea83587c5d7e", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthony88", + "reviewDate": "2021-10-05T09:09:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0c9e0f94-ec88-4204-bc66-1e1339f88a29", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shanepearson", + "reviewDate": "2022-10-19T03:40:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "59fb6d44-b214-442f-9fa7-648317afc737", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer82", + "reviewDate": "2022-10-24T22:37:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b14f78de-ea79-425b-b007-13d366f901a3", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlesevans", + "reviewDate": "2022-08-28T23:09:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6f876ae8-928a-44d8-99cb-6c77cb8d0a89", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lauradavenport", + "reviewDate": "2022-12-24T03:21:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "05c20040-9c07-445b-b6fa-2851ab7ef0c2", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maria33", + "reviewDate": "2021-08-19T14:39:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d61ac65c-c5e8-4e9d-919a-06f05a91a65c", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anna96", + "reviewDate": "2022-07-27T08:57:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "be5141a3-9edd-4ec3-9801-a819fc2f8e90", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "solomondonna", + "reviewDate": "2022-04-07T10:44:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "04d16a89-81ed-4858-8316-a120486ca248", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "taylorcynthia", + "reviewDate": "2021-06-07T08:27:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a0d4c1a8-cce0-4f56-b62a-db531db55c67", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel18", + "reviewDate": "2022-05-24T06:12:35", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6ec9044f-77e2-442c-b19f-c2a8b82026e8", + "productId": "18e3d1fa-8eec-45ca-9c31-f983d88ee852", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ramoserin", + "reviewDate": "2022-03-14T17:43:54", + "stars": 5, + "verifiedUser": true + }, + { + "id": "133a788d-935b-436a-9390-9eac94efa7e1", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "product", + "name": "Awesome Filter 3000 (Steel)", + "description": "This Awesome Filter 3000 (Steel) is rated 3.6 out of 5 by 31.\n\nRated 5 out of 5 by Anonymous from The biggest filter you can get It's 3.5 inches wide and 1 1/2 inches long, a lot of room to grow (not too much, I just wish it was the largest ever.)\n\nRated 5 out of 5 by ThePonyGuy from Fits right under my nose, will use it on my next garden.\n", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-07-03T22:19:57", + "price": 518.63, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-02-11T11:17:27", + "newPrice": 558.22 + }, + { + "priceDate": "2021-07-16T11:17:27", + "newPrice": 516.17 + }, + { + "priceDate": "2021-12-18T11:17:27", + "newPrice": 474.96 + }, + { + "priceDate": "2022-05-22T11:17:27", + "newPrice": 560.41 + }, + { + "priceDate": "2022-10-24T11:17:27", + "newPrice": 540.86 + }, + { + "priceDate": "2023-11-22T11:17:27", + "newPrice": 518.63 + } + ], + "descriptionVector": [ + -0.007527356036007404, + 0.02516024559736252, + -0.023871157318353653, + 0.023249631747603416, + 0.05704216659069061, + -0.016792679205536842, + -0.04594679921865463, + -0.006900076754391193, + 0.012568613514304161, + 0.06017281115055084, + -0.04617699235677719, + -0.04930763691663742, + -0.023479826748371124, + -0.021845446899533272, + 0.034022729843854904, + 0.06321137398481369, + -0.039455316960811615, + -0.006940360646694899, + -0.0043765706941485405, + -0.007579150144010782, + 0.06694052368402481, + 0.004701720084995031, + -0.049123480916023254, + 0.011106878519058228, + 0.03591032326221466, + 0.024837974458932877, + 0.013523919507861137, + -0.014905085787177086, + -0.030017348006367683, + -0.047097768634557724, + 0.0752275213599205, + 0.056029312312603, + 0.01576831564307213, + 0.13756416738033295, + -0.031766824424266815, + -0.04095157980918884, + 0.018749332055449486, + 0.05133334547281265, + -0.02229432575404644, + 0.09898358583450317, + -0.002857287647202611, + -0.0016473284922540188, + -0.04399014636874199, + 0.011406132020056248, + 0.011630571447312832, + -0.011751423589885235, + -0.03883379325270653, + -0.014410167932510376, + 0.01850762777030468, + 0.04633812978863716, + 0.041757259517908096, + -0.023537375032901764, + -0.07969329506158829, + -0.013086550869047642, + 0.018254414200782776, + 0.030569814145565033, + 0.021235432475805283, + 0.18369512259960175, + 0.07108402252197266, + -0.01315560843795538, + 0.04364485293626785, + -0.07674680650234222, + 0.027208976447582245, + -0.029257705435156822, + -0.1158338114619255, + -0.03657788783311844, + -0.08263978362083435, + 0.02559761516749859, + 0.022144699469208717, + 0.021937524899840355, + -0.015998508781194687, + 0.021223921328783035, + -0.020798062905669212, + 0.006928850896656513, + 0.02366398274898529, + -0.011348582804203033, + 0.08646100759506226, + -0.04981406405568123, + -0.02257055975496769, + 0.01866876520216465, + -0.009915622882544994, + 0.05253035947680473, + -0.01460583321750164, + 0.051149193197488785, + 0.019370857626199722, + 0.02108580619096756, + -0.01076158694922924, + -0.08558627218008041, + -0.02575875073671341, + 0.010364501737058163, + -0.0015681992517784238, + 0.07002513110637665, + -0.013961289077997208, + -0.08323828876018524, + -0.006382139399647713, + 0.050596725195646286, + -0.08383679389953613, + 0.01734514720737934, + -0.03816622868180275, + 0.029741114005446434, + 0.005363529082387686, + -0.011831991374492645, + -0.07536564022302628, + 0.07711511850357056, + -0.045716602355241776, + 0.02437758445739746, + -0.03399971127510071, + -0.017747987061738968, + -0.011630571447312832, + -0.13323651254177094, + 0.029280725866556168, + -0.023848138749599457, + -0.026932742446660995, + -0.006013828329741955, + -0.06542124599218369, + 0.03729148954153061, + -0.01877235248684883, + -0.0010675264056771994, + -0.023053966462612152, + 0.03031660057604313, + -0.019808227196335793, + 0.06818357855081558, + 0.013846191577613354, + -0.012200302444398403, + 0.010502618737518787, + -0.010525638237595558, + 0.01927877962589264, + -0.03178984299302101, + 0.037751879543066025, + -0.006324590649455786, + -0.056259505450725555, + 0.0006010231445543468, + 0.05165562033653259, + -0.006951870396733284, + -0.1158338114619255, + 0.05975846201181412, + 0.01911764405667782, + 0.15229660272598267, + 0.020936178043484688, + 0.07504336535930634, + -0.013961289077997208, + -0.03982362896203995, + 0.0014308019308373332, + 0.03535785526037216, + 0.026610471308231354, + -0.015607179142534733, + -0.11343979090452194, + 0.034345000982284546, + 0.01258012279868126, + -0.012856355868279934, + 0.00974873173981905, + -0.09787864983081818, + 0.014490736648440361, + -0.006629598326981068, + 0.02964903600513935, + -0.03441406041383743, + -0.05722632259130478, + 0.0428161546587944, + -0.05322094261646271, + -0.017218539491295815, + -0.01167085487395525, + -0.045394331216812134, + -0.04023797810077667, + -0.017805535346269608, + 0.007573395036160946, + 0.06790734082460403, + 0.005933260079473257, + 0.010577431879937649, + -0.06440838426351547, + 0.025988945737481117, + 0.049123480916023254, + 0.0345982164144516, + 0.006105905864387751, + 0.0011581655126065016, + -0.03602541983127594, + -0.02948790043592453, + 0.04189537838101387, + -0.020072950050234795, + -0.015054712072014809, + 0.02460777945816517, + 0.06896623969078064, + 0.0037982072681188583, + 0.00971995759755373, + -0.03936323896050453, + 0.017828553915023804, + 0.0017566708847880363, + 0.05239224061369896, + 0.007705756928771734, + 0.03197399899363518, + 0.04097459837794304, + 0.016942307353019714, + 0.03206607699394226, + 0.0016746640903875232, + 0.0005405971314758062, + -0.03266458213329315, + -0.002860165201127529, + -0.08139673620462418, + -0.001468208502046764, + -0.004753514192998409, + -0.027301054447889328, + -0.043138425797224045, + 0.028797317296266556, + 0.08194919675588608, + -0.009466744028031826, + 0.04880120977759361, + 0.0005711698322556913, + 0.04108969867229462, + 0.0455784872174263, + 0.012465025298297405, + 0.003504709340631962, + 0.009391930885612965, + -0.04380599036812782, + -0.03574918583035469, + -0.08066011220216751, + 0.010531392879784107, + 0.04237878695130348, + -0.03816622868180275, + -0.0422867089509964, + -0.03448311984539032, + -0.010548657737672329, + 0.05699612945318222, + -0.02131599932909012, + -0.011624815873801708, + -0.040882520377635956, + -0.025275342166423798, + -0.011279524303972721, + 0.0038413687143474817, + 0.03036263957619667, + 0.07034740597009659, + 0.07550375908613205, + -0.003683110000565648, + -0.04265501722693443, + -0.0774373933672905, + 0.05920599400997162, + -0.04765023663640022, + 0.005305980332195759, + -0.08931542187929153, + -0.06155397742986679, + 0.06353364884853363, + 0.024239467456936836, + 0.07320181280374527, + 0.02086712047457695, + -0.04507206007838249, + -0.03526578098535538, + 0.08646100759506226, + 0.01405336707830429, + -0.0252523235976696, + -0.06118566542863846, + -0.03399971127510071, + -0.0037032521795481443, + -0.04051421210169792, + 0.03395367041230202, + -0.019221231341362, + 0.09327476471662521, + 0.017817044630646706, + 0.0702553242444992, + -0.024124370887875557, + 0.011739913374185562, + -0.09778657555580139, + -0.053405094891786575, + 0.003962220624089241, + 0.0938732698559761, + 0.022052621468901634, + 0.051103152334690094, + -0.03091510571539402, + -0.06044904515147209, + 0.01926727034151554, + 0.015894921496510506, + 0.032641563564538956, + 0.00873587653040886, + -0.04677549749612808, + 0.0461309552192688, + -0.004293125122785568, + 0.002986771985888481, + -0.041319891810417175, + -0.02185695618391037, + -0.04514111950993538, + -0.007210839074105024, + 0.02097070775926113, + 0.014766969718039036, + 0.11445264518260956, + -0.02026861533522606, + 0.0017192643135786057, + 0.10193007439374924, + 0.07278746366500854, + 0.018024219200015068, + 0.09760241955518723, + -0.043138425797224045, + 0.008586250245571136, + -0.11297940462827682, + -0.0014495052164420485, + 0.04606189578771591, + 0.016999855637550354, + -0.04751212149858475, + -0.016056058928370476, + -0.017529301345348358, + 0.059390150010585785, + -0.019313309341669083, + -0.040284015238285065, + 0.013259196653962135, + -0.03595636412501335, + -0.002835707040503621, + -0.026541411876678467, + -0.07214292138814926, + 0.005990808829665184, + 0.014709420502185822, + 0.0029133977368474007, + -0.03800509124994278, + -0.039294179528951645, + -0.10257461667060852, + -0.0030299334321171045, + -0.0050412570126354694, + 0.013581468723714352, + 0.013316744938492775, + 0.09677372127771378, + -0.023802099749445915, + -0.010548657737672329, + 0.040882520377635956, + 0.017230048775672913, + 0.022559048607945442, + -0.026127062737941742, + -0.03227325156331062, + 0.05441795289516449, + 0.061369821429252625, + -0.030546793714165688, + -0.0076251886785030365, + -0.026219140738248825, + 0.006543275434523821, + 0.031122280284762383, + -0.03340120613574982, + 0.030500754714012146, + 0.015238868072628975, + -0.04546339064836502, + 0.012729749083518982, + 0.04265501722693443, + -0.08710555732250214, + -0.015400003641843796, + -0.058837682008743286, + -0.007579150144010782, + 0.07716115564107895, + -0.02460777945816517, + 0.014168464578688145, + 0.014905085787177086, + 0.024354565888643265, + 0.09203171730041504, + -0.06744695454835892, + 0.009904113598167896, + -0.07877251505851746, + -0.026541411876678467, + 0.00304144318215549, + 0.0013394436100497842, + -0.02108580619096756, + -0.006744695361703634, + 0.007912931963801384, + 0.01367354579269886, + 0.011596041731536388, + -0.02086712047457695, + -0.019485954195261, + 0.07568791508674622, + -0.028636181727051735, + 0.0005913118366152048, + 0.012695220299065113, + 0.05685801059007645, + 0.012292379513382912, + -0.0241704098880291, + 0.09078866243362427, + -0.030224522575736046, + 0.06523708999156952, + -0.001802709768526256, + -0.039455316960811615, + -0.01592945121228695, + -0.029579978436231613, + 0.012442006729543209, + 0.07891063392162323, + -0.012465025298297405, + -0.06896623969078064, + 0.06321137398481369, + 0.036048438400030136, + -0.03878775238990784, + 0.01587190292775631, + 0.004601010121405125, + 0.034345000982284546, + 0.028359947726130486, + -0.04792647063732147, + 0.016343800351023674, + 0.011739913374185562, + -0.016113607212901115, + 0.0554768443107605, + -0.02322661317884922, + 0.011768687516450882, + 0.001289088511839509, + -0.03986966609954834, + -0.010249405167996883, + -0.022605087608098984, + -0.0038557557854801416, + -0.08876295387744904, + 0.018921978771686554, + 0.032756660133600235, + 0.07665473222732544, + -0.09359703212976456, + -0.0026688161306083202, + 0.07881855964660645, + -0.04682153835892677, + -0.024699857458472252, + -0.007981990464031696, + -0.05980449914932251, + 0.023215103894472122, + -0.048571012914180756, + -0.019359348341822624, + -0.055707041174173355, + 0.015250377357006073, + -0.030569814145565033, + -0.08471152931451797, + -0.031812865287065506, + 0.010140062309801579, + 0.032986853271722794, + 0.06031092628836632, + -0.0225130096077919, + 0.053082823753356934, + -0.022052621468901634, + -0.034298963844776154, + 0.07200480252504349, + 0.025574596598744392, + -0.028244851157069206, + 0.015664728358387947, + 0.06394799798727036, + -0.04166518151760101, + 0.04399014636874199, + -0.018311962485313416, + -0.039846647530794144, + 0.02591988816857338, + 0.027968617156147957, + -0.012073695659637451, + 0.07969329506158829, + 0.00963363517075777, + -0.041319891810417175, + 0.015089241787791252, + 0.04442751407623291, + -0.01266069058328867, + -0.0631653368473053, + 0.009789016097784042, + 0.003795329947024584, + 0.010260914452373981, + 0.022144699469208717, + -0.10441616922616959, + -0.05354321375489235, + -0.05520061403512955, + 0.025574596598744392, + -0.004603887442499399, + 0.00867257360368967, + -0.001308511127717793, + 0.03855755925178528, + -0.07771362364292145, + 0.021603742614388466, + 0.006566294934600592, + -0.015745295211672783, + 0.05860748887062073, + 0.0730176568031311, + 0.03234231099486351, + -0.016263233497738838, + -0.09815488755702972, + 0.06790734082460403, + -0.020579377189278603, + -0.006117415614426136, + 0.008016519248485565, + 0.0021364917047321796, + -0.06661825627088547, + -0.0856323093175888, + 0.023917196318507195, + 0.014202993363142014, + -0.05018237605690956, + -0.017506282776594162, + -0.017333636060357094, + 0.04580868035554886, + 0.017644399777054787, + 0.006877057254314423, + 0.046430207788944244, + -0.02120090276002884, + 0.09778657555580139, + 0.03464425355195999, + 0.0046096425503492355, + -0.02295037917792797, + -0.04783439263701439, + 0.037475645542144775, + -0.004678700584918261, + -0.0008761773351579905, + 0.01932481862604618, + 0.0006700814701616764, + 0.08931542187929153, + 0.04880120977759361, + -0.010750077664852142, + 0.019221231341362, + -0.06496085226535797, + -0.05639762431383133, + -0.004356428515166044, + 0.04760419949889183, + 0.005536174867302179, + -0.011785952374339104, + -0.0785423219203949, + -0.014041856862604618, + 0.03998476266860962, + -0.0014775601448491216, + 0.002857287647202611, + -0.0012221882352605462, + -0.03710733354091644, + 0.04182631894946098, + 0.011486699804663658, + -0.01785157434642315, + -0.020118989050388336, + -0.03441406041383743, + 0.02504514902830124, + 0.04695965349674225 + ] + }, + { + "id": "3d5f6422-b25d-4fff-aa4b-cd178b2b9cb8", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "xchang", + "reviewDate": "2022-04-02T21:40:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a69b2321-f8e2-414e-9e3a-b7a07b01220f", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "briggsstephanie", + "reviewDate": "2022-01-01T14:49:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "40773df9-85ef-4bb6-961f-0dcd3a1cc362", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "davidstevens", + "reviewDate": "2022-08-23T21:44:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b41662a6-b166-4e4b-9e8b-18f3339b7d06", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "conwayrobert", + "reviewDate": "2021-11-30T10:03:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "91a03aab-a532-4035-8faf-323eda2567ff", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "shawn46", + "reviewDate": "2022-10-26T03:32:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b71c9e0d-5bce-4034-bc2e-3b871bcd5fca", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "timothygraham", + "reviewDate": "2021-02-11T11:17:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fcd7dea5-e8f4-4162-9eba-e861d1c66eee", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "vanessasmith", + "reviewDate": "2022-09-26T02:56:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4f5883b3-3e46-4017-a033-eabf79ec37da", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "matthew74", + "reviewDate": "2022-03-15T00:01:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b35f5e20-2c04-470b-998f-bd343d42f2bf", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "janetbenitez", + "reviewDate": "2022-02-21T07:35:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "23b09bad-5267-42b9-8a8d-f0787e7215c6", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "whernandez", + "reviewDate": "2022-03-03T20:16:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a8975833-08ed-4964-a6e3-4e1aca233f08", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "craigdaniel", + "reviewDate": "2022-06-20T20:30:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "89a1b815-4560-44fa-89ec-4ddccaa622fb", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "jonesdaniel", + "reviewDate": "2021-10-27T18:41:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "734f8075-8f6b-42b8-8273-8770223797bf", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "gsingh", + "reviewDate": "2021-08-14T10:38:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7315cea6-b0c6-4b87-88eb-3bda5fadd8c7", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "mreed", + "reviewDate": "2022-06-01T21:03:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ac7eb04c-ca7f-4af6-92fe-a9de5765e07d", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "goodwinbrandon", + "reviewDate": "2022-05-29T19:39:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a72d05ee-1bdb-413f-b675-e01db08dfaea", + "productId": "133a788d-935b-436a-9390-9eac94efa7e1", + "category": "Other", + "docType": "customerRating", + "userName": "pbradshaw", + "reviewDate": "2022-09-23T03:51:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Mini (Black)", + "description": "This Basic Mouse Mini (Black) is one of the most expensive and well-designed mouse mice in Japan. The company has a price tag of up to HK$200, and their mouse is quite small (around 3 feet in diameter). The back of the mechanical mouse is covered with a beautiful metallic texture, which comes in two sizes.\n\n\nWhen you order the prototype, you are then asked to set up your key on the first page of the product", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-06-23T21:05:18", + "price": 483.04, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-04-28T03:02:12", + "newPrice": 438.36 + }, + { + "priceDate": "2021-11-09T03:02:12", + "newPrice": 461.34 + }, + { + "priceDate": "2022-05-23T03:02:12", + "newPrice": 448.63 + }, + { + "priceDate": "2022-12-04T03:02:12", + "newPrice": 493.54 + }, + { + "priceDate": "2023-05-28T03:02:12", + "newPrice": 483.04 + } + ], + "descriptionVector": [ + -0.0665944442152977, + -0.046290017664432526, + -0.016457540914416313, + -0.044430263340473175, + 0.02776891551911831, + -0.055486880242824554, + 0.006528242491185665, + 0.015170998871326447, + -0.016470279544591904, + 0.015196475200355053, + -0.02881343476474285, + -0.031055327504873276, + 0.0053818197920918465, + -0.0726577490568161, + 0.07250489294528961, + -0.026673443615436554, + -0.029017243534326553, + -0.008751030080020428, + -0.02425321750342846, + 0.03383221849799156, + -0.013871720060706139, + -0.07051775604486465, + 0.010731793940067291, + 0.03133556619286537, + 0.012273096479475498, + 0.025501545518636703, + 0.0014760197373107076, + 0.022304298356175423, + -0.019476454704999924, + 0.045092642307281494, + 0.010438819415867329, + 0.04147503897547722, + -0.026571540161967278, + 0.0599706657230854, + 0.014292074367403984, + -0.06139732524752617, + -0.03227818012237549, + -0.050977613776922226, + 0.07551106810569763, + 0.044583119451999664, + 0.05237879976630211, + 0.01296731922775507, + 0.024355122819542885, + -0.04608621075749397, + -0.05676068365573883, + 0.037908390164375305, + -0.05258260667324066, + 0.01975669153034687, + -0.0008255838765762746, + 0.02659701555967331, + 0.05069737881422043, + 0.06078590080142021, + -0.06960061937570572, + 0.06954967230558395, + -0.0220622755587101, + 0.005318129435181618, + 0.03444364666938782, + 0.1276860535144806, + 0.08361245691776276, + -0.0810648500919342, + 0.049143336713314056, + -0.11087185144424438, + 0.019361812621355057, + 0.010674472898244858, + 0.02546333149075508, + -0.03480030968785286, + -0.06746063381433487, + 0.02878795750439167, + 0.05890067294239998, + 0.05727020278573036, + -0.05324498564004898, + -0.06124446913599968, + 0.027004633098840714, + 0.0019680263940244913, + -0.025998327881097794, + -0.0375007726252079, + 0.061906848102808, + 0.044914308935403824, + 0.08840195834636688, + -0.0045952461659908295, + 0.003315073437988758, + -0.03668554127216339, + -0.021871205419301987, + -0.021297993138432503, + 0.06776634603738785, + 0.03933504968881607, + -0.00598687632009387, + -0.0693458616733551, + -0.06155018135905266, + 0.04529644921422005, + -0.07153680175542831, + 0.10567473620176315, + 0.032711271196603775, + 0.01556587778031826, + -0.01347684022039175, + 0.004053879529237747, + -0.023323342204093933, + 0.0388764813542366, + -0.0262658279389143, + 0.003553911577910185, + 0.10598044842481613, + 0.0779058188199997, + -0.06644158810377121, + 0.018648482859134674, + -0.055639736354351044, + 0.01313291396945715, + 0.018839552998542786, + 0.0017164502060040832, + -0.0234379842877388, + -0.08559959381818771, + -0.0014386017573997378, + 0.053143080323934555, + -0.0013215710641816258, + 0.03403602913022041, + -0.04651930183172226, + 0.04216289520263672, + -0.06633968651294708, + -0.05492640659213066, + -0.038086723536252975, + -0.007458119187504053, + 0.09105147421360016, + -0.0003359656548127532, + 0.003018914256244898, + 0.034061502665281296, + -0.030902471393346786, + -0.06679825484752655, + -0.03630339726805687, + -0.01942550204694271, + 0.025386903434991837, + -0.09227432310581207, + -0.07326917350292206, + 0.047640249133110046, + 0.02328512631356716, + -0.00034412596141919494, + -0.04183170571923256, + 0.041118375957012177, + 0.04397169500589371, + -0.0026638414710760117, + -0.08075913786888123, + 0.020559187978506088, + -0.021361684426665306, + -0.047767627984285355, + -0.03464745357632637, + -0.00011474182974779978, + -0.09798096120357513, + 0.0042767953127622604, + -0.06195779889822006, + 0.10710139572620392, + -0.03375579044222832, + 0.016597658395767212, + -0.010648996569216251, + -0.10251570492982864, + -0.017986103892326355, + -0.02325965091586113, + 0.05696449056267738, + 0.05941019207239151, + -0.06272207945585251, + -0.030596759170293808, + -0.052939273416996, + 0.05395831540226936, + 0.030698662623763084, + -0.05242975056171417, + -0.019374551251530647, + -0.0292974803596735, + -0.03232913091778755, + 0.042748842388391495, + 0.056251160800457, + 0.045449309051036835, + -0.04116932675242424, + -0.0038819159381091595, + -0.03910576552152634, + -0.0003775632940232754, + 0.010859174653887749, + -0.05171642079949379, + 0.014623263850808144, + 0.05209856107831001, + 0.04555121064186096, + 0.014725168235599995, + 0.023170484229922295, + -0.021297993138432503, + 0.04290170222520828, + 0.07352393865585327, + -0.0065600876696407795, + 0.049601905047893524, + 0.027361297979950905, + -0.0037959343753755093, + 0.012171192094683647, + -0.02965414524078369, + -0.004971018061041832, + -0.014967191033065319, + 0.003569834167137742, + 0.040761709213256836, + -0.01608813740313053, + -0.04753834381699562, + 0.009731858037412167, + 0.03869814798235893, + 0.0010421304032206535, + 0.07800772041082382, + -0.010693579912185669, + 0.000781398790422827, + -0.012808093801140785, + 0.031717706471681595, + 0.04792048782110214, + 0.02174382470548153, + 0.02141263522207737, + -0.10287236422300339, + 2.509044497855939e-05, + -0.023539887741208076, + 0.044761452823877335, + -0.00527036190032959, + 0.00845168624073267, + -0.035921256989240646, + 0.012075657024979591, + -0.03803577274084091, + -0.002593782264739275, + -0.0018581608310341835, + 0.04888857528567314, + -0.0368129201233387, + -0.004057064186781645, + -0.0941595509648323, + -0.00010488975385669619, + -0.03401055186986923, + -0.018610268831253052, + -0.04030314087867737, + -0.09263098984956741, + -0.02176930196583271, + 0.02962866798043251, + 0.05092666298151016, + 0.030571283772587776, + 0.012929105199873447, + -0.06613587588071823, + -0.04820072278380394, + -0.05696449056267738, + 0.033399127423763275, + -0.03495316579937935, + 0.029246527701616287, + -0.044939786195755005, + -0.08233865350484848, + -0.020482759922742844, + 0.05360164865851402, + -0.06267113238573074, + 0.0027928140480071306, + -0.053652603179216385, + -0.00370039907284081, + 0.08514102548360825, + 0.004082540050148964, + 0.018202651292085648, + -0.10455378890037537, + -0.08855481445789337, + -0.01804979518055916, + -0.06832681596279144, + -0.0034137931652367115, + 0.018011581152677536, + 0.06878538429737091, + -0.020036928355693817, + 0.08514102548360825, + 0.02728486992418766, + 0.02241894043982029, + 0.006149286404252052, + -0.0431564599275589, + -0.014763382263481617, + 0.07658106088638306, + -0.07413536310195923, + 0.038417913019657135, + -0.014585049822926521, + 0.015362069942057133, + 0.03131008893251419, + -0.07433916628360748, + 0.011145779862999916, + 0.08228770643472672, + 0.019514668732881546, + -0.017540274187922478, + 0.08998147398233414, + -0.043411221355199814, + -0.001721226959489286, + 0.05268451198935509, + -0.04883762449026108, + 0.074186310172081, + 0.012203036807477474, + -0.03510602191090584, + 0.01957836002111435, + 0.11301184445619583, + -0.016788730397820473, + 0.033373650163412094, + -0.03243103623390198, + -0.010636258870363235, + 0.025323212146759033, + 0.051436182111501694, + 0.0022689623292535543, + -0.025374164804816246, + -0.036711014807224274, + 0.008585435338318348, + 0.019820380955934525, + -0.05222593992948532, + 0.06409779191017151, + 0.007324370089918375, + 0.04300360381603241, + 0.04106742516160011, + -0.012859045527875423, + 0.02492833323776722, + -0.05701544135808945, + -0.049627382308244705, + -0.056302111595869064, + -0.03683839738368988, + 0.044634073972702026, + 0.03159032389521599, + -0.02881343476474285, + -0.02594737708568573, + -0.009649061597883701, + -0.03181961178779602, + 0.08442769199609756, + 0.022813819348812103, + -0.041729800403118134, + 0.022890247404575348, + 0.09619763493537903, + -0.06175399199128151, + -0.0039487904869019985, + -0.03716958314180374, + 0.010317808017134666, + 0.0024504794273525476, + -0.014712429605424404, + -0.036914825439453125, + -0.08931909501552582, + 0.07907772064208984, + 0.09930571913719177, + 0.012808093801140785, + -0.02810010500252247, + -0.005107951816171408, + 0.002721162745729089, + -0.026189399883151054, + -0.06323160231113434, + -0.06323160231113434, + -0.042417656630277634, + -0.04386978968977928, + -0.0005572889931499958, + -0.038596246391534805, + 0.03502959385514259, + 0.0438443161547184, + 0.008496268652379513, + 0.072250135242939, + 0.02911914698779583, + -0.0015516518615186214, + -0.027998199686408043, + 0.0779058188199997, + -0.04904143139719963, + -0.03744982182979584, + -0.03362841159105301, + -0.03314436599612236, + 0.00936245545744896, + 0.07326917350292206, + 0.0016830128151923418, + -0.09711477905511856, + 0.010432450100779533, + -0.014126480557024479, + 0.030571283772587776, + -0.02022799849510193, + 0.020138831809163094, + -0.07112918794155121, + -0.0032402374781668186, + 0.04631549492478371, + -0.03495316579937935, + -0.02463535964488983, + 0.02174382470548153, + 0.06404683738946915, + -0.02611296996474266, + -0.02779439091682434, + 0.020202523097395897, + -0.04088909178972244, + -0.01238136924803257, + -0.00845805462449789, + 0.018037056550383568, + -0.05828924477100372, + -0.025705354288220406, + 0.049449048936367035, + -0.044786930084228516, + 0.010840067639946938, + -0.02460988238453865, + -0.012572440318763256, + -0.09813381731510162, + -0.00845805462449789, + 0.02342524565756321, + 0.0103751290589571, + -0.003249790985137224, + 0.02644415944814682, + 0.0344691202044487, + -0.03553911671042442, + -0.03969171643257141, + -0.07810962945222855, + 0.00971912033855915, + 0.03920767083764076, + 0.003805487882345915, + 0.02173108607530594, + -0.003039613598957658, + 0.03617601841688156, + 0.015018142759799957, + -0.0679701492190361, + 0.04267241433262825, + 0.03831600770354271, + -0.05441688373684883, + -0.027667010203003883, + 0.006123810075223446, + 0.08580340445041656, + -0.01789693906903267, + 0.013120175339281559, + 0.0005700270412489772, + -0.022966675460338593, + 0.03314436599612236, + 0.000664368097204715, + -0.04519454762339592, + -0.038392435759305954, + -0.013298507779836655, + -0.02141263522207737, + -0.023310603573918343, + -0.03813767433166504, + -0.038086723536252975, + -0.04389526695013046, + 0.009037635289132595, + -0.013158389367163181, + -0.00602827500551939, + -0.09584097564220428, + 0.05421307682991028, + -0.07551106810569763, + 0.006130178924649954, + 0.031182708218693733, + -0.061499230563640594, + 0.02273739129304886, + -0.06812300533056259, + 0.0239220280200243, + 0.07439012080430984, + -0.01622825674712658, + 0.012177561409771442, + -0.044277407228946686, + -0.07515440136194229, + 0.0018708988791331649, + -0.02291572466492653, + -0.03192151337862015, + 0.062161609530448914, + 0.05242975056171417, + 0.024164050817489624, + 0.03599768504500389, + 0.08004581183195114, + -0.056505922228097916, + 0.024355122819542885, + 0.029170099645853043, + -0.027488678693771362, + 0.027310345321893692, + -0.04063433036208153, + 0.006031459197402, + 0.07118013501167297, + -0.00835615023970604, + -0.013209342025220394, + -0.03429079055786133, + 0.02827843651175499, + -0.027845343574881554, + 0.09487288445234299, + -0.0007495537283830345, + -0.019642049446702003, + -0.03546268865466118, + 0.01164256315678358, + 0.00836888886988163, + 0.015120047144591808, + 0.08926814794540405, + 0.04891405254602432, + -0.019947761669754982, + 0.03294055908918381, + -0.03062223456799984, + 0.04422645643353462, + -0.013145651668310165, + -0.0020715228747576475, + 0.020215261727571487, + 0.024062147364020348, + -0.012929105199873447, + 0.0031797317788004875, + 0.02026621252298355, + 0.048149771988391876, + -0.029322955757379532, + -0.0038978385273367167, + 0.007114192470908165, + 0.01843193545937538, + 0.015400283969938755, + 0.014916238375008106, + 0.025234047323465347, + -0.08549768477678299, + 0.03166675567626953, + 0.025870949029922485, + -0.055130213499069214, + 0.045958828181028366, + -0.02594737708568573, + 0.0683777704834938, + 0.04916881397366524, + -0.03518244996666908, + 0.07199537009000778, + 0.019718477502465248, + 0.010903757996857166, + -0.02965414524078369, + 0.03202341869473457, + -0.022508107125759125, + -0.014495883136987686, + -0.07795677334070206, + 0.056149255484342575, + 0.004022034350782633, + -0.06598301976919174, + -0.03564102202653885, + 0.020546449348330498, + 0.05370355397462845, + 0.04939809814095497, + -0.00047528790310025215, + 0.023871077224612236, + 0.0064518144354224205, + -0.07230108231306076, + 0.034214362502098083, + -0.03133556619286537 + ] + }, + { + "id": "28bd7d11-7bdf-4667-90ae-71e256fe9c9b", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beckebony", + "reviewDate": "2022-10-06T19:26:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2671aa69-6fe7-4960-aa6c-3724257131b0", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "connieroth", + "reviewDate": "2022-12-05T11:48:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fdd94af3-608c-46b3-8616-6a3a720822f2", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mark03", + "reviewDate": "2021-06-14T22:29:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1bc35a80-91fa-4664-9267-15715d138d76", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashleysnyder", + "reviewDate": "2021-04-28T03:02:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fec3664f-32ec-4fdf-a3ad-8ac11eb7f337", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "todd93", + "reviewDate": "2021-11-10T15:37:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ce2f4576-b4de-495c-90b0-e14cad9a4e99", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "burkelauren", + "reviewDate": "2021-11-27T03:39:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e042350d-4cb3-4358-954f-4b4cc8985e8d", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "espinozaemily", + "reviewDate": "2022-09-03T13:40:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4381d515-37cc-4fd6-a25a-bd72ecf75af1", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gabriel62", + "reviewDate": "2021-12-08T01:08:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "75b32ba4-edd8-4395-9de4-ad706ffb0ce5", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rlee", + "reviewDate": "2022-08-18T07:34:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2a04d80f-6f4b-431d-8eb8-424ab45ab5f1", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissajenkins", + "reviewDate": "2021-07-28T10:33:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "17b7ac44-eb63-4e90-97d3-a19fc39bca00", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mcneilzachary", + "reviewDate": "2021-08-14T04:46:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a4caf8b-5f10-46fc-a7ab-73bca80c00ef", + "productId": "d8c0516b-a38b-427c-afe8-05eda3702a67", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tinafowler", + "reviewDate": "2022-02-14T16:07:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "71328774-3f49-4df8-8d91-a600c09f955f", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand 3000 (Steel)", + "description": "This Premium Stand 3000 (Steel) is the most expensive stand to get, and you'll need to pay $150 or more each year for it. I personally get it in every size", + "countryOfOrigin": "South Africa", + "rareItem": true, + "firstAvailable": "2019-06-26T02:11:30", + "price": 967.19, + "stock": 66, + "priceHistory": [ + { + "priceDate": "2021-03-24T10:09:25", + "newPrice": 883.16 + }, + { + "priceDate": "2022-12-11T10:09:25", + "newPrice": 1007.73 + }, + { + "priceDate": "2024-02-21T10:09:25", + "newPrice": 967.19 + } + ], + "descriptionVector": [ + -0.027258114889264107, + -0.009360617026686668, + -0.03243198245763779, + -0.007699532900005579, + 0.050594985485076904, + -0.06682459264993668, + -0.07423139363527298, + 0.039158012717962265, + -0.013595019467175007, + 0.024262718856334686, + 0.04002939909696579, + -0.018299154937267303, + 0.011716088280081749, + -0.0801677256822586, + 0.07428585737943649, + -0.04272525757551193, + 0.05201099067926407, + -0.02439887262880802, + -0.032540906220674515, + -0.04493096098303795, + 0.03981155529618263, + -0.04893390089273453, + -0.006024833302944899, + 0.015330987982451916, + -0.04291587322950363, + -0.052038222551345825, + 0.023976793512701988, + -0.03278598561882973, + -0.008516459725797176, + 0.019756007939577103, + 0.008727498352527618, + 0.05454346165060997, + 0.0019759410060942173, + 0.01066769938915968, + 0.008257766254246235, + -0.022669712081551552, + -0.001572583569213748, + 0.029382124543190002, + -0.021798323839902878, + 0.06246764957904816, + -0.012866592966020107, + 0.04964190348982811, + 0.06720582395792007, + 0.0020406143739819527, + 0.019088849425315857, + -0.07210738211870193, + -0.025270260870456696, + 0.021621322259306908, + -0.05860086530447006, + -0.0007599118980579078, + -0.011471009813249111, + 0.05598669871687889, + 0.01813576929271221, + 0.028891969472169876, + 0.031914595514535904, + -0.027271730825304985, + 0.01806769147515297, + 0.16273176670074463, + 0.022914789617061615, + 0.01942923665046692, + -0.01007542759180069, + -0.06976553052663803, + 0.006960894912481308, + -0.005245349369943142, + -0.061487339437007904, + -0.023908717557787895, + -0.02332325279712677, + 0.00710045313462615, + -0.01906161941587925, + 0.03422922268509865, + -0.0890994518995285, + -0.03341229632496834, + 0.026345880702137947, + 0.041418176144361496, + 0.01339078787714243, + -0.010177543386816978, + 0.07025568187236786, + 0.00036080923746339977, + 0.008455189876258373, + 0.03428368270397186, + -0.015494373627007008, + 0.023377714678645134, + -0.023990409448742867, + -0.04735450819134712, + 0.07907848805189133, + 0.023827023804187775, + -0.01869400218129158, + -0.04237125813961029, + -0.032894909381866455, + 0.03782369941473007, + 0.0330582931637764, + 0.09971950203180313, + 0.019293082877993584, + -0.0548430010676384, + -0.012744054198265076, + 0.08419789373874664, + -0.04757235571742058, + 0.05124852433800697, + -0.055224236100912094, + -0.01869400218129158, + 0.04346049204468727, + -0.02378617785871029, + -0.03275875374674797, + -0.024889029562473297, + -0.02732619270682335, + 0.02659095823764801, + 0.024535026401281357, + 0.04120032861828804, + 0.014486830681562424, + -0.19072511792182922, + 0.05225606635212898, + 0.03959370777010918, + 0.03330337256193161, + 0.018312770873308182, + -0.021784707903862, + 0.05274622514843941, + -0.017441382631659508, + -0.07406800985336304, + 0.07956864684820175, + -0.08234619349241257, + -0.028810275718569756, + 0.03904908895492554, + -0.02787081152200699, + -0.07227076590061188, + 0.02341856062412262, + -0.016297684982419014, + -0.05342699587345123, + 0.027339808642864227, + 0.025801263749599457, + -0.07542955130338669, + -0.0009837157558649778, + -0.008087572641670704, + 0.005956755951046944, + 0.03058028407394886, + -0.0999918058514595, + 0.11349833011627197, + -0.003056666813790798, + 0.004023363348096609, + 0.0137107502669096, + 0.07074584066867828, + -0.07608309388160706, + -0.061487339437007904, + 0.010136696510016918, + 0.09029761701822281, + -0.016038991510868073, + 0.024439718574285507, + -0.005286195315420628, + 0.04838928207755089, + 0.02542003057897091, + -0.024521412327885628, + 0.03240475431084633, + -0.10652722418308258, + -0.0049458094872534275, + -0.033085525035858154, + 0.03983878344297409, + -0.030716437846422195, + -0.1225389838218689, + 0.0003882528399117291, + -0.12243005633354187, + 0.04789912700653076, + 0.005173868034034967, + 0.013601827435195446, + -0.10783430188894272, + -0.010252428241074085, + -0.02269694209098816, + 0.02648203633725643, + 0.07907848805189133, + 0.049315132200717926, + -0.021185629069805145, + 0.021280936896800995, + 0.019837699830532074, + -0.05615008622407913, + 0.018544232472777367, + -0.09307516366243362, + -0.044604189693927765, + -0.006821336690336466, + 0.09051546454429626, + -0.10413090139627457, + 0.061487339437007904, + 0.0025614050682634115, + 0.019442852586507797, + 0.076246477663517, + 0.00961931049823761, + -0.055768851190805435, + -0.006470738910138607, + 0.09056992083787918, + 0.027612118050456047, + 0.028374582529067993, + 0.020532086491584778, + -0.027353424578905106, + 0.007502108812332153, + 0.04672819748520851, + 0.01020477432757616, + -0.020586548373103142, + -0.011164662428200245, + -0.018040461465716362, + 0.014745524153113365, + 0.02576041780412197, + -0.016638070344924927, + -0.02832012064754963, + -0.018163001164793968, + 0.0352095328271389, + 0.04691881313920021, + -0.002803079318255186, + 0.03695230931043625, + -0.055496543645858765, + -0.01814938522875309, + 0.06508181244134903, + 0.011995204724371433, + 0.009946080856025219, + -0.07450369745492935, + -0.05615008622407913, + -0.04389618709683418, + -0.044522497802972794, + -0.026972191408276558, + 0.036516617983579636, + -0.006834952160716057, + -0.0016355550615116954, + 0.03368460386991501, + -0.041145868599414825, + 0.06622551381587982, + -0.03158782795071602, + -0.051602527499198914, + -0.057402703911066055, + -0.001586199039593339, + -0.002163153374567628, + 0.008877268061041832, + -0.041690483689308167, + 0.01207689754664898, + 0.062031954526901245, + 0.01501783262938261, + -0.10832446068525314, + -0.04749066382646561, + 0.05064944550395012, + -0.006916644982993603, + -0.0034259858075529337, + -0.05497915670275688, + -0.06900306046009064, + 0.03387521952390671, + -0.013560980558395386, + -0.024480566382408142, + 0.0001871059648692608, + -0.044522497802972794, + -0.021811937913298607, + -0.0513574481010437, + 0.026264188811182976, + 0.06655228137969971, + -0.014405137859284878, + -0.022397402673959732, + -0.05043159797787666, + -0.020818011835217476, + -0.06257657706737518, + -0.035345688462257385, + 0.04915174841880798, + 0.03624430671334267, + 0.06143287569284439, + 0.027258114889264107, + 0.011505048722028732, + 0.020259778946638107, + -0.020191701129078865, + 0.02194809354841709, + 0.048144206404685974, + -0.012812131084501743, + 0.04547557607293129, + -0.05729378014802933, + 0.047953587025403976, + -0.0006505628698505461, + -0.022206787019968033, + -0.004585000220686197, + 0.014759140089154243, + -0.017985999584197998, + -0.008632190525531769, + 0.029817819595336914, + -0.0664978176355362, + 0.05217437446117401, + 0.03096151538193226, + 0.025556186214089394, + 0.014813601039350033, + -0.025174953043460846, + -0.0015342901460826397, + 0.036434922367334366, + -0.02359556220471859, + 0.04207171872258186, + 0.06404703855514526, + 0.08000434190034866, + -0.05582331493496895, + 0.048062510788440704, + -0.030825361609458923, + 0.023187099024653435, + -0.07771694660186768, + -0.029736125841736794, + 0.00136069324798882, + 0.03474660962820053, + 0.017904307693243027, + 0.06589873880147934, + -0.007651878520846367, + -0.011831819079816341, + 0.03692508116364479, + -0.005946544464677572, + -0.030743669718503952, + -0.010014157742261887, + 0.06551750749349594, + -0.0809301882982254, + -0.05146637186408043, + 0.052038222551345825, + 0.05620454624295235, + -0.010694930329918861, + -0.0680772140622139, + 0.005664024036377668, + 0.01986492983996868, + 0.03556353598833084, + -0.016352146863937378, + -0.024289948865771294, + 0.028075043112039566, + 0.04130925238132477, + 0.019660698249936104, + 0.04680988937616348, + 0.03256813809275627, + 0.047054968774318695, + 0.0049458094872534275, + 0.008155650459229946, + 0.008543689735233784, + 0.03959370777010918, + -0.021784707903862, + 0.0383138544857502, + -0.03469214588403702, + -0.014650216326117516, + -4.6936045691836625e-05, + 0.038341086357831955, + -0.01859869435429573, + -0.030090127140283585, + 0.0027843578718602657, + -0.00889769196510315, + -0.03104320913553238, + 0.08566836267709732, + 0.008918114937841892, + -0.0047585973516106606, + -0.06992891430854797, + -0.053672075271606445, + -0.007815264165401459, + 0.04645588994026184, + 0.032704293727874756, + -0.04757235571742058, + -0.02984504960477352, + 0.0101639274507761, + -0.01542629674077034, + 0.05263730138540268, + -0.06159626320004463, + 0.018898233771324158, + 0.03885847330093384, + 0.0017215025145560503, + -0.009312962181866169, + 0.056858088821172714, + 0.00712087657302618, + 0.10522013902664185, + 0.020082777366042137, + 0.05963563919067383, + -0.0735233873128891, + -0.01814938522875309, + -0.08310866355895996, + -0.006154180038720369, + 0.008638998493552208, + -0.030090127140283585, + 0.07254307717084885, + 0.009775887243449688, + 0.05625900998711586, + 0.01979685388505459, + 0.06900306046009064, + 0.04073740541934967, + 0.0350189171731472, + -0.032677061855793, + -0.03872231766581535, + 0.08000434190034866, + 0.006552431732416153, + 0.03104320913553238, + 0.0688396766781807, + 0.021349014714360237, + 0.07385016232728958, + -0.014677447266876698, + -0.008557305671274662, + -0.08523266762495041, + 0.03194182738661766, + 0.04689158499240875, + 0.03150613233447075, + 0.12384606152772903, + -0.021362628787755966, + -0.035971999168395996, + 0.05751162767410278, + -0.05800178647041321, + 0.005391715094447136, + -0.043242644518613815, + -0.01923862099647522, + -0.019129697233438492, + 0.01686953380703926, + 0.020559318363666534, + -0.07145383954048157, + 0.0008952153148129582, + 0.014881678856909275, + -0.006300546228885651, + -0.015535219572484493, + -0.004779020324349403, + 0.021716630086302757, + -0.032813217490911484, + 0.04182663932442665, + 0.036543846130371094, + -0.04171771556138992, + 0.048416513949632645, + -0.0070051453076303005, + -0.02494349144399166, + -0.015630528330802917, + -0.07412246614694595, + -0.07346893101930618, + -0.09209485352039337, + 0.09955611824989319, + 0.020164471119642258, + 0.012689592316746712, + 0.05519700422883034, + -0.04038340225815773, + 0.057947322726249695, + -0.08152926713228226, + 0.011566318571567535, + -0.0037102079950273037, + -0.07025568187236786, + 0.012710015289485455, + 0.0054223500192165375, + 0.036080922931432724, + -0.008114803582429886, + 0.031805671751499176, + -0.009142769500613213, + 0.019756007939577103, + -0.013377171941101551, + -0.06911198794841766, + -0.04030171036720276, + 0.04204448685050011, + -0.006436700467020273, + -0.04585681110620499, + 0.04509434476494789, + 0.045039884746074677, + -0.004271844867616892, + 0.026836037635803223, + -0.012750862166285515, + -0.037959855049848557, + 0.06998337060213089, + 0.009918849915266037, + -0.0490155927836895, + -0.06295780837535858, + 0.005374696105718613, + 0.002804781077429652, + -0.020178085193037987, + 0.004887943621724844, + -0.018271923065185547, + -0.03469214588403702, + -0.03937586024403572, + 0.041690483689308167, + 0.03384799137711525, + -0.029436586424708366, + -0.009721426293253899, + 0.006678374484181404, + 0.028537968173623085, + 0.030280744656920433, + 0.005514254327863455, + 0.03828662261366844, + 0.0820738896727562, + 0.0034957649186253548, + 0.004169729072600603, + 0.040356170386075974, + -0.021648554131388664, + 0.058927636593580246, + 0.0437600314617157, + 0.06785936653614044, + -0.07690002024173737, + -0.003383437404409051, + -0.053590383380651474, + -0.005735504906624556, + -0.03866785764694214, + -0.042970336973667145, + 0.05778393894433975, + -0.00866622943431139, + -0.0020950762555003166, + -0.04773573949933052, + 0.023663638159632683, + -0.02532472275197506, + -0.009401462972164154, + 0.05870978906750679, + -0.030634745955467224, + -0.003635323140770197, + -0.07608309388160706, + -0.0065558357164263725, + -0.03673446550965309, + 0.05538761988282204, + -0.05478854104876518, + 0.09754102677106857, + 0.023187099024653435, + -0.009135961532592773, + -0.005752524361014366, + -0.053045764565467834, + 0.05236499011516571, + -0.05380822718143463, + -0.024535026401281357, + -0.020164471119642258, + 0.015330987982451916, + -0.0011054037604480982, + -0.004081228747963905, + 0.017577536404132843, + 0.04961467161774635, + 0.03243198245763779, + -0.007992264814674854, + -0.02921873889863491, + 0.011804589070379734, + -0.07907848805189133, + 0.01941562071442604, + 0.02793888747692108 + ] + }, + { + "id": "dd2fe2e7-e73a-4c14-bbb3-1de3108b5c02", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "ariana09", + "reviewDate": "2022-10-07T15:30:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e122d04a-c568-4466-bd77-9417ccc158c4", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "zavaladaniel", + "reviewDate": "2022-11-19T20:27:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6efe88b2-fe0d-4181-b5a8-a49e5e13b6ed", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "andreavasquez", + "reviewDate": "2022-03-04T02:39:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1c51772c-3d34-4452-9cc8-1be7e1167c5a", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "myersglenn", + "reviewDate": "2021-03-24T10:09:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0ee6824f-8459-4f00-abd6-8c18ecc16101", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "mitchellwolfe", + "reviewDate": "2022-01-23T17:50:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e32e971a-1c47-4014-bd3b-12c3772d0ff3", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "coryturner", + "reviewDate": "2022-09-19T19:13:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7e659416-492a-411e-ba3d-a68638e98c83", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "dixonrobert", + "reviewDate": "2022-12-12T05:44:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "72eaf66e-7521-4d50-83a5-0e9bbc8819a1", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "jason52", + "reviewDate": "2022-09-24T23:39:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "60056ca2-1129-4e73-bf87-4dafe71f038a", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "harrislisa", + "reviewDate": "2021-10-13T13:43:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "03aadead-030c-4992-b76c-94c197b74f9e", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "wendybates", + "reviewDate": "2021-10-05T15:30:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a4644cdb-201a-483a-aee0-f2495dfd0d1c", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "floreswayne", + "reviewDate": "2022-10-24T13:54:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "68a35071-a7ab-41dc-9d1c-14f22215a2b1", + "productId": "71328774-3f49-4df8-8d91-a600c09f955f", + "category": "Accessory", + "docType": "customerRating", + "userName": "katrinaharper", + "reviewDate": "2022-06-26T00:10:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Super (Red)", + "description": "This Amazing Keyboard Super (Red) is for one, too. Great design, fast typing speed, and high contrast in color. The keyboards come in either \"Black\" or \"White\" mode. Also available on ebay for £10 or $20 depending on whether you have your own keyboard or get a cheap keyboard made of polyester. Very versatile keyset and typing experience.\n\n", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-08-13T06:11:59", + "price": 385.07, + "stock": 7, + "priceHistory": [ + { + "priceDate": "2021-01-24T19:15:06", + "newPrice": 406.62 + }, + { + "priceDate": "2021-07-05T19:15:06", + "newPrice": 363.07 + }, + { + "priceDate": "2021-12-14T19:15:06", + "newPrice": 363.61 + }, + { + "priceDate": "2022-05-25T19:15:06", + "newPrice": 363.9 + }, + { + "priceDate": "2022-11-03T19:15:06", + "newPrice": 362.48 + }, + { + "priceDate": "2024-03-28T19:15:06", + "newPrice": 385.07 + } + ], + "descriptionVector": [ + -0.015426005236804485, + -0.0017012195894494653, + -0.03768110275268555, + 0.010225479491055012, + 0.025451697409152985, + -0.04082926735281944, + 0.0018283569952473044, + 0.013597647659480572, + -0.025936029851436615, + 0.022727323696017265, + 0.07047044485807419, + -0.02600868046283722, + 0.06315702199935913, + -0.12011457234621048, + 0.06010572239756584, + 0.022061366587877274, + 0.010334454476833344, + -0.013379697687923908, + -0.003232922637835145, + 0.019978735595941544, + 0.013682406395673752, + -0.028866244480013847, + -0.07981806993484497, + -0.044098515063524246, + -0.018077727407217026, + 0.0039109885692596436, + -0.006344761699438095, + 0.014275713823735714, + -0.029834911227226257, + 0.0077674901112914085, + 0.027849145233631134, + -0.026880480349063873, + 0.0002641128085087985, + 0.06388352066278458, + -0.035719554871320724, + -0.004607217386364937, + -0.05167832598090172, + -0.0449945330619812, + 0.019881868734955788, + 0.008300255984067917, + 0.05395469069480896, + 0.03741472214460373, + -0.018562061712145805, + -0.030004426836967468, + -0.04484923183917999, + 0.06485218554735184, + 0.006907798815518618, + 0.0042136968113482, + 0.025911813601851463, + -0.0249189306050539, + 0.07197187840938568, + 0.06678951531648636, + -0.010510025545954704, + -0.013924572616815567, + 0.034944623708724976, + 0.00279096863232553, + 0.018537843599915504, + 0.07507161051034927, + 0.05598888918757439, + -0.08495200425386429, + 0.02408345602452755, + -0.0482153482735157, + -0.003920069895684719, + -0.037826403975486755, + 0.02956852689385414, + -0.010164937935769558, + -0.027389029040932655, + -0.054051559418439865, + -0.00010405590728623793, + 0.03809278830885887, + -0.05221109464764595, + 0.05414842441678047, + 0.06553024798631668, + 0.040393367409706116, + -0.04513983055949211, + 0.02571807987987995, + 0.13997222483158112, + 0.005206579342484474, + 0.03407282382249832, + 0.016830570995807648, + 0.03426655754446983, + -0.022279316559433937, + 0.0005619018920697272, + -0.02121378295123577, + 0.050854962319135666, + -0.04116830229759216, + -0.01357343140989542, + -0.10713445395231247, + -0.05594045668840408, + 0.06887214630842209, + -0.06998611241579056, + -0.018695252016186714, + 0.041192520409822464, + -0.0028787541668862104, + 0.051145561039447784, + -0.04157998412847519, + -0.027364812791347504, + 0.022267207503318787, + -0.020668908953666687, + 0.011829832568764687, + 0.02346593141555786, + -0.02634771354496479, + -0.06615988165140152, + -0.022557808086276054, + -0.03726942092180252, + -0.016467321664094925, + 0.06291484832763672, + 0.046956080943346024, + -0.03630075603723526, + -0.13386963307857513, + 0.02053571678698063, + 0.019058501347899437, + -0.01293169055134058, + 0.03150586038827896, + 0.0007003908976912498, + 0.013464456424117088, + -0.03455715626478195, + -0.045551516115665436, + 0.05008002743124962, + -0.06494905054569244, + 0.015317030251026154, + 0.03232922405004501, + -0.04780366271734238, + 0.07327957451343536, + -0.026226630434393883, + -0.0433720164000988, + -0.041797935962677, + 0.04526091367006302, + 0.0028908622916787863, + -0.03552582114934921, + -0.05816838890314102, + 0.05652165785431862, + 0.03005286119878292, + 0.11594931036233902, + -0.0200877096503973, + 0.05899175629019737, + 0.03441185876727104, + 0.11372137814760208, + -0.03835916891694069, + 0.03392752259969711, + -0.02053571678698063, + -0.05317975953221321, + 0.02712264657020569, + 0.0803024023771286, + -0.08214286714792252, + 0.017714478075504303, + 0.01478426344692707, + 0.03162694349884987, + 0.06819408386945724, + 0.052743859589099884, + -0.0013084558304399252, + -0.09342782944440842, + -0.02554856427013874, + -0.0626242533326149, + 0.016624728217720985, + 0.05768405646085739, + -0.08383803814649582, + -0.02714686281979084, + -0.01909482665359974, + 0.08616283535957336, + -0.04867546260356903, + 0.05104869604110718, + 0.02069312520325184, + 0.014166738837957382, + -0.03295885771512985, + 0.04220961779356003, + 0.04443755000829697, + 0.03680930659174919, + -0.04046601802110672, + 0.03826230391860008, + -0.021407516673207283, + 0.01236865296959877, + 0.03114260919392109, + -0.05182362720370293, + 0.05574672296643257, + 0.043275151401758194, + 0.0417252853512764, + -0.043953217566013336, + 0.026129763573408127, + -0.03986060246825218, + -0.014275713823735714, + 0.04320250079035759, + -0.03516257181763649, + 0.03320102393627167, + 0.06688638031482697, + 0.043444667011499405, + 0.0038050408475100994, + 0.04397743195295334, + 0.018356218934059143, + 0.014433122240006924, + -0.008917780593037605, + -0.0006837419350631535, + -0.04838486388325691, + 0.04899027943611145, + -0.035404738038778305, + 0.0819975733757019, + -0.010764299891889095, + 0.03307994082570076, + 0.03680930659174919, + 0.04305719956755638, + 0.017314903438091278, + 0.0753622055053711, + 0.056424789130687714, + -0.03385487571358681, + 0.04460706561803818, + -0.0046798670664429665, + 0.023247981444001198, + 0.02826082892715931, + 0.061413418501615524, + -0.0160798542201519, + -0.010703758336603642, + 0.00018171945703215897, + -0.006005728617310524, + -0.007525323424488306, + 0.020281443372368813, + -0.012968014925718307, + 0.006562711670994759, + -0.0076524605974555016, + -0.010304183699190617, + -0.023817073553800583, + 0.01669737882912159, + 0.007561648264527321, + -0.019797109067440033, + -0.0176418274641037, + -0.009208380244672298, + -0.001708787283860147, + 0.05540769174695015, + 0.010970141738653183, + 0.01720592938363552, + 0.07657304406166077, + -0.08282093703746796, + -0.07986650615930557, + -0.007906735874712467, + -0.03249874338507652, + -0.028042878955602646, + 0.04298454895615578, + -0.030270809307694435, + -0.058555856347084045, + -0.10238798707723618, + 0.0722140446305275, + 0.013125423341989517, + -0.0112486332654953, + -0.0352836549282074, + -0.057441890239715576, + 0.05584359169006348, + -0.11381824314594269, + 0.08117420226335526, + -0.04911136254668236, + -0.11129971593618393, + 0.00931130163371563, + -0.055649857968091965, + 0.01357343140989542, + 0.00667168665677309, + 0.049547262489795685, + -0.00610562227666378, + 0.032813556492328644, + 0.019312776625156403, + 0.013294939883053303, + -0.01020126324146986, + -0.1187584400177002, + 0.05332506075501442, + 0.01034656260162592, + -0.029035761952400208, + 0.08117420226335526, + -0.10006318986415863, + 0.06480374932289124, + 0.008173118345439434, + -0.07797760516405106, + -0.036034371703863144, + 0.041362036019563675, + 0.04513983055949211, + 0.0023807992693036795, + 0.0385286882519722, + -0.025403263047337532, + 0.021334867924451828, + 0.025161096826195717, + -0.035356305539608, + 0.07449041306972504, + 0.03479932248592377, + -0.0417494997382164, + 0.0012516980059444904, + 0.12059890478849411, + 0.0753622055053711, + -0.02103215828537941, + 0.060008853673934937, + -0.06829094886779785, + -0.03390330821275711, + 0.010964087210595608, + -0.017932428047060966, + -0.023974481970071793, + -0.027389029040932655, + -0.011212307959794998, + -0.02603289671242237, + 0.02874516136944294, + 0.030973093584179878, + 0.01350078172981739, + 0.03322524204850197, + -0.03562268987298012, + 0.012235461734235287, + 0.010189155116677284, + 0.05555298924446106, + -0.04702873155474663, + -0.08548476547002792, + -0.08592066913843155, + -0.03608280420303345, + 0.03661557286977768, + -0.0033176809083670378, + 0.003338870359584689, + -0.016576295718550682, + -0.06247895210981369, + 0.08127107471227646, + -0.026105547323822975, + 0.0030179996974766254, + 0.017678152769804, + 0.13047930598258972, + -0.06606301665306091, + -0.013246506452560425, + 0.014263605698943138, + 0.03593750670552254, + 0.02310268208384514, + -0.006332653574645519, + -0.04969256371259689, + -0.08592066913843155, + 0.07289211452007294, + -0.0076766773127019405, + -0.07642774283885956, + -0.01913115195930004, + -0.011805616319179535, + 0.027873361483216286, + -0.012520006857812405, + -0.09090929478406906, + -9.133270941674709e-05, + -0.009862230159342289, + 0.010667433962225914, + 0.028720945119857788, + -0.05269542708992958, + 0.016648946329951286, + 0.07153598219156265, + 0.019869759678840637, + 0.04254864901304245, + 0.06543338298797607, + 0.002341447165235877, + -0.01147869136184454, + -0.052453260868787766, + -0.0017511664191260934, + -0.016624728217720985, + -0.015341246500611305, + -0.00530647300183773, + 0.0401269868016243, + -0.021613357588648796, + 0.0016149476869031787, + -0.001028450787998736, + 0.025645431131124496, + 0.015389679931104183, + -0.012859039939939976, + -0.003081568516790867, + -0.046011630445718765, + -0.07788074016571045, + 0.015765037387609482, + 0.021274324506521225, + -0.013682406395673752, + -0.011581611819565296, + 0.039933253079652786, + 0.02600868046283722, + -0.060154154896736145, + 0.0006129838875494897, + -0.01117598358541727, + 0.06514278054237366, + 0.04942617937922478, + 0.017787128686904907, + 0.05221109464764595, + -0.022618349641561508, + -0.05971825495362282, + 0.019990842789411545, + -0.030730927363038063, + 0.07623400539159775, + -0.022715216502547264, + -0.02058415114879608, + 0.01783556118607521, + 0.021649682894349098, + -0.03271669149398804, + 0.009147838689386845, + -0.0007416348671540618, + 0.035743772983551025, + 0.0385529026389122, + -0.033636923879384995, + -0.02263045683503151, + -0.007240777835249901, + -0.015195947140455246, + 0.02588759735226631, + -0.08853606879711151, + 0.022618349641561508, + -0.0038867720868438482, + 0.061897750943899155, + -0.0022809056099504232, + 0.029011543840169907, + 0.049401961266994476, + 0.08170697093009949, + 0.052937593311071396, + 0.019700244069099426, + 0.002526099095121026, + -0.020305659621953964, + -0.007059153169393539, + -0.06606301665306091, + -0.04061131924390793, + -0.1268952339887619, + 0.00890567246824503, + 0.004029044881463051, + -0.019966626539826393, + -0.06514278054237366, + -0.04458284750580788, + 0.0066414158791303635, + -0.05129086226224899, + -0.03792327269911766, + 0.0006602820358239114, + 0.0281155277043581, + 0.08868136256933212, + 0.0673707127571106, + 0.023986589163541794, + -0.07269837707281113, + 0.05361565947532654, + -0.023356957361102104, + 0.03320102393627167, + 0.010715866461396217, + -0.018101943656802177, + 0.0028348613996058702, + 0.06867841631174088, + 0.013815597631037235, + -0.0013084558304399252, + -0.020039277151226997, + -0.0020447932183742523, + -0.042015884071588516, + -0.016927437856793404, + -0.013791381381452084, + -0.043299365788698196, + 0.005034035537391901, + -0.005194471217691898, + 0.02151649259030819, + -0.007846194319427013, + 0.07361861318349838, + 0.019542835652828217, + -0.03404860571026802, + -0.03593750670552254, + 0.028624078258872032, + -0.11653050780296326, + 0.03550160676240921, + 0.016624728217720985, + 0.06184931844472885, + 0.05632792413234711, + -0.03351584076881409, + -0.04828799515962601, + -0.02358701452612877, + -0.056957557797431946, + -0.00242620543576777, + 0.10558458417654037, + -0.02840612828731537, + 0.02695312909781933, + 0.052453260868787766, + -0.02603289671242237, + 0.04705294594168663, + 0.04768257960677147, + 0.0818522721529007, + 0.05923392251133919, + -0.07613714039325714, + -0.060783788561820984, + -0.036203887313604355, + -0.026275062933564186, + 0.05177519470453262, + -0.010939870961010456, + -0.009674550965428352, + -0.03438764065504074, + -0.04807004705071449, + 0.003344924421980977, + 0.002680480247363448, + 0.02748589590191841, + -0.050661228597164154, + -0.0032238413114100695, + 0.009486871771514416, + 0.029980210587382317, + 0.025911813601851463, + -0.0025109637062996626, + -0.056424789130687714, + 0.003680930472910404, + -0.008881455287337303, + 0.009583738632500172, + -0.03298307582736015, + -0.02680782973766327, + 0.043154068291187286, + 0.023005815222859383, + -0.028139745816588402, + 0.03194176033139229, + 0.057102855294942856, + 0.007174182217568159, + -0.02344171516597271, + -0.03150586038827896, + 0.017109062522649765, + -0.023017924278974533, + -0.06761287897825241, + -0.029980210587382317, + 0.012483682483434677, + 0.026299279183149338, + -0.041676852852106094, + 0.01704852096736431, + -0.02393815666437149, + 0.06073535233736038, + 0.020789992064237595, + -0.07148754596710205, + 0.030585626140236855, + 0.014614746905863285, + -0.04029650241136551, + -0.00028435641434043646, + -0.037172555923461914 + ] + }, + { + "id": "82d795f8-4e21-4d12-9c0f-f68edc89f0de", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tweaver", + "reviewDate": "2021-06-09T04:55:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "36d9a0df-a66e-4011-9f69-34f0dca354a9", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fgentry", + "reviewDate": "2021-11-16T06:09:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "acc36a3a-733c-4a15-8685-f54f7e4ec159", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberlyanderson", + "reviewDate": "2022-07-16T12:00:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e02b33c7-d52c-4f9c-b247-969a28eca387", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksontina", + "reviewDate": "2022-05-21T18:56:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "98d68e4e-7127-48af-be38-cd0b6a756482", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maynardcynthia", + "reviewDate": "2021-07-01T18:42:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "74a36fb2-d1f8-4bc4-9fb7-db0a9098080e", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david85", + "reviewDate": "2021-06-03T09:58:28", + "stars": 4, + "verifiedUser": false + }, + { + "id": "36c44bd5-dcb3-446a-9a8a-522bde590b10", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chloeperez", + "reviewDate": "2022-09-03T00:03:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8c74c9bb-6db8-447a-80b5-e2a466f548d3", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uramirez", + "reviewDate": "2022-07-06T15:37:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "67bb0b63-95c4-473a-8da6-dad6289f4abf", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steven97", + "reviewDate": "2022-07-24T04:42:53", + "stars": 4, + "verifiedUser": false + }, + { + "id": "664a1e23-de05-4de9-bf55-f76678dc96a0", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertgarcia", + "reviewDate": "2021-05-08T05:46:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a7defaad-2879-42e5-9b08-7d44a751a632", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jocelyntorres", + "reviewDate": "2021-04-18T10:52:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "67c3b56e-8ff7-41aa-806b-8df399ae9a2b", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christina07", + "reviewDate": "2022-04-24T00:44:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b9a9ac43-7374-4273-b380-bc35c7bb3816", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lellis", + "reviewDate": "2022-05-25T08:59:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "df8a5c54-b38d-4b9e-bf7a-b71af3f2ef7f", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michaelwilson", + "reviewDate": "2021-12-22T03:53:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1a9e6b67-efe3-4537-9b72-a1813ec1b698", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kbradford", + "reviewDate": "2022-08-07T09:24:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "22f13013-a5b0-4283-87d4-ff99900ce54b", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "josephbarber", + "reviewDate": "2022-05-03T06:41:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "239d78c5-a3a6-49f2-be00-55c3553dc426", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "creeves", + "reviewDate": "2022-03-28T20:42:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9a8b7aa9-a459-4ca1-9884-90e9b65c1f6a", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amanda74", + "reviewDate": "2022-11-06T01:38:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c2b7f196-a963-40c8-96bf-918f198a53d6", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "awagner", + "reviewDate": "2021-01-24T19:15:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6206e3f6-4ad2-4708-914c-ba3237de09de", + "productId": "8dc6f4ec-a3d0-4f1f-9b1c-5846429d5515", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rodneypeterson", + "reviewDate": "2022-01-23T07:04:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Black)", + "description": "This Awesome Stand + (Black) is not currently supported on our server yet. You can do this to get the server up and running, the addon will automatically install:\n\n\nhttp://n2d3d3d123.eu/\n\n\nThis Amazing Stand can be used with your mod to add even more detailed scenery:\n\nhttp://n2d3d3d123.eu", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-07-16T09:32:35", + "price": 1006.91, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-03-11T03:44:19", + "newPrice": 1023.63 + }, + { + "priceDate": "2022-06-12T03:44:19", + "newPrice": 1006.91 + } + ], + "descriptionVector": [ + -0.05072968453168869, + -0.018630551174283028, + -0.03948608785867691, + -0.005844296887516975, + 0.010583518072962761, + -0.06906357407569885, + 0.002712629036977887, + 0.043847061693668365, + -0.025439009070396423, + 0.07232688367366791, + 0.006215128116309643, + 0.03782476484775543, + -0.04004975035786629, + -0.015841901302337646, + 0.06431693583726883, + -0.005128593184053898, + -0.028168324381113052, + 0.029087986797094345, + -0.006407960318028927, + -0.03417578712105751, + 0.06526625901460648, + -0.011139764450490475, + -0.0244155153632164, + 0.01637589931488037, + 0.0037453933618962765, + -0.036845769733190536, + 0.012993919663131237, + -0.01762189157307148, + -0.07778551429510117, + 0.07719218730926514, + 0.006322669330984354, + -0.04473705589771271, + -0.004609429743140936, + 0.07125889509916306, + 0.003934517037123442, + -0.0034468744415789843, + 0.06063828989863396, + 0.03562944754958153, + -0.0891181156039238, + 0.05500165745615959, + 0.03720176964998245, + -0.043639395385980606, + 0.002019174862653017, + 0.04900902882218361, + 0.002810899168252945, + -0.011228763498365879, + -0.02847982384264469, + -0.051679011434316635, + -0.01317191869020462, + 0.023911185562610626, + 0.03773576766252518, + -0.01610890030860901, + -0.03465045243501663, + -0.020291874185204506, + 0.03927842155098915, + -0.004487055353820324, + 0.020603371784090996, + 0.10223069787025452, + -0.017265893518924713, + 0.03233646601438522, + -0.049780357629060745, + 0.011577344499528408, + 0.014684909023344517, + 0.0615282841026783, + -0.07191155105829239, + 0.02183453179895878, + 0.04378772899508476, + 0.031120140105485916, + -0.005110051482915878, + 0.02155270054936409, + -0.02535001002252102, + 0.030333979055285454, + -0.037261102348566055, + 0.016568729653954506, + 0.05286567285656929, + -0.03824009746313095, + 0.05746397748589516, + 0.010160770267248154, + 0.0891774445772171, + -0.004657637793570757, + 0.035748112946748734, + -0.0011467949952930212, + -0.09048277139663696, + -0.0066267503425478935, + -0.030942142009735107, + -0.004138474352657795, + -0.08401548117399216, + -0.11765727400779724, + 0.006040837615728378, + -0.02741182968020439, + -0.005870255175977945, + 0.02003970928490162, + -0.01923871412873268, + -0.009463608264923096, + -0.03592611104249954, + 0.06983490288257599, + 0.002744149649515748, + 0.03951575607061386, + -0.04355039820075035, + 0.03209913522005081, + 0.00826211553066969, + -0.003680498106405139, + -0.03542178124189377, + -0.05865063518285751, + -0.03482845053076744, + -0.0008102658321149647, + 0.02683333307504654, + 0.030615810304880142, + 0.026358669623732567, + -0.09244076162576675, + 0.01866021752357483, + -0.05583231896162033, + 0.0828881561756134, + 0.04918702691793442, + -0.0014888866571709514, + 0.10531601309776306, + 0.00564775662496686, + -0.043639395385980606, + -0.004004975315183401, + -0.053162336349487305, + 0.018734384328126907, + 0.02951814979314804, + -0.02714483253657818, + 0.017681224271655083, + -0.005740464199334383, + -0.015426570549607277, + -0.05437866225838661, + 0.01312000211328268, + 0.06449493020772934, + -0.029458817094564438, + -0.04061341658234596, + -0.0190755482763052, + 0.02738216333091259, + 0.0032707296777516603, + -0.00965644046664238, + 0.07903151214122772, + 0.004257140215486288, + 0.06051962450146675, + -0.013631748966872692, + -0.010642850771546364, + -0.057226646691560745, + -0.01775538921356201, + -0.03749843314290047, + 0.08205749094486237, + -0.103892020881176, + 0.03859609365463257, + 0.002651441842317581, + -0.01045001856982708, + 0.02607683837413788, + -0.01274175476282835, + 0.03571844473481178, + -0.11480928957462311, + -0.03648977354168892, + -0.020158374682068825, + 0.0035952068865299225, + 0.015100239776074886, + -0.033226460218429565, + -0.03224746510386467, + -0.050195690244436264, + 0.06455426663160324, + 0.020811038091778755, + 0.010183020494878292, + -0.040287084877491, + 0.024563847109675407, + 0.05351833626627922, + -0.06633425503969193, + 0.10668066889047623, + 0.02813865803182125, + -0.00918919313699007, + 0.0233475212007761, + 0.016642896458506584, + -0.014158328995108604, + 0.03414612263441086, + 0.0024382141418755054, + -0.0403464175760746, + 0.0029610858764499426, + 0.0869821235537529, + -0.05458632856607437, + 0.08674479275941849, + -0.0020395705942064524, + -0.05037368834018707, + 0.007116247434169054, + 0.017295559868216515, + 0.01527823880314827, + 0.04037608206272125, + 0.00822503212839365, + 0.0030092939268797636, + 0.029221486300230026, + 0.031327806413173676, + -0.04874202981591225, + -0.023392021656036377, + -0.01003468781709671, + 0.038952093571424484, + -0.04444039240479469, + -0.01056868489831686, + 0.017325226217508316, + -0.07677685469388962, + 0.025290677323937416, + -0.008002533577382565, + 0.003509915666654706, + -0.0678175762295723, + 0.06265561282634735, + -0.0017827701522037387, + 0.0017225102055817842, + -0.010702183470129967, + 0.019906209781765938, + 0.054022666066884995, + 0.014781325124204159, + 0.06710558384656906, + -0.012793670408427715, + 0.0765395238995552, + -0.03889275714755058, + -0.07096222788095474, + 0.015077989548444748, + 0.05028468742966652, + 0.05034402012825012, + 0.01434374414384365, + 0.05473466217517853, + -0.011317763477563858, + 0.007646535988897085, + 0.07974350452423096, + -0.08407481014728546, + -0.06437626481056213, + -0.03251446411013603, + -0.08793145418167114, + -0.04076174646615982, + -0.004817095119506121, + 0.021908696740865707, + 0.051501013338565826, + 0.032366134226322174, + -0.032840795814991, + -0.09184742718935013, + -0.0063745854422450066, + 0.03764676675200462, + -0.00646729301661253, + 0.055060990154743195, + 0.02290252409875393, + 0.0007527869893237948, + 0.02217569574713707, + -0.03657877445220947, + -0.07357287406921387, + 0.0361337773501873, + -0.047229040414094925, + 0.005937004927545786, + 0.017399393022060394, + 0.011770176701247692, + 0.018541552126407623, + -0.020707204937934875, + 0.045508384704589844, + -0.12614189088344574, + 0.029577482491731644, + 0.07173355668783188, + -0.01741422526538372, + 0.01710272766649723, + 0.07719218730926514, + 0.06621558964252472, + 0.06947889924049377, + 0.0297554824501276, + -0.011703427881002426, + 0.036400772631168365, + -0.06983490288257599, + 0.03292979672551155, + -0.03476911783218384, + 0.06277427822351456, + -0.0233178548514843, + 0.016746729612350464, + 0.021597199141979218, + 0.04458872228860855, + -0.02621033787727356, + 0.061053622514009476, + 0.04099907726049423, + -0.046428047120571136, + -0.06182495132088661, + 0.046161048114299774, + 0.02951814979314804, + 0.007772618439048529, + 0.006619333755224943, + 0.006808457896113396, + 0.05120434984564781, + -0.03803243115544319, + -0.02417818270623684, + -0.01352049969136715, + 0.05138234794139862, + 0.034086789935827255, + -0.009493274614214897, + 0.024044685065746307, + -0.02693716622889042, + -0.08170149475336075, + -0.011555095203220844, + -0.03969375416636467, + 0.002905461238697171, + -0.0038714760448783636, + 0.016613230109214783, + 0.07143688946962357, + 0.058264970779418945, + -0.0016501981299370527, + -0.04969135671854019, + 0.040227752178907394, + 0.030526811257004738, + -0.0063263773918151855, + 0.029992813244462013, + -0.016924727708101273, + 0.02886548824608326, + 0.015916068106889725, + -0.009352358989417553, + 0.06099428981542587, + -0.022057030349969864, + 0.026062004268169403, + -0.04055408015847206, + 0.022576192393898964, + 0.08027750253677368, + -0.022427860647439957, + -0.03358246013522148, + -0.020544039085507393, + 0.00516567612066865, + 0.013995163142681122, + 0.008195365779101849, + 0.027574995532631874, + -0.004846761468797922, + 0.03521411493420601, + -0.03518444672226906, + -0.04245273768901825, + -0.06965690106153488, + 0.025676339864730835, + 0.11018131673336029, + -0.030704809352755547, + 0.02779749408364296, + 0.04909802973270416, + -0.035777777433395386, + -0.02555767446756363, + -0.04316473379731178, + 0.0007578859222121537, + 0.0678175762295723, + 0.03631177544593811, + -0.0061335451900959015, + -0.09813672304153442, + 0.027218997478485107, + 0.01785922236740589, + 0.041473742574453354, + 0.025127511471509933, + 0.046428047120571136, + -0.002365902066230774, + -0.030734475702047348, + -0.04452938959002495, + 0.024534180760383606, + -0.04058374837040901, + 0.09896738827228546, + -0.04203740507364273, + 0.10994398593902588, + 0.01357241626828909, + 0.0017160206334665418, + 0.004260848741978407, + 0.010294269770383835, + -0.014707159250974655, + 0.08727879077196121, + -0.03292979672551155, + -0.03735010325908661, + -0.02896931953728199, + -0.042779069393873215, + 0.0067231664434075356, + 0.07351354509592056, + 0.0027645453810691833, + 0.015530403703451157, + 0.0028257325757294893, + 0.03990142047405243, + 0.0932714194059372, + -0.03319679573178291, + -0.01426216121762991, + -0.06402026861906052, + -0.020262207835912704, + -0.06847023963928223, + -0.06841091066598892, + -0.02896931953728199, + -0.028806155547499657, + -0.10288336127996445, + -0.007475953549146652, + 0.023466188460588455, + 0.07464087009429932, + 0.056366316974163055, + -0.00913727656006813, + 0.01762189157307148, + -0.01174051035195589, + -0.05280634015798569, + 0.0028646697755903006, + 0.12602321803569794, + -0.08609212934970856, + 0.01081343274563551, + -0.007468536961823702, + -0.050433021038770676, + -0.019565045833587646, + -0.05903629958629608, + -0.04102874547243118, + -0.01772572286427021, + 0.0006702771061100066, + 0.04797070100903511, + -0.11789460480213165, + -0.010665100067853928, + -0.003587790299206972, + -0.04182973876595497, + 0.06099428981542587, + 0.05114501714706421, + 0.06615625321865082, + 0.0870414599776268, + 0.0551796592772007, + -0.0595109649002552, + -0.008966694585978985, + 0.013765247538685799, + 0.007205246947705746, + 0.005532798822969198, + -0.05565432086586952, + -0.07327621430158615, + -0.05980762839317322, + -0.06431693583726883, + 0.07831951230764389, + 0.06265561282634735, + 0.05046268552541733, + 0.041711073368787766, + 0.009626773186028004, + 0.029221486300230026, + -0.028197992593050003, + 0.02545384131371975, + 0.038299430161714554, + -0.01785922236740589, + 0.023466188460588455, + -0.09784006327390671, + 0.034680116921663284, + -0.049810025840997696, + 0.013283167965710163, + -0.057671643793582916, + -0.10217136889696121, + 0.04580504819750786, + -0.09671273082494736, + 0.03310779482126236, + 0.02683333307504654, + -0.012719504535198212, + 0.0360744446516037, + 0.06663092225790024, + -0.00913727656006813, + 0.023406855762004852, + -0.0023900060914456844, + -0.016717063263058662, + -0.02904348634183407, + -0.019357379525899887, + 0.015530403703451157, + -0.013987747021019459, + 0.01600506715476513, + -0.0424230694770813, + 0.010650266893208027, + 0.031120140105485916, + 0.005443799775093794, + -0.11617394536733627, + -0.037706099450588226, + -0.05342933535575867, + -0.01093209907412529, + -0.023718353360891342, + -0.03764676675200462, + -0.029547816142439842, + 0.0890587791800499, + 0.03565911203622818, + 0.021671365946531296, + 0.030304312705993652, + -0.01432891096919775, + 0.023392021656036377, + -0.008061866275966167, + 0.02152303233742714, + -0.005369633436203003, + -0.07268287986516953, + 0.030230145901441574, + 0.0016826457576826215, + -0.009515523910522461, + -0.022991523146629333, + -0.039812419563531876, + 0.011762760579586029, + 0.06425759941339493, + -0.04414372518658638, + 0.004920927807688713, + -0.04604238271713257, + -0.05230201035737991, + 0.0026848167181015015, + -0.02376285195350647, + -0.03735010325908661, + -0.029710981994867325, + -0.0016029170947149396, + -0.013031002134084702, + -0.007053206209093332, + 0.008714529685676098, + -0.011584761552512646, + 0.0381510965526104, + -0.047644373029470444, + 0.1126139685511589, + 0.08876211941242218, + 0.05224267765879631, + 0.01920904777944088, + -0.02899898774921894, + -0.0026532961055636406, + -0.01686539500951767, + 0.005132301710546017, + 0.08354081213474274, + -0.04168140888214111, + 0.015456237830221653, + -0.02290252409875393, + 0.03402745723724365, + 0.008039616979658604, + -0.04079141467809677, + 0.07030956447124481, + 0.0404057502746582, + 0.019565045833587646, + 0.027426663786172867, + -0.029651649296283722, + -0.017087893560528755, + -0.014581075869500637, + 0.06330827623605728 + ] + }, + { + "id": "bfc5b3a1-9096-4c00-bd31-31516ab9dad7", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "qjuarez", + "reviewDate": "2022-01-26T18:33:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dc3b486f-2e51-43b4-be48-660ba3525045", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "meadowselizabeth", + "reviewDate": "2021-12-20T11:19:21", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d84f1ddf-62db-4006-8ba6-c2fdbb572654", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "joneshunter", + "reviewDate": "2021-03-21T13:54:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0ebb0479-635e-4eb7-b70e-4c6933ec3700", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "jenniferbaker", + "reviewDate": "2022-09-25T07:43:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "28e3c5e5-c5bf-4daa-9d89-de7c775b6c8e", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "megan66", + "reviewDate": "2022-07-01T12:44:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4ec04cb4-f910-4056-b704-5e5c13c5226a", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthew35", + "reviewDate": "2022-11-28T20:19:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2bfa226c-3690-40cc-a97f-414397cfa8f7", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "xscott", + "reviewDate": "2021-07-20T12:02:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8e59c2c3-0df9-4d4e-afdd-cdd9c516d831", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "allenmcclain", + "reviewDate": "2021-04-14T21:35:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "78eac289-8a8e-4006-9f88-e1f6d27f710c", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "pereztiffany", + "reviewDate": "2021-03-11T03:44:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "659e82b0-41dc-4315-bc29-5d52a8d3d8bc", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "ywebster", + "reviewDate": "2021-05-19T05:30:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a9ebca3e-e15b-48ce-84c1-a56267e8bc76", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "nrojas", + "reviewDate": "2021-11-08T12:24:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bf7a22fa-92a2-4455-8685-93d154a5f96e", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "lewisjulie", + "reviewDate": "2021-05-06T23:38:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "38d9f814-8076-4f78-a4c8-73fb62176f16", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonesnancy", + "reviewDate": "2022-07-25T07:39:44", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f5aeb11d-b5f6-47c8-b2a1-536b5c8c3dd3", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "alyssaescobar", + "reviewDate": "2021-12-12T03:11:41", + "stars": 4, + "verifiedUser": true + }, + { + "id": "de449bbc-1111-4630-81e2-eab9bd4996c3", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "thompsonpatricia", + "reviewDate": "2022-03-29T14:40:09", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b28fc0b1-1df7-4843-93f0-4a79134b2931", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "rodriguezshawn", + "reviewDate": "2021-08-27T02:29:48", + "stars": 5, + "verifiedUser": true + }, + { + "id": "6fd6b699-4673-46bd-9ee0-269795ab8a05", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "hannah30", + "reviewDate": "2021-06-08T13:08:13", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9d656f15-ea2a-4c9e-acac-6a7dd9f96ed6", + "productId": "d7a3dd8c-c77d-4574-a815-3f1645e0c459", + "category": "Accessory", + "docType": "customerRating", + "userName": "deanna05", + "reviewDate": "2022-11-30T03:51:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Red)", + "description": "This Premium Keyboard Mini (Red) is the ultimate keyboard for anyone with a few basic gaming needs. The design features a Cherry MX Clear, S-key touchpad, and an angled back to make your keyboard a comfortable choice for typing on a", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-03-27T12:39:37", + "price": 970.85, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-02-24T14:09:51", + "newPrice": 953.22 + }, + { + "priceDate": "2022-01-02T14:09:51", + "newPrice": 984.33 + }, + { + "priceDate": "2022-11-10T14:09:51", + "newPrice": 1049.8 + }, + { + "priceDate": "2025-09-01T14:09:51", + "newPrice": 970.85 + } + ], + "descriptionVector": [ + -0.07141566276550293, + 0.016321126371622086, + -0.02695254422724247, + 0.016921980306506157, + 0.005003020167350769, + -0.034972090274095535, + -0.0023191082291305065, + 0.030533136799931526, + 0.011869910173118114, + 0.04610626399517059, + 0.034408025443553925, + -0.048019181936979294, + 0.050618790090084076, + -0.06788411736488342, + 0.050275444984436035, + -0.008086989633738995, + -0.048754919320344925, + -0.039411045610904694, + -0.02656015008687973, + -0.0286937914788723, + -0.007148923352360725, + -0.03212723508477211, + -0.053757939487695694, + -0.00655420171096921, + 0.0037522651255130768, + -0.016014568507671356, + 0.0229059848934412, + 0.018025586381554604, + -0.004999954719096422, + 0.05120738223195076, + 0.04576291888952255, + -0.03757169842720032, + -0.007363513577729464, + -0.001479906844906509, + -0.029405005276203156, + -0.03350061550736427, + -0.028276873752474785, + -0.040833473205566406, + 0.009049580432474613, + 0.019006570801138878, + 0.018540604040026665, + 0.04642508178949356, + 0.00483747897669673, + -0.04554219916462898, + 0.008013416081666946, + 0.08353081345558167, + 0.05272790789604187, + 0.0050704628229141235, + -0.03960724174976349, + -0.033966582268476486, + 0.044880032539367676, + 0.051795970648527145, + 0.027663758024573326, + -0.0031636743806302547, + 0.02651110105216503, + -0.03072933480143547, + 0.02391149289906025, + 0.11379418522119522, + 0.05988909304141998, + -0.0879942923784256, + 0.01986493356525898, + -0.07568293809890747, + -0.0031023628544062376, + -0.029723824933171272, + 0.007571972906589508, + -0.060232438147068024, + -0.04220684990286827, + -0.03565878048539162, + 0.0019435752183198929, + 0.056357551366090775, + -0.07092516869306564, + -0.012317484244704247, + 0.008221874944865704, + 0.009239645674824715, + 0.009521679021418095, + 0.03926389664411545, + 0.07911638915538788, + -0.0029843382071703672, + 0.03820933774113655, + 0.03926389664411545, + 0.005962545517832041, + -0.009724006988108158, + -0.05419938266277313, + -0.08868098258972168, + 0.033402517437934875, + 0.016872931271791458, + 0.05988909304141998, + -0.09020151197910309, + -0.022501327097415924, + 0.09711744636297226, + -0.06621643900871277, + 0.047921083867549896, + 0.0707780197262764, + -0.031489595770835876, + 0.06263584643602371, + -0.027026118710637093, + -0.03793956711888313, + 0.04156921058893204, + -0.02521129697561264, + 0.02965025044977665, + 0.010055089369416237, + 0.021005326882004738, + -0.0764186754822731, + -0.023543624207377434, + 0.03872435539960861, + 0.0497359037399292, + 0.03426087647676468, + 0.03838101029396057, + 0.01158174593001604, + -0.141752228140831, + -0.003338412381708622, + 0.013206501491367817, + -0.0015074970433488488, + 0.0015534806298092008, + -0.029159758239984512, + -0.036100223660469055, + -0.050275444984436035, + -0.03428540378808975, + 0.020097916945815086, + -0.016713520511984825, + 0.011048335582017899, + 0.03369681164622307, + 0.013562108390033245, + -0.005367823410779238, + -0.03350061550736427, + -0.04186350479722023, + -0.036934059113264084, + 0.042967114597558975, + 0.036615241318941116, + -0.03659071400761604, + -0.05243361368775368, + 0.07195520401000977, + 0.036100223660469055, + 0.1380244940519333, + 0.010189974680542946, + 0.07475100457668304, + -0.004340855870395899, + 0.10162997990846634, + -0.016627684235572815, + 0.025051888078451157, + 0.02182690054178238, + -0.026265855878591537, + 0.014199747703969479, + 0.021716540679335594, + -0.05689709261059761, + 0.01160627044737339, + -0.010662073269486427, + 0.07617343217134476, + -0.0029536825604736805, + 0.024622706696391106, + 0.03330441936850548, + -0.042574718594551086, + -0.010337122716009617, + -0.0820593386888504, + 0.07514339685440063, + 0.03904317691922188, + -0.05993814393877983, + -0.028546644374728203, + -0.05000567436218262, + 0.04152016341686249, + 0.003546871477738023, + 0.03077838383615017, + 0.00821574404835701, + 0.01677483133971691, + -0.03556068241596222, + 0.039411045610904694, + -0.02299181930720806, + 0.023249328136444092, + 0.003448772942647338, + 0.027443036437034607, + -0.05768187716603279, + -0.005383151583373547, + 0.012397189624607563, + -0.0374000258743763, + 0.0333779901266098, + -0.009877285920083523, + 0.03430992737412453, + -0.02312670461833477, + 0.0554746650159359, + -0.03315727040171623, + 0.048190854489803314, + 0.04377642646431923, + -0.11310749500989914, + 0.014960010536015034, + 0.10516151785850525, + 0.015217519365251064, + 0.0042642164044082165, + 0.019276341423392296, + 0.03595307469367981, + 0.009570728056132793, + 0.0439971461892128, + 0.012728272005915642, + -0.0515507273375988, + -0.010422958061099052, + 0.022856933996081352, + 0.06150771677494049, + 0.02099306508898735, + -0.005720364861190319, + 0.04463478550314903, + -0.019595161080360413, + -0.027492085471749306, + 0.07965593039989471, + 0.07283808290958405, + 0.02942953072488308, + 0.02034316211938858, + 0.01973004639148712, + 0.02660919912159443, + 0.020183753222227097, + 0.02391149289906025, + 0.05321839824318886, + -0.021765589714050293, + -0.027958054095506668, + 0.004233560524880886, + -0.06346968561410904, + 0.09064295142889023, + 0.014567617326974869, + 0.02411995269358158, + 0.030680285766720772, + -0.030189793556928635, + -0.06106627359986305, + 0.06871794909238815, + 0.05076593905687332, + 0.05895715951919556, + 0.012219386175274849, + -0.006615513004362583, + 0.016284339129924774, + 0.041225865483284, + -0.009460367262363434, + 0.021753327921032906, + 0.07597723603248596, + -0.06758981943130493, + -0.009110892191529274, + 0.014861912466585636, + 0.03499661758542061, + -0.00609743082895875, + -0.0004717155243270099, + -0.01651732437312603, + -0.05954574793577194, + -0.04978495463728905, + 0.08931862562894821, + -0.010018302127718925, + 0.02469628117978573, + -0.06381303071975708, + -0.01302256714552641, + 0.05454272776842117, + 0.007541317027062178, + 0.08304032683372498, + 0.01269148476421833, + -0.11546185612678528, + 0.003016526810824871, + -0.07372096925973892, + 0.007234759628772736, + 0.034923043102025986, + 0.06410732865333557, + -0.06925749033689499, + 0.07283808290958405, + 0.049318987876176834, + -0.0032433795277029276, + -0.005131774116307497, + -0.02259942702949047, + 0.023923754692077637, + 0.03178389370441437, + -0.0008200415759347379, + 0.04789656028151512, + -0.03354966267943382, + 0.046842001378536224, + 0.053365547209978104, + -0.10192427039146423, + -0.04196160286664963, + -0.0013580501545220613, + 0.0515507273375988, + 0.01590420864522457, + 0.06587309390306473, + -0.03838101029396057, + -0.004785364028066397, + -0.00871236715465784, + -0.02521129697561264, + 0.07543769478797913, + -0.01717948727309704, + 0.014665715396404266, + 0.024242574349045753, + 0.08774904906749725, + 0.08652281761169434, + 0.013598895631730556, + -0.0010944106616079807, + -0.0008346030954271555, + 0.02230513095855713, + -0.06557880342006683, + -0.05665184557437897, + -0.015266568399965763, + -0.03421182930469513, + -0.0009319350938312709, + 0.0162107665091753, + -0.007363513577729464, + 0.03838101029396057, + 0.03055766224861145, + 0.03229890763759613, + 0.02326159179210663, + 0.07416241616010666, + 0.022795623168349266, + -0.0038718224968761206, + 0.016100404784083366, + -0.07597723603248596, + -0.0534636452794075, + 0.002329837763682008, + 0.07180805504322052, + -0.05321839824318886, + 0.03237248212099075, + -0.0447574108839035, + -0.04068632423877716, + 0.07033657282590866, + -0.05312030017375946, + -0.04473288357257843, + 0.05390508845448494, + 0.06479401141405106, + -0.05037354677915573, + 0.04174088314175606, + 0.03533995896577835, + 0.00011198932770639658, + -0.03585497662425041, + 0.018528342247009277, + -0.0896129161119461, + -0.06449972093105316, + 0.09049580246210098, + 0.020931752398610115, + -0.06371492892503738, + -0.046572230756282806, + 0.024352936074137688, + 0.022243820130825043, + -0.1071234866976738, + -0.07999927550554276, + -0.038748882710933685, + -0.05645564943552017, + -0.05037354677915573, + 0.048705872148275375, + -0.01973004639148712, + -0.03489851579070091, + 0.04855872318148613, + 0.04804370924830437, + 0.04654770717024803, + 0.01064981147646904, + -0.04890206828713417, + 0.0058460533618927, + -0.05704423785209656, + -0.03651714324951172, + -0.05503322184085846, + -0.0900053083896637, + -0.0077681695111095905, + -0.0009955457644537091, + -0.007038562558591366, + 0.0012714476324617863, + -0.050667840987443924, + 0.08784714341163635, + -0.03950914368033409, + 0.04429144412279129, + -0.022623950615525246, + 0.006474496331065893, + -0.018503816798329353, + 0.00899440050125122, + 0.1337081640958786, + 0.04345760494470596, + 0.002360493643209338, + 0.0128876818343997, + 0.053316500037908554, + -0.02942953072488308, + 0.04784750938415527, + -0.07215140014886856, + 0.021581655368208885, + -0.020723294466733932, + 0.017620930448174477, + 0.046498656272888184, + -0.043359506875276566, + -0.05307125300168991, + 0.0593005008995533, + 0.027712807059288025, + 0.082451730966568, + -0.034015633165836334, + 0.013746042735874653, + -0.06145866960287094, + 0.032715827226638794, + -0.020980801433324814, + 0.014579879119992256, + -0.043138787150382996, + -0.017596406862139702, + 0.032323434948921204, + -0.04652318358421326, + -0.01586742140352726, + -0.018221784383058548, + 0.03619832172989845, + 0.009987646713852882, + -0.05184502154588699, + -0.017706766724586487, + -0.027222314849495888, + 0.03173484280705452, + -0.02543201856315136, + 0.018896210938692093, + 0.020711030811071396, + 0.07636962831020355, + 0.026584675535559654, + 0.017449257895350456, + 0.012403320521116257, + -0.0017504439456388354, + -0.005836856551468372, + -0.04593459144234657, + -0.04311425983905792, + -0.1186991035938263, + -0.012127419002354145, + 0.04728344455361366, + -0.029895497485995293, + -0.03168579563498497, + -0.028325922787189484, + 0.0176945049315691, + -0.016701258718967438, + 0.010925712995231152, + 0.0022225426509976387, + -0.00429487181827426, + 0.10280715674161911, + 0.07205329835414886, + 0.0031820680014789104, + 0.0064622340723872185, + 0.027541134506464005, + -0.04895111918449402, + -0.048141807317733765, + -0.03865078091621399, + -0.015217519365251064, + 0.043359506875276566, + 0.01583063416182995, + 0.011557221412658691, + 0.05380699038505554, + -0.09010341018438339, + 0.022489065304398537, + -0.07779205590486526, + -0.042059704661369324, + -0.021152473986148834, + -0.0019834276754409075, + -0.02898808754980564, + -0.03607570007443428, + 0.05316935107111931, + -0.011943483725190163, + 0.08524753898382187, + -0.005082725081592798, + -0.06273394823074341, + -0.026878969743847847, + -0.007682333700358868, + -0.05238456279039383, + 0.043531179428100586, + -0.0257753636687994, + 0.07009132951498032, + 0.06087007746100426, + -0.0019405096536502242, + -0.012814107351005077, + -0.0019466407829895616, + -0.002185755642130971, + -0.030067170038819313, + 0.035364486277103424, + -0.011336499825119972, + 0.029797399416565895, + 0.1032976508140564, + -0.01786617748439312, + 0.018368931487202644, + 0.035192813724279404, + -0.0005406909622251987, + 0.008485514670610428, + 0.030067170038819313, + -0.057534731924533844, + -0.02095627784729004, + 0.031244350597262383, + 0.028399495407938957, + -0.0042121014557778835, + 0.044708359986543655, + 0.03808671608567238, + -0.03583045303821564, + 0.041103243827819824, + -0.04308973625302315, + 0.07264188677072525, + -0.03769432380795479, + -0.009699482470750809, + -0.029503103345632553, + -0.01648053713142872, + 0.005916561931371689, + -0.0060575781390070915, + -0.0748000517487526, + -0.008595875464379787, + 0.009300957433879375, + 0.05228646472096443, + 0.04058822616934776, + 0.010533318854868412, + 0.038577210158109665, + 0.1033957451581955, + -0.011784073896706104, + 0.050226397812366486, + 0.029184283688664436, + 0.051795970648527145, + -0.09638170897960663, + -0.026265855878591537, + 0.00014283668133430183, + -0.021103424951434135, + 0.008718498051166534, + 0.011575615033507347, + 0.029110709205269814, + 0.05763282999396324, + 0.006134217604994774, + -0.001738181570544839, + 0.013513059355318546, + 0.01991398259997368, + 0.049662332981824875, + 0.012875419110059738, + 0.05797617509961128, + 0.017056865617632866, + 0.009123153984546661, + 0.03470231965184212, + -0.0860813781619072 + ] + }, + { + "id": "76898ccf-ce6d-4973-9c61-dcada8d72cad", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thoffman", + "reviewDate": "2022-05-25T06:13:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "17c7fe84-5848-4211-a051-e595ec1d21bb", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stewartjason", + "reviewDate": "2022-02-19T06:42:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "40d42aca-8a5d-4d98-bf11-2e33e8405a6e", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bryantemily", + "reviewDate": "2022-02-05T16:02:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b28a795f-294a-44b3-a60a-6ccf98fc27f7", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kelsey24", + "reviewDate": "2021-02-24T14:09:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "840ee240-c02d-461f-9fca-8049c612c548", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john88", + "reviewDate": "2022-11-11T14:49:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ba492de0-2844-444e-b44d-0e3c659fb2fd", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopherhaynes", + "reviewDate": "2022-10-31T23:22:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5c42ad6c-ffa2-46a0-92e6-4e21902c4cb0", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "colemanjennifer", + "reviewDate": "2021-10-06T08:20:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "be46d864-30af-495a-b6a1-5d1d63c22cbb", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jbond", + "reviewDate": "2022-02-05T22:02:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "760eebdf-1d24-42d3-82ae-c23b053aea7d", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "acochran", + "reviewDate": "2021-11-08T04:23:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d26b3d74-8cd4-423c-a69f-16e6e429a548", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marilyn58", + "reviewDate": "2022-10-31T20:54:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c48cc164-a0de-4c3c-b9c8-1ac348534206", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinedavis", + "reviewDate": "2022-11-04T21:39:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "65c766a1-44a8-47c5-a2b2-23a16a2e3651", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "halltracey", + "reviewDate": "2021-06-29T14:19:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "97c263f7-5392-49a4-bbe7-5190c251afca", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wallskelly", + "reviewDate": "2022-02-20T18:02:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c9f40b64-c2a2-412d-b6cb-da9a849a8e37", + "productId": "d6a42d8c-c12f-47b2-8746-a0570de37147", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yking", + "reviewDate": "2022-02-19T03:47:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Pro (Red)", + "description": "This Luxe Speaker Pro (Red) is a premium quality product rated by CQC as a \"Dynastic.\" Its durability, weight, and quality will make any Speaker Pro owner happy.\n\nThe Luxe Speaker Pro (Red) is a premium quality product rated by CQC as", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-08-15T03:24:43", + "price": 726.69, + "stock": 29, + "priceHistory": [ + { + "priceDate": "2021-04-23T14:38:46", + "newPrice": 699.38 + }, + { + "priceDate": "2022-02-10T14:38:46", + "newPrice": 668.95 + }, + { + "priceDate": "2022-11-30T14:38:46", + "newPrice": 727.17 + }, + { + "priceDate": "2024-08-19T14:38:46", + "newPrice": 726.69 + } + ], + "descriptionVector": [ + -0.023801768198609352, + 0.02494935318827629, + -0.05199552699923515, + 0.05094711855053902, + 0.011072072200477123, + -0.03286910802125931, + -0.027768729254603386, + -0.008040180429816246, + 0.033974189311265945, + 0.08132270723581314, + 0.002233186736702919, + 0.010441608726978302, + 0.020359011366963387, + -0.05556579306721687, + 0.0594477504491806, + 0.002847711555659771, + -0.04896363615989685, + -0.04868028312921524, + -0.011022485792636871, + 0.005029540043324232, + 0.06103453412652016, + -0.11215166002511978, + -0.008833573199808598, + -0.028037915006279945, + 0.02548772655427456, + 0.0023624671157449484, + -0.022611679509282112, + 0.05154216289520264, + 0.05426236242055893, + 0.012977630831301212, + 0.03357749432325363, + 0.051173802465200424, + -0.06148790195584297, + 0.04955868050456047, + 0.00032652163645252585, + 0.013296403922140598, + 0.11334174871444702, + 0.01200714148581028, + 0.0533839650452137, + 0.03493759408593178, + 0.009966989979147911, + -0.02401428297162056, + -0.05514076352119446, + -0.08132270723581314, + 0.04420328512787819, + 0.0005414725164882839, + -0.025700243189930916, + 0.07010187208652496, + 0.01125625241547823, + -0.008876075968146324, + -0.00918068177998066, + 0.02343340776860714, + -0.09719055145978928, + -0.004515960346907377, + 0.03459756821393967, + -0.065341517329216, + 0.0043919929303228855, + 0.14371734857559204, + 0.01141918171197176, + -0.06307468563318253, + 0.011511271819472313, + -0.0623946338891983, + -0.027726225554943085, + 0.005670629441738129, + -0.02995055727660656, + -0.00609566131606698, + -0.012828869745135307, + -0.05967443063855171, + 0.017100436612963676, + 0.08817988634109497, + -0.01096581481397152, + 0.003634019987657666, + 0.03703441843390465, + 0.06279133260250092, + 0.07644901424646378, + 0.01719961129128933, + 0.012205489911139011, + 0.013983538374304771, + 0.004062593448907137, + 0.021874958649277687, + 0.07928255200386047, + 0.003008869243785739, + 0.002312880242243409, + -0.012510095722973347, + 0.012439257465302944, + -0.05780429393053055, + 0.00020753494754899293, + -0.09237352758646011, + 0.016845418140292168, + 0.048481933772563934, + -0.03686440363526344, + 0.04936033487319946, + 0.04528002813458443, + -0.01688792183995247, + 0.010817053727805614, + -0.008536051027476788, + -0.029270507395267487, + 0.02051485702395439, + -0.07401216775178909, + -0.007827664725482464, + -0.03026224859058857, + -0.0475752018392086, + -0.04009464383125305, + -0.0029433437157422304, + 0.048510268330574036, + 0.0533272959291935, + 0.021251577883958817, + -0.011808793991804123, + 0.01605202630162239, + -0.04845359921455383, + 0.11322841048240662, + 0.018899736925959587, + 0.005656461697071791, + -0.05140048637986183, + -0.030403925105929375, + 0.03490925952792168, + -0.023036710917949677, + -0.033690836280584335, + 0.007593897171318531, + -0.03524928539991379, + -0.008337702602148056, + 0.009315275587141514, + 0.00666945381090045, + 0.02432597428560257, + 0.035815995186567307, + -0.022101642563939095, + 0.03816783428192139, + 0.012864288873970509, + 0.028547953814268112, + -0.014805266633629799, + -0.10036411881446838, + 0.1097714900970459, + -0.027825400233268738, + 0.04726351052522659, + -0.00981114525347948, + 0.06301801651716232, + 0.02106739766895771, + 0.02229999005794525, + 0.022753356024622917, + -0.006694247014820576, + 0.007912671193480492, + -0.008713147602975368, + 0.04352323338389397, + 0.04423161968588829, + 0.01982063800096512, + -0.012000057846307755, + -0.041369739919900894, + 0.02136491984128952, + 0.016845418140292168, + 0.01481943391263485, + 0.006131080444902182, + -0.0325290821492672, + -0.0020029612351208925, + 0.00474972790107131, + 0.05460238829255104, + 0.05242056027054787, + -0.14609751105308533, + -0.012495928443968296, + -0.01171670388430357, + 0.07174532860517502, + -0.029213836416602135, + 0.005759177729487419, + -0.02853378653526306, + 0.02460932731628418, + -0.036326032131910324, + 0.07049857079982758, + 0.026762820780277252, + -0.008769817650318146, + -0.10410439968109131, + 0.005075585562735796, + 0.005720216780900955, + -0.04394826292991638, + -0.045506712049245834, + -0.0681750625371933, + 0.030942298471927643, + -0.029893886297941208, + 0.1155519187450409, + 0.019792303442955017, + 0.005886687431484461, + 0.04638511314988136, + 0.0444866381585598, + 0.09673718363046646, + -0.05893770977854729, + -0.04054801166057587, + 0.04363657534122467, + 0.0326990969479084, + 0.10591787099838257, + -0.006410893052816391, + -0.003207217436283827, + 0.060354482382535934, + -0.03437088802456856, + 0.027485374361276627, + 0.022087473422288895, + -0.024439314380288124, + -0.038139499723911285, + -0.02815125696361065, + 0.08783985674381256, + 0.0770723894238472, + -0.027967076748609543, + 0.00019790531951002777, + -0.03890455514192581, + 0.09367695450782776, + 0.089199960231781, + -0.03235907107591629, + -0.03400252386927605, + -0.0682884082198143, + 0.05219387635588646, + 0.05519743263721466, + 0.02317838743329048, + 0.027825400233268738, + -0.029525525867938995, + -0.01715710759162903, + -0.02428347058594227, + 0.05871102586388588, + 0.0355043038725853, + 0.02966720424592495, + 0.01932476833462715, + -0.01515945978462696, + -0.007232620380818844, + -0.0622246228158474, + 0.02462349645793438, + -0.02697533741593361, + 0.050862111151218414, + 0.03176402673125267, + -0.1156652569770813, + -0.006354222074151039, + 0.01144043356180191, + -0.03669439256191254, + 0.06460479646921158, + 0.009286940097808838, + 0.02404261939227581, + -0.005312894470989704, + 0.05669921264052391, + 0.027159517630934715, + -0.004951617680490017, + 0.040179651230573654, + -0.004774521104991436, + -0.057095907628536224, + -0.053242288529872894, + 0.08568636327981949, + -0.049105312675237656, + 0.0029645950999110937, + -0.03173569217324257, + 0.03286910802125931, + -0.012998881749808788, + 0.003524220082908869, + 0.06613491475582123, + -0.07327543944120407, + -0.08993668109178543, + 0.01541447825729847, + -0.1187821552157402, + -0.038734544068574905, + -0.05188218876719475, + 0.03675106167793274, + -0.04482666403055191, + -0.017369624227285385, + 0.10013743489980698, + -0.06981851905584335, + 0.024269303306937218, + -0.02432597428560257, + 0.0049870372749865055, + -0.041681427508592606, + 0.005288101267069578, + 0.016972927376627922, + -0.06692830473184586, + -0.019480613991618156, + -0.0014211992966011167, + -0.058314330875873566, + -0.006109828595072031, + 0.041681427508592606, + -0.030998969450592995, + 0.01336015947163105, + 0.03680773451924324, + 0.027485374361276627, + 0.00815352238714695, + 0.06749501079320908, + -0.047348517924547195, + 0.06398142129182816, + -0.03490925952792168, + -0.024170128628611565, + 0.08449627459049225, + 0.023504246026277542, + 0.059504419565200806, + -0.06562487781047821, + 0.02286669798195362, + -0.04664013162255287, + 0.0023642380256205797, + -0.016491224989295006, + -0.010469944216310978, + -0.0415680892765522, + -0.023589251562952995, + 0.03941459581255913, + 0.06630492210388184, + -0.02666364796459675, + 0.029015488922595978, + 0.015017782337963581, + 0.05083377659320831, + -0.02819376066327095, + 0.061827924102544785, + 0.018318859860301018, + 0.004144057631492615, + 0.030658943578600883, + -0.009839480742812157, + -0.0356743149459362, + 0.021874958649277687, + 0.08783985674381256, + -0.03524928539991379, + 0.0949237197637558, + -0.05108879506587982, + -0.06369806826114655, + 0.048510268330574036, + -0.056500863283872604, + -0.050323739647865295, + -0.029752209782600403, + 0.04831192269921303, + 0.02638029307126999, + -0.010037829168140888, + -0.007140530273318291, + 0.032444074749946594, + 0.019678961485624313, + -0.060977861285209656, + -0.05695423111319542, + -0.1780598908662796, + 0.023050878196954727, + 0.014075628481805325, + -0.003991754725575447, + -0.01126333698630333, + -0.013884364627301693, + 0.029157165437936783, + 0.02347590960562229, + -0.03612768277525902, + -0.018843065947294235, + 0.016547895967960358, + -0.0771857351064682, + 0.02635195665061474, + 0.043438225984573364, + -0.02195996418595314, + -0.03760112449526787, + 0.04040633514523506, + -0.04692348465323448, + 0.08982333540916443, + 0.004583257250487804, + -0.052392225712537766, + 0.010477027855813503, + 0.06080785021185875, + -0.07197201251983643, + 0.0004932137089781463, + -0.003292223671451211, + 0.02340507134795189, + 0.029553862288594246, + 0.0014521911507472396, + -0.006970517802983522, + 0.08574303239583969, + -0.05400734394788742, + 0.04012297838926315, + 0.012687192298471928, + 0.01986314170062542, + -0.02460932731628418, + 0.00341264926828444, + 0.03629769757390022, + -0.013870197348296642, + 0.02347590960562229, + 0.0009704887634143233, + 0.05440404266119003, + 0.05069210007786751, + 0.028689630329608917, + -0.06018447130918503, + 0.03459756821393967, + -0.06018447130918503, + 0.03626935929059982, + -0.00675800209864974, + -0.008224360644817352, + -0.02249833755195141, + 0.06301801651716232, + -0.009010668843984604, + 0.0684017464518547, + 0.014415654353797436, + 0.0004910000134259462, + -0.0415680892765522, + 0.046130094677209854, + 0.007466387934982777, + 0.07021521776914597, + 0.05485740676522255, + 0.014833602122962475, + 0.05584914982318878, + 0.05004038289189339, + -0.0012015997199341655, + -0.009690719656646252, + -0.01868722215294838, + -0.004204270429909229, + -0.037827808409929276, + -0.07287874817848206, + -0.04173810034990311, + 0.08936997503042221, + 0.020968224853277206, + -0.054432377219200134, + -0.014946943148970604, + 0.0710086077451706, + 0.003469320246949792, + -0.05675588175654411, + -0.017865493893623352, + 0.0475752018392086, + -0.02310754917562008, + -0.08364621549844742, + -0.02222915180027485, + -0.04766020551323891, + 0.02344757504761219, + 0.06902512907981873, + 0.0057414681650698185, + -0.08381622284650803, + 0.011291672475636005, + 0.0051464238204061985, + -0.020954055711627007, + 0.02880297228693962, + 0.012425089254975319, + 0.004909114446491003, + 0.05910772457718849, + 0.03949959948658943, + 0.0355609729886055, + -0.031905703246593475, + 0.06619158387184143, + -0.03295411542057991, + -0.01318306289613247, + -0.005057875532656908, + -0.07741241902112961, + 0.018772227689623833, + 0.03833784908056259, + -0.04057634621858597, + 0.027102846652269363, + -0.06324470043182373, + 0.012637604959309101, + -0.06358472257852554, + 0.004639927763491869, + 0.011412098072469234, + -0.04023632034659386, + 0.01599535532295704, + -0.011950471438467503, + -0.00025081291096284986, + 0.0028512533754110336, + 0.07253871858119965, + -0.04717850312590599, + -0.021789951249957085, + 0.04771687835454941, + 0.05250556766986847, + -0.06273466348648071, + -0.06165791302919388, + -0.007948090322315693, + 0.05854101479053497, + 0.03680773451924324, + -0.0037686133291572332, + 0.012099231593310833, + -0.015301136299967766, + -0.024269303306937218, + 0.04587507247924805, + 0.008776902221143246, + -0.016094528138637543, + -0.03000722825527191, + 0.0742388442158699, + -0.025303546339273453, + 0.016434554010629654, + -0.011206666007637978, + 0.08217277377843857, + 0.06766502559185028, + 0.05876769870519638, + -0.041369739919900894, + 0.060354482382535934, + -0.04516668990254402, + -0.008436876349151134, + 0.015357807278633118, + 0.026621144264936447, + -0.02703200839459896, + -0.01020784117281437, + -0.016675405204296112, + -0.022484170272946358, + -0.07933922857046127, + -0.007296375464648008, + 0.003510052338242531, + -0.056784216314554214, + -0.0252043716609478, + 0.004487624857574701, + -0.03318079933524132, + -0.004303444642573595, + -0.0326140895485878, + 0.028916314244270325, + 0.07384215295314789, + 0.025969428941607475, + 0.03170735388994217, + 0.017298784106969833, + 0.01752546802163124, + -0.006871343590319157, + -0.0021021352149546146, + 0.0162645410746336, + -0.03204737976193428, + -0.06562487781047821, + -0.02405678667128086, + -0.00698468554764986, + 0.03669439256191254, + -0.024694334715604782, + 0.0326424241065979, + 0.01466358918696642, + 0.09356361627578735, + -0.04927532747387886, + 0.02551606111228466, + 0.01139792986214161, + -0.005830016452819109, + 0.030970633029937744, + -0.01598118618130684, + -0.006492357235401869, + -0.01959395594894886, + 0.008691895753145218, + 0.013098056428134441, + 0.0008376663899980485 + ] + }, + { + "id": "9b8018b2-9e62-4e2a-b21d-88f9ec0bad8e", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "michellehill", + "reviewDate": "2022-12-02T02:39:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "307e6b5a-a2fc-44a0-847f-ba3dca8fdf07", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "baileyrollins", + "reviewDate": "2022-08-28T13:05:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b9954b68-d857-4f53-a689-a7747210a243", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "jenningsjames", + "reviewDate": "2021-06-03T07:57:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ad4c1ef6-90e5-4fdd-a157-c9359fed933b", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "nbaker", + "reviewDate": "2022-11-21T21:03:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "163fba19-495f-4805-a061-93592e950dd0", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "bryansheppard", + "reviewDate": "2021-04-23T14:38:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d3ae0402-b592-4d87-8b6a-1bd6c3d3539a", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "karengibbs", + "reviewDate": "2021-07-10T16:24:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cf6c52a1-3875-412c-b619-4cb7ec120bab", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "omartinez", + "reviewDate": "2022-01-07T17:16:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "085240d3-9acf-4b33-8481-6f1078db8c0e", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "franklinjerry", + "reviewDate": "2021-07-24T20:21:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "963ba5a3-cc92-4b19-9155-968c65f736ac", + "productId": "d9a8308a-1d3d-4fef-a118-72b3f3af07af", + "category": "Media", + "docType": "customerRating", + "userName": "zhebert", + "reviewDate": "2022-05-31T17:26:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "03b87f47-c420-413f-8971-dc0584f8a1b2", + "productId": "03b87f47-c420-413f-8971-dc0584f8a1b2", + "category": "Media", + "docType": "product", + "name": "Awesome TV Pro (Black)", + "description": "This Awesome TV Pro (Black) is so impressive, it only makes my TV stand out. No matter what you plan on putting on the shelf, you always have that", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-05-14T12:30:13", + "price": 811.11, + "stock": 49, + "priceHistory": [ + { + "priceDate": "2021-05-16T13:27:56", + "newPrice": 855.11 + }, + { + "priceDate": "2021-05-17T13:27:56", + "newPrice": 831.09 + }, + { + "priceDate": "2021-05-18T13:27:56", + "newPrice": 826.35 + }, + { + "priceDate": "2021-10-28T13:27:56", + "newPrice": 811.11 + } + ], + "descriptionVector": [ + 0.04405733570456505, + 0.025480108335614204, + -0.021629026159644127, + 0.025843417271971703, + -0.0014721604529768229, + -0.0035604333970695734, + -0.024256965145468712, + 0.00977302622050047, + 0.04926477000117302, + 0.03289162367582321, + -0.024014759808778763, + 0.0024508254136890173, + 0.014399167150259018, + 0.02642471343278885, + 0.04347604140639305, + -0.02780528925359249, + 0.04754510521888733, + 0.025141019374132156, + 0.002016367856413126, + 0.004928898997604847, + 0.07527773082256317, + -0.104148730635643, + -0.041078194975852966, + 0.010475424118340015, + -0.023336581885814667, + -0.011795449070632458, + -0.055077724158763885, + 0.04337915778160095, + -0.0027293628081679344, + 0.012400965206325054, + 0.012049766257405281, + 0.03330337256193161, + -0.0059401108883321285, + 0.02250096946954727, + -0.09421826899051666, + 0.07178996503353119, + -0.024947253987193108, + 0.043112728744745255, + 0.001464591477997601, + 0.04723023623228073, + 0.037881072610616684, + 0.012994370423257351, + -0.02632782980799675, + 0.04415421560406685, + 0.04056956246495247, + 0.008150243200361729, + -0.029161645099520683, + -0.029137423262000084, + 0.0004828989040106535, + -0.010887175798416138, + -0.00575240096077323, + -0.024075310677289963, + -0.025044135749340057, + 0.002095084870234132, + -0.027248214930295944, + 0.04955541715025902, + 0.018201807513833046, + -0.05110554024577141, + -0.009972846135497093, + 0.01943705976009369, + -0.07513240724802017, + 0.04509882256388664, + 0.0520743653178215, + -0.039261650294065475, + -0.06384558975696564, + -0.06810842454433441, + 0.011583518236875534, + -0.02297327294945717, + -0.01300648134201765, + 0.06292521208524704, + -0.020042575895786285, + -0.019933583214879036, + 0.06515350937843323, + 0.02128993719816208, + 0.013369790278375149, + 0.02441439963877201, + 0.04798107594251633, + -0.0054133119992911816, + 0.07227437198162079, + -0.04202280193567276, + 0.02950073406100273, + 0.06568636000156403, + -0.0005400444497354329, + 0.02967027761042118, + 0.05367292836308479, + 0.0526556596159935, + -5.3361087338998914e-05, + -0.06583168357610703, + -0.0008863238617777824, + 0.0708211362361908, + -0.06709115952253342, + 0.041223522275686264, + -0.0010407303925603628, + -0.02452339231967926, + 0.032576754689216614, + 0.03189857676625252, + -0.051541510969400406, + 0.051638394594192505, + 0.021701687946915627, + -0.032382987439632416, + 0.06452377140522003, + -0.04425109922885895, + -0.04878035932779312, + -0.10879909247159958, + 0.00866493210196495, + 0.030372675508260727, + 0.016130942851305008, + 0.06137508898973465, + 0.027441978454589844, + -0.211785227060318, + 0.03151104599237442, + -0.03313382714986801, + 0.0350714810192585, + 0.03831704333424568, + 0.005222574342042208, + 0.04241033270955086, + 0.01950972154736519, + 0.01406007818877697, + 0.028701452538371086, + -0.04170793294906616, + 0.0057009318843483925, + -0.034369081258773804, + 0.006152041256427765, + 0.048320166766643524, + 0.0260856244713068, + 0.02632782980799675, + -0.06646142154932022, + 0.06796310096979141, + 0.0876787006855011, + -0.016130942851305008, + -0.11005856841802597, + 0.039164766669273376, + 0.0691256895661354, + 0.026666918769478798, + -0.07271034270524979, + 0.06331273913383484, + 0.006927101407200098, + 0.06108444184064865, + 0.04078754782676697, + -0.05914679169654846, + 0.009991011582314968, + -0.0707726925611496, + -0.0058856140822172165, + 0.04415421560406685, + 0.03373934328556061, + 0.06447532773017883, + 0.0062247030436992645, + 0.005906807258725166, + -0.04432376101613045, + -0.0010664648143574595, + 0.0686412826180458, + -0.10695832222700119, + -0.03981872275471687, + -0.04190169647336006, + 0.008465112186968327, + 0.04371824488043785, + 0.025431666523218155, + 0.04778731241822243, + -0.030445337295532227, + 0.07188684493303299, + -0.015186337754130363, + -0.03683958575129509, + -0.08012185990810394, + 0.03868035227060318, + 0.018262358382344246, + -0.007114811334758997, + 0.11732475459575653, + 0.022173991426825523, + -0.12120005488395691, + 0.017995931208133698, + 0.0529947504401207, + 0.008301622234284878, + 0.019630825147032738, + 0.05037891864776611, + -0.027054449543356895, + -0.00286560389213264, + 0.07634343951940536, + -0.039624959230422974, + 0.01942494884133339, + 0.028701452538371086, + -0.05958276242017746, + 0.03686380758881569, + -0.04938587546348572, + -0.07484176009893417, + -0.05144462734460831, + 0.0704820454120636, + 0.010947726666927338, + 0.048223283141851425, + -0.04965230077505112, + -0.02098718099296093, + -0.003739060601219535, + -0.0027354180347174406, + 0.10075783729553223, + -0.0348292738199234, + 0.06491129845380783, + -0.07445423305034637, + 0.0006354132201522589, + -0.0529463067650795, + -0.041102416813373566, + 0.04924055188894272, + 0.008931359276175499, + 0.04013359174132347, + 0.09450891613960266, + -0.013430342078208923, + -0.009185675531625748, + -0.02775684744119644, + 0.04507460072636604, + 0.02971871942281723, + 0.05565901845693588, + 0.11093050986528397, + -0.03894678130745888, + -0.01315180491656065, + -0.03693646937608719, + -0.016239935532212257, + 0.04766621068120003, + 0.012092151679098606, + -0.005540470127016306, + -0.01153507735580206, + -0.015258999541401863, + -0.021362600848078728, + 0.07314632087945938, + 0.0038086948916316032, + -0.021847013384103775, + -0.06185949966311455, + 0.020708642899990082, + -0.060309380292892456, + 0.036137185990810394, + 0.011783339083194733, + 0.012594729661941528, + 0.008416670374572277, + -0.10182354599237442, + -0.03395732864737511, + 0.0131881358101964, + 0.02828970178961754, + 0.03168059140443802, + 0.011068830266594887, + -0.03688802570104599, + -0.008543828502297401, + -0.0262793879956007, + 0.024002648890018463, + -0.03880145773291588, + -0.016869671642780304, + -0.0263520497828722, + 0.0523650124669075, + 0.05444798618555069, + -0.0014237192226573825, + 0.04897412285208702, + 0.028410805389285088, + 0.026957565918564796, + 0.014750367030501366, + -0.04003670811653137, + 0.027151331305503845, + -0.031099295243620872, + 0.004583755042403936, + 0.060309380292892456, + 0.056918490678071976, + 0.04417843744158745, + -0.03151104599237442, + 0.005625242367386818, + -0.01758418045938015, + -0.11674346029758453, + 0.010087894275784492, + 0.02428118698298931, + 0.022052887827157974, + 0.03131728246808052, + -0.01131103653460741, + 0.028870996087789536, + -0.04245877265930176, + -0.03211656212806702, + 0.03882567584514618, + 0.01908585987985134, + -0.0005252850241959095, + -0.01588873565196991, + -0.01597350835800171, + 0.014253843575716019, + 0.030154690146446228, + -0.007393348962068558, + 0.02270684577524662, + -0.0022025639191269875, + 0.005676711443811655, + 0.06607389450073242, + -0.032189223915338516, + 0.03369090333580971, + 0.03264941647648811, + 0.05425422266125679, + 0.0033939164131879807, + 0.023179147392511368, + 0.020454326644539833, + -0.006824163720011711, + -0.009452102705836296, + -0.025698093697428703, + -0.041199300438165665, + 0.09455735981464386, + 0.014665594324469566, + 0.08399716019630432, + 0.04909522831439972, + -0.034005772322416306, + -0.015198448672890663, + 0.06181105971336365, + -0.06713960319757462, + 0.022113438695669174, + -0.01947339065372944, + 0.011771228164434433, + -0.07532617449760437, + -0.10133913904428482, + 0.05594966560602188, + -0.07358229160308838, + 0.03211656212806702, + -0.05754822865128517, + -0.023481905460357666, + 0.02284005843102932, + 0.04759354889392853, + -0.07382449507713318, + -0.06374870985746384, + -0.03279474005103111, + -0.0021056814584881067, + -0.017850607633590698, + 0.0349503755569458, + -0.004816878587007523, + 0.05139618739485741, + -0.051347747445106506, + 0.03650049492716789, + -0.00035309145459905267, + 0.03654893860220909, + 0.016821231693029404, + -0.025673873722553253, + 0.002606745809316635, + -0.04412999749183655, + -0.027659965679049492, + 0.0018210889538750052, + -0.04405733570456505, + 0.01039670780301094, + 0.05483551695942879, + 0.016869671642780304, + 0.021556364372372627, + -0.04190169647336006, + 0.004214390646666288, + -0.060551587492227554, + -0.028362363576889038, + 0.02090240828692913, + 0.046164531260728836, + -0.0033273096196353436, + 0.01742674596607685, + -0.07208061218261719, + -0.002307015471160412, + -0.13030701875686646, + 0.04517148435115814, + -0.04754510521888733, + 0.055029284209012985, + -0.06273144483566284, + 0.0012367661111056805, + -0.08060627430677414, + 0.018359242007136345, + -0.0023009602446109056, + 0.042822081595659256, + 0.013817871920764446, + -0.07227437198162079, + 0.025988740846514702, + -0.009373385459184647, + 0.001616727327927947, + -0.027659965679049492, + -0.039285868406295776, + 0.014120629988610744, + 0.08036406338214874, + 0.04735134169459343, + 0.08399716019630432, + 0.007248024921864271, + 0.02470504678785801, + -0.08055783063173294, + 0.071014903485775, + 0.05987340956926346, + -0.02804749459028244, + -0.0699976310133934, + 0.024196414276957512, + -0.01953394152224064, + 0.007108756341040134, + 0.02105984278023243, + -0.008949524722993374, + 0.011644070036709309, + 0.04873191565275192, + -0.04052112251520157, + 0.08423937112092972, + 0.0349988155066967, + -0.005140829831361771, + 0.011692511849105358, + 0.009978901594877243, + -0.05444798618555069, + -0.048320166766643524, + -0.04723023623228073, + -0.008374284952878952, + -0.11480581015348434, + -0.004495955538004637, + -0.013515113852918148, + 0.005573773756623268, + -0.005773593671619892, + -0.05914679169654846, + -0.007726382464170456, + 0.07241969555616379, + 0.0037057572044432163, + 0.037759970873594284, + 0.006600122898817062, + 0.03727555647492409, + 0.053769808262586594, + -0.012909598648548126, + -0.0353379063308239, + -0.01913430169224739, + 0.003345475299283862, + 0.07934679836034775, + -0.037687309086322784, + -0.06079379469156265, + 0.004614030942320824, + -0.037372440099716187, + -0.01765684224665165, + 0.02120516635477543, + 0.06089067459106445, + 0.0709664598107338, + 0.0712571069598198, + -0.008519608527421951, + 0.09329788386821747, + -0.0886475220322609, + 0.014265953563153744, + 0.028628790751099586, + 0.030493779107928276, + 0.005949193611741066, + -0.013902644626796246, + 0.012945929542183876, + 0.025359004735946655, + -0.010905341245234013, + -0.06786622107028961, + -0.008610435761511326, + 0.104439377784729, + -0.03993982821702957, + 0.03323071077466011, + 0.053333837538957596, + 0.016930224373936653, + 0.039673399180173874, + 0.03637939319014549, + -0.02119305543601513, + -0.06801154464483261, + 0.02273106575012207, + -0.019764037802815437, + -0.10056407749652863, + 0.02087818644940853, + 0.03138994425535202, + -0.023905767127871513, + -0.03194701671600342, + 0.03298850357532501, + 0.028774114325642586, + 0.003363640746101737, + 0.04354870319366455, + -0.05977652594447136, + -0.01145636010915041, + -0.002288850024342537, + -0.0038056671619415283, + -0.02093873918056488, + 0.027127111330628395, + 0.030275793746113777, + 0.06394247710704803, + -0.02824125997722149, + 0.011147547513246536, + 0.013575665652751923, + 0.036064524203538895, + -0.02265840396285057, + -0.010917451232671738, + -0.03153526782989502, + -0.004486872814595699, + -0.0702398419380188, + 0.06292521208524704, + -0.008834476582705975, + 0.01765684224665165, + 0.0176326222717762, + -0.051880598068237305, + -0.08462689816951752, + 0.0172572024166584, + 0.007308576721698046, + -0.03671848401427269, + -0.006173234432935715, + -0.014774587005376816, + 0.053140074014663696, + -0.017184540629386902, + -0.003669426077976823, + -0.012740054167807102, + -0.020200010389089584, + 0.015355882234871387, + 0.03361824154853821, + 0.004856237210333347, + -0.07716694474220276, + -0.01946127973496914, + -0.07983121275901794, + -0.05904990807175636, + 0.010208997875452042, + 0.03710601106286049, + 0.002688490552827716, + -0.04357292130589485, + -0.03657316043972969, + -0.009373385459184647, + 0.0016258101677522063, + 0.012049766257405281, + 0.00012923979375045747, + 0.035991862416267395, + 0.028386583551764488, + 0.10143601894378662, + -0.06626765429973602, + -0.0013646814040839672, + 0.036209847778081894, + -0.003636122914031148, + 0.03981872275471687, + -0.04173215478658676, + -0.016409480944275856, + -0.023736221715807915, + -0.039503853768110275, + 0.04558323323726654 + ] + }, + { + "id": "e11a0829-4f76-4897-84fe-f5bec0d18c28", + "productId": "03b87f47-c420-413f-8971-dc0584f8a1b2", + "category": "Media", + "docType": "customerRating", + "userName": "tcain", + "reviewDate": "2021-05-16T13:27:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "31b8f1bb-6a6e-4cfc-8f45-ea248dd82be7", + "productId": "31b8f1bb-6a6e-4cfc-8f45-ea248dd82be7", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Mini (Gold)", + "description": "This Awesome Filter Mini (Gold) is the perfect choice for an awesome design. I would order it as a premium item, not only as a product, but as a nice way to present this amazing filter.\n\nA nice looking filter and I have one that will last for the duration of my shopping season", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-05-10T11:32:01", + "price": 223.6, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2018-05-10T11:32:01", + "newPrice": 210.43 + }, + { + "priceDate": "2025-09-08T11:32:01", + "newPrice": 231.91 + }, + { + "priceDate": "2025-09-09T04:57:58.406247", + "newPrice": 223.6 + } + ], + "descriptionVector": [ + -0.056874413043260574, + 0.02597247250378132, + -0.027430109679698944, + -0.02361374720931053, + 0.053376078605651855, + -0.019823886454105377, + -0.09100966155529022, + 0.006211528554558754, + -0.023918526247143745, + 0.042907584458589554, + -0.05189193785190582, + 0.03678550198674202, + 0.05809352919459343, + 0.00837479718029499, + 0.07394203543663025, + 0.014006583020091057, + -0.0403103344142437, + -0.00038718528230674565, + -0.0600547157227993, + 0.027191588655114174, + 0.02280542068183422, + -0.039965804666280746, + -0.05130888149142265, + -0.01818072982132435, + 0.024051038548350334, + -0.018684277310967445, + -0.024501582607626915, + 0.03710353001952171, + -0.005280627403408289, + 0.03771308809518814, + 0.0754791796207428, + 0.020420193672180176, + 0.017597675323486328, + 0.09858938306570053, + -0.056768402457237244, + 0.04213900864124298, + 0.019744379445910454, + 0.07007266581058502, + 0.008547062985599041, + 0.05398563668131828, + 0.018551765009760857, + -0.0926528200507164, + -0.04807557538151741, + -0.006539497524499893, + -0.015755750238895416, + -0.03914422541856766, + -0.030212875455617905, + 0.0005279799224808812, + -0.028357699513435364, + -0.014934170991182327, + 0.042430538684129715, + -0.016484567895531654, + 0.004147644620388746, + 0.015159443020820618, + -0.03572539985179901, + 0.002193083753809333, + -0.027774643152952194, + 0.05888860300183296, + 0.06190989166498184, + -0.007175557781010866, + -0.0052044326439499855, + -0.054648201912641525, + 0.034400273114442825, + -0.00825553573668003, + -0.014629391953349113, + -0.014231854118406773, + -0.09376592189073563, + -0.024594340473413467, + 0.014642643742263317, + 0.07219287008047104, + -0.015583483502268791, + -0.03983329236507416, + 0.013662050478160381, + 0.011793622747063637, + 0.04502778500318527, + 0.021573053672909737, + 0.10420791804790497, + -0.02899375930428505, + 0.01747841387987137, + -0.019121570512652397, + 0.0600547157227993, + 0.021506797522306442, + -0.010481747798621655, + -0.012555570341646671, + 0.0042735314927995205, + -0.010660639964044094, + 0.10229973495006561, + -0.07744036614894867, + -0.04062836617231369, + -0.06296999007463455, + -0.033711209893226624, + 0.05793451517820358, + -0.006287723314017057, + -0.02572069689631462, + 0.015371463261544704, + 0.04624690115451813, + 0.01827348954975605, + 0.05133538693189621, + -0.0586765855550766, + 0.03551337867975235, + -0.03402923792600632, + -0.05401213839650154, + -0.05539027228951454, + 0.04746601730585098, + 0.033128153532743454, + 0.03932974115014076, + 0.002853990299627185, + -0.04322561249136925, + -0.0021433914080262184, + -0.23597845435142517, + 0.07367701083421707, + -0.015397964976727962, + -0.022792169824242592, + 0.062227923423051834, + -0.008056766353547573, + -0.028940754011273384, + -0.012721210718154907, + 0.00023334642173722386, + 0.004995725583285093, + -0.008142899721860886, + -0.04094639793038368, + 0.0303718913346529, + 0.0370505265891552, + -0.019770881161093712, + 0.044974781572818756, + 0.011727365665137768, + -0.007082798983901739, + 0.023905275389552116, + 0.09201675653457642, + -0.019929897040128708, + -0.09991450607776642, + -0.0159545186907053, + 0.016829101368784904, + 0.004641253966838121, + -0.02851671352982521, + 0.03750107064843178, + 0.02467384748160839, + 0.12074548751115799, + -0.011018423363566399, + -0.0008170230430550873, + -0.010408865287899971, + -0.07802342623472214, + -0.0017972022760659456, + -0.01355603989213705, + 0.000983077916316688, + -0.010958792641758919, + -0.024276310577988625, + 0.003866055514663458, + -0.029656322672963142, + 0.021162264049053192, + 0.040098316967487335, + -0.13092246651649475, + -0.05894161015748978, + -0.03736855462193489, + 0.02385227009654045, + 0.06763443350791931, + -0.05645037069916725, + -0.005134863778948784, + -0.004141019191592932, + -0.0293382927775383, + -0.07542617619037628, + -0.018896298483014107, + -0.004051573108881712, + -0.0018386124866083264, + -0.02955031208693981, + -0.0070960503071546555, + 0.003495020093396306, + -0.02527015469968319, + -0.0861331969499588, + 0.03159100562334061, + 0.04648542404174805, + 0.030451398342847824, + 0.04036334156990051, + -0.03482431545853615, + -0.03167051449418068, + 0.03331366926431656, + 0.025548432022333145, + -0.05316406115889549, + -0.027801144868135452, + -0.027271095663309097, + 0.0008472524932585657, + 0.09254680573940277, + -0.056768402457237244, + -0.04680345579981804, + -7.660885603399947e-05, + 0.011906257830560207, + 0.044073693454265594, + 0.0224741380661726, + -0.00989206600934267, + 0.008878344669938087, + -0.004035009071230888, + 0.00837479718029499, + 0.06551423668861389, + 0.0022825298365205526, + 0.01560998521745205, + 0.028543217107653618, + -0.09673420339822769, + -0.023202957585453987, + -0.05645037069916725, + -0.026953065767884254, + 0.006642194464802742, + 0.037209540605545044, + 0.05724544823169708, + -0.020632212981581688, + 0.030928444117307663, + -0.0066918870434165, + 0.015238950029015541, + 0.055602289736270905, + -0.03490382060408592, + 0.019532358273863792, + 0.022209113463759422, + -0.036626484245061874, + -0.05984269455075264, + -0.020340686663985252, + 0.04547832906246185, + 0.035539884120225906, + -0.015464222058653831, + -0.048208087682724, + -0.008142899721860886, + 0.03845515847206116, + 0.02572069689631462, + 0.00730144465342164, + -0.008282038383185863, + 0.037554074078798294, + -0.037315551191568375, + -0.027854150161147118, + -0.012847097590565681, + 0.06180388107895851, + 0.06593827158212662, + 0.08523210883140564, + -0.05809352919459343, + -0.05332307517528534, + -0.048261091113090515, + 0.003673912025988102, + 0.04388817772269249, + 0.03670599311590195, + -0.07913652807474136, + -0.013012737967073917, + 0.04216551408171654, + 0.01355603989213705, + 0.03726254776120186, + 0.05194494500756264, + -0.10961443185806274, + -0.010879285633563995, + 0.04333162307739258, + -0.01326451264321804, + 0.041979994624853134, + -0.01519919652491808, + -0.02583995833992958, + 0.06259895861148834, + -0.06530221551656723, + -0.012800718657672405, + -0.04619389772415161, + 0.0892074927687645, + -0.021321279928088188, + 0.09074463695287704, + 0.014761905185878277, + -0.0020787916146218777, + -0.07081473618745804, + -0.03387022390961647, + -0.00075697829015553, + 0.04635291174054146, + 0.03026588074862957, + 0.07532016932964325, + -0.08756433427333832, + -0.04470975324511528, + 0.03262460604310036, + -0.06911857426166534, + 0.02399803325533867, + 0.06752842664718628, + 0.0020423505920916796, + 0.010925664566457272, + 0.027297597378492355, + -0.016603829339146614, + -0.017160383984446526, + -0.02655552700161934, + -0.04129093140363693, + 0.053959134966135025, + 0.05984269455075264, + -0.003142205299809575, + 0.05274001881480217, + 0.020764725282788277, + 0.047916561365127563, + 0.061538856476545334, + 0.044630248099565506, + 0.024475079029798508, + -0.007049670908600092, + -0.012018893845379353, + -0.11989741027355194, + -0.04129093140363693, + -0.046167392283678055, + 0.011879755184054375, + 0.0185252632945776, + -0.11035650223493576, + 0.016391810029745102, + 0.023308968171477318, + 0.05433017015457153, + 0.07076173275709152, + -0.015901513397693634, + 0.07092075049877167, + -0.04539882019162178, + 0.0027910468634217978, + -0.044656749814748764, + -0.04993075132369995, + -0.0019644994754344225, + 0.06556724011898041, + -0.02735060267150402, + 0.0016149973962455988, + 0.010382362641394138, + -0.04171497002243996, + 0.060849789530038834, + 0.011879755184054375, + -0.0031140462961047888, + -0.014828161336481571, + 0.054091647267341614, + -0.027774643152952194, + -0.05061981827020645, + 0.016458066180348396, + 0.008547062985599041, + -0.015411216765642166, + -0.012058647349476814, + -0.046167392283678055, + 0.00590674951672554, + 0.04269556328654289, + -0.028251688927412033, + -0.016696589067578316, + -0.00302791316062212, + -0.05517825111746788, + 0.016113532707095146, + -0.011614730581641197, + -0.04354364424943924, + -0.057086434215307236, + -0.0014187131309881806, + 0.017756689339876175, + 0.008050140924751759, + -0.10272377729415894, + 0.054171156138181686, + 0.005320381373167038, + 0.019744379445910454, + 0.058835599571466446, + 0.050222281366586685, + -0.029868341982364655, + 0.02189108356833458, + -0.0020423505920916796, + 0.051388390362262726, + -0.06169787049293518, + -0.04804907366633415, + -0.014165597967803478, + 0.052315980195999146, + 0.016617082059383392, + 0.0017905766144394875, + -0.06975463777780533, + 0.0028771799989044666, + -0.046723946928977966, + 0.07590322196483612, + 0.022447636350989342, + 0.009368641301989555, + -0.030424894765019417, + 0.05459519475698471, + 0.008692827075719833, + 0.020671967417001724, + -0.032889630645513535, + 0.03376421332359314, + 0.028940754011273384, + 0.03569889813661575, + 0.12138155102729797, + -0.04786355420947075, + 0.0645071417093277, + -0.02947080507874489, + -0.03201504796743393, + -0.02536291442811489, + -0.027801144868135452, + -0.03970078006386757, + 0.020791228860616684, + -0.021506797522306442, + -0.012476062402129173, + 0.04539882019162178, + -0.012701333500444889, + -0.018803538754582405, + 0.043596647679805756, + -0.021374283358454704, + 0.044047191739082336, + -0.03267760947346687, + -0.041396938264369965, + 0.07118577510118484, + -0.01559673435986042, + -0.0682704970240593, + 0.034877318888902664, + -0.05258100479841232, + -0.02772163785994053, + -0.07346498966217041, + -0.061644867062568665, + 0.0071490551345050335, + -0.021944088861346245, + -0.048473112285137177, + -0.017054373398423195, + 0.013834316283464432, + 0.09737026691436768, + 0.06736940890550613, + 0.0024465140886604786, + 0.006016072351485491, + 0.05904762074351311, + 0.005061981733888388, + 0.0028771799989044666, + -0.05167991667985916, + 5.761192733189091e-05, + 0.02038043923676014, + 0.044630248099565506, + -0.038004618138074875, + -0.05448918417096138, + -0.00419402401894331, + -0.013463281095027924, + 0.031617507338523865, + 0.00505866901949048, + -0.00044847236131317914, + 0.01688210666179657, + 0.0586765855550766, + -0.007394203916192055, + 0.055814310908317566, + 0.004051573108881712, + -0.018246985971927643, + 0.05239548534154892, + 0.005360135342925787, + 0.035566385835409164, + -0.008010387420654297, + 0.03667949140071869, + 0.008957852609455585, + 0.030530905351042747, + 0.03524835407733917, + -0.09270582348108292, + 0.0057444218546152115, + -0.029046764597296715, + -0.07160981744527817, + 0.007732111029326916, + -0.043941181153059006, + 0.04412670060992241, + -0.016087030991911888, + 0.03606993332505226, + -0.09805933386087418, + 0.04855262115597725, + -0.023348722606897354, + -0.07908352464437485, + 0.03159100562334061, + 0.07558519393205643, + -0.07913652807474136, + -0.053720612078905106, + -0.007003291510045528, + 0.031723517924547195, + -0.023931777104735374, + -0.010216722264885902, + -0.05507224053144455, + 0.03262460604310036, + -0.03296913579106331, + -0.019028810784220695, + 0.036971017718315125, + -0.0067978971637785435, + 0.08910147845745087, + 0.09122168272733688, + -0.01594126783311367, + 0.013224758207798004, + 0.001261354424059391, + 0.0713977962732315, + -0.042430538684129715, + 0.03262460604310036, + 0.018565015867352486, + -0.032889630645513535, + -0.04693596810102463, + 0.03569889813661575, + 0.04097289964556694, + 0.050222281366586685, + -0.039170727133750916, + 0.027191588655114174, + -0.11396084725856781, + 0.043702658265829086, + -0.009772805497050285, + 0.010090835392475128, + -0.027271095663309097, + -0.015212447382509708, + 0.04240403696894646, + 0.007341198623180389, + -0.03315465524792671, + -0.039064716547727585, + -0.025230400264263153, + 0.06249294802546501, + 0.0686415359377861, + -0.018459007143974304, + 0.027774643152952194, + 0.05075233057141304, + 0.04897665977478027, + 0.07659228891134262, + -0.023666752502322197, + 0.02817218191921711, + -0.04712148383259773, + -0.01954561099410057, + -0.026025475934147835, + 0.021016500890254974, + 0.007089424878358841, + -0.0049062795005738735, + 0.013648798689246178, + -0.03646747022867203, + 0.0668923631310463, + 0.04338463023304939, + 0.044259212911129, + -0.02443532459437847, + 0.03617594391107559, + -0.015159443020820618, + 0.019876891747117043, + -0.04505428671836853, + 0.014695648103952408, + -0.05030178651213646, + -0.06747542321681976, + 0.03837565332651138 + ] + }, + { + "id": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Micro (Steel)", + "description": "This Awesome Keyboard Micro (Steel) is available in two versions: the standard edition and the Super Slim version. The Super Slim edition features the same layout as the standard edition, with new keyboards and improved feel! The Super Slim edition also includes its own color and color-by-color keyboard, which will be able to be used with any Super Slim keyboard. The Super Slim keyboard is compatible with an all key back", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-08-08T06:02:13", + "price": 800.73, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-01-23T21:24:03", + "newPrice": 739.51 + }, + { + "priceDate": "2021-07-03T21:24:03", + "newPrice": 738.92 + }, + { + "priceDate": "2021-12-11T21:24:03", + "newPrice": 737.67 + }, + { + "priceDate": "2022-05-21T21:24:03", + "newPrice": 752.47 + }, + { + "priceDate": "2022-10-29T21:24:03", + "newPrice": 752.65 + }, + { + "priceDate": "2023-05-29T21:24:03", + "newPrice": 800.73 + } + ], + "descriptionVector": [ + 0.047281790524721146, + 0.005900852382183075, + -0.05897728353738785, + -0.015419061295688152, + 0.0026786557864397764, + -0.054928842931985855, + 0.06312568485736847, + 0.02202901616692543, + -0.014594378881156445, + 0.00844674650579691, + 0.028888873755931854, + -0.014294493943452835, + 0.011120717041194439, + -0.0479065477848053, + -0.008777868933975697, + -0.024990374222397804, + -0.013857162557542324, + -0.009421370923519135, + 0.015731440857052803, + -0.001839916338212788, + 0.03386195749044418, + -0.017468271777033806, + -0.05947709083557129, + -0.021841587498784065, + -0.006141384597867727, + -0.015169157646596432, + -0.01616877317428589, + 0.012513929978013039, + -0.03861013054847717, + 0.00041390309343114495, + 0.02154170349240303, + -0.03371201455593109, + -0.03848517686128616, + 0.022428860887885094, + -0.0023366000968962908, + -0.047156836837530136, + -0.062475938349962234, + -0.020991913974285126, + 0.01790560409426689, + -4.234208972775377e-05, + 0.056778132915496826, + 0.0016071934951469302, + 0.00024170377582777292, + 0.019280074164271355, + -0.04645710811018944, + 0.06367547810077667, + -0.002926997607573867, + -0.0037173181772232056, + 0.03950978070497513, + -0.0021601056214421988, + 0.08491729199886322, + 0.09076504409313202, + -0.04043442755937576, + 0.00949634239077568, + 0.0488811731338501, + -0.023540932685136795, + 0.06412529945373535, + 0.16393685340881348, + 0.06472507119178772, + -0.09791228920221329, + -0.006603706628084183, + -0.11525560915470123, + 0.0052698454819619656, + -0.034861572086811066, + -0.028389066457748413, + -0.03831024467945099, + -0.011651761829853058, + -0.009471352212131023, + 0.03518644720315933, + 0.06732407212257385, + -0.03858513757586479, + -0.02748941257596016, + -0.02541521191596985, + 0.03148787096142769, + -0.04103419557213783, + 0.0325874499976635, + 0.06912337988615036, + 0.017443282529711723, + 0.07252206653356552, + -0.009808721952140331, + 0.01570644974708557, + 0.028638970106840134, + -0.058227572590112686, + -0.08106877654790878, + 0.014319485053420067, + 0.024603024125099182, + 0.0018211735878139734, + -0.08366777747869492, + -0.05302957445383072, + 0.10286038368940353, + -0.040084559470415115, + -0.03768548369407654, + 0.026689719408750534, + -0.01356977317482233, + 0.047506701201200485, + -0.0391349270939827, + -0.10266046226024628, + 0.07207223773002625, + 0.014681844972074032, + 0.008802859112620354, + 0.06512491405010223, + -0.031337931752204895, + 0.020354660227894783, + -0.026564767584204674, + -0.008278061635792255, + 0.026789681985974312, + 0.043133385479450226, + 0.04223373159766197, + -0.0540291890501976, + -0.14394456148147583, + 0.015456547029316425, + -0.010614661499857903, + -0.07397150993347168, + 0.035486333072185516, + -0.012920023873448372, + 0.009215200319886208, + -0.06927331537008286, + -0.006572468671947718, + 0.015856392681598663, + 0.020392145961523056, + -0.023753350600600243, + 0.07072275876998901, + -0.005972699727863073, + -0.016731055453419685, + -0.06067663058638573, + 0.014806796796619892, + -0.0715724304318428, + 0.015481537207961082, + 0.019667424261569977, + -0.0010777099523693323, + -0.06772391498088837, + 0.025615133345127106, + 0.05312953516840935, + 0.016955969855189323, + -0.025940008461475372, + 0.03386195749044418, + 0.0533294603228569, + 0.09141479432582855, + 0.04633215442299843, + 0.051780056208372116, + 0.0033205959480255842, + -0.03963473439216614, + 0.0182429738342762, + -0.0012471758527681231, + -0.08221833407878876, + -0.034136850386857986, + -0.07782002538442612, + 0.04718182608485222, + 0.043958067893981934, + 0.0381603017449379, + -0.00042288401164114475, + -0.07612068206071854, + -0.03331216797232628, + -0.03451170772314072, + 0.06242595613002777, + 0.05192999914288521, + -0.06552476435899734, + -0.01703094132244587, + -0.01763070933520794, + 0.027664344757795334, + 0.05222988501191139, + 0.02481544204056263, + -0.014019600115716457, + -0.04150901362299919, + 0.007078523747622967, + 0.03965972363948822, + 0.03678583353757858, + 0.041933849453926086, + 0.029113786295056343, + 0.012501435354351997, + -0.02628987468779087, + 0.05143019184470177, + 0.03651093691587448, + -0.07192230224609375, + 0.04128409922122955, + -0.031113017350435257, + 0.03163781389594078, + -0.09521333128213882, + -0.01570644974708557, + -0.015094186179339886, + 0.02616492286324501, + 0.007603321690112352, + -0.063775435090065, + -0.03531140089035034, + 0.1002613827586174, + 0.02189156785607338, + -0.015793917700648308, + 0.09676273167133331, + -0.001836792565882206, + 0.025477686896920204, + 0.014531902968883514, + 0.018417906016111374, + -0.041309088468551636, + -0.035461340099573135, + 0.01848038285970688, + 0.08706646412611008, + 0.022191453725099564, + 0.025840047746896744, + 0.011882923543453217, + 0.08091883361339569, + 0.030713170766830444, + 0.039834655821323395, + 0.05217990279197693, + -0.04538252204656601, + 0.05972699448466301, + 0.011726733297109604, + -0.023890798911452293, + 0.0005849309382028878, + 0.006322565022855997, + -0.003170653712004423, + 0.01811802200973034, + 0.003533014329150319, + -0.018580343574285507, + -0.051530152559280396, + 0.026689719408750534, + 0.001629060017876327, + 0.013719716109335423, + -0.05088040232658386, + -0.0025865037459880114, + -0.026614749804139137, + 0.05727794021368027, + -0.00272082700394094, + 0.030113400891423225, + -0.0384351946413517, + -0.06242595613002777, + -2.6869533030549064e-05, + 0.0533294603228569, + 0.022078996524214745, + 0.019180113449692726, + 0.012870042584836483, + -0.015469041652977467, + -0.07647054642438889, + 0.01898019015789032, + -0.033162228763103485, + -0.025277763605117798, + 0.018230479210615158, + 0.013594764284789562, + -0.06397535651922226, + -0.019030170515179634, + 0.09306415915489197, + 0.01319491770118475, + -0.012576405890285969, + -0.00568843400105834, + -0.02240387164056301, + 0.02921374887228012, + -0.041558992117643356, + 0.08776619285345078, + -0.019629938527941704, + -0.13404837250709534, + -0.005650948733091354, + -0.04320835694670677, + 0.054329074919223785, + -0.0010714622912928462, + 0.08571698516607285, + -0.002550580073148012, + 0.08581694960594177, + 0.0605766698718071, + -0.021241819486021996, + 0.014456931501626968, + -0.11985383927822113, + 0.02349095232784748, + -0.06887347251176834, + -0.007984424941241741, + 0.06192614883184433, + -0.05757782235741615, + 0.052379824221134186, + 0.06842364370822906, + -0.05582849681377411, + -0.06372545659542084, + 0.08471737056970596, + 0.04475776106119156, + 0.005644700955599546, + 0.0073909033089876175, + 0.01786811836063862, + -0.0657246857881546, + -0.03833523392677307, + -0.04575737565755844, + 0.09641286730766296, + -0.027664344757795334, + -0.02893885411322117, + 0.0632256492972374, + 0.10266046226024628, + 0.040109552443027496, + 0.01946750283241272, + 0.11705491691827774, + -0.022603794932365417, + -0.007097266614437103, + 0.05692807212471962, + 0.0005763405351899564, + -0.0321626141667366, + -0.03586118668317795, + -0.00986495055258274, + -0.013082461431622505, + 0.040709320455789566, + 0.022903678938746452, + -0.0224913377314806, + 0.0231160968542099, + -0.028638970106840134, + 0.03103804588317871, + -0.024303140118718147, + 0.0328623428940773, + -0.007522102911025286, + -0.0598769374191761, + -0.04785656929016113, + 0.03006342053413391, + 0.05787770822644234, + 0.02042963169515133, + 0.02726449817419052, + -0.05937713012099266, + -0.05727794021368027, + 0.03306226432323456, + -0.002541208639740944, + -0.03153785318136215, + -0.02140425518155098, + 0.07787001132965088, + -0.045807357877492905, + 0.00599456625059247, + 0.026964614167809486, + 0.015618984587490559, + 0.020654544234275818, + 0.06937327980995178, + -0.022541318088769913, + -0.05073045939207077, + 0.07317181676626205, + 0.02931370958685875, + -0.029038814827799797, + -0.01070212759077549, + 0.016218753531575203, + 0.005213616881519556, + -0.046557068824768066, + -0.011164450086653233, + 0.014157047495245934, + -0.05972699448466301, + -0.006647439673542976, + 0.005222988314926624, + -0.05642826482653618, + 0.031337931752204895, + 0.05632830411195755, + 0.010864565148949623, + -0.017193377017974854, + 0.08696650713682175, + -0.021704141050577164, + 0.017093416303396225, + -0.0004990265588276088, + -0.04223373159766197, + -0.04513261839747429, + -0.0533294603228569, + -0.055278707295656204, + 0.005616586655378342, + -0.011920408345758915, + 0.001511136768385768, + -0.0009629103587940335, + 0.08371775597333908, + 0.010489709675312042, + 0.055028803646564484, + -0.03586118668317795, + -0.012089094147086143, + 0.028014210984110832, + 0.05148017033934593, + 0.10326022654771805, + -0.03638598695397377, + -0.03223758190870285, + 0.05827755481004715, + -0.0051167793571949005, + -0.030738161876797676, + 0.012645130045711994, + 0.0012104712659493089, + 0.004304592031985521, + -0.0498557984828949, + 0.034736622124910355, + 0.03186272829771042, + 0.009752493351697922, + 0.01380718220025301, + 0.06332560628652573, + -0.01996731013059616, + 0.03186272829771042, + 0.016643589362502098, + -0.03636099398136139, + 0.023565923795104027, + 0.0511053167283535, + 0.027889259159564972, + 0.06257589906454086, + -0.050055719912052155, + 0.04028448462486267, + 0.004217125941067934, + -0.03233754634857178, + -0.034361764788627625, + -0.006722410675138235, + -0.04383311793208122, + 0.03003843128681183, + -0.022978650406003, + 0.01454439852386713, + 0.0019726776517927647, + 0.010845822282135487, + 0.016955969855189323, + -0.007715778425335884, + 0.02613993175327778, + 0.042283713817596436, + 0.05232984572649002, + 0.05497882515192032, + 0.020342165604233742, + 0.041434042155742645, + 0.019754890352487564, + -0.03306226432323456, + 0.005219864659011364, + -0.07387154549360275, + 0.042758531868457794, + 0.04478275030851364, + 0.0035423855297267437, + -0.06257589906454086, + 0.0069160861894488335, + 0.024278149008750916, + -0.014207027852535248, + -0.04843134805560112, + 0.04780658707022667, + 0.0391349270939827, + 0.06807377934455872, + 0.06267586350440979, + 0.07627062499523163, + -0.05497882515192032, + 0.07162241637706757, + -0.04185887798666954, + -0.01605631597340107, + 0.0066786776296794415, + 0.0703229159116745, + -0.009646284393966198, + -0.054079171270132065, + 0.010308529250323772, + 0.0795193761587143, + -0.02943866141140461, + -0.014631864614784718, + -0.020042279735207558, + -0.07522102445363998, + -0.02009226195514202, + -0.048006508499383926, + 0.01368223037570715, + -0.03846018761396408, + 0.04683196172118187, + 0.026914633810520172, + 0.05582849681377411, + 0.020054776221513748, + 0.018455391749739647, + -0.030738161876797676, + -0.014082076027989388, + -0.07317181676626205, + 0.01920510269701481, + -0.05063049867749214, + 0.041159145534038544, + 0.08741632848978043, + -0.04880620166659355, + -0.04343327134847641, + -0.014519407413899899, + -0.020229708403348923, + -0.010733366012573242, + 0.0717223733663559, + 0.017568234354257584, + 0.05547863245010376, + 0.04833138361573219, + -0.0020226584747433662, + 0.022578803822398186, + 0.031812746077775955, + 0.07442133873701096, + 0.03771047666668892, + -0.04100920632481575, + -0.0210293997079134, + -0.04680697247385979, + -0.03626103326678276, + 0.07287193089723587, + -0.024428091943264008, + -0.008796611800789833, + 0.009352647699415684, + -0.05507878586649895, + 0.005182378925383091, + -0.009502589702606201, + 0.026214903220534325, + -0.06602457165718079, + 0.0005841500242240727, + 0.004048440605401993, + -0.01405708584934473, + 0.08426754176616669, + -0.022891182452440262, + -0.005891480948776007, + 0.013769696466624737, + -0.019917327910661697, + 0.05417913198471069, + -0.046781983226537704, + -0.05287963151931763, + 0.04465780034661293, + 0.030213363468647003, + -0.025640124455094337, + 0.05682811141014099, + 0.09521333128213882, + -0.03236253559589386, + -0.0696231871843338, + -0.04220874235033989, + 0.0074283890426158905, + -0.026439815759658813, + 0.0028801406733691692, + -0.045557454228401184, + 0.04225872457027435, + -0.031812746077775955, + 0.00040140788769349456, + -0.009939922019839287, + 0.015281613916158676, + 0.009652532637119293, + 0.025615133345127106, + -0.05362934246659279, + 0.08956550061702728, + 0.05707801505923271, + 0.015431556850671768, + 0.05003073066473007, + -0.05133023113012314 + ] + }, + { + "id": "5ca988ba-9930-47e6-8728-3792c1a10ab0", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin60", + "reviewDate": "2021-04-04T08:30:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9440c964-cbc9-433b-8df0-6a664d5112a6", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ladkins", + "reviewDate": "2022-07-18T23:28:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "dd1a0db8-917e-44c7-9354-7b9eba8c5179", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "elizabethjones", + "reviewDate": "2021-01-23T21:24:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "12afae2c-f7ef-4ced-9a0b-10f949a05387", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ovillanueva", + "reviewDate": "2021-06-17T04:35:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "49fc80e5-8aad-4217-8e3a-3fe8b764fb6c", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel00", + "reviewDate": "2022-01-24T05:26:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0b864e56-93f3-48c9-9f59-74c9642aec74", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "osullivan", + "reviewDate": "2021-02-23T09:31:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c97dd5f4-214e-4e55-a007-d9fe93f72173", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa84", + "reviewDate": "2022-10-31T00:39:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7d7879a5-1061-44a6-9e0c-870903ddf762", + "productId": "226172e3-4769-475e-a1a8-f4ed409ffe4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bryangary", + "reviewDate": "2021-03-10T00:03:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Ultra (Red)", + "description": "This Luxe Stand Ultra (Red) is rated 4.3 out of 5 by 36.\n\nRated 2 out of 5 by KJ from Too warm for any use This is one of", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-07-10T07:18:21", + "price": 879.53, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-06-19T18:47:41", + "newPrice": 950.73 + }, + { + "priceDate": "2024-10-30T18:47:41", + "newPrice": 879.53 + } + ], + "descriptionVector": [ + -0.02986319176852703, + -0.031182071194052696, + -0.014248604886233807, + 0.052755165845155716, + 0.018605615943670273, + -0.04380562901496887, + -0.062034424394369125, + 0.01026252843439579, + -0.03615142032504082, + 0.0856800451874733, + 0.0064413114450871944, + 0.003061683615669608, + -0.0624583475291729, + -0.04119142144918442, + 0.08591555804014206, + -0.01219963189214468, + -0.045454226434230804, + -0.0247054323554039, + 0.043782077729701996, + 0.020748795941472054, + 0.0684875100851059, + -0.05760675668716431, + -0.007389255799353123, + 0.07032451778650284, + -0.01016832236200571, + -0.019630102440714836, + 0.01567346602678299, + 0.03608076646924019, + 0.09373462200164795, + -0.009108508937060833, + 0.009296920150518417, + 0.004916357342153788, + -0.04159179702401161, + 0.022138329222798347, + -0.015437951311469078, + 0.013742249459028244, + 0.1068292111158371, + 0.012011220678687096, + 0.010598136112093925, + 0.10437986254692078, + -0.036716654896736145, + -0.0199127197265625, + 0.006176358088850975, + -0.036834411323070526, + 0.018393654376268387, + -0.07988639175891876, + -0.004233366344124079, + -0.012305613607168198, + 0.056994419544935226, + -0.021737953647971153, + 0.0040066842921078205, + 0.007795517798513174, + -0.049505069851875305, + -0.021478889510035515, + 0.004607245326042175, + -0.02008935622870922, + -0.04173310473561287, + 0.16504830121994019, + 0.06274096667766571, + -0.049128249287605286, + -0.02064281329512596, + -0.08860041946172714, + 0.012187856249511242, + -0.015755895525217056, + -0.005219582002609968, + 0.00952065922319889, + 0.06424825638532639, + -0.03916599974036217, + 0.014413464814424515, + 0.0534617081284523, + -0.02101963572204113, + 0.08393723517656326, + 0.011781594716012478, + 0.04703217372298241, + 0.10814809054136276, + 0.0007150062010623515, + 0.04109721630811691, + -0.036481138318777084, + 0.005013507325202227, + 0.02076057158410549, + 0.10748864710330963, + 0.018652718514204025, + -0.02180860936641693, + 0.030569734051823616, + 0.024964498355984688, + 0.023080384358763695, + -0.020324869081377983, + -0.08214733004570007, + -0.06519031524658203, + 0.055958159267902374, + -0.02194991707801819, + 0.02882692962884903, + 0.011899351142346859, + -0.0363633818924427, + 0.013895333744585514, + 0.007854396477341652, + -0.009243929758667946, + 0.05284937098622322, + -0.04540712386369705, + -0.006388321053236723, + -0.030404875054955482, + 0.03471478447318077, + -0.08158209919929504, + 0.023339450359344482, + 0.04945796728134155, + 0.018782252445816994, + 0.07673050463199615, + -0.014001315459609032, + 0.02291552536189556, + -0.09439406543970108, + 0.07343330979347229, + -0.04604301229119301, + -0.017663560807704926, + -0.1029667779803276, + -0.06095105782151222, + 0.07084265351295471, + 0.033466558903455734, + -0.008407854475080967, + 0.0523783415555954, + -0.036598894745111465, + 0.06787517666816711, + 0.03337235376238823, + 0.018841130658984184, + 0.02569459192454815, + 0.040037401020526886, + 0.0069300034083426, + 0.042368993163108826, + 0.014472343027591705, + 0.0644366666674614, + -0.037588056176900864, + -0.013141688890755177, + 0.13565613329410553, + 0.027178330346941948, + -0.004345235880464315, + -0.05204862356185913, + 0.07517611235380173, + -0.025859450921416283, + -0.020607486367225647, + -0.0042039272375404835, + -0.02348075993359089, + -0.011669725179672241, + -0.04258095473051071, + 0.06928826123476028, + 0.002072524279356003, + -0.027248986065387726, + -0.017899073660373688, + -0.06043292582035065, + -0.01886468194425106, + -0.017121877521276474, + 0.031370483338832855, + 0.06043292582035065, + -0.03860076516866684, + -0.0604800283908844, + -0.017121877521276474, + 0.062034424394369125, + 0.026636648923158646, + -0.007742526941001415, + 0.01683926023542881, + -0.029651230201125145, + 0.04611366614699364, + -0.019712533801794052, + 0.02298617921769619, + 0.0352800153195858, + -0.017545802518725395, + 0.015885427594184875, + 0.05883143097162247, + -0.0016647905576974154, + 0.075694240629673, + -0.06434246152639389, + 0.018028607591986656, + 0.007683648727834225, + 0.0024699545465409756, + 0.0075835552997887135, + 0.028285248205065727, + 0.023033281788229942, + -0.017993280664086342, + 0.0635417103767395, + -0.029580574482679367, + 0.06029161810874939, + -0.023304123431444168, + 0.07121947407722473, + 0.04319329187273979, + -0.06405984610319138, + 0.0008051639306358993, + 0.045878153294324875, + -0.044465068727731705, + 0.040838152170181274, + 0.004342291969805956, + 0.03294842690229416, + 0.022903749719262123, + -0.045454226434230804, + 0.025788797065615654, + -0.018205242231488228, + 0.0017899074591696262, + -0.08487929403781891, + -0.031182071194052696, + 0.05986769124865532, + 0.005399161484092474, + -0.015237764455378056, + 0.007754303049296141, + -0.030687492340803146, + 0.09646658599376678, + 0.033089734613895416, + -0.010056453756988049, + -0.003367852186784148, + -0.05124787613749504, + 0.07894434034824371, + 0.035609737038612366, + 0.018523186445236206, + 0.048515912145376205, + 0.0026657255366444588, + -0.023586740717291832, + -0.04187441244721413, + 0.05529871955513954, + 0.04611366614699364, + 0.08544452488422394, + 0.04658469557762146, + 0.014472343027591705, + -0.09863331913948059, + -0.03261870890855789, + 0.051106568425893784, + -0.038129739463329315, + 0.03921310231089592, + -0.03202992305159569, + -0.033890482038259506, + -0.018464308232069016, + -0.0017692999681457877, + -0.014036642387509346, + 0.04408824443817139, + 0.020996084436774254, + 0.03417310118675232, + -0.025553284212946892, + 0.03165309876203537, + -0.012729538604617119, + 0.019382813945412636, + 0.016238698735833168, + -0.0626467615365982, + -0.0818176120519638, + -0.01855851337313652, + -0.01966542936861515, + -0.01579122245311737, + -0.010368510149419308, + -0.017298512160778046, + -0.014154399745166302, + 8.882378460839391e-05, + -0.036787308752536774, + 0.09307518601417542, + -0.01696879416704178, + -0.05101235955953598, + 0.0055434140376746655, + 0.002433155430480838, + -0.05204862356185913, + -0.021184496581554413, + 0.09199181944131851, + 0.027013471350073814, + 0.01235271617770195, + 0.028073284775018692, + 0.023680945858359337, + -0.02691926620900631, + -0.002534720813855529, + 0.036104317754507065, + 0.06721573323011398, + -0.03012225776910782, + 0.005310843698680401, + 0.02802618220448494, + 0.01727496087551117, + 0.08393723517656326, + -0.02821459248661995, + 0.023692721500992775, + 0.010374397970736027, + -0.026401134207844734, + -0.04161534830927849, + 0.038694970309734344, + -0.04543067514896393, + -0.015014026314020157, + 0.02863851934671402, + -0.03016936033964157, + 0.034008242189884186, + -0.016874587163329124, + -0.06128077581524849, + 0.08238284289836884, + 0.0287562757730484, + 0.04470058158040047, + -0.015779446810483932, + 0.06570844352245331, + -0.08958957344293594, + 0.07070134580135345, + -0.03433796018362045, + -0.0012430730275809765, + -0.09298098087310791, + -0.018794028088450432, + 0.02266823500394821, + 0.019029542803764343, + -0.041403383016586304, + -0.025482628494501114, + -0.0012114258715882897, + 0.04185086116194725, + -0.01714542880654335, + 0.0033737400081008673, + -0.0021726179402321577, + 0.026448236778378487, + 0.0737159252166748, + 0.0025244171265512705, + -0.07258545607328415, + -0.029085995629429817, + 0.08115816861391068, + 0.021832160651683807, + 0.04006095230579376, + -0.09345200657844543, + -0.013341875746846199, + 0.1047566831111908, + -0.0008242994663305581, + -0.027743564918637276, + -0.04879852756857872, + 0.10183630883693695, + -0.038435906171798706, + -0.014542997814714909, + 0.01985384151339531, + 0.04470058158040047, + 0.04029646888375282, + -0.0656142383813858, + -0.06796938180923462, + -0.010468603111803532, + 0.06165760010480881, + 0.033772725611925125, + -0.07965087890625, + 0.0019959823694080114, + -0.022279636934399605, + -0.04055553302168846, + -0.011263463646173477, + -0.0257416944950819, + 0.0423925444483757, + 0.006223461125046015, + -0.011051501147449017, + 0.04813908785581589, + 0.0775783583521843, + -0.037705812603235245, + -0.05388563498854637, + 0.03716412931680679, + 0.01849963515996933, + 0.021231599152088165, + 0.05501610040664673, + -0.004789768718183041, + -0.04823329299688339, + 0.030805248767137527, + -0.05591105669736862, + 0.04246319830417633, + 0.02286842279136181, + 0.0544508658349514, + 0.048209741711616516, + 0.0013446385273709893, + 0.011234024539589882, + -0.008148789405822754, + -0.01431925967335701, + 0.00024250596470665187, + 0.05864302068948746, + 0.05972638353705406, + -0.061987318098545074, + 0.003986076917499304, + 0.00829598493874073, + 0.03443216532468796, + -0.0035327118821442127, + 0.03412599861621857, + 0.025294218212366104, + -0.05430955812335014, + 0.04917535185813904, + -0.0011422435054555535, + 0.022844871506094933, + -0.06330619752407074, + 0.04964637756347656, + 0.015025801956653595, + -0.08473798632621765, + -0.08139368146657944, + 0.0857742503285408, + -0.0051018251106143, + 0.015249540098011494, + 0.056193672120571136, + 0.05727703869342804, + 0.011604959145188332, + 0.045006752014160156, + -0.07296227663755417, + 0.036222074180841446, + 0.03565683960914612, + 0.014484119601547718, + 0.02993384562432766, + -0.004233366344124079, + -0.03513870760798454, + -0.021855711936950684, + 0.009326359257102013, + -0.06236414238810539, + -0.0014498839154839516, + -0.0469379648566246, + -0.029604125767946243, + 0.01161084696650505, + 0.04371142387390137, + -0.019865617156028748, + 0.00801925640553236, + 0.05124787613749504, + -0.03742319718003273, + 0.002230024430900812, + 0.014696082100272179, + 0.07437536120414734, + 0.003132337937131524, + -0.04074394330382347, + -0.015685241669416428, + -0.04001384973526001, + 0.028238143771886826, + 0.04550132900476456, + -0.02489384450018406, + -0.06010320782661438, + 0.017910849303007126, + -0.03645758703351021, + 0.006176358088850975, + 0.06693311780691147, + 0.02342187985777855, + 0.06665050238370895, + 0.08186471462249756, + 0.03141758590936661, + -0.016874587163329124, + -0.002592127537354827, + 0.06076264753937721, + 0.04908114671707153, + -0.011964118108153343, + -0.033278148621320724, + -0.032665811479091644, + 0.05101235955953598, + -0.05162469670176506, + -0.056947316974401474, + 0.0027555152773857117, + -0.023339450359344482, + 0.05525161698460579, + -0.06603816151618958, + 0.0025994873140007257, + 0.013730473816394806, + -0.00017111573833972216, + 0.00891420990228653, + -0.023374777287244797, + 0.022103002294898033, + 0.023457206785678864, + 0.04159179702401161, + 0.006223461125046015, + -0.012941502034664154, + 0.05788937211036682, + 0.034997399896383286, + -0.08850621432065964, + 0.009302807971835136, + 0.0007197900558821857, + 0.14206212759017944, + 0.008549163118004799, + -0.006971218157559633, + 0.06514321267604828, + 0.014554773457348347, + -0.015861876308918, + -0.013954211957752705, + 0.016898138448596, + -0.031488239765167236, + -0.002278599189594388, + 0.1049451008439064, + -0.018334776163101196, + -0.05869012326002121, + -0.03313683718442917, + 0.04898693785071373, + 0.04959927499294281, + -0.006541404873132706, + -0.040461327880620956, + -0.025223564356565475, + -0.06391853839159012, + -0.00817822851240635, + -0.014519446529448032, + -0.022538702934980392, + -0.046796657145023346, + -0.0287562757730484, + -0.07696601748466492, + -0.02058393508195877, + -0.0484217070043087, + -0.015744119882583618, + -0.019347485154867172, + -0.08582135289907455, + -0.011445987038314342, + -0.005357946734875441, + 0.01078065950423479, + 0.03765871003270149, + 0.016085615381598473, + 0.0342908576130867, + 0.08035742491483688, + 0.01610916666686535, + 0.014448791742324829, + 0.004577805753797293, + 0.03122917376458645, + 0.008396078832447529, + -0.00891420990228653, + 0.04251030087471008, + -0.03226543590426445, + -0.09637238085269928, + -0.06405984610319138, + -0.03977833688259125, + -0.0006388321053236723, + 0.0307345949113369, + -0.05463927984237671, + 0.030145809054374695, + 0.09411145001649857, + -0.019100196659564972, + -0.015084680169820786, + -6.426039908546954e-05, + 0.06636787950992584, + -0.007995705120265484, + -0.034385062754154205, + 0.011269351467490196, + 0.010103556327521801, + -0.016815708950161934, + 0.07126657664775848, + -0.046796657145023346 + ] + }, + { + "id": "c3af5705-5f2d-4de1-be77-b05bbf5dfe2b", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholas99", + "reviewDate": "2022-09-08T03:30:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ba32a51d-3876-417f-85b1-ac6459cbbb23", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "bmay", + "reviewDate": "2022-02-20T06:40:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "34999bbc-dfc1-4f75-9c76-98ba7a35be95", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "deantyler", + "reviewDate": "2022-08-20T16:50:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "68c1d9cd-363d-4023-aa46-b11e9a17c7e7", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "hreyes", + "reviewDate": "2021-07-25T14:05:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e0ba2e50-2684-44a4-a3ea-f0e4dac8f103", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "brian14", + "reviewDate": "2022-10-17T02:05:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a3a83195-505a-4637-8e66-21a5046f6898", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "cynthianelson", + "reviewDate": "2022-02-18T18:49:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1b944090-68e8-44fe-8001-742b490423c4", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "lharris", + "reviewDate": "2022-05-13T04:50:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "97e231b4-64d7-4253-bc8b-a80bfdee303f", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessicamontgomery", + "reviewDate": "2022-09-20T05:24:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a94de05f-7419-44c4-9346-2795c70fd090", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "danielfoster", + "reviewDate": "2022-08-23T20:30:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fe78b202-c530-490a-8d26-b5b1a4aa8cc3", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "katie80", + "reviewDate": "2022-04-20T03:09:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "318db90d-4480-4d3f-9b9a-357be6112cf2", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "johnsoncharles", + "reviewDate": "2021-07-16T07:43:25", + "stars": 2, + "verifiedUser": false + }, + { + "id": "19321979-53fa-49ae-800c-7f1cad08740b", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "timothycastillo", + "reviewDate": "2021-06-19T18:47:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "153a0472-1cfc-4cd6-81f6-f11ddd326c41", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "katherine33", + "reviewDate": "2021-06-29T18:39:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e54011df-b73f-4abd-a750-90a4b9aabfcb", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "wilsonedward", + "reviewDate": "2022-01-08T20:58:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4fd04a21-1017-4543-acdd-49348383663d", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamfields", + "reviewDate": "2022-08-08T11:10:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "82264703-4071-49e9-8489-88929a2812e3", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "marcus30", + "reviewDate": "2022-12-16T20:52:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e80b18a0-409d-455a-babe-a1d5aa7c0b73", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "lisa22", + "reviewDate": "2022-09-10T12:39:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "675b6aae-87f9-437c-b61d-7359b4c95b88", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "whiteemily", + "reviewDate": "2022-09-10T14:55:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98cb9d11-7a20-4f45-b9b4-37a9c5037ea6", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "gayers", + "reviewDate": "2021-07-18T08:11:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "393eb099-652d-4d8e-8794-8e51d0acc0f9", + "productId": "c48cbb0b-03b1-4233-b2d7-b2360bae3ecc", + "category": "Accessory", + "docType": "customerRating", + "userName": "rterry", + "reviewDate": "2022-07-27T08:36:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Mini (Steel)", + "description": "This Amazing Phone Mini (Steel) is rated 3.0 out of 5 by 2.\n\nRated 1 out of 5 by Crayford from My husband bought a different phone in 2013 so I did not want to use this phone again. I'm still wondering what he was doing with all the plastic that covered his old phone. He told me that while there are still some parts in his old phone he has a long plastic", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-04-24T04:54:41", + "price": 582.67, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-03-19T07:45:34", + "newPrice": 615.2 + }, + { + "priceDate": "2021-06-27T07:45:34", + "newPrice": 595.65 + }, + { + "priceDate": "2021-10-05T07:45:34", + "newPrice": 624.92 + }, + { + "priceDate": "2022-01-13T07:45:34", + "newPrice": 626.95 + }, + { + "priceDate": "2022-05-19T07:45:34", + "newPrice": 582.67 + } + ], + "descriptionVector": [ + -0.05440004914999008, + 0.0453333742916584, + -0.02012508548796177, + 0.02727333828806877, + -0.008565685711801052, + 0.002804315183311701, + -0.04875475913286209, + 0.0036046751774847507, + 0.032674241811037064, + 0.053520262241363525, + 0.04706850275397301, + -0.044600218534469604, + -0.021371446549892426, + -0.02264224737882614, + 0.038417283445596695, + 0.02512275241315365, + -0.01867099478840828, + -0.00756370835006237, + 0.05215170606970787, + -0.059972018003463745, + 0.059189990162849426, + -0.11769569665193558, + -0.05889672785997391, + 0.008785632438957691, + 0.050196629017591476, + -0.03299194201827049, + -0.035093650221824646, + 0.00615238631144166, + 0.053666893392801285, + -0.04892582818865776, + -0.03699985146522522, + 0.003393893362954259, + -0.05747929587960243, + 0.02766435407102108, + 0.03274755924940109, + 0.07272890210151672, + -0.003803237807005644, + -0.0435982421040535, + -0.026051415130496025, + 0.08680546283721924, + 0.015750598162412643, + -0.00923774391412735, + 0.017412414774298668, + -0.026295799762010574, + 0.038172900676727295, + -0.02298438735306263, + -0.053666893392801285, + 0.03321189060807228, + 0.03091467171907425, + 0.044380273669958115, + 0.016324901953339577, + 0.00854735728353262, + -0.003864333964884281, + 0.03638888895511627, + 0.035704612731933594, + -0.03995690867304802, + -0.026515746489167213, + 0.13460712134838104, + 0.05107641592621803, + -0.044429149478673935, + -0.01978294551372528, + -0.05811469629406929, + 0.029423924162983894, + 0.014944127760827541, + -0.038050707429647446, + 0.03047478012740612, + -0.04907245934009552, + 0.008333520032465458, + -0.05092978477478027, + 0.01818222552537918, + 0.026271361857652664, + -0.0003625676908995956, + -0.010313036851584911, + 0.07864301651716232, + 0.03660883754491806, + 0.010710162110626698, + 0.0482904277741909, + 0.04613984376192093, + -0.02783542312681675, + -0.0173635371029377, + 0.017852306365966797, + 0.03699985146522522, + -0.03440937399864197, + -0.02778654731810093, + -0.0020299209281802177, + -0.003980416804552078, + 0.02773766964673996, + -0.1212148368358612, + -0.02800649404525757, + 0.0935993641614914, + -0.014809716492891312, + -0.026344677433371544, + 0.005232888739556074, + -0.029008470475673676, + 0.05884784832596779, + 0.0061890440993011, + -0.005214559845626354, + 0.029423924162983894, + -0.0023506758734583855, + -0.04081225395202637, + 0.006360113155096769, + 0.020748266950249672, + -0.017876744270324707, + -0.011308904737234116, + 0.04587101936340332, + 0.050098877400159836, + -0.028324194252490997, + -0.012048169039189816, + 0.05743042007088661, + -0.06793896108865738, + 0.008186889812350273, + 0.025464892387390137, + -0.05625737085938454, + -0.018878722563385963, + 0.00965930800884962, + -0.005538369528949261, + -0.02000289224088192, + -0.04931684583425522, + 0.06109619140625, + -0.07615029066801071, + -0.03971252217888832, + 0.01156550832092762, + -0.04572438821196556, + -0.01874431036412716, + 0.020332811400294304, + -0.020455004647374153, + 0.026540184393525124, + 0.026564624160528183, + 0.011058410629630089, + -0.08235766738653183, + -0.05816357210278511, + -0.00468607759103179, + 0.067010298371315, + -0.0030929946806281805, + -0.06202485039830208, + 0.04616428166627884, + 0.04851037636399269, + -0.006280688103288412, + 0.014296508394181728, + 0.028544139117002487, + 0.056697264313697815, + 0.0746351033449173, + -0.010997314006090164, + -0.03907712176442146, + -0.03631557524204254, + -0.013367846608161926, + -0.0342383049428463, + 0.017180249094963074, + -0.003256426891312003, + 0.03262536600232124, + -0.06534848362207413, + -0.09643422812223434, + -0.0339939184486866, + -0.03956589102745056, + -0.007019952405244112, + 0.015946105122566223, + -0.03159894794225693, + -0.009952569380402565, + -0.1165226548910141, + 0.024401817470788956, + -0.0342383049428463, + -0.06759682297706604, + 0.023509813472628593, + -0.10860458761453629, + -0.018780969083309174, + -0.02150585874915123, + 0.025660399347543716, + 0.07742109149694443, + -0.07727446407079697, + 0.03563129901885986, + 0.04687299579381943, + 0.010441338643431664, + 0.015799473971128464, + -0.05288486182689667, + 0.015921667218208313, + 0.01879318803548813, + 0.029252855107188225, + -0.038490600883960724, + 0.010636846534907818, + -0.03389616683125496, + 0.0879296362400055, + 0.038050707429647446, + -0.03648664429783821, + -0.020455004647374153, + 0.01154107041656971, + 0.0008225074270740151, + -0.054204538464546204, + -0.026198046281933784, + -0.04895026609301567, + 0.0428650863468647, + 0.032454296946525574, + -0.0017229125369340181, + -0.022300109267234802, + -0.007936394773423672, + 0.04372043162584305, + -0.007459844928234816, + 0.03076804056763649, + 0.009689855389297009, + -0.04535781219601631, + 0.019343053922057152, + 0.012011511251330376, + 0.0396636463701725, + 0.06935639679431915, + -0.054009031504392624, + 0.04274289309978485, + -0.06393105536699295, + -0.009133880026638508, + 0.06754794716835022, + 0.029057348147034645, + -0.04279177263379097, + 0.05190732330083847, + 0.013404504396021366, + -0.047997165471315384, + 0.004985448904335499, + 0.07712782919406891, + 0.1051831990480423, + 0.041203271597623825, + -0.004069006070494652, + -0.059776511043310165, + -0.08108686655759811, + 0.028202001005411148, + -0.028104247525334358, + 0.038050707429647446, + 0.011278356425464153, + -0.09105776250362396, + -0.04340273141860962, + -0.014162097126245499, + 0.053764648735523224, + 0.044478025287389755, + 0.0089933592826128, + -0.02409633807837963, + 0.007820311933755875, + -0.04244963079690933, + -0.032527610659599304, + -0.06168271228671074, + 0.08822289854288101, + -0.04191198572516441, + 0.03286974877119064, + -0.05923886597156525, + 0.04833930358290672, + 0.05185844749212265, + -0.023216553032398224, + -0.02761547826230526, + -0.06764569878578186, + 0.050147753208875656, + -0.05440004914999008, + 0.035118088126182556, + -0.026882324367761612, + -0.10958212614059448, + -0.06808559596538544, + 0.028079809620976448, + -0.05449780076742172, + -0.01874431036412716, + 0.05767480283975601, + 0.03076804056763649, + 0.008975029923021793, + 0.038295090198516846, + 0.053373631089925766, + 0.03763525187969208, + -0.06422431766986847, + -0.019465245306491852, + 0.0015464973403140903, + -0.010569640435278416, + 0.1103641539812088, + -0.01685032993555069, + 0.05117416754364967, + 0.0173635371029377, + -0.0453333742916584, + 0.013343407772481441, + 0.04968342185020447, + 4.555962004815228e-05, + -0.09252406656742096, + 0.06148720532655716, + -0.0030135696288198233, + -0.07830087840557098, + -0.019294176250696182, + -0.09956235438585281, + 0.029301732778549194, + -0.0906667485833168, + -0.006500634364783764, + 0.11965078115463257, + 0.025196067988872528, + 0.0721912607550621, + -0.007105486933141947, + 0.07160473614931107, + -0.029375048354268074, + -0.0502455048263073, + -0.021982409060001373, + 0.007215459831058979, + -0.03910155966877937, + -0.026760131120681763, + -0.01388105470687151, + 0.03560686111450195, + -0.019245300441980362, + -0.016300464048981667, + 0.00990369264036417, + 0.01973406970500946, + -0.06495746970176697, + 0.019501904025673866, + 0.028910716995596886, + -0.00010892304999288172, + -0.03379841148853302, + -0.06490859389305115, + -0.09672749042510986, + 0.06906313449144363, + 0.07986494153738022, + 0.0275910384953022, + 0.007441516034305096, + -0.03922375291585922, + 0.020186180248856544, + 0.017852306365966797, + -0.07111596316099167, + -0.054937694221735, + -0.010618518106639385, + 0.026882324367761612, + -0.02761547826230526, + -0.014467577449977398, + 0.017998937517404556, + 0.028519701212644577, + 0.004753283690661192, + 0.059972018003463745, + -0.03328520432114601, + -0.025733714923262596, + 0.026271361857652664, + -0.011461645364761353, + -0.04621315747499466, + 0.017840087413787842, + -0.050783153623342514, + 0.0009576827869750559, + -0.004065951332449913, + 0.004050677176564932, + -0.013147899881005287, + 0.020235057920217514, + 0.04865700379014015, + -0.017644580453634262, + -0.05811469629406929, + 0.021933531388640404, + -0.012035949155688286, + 0.028544139117002487, + 0.03169670328497887, + -0.00453333742916584, + 0.03027927130460739, + 0.0007419368484988809, + 0.050685398280620575, + -0.02288663201034069, + -0.06989403814077377, + -0.06661928445100784, + -0.04552888125181198, + 0.041765354573726654, + -0.06925863772630692, + 0.0014097945531830192, + -0.035289160907268524, + 0.04000578448176384, + -0.004579159431159496, + 0.06456645578145981, + 0.031989965587854385, + 0.01394215039908886, + -0.06261137872934341, + 0.06075404956936836, + 0.017620140686631203, + 0.07722558081150055, + -0.0013242599088698626, + 0.0781053677201271, + -0.02172580547630787, + 0.01837773434817791, + 0.04504011198878288, + -0.038490600883960724, + 0.0674990713596344, + -0.059923142194747925, + -0.006512853782624006, + 0.013025707565248013, + -0.014931908808648586, + -0.06564174592494965, + 0.07551489025354385, + -0.008852837607264519, + 0.008101354353129864, + 0.05801694095134735, + -0.00840072613209486, + 0.016715917736291885, + 0.03450712934136391, + -0.032527610659599304, + 0.009304950013756752, + -0.05273823067545891, + -3.152658973704092e-05, + 0.000982884899713099, + -0.007313213776797056, + -0.044600218534469604, + 0.11026640236377716, + -0.020577196031808853, + 0.02091933600604534, + -0.021738024428486824, + -0.03450712934136391, + -0.01837773434817791, + 0.07903403043746948, + 0.056159619241952896, + -0.06994292140007019, + 0.03963920846581459, + 0.04511342570185661, + 0.07663906365633011, + -0.025831468403339386, + -0.00022891978733241558, + 0.032454296946525574, + 0.029350610449910164, + 0.017950059846043587, + 0.015750598162412643, + -0.10244609415531158, + 0.005413122475147247, + -0.014394261874258518, + -0.07404857873916626, + -0.026393553242087364, + 0.031672265380620956, + -0.09702075272798538, + 0.010826244950294495, + -0.014394261874258518, + -0.02189687453210354, + 0.06202485039830208, + 0.059581004083156586, + -0.04550444334745407, + 0.08846728503704071, + 0.06940527260303497, + 0.006671703886240721, + -0.007191021461039782, + 0.04183867201209068, + -0.023839732632040977, + -0.0037635252811014652, + 0.037928514182567596, + -0.06114506721496582, + 0.009573772549629211, + 0.029350610449910164, + -0.0682322233915329, + 0.0005536841927096248, + -0.03609563037753105, + -0.03079248033463955, + 0.05571972578763962, + -0.004701351746916771, + 0.0007094795000739396, + -0.10928886383771896, + -0.014944127760827541, + 0.021970190107822418, + -0.004353103693574667, + 0.026760131120681763, + 0.0053581357933580875, + -0.015726158395409584, + 0.07483061403036118, + -0.11388329416513443, + 0.03125680983066559, + -0.015078539960086346, + 0.03783075883984566, + 0.0317700169980526, + -0.031941089779138565, + -0.032478734850883484, + 0.0064578671008348465, + 0.010746819898486137, + -0.024915026500821114, + 0.029717186465859413, + -0.02734665386378765, + 0.014663085341453552, + 0.05483993887901306, + -0.044404711574316025, + 0.006512853782624006, + -0.05894560366868973, + 0.02148142084479332, + -0.007667571771889925, + 0.03264980390667915, + -0.005480328109115362, + -0.07033393532037735, + 0.0043256101198494434, + -0.01968519203364849, + -0.03673103079199791, + 0.017791209742426872, + -0.056452877819538116, + -0.04814379662275314, + -0.0406411848962307, + 0.06138944998383522, + 0.008632891811430454, + -0.067010298371315, + -0.005834686104208231, + -0.05811469629406929, + -0.03577793017029762, + -0.026002537459135056, + -0.007203240878880024, + 0.00011025952699128538, + 0.013502257876098156, + 0.044331394135951996, + 0.08832065016031265, + -0.05234721675515175, + -0.010423010215163231, + -0.0987803190946579, + 0.008211327716708183, + 0.05513320118188858, + -0.04022573307156563, + 0.0423763170838356, + -0.04873032122850418, + -0.02332652546465397, + 0.026075853034853935, + -0.02480505220592022, + -0.011870989575982094, + 0.005248162895441055, + -0.06857436150312424, + -0.035020336508750916, + 0.07043168693780899, + -0.03565573692321777, + -0.03995690867304802, + 0.03057253360748291, + 0.011681591160595417, + -0.01087512169033289, + -0.022727781906723976, + 0.043915942311286926, + 0.06329565495252609, + 0.005501711741089821, + 0.0652996078133583, + -0.041936423629522324 + ] + }, + { + "id": "7eee9d4b-dd71-4e9a-b43e-4dfad7c35db8", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "customerRating", + "userName": "meganhobbs", + "reviewDate": "2021-09-19T20:21:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "01179c30-27a7-4691-a01e-63c8645050f5", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "customerRating", + "userName": "howellkenneth", + "reviewDate": "2022-01-13T15:08:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "33d39be6-41c1-4237-b12a-e31b0ddb3c7a", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "customerRating", + "userName": "calderonnatalie", + "reviewDate": "2021-03-19T07:45:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a423ce8c-27a1-40c6-85f4-46f8cd95b6c0", + "productId": "41d4f6ad-4a04-4b40-a8f8-48224aa2b263", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberly04", + "reviewDate": "2021-10-15T13:07:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "172bfe89-422f-4080-b220-34b0d7741c63", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Super (Black)", + "description": "This Luxe Speaker Super (Black) is rated 4.4 out of 5 by 52.\n\nRated 1 out of 5 by Anonymous from It's really awful I received this as a gift. I did", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-03-16T10:35:06", + "price": 619.1, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-01-03T04:50:11", + "newPrice": 616.86 + }, + { + "priceDate": "2022-11-10T04:50:11", + "newPrice": 639.37 + }, + { + "priceDate": "2025-04-22T04:50:11", + "newPrice": 619.1 + } + ], + "descriptionVector": [ + -0.0624830536544323, + 0.008732330985367298, + -0.01276062335819006, + 0.006411741953343153, + -0.06935577094554901, + -0.03893142566084862, + -0.007978009060025215, + 0.005248827859759331, + 0.009161876514554024, + 0.09353599697351456, + -0.0002738675393629819, + -0.0011092209024354815, + -0.052173975855112076, + 0.01319016795605421, + 0.011471988633275032, + -0.027365146204829216, + -0.036982759833335876, + -0.03970670327544212, + 0.03191203624010086, + 0.0032765886280685663, + 0.06738615036010742, + -0.051796816289424896, + -0.04333164170384407, + 0.057202793657779694, + -0.04261922463774681, + 0.009549514390528202, + -0.014059734530746937, + 0.05016244947910309, + 0.08724997937679291, + -0.07807238399982452, + 0.015505519695580006, + 0.025290759280323982, + -0.053054019808769226, + 0.057328514754772186, + 0.04303829371929169, + 0.04689371958374977, + 0.07530653476715088, + -0.017799917608499527, + 0.013797816820442677, + 0.057328514754772186, + -0.025081224739551544, + 0.0021647484973073006, + -0.00044689682545140386, + -0.06378216296434402, + 0.017632290720939636, + -0.0401257686316967, + 0.06265068054199219, + 0.08448413014411926, + 0.06227351725101471, + 0.039518121629953384, + 0.029921460896730423, + 0.029355719685554504, + -0.12421178072690964, + 0.050958678126335144, + 0.009439508430659771, + 0.048444271087646484, + -0.04299638420343399, + 0.027050845324993134, + 0.0200838390737772, + -0.03241491690278053, + 0.03819805756211281, + -0.057873304933309555, + -0.027595633640885353, + -0.03555792570114136, + -0.07811429351568222, + 0.04400214925408363, + 0.00888948142528534, + 0.00424306420609355, + 0.008156112395226955, + 0.09177590906620026, + 0.06550034135580063, + 0.02459929697215557, + 0.02566792070865631, + 0.04349926859140396, + 0.09789430350065231, + -0.042744945734739304, + 0.017537999898195267, + 0.007606085855513811, + -0.0945417582988739, + 0.04010481759905815, + 0.034510258585214615, + 0.02887379191815853, + -0.0010332647943869233, + 0.009449985809624195, + 0.010843386873602867, + 0.02673654444515705, + -0.09429032355546951, + -0.083771713078022, + -0.043624989688396454, + 0.04802520200610161, + -0.027197519317269325, + 0.07928768545389175, + -0.021445808932185173, + -0.0010299907298758626, + 0.038114242255687714, + -0.01195391733199358, + -0.04781566932797432, + 0.01657414250075817, + -0.05615512281656265, + 0.017883731052279472, + 0.03172345459461212, + -0.029188092797994614, + -0.07434267550706863, + 0.004625463858246803, + -0.0012853604275733232, + 0.034677885472774506, + 0.053095925599336624, + -0.07610276341438293, + 0.06977483630180359, + -0.00619696918874979, + 0.10560515522956848, + 0.023677347227931023, + 0.01785230077803135, + -0.08113158494234085, + -0.0039863851852715015, + 0.021707726642489433, + 0.0031115806195884943, + -0.05066533014178276, + -0.03101103939116001, + -0.028496630489826202, + -0.019151411950588226, + -0.012833960354328156, + -0.0169513039290905, + 0.016448423266410828, + 0.08833955228328705, + 0.0013449466787278652, + 0.03687799349427223, + 0.018365658819675446, + 0.04551079496741295, + -0.06512317806482315, + -0.05544270947575569, + 0.06671564280986786, + -0.01685701310634613, + -0.010141448117792606, + -0.027868028730154037, + 0.013703526929020882, + -0.0356626957654953, + -0.01088529359549284, + -0.008994248695671558, + -0.07430077344179153, + 0.06629657000303268, + 0.01346256211400032, + 0.038072336465120316, + -0.053054019808769226, + 0.00942379329353571, + -0.008931389078497887, + -0.053934063762426376, + -0.02013622224330902, + 0.02424308843910694, + 0.03712943196296692, + 0.040377210825681686, + -0.05812474340200424, + -0.0276584941893816, + -0.04563651606440544, + 0.021854400634765625, + 0.06520699709653854, + -0.04668418690562248, + 0.04121534526348114, + -0.024557389318943024, + 0.02390783466398716, + -0.033274006098508835, + -0.0321006141602993, + 0.015149311162531376, + -0.0249555055052042, + 0.005096915643662214, + 0.07803047448396683, + 0.027742307633161545, + 0.031870126724243164, + -0.10392888635396957, + 0.0084651755169034, + 0.06290212273597717, + -0.08616039901971817, + 0.007475127000361681, + -0.005036674439907074, + 0.016804629936814308, + -0.020911497995257378, + 0.08460984379053116, + 0.0209848340600729, + -0.025605060160160065, + 0.02994241565465927, + 0.06977483630180359, + 0.08833955228328705, + -0.01892092451453209, + -0.04209538921713829, + 0.03226824104785919, + -0.05213207006454468, + 0.050958678126335144, + -0.017894206568598747, + -0.001117733190767467, + 0.06281830370426178, + -0.051671095192432404, + -0.0019918829202651978, + -0.06218970566987991, + -0.023425906896591187, + -0.061267755925655365, + 0.0024960744194686413, + 0.04618130251765251, + 0.051796816289424896, + 0.0028470437973737717, + -0.0060555338859558105, + 0.0003154469595756382, + 0.08284976333379745, + 0.05900478735566139, + -0.013221598230302334, + -0.05975911021232605, + -0.07451030611991882, + 0.04370880126953125, + 0.0962180346250534, + -0.021833447739481926, + 0.0223153755068779, + 0.002536671468988061, + -0.003551602130755782, + -0.019360946491360664, + 0.05405978485941887, + 0.07375598698854446, + 0.039497166872024536, + -0.044882193207740784, + 0.018239937722682953, + -0.04555270075798035, + -0.0999058336019516, + 0.05137774720788002, + -0.03748564049601555, + 0.05632274970412254, + -0.004350450821220875, + -0.0641593262553215, + -0.04173918068408966, + 0.012446322478353977, + -0.015673145651817322, + 0.03425881639122963, + 0.008863289840519428, + 0.03065483085811138, + -0.023321138694882393, + 0.048444271087646484, + -0.022755397483706474, + -0.01978001371026039, + -0.01754847541451454, + -0.05745423585176468, + -0.013085400685667992, + -0.035222671926021576, + 0.03423786163330078, + -0.04222111031413078, + -0.00023572580539621413, + -0.015212171711027622, + -0.011545325629413128, + -0.0535149946808815, + -0.018983785063028336, + 0.08607658743858337, + -0.05192253738641739, + -0.08666328340768814, + -0.03564174100756645, + -0.08934531360864639, + 0.01728655956685543, + -0.06688326597213745, + 0.1087900772690773, + -0.005453123711049557, + -0.009717141278088093, + 0.05263495072722435, + -0.03178631514310837, + 0.05238351225852966, + 0.013493992388248444, + -0.03427977114915848, + 0.05908859893679619, + -0.04890524595975876, + 0.008863289840519428, + -0.047187067568302155, + 0.005678372457623482, + 0.05816664919257164, + -0.06042961776256561, + 0.016804629936814308, + -0.007710852660238743, + -0.09135684370994568, + 0.004675228148698807, + 0.000505500880535692, + 0.053431183099746704, + -0.03924572840332985, + 0.048276644200086594, + -0.030256716534495354, + -0.020754346624016762, + -0.005730756092816591, + -0.015683623030781746, + 0.1052699014544487, + 0.034321676939725876, + 0.018606623634696007, + -0.015851249918341637, + 0.05028817057609558, + -0.08674709498882294, + 0.05493982508778572, + 0.013944490812718868, + 0.0043556890450417995, + 0.0008453389164060354, + -0.027050845324993134, + 0.06374025344848633, + 0.02839186228811741, + -0.024934550747275352, + -0.013598759658634663, + 0.02604508213698864, + -0.007485603913664818, + -0.015254078432917595, + -0.045762237161397934, + 0.01666843332350254, + 0.06047152355313301, + 0.04768994823098183, + -0.022399188950657845, + -0.10300693660974503, + -0.016532236710190773, + 0.04284971207380295, + 0.0008440293022431433, + 0.06503936648368835, + -0.060764871537685394, + 0.022943977266550064, + 0.037925660610198975, + 0.02160296030342579, + -0.04370880126953125, + -0.042200155556201935, + 0.14742815494537354, + -0.011168164201080799, + 0.0067260428331792355, + -0.0013816150603815913, + 0.01923522539436817, + 0.059507668018341064, + -0.09890007227659225, + -0.07404933124780655, + -0.02267158403992653, + 0.030382435768842697, + 0.019643817096948624, + -0.019308561459183693, + -0.009848100133240223, + -0.048067111521959305, + -0.04697753116488457, + 0.034175001084804535, + 0.02338399924337864, + 0.04509172588586807, + 0.01642746850848198, + 0.00026371824787929654, + 0.02726037986576557, + 0.01320064440369606, + -0.02321637235581875, + -0.07283403724431992, + 0.08934531360864639, + -0.014667383395135403, + 0.040607698261737823, + 0.008391838520765305, + 0.028957605361938477, + -0.019119981676340103, + 0.022797303274273872, + -0.06189635768532753, + -0.015484565868973732, + 0.010251453146338463, + 0.005877430085092783, + -0.03107389807701111, + 0.0010777907446026802, + -0.004122582264244556, + 0.04475647211074829, + 0.009067585691809654, + -0.013714003376662731, + -0.029732881113886833, + 0.03339972719550133, + -0.016469376161694527, + 0.00611839396879077, + 0.017820870503783226, + -0.01759038306772709, + -0.006883193273097277, + 0.03161868825554848, + 0.02656891755759716, + -0.022189654409885406, + 0.0022040363401174545, + -0.0006688719731755555, + 0.0033708789851516485, + -0.07689899206161499, + -0.009848100133240223, + -0.008910435251891613, + -0.07480365037918091, + -0.0783657357096672, + 0.01873234286904335, + 0.0010280264541506767, + 0.03478265181183815, + 0.011398651637136936, + -0.02179154008626938, + 0.022042982280254364, + 0.047522321343421936, + -0.0005896419170312583, + 0.0303195770829916, + 0.04492409899830818, + -0.022252514958381653, + 0.030612923204898834, + 0.06357263028621674, + -0.034677885472774506, + 0.022943977266550064, + 0.01035098172724247, + 0.00686223991215229, + 0.006432695314288139, + -0.05657419189810753, + -0.012111067771911621, + 0.052173975855112076, + 0.016490329056978226, + -0.03191203624010086, + 0.010565754026174545, + 0.04953384771943092, + -0.039497166872024536, + -0.020020978525280952, + 0.02677845023572445, + 0.07409124076366425, + 0.007417505141347647, + -0.06491364538669586, + -0.04067055881023407, + -0.023949740454554558, + 0.007270831149071455, + 0.04159250855445862, + -0.08280785381793976, + -0.09588278084993362, + 0.027888981625437737, + -0.04054483771324158, + -0.004465694539248943, + 0.01768467389047146, + 0.008187542669475079, + 0.03124152682721615, + 0.10049252957105637, + -0.05615512281656265, + -0.011576755903661251, + 0.019298085942864418, + 0.06570987403392792, + 0.04155060276389122, + 0.009759047999978065, + -0.01033002883195877, + -0.041110578924417496, + 0.04035625606775284, + 0.021016264334321022, + -0.042556364089250565, + -0.021089602261781693, + -0.05678372457623482, + -0.013273981399834156, + -0.030948178842663765, + -0.029146185144782066, + 0.025814594700932503, + -0.0006829500198364258, + 0.0018556858412921429, + -0.024913597851991653, + 0.03199584782123566, + -0.01801992766559124, + 0.045007914304733276, + 0.011388175189495087, + 0.012896820902824402, + 0.032750170677900314, + 0.06935577094554901, + -0.09395506232976913, + -0.030780551955103874, + -0.05246732383966446, + 0.08624421060085297, + 0.024410715326666832, + 0.03103199228644371, + 0.04852808639407158, + 0.0073860748670995235, + -0.02531171217560768, + -0.009732856415212154, + 0.006925099994987249, + -0.008412792347371578, + 0.002857520477846265, + 0.08934531360864639, + -0.05426931753754616, + -0.04224206507205963, + -0.03696180507540703, + 0.07979056239128113, + 0.02210584096610546, + 0.02661082334816456, + -0.011304361745715141, + -0.0366055965423584, + -0.03920381888747215, + 0.052551139146089554, + -0.012509182095527649, + -0.04760613664984703, + 0.0015204313676804304, + -0.039161913096904755, + 0.037737082690000534, + 0.038449496030807495, + -0.031849175691604614, + -0.00717654125764966, + -0.008418030105531216, + -0.061980169266462326, + 0.007459411863237619, + -0.006291259545832872, + -0.029900508001446724, + 0.032205384224653244, + -0.016657955944538116, + 0.02353067323565483, + 0.10552134364843369, + 0.008884243667125702, + 0.01590363308787346, + 0.0005179419531486928, + 0.029711928218603134, + 0.03050815686583519, + -0.04018862918019295, + 0.05724469944834709, + -0.06508127599954605, + -0.09085395932197571, + -0.043457359075546265, + -0.04534316807985306, + -0.051126305013895035, + -0.038072336465120316, + -0.029711928218603134, + 0.021980121731758118, + 0.0910215899348259, + -0.03976956009864807, + -0.008711378090083599, + 0.003530648536980152, + 0.05473029240965843, + -0.02872711792588234, + -0.09202735126018524, + 0.0019198557129129767, + -0.04479837790131569, + 0.08054488897323608, + 0.06034580618143082, + -0.014154024422168732 + ] + }, + { + "id": "1a2b1f4b-342a-4491-8248-eecf419963ae", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "katieroberson", + "reviewDate": "2022-06-04T09:54:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "35807d94-6abd-436f-a648-513630c981e1", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "smithcody", + "reviewDate": "2022-01-15T05:26:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "75686581-9e6b-432c-b2f7-8eb05d34414d", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "lfisher", + "reviewDate": "2021-01-03T04:50:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1b6b643a-5ee8-44d1-b65f-8b476ef977e1", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "karahall", + "reviewDate": "2021-04-24T17:13:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fab806b1-f196-4c5a-8dee-806826b37597", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "wallacetyler", + "reviewDate": "2022-11-05T06:16:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "01077dd4-f03e-4631-80c4-3beda9c0dbbe", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "johngreen", + "reviewDate": "2021-04-05T16:29:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f6d314c4-04d5-44e2-bb18-4dccc80a4cfc", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "joshuamiller", + "reviewDate": "2021-03-29T21:06:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "96c48e99-504b-4dec-99b7-2f5eb4a87b7c", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "derekparks", + "reviewDate": "2022-11-11T03:33:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0677d90e-208e-49f7-809e-9a835e9c8afb", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "gary98", + "reviewDate": "2021-10-10T05:09:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d57e200d-66d3-420a-9de2-82e3dc575af3", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "tjackson", + "reviewDate": "2021-04-07T16:55:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "59f289fb-f422-448b-8d12-dbd23005a301", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "terrance36", + "reviewDate": "2022-05-15T10:06:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c6a74867-d8f7-46a0-b18d-feae1a87701b", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "hzhang", + "reviewDate": "2022-03-24T06:06:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "70ec1816-544a-408d-86f4-cf402f0f755e", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "kprice", + "reviewDate": "2021-03-16T01:47:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "232422de-341b-4355-8ce4-d8191789a25e", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "jparker", + "reviewDate": "2022-01-03T09:42:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d8d2c837-597e-42cd-9a8f-0337d36ee732", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "christinebutler", + "reviewDate": "2021-08-17T01:17:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "85304572-8b61-48a1-9ef3-7c0304372537", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "heidishea", + "reviewDate": "2021-07-01T23:18:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fadfa3a9-54b8-4a97-bbd5-b7f2f8cd5244", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "barnesdonald", + "reviewDate": "2022-05-08T18:50:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "42222586-4f89-4beb-ba46-00c6e92fbca5", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "charris", + "reviewDate": "2022-01-26T22:38:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8fcf6179-517c-4a2f-be98-194a614f0ccd", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "hhart", + "reviewDate": "2021-03-27T03:44:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a4a18f29-c6db-43fc-95a3-d30ff6c0b19a", + "productId": "172bfe89-422f-4080-b220-34b0d7741c63", + "category": "Media", + "docType": "customerRating", + "userName": "kaitlyn54", + "reviewDate": "2022-10-14T12:17:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand + (Steel)", + "description": "This Amazing Stand + (Steel) is a great addition to any bar that has more than 400+ users.\n\n4. I like to do this every week for a little bit each week.\n\n5. If I'm on my way to the bar, I love to bring beer, wine and any other beer. What better ways can you do that than to try and do our stand/pup? (and try and do ours", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-08-11T13:39:39", + "price": 867.42, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-04-02T20:00:57", + "newPrice": 904.88 + }, + { + "priceDate": "2022-01-08T20:00:57", + "newPrice": 800.46 + }, + { + "priceDate": "2022-10-16T20:00:57", + "newPrice": 912.41 + }, + { + "priceDate": "2023-03-24T20:00:57", + "newPrice": 867.42 + } + ], + "descriptionVector": [ + 0.035678695887327194, + -0.010146033950150013, + -0.06258244067430496, + -0.026538124307990074, + -0.002673617098480463, + -0.03997476398944855, + -0.09359944611787796, + 0.026294374838471413, + 0.03110840916633606, + 0.10213064402341843, + -0.019895976409316063, + 0.05228406563401222, + -0.03156543895602226, + -0.03793336823582649, + -0.02207447960972786, + -0.014251673594117165, + 0.060449641197919846, + -0.0030678040347993374, + 0.0338810496032238, + -0.006870662327855825, + 0.0368974395096302, + -0.01811356469988823, + -0.10755404829978943, + 0.0078304223716259, + -0.0004327489004936069, + -0.044697392731904984, + 0.021739324554800987, + -0.016544433310627937, + -0.06733553856611252, + 0.013086250983178616, + 0.011859891004860401, + 0.05197938159108162, + -0.009239593520760536, + -0.05173563212156296, + 0.025456489995121956, + 0.007750442251563072, + 0.04302161931991577, + -0.0035057899076491594, + -0.022485803812742233, + 0.06873708963394165, + -0.027010386809706688, + -0.0066345310769975185, + -0.007708548102527857, + 0.0011292413109913468, + 0.035922445356845856, + -0.0260506272315979, + 0.017717473208904266, + -0.0412544421851635, + -0.005240594036877155, + -0.07665891945362091, + -0.002951642731204629, + -0.021069016307592392, + 0.048536431044340134, + 0.04655597358942032, + 0.017473725602030754, + -0.01814403384923935, + 0.008957759477198124, + -0.06910271942615509, + 0.030834192410111427, + -0.04500207677483559, + -0.06142463535070419, + -0.01430499367415905, + -0.022501038387417793, + -0.04326536878943443, + -0.011227668263018131, + -0.024024467915296555, + 0.017092866823077202, + 0.01677294820547104, + -0.014762021601200104, + 0.04128491133451462, + 0.005370085593312979, + 0.03918258100748062, + -0.018981918692588806, + 0.08543387055397034, + 0.059383243322372437, + -0.039700545370578766, + 0.07440424710512161, + 0.02481665089726448, + 0.05469108372926712, + 0.014503039419651031, + 0.019880741834640503, + 0.019058089703321457, + 0.04293021559715271, + -0.049907516688108444, + 0.03546541556715965, + 0.005648110993206501, + -0.07976671308279037, + -0.16099591553211212, + 0.04268646612763405, + -0.006695467978715897, + 0.012751096859574318, + -0.047652844339609146, + -0.003728591138496995, + -0.019880741834640503, + 0.008424559608101845, + 0.026812341064214706, + -0.060266830027103424, + 0.011783719062805176, + 0.039761483669281006, + 9.092963591683656e-05, + 0.025075633078813553, + 0.026812341064214706, + -0.04518488794565201, + -0.050212204456329346, + 0.005869008135050535, + 0.056427791714668274, + -7.706406177021563e-05, + 0.024024467915296555, + -0.05493482947349548, + -0.24691729247570038, + 0.06270431727170944, + -0.0542035847902298, + 0.03467323258519173, + -0.026918981224298477, + -0.06115042045712471, + -0.03848180174827576, + 0.03217481076717377, + -0.08732292056083679, + 0.04500207677483559, + 0.04890205338597298, + 0.04786612465977669, + -0.0054691084660589695, + 0.02073386125266552, + 0.0014824863756075501, + -0.0036486112512648106, + 0.015241902321577072, + 0.004448411054909229, + 0.0003261089150328189, + 0.005667153745889664, + -0.027954911813139915, + 0.024192044511437416, + 0.0232627522200346, + -0.00017019551887642592, + -0.017412787303328514, + 0.035587288439273834, + 0.04676925390958786, + 0.021023312583565712, + 0.0814729556441307, + -0.016513964161276817, + -0.010245056822896004, + 0.02359790727496147, + -0.03985288739204407, + 0.0023213240783661604, + 0.059078555554151535, + 0.005789028014987707, + 0.04719581454992294, + -0.06922458857297897, + 0.047439564019441605, + -0.013611833564937115, + -0.015257135964930058, + 0.0009059638832695782, + -0.09317288547754288, + -0.01572178117930889, + 0.013253827579319477, + -0.003875221125781536, + -0.02338462695479393, + -0.039548203349113464, + -0.004094214178621769, + -0.09347756952047348, + 0.008934907615184784, + 0.023872124031186104, + -0.061820726841688156, + -0.06611679494380951, + 0.009079634211957455, + 0.07537924498319626, + -0.014594445005059242, + 0.06910271942615509, + -0.018555358052253723, + -0.02327798679471016, + 0.03296699374914169, + -0.011258136481046677, + -0.051370009779930115, + -0.030544741079211235, + -0.0232627522200346, + 0.030697083100676537, + 0.0014805820537731051, + 0.004600754007697105, + -0.054051242768764496, + 0.04887158423662186, + -0.03893883153796196, + 0.013695621863007545, + 0.030544741079211235, + -0.025349849835038185, + 0.003599099814891815, + 0.022683849558234215, + 0.06593398749828339, + -0.0655074268579483, + 0.04149819165468216, + 0.10304470360279083, + -0.0021956413984298706, + 0.034551359713077545, + -0.044819265604019165, + -0.026461953297257423, + 0.02717796340584755, + 0.01706239953637123, + -0.0038352312985807657, + -0.034277141094207764, + -0.015843655914068222, + -0.002949738409370184, + -0.004863545298576355, + -0.057920750230550766, + 0.04646456986665726, + 0.02064245566725731, + 0.028229130432009697, + 0.01572178117930889, + -0.059109024703502655, + 0.05182703584432602, + 0.028960375115275383, + 0.05167469382286072, + 0.043417710810899734, + 0.06434962153434753, + -0.025045163929462433, + -0.012187427841126919, + 0.02729983814060688, + -0.002090905560180545, + -0.016635838896036148, + -0.02739124372601509, + 0.03756774589419365, + 0.05033407732844353, + -0.058012157678604126, + 0.023095175623893738, + -0.051400478929281235, + -0.07556205242872238, + -0.021008078008890152, + -0.03461229428648949, + -0.012956758961081505, + -0.005762368440628052, + -0.024252980947494507, + 0.01817450113594532, + 0.03458182513713837, + -0.0074533736333251, + -0.04046225920319557, + -0.029508810490369797, + 0.021023312583565712, + -0.03260137140750885, + 0.009079634211957455, + -0.011593290604650974, + -0.059017620980739594, + 0.01695575937628746, + -0.02356743812561035, + -0.017732707783579826, + 0.03887789323925972, + -0.0981697291135788, + -0.04122397303581238, + 0.0003192058647982776, + 0.10243532806634903, + 0.023887358605861664, + -0.015889359638094902, + 0.00971947330981493, + -0.0016300685238093138, + -0.0003994239086750895, + 0.005712857004255056, + 0.029249826446175575, + 0.0035743440967053175, + 0.08896822482347488, + 0.06374024599790573, + 0.05487389490008354, + 0.004235131200402975, + 0.0011397149646654725, + -0.0022299184929579496, + -0.0037514425348490477, + -0.05965745821595192, + -0.02088620513677597, + 0.06118088960647583, + -0.019042856991291046, + -0.057677000761032104, + 0.014777256175875664, + 0.013840347528457642, + -0.022744787856936455, + 0.09634161740541458, + 0.011349542066454887, + -0.009140570648014545, + -0.003690505400300026, + -0.004566476680338383, + 0.009483342058956623, + -0.011448564939200878, + 0.02589828334748745, + 0.04801846668124199, + 0.034459952265024185, + 0.056488730013370514, + 0.04564191773533821, + 0.009171039797365665, + 0.01960652507841587, + 0.01806786097586155, + 0.04158959910273552, + -0.048475492745637894, + -0.016346387565135956, + -0.06831053644418716, + -0.02359790727496147, + -0.006485996767878532, + -0.06063245236873627, + -0.029006078839302063, + 0.07611048966646194, + 0.01802215911448002, + 0.05338093265891075, + 0.06148557364940643, + -0.05944417789578438, + 0.048566900193691254, + -0.001012127846479416, + 0.017747942358255386, + 0.05341140180826187, + 0.022424867376685143, + -0.030742786824703217, + 0.00042322746594436467, + 0.012164576910436153, + 0.024938523769378662, + -0.035831037908792496, + -0.033088866621255875, + -0.059383243322372437, + -0.016590137034654617, + 0.12943048775196075, + -0.07397768646478653, + -0.03112364374101162, + -0.023826422169804573, + -0.019835038110613823, + 0.0013444256037473679, + 0.0623386949300766, + 0.01803739368915558, + -0.06501992791891098, + 0.01817450113594532, + -0.02358267270028591, + -0.008310302160680294, + -0.060297299176454544, + 0.041102100163698196, + 0.03202246502041817, + -0.035617757588624954, + 0.06206447631120682, + -0.04509348422288895, + 0.0068325768224895, + 0.025106102228164673, + -0.009887050837278366, + -0.038177117705345154, + 0.02216588519513607, + 0.015523736365139484, + 0.008934907615184784, + -0.1090165451169014, + -0.02868615835905075, + -0.01957605592906475, + -0.019911210983991623, + -0.020002616569399834, + 0.04070600867271423, + 0.026781871914863586, + -0.0016805320046842098, + 0.0029954412020742893, + 0.06136370077729225, + -0.02995060384273529, + 0.047439564019441605, + -0.06831053644418716, + 0.03762868419289589, + -0.09250257909297943, + 0.002239439869299531, + -0.010823959484696388, + -0.00710679404437542, + 0.029341232031583786, + 0.09506193548440933, + 0.029265061020851135, + -0.07964484393596649, + -0.07172301411628723, + 0.03863414749503136, + -0.002662191167473793, + 0.04417942464351654, + -0.021404169499874115, + -0.026248672977089882, + 0.003153496887534857, + 0.10475094616413116, + 0.04253412410616875, + -0.028320536017417908, + -0.044697392731904984, + 0.004265599884092808, + 0.03765915334224701, + -0.05362468212842941, + -0.057951219379901886, + 0.08994321525096893, + -0.060541048645973206, + -0.0594746470451355, + 0.02746741473674774, + 0.041010696440935135, + 0.032997459173202515, + -0.00783803965896368, + 0.014251673594117165, + 0.009788027964532375, + 0.009376701898872852, + 0.029493575915694237, + 0.029356466606259346, + 0.05100438743829727, + -0.0219830721616745, + -0.0495418943464756, + 0.07988858968019485, + 0.015919826924800873, + 0.040858350694179535, + -0.05301531031727791, + -0.030438100919127464, + -0.0933557003736496, + 0.05295437574386597, + 0.026827575638890266, + 0.00245843268930912, + 0.013962222263216972, + 0.02358267270028591, + -0.04308255761861801, + 0.04308255761861801, + -0.05755512788891792, + 0.007617142517119646, + 0.0167881827801466, + 0.02728460356593132, + 0.04024897888302803, + -0.007876125164330006, + -0.0036086211912333965, + -0.019926443696022034, + 0.017428021878004074, + -0.06416680663824081, + -0.08933384716510773, + -0.059200432151556015, + 0.004212279804050922, + 0.04835361987352371, + 0.08665261417627335, + 0.13540232181549072, + -0.07245425879955292, + 0.03750680759549141, + 0.09737754613161087, + -0.05944417789578438, + 0.05810356140136719, + 0.07806047797203064, + -0.01301769632846117, + 0.037019312381744385, + -0.08689635992050171, + 0.03741540387272835, + 0.039578672498464584, + -0.016605369746685028, + -0.09323382377624512, + -0.03351542726159096, + 0.0009012031368911266, + -0.05670200660824776, + -0.01832684502005577, + 0.07306362688541412, + 0.0671527311205864, + -0.05283249914646149, + 0.05883480980992317, + 0.02474047802388668, + -0.02219635248184204, + -0.06544648855924606, + -0.019835038110613823, + -0.031900592148303986, + 0.03637947142124176, + -0.011258136481046677, + -0.0018519177101552486, + -0.042138032615184784, + -0.03275371342897415, + 0.002203258452937007, + -0.009262445382773876, + 0.05624498054385185, + -0.010435485281050205, + -0.08153389394283295, + -0.060266830027103424, + 0.014518273063004017, + -0.012560667470097542, + -0.08939478546380997, + 0.04384427145123482, + 0.05063876137137413, + 0.05603170022368431, + 0.004410325549542904, + 0.020353004336357117, + 0.031687311828136444, + 0.029082249850034714, + -0.026279142126441002, + -0.022363930940628052, + -0.05185750499367714, + -0.06569023430347443, + 0.0018262099474668503, + -0.010740171186625957, + 0.027939679101109505, + -0.021160421893000603, + 0.00024755712365731597, + -0.07836516201496124, + -0.004581711255013943, + -0.05581841990351677, + -0.03257090225815773, + -0.02963068336248398, + -0.0055300453677773476, + -0.09999784827232361, + 0.037049781531095505, + -0.09061352908611298, + -0.03348495811223984, + 0.02480141632258892, + -0.02222682163119316, + 0.008828268386423588, + -0.014640147797763348, + -0.026858044788241386, + -0.019210433587431908, + 0.02315611205995083, + 0.05956605449318886, + 0.02469477616250515, + 0.04283880814909935, + 0.014129798859357834, + 0.006371739786118269, + 0.011227668263018131, + -0.027848273515701294, + -0.00976517703384161, + 0.009452873840928078, + -0.029417404904961586, + -0.03509979322552681, + 0.021571747958660126, + 0.013596598990261555, + -0.048688773065805435, + 0.052466876804828644, + 0.07099176943302155, + -0.059017620980739594, + -0.028092021122574806, + 0.028046319261193275, + 0.0008669260423630476, + -0.01049642264842987, + 0.02344556525349617, + 0.06367930769920349 + ] + }, + { + "id": "20e99950-fc1d-413b-a687-9bf2a8996a7c", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarahwilliams", + "reviewDate": "2021-04-02T20:00:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76375d56-7bb2-4354-932d-2dface4a152e", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "garytaylor", + "reviewDate": "2021-12-15T04:26:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "15542e84-d2bf-41f2-89cd-1775b4d81b17", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "josephthompson", + "reviewDate": "2021-06-19T19:35:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f6755e3b-b92f-4399-9d7e-148ca4d31ad4", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandamayo", + "reviewDate": "2022-02-22T04:24:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8de8d574-62ee-4dac-8daa-c2cb9a7bf498", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "qrogers", + "reviewDate": "2022-10-18T06:13:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d7309be9-e8ac-4438-8b58-2411c21c471d", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "tyler09", + "reviewDate": "2022-07-09T04:39:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "197d075c-9a8c-44f9-8779-a847b0d9ff88", + "productId": "bdf4ea49-4405-4bd6-a8f8-87ee76059db9", + "category": "Accessory", + "docType": "customerRating", + "userName": "travishumphrey", + "reviewDate": "2022-08-31T00:27:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Mini (Silver)", + "description": "This Premium Speaker Mini (Silver) is a 3mm diameter mini with 3 stainless steel springs. It uses the same alloy wheels which are used for standard 2\" X 3\" X 2\" Mini Mini's. It", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-08-17T05:55:45", + "price": 816.79, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-03-03T06:46:24", + "newPrice": 886.48 + }, + { + "priceDate": "2023-03-14T06:46:24", + "newPrice": 816.79 + } + ], + "descriptionVector": [ + -0.0029186676256358624, + 0.0019670347683131695, + -0.04437028616666794, + -0.041937246918678284, + -0.006089141592383385, + 0.018038509413599968, + -0.012544548138976097, + 0.026920415461063385, + 0.0075738197192549706, + 0.06556128710508347, + -0.034428831189870834, + 0.03186498209834099, + 0.023924898356199265, + -0.01815623790025711, + -0.025455359369516373, + -0.019765183329582214, + 0.0149906687438488, + 0.013891876675188541, + 0.00400274433195591, + -0.013270535506308079, + 0.051407791674137115, + -0.053396083414554596, + -0.039242587983608246, + -0.014467434957623482, + -0.0308185126632452, + -0.04222502559423447, + -0.02452661842107773, + 0.010772090405225754, + -0.06812513619661331, + 0.05870691314339638, + 0.055567506700754166, + -0.0024199597537517548, + -0.042565129697322845, + 0.013708744198083878, + -0.01275384146720171, + -0.028254663571715355, + 0.016939718276262283, + -0.04036754369735718, + -0.02898719348013401, + -0.009849890135228634, + 0.03620782867074013, + -0.024866720661520958, + 0.0043820892460644245, + -0.0200006403028965, + 0.010137668810784817, + 0.027129709720611572, + -0.060904499143362045, + 0.09883899986743927, + -0.01484677940607071, + -0.0016130339354276657, + -0.04410867020487785, + 0.06718331575393677, + -0.019555890932679176, + 0.08120600134134293, + 0.02066776342689991, + -0.05766044557094574, + -0.012865029275417328, + 0.22792096436023712, + 0.012420279905200005, + 0.0004713198577519506, + 0.07241565734148026, + -0.0865953117609024, + 0.010523553937673569, + 0.06357299536466599, + -0.034402668476104736, + 0.04413483291864395, + -0.06200329214334488, + -0.0036626416258513927, + -0.008496020920574665, + 0.06781119108200073, + 0.008116675540804863, + -0.05677094683051109, + 0.005719607230275869, + 0.04727423936128616, + 0.0316818505525589, + -0.0014675093116238713, + 0.07445627450942993, + 0.041414011269807816, + -0.028804060071706772, + -0.01123646181076765, + 0.022263629361987114, + -0.012838867492973804, + -0.04447493329644203, + -0.012871569022536278, + 0.022878428921103477, + 0.012858488596975803, + 0.06686937063932419, + -0.07947932183742523, + 0.01700512133538723, + 0.0749795064330101, + -0.038274604827165604, + 0.036103181540966034, + 0.050073545426130295, + 0.05015202984213829, + 0.04478887468576431, + 0.005785011686384678, + 0.013224752619862556, + 0.025298388674855232, + -0.05561982840299606, + -0.04818990081548691, + 0.07592132687568665, + -0.042905230075120926, + -0.00536969443783164, + -0.005628041457384825, + 0.03866703063249588, + 0.09611818194389343, + 0.02634485810995102, + -0.030033661052584648, + 0.030713867396116257, + -0.12348334491252899, + 0.040419865399599075, + -0.02684193104505539, + 0.017619922757148743, + -0.04149249941110611, + 0.010876737534999847, + -0.015461579896509647, + -0.039085619151592255, + -0.05478265509009361, + -0.04112623259425163, + -0.025560006499290466, + -0.0683867558836937, + 0.019451243802905083, + -0.010510473512113094, + -0.03911178186535835, + -0.03372246399521828, + -0.015186881646513939, + -0.04983808845281601, + 0.03953036665916443, + -0.03301609680056572, + -0.03882400318980217, + -0.031394071877002716, + 0.028097694739699364, + -0.020249176770448685, + -0.04761434346437454, + -0.0682297796010971, + -0.0014217263087630272, + 0.022041253745555878, + 0.051904864609241486, + 0.038562383502721786, + 0.012145581655204296, + -0.036914195865392685, + 0.02383333258330822, + 0.03900713473558426, + 0.04813757538795471, + -0.02767910622060299, + -0.047064945101737976, + -0.1115536019206047, + 0.05384083092212677, + -0.08052579313516617, + -0.029876692220568657, + 0.002988977124914527, + -0.05216648057103157, + -0.032885290682315826, + -0.06608451902866364, + 0.006229761056602001, + 0.06399158388376236, + -0.08779875189065933, + 0.02731284312903881, + 0.006219950504601002, + 0.005284668877720833, + 0.06064288318157196, + -0.05687559396028519, + 0.012708058580756187, + 0.015592388808727264, + -0.05473032966256142, + 0.04403018578886986, + 0.03945188224315643, + 0.028254663571715355, + -0.07037504017353058, + 0.009620974771678448, + 0.013205131515860558, + -0.015880167484283447, + 0.03469045087695122, + -0.08900219202041626, + 0.06550896167755127, + 0.026894254609942436, + -0.03471660986542702, + -0.07775264978408813, + -0.035920049995183945, + 0.01881028153002262, + 0.013054701499640942, + 0.07079362869262695, + 0.018862605094909668, + 0.009045416489243507, + 0.0183262899518013, + 0.033330038189888, + 0.011635427363216877, + 0.006046629045158625, + -0.04429180175065994, + 0.017593760043382645, + 0.052742041647434235, + -0.014218898490071297, + -0.008450238034129143, + 0.01700512133538723, + 0.039399560540914536, + -0.031237101182341576, + 0.04269593581557274, + 0.01614178530871868, + 0.014715971425175667, + -0.04280058294534683, + -0.007501875050365925, + -0.010471231304109097, + 0.029405780136585236, + -0.04947182536125183, + -0.03317306935787201, + -0.01952972821891308, + 0.002624348271638155, + 0.05933479592204094, + 0.004091039765626192, + -0.016665019094944, + 0.017240578308701515, + -0.060747526586055756, + -0.00691323634237051, + 0.04481503739953041, + 0.019595133140683174, + 0.06577058136463165, + 0.003920988645404577, + 0.003551454283297062, + -0.0005461260443553329, + -0.018273966386914253, + 0.039425723254680634, + -0.015199963003396988, + 0.1017167940735817, + -0.003649560734629631, + -0.10726308077573776, + -0.008672612719237804, + -0.034899741411209106, + 0.009810646995902061, + 0.0367049016058445, + 0.0014773199800401926, + -0.025730058550834656, + 0.017960024997591972, + -0.054259419441223145, + 0.06597987562417984, + -0.008057811297476292, + 0.03754207864403725, + 0.028071532025933266, + -0.03547530248761177, + -0.0350043885409832, + 0.06378228962421417, + -0.07518880069255829, + 0.07074131071567535, + -0.05295133218169212, + -0.03717581182718277, + -0.06252652406692505, + -0.016965879127383232, + 0.0966937392950058, + -0.10407134890556335, + -0.08785107731819153, + -0.006102222483605146, + -0.12526234984397888, + -0.022420600056648254, + -0.04630625620484352, + -0.004597923252731562, + -0.06645078212022781, + 0.02699890173971653, + 0.07136918604373932, + -0.024631265550851822, + 0.013362101279199123, + -0.029458103701472282, + 0.03913794085383415, + -0.04818990081548691, + 0.0056247711181640625, + 0.03301609680056572, + -0.08523490279912949, + -0.005605150014162064, + 0.025102175772190094, + -0.07911305874586105, + -0.009274331852793694, + 0.03484741970896721, + -0.020811652764678, + 0.027260519564151764, + 0.0031802847515791655, + 0.012505304999649525, + -0.016050219535827637, + -0.009222008287906647, + -0.08063044399023056, + -0.022917672991752625, + -0.048765458166599274, + -0.033330038189888, + 0.13415732979774475, + 0.015186881646513939, + 0.07388071715831757, + -0.026371020823717117, + 0.06896231323480606, + 0.0023545552976429462, + -0.011151435784995556, + 0.007998947985470295, + -0.0333562009036541, + -0.044579580426216125, + -0.0015042992308735847, + -0.04350695013999939, + 0.04070764780044556, + 0.08471167087554932, + 0.029065677896142006, + -0.016730424016714096, + 0.041623305529356, + -0.030583057552576065, + 0.00916314497590065, + 0.03686187416315079, + -0.03704500570893288, + 0.029248809441924095, + -0.09010098874568939, + -0.041414011269807816, + 0.034925904124975204, + 0.04544292017817497, + -0.07393303513526917, + 0.01225022878497839, + -0.060747526586055756, + -0.02348014898598194, + 0.0432976558804512, + 0.0013620448298752308, + -0.07691547274589539, + 0.01516072079539299, + 0.011556942947208881, + -0.025115257129073143, + -0.00028839215519838035, + -0.0026570502668619156, + 0.010477771051228046, + -0.014781375415623188, + -0.0027110090013593435, + 0.0017332143615931273, + -0.08125831931829453, + 0.010706686414778233, + -0.0007893483270891011, + 0.015710117295384407, + -0.02515449933707714, + -0.0350305512547493, + 0.06728795915842056, + 0.0383530892431736, + 0.021871203556656837, + -0.10778631269931793, + 0.012623032554984093, + -0.07686315476894379, + 0.029772045090794563, + -0.03539681434631348, + -0.05452103912830353, + -0.08942078053951263, + 0.04015824943780899, + 0.009692919440567493, + -0.008306347765028477, + -0.03427186235785484, + 0.008803420700132847, + 0.00632786750793457, + -0.016455726698040962, + -0.05378850921988487, + -0.00463062571361661, + -0.03382711112499237, + -0.0300075002014637, + -0.01967361755669117, + 0.0011968989856541157, + -0.020458469167351723, + 0.11772777140140533, + -0.04298371449112892, + 0.06791584193706512, + -0.034245699644088745, + -0.020772410556674004, + -0.011262623593211174, + 0.11751847714185715, + 0.04562605172395706, + -0.01849634014070034, + 0.0041172015480697155, + 0.012354874983429909, + -0.0043264953419566154, + 0.0715784803032875, + -0.012400657869875431, + -0.02397722192108631, + -0.001850942149758339, + -0.08303731679916382, + 0.022420600056648254, + -0.024958286434412003, + -0.027129709720611572, + 0.004781055264174938, + 0.06284046918153763, + 0.029588911682367325, + 0.014715971425175667, + 0.0466986820101738, + -0.038091473281383514, + -0.043088361620903015, + 0.025246065109968185, + 0.03704500570893288, + 0.006461946293711662, + -0.044422611594200134, + -0.04321917146444321, + 0.04253896698355675, + -0.033094584941864014, + -0.005307560320943594, + 0.004081229213625193, + -0.04730040207505226, + 0.020445389673113823, + -0.0020945731084793806, + -0.03100164607167244, + -0.005932171363383532, + 0.01801234856247902, + 0.05420709773898125, + -0.007011342793703079, + -0.013630259782075882, + 0.018064672127366066, + -0.012851947918534279, + 0.010974843986332417, + -0.020863976329565048, + 0.037411268800497055, + -0.07079362869262695, + -0.014140413142740726, + 0.01598481461405754, + -0.08727551996707916, + -0.024605102837085724, + 0.04737888649106026, + 0.027286680415272713, + -0.014114251360297203, + 0.030452249571681023, + -0.07618294656276703, + -0.0012157027376815677, + -0.0003125100047327578, + 0.010961763560771942, + -0.03680954873561859, + 0.05687559396028519, + 0.005045942962169647, + 0.05410245060920715, + -0.02898719348013401, + 0.019961396232247353, + -0.05844529718160629, + -0.01900649443268776, + -0.03743743151426315, + -0.006455406080931425, + 0.026109402999281883, + -0.055096596479415894, + 0.020379984751343727, + 0.0633113756775856, + -0.09151371568441391, + -0.0916706919670105, + -0.03353933244943619, + -0.012459522113204002, + 0.00884266383945942, + -0.038405414670705795, + 0.06205561384558678, + -0.025887027382850647, + 0.012224067002534866, + -0.059073176234960556, + -0.0008151012589223683, + -0.013205131515860558, + 0.00675626564770937, + -0.006782427430152893, + 0.08738016337156296, + -0.06210793927311897, + -0.10422831773757935, + -0.01225022878497839, + -0.00025119344354607165, + 0.014702890068292618, + 0.030896998941898346, + -0.003266945481300354, + -0.035736918449401855, + -0.0058896588161587715, + 0.037568237632513046, + 0.01967361755669117, + -0.0383792519569397, + 0.04761434346437454, + 0.07058433443307877, + -0.03254518657922745, + 0.042434319853782654, + -0.002895776182413101, + 0.02883022278547287, + 0.045050494372844696, + 0.0175021942704916, + 0.00856796558946371, + -0.025913190096616745, + 0.0021632476709783077, + 0.06577058136463165, + -0.031080130487680435, + 0.06064288318157196, + -0.020432308316230774, + -0.01564471237361431, + -0.003064192133024335, + -0.0038098013028502464, + 0.02200201153755188, + -0.048268385231494904, + -0.0007967062992975116, + -0.030426086857914925, + 0.03688803315162659, + 0.02017069049179554, + -0.021217159926891327, + 0.014258140698075294, + -0.02681577019393444, + 0.09240321815013885, + 0.08068276196718216, + 0.001480590202845633, + 0.032885290682315826, + 0.007685007061809301, + 0.0599626749753952, + 0.08413611352443695, + 0.05253274738788605, + 0.048739295452833176, + -0.004790866281837225, + -0.04222502559423447, + 0.016939718276262283, + -0.025416117161512375, + 0.07649688422679901, + -0.08015953004360199, + 0.015566227026283741, + 0.06911928206682205, + 0.045233625918626785, + -0.032937612384557724, + -0.028777899220585823, + 0.05478265509009361, + -0.020236095413565636, + 0.04261745139956474, + -0.0549919493496418, + -0.0241472739726305, + 0.04178027808666229, + 0.07654920965433121, + 0.036757227033376694, + 0.03314690664410591 + ] + }, + { + "id": "d74c0e2c-5ba6-478f-ac01-7616911e0c3a", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "austin52", + "reviewDate": "2022-07-20T07:22:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f276f6fe-a9c1-4756-b32d-daaded174462", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "djordan", + "reviewDate": "2021-05-28T04:00:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4ca98588-4435-4809-bb1e-350e0a76ff81", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "steven52", + "reviewDate": "2022-07-26T05:06:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "44419e25-0b4b-47e9-b30c-86dbdd7de669", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "diazdavid", + "reviewDate": "2021-09-15T11:53:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "23b050e9-9190-4351-8683-5fd1a54a183a", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "joshua83", + "reviewDate": "2021-06-19T19:26:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8ceee52a-e61c-49ab-a0c6-7058b693717c", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "edwardgaines", + "reviewDate": "2021-12-01T17:49:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e6a1c46c-23ee-4a71-9b18-206a3567d024", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "davissamuel", + "reviewDate": "2022-07-06T10:03:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cf78a174-9e19-4c04-b0be-e91164d3a0be", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "sbraun", + "reviewDate": "2022-12-04T03:07:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "86a06aca-9cc7-4057-b1db-6aea497ac63a", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "michellewilkinson", + "reviewDate": "2021-07-11T11:33:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1997c7bd-c684-4444-800d-e88f11f08a03", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "hillelizabeth", + "reviewDate": "2022-01-29T12:29:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "688ad6fc-ae6f-4199-a220-bd307b8e0fd8", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "dixoncameron", + "reviewDate": "2022-01-15T12:29:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "abef84bf-d153-4966-874c-02dca5f87e4e", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "rjohnson", + "reviewDate": "2022-09-06T04:45:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6019f32a-b39a-4731-a024-5233bb78f5ff", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "maria25", + "reviewDate": "2021-11-04T06:21:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d815648e-56ef-41d0-b4cd-81017ac6bd16", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "arios", + "reviewDate": "2021-07-28T04:40:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "407cdfed-e4c8-4b6d-80fb-f8588d81d9fb", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "hernandezchristopher", + "reviewDate": "2021-12-21T11:53:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9ff6ef7f-a22e-423a-8de4-dfd164ceb9c2", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "heather92", + "reviewDate": "2021-05-20T18:12:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3d4ea9c8-3314-4817-92b6-1d009f97512f", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "carolsparks", + "reviewDate": "2022-04-24T02:51:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "80b67651-7b94-458a-91e1-feb7c88ff323", + "productId": "bb89d75b-1be3-46d6-846f-a83318ff5a67", + "category": "Media", + "docType": "customerRating", + "userName": "carneymarie", + "reviewDate": "2021-03-03T06:46:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Micro (Steel)", + "description": "This Basic Stand Micro (Steel) is just a basic set of basic accessories. The standard stand's stand consists of a solid plastic stand holder holding a small piece of material and a few screws that connect the stand holder to the holder to attach the holder to the stand. If you can't attach the holder to the stand just hold the plastic stand holder in place and press it together.\n\nThe next step for", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-08-03T11:46:16", + "price": 1042.67, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-08-06T06:48:04", + "newPrice": 998.03 + }, + { + "priceDate": "2021-11-01T06:48:04", + "newPrice": 1115.09 + }, + { + "priceDate": "2022-01-27T06:48:04", + "newPrice": 1106.96 + }, + { + "priceDate": "2022-04-24T06:48:04", + "newPrice": 1047.41 + }, + { + "priceDate": "2022-07-20T06:48:04", + "newPrice": 943.67 + }, + { + "priceDate": "2025-08-13T06:48:04", + "newPrice": 1042.67 + } + ], + "descriptionVector": [ + 0.04273710772395134, + -0.013416862115263939, + -0.03644309937953949, + 0.02976056933403015, + -0.0016803453909233212, + -0.0041280160658061504, + -0.01784598082304001, + -0.004464732948690653, + 0.024139991030097008, + 0.012180075980722904, + 0.030174989253282547, + 0.018959736451506615, + 0.01680992916226387, + -0.06972624361515045, + 0.010431739501655102, + -0.02515014074742794, + 0.013818331994116306, + 0.02862091362476349, + 0.008482668548822403, + -0.06371714174747467, + 0.13199292123317719, + -0.13872724771499634, + -0.03400838002562523, + 0.07998314499855042, + -0.0425817035138607, + -0.026509959250688553, + 0.02537030167877674, + -0.019905133172869682, + -0.0486426018178463, + 0.06884559988975525, + -0.009719454683363438, + -0.008094149641692638, + -0.024839326739311218, + -0.023129841312766075, + 0.007317111361771822, + 0.013844233006238937, + -0.0038819541223347187, + -0.03488902375102043, + -0.013287356123328209, + 0.03843749687075615, + 0.024942930787801743, + 0.03139235079288483, + 0.02584947645664215, + -0.0018082329770550132, + -0.013170800171792507, + 0.03618408739566803, + -0.02066922001540661, + 0.008871187455952168, + -0.0390850305557251, + -0.05346024036407471, + 0.04159745201468468, + 0.0503779873251915, + -0.007239407394081354, + 0.05200976878404617, + 0.06180045008659363, + -0.014686024747788906, + 0.026095537468791008, + 0.11479446291923523, + 0.020060541108250618, + -0.0825214758515358, + -0.03758275508880615, + 0.026548810303211212, + -0.016045842319726944, + 0.02740355208516121, + -0.055273327976465225, + 0.03310183435678482, + 0.02740355208516121, + 0.02362196519970894, + 0.022663619369268417, + 0.03652080148458481, + 0.004442069213837385, + 0.02337590418756008, + -0.010256906040012836, + -0.0005103361327201128, + -0.018221549689769745, + -0.02701503410935402, + 0.07153932750225067, + 0.058485087007284164, + 0.0703478753566742, + -0.028776319697499275, + 0.010936815291643143, + -0.017574017867445946, + -0.021575765684247017, + -0.021135443821549416, + 0.02862091362476349, + -0.024606214836239815, + 0.0027487732004374266, + -0.04346234351396561, + -0.014090295881032944, + 0.09049906581640244, + -0.0021303801331669092, + 0.03799717500805855, + 0.08371293544769287, + 0.04043189436197281, + 0.05936573073267937, + 0.030511705204844475, + -0.05182845890522003, + 0.04079451411962509, + -0.0042219082824885845, + -0.0681721642613411, + 0.07273078709840775, + 0.023479508236050606, + -0.06273289769887924, + -0.022016087546944618, + -0.02649700827896595, + 0.06682530045509338, + 0.07625336199998856, + 0.0790507048368454, + -0.0007422335329465568, + -0.10531459748744965, + 0.0023084513377398252, + -0.022987384349107742, + 0.06496040523052216, + 0.04260760173201561, + -0.019620219245553017, + -0.0026872577145695686, + -0.02515014074742794, + -0.01246498990803957, + 0.01603289134800434, + -0.002311689080670476, + -0.015968138352036476, + -0.0008061772678047419, + 0.05346024036407471, + -0.024645065888762474, + -0.025072436779737473, + 0.046933118253946304, + -0.02166641876101494, + -0.06837937235832214, + 0.04136434197425842, + -0.015100445598363876, + -0.02784387394785881, + -0.012322532944381237, + 0.012069995515048504, + -0.025771772488951683, + -0.060401782393455505, + 0.047321636229753494, + 0.034422799944877625, + -0.01450471580028534, + -0.0021659943740814924, + 0.04890161380171776, + -0.01902448944747448, + -0.023738522082567215, + -0.010625999420881271, + 0.04286661744117737, + -0.01437520980834961, + -0.031599558889865875, + -0.05858869105577469, + 0.038152582943439484, + 0.01222540345042944, + 0.027558960020542145, + -0.03755685314536095, + -0.12567299604415894, + -0.017017139121890068, + -0.04149384796619415, + 0.033257242292165756, + -0.026263896375894547, + -0.08288408815860748, + 0.0011469409801065922, + -0.09220854938030243, + 0.06553023308515549, + 0.07609795778989792, + -0.032894622534513474, + -0.03592507168650627, + -0.013960788957774639, + 0.01989218220114708, + 0.0021595191210508347, + 0.04268530756235123, + 0.11220433562994003, + -0.024722769856452942, + 0.02740355208516121, + 0.02880222164094448, + 0.012847034260630608, + -0.02053971402347088, + -0.10142941027879715, + -0.06112701818346977, + -0.04271120950579643, + 0.04408397525548935, + -0.010885012336075306, + 0.06780954450368881, + -0.011700902134180069, + -0.004011460579931736, + -0.013947838917374611, + -0.032816920429468155, + 0.009829535149037838, + 0.020902331918478012, + 0.010651900433003902, + -0.025616364553570747, + 0.029527457430958748, + -0.03810077905654907, + -0.007647352293133736, + -0.01266572531312704, + -0.051491741091012955, + 0.08272868394851685, + 0.019037440419197083, + 0.07972413301467896, + -0.11220433562994003, + -0.06439057737588882, + -0.02336295321583748, + -0.058485087007284164, + -0.04408397525548935, + -0.03382707014679909, + 0.09044726192951202, + 0.03978436440229416, + 0.010069121606647968, + 0.02324639819562435, + -0.017962535843253136, + -0.03413788601756096, + 0.013896035961806774, + 0.030174989253282547, + -0.012853509746491909, + 0.014582419767975807, + -0.08324670791625977, + 0.01780712977051735, + -0.014478814788162708, + 0.021342653781175613, + 0.07754842936992645, + -0.003464295994490385, + -0.03087432309985161, + 0.002828095806762576, + -0.025616364553570747, + 0.006585400085896254, + -0.11914587765932083, + -0.026859626173973083, + -0.0434364452958107, + -0.023427706211805344, + -0.04346234351396561, + 0.01309957168996334, + -0.0351739376783371, + 0.06894920021295547, + 0.04361775144934654, + -0.027377652004361153, + 0.01233548391610384, + -0.010004368610680103, + 0.025953080505132675, + -0.045974768698215485, + 0.01060009840875864, + -0.022987384349107742, + -0.06371714174747467, + -0.07071048766374588, + -0.041027624160051346, + -0.013190225698053837, + 0.019477762281894684, + -0.058536890894174576, + -0.004004985094070435, + -0.01697828806936741, + 0.06760233640670776, + 0.03926633670926094, + -0.08329851180315018, + -0.05105141922831535, + -0.0738186463713646, + -0.0009599661570973694, + 0.059831954538822174, + 0.06314731389284134, + 0.038774214684963226, + 0.04848719388246536, + 0.032428402453660965, + 0.0651676133275032, + -0.031107435002923012, + 0.002669450594112277, + -0.03165136277675629, + 0.010477066971361637, + -0.02810288779437542, + -0.00812005065381527, + 0.023738522082567215, + 0.02470981888473034, + -2.4535391276003793e-05, + 0.04486101493239403, + -0.030123187229037285, + -0.016006989404559135, + 0.09661176800727844, + 0.02880222164094448, + 0.023220496252179146, + 0.03040810115635395, + -0.013177275657653809, + -0.05115502327680588, + 0.03053760714828968, + -0.029786469414830208, + 0.1021028384566307, + -0.033205438405275345, + -0.02363491617143154, + 0.08733911067247391, + -0.040768612176179886, + 0.03470771387219429, + 0.0746992900967598, + 0.04486101493239403, + -0.04659640043973923, + -0.0007770383381284773, + -0.012827607803046703, + -0.00021307848510332406, + -0.021653469651937485, + -0.07625336199998856, + -0.03936994448304176, + 0.008165378123521805, + 0.05408186838030815, + 0.047062624245882034, + 0.00845029205083847, + -0.04330693930387497, + 0.0023375903256237507, + 0.029915977269411087, + -0.03118513897061348, + 0.033775266259908676, + 0.015553717501461506, + -0.004027648828923702, + -0.059313926845788956, + 0.008728730492293835, + 0.027610762044787407, + 0.045715756714344025, + -0.005759796593338251, + -0.004668705631047487, + -0.037246037274599075, + 0.11023584008216858, + 0.044809211045503616, + -0.05268320068717003, + 0.020099392160773277, + 0.010613048449158669, + -0.0014682787004858255, + 0.05413367226719856, + -0.04685541242361069, + -0.01802729070186615, + 0.04252989962697029, + -0.0022517924662679434, + -0.008910039439797401, + 0.00036180848837830126, + 0.06133422628045082, + 0.08910039812326431, + -0.06931181997060776, + -0.008728730492293835, + -0.010580671951174736, + -0.05131043121218681, + -0.021562814712524414, + -0.017392707988619804, + -0.008281934075057507, + -0.014362258836627007, + -0.010956240817904472, + -0.018752526491880417, + -0.06755053251981735, + 0.034293293952941895, + -0.02976056933403015, + -0.050067171454429626, + -0.03592507168650627, + 0.01289883628487587, + 0.08853057026863098, + 0.006922116503119469, + -0.047502946108579636, + 0.03452640399336815, + -0.04260760173201561, + 0.06086800619959831, + -0.00448415894061327, + 0.04594886675477028, + -0.032998230308294296, + 0.001575121539644897, + -0.05164714902639389, + 0.008061773143708706, + -0.035122133791446686, + 0.1029316782951355, + -0.01972382329404354, + 0.0538746602833271, + -0.02002168819308281, + 0.01985332928597927, + -0.05216517671942711, + 0.024308349937200546, + -0.05485890805721283, + 0.07361143082380295, + -0.03843749687075615, + 0.02823239378631115, + 0.03167726472020149, + -0.05946933478116989, + 0.038333892822265625, + -0.017690572887659073, + 0.07387044280767441, + -0.05827787518501282, + -0.03926633670926094, + 0.12577660381793976, + -0.033127736300230026, + 0.0022323664743453264, + -0.03631359338760376, + 0.021213147789239883, + 0.019400058314204216, + -0.044679705053567886, + 0.01504864264279604, + 0.00448415894061327, + 0.012976540252566338, + 0.03279101848602295, + -0.005312999710440636, + 0.05651659145951271, + -0.019231699407100677, + -0.042892515659332275, + 0.05408186838030815, + -0.05203566700220108, + -0.011370661668479443, + -0.017043041065335274, + 0.00491800531744957, + -0.03838569298386574, + 0.08749452233314514, + 0.018739575520157814, + -0.08474898338317871, + -0.00606089923530817, + -0.0024719531647861004, + -0.012270730920135975, + 0.04004337638616562, + 0.001877842703834176, + 0.033645760267972946, + -0.015359458513557911, + 0.030382199212908745, + 0.019128093495965004, + -0.02098003588616848, + 0.025732919573783875, + 0.02544800564646721, + 0.0586404949426651, + -0.0881679505109787, + -0.0009810109622776508, + -0.1025172621011734, + -0.026289798319339752, + -0.022883780300617218, + 0.007401290349662304, + 0.06444238126277924, + -0.04752884432673454, + -0.00502808578312397, + 0.042115479707717896, + -0.05164714902639389, + 0.05568774789571762, + -0.10215464234352112, + -0.027999281883239746, + -0.0014075726503506303, + -0.02719634212553501, + 0.08930760622024536, + -0.14411471784114838, + -0.022171493619680405, + -0.009395688772201538, + -0.060608990490436554, + -0.024748671799898148, + -0.07190194725990295, + -0.033464450389146805, + 0.00616774195805192, + 0.05423727631568909, + -0.0038884293753653765, + 0.055221524089574814, + -0.020267751067876816, + -0.007589074783027172, + 0.023427706211805344, + -0.019529564306139946, + 0.03356805816292763, + 0.0538746602833271, + 0.06464958935976028, + -0.09785503149032593, + -0.040457796305418015, + -0.06827577203512192, + 0.029242543503642082, + 0.012348434887826443, + 0.013378010131418705, + -0.04633738845586777, + -0.006410566624253988, + -0.06294010579586029, + -0.03273921459913254, + 0.027610762044787407, + -0.009143151342868805, + 0.025344401597976685, + -0.018467610701918602, + 0.03584736958146095, + -0.006264871917665005, + -0.05291631072759628, + 0.04631148651242256, + 0.07614976167678833, + 0.0059378682635724545, + 0.037634558975696564, + -0.0477878600358963, + -0.019037440419197083, + 0.028051083907485008, + -0.017004190012812614, + 0.03631359338760376, + -0.01693943701684475, + -0.09277837723493576, + -0.003538762219250202, + 0.043980371206998825, + 0.04234858974814415, + -0.05786345526576042, + -0.0786362811923027, + -0.040250588208436966, + -0.04812457412481308, + -0.03139235079288483, + -0.0417010597884655, + 0.027222244068980217, + -0.06920821964740753, + 0.03957715258002281, + -0.01841580867767334, + 0.008236606605350971, + -0.07801464945077896, + -0.007103425450623035, + -0.006870314013212919, + 0.03372346609830856, + -0.01181745808571577, + 0.07987954467535019, + 0.02727404609322548, + 0.018571216613054276, + 0.007537271827459335, + -0.024554412811994553, + 0.05967654660344124, + 0.05651659145951271, + -0.03385297209024429, + 0.030900225043296814, + -0.043721359223127365, + -0.06262928992509842, + -0.0054101296700537205, + -0.019361205399036407, + 0.0716429352760315, + 0.028957629576325417, + 0.011571396142244339, + 0.0003555355069693178, + 0.027817973867058754, + 0.011493692174553871, + 0.022119691595435143, + -0.0347595140337944 + ] + }, + { + "id": "6346e10d-d800-4245-a82a-8642774712e8", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "customerRating", + "userName": "johntaylor", + "reviewDate": "2021-08-06T06:48:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6637e35f-185e-4c7d-9dbe-2185e35b4951", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "customerRating", + "userName": "pperez", + "reviewDate": "2022-07-22T13:44:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "937f66a2-69e9-477b-9c91-0b9433626a70", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "customerRating", + "userName": "stacy35", + "reviewDate": "2021-11-13T17:25:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bbfa24b3-dc6c-470b-84a1-e6e6dcead19b", + "productId": "56e4a4f9-21a3-4e43-858e-69f286211dfe", + "category": "Accessory", + "docType": "customerRating", + "userName": "monique20", + "reviewDate": "2022-07-14T14:25:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "product", + "name": "Basic Speaker 3000 (Steel)", + "description": "This Basic Speaker 3000 (Steel) is the simplest, most advanced Speaker from the popular PC Game Master Professional Collection. It features 2 unique acoustic effects as well as 4 separate voice commands that make it the perfect choice for the roleplaying game enthusiast or soloist.\n\nSpeech\n\nThe sound of different voice commands results in a unique sound signature that is as important as listening to music in the field. With this Speaker, you", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-06-28T07:43:08", + "price": 132.31, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-01-15T06:19:24", + "newPrice": 141.96 + }, + { + "priceDate": "2021-07-12T06:19:24", + "newPrice": 138.72 + }, + { + "priceDate": "2022-01-06T06:19:24", + "newPrice": 133.93 + }, + { + "priceDate": "2022-07-03T06:19:24", + "newPrice": 125.37 + }, + { + "priceDate": "2022-12-28T06:19:24", + "newPrice": 139.83 + }, + { + "priceDate": "2023-07-12T06:19:24", + "newPrice": 132.31 + } + ], + "descriptionVector": [ + 0.01732366345822811, + -0.017466481775045395, + -0.052442289888858795, + -0.013817514292895794, + -0.027992071583867073, + 0.016795242205262184, + -0.03147679939866066, + 0.04001723602414131, + 0.014481612481176853, + 0.0944875180721283, + 0.012110855430364609, + -0.021079743281006813, + 0.029991503804922104, + -0.06398187577724457, + -0.014810090884566307, + -0.029734434559941292, + -0.02193664386868477, + -0.02465016022324562, + 0.007754946127533913, + -0.053270623087882996, + 0.0038524800911545753, + -0.009968604892492294, + -0.08294793218374252, + -0.010568435303866863, + -0.02814916893839836, + 0.012682122178375721, + 0.044901568442583084, + 0.0006672217277809978, + -0.0014852936146780849, + 0.018837520852684975, + 0.020836954936385155, + 0.030077194795012474, + -0.042073797434568405, + 0.020822674036026, + -0.044530242681503296, + -0.011782377026975155, + -0.04130258783698082, + -0.061182670295238495, + 0.07557859271764755, + -0.012689262628555298, + -0.011339644901454449, + -0.010732674039900303, + 0.0026278269942849874, + -0.08843209594488144, + 0.017537890002131462, + 0.041445404291152954, + -0.008504733443260193, + 0.052013836801052094, + -0.031448233872652054, + -0.014995751902461052, + 0.05432746931910515, + 0.008783225901424885, + -0.0151956956833601, + 0.07197961211204529, + 0.038874704390764236, + -0.023050613701343536, + 0.05844058841466904, + 0.0807771161198616, + 0.012824938632547855, + -0.05041429027915001, + 0.1049417033791542, + -0.05301355570554733, + -0.07820641994476318, + -0.015267103910446167, + -0.036532510071992874, + -0.044901568442583084, + -0.009254521690309048, + 0.07163684815168381, + -0.040074363350868225, + 0.01209657359868288, + 0.0023529049940407276, + -0.014624428935348988, + -0.04241655766963959, + 0.09505879133939743, + 0.06883764266967773, + 0.006091131828725338, + 0.03159105032682419, + 0.05958312377333641, + 0.007187250070273876, + -0.08009159564971924, + 0.023093458265066147, + 0.09003163874149323, + -0.03084840439260006, + -0.02123684249818325, + 0.06958029419183731, + -0.05224234610795975, + -0.07363628596067429, + -0.1007714569568634, + 0.0027813550550490618, + 0.07820641994476318, + -0.021536756306886673, + 0.05604127049446106, + 0.09425901621580124, + -0.005002154503017664, + 0.00628750491887331, + 0.007533580530434847, + -0.12305086106061935, + -0.0040881275199353695, + -0.03484727069735527, + -0.01969442144036293, + 0.11813796311616898, + -0.05884047597646713, + -0.08129125833511353, + -0.0766068696975708, + 0.013796092011034489, + 0.016966622322797775, + -0.03002006746828556, + 0.07729239016771317, + 0.01478152722120285, + -0.014210260473191738, + -0.02689238265156746, + 0.010368491522967815, + 0.09083141386508942, + -0.025492778047919273, + 0.07614985853433609, + 0.02147963084280491, + -0.05769794061779976, + -0.032619331032037735, + -0.018966056406497955, + -0.02839195728302002, + -0.028634745627641678, + 0.01952304132282734, + -0.004084557294845581, + -0.036875270307064056, + -0.011625278741121292, + -0.04775790125131607, + 0.03319059684872627, + 0.02293636091053486, + 0.0016298954142257571, + 0.028249140828847885, + -0.04858623817563057, + 0.09688684344291687, + -0.019594449549913406, + 0.08300505578517914, + 0.002333267591893673, + 0.08437609672546387, + -0.046900998800992966, + -0.00924023985862732, + -0.044073231518268585, + 0.055641382932662964, + -0.06301072239875793, + 0.05269935727119446, + 0.0041381134651601315, + 0.056726787239313126, + -0.057440873235464096, + -0.034361694008111954, + -0.08540438115596771, + 0.04095982760190964, + 0.029163168743252754, + -0.008583283051848412, + -0.02065129391849041, + -0.06175393611192703, + 0.0006953387637622654, + -0.019166000187397003, + -0.0028438372537493706, + -0.008947465568780899, + -0.07397904247045517, + -0.002360045677050948, + -0.013010600581765175, + 0.061011288315057755, + 0.0069694542326033115, + -0.0012184048537164927, + -0.06289646774530411, + 0.02093692682683468, + 0.0022136587649583817, + 0.062096696346998215, + 0.04101695120334625, + 0.07460743933916092, + -0.08020585030317307, + 0.029820123687386513, + -0.042730752378702164, + 0.004373760893940926, + 0.026335397735238075, + 0.013403345830738544, + 0.004666535183787346, + -0.06963741779327393, + 0.0649530291557312, + 0.001676310901530087, + -0.023450499400496483, + 0.024821540340781212, + -0.0016709552146494389, + 0.06683821231126785, + -0.03593267872929573, + -0.018380507826805115, + 0.09545867145061493, + 0.09671546518802643, + 0.06900902092456818, + -0.025949792936444283, + -0.06021151691675186, + 0.0428735688328743, + 0.01590977981686592, + 0.024621596559882164, + 0.02493579313158989, + 0.003820346435531974, + -0.017052313312888145, + -0.0028438372537493706, + -0.012360784225165844, + 0.024907231330871582, + 0.01715228520333767, + -0.023007769137620926, + -0.034790147095918655, + 0.05969737470149994, + 0.09728673100471497, + 0.015452765859663486, + -0.03896039351820946, + -0.047729335725307465, + -0.05441315844655037, + 0.07832067459821701, + 0.008483311161398888, + 0.007555002812296152, + 0.02073698304593563, + -0.06735234707593918, + -0.039902981370687485, + -0.028077760711312294, + 0.058097828179597855, + 0.012832079082727432, + -0.008404762484133244, + 0.0013862145133316517, + 0.029363110661506653, + -0.034875836223363876, + 0.012317939661443233, + -0.02406461164355278, + 0.01819484680891037, + -0.002615330507978797, + -0.10751240700483322, + 0.03219088166952133, + 0.05941174179315567, + -0.04255937412381172, + 0.024407371878623962, + 0.03419031575322151, + -0.057440873235464096, + 0.09711534529924393, + 0.04718663543462753, + 0.019380224868655205, + -0.00964012648910284, + 0.03156248852610588, + 0.024792976677417755, + -0.02939167432487011, + -0.06346773356199265, + 0.05229946970939636, + -0.033619049936532974, + -0.014467330649495125, + 0.006733806803822517, + -0.001511179143562913, + 0.011203968897461891, + 0.009911478497087955, + 0.09483028203248978, + -0.10899769514799118, + -0.031790994107723236, + -0.06466739624738693, + -0.12430764734745026, + 0.008626127615571022, + -0.005116407759487629, + 0.02677812986075878, + -0.02032281458377838, + 0.049814462661743164, + 0.037160903215408325, + -0.07546433806419373, + 0.005509153939783573, + -0.057269491255283356, + -0.03804636746644974, + 0.012417911551892757, + -0.008961747400462627, + 0.03227657079696655, + -0.06815212219953537, + -0.06580992788076401, + 0.02385038696229458, + -0.05429890379309654, + 0.02310774102807045, + 0.03764647990465164, + -0.008733240887522697, + -0.007512157782912254, + -0.015681272372603416, + 0.008447607047855854, + -0.0034579490311443806, + 0.04938600957393646, + -0.026035482063889503, + 0.04984302446246147, + -0.013524740003049374, + -0.05824064463376999, + 0.05552712827920914, + 0.01760929822921753, + 0.0408170111477375, + -0.03738940879702568, + -0.036332566291093826, + -0.0003037086280528456, + 0.03767504170536995, + 0.02165100909769535, + -0.058897603303194046, + -0.028920380398631096, + -0.011353926733136177, + 0.047986406832933426, + -0.01361757144331932, + 0.03813205659389496, + 0.05229946970939636, + 0.06066852807998657, + 0.022265121340751648, + -0.05906898155808449, + 0.050185784697532654, + 0.014388781040906906, + -0.012610713951289654, + -0.0183233805000782, + -0.054098960012197495, + -0.08529012650251389, + -0.015367075800895691, + 0.06523866206407547, + 0.01163956057280302, + 0.06769511103630066, + -0.06706671416759491, + -0.05267079547047615, + 0.04315920174121857, + -0.017809242010116577, + -0.025592749938368797, + -0.02389323152601719, + 0.057640817016363144, + 0.013560445047914982, + 0.05666966363787651, + 0.00552700599655509, + 0.03918889909982681, + 0.03301921859383583, + -0.026263989508152008, + -0.03941740468144417, + -0.039531659334897995, + 0.0320480652153492, + 0.028520492836833, + 0.02602120116353035, + 0.04113120585680008, + -0.054184652864933014, + 0.031419672071933746, + 0.004455880727618933, + 0.023464782163500786, + -0.046900998800992966, + 0.000188785808859393, + 0.01128251850605011, + 0.06306785345077515, + -0.036875270307064056, + 0.001813771901652217, + -0.029905814677476883, + 0.0010041798232123256, + -0.058183517307043076, + 0.06683821231126785, + 0.03958878666162491, + -0.0016459623584523797, + -0.007383622694760561, + -0.027320832014083862, + -0.0457870289683342, + -0.020679855719208717, + 0.0013960330979898572, + 0.010704110376536846, + -0.030819840729236603, + 0.0018976767314597964, + -0.03387611731886864, + 0.0041631064377725124, + -0.07249375432729721, + 0.04493013024330139, + -0.05844058841466904, + 0.03604693338274956, + -0.03918889909982681, + 0.018466196954250336, + 0.05575563386082649, + -0.037532225251197815, + -0.01284636091440916, + 0.017038030549883842, + 0.021508192643523216, + -0.021051179617643356, + 0.010232815518975258, + 0.008426184765994549, + -0.005616266280412674, + 0.009904337115585804, + 0.007462171837687492, + -0.007497875951230526, + -0.056526847183704376, + -0.034618765115737915, + 0.014210260473191738, + 0.003041995456442237, + 0.007476453669369221, + 0.0091616902500391, + -0.054184652864933014, + -0.06529579311609268, + 0.014010317623615265, + 0.06198244169354439, + 0.0640961304306984, + 0.07060857117176056, + -0.029248857870697975, + 0.04395897686481476, + 0.029734434559941292, + -0.03650394454598427, + -0.039617348462343216, + -0.0094758877530694, + 0.04201667010784149, + 0.005030717700719833, + 0.0133247971534729, + -0.10322790592908859, + 0.10414192825555801, + -0.022679289802908897, + 0.0072729396633803844, + -0.025164300575852394, + 0.0018476909026503563, + 0.03473301976919174, + -0.005859054625034332, + -0.00015129642270039767, + 0.049900151789188385, + 0.032619331032037735, + 0.0053163510747253895, + -0.033790428191423416, + -0.04118833318352699, + -0.0033151323441416025, + 0.031705304980278015, + -0.036075495183467865, + 0.0038774730637669563, + 0.01923740841448307, + -0.06763798743486404, + -0.043644778430461884, + -0.006787362974137068, + -0.026006918400526047, + -0.018437635153532028, + -0.01582408882677555, + 0.035532791167497635, + 0.025592749938368797, + 0.018423352390527725, + 0.03536141291260719, + -0.0023475494235754013, + 0.035818424075841904, + 0.06295359879732132, + -0.015067161060869694, + -0.014638710767030716, + 0.022836389020085335, + -0.051985275000333786, + -0.003424030030146241, + -0.062096696346998215, + -0.048443421721458435, + -0.10648412257432938, + -0.0536990761756897, + 0.026621030643582344, + -0.0005467201117426157, + -0.055470000952482224, + -0.007604988757520914, + 0.03510434180498123, + -0.032248008996248245, + 0.03387611731886864, + 0.042188048362731934, + 0.004770077299326658, + 0.07249375432729721, + 0.020208561792969704, + -0.05552712827920914, + -0.07483594119548798, + -0.029334546998143196, + 0.02127968706190586, + 0.055812761187553406, + 0.09774374216794968, + -0.020008618012070656, + -0.03590411692857742, + -0.0720367357134819, + 0.05152826011180878, + 0.010361351072788239, + -0.010939758270978928, + -0.034533075988292694, + 0.04824347794055939, + -0.022493628785014153, + 0.05375620350241661, + -0.05884047597646713, + 0.017452199012041092, + 0.11065436899662018, + 0.05698385834693909, + -0.03244795277714729, + 0.030448518693447113, + -0.07323639839887619, + -0.024136019870638847, + 0.016595298424363136, + 0.0014495893847197294, + 0.02793494425714016, + -0.08437609672546387, + -0.0009872203227132559, + 0.03350479528307915, + 0.006958743091672659, + -0.11985176801681519, + -0.0055627101100981236, + -0.03876044973731041, + 0.004962880164384842, + 0.025050047785043716, + -0.024835823103785515, + -0.024907231330871582, + -0.04570133984088898, + 0.020365659147500992, + 0.028991788625717163, + -0.033704739063978195, + 0.037874985486269, + 0.0031508931424468756, + -0.0541275255382061, + 0.020251406356692314, + 0.014138852246105671, + 0.07746376842260361, + -0.007533580530434847, + 0.02339337393641472, + 0.03256220370531082, + 0.06112554296851158, + 0.00846902932971716, + -0.0035097200889140368, + 0.01069696992635727, + 0.10591285675764084, + -0.02439309097826481, + -0.0974009782075882, + 0.04047425091266632, + -0.0056769633665680885, + -0.026221144944429398, + 0.06466739624738693, + 0.020051462575793266, + -0.04692956432700157, + -0.01860901527106762, + 0.06158255785703659, + 0.013339078985154629, + -0.00918311346322298 + ] + }, + { + "id": "9ef54fae-dbef-4b35-9cdd-49caaed4ad87", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "douglasvaughn", + "reviewDate": "2021-01-15T06:19:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "25e865a4-2721-45cb-921b-5dfc2f600f6b", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "kennethrivera", + "reviewDate": "2021-12-17T05:35:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9286f7b5-665d-4c2a-ae2a-6354c1789c35", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "jessicavazquez", + "reviewDate": "2021-10-09T15:58:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "84b1b7f4-34a2-4372-a7cc-7a2a594abb23", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "dmcdaniel", + "reviewDate": "2021-05-15T15:53:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9590956b-6e15-44d6-8afb-4b111db421b3", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "phyllisjackson", + "reviewDate": "2022-07-15T08:53:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "046cea11-a658-417b-9c58-1350beb936cd", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "brady85", + "reviewDate": "2022-07-13T16:52:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dfbe6127-f098-42df-9b5f-de2f71afce1f", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonkevin", + "reviewDate": "2021-08-18T14:48:17", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1e724374-df7d-4ce5-8259-d57fd2b89523", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "kennethedwards", + "reviewDate": "2021-07-31T18:18:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "93b4ae11-7791-4d12-98ac-3bb4f31f5646", + "productId": "aefb74be-3641-41c6-a19d-d0fa717d3150", + "category": "Media", + "docType": "customerRating", + "userName": "kennedydavid", + "reviewDate": "2022-12-30T09:53:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "product", + "name": "Awesome TV Ultra (Steel)", + "description": "This Awesome TV Ultra (Steel) is a classic anime and manga series inspired by the television shows Tsubasa Tensei and Naruto Uchiha. It features high-", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-05-04T14:12:39", + "price": 219.35, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-02-25T20:27:35", + "newPrice": 209.01 + }, + { + "priceDate": "2021-06-30T20:27:35", + "newPrice": 204.47 + }, + { + "priceDate": "2021-11-02T20:27:35", + "newPrice": 234.53 + }, + { + "priceDate": "2022-03-07T20:27:35", + "newPrice": 197.66 + }, + { + "priceDate": "2022-07-10T20:27:35", + "newPrice": 217.87 + }, + { + "priceDate": "2023-06-21T20:27:35", + "newPrice": 219.35 + } + ], + "descriptionVector": [ + 0.005285623949021101, + -0.014719601720571518, + -0.03944040462374687, + 0.01802699640393257, + 0.048854630440473557, + -0.025104597210884094, + -0.04199150204658508, + -0.016740160062909126, + 0.014798617921769619, + 0.02973269298672676, + 0.03269015997648239, + -0.024653075262904167, + 0.06203905865550041, + -0.04300742596387863, + 0.08827245980501175, + -0.0321483351290226, + -0.000728078477550298, + 0.020657110959291458, + 0.007963711395859718, + -0.049667369574308395, + 0.07115979492664337, + 0.03354804962873459, + 0.040975578129291534, + -0.048493411391973495, + -0.03867281973361969, + 0.01821889355778694, + -0.058607496321201324, + 0.02200038731098175, + -0.03388668969273567, + -0.06474819034337997, + 0.005745611619204283, + 0.011762135662138462, + 0.08068689703941345, + 0.0666445791721344, + -0.020736126229166985, + 0.05490501970052719, + -0.038537364453077316, + 0.0750880315899849, + -0.01417777594178915, + -0.0750880315899849, + 0.03783750534057617, + -0.039395254105329514, + 0.016119318082928658, + 0.07287557423114777, + 0.03431563824415207, + -0.08551818132400513, + -0.003527512075379491, + -0.014719601720571518, + 0.04799674078822136, + 0.011637968011200428, + 0.0075065456330776215, + 0.02501429244875908, + 0.013985879719257355, + -0.025262629613280296, + -0.03740856051445007, + -0.008093523792922497, + 0.06091025471687317, + 0.08168024569749832, + 0.05418258532881737, + -0.03072603978216648, + -0.004478529095649719, + -0.002762747462838888, + 0.03476715832948685, + 0.03792781010270119, + 0.007314648944884539, + -0.05490501970052719, + 0.015204987488687038, + -0.006422893609851599, + 0.03497034311294556, + 0.020589381456375122, + 0.011028413660824299, + 0.05151860788464546, + 0.028513584285974503, + 0.040930427610874176, + -0.009143311530351639, + 0.03016163781285286, + 0.02519490197300911, + -0.013229580596089363, + 0.021853642538189888, + -0.0578850619494915, + 0.06556092947721481, + 0.08384755253791809, + -0.003301751334220171, + 0.012755483388900757, + 0.054408345371484756, + 0.05607897415757179, + -0.01042450312525034, + -0.0940970852971077, + -0.01515983510762453, + 0.07463651150465012, + -0.02245190739631653, + 0.06370969116687775, + 0.0054154363460838795, + -0.07079857587814331, + 0.018388213589787483, + 0.06583184003829956, + -0.02754281274974346, + 0.019505729898810387, + -0.03095180168747902, + 0.03013906255364418, + 0.1332891583442688, + -0.011282394640147686, + -0.027452509850263596, + -0.07811322808265686, + 0.03923721984028816, + -0.009188462980091572, + -0.010351130738854408, + 0.07910656929016113, + 0.013116700574755669, + -0.08217691630125046, + -0.08131902664899826, + -0.0022025785874575377, + 0.025488391518592834, + -0.0090247867628932, + 0.115770123898983, + 0.027926607057452202, + -0.07937748730182648, + -0.01515983510762453, + -0.021673033013939857, + -0.037385981529951096, + 0.02163917012512684, + 0.019291257485747337, + -0.06935370713472366, + 0.020171724259853363, + -0.056440193206071854, + -0.035173527896404266, + -0.04781613126397133, + 0.08953671902418137, + 0.09725774079561234, + 0.033615779131650925, + -0.05449865013360977, + -0.007201768457889557, + 0.05097678303718567, + 0.03831160068511963, + -0.03544444218277931, + 0.019302545115351677, + -0.026888107880949974, + 0.009837525896728039, + 0.04088527336716652, + 0.027271900326013565, + 0.008110455237329006, + 0.0488094761967659, + -0.01278934720903635, + -0.046506717801094055, + -0.04041117802262306, + 0.0027218281757086515, + -0.032983649522066116, + -0.01587098278105259, + 0.03993707895278931, + 0.03765689581632614, + 0.0733722522854805, + -0.07350770384073257, + -0.07702957093715668, + 0.020769990980625153, + 0.030297094956040382, + 0.09391647577285767, + -0.02281312644481659, + -0.04111103713512421, + -0.015317868441343307, + 0.07779715955257416, + 0.0013390436070039868, + -0.02481110766530037, + -0.03156135603785515, + -0.01536301989108324, + 0.022846989333629608, + -0.06691548973321915, + 0.019110649824142456, + 0.019279969856142998, + -0.07079857587814331, + 0.04038860276341438, + 0.08809185028076172, + 0.02715902030467987, + 0.01583711802959442, + 0.020126571878790855, + -0.013286021538078785, + -0.013793982565402985, + 0.06253573298454285, + 0.007551697548478842, + -0.02440473809838295, + -0.02104090340435505, + -0.05020919442176819, + 0.02180849015712738, + -0.0056722392328083515, + -0.0034230975434184074, + 0.014595434069633484, + 0.04147225245833397, + 0.05210558697581291, + 0.06971492618322372, + -0.088001549243927, + -0.031222714111208916, + -0.07969354838132858, + -0.06854096800088882, + -0.005375928245484829, + -0.05865264683961868, + -0.022180994972586632, + 0.052873171865940094, + -0.050299499183893204, + -0.04490381479263306, + -0.03056800737977028, + 0.04018541797995567, + -0.02044263668358326, + 0.01747388392686844, + 0.12398781627416611, + -0.0380181148648262, + -0.01536301989108324, + -0.0016029014950618148, + -0.03734083101153374, + 0.012653890997171402, + 0.03571535274386406, + 0.014708314090967178, + -0.06912794709205627, + -0.03151620179414749, + -0.018523670732975006, + 0.051247693598270416, + 0.07544925063848495, + 0.03013906255364418, + -0.036415211856365204, + -0.11008094996213913, + -0.05865264683961868, + 0.014335808344185352, + 0.05178951844573021, + 0.02001369185745716, + 0.0686764270067215, + 0.012868363410234451, + -0.010548671707510948, + -0.04002738371491432, + 0.010757500305771828, + 0.004450309090316296, + -0.00649062218144536, + 0.019584747031331062, + -0.0628066435456276, + -0.01082522887736559, + -0.005028821062296629, + -0.041381947696208954, + -0.01090424507856369, + -0.03266758471727371, + -0.03255470097064972, + -0.027858879417181015, + -0.026346281170845032, + 0.07278527319431305, + -0.023298511281609535, + -0.04219468683004379, + -0.04503927379846573, + -0.014538993127644062, + 0.08583424240350723, + -0.0020092709455639124, + 0.03508322313427925, + -0.039982233196496964, + -0.04088527336716652, + -0.048087041825056076, + 0.014437400735914707, + 0.031809691339731216, + 0.06221966817975044, + 0.061993908137083054, + 0.013297309167683125, + 0.03693446144461632, + -0.028649041429162025, + 0.019754067063331604, + 0.08876913040876389, + 0.01887360028922558, + -0.10836517065763474, + 0.013714966364204884, + -0.005813339725136757, + 0.05495017021894455, + 0.013737542554736137, + 0.03867281973361969, + 0.005353352054953575, + -0.05964599549770355, + 0.04160770773887634, + 0.03709249570965767, + 0.010238250717520714, + 0.0160741675645113, + -0.015825830399990082, + 0.05178951844573021, + -0.020544229075312614, + -0.0018625262891873717, + -0.004884898662567139, + 0.08226722478866577, + 0.010057642124593258, + 0.047725826501846313, + 0.08520211279392242, + 0.02257607690989971, + 0.02081514336168766, + -0.007879050448536873, + 0.09518074244260788, + -0.0663285106420517, + 0.02063453383743763, + 0.008968346752226353, + 0.07409468293190002, + -0.08804669976234436, + -0.018331773579120636, + -0.0476355217397213, + 0.02598506398499012, + -0.03792781010270119, + 0.0663285106420517, + 0.04070466756820679, + 0.0748622715473175, + -0.06790883839130402, + 0.02815236710011959, + -0.03808584064245224, + -0.004410800989717245, + 0.006411605980247259, + 0.008720009587705135, + -0.04704854264855385, + -0.018738143146038055, + 0.058381736278533936, + 0.03982419893145561, + 0.04607777297496796, + -0.018726855516433716, + -0.06488364189863205, + -0.030274519696831703, + 0.02318563126027584, + -0.06948916614055634, + -0.047500066459178925, + 0.036618396639823914, + -0.03555732220411301, + -0.015046955086290836, + 0.052241042256355286, + 0.023569423705339432, + 0.0321483351290226, + 0.016164470463991165, + -0.02297115884721279, + -0.05657564848661423, + 0.07653290033340454, + 0.04248817637562752, + -0.0072299884632229805, + -0.005590401124209166, + -0.01924610510468483, + 0.029981030151247978, + -0.03413502871990204, + -0.018557535484433174, + 0.07147585600614548, + -0.009989913552999496, + 0.08019022643566132, + 0.0341801792383194, + 0.005562181118875742, + 0.027678269892930984, + 0.02754281274974346, + 0.019923387095332146, + 0.015712948516011238, + 0.038808275014162064, + -0.024833684787154198, + 0.009386003948748112, + -0.014516416937112808, + -0.03544444218277931, + -0.05300862714648247, + -0.0027401712723076344, + -0.04011768847703934, + -0.015182411298155785, + 0.02873934619128704, + 0.0009474896942265332, + -0.011716984212398529, + -0.0029264239128679037, + -0.019302545115351677, + 0.035421863198280334, + 0.05589836463332176, + 0.018715567886829376, + -0.014064895920455456, + 0.039982233196496964, + 0.012134641408920288, + 0.009177175350487232, + 0.030184214934706688, + -0.036618396639823914, + 0.03074861690402031, + -0.005694815423339605, + 0.005443656351417303, + 0.06718640774488449, + 0.028491009026765823, + -0.04120134189724922, + 0.009837525896728039, + 0.03634748235344887, + -0.06145207956433296, + -0.07364316284656525, + 0.06786368787288666, + -0.016220910474658012, + 0.0069703636690974236, + 0.0166611447930336, + -0.029506932944059372, + -0.038763124495744705, + 0.09581287205219269, + -0.03036482259631157, + -0.021966522559523582, + 0.01567908562719822, + 0.04050148278474808, + 0.05675625801086426, + 0.01702236197888851, + -0.09039460867643356, + -0.04605519771575928, + -0.06808944791555405, + 0.010757500305771828, + -0.02179720252752304, + -0.06565123051404953, + 0.07084372639656067, + 0.05386652052402496, + 0.006355165503919125, + 0.033006224781274796, + 0.030003605410456657, + 0.08068689703941345, + -0.027610542252659798, + 0.015442036092281342, + 0.046913087368011475, + 0.04844826087355614, + 0.05806566774845123, + -0.03846963495016098, + -0.03072603978216648, + 0.0013235225342214108, + -0.04386531561613083, + 0.020747413858771324, + 0.018376925960183144, + -0.016796601936221123, + -0.028242671862244606, + -0.01139527466148138, + 0.003101388458162546, + 0.003606528276577592, + 0.027520237490534782, + 0.0333222895860672, + 0.09942504018545151, + 0.038401905447244644, + 0.026323705911636353, + -0.05178951844573021, + 0.07088888436555862, + 0.07477196305990219, + 0.04020799323916435, + -0.07093403488397598, + -0.010717992670834064, + 0.03788265585899353, + -0.020826430991292, + 0.010565604083240032, + -0.042917121201753616, + -0.09143310785293579, + 0.03052285499870777, + -0.0742301419377327, + -0.010294690728187561, + 0.041539981961250305, + -0.030297094956040382, + -0.036979611963033676, + 0.05359560623764992, + 0.008917550556361675, + -0.0030844565480947495, + -0.03648294135928154, + 0.002651277929544449, + 0.01563393324613571, + 0.003874619258567691, + -0.021131208166480064, + -0.03883085027337074, + -0.04506184905767441, + 0.024901412427425385, + -0.04862887039780617, + -0.005765365436673164, + 0.033028800040483475, + -0.026459161192178726, + -0.032238636165857315, + -0.03287076950073242, + -0.0039000173565000296, + -0.006778466980904341, + 0.010661552660167217, + 0.0014434579061344266, + 0.05594351887702942, + -0.03928237408399582, + 0.01961860992014408, + -0.004360004793852568, + 0.1356370747089386, + 0.01981050707399845, + -0.03526383265852928, + -0.032825615257024765, + -0.02384033612906933, + 0.0022886497899889946, + 0.01861397549510002, + -0.02478853240609169, + 0.038605090230703354, + -0.009261835366487503, + -0.04508442431688309, + -0.031809691339731216, + 0.05260225757956505, + 0.028062064200639725, + -0.022959869354963303, + 0.047500066459178925, + -0.07147585600614548, + -0.03472200781106949, + 0.050841324031353, + 0.07684896886348724, + 0.00041836293530650437, + 0.03971131891012192, + 0.0004084858810529113, + -0.042330142110586166, + 0.0014004223048686981, + 0.013229580596089363, + 0.11026155948638916, + -0.07441075146198273, + -0.0019189665326848626, + 0.055221084505319595, + -0.024946564808487892, + -0.11829864233732224, + -0.040772393345832825, + -0.035828232765197754, + 0.006394673604518175, + 0.004752264358103275, + -0.026143096387386322, + -0.04163028672337532, + 0.005562181118875742, + -0.0384470596909523, + 0.06831520795822144, + -0.07012129575014114, + 0.07359801232814789, + 0.06181329861283302, + 0.04379758983850479, + 0.022147132083773613, + 0.04104330763220787, + 0.010565604083240032, + 0.028445856645703316, + 0.03485746309161186, + 0.061768144369125366 + ] + }, + { + "id": "91d6e056-1d7d-49dd-84be-726970eb4f41", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "customerRating", + "userName": "kathryn17", + "reviewDate": "2022-07-14T14:57:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b98188d4-1865-4cb5-b55c-2b47ef3037e9", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "customerRating", + "userName": "josephayers", + "reviewDate": "2022-02-04T08:59:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "84ec80cf-543e-4d54-ac96-d57d411006c6", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "customerRating", + "userName": "zblair", + "reviewDate": "2021-02-25T20:27:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2a27b28e-f21f-4758-8c33-6b62b965d9d6", + "productId": "8ee7a33a-e42c-4fb0-bdab-243073618885", + "category": "Media", + "docType": "customerRating", + "userName": "melissa31", + "reviewDate": "2021-08-14T04:50:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone 3000 (Steel)", + "description": "This Amazing Phone 3000 (Steel) is the best phone for both new and old PC use. It even has a USB port. This amazing phone 3000 (steel) is the best phone for both new and old PC use. It even has a USB port. https://www.amazon.com/100-smartphone-100-3gb-2pcs-1.html\n\nUSB 2.0\n\nUSB 2.0 does not do any of the things Google does on", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-06-30T01:26:55", + "price": 259.37, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-06-02T14:10:20", + "newPrice": 251.56 + }, + { + "priceDate": "2025-02-07T14:10:20", + "newPrice": 259.37 + } + ], + "descriptionVector": [ + -0.051544155925512314, + 0.07317595183849335, + -0.0198640376329422, + 0.051218513399362564, + 0.03319201618432999, + 0.014339788816869259, + -0.06629099696874619, + 0.03370373696088791, + 0.07196643203496933, + 0.08648066967725754, + 0.05396319553256035, + -0.05963863432407379, + 0.02402757853269577, + -0.017665967345237732, + 0.014095558784902096, + 0.0030848572496324778, + -0.047496914863586426, + -0.04307751730084419, + -0.0030441521666944027, + 0.02502775751054287, + 0.04761321470141411, + -0.07964222878217697, + -0.05712655559182167, + -0.06610491126775742, + -0.013746658340096474, + -0.03237791731953621, + -0.00582372210919857, + -0.010426294058561325, + -0.016375038772821426, + -0.03579713776707649, + 0.005626012105494738, + -0.020945627242326736, + -0.02178298868238926, + -0.05382363498210907, + -0.003651819657534361, + -0.005233499687165022, + -0.02509753778576851, + -0.08522462844848633, + 0.005940021947026253, + -0.017514778301119804, + 0.013618729077279568, + -0.008396859280765057, + 0.03482021763920784, + -0.010996163822710514, + 0.02574881725013256, + 0.02893543802201748, + -0.03758815675973892, + 0.026516396552324295, + 0.012292908504605293, + 0.01228127907961607, + 0.029703017324209213, + -0.000596764322835952, + -0.05633571371436119, + 0.03281985595822334, + 0.06019687280058861, + 0.020212937146425247, + 0.06787267327308655, + 0.05456795543432236, + 0.1125783920288086, + -0.048566874116659164, + 0.07164078950881958, + 0.0007537693018093705, + 0.00034144948585890234, + -0.03805335611104965, + -0.018456807360053062, + -0.007332714274525642, + -0.052939753979444504, + 0.06331371515989304, + -0.005937114357948303, + 0.021806247532367706, + -0.0496368333697319, + 0.03237791731953621, + 0.01687512919306755, + 0.05614963546395302, + -0.012455728836357594, + -0.038960497826337814, + 0.03944895789027214, + 0.08662023395299911, + 0.060475993901491165, + -0.06889611482620239, + 0.021294528618454933, + 0.015991248190402985, + -0.006762844510376453, + -0.011903303675353527, + 0.03495977818965912, + 0.03409915789961815, + 0.005157904699444771, + -0.08894623070955276, + 0.0201896782964468, + 0.10039015114307404, + 0.04847383499145508, + 0.07131515443325043, + -0.01661926880478859, + -0.031819675117731094, + 0.041728436946868896, + 0.04400791600346565, + -0.04782255366444588, + 0.010810083709657192, + -0.026493137702345848, + 0.0006443746387958527, + 0.09759894758462906, + 0.030610157176852226, + -0.037239257246255875, + -0.013269828632473946, + -0.009856424294412136, + 0.01138576865196228, + -0.036052998155355453, + 0.03470391780138016, + 0.06196463480591774, + -0.04354271665215492, + -0.01287440862506628, + 0.030703196302056313, + -0.0172123983502388, + 0.012967448681592941, + 0.043519455939531326, + 0.05549835413694382, + -0.045845456421375275, + -0.0721990317106247, + 0.052986275404691696, + 0.01734032854437828, + -0.03351765498518944, + 0.03549475595355034, + -0.07666495442390442, + 0.01918949745595455, + -0.032936155796051025, + -0.05284671485424042, + 0.022666867822408676, + 0.005751034244894981, + 0.017979977652430534, + -0.04954379424452782, + -0.1118340715765953, + 0.061127275228500366, + 0.08559679239988327, + 0.06508147716522217, + -0.0026051197201013565, + 0.051869794726371765, + -0.03149403631687164, + 0.041472576558589935, + -0.019503507763147354, + 0.04665955528616905, + 0.02753983810544014, + 0.046171095222234726, + -0.012292908504605293, + -0.01594472862780094, + -0.08843450993299484, + -0.031214917078614235, + -0.06480235606431961, + 0.04263557493686676, + -0.005184072069823742, + 0.03579713776707649, + -0.042658835649490356, + -0.10234399139881134, + -0.03984437510371208, + -0.13760614395141602, + 0.01636340841650963, + -0.09029531478881836, + -0.0397048145532608, + -0.07164078950881958, + -0.07452503591775894, + 0.04621761664748192, + -0.06773311644792557, + -0.03281985595822334, + 0.004777022171765566, + -0.049869436770677567, + 0.009083028882741928, + -0.024911457672715187, + 0.11881206929683685, + 0.03251747786998749, + -0.013048858381807804, + 0.024516036733984947, + -0.007495534140616655, + 0.021794617176055908, + 0.02038738876581192, + -0.07927007228136063, + 0.004157724790275097, + -0.019084827974438667, + 0.02430669777095318, + 0.030889276415109634, + 0.04349619522690773, + -0.05400971323251724, + 0.05870823562145233, + 0.007571129128336906, + -0.06503495573997498, + 0.030749717727303505, + 0.03456435725092888, + 0.08555027097463608, + -0.06694227457046509, + 0.00784443411976099, + -0.011176428757607937, + -0.024469517171382904, + -0.008001439273357391, + 0.0014602916780859232, + -0.04514765739440918, + 0.00021388294408097863, + 0.0569404736161232, + -0.028167856857180595, + 0.028377197682857513, + 0.05777783319354057, + -0.057963915169239044, + 0.02409735694527626, + -0.016770457848906517, + 0.039890896528959274, + 0.0999249517917633, + -0.008559679612517357, + 0.02693507820367813, + -0.04649673402309418, + -0.062057673931121826, + 0.0801074355840683, + 0.015246928669512272, + 0.023713568225502968, + 0.016642527654767036, + -0.06675619632005692, + -0.05489359423518181, + -0.014758468605577946, + 0.05726611614227295, + 0.031935978680849075, + 0.027958517894148827, + -0.008600383996963501, + -0.05740567296743393, + -0.04689215496182442, + -0.0070768543519079685, + -0.015863317996263504, + -0.02303902804851532, + 0.03633211553096771, + -0.03502955660223961, + -0.017782269045710564, + 0.04884599521756172, + 0.02693507820367813, + 0.04354271665215492, + 0.0005175349651835859, + 0.04149583727121353, + 0.014211858622729778, + -0.0034773696679621935, + -0.007158264517784119, + -0.057824354618787766, + 0.09294695407152176, + 0.013688508421182632, + -0.03819291666150093, + -0.0721525102853775, + 0.0641975924372673, + 0.06708183139562607, + -0.040611956268548965, + -0.021352678537368774, + -0.08722499012947083, + 0.025144057348370552, + -0.017130987718701363, + 0.008524789474904537, + -0.025632517412304878, + -0.07178035378456116, + -0.02158527821302414, + 0.033261798322200775, + -0.02528361789882183, + -0.053591035306453705, + -0.002526617143303156, + 0.029609976336359978, + 0.00021806247241329402, + -0.018898747861385345, + -0.07238510996103287, + 0.025632517412304878, + -0.04182147607207298, + -0.061127275228500366, + 0.02442299760878086, + -0.051404595375061035, + 0.07308291643857956, + -0.011077573522925377, + 0.06880307197570801, + 0.0575917549431324, + -0.06926827132701874, + 0.005527156870812178, + -0.01793345808982849, + 0.0026574546936899424, + -0.015433008782565594, + 0.020561838522553444, + 0.01952676847577095, + -0.008036329410970211, + -0.02000359818339348, + -0.08722499012947083, + 0.061592474579811096, + 0.013432648964226246, + -0.03542497754096985, + 0.051544155925512314, + -0.026493137702345848, + 0.05698699504137039, + 0.013514058664441109, + 0.012572028674185276, + -0.04065847769379616, + -0.03272681683301926, + -0.0002195162232965231, + 0.026469876989722252, + 0.025469698011875153, + 0.02528361789882183, + -0.020492058247327805, + 0.012548768892884254, + -0.017886938527226448, + -0.021201487630605698, + -0.03395959734916687, + 0.01781715825200081, + 0.042542535811662674, + 0.024609077721834183, + 0.08150303363800049, + 0.044333554804325104, + -0.05433535575866699, + -0.031098617240786552, + -0.04275187477469444, + 0.03407589718699455, + 0.050474196672439575, + 0.02642335742712021, + 0.012548768892884254, + 0.02481841668486595, + -0.015177148394286633, + 0.08810887485742569, + -0.08113086968660355, + -0.07005911320447922, + -0.0317731574177742, + 0.07968875020742416, + 0.00425367197021842, + 0.01000179909169674, + 0.006629099138081074, + 0.06796571612358093, + -0.009908759035170078, + 0.01727054826915264, + 0.009210959076881409, + -0.040611956268548965, + 0.06968695670366287, + 0.025772077962756157, + -0.027981776744127274, + 0.022480787709355354, + 0.007623464334756136, + -0.00016481889178976417, + -0.007187339477241039, + -0.007710689213126898, + -0.018887117505073547, + 0.04912511631846428, + -9.649264393374324e-05, + -0.011967268772423267, + -0.07452503591775894, + 0.0074141244404017925, + 0.07033823430538177, + 0.06894263625144958, + 0.08559679239988327, + 0.05638223513960838, + 0.06889611482620239, + -0.07959571480751038, + 0.041542354971170425, + 0.019945448264479637, + -0.034843478351831436, + -0.037564896047115326, + 0.012095198966562748, + 0.04019327461719513, + -0.0761067122220993, + 0.0016063936054706573, + -0.04314729571342468, + 0.04605479538440704, + -0.054707515984773636, + 0.019015047699213028, + 0.01647970825433731, + 0.006634914316236973, + -0.08085174858570099, + -0.04184473678469658, + -0.00425367197021842, + -0.04561285674571991, + 0.010240213945508003, + 0.04931119456887245, + 0.0642441138625145, + -0.0031197471544146538, + 0.029679756611585617, + 0.030331037938594818, + 0.04651999473571777, + -0.030237996950745583, + -0.09415647387504578, + -0.01927090808749199, + 0.012862778268754482, + -0.0051637194119393826, + -0.01056585367769003, + -0.11955638974905014, + 0.01925927773118019, + 0.0562891960144043, + -0.030935797840356827, + 0.030098436400294304, + -0.01872429810464382, + -0.03005191683769226, + -0.02972627617418766, + 0.01502595841884613, + -0.010635633952915668, + 0.07889791578054428, + -0.04403117671608925, + -0.009513339027762413, + 0.08787626773118973, + -0.03105209767818451, + 0.06536059081554413, + -0.04017001762986183, + 0.008373599499464035, + -0.03402937576174736, + 0.10820551216602325, + 0.05619615316390991, + -0.005469006951898336, + -0.017026318237185478, + -0.03198249638080597, + 0.013211678713560104, + -0.052800193428993225, + -0.02958671748638153, + 0.01622384786605835, + 0.022934358566999435, + -0.012525509111583233, + -0.012234758585691452, + -0.0004935480537824333, + 0.03305245563387871, + -0.05661483481526375, + -0.06871003657579422, + -0.00359076214954257, + -0.010135544463992119, + -0.0655466765165329, + -0.005364337004721165, + 0.017107728868722916, + 0.008559679612517357, + 0.041681915521621704, + 0.017956718802452087, + -0.005803369451314211, + 0.13332630693912506, + -0.030354296788573265, + 0.011676519177854061, + 0.032470956444740295, + 0.041146937757730484, + 0.003695432096719742, + -0.04600827395915985, + 0.037518374621868134, + 0.002709789667278528, + -0.01297907903790474, + -0.015398118644952774, + 0.010391403920948505, + 0.05275367572903633, + -0.004838079679757357, + 0.004396139644086361, + 0.10513518750667572, + -0.05647527426481247, + -0.08354990929365158, + -0.024655597284436226, + -0.03779749572277069, + -0.0155609380453825, + -0.029098257422447205, + -3.220964572392404e-05, + 0.053265396505594254, + -0.01360709872096777, + 0.0496368333697319, + -0.1409555822610855, + 0.012606918811798096, + -0.029958877712488174, + -0.017061207443475723, + 0.006867514457553625, + -0.04884599521756172, + -0.007600204087793827, + -0.02470211684703827, + -0.02164342813193798, + 0.0337735153734684, + 0.04572915658354759, + -0.018852228298783302, + -0.020364128053188324, + 0.0064023141749203205, + 0.03212205693125725, + -0.0015656886389479041, + -0.03147077560424805, + 0.031168397516012192, + 0.0023405372630804777, + -0.013630358502268791, + -0.019177868962287903, + -0.051544155925512314, + 0.008408489637076855, + -0.07429243624210358, + -0.012409208342432976, + 0.03495977818965912, + 0.0261442381888628, + 0.0158865787088871, + 0.03291289508342743, + 0.040611956268548965, + 0.022550567984580994, + -0.1019718274474144, + 0.022562198340892792, + 0.004442659672349691, + -0.010554224252700806, + -0.022794798016548157, + 0.014409568160772324, + 0.05568443611264229, + 0.0008242761832661927, + -0.03851855546236038, + 0.051404595375061035, + -0.033471137285232544, + -0.04149583727121353, + -0.006960554514080286, + -0.021434087306261063, + 0.002480097347870469, + 0.03463413566350937, + 0.04361249506473541, + -0.057359155267477036, + 0.01149043906480074, + -0.02826089784502983, + -0.041937775909900665, + -0.05354451388120651, + 0.05214891582727432, + -0.08731803297996521, + -0.029935616999864578, + 0.018898747861385345, + -0.05884779244661331, + -0.046636294573545456, + -0.024864938110113144, + -0.0003145551308989525, + 0.03277333825826645, + -0.017433367669582367, + 0.04289143532514572, + 0.018038127571344376, + -0.06075511500239372, + 0.042402975261211395, + -0.030005397275090218 + ] + }, + { + "id": "790f5ef2-c42f-4900-9b01-24d5cdfd586a", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "murphydana", + "reviewDate": "2021-12-20T15:44:23", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9b902eb6-c7ac-4570-8db3-3ca9edbaeb2b", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "ryan24", + "reviewDate": "2021-06-02T14:10:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f021caaf-2e9e-4208-b143-c1401e7750ed", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "lisaalexander", + "reviewDate": "2022-07-04T11:58:01", + "stars": 5, + "verifiedUser": false + }, + { + "id": "bddce0da-fc8c-472b-aace-728d79c68d8c", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "tinapham", + "reviewDate": "2022-08-30T19:12:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "406c4cce-522f-488f-b9f4-d105405c4c18", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "marshallelizabeth", + "reviewDate": "2022-01-22T20:34:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e08cf03c-c65d-4e16-ad01-19f96c81153b", + "productId": "a9c9d032-0a2a-483e-87a8-073757eb7d3e", + "category": "Electronics", + "docType": "customerRating", + "userName": "wsmith", + "reviewDate": "2022-03-28T05:40:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Pro (Black)", + "description": "This Luxe Speaker Pro (Black) is rated 4.9 out of 5 by 2.\n\nRated 5 out of 5 by Anonymous from My husband had used 3 speakers on a single day recently now these are the", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-09-01T19:01:23", + "price": 481.37, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-01-10T18:44:22", + "newPrice": 502.93 + }, + { + "priceDate": "2021-07-01T18:44:22", + "newPrice": 435.61 + }, + { + "priceDate": "2021-12-20T18:44:22", + "newPrice": 482.99 + }, + { + "priceDate": "2022-06-10T18:44:22", + "newPrice": 507.41 + }, + { + "priceDate": "2022-11-29T18:44:22", + "newPrice": 482.75 + }, + { + "priceDate": "2024-12-26T18:44:22", + "newPrice": 481.37 + } + ], + "descriptionVector": [ + -0.005207803100347519, + 0.04767388105392456, + -0.010409803129732609, + 0.00693406630307436, + -0.007502717897295952, + 0.005451510660350323, + -0.020506268367171288, + 0.04110537841916084, + 0.005599476397037506, + 0.09516208618879318, + 0.011941680684685707, + 0.019264519214630127, + -0.076083242893219, + -0.036324065178632736, + -0.001103938207961619, + -0.01839413493871689, + -0.00041524614789523184, + -0.021446283906698227, + 0.027480952441692352, + 0.004230070859193802, + 0.02601870708167553, + -0.13898305594921112, + -0.07589756697416306, + 0.013345901854336262, + 0.016722995787858963, + 0.01604989729821682, + -0.016711389645934105, + 0.08063245564699173, + 0.0610894151031971, + -0.014506415463984013, + 0.015156302601099014, + 0.06155361980199814, + -0.02703995816409588, + 0.04461012780666351, + -0.029801979660987854, + 0.0010821785544976592, + 0.08137518912553787, + -0.04597953334450722, + 0.005451510660350323, + 0.07780080288648605, + -0.017790667712688446, + -0.02687748521566391, + 0.0036527153570204973, + -0.06461737304925919, + 0.054636962711811066, + -0.032285477966070175, + 0.0023674468975514174, + 0.05138752609491348, + 0.0362776443362236, + 0.037345316261053085, + -0.003237831871956587, + 0.030521497130393982, + -0.1198578029870987, + -0.012220203876495361, + 0.023395946249365807, + -0.005570463370531797, + -0.0469079427421093, + 0.08416041731834412, + 0.008199025876820087, + -0.05825776234269142, + 0.02562413178384304, + -0.03144990652799606, + 0.006487268954515457, + -0.031983744353055954, + -0.04832376912236214, + 0.027921948581933975, + 0.0022746059112250805, + -0.040362648665905, + 0.02040182240307331, + 0.07102341204881668, + 0.0631319209933281, + 0.044378023594617844, + 0.04242836311459541, + 0.0481380894780159, + 0.09390872716903687, + -0.04089648649096489, + 0.02047145366668701, + 0.03240152820944786, + -0.05616883933544159, + 0.052548039704561234, + 0.06898090243339539, + 0.006603320129215717, + 0.01502864621579647, + 0.00020780439081136137, + 0.036324065178632736, + -0.025183137506246567, + -0.05524042993783951, + -0.11382313817739487, + 0.003095668973401189, + 0.06503515690565109, + -0.05988248065114021, + 0.05626168102025986, + -0.011814024299383163, + -0.01284688152372837, + 0.00026329144020564854, + -0.0338173545897007, + -0.00938274897634983, + 0.030196553096175194, + -0.05951111763715744, + -0.016920283436775208, + -0.028919989243149757, + -0.074737049639225, + -0.05556537210941315, + -0.02181764878332615, + 0.057839978486299515, + 0.06053236871957779, + 0.06011458486318588, + -0.07659386843442917, + 0.018022770062088966, + -0.09103065729141235, + 0.05593673512339592, + 0.004041487351059914, + -0.01499383058398962, + -0.06619567424058914, + -0.011344016529619694, + 0.013218245469033718, + -0.011169939301908016, + -0.06823817640542984, + 0.02601870708167553, + -0.016305210068821907, + 0.0022064256481826305, + 0.0026720815803855658, + -0.0006002029404044151, + 0.03920213505625725, + 0.04465654864907265, + -0.006667148321866989, + 0.07083772867918015, + 0.015191118232905865, + 0.03588306903839111, + -0.05213025212287903, + -0.05779355764389038, + 0.10175380110740662, + -0.012115757912397385, + -0.0055617596954107285, + -0.007282220292836428, + 0.05835060402750969, + 0.006661345716565847, + 0.012347860261797905, + 0.014193076640367508, + -0.01562050823122263, + 0.002059910912066698, + 0.011645750142633915, + 0.04479581117630005, + -0.010624498128890991, + 0.037345316261053085, + 0.0035656767431646585, + -0.019682304933667183, + 0.008993977680802345, + -0.00553274666890502, + 0.0632711797952652, + 0.04776672273874283, + -0.03161238133907318, + 0.015562482178211212, + -0.028177261352539062, + 0.019670698791742325, + 0.05022701248526573, + -0.03453687205910683, + 0.030753599479794502, + -0.041314270347356796, + 0.056586623191833496, + -0.036950740963220596, + -0.02555450052022934, + -0.009110028855502605, + 0.035093918442726135, + 0.013276271522045135, + 0.1090882420539856, + 0.037206053733825684, + 0.024208305403590202, + -0.1137302964925766, + 0.009841152466833591, + 0.019218098372220993, + -0.05431201681494713, + -0.04235873371362686, + -0.0020715161226689816, + -0.03312104567885399, + -0.03943423926830292, + 0.053940653800964355, + 0.04205700010061264, + 0.014587651006877422, + 0.07450494915246964, + 0.04266046732664108, + 0.07775438576936722, + -0.054961904883384705, + -0.06276055425405502, + 0.0636889636516571, + -0.051619626581668854, + 0.06619567424058914, + -0.025345608592033386, + -0.006829620338976383, + 0.04614200443029404, + -0.04447086527943611, + 0.029105670750141144, + -0.004279392305761576, + -0.003171102376654744, + -0.06944511085748672, + -0.048091668635606766, + 0.07204466313123703, + 0.06795965135097504, + 0.0010843545896932483, + -0.017198806628584862, + -0.05779355764389038, + 0.09103065729141235, + 0.06874880194664001, + -0.05240877717733383, + -0.036416903138160706, + -0.07348369807004929, + 0.07134835422039032, + 0.10435334593057632, + 0.011140926741063595, + -0.010856601409614086, + -0.037809520959854126, + 0.010937836952507496, + -0.01484296377748251, + 0.07557261735200882, + 0.03920213505625725, + 0.04484223201870918, + 0.006028865929692984, + 0.0007108143181540072, + -0.027202429249882698, + -0.10778846591711044, + 0.025043874979019165, + -0.03233189880847931, + 0.05867554619908333, + 0.017105964943766594, + -0.0831855833530426, + -0.0055153388530015945, + 0.026274019852280617, + -0.014378759078681469, + 0.07705807685852051, + -0.013647635467350483, + 0.07752228528261185, + 0.004058895166963339, + 0.04465654864907265, + 0.021678386256098747, + -0.02843257412314415, + -0.01367084588855505, + 0.0006023789173923433, + -0.011233767494559288, + -0.0158177949488163, + 0.056354522705078125, + -0.024904614314436913, + 0.02321026474237442, + -0.041871316730976105, + 0.017349673435091972, + -0.029337773099541664, + -0.04003770649433136, + 0.10713858157396317, + -0.007845069281756878, + -0.07979688793420792, + -0.014599256217479706, + -0.0808645635843277, + -0.02555450052022934, + -0.090009406208992, + 0.09010224789381027, + -0.015005435794591904, + -0.017628194764256477, + 0.07264813035726547, + -0.018057584762573242, + 0.015678534284234047, + -0.026297230273485184, + -0.04108216613531113, + -0.02001885324716568, + -0.0020076879300177097, + -0.013856527395546436, + -0.05407991632819176, + -0.012637988664209843, + 0.04003770649433136, + -0.025159927085042, + 0.022606797516345978, + -0.007682597264647484, + -0.060021743178367615, + -0.021550729870796204, + -0.0062319557182490826, + 0.07975047081708908, + -0.0020613616798073053, + 0.062203507870435715, + -0.07645460963249207, + -0.011895260773599148, + 0.00675998954102397, + 0.016490893438458443, + 0.08532093465328217, + 0.04182489588856697, + 0.01393776386976242, + -0.04516717419028282, + 0.05157320573925972, + -0.06851670145988464, + 0.04985564574599266, + 0.02314063347876072, + 0.013601214624941349, + -0.017512144520878792, + -0.04087327420711517, + 0.03316746652126312, + 0.058907650411129, + -0.008785084821283817, + 0.02810763008892536, + 0.05677230656147003, + 0.027063168585300446, + -0.006574307568371296, + 0.0032726472709327936, + 0.014436784200370312, + 0.057515036314725876, + 0.07088414579629898, + -0.042335521429777145, + -0.06698482483625412, + -0.0028853260446339846, + 0.023720890283584595, + -0.028873568400740623, + 0.020970473065972328, + -0.08490314334630966, + -0.024649301543831825, + 0.06638135761022568, + -0.007966923527419567, + -0.05096973851323128, + -0.0613679401576519, + 0.08555303514003754, + 0.0044563706032931805, + -0.02648291178047657, + 0.01573655940592289, + 0.027248850092291832, + 0.04423876479268074, + -0.08666712790727615, + -0.04129106178879738, + -0.08592440187931061, + 0.07195182144641876, + -0.0012584314681589603, + 0.02305939793586731, + 0.03604554012417793, + -0.057979241013526917, + 0.0014071222394704819, + 0.003548269160091877, + 0.0019061429193243384, + -0.04261404648423195, + 0.012336255051195621, + -0.03864508867263794, + 0.01790671795606613, + 0.04966996610164642, + -0.027457742020487785, + -0.05110900104045868, + 0.05055195465683937, + -0.03365488350391388, + 0.08922025561332703, + -0.021515915170311928, + 0.014309127815067768, + -0.005251322407275438, + 0.05570463463664055, + -0.0591861754655838, + 0.011941680684685707, + -0.014599256217479706, + -0.0026778841856867075, + 0.009939795359969139, + 0.0010451872367411852, + -0.043751347810029984, + 0.049577124416828156, + -0.002220932161435485, + -0.03247116133570671, + 0.0028983817901462317, + 0.035488493740558624, + -0.008471745997667313, + 0.031194595620036125, + 0.021388258785009384, + -0.03741494566202164, + -0.0024922022130340338, + 0.01144846249371767, + 0.013624425046145916, + 0.06215708702802658, + 0.028386153280735016, + -0.016688179224729538, + -0.021678386256098747, + -0.054172758013010025, + -0.02023935131728649, + -0.02625080943107605, + -0.03425835072994232, + -0.06192498654127121, + 0.040780432522296906, + -0.02780589647591114, + 0.0767795518040657, + 0.033469200134277344, + 0.016398051753640175, + -0.011280188336968422, + 0.0351867601275444, + 0.024510039016604424, + 0.016154343262314796, + 0.03465292602777481, + 0.00016881841293070465, + 0.0131602194160223, + 0.03404945880174637, + -0.01413505058735609, + -0.015759769827127457, + -0.013589609414339066, + 0.029639506712555885, + -0.01195328589528799, + -0.054961904883384705, + -0.04196415841579437, + 0.10648868978023529, + 0.04477259889245033, + -0.06081089377403259, + -0.01658373326063156, + 0.08592440187931061, + -0.04024659842252731, + -0.044517286121845245, + 0.014204681850969791, + 0.04326393082737923, + -0.025113506242632866, + -0.07928626239299774, + -0.038366567343473434, + -0.06294623762369156, + 0.017500538378953934, + 0.06809891760349274, + -0.006394427735358477, + -0.07891489565372467, + 0.02049466408789158, + -0.021620361134409904, + -0.02353520877659321, + 0.005947630386799574, + 0.04883439466357231, + 0.06248203292489052, + 0.05273371934890747, + 0.006266771350055933, + 0.04758104309439659, + -0.031821273267269135, + 0.0786827951669693, + 0.031101753935217857, + 0.02634364925324917, + -0.04433160647749901, + -0.04198736697435379, + 0.0362776443362236, + 0.021063314750790596, + -0.034003037959337234, + -0.01822005771100521, + -0.01971711963415146, + 0.001711757038719952, + -0.032680053263902664, + 0.019577857106924057, + 0.02173641324043274, + 0.006150720175355673, + -0.015075067058205605, + 0.0007789944647811353, + 0.02275766432285309, + 0.0014317831955850124, + 0.02743453159928322, + -0.01837092451751232, + -0.015759769827127457, + 0.04409950226545334, + 0.08597081899642944, + -0.12960611283779144, + -0.048416610807180405, + -0.08095740526914597, + 0.044749390333890915, + 0.04057154059410095, + -0.010171898640692234, + 0.0653136819601059, + -0.019125258550047874, + -0.04737214744091034, + 0.02330310456454754, + 0.027829106897115707, + -0.028154050931334496, + -0.0034786383621394634, + 0.07288023084402084, + -0.0263204388320446, + -0.014332338236272335, + -0.07097698748111725, + 0.08295348286628723, + 0.004636250436306, + 0.05203741416335106, + -0.045051123946905136, + -0.044192343950271606, + -0.0570044107735157, + 0.0034293164499104023, + 0.008460141718387604, + -0.028478994965553284, + 0.04674547165632248, + -0.04344961419701576, + 0.010015228763222694, + -0.020425032824277878, + -0.041871316730976105, + -0.015713348984718323, + -0.007508520502597094, + -0.04758104309439659, + 0.030892862007021904, + 0.0020221942104399204, + -0.04714004695415497, + 0.02047145366668701, + 0.010589683428406715, + 0.03488502651453018, + 0.1180938258767128, + 0.011187347583472729, + 0.012104152701795101, + -0.009928190149366856, + 0.023976203054189682, + -0.0017784865340217948, + -0.008848913013935089, + 0.04588669165968895, + -0.04727930948138237, + -0.03428155928850174, + -0.006730976514518261, + -0.014030604623258114, + -0.04087327420711517, + 0.008541377261281013, + -0.01129759568721056, + 0.0068006073124706745, + 0.095997653901577, + -0.05551895126700401, + 0.028873568400740623, + 0.04321751371026039, + 0.010328567586839199, + -0.018022770062088966, + -0.05923259258270264, + -0.0740407407283783, + -0.03822730481624603, + 0.05185173079371452, + 0.04999490827322006, + -0.008001738227903843 + ] + }, + { + "id": "374f7481-95c8-4988-a504-0fc5c6890215", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "umartin", + "reviewDate": "2021-05-14T10:37:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "52ceb573-a1df-43a7-a133-5411ef22ff61", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "gbarnes", + "reviewDate": "2022-11-30T13:30:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e4acba08-9043-4230-a096-cf8f325731a2", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "douglas72", + "reviewDate": "2021-07-28T09:14:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f20f207e-4175-42ab-815d-44cbf6c8ef31", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "cynthia63", + "reviewDate": "2021-05-03T04:51:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d48dbbd4-6e9a-494c-b767-6c8a2f9ff414", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "twalker", + "reviewDate": "2021-04-23T22:45:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d155b2f4-4ba4-4506-a211-a99355fa99ef", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "gabriel44", + "reviewDate": "2022-01-06T01:27:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f3089058-4ad5-4d1d-b45d-43e865500f9c", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "zpope", + "reviewDate": "2021-11-01T17:30:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "631f6545-cc37-4020-b511-49f22558c330", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "wjordan", + "reviewDate": "2022-09-24T18:48:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e68b6ec2-39b7-44a6-9d28-68d9fa625089", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "nwhite", + "reviewDate": "2022-11-27T00:33:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4a6ac264-6c1a-423c-9933-c3da5da79423", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "jennifer19", + "reviewDate": "2021-07-09T20:50:53", + "stars": 4, + "verifiedUser": false + }, + { + "id": "97ef07ee-cc7a-44c0-9783-09316e3083fe", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "bradychristine", + "reviewDate": "2021-01-10T18:44:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7bb5d008-e511-4c9e-ac1e-0d049b4bc476", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "cameronshaw", + "reviewDate": "2022-08-11T15:56:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6bbfabf1-e990-4ac1-a695-e024471268d0", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "franksmith", + "reviewDate": "2021-12-29T00:07:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8c9a0542-0633-4e55-b65b-7714a3dc1a45", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "hardylisa", + "reviewDate": "2022-02-16T12:18:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5484ecca-9f2c-4a87-b2a3-01256f57213a", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "daniellerobinson", + "reviewDate": "2022-04-01T23:48:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2af7bcf6-de6d-4a3a-b22d-97d2253965c3", + "productId": "b0478c93-8e92-4117-92ab-8e8f79aa5a1e", + "category": "Media", + "docType": "customerRating", + "userName": "mtucker", + "reviewDate": "2021-08-25T05:06:36", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "product", + "name": "Premium Filter + (Red)", + "description": "This Premium Filter + (Red) is still available, but if you're just looking for something simple and easy to use while still saving money, you could try our Premium Search (red) filter.\n\nIf you just", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-04-27T08:49:02", + "price": 489.5, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-01-17T08:31:03", + "newPrice": 446.74 + }, + { + "priceDate": "2021-07-03T08:31:03", + "newPrice": 513.58 + }, + { + "priceDate": "2021-12-17T08:31:03", + "newPrice": 445.01 + }, + { + "priceDate": "2022-06-02T08:31:03", + "newPrice": 523.59 + }, + { + "priceDate": "2022-11-16T08:31:03", + "newPrice": 475.57 + }, + { + "priceDate": "2025-01-19T08:31:03", + "newPrice": 489.5 + } + ], + "descriptionVector": [ + -0.05817354843020439, + -0.0011629840591922402, + -0.008089759387075901, + 0.06025117635726929, + -0.009732382372021675, + -0.0360468253493309, + -0.0431886650621891, + -0.017672812566161156, + -0.02872318960726261, + 0.051213499158620834, + 0.005057722795754671, + -0.036540258675813675, + 0.047240037471055984, + -0.05749832093715668, + 0.060770582407712936, + -0.008174162358045578, + -0.05381053313612938, + -0.018880432471632957, + 0.017257288098335266, + -0.04627913609147072, + 0.037760864943265915, + -0.0004889726988039911, + -0.06238074228167534, + -0.061497751623392105, + 0.016633998602628708, + 0.004934363532811403, + -0.045603908598423004, + 0.011900905519723892, + 0.020217904821038246, + 0.043266575783491135, + 0.08393611758947372, + 0.05004483461380005, + 0.012465760111808777, + 0.024684803560376167, + -0.020737312734127045, + -0.03456651419401169, + 0.07593725621700287, + -0.05682309344410896, + -0.019127150997519493, + 0.0969732254743576, + 0.03770892694592476, + 0.0160107109695673, + -0.0511355884373188, + -0.027450643479824066, + -0.017491020262241364, + -0.03191754221916199, + 0.03365755453705788, + 0.007161319721490145, + -0.0247627142816782, + -0.061705514788627625, + 0.009310364723205566, + 0.015361452475190163, + 0.02781422808766365, + 0.004337045829743147, + 0.021061941981315613, + -0.015309511683881283, + -0.009816786274313927, + 0.07640472054481506, + 0.01824416033923626, + -0.045915551483631134, + -0.02589242346584797, + -0.025515854358673096, + 0.07848235219717026, + 0.03007364645600319, + -0.04555196687579155, + 0.025853468105196953, + -0.013069570995867252, + -0.0884549617767334, + 0.01662101410329342, + 0.05962788686156273, + -0.05248604714870453, + 0.02732079103589058, + 0.01630936935544014, + 0.02872318960726261, + 0.02202284336090088, + 0.053758591413497925, + 0.04186417907476425, + -0.04887617006897926, + -0.012965689413249493, + 0.02976200357079506, + -0.030956638976931572, + 0.024009574204683304, + -0.009349320083856583, + -0.003027167171239853, + 0.022087769582867622, + -0.05178484693169594, + 0.0619652159512043, + -0.049473486840724945, + 0.026463771238923073, + 0.0005827093846164644, + 0.05248604714870453, + 0.003135917941108346, + 0.055888161063194275, + -0.020334770902991295, + 0.051810815930366516, + 0.06227686256170273, + -0.016841761767864227, + 0.012504716403782368, + -0.07630084455013275, + 0.04900602251291275, + 0.005424553528428078, + -0.09998578578233719, + -0.008141700178384781, + 0.041942089796066284, + 0.10175176709890366, + -0.0038111465983092785, + -0.013238377869129181, + -0.037968628108501434, + -0.029606180265545845, + -0.11219184100627899, + 0.016452206298708916, + 0.013147481717169285, + -0.010095967911183834, + 0.004139021970331669, + -0.021581348031759262, + 0.0370856374502182, + -0.0407734252512455, + -0.005369366612285376, + 0.15093958377838135, + 0.015218615531921387, + -0.0007291982765309513, + 0.010823137126863003, + 0.01630936935544014, + -0.0288530420511961, + 0.01743908040225506, + -0.017400123178958893, + -0.03729340061545372, + 0.05604398250579834, + 0.060770582407712936, + -0.020867163315415382, + -0.05993953347206116, + 0.0035092413891106844, + 0.024580921977758408, + 0.023970618844032288, + -0.009654471650719643, + 0.1069977805018425, + 0.045811668038368225, + 0.11063362658023834, + -0.055992040783166885, + 0.03526771441102028, + -0.10242699831724167, + -0.0846632868051529, + 0.045500025153160095, + 0.07178200781345367, + -0.015763992443680763, + -0.07349604368209839, + -0.009693427011370659, + 0.05308336392045021, + -5.726661765947938e-05, + -0.031346194446086884, + 0.06175745651125908, + -0.10356969386339188, + 0.03313814848661423, + -0.005012274719774723, + 0.007550874724984169, + 0.03508592024445534, + -0.058641016483306885, + 0.03209933266043663, + -0.03820236027240753, + -0.014738164842128754, + -0.0038079002406448126, + -0.021256718784570694, + -0.0032966092694550753, + 0.010978958569467068, + 0.009550590068101883, + 0.050174687057733536, + 0.035916972905397415, + -0.023594047874212265, + -0.028359604999423027, + 0.044279418885707855, + -0.02893095277249813, + -0.032644711434841156, + -0.023996589705348015, + 0.012283967807888985, + 0.005340150091797113, + 0.08710449934005737, + -0.007648263592272997, + -0.03739728033542633, + 0.03160589560866356, + -0.0619652159512043, + 0.01916610635817051, + 0.03017752803862095, + -0.04425344988703728, + -0.08175460994243622, + -0.04534420371055603, + -0.027138998731970787, + 0.009537605568766594, + 0.04760362207889557, + 0.01598474010825157, + 0.018010426312685013, + -0.03035932034254074, + -0.0020922350231558084, + 0.05490128695964813, + 0.050901856273412704, + 0.0008407895802520216, + -0.0039052891079336405, + -0.059264302253723145, + -0.020360741764307022, + 0.013738307170569897, + -0.06419866532087326, + -0.004220179282128811, + -0.010420596227049828, + 0.030696935951709747, + 0.011381499469280243, + 0.00563231622800231, + 0.07063931226730347, + 0.07079513370990753, + 0.04885019734501839, + -0.04176029935479164, + -0.017101464793086052, + -0.03617667406797409, + -0.044591065496206284, + -0.041942089796066284, + -0.018893418833613396, + 0.0418122373521328, + 0.051395293325185776, + 0.02345121279358864, + -0.04368210211396217, + -0.056615330278873444, + 0.03313814848661423, + 0.044772855937480927, + 0.0360468253493309, + 0.029995735734701157, + -0.03313814848661423, + -0.014153832569718361, + -0.040409840643405914, + 0.031450074166059494, + 0.04118895158171654, + 0.10164789110422134, + 0.1537443846464157, + -0.06627629697322845, + -0.06799033284187317, + -0.025398986414074898, + -0.016685940325260162, + -0.026061231270432472, + 0.00936879776418209, + -0.03625458851456642, + -0.06549718230962753, + 0.0024184873327612877, + 0.002631119452416897, + 0.005388844292610884, + 0.0365142896771431, + -0.0631079152226448, + 0.017504004761576653, + 0.0458376407623291, + -0.012251505628228188, + 0.04716212674975395, + -0.06908109039068222, + -0.06975632160902023, + -0.01977640949189663, + -0.03957878798246384, + -0.02487958036363125, + -0.043760012835264206, + -0.00286647561006248, + -0.06850974261760712, + 0.08331283181905746, + 0.053550828248262405, + 0.0065575093030929565, + -0.0884549617767334, + -0.036410409957170486, + 0.07250917702913284, + 0.027268851175904274, + 0.021763140335679054, + 0.0386957973241806, + -0.059472065418958664, + -0.031346194446086884, + 0.008096251636743546, + -0.09531112760305405, + -0.05305739492177963, + 0.10762106627225876, + 0.03433278203010559, + 0.07650860399007797, + -0.001717288396321237, + 0.03495607152581215, + 0.021113881841301918, + -0.0035059950314462185, + -0.06014729291200638, + 0.006612696219235659, + 0.028073931112885475, + 0.010628359392285347, + 0.007382067386060953, + -0.011803517118096352, + -0.002895692363381386, + -0.03905938193202019, + 0.002663582330569625, + 0.01947775110602379, + -0.020049098879098892, + -0.03963072970509529, + -0.07318440079689026, + -0.05064215138554573, + -0.04378598555922508, + -0.056303683668375015, + -0.017711767926812172, + -0.053343065083026886, + 0.08559822291135788, + 0.04633107781410217, + 0.008953272365033627, + 0.051109619438648224, + 0.01772475242614746, + 0.07744354009628296, + -0.0947917178273201, + -0.007615800481289625, + -0.02986588515341282, + -0.005525188520550728, + -0.042253732681274414, + 0.03056708350777626, + 0.023178523406386375, + 0.027892138808965683, + -0.0006407368346117437, + -0.056719209998846054, + 0.07848235219717026, + -0.030696935951709747, + -0.006752287037670612, + -0.02006208337843418, + 0.054070234298706055, + 0.02976200357079506, + 0.005814108531922102, + 0.007622293196618557, + -0.02485360950231552, + -0.01947775110602379, + -0.0019802378956228495, + -0.009005213156342506, + 0.011563291773200035, + 0.04334448650479317, + -0.010141415521502495, + -0.07988474518060684, + -0.08814331144094467, + 0.018205204978585243, + 0.04786332696676254, + 0.025554809719324112, + -0.04568181931972504, + -0.028775131329894066, + -0.027580495923757553, + -0.05339500680565834, + 0.05248604714870453, + -0.072561115026474, + 0.06539329886436462, + 0.028801100328564644, + 0.016140563413500786, + -0.03287844359874725, + -0.0031456567812711, + 0.03067096509039402, + 0.03293038532137871, + -0.004976565483957529, + 0.05552457645535469, + -0.0468764528632164, + 0.02742467261850834, + -0.05573233589529991, + -0.006330268923193216, + 0.020412683486938477, + 0.001236837124451995, + -0.048149000853300095, + 0.03739728033542633, + -0.03451457619667053, + 0.07448291778564453, + -0.003921520430594683, + 0.01212814636528492, + -0.011277617886662483, + 0.032670680433511734, + -0.02467181719839573, + 0.025009432807564735, + -0.0007616612128913403, + 0.001412136945873499, + 0.05682309344410896, + 0.016932658851146698, + 0.11645098030567169, + -0.02486659586429596, + 0.0837283581495285, + 0.017179375514388084, + 0.020152978599071503, + 0.0068172127939760685, + 0.03942296653985977, + -0.020243875682353973, + 0.015673097223043442, + -0.06762675195932388, + 0.02202284336090088, + 0.03586503118276596, + 0.044071655720472336, + 0.026671532541513443, + 0.022750012576580048, + -0.025957349687814713, + 0.03129425272345543, + -0.040098197758197784, + 0.032748591154813766, + 0.1536404937505722, + 0.00586280319839716, + -0.04646092653274536, + 0.0050544762052595615, + 0.01651713252067566, + -0.033164117485284805, + -0.046201225370168686, + -0.00285349041223526, + -0.00626534316688776, + -0.04414957016706467, + -0.02732079103589058, + -0.06243268400430679, + -0.027164969593286514, + 0.009096109308302402, + 0.03446263447403908, + 0.0016913180006667972, + 0.0217111986130476, + -0.009037676267325878, + -0.05999147146940231, + -0.07411933690309525, + -0.09977802634239197, + -0.031346194446086884, + 0.03233306482434273, + -0.02893095277249813, + 0.01090754009783268, + 0.0038143929559737444, + -0.07365186512470245, + -0.06528942286968231, + -0.03882564976811409, + 0.02791810967028141, + -0.011452917009592056, + 0.007609307765960693, + 0.052537985146045685, + -0.0008805566467344761, + 0.03487816080451012, + 0.035916972905397415, + 0.0014097022358328104, + 0.009057153947651386, + -0.02906080335378647, + -0.011459410190582275, + -0.02068537101149559, + -0.02812587283551693, + 0.03994237259030342, + -0.022750012576580048, + -0.01136202085763216, + -0.04420150816440582, + -0.03555338829755783, + 0.02181508019566536, + -0.024217337369918823, + -0.04287702217698097, + -0.007011990062892437, + 0.08824719488620758, + 0.003316087182611227, + -0.010914033278822899, + -0.056615330278873444, + 0.026346903294324875, + -0.016659969463944435, + 0.02680138498544693, + -0.031216342002153397, + 0.061601631343364716, + -0.051213499158620834, + -0.024528980255126953, + -0.011251647025346756, + 0.06487389653921127, + 0.0035254729446023703, + 0.03526771441102028, + -0.019620588049292564, + 0.027684375643730164, + -0.0354754775762558, + -0.0077002039179205894, + 0.04066954180598259, + -0.06560106575489044, + -0.0010177125222980976, + 0.10247893631458282, + 0.004827235825359821, + 0.020737312734127045, + -0.01493294257670641, + 0.05952400714159012, + 0.05123946815729141, + -0.05238216370344162, + -0.035215772688388824, + 0.016841761767864227, + -0.05199261009693146, + 0.03851400688290596, + 0.019737454131245613, + 0.02099701575934887, + -0.04614928364753723, + -0.0230356864631176, + -0.006057580467313528, + 0.0125826271250844, + -0.020139994099736214, + 0.07588531821966171, + -0.045915551483631134, + -0.013777262531220913, + 0.06466612964868546, + -0.02568466030061245, + -0.033787403255701065, + -0.009044168516993523, + -0.015036823228001595, + 0.045915551483631134, + 0.0010858846362680197, + 0.019127150997519493, + 0.049889013171195984, + 0.0484866127371788, + 0.03381337597966194, + 0.07074318826198578, + 0.0037819298449903727, + -0.008304014801979065, + -0.005801123566925526, + -0.027684375643730164, + -0.06134193018078804, + -0.09915473312139511, + 0.00130663241725415, + -0.1217489242553711, + 0.02700914815068245, + 0.0036715560127049685, + 0.10668613016605377, + 0.04298090189695358, + -0.0016750865615904331, + -0.0916752815246582, + -0.0704834908246994, + 0.017984457314014435, + 0.0715223029255867, + -0.011433439329266548, + 0.025113312527537346, + -0.04113700985908508, + 0.02108791097998619, + 0.006758779287338257 + ] + }, + { + "id": "1b06f0bd-e3de-4a11-a33d-04b82fb1c91f", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "danielramirez", + "reviewDate": "2022-10-19T14:23:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9e1b2d64-adb4-42ae-b68c-5d2bf75654a0", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "campbelldavid", + "reviewDate": "2021-09-25T18:44:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9d18229e-0c07-4b54-8c70-32ef55165dce", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "bellshannon", + "reviewDate": "2021-08-15T07:28:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9b27015b-ed95-4224-83fe-71a1b8ffda6a", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "micheal68", + "reviewDate": "2022-07-21T12:31:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5d603ed6-ca5f-4219-a749-a3d5bba1f4ad", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "george27", + "reviewDate": "2021-01-17T16:51:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "acd79f98-0492-45bb-ac57-8bc09a21ceb7", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "johnjackson", + "reviewDate": "2022-08-02T10:41:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea64dada-0c95-4417-9dec-2416b3bca8b6", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "qmoran", + "reviewDate": "2022-02-15T10:06:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fc9ba854-38a4-48aa-aa7f-30b4f5b4b8ce", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "bakeraaron", + "reviewDate": "2021-07-20T10:26:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ff0670d4-2407-4493-81fa-25dc2489ee5c", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "christine52", + "reviewDate": "2022-11-18T17:54:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "406176af-e79f-4d18-97b3-c1f71cb44d87", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "joneszachary", + "reviewDate": "2021-03-25T16:17:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "25b52a3f-efa1-4142-b668-2e20e100aeeb", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "kevinrocha", + "reviewDate": "2022-04-30T18:18:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "597bc103-500d-4e97-9f28-dc0ad931db23", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "berrymichelle", + "reviewDate": "2022-06-07T21:52:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b691be07-18a1-4541-af48-154cbcc01aac", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "aliciawebb", + "reviewDate": "2021-06-28T16:52:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3f576d46-e0c6-47eb-85d1-95be48d36732", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "ulopez", + "reviewDate": "2021-01-17T08:31:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "24102430-fdc8-4e63-b1a8-519f0a983406", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "juan70", + "reviewDate": "2021-04-05T02:06:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b161618a-97b0-4900-9483-03094ab838ac", + "productId": "2d6513cb-ceb4-4e03-a381-cc1c71b85070", + "category": "Other", + "docType": "customerRating", + "userName": "robertwest", + "reviewDate": "2022-03-12T18:17:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Pro (Silver)", + "description": "This Basic Speaker Pro (Silver) is not included in your total payment unless you buy a specific speaker that should have it. This $150 price tag makes up 60% discount to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-03-22T12:00:59", + "price": 770.98, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-03-09T18:07:25", + "newPrice": 793.29 + }, + { + "priceDate": "2021-10-14T18:07:25", + "newPrice": 705.16 + }, + { + "priceDate": "2022-05-21T18:07:25", + "newPrice": 797.45 + }, + { + "priceDate": "2022-12-26T18:07:25", + "newPrice": 732.54 + }, + { + "priceDate": "2025-03-20T18:07:25", + "newPrice": 770.98 + } + ], + "descriptionVector": [ + -0.0017768759280443192, + 0.008953776210546494, + -0.015222066082060337, + 0.04126354679465294, + -0.03356859087944031, + -0.08211394399404526, + -0.026854874566197395, + 0.05784126743674278, + -0.0285591259598732, + 0.09533480554819107, + -0.03759682551026344, + -0.07369597256183624, + 0.029075564816594124, + -0.06615594774484634, + 0.020773794502019882, + -0.03186434134840965, + -0.01863056793808937, + -0.017739709466695786, + -0.04616972431540489, + 0.05515578016638756, + 0.027887754142284393, + -0.0309605710208416, + -0.016293678432703018, + -0.01569977216422558, + -0.09502493590116501, + 0.02734549157321453, + -0.03767428919672966, + 0.06383197009563446, + 0.018940431997179985, + -0.01567395031452179, + 0.03687380626797676, + 0.03511791303753853, + -0.03325872868299484, + 0.04614390432834625, + -0.049629874527454376, + 0.025266820564866066, + -0.0005963266594335437, + -0.08330175280570984, + 0.061146482825279236, + 0.018591836094856262, + -0.04265793412923813, + 0.014976756647229195, + 0.004938456229865551, + -0.05494920536875725, + 0.05097261816263199, + 0.01267859898507595, + -0.017352379858493805, + 0.06223100796341896, + -0.053038377314805984, + -0.008269493468105793, + -0.016526076942682266, + 0.03989497944712639, + -0.05608537048101425, + 0.05448440834879875, + 0.042761221528053284, + 0.033232904970645905, + 0.0033568593207746744, + 0.08433463424444199, + -0.02224564738571644, + 0.029462896287441254, + 0.009734892286360264, + -0.0002749638806562871, + -0.01921156421303749, + 0.05097261816263199, + -0.08825957775115967, + 0.04640212282538414, + -0.040101557970047, + 0.08345668762922287, + -0.017739709466695786, + 0.03922360762953758, + 0.014124630950391293, + -0.01722327060997486, + 0.02500860206782818, + 0.05479427054524422, + 0.016500255092978477, + 0.02085126005113125, + 0.04854534938931465, + 0.049836449325084686, + 0.04761575907468796, + -0.016719741746783257, + -0.004454294219613075, + 0.034007567912340164, + -0.042554646730422974, + -0.05130830407142639, + 0.04177998751401901, + 0.0717334970831871, + 0.0019511744612827897, + -0.047977264970541, + -0.051850564777851105, + 0.026880696415901184, + 0.02260715514421463, + 0.06434840708971024, + 0.03511791303753853, + -0.004748019389808178, + 0.022516779601573944, + 0.07736269384622574, + -0.059958670288324356, + -0.0014815368922427297, + -0.06042346730828285, + -0.08402477204799652, + 0.040333956480026245, + -0.0943535640835762, + -0.0436391718685627, + -0.010122221894562244, + 0.035221200436353683, + 0.040101557970047, + 0.04149594530463219, + -0.0487777478992939, + 0.05691167712211609, + -0.05923565477132797, + 0.025925282388925552, + -0.005125666037201881, + -0.0024434062652289867, + -0.009179718792438507, + 0.03666723147034645, + 0.047667402774095535, + 0.012517211958765984, + 0.00540970778092742, + 0.01820450648665428, + -0.020580129697918892, + 0.004890040028840303, + -0.047305893152952194, + -0.021380610764026642, + -0.010916247963905334, + 0.07798242568969727, + -0.04459458589553833, + -0.01744275726377964, + 0.022297292947769165, + 0.014292473904788494, + -0.04069546237587929, + -0.06088826432824135, + 0.03759682551026344, + -0.019560160115361214, + -0.01979255862534046, + -0.04085039347410202, + 0.01218152604997158, + 0.024143565446138382, + -0.009657425805926323, + -0.030650706961750984, + -0.0021480671130120754, + -0.06718882918357849, + 0.09239109605550766, + 0.07648474723100662, + 0.04993973672389984, + 0.01825615018606186, + -0.0203864648938179, + -0.019573071971535683, + 0.12487516552209854, + 0.006439359858632088, + 0.018281972035765648, + -0.009528315626084805, + -0.08242380619049072, + 0.008179116994142532, + -0.04895850270986557, + -0.018566014245152473, + -0.007514200173318386, + -0.04614390432834625, + 0.0015283392276614904, + 0.009883368387818336, + 0.08108106255531311, + -0.015118777751922607, + -0.024517983198165894, + -0.0710621252655983, + 0.0154802855104208, + -0.054845914244651794, + 0.08061626553535461, + 0.07787913829088211, + 0.08288860321044922, + -0.09796864539384842, + 0.03692544996738434, + 0.002845261013135314, + -0.027319669723510742, + -0.0336977019906044, + -0.009612237103283405, + -0.022904109209775925, + 0.01704251579940319, + 0.023704590275883675, + 0.07147528231143951, + -0.013124028220772743, + -0.04498191550374031, + -0.031012214720249176, + 0.0788087248802185, + 0.03604750335216522, + -0.0285591259598732, + 0.002449861727654934, + -0.008069373667240143, + 0.026803230866789818, + -0.024517983198165894, + -0.03150283172726631, + 0.006752451416105032, + 0.014602337963879108, + 0.02181958593428135, + 1.1845587323477957e-05, + -0.00650068698450923, + 0.013672745786607265, + -0.01979255862534046, + -0.010812959633767605, + 0.06811842322349548, + -0.02635134570300579, + -0.009715525433421135, + 5.986466203466989e-05, + 0.1066964790225029, + 0.09233944863080978, + -0.07002925127744675, + -0.08836286514997482, + -0.009031242690980434, + 0.00574862165376544, + 0.02892063371837139, + 0.007720776367932558, + -0.022490957751870155, + -0.010135132819414139, + -0.011729640886187553, + -0.0053709750063717365, + 0.047099318355321884, + 0.07798242568969727, + 0.026054391637444496, + -0.030263377353549004, + -0.02737131342291832, + 0.015983814373612404, + -0.07694954425096512, + 0.01785590872168541, + 0.005777671001851559, + -0.005419391207396984, + 0.040101557970047, + -0.05309002101421356, + -0.01728782430291176, + 0.0011208358919247985, + -0.05386468023061752, + 0.04975898191332817, + 0.009457305073738098, + -0.06455498933792114, + 0.038345661014318466, + -0.0011482718400657177, + 0.0025192582979798317, + -0.038939569145441055, + 0.0020028185099363327, + 0.03429161012172699, + -0.029979335144162178, + -0.04366499185562134, + 0.029256319627165794, + -0.06760197877883911, + 0.0385005921125412, + -0.04970733821392059, + -0.04792562127113342, + -0.09166807681322098, + -0.011858751066029072, + 0.13541053235530853, + -0.07374761253595352, + -0.03328455239534378, + 0.013672745786607265, + -0.1087622418999672, + -0.03862970322370529, + -0.03173523023724556, + 0.010993714444339275, + -0.029075564816594124, + 0.011477876454591751, + 0.09858837723731995, + -0.03509208932518959, + 0.02456962689757347, + 0.00989627931267023, + 0.008075828664004803, + -0.03054741956293583, + -0.05954551696777344, + 0.05040453374385834, + -0.03627990186214447, + 0.0005979405832476914, + -0.010761315934360027, + -0.10618004202842712, + -0.03372352570295334, + 0.021470988169312477, + -0.01019968744367361, + -0.052857622504234314, + -0.03276811167597771, + 0.014744359068572521, + -0.017197448760271072, + 0.07085555046796799, + -0.03981751576066017, + 0.015945080667734146, + -0.025073155760765076, + 0.029592005535960197, + 0.032845575362443924, + -0.002695170696824789, + 0.014757269993424416, + 0.04699603095650673, + -0.02534428797662258, + -0.06026853621006012, + -0.002220691414549947, + 0.10364948213100433, + -0.06987431645393372, + -0.015725594013929367, + -0.024311408400535583, + 0.03297468647360802, + 0.05226371809840202, + 0.09543809294700623, + 0.08102941513061523, + 0.019753824919462204, + 0.06631088256835938, + -0.01188457291573286, + -0.01408589817583561, + 0.027861932292580605, + 0.031451188027858734, + 0.06822171062231064, + -0.04379410296678543, + -0.036770518869161606, + 0.009011875838041306, + 0.06088826432824135, + -0.004741563927382231, + -0.017404023557901382, + -0.06656910479068756, + -0.02140643261373043, + 0.09765878319740295, + -0.031993452459573746, + -0.047099318355321884, + 0.004144430160522461, + 0.0431743748486042, + 0.030185911804437637, + 0.03328455239534378, + -0.016384055837988853, + 0.03989497944712639, + 0.035195376724004745, + -0.047693222761154175, + -0.012685054913163185, + 0.011852295137941837, + -0.04394903406500816, + -0.04699603095650673, + 0.038758814334869385, + -0.03191598504781723, + 0.006849283818155527, + -0.009941468015313148, + 0.030289199203252792, + 0.031167147681117058, + -0.008979598060250282, + 0.06362539529800415, + -0.06362539529800415, + 0.03390427678823471, + 0.03269064426422119, + 0.02358839102089405, + -0.017959196120500565, + -0.051282480359077454, + -0.02181958593428135, + 0.09419863671064377, + -0.04658287763595581, + 0.009386294521391392, + -0.04356170445680618, + 0.021367700770497322, + -0.06935787945985794, + 0.030418308451771736, + -0.023717502132058144, + -0.029824404045939445, + 0.018875878304243088, + 0.0014444177504628897, + -0.016952138394117355, + 0.04374245926737785, + -0.0646582767367363, + 0.0879497155547142, + -0.06336717307567596, + -0.012355824001133442, + 0.030418308451771736, + -0.01545446366071701, + -0.06992596387863159, + -0.04820966348052025, + 0.01801084168255329, + -0.009786535985767841, + 0.006229556165635586, + -0.07328282296657562, + 0.07323117554187775, + -0.031167147681117058, + 0.025460487231612206, + -0.008243671618402004, + -0.032845575362443924, + -0.021755030378699303, + 0.005157943349331617, + 0.003947537392377853, + -0.023885345086455345, + 0.0034472362603992224, + 0.10111892968416214, + 0.029488718137145042, + -0.009605782106518745, + -0.058977436274290085, + 0.024130653589963913, + 0.049061790108680725, + 0.021458076313138008, + 0.008714922703802586, + -0.004593087360262871, + 0.09079013019800186, + -0.033026330173015594, + -0.024918224662542343, + -0.025331376120448112, + -0.047305893152952194, + 0.017003783956170082, + 0.03741607069969177, + -0.0021416116505861282, + -0.04361334815621376, + 0.04423307627439499, + 0.013117573224008083, + -0.038552235811948776, + -0.03612497076392174, + 0.056963320821523666, + -0.034962981939315796, + -0.0024240396451205015, + 0.051669809967279434, + 0.07550351321697235, + -0.05074021965265274, + -0.0483129508793354, + -0.03052159771323204, + -0.1347908079624176, + 0.013072384521365166, + 0.005835770629346371, + -0.019960401579737663, + -0.07601995021104813, + 0.058409351855516434, + -0.0029307962395250797, + -0.04459458589553833, + 0.029230497777462006, + -0.008682645857334137, + -0.019198652356863022, + 0.0309605710208416, + -0.008024184964597225, + 0.039972446858882904, + -0.017997929826378822, + 0.06150798872113228, + -0.005693749524652958, + -0.02537010982632637, + 0.05019795522093773, + -0.014938023872673512, + 0.0022884742356836796, + -0.0066427080892026424, + 0.008986053988337517, + 0.04012737795710564, + -0.02897227741777897, + -0.06212771683931351, + 0.0045608095824718475, + -0.01706833764910698, + -0.01248493418097496, + -0.04268375784158707, + 0.0061262683011591434, + 0.004748019389808178, + 0.040179021656513214, + -0.05794455483555794, + -0.020877081900835037, + -0.04167670011520386, + -0.04023066535592079, + -0.01881132274866104, + 0.045291777700185776, + -0.09838179498910904, + -0.021341878920793533, + -0.051463235169649124, + -0.08139092475175858, + 0.045085202902555466, + -0.0034181864466518164, + -0.05254775658249855, + 0.019921667873859406, + -0.11929761618375778, + 0.04645376652479172, + 0.04281286522746086, + -0.012943274341523647, + -0.029049742966890335, + -0.03586674854159355, + -0.0034472362603992224, + -0.013969698920845985, + -0.054019611328840256, + 0.008385692723095417, + 0.04919089749455452, + 0.07612323760986328, + 0.03393010050058365, + 0.07906694710254669, + 0.028430014848709106, + -0.02104492485523224, + 0.03165776655077934, + 0.007339901756495237, + -0.03886210173368454, + -0.04061799868941307, + 0.00499978382140398, + 0.03669305518269539, + 0.03093474917113781, + -0.008250127546489239, + -0.00431872857734561, + -0.04387156665325165, + -0.017997929826378822, + 0.056808385998010635, + 0.013801855966448784, + -0.002780705923214555, + -0.04673780873417854, + 0.05407125502824783, + 0.0004990907618775964, + 0.02657083235681057, + -0.006103673949837685, + 0.03847477212548256, + -0.0014605565229430795, + 0.035995859652757645, + -0.03992080315947533, + 0.09140986204147339, + 0.046298835426568985, + 0.05210878327488899, + -0.03408503159880638, + -0.055413998663425446, + 0.06460662931203842, + -0.1098984107375145, + 0.02456962689757347, + 0.06971938163042068, + -0.039714228361845016, + -0.0372353158891201, + -0.0203864648938179, + -0.011335855349898338, + -0.0074367341585457325, + -0.03434325382113457, + -0.05448440834879875, + -0.07870543748140335, + 0.0035537518560886383, + 0.08077120035886765, + -0.026467544957995415, + 0.024324318394064903 + ] + }, + { + "id": "41f6bdc1-5225-4d5a-8205-f629dc52576b", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "bautistadavid", + "reviewDate": "2021-05-10T00:01:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8b2c8924-88f3-4db5-a49e-d821859f5b09", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "silvakatie", + "reviewDate": "2022-12-26T19:04:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "379e504d-f96e-4e40-9a69-cd81e2a694a0", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "foxmichelle", + "reviewDate": "2022-11-18T04:27:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f7109afc-654e-4a15-a0ab-6349cb3a0ced", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "hjohnson", + "reviewDate": "2021-03-09T18:07:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "42b9e6d6-6406-46b8-b973-1d8f8cc63668", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "jamesstephenson", + "reviewDate": "2021-08-08T00:07:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "559b1362-9748-4631-9017-bec6cb58e260", + "productId": "d7fc4415-f231-4a0b-9d83-0fecea884972", + "category": "Media", + "docType": "customerRating", + "userName": "rodriguezshannon", + "reviewDate": "2022-07-05T19:47:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "810d2317-4909-4260-b749-d1b11590cdc1", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Super (Steel)", + "description": "This Luxe Keyboard Super (Steel) is powered by a large battery for a fast keyboard with a premium price tag of $300+", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-05-17T19:02:34", + "price": 252.39, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-06-15T19:13:35", + "newPrice": 227.39 + }, + { + "priceDate": "2022-09-11T19:13:35", + "newPrice": 239.58 + }, + { + "priceDate": "2024-03-12T19:13:35", + "newPrice": 252.39 + } + ], + "descriptionVector": [ + -0.0056665511801838875, + 0.00409716134890914, + -0.03878191113471985, + 0.0029945566784590483, + 0.03865785151720047, + -0.021326329559087753, + 0.008485869504511356, + 0.03228104114532471, + 0.029154669493436813, + 0.04302484542131424, + 0.11473292857408524, + 0.013200241141021252, + 0.02702079527080059, + -0.10699143260717392, + 0.05384308844804764, + -0.011395133100450039, + -0.03379460424184799, + -0.013609647750854492, + -0.010638352483510971, + -0.0457790344953537, + -0.04285116121172905, + -0.0595499612390995, + -0.04875653237104416, + -0.039178911596536636, + -0.040345098823308945, + -0.016028864309191704, + 0.03476228937506676, + 0.04498503357172012, + 0.018621768802404404, + -0.04314890876412392, + 0.03121410496532917, + -0.005759597755968571, + -0.026375669986009598, + 0.080739825963974, + 0.044538408517837524, + -0.037640538066625595, + 0.012294585816562176, + 0.0035792007111012936, + 0.04771440848708153, + 0.0024269709829241037, + 0.038682661950588226, + 0.015420958399772644, + -0.00748716713860631, + 0.021760549396276474, + 0.018348831683397293, + -0.0036815523635596037, + 0.03436528891324997, + 0.037913475185632706, + -0.019676299765706062, + 0.01947779953479767, + 0.04362034797668457, + 0.015569834038615227, + -0.10947267711162567, + 0.005365699529647827, + 0.032678041607141495, + -0.05498446524143219, + 0.03210735321044922, + 0.12654367089271545, + 0.04369478300213814, + 0.003917270805686712, + -0.006488464772701263, + -0.09503181278705597, + 0.0014740165788680315, + -0.0462256595492363, + -0.01775333285331726, + -0.01664917729794979, + -0.02239326760172844, + 0.01348558533936739, + 0.04213159903883934, + 0.0726509541273117, + -0.06729145348072052, + 0.0052447388879954815, + 0.030742667615413666, + 0.020309017971158028, + 0.04749109596014023, + -0.024676015600562096, + 0.08758807182312012, + 0.019428174942731857, + 0.06342070549726486, + -0.006085261702537537, + 0.07483445107936859, + 0.005861949175596237, + -0.09567693620920181, + -0.09989506006240845, + 0.057118337601423264, + 0.04262784868478775, + 0.03357129171490669, + -0.05845821276307106, + -0.0654057115316391, + 0.06758920848369598, + -0.021934235468506813, + 0.046746719628572464, + -0.007301073521375656, + -0.05647321417927742, + -0.0013623604318127036, + 0.0044011143036186695, + -0.05334683880209923, + 0.024254202842712402, + -0.012598538771271706, + -0.015755927190184593, + 0.018212363123893738, + -0.012486882507801056, + -0.02922910638153553, + -0.008281166665256023, + 0.005402918439358473, + 0.02365870401263237, + 0.043099284172058105, + 0.011922398582100868, + -0.031139668077230453, + -0.10986968129873276, + 0.04491059482097626, + 0.018795456737279892, + -0.05885521322488785, + 0.004450739361345768, + -0.025904232636094093, + 0.052701715379953384, + -0.021425580605864525, + -0.03883153572678566, + 0.02111542411148548, + -0.007828339003026485, + 0.06615008413791656, + 0.06079058721661568, + 0.00929227564483881, + -0.01592961512506008, + 0.016698801890015602, + -0.026127545163035393, + 0.011432351544499397, + -0.05736646428704262, + 0.026326045393943787, + -0.022914329543709755, + -0.0938408151268959, + 0.09761231392621994, + 0.020259393379092216, + 0.08788581937551498, + -0.019180050119757652, + 0.05607621371746063, + 0.0010382473701611161, + 0.07453670352697372, + -0.021103017032146454, + 0.06748995929956436, + 0.03309985250234604, + 0.00489426264539361, + 0.007177011109888554, + 0.03099079243838787, + -0.05706871300935745, + 0.03932778537273407, + -0.05989733710885048, + 0.023633891716599464, + 0.03126373142004013, + 0.040345098823308945, + 0.07002083212137222, + -0.06515758484601974, + -0.03575478866696358, + -0.028087731450796127, + 0.011575023643672466, + 0.04620084539055824, + -0.14728690683841705, + 0.0078035262413322926, + -0.008169510401785374, + 0.03183441609144211, + -0.044265471398830414, + 0.0068544489331543446, + -0.03506004065275192, + 0.005058645270764828, + -0.025606483221054077, + 0.06391695886850357, + 0.05250321701169014, + 0.00043072921107523143, + 0.0011064817663282156, + 0.022914329543709755, + 0.006451245862990618, + 0.0024672914296388626, + -0.03788866475224495, + -0.07835782319307327, + 0.013497991487383842, + -0.013225054368376732, + 0.09915068745613098, + 0.002662689657881856, + 0.018721019849181175, + 0.021810173988342285, + 0.06515758484601974, + 0.0753307044506073, + -0.010942305438220501, + -0.040345098823308945, + 0.06679520756006241, + 0.038186412304639816, + -0.0004346061614342034, + 0.017306707799434662, + 0.005961199291050434, + -0.013746116310358047, + 0.0031604901887476444, + 0.022095516324043274, + -0.04947609454393387, + -0.012952116318047047, + -0.06262671202421188, + 0.06639821082353592, + 0.05250321701169014, + 0.018733425065875053, + 0.05885521322488785, + -0.01197202317416668, + 0.02972535602748394, + 0.09413856267929077, + 0.020805267617106438, + -0.027988482266664505, + -0.03533297777175903, + -0.00194778002332896, + -0.01146957091987133, + 0.037590913474559784, + -0.007939995266497135, + 0.020867299288511276, + -0.03644954040646553, + 0.0038118178490549326, + -0.00012522550241556019, + -0.0507415309548378, + 0.061634209007024765, + -0.015172833576798439, + 0.003039529314264655, + -0.02316245436668396, + 0.001014210283756256, + -0.129918172955513, + 0.017554832622408867, + 0.017902206629514694, + 0.02895616926252842, + -0.020991360768675804, + -0.022864703088998795, + 0.003594708628952503, + 0.03337278962135315, + 0.018063487485051155, + 0.07925107330083847, + 0.004608918912708759, + 0.04907909408211708, + -0.07642245292663574, + 0.04739184305071831, + 0.03523372858762741, + 0.014378834515810013, + -0.03823603689670563, + -0.010377821512520313, + -0.06545533239841461, + -0.05642358958721161, + 0.051758840680122375, + 0.029080230742692947, + -0.045580532401800156, + 0.0011281926417723298, + -0.0462256595492363, + 0.007927588187158108, + -0.018733425065875053, + 0.07781194895505905, + 0.001253805821761489, + -0.07860594987869263, + 0.0020005065016448498, + -0.032950978726148605, + -0.02228161133825779, + 0.03865785151720047, + 0.09165731817483902, + -0.016190145164728165, + 0.06550496071577072, + -0.017616864293813705, + -0.01643826998770237, + 0.049947530031204224, + -0.019006362184882164, + -0.015259677544236183, + -0.0016577841015532613, + -0.0281869824975729, + 0.09140919148921967, + -0.0631725862622261, + 0.09657018631696701, + 0.0313381664454937, + -0.059252213686704636, + -0.05696946382522583, + 0.02035864256322384, + 0.0003774211509153247, + -0.041660159826278687, + 0.08257594704627991, + 0.001018862589262426, + -0.009236447513103485, + 0.010905086994171143, + -0.06729145348072052, + 0.06252746284008026, + -0.07250207662582397, + -0.06798620522022247, + 0.017666488885879517, + 0.04158572480082512, + 0.04560534656047821, + -0.03022160567343235, + 0.05696946382522583, + -0.03354647755622864, + 0.07299832999706268, + 0.04339703544974327, + 0.04952571913599968, + -0.03357129171490669, + -0.036375101655721664, + 0.05031971633434296, + 0.04329778626561165, + 0.03143741562962532, + -0.021363548934459686, + -0.0009033295209519565, + 0.11284717917442322, + -0.029105043038725853, + 0.016301801428198814, + -0.005126879550516605, + 0.020879704505205154, + -0.0020299714524298906, + -0.06997120380401611, + -0.07111258059740067, + 0.005064848344773054, + 0.05399196594953537, + 0.023695921525359154, + 0.012108491733670235, + -0.0457790344953537, + -0.010334399528801441, + 0.05265209078788757, + 0.0038893569726496935, + 0.0006714878254570067, + 0.016351427882909775, + 0.05885521322488785, + 0.008808432146906853, + 0.03285172954201698, + 0.03553147614002228, + 0.038682661950588226, + -0.008175713941454887, + 0.009006931446492672, + -0.02873285673558712, + -0.10118530690670013, + 0.015458177775144577, + -0.0005730133270844817, + -0.05553033947944641, + -0.024365859106183052, + 0.02444029599428177, + -0.003666044445708394, + -0.04960015416145325, + 0.01547058392316103, + 0.02532113902270794, + -0.048508405685424805, + -0.0048973639495670795, + 0.05215584114193916, + -0.0008544799056835473, + 0.011016743257641792, + 0.0776134505867958, + -0.002510713180527091, + -0.02746742032468319, + 0.06863132864236832, + -0.019055988639593124, + -0.03555629029870033, + -0.056622087955474854, + 0.015036365017294884, + 0.02249251678586006, + -0.046300094574689865, + -0.0019276197999715805, + -0.02558167092502117, + 0.051858089864254, + 0.001520539983175695, + -0.009211634285748005, + 0.09230244159698486, + -0.06972307711839676, + 0.001005680998787284, + -0.024899328127503395, + 0.03793828934431076, + -0.030246417969465256, + -0.050543028861284256, + 0.027268920093774796, + -0.0075119794346392155, + -0.008647150360047817, + 0.07463595271110535, + 0.09195506572723389, + -0.08133532106876373, + 0.026499733328819275, + 0.0002105184248648584, + 0.001438348670490086, + 0.006804823875427246, + -0.022306423634290695, + 0.07652170211076736, + -0.05165959149599075, + -0.03513447567820549, + 0.07136070728302002, + 0.013026554137468338, + 0.0685320794582367, + 0.024886921048164368, + 0.03476228937506676, + -0.06098908558487892, + 0.03677210211753845, + 0.01671120710670948, + -0.0011894484050571918, + 0.050046779215335846, + -0.024229390546679497, + 0.024725640192627907, + -0.044315095990896225, + -0.02863360568881035, + -0.020532330498099327, + -0.07190658152103424, + 0.04280153661966324, + 0.022318828850984573, + -0.021872203797101974, + -0.018075894564390182, + 0.07012008130550385, + 0.013522803783416748, + -0.003158939303830266, + 0.032008104026317596, + 0.05428971350193024, + -0.023088015615940094, + -0.031139668077230453, + 0.015954427421092987, + 0.05136184021830559, + 0.009794727899134159, + -0.06257708370685577, + 0.011302086524665356, + -0.09627243876457214, + 0.02548242174088955, + -0.01664917729794979, + -0.046796344220638275, + -0.0802932009100914, + -0.01075000874698162, + 0.007778713945299387, + -0.01808830164372921, + -0.05994696170091629, + 0.007363104727119207, + -0.013584835454821587, + 0.10629668086767197, + 0.02620198391377926, + 0.025457609444856644, + -0.06461171060800552, + 0.02520948462188244, + 0.0099808219820261, + -0.06580270826816559, + 0.018931925296783447, + 0.025135045871138573, + -0.029377980157732964, + 0.0025200177915394306, + -0.03729316219687462, + 0.07240282744169235, + -0.0365239754319191, + 0.031040417030453682, + -0.07562845200300217, + -0.00849207304418087, + -0.014713803306221962, + -0.05493484064936638, + -0.09071443974971771, + 0.02199626713991165, + 0.05260246619582176, + -0.04582865908741951, + 0.08788581937551498, + -0.0011599835706874728, + -0.029055418446660042, + -0.017740925773978233, + -0.010601134039461613, + -0.06744033098220825, + 0.004332880023866892, + -0.04396772012114525, + 0.080739825963974, + 0.04605197161436081, + -0.05210621654987335, + 0.017120614647865295, + -0.03171035274863243, + -0.07016970217227936, + 0.007208026479929686, + 0.07200583070516586, + -0.036424726247787476, + 0.009658259339630604, + 0.027417795732617378, + -0.06143571063876152, + -0.016636770218610764, + 0.021301517263054848, + 0.060691334307193756, + 0.08714144676923752, + -0.0027867520693689585, + 0.013944615609943867, + 0.021103017032146454, + 0.02453954704105854, + -0.004069247283041477, + 0.025854608044028282, + 0.04391809552907944, + -0.0048787547275424, + -0.09116106480360031, + 0.006587714422494173, + 0.025122640654444695, + -0.025395577773451805, + -0.0915580689907074, + 0.0412631593644619, + -0.03379460424184799, + -0.01864658109843731, + -0.003839731914922595, + -0.00033516238909214735, + -0.00818812008947134, + 0.07275020331144333, + 0.03893078863620758, + 0.028360668569803238, + -0.011450961232185364, + 0.003700161585584283, + 0.027814794331789017, + 0.006761401891708374, + 0.019924424588680267, + -0.06500870734453201, + 0.033174291253089905, + -0.07012008130550385, + -0.040791723877191544, + -0.02140076830983162, + 0.02260417304933071, + -0.027392981573939323, + 0.023125234991312027, + -0.05012121796607971, + 0.04314890876412392, + 0.012641960754990578, + -0.05329721421003342, + 0.033720165491104126, + -0.017195051535964012, + 0.04659784585237503, + 0.02383239008486271, + -0.06471095979213715, + -0.004571700002998114, + 0.034712664783000946, + 0.02381998486816883, + 0.038905974477529526, + -0.08227819949388504 + ] + }, + { + "id": "ac3b519b-a170-479f-9cac-4382d68c1aee", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyferguson", + "reviewDate": "2021-06-15T19:13:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3f237b56-07a0-4e85-b842-b784c10aca8d", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "youngkarina", + "reviewDate": "2022-08-28T01:41:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2ea05f37-3c5c-4d7f-92b9-45a194150fae", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamesvelazquez", + "reviewDate": "2021-10-13T22:36:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fec6335f-2149-4b66-98f1-60d810dbc1a1", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "braytiffany", + "reviewDate": "2022-08-07T20:40:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "58b83f43-5141-47f5-8ee1-a56523fbf6d4", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "debradavis", + "reviewDate": "2021-11-26T16:01:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1930f297-8ed6-4553-9f4d-9cd96a715336", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mariorobinson", + "reviewDate": "2022-09-12T17:08:46", + "stars": 4, + "verifiedUser": true + }, + { + "id": "95eeb196-b583-436e-84b1-5d96aef3854a", + "productId": "810d2317-4909-4260-b749-d1b11590cdc1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinbrandon", + "reviewDate": "2021-12-07T07:09:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "10abe843-a904-4ada-816b-4c9f1082aacf", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "product", + "name": "Basic TV Micro (Silver)", + "description": "This Basic TV Micro (Silver) is an affordable, high-resolution TV that's capable of playing 1080p (H.264) video at high resolution including high resolution surround sound and Dolby", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-03-13T19:10:40", + "price": 363.23, + "stock": 94, + "priceHistory": [ + { + "priceDate": "2021-01-29T10:43:20", + "newPrice": 388.63 + }, + { + "priceDate": "2021-08-02T10:43:20", + "newPrice": 363.23 + } + ], + "descriptionVector": [ + 0.022466525435447693, + 0.060352880507707596, + -0.048107024282217026, + 0.02067820355296135, + -0.03967467322945595, + 0.026694541797041893, + -0.054905012249946594, + 0.004686940927058458, + 0.024515395984053612, + 0.06546913832426071, + -0.036832310259342194, + -0.06589549034833908, + 0.1394653618335724, + -0.016130419448018074, + 0.04090636596083641, + 6.91623572492972e-05, + -0.02558128349483013, + -0.05310484766960144, + 0.024278532713651657, + 0.038064002990722656, + 0.033682022243738174, + -0.04723062738776207, + -0.04104848578572273, + 0.013690724037587643, + 0.0016654480714350939, + 0.0456436425447464, + -0.0413564071059227, + 0.02657611109316349, + -0.028826316818594933, + -0.011493812315165997, + 0.03804031386971474, + 0.03863247483968735, + -0.08024942874908447, + 0.004257625434547663, + -0.036927055567502975, + -0.00030792286270298064, + 0.015680378302931786, + -0.0025077946484088898, + 0.05485764145851135, + -0.006620341446250677, + 0.03467684984207153, + 0.012968289665877819, + 0.017776623368263245, + -0.012648522853851318, + 0.02437327802181244, + 0.03552956134080887, + -0.018499057739973068, + 0.007988229393959045, + -0.0001109373479266651, + -0.04455406963825226, + 0.02022816240787506, + -0.00847379956394434, + 0.0004319061990827322, + 0.02170856110751629, + -0.012376129627227783, + -0.003792780451476574, + 0.03150287643074989, + 0.10677816718816757, + 0.030176440253853798, + -0.02551022358238697, + -0.008384976536035538, + -0.010937183164060116, + 0.050688840448856354, + 0.050688840448856354, + -0.011849108152091503, + 0.003618093440309167, + 0.02130589261651039, + 0.05248900130391121, + 0.008533015847206116, + 0.02498912438750267, + -0.0038668003398925066, + -0.04739643260836601, + 0.03233189880847931, + 0.04398559406399727, + 0.042801275849342346, + 0.062389906495809555, + 0.059737034142017365, + 0.04308551177382469, + 0.03882196545600891, + -0.019410982728004456, + -0.01857011578977108, + 0.019884711131453514, + -0.025225987657904625, + 0.008053367026150227, + 0.028020979836583138, + 0.10308309644460678, + -0.0477280430495739, + -0.10838884115219116, + -0.055378738790750504, + 0.08692898601293564, + -0.04201962426304817, + 0.12421134114265442, + 0.056989412754774094, + -0.009954198263585567, + 0.08010731637477875, + 0.057605259120464325, + -0.05149417370557785, + 0.02277444861829281, + -0.024171944707632065, + -0.02437327802181244, + 0.08853965997695923, + -0.025889206677675247, + 0.0028201588429510593, + -0.06987480074167252, + 0.01585802622139454, + -0.010208826512098312, + -0.010735848918557167, + 0.08223908394575119, + 0.0003158799954690039, + -0.11852660775184631, + -0.03995891287922859, + -0.011470125988125801, + 0.0361454039812088, + -0.026433993130922318, + -0.018463527783751488, + 0.03991153836250305, + -0.027689369395375252, + 0.02183883637189865, + -0.008390897884964943, + -0.03564799204468727, + 0.0037898197770118713, + -0.03624014928936958, + -0.011357615701854229, + 0.04621211439371109, + -0.03552956134080887, + -0.009557451121509075, + -0.10061971098184586, + 0.061868805438280106, + 0.03548218682408333, + 0.0038371924310922623, + -0.11454729735851288, + 0.005530768074095249, + 0.043796103447675705, + -0.015017160214483738, + -0.04308551177382469, + 0.005729141645133495, + -0.01800164394080639, + -0.002463382901623845, + 0.013631507754325867, + 0.06878522783517838, + -0.0649954080581665, + 0.022442838177084923, + 0.04578575864434242, + -0.01642649993300438, + -0.028944747522473335, + -0.016663363203406334, + -0.005163629539310932, + 0.0007446403615176678, + 0.01907937414944172, + 0.02868419699370861, + 0.011612244881689548, + -0.08692898601293564, + -0.045856818556785583, + -0.06504277884960175, + 0.026433993130922318, + 0.019197804853320122, + -0.004775764886289835, + 0.018818823620676994, + -0.07394886016845703, + 0.04950451850891113, + 0.03986416757106781, + 0.018972784280776978, + -0.014803983271121979, + -0.040053658187389374, + 0.060305505990982056, + -0.006051868200302124, + 0.04495673626661301, + 0.07532266527414322, + -0.05045197531580925, + 0.036405954509973526, + 0.018783293664455414, + -0.05585246905684471, + -0.00044263910967856646, + -0.015336927026510239, + -0.023153429850935936, + -0.026931406930088997, + 0.017942428588867188, + 0.017077874392271042, + -0.03455841913819313, + -0.07352250069379807, + -0.03979310765862465, + -0.022466525435447693, + -0.060305505990982056, + -0.01906752958893776, + 0.026860347017645836, + 0.03200028836727142, + 0.08659738302230835, + 0.011878715828061104, + -0.039035141468048096, + -0.0021880287677049637, + 0.03789819777011871, + 0.03451104462146759, + 0.0010755093535408378, + -0.03725866600871086, + 0.043322376906871796, + -0.07636486738920212, + 0.04464881494641304, + -0.035908542573451996, + -0.011031928472220898, + 0.009101488627493382, + -0.01701865904033184, + -0.016248852014541626, + 0.07589113712310791, + 0.0034286025911569595, + -0.048557065427303314, + -0.02231256291270256, + 0.03240295872092247, + 0.07347512990236282, + 0.030673854053020477, + 0.007105912081897259, + -0.0348663404583931, + -0.04834388941526413, + -0.006288731936365366, + 0.009823922999203205, + 0.10024072974920273, + 0.026955092325806618, + 0.0073546189814805984, + -0.06570599973201752, + 0.009208077564835548, + -0.0302948709577322, + 0.08309179544448853, + -0.05447865650057793, + -0.0031473268754780293, + -0.011292478069663048, + -0.011120752431452274, + -0.07129598408937454, + 0.08010731637477875, + 0.004142154473811388, + 0.0282104704529047, + 0.03986416757106781, + -0.13974960148334503, + -0.010161453858017921, + -0.040693189948797226, + 0.022407308220863342, + -0.014294725842773914, + -0.025841834023594856, + 0.005909750238060951, + -0.03808768838644028, + -0.13141199946403503, + 0.07214869558811188, + -0.08081790804862976, + -0.02709721028804779, + -0.01061149500310421, + 0.009942355565726757, + 0.0572262778878212, + -0.00879356637597084, + 0.04138009250164032, + 0.01402233261615038, + -0.04339343681931496, + -0.01327621191740036, + -0.07503843307495117, + -0.07158021628856659, + 0.025865519419312477, + 0.04663847014307976, + -0.03934306651353836, + 0.042682845145463943, + 0.05277324095368385, + -0.03443998843431473, + -0.007082225754857063, + -0.05253637582063675, + -0.04775172844529152, + -0.07082225382328033, + 0.006229516118764877, + -0.016864698380231857, + -0.041569583117961884, + 0.06745879352092743, + 0.03181079775094986, + -0.12089525163173676, + -0.01808454655110836, + -0.011239184066653252, + -0.020832166075706482, + 0.02868419699370861, + 0.029844829812645912, + 0.040148403495550156, + -0.07091700285673141, + -0.026718229055404663, + -0.08787644654512405, + 0.06257940083742142, + -0.022584956139326096, + 0.029086865484714508, + 0.11691594123840332, + 0.019813651219010353, + 0.05348382890224457, + 0.019493885338306427, + 0.006946029141545296, + -0.01648571528494358, + -0.007473050616681576, + 0.010652946308255196, + -0.004879392683506012, + 0.0022975781466811895, + -0.018427997827529907, + -0.004639568272978067, + 0.00020299962488934398, + 0.005640317685902119, + 0.04723062738776207, + 0.013370957225561142, + -0.0031858172733336687, + -0.011310243047773838, + 0.04443563520908356, + 0.021104559302330017, + -0.06627447158098221, + 0.052299510687589645, + -0.027878861874341965, + -0.1394653618335724, + -0.10061971098184586, + 0.03020012564957142, + -0.06655871123075485, + 0.018759608268737793, + -0.05452603101730347, + -0.04869918152689934, + 0.04294339567422867, + 0.022407308220863342, + -0.0456436425447464, + 0.02702615223824978, + 0.053436458110809326, + -0.027239328250288963, + -0.03335041180253029, + 0.013086721301078796, + 0.013122250325977802, + 0.05253637582063675, + 0.019967611879110336, + 0.03870353475213051, + -0.031076520681381226, + 0.09005559235811234, + 0.04315657168626785, + -0.05215739458799362, + -0.04443563520908356, + -0.02915792539715767, + -0.048035964369773865, + 0.04074056074023247, + 0.01145236101001501, + -0.002567010698840022, + 0.014472373761236668, + 0.04341712221503258, + 0.07560690492391586, + -0.04945714771747589, + 0.045880503952503204, + -0.034226808696985245, + 0.007437521126121283, + 0.02175593376159668, + 0.06959056109189987, + 0.04310920089483261, + 0.03967467322945595, + -0.05845797061920166, + -0.02484700456261635, + -0.017397640272974968, + -0.09526659548282623, + 0.0006983779021538794, + -0.008355367928743362, + -0.03605065867304802, + 0.0014981630956754088, + -0.03837192431092262, + 0.007763208821415901, + 0.0158698707818985, + 0.06632184237241745, + -0.004506332334131002, + -0.003088110825046897, + 0.048651810735464096, + -0.0019970573484897614, + -0.014531590044498444, + 0.02927635796368122, + -0.06883259862661362, + 0.0056314351968467236, + -0.0029889242723584175, + -0.13074877858161926, + 0.0699695497751236, + 0.008053367026150227, + 0.08972398191690445, + 0.025273360311985016, + 0.02873157151043415, + 0.06210567057132721, + -0.027452506124973297, + -0.07859138399362564, + 0.08048629760742188, + -0.006395320873707533, + -0.0028956590685993433, + 0.031597621738910675, + -0.08863440901041031, + 0.003920094575732946, + -0.008906076662242413, + -0.025225987657904625, + 0.006342026405036449, + 0.06703243404626846, + -0.02231256291270256, + 0.07807028293609619, + -0.014425001107156277, + -0.04052738472819328, + -0.06096872314810753, + -0.06755353510379791, + -0.02558128349483013, + -0.008621839806437492, + 0.03813505917787552, + -0.005835730116814375, + -0.012056363746523857, + 0.025273360311985016, + 0.03256876394152641, + 0.01168922521173954, + 0.02183883637189865, + 0.045975249260663986, + -0.01637912727892399, + 0.05803161486983299, + 0.0045625874772667885, + 0.023662686347961426, + -0.04365398734807968, + -0.08413399755954742, + -0.020405810326337814, + -0.01905568689107895, + 0.0790177434682846, + -0.014946101233363152, + -0.09455600380897522, + 0.02764199674129486, + -0.07892299443483353, + -0.02920529805123806, + -0.07849664241075516, + -0.004094781819730997, + 0.03832455351948738, + 0.0105996523052454, + -0.03024749830365181, + 0.041119541972875595, + -0.0059719267301261425, + 0.02437327802181244, + 0.025889206677675247, + 0.023698216304183006, + -0.015573790296912193, + 0.04945714771747589, + -0.006288731936365366, + 0.011683303862810135, + -0.011499734595417976, + 0.00011870943853864446, + -0.057131532579660416, + 0.0030436988454312086, + -0.05533136799931526, + 0.03036593087017536, + -0.026173442602157593, + -0.027499878779053688, + -0.0012990494724363089, + 0.029584279283881187, + 0.08598153293132782, + -0.018712235614657402, + 0.0582684762775898, + 0.007218422368168831, + -0.03335041180253029, + -0.006987479981034994, + 0.07072751224040985, + -0.041688017547130585, + -0.04514622688293457, + 0.03451104462146759, + -0.008983056992292404, + 0.07086963206529617, + 0.01463817898184061, + 0.045998938381671906, + 0.029347416013479233, + -0.0270498376339674, + -0.03389519825577736, + -0.017681878060102463, + 0.06632184237241745, + 0.007597404066473246, + 0.04666215553879738, + 0.006537438835948706, + 0.032734569162130356, + -0.022490210831165314, + 0.08081790804862976, + -0.035316381603479385, + 0.016592305153608322, + -0.05732102319598198, + -0.0034226810093969107, + -0.05670517683029175, + 0.025131242349743843, + -0.0382298044860363, + 0.019328080117702484, + -0.007159206084907055, + -0.06224779039621353, + 0.023212645202875137, + -0.013501232489943504, + -0.008562623523175716, + -0.04791753366589546, + 0.018984628841280937, + -0.012541934847831726, + 0.045383092015981674, + 0.07470682263374329, + 0.02858945168554783, + 0.024089042097330093, + -0.019801808521151543, + 0.046425290405750275, + 0.05400492995977402, + 0.0013279173290356994, + -0.03560061752796173, + 0.04630685970187187, + 0.023781118914484978, + -0.007840189151465893, + 0.03391888737678528, + 0.04569101333618164, + 0.02707352489233017, + -0.05059409141540527, + -0.08152849972248077, + 0.004834980703890324, + 0.012826170772314072, + 0.024681201204657555, + 0.02333107776939869, + 0.06068448722362518, + -0.05102044716477394, + 0.046472664922475815, + -0.049125537276268005, + 0.0077809737995266914, + -0.004159919451922178, + 0.022087542340159416, + 0.03782713785767555, + -0.02600763738155365, + -0.06911683827638626, + 0.018380625173449516, + -0.003283523488789797, + 0.007863875478506088 + ] + }, + { + "id": "d7b0646b-96ed-4f79-9c8b-cf1c989bd3f6", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "codystanley", + "reviewDate": "2021-06-06T18:02:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "48d4813c-6b73-443d-a1f6-38da7244926c", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "joe26", + "reviewDate": "2021-08-19T02:46:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a574f753-f2c8-45d1-ad11-5c921b54ed77", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "johnoneill", + "reviewDate": "2022-02-27T20:46:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1eab1900-5d31-4f43-bce5-9f028a57b09f", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "lucasnicole", + "reviewDate": "2021-01-29T10:43:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "405f4161-cc41-42bf-ad33-6de160b10bc9", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "heathergill", + "reviewDate": "2022-01-28T14:02:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "48547594-828c-4d9e-a6ba-104670045bba", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "stephaniecain", + "reviewDate": "2022-12-22T14:27:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9010d766-3557-4ecd-97dc-665fc7730b49", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "spencerwendy", + "reviewDate": "2021-06-16T09:40:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "751404dc-1d3b-4098-b212-caab63361aaa", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "vsmith", + "reviewDate": "2022-01-19T17:56:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "296da779-58c0-4775-ab48-76a9a1935f13", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "davenportanna", + "reviewDate": "2022-09-10T16:39:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b5f8fa7c-b48a-49c9-b22d-0e841b475f12", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "sellersbrittany", + "reviewDate": "2022-01-31T03:02:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b0764a19-7aec-4490-a94c-23c7db685308", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "jeffery45", + "reviewDate": "2022-03-15T20:37:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2050504d-6477-40e2-a6d1-3ae5849eb4bb", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "butlerrichard", + "reviewDate": "2022-11-05T20:44:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5990c4ce-e593-46f5-a065-94dd8a3d7070", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "ramirezkyle", + "reviewDate": "2022-11-04T06:56:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2844bb4c-48f1-471a-b742-5537e5adcf8a", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "stephen45", + "reviewDate": "2022-06-09T15:46:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aecade56-691e-4bbf-8b81-cda4f126d740", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "melissabeard", + "reviewDate": "2021-10-11T16:35:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6e6c9014-523d-422b-bcb0-0d95763a7a82", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "fwang", + "reviewDate": "2022-03-07T20:52:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "efb8d2be-58e2-466d-b1e2-cd978754d3b8", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "amandahamilton", + "reviewDate": "2021-05-14T02:06:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c61dc215-c162-44bb-8bf1-6bdfbdeff9b9", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "aguirrebrianna", + "reviewDate": "2021-09-27T22:04:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "319ef0c3-c45c-45e2-9827-9a37035e48a9", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "wflores", + "reviewDate": "2022-02-01T21:18:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a4ebad06-5460-4979-a4e9-91a3b994683f", + "productId": "10abe843-a904-4ada-816b-4c9f1082aacf", + "category": "Media", + "docType": "customerRating", + "userName": "lrodriguez", + "reviewDate": "2021-02-20T18:07:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6a02b29a-621e-4bd7-bfcf-386489663edf", + "productId": "6a02b29a-621e-4bd7-bfcf-386489663edf", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Super (Steel)", + "description": "This Basic Phone Super (Steel) is available in both aluminum and Stainless steel. Features include:\n\nHigh-quality, precision engineered steel-alloy lens\n\nNanodized aluminum lens housing\n\nSteel mount for optics and battery mounts\n\nMetal-plated front and rear mount\n\nMulti-camera", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-12-01T01:18:18", + "price": 733.57, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-01-30T06:14:57", + "newPrice": 740.08 + }, + { + "priceDate": "2021-06-01T06:14:57", + "newPrice": 685.72 + }, + { + "priceDate": "2021-10-01T06:14:57", + "newPrice": 756.12 + }, + { + "priceDate": "2022-01-31T06:14:57", + "newPrice": 713.81 + }, + { + "priceDate": "2022-06-02T06:14:57", + "newPrice": 756.07 + }, + { + "priceDate": "2024-11-23T06:14:57", + "newPrice": 733.57 + } + ], + "descriptionVector": [ + 7.348898361669853e-05, + 0.009869744069874287, + -0.05317789316177368, + 0.044280119240283966, + 0.05902276560664177, + 0.01705189049243927, + -0.03227725997567177, + 0.02147468365728855, + 0.023744789883494377, + 0.010580782778561115, + 0.10771263390779495, + 0.04130549728870392, + 0.05964900180697441, + -0.05599595606327057, + 0.060327425599098206, + -0.008323723450303078, + -0.018982786685228348, + 0.02080930769443512, + 0.02476242557168007, + -0.07436555624008179, + 0.09424855560064316, + -0.07269559055566788, + -0.10301586240530014, + -0.03668700531125069, + 0.02399267628788948, + -0.029250450432300568, + 0.011611463502049446, + 0.008356340229511261, + -0.020744075998663902, + -0.03332098573446274, + 0.03619123622775078, + -0.004556520842015743, + -0.057144057005643845, + 0.08161945641040802, + 0.012015908025205135, + 0.02033963054418564, + 0.014820924028754234, + -0.01697361096739769, + 0.08996926993131638, + 0.005613294430077076, + 0.02236185222864151, + -0.04062707722187042, + 0.017612894997000694, + 0.05080341547727585, + -0.007971465587615967, + -0.0011595155810937285, + -0.009308740496635437, + -0.011709312908351421, + -0.007390892133116722, + -0.06909473240375519, + 0.020600562915205956, + 0.00918479822576046, + 0.000177861686097458, + -0.009830604307353497, + 0.04534994065761566, + -0.0482201911509037, + 0.03321661427617073, + 0.25842681527137756, + 0.05902276560664177, + -0.012707376852631569, + -0.00958924274891615, + -0.04981187358498573, + 0.002482113428413868, + 0.05390850454568863, + -0.06653760373592377, + -0.005446950439363718, + -0.016843145713210106, + -0.0007774951518513262, + -0.03715668246150017, + 0.028285004198551178, + 0.004987058229744434, + -0.0035062707029283047, + 0.004918563645333052, + 0.029485289007425308, + 0.02666722610592842, + 0.05902276560664177, + 0.042688436806201935, + 0.022766295820474625, + 0.028285004198551178, + -0.05646563321352005, + 0.06163208186626434, + 0.05333445221185684, + -0.05813559889793396, + -0.056830938905477524, + 0.08923866599798203, + -0.03345145285129547, + 0.051794957369565964, + -0.09638819843530655, + 0.004311897326260805, + 0.0836547240614891, + 0.013725010678172112, + 0.024827657267451286, + 0.007801859639585018, + -0.02045704983174801, + 0.04837675020098686, + 0.1054164320230484, + -0.023001134395599365, + 0.02151382341980934, + -0.006138419732451439, + -0.007143007125705481, + 0.0406009815633297, + -0.002071145921945572, + -0.03313833475112915, + 0.046993810683488846, + 0.03306005522608757, + 0.03919195011258125, + 0.03538234904408455, + 0.014755691401660442, + -0.04352341964840889, + -0.0918479785323143, + -0.020991960540413857, + -0.04608054831624031, + -0.08391565829515457, + 0.039009299129247665, + 0.00212659384123981, + 0.011591893620789051, + -0.04198392108082771, + 0.017795545980334282, + 0.010554689913988113, + -0.014155548065900803, + -0.032381631433963776, + 0.06356298178434372, + 0.012818273156881332, + -0.020665796473622322, + -0.05137746408581734, + -0.021292032673954964, + 0.041096754372119904, + -0.022961994633078575, + 0.015538486652076244, + 0.012498632073402405, + -0.0926307737827301, + 0.00724737998098135, + 0.0752527192234993, + -0.039322417229413986, + -0.06231050565838814, + 0.034390807151794434, + 0.014364293776452541, + 0.05542190745472908, + -0.03363410383462906, + 0.07279996573925018, + 0.03561718761920929, + -0.013711964711546898, + 0.026849878951907158, + -0.004103152081370354, + -0.01573418639600277, + 0.0050131515599787235, + -0.021605150774121284, + -0.011624510399997234, + 0.015616766177117825, + 0.028937332332134247, + -0.01016981527209282, + -0.09320482611656189, + -0.04618492349982262, + -0.041253313422203064, + 0.059544630348682404, + 0.040705356746912, + -0.09904970228672028, + 0.030685575678944588, + -0.03050292283296585, + 0.041409872472286224, + -0.004856592509895563, + -0.056830938905477524, + 0.004106413573026657, + -0.03859180957078934, + -0.01953074336051941, + 0.014390386641025543, + 0.03444299474358559, + 0.0685206800699234, + -0.014520852826535702, + 0.02953747659921646, + 0.053856316953897476, + 0.046915531158447266, + -0.016530027613043785, + -0.11564496159553528, + -0.005339316092431545, + -0.016373468562960625, + 0.08469845354557037, + 0.018943646922707558, + 0.016138629987835884, + -0.04615882784128189, + 0.0063080256804823875, + -0.03595639765262604, + -0.03739152103662491, + -0.029981059953570366, + 0.04868986830115318, + 0.04884642735123634, + -0.01116135623306036, + 0.048037536442279816, + -0.016790959984064102, + 0.021135473623871803, + 0.04897689446806908, + -0.0527082160115242, + 0.05135137215256691, + -0.006718993186950684, + 0.06163208186626434, + -0.016099490225315094, + 0.07754892110824585, + -0.023653464391827583, + -0.014559992589056492, + 0.010111105628311634, + 0.03193804994225502, + 0.03887883201241493, + 0.057300616055727005, + -0.09054332226514816, + -0.009569672867655754, + -0.04339295253157616, + -0.04414965584874153, + 0.029041705653071404, + 0.00246580527164042, + 0.021292032673954964, + -0.02538866177201271, + -0.03235553950071335, + -0.0005406180280260742, + 0.012648667208850384, + 0.05771810561418533, + 0.04905517399311066, + 0.04485417157411575, + -0.1159580796957016, + 0.051794957369565964, + -0.06465889513492584, + -0.01748242788016796, + 0.010619922541081905, + 0.04122721776366234, + 0.009008669294416904, + -0.05912713706493378, + -0.010750388726592064, + 0.06131896376609802, + 0.04214048013091087, + 0.04000084102153778, + 0.040366142988204956, + 0.023770883679389954, + -0.015799418091773987, + -0.005058814771473408, + -0.011885441839694977, + 0.0035388870164752007, + 0.02568873204290867, + -0.0067124697379767895, + -0.01876099407672882, + -0.05823997035622597, + 0.014677411876618862, + 0.009276124648749828, + -0.028232816606760025, + -0.014246874488890171, + -0.05239509791135788, + 0.021500777453184128, + 0.012315979227423668, + 0.04568915069103241, + 0.005551323294639587, + -0.10165901482105255, + 0.008454189635813236, + 0.010039350017905235, + -0.01433820091187954, + -0.01724758930504322, + 0.024697192013263702, + 0.010535120032727718, + -0.020548377186059952, + -0.007312612608075142, + -0.028415469452738762, + 0.05568283796310425, + -0.07379150390625, + 0.028702493757009506, + -0.052186354994773865, + 0.0003754971257876605, + 0.08073228597640991, + -0.04451495781540871, + 0.022453177720308304, + -0.024514539167284966, + -0.07227809727191925, + -0.027189090847969055, + 0.05510878935456276, + 0.043079834431409836, + -0.03457345813512802, + 0.038043852895498276, + 0.015473254024982452, + -0.03337317332625389, + 0.007430031895637512, + -0.1205504760146141, + 0.07384368777275085, + -0.019543789327144623, + -0.011774545535445213, + 0.12743908166885376, + 0.007358275819569826, + 0.10906948149204254, + -0.054273806512355804, + 0.0819847583770752, + -0.010946087539196014, + -0.07786203920841217, + 0.0027642459608614445, + 0.04840284213423729, + -0.04000084102153778, + -0.03955725580453873, + -0.012818273156881332, + 0.003516055643558502, + -0.04054879769682884, + 0.03311224281787872, + -0.008826017379760742, + 0.022296618670225143, + -0.10666890442371368, + 0.013398846611380577, + 0.06184082850813866, + 0.02041791006922722, + -0.010978704318404198, + -0.07619207352399826, + 1.1129096492368262e-05, + 0.06528513133525848, + 0.1099044606089592, + 0.020952820777893066, + 0.0025734396185725927, + -0.013072681613266468, + -0.07567021250724792, + -0.005339316092431545, + 0.005068599712103605, + -0.03814822435379028, + -0.01911325193941593, + 0.003173582721501589, + 0.038383062928915024, + -0.03178149089217186, + 0.009602288715541363, + -0.014781784266233444, + 0.02930263802409172, + 0.03642607480287552, + 0.005652434192597866, + -0.046837251633405685, + 0.06648541241884232, + 0.014638272114098072, + -0.03449517861008644, + -0.04174908250570297, + -0.017873825505375862, + -0.02914607897400856, + -0.014625225216150284, + 0.012694330886006355, + 0.018043432384729385, + -0.013646731153130531, + 0.04057488963007927, + -0.0413837768137455, + -0.014925297349691391, + 0.021683430299162865, + 0.040705356746912, + 0.029276544228196144, + -0.05025545880198479, + 0.05829215794801712, + 0.010085012763738632, + -0.05792685225605965, + 0.02883296087384224, + 0.0015044347383081913, + 0.01608644425868988, + -0.035904210060834885, + -0.02647152729332447, + -0.01108307670801878, + 0.018852319568395615, + 0.0014718181919306517, + 0.0015835296362638474, + 0.05766592174768448, + -0.014990529976785183, + 0.11366187781095505, + 0.005215373821556568, + 0.02953747659921646, + -0.050907786935567856, + 0.054743483662605286, + -0.05589158460497856, + 0.03339926525950432, + -0.05938807129859924, + 0.03647826239466667, + 0.005101216025650501, + -0.04094019532203674, + 0.09612726420164108, + -0.004579352680593729, + 0.0835503488779068, + -0.04287108778953552, + -0.025284288451075554, + 0.022975042462348938, + 0.03329489380121231, + -8.582208829466254e-05, + 0.05255165696144104, + -0.030555110424757004, + -0.056256890296936035, + 0.07055594772100449, + -0.03394722193479538, + -0.01461217924952507, + 0.021448591724038124, + 0.012987879104912281, + 0.007723580114543438, + -0.014064222574234009, + -0.043888721615076065, + 0.07775766402482986, + -0.03814822435379028, + -0.01797819882631302, + 0.04247969016432762, + -0.03204242140054703, + 0.027684859931468964, + -0.011807162314653397, + 0.005062076263129711, + -0.0029273282270878553, + 0.10614704340696335, + 0.06147552281618118, + 0.020952820777893066, + -0.019830813631415367, + 0.015068809501826763, + -0.016960565000772476, + -0.027919698506593704, + 0.01872185431420803, + 0.018747948110103607, + -0.04751567542552948, + 0.03459955379366875, + 0.0624670647084713, + -0.024318840354681015, + 0.017991244792938232, + -0.01476873829960823, + -0.04751567542552948, + -0.04360169917345047, + -0.0163995623588562, + -0.06523294001817703, + 0.025323428213596344, + 0.009439206682145596, + 0.0421665720641613, + 0.009569672867655754, + 0.03799166530370712, + 0.04104456678032875, + 0.06893817335367203, + -0.008852110244333744, + -0.02810235135257244, + -0.003600858384743333, + -0.05341273173689842, + -0.016308235004544258, + 0.021292032673954964, + 0.011650603264570236, + -0.049159545451402664, + -0.022035688161849976, + 0.0048402841202914715, + -0.040444422513246536, + 0.0030023460276424885, + -0.08224569261074066, + -0.012785656377673149, + -0.016112536191940308, + -0.03593030571937561, + 0.003956377971917391, + -0.00033737660851329565, + 0.028545934706926346, + -0.038043852895498276, + 0.023966582491993904, + -0.01976558193564415, + 0.08918647468090057, + -0.002138009760528803, + 0.04495854303240776, + -0.09257858991622925, + -0.05364757031202316, + -0.08652497082948685, + -0.029902780428528786, + -0.045558687299489975, + -0.02073102816939354, + -0.03561718761920929, + 0.05422162264585495, + -0.061945199966430664, + -0.04367997869849205, + -0.0632498636841774, + -0.02578005939722061, + 0.01767812669277191, + 0.06058835610747337, + 0.025440847501158714, + 0.008010605350136757, + -0.02267497032880783, + 0.04952485114336014, + 0.052342914044857025, + -0.024736331775784492, + -0.011115693487226963, + 0.002668027300387621, + -0.04360169917345047, + 0.02367955818772316, + -0.008141071535646915, + 0.0523168183863163, + 0.01020895503461361, + -0.04775051400065422, + 0.04983796924352646, + 0.06716383993625641, + 0.0067646559327840805, + -0.06940785050392151, + 0.01778250001370907, + -0.043888721615076065, + -0.02173561602830887, + -0.026575900614261627, + 0.07467867434024811, + -0.015538486652076244, + -0.02627582848072052, + -0.0008455819915980101, + 0.06298892945051193, + -0.04902907833456993, + -0.007690963800996542, + 0.03608686476945877, + -0.03603467717766762, + 0.030476830899715424, + 0.028572028502821922, + 0.03799166530370712, + -0.05808341130614281, + 0.024397119879722595, + -0.028780773282051086, + 0.005088169593364, + 0.04981187358498573, + -0.04762004688382149, + -0.045950084924697876, + 0.07060813903808594, + -0.020548377186059952, + -0.05030764639377594, + -0.052264634519815445, + 0.012381212785840034, + -0.013516265898942947, + 0.04201001301407814, + 0.02294894866645336, + 0.04884642735123634, + 0.033425360918045044, + 0.02995496615767479, + -0.0026223643217235804, + -0.002213027561083436 + ] + }, + { + "id": "9950e954-dea7-4705-b03f-4943c4f36946", + "productId": "6a02b29a-621e-4bd7-bfcf-386489663edf", + "category": "Electronics", + "docType": "customerRating", + "userName": "charles29", + "reviewDate": "2022-06-02T06:35:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "28f4b2fe-b194-444d-b29b-d982c5878a4d", + "productId": "6a02b29a-621e-4bd7-bfcf-386489663edf", + "category": "Electronics", + "docType": "customerRating", + "userName": "samuel25", + "reviewDate": "2021-01-30T06:14:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand 3000 (Gold)", + "description": "This Basic Stand 3000 (Gold) is a basic Stand used by the player to deal damage to enemies in an area, while also granting you an extra", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-10-24T14:08:17", + "price": 987.17, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-07-16T13:34:08", + "newPrice": 921.15 + }, + { + "priceDate": "2022-01-08T13:34:08", + "newPrice": 903.67 + }, + { + "priceDate": "2022-07-03T13:34:08", + "newPrice": 1015.5 + }, + { + "priceDate": "2022-12-26T13:34:08", + "newPrice": 930.21 + }, + { + "priceDate": "2024-03-13T13:34:08", + "newPrice": 987.17 + } + ], + "descriptionVector": [ + 0.015368711203336716, + -0.06557316333055496, + -0.01417570561170578, + 0.01564941741526127, + 0.019874058663845062, + -0.06624685972929001, + -0.1157635897397995, + 0.03419011831283569, + 0.008540512062609196, + 0.028702296316623688, + -0.02471625618636608, + 0.021586371585726738, + 0.013880963437259197, + -0.06007130816578865, + 0.10358089953660965, + 0.009754570201039314, + -0.0008052783668972552, + 0.033460281789302826, + 0.0012324793497100472, + 0.00327725475654006, + 0.014975721016526222, + -0.04221833869814873, + -0.06607843935489655, + 0.07371366769075394, + -0.012140579521656036, + -0.05687124654650688, + 0.004291309043765068, + -0.006722933612763882, + -0.038681432604789734, + 0.038849856704473495, + -0.010807221755385399, + -0.005873795133084059, + 0.052913278341293335, + -0.0030860230326652527, + -0.051958873867988586, + 0.008028221316635609, + -0.03048478625714779, + 0.05462559312582016, + -0.061755549162626266, + -0.06663985550403595, + 0.026779452338814735, + -0.003701824229210615, + -0.026723310351371765, + -0.011066875420510769, + 0.08988239616155624, + -0.018891584128141403, + -0.0016438906313851476, + -0.05782565101981163, + -0.02506713941693306, + -0.01927053928375244, + 0.02682155929505825, + -0.015691524371504784, + -0.004280782304704189, + 0.032056745141744614, + 0.07781199365854263, + -0.008175592869520187, + 0.013052877970039845, + 0.15068353712558746, + -0.0012956385035067797, + 0.011010734364390373, + -0.01190197840332985, + -0.03828844055533409, + -0.009684393182396889, + 0.029951442033052444, + -0.06119413673877716, + -0.014344129711389542, + 0.03491995856165886, + 0.02734086662530899, + 0.016744175925850868, + 0.04710264131426811, + -0.037474390119314194, + 0.05661861225962639, + -0.09487897902727127, + 0.05451330915093422, + -0.0018842460121959448, + 0.03461118042469025, + 0.09734920412302017, + 0.03795159235596657, + 0.0613064207136631, + 0.05274485424160957, + 0.028028598055243492, + -0.0024544321931898594, + 0.02961459383368492, + -0.040899015963077545, + 0.0741628035902977, + -0.027579467743635178, + -0.012779188342392445, + -0.09033152461051941, + -0.06753811240196228, + -0.009144032374024391, + -0.06029587239027023, + 0.056197550147771835, + -0.06388892233371735, + 0.007565055042505264, + -0.043144673109054565, + 0.07786813378334045, + -0.06961534917354584, + 0.0476079136133194, + -0.005140447989106178, + 0.04039374366402626, + 0.005126412492245436, + 0.03899021074175835, + -0.08544722199440002, + -0.030232148244976997, + 0.013719556853175163, + 0.01174057275056839, + -0.0032369031105190516, + 0.017389802262187004, + 0.05482208728790283, + -0.13608677685260773, + 0.0043439413420856, + -0.005838706623762846, + 0.04895531013607979, + 0.0394112691283226, + -0.03514452278614044, + 0.06663985550403595, + 0.006207134574651718, + -0.011733554303646088, + 0.025628553703427315, + -0.018779302015900612, + 0.011361617594957352, + 0.05979060009121895, + 0.03598664328455925, + -0.03688490763306618, + -0.0014324832009151578, + -0.07595932483673096, + -0.0228495541960001, + 0.007705408614128828, + 0.05687124654650688, + -0.026147861033678055, + -0.01743190735578537, + 0.024898715317249298, + 0.06136256083846092, + 0.07101888209581375, + -0.024196946993470192, + 0.12553219497203827, + -0.00568431755527854, + 0.01622486673295498, + -0.02684962935745716, + 0.15551170706748962, + -0.07348910719156265, + -0.0848296731710434, + 0.04452013969421387, + 0.022175855934619904, + -0.01223181001842022, + 0.014224830083549023, + -0.013923069462180138, + 0.033488351851701736, + 0.03073742240667343, + -0.024337301030755043, + 0.03188832104206085, + -0.0998755693435669, + -0.027382971718907356, + -0.05782565101981163, + 0.02443554811179638, + -0.023495180532336235, + -0.048702672123909, + -0.04729913920164108, + -0.03795159235596657, + 0.017235413193702698, + -0.010210718959569931, + 0.01795121654868126, + -0.05878005549311638, + -0.0016298552509397268, + 0.0065159122459590435, + 0.003701824229210615, + 0.06624685972929001, + 0.0815734714269638, + -0.017389802262187004, + 0.06007130816578865, + -0.006172046065330505, + -0.022807447239756584, + -0.047635987401008606, + 0.06355207413434982, + -0.03270237147808075, + 0.03289886564016342, + 0.03343220800161362, + -0.029867229983210564, + 0.03186025097966194, + -0.011565130203962326, + -0.016744175925850868, + 0.038681432604789734, + -0.048618461936712265, + -0.011516006663441658, + 0.021081099286675453, + 0.013494991697371006, + -0.00706679979339242, + -0.007901903241872787, + 0.002489520702511072, + -0.12104088068008423, + 0.039916541427373886, + -0.0719732865691185, + 0.01573362946510315, + -0.0014438868965953588, + -0.002156181028112769, + 0.018933691084384918, + -0.05917304754257202, + -0.015186251141130924, + -0.0035807692911475897, + -0.05100446939468384, + -0.10301948338747025, + 0.08398754894733429, + 0.08853500336408615, + 0.016154689714312553, + -0.010533532127737999, + -0.043088532984256744, + -0.015593276359140873, + 0.024210982024669647, + -0.03275851160287857, + 0.047664057463407516, + 0.032253239303827286, + -0.053895752876996994, + -0.08561564981937408, + 0.03388134017586708, + 0.01757226139307022, + 0.05995902419090271, + 0.026204003021121025, + -0.010821256786584854, + -0.0038983190897852182, + -0.03469539061188698, + 0.04724299535155296, + -0.028084740042686462, + -0.0009394913795404136, + -0.025221528485417366, + -0.03376905620098114, + 0.00811243336647749, + 0.017305590212345123, + -0.027046123519539833, + -0.011579166166484356, + 0.04289203882217407, + -0.0547378733754158, + 0.029979512095451355, + -0.03396555408835411, + 0.047523703426122665, + -0.0018403856083750725, + 0.012547604739665985, + 0.007712426129728556, + -0.04732720926403999, + -0.05543964356184006, + 0.005736950319260359, + -0.0651240348815918, + 0.06916621327400208, + -0.004624648485332727, + 0.012070403434336185, + 0.010154577903449535, + 0.042246412485837936, + 0.07640846073627472, + -0.04915180429816246, + 0.05114482343196869, + -0.05142553150653839, + 0.024379407986998558, + -0.007544002030044794, + 0.0008921221015043557, + 0.0067018806003034115, + 0.03194446116685867, + 0.05816249921917915, + 0.08831043541431427, + -0.003912354353815317, + -0.04244290664792061, + -0.005891339387744665, + 0.02950230985879898, + -0.011972155421972275, + -0.10734237730503082, + 0.07848569005727768, + 0.017277518287301064, + 0.005687826778739691, + -0.004631666466593742, + -0.027158407494425774, + -0.05549578368663788, + 0.010035277344286442, + 0.015621347352862358, + -0.038877926766872406, + -0.01096160989254713, + -0.02356535755097866, + 0.03632349148392677, + 0.06220468133687973, + 0.044239431619644165, + 0.03567786514759064, + 0.0476079136133194, + -0.10374932736158371, + 0.008652795106172562, + -0.028772473335266113, + 0.045306116342544556, + 0.036463845521211624, + 0.013158142566680908, + -0.02279341220855713, + 0.017010847106575966, + -0.02656892128288746, + -0.002803561743348837, + -0.05563613772392273, + 0.005561508238315582, + 0.05861163139343262, + -0.019930200651288033, + 0.03710947185754776, + 0.11121613532304764, + -0.013824822381138802, + 0.010337037034332752, + 0.055130865424871445, + 0.019930200651288033, + 0.02077232114970684, + -0.001120196538977325, + -0.0009272104944102466, + -0.04892724007368088, + -0.09010696411132812, + 0.010035277344286442, + 0.06119413673877716, + -0.03581821918487549, + -0.05344662070274353, + -0.04808511584997177, + 0.055130865424871445, + 0.060408156365156174, + 0.0009886150946840644, + -0.057348448783159256, + -0.0514536015689373, + 0.030821634456515312, + -0.03817616030573845, + 0.0632152259349823, + -0.008968589827418327, + -0.03680069372057915, + 0.061530984938144684, + -0.012954629957675934, + -0.044014863669872284, + 0.04353766143321991, + -0.023846063762903214, + 0.05468173325061798, + 0.028197022154927254, + 0.03609892725944519, + 0.015088004060089588, + -0.015663452446460724, + -0.08780516684055328, + -0.010814239270985126, + -0.029137391597032547, + -0.010708973743021488, + -0.03705333173274994, + -0.04805704578757286, + -0.0629345178604126, + 0.039860401302576065, + 0.016210831701755524, + -0.051930803805589676, + 0.009010695852339268, + 0.0036597182042896748, + 0.0966193675994873, + -0.07511720806360245, + -0.02466011419892311, + -0.007508913520723581, + -0.04474470391869545, + -0.005354486871510744, + -0.04659736901521683, + 0.038316510617733, + 0.035341016948223114, + 0.001280725933611393, + -0.03354449197649956, + -0.015663452446460724, + -0.04600788652896881, + 0.10470373183488846, + -0.026316285133361816, + 0.0031684807036072016, + -0.026386462152004242, + -0.040955159813165665, + -0.01570555940270424, + 0.015944160521030426, + -0.0025403988547623158, + 0.0358462892472744, + 0.028126846998929977, + 0.03632349148392677, + 0.08381912112236023, + 0.04367801547050476, + 0.012407251633703709, + -0.0075299665331840515, + 0.011242317035794258, + -0.10021241754293442, + -0.035369087010622025, + 0.024912750348448753, + 0.011038804426789284, + 0.006947499234229326, + -0.007073817774653435, + 0.042077988386154175, + 0.04137621819972992, + -0.04272361099720001, + -0.0017219623550772667, + -0.004757984541356564, + 0.0026965420693159103, + 0.018288064748048782, + -0.09392458200454712, + 0.1070055291056633, + -0.055018581449985504, + -0.061811693012714386, + 0.025081174448132515, + -0.02071618102490902, + -0.04710264131426811, + 0.017165236175060272, + 0.018288064748048782, + -0.07741900533437729, + 0.0654047429561615, + -0.023874133825302124, + -0.03461118042469025, + 0.0012140580220147967, + -0.04249904677271843, + 0.0074808429926633835, + 0.01315112505108118, + -0.02953038178384304, + 0.03270237147808075, + 0.017389802262187004, + 0.06304680556058884, + -0.002378992270678282, + -0.02310219034552574, + -0.03783930838108063, + 0.06192397326231003, + 0.015382746234536171, + -0.0798892229795456, + 0.03623928129673004, + -0.0785418301820755, + -0.028211059048771858, + 0.03710947185754776, + -0.024674149230122566, + 0.03935512900352478, + 0.030990058556199074, + 0.011207228526473045, + 0.01070195622742176, + -0.01521432213485241, + -0.037698958069086075, + 0.005305363330990076, + -0.04036567360162735, + 0.022653058171272278, + -0.08634548634290695, + -0.02033722586929798, + -0.005231677554547787, + -0.029053179547190666, + 0.03287079557776451, + 0.01225988008081913, + 0.007607161067426205, + -0.12766556441783905, + 0.02197936177253723, + 0.04710264131426811, + -0.022133750841021538, + -0.03466732054948807, + 0.032197099179029465, + 0.014961685985326767, + -0.02131970040500164, + 0.020954780280590057, + 0.005687826778739691, + -0.03155147284269333, + 0.0826401561498642, + -0.018779302015900612, + 0.035341016948223114, + -0.03593050315976143, + -0.002561451867222786, + -0.031158482655882835, + 0.03817616030573845, + 0.044014863669872284, + -0.060576580464839935, + -0.043256957083940506, + -0.08550336956977844, + 0.035425230860710144, + 0.010477390140295029, + 0.030147936195135117, + 0.01178267877548933, + 0.03511645272374153, + 0.05005006492137909, + 0.03472346067428589, + -0.03609892725944519, + -0.013754645362496376, + 0.04059023782610893, + -0.016084514558315277, + 0.030035654082894325, + 0.05159395560622215, + -0.008182610385119915, + -0.06007130816578865, + -0.021516194567084312, + 0.0025667150039225817, + -0.059509895741939545, + -0.08791744709014893, + -0.06237310543656349, + -0.016926635056734085, + -0.015452923253178596, + -0.01200022641569376, + -0.018512628972530365, + -0.03593050315976143, + -0.0048632496036589146, + -0.00825278740376234, + 0.0027509289793670177, + -0.046457014977931976, + -0.03388134017586708, + -0.0003660156799014658, + -0.05487822741270065, + -0.023874133825302124, + 0.06012744829058647, + 0.05434488505125046, + -0.032084815204143524, + 0.0648433268070221, + 0.03946740925312042, + 0.011003715917468071, + 0.0022684638388454914, + 0.006407138425856829, + -0.03239359334111214, + -0.043172743171453476, + -0.0032053235918283463, + 0.06882936507463455, + -0.018835442140698433, + 0.03918670490384102, + -0.0019474051659926772, + -0.06562931090593338, + 0.07247856259346008, + 0.026204003021121025, + 0.04275168478488922, + 0.009024731814861298, + 0.005982568953186274, + -0.027789996936917305, + -0.019467033445835114, + -0.08213488012552261, + -0.02506713941693306, + 0.016870493069291115 + ] + }, + { + "id": "c187dce7-5246-4baf-99f1-9837fac64068", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "susan36", + "reviewDate": "2022-12-21T06:38:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "41461330-eaab-4bfa-b806-4ba36060af49", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "hbailey", + "reviewDate": "2022-12-27T07:12:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "41a05c3a-47e6-4463-92a2-09b1e4e52206", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "myersjoseph", + "reviewDate": "2021-07-16T13:34:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "53d5bc8c-d38d-4764-ae0e-4b6c725f1cd5", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "umiller", + "reviewDate": "2022-02-15T15:48:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "600d8053-fa02-4430-b50c-e1f268ff46ab", + "productId": "fd1ba81b-7e51-4cb8-87d3-1799564474bd", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthonystanley", + "reviewDate": "2022-02-04T19:16:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "63208030-1468-47a0-8224-4b5ef87fe94c", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Red)", + "description": "This Premium Computer Ultra (Red) is an exclusive Computer Ultra (Purple) to the PC system with three premium-grade computers. Features include a premium USB port, built-in HDMI to output video to AV inputs, USB 3.0,", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-12-13T13:45:55", + "price": 227.89, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-10-26T00:04:15", + "newPrice": 206.89 + }, + { + "priceDate": "2022-02-01T00:04:15", + "newPrice": 231.18 + }, + { + "priceDate": "2022-05-10T00:04:15", + "newPrice": 207.65 + }, + { + "priceDate": "2022-08-16T00:04:15", + "newPrice": 216.87 + }, + { + "priceDate": "2022-11-22T00:04:15", + "newPrice": 213.31 + }, + { + "priceDate": "2023-03-24T00:04:15", + "newPrice": 227.89 + } + ], + "descriptionVector": [ + -0.030593769624829292, + 0.029301075264811516, + -0.0575249083340168, + 0.01310873031616211, + 0.028843246400356293, + 0.04042363539338112, + -0.07788484543561935, + 0.0638267919421196, + 0.04863763228058815, + 0.101045623421669, + 0.07222930341959, + -0.07589194178581238, + 0.04435558244585991, + -0.05432010069489479, + 0.04015432298183441, + -0.016427993774414062, + -0.09011158347129822, + 0.013883000239729881, + -0.0048442380502820015, + -0.013593491166830063, + 0.0743299350142479, + 0.015364212915301323, + -0.035360582172870636, + 0.020763905718922615, + 0.004510965198278427, + 0.01774761825799942, + -0.003440452739596367, + -0.011028300039470196, + 0.03124011866748333, + 0.03202112019062042, + 0.07917754352092743, + 0.010711858980357647, + 0.01310873031616211, + -0.006110001355409622, + 0.008160133846104145, + -0.057363320142030716, + 0.0033950062934309244, + -0.008779549971222878, + 0.10519301891326904, + -0.038457661867141724, + 0.04796435311436653, + -0.00923064723610878, + 0.027604414150118828, + 0.01742444559931755, + 0.06883598119020462, + -0.00817359983921051, + -0.029678111895918846, + 0.04475954920053482, + -0.032882917672395706, + -0.00016021922056097537, + -0.015593127347528934, + 0.05014577507972717, + 0.05507417395710945, + 0.0575249083340168, + 0.0002518481924198568, + -0.047344937920570374, + 0.042793575674295425, + 0.19002608954906464, + 0.036814864724874496, + -0.03202112019062042, + 0.025800028815865517, + -0.0017942868871614337, + -0.04960715398192406, + 0.03697644919157028, + -0.02229898050427437, + 0.016077889129519463, + -0.022460566833615303, + 0.008550635538995266, + 0.013270317576825619, + 0.046294622123241425, + -0.027429362758994102, + 0.0055208830162882805, + 0.0675971508026123, + 0.028950970619916916, + 0.03926559537649155, + 0.08170906454324722, + 0.05423930659890175, + 0.0426858514547348, + 0.033583126962184906, + -0.0004460469353944063, + 0.042389608919620514, + 0.012590305879712105, + 0.007311803288757801, + 0.02698499895632267, + 0.0575249083340168, + 0.007022293750196695, + -0.012920212931931019, + -0.08973454684019089, + -0.0009055594564415514, + 0.04392468184232712, + -0.0011908612214028835, + 0.07400675863027573, + 0.1267917901277542, + -0.06528107076883316, + -0.012751893140375614, + 0.05967939645051956, + -0.04836831986904144, + 0.0383499376475811, + -0.07562263309955597, + 0.023887917399406433, + 0.031805671751499176, + -0.06959005445241928, + -0.006843875162303448, + -0.06414996832609177, + 0.1066472977399826, + -0.021854616701602936, + 0.05897918716073036, + 0.0012220003409311175, + -0.004187791608273983, + -0.07707691192626953, + -0.07255247980356216, + -0.010361754335463047, + -0.009412432089447975, + -0.021140942350029945, + 0.03870004415512085, + 0.03562989458441734, + -0.04195870831608772, + -0.0017740885959938169, + 0.023968711495399475, + -0.003086981363594532, + 0.040235117077827454, + -0.004564827773720026, + 0.06528107076883316, + -0.01295387651771307, + 0.018286241218447685, + -0.037811316549777985, + -0.07330655306577682, + 0.06797418743371964, + 0.05246185138821602, + -0.03342153877019882, + -0.0844021812081337, + 0.08197838068008423, + -0.019350022077560425, + 0.04691403731703758, + -0.05687855929136276, + 0.03436413034796715, + -0.0034354031085968018, + 0.11461891233921051, + 0.0005158995627425611, + -0.014475485309958458, + -0.07734622061252594, + 0.012388322502374649, + -0.02846621163189411, + -0.002208353253081441, + -0.13691788911819458, + 0.04357457906007767, + -0.013250119052827358, + 0.04282050579786301, + -0.011263947933912277, + 0.012024751864373684, + 0.004611956886947155, + -0.025746166706085205, + -0.010018382221460342, + -0.010058779269456863, + 0.05903305113315582, + -0.015835508704185486, + -0.016899287700653076, + 0.024547729641199112, + -0.08170906454324722, + 0.0467524528503418, + -0.0003080248716287315, + 0.051303815096616745, + -0.044517166912555695, + 0.022931862622499466, + 0.06743556261062622, + 0.000681273580994457, + 0.03703031316399574, + -0.026554100215435028, + -0.014502416364848614, + 0.005190976429730654, + -0.01186316553503275, + -0.07276792824268341, + 0.008570834062993526, + -0.019807850942015648, + 0.08521011471748352, + 0.022891465574502945, + 0.10519301891326904, + 0.04958022013306618, + -0.022541360929608345, + -0.10583936423063278, + -0.012556642293930054, + 0.013445369899272919, + -0.04788355901837349, + 0.011432266794145107, + 0.08623349666595459, + 0.040262047201395035, + 0.031105462461709976, + 0.04648314043879509, + -0.016199078410863876, + 0.018340103328227997, + 0.01881139911711216, + -0.024736247956752777, + 0.02628478966653347, + -0.011849699541926384, + -0.036680206656455994, + 0.05211174860596657, + 0.031105462461709976, + 0.04648314043879509, + -0.00042963578016497195, + -0.027604414150118828, + 0.04341299086809158, + 0.03552216663956642, + 0.04866456240415573, + 0.01847475953400135, + -0.004945229738950729, + -0.026702221482992172, + 0.008469842374324799, + 0.04430171847343445, + 0.0069078365340828896, + 0.0846714898943901, + -0.031428635120391846, + -0.015175695531070232, + -0.022810671478509903, + -0.030405253171920776, + 0.07691532373428345, + -0.0013490816345438361, + 0.016050957143306732, + 0.02693113684654236, + -0.042093366384506226, + -0.05426624044775963, + 0.06862053275108337, + 0.04152781143784523, + -0.047344937920570374, + -0.03328688442707062, + -0.039534907788038254, + -0.012314261868596077, + 0.07104433327913284, + -0.004480667877942324, + -0.023901382461190224, + 0.01667037233710289, + -0.06495790183544159, + -0.042093366384506226, + 0.029920492321252823, + 0.0110215675085783, + -0.009641346521675587, + 0.04750652238726616, + 0.03517206385731697, + -0.021544909104704857, + -0.04481340944766998, + 0.0832710713148117, + -0.02347048558294773, + 0.02631171979010105, + -0.07190613448619843, + -0.0034455021377652884, + -0.017101271077990532, + -0.039534907788038254, + 0.0979754701256752, + -0.03482195734977722, + -0.042739711701869965, + -0.01809772290289402, + 0.0298127681016922, + -0.0223259124904871, + -0.07939299196004868, + 0.047021765261888504, + -0.013586757704615593, + 0.05353909730911255, + 0.039292529225349426, + -0.03756893426179886, + -0.030001286417245865, + -0.06463472545146942, + -0.026729151606559753, + 0.016845425590872765, + -0.046725522726774216, + -0.015216091647744179, + -0.06081050634384155, + 0.02589428797364235, + 0.079500712454319, + -0.027954518795013428, + -0.019403884187340736, + 0.033960163593292236, + 0.05865601450204849, + 0.02340315654873848, + -0.0034976813476532698, + -0.022514428943395615, + 0.04677938297390938, + -0.004238287452608347, + -0.006806844845414162, + 0.06953619420528412, + -0.035306718200445175, + -0.011257214471697807, + 0.07029026746749878, + 0.043790027499198914, + 0.013566560111939907, + -0.05205788463354111, + 0.028924040496349335, + -0.047721974551677704, + -0.0008256076253019273, + -0.001375171123072505, + 0.014233105815947056, + -0.0717984065413475, + 0.04150088131427765, + 0.012812487781047821, + 0.03934638947248459, + -0.0347142331302166, + 0.013310713693499565, + 0.000174947184859775, + 0.030997738242149353, + -0.015121832489967346, + 0.0230934489518404, + -0.013755077496170998, + 0.02765827625989914, + -0.03686872497200966, + -0.037434279918670654, + 0.0012674465542659163, + -0.009170051664113998, + 0.11009448766708374, + -0.054508619010448456, + 0.009863528423011303, + 0.002531526843085885, + -0.0159566979855299, + 0.02628478966653347, + -0.045594412833452225, + -0.0802009254693985, + -0.01632026769220829, + 0.07616125047206879, + -0.03328688442707062, + 0.032802123576402664, + 0.037461210042238235, + 0.005036122631281614, + -0.014946780167520046, + -0.0460522435605526, + -0.028897108510136604, + -0.12259053438901901, + 0.06323430687189102, + 0.054131582379341125, + -0.005190976429730654, + -0.09754457324743271, + 0.08009319752454758, + -0.04322447255253792, + -0.08494080603122711, + 0.008570834062993526, + -0.07686146348714828, + 0.025059422478079796, + 0.015323816798627377, + 0.024251487106084824, + -0.04230881482362747, + -0.029408801347017288, + 0.0839712843298912, + 0.014421623200178146, + 0.04034284129738808, + 0.0710982009768486, + 0.04756038635969162, + -0.02586735598742962, + 0.010287693701684475, + -0.013425171375274658, + 0.011412069201469421, + -0.0011168005876243114, + -0.022514428943395615, + 0.01117642130702734, + 0.057363320142030716, + 0.0014416574267670512, + -0.03167101740837097, + -0.011109093204140663, + -0.011311077512800694, + 0.0874723270535469, + -0.029301075264811516, + 0.030674563720822334, + -0.02550378628075123, + -0.0006804319564253092, + 0.004177692346274853, + -0.03239815682172775, + -0.007049224805086851, + 0.04362843930721283, + 0.07966230064630508, + -0.021464115008711815, + 0.05154619365930557, + 0.0071906135417521, + 0.07018253952264786, + 0.037380415946245193, + 0.03398709371685982, + -0.010065511800348759, + -0.0013844287022948265, + -0.08774164319038391, + 0.04109691455960274, + -0.04694097116589546, + 0.03589920327067375, + -0.0206427164375782, + 0.03595306724309921, + 0.001294377725571394, + 0.013384774327278137, + -0.027819864451885223, + 0.038834698498249054, + -0.006298519670963287, + 0.004962061997503042, + 0.14068825542926788, + -0.051573123782873154, + -0.0035145131405442953, + -0.06318044662475586, + -0.00019851193064823747, + -0.023537812754511833, + -0.01226713228970766, + 0.023214640095829964, + -0.010159770958125591, + 0.021073613315820694, + -0.014165777713060379, + 0.0006930559757165611, + 0.008617963641881943, + 0.024924766272306442, + -0.03727269172668457, + 0.06355748325586319, + -0.00032191124046221375, + 0.014717865735292435, + 0.012401788495481014, + -0.0631265863776207, + -0.039992738515138626, + -0.06932074576616287, + -0.019780918955802917, + 0.025126749649643898, + 0.006503869313746691, + -0.005295334849506617, + 0.012570107355713844, + -0.028520073741674423, + -0.03544137626886368, + 0.04836831986904144, + 0.03431026637554169, + -0.004733147099614143, + 0.07659214735031128, + 0.06474245339632034, + 0.0294626634567976, + -0.022904930636286736, + 0.08413287252187729, + 0.0419856421649456, + -0.012098812498152256, + -0.019269227981567383, + -0.01080611813813448, + -0.03185953572392464, + -0.015754714608192444, + -0.016885822638869286, + 0.004288783296942711, + -0.0166569072753191, + 0.03762279823422432, + -0.08284017443656921, + 0.025624975562095642, + -0.0010511558502912521, + -0.0213429257273674, + 0.05337751284241676, + -0.006860706955194473, + 0.007055957801640034, + -0.04901466891169548, + 0.027537086978554726, + -0.009412432089447975, + -0.0717984065413475, + 0.02697153203189373, + -0.00780329667031765, + -0.017855342477560043, + -0.0011925443541258574, + -0.028600865975022316, + -0.027981450781226158, + 0.029354937374591827, + 0.032425086945295334, + -0.016024025157094002, + 0.019026847556233406, + -0.002146075014024973, + -0.007298337761312723, + 0.01886526122689247, + 0.02520754374563694, + -0.031751807779073715, + 0.05141153931617737, + -0.03124011866748333, + 0.040612153708934784, + -0.04481340944766998, + 0.006463472731411457, + 0.05795580521225929, + -0.03980422019958496, + -0.08246313780546188, + 0.006726051215082407, + -0.04831445962190628, + -0.030001286417245865, + -0.008389049209654331, + 0.061726164072752, + -0.0661967322230339, + -0.06258796155452728, + 0.09458214789628983, + 0.0012674465542659163, + -0.005379494279623032, + -0.04731800779700279, + 0.03404095768928528, + 0.018191982060670853, + -0.007123285438865423, + 0.0025668737944215536, + 0.0312131866812706, + -0.0018902290612459183, + 0.04150088131427765, + -0.01456974446773529, + 0.027819864451885223, + 0.061941612511873245, + 0.004578293301165104, + 0.09555166959762573, + -0.022985724732279778, + 0.09178131073713303, + 0.058440566062927246, + 0.023995641618967056, + 0.06937460601329803, + -0.04723721370100975, + -0.060218021273612976, + -0.01772068813443184, + -0.00034253037301823497, + 0.03983115032315254, + 0.010179969482123852, + 0.07174454629421234, + -0.003928579390048981, + -0.030728425830602646, + -0.015175695531070232, + 0.0022554825991392136, + -0.014515882357954979, + 0.002258849097415805, + 0.044220924377441406, + 0.06301885843276978, + -0.05073826014995575, + -0.03759586438536644, + 0.016454923897981644, + -0.04888001084327698 + ] + }, + { + "id": "2a1c4333-e6a8-4876-a839-5cc4c6aa2da2", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "jlopez", + "reviewDate": "2022-11-24T04:56:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e171b15d-8888-4406-a82e-ed18a509b71a", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "aprilfuentes", + "reviewDate": "2021-11-24T16:43:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9223988d-7798-4e02-a8dc-70c956fbff78", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanie81", + "reviewDate": "2022-08-03T01:40:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3f6ba77d-b162-460c-9ed4-f4d249711462", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaron38", + "reviewDate": "2021-12-08T11:16:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c7647392-9f66-4be0-969d-068021123a70", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "kingbryce", + "reviewDate": "2021-11-04T01:58:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1c7e2880-1fa7-4eaa-9137-dafc02bc7dc7", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "bmayer", + "reviewDate": "2022-02-27T14:01:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "01e770ff-726d-4133-8b06-ddb0b83426ad", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "benjaminbaker", + "reviewDate": "2022-05-12T06:33:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "641c4e6a-436b-4d6c-88e4-09f1a2616eec", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "patricia20", + "reviewDate": "2021-11-27T13:09:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f2dee4ff-c72d-4ee4-8dda-9e597831e683", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamgordon", + "reviewDate": "2022-03-20T15:25:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b0f1fdaf-02cd-4861-94ee-811b1c9af4fc", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "alan88", + "reviewDate": "2022-05-15T18:27:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "17d2efa6-ef0e-4a19-ae24-d8e91cae756a", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "cynthiaanderson", + "reviewDate": "2022-11-04T09:21:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "439ec2a2-4682-4c24-920c-93686221428d", + "productId": "63208030-1468-47a0-8224-4b5ef87fe94c", + "category": "Electronics", + "docType": "customerRating", + "userName": "fraziernatalie", + "reviewDate": "2021-10-26T00:04:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Silver)", + "description": "This Luxe Filter 3000 (Silver) is made in Germany, and provides an unmatched contrast in ultra-low light. It is a light with exceptional strength, quality, and good color reproduction, which makes it perfect for every purpose. You can also filter yourself", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-09-18T18:32:49", + "price": 705.51, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-03-03T07:21:23", + "newPrice": 640.47 + }, + { + "priceDate": "2021-06-02T07:21:23", + "newPrice": 745.56 + }, + { + "priceDate": "2021-09-01T07:21:23", + "newPrice": 705.98 + }, + { + "priceDate": "2021-12-01T07:21:23", + "newPrice": 651.54 + }, + { + "priceDate": "2022-03-02T07:21:23", + "newPrice": 703.0 + }, + { + "priceDate": "2023-11-02T07:21:23", + "newPrice": 705.51 + } + ], + "descriptionVector": [ + 0.04059046879410744, + 0.019628316164016724, + -0.02908286079764366, + 0.036405883729457855, + 0.03726895526051521, + -0.02638903446495533, + -0.07547944039106369, + -0.0033247829414904118, + 0.0038543944247066975, + 0.03807971626520157, + -0.01689525879919529, + 0.022335218265652657, + -0.012573367916047573, + -0.00046381866559386253, + 0.04966578632593155, + -0.020792152732610703, + -0.049744244664907455, + -0.03159361332654953, + 0.004348044749349356, + -0.04961347579956055, + -0.0010273481020703912, + -0.07035332173109055, + -0.04644888639450073, + -0.0018896013498306274, + -0.04859348386526108, + 0.0003649251884780824, + 0.024427510797977448, + 0.009304162114858627, + -0.04982270672917366, + -0.0430489107966423, + 0.09844234585762024, + 0.04623965546488762, + -0.004331698641180992, + 0.015666037797927856, + -0.09608851373195648, + -0.09070086479187012, + 0.06151339039206505, + -0.031044384464621544, + 0.04461812973022461, + 0.071137934923172, + -0.016424493864178658, + 0.00381843326613307, + -0.08353476226329803, + -0.01497296616435051, + -0.008853010833263397, + -0.10053464025259018, + -0.020674461498856544, + -0.033450521528720856, + 0.008663397282361984, + -0.045271970331668854, + 0.01900062896311283, + -0.06119954586029053, + -0.0638149082660675, + -0.016869105398654938, + -0.002007292816415429, + -0.0013755186228081584, + 0.01599295809864998, + 0.2135184109210968, + 0.07626404613256454, + 0.029265936464071274, + 0.026336727663874626, + -0.06684873253107071, + -0.012854520231485367, + -0.008388783782720566, + -0.047364264726638794, + -0.05128731206059456, + -0.01765371486544609, + -0.038184333592653275, + 0.0163068026304245, + 0.014175279065966606, + -0.009761850349605083, + -0.004750157240778208, + 0.017588330432772636, + 0.036405883729457855, + 0.053614985197782516, + 0.03583050146698952, + 0.0845286026597023, + -0.036092039197683334, + 0.0009472525562159717, + 0.022805985063314438, + 0.07281176745891571, + 0.010579152032732964, + -0.03781818225979805, + -0.03823664039373398, + 0.035516660660505295, + -0.007224946282804012, + -0.010474537499248981, + -0.09692543745040894, + -0.007597635965794325, + 0.019183702766895294, + 0.01900062896311283, + 0.05455651879310608, + -0.021105997264385223, + -0.06721488386392593, + -0.04315352439880371, + 0.02934439666569233, + -0.014907581731677055, + -0.008683012798428535, + -0.04079969599843025, + 0.04950886219739914, + -0.0607810877263546, + -0.019209858030080795, + -0.004348044749349356, + 0.038027409464120865, + 0.00567207345739007, + 0.017536023631691933, + -0.027252105996012688, + -0.060990314930677414, + 0.00838224496692419, + -0.12553752958774567, + 0.03530742973089218, + -0.06569797545671463, + -0.03870740532875061, + -0.042342763394117355, + -0.01533911656588316, + 0.01794140599668026, + -0.023394441232085228, + -0.011612221598625183, + 0.02476750873029232, + -0.003256129566580057, + 0.02462366409599781, + 0.05408575385808945, + 0.04524581879377365, + 0.010716458782553673, + 0.0006771343760192394, + -0.053876522928476334, + 0.022622909396886826, + -0.07228869199752808, + 0.06773795932531357, + 0.020543692633509636, + -0.09917464852333069, + -0.0014294605934992433, + 0.024689046666026115, + 0.05659650266170502, + -0.06004878506064415, + 0.09765773266553879, + -0.006626681424677372, + 0.05821802839636803, + -0.051208849996328354, + 0.07636866718530655, + 0.0008908587624318898, + -0.04124430939555168, + -0.016699107363820076, + -0.00801609456539154, + 0.024937506765127182, + -0.09687312692403793, + -0.09425776451826096, + 0.01733987033367157, + -0.039988934993743896, + -0.04524581879377365, + 0.015914497897028923, + -0.1113099455833435, + -0.015809882432222366, + -0.04710272699594498, + 0.07375329732894897, + 0.015430654399096966, + -0.07364868372678757, + 0.016372185200452805, + 0.003619011491537094, + 0.0003577737952582538, + 0.0006783603457733989, + -0.01416220236569643, + -0.004995347466319799, + 0.06412875652313232, + 0.024728277698159218, + 0.05575958639383316, + -0.004596504382789135, + 0.020046774297952652, + -0.04404275119304657, + 0.05097346752882004, + -0.007159562315791845, + -0.005858418066054583, + -0.005551112815737724, + -0.05429498106241226, + -0.010324154049158096, + -0.012246447615325451, + 0.03800125792622566, + -0.0018274864414706826, + 0.01868678443133831, + -0.023159058764576912, + 0.009127624332904816, + 0.05081654712557793, + -0.023538285866379738, + -0.053144220262765884, + 0.03988431766629219, + -0.01718294993042946, + 0.04937809333205223, + -0.025172889232635498, + 0.0844762921333313, + 0.04616119712591171, + -0.023839052766561508, + 0.04017201066017151, + 0.018791398033499718, + 0.028978247195482254, + -0.03865509852766991, + -0.04404275119304657, + -0.039361245930194855, + -0.007761096116155386, + 0.060258012264966965, + -0.004554004408419132, + -0.03810587152838707, + 0.06763334572315216, + 0.055079590529203415, + -0.00799647904932499, + 0.025460580363869667, + -0.030312081798911095, + 0.027905946597456932, + 0.028115175664424896, + -0.06360568106174469, + -0.005354960449039936, + 0.016267571598291397, + 0.00016703602159395814, + -0.0229759830981493, + 0.014345278032124043, + 0.033738210797309875, + -0.005433421116322279, + -0.002626807428896427, + -0.04657965525984764, + 0.008944548666477203, + -0.02934439666569233, + 0.04181968793272972, + -0.04665811359882355, + 0.01454143039882183, + -0.004344775341451168, + 0.01424066349864006, + 0.029292089864611626, + 0.06287337839603424, + 0.014724506065249443, + 0.06705795973539352, + 0.04317967966198921, + -0.028978247195482254, + -0.040564313530921936, + -0.006466490216553211, + -0.0012063372414559126, + 0.018124481663107872, + 0.04438274726271629, + -0.050058089196681976, + -0.0890270322561264, + 0.030599772930145264, + 0.05424267426133156, + 0.0029161320999264717, + -0.013050672598183155, + -0.06852256506681442, + 0.007185715716332197, + 0.06439029425382614, + -0.04731195792555809, + 0.08934087306261063, + -0.08029171079397202, + -0.04932578653097153, + -0.014188355766236782, + -0.02342059463262558, + 0.02119753509759903, + -0.08369168639183044, + 0.0919562429189682, + -0.02772287093102932, + 0.041453536599874496, + -0.008284169249236584, + -0.008826857432723045, + -0.06067647412419319, + -0.03643203526735306, + 0.0011066263541579247, + -0.002384886145591736, + 0.025094429031014442, + -0.00897070299834013, + -0.09242700785398483, + -0.04762579873204231, + -0.031515151262283325, + -0.05696265399456024, + 0.009147239848971367, + -0.023485979065299034, + -0.039675090461969376, + -0.02566980943083763, + -0.019353702664375305, + 0.011638374999165535, + 0.0033329559955745935, + 0.005423613358289003, + -0.037896640598773956, + 0.07045793533325195, + 0.042918141931295395, + -0.047364264726638794, + 0.05727649852633476, + 0.0237344391644001, + 0.00971608143299818, + 0.02136753313243389, + 0.10058694332838058, + 0.01796755939722061, + 0.08332553505897522, + -0.046631962060928345, + -0.03363359719514847, + -0.02491135336458683, + -0.010605305433273315, + 0.04208122566342354, + -0.01371759083122015, + -0.1126699298620224, + 0.05118269845843315, + -0.03813202306628227, + 0.0430489107966423, + -0.005629573483020067, + -0.007290330249816179, + 0.04848887026309967, + -0.05118269845843315, + -0.00038004523958079517, + -0.02254444733262062, + -0.06418105959892273, + -0.017418332397937775, + 0.12198062986135483, + -0.032247453927993774, + 0.053876522928476334, + -0.05607343092560768, + -0.03250898793339729, + 0.008669935166835785, + 0.001387778203934431, + -0.02400905266404152, + -0.04775656759738922, + 0.05915956199169159, + -0.02284521423280239, + 0.03290129452943802, + -0.02253137156367302, + 0.025081351399421692, + 0.05264730006456375, + -0.05460882559418678, + 0.0032920909579843283, + -0.034339744597673416, + 0.07830403745174408, + 0.036562804132699966, + -0.015404500998556614, + -0.01371759083122015, + 0.010958380065858364, + -0.005979378707706928, + -0.03794894739985466, + -0.04937809333205223, + -0.00963762030005455, + -0.014306047931313515, + 0.0015226328978314996, + -0.04809656739234924, + -0.00037330252234824, + -0.0355951189994812, + 0.030312081798911095, + -0.014933735132217407, + -0.02637595869600773, + 0.0637102946639061, + 0.03023362159729004, + -0.00548572838306427, + -0.0016672953497618437, + 0.09174700826406479, + -0.019955236464738846, + 0.02089676819741726, + 0.0007891047280281782, + 0.029187476262450218, + 0.03546435013413429, + 0.0017261409666389227, + -0.028873631730675697, + -0.002226329641416669, + 0.021615993231534958, + 0.028115175664424896, + -0.00766955828294158, + 0.009042625315487385, + 0.0007543694227933884, + -0.009232238866388798, + 0.0622456930577755, + -0.03206437826156616, + -0.013292593881487846, + 0.06721488386392593, + 0.04848887026309967, + -0.10492844879627228, + 0.09410084038972855, + -0.006476297974586487, + 0.03083515539765358, + -0.038184333592653275, + 0.049875013530254364, + -0.05204576626420021, + -0.015783729031682014, + -0.04697195813059807, + 0.06538412719964981, + -0.03381667286157608, + 0.0014850370353087783, + 0.08630704879760742, + 0.02582673169672489, + -0.011880296282470226, + 0.04200276359915733, + -0.023394441232085228, + 0.09692543745040894, + 0.04984886199235916, + -0.014449892565608025, + 0.06920256465673447, + 0.014619891531765461, + -0.0756363645195961, + -0.018320633098483086, + -0.03841971606016159, + -0.011311454698443413, + -0.0011188859352841973, + -0.08411014080047607, + 0.02565673179924488, + 0.0009235508041456342, + -0.014332201331853867, + 0.0296320877969265, + 0.01811140403151512, + 0.020831383764743805, + 0.08918395638465881, + -0.04090431332588196, + 0.0035895886830985546, + -0.0042041996493935585, + -0.04168892279267311, + -0.04061662033200264, + -0.0016272475477308035, + 0.04074738919734955, + 0.044565822929143906, + 0.05748572573065758, + 0.021236766129732132, + -0.09849465638399124, + -0.033162832260131836, + -0.0800301730632782, + 0.03868125006556511, + -0.011161071248352528, + 0.029736701399087906, + 0.040668927133083344, + 0.06616874039173126, + -0.008656858466565609, + 0.046501193195581436, + -0.025029044598340988, + 0.055079590529203415, + 0.06104262173175812, + -0.03494127839803696, + 0.022884445264935493, + 0.011684143915772438, + 0.0274351816624403, + 0.0061624543741345406, + -0.003267571795731783, + 0.06606412678956985, + 0.010709920898079872, + 0.06036262959241867, + -0.04859348386526108, + -0.04937809333205223, + -0.0637626051902771, + -0.012494906783103943, + 0.015966804698109627, + 0.03739972040057182, + 0.05591650679707527, + -0.03083515539765358, + 0.07092870026826859, + -0.040852002799510956, + -0.018935244530439377, + 0.020870614796876907, + 0.034784357994794846, + -0.04718118906021118, + -0.04200276359915733, + -0.05026732012629509, + 0.05201961472630501, + -0.05235961079597473, + -0.032822832465171814, + 0.01645064726471901, + -0.01083415001630783, + -0.05591650679707527, + 0.008728781715035439, + 0.06580258905887604, + 0.011298377998173237, + 0.033110521733760834, + 0.10702074319124222, + 0.06758103519678116, + -0.025709040462970734, + -0.058374952524900436, + 0.06904564052820206, + 0.017444485798478127, + -0.023159058764576912, + -0.020962152630090714, + 0.03279668092727661, + -0.09567005932331085, + 0.039387401193380356, + 0.023302903398871422, + 0.0026071921456605196, + 0.008140324614942074, + 0.004616119433194399, + -0.06569797545671463, + 0.0355951189994812, + -0.021171381697058678, + -0.01766679249703884, + 0.011586068198084831, + -0.0007576385978609324, + 0.050921160727739334, + -0.07155638933181763, + -0.0054628439247608185, + 0.004240160807967186, + -0.02801056206226349, + 0.08280245959758759, + 0.06397183239459991, + 0.024218281731009483, + 0.05497497692704201, + 0.013612975366413593, + 0.019379856064915657, + 0.011337608098983765, + -0.006652835290879011, + -0.03154130280017853, + -0.0474427230656147, + -0.037896640598773956, + -0.10346384346485138, + 0.022348295897245407, + -0.035045892000198364, + 0.011383377015590668, + -0.03394744172692299, + 0.05445190146565437, + 0.016359109431505203, + 0.04940424859523773, + 0.01401835773140192, + 0.017091412097215652, + -0.030050545930862427, + 0.035098202526569366, + -0.02430981956422329, + -0.007741481065750122, + -0.06475644558668137, + -0.03198591619729996, + 0.02832440473139286, + 0.04061662033200264 + ] + }, + { + "id": "3a068468-9b2c-41b6-94f0-b35177783a5e", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "customerRating", + "userName": "ilee", + "reviewDate": "2021-03-03T07:21:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4237c194-19b1-4d7d-9cc8-3e27c6b2c5c3", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "customerRating", + "userName": "brownpeter", + "reviewDate": "2021-03-13T06:20:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "40b313d1-0936-4f58-bf7d-d78016ee3afc", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "customerRating", + "userName": "carterderrick", + "reviewDate": "2022-03-02T15:25:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f862cf53-3822-4003-b373-1731c4b54c93", + "productId": "6a9b1c46-9818-4ace-a3e9-4a31cd8d16b0", + "category": "Other", + "docType": "customerRating", + "userName": "frenchsteven", + "reviewDate": "2021-04-09T00:49:29", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6f0edecd-6476-4685-b6c1-287b31d51795", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "product", + "name": "Premium Filter + (Steel)", + "description": "This Premium Filter + (Steel) is rated 4.8 out of 5 by 47.\n\nRated 5 out of 5 by Chris from Great filter I did it before any of my friends in San Diego bought", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-03-06T21:54:31", + "price": 904.62, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-01-21T02:28:11", + "newPrice": 900.48 + }, + { + "priceDate": "2021-12-25T02:28:11", + "newPrice": 856.23 + }, + { + "priceDate": "2022-11-28T02:28:11", + "newPrice": 969.58 + }, + { + "priceDate": "2023-11-18T02:28:11", + "newPrice": 904.62 + } + ], + "descriptionVector": [ + 0.03490988537669182, + 0.02528117597103119, + -0.000676291820127517, + 0.02995598316192627, + -0.03409586474299431, + -0.02112966775894165, + -0.08758869022130966, + 0.02842097170650959, + 0.019850490614771843, + 0.0575861930847168, + -0.0025728887412697077, + -0.015850158408284187, + 0.0030816521029919386, + 0.0013642124831676483, + -0.01151258684694767, + 0.00020423212845344096, + -0.05056235194206238, + -0.01097184419631958, + -0.0043753646314144135, + -0.010407843627035618, + -0.003090373706072569, + -0.041329022496938705, + -0.06260986626148224, + 0.008035552687942982, + 0.004041034262627363, + -0.011291638016700745, + 0.014268630184233189, + 0.014222115278244019, + 0.007605284918099642, + -0.021536678075790405, + 0.042329106479883194, + 0.0521903932094574, + -0.003945095930248499, + 0.07544814795255661, + 0.018862036988139153, + 0.04332919046282768, + 0.03004901483654976, + -0.016047848388552666, + -0.026281259953975677, + 0.11433510482311249, + -0.0036253021098673344, + -0.01574549823999405, + 0.022187894210219383, + 0.039700981229543686, + 0.047096945345401764, + -0.07595981657505035, + -0.015082651749253273, + -0.02939779683947563, + -0.015629209578037262, + -0.0016309497877955437, + 0.02178088389337063, + -0.040980156511068344, + -0.004238725174218416, + -0.023513587191700935, + -0.0056167468428611755, + 0.007262232713401318, + -0.00440443679690361, + 0.14252349734306335, + 0.03909628093242645, + -0.021118037402629852, + -0.03560761734843254, + -0.06312153488397598, + 0.02267630770802498, + -0.0377473309636116, + -0.07902983576059341, + -0.0233740396797657, + -0.05898165702819824, + 0.019652800634503365, + 0.01075670961290598, + 0.05433010682463646, + -0.01636182889342308, + -0.008273945190012455, + 0.026234744116663933, + -0.009599637240171432, + 0.028583776205778122, + 0.044212985783815384, + 0.12838278710842133, + -0.04688762500882149, + -0.05926075205206871, + 0.0301187876611948, + 0.04246865585446358, + 0.03067697398364544, + -0.04865521565079689, + 0.07149432599544525, + 0.0503762885928154, + 0.03163054212927818, + -0.013501124456524849, + -0.1025201678276062, + -0.0004059204366058111, + -0.013722073286771774, + 0.04795748367905617, + 0.016233909875154495, + -0.003942188806831837, + -0.07684361189603806, + 0.013326691463589668, + 0.07298282533884048, + -0.04981810227036476, + 0.018827149644494057, + -0.05637678876519203, + 0.039794012904167175, + -0.07056401669979095, + -0.10847415030002594, + -0.01896669715642929, + 0.052376456558704376, + 0.022013461217284203, + 0.00744248041883111, + -0.00975081231445074, + -0.028118621557950974, + -0.005948170088231564, + -0.1069856584072113, + 0.022280925884842873, + -0.0341656357049942, + -0.043678056448698044, + 0.01412908360362053, + 0.0006937351427040994, + -0.00045279934420250356, + 0.009041450917720795, + 0.010855555534362793, + 0.08214637637138367, + 0.00045752356527373195, + -0.014664012007415295, + 0.06423790752887726, + 0.05437662452459335, + -0.02240884304046631, + 0.06340063363313675, + 0.03344464674592018, + 0.046538759022951126, + 0.012501041404902935, + 0.05405101552605629, + -0.04121273383498192, + -0.05874907970428467, + 0.024141546338796616, + -0.018187562003731728, + -0.010326441377401352, + -0.014605867676436901, + -0.002897043712437153, + -0.03130493313074112, + 0.12289395928382874, + 0.04893431067466736, + 0.014094197191298008, + -0.006297036074101925, + -0.08707702159881592, + 0.02663012593984604, + -0.008965862914919853, + 0.039073023945093155, + 0.03258410841226578, + -0.025211403146386147, + 0.01276850514113903, + 0.019048098474740982, + -0.016117621213197708, + 0.0602375753223896, + -0.06693580746650696, + -0.012535927817225456, + -0.01272199023514986, + 0.04067780822515488, + 0.037468235939741135, + -0.046003833413124084, + 0.05595814809203148, + -0.05865604802966118, + -0.028351198881864548, + -0.06814520806074142, + -0.035840194672346115, + -0.028374455869197845, + -0.004075921140611172, + 0.00597724225372076, + 0.14196531474590302, + -0.027816271409392357, + -0.03253759443759918, + -0.015885043889284134, + 0.005105076357722282, + 0.00971592590212822, + 0.013547640293836594, + 0.04595731571316719, + -0.00020168830815237015, + -0.019757458940148354, + -0.0011672483524307609, + -0.017699148505926132, + -0.020001666620373726, + 0.005352190230041742, + 0.022234410047531128, + 0.012756876647472382, + 0.03246781975030899, + -0.06647065281867981, + -0.05619072914123535, + 0.06177258864045143, + 0.03186311945319176, + -0.0009063255274668336, + -0.008082068525254726, + 0.09237978607416153, + 0.04430601745843887, + -0.010942772030830383, + 0.006407510489225388, + -0.02744414657354355, + -0.00863444060087204, + -0.0728432759642601, + 0.027583694085478783, + 0.016408342868089676, + 0.020210985094308853, + -0.026839444413781166, + -0.09582193940877914, + -0.0301187876611948, + 0.06256335228681564, + 0.06302850693464279, + -0.01817593351006508, + 0.0728897899389267, + 0.027630208060145378, + 0.07758785784244537, + 0.12028908729553223, + -0.03567739203572273, + 0.01629205420613289, + -0.010762524791061878, + -0.01790846884250641, + -0.01444306317716837, + -0.01789684034883976, + 0.040259167551994324, + 0.06307502090930939, + -0.06688929349184036, + -0.03588670864701271, + -0.05651633441448212, + 0.005311489105224609, + 0.031095612794160843, + -0.0025772496592253447, + -0.050050679594278336, + -0.021559935063123703, + 0.044840943068265915, + -0.05726058408617973, + 0.01334994938224554, + 0.001407093950547278, + 0.08112303912639618, + 0.10745081305503845, + 0.05498132482171059, + -0.06735444813966751, + -0.04656201973557472, + 0.03300274908542633, + 0.00976244080811739, + -0.01816430315375328, + -0.07782043516635895, + -0.013245289213955402, + 0.05060886591672897, + 0.026211485266685486, + 0.020199356600642204, + 0.040980156511068344, + -0.060563184320926666, + -0.03949166089296341, + 0.054469652473926544, + -0.003991611767560244, + 0.03121190145611763, + -0.028374455869197845, + -0.03932885825634003, + -0.04288729280233383, + -0.015547806397080421, + -0.06400533020496368, + -0.02732785791158676, + 0.0953567773103714, + 0.019024841487407684, + 0.09461253136396408, + -0.006378438323736191, + 0.03490988537669182, + -0.03977075591683388, + -0.04309661313891411, + 0.03039788082242012, + 0.07312236726284027, + 0.0494459792971611, + 0.036840278655290604, + -0.03611928969621658, + -0.040073104202747345, + -0.023153090849518776, + -0.0018737026257440448, + -0.06679626554250717, + 0.04121273383498192, + -0.015233826823532581, + 0.06861037015914917, + 0.03823574259877205, + -0.028723323717713356, + -0.0021411667112261057, + -0.011820752173662186, + -0.0728432759642601, + 0.028304683044552803, + 0.014791930094361305, + 0.07419222593307495, + 0.12308002263307571, + 0.03984052687883377, + -0.031537510454654694, + 0.014861702919006348, + 0.07516904920339584, + -0.02500208280980587, + 0.0066459025256335735, + -0.023222865536808968, + -0.0012442896841093898, + -0.02742088958621025, + -0.03895673528313637, + 0.01240801066160202, + 0.03356093540787697, + -0.0332818403840065, + 0.0053550973534584045, + 0.036282092332839966, + 0.02293214201927185, + -0.00681452127173543, + -0.00384334335103631, + 0.0017850324511528015, + -0.008611182682216167, + 0.03893347457051277, + -0.0727967619895935, + 0.012896423228085041, + 0.030816521495580673, + 0.042864035815000534, + -0.019303932785987854, + -0.036654215306043625, + -0.044468820095062256, + -0.12308002263307571, + -0.0019754553213715553, + 0.0065121701918542385, + -0.01898995414376259, + 0.0350726880133152, + 0.07326191663742065, + 0.01048343162983656, + -0.021152924746274948, + 0.015361744910478592, + -0.020362161099910736, + 0.019024841487407684, + -0.03318881243467331, + 0.037096112966537476, + -0.022501874715089798, + 0.07698315382003784, + -0.017873581498861313, + 0.00604701554402709, + -0.07656452059745789, + -0.012082401663064957, + 0.03874741494655609, + -0.0017486921278759837, + 0.09140296280384064, + -0.024769505485892296, + -0.05353934317827225, + 0.038979992270469666, + 0.05865604802966118, + -0.08354184031486511, + -0.023606617003679276, + -0.03697982430458069, + -0.013012711890041828, + 0.02807210572063923, + -0.03923582658171654, + -0.04579451307654381, + 0.02769998274743557, + 0.01591993123292923, + 0.08921673148870468, + -0.01789684034883976, + 0.09907802194356918, + -0.0872630849480629, + -0.0001124730333685875, + 0.037189144641160965, + 0.0012072226963937283, + -0.052748579531908035, + -0.0019769088830798864, + -0.020362161099910736, + 0.07512253522872925, + 0.011204421520233154, + 0.03390980139374733, + -0.03981726989150047, + 0.07312236726284027, + 0.015233826823532581, + 0.08884461224079132, + -0.028211653232574463, + -0.02140876092016697, + -0.007035469636321068, + 0.008192542940378189, + 0.08126258105039597, + -0.06777308881282806, + 0.04874824732542038, + -0.004764931742101908, + -0.02644406259059906, + -0.050236742943525314, + -0.007843676954507828, + 0.04323615878820419, + 0.048515670001506805, + -0.019571397453546524, + -0.007454109378159046, + 0.001408547512255609, + 0.003360745031386614, + -0.027816271409392357, + 0.021466905251145363, + -0.004035220015794039, + 0.031142128631472588, + 0.0020539502147585154, + -0.06530776619911194, + 0.02653709426522255, + 0.0359797403216362, + -0.0011861453531309962, + 0.05646982043981552, + -0.05586512014269829, + 0.005154499318450689, + -0.024443896487355232, + -0.018664345145225525, + -0.05163220688700676, + -0.005677798762917519, + 0.03742172196507454, + -0.022978657856583595, + -0.0066459025256335735, + 0.09544981271028519, + 0.0961940586566925, + -0.08717004954814911, + 0.008843760006129742, + 0.046631790697574615, + -0.009390316903591156, + -0.07782043516635895, + 0.007785532157868147, + -0.03244456276297569, + 0.03311903774738312, + -0.029165219515562057, + -0.044026922434568405, + -0.06786611676216125, + -0.023222865536808968, + -0.040980156511068344, + 0.02679293043911457, + 0.0014666919596493244, + 0.03625883534550667, + 0.052748579531908035, + 0.0674939975142479, + -0.03479359671473503, + 0.045538678765296936, + 0.009378688409924507, + 0.022990286350250244, + 0.04253842681646347, + 0.0395614355802536, + -0.005119612440466881, + 0.03246781975030899, + 0.06223774328827858, + 0.016164137050509453, + 0.058144379407167435, + 0.02528117597103119, + -0.0377473309636116, + -0.011849824339151382, + -0.05656285211443901, + -0.0188736654818058, + 0.027932560071349144, + -0.013245289213955402, + -0.030956067144870758, + 0.04684111103415489, + 0.0015408260514959693, + -0.05065538361668587, + -0.041235994547605515, + -0.02581610344350338, + -0.05056235194206238, + -0.030188560485839844, + -0.016257168725132942, + -0.06661020219326019, + -0.020385419949889183, + -0.013152258470654488, + 0.04325941577553749, + -0.021455274894833565, + -0.010576462373137474, + 0.02509511448442936, + -0.00239409483037889, + -0.04558519273996353, + -0.06279592961072922, + -0.013640671037137508, + -0.017873581498861313, + 0.0006886475021019578, + 0.10726474970579147, + 0.01851317100226879, + -0.0323515310883522, + -0.10940445959568024, + 0.0467480793595314, + -0.003767755813896656, + 0.043678056448698044, + -0.0016716509126126766, + -0.09182160347700119, + -0.11024174094200134, + -0.0747038945555687, + 0.020524965599179268, + 0.017233993858098984, + -0.011890524998307228, + -0.031886376440525055, + -0.02814187854528427, + -0.044189728796482086, + -0.01366392895579338, + 0.08526291698217392, + -0.030374623835086823, + -0.025560269132256508, + 0.044492077082395554, + 0.018827149644494057, + -0.002033599652349949, + 0.0013038876932114363, + 0.0010633153142407537, + 0.012349866330623627, + 0.017129333689808846, + 0.025118371471762657, + 0.023327523842453957, + -0.019094614312052727, + 0.03163054212927818, + 0.07112220674753189, + -0.01209403108805418, + 0.015978075563907623, + -0.06130743399262428, + -0.08889112621545792, + -0.010710194706916809, + -0.010733452625572681, + -0.01915275864303112, + -0.027560435235500336, + -0.030258335173130035, + -0.05153917893767357, + 0.06149349361658096, + -0.04442230612039566, + 0.02319960668683052, + -0.031444478780031204, + -0.053911466151475906, + -0.024629957973957062, + 0.0359564833343029, + -0.058144379407167435, + -0.0065121701918542385, + 0.03086303547024727, + 0.0827510803937912, + 0.010669493116438389 + ] + }, + { + "id": "8c048338-11e3-4fc6-b643-d790023df177", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "jesse99", + "reviewDate": "2022-07-06T09:20:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bd433778-6aed-4223-853a-3fe0f7607f56", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "poconnell", + "reviewDate": "2021-11-16T10:24:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b954fbb7-5fbc-4882-b625-d6629ee2f949", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "rileyjoseph", + "reviewDate": "2022-11-28T16:53:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "06647b3d-ea26-4d6b-a499-277968486ff8", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "crystaldaniels", + "reviewDate": "2021-01-21T02:28:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b770ba8c-953f-4070-8d29-d4d1328f7662", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "tsanders", + "reviewDate": "2021-11-09T13:53:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9673e98b-b48d-48e8-9752-4b40ae049489", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "denisemartinez", + "reviewDate": "2022-04-25T13:27:50", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f6992ad9-dc5d-40fd-8cf7-973048e861e1", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "sanderssusan", + "reviewDate": "2022-10-09T18:17:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7e341391-e3b9-4675-989d-293d8b94136b", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "colechristopher", + "reviewDate": "2021-11-16T20:00:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b092e8de-c70e-4a02-9eb9-84d9717b8d7e", + "productId": "6f0edecd-6476-4685-b6c1-287b31d51795", + "category": "Other", + "docType": "customerRating", + "userName": "jenniferli", + "reviewDate": "2021-06-27T09:38:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Super (Gold)", + "description": "This Basic Keyboard Super (Gold) is one of the most popular keyboards because of its excellent control scheme. I do not have any complaints about this setup. At first I was thinking 'Why does this matter?' and I was very tempted to say yes of this setup. For those not accustomed to the sound of a good audio system, this keyboard really works in this regard and if you are looking for a keyboard", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-07-29T17:30:23", + "price": 854.97, + "stock": 71, + "priceHistory": [ + { + "priceDate": "2021-02-13T18:35:59", + "newPrice": 851.97 + }, + { + "priceDate": "2021-07-31T18:35:59", + "newPrice": 832.78 + }, + { + "priceDate": "2022-01-15T18:35:59", + "newPrice": 864.36 + }, + { + "priceDate": "2022-07-02T18:35:59", + "newPrice": 812.87 + }, + { + "priceDate": "2022-12-17T18:35:59", + "newPrice": 821.91 + }, + { + "priceDate": "2024-08-12T18:35:59", + "newPrice": 854.97 + } + ], + "descriptionVector": [ + 0.05550849065184593, + 0.011384359560906887, + -0.036056037992239, + -0.006382141262292862, + -0.04967720806598663, + -0.026730433106422424, + -0.034275490790605545, + 0.0058702342212200165, + -0.001798628713004291, + 0.05470724776387215, + 0.07019798457622528, + -0.017304671928286552, + 0.022535022348165512, + -0.06472281366586685, + 0.04727347195148468, + 0.0671265497803688, + -0.014044049195945263, + -2.9233802706585266e-05, + -0.059603746980428696, + 0.0610726960003376, + 0.06636981666088104, + -0.0446026548743248, + -0.08764732629060745, + -0.05555300414562225, + -0.06062755733728409, + -0.013754710555076599, + 0.010176927782595158, + 0.032940082252025604, + -0.04602709040045738, + 0.023124828934669495, + 0.02924545295536518, + 0.01462272647768259, + -0.10896935313940048, + 0.025016658008098602, + -0.055285923182964325, + -0.014066305942833424, + -0.1208990067243576, + -0.04883144795894623, + 0.052659619599580765, + -0.012630741111934185, + 0.016703737899661064, + 0.01621408760547638, + 0.039861951023340225, + -0.004131420981138945, + -0.013532142154872417, + 0.04633868485689163, + 0.02690848708152771, + 0.049009501934051514, + 0.020765606313943863, + -0.02530599571764469, + 0.04860888049006462, + 0.02332513965666294, + 0.0017304671928286552, + -0.04101930558681488, + 0.00615400867536664, + 0.044157516211271286, + -0.04108607769012451, + -0.050033316016197205, + 0.0693967416882515, + -0.07625184208154678, + 0.04110833257436752, + -0.037925608456134796, + -0.06463378667831421, + -0.11849527060985565, + -0.0531492680311203, + 0.01443354319781065, + -0.05488530173897743, + 0.0017861092928797007, + 0.031248565763235092, + 0.0656576007604599, + -0.04700638726353645, + -0.00913085788488388, + -0.057556118816137314, + 0.02982413023710251, + 0.01507899072021246, + -0.026463350281119347, + 0.1233917698264122, + 0.03080342896282673, + 0.049009501934051514, + 0.06636981666088104, + -0.004020136781036854, + -0.02086576260626316, + -0.009926538914442062, + -0.04259954020380974, + 0.05875798687338829, + 0.024437980726361275, + 0.00190852175001055, + -0.07260172069072723, + -0.08453137427568436, + 0.09659457206726074, + -0.09926538914442062, + -0.016603581607341766, + -0.011595799587666988, + -0.013487628661096096, + 0.06721557676792145, + -0.005859105847775936, + -0.06779425591230392, + 0.011428873054683208, + 0.0335632748901844, + 0.023569965735077858, + 0.015423971228301525, + -0.0839972123503685, + -0.06530149281024933, + -0.025372765958309174, + -0.046739306300878525, + -0.02184506133198738, + 0.07834398001432419, + 0.0019182590767741203, + -0.06027144938707352, + -0.05479627475142479, + 0.01621408760547638, + -0.01759401150047779, + 0.035588644444942474, + -0.02726459503173828, + -0.025016658008098602, + 0.023792533203959465, + -0.10229231417179108, + -0.023792533203959465, + 0.017082104459404945, + -0.03080342896282673, + 0.06013790890574455, + 0.09686165302991867, + -0.029156425967812538, + 0.019441327080130577, + -0.03227237984538078, + -0.009481402114033699, + 0.00812930054962635, + -0.007511674426496029, + 0.015490741468966007, + 0.02172265015542507, + -0.053327325731515884, + 0.1002446860074997, + 0.02817712537944317, + 0.047718606889247894, + -0.060182422399520874, + 0.037903353571891785, + -0.028043584898114204, + 0.08907176554203033, + -0.037636272609233856, + -0.009570430032908916, + 0.010722219944000244, + -0.0656576007604599, + 0.010666578076779842, + 0.07322491705417633, + -0.026797203347086906, + 0.07429324090480804, + -0.02067657932639122, + 0.05016685649752617, + 0.03812592104077339, + 0.05323829501867294, + 0.012986849993467331, + -0.07318039983510971, + -0.059203121811151505, + -0.07914523035287857, + 0.04144218564033508, + 0.08511005342006683, + -0.06396608054637909, + -0.04366786777973175, + 0.005519689526408911, + 0.05061199143528938, + -0.056932926177978516, + 0.0015899711288511753, + -0.04206537827849388, + 0.03803689405322075, + 0.008891596458852291, + 0.05292670056223869, + -0.005375020205974579, + 0.040551912039518356, + -0.027331367135047913, + 0.021077202633023262, + 0.002786274766549468, + -0.007667472120374441, + -0.009292219765484333, + -0.03156016021966934, + 0.043489813804626465, + 0.0058924914337694645, + 0.08034709841012955, + -0.029423506930470467, + -0.01228576060384512, + -0.029111910611391068, + -0.005255389958620071, + 0.042510513216257095, + -0.04958818107843399, + -0.0008694067364558578, + 0.13977278769016266, + 0.041820552200078964, + 0.04493650421500206, + 0.022356968373060226, + -0.01757175475358963, + 0.003524922765791416, + 0.033607788383960724, + 0.0005063425051048398, + -0.00344145973213017, + 0.0012422084109857678, + -0.03966164216399193, + 0.08021355420351028, + -0.023369653150439262, + 0.003519358579069376, + 0.016703737899661064, + 0.020598679780960083, + -0.0022173349279910326, + 0.09125293046236038, + 0.10389479994773865, + -0.03641214594244957, + 0.013098134659230709, + -0.03180498629808426, + 0.008006888441741467, + 0.03736918792128563, + 0.046739306300878525, + 0.04589354991912842, + 0.022056501358747482, + 0.04691736027598381, + -0.029089653864502907, + -0.08804795145988464, + 0.05274864658713341, + -0.011072764173150063, + 0.004543171729892492, + 0.027487164363265038, + -0.019252143800258636, + -0.11155114322900772, + 0.07763176411390305, + 0.013276188634335995, + -0.006721557583659887, + 0.017805449664592743, + -0.010967044159770012, + -0.012797667644917965, + 0.06174039840698242, + -0.06779425591230392, + 0.02201198786497116, + 0.051902886480093, + -0.06935223191976547, + -0.021566851064562798, + -0.01588023640215397, + 0.05768965929746628, + -0.06926320493221283, + -0.01039949618279934, + -0.013643426820635796, + -0.050389423966407776, + -0.0729578360915184, + 0.043089188635349274, + 0.016369886696338654, + 0.031025996431708336, + -0.06463378667831421, + -0.013398601673543453, + 0.055597517639398575, + -0.03158241882920265, + 0.06917417794466019, + -0.033318448811769485, + -0.0062207793816924095, + -0.05804576724767685, + -0.05871347337961197, + -0.013209418393671513, + -0.0060705458745360374, + 0.04878693446516991, + 0.01630311645567417, + 0.0683729276061058, + 0.026641404256224632, + -0.02555082179605961, + -0.0006071936804801226, + -0.06703752279281616, + -0.012052063830196857, + 0.026663662865757942, + 0.0429333932697773, + 0.024081870913505554, + -0.08297339826822281, + 0.015134632587432861, + 0.05884701386094093, + -0.024460237473249435, + -0.06476732343435287, + 0.035588644444942474, + 0.029779616743326187, + 0.015590897761285305, + 0.05025588348507881, + -0.019040703773498535, + 0.010783425532281399, + 0.016670353710651398, + 0.043200474232435226, + 0.04010677710175514, + 0.00047608715249225497, + -0.01107832882553339, + 0.058223821222782135, + 0.11226336658000946, + 0.05875798687338829, + -0.015557512640953064, + 0.03378584235906601, + -0.04288887977600098, + 0.05079004913568497, + -0.03325168043375015, + 0.003744708839803934, + 0.014010664075613022, + -0.03193852677941322, + -0.014978835359215736, + -0.02989090047776699, + 0.030758915469050407, + 0.025127941742539406, + 0.0466947928071022, + 0.021288640797138214, + 0.03630086034536362, + 0.004484748002141714, + 0.003146556904539466, + 0.056888412684202194, + -0.01023256964981556, + -0.09249931573867798, + -0.08640094846487045, + -0.004863113630563021, + 0.05248156562447548, + -0.03899393603205681, + 0.022535022348165512, + -0.073358453810215, + -0.031337592750787735, + 0.09258834272623062, + 0.025016658008098602, + -0.003516576485708356, + -0.01395502220839262, + 0.11751597374677658, + -0.004662802442908287, + 0.03405292332172394, + 0.05568654462695122, + 0.025795646011829376, + 0.013320702128112316, + -0.002060146303847432, + -0.018606696277856827, + -0.025817902758717537, + 0.032940082252025604, + 0.025484051555395126, + -0.015023348852992058, + 0.005953697487711906, + 0.0029935413040220737, + 0.020398369058966637, + -0.03748047351837158, + 0.011974165216088295, + -0.0009792997734621167, + -0.072112075984478, + -0.011551286093890667, + 0.037302419543266296, + -0.08373013138771057, + 0.0034581522922962904, + 0.08101479709148407, + -0.022290198132395744, + 0.022624051198363304, + 0.050701018422842026, + 0.041508957743644714, + -0.042443741112947464, + -0.08960592746734619, + 0.0006743118865415454, + -0.049410123378038406, + -0.019185373559594154, + -0.04364560917019844, + 0.01377696730196476, + -0.020454011857509613, + 0.0013361043529585004, + -0.03569992631673813, + 0.023102572187781334, + -0.057912226766347885, + 0.031070511788129807, + -0.025417281314730644, + -0.005550292786210775, + -0.04177603870630264, + 0.04233245924115181, + 0.05604265630245209, + 0.015635410323739052, + -0.014377901330590248, + 0.02757619135081768, + 0.053282808512449265, + -0.01606941968202591, + 0.02036498300731182, + -0.049721721559762955, + 0.04393494874238968, + 0.026174012571573257, + 0.03449806198477745, + -0.008407510817050934, + -0.04825276881456375, + 0.011695954948663712, + 0.07042055577039719, + 0.017438212409615517, + 0.10487410426139832, + -0.040551912039518356, + -0.0423102006316185, + -0.028622262179851532, + 0.030981482937932014, + 0.03276202827692032, + 0.041152846068143845, + -0.0002180472220061347, + 0.009420196525752544, + 0.01936342753469944, + -0.0020796209573745728, + -0.02086576260626316, + 0.028332922607660294, + 0.016803894191980362, + 0.06058304384350777, + -0.04195409268140793, + 0.016269730404019356, + -0.02463829144835472, + 0.06027144938707352, + -0.06761619448661804, + -0.05114615708589554, + -0.004801907576620579, + 0.06347642838954926, + 0.0069051762111485004, + 0.036924052983522415, + 0.06423316150903702, + 0.016815021634101868, + 0.00762295862659812, + -0.04438008368015289, + -0.009030701592564583, + -0.057912226766347885, + -0.029779616743326187, + 0.06717105954885483, + 0.0036389888264238834, + -0.07460483908653259, + -0.04551518335938454, + -0.021934088319540024, + -0.0077620637603104115, + -0.028088098391890526, + 0.030736658722162247, + 0.06174039840698242, + 0.04945463687181473, + 0.09917636215686798, + 0.08907176554203033, + -0.0631648376584053, + 0.03144887834787369, + 0.014700625091791153, + 0.019686151295900345, + -0.0006725730490870774, + -0.014155332930386066, + 0.01623634435236454, + 0.052080944180488586, + -0.013498757034540176, + 0.002896167803555727, + -0.031715959310531616, + 0.04438008368015289, + -0.0466947928071022, + -0.06062755733728409, + 0.01630311645567417, + -0.03569992631673813, + -0.025461794808506966, + -0.03253946080803871, + 0.01890716329216957, + -0.022167785093188286, + 0.043801408261060715, + -0.012675254605710506, + -0.06788328289985657, + 0.005797899793833494, + 0.004743483383208513, + -0.014478056691586971, + -0.013932764530181885, + -0.04175378009676933, + 0.038214948028326035, + 0.0037252341862767935, + 0.0018167123198509216, + 0.016559068113565445, + -0.05653230473399162, + -0.029134167358279228, + 0.01167369820177555, + -0.005742257926613092, + 0.0637880265712738, + 0.017805449664592743, + 0.05697743967175484, + -0.011122842319309711, + -0.021555723622441292, + -0.055018842220306396, + 0.020142415538430214, + 0.06263066828250885, + 0.0043372963555157185, + 0.01044400967657566, + 0.01106720045208931, + -0.0017777628963813186, + -0.011551286093890667, + -0.017516111955046654, + 0.0069719464518129826, + 0.032673001289367676, + -0.07887814193964005, + 0.03679051250219345, + 0.005096810404211283, + -0.021232999861240387, + -0.07638537883758545, + 0.024037357419729233, + 0.025439538061618805, + 0.020420625805854797, + -0.028933856636285782, + -0.015156889334321022, + -0.028956113383173943, + -0.03018023818731308, + 0.032962340861558914, + 0.03367455676198006, + 0.022790975868701935, + 0.043178215622901917, + 0.0898284986615181, + 0.042132146656513214, + 0.019641637802124023, + -0.01297572162002325, + 0.03774755448102951, + 0.05938117578625679, + -0.013821480795741081, + -0.017315801233053207, + 0.0006172787980176508, + -0.021166229620575905, + -0.010967044159770012, + 0.017794322222471237, + 0.09014008939266205, + -0.00829622708261013, + -0.027976814657449722, + -0.013721325434744358, + 0.016648096963763237, + 0.027731988579034805, + 0.0485643669962883, + 0.05671035870909691, + -0.006699300836771727, + 0.00976517703384161, + -0.016202960163354874, + 0.02922319620847702, + -0.11822818964719772 + ] + }, + { + "id": "d59cd463-f5f1-4343-ac61-da879187be71", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qherman", + "reviewDate": "2021-09-28T09:55:38", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d5a63381-7664-4a03-8d6e-b80d8cd54b2f", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bushelizabeth", + "reviewDate": "2022-04-18T02:32:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3bb5102b-7157-4f8e-b2e2-4d24504dedee", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "knightpatrick", + "reviewDate": "2022-08-22T12:31:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e3fd2f3b-f6ba-42a4-bf52-2ac388e314a6", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fturner", + "reviewDate": "2021-03-15T18:47:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b4446066-78a9-4c9c-90b5-876e39a7b522", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "george94", + "reviewDate": "2022-12-18T09:08:34", + "stars": 5, + "verifiedUser": false + }, + { + "id": "9ba0e03b-4693-47dc-9585-0e54ee3111c6", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathryn98", + "reviewDate": "2022-12-05T07:23:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5d4366a7-d247-4e1b-ae95-fee29f3cc159", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laurablack", + "reviewDate": "2021-02-13T18:35:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a8a9272e-2603-4f9f-98e7-25f8aa3e338e", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mark32", + "reviewDate": "2021-09-30T22:16:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7d0a1fbd-fba6-4baa-b3d9-4d79c5a85930", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fieldsmelanie", + "reviewDate": "2022-02-18T09:14:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "755bfa1e-0176-446e-8eee-01778d7c6084", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownlarry", + "reviewDate": "2021-03-25T23:09:23", + "stars": 5, + "verifiedUser": false + }, + { + "id": "1c4550c2-e9f0-49f7-8650-aece0fe55a07", + "productId": "29a82aab-b9fc-480c-8275-1cda7c84c2b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mgray", + "reviewDate": "2021-08-28T03:37:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Pro (Steel)", + "description": "This Amazing Mouse Pro (Steel) is rated 5.4 out of 5 by 486.\n\nRated 5 out of 5 by Anonymous from Product came in a nice package It arrived packed full of great products, and shipped straight out of the package. I have been using it extensively for many years now and can't say enough positive things about this product.\n\nRated 5 out of 5", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-12-04T16:45:59", + "price": 137.76, + "stock": 52, + "priceHistory": [ + { + "priceDate": "2021-01-28T03:04:16", + "newPrice": 131.88 + }, + { + "priceDate": "2021-07-22T03:04:16", + "newPrice": 150.53 + }, + { + "priceDate": "2022-01-13T03:04:16", + "newPrice": 125.57 + }, + { + "priceDate": "2022-07-07T03:04:16", + "newPrice": 145.3 + }, + { + "priceDate": "2022-12-29T03:04:16", + "newPrice": 128.81 + }, + { + "priceDate": "2023-05-12T03:04:16", + "newPrice": 137.76 + } + ], + "descriptionVector": [ + -0.02950545772910118, + 0.00655994052067399, + -0.03991914913058281, + 0.004481769632548094, + -0.017082108184695244, + -0.016899410635232925, + -0.04786644130945206, + 0.015974510461091995, + 0.06412641704082489, + 0.07207370549440384, + 0.01162976399064064, + -0.01696792244911194, + 0.007387783378362656, + -0.05302761122584343, + -0.012857254594564438, + 0.03978212922811508, + -0.030007872730493546, + -0.026376783847808838, + 0.0012745923595502973, + -0.03048745170235634, + 0.044737767428159714, + -0.08257874101400375, + -0.010676316916942596, + 0.03667629137635231, + 0.03295385092496872, + -0.010208157822489738, + 0.008284136652946472, + 0.026125576347112656, + 0.0030344719998538494, + -0.02966531738638878, + 0.015746140852570534, + 0.043938469141721725, + -0.009882730431854725, + 0.06590770184993744, + 0.021375471726059914, + 0.05462620407342911, + -0.0011582662118598819, + 0.0026733612176030874, + 0.06357832252979279, + 0.12907496094703674, + 0.01583748869597912, + -0.019628437235951424, + 0.03539741411805153, + -0.026331109926104546, + 0.007656118366867304, + 0.0018183995271101594, + -0.034917838871479034, + 0.029528295621275902, + 0.03242859989404678, + 0.071160227060318, + 0.02601139061152935, + 0.04181462526321411, + -0.10020893812179565, + 0.006868240423500538, + 0.033090874552726746, + -0.054397836327552795, + 0.04154057800769806, + 0.10879567265510559, + 0.06764332205057144, + -0.12076228111982346, + 0.016739552840590477, + -0.0434817299246788, + 0.0020995805971324444, + -0.02539479173719883, + -0.045125994831323624, + -0.07728055119514465, + -0.007713210768997669, + 0.013667969964444637, + 0.025486139580607414, + 0.058645524084568024, + -0.042454060167074203, + -0.02454981952905655, + 0.04302498698234558, + 0.027381613850593567, + 0.03699600696563721, + 0.015312236733734608, + 0.05330165475606918, + 0.032497111707925797, + -0.021010078489780426, + 0.012286328710615635, + 0.040261704474687576, + 0.038023676723241806, + 0.006537103094160557, + 0.05695558339357376, + 0.09746849536895752, + 0.02909439243376255, + -0.010516458190977573, + -0.13610877096652985, + -0.02623976208269596, + 0.08445138484239578, + 0.0021809374447911978, + 0.02745012380182743, + 0.0059090848080813885, + -0.04361874982714653, + 0.0009991206461563706, + 0.010956071317195892, + -0.05604210123419762, + 0.022814204916357994, + 0.014889751560986042, + 0.023887546733021736, + -0.02050766348838806, + -0.012628884054720402, + -0.06006142124533653, + -0.00136237230617553, + -0.07152561843395233, + -0.013371088542044163, + -0.008306974545121193, + -0.03112688846886158, + -0.04117518663406372, + -0.06924191117286682, + -0.035511601716279984, + 0.0025634579360485077, + -0.04384712129831314, + -0.007330690510571003, + -0.01412471104413271, + -0.0003347054007463157, + -0.09618961811065674, + -0.04275094345211983, + -0.03393584489822388, + -0.04014752060174942, + -0.0010326624615117908, + 0.035123370587825775, + -0.014455847442150116, + 0.05097227916121483, + 0.027952538803219795, + 0.020861638709902763, + 0.059102267026901245, + -0.04533153027296066, + 0.019708367064595222, + -0.1028580367565155, + -0.09262704104185104, + 0.053164634853601456, + 0.02202632650732994, + -0.020336385816335678, + -0.10039163380861282, + 0.059924397617578506, + -0.02827225811779499, + 0.023145342245697975, + 0.0004678025434259325, + 0.07198235392570496, + 0.006822566501796246, + -0.05120064690709114, + -0.11628621816635132, + 0.022368883714079857, + -0.04062709957361221, + 0.014764147810637951, + -0.028340769931674004, + -0.006337278988212347, + -0.012126469053328037, + 0.018463749438524246, + -0.019856808707118034, + -0.09847332537174225, + -0.08221334964036942, + -0.036973170936107635, + 0.03729289025068283, + 0.012720232829451561, + -0.07572763413190842, + 0.021946396678686142, + -0.06060950830578804, + 0.08193930983543396, + -0.011898098513484001, + -0.05430648475885391, + -0.035123370587825775, + -0.006514266133308411, + 0.009734288789331913, + 0.08271576464176178, + 0.04768374562263489, + 0.037338562309741974, + -0.07572763413190842, + 0.0031743489671498537, + -0.02781551703810692, + -0.04128937050700188, + 0.02200349047780037, + -0.06293889135122299, + 0.051291998475790024, + -0.027747007086873055, + 0.05942198261618614, + 0.035328906029462814, + 0.008409740403294563, + 0.008409740403294563, + 0.04677026346325874, + 0.03507769852876663, + -0.057001255452632904, + 0.006251640152186155, + 0.08362925052642822, + 0.0010669180192053318, + 0.009037759155035019, + -0.005926212295889854, + -0.014364499598741531, + 0.007536224089562893, + 0.01423889584839344, + -0.02212909422814846, + 0.015620537102222443, + -0.011664018966257572, + -0.049008291214704514, + 0.09728579968214035, + -0.003967936150729656, + 0.06248214840888977, + -0.045148830860853195, + -0.03539741411805153, + -0.03172065317630768, + 0.0766867846250534, + 0.09093710035085678, + -0.029573969542980194, + 0.06677550822496414, + -0.03884580731391907, + 0.0051497528329491615, + -0.006217384710907936, + 0.0732155591249466, + -0.029848014935851097, + 0.013051369227468967, + -0.05330165475606918, + -0.027381613850593567, + -0.0015272272285073996, + 0.024070242419838905, + 0.016545437276363373, + 0.01696792244911194, + -0.0063544069416821, + -0.061934057623147964, + -0.09180490672588348, + -0.01536932960152626, + 0.011155894957482815, + -0.010596388019621372, + -0.012103632092475891, + -0.09102845191955566, + -0.016956504434347153, + 0.04524017870426178, + -0.04606231302022934, + 0.04818616062402725, + 0.0010933233425021172, + 0.0004999171360395849, + -0.0007579043158330023, + 0.011920936405658722, + 0.03318222239613533, + -0.07805701345205307, + 0.0664101168513298, + -0.12057958543300629, + -0.006365825422108173, + -0.00675405515357852, + 0.04951070621609688, + 0.00021338360966183245, + -0.05284491553902626, + -0.028614813461899757, + -0.06079220771789551, + 0.03523755446076393, + -0.02212909422814846, + 0.07559061050415039, + -0.025554649531841278, + -0.0958242267370224, + -0.012925765477120876, + -0.036173876374959946, + -0.00793016329407692, + -0.008426868356764317, + 0.07846807688474655, + 0.00997407827526331, + 0.029117228463292122, + 0.04919099062681198, + 0.004918527789413929, + -0.013371088542044163, + -0.05220547690987587, + -0.06047248840332031, + 0.02740444988012314, + -0.02434428781270981, + 0.08646104484796524, + 0.0020225055050104856, + 0.04464641585946083, + -0.017595941200852394, + -0.006074653007090092, + -0.032017532736063004, + 0.066729836165905, + -0.03539741411805153, + -0.04094681516289711, + 0.0717083141207695, + -0.04533153027296066, + -0.010670607909560204, + 0.0008114286465570331, + -0.0006219525821506977, + 0.0717083141207695, + 0.027564309537410736, + -0.024207264184951782, + 0.028751835227012634, + 0.03094419278204441, + 0.050287168473005295, + 0.06896786391735077, + -0.004830034449696541, + -0.015951674431562424, + 0.043299030512571335, + 0.01804126240313053, + -0.001824108767323196, + -0.007559061050415039, + -0.0446692556142807, + 0.053347330540418625, + 0.07262179255485535, + -0.020827382802963257, + 0.025486139580607414, + 0.027358775958418846, + -0.002406453248113394, + 0.028957368806004524, + -0.018874814733862877, + 0.021832212805747986, + 0.052753567695617676, + 0.04428102448582649, + -0.10550713539123535, + -0.029231414198875427, + 0.07769161462783813, + 0.020016668364405632, + -0.006063234526664019, + 0.012137887999415398, + -0.03711019456386566, + -0.06015276908874512, + 0.03436974808573723, + 0.021877886727452278, + -0.036173876374959946, + -0.013199809938669205, + 0.14908021688461304, + -0.028158072382211685, + 0.011761076748371124, + -0.016237137839198112, + 0.05942198261618614, + 0.047227002680301666, + -0.058097437024116516, + -0.037795305252075195, + -0.05914793908596039, + 0.032474275678396225, + 0.021466819569468498, + -0.04318484663963318, + 0.013622296042740345, + -0.01660252921283245, + -0.01927446387708187, + -0.023476479575037956, + -0.006342988461256027, + 0.017470337450504303, + -0.051931433379650116, + 0.013485273346304893, + 0.03786381706595421, + -0.0340728685259819, + -0.0135195292532444, + 0.03174348920583725, + 0.011075965128839016, + 0.05042418837547302, + -0.004618791863322258, + 0.01053929515182972, + 0.03480365127325058, + 0.04868857562541962, + 0.05033284053206444, + -0.06627309322357178, + 0.01935439370572567, + -0.058645524084568024, + 0.0006783315329812467, + -0.014946844428777695, + 0.0012003720039501786, + -0.08481677621603012, + -0.031218236312270164, + -0.009905567392706871, + 0.01986822672188282, + 0.003613961860537529, + 0.008655238896608353, + -0.04138072207570076, + 0.03806934878230095, + 0.08011234551668167, + 0.008369776420295238, + -0.021546749398112297, + 0.010276668705046177, + 0.01311988104134798, + -0.013622296042740345, + 0.028980206698179245, + -0.016671041026711464, + -0.0014744165819138288, + 0.03172065317630768, + -0.05490024760365486, + -0.05330165475606918, + -0.0552656427025795, + 0.05302761122584343, + 0.06905921548604965, + -0.038160696625709534, + 0.00488998182117939, + 0.0031172563321888447, + 0.039599429816007614, + -0.05654451623558998, + 0.0043618748895823956, + 0.040444400161504745, + 0.06006142124533653, + -0.024321449920535088, + 0.007427747827023268, + -0.00396508164703846, + 0.04060425981879234, + 0.021729445084929466, + 0.0228484608232975, + 0.01999383047223091, + -0.0017270513344556093, + -0.0014715619618073106, + 0.04361874982714653, + 0.021010078489780426, + 0.0934491753578186, + 0.042454060167074203, + -0.10751679539680481, + 0.07559061050415039, + 0.09427130967378616, + 0.015118122100830078, + -0.04827750846743584, + 0.01583748869597912, + 0.01966269314289093, + -0.004750104621052742, + -0.0434817299246788, + 0.007410620339214802, + -0.06289321184158325, + 0.08486244827508926, + 0.034712303429841995, + -0.03973645344376564, + -0.06810005754232407, + -0.042294200509786606, + -0.028317932039499283, + 0.07230207324028015, + -0.02397889457643032, + 0.008050057105720043, + 0.07106887549161911, + 0.08002099394798279, + -0.020941568538546562, + 0.042499735951423645, + -0.07412903755903244, + 0.03813786059617996, + -0.02498372457921505, + 0.032245904207229614, + 0.013736480847001076, + -0.07476847618818283, + 0.060335464775562286, + -0.06805438548326492, + -0.009700033813714981, + 0.028843184933066368, + -0.03484932705760002, + 0.021352633833885193, + -0.05553968623280525, + -0.04405265301465988, + 0.06403506547212601, + 0.03089851886034012, + 0.015312236733734608, + 0.0031943311914801598, + -0.017881404608488083, + 0.07230207324028015, + 0.0007471994613297284, + -0.009089143015444279, + -0.042682431638240814, + 0.022996900603175163, + -0.04663323983550072, + -0.06567933410406113, + 0.05800608545541763, + -0.06650146842002869, + 0.04718133062124252, + 0.04647338017821312, + -0.06289321184158325, + 0.014775566756725311, + -0.00014612138329539448, + -0.04259108379483223, + -0.023202434182167053, + 0.04409832879900932, + 0.016899410635232925, + -0.049008291214704514, + 0.05266221985220909, + 0.002363633830100298, + -0.013393925502896309, + -0.0573209747672081, + 0.04690728336572647, + 0.039416734129190445, + 0.024481309577822685, + 0.015220888890326023, + -0.050880931317806244, + -0.0561334490776062, + -0.05631614476442337, + -0.011087384074926376, + -0.014341662637889385, + 0.00957443006336689, + -0.05426081269979477, + -0.028774673119187355, + 0.06481152772903442, + 0.03192618489265442, + -0.03395868092775345, + 0.022174768149852753, + -0.008284136652946472, + -0.032497111707925797, + 0.048414528369903564, + 0.023076830431818962, + 0.04254540801048279, + -0.04359591379761696, + 0.04128937050700188, + 0.029185740277171135, + -0.031218236312270164, + 0.04007900878787041, + -0.0239560566842556, + 0.039622269570827484, + 0.04402981698513031, + -0.04827750846743584, + 0.06677550822496414, + -0.030875680968165398, + -0.044714927673339844, + -0.0015229452401399612, + 0.04565124586224556, + -0.01701359637081623, + 0.05133767053484917, + -0.03619671240448952, + -0.016522599384188652, + 0.011138767004013062, + -0.06079220771789551, + 0.0005402388051152229, + 0.08075178414583206, + -0.0006048248033039272, + 0.01611153408885002, + -0.009266129694879055, + -0.00017011811723932624, + 0.017287641763687134, + -0.041860297322273254, + 0.059102267026901245, + -0.030236244201660156 + ] + }, + { + "id": "57459ba1-1887-4537-9929-91aab7cb05b3", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sarawilson", + "reviewDate": "2022-05-24T12:30:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8ea33562-574c-428a-8fca-57a6332a3e5d", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pperez", + "reviewDate": "2022-09-11T12:10:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b7c8254a-d748-4fa8-98a1-9dd9b22fea0c", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erinfreeman", + "reviewDate": "2022-01-22T13:03:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83a27ca8-6950-494f-94ed-ecb354709a8c", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dreeves", + "reviewDate": "2022-03-06T00:48:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e2b49573-299a-411b-bd54-727365d35acb", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fsmith", + "reviewDate": "2021-02-23T19:23:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9a6bf91a-44db-4b94-9754-b99af4bae4eb", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "owalker", + "reviewDate": "2021-08-25T21:10:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fdc60cd5-539d-4b1b-aeda-3c8b6c3e13d2", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthewhunt", + "reviewDate": "2022-08-04T14:11:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "761b0089-e77e-4d4a-90a5-4018a6cd398f", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaronacevedo", + "reviewDate": "2022-01-14T10:12:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a7bedd81-61ea-49ac-81cd-9fa4dbe3b384", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "corypearson", + "reviewDate": "2022-08-20T14:37:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9c01005b-e331-45fa-81b7-ae346e596960", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithjamie", + "reviewDate": "2022-08-29T02:11:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6df7acdf-2cba-44d5-a942-e685a94e84b3", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa44", + "reviewDate": "2022-12-30T03:16:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dac44dd6-544b-472e-a70a-279cf68bf034", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dawn50", + "reviewDate": "2021-12-19T17:24:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a8b87d8b-9c1d-497f-a00c-33cbb9cc29b9", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rodneyhoward", + "reviewDate": "2021-01-28T03:04:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "185373a9-a825-4286-b371-8fb27233a67b", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bishoprebecca", + "reviewDate": "2022-08-29T11:40:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b80f5c2f-f426-4d95-b447-60d2b7304c23", + "productId": "c6a8e56d-c18e-46c1-bcb5-86b5afd5b81c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lyonschristopher", + "reviewDate": "2021-12-22T20:11:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Micro (Red)", + "description": "This Amazing Filter Micro (Red) is based on an inexpensive, simple and effective camera. It works very well on very low light conditions. It is recommended to use for low light photography, and it is the perfect filter for your filters as well. If your lens has a very low focus distance, or if you have your camera at 5 fps but a high zoom lens, this filter will not be recommended.\n\nThe lens is equipped with a 12-speed automatic", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-09-16T23:39:24", + "price": 658.63, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-06-07T04:29:13", + "newPrice": 698.54 + }, + { + "priceDate": "2024-01-30T04:29:13", + "newPrice": 658.63 + } + ], + "descriptionVector": [ + -0.03861881047487259, + 0.03547282516956329, + -0.016572151333093643, + 0.05538913235068321, + -0.004551767837256193, + -0.004855219274759293, + -0.030766235664486885, + 0.010032468475401402, + 0.025415586307644844, + 0.06817124038934708, + -0.038891296833753586, + 0.013587182387709618, + 0.03809860721230507, + -0.05231746286153793, + 0.0457034669816494, + -0.0113577451556921, + -0.0751568078994751, + -0.012893578968942165, + -0.006960798986256123, + 0.01844240166246891, + 0.04050144553184509, + -0.0178231131285429, + -0.062077444046735764, + 0.01776118390262127, + -0.006607804447412491, + 0.02970105968415737, + 0.011240079998970032, + 0.010812771506607533, + -0.07367052137851715, + -0.008676227182149887, + 0.10285137593746185, + 0.012305255979299545, + 0.007697751745581627, + 0.03450673446059227, + -0.036191198974847794, + 0.0011998708359897137, + 0.05637999251484871, + -0.03688480332493782, + -0.003542328253388405, + 0.049865081906318665, + 0.014070226810872555, + 0.04307768493890762, + -0.029106542468070984, + -0.03616642951965332, + -0.04961736872792244, + 0.01981722004711628, + -0.04169047996401787, + -0.0054466393776237965, + -0.06064069643616676, + -0.019123617559671402, + 0.07738624513149261, + -0.005263949278742075, + -0.018665345385670662, + -0.018306158483028412, + 0.009301708079874516, + 0.008651455864310265, + 0.07362097501754761, + 0.1530880331993103, + 0.08333141356706619, + -0.05415055528283119, + 0.053655125200748444, + -0.0060783131048083305, + 0.005781054962426424, + -0.03740500286221504, + -0.0406748466193676, + -0.012175205163657665, + 0.012639671564102173, + 0.013265152461826801, + 0.01319083757698536, + -0.00778445228934288, + -0.022244829684495926, + -0.006620190571993589, + 0.016435908153653145, + -0.03921332582831383, + 0.007827802561223507, + 0.03956012800335884, + 0.11543530970811844, + 0.023805437609553337, + 0.02207143045961857, + 0.024115080013871193, + 0.03829677775502205, + 0.010565055534243584, + -0.04419240355491638, + 0.031286437064409256, + 0.014280784875154495, + -0.022604018449783325, + 0.08863252401351929, + -0.07386869192123413, + 0.011884139850735664, + 0.03141029551625252, + 0.01514778845012188, + 0.07689081877470016, + -0.009450336918234825, + 0.020473666489124298, + 0.03351587429642677, + -0.0316084660589695, + -0.0526147224009037, + 0.020362194627523422, + -0.058708518743515015, + 0.0483044758439064, + -0.010713685303926468, + -0.04872559383511543, + -0.020870011299848557, + 0.002085452899336815, + -0.009103535674512386, + -0.04726407304406166, + -0.0284624844789505, + -0.05786628648638725, + -0.013413781300187111, + -0.06975661963224411, + -0.030047861859202385, + -0.09200144559144974, + -0.043201543390750885, + 0.05385329946875572, + 0.009865260683000088, + 0.04317677021026611, + -0.02722390741109848, + 0.014701901003718376, + 0.049245793372392654, + 0.014082612469792366, + -0.008168410509824753, + 0.031682781875133514, + 0.0464218407869339, + 0.02630736120045185, + -0.014429413713514805, + 0.0015900223515927792, + -0.01668362319469452, + -0.022727875038981438, + 0.015234488993883133, + -0.013859668746590614, + -0.0507320873439312, + 0.009821910411119461, + 0.10592304915189743, + -0.012590127997100353, + -0.055091872811317444, + 0.0521688349545002, + 0.02347102016210556, + 0.09695575386285782, + 0.0021690567955374718, + 0.03524988144636154, + 0.004031565971672535, + -0.01622534915804863, + -0.006174303125590086, + 0.08174603432416916, + 0.036414142698049545, + -0.063216932117939, + -0.044836461544036865, + -0.0038210079073905945, + -0.007753487676382065, + -0.03861881047487259, + -0.03185618296265602, + -0.12692929804325104, + -0.036934345960617065, + -0.06807215511798859, + 0.04808153212070465, + 0.023062290623784065, + -0.05246609076857567, + 0.016770323738455772, + -0.0937354564666748, + -0.015135402791202068, + -0.03183140978217125, + 0.0008623587782494724, + 0.018913060426712036, + 0.0017092353664338589, + 0.04528234899044037, + 0.005143187940120697, + -0.01212566252797842, + 0.02690187655389309, + -0.051722947508096695, + 0.05712313950061798, + 0.051822032779455185, + 0.01750108413398266, + 0.002481797244399786, + -0.0228517334908247, + 0.013946369290351868, + 0.05370466783642769, + 0.023805437609553337, + 0.009729016572237015, + -0.038965608924627304, + -0.1072111651301384, + 0.019284633919596672, + -0.031063493341207504, + -0.041665706783533096, + -0.026827562600374222, + 0.019433261826634407, + -0.05474507436156273, + -0.018033670261502266, + 0.008317040279507637, + 0.056330449879169464, + 0.06648677587509155, + -0.02898268587887287, + -0.023161377757787704, + 0.05999663472175598, + 0.03287181630730629, + 0.017191439867019653, + -0.02027549408376217, + -0.031484611332416534, + -0.06623905897140503, + 0.007635822985321283, + -0.030865320935845375, + -0.044935546815395355, + -0.0034184707328677177, + 0.07238239794969559, + 0.00504410220310092, + -0.011983226053416729, + -0.018690116703510284, + 0.05915440618991852, + 0.0521688349545002, + -0.0607893243432045, + -0.05529004707932472, + 0.024276096373796463, + -0.02392929419875145, + -0.039708755910396576, + -0.010013889521360397, + 0.029453344643115997, + 0.02389213629066944, + -0.016138648614287376, + -0.08050745725631714, + 0.028908371925354004, + 0.022182902321219444, + -0.00799501035362482, + -0.0511779747903347, + 0.013909212313592434, + -0.013302309438586235, + -0.040749162435531616, + 0.016522608697414398, + 0.03071669302880764, + -0.008583334274590015, + 0.011023329570889473, + 0.024040766060352325, + -0.02383020892739296, + 0.027917509898543358, + -0.016621693968772888, + -0.00023668419453315437, + -0.057469941675662994, + 0.012336219660937786, + -0.03901515528559685, + -0.04726407304406166, + -0.030939636752009392, + 0.07783213257789612, + 0.04540620744228363, + 0.043201543390750885, + -0.06574363261461258, + 0.03163323923945427, + 0.11761520802974701, + -0.051326602697372437, + -0.03666185960173607, + -0.029403802007436752, + -0.08699759840965271, + -0.016113877296447754, + -0.049765996634960175, + 0.056330449879169464, + -0.05083117261528969, + 0.03430856391787529, + -0.07897162437438965, + 0.10077057033777237, + 0.04312722757458687, + -0.05950120463967323, + -0.064108707010746, + -0.0947263166308403, + 0.07322463393211365, + -0.02630736120045185, + 0.036835260689258575, + 0.01951996237039566, + -0.09175373613834381, + 0.0074314577504992485, + 0.0160271767526865, + -0.04951827973127365, + 0.03433333709836006, + 0.016658851876854897, + 0.03463059291243553, + 0.022628789767622948, + 0.045133721083402634, + 0.009964345954358578, + -0.0507320873439312, + -0.002153574489057064, + -0.08387638628482819, + 0.08803800493478775, + 0.08481770753860474, + -0.0042452202178537846, + 0.11820971965789795, + 0.037231605499982834, + 0.06604088842868805, + 0.03381313383579254, + 0.056231364607810974, + 0.016696007922291756, + 0.007939274422824383, + -0.0809038057923317, + -0.0942804291844368, + -0.006991763133555651, + -0.05420009791851044, + -0.048750363290309906, + -0.02402838133275509, + -0.055091872811317444, + 0.006849327124655247, + 0.0012494138209149241, + -0.03500216826796532, + -0.04372174292802811, + 0.004684914834797382, + 0.06069023907184601, + -0.06396008282899857, + 0.024276096373796463, + 0.0027558323927223682, + -0.05885714665055275, + -0.021823715418577194, + 0.0044588749296963215, + -0.016262507066130638, + 0.006090699229389429, + -0.0048180618323385715, + -0.06296922266483307, + 0.04151707887649536, + 0.0024926348123699427, + -0.01397114060819149, + 0.03666185960173607, + 0.07585041224956512, + -0.05925349146127701, + -0.054299186915159225, + -0.02376827970147133, + 0.049369651824235916, + 0.009698052890598774, + 0.03430856391787529, + -0.06475277245044708, + 0.06846849620342255, + 0.1043376699090004, + 0.03411039337515831, + -0.0500137098133564, + -0.010162518359720707, + -0.033144302666187286, + -0.05083117261528969, + 0.016956109553575516, + -0.07134199887514114, + -0.059947092086076736, + -0.022826962172985077, + 0.08447090536355972, + -0.046595241874456406, + -0.018330929800868034, + -0.01101713627576828, + 0.10869745910167694, + -0.02402838133275509, + 0.02578715793788433, + 0.029948774725198746, + -0.02732299268245697, + -0.005629329476505518, + 0.019136004149913788, + 0.07758442312479019, + -0.02732299268245697, + 0.016770323738455772, + -0.023334776982665062, + 0.00962993036955595, + -0.0852140486240387, + 0.0015443498268723488, + -0.008242725394666195, + 0.02474675513803959, + 0.0373554602265358, + 0.05538913235068321, + 0.004768518730998039, + 0.03131121024489403, + 0.009753788821399212, + 0.02977537363767624, + 0.027075277641415596, + 0.019012145698070526, + -0.013066980056464672, + 0.05687542259693146, + 0.0036042570136487484, + -0.049245793372392654, + 0.10503127425909042, + -0.026431217789649963, + 0.038792211562395096, + 0.018467172980308533, + -0.010911857709288597, + -0.01433032751083374, + 0.012268098071217537, + -0.017228595912456512, + 0.041962966322898865, + -0.053357865661382675, + -0.08556085079908371, + 0.05672679468989372, + -0.01235479861497879, + 0.05107888579368591, + 0.04860173538327217, + -0.000490398786496371, + 0.05662770941853523, + 0.020250722765922546, + -0.018392859026789665, + 0.10750842094421387, + 0.022938434034585953, + -0.045951180160045624, + 0.00034931721165776253, + -0.0014026876306161284, + -0.04275565594434738, + -0.06703174859285355, + -0.026678932830691338, + -0.019346561282873154, + 0.0016349207144230604, + -0.028388168662786484, + -0.009184042923152447, + -0.012608706951141357, + 0.024660054594278336, + 0.05578547716140747, + -0.03029557690024376, + 0.019148388877511024, + 0.011661196127533913, + 0.008985871449112892, + -0.006096892058849335, + -0.057569026947021484, + 0.022381074726581573, + 0.061879273504018784, + 0.006257907021790743, + -0.016658851876854897, + -0.10562578588724136, + 0.03309476003050804, + -0.061582013964653015, + 0.006942220032215118, + -0.07798076421022415, + 0.021922800689935684, + 0.06658586114645004, + -0.01325276680290699, + -0.0024802491534501314, + 0.02710004895925522, + -0.0031165676191449165, + 0.02311183325946331, + -0.0001446618407499045, + -0.042879510670900345, + 0.030667148530483246, + -0.05177249014377594, + 0.014070226810872555, + 0.015048702247440815, + 0.0011147187324240804, + 0.0003032576641999185, + -0.050509143620729446, + 0.03975829854607582, + -0.06356373429298401, + -0.05370466783642769, + -0.08209283649921417, + -0.017971742898225784, + 0.0062919678166508675, + 0.01473905798047781, + 0.07352188974618912, + -0.06495094299316406, + -0.004260702524334192, + -0.03408562019467354, + 0.03408562019467354, + -0.023421477526426315, + 0.09799616038799286, + -0.13802693784236908, + -0.014763829298317432, + 0.01746392622590065, + 0.0593525767326355, + 0.0005960648413747549, + -0.07966522872447968, + -0.05350649729371071, + 0.07198605686426163, + 0.0010233736829832196, + -0.02490776963531971, + 0.06262242048978806, + -0.0026087514124810696, + 0.02056036703288555, + 0.08516450971364975, + -0.04488600417971611, + 0.005140091758221388, + -0.04632275551557541, + 0.052961524575948715, + -0.015123017132282257, + -0.011481602676212788, + 0.011840789578855038, + -0.03688480332493782, + -0.06673449277877808, + 0.05251563712954521, + -0.006917448714375496, + -0.004904762376099825, + -0.02301274798810482, + -0.029849689453840256, + -0.008403739891946316, + 0.050509143620729446, + 0.007022727746516466, + 0.02311183325946331, + -0.07213468104600906, + 0.03049374930560589, + 0.06331601738929749, + 0.0035082674585282803, + -0.023099448531866074, + -0.014825758524239063, + -0.033961761742830276, + 0.06881529837846756, + 0.029626745730638504, + 0.04235931113362312, + 0.0012470915680751204, + 0.007326178718358278, + 0.03029557690024376, + 0.016398750245571136, + 0.01170454639941454, + 0.04374651610851288, + -0.023347163572907448, + -0.02125396952033043, + -0.07267966121435165, + -0.036835260689258575, + -0.0746118351817131, + -0.0356462262570858, + -0.054596442729234695, + 0.02193518728017807, + 0.050707314163446426, + 0.04193819314241409, + -0.027595480903983116, + 0.03297090157866478, + -0.04171524941921234, + 0.02480868436396122, + 0.022418230772018433, + -0.022145744413137436, + -0.012268098071217537, + 0.0014142993604764342, + -0.007542929612100124, + 0.039188552647829056 + ] + }, + { + "id": "327540d7-8120-4218-9c0b-3c018b9b219e", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "qdiaz", + "reviewDate": "2021-11-15T21:40:48", + "stars": 5, + "verifiedUser": false + }, + { + "id": "439c1c99-abf2-47ee-a4d9-da179c732aa4", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "bushpatrick", + "reviewDate": "2022-03-01T21:24:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "346a9585-f8c8-4712-baef-f58b8af02c17", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "hmorris", + "reviewDate": "2021-06-07T04:29:13", + "stars": 5, + "verifiedUser": false + }, + { + "id": "65a6a7bb-0acc-405b-9dc5-de4fb09fd82d", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "jessica86", + "reviewDate": "2021-08-27T22:21:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "101d4c01-10ae-4c2e-ad15-4c4e8f2a5ba0", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "jorge15", + "reviewDate": "2022-02-12T10:59:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f3b0654e-9e2d-4865-be2f-20152b0ea8e0", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "jaimebaker", + "reviewDate": "2021-08-10T20:18:07", + "stars": 5, + "verifiedUser": true + }, + { + "id": "55dd544b-ef2c-4b0d-b6de-21c7778f5c21", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "pstein", + "reviewDate": "2022-05-15T13:30:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "410077d1-6a53-44ee-a444-0537ee6e8458", + "productId": "f0b2a097-75e1-4400-ac7b-485f0777a8c6", + "category": "Other", + "docType": "customerRating", + "userName": "kedwards", + "reviewDate": "2021-07-24T03:50:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker 3000 (Black)", + "description": "This Amazing Speaker 3000 (Black) is rated 4.3 out of 5 by 8.\n\nRated 5 out of 5 by Anonymous from Great speaker I was looking forward to buying something special for the holidays and a good speaker will do the trick for you. The quality is fantastic and the price is good. I purchased the Speakers for $99 and i'm going to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-11-02T01:35:31", + "price": 512.43, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-04-14T07:47:05", + "newPrice": 533.01 + }, + { + "priceDate": "2022-06-11T07:47:05", + "newPrice": 512.43 + } + ], + "descriptionVector": [ + -0.06264957040548325, + 0.019124045968055725, + -0.02076992392539978, + 0.012742284685373306, + -0.03126107156276703, + 0.02002662420272827, + -0.047571197152137756, + 0.04204953834414482, + 0.038078196346759796, + 0.1322649121284485, + 0.01747816801071167, + -0.03461654111742973, + -0.03877902030944824, + -0.005118151195347309, + -0.011722901836037636, + -0.034404169768095016, + -0.028563955798745155, + -0.03508375585079193, + -0.009758466854691505, + 0.009041712619364262, + -0.04001077637076378, + -0.03168581426143646, + -0.032237980514764786, + 0.015035896562039852, + -0.04054170474410057, + -0.018901055678725243, + 0.03194066137075424, + 0.036549121141433716, + 0.001720208441838622, + -0.04633944109082222, + 0.0033103395253419876, + 0.008181609213352203, + 0.01811528205871582, + 0.028903748840093613, + -0.04204953834414482, + 0.03351220861077309, + -0.01197774801403284, + -0.03561468794941902, + 0.020270852372050285, + 0.034128084778785706, + -0.034404169768095016, + 0.011733520776033401, + 0.044258203357458115, + -0.12377005815505981, + 0.02988065779209137, + -0.01107516884803772, + 0.005306630861014128, + 0.02431652694940567, + 0.039182525128126144, + 0.04910027235746384, + 0.0032386640086770058, + 0.04353614151477814, + -0.0636264756321907, + 0.03809943050146103, + 0.051351409405469894, + 0.002225917996838689, + 0.023530753329396248, + 0.06770400702953339, + 0.026928694918751717, + -0.02784189209342003, + 0.06953039765357971, + -0.006052585318684578, + -0.010055786930024624, + -0.03357592225074768, + -0.035657159984111786, + 0.029986843466758728, + -0.024104155600070953, + 0.041454900056123734, + -0.011510530486702919, + 0.042495518922805786, + 0.03370334208011627, + -0.007125061005353928, + -0.012954656034708023, + 0.037016335874795914, + 0.0906401202082634, + -0.052880480885505676, + 0.044640470296144485, + 0.07084710150957108, + -0.06371142715215683, + -0.006355214398354292, + 0.023467041552066803, + 0.03179199993610382, + 0.06426358968019485, + -0.011181354522705078, + 0.03826932981610298, + -0.021491987630724907, + -0.03950108215212822, + -0.1192677840590477, + -0.02711983025074005, + 0.045405007898807526, + -0.020854873582720757, + 0.02191673032939434, + 0.030347874388098717, + -0.021980442106723785, + 0.03168581426143646, + 0.01437754463404417, + -0.06689699739217758, + 0.0002032460761256516, + -0.07356546074151993, + 0.008117897436022758, + 0.048293258994817734, + -0.05457945540547371, + -0.08184794336557388, + -0.04697655513882637, + -0.038311801850795746, + 0.0013910327106714249, + 0.0007997110951691866, + -0.01057609636336565, + 0.027714470401406288, + -0.1367671936750412, + 0.026057973504066467, + 0.017510022968053818, + -0.014271358959376812, + -0.040562938898801804, + 0.021937966346740723, + 0.038417987525463104, + -0.0008428490255028009, + -0.08231516182422638, + 0.003297066316008568, + -0.050204601138830185, + -0.011701664887368679, + -0.02737467549741268, + 0.008824032731354237, + 0.046679235994815826, + 0.09896507859230042, + -0.022978587076067924, + 0.0013910327106714249, + 0.03283262252807617, + 0.02926478162407875, + -0.0474013015627861, + -0.05360254645347595, + 0.0884314551949501, + 0.0006364505970850587, + 0.04391840845346451, + -0.0011414963519200683, + 0.03631551191210747, + -0.005580058787018061, + 0.06014358624815941, + 0.003820030717179179, + -0.027629520744085312, + -0.033639632165431976, + 0.0435786135494709, + 0.045532431453466415, + 0.03750479221343994, + 0.038078196346759796, + -0.02100353315472603, + -0.07479721307754517, + 0.1119622066617012, + 0.00380144827067852, + 0.023870546370744705, + 0.0027422457933425903, + -0.11510530859231949, + 0.008234702050685883, + -0.08528836071491241, + 0.0023082117550075054, + 0.05406976118683815, + -0.11476550996303558, + 0.009153207764029503, + -0.04714645445346832, + 0.059846263378858566, + -0.09081001579761505, + -0.03315117955207825, + -0.025250962004065514, + 0.02240518480539322, + 0.029731998220086098, + 0.06532544642686844, + 0.041200052946805954, + 0.0486755296587944, + -0.10839436948299408, + 0.04383346065878868, + 0.019124045968055725, + -0.06230977177619934, + 0.004563330672681332, + -0.04094520956277847, + -0.02038765512406826, + -0.03572087362408638, + 0.07883226871490479, + 0.028542717918753624, + -0.010650426149368286, + 0.017541877925395966, + 0.01627826876938343, + 0.0986252874135971, + -0.02951962687075138, + -0.03177076205611229, + 0.02166188508272171, + 0.0435786135494709, + 0.0610780194401741, + -0.006620679050683975, + -0.02709859237074852, + 0.06570771336555481, + -0.012657335959374905, + 0.020143428817391396, + -0.022893639281392097, + 0.00909480545669794, + -0.09947477281093597, + 0.003013019450008869, + 0.03599695488810539, + 0.03041158616542816, + -0.054027289152145386, + -0.013761667534708977, + -0.03620932623744011, + 0.05228584259748459, + 0.12164634466171265, + -0.0022006987128406763, + -0.007693154271692038, + -0.08023392409086227, + -0.003177607199177146, + 0.0944628044962883, + 0.01847631298005581, + -0.024507660418748856, + 0.012614862062036991, + -0.03242911398410797, + -0.033873241394758224, + -0.03002931736409664, + 0.050077181309461594, + 0.0516912005841732, + 0.011510530486702919, + 0.022999824956059456, + 0.0020016005728393793, + -0.08851640671491623, + 0.0683835968375206, + -0.04353614151477814, + -0.006036657374352217, + 0.0014693447155877948, + -0.04510768875479698, + -0.01775425113737583, + 0.04731635004281998, + -0.0031669887248426676, + 0.040839023888111115, + 0.02255384437739849, + -0.00020523706916719675, + -0.03317241370677948, + -0.008691299706697464, + 0.048293258994817734, + -0.05305038020014763, + -0.009785013273358345, + -0.03393695130944252, + -0.02988065779209137, + -0.08749702572822571, + 0.08257000893354416, + -0.05801986902952194, + 0.04107263311743736, + -0.01609775237739086, + -0.018773633986711502, + -0.052880480885505676, + -0.025017352774739265, + 0.10091889649629593, + -0.04187964275479317, + -0.08601042628288269, + 0.0009722628747113049, + -0.0842689797282219, + 0.02240518480539322, + -0.06180008128285408, + 0.07687845081090927, + 0.009137280285358429, + 0.011160117574036121, + 0.06698194146156311, + 0.00994960032403469, + 0.03266272321343422, + -0.060355957597494125, + -0.019633736461400986, + 0.04194335266947746, + 0.020961059257388115, + 0.033257365226745605, + -0.08567062765359879, + -0.012296305038034916, + -0.008632898330688477, + -0.022511370480060577, + 0.011499912478029728, + -0.004786320962011814, + -0.058699458837509155, + 0.028818801045417786, + 0.016575589776039124, + -0.005999492481350899, + -0.08894114941358566, + 0.06213987618684769, + 0.021290235221385956, + -0.011648572050035, + -0.019718686118721962, + -0.017849817872047424, + 0.0935283675789833, + 0.021141573786735535, + 0.032365404069423676, + -0.031239835545420647, + 0.035763345658779144, + -0.05305038020014763, + 0.06112049147486687, + 0.03177076205611229, + -0.025633228942751884, + -0.015492495149374008, + -0.014398781582713127, + 0.029031172394752502, + 0.03901262953877449, + 0.048463158309459686, + 0.03544478863477707, + 0.0577225498855114, + 0.06846854090690613, + -0.06018605828285217, + -0.019708067178726196, + 0.00931248627603054, + 0.041093867272138596, + 0.06298936158418655, + -0.043366242200136185, + -0.09769085049629211, + 0.010252229869365692, + 0.041837166994810104, + 0.004629696719348431, + 0.020355800166726112, + -0.03478643670678139, + -0.04897284880280495, + 0.02176807075738907, + -0.0258456002920866, + -0.028776327148079872, + 0.008558567613363266, + 0.09650157392024994, + -0.010416817851364613, + 0.03988335281610489, + 0.056278426200151443, + 0.05394233763217926, + 0.027332201600074768, + -0.027926841750741005, + -0.06184255704283714, + 0.012805996462702751, + 0.032492827624082565, + 0.008022329770028591, + -0.009636352770030499, + 0.04408830404281616, + -0.0680437982082367, + 0.011489293538033962, + 0.06749163568019867, + -0.008208155632019043, + -0.009418671950697899, + 0.04778356850147247, + -0.01107516884803772, + 0.04684913530945778, + -0.004940290004014969, + -0.006604751106351614, + -0.005903925281018019, + 0.06558029353618622, + 0.04689160734415054, + 0.08329206705093384, + 0.001757373451255262, + 0.03548726439476013, + -0.03699510172009468, + 0.00883996021002531, + -0.05105408653616905, + 0.03166457638144493, + -0.06558029353618622, + 0.017053425312042236, + -0.01481290627270937, + 0.0009649626445025206, + -0.025803126394748688, + 0.024613846093416214, + -0.016172083094716072, + -0.03468025103211403, + 0.0018635591259226203, + -0.01140434481203556, + -0.027162304148077965, + 0.008558567613363266, + -0.0048633054830133915, + -0.008022329770028591, + 0.006997637916356325, + -0.047061506658792496, + 0.009524857625365257, + 0.017318889498710632, + 0.07492463290691376, + -0.0037085358053445816, + 0.05322027578949928, + -0.05508914589881897, + -0.06987019628286362, + -0.0653679221868515, + -0.012880326248705387, + -0.06702441722154617, + -0.010507076047360897, + -0.002117077587172389, + 0.037016335874795914, + 0.005391579121351242, + 0.00949300266802311, + -0.028436532244086266, + 0.016522496938705444, + 0.005845522973686457, + 0.06337162852287292, + 0.02291487529873848, + 0.03283262252807617, + 0.06608998775482178, + 0.031176123768091202, + -0.013124553486704826, + 2.8018923330819234e-05, + -0.037674687802791595, + 0.05394233763217926, + -0.011276922188699245, + -0.002694462426006794, + -0.06608998775482178, + 0.10584591329097748, + 0.00974784791469574, + -0.06354152411222458, + 0.018996622413396835, + 0.07802525907754898, + -0.002472799737006426, + -0.046934083104133606, + -0.02370065078139305, + 0.03410685062408447, + 0.00864882580935955, + -0.0166923925280571, + -0.05322027578949928, + -0.06859596818685532, + -0.0005740664782933891, + 0.006418926175683737, + -0.07641123235225677, + -0.036336749792099, + -0.009349651634693146, + -0.03276890888810158, + -0.060271006077528, + 0.017945384606719017, + -0.022978587076067924, + 0.04587222635746002, + 0.08316464722156525, + -0.05126645788550377, + 0.04684913530945778, + -0.046806659549474716, + 0.06014358624815941, + 0.06834112107753754, + 0.014887236058712006, + 0.016851671040058136, + -0.04013819620013237, + 0.012296305038034916, + 0.04625449329614639, + -0.017244558781385422, + -0.03699510172009468, + -0.031983133405447006, + -0.035635922104120255, + -0.053899865597486496, + 0.008006402291357517, + 0.017064042389392853, + -0.039182525128126144, + 0.012487439438700676, + -0.02357322722673416, + 0.02146013081073761, + -0.04113634303212166, + -0.01126630324870348, + 0.022256523370742798, + -0.03769592568278313, + 0.007093205116689205, + 0.05886935442686081, + -0.10729003697633743, + -0.023891784250736237, + -0.024465186521410942, + 0.03992582485079765, + 0.05695801228284836, + 0.03264148533344269, + 0.05657574534416199, + 0.018274560570716858, + -0.07203638553619385, + 0.057425230741500854, + 0.08902609348297119, + -0.004685444291681051, + -0.0077568660490214825, + 0.078577421605587, + -0.044385626912117004, + 0.012020221911370754, + -0.0709320530295372, + 0.08860135078430176, + 0.012657335959374905, + 0.0787048488855362, + -0.042877789586782455, + 0.0006294821505434811, + -0.09454775601625443, + -0.030496535822749138, + -0.02191673032939434, + -0.015800433233380318, + 0.011712283827364445, + -0.05126645788550377, + -0.02278745360672474, + 0.036527883261442184, + -0.02178930677473545, + -0.026928694918751717, + 0.005972946062684059, + -0.03682520240545273, + 0.046934083104133606, + 0.025272198021411896, + -0.03756850212812424, + 0.025909312069416046, + 0.011468056589365005, + 0.004770393017679453, + 0.051351409405469894, + 0.020918583497405052, + -0.016681775450706482, + -0.02120528556406498, + -0.017892291769385338, + 0.03523241728544235, + -0.005380960647016764, + 0.1234302669763565, + -0.0011992348590865731, + -0.05079924315214157, + -0.024507660418748856, + -0.029222305864095688, + -0.03516870737075806, + -0.018656829372048378, + -0.05445203185081482, + 0.05347512289881706, + 0.00418371707201004, + -0.04013819620013237, + 0.030305400490760803, + 0.012158263474702835, + -0.022065389901399612, + 0.0003127500822301954, + -0.07369288057088852, + -0.02546333335340023, + -0.02949838899075985, + 0.026185395196080208, + 0.053645018488168716, + -0.011245066300034523 + ] + }, + { + "id": "8a9d86af-2c67-40ac-b4b2-8af10b392524", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "banderson", + "reviewDate": "2022-06-11T20:28:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "28d535c3-7814-49d0-a91c-bfc7e92e91ae", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "clayjulie", + "reviewDate": "2022-10-06T06:20:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "498455d9-69af-4708-921d-c3a874c3bbab", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "dylangill", + "reviewDate": "2022-09-14T11:39:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0d1cf0d8-454f-40e2-94ea-2f785ff244a6", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "taylordavid", + "reviewDate": "2022-02-28T16:30:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b19d8a37-8f60-4fa4-a57c-1485b643df3a", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "igonzalez", + "reviewDate": "2021-05-23T06:20:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c45a079b-6c84-45f1-b9c9-c0066e3b9c8a", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "matthewcarlson", + "reviewDate": "2021-07-24T08:17:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ad5b3e0f-3fa6-4b72-8b74-44551dd41d64", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "stephenbrown", + "reviewDate": "2021-06-14T04:58:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b149d25e-3aeb-4d82-90ac-e4bd9f51d442", + "productId": "754fadff-14fd-43bd-b1b0-ffe7f06fab50", + "category": "Media", + "docType": "customerRating", + "userName": "bairdmandy", + "reviewDate": "2021-04-14T07:47:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5718e332-127b-4e64-bc4f-db7b54067c4a", + "productId": "5718e332-127b-4e64-bc4f-db7b54067c4a", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Silver)", + "description": "This Amazing Keyboard Ultra (Silver) is designed to be versatile enough to use it in any layout where you want it. This has a nice variety of functions, from keyboard-sized and a wide touchpad to USB 3.0 peripherals to the simple mouse.\n\nIts price is low, but", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-05-08T03:35:05", + "price": 302.77, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-04-01T20:20:59", + "newPrice": 319.66 + }, + { + "priceDate": "2021-07-16T20:20:59", + "newPrice": 279.75 + }, + { + "priceDate": "2022-05-16T20:20:59", + "newPrice": 302.77 + } + ], + "descriptionVector": [ + -0.013268397189676762, + 0.05855046957731247, + -0.03001417964696884, + -0.03520852327346802, + 0.03801216557621956, + -0.023363681510090828, + -0.05737685412168503, + 0.015420028939843178, + -0.024385161697864532, + 0.06181051954627037, + 0.029644707217812538, + -0.04283703863620758, + 0.054986149072647095, + -0.05742032080888748, + -0.02740614116191864, + -0.04122874513268471, + -0.018343206495046616, + -0.021375050768256187, + -0.006188658531755209, + 0.014985356479883194, + 0.024385161697864532, + -0.03388277068734169, + -0.059159014374017715, + -0.021733656525611877, + -0.014887554571032524, + -0.020886043086647987, + -0.018538808450102806, + 0.012605520896613598, + 0.03740362450480461, + 0.0064657628536224365, + 0.013757404871284962, + -0.003091612597927451, + -0.037773095071315765, + 0.051769569516181946, + -0.0013671828201040626, + -0.026145588606595993, + -0.0072373077273368835, + -0.03218754380941391, + 0.042945705354213715, + 0.027449607849121094, + -0.005705084651708603, + 0.05672484263777733, + 0.026189055293798447, + -0.004037026781588793, + -0.021592387929558754, + 0.05728991702198982, + -0.021461986005306244, + 0.05676830932497978, + 0.02353755012154579, + 0.0570291131734848, + 0.0738944336771965, + 0.008535893633961678, + -0.037577491253614426, + 0.008242488838732243, + 0.06050650030374527, + -0.019223419949412346, + 0.035034652799367905, + 0.06115850806236267, + 0.06315800547599792, + -0.022385666146874428, + -0.003026411635801196, + -0.07832809537649155, + 0.017658594995737076, + -0.027558276429772377, + 0.03573013097047806, + -0.012051312252879143, + 0.03244834765791893, + -0.04414105787873268, + 0.0324266143143177, + 0.01582210138440132, + -0.06298413872718811, + 0.0035534529015421867, + 0.05815926566720009, + 0.016430644318461418, + -0.011105898767709732, + 0.01610463857650757, + 0.06337533891201019, + 0.054725345224142075, + 0.07167759537696838, + 0.03844683989882469, + 0.0021937410347163677, + -0.006378828082233667, + -0.03055752068758011, + -0.06337533891201019, + 0.08476126194000244, + 0.059637151658535004, + 0.021081646904349327, + -0.07398136705160141, + -0.061201974749565125, + 0.1166662648320198, + -0.08523940294981003, + 0.030666189268231392, + 0.015995971858501434, + -0.01544176321476698, + 0.020005831494927406, + -0.010948329232633114, + -0.08037105947732925, + 0.04833565279841423, + -0.008889065124094486, + -0.0147462859749794, + 0.062375593930482864, + -0.010877694934606552, + -0.056681375950574875, + 0.0006071840180084109, + -0.042228493839502335, + 0.009959448128938675, + 0.08432658761739731, + 0.00405876012519002, + -0.0010011065751314163, + -0.13770444691181183, + -0.016321975737810135, + -0.03225274756550789, + -0.008079486899077892, + 0.0015648232074454427, + 0.010231118649244308, + 0.03468691557645798, + -0.07372055947780609, + -0.03864243999123573, + -0.013257530517876148, + -0.01056255679577589, + 0.04598841816186905, + -0.020549172535538673, + 0.0017726513324305415, + 0.0339697040617466, + -0.019179951399564743, + -0.01144277025014162, + -0.02955777198076248, + 0.05363866314291954, + 0.010089850053191185, + -0.018951747566461563, + -0.08980346471071243, + 0.05533389002084732, + 0.06194091960787773, + 0.06250599771738052, + -0.04598841816186905, + 0.05594243109226227, + -0.010888561606407166, + 0.11362355947494507, + -0.06389694660902023, + 0.022081395611166954, + -0.057724591344594955, + -0.020712174475193024, + 0.023363681510090828, + 0.02857975848019123, + -0.08819517493247986, + -0.019701559096574783, + -0.040207263082265854, + 0.010280019603669643, + 0.01936468854546547, + 0.0984969288110733, + 0.03107912838459015, + -0.07198186963796616, + -0.045553743839263916, + -0.10571250319480896, + 0.03703415021300316, + -0.014202944934368134, + -0.014018208719789982, + -0.03120953030884266, + 0.03977259248495102, + 0.06054996699094772, + -0.0184518750756979, + 0.04459746181964874, + -0.03564319759607315, + 0.024906769394874573, + -0.02642812579870224, + 0.06415775418281555, + 0.036534275859594345, + 0.0791105106472969, + -0.008845598436892033, + 0.041446082293987274, + -0.032861288636922836, + -0.0007762990426272154, + 0.03972912207245827, + -0.02727573923766613, + 0.07254694402217865, + -0.013953007757663727, + 0.020092764869332314, + 0.013713937252759933, + -0.019864561036229134, + -0.07737181335687637, + 0.017495593056082726, + 0.05107409134507179, + -0.08550020307302475, + 0.0661572515964508, + 0.0874127671122551, + 0.03605613484978676, + 0.033730633556842804, + -0.011002663522958755, + 0.010280019603669643, + 0.0007674697553738952, + -0.01611550711095333, + 0.002508878940716386, + -0.11058084666728973, + -0.005846353713423014, + 0.0059387218207120895, + 0.0557250939309597, + -0.03812083229422569, + 0.021407650783658028, + 0.028666693717241287, + 0.02681933157145977, + 0.013931273482739925, + 0.045292939990758896, + 0.07106905430555344, + 0.01170357409864664, + -0.008970567025244236, + 0.008340290747582912, + 0.007248174399137497, + -0.047466304153203964, + 0.031231263652443886, + -0.04846605286002159, + 0.0062212590128183365, + -0.011877443641424179, + 0.025819584727287292, + -0.0031106295064091682, + 0.058637406677007675, + 0.009676910936832428, + -0.0010764951584860682, + -0.021701056510210037, + -0.022059660404920578, + -0.056159768253564835, + 0.03481731936335564, + 0.02447209693491459, + 0.012540319934487343, + -0.03896844759583473, + -0.01864747703075409, + -0.002578154904767871, + 0.0803275927901268, + -0.006482062861323357, + 0.002015796722844243, + 0.05559469386935234, + -0.07702407985925674, + -0.043076105415821075, + -0.008177287876605988, + 0.0215489212423563, + -0.028992697596549988, + -0.012290382757782936, + 0.000584091991186142, + -0.045814547687768936, + -0.07376402616500854, + 0.09171602874994278, + -0.02564571425318718, + -0.01744125969707966, + -0.04711856693029404, + -0.024233026430010796, + 0.05411680415272713, + -0.06698312610387802, + 0.08428312093019485, + 0.008992300368845463, + -0.09658437222242355, + 0.02629772387444973, + -0.04377158358693123, + 0.0010724201565608382, + -0.02479810267686844, + 0.017941134050488472, + -0.0018256271723657846, + 0.02864495851099491, + 0.06528790295124054, + -0.023928755894303322, + 0.0042733801528811455, + -0.08067533373832703, + 0.0075850458815693855, + 0.009959448128938675, + -0.05455147847533226, + -0.023059409111738205, + -0.03807736560702324, + 0.010513655841350555, + 0.015496096573770046, + -0.07963211834430695, + -0.019897162914276123, + -0.00927483756095171, + -0.002324142958968878, + 0.03316555917263031, + 0.030992193147540092, + -0.010437588207423687, + -0.026015186682343483, + -0.00823162216693163, + -0.07528538256883621, + 0.07558965682983398, + 0.048379119485616684, + -0.0679394081234932, + 0.049422334879636765, + 0.09927934408187866, + 0.06780900806188583, + 0.03872937709093094, + 0.03825123608112335, + 0.012844591401517391, + 0.03864243999123573, + 0.0032437483314424753, + 0.021983593702316284, + -0.005311162211000919, + 0.018919147551059723, + -0.01487668789923191, + 0.01962549239397049, + 0.04324997588992119, + 0.0314486026763916, + 0.0014778886688873172, + 0.07228614389896393, + 0.01770206354558468, + -0.021472852677106857, + -0.01422467827796936, + 0.0444018617272377, + -0.006732000038027763, + -0.05676830932497978, + -0.061853986233472824, + -0.011823109351098537, + 0.04868339002132416, + -0.06780900806188583, + -0.0018025351455435157, + -0.051769569516181946, + -0.03766442835330963, + 0.08232709020376205, + -0.034947719424963, + -0.03733842074871063, + -0.011942644603550434, + 0.10119190067052841, + -0.04494520276784897, + 0.018995216116309166, + 0.05781152471899986, + 0.00015315435302909464, + 0.02551531232893467, + -0.04816178232431412, + -0.04192422330379486, + -0.016832716763019562, + 0.06820021569728851, + 0.03457824885845184, + -0.061984386295080185, + -0.0071069058030843735, + 0.008307689800858498, + 0.01557216513901949, + -0.0659833773970604, + -0.0550730861723423, + -0.001223197323270142, + -0.039077114313840866, + 0.04122874513268471, + 0.05520348623394966, + -0.04685776308178902, + -0.006786334328353405, + 0.10805974155664444, + 0.07085172086954117, + 0.059289414435625076, + 0.03314382582902908, + -0.016267642378807068, + 0.05533389002084732, + -0.041902489960193634, + -0.017712930217385292, + -0.033056892454624176, + -0.032948222011327744, + -0.03533892706036568, + -0.019484223797917366, + -0.008410925045609474, + 0.0012320266105234623, + -0.03281782194972038, + 0.013127128593623638, + -0.006020222790539265, + -0.0033089492935687304, + -0.0359257347881794, + -0.00883473176509142, + -0.036664679646492004, + -0.005368213169276714, + 0.06263639777898788, + -0.00254691275767982, + -0.0030888959299772978, + -0.015224426053464413, + 0.046336155384778976, + -0.10275673121213913, + 0.07937131077051163, + 0.023450614884495735, + 0.026254257187247276, + 0.055768560618162155, + -0.04201115667819977, + 0.02210312895476818, + -0.05650750547647476, + -0.005221510771661997, + 0.06024569645524025, + -0.028949230909347534, + 0.08432658761739731, + 0.06168011575937271, + -0.04481479898095131, + -0.007927351631224155, + 0.025558779016137123, + 0.020755641162395477, + -0.023233279585838318, + -0.048770323395729065, + 0.011670973151922226, + 0.04681429639458656, + -0.03831643611192703, + -0.04009859636425972, + 0.008497859351336956, + -0.0008774963789619505, + -0.0005698293098248541, + -0.0025374044198542833, + 0.06946076452732086, + 0.020234033465385437, + 0.012366450391709805, + 0.017234789207577705, + -0.001702016917988658, + 0.04238063097000122, + 0.04885726049542427, + -0.021364184096455574, + 0.08119694143533707, + 0.009437840431928635, + 0.048900727182626724, + 0.02766694501042366, + -0.04131568223237991, + -0.028884029015898705, + -0.14405067265033722, + 0.00824792217463255, + 0.07745875418186188, + -0.08789090812206268, + -0.0668092593550682, + -0.03925098478794098, + -0.01230124942958355, + -0.01682185009121895, + -0.0427718348801136, + 0.05881127342581749, + 0.06759167462587357, + 0.11631853133440018, + 0.02753654308617115, + 0.041967689990997314, + -0.07037357985973358, + 0.07632859796285629, + -0.033926237374544144, + -0.002382552018389106, + 0.030188048258423805, + -0.028297221288084984, + -0.0031405133195221424, + 0.0015797651140019298, + -0.03381757065653801, + 0.03844683989882469, + -0.06459242850542068, + 0.1088421493768692, + -0.033056892454624176, + -0.029796842485666275, + -0.005150876473635435, + -0.036599475890398026, + -0.04142434895038605, + -0.012703321874141693, + 0.05155223235487938, + -0.020625239238142967, + 0.03553452715277672, + -0.016321975737810135, + -0.05090022459626198, + -0.036664679646492004, + 0.010404988192021847, + -0.08224015682935715, + 0.01531136129051447, + -0.034904252737760544, + 0.05276931822299957, + 0.0647662952542305, + -0.0706343799829483, + 0.00815555453300476, + 0.02466770075261593, + -0.01026915293186903, + 0.016398044303059578, + 0.11927430331707001, + -0.00685153529047966, + -0.013822605833411217, + 0.09084668010473251, + -0.011986111290752888, + 0.018821345642209053, + 0.006693966221064329, + 0.06898262351751328, + -0.04214156046509743, + -0.042358897626399994, + -0.03318729251623154, + -0.025754382833838463, + -0.0027167070657014847, + 0.03488251939415932, + -6.52434173389338e-05, + 0.054508011788129807, + 0.0046836030669510365, + -0.10345220565795898, + 0.03781656175851822, + -0.0032709152437746525, + -0.023233279585838318, + -0.050987157970666885, + 0.05885474011301994, + -0.015430895611643791, + -0.00862282793968916, + 0.043532513082027435, + -0.027710411697626114, + 0.005987622309476137, + 0.009177036583423615, + 0.007824116386473179, + -0.012485985644161701, + -0.05142183229327202, + 0.016267642378807068, + 0.01039955485612154, + 0.028536291792988777, + 0.003368716686964035, + 0.01903868280351162, + 0.05468187853693962, + 0.05220424383878708, + -0.05689871311187744, + -0.04344557970762253, + -0.03394797071814537, + -0.0668092593550682, + 0.01871267892420292, + -0.038099098950624466, + 0.10327833890914917, + -0.007324242033064365, + 0.012094779871404171, + -0.033317696303129196, + 0.04690122976899147, + 0.017941134050488472, + -0.018853947520256042, + -0.028688427060842514, + 0.01637631095945835, + 0.027167070657014847, + -0.00699823722243309, + 0.043923720717430115, + -0.05185650289058685 + ] + }, + { + "id": "b5c1da73-8058-47ea-8635-df1ec2d6cbe6", + "productId": "5718e332-127b-4e64-bc4f-db7b54067c4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "changdestiny", + "reviewDate": "2021-04-01T20:20:59", + "stars": 4, + "verifiedUser": true + }, + { + "id": "69272ac1-1ade-4304-8332-6360ad955d67", + "productId": "5718e332-127b-4e64-bc4f-db7b54067c4a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnathanchurch", + "reviewDate": "2021-07-17T00:51:19", + "stars": 5, + "verifiedUser": true + }, + { + "id": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Micro (Black)", + "description": "This Premium Mouse Micro (Black) is a great choice for a new kid on the block. It offers a variety of options, including standard micro and Micro 4-lens sizes.\n\nThis Ultra Micro Mouse Micro (Black) is perfect for gamers who get their hands on a gaming mouse in the early-80s", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-29T00:52:15", + "price": 592.34, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-02-11T03:30:04", + "newPrice": 566.31 + }, + { + "priceDate": "2021-07-08T03:30:04", + "newPrice": 559.42 + }, + { + "priceDate": "2021-12-02T03:30:04", + "newPrice": 601.42 + }, + { + "priceDate": "2022-04-28T03:30:04", + "newPrice": 539.52 + }, + { + "priceDate": "2022-09-22T03:30:04", + "newPrice": 627.79 + }, + { + "priceDate": "2022-11-14T03:30:04", + "newPrice": 592.34 + } + ], + "descriptionVector": [ + -0.04932980611920357, + 0.01015881635248661, + -0.05857100710272789, + -0.021840477362275124, + 0.03688671812415123, + 0.05758180841803551, + -0.044513966888189316, + 0.03350261598825455, + 0.0550827793776989, + 0.041988905519247055, + 0.02348046563565731, + -0.011610074900090694, + 0.07960450649261475, + -0.03326833248138428, + -0.0008240615134127438, + -0.0019507399993017316, + -0.050240907818078995, + -0.03186262771487236, + 0.004376555792987347, + 0.009306282736361027, + 0.054562147706747055, + -0.03373689949512482, + -0.03912543132901192, + 0.010861667804419994, + 0.0124365771189332, + 0.019614780321717262, + -0.024196334183216095, + 0.02292078733444214, + -0.035975612699985504, + 0.05424976721405983, + 0.03102961741387844, + -0.009690247476100922, + 0.026565205305814743, + 0.021645240485668182, + 0.01682940311729908, + -0.0765848457813263, + -0.025302674621343613, + -0.05461421236395836, + 0.0729924887418747, + 0.02172333560883999, + 0.024625854566693306, + 0.020174458622932434, + 0.0034654513001441956, + -0.06606809794902802, + -0.0067616975866258144, + 0.024625854566693306, + -0.0007874546572566032, + -0.014213231392204762, + -0.002508791396394372, + -0.0455031655728817, + 0.04344667121767998, + 0.03824036195874214, + -0.054197706282138824, + 0.010835636407136917, + 0.008772635832428932, + -0.017310986295342445, + 0.021059531718492508, + 0.14827576279640198, + 0.07439819723367691, + -0.07705341279506683, + 0.028348367661237717, + -0.049772340804338455, + 0.028530588373541832, + 0.02195761911571026, + -0.02131984755396843, + -0.044878408312797546, + -0.016881465911865234, + -0.006049083545804024, + 0.08517526090145111, + 0.08319686353206635, + -0.046179987490177155, + -0.02993629314005375, + 0.042327314615249634, + -0.04092160984873772, + -0.012332451529800892, + 0.038266390562057495, + 0.05219327658414841, + 0.019966205582022667, + 0.020695090293884277, + 0.02594044804573059, + -0.009774850681424141, + -0.0269426628947258, + -0.007529628463089466, + 0.047117121517658234, + 0.0970977172255516, + 0.03654830902814865, + 0.05076153948903084, + -0.07705341279506683, + -0.010210879147052765, + 0.06002877652645111, + -0.03282579407095909, + 0.05721736699342728, + 0.07080584019422531, + -0.00041345437057316303, + 0.03220103681087494, + -0.06565158814191818, + 0.004370048176497221, + 0.021267782896757126, + -0.006872331723570824, + 0.010419131256639957, + 0.07830292731523514, + 0.0045913164503872395, + 0.0015114573761820793, + -0.006846299860626459, + 0.021436989307403564, + -0.0026356952730566263, + -0.014174183830618858, + 0.006468842271715403, + -0.004265921656042337, + -0.10714589804410934, + -0.017584318295121193, + -0.010464686900377274, + 0.01190943829715252, + 0.018534470349550247, + -0.019250337034463882, + 0.03639211878180504, + -0.042691756039857864, + 0.0030961285810917616, + -0.05258375033736229, + 0.03805813938379288, + 0.039698127657175064, + 0.04886123538017273, + 0.020239537581801414, + 0.04024479165673256, + -0.03449181467294693, + -0.045346975326538086, + -0.026435047388076782, + 0.05716530233621597, + 0.04086954891681671, + -0.020838262513279915, + -0.05950814485549927, + 0.05607197806239128, + -0.0038917181082069874, + 0.018443359062075615, + -0.03155025094747543, + 0.05841481685638428, + 0.0068332841619849205, + -0.0018612564308568835, + 0.0038917181082069874, + 0.05669673532247543, + 0.027333136647939682, + -0.05799831449985504, + -0.05104788765311241, + -0.016282740980386734, + -0.05367707461118698, + -0.017870664596557617, + -0.03727719187736511, + 0.04745553061366081, + -0.01612655073404312, + -0.01449957862496376, + 0.026552191004157066, + -0.0695042610168457, + 0.011330235749483109, + -0.09511931985616684, + 0.09834723174571991, + 0.03675656020641327, + -0.05039709806442261, + -0.019406527280807495, + -0.11068619042634964, + 0.08345717936754227, + 0.05560341104865074, + 0.016907498240470886, + -0.01431735698133707, + 0.027046790346503258, + 0.060913849622011185, + 0.045815542340278625, + 0.004539253190159798, + -0.012345466762781143, + -0.011948485858738422, + 0.021046515554189682, + -0.01642591319978237, + -0.04453999921679497, + 0.043186355382204056, + -0.0028602175880223513, + 0.10615669935941696, + -0.01360148936510086, + -0.008102322928607464, + -0.023949034512043, + 0.012761971913278103, + -0.004034891724586487, + 0.026890600100159645, + 0.0520891509950161, + -0.08158290386199951, + 0.0066087618470191956, + 0.037563540041446686, + -0.030092481523752213, + 0.0027821229305118322, + 0.07684516161680222, + 0.005752974655479193, + -0.009208664298057556, + 0.03079533390700817, + -0.027853768318891525, + -0.009670724160969257, + -0.023103008046746254, + 0.027567420154809952, + 0.05534309521317482, + -0.03373689949512482, + 0.028660746291279793, + -0.023428402841091156, + -0.007972165010869503, + -0.04219715669751167, + 0.0008338233456015587, + 0.06773411482572556, + 0.03451784700155258, + 0.024860138073563576, + -0.023988081142306328, + 0.022191904485225677, + 0.03155025094747543, + 0.0027837499510496855, + -0.04094764217734337, + 0.02048683725297451, + -0.04685680568218231, + -0.004304969217628241, + -0.011030873283743858, + 0.03834448754787445, + -0.007412486243993044, + 0.06669285148382187, + 0.012677369639277458, + -0.056957051157951355, + -0.07247185707092285, + 0.04753362759947777, + 0.005385278724133968, + 0.03355468064546585, + -0.045346975326538086, + -0.06533921509981155, + -0.02424839697778225, + 0.06752586364746094, + 0.05326056852936745, + 0.020200489088892937, + 0.027879798784852028, + -0.05607197806239128, + -0.037667665630578995, + -0.009683740325272083, + 0.016673212870955467, + -0.036938782781362534, + 0.06023702770471573, + -0.07325280457735062, + -0.00913056917488575, + 0.06903569400310516, + 0.11839152872562408, + -0.06513096392154694, + 0.0024599824100732803, + -0.035376887768507004, + 0.005609801039099693, + 0.05070947855710983, + -0.08642477542161942, + 0.06643253564834595, + -0.09111045300960541, + -0.11818327754735947, + -0.016321787610650063, + -0.06960839033126831, + -0.004073938820511103, + -0.020447788760066032, + 0.02837439998984337, + -0.04576348140835762, + 0.05378120020031929, + 0.08231178671121597, + -0.053729139268398285, + -0.00403163768351078, + -0.0257712434977293, + 0.02670837938785553, + 0.035376887768507004, + -0.001119357068091631, + 0.07283630222082138, + -0.06924394518136978, + 0.0103280209004879, + 0.05091772973537445, + -0.0886114239692688, + -0.011499441228806973, + 0.04276985302567482, + -0.009071998298168182, + 0.016308771446347237, + 0.05555134639143944, + -0.0034914829302579165, + 0.030352797359228134, + -0.02431347593665123, + -0.033372458070516586, + 0.094598688185215, + 0.026617269963026047, + 0.021502068266272545, + 0.05966433137655258, + 0.08121846616268158, + 0.02381887659430504, + 0.05162058025598526, + 0.013965931721031666, + 0.025289660319685936, + 0.008974379859864712, + 0.024066176265478134, + -0.04404539614915848, + -0.020434774458408356, + -0.02441760152578354, + -0.0455031655728817, + 0.025458864867687225, + -0.0539373904466629, + 0.05940401926636696, + -0.0027202980127185583, + 0.015358619391918182, + 0.016673212870955467, + -0.004285445436835289, + 0.036964815109968185, + -0.012879113666713238, + 0.0293375663459301, + -0.03636608645319939, + -0.001781534869223833, + 0.014525610022246838, + 0.06856712698936462, + -0.02042175829410553, + -0.05680086091160774, + -0.03157627955079079, + -0.0443577766418457, + 0.008772635832428932, + -0.029441693797707558, + -0.07575183361768723, + 0.009156600572168827, + 0.14931702613830566, + -0.07174297422170639, + 0.05643641948699951, + -0.014981161803007126, + -0.03162834420800209, + -0.016477975994348526, + -0.016022425144910812, + -0.06721348315477371, + -0.024860138073563576, + 0.1138099730014801, + 0.0347260981798172, + -0.06304843723773956, + -0.09360948950052261, + 0.06242367997765541, + -0.0467006154358387, + -0.07241979986429214, + -0.06872331351041794, + -0.04745553061366081, + -0.02980613522231579, + -0.03667846694588661, + 0.038760989904403687, + -0.04703902825713158, + -0.034908320754766464, + 0.08038545399904251, + 0.08809079229831696, + 0.006257336121052504, + 0.02514648623764515, + 0.029780102893710136, + 0.023037929087877274, + 0.014746878296136856, + 0.010562305338680744, + -0.02946772426366806, + -0.045346975326538086, + -0.07939625531435013, + -0.03183659538626671, + 0.03306008130311966, + 0.0015716553898528218, + -0.11339347064495087, + 0.02012239582836628, + 0.01783161796629429, + 0.05549928545951843, + 0.0035175143275409937, + 0.10235609114170074, + 0.025836322456598282, + 0.02298586629331112, + 0.07018108665943146, + -0.022634441033005714, + -0.05104788765311241, + -0.015059256926178932, + 0.048340603709220886, + -0.012527687475085258, + 0.017675427719950676, + -0.009625168517231941, + 0.018742723390460014, + 0.022465234622359276, + 0.004324492532759905, + 0.034700069576501846, + -0.08080195635557175, + 0.008089306764304638, + 0.03363277390599251, + -0.053234539926052094, + 0.019081132486462593, + 0.046284113079309464, + 0.014031010679900646, + -0.03394515439867973, + 0.027046790346503258, + -0.03308610990643501, + 0.041754622012376785, + -0.021371910348534584, + 0.014772909693419933, + 0.0802292674779892, + -0.025823306292295456, + -0.02271253429353237, + -0.023506497964262962, + 0.0514904223382473, + -0.009078506380319595, + 0.026083622127771378, + -0.012950700707733631, + -0.023298244923353195, + 0.033138174563646317, + 0.023467451333999634, + -0.008883269503712654, + 0.02860868349671364, + 0.03160231187939644, + -0.01843034289777279, + -0.022439204156398773, + 0.06414175778627396, + 0.026422033086419106, + -0.028114084154367447, + -0.002978986594825983, + -0.04443586990237236, + -0.03220103681087494, + 0.060549404472112656, + -0.007451533805578947, + -0.03607974201440811, + -0.08902793377637863, + -0.04644029960036278, + -0.022478250786662102, + -0.029415661469101906, + 0.003927511628717184, + 0.02754138968884945, + -0.012215308845043182, + 0.001244633924216032, + -0.030587082728743553, + 0.02390998601913452, + -0.0635690689086914, + 0.06887950748205185, + -0.012911653146147728, + 0.009957071393728256, + -0.011707693338394165, + 0.03535085543990135, + -0.010920238681137562, + -0.1005859449505806, + 0.002858590567484498, + 0.08600827306509018, + -0.0371210016310215, + -0.008557874709367752, + -0.0413120836019516, + -0.07278423756361008, + -0.02232206240296364, + -0.018078917637467384, + 0.008974379859864712, + 0.04297810420393944, + 0.07622040808200836, + -0.026487112045288086, + 0.006878839340060949, + 0.053833264857530594, + -0.05039709806442261, + 0.02621378004550934, + 0.03188866004347801, + -0.0634128749370575, + 0.03761560097336769, + -0.038760989904403687, + 0.05461421236395836, + 0.054093580693006516, + -0.01026294194161892, + -0.004799568559974432, + -0.01165563054382801, + 0.02681250497698784, + -0.041624464094638824, + 0.06455826759338379, + 0.012351974844932556, + 0.08673715591430664, + 0.0514904223382473, + -0.009019935503602028, + 0.03149818629026413, + -0.06867125630378723, + 0.05841481685638428, + 0.07580389827489853, + 0.012768479995429516, + -0.01862557977437973, + -0.08783047646284103, + -0.023792844265699387, + 0.11505948752164841, + -0.0305610504001379, + 0.047012995928525925, + 0.015176398679614067, + -0.004994805436581373, + -0.01252118032425642, + 0.01659511961042881, + 0.047950129956007004, + -0.045346975326538086, + -0.034543879330158234, + 0.025953464210033417, + 0.0019458590541034937, + 0.04542506858706474, + 0.00874660350382328, + 0.025693148374557495, + -0.010926746763288975, + 0.055030714720487595, + 0.007861530408263206, + -0.03397118300199509, + 0.01220880076289177, + 0.01646496169269085, + 0.0814787819981575, + 0.0341273732483387, + 0.04766378551721573, + 0.04050510749220848, + -0.008375653997063637, + -0.0659119039773941, + -0.07174297422170639, + 0.024925217032432556, + -0.002780495909973979, + 0.03355468064546585, + -0.016777340322732925, + 0.011473409831523895, + 0.03902130573987961, + 0.014929099008440971, + -0.044982533901929855, + 0.0658077821135521, + 0.030508987605571747, + 0.06216336414217949, + 0.015345604158937931, + 0.04394127056002617, + 0.03399721533060074, + -0.06429795175790787, + 0.034309595823287964, + -0.009150093421339989 + ] + }, + { + "id": "161713df-f278-413a-a94e-322c0231dcbd", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin18", + "reviewDate": "2022-04-28T11:38:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4fffe09a-151c-4164-ae46-a7631935a934", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "meghan25", + "reviewDate": "2022-09-23T05:16:46", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ad014986-b36d-4360-a1f3-d927ced683ec", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hmorris", + "reviewDate": "2021-12-29T10:26:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0275a054-3634-4678-b7b6-b7cedc47d823", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dgarcia", + "reviewDate": "2022-09-11T03:46:32", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ea8c98ea-3d1b-45ec-a56e-26929c0f695d", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "todd14", + "reviewDate": "2022-01-30T09:16:12", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1ad06272-8f04-414a-a5cc-404a9a3a27f1", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicapeterson", + "reviewDate": "2021-10-08T17:18:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "107b3362-955b-40e2-856c-7bc982f53893", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gwalker", + "reviewDate": "2021-11-30T12:38:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fb8bf63a-6800-4eff-8fc3-3ee106458144", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "roy48", + "reviewDate": "2021-02-11T03:30:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d4b5d55f-12b1-4964-9c8a-aa43cd527beb", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownnicholas", + "reviewDate": "2021-03-14T21:54:57", + "stars": 5, + "verifiedUser": false + }, + { + "id": "bb2b8c12-e2c2-452a-962b-900972996ae6", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wigginselaine", + "reviewDate": "2021-05-04T06:38:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "55294ad4-cab4-4574-8288-df9278b13b77", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karen58", + "reviewDate": "2021-12-12T11:30:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fc027b00-c66c-452b-9045-531cd755d6db", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alangraves", + "reviewDate": "2021-12-14T19:46:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "678fdab8-f1f7-4a8e-98af-697cd2ea96e7", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wilsonscott", + "reviewDate": "2022-03-22T09:09:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "eb479187-448b-4e28-8a44-0753a73bca38", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simpsonbrittney", + "reviewDate": "2022-03-18T03:25:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "58657df5-2ec7-47ad-89eb-6893dffdc306", + "productId": "17dcc6c0-87b8-441c-a96f-0504e4ee72bd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "justin91", + "reviewDate": "2022-05-18T14:53:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse 3000 (Gold)", + "description": "This Basic Mouse 3000 (Gold) is equipped with a simple (?) mouse pad with a single click on the mouse. It attaches to the mouse in the same fashion as the A2 mouse pad. The standard A2 mouse pad is used with a standard A2", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-01-26T19:20:49", + "price": 379.63, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-03-17T05:08:21", + "newPrice": 393.75 + }, + { + "priceDate": "2021-08-09T05:08:21", + "newPrice": 403.49 + }, + { + "priceDate": "2022-01-01T05:08:21", + "newPrice": 396.4 + }, + { + "priceDate": "2022-05-26T05:08:21", + "newPrice": 402.72 + }, + { + "priceDate": "2022-10-18T05:08:21", + "newPrice": 383.83 + }, + { + "priceDate": "2024-10-22T05:08:21", + "newPrice": 379.63 + } + ], + "descriptionVector": [ + -0.04716634377837181, + -0.05368448421359062, + -0.004149002488702536, + 0.042885053902864456, + -0.012362824752926826, + -0.03939748555421829, + 0.011707402765750885, + 0.052674293518066406, + 0.03980637341737747, + 0.05041338875889778, + 0.04798411577939987, + -0.03182104602456093, + 0.06349778175354004, + -0.14912356436252594, + -0.020203838124871254, + 0.00564925791695714, + -0.08062293380498886, + 0.020612725988030434, + 0.02648145891726017, + -0.028405634686350822, + 0.07523524761199951, + -0.04146597161889076, + -0.01912149041891098, + 0.02191154472529888, + -0.027130868285894394, + -0.0677790641784668, + 0.013986348174512386, + -0.0001240191049873829, + -0.03699226677417755, + 0.0649409070611, + 0.01603078469634056, + 0.012723607942461967, + 0.009410418570041656, + -0.015633922070264816, + -0.02732328698039055, + -0.057148002088069916, + -0.0022428666707128286, + -0.045049749314785004, + -0.022200170904397964, + -3.64306106348522e-05, + 0.04639667272567749, + 0.026313094422221184, + 0.062006544321775436, + -0.02970445342361927, + -0.005252396687865257, + 0.039277225732803345, + -0.030786801129579544, + 0.045001644641160965, + -0.014659808948636055, + -0.027876487001776695, + 0.013842035084962845, + 0.042957209050655365, + -0.0546465739607811, + 0.026120677590370178, + 0.040070947259664536, + -0.01898920349776745, + -0.023715458810329437, + 0.19742035865783691, + 0.051952727138996124, + -0.051183056086301804, + 0.004236191511154175, + -0.03785814344882965, + 0.021334290504455566, + 0.004801418166607618, + -0.06821200996637344, + -0.02121403068304062, + 0.0008598657441325486, + 0.008123626932501793, + 0.07648596167564392, + 0.027563808485865593, + -0.05089443176984787, + -0.03737710043787956, + -0.024124344810843468, + 0.014335104264318943, + -0.006130301393568516, + 0.007841013371944427, + 0.06306483596563339, + 0.007780882995575666, + 0.0853852704167366, + -0.06205464527010918, + 0.02272931858897209, + -0.05657074972987175, + -0.035597238689661026, + 0.02484591118991375, + 0.015405426733195782, + -0.005571088287979364, + 0.010504793375730515, + -0.06850063055753708, + 0.01524908747524023, + 0.08346109837293625, + -0.017882801592350006, + 0.09861397743225098, + 0.018015088513493538, + 0.018339794129133224, + 0.038820233196020126, + -0.052674293518066406, + 0.008670814335346222, + 0.049018360674381256, + -0.03372116759419441, + -0.02407624013721943, + 0.06412313878536224, + 0.06287242472171783, + -0.11362253874540329, + -0.010829498060047626, + 0.014659808948636055, + 0.01544150523841381, + 0.018183454871177673, + -0.01574215665459633, + -0.0768226906657219, + -0.0692703053355217, + -0.02193559519946575, + -0.0011109104380011559, + 0.014695887453854084, + 0.03393763676285744, + -0.0520489364862442, + 0.03167673200368881, + -0.0918312594294548, + -0.019698742777109146, + -0.015838366001844406, + 0.0423799566924572, + 0.07196415215730667, + 0.0020865274127572775, + 0.0946694165468216, + 0.012074198573827744, + 0.0013025763910263777, + 0.010107932612299919, + -0.030618436634540558, + -0.040984928607940674, + -0.001416072598658502, + -0.07153120636940002, + -0.039662059396505356, + 0.08567389845848083, + 0.011268450878560543, + 0.046204254031181335, + -0.038507554680109024, + 0.07562008500099182, + -0.03663148358464241, + -0.002662276616320014, + -0.04608399420976639, + 0.09654548764228821, + -0.03146026283502579, + -0.0012409426271915436, + -0.0004618771781679243, + 0.042981259524822235, + -0.020456386730074883, + 0.003917500376701355, + -0.06801959127187729, + 0.04401550441980362, + -0.02732328698039055, + 0.013360991142690182, + 0.03843539580702782, + -0.06787527352571487, + -0.02111782133579254, + -0.06191033497452736, + -0.019313907250761986, + -0.008394214324653149, + -0.00494573125615716, + 0.010150023736059666, + -0.031917255371809006, + 0.023114154115319252, + 0.015778236091136932, + 0.003652926068753004, + -0.030281705781817436, + 0.025495320558547974, + -0.03384143114089966, + 0.03203751519322395, + 0.02518264204263687, + 0.027010608464479446, + -0.022224223241209984, + 0.0222121961414814, + -0.061092559248209, + 0.0001042887888615951, + -0.008887283504009247, + -0.03665553405880928, + 0.022260300815105438, + -0.02523074671626091, + -0.020227890461683273, + 0.03427436947822571, + 0.007347943726927042, + -0.04105708748102188, + 0.07441747188568115, + -0.025134537369012833, + -0.026625772938132286, + -0.03170078620314598, + 0.01574215665459633, + -0.045771315693855286, + -0.03331227973103523, + 0.04312557354569435, + -0.08427886664867401, + -0.05892786383628845, + 0.05060580372810364, + 0.01580228842794895, + 0.055127616971731186, + 0.01773848943412304, + 0.0007441145717166364, + 0.095920130610466, + -0.07436937093734741, + -0.013373017311096191, + 0.01630738377571106, + -0.013312886469066143, + -0.00458194175735116, + 0.02604852057993412, + 0.06806769222021103, + 0.0815369188785553, + -0.008839179761707783, + 0.014816148206591606, + -0.024040162563323975, + -0.06955893337726593, + 0.04553079232573509, + 0.016656139865517616, + 0.011388711631298065, + -0.0003173761360812932, + 0.013517330400645733, + -0.03747330978512764, + 0.05387690290808678, + 0.03910885751247406, + 0.002776524517685175, + 0.03817082196474075, + -0.008893297053873539, + -0.020336125046014786, + 0.052289459854364395, + 0.0211899783462286, + -0.09370733052492142, + -0.03136405348777771, + -0.04108113795518875, + 0.0017558097606524825, + 0.08331678062677383, + -0.05753283575177193, + 0.076582171022892, + 0.034009795635938644, + -0.04750307276844978, + 0.016523852944374084, + -0.010540871880948544, + 0.0333363339304924, + -0.06364209204912186, + 0.020841222256422043, + -0.009632901288568974, + -0.043029364198446274, + 0.006385856308043003, + 0.02931961789727211, + -0.07677458971738815, + 0.0003081686736550182, + -0.07869876176118851, + -0.0252788495272398, + 0.03576560318470001, + 0.023270493373274803, + 0.028622103855013847, + -0.07759235799312592, + -0.02770812064409256, + -0.06965513527393341, + -0.01689666323363781, + 0.07388832420110703, + -0.03672769293189049, + 0.05902406945824623, + 0.040143102407455444, + 0.04562700167298317, + 0.04593968018889427, + -0.06522953510284424, + -0.08605872839689255, + -0.03295150026679039, + 0.022524874657392502, + 0.04846515879034996, + -0.058013878762722015, + 0.02384774573147297, + 0.047022029757499695, + -0.022128013893961906, + 0.0014085563598200679, + -0.10736896842718124, + 0.00013576333003584296, + 0.06498901546001434, + 0.04940319433808327, + -0.027082763612270355, + 0.03617449104785919, + -0.027419494464993477, + 0.016932740807533264, + 0.031243793666362762, + -0.017522020265460014, + 0.045819420367479324, + -0.03261476755142212, + -0.08937793225049973, + 0.054790884256362915, + 0.07749614864587784, + 0.04074440896511078, + -0.017089080065488815, + 0.004188087303191423, + 0.026385251432657242, + -0.040960878133773804, + 0.049836136400699615, + -0.0546465739607811, + 0.02134631760418415, + -0.003701030509546399, + -0.021923569962382317, + -0.0312918983399868, + 0.012314721010625362, + 0.024918068200349808, + -0.007384021766483784, + 0.05344396457076073, + 0.07436937093734741, + -0.039662059396505356, + 0.021057691425085068, + -0.019037308171391487, + -0.01201406866312027, + -0.14335104823112488, + -0.07090584933757782, + 0.0412013977766037, + 0.014214843511581421, + 0.022248273715376854, + -0.034827567636966705, + -0.023739511147141457, + -0.024400945752859116, + 0.08880068361759186, + 0.07773667573928833, + -0.02441297098994255, + -0.04149002581834793, + 0.10082677751779556, + -0.07990136742591858, + 0.021971674636006355, + 0.0277562253177166, + 0.0083340834826231, + 0.04351041093468666, + -0.02157481387257576, + -0.07345538586378098, + -0.013661643490195274, + 0.05695558339357376, + 0.09168694168329239, + -0.06253568828105927, + -0.0009245059918612242, + -0.013156547211110592, + -0.05127926543354988, + -0.062150854617357254, + -0.03410600498318672, + -0.07080963999032974, + -0.04731065407395363, + 0.003941552247852087, + -0.007438139524310827, + -0.0628243163228035, + 0.027130868285894394, + 0.045025698840618134, + 0.022512849420309067, + -0.008490422740578651, + -0.015008565969765186, + 0.1251675933599472, + -0.003830311121419072, + 0.02773217298090458, + 0.027948644012212753, + -0.038868337869644165, + 0.02093742974102497, + -0.030690593644976616, + -0.0028742365539073944, + -0.01603078469634056, + 0.001458915532566607, + -0.07056912034749985, + -0.0090616624802351, + -0.07537955790758133, + 0.07619733363389969, + -0.033673062920570374, + 0.0009553228737786412, + -0.02722707763314247, + -0.029079096391797066, + 0.034009795635938644, + -0.02975255809724331, + -0.07499472796916962, + 0.043317992240190506, + 0.06114066392183304, + -0.061236873269081116, + 0.042957209050655365, + -0.03622259572148323, + 0.01527313981205225, + 0.017594175413250923, + -0.03670363873243332, + -0.056426435708999634, + -0.018604367971420288, + 0.012182433158159256, + 0.030810853466391563, + -0.08293194323778152, + -0.003087699646130204, + 0.016139019280672073, + 0.02244069240987301, + -0.04812842980027199, + -0.02298186719417572, + 0.009458523243665695, + 0.021286187693476677, + -0.014659808948636055, + -0.0815369188785553, + 0.11208319664001465, + -0.04040767624974251, + -0.037641674280166626, + 0.005336579401046038, + 0.025495320558547974, + -0.009320222772657871, + 0.055175721645355225, + 0.04723849892616272, + 0.015104774385690689, + 0.06138118728995323, + 0.040888719260692596, + -0.044159818440675735, + 0.011557077057659626, + -0.0016701238928362727, + -0.027804329991340637, + 0.047815751284360886, + -0.013962295837700367, + 0.0011853219475597143, + 0.0034214239567518234, + 0.03186915069818497, + -0.004464687313884497, + 0.019386064261198044, + 0.012988181784749031, + 0.028718313202261925, + -0.02014370821416378, + -0.015152879059314728, + 0.05127926543354988, + -0.03983042389154434, + 0.05301102250814438, + -0.009626888670027256, + -0.0724932998418808, + -0.02259703166782856, + -0.011316554620862007, + 0.025351006537675858, + 0.07562008500099182, + -0.02809295617043972, + 0.03461109846830368, + 0.010643093846738338, + -0.03350469842553139, + -0.014515495859086514, + -0.011935899034142494, + -0.05984184518456459, + -0.07629354298114777, + -0.008261926472187042, + 0.09163884073495865, + -0.03489972651004791, + -0.016066862270236015, + -0.055175721645355225, + -0.023282518610358238, + 0.020540568977594376, + -0.022741343826055527, + -0.018291689455509186, + 0.025856103748083115, + 0.028309425339102745, + -0.02518264204263687, + 0.005625205580145121, + 0.03427436947822571, + -0.05171220749616623, + 0.019843054935336113, + 0.05503140762448311, + 0.026577668264508247, + 0.021334290504455566, + -0.04199512302875519, + -0.028020799160003662, + 0.05892786383628845, + -0.008099574595689774, + -0.011659298092126846, + -0.008598657324910164, + -0.0821622759103775, + -0.004996842239052057, + 0.07537955790758133, + 0.03903670236468315, + 0.036006126552820206, + 0.0036890043411403894, + 0.012964129447937012, + 0.032374244183301926, + -0.029415827244520187, + 0.048729732632637024, + 0.08605872839689255, + -0.0039686113595962524, + 0.02643335610628128, + -0.057196103036403656, + 0.018808811902999878, + -0.04550674185156822, + -0.024136371910572052, + 0.019337959587574005, + -0.01692071557044983, + -0.029030991718173027, + 0.0003760033578146249, + 0.08057483285665512, + 0.03653527423739433, + -0.07292623817920685, + -0.017401758581399918, + 0.024328788742423058, + 0.024966171011328697, + 0.02725112996995449, + -0.03434652462601662, + 0.02761191315948963, + -0.07234898209571838, + -0.004278283100575209, + 0.06152549758553505, + -0.08456749469041824, + 0.0587354451417923, + 0.016163071617484093, + 0.03304770588874817, + 0.04403955861926079, + 0.02811700850725174, + 0.07177173346281052, + 0.05046149343252182, + 0.016199149191379547, + -0.016571957617998123, + 0.005035927053540945, + 0.027780277654528618, + 0.02052854374051094, + -0.0005712395068258047, + 0.05608970299363136, + -0.005438801366835833, + -0.001578424940817058, + -0.011725441552698612, + -0.012410929426550865, + 0.03906075283885002, + 0.03422626480460167, + 0.014912356622517109, + -0.004663118161261082, + 0.02891073003411293, + -0.0406481996178627, + -0.028285374864935875, + -0.04714228957891464 + ] + }, + { + "id": "a0b5b989-e46f-4c1c-8197-88a2a44f4dfd", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rodriguezscott", + "reviewDate": "2022-01-29T13:11:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "561d0209-999a-4f22-baa3-a7f48ac5fd22", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sdrake", + "reviewDate": "2021-03-18T05:18:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bc586aaf-43c9-4365-8e44-a426269cf840", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelahenderson", + "reviewDate": "2021-12-30T21:53:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5d23d694-6ed7-4af5-8847-98ed6dc4053a", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xmaldonado", + "reviewDate": "2021-03-17T05:08:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "17dc0093-e66b-423d-902d-08de4fe87bd3", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vhernandez", + "reviewDate": "2022-10-22T02:40:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "df066ae9-ad79-4ce5-8a25-9d1cc68f50a2", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michaelschaefer", + "reviewDate": "2021-08-03T15:46:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3d7b48b2-b58c-4a4f-aefd-12afb1fbd784", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nallen", + "reviewDate": "2022-08-11T12:00:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8234aeb0-d063-4d84-8e46-ba830439728b", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ramirezjacob", + "reviewDate": "2022-04-21T19:10:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2e56e19b-59cf-47ac-b716-2ec2ad934570", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "damon45", + "reviewDate": "2022-05-17T13:55:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0ebc020c-e3b3-45af-96af-58c44d544e01", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smathis", + "reviewDate": "2022-08-19T03:40:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a7999394-dfb3-4cc4-928d-04f14612ada0", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vsmith", + "reviewDate": "2021-06-26T22:24:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "347935bd-7404-4a3d-855d-2659c344d385", + "productId": "6ac8e7ca-d25a-49fb-a115-cd8cc55837b7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maria69", + "reviewDate": "2021-09-30T16:18:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard + (Black)", + "description": "This Basic Keyboard + (Black) is also available to use to type out of a keyboard.", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-03-15T23:50:49", + "price": 660.35, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-04-18T19:40:13", + "newPrice": 610.33 + }, + { + "priceDate": "2021-11-03T19:40:13", + "newPrice": 708.87 + }, + { + "priceDate": "2022-05-21T19:40:13", + "newPrice": 721.51 + }, + { + "priceDate": "2022-12-06T19:40:13", + "newPrice": 620.59 + }, + { + "priceDate": "2024-01-29T19:40:13", + "newPrice": 660.35 + } + ], + "descriptionVector": [ + -0.005274102091789246, + -0.018344702199101448, + -0.04446848854422569, + 0.016893381252884865, + 0.04024223983287811, + -0.012330426834523678, + 0.024753738194704056, + 0.046326179057359695, + -0.03371709957718849, + 0.008324779570102692, + 0.05438391491770744, + 0.021433115005493164, + 0.02863166853785515, + -0.05354795604944229, + 0.02707585133612156, + 0.0010841371258720756, + -0.007239191327244043, + 0.005410526413470507, + 0.027679601684212685, + 0.008980777114629745, + -0.0007307403138838708, + -0.03624820336699486, + -0.1647772341966629, + 0.008533770218491554, + 0.011186785064637661, + -0.00168788677547127, + -0.010530788451433182, + 0.04024223983287811, + 0.059724777936935425, + 0.03550512716174126, + 0.004484583158046007, + -0.02073648013174534, + -0.04518834501504898, + 0.00019248150056228042, + -0.006664467975497246, + -0.036503635346889496, + -0.044120170176029205, + -0.033461667597293854, + -0.04811420664191246, + -0.013340546749532223, + 0.08531447499990463, + -0.009538084268569946, + 0.024776959791779518, + -0.019227106124162674, + -0.0026588207110762596, + 0.09051601588726044, + 0.07361102104187012, + -0.04342353716492653, + 0.010112807154655457, + -0.0055933925323188305, + 0.07393611967563629, + -0.0025891573168337345, + -0.020968692377209663, + -0.03432084992527962, + 0.019598644226789474, + 0.060560740530490875, + 0.014037180691957474, + 0.11907801777124405, + 0.02535748854279518, + -0.10932514071464539, + -0.04960035905241966, + -0.03315979242324829, + 0.02259417250752449, + -0.007935825735330582, + 0.019319990649819374, + -0.009799322113394737, + -0.03413508087396622, + -0.08071669191122055, + 0.011041653342545033, + 0.02368556521832943, + -0.01303867157548666, + 0.025682583451271057, + -0.008597628213465214, + 0.07258929312229156, + 0.012318816035985947, + 0.018298260867595673, + 0.04242502897977829, + 0.042192816734313965, + -0.0020057260990142822, + 0.002114575356245041, + -0.0010594646446406841, + -0.06232554838061333, + -0.05480189621448517, + -0.026193449273705482, + 0.0027342895045876503, + 0.035133589059114456, + -0.005323446821421385, + -0.05772776156663895, + -0.048067763447761536, + 0.09334899485111237, + -0.025566477328538895, + 0.033206235617399216, + 0.014222949743270874, + -0.034924596548080444, + 0.047974880784749985, + -0.01280646026134491, + -0.04683704301714897, + 0.02865489013493061, + -0.03919728845357895, + 0.00994445476680994, + 0.12390801310539246, + -0.02514849789440632, + -0.006443866994231939, + 0.007233385927975178, + 0.04086920991539955, + 0.012504585087299347, + 0.06743419915437698, + -0.013642420992255211, + -0.03406541794538498, + -0.07063871622085571, + -0.023302417248487473, + 0.027331285178661346, + 0.004838705528527498, + 0.030257148668169975, + -0.03541224077343941, + 0.04932170733809471, + -0.023987440392374992, + -0.0153840072453022, + 0.046047527343034744, + -0.060235645622015, + -0.035481907427310944, + 0.013886243104934692, + 0.027935033664107323, + 0.03931339457631111, + -0.006089744623750448, + -0.04969324544072151, + -0.05503410845994949, + 0.046604834496974945, + 0.053129974752664566, + -0.0580064132809639, + -0.05150449275970459, + 0.025659361854195595, + 0.0607929527759552, + 0.03002493642270565, + 0.03234705328941345, + 0.016045808792114258, + 0.03882575035095215, + 0.04646550491452217, + -0.08104179054498672, + 0.04646550491452217, + -0.03497103974223137, + -0.05094718560576439, + 0.0396617129445076, + 0.0606071837246418, + -0.02644888125360012, + 0.04507223889231682, + 0.048717956990003586, + 0.05415170267224312, + 0.05020410940051079, + 0.07370390743017197, + 0.012876123189926147, + -0.10793186724185944, + -0.01262069121003151, + -0.10338052362203598, + 0.003541224170476198, + -0.006490309257060289, + 0.01840275526046753, + -0.042541131377220154, + -0.048067763447761536, + 0.07630467414855957, + -0.02800469845533371, + 0.02719195745885372, + 0.012516195885837078, + -0.028167245909571648, + -0.005448260344564915, + 0.025496814399957657, + 0.04895016923546791, + 0.06418323516845703, + -0.024451863020658493, + 0.02893354371190071, + 0.024010661989450455, + 0.04388795793056488, + -0.033206235617399216, + -0.026959747076034546, + -0.016649559140205383, + 0.01308511383831501, + 0.02726162225008011, + 0.019041337072849274, + 0.014548045583069324, + -0.04783555492758751, + 0.019679918885231018, + 0.01563943922519684, + -0.04699959233403206, + 0.048532187938690186, + 0.08280659466981888, + -0.013851411640644073, + 0.01036824006587267, + 0.026750756427645683, + -0.00400274433195591, + -0.019122611731290817, + -0.013828190043568611, + -0.041914161294698715, + -0.040079690515995026, + -0.02359268069267273, + 0.02524138242006302, + 0.07193910330533981, + -0.040079690515995026, + 0.009015608578920364, + 0.021676937118172646, + 0.005747232586145401, + 0.0574491061270237, + 0.0609787218272686, + 0.03831488639116287, + 0.014884752221405506, + 0.009735464118421078, + 0.04597786068916321, + -0.008800812996923923, + 0.07337880879640579, + 0.01271357573568821, + -0.04400406405329704, + 0.01272518653422594, + -0.001959283836185932, + -0.005105748772621155, + -0.03394931182265282, + 0.0628364086151123, + -0.022896045818924904, + 0.016521843150258064, + -0.012585858814418316, + -0.02563614211976528, + -0.07718707621097565, + 0.030419696122407913, + 0.021119629964232445, + 0.04089243337512016, + -0.03550512716174126, + -0.010495956055819988, + -0.10495956242084503, + 0.03771113604307175, + 0.02654176577925682, + 0.009102688170969486, + 0.09274524450302124, + -0.05977122113108635, + -0.02452152594923973, + 0.00672252057120204, + -0.013909464702010155, + 0.03074479289352894, + -0.0012858707923442125, + 0.025125276297330856, + -0.015720713883638382, + -0.11257609724998474, + 0.07867322862148285, + -0.004025965463370085, + -0.027609938755631447, + -0.029490850865840912, + -0.020655205473303795, + 0.052386898547410965, + -0.04490968957543373, + 0.10468091070652008, + 0.01675405353307724, + -0.08879765123128891, + -0.020991912111639977, + -0.01827503927052021, + 0.08550024777650833, + 0.0043046195060014725, + 0.003195809666067362, + -0.012005330994725227, + 0.005187022499740124, + 0.055498529225587845, + -0.02296571061015129, + -0.038245223462581635, + -0.07286794483661652, + 0.060374971479177475, + -0.020214004442095757, + -0.08851899206638336, + 0.01610386185348034, + -0.014873141422867775, + -0.005912683438509703, + 0.026239890605211258, + -0.1290166676044464, + -0.04544377699494362, + 0.06255775690078735, + 0.06896679103374481, + 0.021328618749976158, + 0.017984775826334953, + -0.013061892241239548, + -0.02598445862531662, + 0.01058303564786911, + -0.10393783450126648, + 0.03397253155708313, + 0.02142150327563286, + 0.021734990179538727, + -0.05052920803427696, + 0.1228862851858139, + 0.0396617129445076, + -0.0076397559605538845, + 0.005979444365948439, + -0.055591415613889694, + -0.029769504442811012, + 0.06919900327920914, + 0.0025949627161026, + -0.00764556135982275, + -0.01988890953361988, + 0.03332233801484108, + -0.02147955633699894, + 0.048253532499074936, + 0.10022245347499847, + 0.025868352502584457, + 0.01606903038918972, + -0.05090074613690376, + 0.05415170267224312, + 0.04405050724744797, + 0.021189292892813683, + -0.054569683969020844, + -0.10746745020151138, + -0.08382832258939743, + 0.01709076017141342, + 0.06822371482849121, + 0.039429500699043274, + -0.012539416551589966, + -0.04344675689935684, + -0.05368728190660477, + 0.04391118139028549, + -0.011790535412728786, + -0.07114958018064499, + -0.023232752457261086, + 0.025032391771674156, + -0.06836304068565369, + 0.02374361827969551, + 0.024567969143390656, + -0.030535802245140076, + 0.010345019400119781, + -0.07881255447864532, + -0.05029699578881264, + -0.07101025432348251, + 0.14155608415603638, + 0.07793015241622925, + 0.00015120954776648432, + -0.055219877511262894, + -0.02016756311058998, + 0.026286333799362183, + -0.047162141650915146, + -0.06650535017251968, + -0.012458142824470997, + -0.027400948107242584, + -0.03278825432062149, + 0.05234045535326004, + -0.09548533707857132, + 0.045583102852106094, + 0.00392437307164073, + 0.03452983871102333, + -0.009276846423745155, + 0.015952924266457558, + 0.038988299667835236, + 0.00786616187542677, + -0.060282085090875626, + -0.044491708278656006, + -0.059446126222610474, + 0.02262900397181511, + -0.025821911171078682, + -0.0015093742404133081, + 0.0018910717917606235, + 0.0013874633004888892, + -0.01923871599137783, + 0.07096381485462189, + -0.046976372599601746, + 0.03692161664366722, + -0.028608446940779686, + 0.004774847533553839, + -0.01350309420377016, + -0.029815947636961937, + 0.04829997569322586, + -0.02498594857752323, + -0.04270368069410324, + 0.048532187938690186, + -0.016986265778541565, + -0.0302107073366642, + 0.007993877865374088, + 0.059539008885622025, + 0.0061942399479448795, + 0.024451863020658493, + -0.009131714701652527, + 0.03940627723932266, + -0.023766839876770973, + -0.038059454411268234, + 0.02151438780128956, + -0.05141161009669304, + 0.03524969518184662, + -0.019319990649819374, + -0.0011806499678641558, + 0.0019578326027840376, + 0.005088333040475845, + 0.010844273492693901, + 0.014710593968629837, + 0.011569933965802193, + -0.05749554932117462, + 0.03708416596055031, + -0.08011294156312943, + -0.0774657279253006, + -0.009909622371196747, + 0.03754858672618866, + 0.05823862552642822, + -0.04272690415382385, + 0.025682583451271057, + -0.07022073864936829, + 0.031720079481601715, + 0.052015360444784164, + -0.024173209443688393, + -0.006345177069306374, + 0.049368150532245636, + -0.030141042545437813, + 0.06571583449840546, + 0.059724777936935425, + 0.016637949272990227, + 0.0045890784822404385, + -0.017729341983795166, + -0.05308353155851364, + -0.10514533519744873, + -0.055312760174274445, + 0.03432084992527962, + 0.041705172508955, + -0.04407372698187828, + -0.014211338944733143, + 0.0006128204404376447, + 0.008574406616389751, + -0.0574491061270237, + 0.04525800794363022, + 0.019726360216736794, + 0.05085430294275284, + 0.09042312949895859, + 0.027122294530272484, + -0.04084599018096924, + 0.03239349275827408, + -0.0402190200984478, + -0.08183130621910095, + -0.020933860912919044, + 0.0038663202431052923, + -0.020620374009013176, + 0.008783397264778614, + 0.01824020780622959, + -0.02874777466058731, + 0.009886401705443859, + -0.014629320241510868, + -0.021375061944127083, + -0.04579209163784981, + 0.011813756078481674, + -0.009903817437589169, + -0.038802530616521835, + -0.0004669626650866121, + 0.04932170733809471, + -0.06218621879816055, + 0.056427378207445145, + -0.03313656896352768, + -0.03606243431568146, + -0.06984919309616089, + 0.036039214581251144, + -0.05364083871245384, + 0.06511208415031433, + 0.006577388849109411, + 0.04555988311767578, + 0.09144485741853714, + 0.0007757312851026654, + -0.038895413279533386, + -0.01002572849392891, + 0.009625163860619068, + -0.014826699160039425, + 0.06929188966751099, + -0.04922882094979286, + 0.037223491817712784, + 0.09985091537237167, + -0.007424960378557444, + -0.009421978145837784, + -0.012934176251292229, + 0.007186943665146828, + 0.013328935950994492, + -0.01610386185348034, + -0.04196060448884964, + -0.09678572416305542, + -0.0102869663387537, + 0.0308608990162611, + -0.01721847802400589, + 0.004072407726198435, + -0.0038924440741539, + -0.11304052174091339, + 0.039243731647729874, + 0.017485519871115685, + 0.025775467976927757, + -0.04321454465389252, + -0.04203026741743088, + 0.025659361854195595, + -0.031348541378974915, + 0.045211564749479294, + -0.013839800842106342, + -0.07936986535787582, + -0.01560460776090622, + -0.0197379719465971, + -0.0029926246497780085, + -0.0211312398314476, + -0.025218160822987556, + -0.027238400653004646, + 0.060467854142189026, + 0.005564366467297077, + 0.0613502599298954, + -0.004975129850208759, + -0.014722204767167568, + 0.008307363837957382, + -0.016788886860013008, + -0.047603342682123184, + -0.02060876414179802, + 0.007285633590072393, + -0.030814455822110176, + 0.06785217672586441, + 0.016498621553182602, + -0.027493832632899284, + -0.009996701963245869, + -0.010292771272361279, + 0.05675247311592102, + 0.014791867695748806, + 0.007900993339717388, + 0.026286333799362183, + 0.061118047684431076, + -0.02294248901307583, + -0.05995699018239975, + -0.09009803086519241 + ] + }, + { + "id": "a8e56f0e-2998-4ffc-b1b2-d614e023c02f", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacobpatterson", + "reviewDate": "2021-11-23T17:14:51", + "stars": 5, + "verifiedUser": true + }, + { + "id": "225d975c-1921-473d-81c4-73514d255843", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bmurphy", + "reviewDate": "2021-04-18T19:40:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9210cdf4-ef47-4cff-aa04-a4d8abe7071b", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qcabrera", + "reviewDate": "2022-07-31T05:25:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "699a746c-9606-4bf8-9697-690c7e176602", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hgarcia", + "reviewDate": "2021-10-14T16:55:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a9ad4eda-438d-4952-a7bc-c588952b9aa7", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevinlopez", + "reviewDate": "2022-05-20T20:30:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e61aa216-2f33-4584-a67f-b468df7dc133", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tjones", + "reviewDate": "2021-04-26T09:16:27", + "stars": 4, + "verifiedUser": true + }, + { + "id": "db185156-89f2-4bcd-84d6-b5e60543f863", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristin19", + "reviewDate": "2021-06-07T06:42:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cb4a4a4b-4b11-4bbe-a865-3cb30f2d8b14", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "badams", + "reviewDate": "2022-08-21T06:57:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f6122d7f-ae16-4f8d-bf57-643028648fb3", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gallowayphillip", + "reviewDate": "2022-06-02T16:33:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "18f3bfdd-8081-4a98-8d46-615daa66c139", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nsnyder", + "reviewDate": "2021-12-10T22:22:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "100381e3-4d94-47dc-8dd3-893027c163bc", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardsonmichael", + "reviewDate": "2022-05-23T01:58:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "98b9f27b-b90f-409d-a827-74f9a24b1a8a", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "madison92", + "reviewDate": "2022-12-09T08:22:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bc5f02db-6728-4d50-8c1e-447f08a96ed5", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "grahamphilip", + "reviewDate": "2021-09-24T13:58:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b0e4ca91-ca9c-4dcf-8bec-a035d5140664", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin15", + "reviewDate": "2021-11-23T00:37:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "eebd88c6-7e41-4c5d-93f8-50b24e86bb1a", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dbrown", + "reviewDate": "2021-09-22T03:02:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "22d859da-b7ef-4aa2-9ec4-da21459b534f", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tonibrooks", + "reviewDate": "2022-09-26T19:15:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4ee3e408-94a8-4d5a-a2f3-f2bfe192ccad", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wfisher", + "reviewDate": "2021-11-20T17:01:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83ac5edc-372b-4d21-9e3f-e7e0c5c65517", + "productId": "2a58ed9f-f28d-423e-96ff-c1dc89d8e434", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew29", + "reviewDate": "2022-11-08T00:28:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Silver)", + "description": "This Basic Phone Ultra (Silver) is one of my favorite phones if I remember it right…\n\nIt has an extremely fast processor with very fast processing, which allows for amazing photos, videos and animations.", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-15T20:20:45", + "price": 497.05, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-01-21T14:55:01", + "newPrice": 452.7 + }, + { + "priceDate": "2021-07-08T14:55:01", + "newPrice": 523.98 + }, + { + "priceDate": "2021-12-23T14:55:01", + "newPrice": 499.43 + }, + { + "priceDate": "2022-06-09T14:55:01", + "newPrice": 546.36 + }, + { + "priceDate": "2022-11-24T14:55:01", + "newPrice": 457.68 + }, + { + "priceDate": "2025-05-30T14:55:01", + "newPrice": 497.05 + } + ], + "descriptionVector": [ + 0.04140250384807587, + 0.04638855531811714, + -0.045292146503925323, + 0.04317764192819595, + 0.04523993656039238, + 0.07841936498880386, + -0.08155196905136108, + 0.01769917830824852, + 0.008588539436459541, + 0.05628234148025513, + 0.03652087226510048, + -0.03289227932691574, + 0.043203745037317276, + -0.039549048990011215, + 0.03218744322657585, + 0.0656801387667656, + -0.066880963742733, + -0.0174381285905838, + 0.06286080181598663, + 0.01656361110508442, + 0.08327489346265793, + -0.041924603283405304, + -0.10160059481859207, + -0.03485015034675598, + -0.029864100739359856, + 0.012080080807209015, + -0.04140250384807587, + 0.011812504380941391, + 0.015388887375593185, + -0.01502341777086258, + 0.020335782319307327, + 0.05998925119638443, + -0.03299669921398163, + 0.10086965560913086, + 0.029837995767593384, + 0.056961070746183395, + 0.005214470438659191, + -0.05320195481181145, + 0.023520588874816895, + -0.06072019040584564, + 0.021732397377490997, + -0.006956977769732475, + 0.02067514695227146, + -0.006604560650885105, + 0.03197860345244408, + -0.04604918882250786, + -0.03046451508998871, + 0.02149745263159275, + -0.010663885623216629, + -0.010526834055781364, + 0.030020730569958687, + -0.02751465141773224, + 0.05476825311779976, + -0.023716377094388008, + 0.017529495060443878, + -0.01754254847764969, + 0.027358021587133408, + 0.0511135570704937, + 0.0693870410323143, + -0.022502494975924492, + 0.02542625367641449, + -0.04456120356917381, + 0.016459191218018532, + 0.013483223505318165, + -0.03077777475118637, + 0.015454149805009365, + -0.032813962548971176, + 0.024904154241085052, + -0.0174381285905838, + 0.019330739974975586, + -0.022541653364896774, + -0.03453689068555832, + -0.060198090970516205, + 0.06380058079957962, + 0.026640133932232857, + 0.0781061053276062, + 0.00814475491642952, + -0.012282393872737885, + 0.05769200995564461, + -0.004669528920203447, + 0.04035830497741699, + 0.0376172810792923, + -0.03918357938528061, + -0.001856716931797564, + 0.09324699640274048, + -0.012589127756655216, + 0.02261996828019619, + -0.10029534250497818, + -0.04889463260769844, + 0.08379699289798737, + -0.05560361221432686, + -0.005282995756715536, + 0.01446215994656086, + 0.04111534729599953, + 0.04845084622502327, + 0.03915747255086899, + 0.007903283461928368, + 0.032239653170108795, + -0.0631740614771843, + -0.009365162812173367, + 0.052627645432949066, + -0.023494483903050423, + -0.062182068824768066, + -0.01575435698032379, + 0.020414097234606743, + 0.02767128124833107, + 0.016759399324655533, + -0.03116934932768345, + -0.012582601979374886, + -0.11757684499025345, + -0.04537045955657959, + -0.07319837063550949, + -0.029681365936994553, + -0.017751388251781464, + 0.039705678820610046, + 0.010794410482048988, + -0.047954853624105453, + -0.04004504159092903, + 0.00037933801650069654, + -0.02486499585211277, + 0.023833848536014557, + 0.02162797749042511, + -0.02375553362071514, + 0.02568730339407921, + -0.006346773821860552, + 0.005080682225525379, + 0.06510582566261292, + 0.05826631933450699, + 0.042890485376119614, + -0.03920968249440193, + -0.09486550837755203, + 0.0564911812543869, + 0.004385637119412422, + 0.0351112000644207, + 0.0005853226757608354, + 0.031691450625658035, + -0.009567475877702236, + 0.04033219814300537, + 0.01756865344941616, + 0.04813758656382561, + -0.001527141430415213, + 0.06588897854089737, + 0.07032682001590729, + -0.06447930634021759, + -0.02025746740400791, + 0.02457784116268158, + -0.031952500343322754, + -0.04401300102472305, + 0.04210733622312546, + 0.0864597037434578, + -0.028715480118989944, + -0.09011439979076385, + -0.001144540379755199, + -0.0768008604645729, + 0.0008443330298177898, + -0.022006500512361526, + -0.0390530526638031, + -0.00684603163972497, + -0.05098303034901619, + 0.06562792509794235, + -0.05127018690109253, + -0.027070866897702217, + 0.0010817252332344651, + -0.06275638192892075, + -0.032109130173921585, + 0.030151255428791046, + 0.002016610000282526, + 0.07904588431119919, + -0.014853735454380512, + 0.031404294073581696, + 0.03135208413004875, + 0.03137819096446037, + -0.06755969673395157, + -0.12446855753660202, + -0.020335782319307327, + 0.0015132732223719358, + 0.018599800765514374, + -0.04722391441464424, + -0.013052491471171379, + -0.05946715176105499, + 0.008203490637242794, + 0.03145650401711464, + -0.06259974837303162, + 0.005358047783374786, + 0.08207406848669052, + 0.03135208413004875, + 0.02051851712167263, + 0.011075038462877274, + -0.029681365936994553, + 0.028036750853061676, + -0.014057532884180546, + 0.01511478517204523, + 0.01926547661423683, + 0.008183912374079227, + 0.057378750294446945, + 0.026940342038869858, + 0.037565071135759354, + 0.016759399324655533, + -0.03960125893354416, + 0.03482404723763466, + 0.051479026675224304, + 0.06844726204872131, + 0.08703400939702988, + -0.07131881266832352, + -0.01277186255902052, + -0.0398884117603302, + -0.031691450625658035, + 0.025204360485076904, + -0.019565684720873833, + 0.02106672152876854, + 0.02472141943871975, + 0.03751286119222641, + -0.00590298930183053, + -0.02121029794216156, + 0.07711412012577057, + 0.006056355778127909, + 0.013848693110048771, + -0.08458014577627182, + -0.02277659811079502, + -0.11329562216997147, + 0.028976529836654663, + 0.07298953086137772, + -0.019017480313777924, + 0.02359890379011631, + -0.06536687910556793, + -0.11903872340917587, + 0.08473677188158035, + 0.03887031972408295, + -0.003984272945672274, + 0.03902694955468178, + -0.055708032101392746, + -0.017216235399246216, + 0.030125150457024574, + 0.006496877409517765, + -0.06912599503993988, + 0.05748317018151283, + 0.022815754637122154, + 0.0023233434185385704, + -0.12436413764953613, + 0.11987408250570297, + 0.016759399324655533, + 0.006656770594418049, + -0.03398868814110756, + -0.054559413343667984, + 0.11141606420278549, + -0.038844212889671326, + 0.029811890795826912, + 0.0053449952974915504, + -0.06526245921850204, + -0.023089857771992683, + 0.016185089945793152, + -0.10019092261791229, + -0.018756430596113205, + 0.059362731873989105, + -0.0035209094639867544, + 0.03850485011935234, + 0.006317405961453915, + -0.025517620146274567, + -0.021027563139796257, + -0.020975353196263313, + -0.03148261085152626, + -0.014135847799479961, + -0.016889924183487892, + 0.03411921113729477, + -0.0968494862318039, + 0.016119826585054398, + 0.08384920656681061, + -0.05863179266452789, + 0.003984272945672274, + -0.011146827600896358, + 0.02962915599346161, + -0.026366032660007477, + 0.07967240363359451, + -0.022567758336663246, + -0.001863243174739182, + 0.0640094205737114, + -0.10995418578386307, + 0.11768126487731934, + 0.03847874328494072, + 0.010109154507517815, + 0.10327131301164627, + 0.07471246272325516, + 0.06113786995410919, + 0.03276175260543823, + 0.04905126243829727, + 0.011316509917378426, + -0.019891995936632156, + -0.020427148789167404, + 0.024682261049747467, + 0.014945102855563164, + -0.001850190688855946, + 0.007048345170915127, + -0.04367363452911377, + -0.05690886080265045, + 0.03780001401901245, + -0.01615898497402668, + 0.07445140928030014, + -0.08927904069423676, + 0.04450899362564087, + 0.04328206181526184, + 0.03203081339597702, + 0.007328974083065987, + -0.02473447099328041, + -0.06985693424940109, + 0.06698538362979889, + 0.06447930634021759, + -0.012784915044903755, + 0.01912190020084381, + -0.04899905249476433, + -0.07131881266832352, + 0.014501317404210567, + 0.027488546445965767, + -0.009254216216504574, + -0.022567758336663246, + 0.03372763842344284, + -0.021131983026862144, + -0.028689375147223473, + 0.05774421989917755, + -0.01781664974987507, + -0.01826043613255024, + 0.036024875938892365, + 0.011564507149159908, + -0.008803904987871647, + 0.08531108498573303, + 0.052209965884685516, + 0.02614413946866989, + -0.026862027123570442, + -0.012713126838207245, + 0.020570727065205574, + 0.03649476543068886, + -0.0007223738357424736, + -0.04325595498085022, + -0.021262507885694504, + 0.05419394373893738, + 0.03424973785877228, + -0.025347938761115074, + 0.02751465141773224, + 0.06113786995410919, + 0.0772707462310791, + 0.02512604556977749, + 0.03892252966761589, + 0.039392419159412384, + -0.048398636281490326, + 0.03923578932881355, + -0.05466383323073387, + 0.019604841247200966, + -0.08243953436613083, + -0.021693240851163864, + -0.006872136611491442, + -0.012902387417852879, + 0.0016160615487024188, + -0.03706907480955124, + 0.08358815312385559, + 0.042472805827856064, + 0.09465666860342026, + 0.013483223505318165, + 0.01417500525712967, + -0.007700969930738211, + 0.0030216516461223364, + -0.014383845031261444, + 0.047537174075841904, + 0.048398636281490326, + 0.023925216868519783, + 0.041663553565740585, + 0.013470171019434929, + 0.05113966017961502, + 0.035894352942705154, + 0.03242238983511925, + -0.0029090740717947483, + -0.015493307262659073, + 0.029837995767593384, + 0.017738334834575653, + -0.1030624732375145, + -0.012719652615487576, + -0.04168965667486191, + -0.005547308828681707, + 0.047145597636699677, + -0.07638318091630936, + -0.002564814640209079, + 0.043464794754981995, + -0.021288612857460976, + 0.016668030992150307, + -0.00920200627297163, + -0.020544622093439102, + 0.07627876102924347, + -0.03500678017735481, + -0.06881273537874222, + 0.015545517206192017, + -0.005749622359871864, + 0.03584213927388191, + -0.013378803618252277, + 0.0035372250713407993, + -0.03255291283130646, + 0.07612212747335434, + 0.04651907831430435, + 0.018469275906682014, + 0.026104982942342758, + 0.02516520395874977, + -0.015793515369296074, + -0.05628234148025513, + 0.08134312927722931, + -0.014814577996730804, + 0.008223069831728935, + -0.01544109731912613, + 0.03923578932881355, + -0.04364753141999245, + 0.016354771330952644, + 0.009815473109483719, + -0.05267985537648201, + -0.05743096023797989, + 0.053724054247140884, + -0.037695594131946564, + 0.0070940288715064526, + -0.013639853335916996, + 0.01031799428164959, + -0.01277186255902052, + -0.000623664353042841, + 0.05066977068781853, + 0.07377268373966217, + -0.012191026471555233, + -0.02712307684123516, + 0.038139380514621735, + 0.017660019919276237, + 0.04101092740893364, + -0.03790443390607834, + -0.004356268793344498, + -0.04174186661839485, + -0.057535380125045776, + 0.005925830919295549, + -0.027331916615366936, + 0.021536611020565033, + 0.0025974458549171686, + 0.040227778255939484, + 0.00547552015632391, + -0.04202902317047119, + -0.03902694955468178, + -0.026183297857642174, + 0.052053336054086685, + -0.049651678651571274, + 0.0015793514903634787, + -0.04680623486638069, + 0.02149745263159275, + 0.0037917487788945436, + 0.03458910062909126, + -0.08959230035543442, + 0.0034980676136910915, + 0.01270660012960434, + 0.02372942864894867, + -0.02023136243224144, + -0.023912163451313972, + 0.02175850234925747, + -0.01726844534277916, + -0.006017198320478201, + -0.07747958600521088, + 0.03317943215370178, + 0.04017556831240654, + -0.021406086161732674, + 0.0839536264538765, + -0.09789368510246277, + -0.015584674663841724, + -0.0367819219827652, + 0.039261892437934875, + -0.00664045475423336, + -0.04043661803007126, + -0.03362321853637695, + -0.016380876302719116, + -0.008673380129039288, + 0.007661812473088503, + -0.0075508663430809975, + 0.013900903053581715, + 0.009293373674154282, + -0.1030624732375145, + 0.021941237151622772, + 0.07163207232952118, + 0.028062855824828148, + -0.07424256950616837, + 0.046284135431051254, + 0.00389943178743124, + -0.035894352942705154, + 0.04905126243829727, + 0.007792337331920862, + -0.041376397013664246, + 0.03876589983701706, + -0.009104113094508648, + 0.04722391441464424, + -0.029837995767593384, + -0.002218923531472683, + 0.01869116723537445, + 0.0013974322937428951, + 0.0697525143623352, + 0.02233281172811985, + 0.0635395273566246, + -0.06087682023644447, + 0.004114797804504633, + -0.032657332718372345, + 0.006389194633811712, + -0.003390384605154395, + -0.03667750209569931, + -0.04654518514871597, + 0.05309753492474556, + -0.027566861361265182, + -0.024630051106214523, + -0.05200112611055374, + 0.027149181813001633, + -0.019839785993099213, + -0.008986640721559525, + -0.024055741727352142, + -0.0125108128413558, + -0.04696286469697952, + 0.0021242930088192225, + -0.022998489439487457, + -0.04202902317047119 + ] + }, + { + "id": "c3b84290-f79d-409d-ac39-8bc74e2d9bfa", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamhill", + "reviewDate": "2021-11-06T15:56:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "88639733-9946-41dc-8f8d-56aa53e80a72", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "hodgeadrienne", + "reviewDate": "2022-07-20T17:31:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "60ea75a1-7dfe-48bf-ab01-be4059286848", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "steven40", + "reviewDate": "2021-07-30T14:00:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "052c0880-0ad8-46da-b285-775c3398439f", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "lindseyperry", + "reviewDate": "2022-07-17T03:31:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e94c0e05-3205-473c-bac0-8d62527b5854", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "bakerlaura", + "reviewDate": "2021-08-11T23:30:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "abf7a0b3-09a1-4af1-a185-706db17292f4", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "schmidtjacob", + "reviewDate": "2022-11-10T02:18:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b5c994f4-3faa-420a-9bff-92ef19d735c5", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "rcruz", + "reviewDate": "2021-03-26T01:39:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "11839bc5-428f-4cfa-983a-3dc5c8f34221", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelly51", + "reviewDate": "2022-02-21T20:49:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "98fc7739-9140-4b9c-828c-ba10d358c256", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "parkerrobert", + "reviewDate": "2022-01-27T01:54:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "74b987c5-8a18-4bee-a031-10edc9c0f191", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "laura37", + "reviewDate": "2022-11-27T13:29:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "675a16d9-8bbb-4374-b7d6-ca4be41173ee", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "brianna38", + "reviewDate": "2021-04-28T13:21:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9753b54d-1821-4ec3-a394-58c6cb212d38", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "griffithivan", + "reviewDate": "2021-05-28T19:45:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a181b479-ab25-427f-aba3-9ae7461a030d", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "omitchell", + "reviewDate": "2021-09-14T09:54:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "59736d7e-de0f-4c26-b424-65c7c3df0c7e", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "gomezjose", + "reviewDate": "2021-10-26T03:10:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3728393f-c5c2-41ed-b407-017f318e96b2", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "normanwheeler", + "reviewDate": "2021-10-24T19:31:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e96498d9-8efa-4158-8bcd-1108b753c2ac", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "wrichard", + "reviewDate": "2021-07-23T04:14:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4e8bb50c-315d-4078-9574-98c2e946cc53", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciamackenzie", + "reviewDate": "2021-01-21T14:55:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e4e02111-e989-4cd1-bba7-47bde6066eff", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "makayla62", + "reviewDate": "2021-07-31T06:35:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ab23ea28-b6c3-4dad-985e-a9f2f878f362", + "productId": "dfa2375b-95b7-43a5-9d59-5f5ffcdb1447", + "category": "Electronics", + "docType": "customerRating", + "userName": "ofisher", + "reviewDate": "2022-03-15T12:59:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Super (Gold)", + "description": "This Luxe Computer Super (Gold) is also capable of doing most of the tasks required for a very fast system. The computer has very narrow power supply and therefore does not allow for any external power. It can not power any of the USB ports. It only stores 1 GigPix of RAM inside the computer and requires 2 x 8GB of storage.\n\nComponents:\n\nAll parts are made out of recycled material for durability. All", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-10-30T05:13:04", + "price": 1046.96, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-01-22T01:07:32", + "newPrice": 1109.35 + }, + { + "priceDate": "2021-07-05T01:07:32", + "newPrice": 1067.27 + }, + { + "priceDate": "2021-12-16T01:07:32", + "newPrice": 1109.1 + }, + { + "priceDate": "2022-05-29T01:07:32", + "newPrice": 1057.06 + }, + { + "priceDate": "2024-09-29T01:07:32", + "newPrice": 1046.96 + } + ], + "descriptionVector": [ + -0.04472148418426514, + 0.06977315992116928, + -0.03772777318954468, + 0.00012058852735208347, + 0.006382441148161888, + -0.013734713196754456, + 0.006525867152959108, + 0.03294692188501358, + 0.046606507152318954, + 0.07332465797662735, + 0.08753062039613724, + -0.027196234092116356, + -0.012122881598770618, + -0.07862457633018494, + 0.0640907734632492, + 0.0010773998219519854, + -0.03980403020977974, + 0.02047571912407875, + 0.010231029242277145, + -0.027565043419599533, + 0.06944533437490463, + -0.0659484788775444, + -0.06015681475400925, + -0.05534863844513893, + -0.029204193502664566, + -0.04125194624066353, + -0.009828072041273117, + -0.0008473211782984436, + -0.03783705085515976, + -0.03505049645900726, + 0.0729968249797821, + 0.045131269842386246, + -0.03095262125134468, + -0.023289592936635017, + 0.052616722881793976, + -0.09752944111824036, + 0.06523817777633667, + -0.015804139897227287, + 0.09343156218528748, + -0.007956708781421185, + 0.002597028622403741, + 0.0014812112785875797, + -0.054064638912677765, + 0.02846657671034336, + 0.012020435184240341, + -0.005149663891643286, + 0.008161602541804314, + -0.003664183896034956, + 0.014028394594788551, + -0.07064737379550934, + 0.01686958782374859, + 0.0025150710716843605, + 0.031635601073503494, + 0.025024360045790672, + -0.047535356134176254, + -0.03723603114485741, + -0.031061897054314613, + 0.2019433081150055, + 0.014274266548454762, + 0.015667544677853584, + -0.008113794028759003, + 0.021240655332803726, + -0.050567783415317535, + -0.025720998644828796, + -0.042153481394052505, + 0.02394525334239006, + -0.04682505875825882, + 0.06037536635994911, + 0.0487920381128788, + 0.021049421280622482, + -0.041634418070316315, + -0.007062005810439587, + -0.008182091638445854, + 0.004770610015839338, + 0.047070931643247604, + 0.03671696409583092, + 0.013017584569752216, + -0.03783705085515976, + 0.011173540726304054, + -0.007772304117679596, + 0.09370475262403488, + -0.0073966654017567635, + -0.00349514652043581, + -0.03996794670820236, + 0.03688088059425354, + -0.02050303854048252, + 0.018699971958994865, + -0.11244570463895798, + 0.007977197878062725, + 0.03939424455165863, + -0.009657327085733414, + 0.09895003587007523, + 0.04543178156018257, + 0.010353965684771538, + -0.0006087052752263844, + 0.05376412719488144, + -0.04925646632909775, + 0.052070338279008865, + 0.019833717495203018, + -0.015585587359964848, + -0.007246410008519888, + -0.00510868476703763, + -0.035159774124622345, + -0.005808738525956869, + -0.023112017661333084, + 0.061031028628349304, + 0.06605775654315948, + -0.008441624231636524, + 0.07452669739723206, + -0.06775154173374176, + 0.00510868476703763, + -0.014793330803513527, + -0.03286496177315712, + -0.019587844610214233, + 0.027332831174135208, + 0.004408631008118391, + -0.025775637477636337, + -0.018618015572428703, + -0.015653884038329124, + -0.02190997451543808, + 0.0969284176826477, + 0.04349211975932121, + 0.036826241761446, + -0.029012959450483322, + -0.023794997483491898, + 0.04873739928007126, + -0.016801290214061737, + -0.09550782293081284, + 0.031034577637910843, + -0.0059316749684512615, + -0.10960451513528824, + 0.0877491757273674, + -0.004555471707135439, + -0.009015326388180256, + -0.022647593170404434, + 0.027127936482429504, + 0.03636181727051735, + 0.0896068811416626, + -0.027510404586791992, + 0.028712447732686996, + -0.06676805019378662, + -0.022114869207143784, + -0.0640907734632492, + -0.036580368876457214, + -0.06622166931629181, + 0.011112072505056858, + -0.12249916046857834, + -0.029613981023430824, + -0.04327356815338135, + 0.12730734050273895, + 0.001358275068923831, + -0.017265716567635536, + -0.02150018699467182, + -0.03245517611503601, + 0.023767678067088127, + 0.06387221813201904, + -0.06485570967197418, + 0.07622049003839493, + 0.01700618304312229, + 0.12249916046857834, + 0.020106909796595573, + -0.015558267943561077, + -0.043519437313079834, + -0.01990201510488987, + 0.04343748092651367, + -0.027032319456338882, + 0.03035159967839718, + 0.005228206515312195, + -0.1147405207157135, + 0.004838908091187477, + 0.05977434664964676, + -0.013809841126203537, + -0.01067496556788683, + -0.02544780820608139, + 0.07447206228971481, + 0.01544899120926857, + 0.05152395740151405, + 0.049994081258773804, + 0.005204302258789539, + -0.09720160812139511, + 0.052070338279008865, + 0.030078407377004623, + 0.001474381540901959, + 0.008994837291538715, + 0.02686840482056141, + 0.0406782440841198, + -0.014752352610230446, + -0.004849152639508247, + -0.007567410357296467, + -0.02934078872203827, + -0.005924845114350319, + -0.01637784205377102, + 0.014547458849847317, + 0.00546724908053875, + -0.007799623068422079, + -0.01849507912993431, + 0.0011567961191758513, + 0.10255616903305054, + -0.030597470700740814, + 0.023125678300857544, + -0.001259242999367416, + 0.06572992354631424, + 0.02189631573855877, + -0.029313471168279648, + -0.021295294165611267, + -0.021554825827479362, + 0.0389571376144886, + -0.01950588822364807, + 0.02039376087486744, + 0.0369628369808197, + 0.019205376505851746, + 0.0006304752314463258, + -0.05420123413205147, + -0.015804139897227287, + 0.07053809612989426, + -0.0254614669829607, + 0.027182575315237045, + -0.007048346102237701, + -0.07015562802553177, + -0.08911513537168503, + 0.0014914559433236718, + -0.06665877997875214, + 0.001226801541633904, + 0.002327251946553588, + -0.02599419094622135, + -0.07906167954206467, + 0.013577627949416637, + 0.022538315504789352, + 0.014834309928119183, + -0.01473869290202856, + 0.004746705759316683, + 0.017702823504805565, + 0.07157623022794724, + -0.0010449582478031516, + -0.02334423176944256, + -0.010442753322422504, + -0.00596240907907486, + -0.015162140130996704, + -0.058080557733774185, + 0.053572893142700195, + 0.031253132969141006, + -0.0027660659980028868, + -0.061522774398326874, + -0.039066415280103683, + -0.020803548395633698, + -0.015817800536751747, + 0.04554105922579765, + -0.0032082952093333006, + 0.006307313684374094, + -0.012320945970714092, + 0.013591287657618523, + -0.005590185523033142, + -0.024600913748145103, + 0.08408840745687485, + 0.0067273457534611225, + 0.00896068848669529, + 0.047644633799791336, + -0.06583920121192932, + -0.05627749115228653, + -0.0026158106047660112, + -0.04671578109264374, + -0.07725861668586731, + -0.04734412208199501, + -0.010989136062562466, + -0.1203136295080185, + 0.03352062404155731, + 0.05163323134183884, + -0.012539499439299107, + 0.027687979862093925, + 0.012396073900163174, + 0.06414541602134705, + -0.03778241202235222, + -0.029668619856238365, + 0.04570497199892998, + -0.0199429951608181, + -0.011091583408415318, + -0.05818983539938927, + 0.04425705596804619, + -0.01098230667412281, + -0.04436633363366127, + 0.02782457508146763, + 0.0033892847131937742, + 0.00205406011082232, + -0.08261317014694214, + 0.05447442829608917, + -0.07753180712461472, + -0.03584275394678116, + -0.005928260274231434, + 0.03332938998937607, + 0.03546028211712837, + -0.0022828581277281046, + 0.015489969402551651, + 0.018249206244945526, + 0.03644377365708351, + -0.016077332198619843, + -0.01273073349148035, + 0.03240053728222847, + 0.010565689764916897, + -0.032591771334409714, + 0.009145092219114304, + 0.05993825942277908, + 0.021773379296064377, + 0.013072223402559757, + -6.146813393570483e-05, + -0.03720870986580849, + 0.04917450621724129, + -0.03983135148882866, + 0.0023887199349701405, + -0.043164290487766266, + -0.005511642899364233, + 0.11616111546754837, + 0.0037563859950751066, + -0.016350524500012398, + -0.058517664670944214, + 0.0797719806432724, + -0.007048346102237701, + 0.018809249624609947, + 0.02141823060810566, + 0.0194785688072443, + 0.01839946210384369, + 0.0043881419114768505, + -0.06600311398506165, + -0.1459936499595642, + 0.043656036257743835, + 0.06452788412570953, + -0.00583605794236064, + -0.06092175096273422, + 0.05971970781683922, + -0.02184167690575123, + -0.036635007709264755, + 0.016623714938759804, + 0.020694272592663765, + 0.03207270801067352, + 0.009165582247078419, + 0.002696060575544834, + -0.05444710701704025, + 0.0030870663467794657, + 0.08337810635566711, + -0.016241246834397316, + 0.04597816616296768, + 0.08676568418741226, + 0.00609900476410985, + -0.09818509966135025, + 0.0014829187421128154, + 0.026226403191685677, + 0.015394352376461029, + -0.06589384377002716, + 0.016528097912669182, + 0.03240053728222847, + 0.016050012782216072, + 0.0019038047175854445, + -0.04996676370501518, + 0.06578456610441208, + -0.019519547000527382, + 0.054529063403606415, + 0.0054091960191726685, + 0.056004300713539124, + -0.05193374305963516, + -0.03488657996058464, + -0.03149900212883949, + 0.01636418327689171, + -0.024682870134711266, + 0.09632739424705505, + 0.09004398435354233, + -0.0073488568887114525, + 0.0690082237124443, + 0.017334014177322388, + -0.012423393316566944, + -0.030242322012782097, + 0.04622403532266617, + 0.05248012766242027, + -0.018071630969643593, + -0.07337929308414459, + 0.0037461412139236927, + -0.06578456610441208, + -0.02994181215763092, + 0.10200978070497513, + 0.04920182749629021, + -0.047644633799791336, + 0.017252055928111076, + -0.03947620093822479, + 0.0546383410692215, + 0.049994081258773804, + -0.00304438010789454, + 0.06338047981262207, + -0.06944533437490463, + 0.0017911131726577878, + -0.019096100702881813, + 0.007895240560173988, + -0.017088141292333603, + 0.004825248382985592, + -0.03330206871032715, + 0.021650442853569984, + 0.06840720027685165, + 0.008899220265448093, + 0.021746059879660606, + 0.036225222051143646, + -0.01144673302769661, + -0.046060122549533844, + 0.02290712483227253, + 0.0001420383487129584, + 0.019519547000527382, + -0.03199074789881706, + -0.05742489546537399, + 0.0004356127174105495, + -0.06944533437490463, + 0.035651516169309616, + -0.022196825593709946, + -0.021718740463256836, + -0.05073169991374016, + 0.02201925218105316, + -0.04597816616296768, + 0.025734659284353256, + 0.01603635400533676, + 0.017620865255594254, + 0.0075742402113974094, + 0.049556974321603775, + 0.015640225261449814, + 0.02696402184665203, + -0.019191717728972435, + -0.025024360045790672, + 0.08878730237483978, + -0.01995665393769741, + 0.008106963708996773, + 0.012102392502129078, + -0.04619671776890755, + -0.015776820480823517, + -0.02637665905058384, + 0.046606507152318954, + -0.029695939272642136, + 0.031635601073503494, + -0.052589405328035355, + 0.026308361440896988, + -0.010012475773692131, + -0.0034405081532895565, + 0.02651325613260269, + 0.03226394206285477, + 0.027606021612882614, + -0.018795588985085487, + 0.03748190402984619, + -0.011958966962993145, + -0.03447679430246353, + 0.0409514382481575, + 0.01393277756869793, + 0.008858241140842438, + -0.019205376505851746, + -0.081902876496315, + 0.010272008366882801, + 0.014861629344522953, + -0.04638795182108879, + -0.02939542755484581, + -0.0029504704289138317, + -0.02643129788339138, + 0.002890709787607193, + 0.06578456610441208, + 0.042590588331222534, + -0.025051679462194443, + 0.024341382086277008, + -0.04086947813630104, + -0.026308361440896988, + 0.03442215546965599, + 0.022251464426517487, + 0.045076631009578705, + -0.023699380457401276, + 0.0005250403191894293, + 0.058080557733774185, + -0.07037418335676193, + -0.04130658507347107, + -0.00304438010789454, + 0.021076740697026253, + -0.023207636550068855, + -0.027223553508520126, + 0.05671459808945656, + 0.047016292810440063, + -0.02893100120127201, + -0.07988125830888748, + 0.03742726519703865, + -0.0018013578373938799, + -0.020735250785946846, + -0.03750922158360481, + -0.022169508039951324, + 0.05034923180937767, + -0.05048582702875137, + -0.008359665982425213, + 0.09179241210222244, + 0.012887818738818169, + 0.012614627368748188, + 0.05327238142490387, + 0.04843689128756523, + 0.035187091678380966, + 0.01596805453300476, + 0.028166064992547035, + -0.013427372090518475, + -0.04390190914273262, + -0.018194567412137985, + -0.010722775012254715, + -0.06496498733758926, + 0.024600913748145103, + -0.013632265850901604, + 0.10353966057300568, + -0.027633341029286385, + -0.03953083977103233, + -0.07021027058362961, + 0.0006462691235356033, + 0.02488776482641697, + 0.01900048367679119, + 0.03272836655378342, + 0.08397912979125977, + -0.09184705466032028, + -0.05417391657829285, + 0.04677041992545128, + -0.06622166931629181 + ] + }, + { + "id": "0c200943-9084-4a73-a748-3b597ef910ae", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "barbara83", + "reviewDate": "2021-12-31T05:46:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a8b0b672-f99b-4191-9421-298a53b8e3b5", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "peckjennifer", + "reviewDate": "2021-01-22T01:07:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ddbbe101-cf02-4942-a2cb-e43da4bcc27a", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidknox", + "reviewDate": "2021-03-30T16:21:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9e48d0a3-bd8a-400f-ade5-d4bcc5f536a6", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "joserodgers", + "reviewDate": "2022-05-29T14:02:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7cde90a8-7cc6-4259-be28-e03e7d395287", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "burkewilliam", + "reviewDate": "2021-02-12T13:51:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7294bf52-7e3c-40b7-b84c-0dbeb28815fe", + "productId": "0edd0024-12be-481f-b8e1-ee95c2d4d7ec", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda75", + "reviewDate": "2021-08-23T00:48:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Mini (Silver)", + "description": "This Luxe Keyboard Mini (Silver) is one of only six keyboard models that come standard with the same type-A, Type-A.\n\nThe Mini has two USB cables and a USB 2.0 port and includes a Micro USB Type-C port", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-06-15T04:16:03", + "price": 953.48, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-01-27T08:26:02", + "newPrice": 979.58 + }, + { + "priceDate": "2024-12-09T08:26:02", + "newPrice": 953.48 + } + ], + "descriptionVector": [ + 0.03361902013421059, + 0.07820993661880493, + -0.03706531971693039, + 0.017442503944039345, + 0.005398033186793327, + -0.07928837090730667, + 0.031813815236091614, + 0.043418705463409424, + 0.006570244207978249, + 0.012097220867872238, + 0.03254058584570885, + -0.038448531180620193, + -0.007871398702263832, + -0.030243052169680595, + 0.0399489626288414, + -0.012882602401077747, + -0.04806066304445267, + 0.012108942493796349, + -0.00299060414545238, + 0.03307980298995972, + 0.002356144832447171, + -0.08740007132291794, + -0.08969760686159134, + -0.01027443166822195, + -0.020173756405711174, + -0.018157552927732468, + 0.008527836762368679, + 0.012343385256826878, + -0.04677123203873634, + -0.003909324761480093, + 0.03232958912849426, + -0.011317700147628784, + -0.01714945212006569, + -0.010901564732193947, + 0.00023957068333402276, + -0.07291154563426971, + 0.03619788587093353, + 0.015871740877628326, + -0.012988101691007614, + 0.027898628264665604, + 0.029000507667660713, + 0.018825713545084, + -0.015379412099719048, + -0.027851739898324013, + -0.008094118908047676, + 0.010450263507664204, + -0.02220168150961399, + 0.014195478521287441, + 0.0073614870198071, + 0.007144628092646599, + 0.01610618270933628, + 0.0576259084045887, + -0.05265573039650917, + 0.014746418222784996, + 0.006564383395016193, + -0.02487432397902012, + 0.009576966054737568, + 0.14966793358325958, + 0.057344578206539154, + -0.04984242469072342, + 0.026515420526266098, + -0.013785204850137234, + 0.011534559540450573, + -0.025952758267521858, + 0.0055709341540932655, + -0.009571105241775513, + 0.012859158217906952, + 0.0004831708502024412, + 0.045763127505779266, + 0.038026534020900726, + -0.07089533656835556, + 0.013222543522715569, + -0.018931211903691292, + 0.05870434269309044, + 0.027359411120414734, + 0.0050082728266716, + 0.0783974900841713, + 0.048435769975185394, + 0.058938782662153244, + -0.022905008867383003, + 0.04112117365002632, + -0.05650058388710022, + -0.03601033240556717, + -0.08927561342716217, + -0.03113393299281597, + 0.016199959442019463, + -0.021205302327871323, + -0.09265158325433731, + -0.07563107460737228, + 0.1490115076303482, + -0.0430435985326767, + 0.0627836361527443, + 0.011587308719754219, + -0.04705256223678589, + -0.05823545902967453, + -0.029234949499368668, + 0.005219270940870047, + 0.06662849336862564, + -0.010168933309614658, + -0.05106152594089508, + 0.012788825668394566, + 0.043957922607660294, + 0.029234949499368668, + 0.029586613178253174, + 0.0077307336032390594, + 0.06630027294158936, + 0.07080156356096268, + -0.0017656432464718819, + -0.03390035033226013, + -0.14685463905334473, + 0.04677123203873634, + 0.022541623562574387, + -0.0783974900841713, + -0.00887363962829113, + -0.0320248119533062, + 0.03232958912849426, + -0.07075467705726624, + 0.010456125251948833, + -0.024663325399160385, + -0.0002516591048333794, + 0.07122355699539185, + 0.006658160127699375, + 0.04536457732319832, + 0.021744519472122192, + -0.024569548666477203, + -0.026468530297279358, + 0.002951042028144002, + 0.05162418633699417, + 0.05781346186995506, + -0.052421290427446365, + -0.03268125280737877, + 0.06719115376472473, + 0.019036712124943733, + 0.03143870830535889, + -0.07520907372236252, + -0.0005535035161301494, + -0.01729011721909046, + 0.07206755131483078, + -0.019083600491285324, + 0.03209514543414116, + 0.026327865198254585, + -0.018427161499857903, + 0.01269504800438881, + -0.037956200540065765, + -0.11853400617837906, + -0.014699529856443405, + -0.055703479796648026, + 0.03816720098257065, + 0.012753658927977085, + 0.11309494823217392, + 0.03263436257839203, + -0.060767434537410736, + -0.05828234553337097, + -0.07136422395706177, + 0.004770900122821331, + 0.0665815994143486, + -0.05059263855218887, + -0.0015399926342070103, + 0.03657299280166626, + 0.047919999808073044, + 0.031368374824523926, + 0.009125664830207825, + 0.018509216606616974, + -0.024592993780970573, + -0.006904324516654015, + 0.04088672995567322, + 0.08800962567329407, + 0.024616437032818794, + -0.020384754985570908, + 0.010426819324493408, + 0.03052438236773014, + 0.022975342348217964, + 0.0013575672637671232, + -0.1054990142583847, + 0.018415439873933792, + -0.028109626844525337, + -0.00011410744627937675, + 0.025319764390587807, + -0.0070625729858875275, + -0.039011191576719284, + 0.05359350144863129, + 0.07975725829601288, + -0.07717838883399963, + 0.02539009600877762, + 0.10624923557043076, + -0.01330459862947464, + -0.028648843988776207, + 0.01166936382651329, + -0.015004304237663746, + 0.02503843419253826, + -0.03551800176501274, + -0.0028323554433882236, + -0.055703479796648026, + 0.003915185574442148, + -0.00242354697547853, + 0.05171796306967735, + 0.05978277698159218, + 0.029516279697418213, + -0.010842954739928246, + 0.04665400832891464, + 0.022565066814422607, + 0.10371725261211395, + 0.013714872300624847, + -0.0233621709048748, + 0.019599372521042824, + -0.02998516522347927, + -0.0007256720564328134, + 0.027007749304175377, + 0.051764849573373795, + 0.016528179869055748, + -0.006335801910609007, + 0.0004245602758601308, + 0.037370096892118454, + -0.009160831570625305, + 0.10099772363901138, + 0.0171611737459898, + 0.018087221309542656, + 0.03542422503232956, + -0.026796750724315643, + -0.07009823620319366, + 0.03917530179023743, + -0.033548686653375626, + 0.01438303291797638, + 0.007461125031113625, + -0.04135561361908913, + -0.07272399216890335, + 0.019575929269194603, + 0.040769509971141815, + 0.07975725829601288, + 0.007425958756357431, + -0.016282014548778534, + -0.03748731687664986, + -0.02771107479929924, + 0.007373209111392498, + -0.0172197837382555, + 0.018696770071983337, + -0.030078941956162453, + -0.060720544308423996, + -0.05814168229699135, + 0.0378858707845211, + -0.0049320789985358715, + 0.008445782586932182, + -0.04273882508277893, + -0.05870434269309044, + -0.002407429041340947, + -0.025272876024246216, + 0.08852539956569672, + 0.007847954519093037, + -0.07455264031887054, + 0.04548179730772972, + -0.007531457580626011, + 0.025671428069472313, + 0.015039470978081226, + 0.05040508508682251, + -0.011757279746234417, + 0.04001929238438606, + 0.02712496928870678, + 0.0029539724346250296, + -0.010092739015817642, + -0.08205479383468628, + 0.03826097771525383, + -0.026421641930937767, + -0.07900704443454742, + 0.03990207239985466, + -0.013386652804911137, + -0.021392855793237686, + 0.0852900967001915, + -0.14254088699817657, + -0.014570586383342743, + 0.01081364881247282, + 0.03254058584570885, + 0.0035664530005306005, + 0.06522183865308762, + 0.01384381577372551, + -0.06104876473546028, + -0.053968608379364014, + -0.0978093147277832, + 0.09162003546953201, + -0.04313737526535988, + -0.09827819466590881, + 0.051764849573373795, + 0.08346144109964371, + 0.061752092093229294, + -0.02267056703567505, + 0.03760453686118126, + -0.05312461778521538, + 0.007226682733744383, + 0.06620649248361588, + -0.001120194443501532, + -0.00032638758420944214, + -0.0014235040871426463, + 0.007560763042420149, + 0.020853638648986816, + 0.02658575214445591, + -0.03375968709588051, + -0.020162034779787064, + 0.05546903982758522, + 0.013210820965468884, + 0.026984304189682007, + -0.03919874504208565, + 0.04716978222131729, + -0.040113069117069244, + -0.05926700308918953, + -0.06611271947622299, + -0.00652921712026, + 0.05542214959859848, + -0.049514204263687134, + 0.03099326603114605, + -0.027335967868566513, + 0.008322699926793575, + 0.0555628165602684, + -0.030313383787870407, + -0.08022613823413849, + -0.024100665003061295, + 0.03286880627274513, + -0.07497463375329971, + 0.008352005854249, + 0.02606998011469841, + 0.0035371475387364626, + 0.006142387166619301, + 0.012671603821218014, + 0.007209099363535643, + -0.08139835298061371, + 0.07333353906869888, + 0.040253736078739166, + -0.001480649458244443, + 0.0063768294639885426, + 0.025624539703130722, + 0.04428614303469658, + -0.05378105491399765, + -0.008604031056165695, + -0.03375968709588051, + -0.031368374824523926, + -0.013093600049614906, + 0.043020155280828476, + -0.03361902013421059, + -0.033009469509124756, + 0.05382794141769409, + 0.015250468626618385, + -0.0022242709528654814, + 0.055609703063964844, + 0.013703149743378162, + -0.03422857075929642, + 0.007853815332055092, + -0.022400958463549614, + -0.006324079819023609, + -0.066816046833992, + 0.008674363605678082, + 0.004111531190574169, + 0.04862332344055176, + 0.0013714872766286135, + 0.007232543546706438, + 0.07384931296110153, + -0.04881087690591812, + 0.047404225915670395, + -0.03336113318800926, + -0.0019488013349473476, + -0.00499948114156723, + 0.026210645213723183, + 0.06766003370285034, + -0.030196163803339005, + -0.01076676044613123, + 0.04691189527511597, + 0.0221547931432724, + -0.05007686838507652, + -0.013386652804911137, + -0.01884915865957737, + -0.05035819858312607, + -0.058985672891139984, + 0.011774862185120583, + -0.036315105855464935, + 0.01108325831592083, + -0.035142894834280014, + 0.059595223516225815, + 0.01829821802675724, + 0.06812892109155655, + 0.01215583086013794, + -0.011475948616862297, + 0.0053218393586575985, + 0.026187200099229813, + 0.005611961707472801, + 0.0025744689628481865, + -0.03324391320347786, + -0.03729976341128349, + 0.006980518344789743, + -0.09204202890396118, + -0.0052104792557656765, + 0.03926907852292061, + -0.010057573206722736, + 0.001318737748079002, + -0.02541354112327099, + 0.005714530125260353, + 0.02986794337630272, + 0.062408529222011566, + 0.04044128954410553, + 0.018005166202783585, + 0.03511945158243179, + 0.0044866385869681835, + -0.003645577235147357, + 0.02609342336654663, + 0.013714872300624847, + 0.040136516094207764, + -0.026257533580064774, + -0.010092739015817642, + -0.017548002302646637, + -0.1152518168091774, + -0.055750370025634766, + 0.11553314328193665, + -0.0006806151941418648, + -0.08468054234981537, + -0.027406299486756325, + -0.027851739898324013, + -0.04899843409657478, + -0.06423717737197876, + 0.03612755239009857, + -0.010561623610556126, + 0.10071639716625214, + 0.03997240588068962, + 0.027265634387731552, + -0.04984242469072342, + 0.0722082182765007, + -0.028109626844525337, + -0.052843283861875534, + -0.01995103619992733, + 0.020888805389404297, + 0.021510077640414238, + -0.0630180761218071, + -0.022365791723132133, + 0.08393032848834991, + -0.05101463571190834, + 0.01492225006222725, + -0.00037547393003478646, + -0.01986898109316826, + -0.004973106551915407, + 0.019657984375953674, + -0.058001015335321426, + -0.049045320600271225, + 0.018169274553656578, + 0.00513135502114892, + 0.10465502738952637, + -0.0007949057617224753, + -0.009049471467733383, + -0.006300635635852814, + 0.015332523733377457, + -0.1250046193599701, + 0.011704529635608196, + -0.05115530267357826, + 0.0067109097726643085, + 0.03160281851887703, + -0.02385449968278408, + 0.005676433444023132, + -0.03500222787261009, + -0.018954657018184662, + -0.011974138207733631, + 0.09612132608890533, + -0.008750556968152523, + 0.04166039079427719, + 0.07202066481113434, + -0.004205307923257351, + -0.011722113005816936, + 0.005189965479075909, + 0.036901213228702545, + 0.0052104792557656765, + -0.019505595788359642, + 0.0024968101643025875, + -0.07384931296110153, + 0.02883639745414257, + 0.016410958021879196, + -0.019259432330727577, + 0.06564383208751678, + 0.017618335783481598, + -0.03877675160765648, + 0.07192688435316086, + -0.021310800686478615, + 0.025671428069472313, + -0.05973588675260544, + 0.030665047466754913, + -0.0113059775903821, + -0.025718316435813904, + 0.04559902101755142, + -0.0555628165602684, + 0.06409651041030884, + 0.008017925545573235, + 0.016727454960346222, + 0.10540524125099182, + -0.01991586945950985, + -0.02710152603685856, + 0.0366198793053627, + 0.08285189419984818, + 0.027570409700274467, + 0.0375342071056366, + 0.0034052738919854164, + 0.005318908952176571, + -0.05439060553908348, + -0.009606271982192993, + -0.019271153956651688, + -0.026304421946406364, + 0.021345967426896095, + -0.0320248119533062, + 0.0676131471991539, + 0.02108808048069477, + -0.045200467109680176, + -0.050123754888772964, + 0.05087396875023842, + 0.02279951050877571, + 0.004088087007403374, + -0.06142387166619301, + 0.04780277609825134, + -0.0013824766501784325, + -0.02993827685713768, + -0.00834614410996437, + -0.04937354102730751 + ] + }, + { + "id": "2b58340d-9c67-4bdb-8d0c-616f650b5bb1", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "knightlucas", + "reviewDate": "2021-08-02T00:47:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f344b3e0-259c-4653-b406-4a79df79f5f4", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amanda51", + "reviewDate": "2022-02-21T00:06:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d7c6ab56-df9f-4069-99f2-aba919ae021b", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasonburke", + "reviewDate": "2022-04-12T01:04:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9ab43217-50e3-422a-8c3c-2fa72776e64d", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacob02", + "reviewDate": "2022-06-14T07:17:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "40b77fc8-c8b4-48a1-9521-49236991ff38", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer21", + "reviewDate": "2022-02-21T10:34:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f2788cfb-ddb8-4c5d-87c1-665a436d1a29", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steven49", + "reviewDate": "2022-09-27T19:07:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "65d6c020-bd03-4ffd-abcc-406347333178", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisamartin", + "reviewDate": "2022-04-15T04:49:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8d32be8f-1d99-40f8-9b11-cfc630fe5b8c", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vbarrett", + "reviewDate": "2021-11-15T21:21:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "032d1ba0-dd74-4899-8d3c-bb4f23ec5cc8", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthonywilkins", + "reviewDate": "2021-08-08T12:22:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d84ea93e-9581-4f3e-ab6d-38972f483151", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karen93", + "reviewDate": "2021-08-23T13:30:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7d13f194-44a4-477d-9f24-19c74f58d783", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kmejia", + "reviewDate": "2022-02-10T19:57:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "403221a4-0eb7-49f4-98b5-3a4254cd2d31", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "william83", + "reviewDate": "2021-09-14T23:47:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2e31ee23-4757-4d3f-8278-aa1dba8e6648", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "freemancarl", + "reviewDate": "2021-08-07T01:49:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b90ad394-df1d-418e-a347-dc46fdce0a35", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "floresandrew", + "reviewDate": "2021-11-01T20:46:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ac65d380-604c-4b86-aff4-6c8e28a11af3", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wjames", + "reviewDate": "2022-12-06T18:51:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b24c8d9b-faf8-4410-be26-1fc48af295b1", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "coreycampbell", + "reviewDate": "2022-08-13T04:13:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1131c64f-f4be-49fe-8900-2c4a3d8d72d6", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anita02", + "reviewDate": "2022-01-05T15:31:17", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3a4f3af3-40a3-47de-b4a9-56570f611f86", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "faustin", + "reviewDate": "2021-01-27T08:26:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "64328ad2-b8a7-46d6-924f-f721e51b0c0f", + "productId": "e0cfa102-9ec5-4327-ac03-7410c73aab1b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "whitedavid", + "reviewDate": "2022-06-29T16:37:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "productId": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Pro (Silver)", + "description": "This Premium Computer Pro (Silver) is rated 4.4 out of 5 by 9.\n\nRated 5 out of 5 by pj from Great to install This is a great product. I've already been buying it twice now because of my previous experience. I use a 5\" x 4\" (1/2\".5cm) model. The box is much better than a 1\" x 3\" (50 cm x", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-01-14T17:14:47", + "price": 484.8, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2021-11-06T16:13:43", + "newPrice": 455.63 + }, + { + "priceDate": "2024-02-14T16:13:43", + "newPrice": 484.8 + } + ], + "descriptionVector": [ + 0.014900540001690388, + 0.06427887827157974, + -0.03107418492436409, + 0.04967712610960007, + 0.0196292195469141, + 0.07170965522527695, + -0.05617256462574005, + 0.08298574388027191, + 0.04344150424003601, + 0.10200439393520355, + 0.041856616735458374, + -0.06931933760643005, + -0.025397170335054398, + -0.05560096725821495, + -0.030632495880126953, + 0.04089529067277908, + -0.00022023601923137903, + -0.012490731664001942, + -0.02477360889315605, + 0.0036406940780580044, + 0.015939809381961823, + -0.053730279207229614, + -0.04637744277715683, + -0.002192211104556918, + 0.007859482429921627, + 0.018252186477184296, + 0.0061998977325856686, + 0.04255812242627144, + 0.04866383597254753, + 0.03962218388915062, + 0.020408673211932182, + 0.05528918653726578, + -0.05674416571855545, + 0.06900755316019058, + 0.015251293778419495, + 0.002786543918773532, + -0.021967578679323196, + -0.006466210819780827, + -0.001977861626073718, + 0.1283499002456665, + 0.014510813169181347, + 0.0032347291707992554, + 0.00850902684032917, + -0.022305341437458992, + 0.07306071370840073, + -0.06890362501144409, + -0.006385017652064562, + 0.019083602353930473, + 0.025306234136223793, + -0.016290564090013504, + -0.010340740904211998, + -0.0010896100429818034, + -0.020356709137558937, + 0.024227991700172424, + 0.008060840889811516, + -0.008625944145023823, + -0.015316247940063477, + 0.21284258365631104, + 0.08532410115003586, + -0.03543912246823311, + 0.023656392470002174, + 0.03421797975897789, + 0.015264283865690231, + -0.011828196235001087, + -0.03219139948487282, + 0.06812417507171631, + -0.1146315261721611, + -0.022695068269968033, + 0.03401012346148491, + 0.03775149956345558, + -0.012133481912314892, + -0.08397305011749268, + 0.035880811512470245, + -0.011224120855331421, + 0.03990798443555832, + 0.07752957195043564, + 0.05502936989068985, + -0.04502639174461365, + 0.04455871880054474, + 0.05518525838851929, + 0.04806625843048096, + 0.06687705218791962, + 0.024864545091986656, + 0.08599963039159775, + 0.04393515735864639, + -0.04967712610960007, + -0.02156486175954342, + -0.123881034553051, + -0.011522910557687283, + 0.03798533231019974, + -0.02635849639773369, + 0.03390619903802872, + 0.03803729638457298, + -0.061264991760253906, + 0.04637744277715683, + 0.00025190127780660987, + -0.049858998507261276, + 0.0484040193259716, + -0.02201954275369644, + -0.031983546912670135, + 0.002010338706895709, + -0.06833203136920929, + -0.037024009972810745, + -0.010080923326313496, + 0.0006998836761340499, + 0.005258058663457632, + 0.06375923752784729, + -0.01858994923532009, + -0.01013938244432211, + -0.152460977435112, + -0.04939132556319237, + -0.02524127997457981, + -0.0049008093774318695, + -0.09285881370306015, + -0.011665810830891132, + -0.02899564430117607, + 0.010535603389143944, + -0.02466968074440956, + -0.0329708531498909, + -0.025942787528038025, + 0.03619259223341942, + 0.07093020528554916, + -0.00727489311248064, + 0.04648137092590332, + 0.031541857868433, + 0.025189315900206566, + -0.04692305997014046, + 0.024513790383934975, + 0.07129395008087158, + -0.07176162302494049, + -0.06417495012283325, + 0.033204689621925354, + 0.019226502627134323, + 0.012919430620968342, + -0.06131695583462715, + 0.011938618496060371, + 0.0346856489777565, + 0.12990880012512207, + 0.02001894637942314, + -0.03707597032189369, + -0.0008403475512750447, + -0.040115837007761, + -0.033100761473178864, + 0.01673225313425064, + -0.023760320618748665, + 0.048975616693496704, + -0.0579393245279789, + 0.02231833152472973, + -0.028190210461616516, + 0.0665133073925972, + -0.008255704306066036, + -0.0326850563287735, + -0.07539907097816467, + -0.024266963824629784, + 0.06692901253700256, + 0.0213440153747797, + -0.010860376060009003, + 0.04637744277715683, + -0.0484040193259716, + 0.06381120532751083, + -0.02764459326863289, + -0.052898865193128586, + -0.0033451516646891832, + 0.06204444542527199, + -0.008496035821735859, + 0.07711386680603027, + 0.0750872865319252, + -0.021967578679323196, + -0.09899050742387772, + 0.00999648217111826, + -0.009314460679888725, + -0.021369997411966324, + 0.01959024742245674, + 0.0014980108244344592, + 0.05102817714214325, + 0.005556848831474781, + -0.0229159127920866, + -0.026631304994225502, + 0.01573195680975914, + -0.035205285996198654, + 0.01310779806226492, + 0.020837372168898582, + -0.035828847438097, + -0.020317737013101578, + 0.09644429385662079, + 0.011711278930306435, + 0.03764757141470909, + 0.008599963039159775, + 0.06739668548107147, + -0.012036050669848919, + 0.03944031149148941, + 0.014705676585435867, + -0.026592331007122993, + 0.02896966226398945, + 0.013062329962849617, + 0.024721644818782806, + 0.008112804964184761, + 0.09779534488916397, + -0.033776286989450455, + -0.03970012813806534, + 0.015134375542402267, + 0.010451163165271282, + 0.10382311791181564, + -0.07461961358785629, + 0.030944276601076126, + -0.019902028143405914, + 0.07477550953626633, + 0.04294785112142563, + -0.01995399221777916, + -0.012146472930908203, + 0.005715987179428339, + 0.005706244148313999, + -0.009054643101990223, + 0.01830415055155754, + 0.02917751669883728, + 0.030190804973244667, + 0.02427995577454567, + 0.015472138300538063, + -0.051859594881534576, + -0.06043357402086258, + 0.08236218243837357, + -0.020733444020152092, + 0.012094509787857533, + -0.04136296361684799, + 0.013042843900620937, + -0.050612468272447586, + 0.010301767848432064, + -0.003569244407117367, + 0.014250995591282845, + 0.03050258755683899, + -0.026410458609461784, + 0.01439389493316412, + -0.04744269326329231, + 0.07477550953626633, + -0.021188125014305115, + 0.02889171801507473, + -0.02564399689435959, + -0.02366938441991806, + -0.032061491161584854, + 0.09041652828454971, + -0.042428214102983475, + 0.01482259389013052, + -0.03403610736131668, + -0.06874773651361465, + 0.0040693930350244045, + -0.04294785112142563, + 0.05596471205353737, + -0.05845896154642105, + -0.06433083862066269, + -0.040609490126371384, + -0.055652931332588196, + -0.02899564430117607, + -0.043389540165662766, + 0.07591870427131653, + 0.0020541830454021692, + 0.0506904162466526, + 0.09254702925682068, + -0.02538418024778366, + -0.043467484414577484, + 0.04180465266108513, + -0.04008985683321953, + 0.031308021396398544, + -0.016368508338928223, + -0.0027491950895637274, + -0.03746569901704788, + -0.00911959819495678, + 0.005550353787839413, + 0.007028066087514162, + -0.047936346381902695, + 0.0209153164178133, + 0.04629949852824211, + -0.05362635478377342, + 0.05206744745373726, + -0.03315272554755211, + 0.034815557301044464, + 0.0011488809250295162, + -0.045390136539936066, + 0.09010474383831024, + 0.015420175157487392, + 0.05076836049556732, + 0.071657694876194, + 0.02142196148633957, + 0.012458253651857376, + 0.05404205992817879, + 0.06329157203435898, + -0.04463666304945946, + 0.035854827612638474, + 0.007060543168336153, + -0.02256515808403492, + -0.00048634607810527086, + -0.019083602353930473, + 0.008970202878117561, + 0.035595010966062546, + 0.024085091426968575, + 0.041752688586711884, + -0.03562099486589432, + 0.030060896649956703, + 0.009879563935101032, + -0.026007741689682007, + -0.015485129319131374, + -0.00380308018065989, + 0.04801429435610771, + -0.05861485004425049, + -0.0011034129420295358, + 0.044532738626003265, + 0.04131099954247475, + -0.05292484536767006, + 0.0017001813976094127, + -0.07898455113172531, + -0.04092127084732056, + 0.011763242073357105, + -0.03707597032189369, + -0.04513031616806984, + -0.023734338581562042, + 0.07020271569490433, + 0.0114579563960433, + 0.02159084379673004, + 0.0170570258051157, + 0.01458875834941864, + 0.025903815403580666, + -0.058303069323301315, + -0.030944276601076126, + -0.04302579537034035, + 0.08153076469898224, + 0.03265907242894173, + 0.01163982879370451, + -0.06552600115537643, + -0.005910850595682859, + 0.005413949489593506, + 0.0001893826702143997, + -0.02917751669883728, + -0.06516225636005402, + 0.018979676067829132, + 0.022045522928237915, + 0.06552600115537643, + -0.032347291707992554, + -0.06064143031835556, + -0.026449432596564293, + 0.0008468430023640394, + 0.03504939377307892, + 0.03658231720328331, + 0.019941000267863274, + -0.0213440153747797, + -0.002468267222866416, + 0.01104874350130558, + -0.05430188030004501, + 0.08360930532217026, + -0.07929633557796478, + -0.02681317739188671, + -0.013913232833147049, + 0.0014411758165806532, + -0.06313567608594894, + -0.02366938441991806, + 0.007268397603183985, + 0.053834207355976105, + 0.04307775944471359, + 0.023409565910696983, + 0.0003140139451716095, + 0.04980703443288803, + 0.025410162284970284, + 0.034088071435689926, + -0.0026874884497374296, + 0.008502530865371227, + 0.039959948509931564, + 0.027150940150022507, + 0.04351944848895073, + -0.04364935681223869, + 0.076230488717556, + -0.018070314079523087, + 0.009184552356600761, + -0.01638150028884411, + 0.009113102219998837, + 0.031697746366262436, + 0.05066443234682083, + -0.019538283348083496, + 0.007463260553777218, + 0.006206393241882324, + 0.058510925620794296, + 0.004085632041096687, + 0.004975507035851479, + -0.053938135504722595, + 0.08007578551769257, + -0.027696557343006134, + -0.036816153675317764, + 0.04151885211467743, + -0.02038269117474556, + -0.012601153925061226, + 0.02213645912706852, + 0.03089231252670288, + 0.06287585943937302, + -0.02728084847331047, + 0.00423827487975359, + -0.027332812547683716, + -0.011464451439678669, + 0.06266800314188004, + -0.069371297955513, + -0.0013786571798846126, + 0.04819616675376892, + 0.04996292665600777, + -0.00467671686783433, + -0.012075022794306278, + -0.015290265902876854, + -0.053938135504722595, + -0.07768546044826508, + 0.024513790383934975, + -0.07617852091789246, + 0.04151885211467743, + 0.040115837007761, + -0.05700398236513138, + -0.09311863034963608, + -0.018122278153896332, + -0.023448538035154343, + 0.04222036153078079, + 0.023214703425765038, + 0.016043737530708313, + 0.023474520072340965, + 0.07513925433158875, + -0.01088635716587305, + 0.057367727160453796, + -0.003270454006269574, + 0.055652931332588196, + 0.014575767330825329, + 0.027774501591920853, + -0.04853392764925957, + 0.016329536214470863, + -0.006108961533755064, + -0.05128799378871918, + 0.011165661737322807, + 0.03151587396860123, + -0.041466888040304184, + 0.025202307850122452, + 0.013036347925662994, + 0.011522910557687283, + 0.024682672694325447, + 0.010516117326915264, + 0.04658529534935951, + -0.035491086542606354, + 0.01687515340745449, + 0.00025799075956456363, + 0.03260710835456848, + -0.04663725942373276, + -0.1157747209072113, + 0.03946629539132118, + -0.01477063074707985, + -0.061161063611507416, + 0.028657881543040276, + -0.04780643805861473, + 0.04406506568193436, + 0.04520826414227486, + -0.015134375542402267, + 0.021538879722356796, + 0.012328345328569412, + -0.0928068459033966, + -0.009340442717075348, + 0.013809305615723133, + 0.048715800046920776, + 0.00574846426025033, + 0.06329157203435898, + -0.005920593626797199, + -0.0409732349216938, + -0.0797640010714531, + 0.016940107569098473, + 0.05087228864431381, + 0.04817018285393715, + 0.0020882838871330023, + -0.03733579069375992, + -0.11608650535345078, + -0.05695201829075813, + 0.01820022240281105, + 0.019044630229473114, + 0.025072399526834488, + 0.0005488647148013115, + -0.04744269326329231, + -0.008710385300219059, + 0.028112264350056648, + -0.003109691897407174, + 0.041570816189050674, + -0.0053587378934025764, + -0.00203307275660336, + -0.004092127084732056, + -0.03541313856840134, + -0.01163982879370451, + -0.04209045320749283, + 0.026683267205953598, + 0.06568188965320587, + 0.0366862453520298, + -0.01183469220995903, + -0.0018333379412069917, + 0.12554386258125305, + 0.07971204072237015, + -0.004007686395198107, + 0.026514386758208275, + -0.02477360889315605, + -0.0687997043132782, + -0.02456575445830822, + 0.0007173401536419988, + -0.015069421380758286, + 0.01354948803782463, + -0.03242523595690727, + 0.027696557343006134, + 0.033880215138196945, + -0.05144388601183891, + -6.439619755838066e-05, + 0.07243714481592178, + 0.021681778132915497, + 0.0023708357475697994, + 0.027618611231446266, + -0.055652931332588196, + -0.00520284753292799, + 0.02670924924314022, + 0.07576281577348709, + -0.027384774759411812 + ] + }, + { + "id": "3530d391-367f-4db7-88a8-085bb8a84bc9", + "productId": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "category": "Electronics", + "docType": "customerRating", + "userName": "dawn97", + "reviewDate": "2022-10-29T15:04:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c04ae753-19b5-4173-8cd3-8bfc3f39a0b2", + "productId": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "category": "Electronics", + "docType": "customerRating", + "userName": "psuarez", + "reviewDate": "2021-11-06T16:13:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4d7d726a-c941-4c60-9491-66ddcca10047", + "productId": "9a296a10-bfe4-42e4-90ae-98427248bc36", + "category": "Electronics", + "docType": "customerRating", + "userName": "evansmichael", + "reviewDate": "2022-03-19T22:32:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone + (Gold)", + "description": "This Awesome Phone + (Gold) is now available for pre-order\n\nIn addition, the price of Silverware is now $12.65 / $11.25 / $10.95 / $9.45 / $8.45 / $7.35", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-11-07T03:01:36", + "price": 738.52, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-03-19T20:45:33", + "newPrice": 808.42 + }, + { + "priceDate": "2022-12-22T20:45:33", + "newPrice": 699.52 + }, + { + "priceDate": "2025-03-12T20:45:33", + "newPrice": 738.52 + } + ], + "descriptionVector": [ + -0.08750446885824203, + 0.013189413584768772, + -0.03393307328224182, + 0.02759944275021553, + -0.002003841567784548, + -0.12065092474222183, + -0.005038423929363489, + 0.09151893854141235, + -0.022011741995811462, + 0.08018078655004501, + -0.005085892044007778, + -0.003470273921266198, + 0.08012653887271881, + -0.004516272339969873, + 0.0729655995965004, + 0.017400532960891724, + -0.005560575518757105, + -0.02754519321024418, + -0.035045187920331955, + -0.02365279011428356, + 0.08457499742507935, + -0.015040678903460503, + -0.020167257636785507, + -0.06678115576505661, + -0.022391488775610924, + -0.041690755635499954, + -0.009107138030230999, + 0.038679905235767365, + 0.05707049369812012, + -0.012023049406707287, + -0.03160034492611885, + 0.008334082551300526, + -0.022825485095381737, + 0.033200703561306, + -0.02388335019350052, + 0.08403250575065613, + -0.01630198024213314, + 0.025415899232029915, + 0.07578657567501068, + 0.024398719891905785, + -0.06607591360807419, + 0.006167491897940636, + -0.021089499816298485, + -0.0033838136587291956, + 0.02127937227487564, + -0.006757455412298441, + 0.016505416482686996, + 0.039846271276474, + -0.01965188793838024, + -0.05061480030417442, + 0.01928570307791233, + 0.03811028599739075, + -0.047359827905893326, + -0.015705235302448273, + 0.06895113736391068, + -0.050994545221328735, + -0.010137878358364105, + 0.12054242938756943, + 0.008903701789677143, + 0.012545200996100903, + -0.07377934455871582, + 0.017861653119325638, + 0.028426747769117355, + 0.016030732542276382, + 0.01761753112077713, + 0.027680816128849983, + -0.04448460415005684, + -0.0021496370900422335, + -0.04193487763404846, + 0.06813739240169525, + 0.0020631770603358746, + -0.0017308986280113459, + 0.002966770436614752, + 0.05945746973156929, + 0.02030288241803646, + 0.0564194992184639, + 0.009568258188664913, + -0.03553343564271927, + 0.07025312632322311, + -0.07611206918954849, + 0.014986429363489151, + 0.06379742920398712, + -0.03830016031861305, + -0.020072320476174355, + 0.049801055341959, + 0.0019004284404218197, + 0.013833627104759216, + -0.15146465599536896, + -0.0035092656034976244, + -0.02096743881702423, + -0.00013382254110183567, + 0.0365641750395298, + -0.06705240160226822, + -0.03851715847849846, + 0.021523496136069298, + 0.02028931863605976, + -0.002795545384287834, + 0.04757682606577873, + -0.07887879759073257, + -0.05150991678237915, + 0.01696653664112091, + -0.05419526621699333, + 0.01696653664112091, + 0.04556959494948387, + -0.066401407122612, + 0.016993660479784012, + 0.029321864247322083, + 0.009954786859452724, + -0.055931251496076584, + -0.1364917904138565, + 0.05438514053821564, + 0.021184436976909637, + -0.012802885845303535, + 0.0862567350268364, + 0.06216994673013687, + 0.09575039893388748, + -0.02191680483520031, + -0.00202927109785378, + 0.013548816554248333, + -0.021008126437664032, + -0.029674485325813293, + 0.039737772196531296, + -0.008083177730441093, + -0.0563652478158474, + 0.049312811344861984, + -0.024195285513997078, + 0.016776662319898605, + 0.008747735060751438, + -0.011561928316950798, + -0.11522597819566727, + -0.0929836705327034, + -0.00963607057929039, + -0.014647369273006916, + 0.016451166942715645, + 0.0070117502473294735, + -0.0008764687809161842, + 0.04828207194805145, + 0.13735978305339813, + -0.03390594944357872, + 0.04047013819217682, + -0.12108492106199265, + 0.025402337312698364, + 0.08891496062278748, + -0.014579557813704014, + -0.051998160779476166, + 0.053679898381233215, + -0.008198458701372147, + 0.025849895551800728, + -0.019787510856986046, + 0.017848091199994087, + -0.034041572362184525, + -0.05907772481441498, + -0.024059660732746124, + -0.051320042461156845, + -0.007330466061830521, + -0.004295883700251579, + -0.057667236775159836, + 0.007533901836723089, + -0.014837242662906647, + 0.06547916680574417, + -0.08359850943088531, + 0.026853511109948158, + -0.06721515208482742, + 0.003499093931168318, + -0.059999965131282806, + 0.005774183198809624, + 0.03621155396103859, + 0.061356205493211746, + -0.07421334087848663, + 0.027992751449346542, + 0.030379729345440865, + 0.003675404703244567, + 0.028752245008945465, + -0.10866178572177887, + 0.006506551522761583, + 0.07779380679130554, + 0.03458406776189804, + -0.01293172873556614, + 0.012789323925971985, + -0.0731825977563858, + -0.0017207268392667174, + 0.06124770641326904, + -0.031735967844724655, + -0.01113471295684576, + -0.03363469988107681, + 0.004560349974781275, + -0.0073914965614676476, + 0.0008039947715587914, + 0.024100348353385925, + 0.010592218488454819, + 0.0017529375618323684, + 0.010429469868540764, + -0.015406862832605839, + -0.0030786599963903427, + 0.02454790659248829, + -0.018539773300290108, + 0.05061480030417442, + 0.01893308199942112, + 0.009500446729362011, + 0.06179020181298256, + 0.011433085426688194, + -9.390358172822744e-06, + 0.0565822459757328, + -0.05739599093794823, + -0.030488228425383568, + -0.0366455502808094, + -0.012904603965580463, + -0.010117534548044205, + -0.020709753036499023, + 0.03594030439853668, + -0.006547238677740097, + 0.011114370077848434, + -0.003692357800900936, + 0.06482817232608795, + 0.026039768010377884, + 0.04255874454975128, + 0.04630196467041969, + 0.004272149410098791, + -0.01494574174284935, + -0.052703406661748886, + -0.023327292874455452, + -0.021848993375897408, + -0.03547918424010277, + 0.012918165884912014, + -0.04624771326780319, + -0.04779382422566414, + 0.010917715728282928, + 0.09477390348911285, + 0.024859841912984848, + -0.02164555713534355, + -0.06276669353246689, + -0.059945717453956604, + -0.045325472950935364, + -0.04472872614860535, + -0.07150086015462875, + 0.011507678776979446, + -0.03623867779970169, + -0.007113467901945114, + -0.0232730433344841, + 0.0799095407128334, + -0.00199027918279171, + 0.015013554133474827, + -0.035397808998823166, + -0.06493667513132095, + 0.006174273323267698, + -0.0465189628303051, + 0.05761298909783363, + 0.011989143677055836, + -0.06206144765019417, + 0.026161829009652138, + -0.0032481898088008165, + -0.051971036940813065, + -0.0628751888871193, + -0.01348100509494543, + 0.015162739902734756, + 0.05376126989722252, + 0.05438514053821564, + -0.00714059267193079, + 0.08332725614309311, + 0.008598548360168934, + 0.009663195349276066, + -0.03683542087674141, + -0.02022150717675686, + 0.057667236775159836, + -0.07063287496566772, + 0.051618415862321854, + 0.019407764077186584, + -0.08907770365476608, + 0.011433085426688194, + 0.1031283289194107, + -0.008917264640331268, + 0.0017461563693359494, + 0.02793850190937519, + -0.00024814915377646685, + -0.0696021318435669, + 0.0004636638332158327, + -0.09509940445423126, + 0.05503613501787186, + 0.010009036399424076, + -3.313776687718928e-05, + 0.04044301435351372, + 0.030976474285125732, + 0.10329107940196991, + -0.05679924413561821, + 0.092766672372818, + -0.01993669755756855, + -0.06830014288425446, + 0.011683989316225052, + -0.04825494438409805, + -0.04114826023578644, + -0.02061481587588787, + 0.011928112246096134, + 0.03623867779970169, + 0.028372498229146004, + 0.06797464191913605, + 0.019109392538666725, + 0.08343575894832611, + -0.006598097737878561, + -0.022744109854102135, + 0.02888786792755127, + 0.06037971377372742, + 0.022364363074302673, + -0.046356212347745895, + -0.006659128237515688, + 0.004360305145382881, + 0.08235076814889908, + -0.007472870871424675, + 0.0012460435973480344, + -0.037730541080236435, + 0.02292042039334774, + 0.07904154807329178, + -0.08853521198034286, + -0.0364827997982502, + -0.008123865351080894, + -0.009758131578564644, + -0.05609400197863579, + -0.043969232589006424, + 0.04253162071108818, + 0.008164552040398121, + -0.013548816554248333, + 0.0432368665933609, + 0.016776662319898605, + -0.05804698169231415, + 0.03018985688686371, + 0.006123414263129234, + 0.04114826023578644, + 0.0099412240087986, + -0.03151896968483925, + -0.037432167679071426, + -0.0016927544493228197, + -0.00980560015887022, + -0.022391488775610924, + 0.03216996416449547, + -0.013413192704319954, + 0.03282095864415169, + -0.03886977955698967, + 0.03219708800315857, + 0.03244121000170708, + 0.04451172798871994, + -0.05275765433907509, + 0.06092220917344093, + 0.017807403579354286, + -0.013148726895451546, + 0.0015825601294636726, + -0.012836791574954987, + -0.02753162942826748, + -0.002849794924259186, + -0.04874319210648537, + 0.06254969537258148, + 0.054656390100717545, + 0.0013214843347668648, + -0.00929022952914238, + 0.030732352286577225, + -0.04820069670677185, + 0.13692578673362732, + -0.009283448569476604, + 0.015569611452519894, + -0.07074137032032013, + 0.009113918989896774, + -0.03821878507733345, + 0.0012070517987012863, + -0.033661823719739914, + -0.02357141487300396, + 0.0066760811023414135, + -0.0017283557681366801, + 0.04828207194805145, + 0.03246833756566048, + 0.1064375564455986, + -0.023747725412249565, + -0.0665641576051712, + 0.019733261317014694, + 0.011216087266802788, + -0.03393307328224182, + -0.036754049360752106, + -0.008259489201009274, + 0.005774183198809624, + 0.07768531143665314, + 0.005852166563272476, + -0.02028931863605976, + 0.018539773300290108, + -0.03789328783750534, + 0.020153695717453957, + -0.04673595726490021, + -0.0035092656034976244, + 0.08403250575065613, + -0.0530560277402401, + -0.02523958869278431, + 0.012240047566592693, + -0.018756771460175514, + 0.0124367019161582, + -0.05020792782306671, + -0.0064285676926374435, + -0.02157774567604065, + 0.10177209228277206, + 0.05053342506289482, + -0.023991849273443222, + 0.03954789787530899, + 0.03282095864415169, + 0.025348087772727013, + -0.017780279740691185, + 0.06347193568944931, + 0.07584082335233688, + 0.05340864881873131, + 0.027165446430444717, + 0.013426755554974079, + -0.08555148541927338, + 0.011928112246096134, + -0.0006043735193088651, + 0.009866630658507347, + -0.07936704158782959, + -0.01855333521962166, + 0.06553341448307037, + 0.01115505676716566, + 0.013474224135279655, + -0.005797917023301125, + -0.0066659096628427505, + 0.046003591269254684, + 0.05745023861527443, + 0.031112099066376686, + -0.010829559527337551, + -0.007547464221715927, + 0.01630198024213314, + -0.021401435136795044, + 0.025497272610664368, + -0.010117534548044205, + 0.009181730449199677, + -0.03881552815437317, + 0.009527571499347687, + 0.030678102746605873, + 0.015013554133474827, + -0.019150080159306526, + -0.010585436597466469, + 0.054276641458272934, + 0.006889688782393932, + -0.0499366819858551, + 0.006103070918470621, + -0.0010773615213111043, + 0.028155500069260597, + -0.04475584998726845, + 0.006648956332355738, + -0.03428569436073303, + -0.021442120894789696, + -0.028996367007493973, + 0.04738695174455643, + -0.07556957751512527, + -0.03485531359910965, + -0.053001780062913895, + 0.04952980950474739, + 0.022106679156422615, + -0.0033770324662327766, + -0.08452074974775314, + -0.0031057847663760185, + -0.030352605506777763, + 0.05471063777804375, + 0.0053300149738788605, + -0.03859852999448776, + -0.024751342833042145, + 0.055334508419036865, + -0.04784807562828064, + 0.009547915309667587, + 0.029403237625956535, + 0.07128386199474335, + -0.00798146054148674, + -0.040334515273571014, + -0.0061437576077878475, + 0.031030723825097084, + 0.022527111694216728, + 0.04917718842625618, + 0.010185346938669682, + 0.008435799740254879, + -0.09737788140773773, + -0.01178570743650198, + -0.03878840431571007, + 0.01512205321341753, + -0.040660012513399124, + -0.04508134722709656, + -0.020777564495801926, + -0.012599450536072254, + -0.04489147663116455, + 0.00999547354876995, + 0.021835431456565857, + -0.01825496181845665, + 0.052622031420469284, + 0.038083162158727646, + -0.00042891025077551603, + -0.10676304996013641, + -0.050723299384117126, + -0.02289329655468464, + 0.03580468147993088, + 0.086419478058815, + -0.020519880577921867, + 0.006886298302561045, + 0.03447556868195534, + 0.07188060879707336, + -0.044647350907325745, + -0.07502708584070206, + 0.0028820056468248367, + -0.04285711795091629, + 0.0005310518899932504, + 0.007425402756780386, + -0.036672674119472504, + 0.004258587025105953, + -0.07931279391050339, + -0.029077740386128426, + -0.02224230207502842, + -0.06108495593070984, + -0.05490051209926605, + 0.0464375875890255, + 0.03433994576334953, + 0.049665432423353195, + -0.010510844178497791, + 0.03130197152495384 + ] + }, + { + "id": "3c76a2c8-a1f7-4833-937f-9155466e3db1", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "gharrell", + "reviewDate": "2021-03-27T23:20:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "433bb9dc-565a-426a-a704-5411f6d6fd8e", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "fernandezmatthew", + "reviewDate": "2022-08-23T20:39:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "49b46516-f769-460e-a50a-575a32c95f1a", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelmaynard", + "reviewDate": "2022-01-04T14:35:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "777e98c8-59d1-4159-8c69-0b5e992bbb73", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "brendanjohnson", + "reviewDate": "2021-03-19T20:45:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4765bcb8-b20d-4117-8008-b9857254af17", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "fcox", + "reviewDate": "2022-05-28T05:44:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ba1224f4-4cec-4665-ad85-38baa4ced932", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamhouse", + "reviewDate": "2022-01-14T12:52:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b38e9b7d-77d2-4802-bdb9-cc817727d588", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "jesse00", + "reviewDate": "2021-06-11T02:10:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2313bf80-b165-4282-ac15-062b12cf684e", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelleyrobert", + "reviewDate": "2021-08-14T10:03:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6d44b2ed-9ccd-4fd6-ade2-6a9d877831ea", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "wfoley", + "reviewDate": "2022-09-21T13:57:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eb7c4fed-45df-4394-a644-554a0ce7b6c4", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "ortizwilliam", + "reviewDate": "2022-02-17T00:00:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9b5ba555-9860-4840-bb7c-0d156b140ad0", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "heatherkelley", + "reviewDate": "2022-12-23T16:19:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4cd5c6c1-9fcb-4968-8856-602c05b00bbf", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "elizabeth47", + "reviewDate": "2022-04-27T08:10:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b7eff46a-ed42-40cc-b138-5864098fce30", + "productId": "4f2f65ba-5a28-45b7-9171-f5aecf021776", + "category": "Electronics", + "docType": "customerRating", + "userName": "mwilliams", + "reviewDate": "2022-02-12T16:26:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Ultra (Gold)", + "description": "This Luxe Phone Ultra (Gold) is a smartphone that's a hybrid of our LG and Moto phones. While the dual-core 1.4GHz processor paired with the 2GB RAM, 4GB of RAM, 1,050mAh battery, and 12MP camera, the Nexus 5 has the same specs as an LG device—16GB of RAM and 16GB", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-07-10T18:29:55", + "price": 332.67, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-01-18T16:06:19", + "newPrice": 300.82 + }, + { + "priceDate": "2022-11-12T16:06:19", + "newPrice": 324.54 + }, + { + "priceDate": "2024-06-14T16:06:19", + "newPrice": 332.67 + } + ], + "descriptionVector": [ + -0.03379407152533531, + 0.049361616373062134, + -0.03679394721984863, + 0.03974837437272072, + 0.0057497648522257805, + 0.017635641619563103, + -0.019635559991002083, + 0.025612588971853256, + 0.04315732419490814, + 0.039862003177404404, + 0.04604357108473778, + 0.001798221841454506, + 0.018396973609924316, + -0.001074529835022986, + 0.04908889904618263, + -0.010817739181220531, + -0.08754187077283859, + -0.01464712806046009, + 0.02586257830262184, + -0.013817616738379002, + 0.09981409460306168, + -0.05858851224184036, + -0.014988022856414318, + -0.03236231207847595, + -0.03295319527387619, + -0.025680767372250557, + 0.00789740402251482, + 0.007488329894840717, + 0.044498179107904434, + -0.060088448226451874, + 0.05354326218366623, + 0.020851420238614082, + -0.016056161373853683, + 0.030362393707036972, + -0.0272943377494812, + -0.04804348945617676, + 0.06545186787843704, + 0.009908685460686684, + 0.08240571618080139, + 0.016703862696886063, + 0.06299742311239243, + -0.03322591260075569, + -0.043566398322582245, + -0.060633882880210876, + 0.03845297172665596, + -0.03936202451586723, + 0.023544490337371826, + 0.036566685885190964, + -0.005295237991958857, + -0.08772367984056473, + -0.003996995277702808, + -0.02452172338962555, + -0.03158961609005928, + 0.002815225627273321, + 0.020180992782115936, + -0.051497891545295715, + -0.03024876117706299, + 0.15935711562633514, + 0.00885759200900793, + 0.023192232474684715, + 0.04804348945617676, + -0.017101572826504707, + -0.011465439572930336, + -0.006778131704777479, + 0.020896872505545616, + 0.012465398758649826, + -0.014249416999518871, + -0.019215121865272522, + 0.04218009114265442, + 0.08708734810352325, + -0.006448599509894848, + 0.041998282074928284, + -0.03554400056600571, + -0.011874513700604439, + 0.014874391257762909, + 0.0494525209069252, + -0.048134393990039825, + 0.03065783530473709, + 0.03131689876317978, + -0.021408215165138245, + 0.07763318717479706, + -0.0028379519935697317, + -0.01547663938254118, + 0.002663243329152465, + 0.0005848482251167297, + -0.021465031430125237, + 0.10226853936910629, + -0.10172311216592789, + -0.056134067475795746, + -0.013317637145519257, + -0.022476352751255035, + 0.060224808752536774, + 0.006119067780673504, + 0.0025581340305507183, + 0.05677040293812752, + 0.0317487008869648, + 0.03388497605919838, + 0.05531591922044754, + -0.001970089739188552, + -0.05667949840426445, + -0.003962906077504158, + -0.03531673550605774, + 0.0015695380279794335, + 0.06654272973537445, + 0.06490643322467804, + 0.07422423362731934, + 0.068360835313797, + -0.009596197865903378, + 0.04058924689888954, + -0.0687699094414711, + 0.027703411877155304, + -0.018067441880702972, + -0.06763359904289246, + -0.0393165722489357, + -0.01036889385432005, + 0.025771671906113625, + 0.0014466737629845738, + -0.03836206719279289, + -0.0495888814330101, + -0.033407725393772125, + 0.035566724836826324, + 0.06281561404466629, + -0.014601674862205982, + -0.03886204585433006, + 0.018612874671816826, + 0.04138467088341713, + 0.06381557136774063, + 0.004744124133139849, + -0.011090455576777458, + -0.03781663253903389, + -0.022760432213544846, + 0.08199664205312729, + 0.024135375395417213, + 0.0372939296066761, + -0.010277988389134407, + 0.013953974470496178, + 0.07076983153820038, + 0.053270548582077026, + 0.021624114364385605, + 0.045498136430978775, + 0.03022603504359722, + -0.03138507902622223, + 0.03222595527768135, + -0.09031448513269424, + 0.00207377877086401, + -0.001928898273035884, + -0.04867982491850853, + -0.027976127341389656, + -0.01479484885931015, + 0.06195200979709625, + -0.03579398989677429, + -0.05881577357649803, + 0.019396932795643806, + -0.042634617537260056, + -0.020499160513281822, + 0.0012258021160960197, + -0.05154334381222725, + -0.044498179107904434, + -0.032771386206150055, + 0.05022521689534187, + -0.001546811661683023, + -0.021760473027825356, + 0.004806621465831995, + -0.02886245585978031, + -0.003823707113042474, + -0.016317514702677727, + 0.004329368472099304, + 0.011544981971383095, + -0.059043038636446, + 0.036271244287490845, + 0.06358830630779266, + 0.039566561579704285, + -0.06317923218011856, + -0.03211232274770737, + -0.002532566897571087, + -0.010204127989709377, + 0.04854346811771393, + 0.07545145601034164, + 0.02037416584789753, + -0.022135457023978233, + 0.10963187366724014, + -0.028271570801734924, + -0.0640428364276886, + -0.019056038931012154, + 0.008942815475165844, + 0.007084937300533056, + -0.01128931064158678, + 0.013976700603961945, + -0.020192354917526245, + -0.00443163700401783, + -0.035907622426748276, + -0.010976823046803474, + -0.03808934986591339, + -0.018408337607979774, + 0.010965459980070591, + -0.03474857658147812, + 0.0880873054265976, + 0.0632246881723404, + -0.018703779205679893, + 0.026703452691435814, + 0.035703085362911224, + 0.07731501758098602, + 0.0316123440861702, + -0.02702162228524685, + 0.002247067168354988, + -0.03374861925840378, + -0.029635149985551834, + 0.015419823117554188, + 0.009482566267251968, + 0.03179415315389633, + -0.012294950895011425, + 0.05827034264802933, + -0.08063306659460068, + 0.023044511675834656, + 0.07967855781316757, + 0.008357612416148186, + 0.02908971905708313, + 0.0038435927126556635, + 0.026044389232993126, + -0.147539421916008, + 0.004408910404890776, + 0.021101409569382668, + 0.03995291143655777, + 0.02280588448047638, + -0.025703493505716324, + -0.05754309892654419, + 0.06726997345685959, + 0.03524855896830559, + 0.006028162315487862, + -0.028044307604432106, + 0.022635437548160553, + 0.0004882612556684762, + 0.03552127256989479, + 0.03981655091047287, + 0.005610565654933453, + 0.012169956229627132, + 0.04977069050073624, + -0.03143053129315376, + -0.016749314963817596, + 0.08526923507452011, + -0.03122599422931671, + -0.04136194288730621, + -0.021203678101301193, + -0.04368003085255623, + 0.07372425496578217, + -0.04379366338253021, + 0.004144716542214155, + 0.0022754750680178404, + -0.06831538677215576, + 0.03724847733974457, + 0.056361328810453415, + -0.09672331064939499, + -0.07758773118257523, + 0.06654272973537445, + -0.021851377561688423, + -0.0070792557671666145, + 0.0018280502408742905, + -0.021124135702848434, + 0.039862003177404404, + -0.014488043263554573, + -0.006170202046632767, + -0.07286065071821213, + -0.07549691200256348, + -0.009556426666676998, + -0.08481471240520477, + 0.06713361293077469, + 0.07013349235057831, + -0.026180746033787727, + 0.01649932563304901, + -0.031180541962385178, + -0.02488534525036812, + -0.054634127765893936, + 0.039202939718961716, + 0.01261312048882246, + -0.027498874813318253, + 0.01614706590771675, + -0.11872241646051407, + 0.05554318055510521, + 0.019840097054839134, + -0.03788481280207634, + 0.07086073607206345, + 0.05317964032292366, + 0.03695303201675415, + -0.0734969899058342, + 0.037930265069007874, + -0.049270711839199066, + 0.012840383686125278, + 0.038702961057424545, + 0.0489070899784565, + 0.03045329824090004, + 0.013942611403763294, + 0.0208059661090374, + 0.025339871644973755, + -0.053270548582077026, + -0.03695303201675415, + -0.06790631264448166, + 0.034771304577589035, + -0.029680604115128517, + 0.0024913751985877752, + 0.032407764345407486, + -0.02051052451133728, + 0.049134351313114166, + 0.019283302128314972, + -0.0679517611861229, + 0.005451481323689222, + 0.11663158982992172, + -0.000989306136034429, + 0.03961201384663582, + -0.015294828452169895, + 0.0012890096986666322, + 0.08208754658699036, + -0.014863028191030025, + -0.06327013671398163, + -0.026430737227201462, + -0.0017726547084748745, + -0.023999018594622612, + -0.052497852593660355, + 0.024135375395417213, + 0.0340440608561039, + 0.03831661492586136, + 0.040407437831163406, + -0.017567463219165802, + -0.06558822840452194, + 0.07481511682271957, + 0.05563408508896828, + 0.019999181851744652, + -0.022555895149707794, + 0.004096423275768757, + 0.023385407403111458, + -0.012397220358252525, + -0.07163342833518982, + -0.032271407544612885, + 0.011601798236370087, + -0.04954342544078827, + -0.01444259099662304, + 0.011738155968487263, + 0.0648609846830368, + 0.08581466972827911, + 0.03708939254283905, + -0.008096260018646717, + 0.05227058753371239, + 0.059361208230257034, + -0.062361083924770355, + -0.0036475779488682747, + -0.017135662958025932, + -0.0422937236726284, + -0.10508660972118378, + 0.05240694433450699, + 0.020999141037464142, + 0.030930552631616592, + 0.0013657110976055264, + -0.023567216470837593, + 0.049497973173856735, + -0.006067933514714241, + 0.006806539837270975, + 0.029498793184757233, + 0.003806662280112505, + -0.019885549321770668, + -0.06567913293838501, + -0.028135212138295174, + -0.006141793914139271, + -0.017772000283002853, + 0.08695098757743835, + 0.023317227140069008, + -0.051361534744501114, + 0.06640637665987015, + 0.03138507902622223, + -0.0031220312230288982, + -0.07067892700433731, + -0.0067440420389175415, + 0.07290610671043396, + -0.005255466792732477, + -0.0778149962425232, + 0.028680644929409027, + -0.07686048746109009, + 0.03658941015601158, + 0.049270711839199066, + 0.006522460374981165, + 0.01894240640103817, + 0.05140698701143265, + -0.035703085362911224, + 0.06399738043546677, + -0.013340363278985023, + -0.005087859928607941, + 0.10199582576751709, + -0.024271734058856964, + 0.014999385923147202, + -0.003184528788551688, + 0.02486261911690235, + 0.02588530443608761, + 0.031271446496248245, + -0.0589066818356514, + 0.03745301440358162, + 0.12172228842973709, + 0.06713361293077469, + 0.02079460397362709, + 0.027067074552178383, + -0.007391742896288633, + -0.03254412114620209, + -0.05045248195528984, + -0.004829347599297762, + 0.04638446494936943, + -0.0059827095828950405, + -0.029362434521317482, + 0.05804307758808136, + -0.05140698701143265, + 0.05795217305421829, + -0.015783444046974182, + -0.054361410439014435, + -0.0890418067574501, + -0.018328795209527016, + 0.028135212138295174, + -0.010414346121251583, + 0.00376973208039999, + -0.009283711202442646, + -0.036339420825242996, + 0.03943020477890968, + 0.05713402479887009, + 0.04629356041550636, + -0.02538532391190529, + 0.0033464538864791393, + 0.08204209804534912, + -0.010601839050650597, + -0.022976333275437355, + -0.055225010961294174, + 0.005423073656857014, + -0.05395233631134033, + -0.0012115981662645936, + 0.016419783234596252, + -0.0539068840444088, + 0.1089046373963356, + -0.009959819726645947, + 0.09372343868017197, + -0.01551072858273983, + -0.028180664405226707, + -0.025998935103416443, + -0.012317677959799767, + 0.008459880948066711, + -0.04038470983505249, + 0.008783731609582901, + 0.017385652288794518, + -0.010976823046803474, + -0.03895295038819313, + 0.0933598130941391, + -0.0643155500292778, + -0.050134312361478806, + -0.03493038937449455, + 0.001771234325133264, + -0.06031571328639984, + -0.04740715026855469, + 0.016567504033446312, + 0.008323523215949535, + -0.024317186325788498, + -0.056361328810453415, + 0.06831538677215576, + -0.018999222666025162, + -0.020055998116731644, + 0.056997667998075485, + -0.047634415328502655, + -0.040498342365026474, + -0.04008926823735237, + 0.053134188055992126, + 0.015397096984088421, + -0.010317759588360786, + -0.026703452691435814, + 0.013953974470496178, + -0.05245240032672882, + -0.004002677276730537, + -0.02044234424829483, + 0.060088448226451874, + 0.0159425288438797, + -0.06613365560770035, + 0.03774845600128174, + 0.005971346516162157, + -0.07667867839336395, + -0.06990622729063034, + 0.022192273288965225, + -0.053270548582077026, + -0.009357571601867676, + -0.008266706950962543, + 0.04795258119702339, + 0.05913394317030907, + 0.05158879607915878, + -0.024544449523091316, + 0.06177020072937012, + -0.05740674212574959, + 0.089178167283535, + 0.03168052062392235, + 0.04286188259720802, + 0.059224847704172134, + 0.006050888914614916, + -0.04840711131691933, + -0.054134149104356766, + -0.0247262604534626, + -0.07022439688444138, + -0.041839197278022766, + 0.0347258523106575, + 0.005704312119632959, + -0.04083923622965813, + 0.021192314103245735, + -0.02109004557132721, + -0.06586094200611115, + -0.023930838331580162, + 0.022783158347010612, + 0.027203431352972984, + 0.014181237667798996, + -0.007164479698985815, + 0.06213381886482239, + -0.0172947458922863, + -0.011312036775052547, + 0.06554277241230011, + -0.0051247901283204556 + ] + }, + { + "id": "3be5e8d5-1185-4331-b628-b52d681c7905", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "customerRating", + "userName": "larryshaffer", + "reviewDate": "2021-01-18T16:06:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "55c1ee77-bebe-4cc5-9b48-23568c4ca070", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "customerRating", + "userName": "lauraedwards", + "reviewDate": "2022-04-08T19:12:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "abf3d43d-04ef-42a4-b30e-5fdcd97a68f8", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "customerRating", + "userName": "destinymorales", + "reviewDate": "2022-07-19T07:42:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fd3a2ecb-295b-4c97-9176-0d0bae852bf1", + "productId": "f3e552ff-1da4-4501-b445-458a6b77cc10", + "category": "Electronics", + "docType": "customerRating", + "userName": "mjacobs", + "reviewDate": "2022-11-12T18:29:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "product", + "name": "Luxe TV Micro (Black)", + "description": "This Luxe TV Micro (Black) is the ultimate gaming machine. The X-Wing comes equipped with a laser-guided system that will fire at the target at up to 60fps with a low frequency of 300Hz. The X-Wing's laser features a red-ray sensor that gives its infrared light, which will be used to detect changes in the light reflected off aircraft surfaces. It's said the Laser-Mapping system is able", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-08-02T16:15:30", + "price": 423.68, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-01-01T03:32:35", + "newPrice": 394.9 + }, + { + "priceDate": "2021-06-22T03:32:35", + "newPrice": 426.32 + }, + { + "priceDate": "2021-12-11T03:32:35", + "newPrice": 419.39 + }, + { + "priceDate": "2022-06-01T03:32:35", + "newPrice": 450.75 + }, + { + "priceDate": "2022-11-20T03:32:35", + "newPrice": 427.21 + }, + { + "priceDate": "2023-11-13T03:32:35", + "newPrice": 423.68 + } + ], + "descriptionVector": [ + -0.04319523647427559, + 0.08548374474048615, + -0.036948926746845245, + -0.016711393371224403, + -0.021673178300261497, + -0.009268715046346188, + 0.011094752699136734, + 0.03203751519322395, + 0.04657025635242462, + 0.05757685750722885, + 0.013588238507509232, + 0.014910541474819183, + 0.04369897022843361, + -0.025942327454686165, + 0.025866767391562462, + -0.006882273126393557, + -0.057375360280275345, + 0.026169007644057274, + 0.02375108189880848, + 0.010924742557108402, + 0.10709396004676819, + -0.037427473813295364, + -0.06009553000330925, + -0.02019975520670414, + 0.014986102469265461, + -0.029770709574222565, + -0.03954315930604935, + 0.011585894040763378, + -0.06669445335865021, + -0.03710004687309265, + 0.0017457549693062901, + 0.02145909145474434, + -0.021597618237137794, + 0.030350005254149437, + 0.006331313401460648, + -0.0996386855840683, + 0.010836589150130749, + 0.0020810533314943314, + 0.07893519848585129, + -0.0015379644464701414, + -0.008607563562691212, + -0.050726067274808884, + -0.07586242258548737, + -0.0358910858631134, + -0.011220686137676239, + 0.02352440170943737, + -0.036722246557474136, + -0.06629146635532379, + 0.005500151310116053, + -0.048988182097673416, + 0.003781157312914729, + 0.0332464799284935, + -0.07001909613609314, + 0.05601527914404869, + -0.05085200071334839, + -0.022290252149105072, + 0.05039864033460617, + 0.12653811275959015, + 0.016472117975354195, + -0.05017196014523506, + 0.06498175114393234, + -0.06578772515058517, + -0.024242224171757698, + 0.0006906672497279942, + -0.043321169912815094, + -0.07193329185247421, + 0.05218689516186714, + 0.0014285596553236246, + 0.01739143393933773, + 0.016711393371224403, + -0.03858606517314911, + -0.017252907156944275, + 0.020602742210030556, + -0.013172658160328865, + 0.04568872228264809, + -0.03788083791732788, + 0.04160847142338753, + -0.01111364271491766, + -0.005997589323669672, + -0.016283217817544937, + 0.04397602379322052, + -0.01099400594830513, + -0.025866767391562462, + 0.05682125315070152, + 0.05787909775972366, + 0.05168316140770912, + -0.043875277042388916, + -0.10120026767253876, + -0.026395689696073532, + 0.02735278382897377, + -0.0408780574798584, + 0.1710682511329651, + 0.01969601958990097, + -0.04810664802789688, + -0.0121337054297328, + -0.025866767391562462, + -0.039014238864183426, + 0.01870114356279373, + -0.010968819260597229, + 0.029090669006109238, + -0.016950666904449463, + -0.009797636419534683, + 0.01227852888405323, + -0.010452491231262684, + 0.017454400658607483, + -0.026118634268641472, + -0.024733364582061768, + 0.029569216072559357, + 0.06830640137195587, + -0.06437727063894272, + -0.00041164556751027703, + -0.029065482318401337, + -0.017718862742185593, + -0.02682386338710785, + 0.009123891592025757, + 0.04992008954286575, + -0.001877985312603414, + 0.0056638652458786964, + -0.0027311856392771006, + 0.017970729619264603, + 0.061002250760793686, + 0.02936772257089615, + 0.061505984514951706, + -0.020262721925973892, + -0.01482238806784153, + -0.019507119432091713, + 0.0115040373057127, + -0.03916535899043083, + 0.0005895267822779715, + -0.032868675887584686, + -0.06029702350497246, + 0.09248565882444382, + 0.0587354451417923, + 0.04961784929037094, + -0.012366682291030884, + 0.04672137647867203, + -0.05158241465687752, + -0.053043246269226074, + 0.016295811161398888, + 0.019507119432091713, + -0.007675654720515013, + -0.04951710253953934, + -0.04835851490497589, + -0.02302066795527935, + -0.010282481089234352, + -0.032314568758010864, + -0.04558797553181648, + 0.0037968989927321672, + 0.003165656700730324, + 0.01635877788066864, + 0.028183946385979652, + -0.036722246557474136, + -0.030727805569767952, + 0.011541817337274551, + 0.02425481751561165, + 0.006548548582941294, + -0.0741497203707695, + 0.01098141260445118, + 2.023055003519403e-06, + 0.08251171559095383, + 0.026672743260860443, + -0.014910541474819183, + -0.0409536175429821, + 0.015792077407240868, + 0.015678737312555313, + -0.028813615441322327, + 0.02710091695189476, + 0.007889742031693459, + -0.06619071960449219, + 0.026395689696073532, + 0.02634531632065773, + -0.02455705776810646, + -0.0537484735250473, + 0.003016110509634018, + 0.09314051270484924, + -0.015993570908904076, + 0.09404723346233368, + 0.06583809852600098, + -0.003129450837150216, + 0.0013034130679443479, + -0.030727805569767952, + 0.0191545058041811, + -0.041809964925050735, + -0.04261593893170357, + 0.05928955227136612, + -0.021811705082654953, + 0.016031350940465927, + -0.005550524685531855, + 0.004253408405929804, + -0.015074255876243114, + -0.0027311856392771006, + 0.005156982224434614, + 0.05145648121833801, + 0.011390697211027145, + -0.034128013998270035, + -0.04047507047653198, + 0.03815789148211479, + -0.025677867233753204, + -0.04878668859601021, + 0.0015946346102282405, + -0.03470730781555176, + 0.05898731201887131, + 0.06321868300437927, + 0.06437727063894272, + -0.0027154439594596624, + -0.05777835100889206, + 0.0066115157678723335, + -0.021899858489632607, + 0.04072693735361099, + 0.02247915230691433, + -0.028964735567569733, + 0.057425737380981445, + -0.027503905817866325, + 0.07465345412492752, + 0.040525443851947784, + -0.024242224171757698, + 0.016698800027370453, + -0.0005789011484012008, + -0.0030712063889950514, + -0.0409284308552742, + 0.018335936591029167, + -0.05677087977528572, + 0.02225247211754322, + -0.006674482487142086, + -0.040248386561870575, + 0.00421877671033144, + 0.054806314408779144, + 0.019280439242720604, + -0.03150859475135803, + -0.059944409877061844, + -0.04992008954286575, + 0.002084201667457819, + 0.03377540037035942, + 0.01683732680976391, + -0.004942894913256168, + -0.054050713777542114, + 0.00427229842171073, + 0.012391868978738785, + -0.02354958839714527, + 0.013512678444385529, + -0.00741749070584774, + -0.08034565299749374, + -0.0006288810400292277, + 0.02760465256869793, + 0.05908805876970291, + -0.049693409353494644, + 0.0688605085015297, + -0.027982452884316444, + -0.0035072516184300184, + -0.010823995806276798, + -0.03269236907362938, + -0.02202579192817211, + -0.003554476657882333, + 0.07843146473169327, + -0.02045162208378315, + -0.004105436149984598, + 0.04004689306020737, + -0.06745005398988724, + 0.04009726643562317, + 0.015489836223423481, + -0.08145387470722198, + -0.08649121969938278, + -0.011541817337274551, + 0.011938508599996567, + -0.05939029902219772, + -0.03601701930165291, + 0.0716814249753952, + -0.07561054825782776, + 0.037729714065790176, + -0.03171008825302124, + -0.051506854593753815, + 0.004250260069966316, + -0.01151663064956665, + 0.01280115358531475, + -0.023108821362257004, + -0.01559058390557766, + -0.03420357406139374, + 0.09314051270484924, + -0.0383341982960701, + -0.05646863952279091, + 0.03778008744120598, + 0.008406070061028004, + 0.026143820956349373, + -0.04070175066590309, + 0.08553412556648254, + -0.015099442563951015, + 0.028032826259732246, + 0.004672137554734945, + -0.0049586365930736065, + 0.012234452180564404, + -0.03304498642683029, + 0.046645816415548325, + 0.03609257936477661, + -0.04060100391507149, + 0.03455618768930435, + -0.007052283268421888, + 0.008720903657376766, + -0.032843489199876785, + -0.0044517540372908115, + -0.02944328263401985, + -0.07591279596090317, + -0.0037717123050242662, + 0.0001517106720712036, + -0.028763242065906525, + -0.06321868300437927, + 0.060951877385377884, + -0.021887265145778656, + 0.10699321329593658, + -0.038258638232946396, + 0.009703186340630054, + 0.11041861027479172, + 0.00982911977916956, + -0.07208441197872162, + 0.025891954079270363, + 0.08079902082681656, + -0.05656938627362251, + 0.043623410165309906, + 0.009312791749835014, + -0.0166106466203928, + -0.010490271262824535, + 0.03276792913675308, + -0.03856087848544121, + -0.11283653229475021, + 0.08462739735841751, + 0.09122632443904877, + -0.014935728162527084, + -0.048484448343515396, + 0.0332968533039093, + -0.08271320909261703, + -0.042590752243995667, + -0.017479587346315384, + 0.019821953028440475, + 0.014646081253886223, + -0.018260376527905464, + 0.006435208488255739, + 0.04725029692053795, + -0.0043824901804327965, + -0.029594402760267258, + 0.01892782375216484, + -0.0075686112977564335, + 0.07863295823335648, + 0.038485318422317505, + -0.07505644112825394, + -0.02735278382897377, + -0.05954141914844513, + -0.011995178647339344, + -0.097170390188694, + 0.0383090116083622, + 0.02404073067009449, + 0.006044814363121986, + 0.0013711024075746536, + -0.07611428946256638, + 0.05009640008211136, + -0.031357474625110626, + 0.012095925398170948, + -0.007203403860330582, + 0.03148340806365013, + -0.014154939912259579, + -0.048585195094347, + 0.0587354451417923, + 0.005733128637075424, + 0.0021046658512204885, + 0.0614052377641201, + 0.10114989429712296, + -0.07394822686910629, + 0.06472988426685333, + -0.0075182379223406315, + 0.00909240823239088, + -0.06608997285366058, + 0.016295811161398888, + 0.08916100859642029, + -0.09278789907693863, + -0.10517977178096771, + 0.0944502204656601, + 0.0015379644464701414, + -0.025388220325112343, + 0.04521017521619797, + -0.01868855021893978, + -0.044832371175289154, + 0.041331417858600616, + -0.013814919628202915, + 0.10135138779878616, + 0.0108491824939847, + -0.02456965111196041, + 0.06669445335865021, + 0.025728240609169006, + -0.02278139442205429, + -0.14245612919330597, + 0.03246568888425827, + 0.000552927318494767, + 0.012095925398170948, + -0.013726765289902687, + -0.049189675599336624, + 0.07702101022005081, + -0.01545205619186163, + -0.04269149899482727, + 0.07228590548038483, + -0.007946412079036236, + 0.05933992564678192, + -0.021131662651896477, + 0.041532911360263824, + 0.0945509672164917, + 0.012215562164783478, + -0.05183428153395653, + -0.04903855547308922, + 0.03017369844019413, + -0.019481932744383812, + -0.019758986309170723, + -0.011774794198572636, + -0.07495569437742233, + 0.02637050300836563, + -0.0048578898422420025, + -0.007574907969683409, + -0.05415146052837372, + 0.061757851392030716, + 0.009885789826512337, + -0.01151663064956665, + 0.011944805271923542, + -0.004838999826461077, + -0.0511794276535511, + 0.013978633098304272, + 0.08795204758644104, + -0.04669618979096413, + 0.03380058705806732, + -0.03730154037475586, + 0.03150859475135803, + 0.0663418397307396, + 0.001977158011868596, + 0.04984452947974205, + -0.11656416952610016, + 0.02911585569381714, + -0.12663885951042175, + -0.01391566637903452, + -0.07505644112825394, + -0.013865293003618717, + 0.014394214376807213, + 0.0485600084066391, + 0.08241096884012222, + 0.030752992257475853, + 0.048459261655807495, + 0.0358658991754055, + -0.014797201380133629, + -0.0005072763888165355, + 0.037729714065790176, + 0.012782263569533825, + 0.00843755342066288, + 0.021043509244918823, + 0.04397602379322052, + 0.04888743534684181, + -0.001392353675328195, + -0.0019000236643478274, + 0.013777139596641064, + 0.0007197894155979156, + 0.006268346682190895, + -0.0006379325641319156, + 0.030979672446846962, + -0.036445192992687225, + 0.011781090870499611, + -0.008727200329303741, + -0.022592492401599884, + 0.003891349071636796, + 0.08926175534725189, + 0.07253777235746384, + 0.014759421348571777, + -0.013626018539071083, + 0.014318653382360935, + -0.09314051270484924, + -0.0009130188263952732, + -0.007190810516476631, + -0.013600831851363182, + 0.03090411238372326, + -0.035160668194293976, + 0.017781829461455345, + -0.004561945796012878, + -0.05067569389939308, + -0.012108518742024899, + -0.010660281404852867, + -0.030803365632891655, + -0.0217235516756773, + -0.04573909565806389, + 0.05188465490937233, + -0.007165623363107443, + 0.0015513448743149638, + -0.006995613221079111, + 0.021673178300261497, + -0.019230065867304802, + 0.042036645114421844, + 0.022806581109762192, + -0.004322671797126532, + 0.008506816811859608, + 0.06508249789476395, + -0.00461231917142868, + -0.03395170718431473, + -0.09621329605579376, + -0.07772623747587204, + -0.01484757475554943, + -0.026420876383781433, + 0.053798846900463104, + -0.02225247211754322, + 0.04568872228264809, + 0.0026965539436787367, + 0.05065050721168518, + -0.06598922610282898, + 0.06518324464559555, + -0.020791642367839813, + 0.058936938643455505, + 0.000560404674615711, + 0.07047245651483536, + 0.01916709914803505, + -0.07233627885580063, + 0.03735191375017166, + -0.015918010845780373 + ] + }, + { + "id": "3f0e4474-ae17-4fe2-aa32-30f471e0f250", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "harmonkatherine", + "reviewDate": "2021-06-04T08:18:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "86cf749e-5b1e-4d76-9d96-a99aee61b28d", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "rjones", + "reviewDate": "2021-06-24T05:36:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e28fe7b4-d4cb-4c4f-a192-a00788bab655", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "silvasteven", + "reviewDate": "2021-03-13T10:32:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "59d6cdb6-c4ec-4acb-aaf8-57ddd20749df", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "guerrerorandy", + "reviewDate": "2021-01-01T03:32:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0883de0b-5b3d-4912-838d-2740b645a039", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "iroberts", + "reviewDate": "2021-04-04T18:18:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "75b5f2d1-3242-4328-a7ba-da42aa601095", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "robert73", + "reviewDate": "2021-12-16T21:59:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1e40cbd8-c948-467f-9cc5-516445323e31", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "mirandachristopher", + "reviewDate": "2021-03-29T22:34:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d081df9c-6cb6-44e2-9795-8d46cbb96115", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "lcase", + "reviewDate": "2022-02-19T01:57:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dd5de1bb-cc4e-4e15-8cc1-d731d358fbbb", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "dustindunlap", + "reviewDate": "2022-11-21T20:10:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c95cbbeb-b7d1-4d86-89b6-aadf124f526d", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "tammiemartinez", + "reviewDate": "2021-12-18T20:26:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "432466a6-4c5d-4a6d-b9d2-1e9bb23ac907", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "zclark", + "reviewDate": "2021-03-17T23:11:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "09125fca-e5a7-43fb-8ed9-b4bd425ed5fb", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "mcguirepatricia", + "reviewDate": "2021-03-18T19:05:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b0dec666-1e1e-4b78-8801-0719e475ba72", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "smithkelly", + "reviewDate": "2021-07-04T05:57:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f23071a0-71a6-404b-84e7-190d3969bf62", + "productId": "f5f58368-6b12-46d1-93e6-35ed6ea90bce", + "category": "Media", + "docType": "customerRating", + "userName": "smonroe", + "reviewDate": "2021-04-27T15:37:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Steel)", + "description": "This Premium Stand Micro (Steel) is an all-steel construction that is designed for exceptional comfort, and fits snugly into most any desk or desk stand. It also comes with a protective rubber band which will protect the back of your back against the elements.\n\nFeatures\n\nBuilt for the greatest experience", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-07-30T04:38:25", + "price": 801.31, + "stock": 7, + "priceHistory": [ + { + "priceDate": "2021-06-08T04:34:01", + "newPrice": 818.29 + }, + { + "priceDate": "2022-09-15T04:34:01", + "newPrice": 732.54 + }, + { + "priceDate": "2025-02-11T04:34:01", + "newPrice": 801.31 + } + ], + "descriptionVector": [ + 0.013825615867972374, + -0.008833032101392746, + -0.03922554850578308, + -0.03824557363986969, + 0.023651868104934692, + 0.024817245081067085, + -0.04981989040970802, + 0.02396969683468342, + 0.023784296587109566, + 0.008548309095203876, + -0.002426766324788332, + 0.019294943660497665, + 0.03564995899796486, + -0.04677401855587959, + 0.017268776893615723, + -0.0020178910344839096, + 0.012421865016222, + -0.015586924739181995, + 0.019361158832907677, + -0.06287741661071777, + 0.04409894719719887, + -0.11039303988218307, + -0.04621781408786774, + -0.022963235154747963, + -0.05901048332452774, + -0.006393022835254669, + 0.04812479764223099, + -0.003333906875923276, + 0.023903483524918556, + 0.060758549720048904, + -0.03676236420869827, + -0.010951900854706764, + -0.017123105004429817, + 0.08157642930746078, + 0.014818835072219372, + -0.007515361066907644, + -0.0008082324056886137, + 0.010216917842626572, + 0.05278630554676056, + 0.06054666265845299, + -0.0046019172295928, + 0.04576755687594414, + 0.03917257860302925, + -0.009323020465672016, + -0.006591666955500841, + -0.030008472502231598, + 0.012845639139413834, + 0.004764142911881208, + -0.017560120671987534, + -0.03157113865017891, + 0.0050058262422680855, + 0.07405444979667664, + -0.016063669696450233, + 0.04031147062778473, + -0.007462389301508665, + -0.03437863662838936, + 0.0877741202712059, + 0.15626654028892517, + 0.10922766476869583, + -0.06700921058654785, + -0.0024234557058662176, + -0.02369159646332264, + 0.009852737188339233, + 0.002428421750664711, + 0.016937702894210815, + -0.030352788046002388, + 0.026538824662566185, + -0.018023623153567314, + 0.02910795249044895, + 0.04621781408786774, + -0.01932143047451973, + -0.008932353928685188, + 0.039808239787817, + -0.014726134948432446, + 0.01563989743590355, + -0.009568015113472939, + 0.060016945004463196, + 0.02109598182141781, + 0.0886746421456337, + -0.051726873964071274, + 0.06531411409378052, + 0.04102658852934837, + -0.016977433115243912, + -0.02979658544063568, + 0.07982836663722992, + 0.0006402127328328788, + 0.05964614450931549, + -0.09137619286775589, + -0.037265595048666, + 0.10477803647518158, + -0.015785569325089455, + 0.02081788145005703, + 0.0685453861951828, + -0.008515202440321445, + 0.04176819324493408, + 0.0016967500559985638, + -0.09063459187746048, + 0.056679725646972656, + -0.019281702116131783, + -0.022234873846173286, + 0.03702722489833832, + -0.06324821710586548, + -0.024181583896279335, + -0.01718931831419468, + 0.012547673657536507, + 0.061341237276792526, + 0.03888123482465744, + 0.015891512855887413, + 0.004866775590926409, + -0.12141115218400955, + -0.030670618638396263, + -0.03077656216919422, + 0.0035391722340136766, + 0.031783025711774826, + -0.011885526590049267, + 0.004681374877691269, + 0.029293354600667953, + -0.07913973182439804, + -0.002852195408195257, + -0.06812161952257156, + -0.05519651994109154, + 0.009276670403778553, + 0.03371649235486984, + 0.0016197755467146635, + -0.011388917453587055, + 0.024539142847061157, + -0.04846911132335663, + -0.041847649961709976, + 0.030511703342199326, + -0.0028273649513721466, + -0.0389871783554554, + 0.07458416372537613, + 0.037053707987070084, + -0.002949862042441964, + -0.0437016598880291, + 0.05493165925145149, + 0.026658011600375175, + 0.028604721650481224, + 0.02995550073683262, + 0.05922237038612366, + -0.0027561841998249292, + -0.02265864796936512, + -0.005065419711172581, + 0.04211250692605972, + -0.018712256103754044, + 0.013997773639857769, + -0.06918104737997055, + 0.037636399269104004, + -0.029717128723859787, + -0.004449623636901379, + 0.004687996115535498, + -0.09275346249341965, + -0.03806017339229584, + -0.08030510693788528, + 0.13592539727687836, + -0.047701023519039154, + -0.09444855153560638, + -0.03541158512234688, + -0.0990041196346283, + 0.04793939366936684, + 0.05079986900091171, + -0.01689797453582287, + -0.019467102363705635, + 0.0017579986015334725, + 0.04221845045685768, + 0.05021717771887779, + 0.0642017126083374, + 0.02759825997054577, + -0.006485723424702883, + 0.025889921933412552, + -0.017732279375195503, + -0.02087085321545601, + -0.01029637549072504, + -0.09879223257303238, + 0.005641486961394548, + -0.021003281697630882, + 0.036894794553518295, + -0.0767030343413353, + 0.023665109649300575, + -0.023678353056311607, + 0.04809831082820892, + 0.04674753174185753, + -0.04513189569115639, + -0.005462707486003637, + 0.04364868625998497, + 0.04825722426176071, + 0.04733021929860115, + 0.07241232693195343, + 0.08200020343065262, + -0.027121514081954956, + 0.008409258909523487, + 0.005982492119073868, + 0.0016735749086365104, + -0.029929013922810555, + 0.059487227350473404, + -0.002640308579429984, + 0.033107317984104156, + 0.04687996208667755, + -0.020844366401433945, + -0.058004021644592285, + -0.04015255346894264, + 0.08009321987628937, + 0.050058264285326004, + -0.00997854582965374, + 0.03157113865017891, + -0.018963871523737907, + -0.010653934441506863, + 0.05636189505457878, + -0.015653138980269432, + 0.018156053498387337, + -0.022857291623950005, + -0.08332449942827225, + -0.06833349913358688, + -0.018566584214568138, + 0.0005417185020633042, + 0.025797221809625626, + 0.0710880309343338, + 0.014712891541421413, + -0.049025315791368484, + -0.00862114503979683, + 0.03268354386091232, + -0.035914815962314606, + 0.026777198538184166, + -0.04290708154439926, + -0.017983894795179367, + 0.019705474376678467, + 0.00773386936634779, + 0.010110974311828613, + 0.04740967974066734, + 0.05450788885354996, + -0.012256328947842121, + -0.03294840082526207, + -0.0021585971117019653, + 0.018314968794584274, + 0.008554930798709393, + 0.06250661611557007, + -0.053686827421188354, + -0.0767030343413353, + 0.03480241075158119, + 0.002299303188920021, + -0.016076913103461266, + -0.02169191464781761, + -0.06515520066022873, + 0.02155948430299759, + -0.007621304597705603, + 0.03911960497498512, + 0.05683864280581474, + -0.010435426607728004, + -0.06229472905397415, + -0.044204890727996826, + -0.030008472502231598, + 0.026035593822598457, + -0.007349824532866478, + 0.08316557854413986, + 0.05360736697912216, + 0.049660976976156235, + 0.05273333564400673, + -0.05252144858241081, + 0.028207434341311455, + -0.03721262514591217, + 0.016580143943428993, + -0.02018222026526928, + -0.0014302361523732543, + 0.02921389602124691, + -0.023360522463917732, + 0.038272060453891754, + 0.046721044927835464, + -0.03641805052757263, + -0.02076490968465805, + 0.029717128723859787, + 0.01667284406721592, + -0.016540415585041046, + 0.053342510014772415, + -0.032286256551742554, + -0.013958045281469822, + 0.03800719976425171, + -0.019003599882125854, + 0.08295369148254395, + -0.0050720409490168095, + -0.03249814361333847, + 0.0826888382434845, + -0.034246210008859634, + 0.08936326950788498, + 0.04203305020928383, + 0.05832184851169586, + -0.07278312742710114, + 0.06812161952257156, + -0.042933568358421326, + -0.019745204597711563, + -0.07177666574716568, + -0.04009958356618881, + -0.021956773474812508, + 0.029054980725049973, + 0.03779531270265579, + 0.04507892206311226, + 0.000667526270262897, + -0.0197187177836895, + 0.04078821465373039, + 0.024247799068689346, + 0.00972030870616436, + 0.028843095526099205, + 0.06224175542593002, + 0.018447397276759148, + -0.009064783342182636, + -0.014858564361929893, + 0.08856869488954544, + -0.025227775797247887, + 0.03567644581198692, + 0.0012531119864434004, + -0.01708337478339672, + 0.07940459251403809, + 0.0359942764043808, + -0.09858034551143646, + 0.03048521839082241, + 0.06531411409378052, + 0.008270207792520523, + -0.002363862469792366, + -0.01873874105513096, + 0.016937702894210815, + 0.030908990651369095, + -0.010177189484238625, + -0.007720626424998045, + -0.039013661444187164, + 0.06356605142354965, + 0.010382454842329025, + -0.07262421399354935, + 0.00023651040100958198, + 0.03715965151786804, + -0.01443479023873806, + -0.016355015337467194, + -0.04020552709698677, + 0.002314201556146145, + 0.013732914812862873, + -7.200841355370358e-05, + 0.0029068223666399717, + -0.039596352726221085, + -0.03400783613324165, + -0.03633859008550644, + -0.009733551181852818, + 0.031067905947566032, + 0.02346646599471569, + 0.010389076545834541, + -0.03766288235783577, + -0.03739802539348602, + 0.04645618796348572, + -0.05225658789277077, + 0.029637670144438744, + -0.06902213394641876, + 0.006459237542003393, + 0.01357400044798851, + 0.0015403178986161947, + -0.06902213394641876, + 0.06806864589452744, + 0.02047356590628624, + 0.11092275381088257, + 0.03819260001182556, + 0.06626760959625244, + -0.03474944084882736, + 0.03403432294726372, + 0.00047467616968788207, + 0.024804001674056053, + -0.01954656094312668, + 0.04621781408786774, + 0.054401945322752, + 0.006674434989690781, + 0.02559857815504074, + -0.06997562944889069, + 0.018937384709715843, + -0.048336684703826904, + 0.04468163475394249, + 0.016368256881833076, + 0.002312546130269766, + 0.11590209603309631, + 0.0479658804833889, + -0.039808239787817, + 0.04992583394050598, + 0.0466945618391037, + 0.04227142408490181, + 0.01627555675804615, + 0.023612137883901596, + -0.05037609487771988, + 0.05969911441206932, + 0.03594130277633667, + 0.013812372460961342, + 0.0415298193693161, + -0.039543379098176956, + -0.03053819015622139, + 0.06621463596820831, + -0.01955980248749256, + 0.013514406979084015, + -0.03967580944299698, + 0.0011571007780730724, + -0.029081467539072037, + 0.01340184174478054, + 0.07590845972299576, + -0.05572623759508133, + -0.033954866230487823, + 0.07310095429420471, + -0.006465859245508909, + 0.037636399269104004, + 0.022844048216938972, + 0.06033477559685707, + -0.010097731836140156, + -0.04383408650755882, + 0.005187916569411755, + -0.051382556557655334, + 0.04364868625998497, + 0.016460958868265152, + 0.01362697221338749, + -0.030405759811401367, + 0.008515202440321445, + -0.05360736697912216, + -0.008535066619515419, + 0.061394210904836655, + 0.08618497103452682, + 0.06986968219280243, + 0.06282444298267365, + 0.014395061880350113, + 0.0647314265370369, + -0.05159444361925125, + 0.07151180505752563, + -0.10721473395824432, + -0.06398982554674149, + -0.018950628116726875, + -0.044840551912784576, + 0.06409576535224915, + -0.11018115282058716, + -0.024022668600082397, + -0.02513507567346096, + -0.06483737379312515, + -0.02357240952551365, + -0.0672740712761879, + -0.026432882994413376, + -0.02697584219276905, + 0.02289701998233795, + -0.004734346177428961, + 0.060069914907217026, + 0.011945120058953762, + 0.010283133015036583, + 0.03440512344241142, + -0.03917257860302925, + -0.050985269248485565, + 0.07474307715892792, + -0.028896067291498184, + -0.07135289162397385, + 0.0024847041349858046, + -0.015348552726209164, + 0.03872231766581535, + 0.03435215353965759, + -0.020950309932231903, + 0.00504555506631732, + -0.02392996847629547, + -0.0424303375184536, + 0.0026800374034792185, + 0.015547196380794048, + 0.005482571665197611, + 0.05689161270856857, + 0.057368360459804535, + 0.018023623153567314, + 0.038272060453891754, + -0.027863118797540665, + 0.05615001171827316, + 0.04031147062778473, + 0.021837586537003517, + 0.005177984479814768, + -0.05562029406428337, + -0.05450788885354996, + 0.042880598455667496, + 0.014156688936054707, + 0.060758549720048904, + -0.010647313669323921, + -0.04282762482762337, + -0.0009857703698799014, + -0.03387540578842163, + 0.047356706112623215, + -0.0667443498969078, + 0.006220865063369274, + -0.07177666574716568, + -0.08242397755384445, + -0.018910899758338928, + 0.017454177141189575, + 0.028207434341311455, + -0.031783025711774826, + -0.016527172178030014, + -0.044655147939920425, + -0.05837482213973999, + -0.09444855153560638, + -0.0069326721131801605, + -0.021956773474812508, + 0.04060281440615654, + 0.024009427055716515, + 0.10785039514303207, + 0.00543291075155139, + -0.11473672091960907, + 0.0012646995019167662, + -0.029028495773673058, + -0.0057573625817894936, + 0.04913125932216644, + 0.008157642558217049, + 0.04515838250517845, + -0.008985325694084167, + -0.020274920389056206, + -0.035517528653144836, + 0.027306916192173958, + 0.03141222149133682, + 0.043913546949625015, + -0.0325511135160923, + 0.02460535801947117, + 0.014938022010028362, + -0.04825722426176071, + 0.07320690155029297, + -0.0048800185322761536 + ] + }, + { + "id": "b4c2c434-3671-4930-8193-36e18e19d1f8", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "hollandstacey", + "reviewDate": "2021-06-08T04:34:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c263c48a-200a-4f3d-8f1f-b7b25dc4a4a5", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "dthomas", + "reviewDate": "2022-06-21T04:33:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d01185b8-4294-49e3-ba66-76f23dc14162", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "hmartin", + "reviewDate": "2022-09-16T00:53:25", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c22b03fc-44aa-4dc7-9bef-807b28761485", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "sharonmcpherson", + "reviewDate": "2021-11-26T08:45:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "35a242bd-629d-435d-8452-4b2daedf7711", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "ureyes", + "reviewDate": "2022-03-22T18:51:16", + "stars": 5, + "verifiedUser": false + }, + { + "id": "60506986-89b9-4f1f-a643-eeea47fdf96f", + "productId": "2e7d0b2b-2ae2-485a-949f-0bb8246a51b5", + "category": "Accessory", + "docType": "customerRating", + "userName": "parkskenneth", + "reviewDate": "2022-01-22T19:20:58", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Pro (Silver)", + "description": "This Awesome Keyboard Pro (Silver) is an amazing device that takes up an amazing amount of space. It is as powerful as a standard keyboard, which is true of other keyboards, but there are still some minor", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-06-05T05:13:50", + "price": 1060.59, + "stock": 13, + "priceHistory": [ + { + "priceDate": "2021-01-16T18:06:43", + "newPrice": 1067.31 + }, + { + "priceDate": "2022-11-18T18:06:43", + "newPrice": 994.72 + }, + { + "priceDate": "2025-07-06T18:06:43", + "newPrice": 1060.59 + } + ], + "descriptionVector": [ + 0.02697191946208477, + 0.038538675755262375, + -0.018973084166646004, + 0.02751290425658226, + 0.014014063403010368, + -0.08434199541807175, + -0.007760545238852501, + -0.00028558645863085985, + 0.006069970317184925, + 0.0896487906575203, + 0.042789265513420105, + -0.058168668299913406, + 0.05440754070878029, + -0.023494165390729904, + 0.0014877062058076262, + -0.022373555228114128, + -0.000542996684089303, + -0.029651079326868057, + -0.03214991092681885, + 0.022476600483059883, + 0.014220152981579304, + -0.0509813092648983, + -0.04953868314623833, + -0.0036677431780844927, + -0.04848247766494751, + -0.006665696389973164, + -0.049332596361637115, + 0.010645793750882149, + 0.01908900961279869, + 0.03735366091132164, + 0.016345446929335594, + 0.0013089881977066398, + -0.056004732847213745, + 0.011463710106909275, + 0.006462827790528536, + 0.0070907557383179665, + -0.0159847903996706, + -0.023481285199522972, + -0.02697191946208477, + 0.0056481314823031425, + 0.016667461022734642, + 0.01733725145459175, + -0.06378459930419922, + 0.02036418579518795, + 0.02655974216759205, + 0.026340771466493607, + -0.025606580078601837, + -0.0027628829702734947, + 0.000447197409812361, + 0.05103283002972603, + 0.030449675396084785, + -0.006121492478996515, + -0.054252974689006805, + 0.005751175805926323, + 0.04289230704307556, + 0.004988002125173807, + -0.007077875081449747, + -0.02318503148853779, + 0.027564426884055138, + -0.04809606075286865, + -0.016744745895266533, + -0.008977759629487991, + -0.026868876069784164, + -0.062445018440485, + -0.04551994428038597, + -0.011985373683273792, + -0.07676821947097778, + 0.0031863318290561438, + 0.04199066758155823, + 0.02636653371155262, + -0.025580817833542824, + -0.04536537826061249, + -0.017453176900744438, + 0.040007058531045914, + 0.008282208815217018, + -0.002693649847060442, + 0.06507265567779541, + 0.020055051892995834, + 0.06790637969970703, + 0.0017646384658291936, + 0.016074955463409424, + 0.044747110456228256, + -0.05172838270664215, + -0.08140522241592407, + 0.042583175003528595, + 0.017118282616138458, + 0.012056216597557068, + -0.06837008148431778, + -0.014889942482113838, + 0.07393448799848557, + -0.12664179503917694, + -0.010735957883298397, + -0.021497676149010658, + -0.09243099391460419, + -0.027693232521414757, + 0.00829508900642395, + -0.12890878319740295, + 0.05062065273523331, + 0.02354568801820278, + -0.0687822625041008, + 0.047709643840789795, + -0.0038545115385204554, + -0.04186186194419861, + -0.05286187306046486, + -0.10185956954956055, + 0.024151073768734932, + 0.031737733632326126, + -0.03377286344766617, + 0.01112881489098072, + -0.05785953626036644, + 0.03284545987844467, + 0.0030430355109274387, + -0.031918060034513474, + -0.023107748478651047, + -0.012043335475027561, + -0.04093446210026741, + -0.03222719579935074, + 0.01781383343040943, + -0.05677756667137146, + -0.04085717722773552, + 0.06290871649980545, + 0.06507265567779541, + 0.0021687664557248354, + 0.05682908743619919, + -0.02738409861922264, + 0.0434332937002182, + -0.029857167974114418, + 0.01651289500296116, + 0.007670381106436253, + -0.006878226064145565, + -0.07537711411714554, + 0.09516167640686035, + 0.08274479955434799, + 0.04235132411122322, + -0.0657939687371254, + 0.0353185310959816, + 0.03786888346076012, + 0.13766756653785706, + -0.021678004413843155, + 0.04698833078145981, + 0.0260960403829813, + -0.00863642431795597, + -0.01799415983259678, + -0.018908681347966194, + -0.04253165423870087, + 0.0956253781914711, + -0.10155043751001358, + 0.08222957700490952, + 0.043381769210100174, + 0.07187359780073166, + 0.028826722875237465, + -0.1170586496591568, + -0.08702114969491959, + -0.035163965076208115, + 0.029161617159843445, + -0.011811485514044762, + 0.013421556912362576, + 0.03454569727182388, + 0.056468430906534195, + 0.06466047465801239, + -0.06455743312835693, + -0.07104924321174622, + 0.0011415408225730062, + 0.008114760741591454, + -0.05935367941856384, + 0.022283392027020454, + 0.09052466601133347, + 0.08119913190603256, + -0.034159280359745026, + 0.036168649792671204, + 0.03451993688941002, + 0.02529744617640972, + 0.0035904597025364637, + -0.05116163566708565, + 0.012236544862389565, + -0.06321785598993301, + 0.060796305537223816, + -0.02252812311053276, + -0.0334637276828289, + 0.004550062585622072, + 0.021265827119350433, + 0.014683853834867477, + -0.06909139454364777, + 0.016950834542512894, + 0.0883607342839241, + 0.05476819723844528, + 0.022167466580867767, + 0.011978932656347752, + 0.03387590870261192, + 0.020312663167715073, + 0.027822038158774376, + -0.010117690078914165, + -0.05165109783411026, + 0.009396377950906754, + 0.007155158556997776, + 0.05018271133303642, + -0.017646385356783867, + 0.019720157608389854, + 0.046086691319942474, + 0.038744762539863586, + -0.009634668938815594, + 0.06708202511072159, + 0.0667213723063469, + -0.0494871623814106, + -0.016268163919448853, + 0.03356677293777466, + -0.009183848276734352, + -0.00194335647393018, + 0.07300709187984467, + -0.02900705114006996, + -0.0014852910535410047, + -0.011856567114591599, + -0.0030124441254884005, + -0.052423931658267975, + 0.07104924321174622, + 0.013537482358515263, + 0.002410277258604765, + 0.0026630584616214037, + -0.03562766686081886, + -0.09073075652122498, + 0.06306328624486923, + -0.03366981819272041, + 0.0808899998664856, + 0.010014645755290985, + -0.0186897125095129, + -0.0398009717464447, + 0.027744755148887634, + -0.007805627305060625, + 0.01446488406509161, + 0.06733963638544083, + -0.05301643908023834, + -0.028337260708212852, + -0.008269327692687511, + 0.059302158653736115, + -0.03959488123655319, + -0.006768741179257631, + -0.022141704335808754, + -0.02616044320166111, + -0.09753169864416122, + 0.044257648289203644, + -0.010027525946497917, + 0.04593212530016899, + -0.05165109783411026, + -0.03606560453772545, + 0.058426279574632645, + -0.09243099391460419, + 0.02143327333033085, + 0.025516415014863014, + -0.09129749983549118, + 0.008984199725091457, + -0.07743800431489944, + -0.0013894918374717236, + -0.01008548866957426, + 0.03946607559919357, + 0.006433846428990364, + 0.07357383519411087, + 0.08748485147953033, + 0.004092802293598652, + -0.017826713621616364, + -0.03688996285200119, + -0.020106574520468712, + -0.039208464324474335, + -0.0171955656260252, + 0.006607734132558107, + -0.04106326773762703, + 0.023635851219296455, + 0.060178037732839584, + -0.014683853834867477, + -0.07187359780073166, + 0.03688996285200119, + -0.006987710949033499, + -0.0862998366355896, + 0.01908900961279869, + -0.008733028545975685, + -0.04853399842977524, + 0.049873579293489456, + -0.0570351779460907, + 0.05348014086484909, + 0.04961596801877022, + 0.049925100058317184, + 0.03356677293777466, + 0.039749447256326675, + 0.05641691014170647, + 0.09196729212999344, + 0.037791602313518524, + -0.009422139264643192, + 0.052707307040691376, + 0.009428579360246658, + 0.017903996631503105, + 0.0009080804302357137, + -0.03485482931137085, + -0.06666984409093857, + 0.003342508804053068, + 0.08763942122459412, + 0.032613612711429596, + -0.05548951029777527, + 0.07094619423151016, + 0.012281626462936401, + 0.014168630354106426, + 0.01738877408206463, + 0.014619450084865093, + -0.018496502190828323, + -0.05018271133303642, + -0.07929281145334244, + -0.022141704335808754, + 0.07007031887769699, + -0.07949889451265335, + 0.06259958446025848, + -0.06326937675476074, + 0.0015480838483199477, + 0.08604222536087036, + 0.0025374728720635176, + -0.017028117552399635, + -0.01631968654692173, + 0.04680800437927246, + -0.05899302661418915, + 0.045133527368307114, + 0.06795790046453476, + -0.024988312274217606, + -0.025915713980793953, + 0.03114522621035576, + -0.024653416126966476, + -0.039620641618967056, + 0.02205154113471508, + 0.012081977911293507, + 0.002770933322608471, + 0.01827753335237503, + 0.03629745543003082, + 0.02238643541932106, + -0.05770496651530266, + 0.010040407069027424, + 0.035704948008060455, + -0.04497896134853363, + -0.037250615656375885, + 0.03312883526086807, + -0.07656212896108627, + -0.021600721403956413, + 0.06527874618768692, + -0.002635687356814742, + -0.010665114969015121, + 0.037456706166267395, + -0.03189229965209961, + 0.0001210572590935044, + 0.01469673402607441, + -0.0236744936555624, + -0.07032793015241623, + -0.07532559335231781, + -0.04240284860134125, + 0.006327581591904163, + -0.0519087091088295, + 0.0014273285632953048, + -0.015946149826049805, + 0.03181501477956772, + -0.013679169118404388, + 0.017685027793049812, + -0.0028433864936232567, + -0.021459035575389862, + 0.0022218988742679358, + -0.016950834542512894, + 0.012088418006896973, + -0.06141457334160805, + -0.02158784121274948, + 0.03701876848936081, + -0.0055322060361504555, + -0.0054517025128006935, + 0.002215458545833826, + 0.005899302661418915, + 0.006105391774326563, + -0.019333740696310997, + -0.0032684453763067722, + 0.025593698024749756, + -0.0365293063223362, + -0.026070280000567436, + 0.041836101561784744, + -0.006366223096847534, + 0.07934433221817017, + 0.010285137221217155, + -0.04330448806285858, + 0.048714328557252884, + 0.06605158001184464, + -6.86293060425669e-05, + 0.06270263344049454, + 0.009460780769586563, + -0.001210773829370737, + 0.012346029281616211, + -0.00808900035917759, + -0.0016648140735924244, + 0.002770933322608471, + -0.03315459564328194, + 0.05657147616147995, + -0.049384117126464844, + 0.027615949511528015, + -0.012391111813485622, + -0.000993414199911058, + 0.012069096788764, + 0.0030011734925210476, + -0.03694148361682892, + 0.012571439146995544, + -0.006749420426785946, + 0.04693681001663208, + 0.005149009171873331, + 0.02880096063017845, + -0.005667452234774828, + -0.056004732847213745, + -0.003329628147184849, + -0.09696495532989502, + -0.023764656856656075, + 0.08908204734325409, + -0.03655506670475006, + -0.10222022980451584, + -0.022334914654493332, + 0.013408676721155643, + -0.04626701772212982, + -0.04915226623415947, + 0.10953639447689056, + 0.03155740350484848, + 0.10299306362867355, + 0.07712887227535248, + 0.08434199541807175, + -0.06898835301399231, + 0.02326231449842453, + 0.02851758897304535, + 0.08913356810808182, + 0.03297426551580429, + -0.0600234717130661, + 0.056468430906534195, + 0.0446440652012825, + -0.027564426884055138, + 0.00825644750148058, + -0.0706370621919632, + 0.07666517049074173, + 0.01794263906776905, + -0.016809148713946342, + 0.010497666895389557, + -0.03701876848936081, + -0.03359253332018852, + -0.0010062947403639555, + 0.026057399809360504, + 0.017504699528217316, + 0.06254806369543076, + -0.07841692864894867, + -0.05590168759226799, + -0.014310317113995552, + -0.0312225092202425, + -0.06986422836780548, + 0.012217223644256592, + -0.03789464756846428, + 0.05010543018579483, + 0.051960233598947525, + -0.06491808593273163, + -0.06162066012620926, + -0.035498861223459244, + -0.02980564534664154, + 0.016100715845823288, + 0.09845910221338272, + -0.02743562124669552, + 0.011682679876685143, + 0.03619441017508507, + -0.08140522241592407, + -0.006949068978428841, + -0.002094703260809183, + 0.006005567032843828, + 0.005293915513902903, + -0.016693223267793655, + 0.05123892053961754, + 0.010703756473958492, + 0.01294497586786747, + -0.029573796316981316, + -0.010446145199239254, + 0.031789254397153854, + 0.006710778456181288, + -0.09825301170349121, + -0.0868665874004364, + 0.02238643541932106, + -0.04778692498803139, + -0.06141457334160805, + 0.024666298180818558, + -0.00517477048560977, + -0.0010932385921478271, + 0.02163936197757721, + -0.05961129069328308, + -0.021832572296261787, + -0.04047076031565666, + -0.013357154093682766, + -0.003080066991969943, + -0.022412197664380074, + -0.020930930972099304, + -0.0053679789416491985, + 0.05548951029777527, + 0.009911601431667805, + 0.01679626666009426, + 0.024176836013793945, + 0.014142869040369987, + -0.021330229938030243, + -0.005966925527900457, + 0.003967216704040766, + -0.013730690814554691, + 0.017118282616138458, + -0.056880611926317215, + 0.09145206958055496, + -0.007361247669905424, + 0.002289521973580122, + -0.02426699921488762, + 0.04485015571117401, + 0.015997672453522682, + -0.003584019374102354, + -0.03088761493563652, + -0.021021096035838127, + -0.045571468770504, + -0.04693681001663208, + -0.02232203260064125, + -0.0576019212603569 + ] + }, + { + "id": "6bbf295e-13b1-4930-ac29-05770635fed7", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer36", + "reviewDate": "2021-01-16T18:06:43", + "stars": 5, + "verifiedUser": true + }, + { + "id": "ef7fd54a-8fb0-4320-af62-7d5e83fa334f", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinezrobert", + "reviewDate": "2022-10-15T15:08:22", + "stars": 5, + "verifiedUser": false + }, + { + "id": "cfb643f8-db20-43d0-8342-e5ec0a311dfc", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholseugene", + "reviewDate": "2022-11-18T23:48:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "53792fb4-5b98-4108-8eaa-d2da3d780a41", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "seanmaxwell", + "reviewDate": "2022-08-22T02:05:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "281ea38f-a6d4-4339-bc48-82a7372db3f9", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "glennlauren", + "reviewDate": "2022-04-19T20:11:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "26c51c7f-755a-429a-9bd1-1d83ec398662", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dayronald", + "reviewDate": "2022-10-10T03:47:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "265db27f-6bec-49ea-92e6-2118871fcb4b", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harrisalyssa", + "reviewDate": "2022-03-29T19:19:56", + "stars": 5, + "verifiedUser": false + }, + { + "id": "dbf60234-507f-440e-8b50-59b8d6f398b7", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholasnelson", + "reviewDate": "2022-06-07T06:07:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0f230838-ccdc-495e-a480-fb9a610f172c", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sheena04", + "reviewDate": "2021-10-10T02:45:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2da177e9-0208-4886-9269-8c77aed3d77a", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "spenceantonio", + "reviewDate": "2021-05-12T04:03:18", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7986ae92-48ac-4288-953d-0900e4e65954", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scott83", + "reviewDate": "2022-02-24T18:46:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "02870ddd-dcc5-43e5-a4da-88d89c0f7d25", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "darrell05", + "reviewDate": "2022-07-09T06:50:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e8af4e0f-c4bd-4f64-803b-5dff48f60cad", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tfrye", + "reviewDate": "2021-09-02T05:18:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d2e3e517-f235-4dd1-a918-22c81437d421", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "levycrystal", + "reviewDate": "2021-09-05T06:30:15", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1f4f2881-0312-4ed4-9e35-29aa87568cf8", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sarahconway", + "reviewDate": "2022-10-13T00:44:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "30a36058-457d-4934-abf0-f8923f0c3083", + "productId": "1ba0d27c-70e9-4f28-bea3-d8122a546f23", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patriciagonzalez", + "reviewDate": "2021-04-28T03:18:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Red)", + "description": "This Premium Computer Super (Red) is very similar to that offered for a high price from $25.99 at this site in Europe. A lot of money", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-12-05T06:40:10", + "price": 1082.96, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-01-05T18:12:08", + "newPrice": 976.09 + }, + { + "priceDate": "2021-12-09T18:12:08", + "newPrice": 1187.88 + }, + { + "priceDate": "2022-11-12T18:12:08", + "newPrice": 1021.19 + }, + { + "priceDate": "2024-02-15T18:12:08", + "newPrice": 1082.96 + } + ], + "descriptionVector": [ + -0.06810113042593002, + 0.008983258157968521, + -0.017565106973052025, + 0.05074364319443703, + -0.03634828329086304, + -0.04357364773750305, + 0.03333079442381859, + 0.053567349910736084, + -0.003969105426222086, + 0.06439155340194702, + 0.02329556830227375, + -0.09882968664169312, + 0.060128312557935715, + -0.10359122604131699, + 0.07950668036937714, + -0.03324774652719498, + 0.005394799634814262, + -0.016513139009475708, + -0.03895052149891853, + -0.00646407064050436, + -0.009931414388120174, + 0.04074994474649429, + 0.012374472804367542, + -0.021648406982421875, + -0.07275193929672241, + 0.015322753228247166, + -0.048971910029649734, + 0.01594563014805317, + 0.03510253131389618, + 0.05747070908546448, + 0.0437120646238327, + 0.0256624985486269, + -0.0026593352667987347, + 0.003958723973482847, + 0.030977707356214523, + -0.01709449104964733, + -0.01133634615689516, + -0.02231280878186226, + 0.1302226483821869, + 0.02214670740067959, + 0.013447204604744911, + 0.006990054622292519, + 0.001880739931948483, + -0.03493643179535866, + 0.04144202917814255, + -0.04149739444255829, + 0.011523209512233734, + 0.04354596510529518, + -0.02467973716557026, + -0.01991819590330124, + 0.03349689766764641, + 0.03806465491652489, + -0.017205223441123962, + -0.016097888350486755, + -0.029205970466136932, + -0.00674782507121563, + 0.049027275294065475, + 0.11693461984395981, + 0.003664588090032339, + -0.019364528357982635, + 0.016831498593091965, + 0.022824950516223907, + -0.0007275539683178067, + -0.03518558293581009, + -0.01768968254327774, + 0.03989175707101822, + -0.06118028238415718, + -0.04933179169893265, + 0.04194032773375511, + 0.03261102735996246, + -0.07241973280906677, + 0.012886615470051765, + 0.08122304826974869, + 0.025759389623999596, + 0.005356735084205866, + 0.07817787677049637, + 0.0579136423766613, + -0.04329681396484375, + 0.048916541039943695, + 0.015378120355308056, + 0.021952925249934196, + 0.02862462028861046, + 0.010249773040413857, + -0.02296336740255356, + 0.0673813596367836, + -0.02016734518110752, + -0.05088206008076668, + -0.0865936279296875, + -0.031476009637117386, + 0.001437805825844407, + -0.047421637922525406, + 0.07784567773342133, + 0.03648670017719269, + -0.03399519622325897, + 0.025967014953494072, + 0.042715463787317276, + -0.06610792130231857, + 0.041192878037691116, + -0.0728626698255539, + 0.04534538462758064, + 0.028458520770072937, + -0.0771259143948555, + 0.0009334491332992911, + -0.006443307735025883, + 0.06566499173641205, + -0.015322753228247166, + 0.006342955399304628, + -0.019475260749459267, + 0.007336096838116646, + -0.05514530465006828, + 0.025316456332802773, + 0.02898450382053852, + 5.67184979445301e-05, + 0.00024331100576091558, + 0.02887377142906189, + 0.019364528357982635, + -0.0054224831983447075, + -0.04927642643451691, + 0.007093867287039757, + -0.00762677239254117, + 0.00847803708165884, + -0.005861956626176834, + 0.01870012655854225, + -0.0037026528734713793, + 0.08847609907388687, + -0.03836917132139206, + -0.09229640662670135, + 0.004000249318778515, + 0.06749209016561508, + -0.012499048374593258, + -0.06356105208396912, + 0.03042403981089592, + 0.036071449518203735, + 0.08642752468585968, + -0.07031580060720444, + 0.07380390167236328, + 0.019696729257702827, + 0.09229640662670135, + -0.02070717141032219, + 0.00023336228332482278, + -0.04033469036221504, + -0.036182183772325516, + -0.0017354021547362208, + 0.021288523450493813, + -0.06317348778247833, + -0.02016734518110752, + -0.006882781628519297, + 0.03200199455022812, + 0.00010748939530458301, + -0.025191880762577057, + 0.05492383614182472, + -0.05669557303190231, + 0.005609346088021994, + -0.033220063894987106, + -0.0015641112113371491, + 0.05785827338695526, + -0.07961741834878922, + 0.017869625240564346, + -0.03407824784517288, + 0.03059014119207859, + -0.047338590025901794, + 0.039061255753040314, + 0.008595691062510014, + -0.012768961489200592, + -0.0074606724083423615, + 0.022077498957514763, + 0.07790104299783707, + -0.04011322557926178, + -0.05974074453115463, + 0.04074994474649429, + -0.015073603019118309, + -0.07468977570533752, + 0.03654206916689873, + -0.028126319870352745, + 0.066827692091465, + 0.10143192112445831, + 0.07363780587911606, + 0.018063409253954887, + 0.0290952380746603, + -0.09943871945142746, + -0.014139289036393166, + 0.057083141058683395, + -0.028237052261829376, + 0.018035724759101868, + -0.021302364766597748, + 0.034548863768577576, + 0.01926763541996479, + 0.03507484868168831, + 0.008180440403521061, + -0.02225744165480137, + 0.01943373680114746, + -0.033220063894987106, + -0.04000249132514, + -0.031226858496665955, + -0.03878442198038101, + 0.0003432307275943458, + 0.008630295284092426, + 0.10458783060312271, + 0.03247261047363281, + -0.029233654960989952, + -0.017274431884288788, + 0.05796900764107704, + 0.0613463819026947, + 0.0010450477711856365, + -0.02425064519047737, + -0.05622495338320732, + 0.032887861132621765, + 0.04227253049612045, + -0.0518786646425724, + 0.019004642963409424, + -0.052293915301561356, + -0.060239046812057495, + 0.02895682118833065, + -0.017869625240564346, + 0.07540953904390335, + 0.006688998080790043, + 0.05741534009575844, + -0.045566853135824203, + -0.022105183452367783, + -0.011952301487326622, + 0.04708943888545036, + -0.03903357312083244, + 0.0003938394074793905, + -0.02168993279337883, + -0.05113121122121811, + 0.012748198583722115, + 0.08836536854505539, + -0.0029050251469016075, + -0.007834398187696934, + 0.03537936508655548, + -0.05796900764107704, + -0.11737754940986633, + -0.014561460353434086, + -0.09860821813344955, + -0.03064550645649433, + 0.021302364766597748, + -0.01943373680114746, + -0.06228761747479439, + -0.053788818418979645, + 0.06987286359071732, + -0.022991051897406578, + 0.026146957650780678, + -0.03596071898937225, + -0.044016581028699875, + -0.07142313569784164, + -0.06782429665327072, + 0.05567128583788872, + -0.13465198874473572, + -0.05669557303190231, + -0.022935684770345688, + -0.025925491005182266, + -0.0605158805847168, + -0.03690195083618164, + 0.09185346961021423, + -0.04695102199912071, + 0.015156653709709644, + 0.024319853633642197, + -0.027655702084302902, + 0.011966142803430557, + -0.02025039680302143, + 0.012146085500717163, + 0.002174875931814313, + -0.021994449198246002, + 0.04808603972196579, + -0.04949789121747017, + 0.1313299834728241, + 0.028375469148159027, + -0.0699835941195488, + -0.08515409380197525, + 0.045511484146118164, + -0.02580091543495655, + -0.00416288897395134, + 0.004972627852112055, + -0.06588646024465561, + 0.05154646188020706, + 0.032887861132621765, + 0.013682513497769833, + 0.0605158805847168, + 0.02070717141032219, + -0.0046300459653139114, + 0.00851956196129322, + 0.03479801490902901, + 0.029815005138516426, + -0.013827851042151451, + 0.009177042171359062, + -0.05630800500512123, + 0.018713967874646187, + -0.009869126603007317, + 0.028569253161549568, + -0.03344152867794037, + -0.014215418137609959, + -0.0002785640535876155, + 0.00230983248911798, + 0.03709573671221733, + 0.04476403445005417, + 0.04357364773750305, + 0.03418898209929466, + 0.03407824784517288, + -0.008173519745469093, + 0.0214407816529274, + -0.00838114507496357, + 0.01755126565694809, + -0.03510253131389618, + -0.03549009934067726, + -0.04382279887795448, + 0.05807974189519882, + 0.004045234527438879, + 0.036154501140117645, + -0.016637714579701424, + 0.010796519927680492, + 0.10946010798215866, + -0.034355081617832184, + -0.021288523450493813, + 0.012962745502591133, + 0.07147850096225739, + -0.0710909366607666, + 0.02467973716557026, + 0.06937456130981445, + 0.07994961738586426, + 0.004187112208455801, + -0.017246749252080917, + -0.03969797492027283, + -0.053622715175151825, + 0.06511132419109344, + 0.04484708234667778, + -0.03698500245809555, + -0.06743672490119934, + 0.07280730456113815, + -0.020347287878394127, + -0.05996221303939819, + -0.015682637691497803, + -0.03856295719742775, + 0.02664525806903839, + 0.015101286582648754, + 0.04681260511279106, + -0.047615423798561096, + -0.004294385202229023, + 0.06428082287311554, + -0.019641362130641937, + 0.013987029902637005, + 0.06937456130981445, + 0.02152383141219616, + -0.06832259148359299, + -0.008685662411153316, + 0.047366272658109665, + 0.018132617697119713, + 0.0697067603468895, + -0.031088441610336304, + -0.009093992412090302, + 0.02814016118645668, + 0.0017890387680381536, + -0.03513021394610405, + 0.010893411934375763, + 0.02095632255077362, + 0.07059263437986374, + -0.031226858496665955, + 0.01215300615876913, + -0.03850758820772171, + 0.04636967182159424, + -0.04318607971072197, + -0.018437134101986885, + 0.02166224829852581, + -0.0009524814668111503, + 0.06405935436487198, + -0.06533278524875641, + 0.008256569504737854, + 0.017980359494686127, + 0.050771329551935196, + 0.02239585854113102, + 0.01667924039065838, + 0.018437134101986885, + -0.04429341480135918, + -0.022977210581302643, + 0.029676588252186775, + -0.03571156784892082, + 0.09246250987052917, + 0.011384791694581509, + 0.03681890293955803, + -0.06610792130231857, + -0.007633693516254425, + -0.026852883398532867, + 0.012090718373656273, + -0.041054461151361465, + 0.0003910278028342873, + 0.16299977898597717, + -0.022022133693099022, + -0.013142687268555164, + -0.020610280334949493, + -0.023683136329054832, + 0.06810113042593002, + -0.014644511044025421, + -0.023959970101714134, + -0.010706549510359764, + -0.03036867268383503, + -0.017897307872772217, + -0.006405243184417486, + -0.017219064757227898, + 0.034382764250040054, + -0.0021125883795320988, + -0.020637962967157364, + -0.0020572214853018522, + 0.03687426820397377, + -0.0684886947274208, + -0.0955076813697815, + -0.06278591603040695, + -0.0805586501955986, + 0.02152383141219616, + -0.022686533629894257, + -0.03468728065490723, + -0.0017137745162472129, + -0.05425943434238434, + 0.003349689533933997, + -0.02675599232316017, + 0.02467973716557026, + 0.005889640189707279, + -0.057636808604002, + 0.13775251805782318, + 0.005419022869318724, + 0.025344138965010643, + 0.0018253731541335583, + 0.045539166778326035, + -0.0025174578186124563, + 0.0023825012613087893, + 0.0185617096722126, + -0.050466809421777725, + -0.05417638644576073, + 0.011890013702213764, + 0.030147206038236618, + 0.03166979178786278, + -0.03895052149891853, + 0.005297907628118992, + -0.0437120646238327, + -0.018713967874646187, + -0.017482057213783264, + -0.01525354478508234, + 0.07352706789970398, + 0.004463945981115103, + 0.05425943434238434, + -0.06245371699333191, + 0.039310406893491745, + -0.00010435338481329381, + -0.04949789121747017, + 0.0016739796847105026, + 0.029233654960989952, + -0.040943726897239685, + -0.03214041143655777, + -0.02653452381491661, + 0.04681260511279106, + 0.013827851042151451, + -0.01311500370502472, + -0.033109329640865326, + 0.037815503776073456, + -0.07607394456863403, + 0.014865977689623833, + 0.03482569754123688, + -0.011038749478757381, + 0.00975839328020811, + 0.0757417380809784, + -0.03958724066615105, + 0.07291803508996964, + 0.040722258388996124, + 0.01853402704000473, + 0.09351447224617004, + -0.04695102199912071, + -0.07120166718959808, + 0.03042403981089592, + -0.014381518587470055, + 0.026880566030740738, + 0.015558062121272087, + 0.06278591603040695, + -0.08460042625665665, + -0.028154002502560616, + -0.030091838911175728, + 0.023641610518097878, + -0.009384667500853539, + 0.01608404703438282, + 0.04971935972571373, + 0.05149109661579132, + -0.015710320323705673, + -0.007190759293735027, + 0.00794513151049614, + -0.011308662593364716, + 0.022022133693099022, + -0.01667924039065838, + 0.02234049141407013, + 0.01845097541809082, + 0.021731456741690636, + 0.07291803508996964, + -0.031503692269325256, + 0.08277332037687302, + 0.0210670568048954, + 0.0035417431499809027, + -0.00037740240804851055, + -0.03327542915940285, + -0.10115508735179901, + -0.05398260056972504, + 0.02873535454273224, + -0.02819552831351757, + 0.013447204604744911, + 0.04506855085492134, + 0.029399754479527473, + 0.006547120399773121, + 0.03670816868543625, + 0.02191139943897724, + -0.0064813727512955666, + -0.021565357223153114, + 0.0384245403110981, + 0.03028562292456627, + -0.01613941416144371, + -0.02645147405564785, + 0.0826072245836258, + -0.02479047141969204 + ] + }, + { + "id": "3d661f56-a2b8-41de-9f2c-85bc219a7547", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "coxtamara", + "reviewDate": "2021-11-04T09:29:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "063dd651-40b4-4ae3-8cf0-29bd1422d755", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "sylvia07", + "reviewDate": "2021-05-21T18:09:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "41a10f0f-8716-4aac-b8fe-a0969ac27bd8", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "wsuarez", + "reviewDate": "2022-01-02T06:06:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "285207b1-889a-4283-a0ca-81d9b67b1a8e", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "harperdaniel", + "reviewDate": "2021-03-29T10:15:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a861a10-3a0f-49dc-95a2-5424665c0c4b", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "randalljustin", + "reviewDate": "2021-01-05T18:12:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "75503644-0f5b-4489-9200-4b1c9cf77712", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebecca36", + "reviewDate": "2021-08-14T05:02:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b2fab220-e478-4945-8da9-009aa740d271", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "nancy00", + "reviewDate": "2022-03-22T12:38:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "df312c2d-a33e-4564-84bb-5f6e2f18581c", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "james08", + "reviewDate": "2022-03-27T16:37:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eef4209c-3ba2-46eb-847f-f3abfca078ee", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "jose57", + "reviewDate": "2021-07-17T08:15:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "59671be0-c8e3-4e75-813b-7ccab35ef0f9", + "productId": "78a8df54-d2bc-4d74-83e6-4de466b5b541", + "category": "Electronics", + "docType": "customerRating", + "userName": "wmoore", + "reviewDate": "2022-11-14T11:38:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Micro (Black)", + "description": "This Premium Phone Micro (Black) is a beautiful, bright, and affordable smartphone. It's a good phone that can replace or improve your phone as well in terms of features and display.\n\nThe Plus 5 Premium Phone has a premium build quality. The 4 channels of music, podcasts, and video playback capabilities make a really attractive and easy to use phone.\n\nIn this case", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-01-13T06:11:59", + "price": 137.37, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-01-10T22:31:11", + "newPrice": 148.96 + }, + { + "priceDate": "2021-02-25T22:31:11", + "newPrice": 137.37 + } + ], + "descriptionVector": [ + -0.0411338247358799, + 0.07954850047826767, + -0.0439596101641655, + 0.024885565042495728, + -0.02249964326620102, + 0.04326649382710457, + -0.0516105554997921, + -0.009403730742633343, + 0.023765914142131805, + 0.05297012999653816, + 0.009663649834692478, + -0.0027857969980686903, + 0.04683871194720268, + -0.02349933050572872, + 0.0031073633581399918, + -0.0007701762369833887, + -0.0015295224729925394, + -0.06504636257886887, + 0.00019275232625659555, + 0.06232720986008644, + 0.028737695887684822, + -0.10375427454710007, + -0.06701907515525818, + -0.008290745317935944, + -0.005914820358157158, + -0.0286310613155365, + 0.018034370616078377, + 0.0027857969980686903, + 0.01483536884188652, + -0.012282832525670528, + -0.0036288672126829624, + 0.022966163232922554, + -0.059128206223249435, + 0.04643883556127548, + -0.013209209777414799, + 0.005238364450633526, + 0.04374634474515915, + -0.06637927889823914, + 0.09501034021377563, + 0.06515299528837204, + 0.026631686836481094, + 0.008977197110652924, + 0.0071844239719212055, + -0.02363262139260769, + 0.03369614854454994, + -0.02592523954808712, + 0.00947704166173935, + 0.014955331571400166, + -0.007057796698063612, + -0.024019168689846992, + -0.006601272616535425, + 0.03814809024333954, + -0.045559111982584, + -0.028737695887684822, + 0.03273644670844078, + 0.023579305037856102, + 0.06925837695598602, + 0.08567991852760315, + 0.012022913433611393, + -0.061953991651535034, + 0.020020416006445885, + 0.020900141447782516, + -0.029457470402121544, + 0.009803606197237968, + -0.0020177033729851246, + 0.03241654485464096, + -0.05939479172229767, + -0.03294971212744713, + 0.007351038511842489, + 0.09511697292327881, + 0.0014187237247824669, + -0.008663961663842201, + 0.024805588647723198, + 0.029297519475221634, + -0.007944186218082905, + 0.060461126267910004, + 0.02229970507323742, + 0.051343970000743866, + 0.043879635632038116, + 0.014115593396127224, + -0.005531606264412403, + 0.03766823932528496, + -0.006944498512893915, + 0.04443946108222008, + 0.05518277361989021, + -0.0027974599506706, + 0.07357703149318695, + -0.10919257998466492, + -0.028337819501757622, + 0.04670541733503342, + -0.024539005011320114, + 0.06781882792711258, + 0.02713819406926632, + 0.04185359925031662, + 0.08360056579113007, + 0.021499954164028168, + 0.0346825048327446, + 0.07181757688522339, + -0.04289327561855316, + 0.016834745183587074, + 0.07714924961328506, + -0.06627264618873596, + 0.03393607214093208, + 0.04857150465250015, + 0.039001159369945526, + 0.02176653780043125, + 0.02064688690006733, + -0.048118311911821365, + 0.0334562212228775, + -0.08482684940099716, + -0.02181985415518284, + -0.0350823812186718, + -0.07277727872133255, + 0.017034681513905525, + 0.0185408778488636, + 0.037108413875103, + 0.015795068815350533, + -0.037801533937454224, + 0.05907488986849785, + -0.058808308094739914, + -0.04377300292253494, + 0.01352910976856947, + -0.06067439168691635, + 0.0028091231361031532, + 0.0003834219533018768, + -0.03580215573310852, + -0.02935083769261837, + 0.025698643177747726, + 0.006024785805493593, + -0.054649606347084045, + -0.06259379535913467, + 0.05030429735779762, + 0.06755224615335464, + 0.027671361342072487, + -0.003372280625626445, + -0.023739255964756012, + 0.01664813607931137, + 0.0822676494717598, + -0.01100989617407322, + 0.014488809742033482, + 0.06632596254348755, + 0.0016169951995834708, + 0.0637134462594986, + -0.026431748643517494, + 0.014182238839566708, + -0.03673519939184189, + 0.02632511407136917, + 0.03886786475777626, + 0.0008014164632186294, + -0.0006797877722419798, + -0.014888685196638107, + -0.10705991089344025, + 0.008637303486466408, + -0.0983692929148674, + 0.04443946108222008, + -0.03412267938256264, + -0.04934459552168846, + -0.06163409352302551, + -0.11239157617092133, + 0.05822182446718216, + -0.02672499045729637, + -0.039614301174879074, + 0.010476728901267052, + -0.00863063894212246, + 0.04321317747235298, + -0.013928985223174095, + 0.04731856286525726, + 0.006174738984555006, + -0.042999908328056335, + 0.0487847700715065, + 0.009523693472146988, + -0.003220661310479045, + -0.04427950829267502, + -0.07091119885444641, + 0.005308342631906271, + 0.005528273992240429, + 0.015635119751095772, + 0.029644079506397247, + 0.017834432423114777, + 0.010796629823744297, + 0.04942457005381584, + 0.00555493263527751, + -0.0866929367184639, + -0.054169755429029465, + 0.03337624669075012, + 0.045745719224214554, + 0.054089780896902084, + 0.01459544338285923, + 0.028151212260127068, + 0.003808810841292143, + -0.012702700681984425, + 0.014822039753198624, + -0.008437366224825382, + -0.009750289842486382, + 0.05720880627632141, + -0.0439596101641655, + 0.09367742389440536, + 0.022779555991292, + 0.002380923368036747, + 0.06184735894203186, + -0.035828813910484314, + 0.02112673781812191, + 0.08642635494470596, + -0.014182238839566708, + 0.007331044878810644, + -0.00046777064562775195, + 0.02967073768377304, + 0.12422788143157959, + -0.023739255964756012, + 0.05987464264035225, + 0.011796317063272, + -0.03873457387089729, + -0.02060689963400364, + 0.03169677034020424, + 0.07666939496994019, + 0.000684786238707602, + 0.025165477767586708, + -0.04966449365019798, + -0.010410083457827568, + -0.11239157617092133, + 0.0077309198677539825, + 0.01919400878250599, + 0.01999375782907009, + -0.01076330617070198, + 0.0013729047495871782, + -0.06051444262266159, + 0.0019427267834544182, + 0.057635340839624405, + 0.08557328581809998, + -0.004918464459478855, + -0.05491618812084198, + -0.03916110843420029, + -0.04060065746307373, + 0.011882957071065903, + 0.01558180246502161, + 0.07949518412351608, + 0.009003856219351292, + -0.0290309377014637, + -0.04177362471818924, + 0.0927177220582962, + -0.018074357882142067, + 0.02023368328809738, + -0.04494597017765045, + -0.010096848011016846, + 0.044972628355026245, + -0.07085788249969482, + 0.04774509370326996, + -0.005591587629169226, + -0.09079831838607788, + -0.016394881531596184, + -0.0023342713247984648, + -0.022766226902604103, + -0.042146842926740646, + 0.048518188297748566, + -0.045425817370414734, + 0.024405714124441147, + 0.04265335202217102, + -0.07064460963010788, + 0.04670541733503342, + -0.0439329519867897, + 0.018474232405424118, + -0.07965513318777084, + -0.024725614115595818, + 0.015475168824195862, + -0.08717278391122818, + 0.030790386721491814, + 0.03884120658040047, + -0.050784144550561905, + -0.07171094417572021, + 0.06696575880050659, + 0.01712798699736595, + -0.01596834883093834, + 0.051503922790288925, + -0.006154745351523161, + 0.01782110333442688, + 0.02777799405157566, + -0.04470604285597801, + 0.04963783547282219, + -0.004055400844663382, + 0.013502451591193676, + 0.1403295248746872, + 0.01090992707759142, + 0.08898555487394333, + 0.0023442681413143873, + 0.04782506823539734, + -0.04931793734431267, + 0.012082894332706928, + -0.01388899702578783, + -0.009177135303616524, + -0.04188025742769241, + -0.016914719715714455, + -0.040867242962121964, + 0.04483933374285698, + -0.03721505030989647, + 0.02185984142124653, + -0.0034755815286189318, + -0.0074243489652872086, + -0.03886786475777626, + 0.04358639195561409, + 0.06595274060964584, + -0.002647506771609187, + 0.04403958469629288, + -0.039774250239133835, + -0.014862027019262314, + 0.011816310696303844, + 0.1213487833738327, + 0.0030573788098990917, + 0.03524233028292656, + -0.05113070458173752, + 0.002089347690343857, + 0.09644988924264908, + -0.03526898846030235, + -0.10082186013460159, + -0.004541915375739336, + -0.001182131003588438, + -0.04691868647933006, + -0.06403334438800812, + 0.014155580662190914, + 0.007111113518476486, + -0.04132043197751045, + 0.04081392660737038, + -0.014155580662190914, + -0.06707239151000977, + 0.05720880627632141, + 0.024499017745256424, + -0.018780803307890892, + -0.05211706459522247, + -0.0003519734600558877, + -0.020993446931242943, + 0.00798417441546917, + -0.0540364645421505, + -0.06232720986008644, + 0.039001159369945526, + -0.0516105554997921, + 0.06776551157236099, + 0.008177447132766247, + -0.014902014285326004, + 0.02636510320007801, + 0.026391761377453804, + -0.02572530135512352, + 0.010716654360294342, + 0.010230139829218388, + -0.02544539049267769, + -0.01356909703463316, + -0.002144330646842718, + -0.0794418677687645, + -0.060461126267910004, + -0.01274268887937069, + 0.04822494462132454, + 0.015141939744353294, + 0.001488701906055212, + -0.020966786891222, + 0.0717642605304718, + 0.016394881531596184, + 0.04649215191602707, + 0.03721505030989647, + 0.044812675565481186, + -0.07645612955093384, + 0.010490058921277523, + 0.03430929034948349, + -0.008297409862279892, + -0.011383113451302052, + 0.0681387260556221, + 0.06350017338991165, + -0.059608057141304016, + 0.00781089486554265, + -0.028817670419812202, + 0.08818580210208893, + -0.059927958995103836, + -0.030150586739182472, + 0.06616601347923279, + -0.01026346255093813, + -0.020127050578594208, + 0.05057087913155556, + -0.08999857306480408, + 0.047078635543584824, + 0.0067612226121127605, + -0.01778111606836319, + -0.028044577687978745, + 0.04923796281218529, + -0.058968257158994675, + 0.052277013659477234, + 0.013982301577925682, + 0.05046424642205238, + 0.1136711835861206, + -0.007357703056186438, + 0.006667918525636196, + 0.06413997709751129, + -0.0778423622250557, + 0.0512106791138649, + -0.10743312537670135, + 0.011516404338181019, + -0.01742122881114483, + 0.10668669641017914, + 0.05451631546020508, + -0.04979778826236725, + -0.08717278391122818, + 0.0019727174658328295, + 0.06931169331073761, + -0.04462606832385063, + 0.06648591160774231, + 0.0013687394093722105, + -0.01758117787539959, + 0.004911799915134907, + -0.012875980697572231, + -0.040334075689315796, + 0.049771130084991455, + -0.005578258540481329, + -0.005354994907975197, + -0.014048947021365166, + 0.0020393633749336004, + -0.027671361342072487, + -0.04084058478474617, + 0.025831935927271843, + 0.08162785321474075, + -0.015701765194535255, + 0.031270239502191544, + -0.0014753727009519935, + 0.06307364255189896, + 0.01806102879345417, + 0.0435330756008625, + 0.01431553065776825, + -0.027164852246642113, + -0.023272734135389328, + -0.04022744297981262, + 0.005534938536584377, + -0.03153682127594948, + 0.05854172259569168, + -0.031270239502191544, + -0.021993134170770645, + 0.02084682509303093, + -0.04358639195561409, + 0.025751961395144463, + -0.023446014150977135, + -0.0588616244494915, + 0.030230563133955002, + -0.014208897948265076, + 0.04934459552168846, + -0.05662232264876366, + 0.023605963215231895, + -0.019180677831172943, + -0.03204333037137985, + 0.023525988683104515, + 0.09804938733577728, + -0.1431019902229309, + 0.028231186792254448, + -0.02164657600224018, + 0.008710614405572414, + 0.022566288709640503, + -0.011416436173021793, + -0.0407339483499527, + 0.017474545165896416, + -0.0034789140336215496, + -0.06477977335453033, + 0.033242955803871155, + -0.021313346922397614, + -0.007957515306770802, + 0.0459589846432209, + -0.04558577015995979, + -0.026658345013856888, + -0.05435636267066002, + 0.04713195189833641, + 0.05662232264876366, + 0.029857344925403595, + -0.04899803549051285, + -0.03841467574238777, + -0.04177362471818924, + 0.023232746869325638, + 0.004795169457793236, + 0.047078635543584824, + -0.030577121302485466, + -0.028337819501757622, + 0.0005339999333955348, + -0.010996567085385323, + -0.0033439560793340206, + -0.04870479553937912, + 0.0596613734960556, + -0.026951586827635765, + -0.005115069914609194, + -0.018647512421011925, + 0.05217038094997406, + 0.011176510713994503, + 0.06643259525299072, + 0.06797877699136734, + 0.0015870045172050595, + -0.01778111606836319, + 0.01412892248481512, + -0.01600833609700203, + 0.00043569732224568725, + 0.02463231049478054, + 0.02060689963400364, + 0.016301577910780907, + 0.02825784496963024, + -0.0447593592107296, + -0.026431748643517494, + -0.07005812972784042, + 0.03193669766187668, + 0.012536086142063141, + 0.04627888649702072, + -0.03846799209713936, + 0.04451943561434746, + -0.05875499173998833, + -0.030790386721491814, + 5.0921604270115495e-05, + -0.038121432065963745, + 0.01802104152739048, + -0.06264711171388626, + 0.029564103111624718, + 0.02988400310277939, + 0.0012362806592136621, + 0.057635340839624405, + 0.003169010626152158 + ] + }, + { + "id": "ba0e8f8b-fc2c-4cd4-8ca3-0e5fb27da8af", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "charlesward", + "reviewDate": "2021-01-10T22:31:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "05fffde9-bf31-43e9-b091-2b5f0c0150c5", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonespatrick", + "reviewDate": "2021-06-28T14:45:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fb0feb3f-ae9e-4bbf-aed7-158fbfa548a6", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "brenda55", + "reviewDate": "2021-07-03T22:21:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "266bf118-216b-495b-8a2b-acdf62784d04", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "richardgreen", + "reviewDate": "2022-06-12T10:09:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d9019821-37a0-4d61-947b-66eaa6c858bf", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "moraleskevin", + "reviewDate": "2022-11-05T03:59:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "844c6570-a296-490b-9aa9-9eb041f6f396", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaronsmith", + "reviewDate": "2021-09-28T12:45:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6826ff96-60f7-450d-89c6-574db6eae368", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "wmaxwell", + "reviewDate": "2022-02-03T16:42:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "edff468a-05af-4373-8664-48d584c8e820", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "vrodriguez", + "reviewDate": "2021-03-08T11:31:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b6752d27-ece7-435d-a0b4-235a4a52158a", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacob71", + "reviewDate": "2022-10-31T04:32:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bf89221d-0c6c-49c3-bc2b-4f6ff9c36d0e", + "productId": "7a1b5795-ac5f-45cf-9373-f23fbffd6b84", + "category": "Electronics", + "docType": "customerRating", + "userName": "drivera", + "reviewDate": "2022-10-30T16:11:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a67f0a51-0123-4716-87b6-6f405f332c70", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Ultra (Gold)", + "description": "This Premium Phone Ultra (Gold) is one of the few phones to feature Apple's unique high-end design style. The design of the Ultra Phone is reminiscent of the Apple Watch and offers a great looking display with plenty of space for accessories or use where you like, and the watch offers 3G as well as Wi-Fi. The watch looks and feels great on the watch, and if you", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-10T00:45:38", + "price": 389.78, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-26T09:58:54", + "newPrice": 357.24 + }, + { + "priceDate": "2022-01-11T09:58:54", + "newPrice": 395.35 + }, + { + "priceDate": "2022-12-27T09:58:54", + "newPrice": 354.65 + }, + { + "priceDate": "2025-01-20T09:58:54", + "newPrice": 389.78 + } + ], + "descriptionVector": [ + -0.056070052087306976, + 0.042979221791028976, + -0.02065677009522915, + -0.011923683807253838, + 0.03460390120744705, + -0.012304913252592087, + -0.03488542512059212, + -0.0028137664776295424, + 0.023178748786449432, + 0.014650940895080566, + 0.06348349899053574, + 0.0006510225939564407, + 0.0814540684223175, + -0.022826844826340675, + 0.052597932517528534, + -0.011020462960004807, + 0.02402331866323948, + -0.04021090641617775, + -0.050251904875040054, + 0.014920733869075775, + 0.09022820740938187, + -0.04950117692351341, + -0.04168890416622162, + -0.06066826730966568, + 0.016633333638310432, + -0.015648001804947853, + 0.014252115972340107, + 0.014064433984458447, + 0.05283253639936447, + -0.04656864330172539, + 0.02674471028149128, + 0.005774159450083971, + -0.060574423521757126, + 0.02636934630572796, + -0.08248631656169891, + 0.064609594643116, + 0.03378279134631157, + 0.017032157629728317, + 0.08511386811733246, + -0.008885578252375126, + -0.0027140602469444275, + -0.08431622385978699, + 0.021161166951060295, + 0.023647954687476158, + 0.06761250644922256, + -0.07197611778974533, + 0.008621650747954845, + 0.04767127335071564, + -0.0064984955824911594, + -0.0515187606215477, + -0.01822863146662712, + -0.01724330149590969, + -0.0411493182182312, + 0.014955923892557621, + 0.0006748494342900813, + -0.018826868385076523, + 0.0016950047574937344, + 0.08089102059602737, + 0.03317282721400261, + -0.0067741540260612965, + 0.011595239862799644, + -0.0404689721763134, + 0.0022433886770159006, + 0.052973296493291855, + -0.02303798869252205, + 0.025900142267346382, + -0.04509064555168152, + -0.015800494700670242, + -0.00798235833644867, + 0.09994076192378998, + 0.022111307829618454, + 0.01008205208927393, + -0.012856229208409786, + 0.05095571279525757, + -0.003950123675167561, + 0.11026328057050705, + 0.023859096691012383, + 0.014404607936739922, + 0.0651257187128067, + 0.030991019681096077, + 0.0670025423169136, + 0.045982133597135544, + 0.01826382242143154, + -0.00034897157456725836, + 0.03263324126601219, + 0.033947013318538666, + 0.035120029002428055, + -0.09074433892965317, + -0.04649826139211655, + 0.054943960160017014, + -0.03458044305443764, + 0.04921965301036835, + -0.01660987362265587, + -0.017079079523682594, + 0.022005736827850342, + 0.06465651094913483, + 0.005920786410570145, + 0.03033413365483284, + -0.09834546595811844, + -0.010040996596217155, + 0.06653333455324173, + 0.005428120493888855, + -0.034134697169065475, + 0.05949525162577629, + 0.053395580500364304, + 0.056680019944906235, + 0.036785706877708435, + -0.005416390486061573, + 0.026158204302191734, + -0.14836277067661285, + 0.0005271229892969131, + 0.018580535426735878, + -0.02606436237692833, + 0.012480865232646465, + -0.0467563234269619, + 0.06268584728240967, + 0.02538401447236538, + -0.03671532869338989, + 0.02953648380935192, + 0.011941279284656048, + 0.007014621514827013, + 0.04814048111438751, + -0.060199059545993805, + -0.019565867260098457, + 0.022439751774072647, + 0.00729027995839715, + 0.004472114611417055, + 0.03699684888124466, + -0.02545439638197422, + -0.03955401852726936, + -0.06761250644922256, + 0.0863807275891304, + 0.014193465001881123, + 0.0627327710390091, + -0.0363868847489357, + 0.06315505504608154, + 0.03903789445757866, + 0.040257830172777176, + -0.0016392865218222141, + 0.020832723006606102, + 0.029888387769460678, + 0.01807614043354988, + 0.04309652000665665, + 0.0015307827852666378, + -0.04936041310429573, + 0.024257922545075417, + 0.03185905143618584, + 0.018662646412849426, + -0.07596436142921448, + -0.03582383692264557, + 0.02984146773815155, + -0.1601867377758026, + -0.011923683807253838, + -0.05602313205599785, + 0.0064809005707502365, + 0.03249247744679451, + -0.021548260003328323, + -0.09229271113872528, + -0.02822270803153515, + 0.04837508127093315, + -0.03718453273177147, + -0.04032820835709572, + 0.013137753121554852, + -0.06207588315010071, + -0.01970662921667099, + -0.0002976522082462907, + 0.06977085024118423, + 0.028246168047189713, + -0.006052750628441572, + 0.030920639634132385, + 0.025712458416819572, + 0.0002670438843779266, + -0.0001999621745198965, + -0.08028105646371841, + 0.015061494894325733, + 0.04093817621469498, + 0.0246567465364933, + 0.033829715102910995, + 0.05461551621556282, + -0.0039794486947357655, + 0.019495487213134766, + 0.07802886515855789, + -0.0686916783452034, + -0.02787080407142639, + 0.008093793876469135, + 0.05949525162577629, + 0.05128415673971176, + 0.04818740114569664, + -0.01011724304407835, + 0.0012221336364746094, + 0.009958885610103607, + 0.018146520480513573, + -0.03948364034295082, + 0.000506228709127754, + 0.010627503506839275, + -0.009214022196829319, + 0.09384109079837799, + 0.006029290147125721, + -0.06268584728240967, + 0.025430936366319656, + 0.029372261837124825, + 0.04178274795413017, + 0.10707268863916397, + -0.005994099657982588, + -0.028527691960334778, + -0.04696746543049812, + -0.019131852313876152, + 0.007032216992229223, + -0.016633333638310432, + 0.08506695181131363, + -0.03458044305443764, + 0.0167506355792284, + -0.012856229208409786, + -0.01503803487867117, + 0.05381786450743675, + 0.04652171954512596, + 0.022111307829618454, + 0.0006876792758703232, + -0.0097360135987401, + -0.06658025830984116, + 0.03964786231517792, + 0.03992938622832298, + 0.03631650283932686, + 0.013172943145036697, + -0.024609826505184174, + -0.015237446874380112, + 0.050627268850803375, + 0.022862035781145096, + 0.059964459389448166, + 0.01977700926363468, + -0.0790611207485199, + -0.053958628326654434, + -0.029114197939634323, + 0.006821074523031712, + 0.028035026043653488, + 0.013818101026117802, + 0.0052521685138344765, + -0.04035167023539543, + -0.02356584370136261, + 0.014287305995821953, + 0.005882663652300835, + -0.03535463288426399, + -0.075166717171669, + -0.026697790250182152, + 0.03373587131500244, + -0.002824030350893736, + 0.052973296493291855, + 0.01085624098777771, + -0.07479134947061539, + 0.07784118503332138, + 0.0011759462067857385, + -0.050814952701330185, + -0.08328396826982498, + 0.09797009825706482, + -0.018169980496168137, + -0.008938363753259182, + -0.014498448930680752, + -0.04851584509015083, + 0.05949525162577629, + -0.03441622108221054, + -0.01269200723618269, + 0.004797625821083784, + -0.030732957646250725, + 0.02375352568924427, + -0.010011671110987663, + 0.05086187273263931, + 0.05184720456600189, + -0.09304343909025192, + 0.017043888568878174, + 0.01272719819098711, + -0.006955971010029316, + -0.04631057754158974, + 0.04211118817329407, + 0.007501422427594662, + 0.026205124333500862, + 0.0637650191783905, + -0.06995853036642075, + 0.05935449153184891, + 1.8145054127671756e-05, + -0.006914915516972542, + 0.09172967076301575, + 0.02205265685915947, + 0.10284983366727829, + -0.0009955953573808074, + 0.06911396235227585, + -0.052551012486219406, + -0.07436906546354294, + -0.01032252050936222, + 0.06643949449062347, + -0.0926680788397789, + 0.0007565938285551965, + -0.03824024647474289, + 0.043706487864255905, + -0.013172943145036697, + -0.02198227494955063, + -0.014416337944567204, + 0.0036422074772417545, + 0.017994029447436333, + 0.007835730910301208, + 0.024562906473875046, + 0.03936633840203285, + -0.016926586627960205, + -0.03286784142255783, + -0.02564207836985588, + 0.016961777582764626, + 0.14245077967643738, + -0.005085014272481203, + 0.01880340836942196, + 0.012562976218760014, + -0.007689104415476322, + 0.07291452586650848, + -0.0472724512219429, + -0.07943648099899292, + -0.02730775810778141, + -0.0008130450733006, + 0.009472085162997246, + -0.022533591836690903, + 0.05719614401459694, + -0.008791737258434296, + -0.0264397282153368, + 0.0209969449788332, + 0.02557169832289219, + -0.09271499514579773, + 0.023061448708176613, + 0.04096163809299469, + 0.024680206552147865, + -0.021454419940710068, + -0.07427522540092468, + 0.013735990040004253, + -0.05578852817416191, + -0.0447152815759182, + -0.03880329057574272, + -0.004615808837115765, + -0.017524823546409607, + 0.051987964659929276, + -0.004354813136160374, + 0.0004483111551962793, + 0.064609594643116, + 0.06531339883804321, + 0.02220514789223671, + 0.05897912755608559, + 0.08600535988807678, + -0.04978270083665848, + -0.027260838076472282, + -0.006920780520886183, + -0.0664864107966423, + -0.07422830164432526, + -0.02866845391690731, + -0.032351717352867126, + 0.06442190706729889, + 0.0013335698749870062, + -0.0196362491697073, + 0.05109647288918495, + 0.00960698164999485, + 0.011167090386152267, + 0.04293229803442955, + 0.019131852313876152, + -0.09069741517305374, + 0.03305552527308464, + 0.001452337484806776, + 0.0024662611540406942, + 0.029489563778042793, + 0.04391762986779213, + 0.09355957061052322, + -0.05367710441350937, + 0.024492524564266205, + -0.024727128446102142, + 0.08788218349218369, + -0.07709045708179474, + 0.013043912127614021, + 0.023718336597085, + -0.00043548131361603737, + -0.054709356278181076, + 0.08455082029104233, + -0.05358326435089111, + 0.08351857215166092, + 0.014568829908967018, + 0.005524894222617149, + 0.018486695364117622, + 0.03645726293325424, + -0.05972985550761223, + -0.011618699878454208, + -0.011120169423520565, + 0.05147184059023857, + 0.05578852817416191, + -0.027260838076472282, + -0.07230456173419952, + 0.003912000451236963, + -0.042463093996047974, + 0.07070926576852798, + -0.052973296493291855, + -0.07610512524843216, + -0.022498400881886482, + 0.0445510596036911, + 0.08004645258188248, + -0.03856869041919708, + 0.012562976218760014, + 0.05306713655591011, + 0.01951894722878933, + -0.01070374995470047, + 0.038709450513124466, + 0.06963008642196655, + -0.026228584349155426, + 0.06015213951468468, + 0.026533568277955055, + -0.043894171714782715, + 0.018674377351999283, + 0.03990592435002327, + -0.03460390120744705, + -0.02121981605887413, + -0.01676236465573311, + -0.008240421302616596, + -0.010580583475530148, + 0.03336050733923912, + 0.02315528877079487, + 0.009947155602276325, + 0.023999858647584915, + 0.05616389214992523, + 0.10453897714614868, + 0.009219887666404247, + -0.028058486059308052, + 0.07188227772712708, + -0.04452759772539139, + -0.025618618354201317, + -0.0385921485722065, + 0.05194104462862015, + -0.015436859801411629, + -0.023612765595316887, + -0.032469019293785095, + -0.022298989817500114, + 0.07694969326257706, + -0.05325482040643692, + 0.03359511122107506, + -0.027941185981035233, + -0.03192943334579468, + -0.012809309177100658, + 0.0010095249162986875, + 0.050204984843730927, + -0.047600895166397095, + -0.00402050418779254, + -0.037090692669153214, + -0.03983554244041443, + -0.015131875872612, + 0.04159506410360336, + -0.08004645258188248, + -0.039319418370723724, + -0.009976481087505817, + -0.0062111071310937405, + -0.02704969421029091, + -0.03737221658229828, + -0.0278004240244627, + 0.04119623824954033, + 0.02280338481068611, + 0.0007305675535462797, + 0.0037096557207405567, + -0.02742505818605423, + 0.0157301127910614, + 0.07741890102624893, + -0.07690277695655823, + 0.039202116429805756, + -0.01797056943178177, + 0.060621343553066254, + 0.08839830756187439, + -0.018580535426735878, + -0.01395886205136776, + -0.00679761404171586, + -0.028738833963871002, + -0.018826868385076523, + 0.0031202163081616163, + 0.10594659298658371, + -0.01797056943178177, + -0.0520348846912384, + 0.03446314111351967, + -0.028081946074962616, + -0.03387663513422012, + -0.05212872475385666, + 0.03317282721400261, + -0.06456267088651657, + -0.012750658206641674, + -0.059964459389448166, + 0.055131640285253525, + 0.05658617988228798, + 0.04677978530526161, + -0.00413194065913558, + 0.02095002308487892, + -0.04541908949613571, + 0.04208773002028465, + 0.024914810433983803, + 0.003269775537773967, + 0.03974170237779617, + 0.03397047519683838, + -0.008369452320039272, + -0.010727209970355034, + 0.03136638551950455, + -0.02655702829360962, + -0.09853314608335495, + 0.06432806700468063, + 0.0021466149482876062, + -0.00988850463181734, + 0.012562976218760014, + 0.01804094947874546, + -0.04687362536787987, + -0.04520794749259949, + 0.006263893097639084, + 0.01445152796804905, + -0.02514941245317459, + 0.0011957407696172595, + 0.043401505798101425, + 0.008363586850464344, + 0.001140022650361061, + 0.03181213140487671, + 0.013524847105145454 + ] + }, + { + "id": "06f723f8-ec79-41f8-a962-36c9bcd8c9e0", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "sherry36", + "reviewDate": "2021-03-06T15:34:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "05dfdf48-f6ab-4915-8a89-c1577c421110", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda38", + "reviewDate": "2021-10-01T23:04:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8bad6232-b6a6-4af3-a227-7a7d0f681b86", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbaldwin", + "reviewDate": "2022-03-05T20:42:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "21cd1663-8a08-4df5-8142-7bfd1f405e0a", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "eharris", + "reviewDate": "2021-12-24T10:42:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a8ed2a51-0ef4-4948-9ded-8c5a6794c584", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "schavez", + "reviewDate": "2022-05-29T00:29:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0d6abc5c-736d-4f13-a6df-71daec6a76ce", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "john63", + "reviewDate": "2022-07-09T05:08:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9a378c38-e15a-46ce-b183-a512c503a952", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "xcrawford", + "reviewDate": "2022-05-20T16:27:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3db1aa7c-3cd1-456a-bab2-ab79ea586c70", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "lynchjames", + "reviewDate": "2021-04-19T07:13:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "569f3ca1-2708-49eb-ab56-8a32c1105832", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "moralesjason", + "reviewDate": "2021-05-19T12:15:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a4044ac5-1e50-4dc5-a50d-8c939f30cb9e", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "yproctor", + "reviewDate": "2021-07-26T20:01:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "698b848f-ff9c-4304-a1ab-5f0afadcd73e", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "hwatson", + "reviewDate": "2021-01-26T09:58:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "18509ed2-5fc7-43b5-9344-1dcae0764d26", + "productId": "a67f0a51-0123-4716-87b6-6f405f332c70", + "category": "Electronics", + "docType": "customerRating", + "userName": "erin31", + "reviewDate": "2022-12-28T09:26:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse + (Steel)", + "description": "This Amazing Mouse + (Steel) is a full-color hardcover novel based on the popular comic by William Rufus, based on his adventures at the Sea of Galilee. The story centers on a beautiful young man on a short time travel trip. His travels were a pleasure. However, for various reasons, he was separated from his", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-06-03T11:24:35", + "price": 755.41, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-05-31T20:15:02", + "newPrice": 804.0 + }, + { + "priceDate": "2021-10-05T20:15:02", + "newPrice": 801.16 + }, + { + "priceDate": "2022-02-09T20:15:02", + "newPrice": 774.02 + }, + { + "priceDate": "2022-06-16T20:15:02", + "newPrice": 746.42 + }, + { + "priceDate": "2022-10-21T20:15:02", + "newPrice": 819.5 + }, + { + "priceDate": "2024-11-08T20:15:02", + "newPrice": 755.41 + } + ], + "descriptionVector": [ + -0.01906798779964447, + -0.014855756424367428, + -0.02549928054213524, + -0.07377384603023529, + -0.005295186769217253, + -0.04140477254986763, + -0.045896049588918686, + -0.030721385031938553, + 0.00863706786185503, + 0.03268798068165779, + 0.01650344394147396, + 0.06436608731746674, + -0.02385159395635128, + 0.015227814204990864, + 0.004810182377696037, + -0.018270719796419144, + -0.05463941767811775, + -0.028276430442929268, + -0.04249437153339386, + -0.02737286128103733, + -0.006989380810409784, + -0.0066206445917487144, + 0.00902241375297308, + 0.057084374129772186, + -0.0006195434834808111, + -0.021659107878804207, + -0.016702760010957718, + 0.017925236374139786, + -0.008676931262016296, + 0.00853076484054327, + -0.0059197130613029, + 0.06601377576589584, + 0.08153391629457474, + -0.03399018198251724, + -0.03226276859641075, + 0.0056606014259159565, + -0.02870164066553116, + 0.020622659474611282, + 0.035026632249355316, + 0.023585839197039604, + 0.019612787291407585, + -0.002853554207831621, + 0.03268798068165779, + 0.027798069640994072, + 0.012929026037454605, + 0.022084318101406097, + -0.09216415882110596, + 0.0156264491379261, + -0.011553739197552204, + 0.03659459203481674, + -0.029153425246477127, + 0.004687270149588585, + -0.0723387598991394, + -0.01970580220222473, + 0.06011398881673813, + -0.027957523241639137, + 0.1004025861620903, + 0.09205785393714905, + -0.019214153289794922, + -0.11661370098590851, + -0.008610491640865803, + -0.07053162157535553, + 0.04871306195855141, + 0.004624153021723032, + 0.005454640369862318, + -0.05511777848005295, + 0.023944608867168427, + -0.00634160079061985, + -0.04161737859249115, + 0.02131362445652485, + 0.02205774188041687, + 0.010577085427939892, + 0.06229319050908089, + 0.03914584964513779, + 0.017845509573817253, + 0.004026202484965324, + 0.09397129714488983, + 0.04116559401154518, + 0.022363360971212387, + -0.043079037219285965, + -0.011972304433584213, + -0.019307168200612068, + -0.10029628872871399, + 0.009148648008704185, + 0.0879652127623558, + -0.0017323964275419712, + 0.03622253239154816, + -0.1310708224773407, + 0.02205774188041687, + 0.01579918898642063, + 0.046905919909477234, + -0.06707679480314255, + 0.011427504941821098, + -0.06340936571359634, + 0.026748333126306534, + -0.0028037249576300383, + -0.005889815744012594, + 0.02325364388525486, + -0.0025612227618694305, + 0.013334303162992, + 0.057084374129772186, + 0.00026617117691785097, + -0.08934713900089264, + -0.005092547740787268, + 0.00483675766736269, + -0.005830020643770695, + -0.053284063935279846, + 0.019121138378977776, + -0.013433962129056454, + -0.012211484834551811, + 0.016118096187710762, + -0.0036707536783069372, + -0.01934703066945076, + 0.009015769697725773, + 0.038614336401224136, + -0.006809995509684086, + -0.08397887647151947, + 0.02856876142323017, + 0.008769945241510868, + -0.04193628579378128, + -0.016224399209022522, + 0.01241744589060545, + -0.0036375343333929777, + -0.03686034679412842, + -0.02880794182419777, + -0.04594919830560684, + -0.02180527336895466, + -0.029259728267788887, + 0.06266524642705917, + -0.027558889240026474, + -0.06829927116632462, + 0.00860384851694107, + -0.013307727873325348, + 0.002860198263078928, + -0.021446503698825836, + 0.030163297429680824, + -0.06473814696073532, + -0.03898639604449272, + 0.015227814204990864, + 0.08754000067710876, + -0.016131384298205376, + -0.02891424484550953, + -0.07297657430171967, + 0.00028610287699848413, + -0.04379657655954361, + -0.0795673280954361, + -0.043079037219285965, + -0.03619595617055893, + -0.03717925399541855, + -0.007700277958065271, + -0.016928652301430702, + -0.0460023507475853, + -0.021194035187363625, + 0.004551070276647806, + 0.05681861564517021, + 0.08068349957466125, + -0.09099482744932175, + -0.05325748771429062, + -0.030296174809336662, + 0.06723625212907791, + -0.01264998223632574, + -0.11012925952672958, + 0.027744919061660767, + 0.013048616237938404, + 0.03154522925615311, + 0.022469663992524147, + -0.004198943730443716, + 0.0317312590777874, + -0.00940775964409113, + 0.03258167579770088, + 0.012603474780917168, + -0.023373233154416084, + 0.023519398644566536, + -0.10460153222084045, + 0.014284380711615086, + -0.0019416792783886194, + 0.03872063755989075, + 0.04392945393919945, + -0.039597634226083755, + 0.027346285060048103, + 0.02167239598929882, + 0.015134800225496292, + -0.005856596399098635, + 0.07675030827522278, + 0.019546348601579666, + -0.00013007507368456572, + -0.008577272295951843, + 0.07005326449871063, + -0.04911169409751892, + -0.058944664895534515, + -0.027040665969252586, + -0.05370927229523659, + 0.07361438870429993, + -0.06107071042060852, + -0.02747916243970394, + 0.10311330109834671, + -0.013606703840196133, + 0.013606703840196133, + -0.0081985704600811, + -0.05681861564517021, + 0.010470783337950706, + -0.002094488823786378, + 0.02005128376185894, + -0.007328219711780548, + -0.013885746710002422, + -0.009965847246348858, + -0.06362196803092957, + 0.0029714833945035934, + 0.07085052877664566, + -0.034840602427721024, + 0.05208816006779671, + 0.009281525388360023, + -0.040793534368276596, + 0.00222072284668684, + 0.0541079081594944, + -0.0067036934196949005, + -0.008856316097080708, + -0.06537596136331558, + -0.0317312590777874, + -0.025632159784436226, + 0.012184909544885159, + -0.059263572096824646, + -0.036886923015117645, + -0.027040665969252586, + -0.018390310928225517, + 0.0029216541443020105, + 0.058625757694244385, + 0.0640471801161766, + 0.09115428477525711, + -0.0629841536283493, + -0.03422936424612999, + 0.004982923623174429, + -0.0377107672393322, + 0.027452588081359863, + -0.12129100412130356, + 0.061336468905210495, + -0.04780949279665947, + -0.031678106635808945, + 0.04865990951657295, + 0.01896168477833271, + -0.016623033210635185, + -0.006969449110329151, + -0.026057368144392967, + -0.05984823405742645, + 0.059476178139448166, + 0.008437750861048698, + 0.017460163682699203, + -0.09328033030033112, + -0.06202743202447891, + -0.041989438235759735, + 0.05543668568134308, + 0.02250952646136284, + 0.0681929737329483, + 0.044407814741134644, + -0.03218304365873337, + 0.09678830951452255, + -0.04103271663188934, + 0.030349327251315117, + -0.000516147818416357, + -0.0343356654047966, + -0.04517850652337074, + -0.009965847246348858, + -0.0380030982196331, + 0.03630226105451584, + -0.023931320756673813, + 0.05963563174009323, + -0.029525483027100563, + -0.09503431618213654, + -0.023227067664265633, + 0.031040292233228683, + -0.012370938435196877, + -0.06612007319927216, + 0.0392521508038044, + -0.02019745111465454, + -0.0429195836186409, + -0.05360297113656998, + -0.05889151245355606, + 0.04116559401154518, + 0.01966593787074089, + -0.019533060491085052, + 0.026615455746650696, + 0.04424836114048958, + -0.0245957113802433, + 0.0126832015812397, + 0.01080297864973545, + -0.008836384862661362, + 0.0001353694242425263, + 0.019798817113041878, + 0.01656988263130188, + -0.02201787941157818, + -0.05453311651945114, + -0.04337136819958687, + 0.010171808302402496, + 0.00113195413723588, + 0.08466983586549759, + -0.0007673702202737331, + 0.01201216783374548, + 0.004604221321642399, + -0.01423123013228178, + 0.044753298163414, + 0.059050966054201126, + 0.012610118836164474, + -0.06627953052520752, + -0.024183789268136024, + 0.12203512340784073, + 0.025738460943102837, + 0.03321949020028114, + 8.829117723507807e-05, + -0.002880129963159561, + -0.06590747088193893, + 0.03096056543290615, + 0.06000768765807152, + -0.037338707596063614, + -0.010118656791746616, + 0.08047089725732803, + -0.10072149336338043, + 0.028621913865208626, + -0.04270697757601738, + 0.04355739802122116, + 0.009494130499660969, + 0.015785902738571167, + -0.07855745404958725, + -0.07728182524442673, + -0.040262021124362946, + 0.03672746941447258, + -0.031997013837099075, + 0.006660507991909981, + -0.02519366145133972, + -0.015108224004507065, + 0.007959390059113503, + -0.02353268675506115, + -0.023160628974437714, + -0.01994498260319233, + 0.08249063789844513, + -0.007228561211377382, + -0.06149592250585556, + -0.042441222816705704, + 0.11533807218074799, + 0.04701222479343414, + 0.04865990951657295, + -0.038826942443847656, + 0.007633838802576065, + 0.052008435130119324, + 0.06856502592563629, + 0.021659107878804207, + -0.049722932279109955, + 0.08828411996364594, + -0.01057044230401516, + 0.03234249725937843, + 0.05538353696465492, + 0.0016551611479371786, + -0.007354795467108488, + 0.0044979192316532135, + -0.05554298684000969, + 0.06803351640701294, + 0.006730268709361553, + 0.020808689296245575, + -0.04501905292272568, + -0.000821351888589561, + 0.033857304602861404, + 0.008577272295951843, + -0.046214956790208817, + 0.008437750861048698, + -0.014762741513550282, + -0.030163297429680824, + -0.027877796441316605, + 0.04865990951657295, + -0.04305246099829674, + -0.04305246099829674, + 0.007055819965898991, + 0.02498105727136135, + 0.013075191527605057, + 0.017154544591903687, + 0.024808315560221672, + -0.033963605761528015, + -0.052646249532699585, + 0.11151118576526642, + 0.021207323297858238, + 0.029073698446154594, + -0.0006307550938799977, + 0.027146967127919197, + -0.00301632983610034, + 0.05729697644710541, + -0.029605209827423096, + 0.03869406133890152, + 0.011580314487218857, + -0.05889151245355606, + -0.05158322677016258, + -0.01603836938738823, + -0.01391232293099165, + -0.010145232081413269, + -0.012729709036648273, + 0.016649609431624413, + 0.051981858909130096, + 0.06877763569355011, + -0.02511393465101719, + 0.05660601332783699, + 0.1301141083240509, + -0.018868669867515564, + 0.07053162157535553, + -0.0017755817389115691, + 0.0069162980653345585, + 0.050467051565647125, + 0.03834858164191246, + 0.0930677279829979, + -0.038428306579589844, + 0.05299173295497894, + -0.01607823371887207, + -0.024422969669103622, + -0.041989438235759735, + -0.0056606014259159565, + 0.025765037164092064, + 0.06415347754955292, + -0.0104641392827034, + 0.015427131205797195, + 0.03935845196247101, + 0.031997013837099075, + 0.007454453967511654, + -0.002395125338807702, + -0.046214956790208817, + 0.033644698560237885, + -0.02353268675506115, + -0.018868669867515564, + 0.009799749590456486, + -0.09769187867641449, + 0.0071023269556462765, + -0.024927906692028046, + -0.038747213780879974, + 0.049404025077819824, + -0.04270697757601738, + -0.05030759796500206, + -0.08637067675590515, + -0.03290058299899101, + 0.012709776870906353, + -0.0067701321095228195, + -0.03138577565550804, + 0.030243024230003357, + -0.038959819823503494, + 0.05447996407747269, + 0.002044659573584795, + -0.009580501355230808, + 0.01312169898301363, + -0.006069201044738293, + -0.11820823699235916, + -0.06255894154310226, + 0.037445008754730225, + -0.06569486856460571, + -0.0017988354666158557, + 0.03218304365873337, + -0.026867924258112907, + -0.004893231205642223, + -0.04592262580990791, + -0.050148144364356995, + -0.010012354701757431, + 0.047756340354681015, + -0.06218688562512398, + -0.09280197322368622, + 0.030880838632583618, + -0.021446503698825836, + 0.07951417565345764, + 0.03582390025258064, + 0.08291584998369217, + 0.04432808980345726, + -0.050254445523023605, + -0.00640139589086175, + -0.1249052882194519, + -0.006404717918485403, + 0.0128027917817235, + -0.02933945506811142, + 0.03593020141124725, + -0.05857260525226593, + 0.022389937192201614, + -0.0904633179306984, + 0.038747213780879974, + 0.04953690618276596, + -0.06170852482318878, + -0.030455628409981728, + -0.06994695961475372, + -0.03507978096604347, + 0.061123862862586975, + 0.04175025597214699, + 0.011334490031003952, + -0.036036502569913864, + 0.07462426275014877, + -0.0353986881673336, + -0.028861094266176224, + 0.037205830216407776, + -0.028861094266176224, + -0.003036261536180973, + 0.01092256885021925, + -0.014045200310647488, + 0.07393329590559006, + -0.06782091408967972, + -0.043185338377952576, + -0.026588881388306618, + 0.0029233151581138372, + 0.015639735385775566, + -0.011234831996262074, + -0.026150383055210114, + -0.02071567438542843, + -0.033618126064538956, + -0.01493548322468996, + 0.06202743202447891, + 0.06612007319927216, + -0.02739943563938141, + 0.03242222219705582, + 0.013340947218239307, + -0.008577272295951843, + -0.008085624314844608, + -0.023266931995749474, + 0.08493559062480927, + 0.03946475684642792 + ] + }, + { + "id": "f5106511-29d2-42f6-95ea-e8b838c01522", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vincentnorris", + "reviewDate": "2021-07-24T18:30:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "33382f4f-3f0f-4a13-be41-82ba16afb2e6", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher53", + "reviewDate": "2021-11-19T23:19:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "340d7d49-c94f-48e2-aebc-fe13ec2b4e9c", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "heidi79", + "reviewDate": "2022-10-24T19:25:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a1ac4cff-74ce-49d3-91f9-861d517c6da3", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardbriggs", + "reviewDate": "2021-09-26T12:52:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "261a8de9-cc71-4417-b0c4-3c1933f6704c", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "moorechelsey", + "reviewDate": "2022-04-23T10:43:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fe736e32-2251-40b4-8707-c727166811da", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ljenkins", + "reviewDate": "2021-08-27T22:58:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "94b10eae-00e6-4856-8b4d-6a8497182a3e", + "productId": "6a2b1b22-ea96-4d3d-ba1e-697de154593d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gamblevanessa", + "reviewDate": "2021-05-31T20:15:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4953b595-138c-4ce0-925b-c76bedb9117e", + "productId": "4953b595-138c-4ce0-925b-c76bedb9117e", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Ultra (Steel)", + "description": "This Awesome Mouse Ultra (Steel) is one of our all-time favorite toys that we buy and like. Whether you don't like it, it's a perfect gift. The mouse's unique design allows you to move your mouse around freely when you are looking at its back. The Mouse Ultra also includes a large 3D cursor that allows you to scroll. (3D cursor technology offers a much higher level of precision, so it would be easier to control the mouse with the right mouse click", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-05-10T03:19:32", + "price": 311.88, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2018-05-10T03:19:32", + "newPrice": 314.92 + }, + { + "priceDate": "2022-01-08T03:19:32", + "newPrice": 319.55 + }, + { + "priceDate": "2025-09-08T03:19:32", + "newPrice": 342.59 + }, + { + "priceDate": "2025-09-09T03:19:32", + "newPrice": 311.88 + } + ], + "descriptionVector": [ + -0.0525207445025444, + -0.06286723166704178, + -0.0412135124206543, + -0.027344290167093277, + 0.06513360887765884, + -0.015248752199113369, + -0.07986503094434738, + -0.009311839006841183, + 0.03791248798370361, + 0.008375728502869606, + -0.0423220619559288, + 0.01951052062213421, + 0.05390027537941933, + -0.057102758437395096, + -0.03670539706945419, + -0.020532852038741112, + -0.06138916313648224, + -0.007088575977832079, + -0.06335992366075516, + -0.01290847547352314, + 0.08513681590557098, + -0.020569803193211555, + -0.016049373894929886, + -0.009903066791594028, + 0.04170620068907738, + -0.031285807490348816, + 0.00024403547286055982, + 0.01680072583258152, + -0.0027020962443202734, + -0.00754431402310729, + 0.021037859842181206, + 0.027615269646048546, + -0.014928503893315792, + 0.06986343115568161, + -0.025398164987564087, + -0.039341289550065994, + -0.011368819512426853, + -0.03963690251111984, + 0.0648379921913147, + 0.05266854912042618, + 0.011929254047572613, + -0.026014026254415512, + 0.02170298993587494, + -0.016948532313108444, + -0.02798478677868843, + 0.03842981159687042, + -0.04483478143811226, + 0.04210035130381584, + 0.0032209602650254965, + 0.03094092570245266, + 0.03392169997096062, + 0.019498202949762344, + -0.06838536262512207, + 0.034956347197294235, + 0.03392169997096062, + -0.02431424707174301, + 0.03998178616166115, + 0.04668236896395683, + 0.06404969096183777, + -0.057841796427965164, + 0.031556788831949234, + -0.10543563961982727, + -0.06055159121751785, + 0.012267978861927986, + -0.039809346199035645, + -0.06400042027235031, + 0.014657524414360523, + 0.01885770633816719, + 0.06887804716825485, + 0.032763879746198654, + -0.06444384157657623, + -0.003270229324698448, + -0.0030685344245284796, + -0.02529962733387947, + 0.0011609005741775036, + 0.004748298786580563, + 0.0017675249837338924, + 0.021370423957705498, + 0.04653456062078476, + -0.04000642150640488, + 0.03379852697253227, + 0.020458947867155075, + -0.04086862877011299, + 0.0028206496499478817, + 0.08996517956256866, + 0.044243551790714264, + 0.01997857540845871, + -0.07818988710641861, + -0.020927004516124725, + 0.06818827986717224, + -0.04781555384397507, + 0.03793712332844734, + 0.06700582802295685, + 0.0006458856514655054, + -0.011257964186370373, + -0.002577384002506733, + -0.04069618508219719, + 0.016739139333367348, + -0.005050071515142918, + 0.050303637981414795, + 0.05606811121106148, + 0.01792159490287304, + -0.09597599506378174, + -0.0345868319272995, + -0.03670539706945419, + -0.036927107721567154, + 0.023944729939103127, + 0.04439136013388634, + -0.06380334496498108, + -0.10681517422199249, + -0.0039877090603113174, + -0.03966153785586357, + 0.010284901596605778, + -0.01034648809581995, + 0.008049321360886097, + 0.01139961276203394, + -0.06808974593877792, + -0.003944598603993654, + -0.07966795563697815, + -0.012163282372057438, + 0.07075027376413345, + 0.04219888895750046, + 0.0396861732006073, + 0.05996036157011986, + 0.0032209602650254965, + -0.010968509130179882, + 0.040326669812202454, + 0.019005512818694115, + 0.00461896788328886, + -0.03847908228635788, + -0.08341240137815475, + 0.07700743526220322, + 0.026728427037596703, + 0.019448934122920036, + -0.014546669088304043, + 0.052717819809913635, + -0.012920793145895004, + -0.05892571434378624, + -0.019892355427145958, + 0.04195254668593407, + -0.0008406521519646049, + -0.018204892054200172, + -0.056363724172115326, + 0.0009114763233810663, + -0.1260300725698471, + 0.026014026254415512, + -0.07681035995483398, + -0.005204037297517061, + -0.011559736914932728, + 0.04328280687332153, + 0.038134198635816574, + -0.07380494475364685, + -0.020323459059000015, + -0.013314944691956043, + 0.022109460085630417, + 0.034956347197294235, + -0.08666415512561798, + -0.022318853065371513, + -0.07301664352416992, + 0.03335510566830635, + 0.014928503893315792, + -0.004098564386367798, + -0.016184862703084946, + -0.021259568631649017, + 0.026161834597587585, + 0.02751673199236393, + 0.048382148146629333, + 0.02973383665084839, + 0.009342632256448269, + 0.025496702641248703, + -0.0194612517952919, + -0.0017336525488644838, + 0.04217425733804703, + -0.04485941678285599, + 0.05188024789094925, + -0.009989287704229355, + 0.08962029218673706, + -0.02510255016386509, + -0.01579071208834648, + -0.03118727169930935, + 0.020840782672166824, + 0.06646386533975601, + -0.041533760726451874, + 0.03291168436408043, + 0.08622073382139206, + -0.010722164064645767, + 0.05941840261220932, + 0.06759705394506454, + -0.04949070140719414, + 0.008480424992740154, + -0.004261767491698265, + -0.02897016704082489, + 0.01052508782595396, + -0.040819358080625534, + -0.01556900143623352, + 0.08050552755594254, + -0.017120974138379097, + 0.047101154923439026, + -0.015778394415974617, + -0.043479885905981064, + 0.03138434886932373, + 0.04306109622120857, + 0.08454558998346329, + 0.02630964107811451, + 0.01718256063759327, + -0.04862849414348602, + -0.02107481099665165, + 0.003667460521683097, + 0.04210035130381584, + -0.044218920171260834, + 0.030374333262443542, + 0.002719032345339656, + -0.06015743687748909, + -0.03315803036093712, + 0.07794354110956192, + 0.0015458145644515753, + 0.012391150929033756, + -0.015766076743602753, + -0.08104749023914337, + -0.037813950330019, + 0.027368923649191856, + 0.06789267063140869, + -0.014780697412788868, + -0.02485620602965355, + -0.09198520332574844, + -0.026605254039168358, + 0.1124318391084671, + 0.021358108147978783, + 0.04037593677639961, + 0.014053979888558388, + -0.05927059426903725, + -0.020483583211898804, + -0.006823755335062742, + -0.007113210391253233, + -0.049071915447711945, + 0.0876988023519516, + -0.07296737283468246, + -0.037641510367393494, + 0.05941840261220932, + 0.06129062548279762, + -0.001537346513941884, + -0.027812344953417778, + -0.04729823023080826, + -0.007889197207987309, + 0.03537513688206673, + 0.03281314671039581, + 0.060797933489084244, + -0.07917527109384537, + -0.049810949712991714, + 0.014324959367513657, + -0.042519137263298035, + -0.029881643131375313, + -0.02433888055384159, + 0.06257161498069763, + 0.003341053379699588, + 0.049293626099824905, + 0.06138916313648224, + -0.01827879622578621, + -0.012994696386158466, + -0.04254377260804176, + -0.050328273326158524, + 0.06286723166704178, + -0.1105596125125885, + 0.07168637961149216, + -0.01800781674683094, + -0.01666523516178131, + 0.01935039646923542, + -0.06168477609753609, + 0.05887644365429878, + 0.029364317655563354, + -0.017552077770233154, + 0.0040893261320889, + 0.05503346398472786, + -0.06055159121751785, + 0.0240063164383173, + 0.003775236429646611, + -0.03653295710682869, + 0.03480854257941246, + 0.03596636280417442, + -0.039612267166376114, + 0.03776467964053154, + 0.06498579680919647, + 0.05276709049940109, + 0.0457216240465641, + 0.03387242928147316, + -0.022873129695653915, + 0.013610558584332466, + 0.033946335315704346, + 0.0038799329195171595, + -0.036902472376823425, + -0.018943926319479942, + -0.032295823097229004, + 0.03187703713774681, + -0.05601884052157402, + 0.04426818713545799, + 0.01523643545806408, + 0.021173348650336266, + 0.02044663019478321, + -0.008492742665112019, + -0.00207237689755857, + 0.01301933079957962, + -0.016271084547042847, + -0.07818988710641861, + -0.034980982542037964, + 0.05163390189409256, + 0.05863009765744209, + -0.013795317150652409, + 0.03976007550954819, + -0.02375997044146061, + -0.051732439547777176, + 0.04700261726975441, + 0.04774165153503418, + -0.04582016170024872, + -0.03840517997741699, + 0.13115406036376953, + -0.06892731785774231, + 0.03774004802107811, + -0.029659932479262352, + -0.010328012518584728, + 0.01641889102756977, + -0.07754939049482346, + -0.039809346199035645, + -0.044465262442827225, + 0.07424836605787277, + 0.06217746436595917, + -0.035892460495233536, + 9.651718573877588e-05, + -0.010605149902403355, + -0.015125580132007599, + -0.06257161498069763, + -0.04680554196238518, + -0.05754617974162102, + -0.06015743687748909, + 0.027615269646048546, + 0.015211801044642925, + -0.0793723464012146, + -0.01825416088104248, + 0.09252716600894928, + 0.05887644365429878, + 0.04692871496081352, + 0.005515047814697027, + 0.07301664352416992, + 0.017367318272590637, + 0.05119048058986664, + 0.005327209830284119, + -0.06927219778299332, + -0.005884564947336912, + -0.08927541226148605, + -0.0038706951308995485, + 0.05133828893303871, + 0.0015396559610962868, + -0.1050414890050888, + -0.025040963664650917, + 0.00827719084918499, + 0.05917205661535263, + -0.024289611726999283, + 0.007796817924827337, + -0.016344986855983734, + 0.023686068132519722, + 0.054146621376276016, + -0.0026620652060955763, + 0.0237107016146183, + -0.021801527589559555, + 0.04586942866444588, + -0.050254371017217636, + 0.027960151433944702, + -0.008874576538801193, + 0.0149777727201581, + 0.02557060681283474, + -0.03998178616166115, + -0.042519137263298035, + -0.12120171636343002, + -0.018894657492637634, + 0.08833929896354675, + -0.08109676092863083, + -0.003929201979190111, + 0.05074705928564072, + -0.027812344953417778, + -0.0470765195786953, + 0.006466554943472147, + 0.04621431231498718, + 0.03113800287246704, + -0.0030023290310055017, + 0.03259143605828285, + 0.02704867534339428, + 0.031310442835092545, + -0.04473624378442764, + -0.029388953000307083, + 0.049589239060878754, + -0.017305733636021614, + 0.02156750112771988, + 0.012600543908774853, + -0.0025342737790197134, + 0.037099551409482956, + 0.0270240418612957, + -0.04072082042694092, + 0.030867023393511772, + 0.09070421010255814, + -0.10760347545146942, + -0.021062493324279785, + 0.02521340548992157, + 0.059319864958524704, + 0.016751457005739212, + -0.023316549137234688, + -0.009336473420262337, + 0.013351896777749062, + 0.008314142003655434, + -0.012699082493782043, + -0.07769719511270523, + -0.04485941678285599, + -0.0574476420879364, + -0.030596043914556503, + 0.03990788385272026, + 0.01677609048783779, + 0.046386756002902985, + 0.034759271889925, + 0.0852353572845459, + 0.015433511696755886, + 0.033256568014621735, + -0.10228242725133896, + 0.08301825076341629, + 0.06355699896812439, + 0.026728427037596703, + 0.017995499074459076, + -0.05715202912688255, + 0.05449150502681732, + -0.0880436897277832, + -0.05365392938256264, + 0.06877951323986053, + -0.07705669850111008, + 0.01696084998548031, + -0.031039463356137276, + -0.046115774661302567, + 0.0024326564744114876, + -0.005758313462138176, + -0.02869918756186962, + 0.048308245837688446, + 0.020643707364797592, + 0.01704706996679306, + -0.027566000819206238, + 0.04695334658026695, + 0.007685962598770857, + 0.02181384526193142, + -0.0012163282372057438, + -0.028625283390283585, + 0.030398966744542122, + -0.05572322756052017, + 0.04168156534433365, + 0.018574409186840057, + -0.010463502258062363, + 0.012286454439163208, + -0.01742890477180481, + 0.014546669088304043, + -0.034907080233097076, + 0.0361141711473465, + 0.015371925197541714, + 0.010869971476495266, + 0.03392169997096062, + -0.0379863902926445, + 0.003424194874241948, + -0.0282557662576437, + 0.0994248241186142, + 0.04338134452700615, + -0.029635297134518623, + -0.007390348706394434, + -0.0470765195786953, + 0.028674552217125893, + 0.03431585058569908, + -0.010007763281464577, + 0.018574409186840057, + 0.00736571429297328, + -0.02874845638871193, + -0.040548380464315414, + 0.09981897473335266, + 0.025028647854924202, + -0.041780102998018265, + 0.037813950330019, + -0.03741979971528053, + -0.001595083624124527, + 0.0814909115433693, + 0.028157228603959084, + -0.004046215675771236, + 0.0107283229008317, + -0.0018352698534727097, + 0.03741979971528053, + -0.09435011446475983, + 0.04717505723237991, + -0.0011239488376304507, + 0.004486557561904192, + 0.04744603857398033, + 0.049047280102968216, + 0.039784710854291916, + -0.03207411244511604, + -0.033823162317276, + -0.061536967754364014, + 0.057595450431108475, + 0.012982378713786602, + 0.025644509121775627, + -0.04990948736667633, + 0.032246556133031845, + 0.02151823230087757, + 0.001193233416415751, + -0.01508862804621458, + 0.06301503628492355, + 0.03530123084783554, + 0.03337974101305008, + -0.012114012613892555, + -0.005130133591592312, + 0.011190219782292843, + -0.06907512247562408, + 0.019338078796863556, + -0.025890855118632317 + ] + }, + { + "id": "55057b76-812d-4a37-ba9e-36d6f0019165", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer + (Silver)", + "description": "This Luxe Computer + (Silver) is for sale, only available for one lucky buyer, to support the Kickstarter campaign and help us make this a reality. This will be our best reward yet! Please enter the code SEQUENCE10 after you receive your voucher!\n", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-03-18T15:28:10", + "price": 160.11, + "stock": 90, + "priceHistory": [ + { + "priceDate": "2021-02-16T11:28:14", + "newPrice": 145.8 + }, + { + "priceDate": "2022-01-23T11:28:14", + "newPrice": 165.07 + }, + { + "priceDate": "2022-12-30T11:28:14", + "newPrice": 144.37 + }, + { + "priceDate": "2023-12-23T11:28:14", + "newPrice": 160.11 + } + ], + "descriptionVector": [ + -0.021127905696630478, + 0.016262827441096306, + -0.044275280088186264, + -0.015100103802978992, + 0.0060736993327736855, + -0.11345731467008591, + -0.005243728868663311, + 0.08524597436189651, + -0.002847524592652917, + 0.13830287754535675, + 0.03962438553571701, + -0.07747408747673035, + 0.05158819630742073, + -0.04057292267680168, + 0.0055076368153095245, + 0.016262827441096306, + -0.017777428030967712, + 0.04041993245482445, + -0.05437261238694191, + -0.029970722272992134, + 0.024447787553071976, + -0.007737464737147093, + -0.011856717988848686, + 0.02675793506205082, + 0.005672100931406021, + -0.061410147696733475, + -0.022321227937936783, + 0.010869933292269707, + 0.021969350054860115, + -0.02531982958316803, + 0.09265068918466568, + 0.03567724674940109, + -0.013310122303664684, + -0.010854633525013924, + 0.03252565488219261, + -0.037666115909814835, + 0.017838623374700546, + -0.03457571938633919, + 0.06030862033367157, + 0.03959378972649574, + -0.03289283066987991, + -0.04519321769475937, + -0.024310097098350525, + -0.04653953015804291, + 0.028945690020918846, + -0.0027366068679839373, + 0.03754372149705887, + -0.015987444669008255, + -0.008697476238012314, + -0.053760651499032974, + 0.0034958194009959698, + 0.06088998168706894, + -0.022198835387825966, + 0.04959932714700699, + -0.03619741275906563, + -0.006547967903316021, + 0.00506014097481966, + 0.058717526495456696, + 0.0008505282457917929, + -0.01681359112262726, + -0.03194429352879524, + 0.01452639140188694, + -0.009011105634272099, + 0.03344359248876572, + -0.006941916886717081, + -0.020317059010267258, + 0.0028647358994930983, + 0.054036036133766174, + -0.0019181109964847565, + 0.04390810430049896, + -0.023269765079021454, + -0.0075041549280285835, + 0.053944241255521774, + 0.05850334092974663, + 0.03849226236343384, + 0.03836986795067787, + 0.051741186529397964, + 0.04268418252468109, + 0.073557548224926, + -0.06786632537841797, + 0.08989687263965607, + -0.004891852382570505, + -0.028364328667521477, + -0.030521485954523087, + 0.06584685295820236, + 0.011856717988848686, + -0.03549365699291229, + -0.15837515890598297, + -0.0677439272403717, + 0.028578514233231544, + -0.043602123856544495, + 0.0662752240896225, + -0.01173432543873787, + -0.051557596772909164, + -0.019506212323904037, + 0.03855345770716667, + -0.030322600156068802, + 0.012070903554558754, + -0.047610457986593246, + -0.07055894285440445, + -0.004344913177192211, + -0.057860784232616425, + 0.008154362440109253, + -0.018817758187651634, + -0.0003490082162898034, + 0.012529873289167881, + 0.047794047743082047, + 0.01475587673485279, + -0.012606368400156498, + -0.17036956548690796, + 0.02868560701608658, + -0.015298990532755852, + -0.01519954763352871, + -0.03194429352879524, + 0.016890086233615875, + 0.04767165333032608, + -0.03454511985182762, + -0.03341299667954445, + 0.013065338134765625, + -0.013095935806632042, + 0.02576350048184395, + -0.040144551545381546, + 0.013302472420036793, + -0.00957716815173626, + 0.03570784255862236, + 0.004670016933232546, + -0.009684260934591293, + -0.003237648867070675, + 0.013799689710140228, + -0.009493024088442326, + -0.06603044271469116, + -0.01982749253511429, + -0.024891458451747894, + 0.07055894285440445, + -0.008697476238012314, + 0.018924850970506668, + 0.05140461027622223, + 0.05724882334470749, + -0.05122102051973343, + 0.015551423653960228, + -0.06523489952087402, + 0.027629977092146873, + 0.012782306410372257, + -0.022994382306933403, + -0.07031416147947311, + 0.044183485209941864, + -0.06263406574726105, + 0.08071747422218323, + -0.043877504765987396, + 0.12471736967563629, + 0.0011302129132673144, + -0.0024268024135380983, + -0.04926275089383125, + -0.03965498507022858, + 0.030567383393645287, + 0.056024905294179916, + -0.10030018538236618, + -0.014962413348257542, + 0.0518941767513752, + 0.04705969616770744, + -0.04204162582755089, + 0.028853897005319595, + -0.045438002794981, + 0.04277597740292549, + -0.028364328667521477, + 0.0830429196357727, + 0.06639762222766876, + 0.03457571938633919, + -0.1026868224143982, + 0.03827807307243347, + -7.613638445036486e-05, + -0.033351801335811615, + 0.023193269968032837, + -0.06817230582237244, + 0.05373005568981171, + 0.02761467732489109, + 0.08420564234256744, + 0.06248107925057411, + 0.020852524787187576, + -0.07943236082792282, + -0.02042415179312229, + 0.08016671240329742, + -0.0597272589802742, + 0.017257262021303177, + 0.04332674294710159, + -0.038431063294410706, + 0.10140170902013779, + -0.06456173956394196, + 0.06896784901618958, + 0.008980507962405682, + -0.0005249466048553586, + -0.023285062983632088, + 0.018680067732930183, + 0.04476484656333923, + 0.0040542325004935265, + 0.021479783579707146, + 0.0005086914170533419, + 0.05428081750869751, + 0.06462293863296509, + 0.030659176409244537, + 0.017471447587013245, + 0.08151302486658096, + 0.04467305168509483, + -0.0022298279218375683, + -0.03889003396034241, + -0.02177046425640583, + 0.006918968632817268, + 0.020362956449389458, + -7.52997175368364e-06, + 0.003054060973227024, + -0.057095833122730255, + 0.0589929074048996, + 0.03142412751913071, + 0.014633484184741974, + 0.04320434853434563, + -0.0011761098867282271, + 0.006830999162048101, + 0.015138351358473301, + -0.03937960043549538, + -0.04862019419670105, + 0.013661998324096203, + -0.08261454850435257, + -0.017165467143058777, + -0.01968980021774769, + 0.016584105789661407, + -0.02177046425640583, + 0.04109308868646622, + 0.08041149377822876, + 0.023667538538575172, + 0.007041360251605511, + -0.06517370045185089, + 0.0027079214341938496, + -0.012552822008728981, + 0.024707870557904243, + -0.006762153934687376, + 0.04739627242088318, + -0.027323996648192406, + -0.03512648120522499, + -0.009707209654152393, + 0.075209841132164, + 0.00836089812219143, + 0.023942921310663223, + -0.02167866937816143, + 0.003180277766659856, + -0.024264199659228325, + -0.002966091735288501, + 0.05373005568981171, + 0.022045845165848732, + -0.07000818103551865, + 0.03809448704123497, + -0.046845510601997375, + 0.044550660997629166, + -0.09026404470205307, + 0.05779958516359329, + -0.024050014093518257, + 0.07423070073127747, + 0.09191633760929108, + 0.07790245860815048, + 0.013684947043657303, + 0.028578514233231544, + -0.00033729494316503406, + -0.07049775123596191, + -0.07453668117523193, + 0.002210704144090414, + -0.07998312264680862, + 0.04635594040155411, + 0.026956820860505104, + -0.09509852528572083, + 0.043510328978300095, + -0.02177046425640583, + -0.0012076640268787742, + -0.06364379823207855, + 0.03264804556965828, + -0.01673709601163864, + -0.05458679795265198, + 0.02450898289680481, + -0.07129329442977905, + 0.07906518131494522, + -0.040450531989336014, + -0.03989976644515991, + -0.021617474034428596, + 0.029435258358716965, + 0.05036427825689316, + -0.04767165333032608, + 0.03491229563951492, + -0.06860067695379257, + 0.022382423281669617, + -0.03076627105474472, + -0.06419456750154495, + 0.03085806407034397, + -0.03234206512570381, + 0.022611908614635468, + 0.046264149248600006, + 0.023376857861876488, + 0.0682946965098381, + 0.0009896534029394388, + 0.01789981871843338, + -0.008467990905046463, + -0.06921263039112091, + -0.015276041813194752, + -0.0368705689907074, + -0.03332120180130005, + -0.04898736998438835, + 0.01727255992591381, + -0.03849226236343384, + 0.13707895576953888, + 0.026681439951062202, + -0.027813564985990524, + -0.004015984944999218, + 0.04087890312075615, + 0.11186622083187103, + -0.06578566133975983, + -0.020454751327633858, + -0.012086202390491962, + 0.075209841132164, + -0.04871198534965515, + 0.0528121143579483, + 0.030995754525065422, + -0.00832265056669712, + -0.013294822536408901, + 0.004647068213671446, + -0.009860199876129627, + -0.1189037561416626, + 0.030873363837599754, + 0.034330934286117554, + -0.018725965172052383, + -0.03072037361562252, + 0.0819413959980011, + -0.07037536054849625, + -0.005021893884986639, + -0.05581071972846985, + -0.019812192767858505, + 0.03889003396034241, + 0.03635040298104286, + 0.03638099879026413, + 0.019230831414461136, + -0.003120994195342064, + 0.06951861083507538, + 0.016981879249215126, + 0.021785762161016464, + 0.07129329442977905, + 0.027002718299627304, + -0.025748200714588165, + 0.010357416234910488, + -0.019842790439724922, + -0.06156313791871071, + 0.025656407698988914, + -0.028945690020918846, + 0.05382185056805611, + 0.019261429086327553, + 0.002017554361373186, + -0.02050064690411091, + 0.08224737644195557, + -0.01627812534570694, + 0.11823060363531113, + -0.0003545063082128763, + 0.05535174906253815, + -0.03185249865055084, + -0.051251620054244995, + 0.029251670464873314, + -0.06688718497753143, + -0.02369813621044159, + 0.021387988701462746, + 0.021663371473550797, + -0.08463401347398758, + -0.015773259103298187, + 0.018649470061063766, + 0.04975231736898422, + -0.006934267468750477, + 0.02118910290300846, + -0.0036182112526148558, + -0.0377885065972805, + -0.06823349744081497, + 0.009508322924375534, + -0.002924019703641534, + 0.002153333043679595, + 0.013799689710140228, + 0.04825301840901375, + -0.030200207605957985, + 0.06205270439386368, + -0.026819130405783653, + -0.002847524592652917, + 0.016477013006806374, + 0.02496795356273651, + 0.02253541350364685, + -0.044458866119384766, + -0.04709029197692871, + -0.01889425329864025, + -0.029083380475640297, + -0.0073014432564377785, + -0.010984675027430058, + 0.019858090206980705, + -0.0826757475733757, + 0.030613280832767487, + 0.06107357144355774, + 0.004639418795704842, + 0.009462425485253334, + 0.05513756349682808, + 0.039104219526052475, + -0.043969299644231796, + 0.014495793730020523, + 0.02617657370865345, + -0.02446308545768261, + -0.030031919479370117, + -0.015956846997141838, + -0.045805178582668304, + 0.0031477673910558224, + -0.04100129380822182, + -0.04690670594573021, + -0.12110681086778641, + -0.007018411997705698, + -0.007389412727206945, + -0.001357785426080227, + 0.0009408879559487104, + 0.029572948813438416, + 0.008682177402079105, + 0.07790245860815048, + -0.01646171323955059, + 0.001322406460531056, + -0.0017393040470778942, + 0.04280657693743706, + 0.030200207605957985, + -0.016171032562851906, + 0.051924772560596466, + -0.0035206801258027554, + -0.037941496819257736, + 0.03000131994485855, + -0.010043787769973278, + 0.005886286497116089, + -0.03485110029578209, + -0.016630003228783607, + -0.0064676483161747456, + -0.01704307645559311, + -0.027400491759181023, + -0.003924190998077393, + 0.02747698687016964, + 0.032403260469436646, + 0.03503469005227089, + 0.012109151110053062, + 0.09571048617362976, + 0.027354596182703972, + -0.04332674294710159, + -0.028792699798941612, + 0.010059086605906487, + -0.0298636294901371, + -0.0009963468182832003, + -0.10697054117918015, + 0.024401890113949776, + 0.056514471769332886, + -0.048375409096479416, + -0.04865079000592232, + -0.044458866119384766, + -0.07686212658882141, + 0.009997890330851078, + 0.019093140959739685, + -0.06541848182678223, + -0.019139036536216736, + 0.05428081750869751, + 0.008460341952741146, + 0.030184907838702202, + 0.035952627658843994, + 0.04253119230270386, + 0.06394977867603302, + -0.02397351898252964, + 0.0072899688966572285, + 0.00914879608899355, + -0.027675874531269073, + 0.014870619401335716, + 0.00609282311052084, + 0.014067421667277813, + -0.011680779047310352, + -0.04794703796505928, + 0.020990215241909027, + -0.02411120943725109, + -0.0014840021030977368, + -0.036809369921684265, + -0.004214872140437365, + -0.003331355284899473, + -0.03482050448656082, + 0.027553481981158257, + 0.010456860065460205, + -0.010617499239742756, + 0.021739866584539413, + 0.011856717988848686, + 0.07710691541433334, + -0.016048641875386238, + 0.03840046748518944, + 0.023132074624300003, + 0.062266893684864044, + 0.07814724743366241, + -0.009049353189766407, + -0.004180449061095715, + 0.0018397036474198103, + -0.004471130203455687, + -0.04103189334273338, + -0.02860911190509796, + -0.04268418252468109, + -0.023330960422754288, + -0.03264804556965828, + 0.06437814980745316, + 0.00978370476514101, + -0.05798317492008209, + -0.025212736800312996, + 0.0447036512196064, + 0.04228641092777252, + 0.0009867849294096231, + -0.020699534565210342, + 0.102870412170887, + 0.017471447587013245, + 0.035279471427202225, + 0.013891483657062054, + -0.027507584542036057 + ] + }, + { + "id": "5d2d8b99-89d9-4559-a766-27185325b256", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "monique36", + "reviewDate": "2022-06-02T07:08:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7cd32d4b-b625-404d-831c-49223ea15e40", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaeladrake", + "reviewDate": "2022-07-26T01:09:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ff81c100-db52-4742-afe1-6540bd658273", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "gpeters", + "reviewDate": "2021-02-16T11:28:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e982c32a-84fd-47ff-bcce-65791250cd85", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "susan27", + "reviewDate": "2022-06-23T13:39:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fc28dfbb-77ae-4843-9e22-7798816ff6da", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "wallacekatie", + "reviewDate": "2022-11-08T11:58:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ab365f97-89d4-42a3-b0b0-15cd252488d7", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael71", + "reviewDate": "2022-11-08T11:22:37", + "stars": 5, + "verifiedUser": true + }, + { + "id": "62ed09f5-dfc1-4fbd-95e2-be23a639b574", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "cooperangela", + "reviewDate": "2022-12-30T15:51:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d71f3a91-190c-47a5-a3fe-0f4b3f46d026", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "elliotttodd", + "reviewDate": "2021-04-21T03:40:53", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f6e5c285-c7a4-4d54-a275-b57495e8db61", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "allenfowler", + "reviewDate": "2022-09-10T04:55:49", + "stars": 5, + "verifiedUser": true + }, + { + "id": "68af082c-ecfd-43d5-9f62-2adeca082df2", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "nporter", + "reviewDate": "2022-01-22T08:09:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9c74c9df-35dc-45f7-93bf-034f490f9c0f", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbrown", + "reviewDate": "2021-07-27T06:00:26", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4c2e9fe0-b0ad-4374-9c7a-a96b1b227827", + "productId": "55057b76-812d-4a37-ba9e-36d6f0019165", + "category": "Electronics", + "docType": "customerRating", + "userName": "eric18", + "reviewDate": "2021-06-07T20:25:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "21088234-be65-4a0f-88fb-022991d9349e", + "productId": "21088234-be65-4a0f-88fb-022991d9349e", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer + (Black)", + "description": "This Amazing Computer + (Black) is the first interactive TV show about the world's first quantum computer, created as one part of the first experiments at the MIT Physical Review in 1994. It has a full 4.8 billion units of computing power, with 1.6 teraflops of memory, and uses computer-sensing detectors", + "countryOfOrigin": "France", + "rareItem": true, + "firstAvailable": "2018-07-27T04:20:48", + "price": 455.38, + "stock": 31, + "priceHistory": [ + { + "priceDate": "2018-07-27T04:20:48", + "newPrice": 483.79 + }, + { + "priceDate": "2022-02-16T04:20:48", + "newPrice": 466.84 + }, + { + "priceDate": "2025-09-08T04:20:48", + "newPrice": 489.87 + }, + { + "priceDate": "2025-09-09T04:20:48", + "newPrice": 455.38 + } + ], + "descriptionVector": [ + 0.03578411042690277, + -0.0054077766835689545, + -0.03140803426504135, + -0.004303371533751488, + -0.019526159390807152, + -0.01934613101184368, + -0.008350549265742302, + 0.07721834629774094, + 0.10214535892009735, + 0.15421511232852936, + 0.0330144427716732, + -0.03614416718482971, + 0.05281756818294525, + 0.01375140156596899, + 0.01708885096013546, + 0.043788451701402664, + -0.005812840536236763, + 0.026865780353546143, + -0.0218803770840168, + -0.03730743005871773, + 0.014665392227470875, + 0.004687663167715073, + -0.07228833436965942, + 0.04641963541507721, + -0.04115726798772812, + 0.018293656408786774, + -0.027835164219141006, + -0.0026450329460203648, + -0.045284073799848557, + -0.021492624655365944, + 0.01410453487187624, + 0.01786435954272747, + -0.02175574190914631, + -0.03151882067322731, + 0.0038359903264790773, + -0.009181449189782143, + -0.03980012983083725, + -0.00854442548006773, + 0.042846765369176865, + 0.004677277058362961, + 0.07012799382209778, + 0.018999923020601273, + -0.0037148173432797194, + 0.025536339730024338, + 0.041184961795806885, + -0.016451828181743622, + -0.01940152421593666, + -0.09139904379844666, + -0.015773259103298187, + -0.011321018449962139, + -0.00462880777195096, + -0.002613874152302742, + 0.050712622702121735, + 0.05179279297590256, + -0.0423482246696949, + -0.002709081629291177, + 0.0358395054936409, + 0.10458266735076904, + 0.08353319019079208, + -0.07710755616426468, + 0.04600418731570244, + 0.06253910064697266, + -0.02786285988986492, + 0.009534582495689392, + 0.04016018658876419, + -0.035811807960271835, + -0.033152926713228226, + 0.0325435996055603, + -0.018293656408786774, + 0.02459465153515339, + -0.026422632858157158, + -0.004241053946316242, + 0.037639789283275604, + 0.03863687068223953, + 0.04168350249528885, + 0.03899692744016647, + 0.06492102146148682, + 0.053897738456726074, + -0.018833743408322334, + -0.01357137318700552, + 0.02276667207479477, + 0.05057413876056671, + -0.010303164832293987, + 0.004341454710811377, + 0.0745040699839592, + -0.011231004260480404, + -0.02034321241080761, + -0.1599760204553604, + 0.0316850021481514, + 0.028042888268828392, + -0.02602103166282177, + 0.08824162185192108, + 0.05229133367538452, + -0.04049254581332207, + 0.006394471041858196, + 0.04583800584077835, + -0.04963245242834091, + 0.023569874465465546, + -0.013696008361876011, + 0.02394377999007702, + 0.05126655474305153, + -0.0799880102276802, + 0.012671231292188168, + -0.06530877202749252, + -0.025120889768004417, + -0.06636124849319458, + -0.005947862286120653, + 0.032792869955301285, + 0.031851183623075485, + -0.03822141885757446, + -0.05445167422294617, + 0.0030345176346600056, + -0.058107636868953705, + 0.047222841531038284, + 0.02406841516494751, + 0.03473163768649101, + -0.03304214030504227, + 0.005113499704748392, + -0.06514259427785873, + -0.08403173089027405, + 0.000952073372900486, + 0.0039052318315953016, + -0.010503966361284256, + 0.07910171896219254, + -0.008385170251131058, + 0.024691591039299965, + -0.025979485362768173, + 0.025439400225877762, + 0.011390259489417076, + -0.04910621419548988, + -0.06841079890727997, + 0.04877385497093201, + -0.01692267134785652, + 0.0076789045706391335, + 0.0022867070510983467, + -0.04437008127570152, + 0.015828652307391167, + 0.05916010960936546, + -0.009126055985689163, + 0.016631856560707092, + -0.04124035686254501, + 0.01750430278480053, + -0.02175574190914631, + 0.011438729241490364, + -0.07777227461338043, + 0.011438729241490364, + -0.0605449415743351, + 0.04896773025393486, + -0.012608913704752922, + 0.023971477523446083, + 0.006051724776625633, + -0.0029981655534356833, + -0.08464105427265167, + -0.10220074653625488, + 0.018404444679617882, + 0.022628188133239746, + 0.0023490246385335922, + 0.026630358770489693, + -0.012394264340400696, + 0.05777527391910553, + -0.05755370110273361, + -0.0002468899474479258, + -0.05126655474305153, + 0.042375922203063965, + 0.0027540887240320444, + 0.0012325022835284472, + 0.11300245672464371, + 0.06220674514770508, + -0.08691218495368958, + 0.012117297388613224, + 0.08048655092716217, + 0.006574499420821667, + 0.00011781907960539684, + 0.021257201209664345, + 0.04259749501943588, + 0.014831571839749813, + 0.07838160544633865, + 0.06314843147993088, + -0.04777677357196808, + -0.09367017447948456, + -0.03595029190182686, + 0.057387519627809525, + 0.011383336037397385, + 0.07616586983203888, + 0.006425629835575819, + 0.005179279018193483, + 0.0475275032222271, + -0.004043715540319681, + 0.0009122593910433352, + -0.0005807647830806673, + 0.08691218495368958, + -0.056335046887397766, + 0.05098958685994148, + 0.006107117980718613, + 0.02761358954012394, + 0.02596563845872879, + 0.0006712117465212941, + -0.028112130239605904, + -0.02779361791908741, + -0.004057563841342926, + -0.024026870727539062, + 0.013453662395477295, + 0.060821909457445145, + -0.010780932381749153, + -0.008821392431855202, + -0.02488546632230282, + -0.014208396896719933, + -0.04151732474565506, + 0.06292685866355896, + 0.04666890576481819, + 0.026007182896137238, + 0.009458416141569614, + -0.030881797894835472, + -0.05126655474305153, + 0.030355561524629593, + -0.043206822127103806, + -0.035091694444417953, + 0.01049704197794199, + -0.05370386317372322, + -0.04819222539663315, + 0.06370236724615097, + -0.022157344967126846, + -0.001390892663039267, + -0.05276217684149742, + -0.01188880018889904, + -0.09527657926082611, + 0.0021101408638060093, + -0.004625345580279827, + -0.006837618071585894, + -0.04262519255280495, + -0.12264090031385422, + 0.0320727564394474, + -0.02660266123712063, + 0.039052318781614304, + -0.015994831919670105, + 0.020800206810235977, + 0.04475783556699753, + 0.007332696113735437, + -0.044674746692180634, + 0.09682759642601013, + 0.005691668018698692, + 0.014623846858739853, + -0.05110037326812744, + -0.015025448985397816, + 0.035451751202344894, + -0.014333032071590424, + 0.0165072213858366, + -0.00013307388871908188, + -0.037639789283275604, + -0.03448236733675003, + 0.005203513894230127, + 0.024442320689558983, + 0.02330675721168518, + 0.01112021692097187, + -0.017712026834487915, + -0.0012679885840043426, + 0.03644883260130882, + -0.04306833818554878, + -0.002664074534550309, + -0.03683658316731453, + -0.04500710591673851, + -0.05658431723713875, + -0.0007694484083913267, + 0.04088030010461807, + -0.06314843147993088, + 0.006588347721844912, + -0.014249942265450954, + -0.05093419551849365, + -0.03506399691104889, + 0.044093113392591476, + 0.004649579990655184, + 0.02052324078977108, + -0.00019149658328387886, + -0.030771011486649513, + 0.020717116072773933, + -0.0026415709871798754, + -0.04348378628492355, + 0.08491802215576172, + -0.020910993218421936, + -0.06652742624282837, + 0.019706187769770622, + 0.03129724785685539, + 0.008198217488825321, + -0.04229282960295677, + 0.010829402133822441, + -0.05971404165029526, + -0.0020218577701598406, + -0.00423066783696413, + -0.026588812470436096, + -0.03885844349861145, + -0.0016323730815201998, + 0.041960470378398895, + 0.07516878843307495, + 0.08868476748466492, + 0.02323751524090767, + 0.035036299377679825, + -0.009292236529290676, + -0.035396356135606766, + -0.005570495035499334, + 0.04445317015051842, + -0.026699598878622055, + -0.0722329393029213, + 0.03223893418908119, + -0.017905903980135918, + -0.09350398927927017, + 0.03802754357457161, + 0.04229282960295677, + -0.03376225382089615, + 0.011417956091463566, + 0.009042966179549694, + 0.029081514105200768, + -0.05855078250169754, + -0.059880223125219345, + -0.022960547357797623, + 0.022365069016814232, + -0.049410875886678696, + 0.07572272419929504, + 0.023348301649093628, + -0.011210231110453606, + -0.022448159754276276, + 0.029718538746237755, + 0.005539336241781712, + -0.13150383532047272, + 0.0865798220038414, + 0.05245751142501831, + 0.00033560587326064706, + -0.01668724976480007, + -0.005598191637545824, + -0.05943707749247551, + -0.0618743821978569, + 0.007588890381157398, + -0.01235964335501194, + 0.0067268311977386475, + 0.058938536792993546, + 0.04478553310036659, + -0.083754763007164, + 0.02779361791908741, + 0.08081891387701035, + 0.025688670575618744, + 0.08802004903554916, + 0.043206822127103806, + 0.035340964794158936, + 0.0805419459939003, + -0.0007131895399652421, + -0.04168350249528885, + -0.05400852486491203, + -0.008890634402632713, + -0.009084511548280716, + 0.016216406598687172, + -0.0014497480588033795, + 0.0018747190479189157, + -0.03132494539022446, + 0.03736282140016556, + -0.005348921287804842, + 0.043012943118810654, + 0.0018418292747810483, + 0.0081566721200943, + -0.015427051112055779, + -0.03016168437898159, + -0.010822477750480175, + -0.02969084121286869, + -0.012754321098327637, + 0.08320082724094391, + 0.054257795214653015, + -0.08663521707057953, + -0.03761209174990654, + -0.007997415959835052, + -0.01904146745800972, + 0.007581965997815132, + 0.009361477568745613, + 0.04478553310036659, + 0.07876935601234436, + -0.12718315422534943, + 0.029718538746237755, + -0.011854179203510284, + -0.08558274060487747, + -0.03919080272316933, + -0.062428317964076996, + 0.013876036740839481, + 0.03257129713892937, + -0.06724753975868225, + 0.05323302000761032, + 0.056335046887397766, + 0.0181551743298769, + 0.06530877202749252, + -0.06586270779371262, + -0.030771011486649513, + -0.08447487652301788, + -0.06060033664107323, + 0.06132045015692711, + -0.06303764134645462, + 0.011113292537629604, + -0.0722329393029213, + 0.0056501226499676704, + 0.08519499003887177, + -0.054257795214653015, + 0.04016018658876419, + 0.061652809381484985, + 0.0650871992111206, + -0.022018861025571823, + 0.032848261296749115, + 0.02820906974375248, + 0.038110632449388504, + -0.02110487036406994, + -0.04553334414958954, + -0.025300918146967888, + -0.03966164588928223, + -0.019955458119511604, + -0.01797514595091343, + -0.033208318054676056, + -0.019373828545212746, + -0.06974024325609207, + -0.04686278477311134, + -0.0069726393558084965, + 0.056279655545949936, + -0.013869112357497215, + 0.05553184449672699, + 0.023556025698781013, + -0.014859269373118877, + -0.05015868693590164, + -0.008620591834187508, + 0.09738152474164963, + 0.011604908853769302, + 0.01585634984076023, + -0.04287445917725563, + 0.03739051893353462, + 0.04209895431995392, + -0.02573021501302719, + -0.1071307584643364, + -0.06270528584718704, + 0.059049323201179504, + -0.008246686309576035, + -0.037999846041202545, + 0.04256979748606682, + -0.027115050703287125, + 0.037584394216537476, + 0.058273814618587494, + 0.030964888632297516, + -0.027655135840177536, + 0.032792869955301285, + 0.0040921843610703945, + -0.0058959308080375195, + -0.06065572798252106, + -0.005771295633167028, + -0.05381464958190918, + 0.050186384469270706, + -0.06292685866355896, + 0.006574499420821667, + 0.07245451211929321, + -0.03949546441435814, + -0.07577811926603317, + -0.03880304843187332, + 0.021603411063551903, + -0.024996254593133926, + 0.028887636959552765, + 0.015219326131045818, + -0.0269765667617321, + 0.03730743005871773, + -0.00647409912198782, + -0.015440898947417736, + 0.048164527863264084, + 0.02229582704603672, + 0.06065572798252106, + -0.002691771136596799, + 0.024234594777226448, + 0.007741222158074379, + -0.07649823278188705, + -0.05683358758687973, + -0.017670482397079468, + 0.025924092158675194, + 0.00033538948628120124, + -0.05916010960936546, + -0.021201808005571365, + 0.0684661939740181, + 0.006321767345070839, + -0.0735623836517334, + 0.04672430083155632, + 0.03611646965146065, + -0.028638366609811783, + -0.05220824107527733, + 0.024497713893651962, + 0.015274719335138798, + -0.041905079036951065, + -0.07433789223432541, + 0.015939438715577126, + 0.018141325563192368, + 0.03068792261183262, + -0.014665392227470875, + -0.021381836384534836, + 0.012878956273198128, + 0.007166516035795212, + -0.021423382684588432, + 0.025231676176190376, + 0.02809828147292137, + -0.02417920157313347, + -0.0022313138470053673, + -0.047638289630413055, + 0.0037148173432797194, + 0.004687663167715073, + 0.06586270779371262, + -0.0763874426484108, + -0.032266631722450256, + -0.06613967567682266, + 0.05938168242573738, + -0.03259899094700813, + 0.023099031299352646, + 0.09378095716238022, + -0.006010179407894611, + -0.03517478331923485, + -0.05716594681143761, + 0.03603338077664375, + -0.027405865490436554 + ] + }, + { + "id": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Ultra (Black)", + "description": "This Basic Speaker Ultra (Black) is the ultimate gift for a beginner. The ultra speaker package is complete with a fully padded backplate, four front side buttons and four removable front earcups. The speaker is comfortable inside the ear", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-11-25T01:44:51", + "price": 997.18, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-02-21T01:34:24", + "newPrice": 1001.31 + }, + { + "priceDate": "2021-10-02T01:34:24", + "newPrice": 1032.68 + }, + { + "priceDate": "2022-05-13T01:34:24", + "newPrice": 1071.51 + }, + { + "priceDate": "2022-12-22T01:34:24", + "newPrice": 1034.38 + }, + { + "priceDate": "2023-03-11T01:34:24", + "newPrice": 997.18 + } + ], + "descriptionVector": [ + -0.012654217891395092, + 0.010207168757915497, + -0.029850352555513382, + -0.014500130899250507, + -0.03468373045325279, + 0.043986156582832336, + -0.07801410555839539, + 0.028247322887182236, + -0.01215023547410965, + 0.021883781999349594, + -0.06829877197742462, + -0.023571820929646492, + 0.02892739698290825, + -0.027081483975052834, + 0.017232567071914673, + -0.046123530715703964, + -0.013589317910373211, + -0.0558631494641304, + 0.011348720639944077, + 0.012969966046512127, + 0.09297571331262589, + -0.08214312046766281, + -0.07218490540981293, + -0.0059050992131233215, + -0.017220422625541687, + 0.03082188591361046, + 0.03808409348130226, + 0.05649464577436447, + 0.026862887665629387, + -0.019139200448989868, + 0.031647689640522, + 0.020523635670542717, + -0.026352833956480026, + 0.02513841725885868, + -0.08010289818048477, + 0.033712197095155716, + -0.07058187574148178, + -0.07704257220029831, + 0.06795873492956161, + -0.043864715844392776, + -0.00016679249529261142, + 0.0003504729538690299, + 0.013710759580135345, + -0.04483624920248985, + 0.010480412282049656, + 0.03650535270571709, + 0.00748687656596303, + 0.03895847499370575, + -0.0018292145105078816, + -0.028708800673484802, + -0.004930530209094286, + 0.0015939213335514069, + -0.01781548745930195, + 0.03781692311167717, + 0.039419952780008316, + 0.05761190876364708, + 6.987637607380748e-05, + 0.0853491798043251, + 0.07218490540981293, + -0.04527343809604645, + 0.06761869788169861, + -0.08899242430925369, + -0.047775138169527054, + 0.024713370949029922, + -0.044229041785001755, + 0.06800731271505356, + -0.0096424650400877, + 0.05838913470506668, + 0.029121702536940575, + 0.07485662400722504, + 0.037914078682661057, + 0.003570383880287409, + 0.017111126333475113, + 0.04333037510514259, + 0.0028128917329013348, + 0.014390832744538784, + 0.011184774339199066, + 0.07252494245767593, + -0.024276182055473328, + -0.00458745751529932, + 0.048285193741321564, + 0.013091407716274261, + 0.04515199735760689, + 0.0011256120633333921, + 0.08831235021352768, + 0.04112013429403305, + -0.014560851268470287, + -0.08923531323671341, + 0.007735831663012505, + 0.04316035658121109, + -0.014390832744538784, + 0.03504805266857147, + 0.07315643876791, + 0.010158591903746128, + 0.09817341715097427, + 0.028077304363250732, + -0.04719221591949463, + -0.0035794919822365046, + -0.07811125367879868, + 0.020462915301322937, + 0.09729903191328049, + -0.0012872812803834677, + -0.10298249870538712, + -0.01814338006079197, + 0.05814625322818756, + 0.035728126764297485, + 0.03261922299861908, + 0.018361974507570267, + -0.00974569097161293, + -0.1172640398144722, + 0.02790728583931923, + 0.012010577134788036, + 0.03461086377501488, + 0.007638678420335054, + 0.06305249780416489, + 0.04619639739394188, + -0.017426874488592148, + -0.03665108233690262, + -0.03577670454978943, + 0.006202631164342165, + 0.03745259717106819, + 0.014937320724129677, + 0.016953252255916595, + 0.02778584510087967, + -0.0409015417098999, + -0.025332724675536156, + -0.0015650789719074965, + 0.07169913500547409, + -0.0014588176272809505, + 0.0019749444909393787, + -0.031137634068727493, + 0.08714651316404343, + -0.0385698601603508, + 0.017439018934965134, + -0.03264351189136505, + -0.026328545063734055, + 0.018216244876384735, + -0.012065226212143898, + 0.007723687682300806, + 0.01453656330704689, + -0.010941890999674797, + 0.038788456469774246, + 0.013322146609425545, + 0.042334552854299545, + -0.025599895045161247, + -0.010972251184284687, + -0.029218856245279312, + 0.02348681166768074, + 0.011555170640349388, + 0.04697362333536148, + 0.013455732725560665, + -0.03261922299861908, + 0.006099405698478222, + -0.09375293552875519, + 0.03414938598871231, + 0.03604387491941452, + -0.07189344614744186, + 0.002014413010329008, + 0.01276351511478424, + 0.08515486866235733, + 0.01736615225672722, + 0.021908070892095566, + 0.012593496590852737, + 0.00997035764157772, + -0.01898132637143135, + 0.08131731301546097, + 0.08296892046928406, + 0.126590758562088, + -0.08617497980594635, + 0.03798694163560867, + -0.024009009823203087, + -0.059700705111026764, + 0.0073168580420315266, + -0.028077304363250732, + 0.021130843088030815, + -0.0427231639623642, + 0.06815304607152939, + 0.03354217857122421, + -0.06577278673648834, + -0.020280752331018448, + -0.02931600995361805, + 0.09307286143302917, + -0.004065258428454399, + -0.010838665068149567, + 0.034975189715623856, + 0.003688789438456297, + 0.033056411892175674, + -0.010280033573508263, + -0.03920135647058487, + -0.003336608875542879, + -0.017426874488592148, + -0.002302836859598756, + -0.02385113574564457, + 0.026061372831463814, + -0.02625568024814129, + -0.03512091934680939, + -0.006539631634950638, + 0.08369757235050201, + -0.0371854268014431, + -0.018361974507570267, + 0.021288717165589333, + 0.08034577965736389, + 0.09856202453374863, + 0.01859271340072155, + -0.01655249483883381, + -0.06042935326695442, + -0.004110799171030521, + 0.059700705111026764, + -0.0096424650400877, + -0.005185557529330254, + -0.03451371192932129, + -0.029145991429686546, + -0.07752833515405655, + -0.0049123140051960945, + 0.060477931052446365, + 0.0022648863960057497, + 0.009053473360836506, + -0.014913031831383705, + -0.016528205946087837, + -0.04699791222810745, + 0.020438626408576965, + 0.007383651100099087, + 0.06917314976453781, + -0.04175163060426712, + -0.06514129042625427, + -0.02226025052368641, + 0.058340560644865036, + 0.009921780787408352, + 0.04340323805809021, + 0.029267432168126106, + -0.019831418991088867, + 0.05416296795010567, + 0.06795873492956161, + -0.009946069680154324, + -0.008045507594943047, + 0.03638391196727753, + -0.021155131980776787, + -0.04947531968355179, + -0.024227604269981384, + 0.07451658695936203, + -0.06504413485527039, + 0.03201201185584068, + -0.0720391720533371, + -0.04209166765213013, + -0.007839057594537735, + 0.013492165133357048, + 0.09331575036048889, + -0.059312090277671814, + -0.016953252255916595, + -0.020924393087625504, + -0.13407155871391296, + 0.059846434742212296, + -0.030773308128118515, + 0.017038261517882347, + -0.06164377182722092, + 0.030044659972190857, + 0.08170592784881592, + -0.10278819501399994, + 0.015908854082226753, + 0.0048030163161456585, + -0.01952781341969967, + -0.017645468935370445, + -0.04294176027178764, + 0.012247388251125813, + -0.10890885442495346, + -0.03536380082368851, + 0.046876467764377594, + -0.026984330266714096, + 0.06538417190313339, + -0.051588404923677444, + -0.004866773262619972, + 0.03920135647058487, + 0.03283781558275223, + 0.009921780787408352, + 0.034853748977184296, + 0.04894097521901131, + -0.04318464174866676, + 0.04541916772723198, + -0.036116741597652435, + 0.03429511561989784, + 0.09895063936710358, + 0.06115800514817238, + 0.028635935857892036, + 0.037768345326185226, + 0.016528205946087837, + -0.02342609129846096, + 0.022029511630535126, + 0.034465134143829346, + 0.005240206141024828, + -0.06426691263914108, + -0.02895168401300907, + 0.031817708164453506, + 0.0006944943452253938, + 0.017584748566150665, + 0.07835414260625839, + 0.03997858613729477, + 0.02982606366276741, + -0.057563330978155136, + 0.0011286481749266386, + 0.049062419682741165, + -0.00521895382553339, + 0.03283781558275223, + -0.026620004326105118, + -0.06042935326695442, + 0.002979873912408948, + 0.1078401654958725, + -0.028344476595520973, + 0.04607495293021202, + -0.09248994290828705, + -0.02919456735253334, + 0.07179629057645798, + -0.031186209991574287, + -0.01814338006079197, + -0.005473981611430645, + 0.10327396541833878, + -0.028903108090162277, + 0.041557326912879944, + 0.00961210485547781, + 0.03567954897880554, + 0.02817445807158947, + -0.10822878032922745, + -0.02405758760869503, + -0.004435655660927296, + 0.08714651316404343, + 0.02108226716518402, + -0.05639749392867088, + 0.020317183807492256, + -0.029243145138025284, + 0.028611648827791214, + -0.035703837871551514, + -0.02501697652041912, + -0.028781665489077568, + -0.002721810480579734, + -0.06397545337677002, + 0.06120658293366432, + 0.026814311742782593, + -0.0035157352685928345, + -0.022272394970059395, + 0.038788456469774246, + -0.003922564443200827, + 0.10842308402061462, + 0.026109950616955757, + 0.024616219103336334, + -0.05207417160272598, + 0.022697441279888153, + -0.05003395304083824, + -0.019867850467562675, + -0.020742230117321014, + -0.07033899426460266, + -0.032692085951566696, + 0.0014823469100520015, + -0.04216453433036804, + 0.00824588630348444, + -0.019333507865667343, + 0.04172734543681145, + -0.050568293780088425, + 0.038011230528354645, + 0.023924000561237335, + 0.026620004326105118, + 0.015253068879246712, + -0.03468373045325279, + -0.029340296983718872, + -0.013115695677697659, + 0.012065226212143898, + 0.009077762253582478, + 0.05139409750699997, + 0.01440297719091177, + 0.0025426840875297785, + -0.017232567071914673, + -0.028223033994436264, + 0.01058971043676138, + -0.0470464862883091, + -0.038642726838588715, + -0.010692935436964035, + -0.014743014238774776, + 0.007590102031826973, + 0.02501697652041912, + -0.06285818666219711, + -0.005546846427023411, + 0.021458735689520836, + 0.0470464862883091, + -0.0015696330228820443, + 0.0486009418964386, + -0.013103552162647247, + 0.06917314976453781, + 0.014803734607994556, + -0.0967646911740303, + 0.028004439547657967, + 0.030044659972190857, + 0.03125907480716705, + -0.017159702256321907, + -0.028611648827791214, + -0.04471480846405029, + 0.09171272069215775, + -0.02474980428814888, + 0.059457823634147644, + -0.012350614182651043, + 0.10395403206348419, + -0.07621676474809647, + -0.008075868710875511, + 0.06946460902690887, + 0.038132671266794205, + -0.0011567315086722374, + -0.016091015189886093, + -0.11823557317256927, + -0.07986001670360565, + -0.004812124650925398, + 0.043840426951646805, + -0.008306607604026794, + -0.0515398271381855, + 0.041678767651319504, + 0.013346435502171516, + -0.03752546384930611, + -0.02039005048573017, + 0.0007187826558947563, + 0.03932280093431473, + -0.012484199367463589, + 0.019212065264582634, + 0.011209062300622463, + 0.018167667090892792, + 0.043208930641412735, + 0.0320848785340786, + -0.007414011284708977, + -0.04949960857629776, + 0.015593104995787144, + 0.02640140987932682, + -0.0023650757502764463, + -0.06368399411439896, + -0.03886132314801216, + -0.040027160197496414, + -0.04114442318677902, + -0.016018150374293327, + -0.015435230918228626, + -0.012557064183056355, + -0.034319404512643814, + -0.06985322386026382, + 0.013322146609425545, + 0.045637764036655426, + -0.06183807924389839, + 0.017256855964660645, + 0.015714546665549278, + -0.02499268762767315, + -0.00018757038924377412, + 0.061740923672914505, + -0.05620318651199341, + -0.06538417190313339, + -0.04075581207871437, + 0.009429942816495895, + 0.038399841636419296, + 0.020268607884645462, + 0.01940637268126011, + -0.00933886133134365, + -0.03176913037896156, + -0.007073975168168545, + 0.036991119384765625, + 0.01637033186852932, + 0.024373335763812065, + 0.0712619498372078, + -0.007924065925180912, + 0.03723400458693504, + -0.05736902728676796, + 0.11318360269069672, + 0.04381614178419113, + 0.006910028867423534, + -0.029777487739920616, + -0.015665970742702484, + -0.04240741580724716, + 0.032934971153736115, + -0.015872420743107796, + 0.025211282074451447, + 0.04087725281715393, + -0.0633925274014473, + 0.014864455908536911, + 0.007656894624233246, + -0.01426939107477665, + -0.02766440249979496, + -0.05902063101530075, + -0.07339932024478912, + 0.035460956394672394, + 0.05518307536840439, + -0.03349360078573227, + -0.02183520421385765, + 0.002003786852583289, + 0.033323582261800766, + 0.01136693637818098, + -0.05664037540555, + -0.04187307506799698, + 0.06766727566719055, + -0.0006493332330137491, + 0.03575241565704346, + 0.005431476980447769, + 0.10191381722688675, + 0.01586027629673481, + 0.00919313170015812, + -0.014572995714843273, + -0.0786941796541214, + 0.05294854938983917, + -0.0342465378344059, + -0.014487986452877522, + 0.10103943943977356, + -0.00525538669899106, + -0.019564246758818626, + 0.0034975188318639994, + -0.00191270571667701, + 0.02552703022956848, + 0.045516323298215866, + -0.06640428304672241, + -0.0002476270601619035, + 0.014451554045081139, + 0.041800208389759064, + 0.01694110780954361, + 0.020195743069052696 + ] + }, + { + "id": "46abd78c-32d6-4e39-889c-5ca4ccae2095", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "amberchandler", + "reviewDate": "2022-06-05T17:08:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0028752d-a2ea-4468-a427-f24b90e920a6", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "christophersmith", + "reviewDate": "2022-12-23T12:03:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "49846d63-e58d-4c80-9f7c-dc954889eb49", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "gina14", + "reviewDate": "2021-09-04T16:53:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ee3b8a83-cb87-4bfb-828a-0f300e2c88eb", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "brianna94", + "reviewDate": "2021-04-13T12:59:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7e117027-23bd-43ed-a700-0c5c0649c1c1", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "marshallstephen", + "reviewDate": "2022-06-22T07:55:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dd69b7ef-457f-47bf-a8c2-7037efae647c", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "rcarter", + "reviewDate": "2021-11-19T02:01:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "77a887ff-e2bd-4f2a-a967-35eaa0674e88", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "bonnie31", + "reviewDate": "2022-01-11T08:49:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fa973864-b438-4f05-b685-9d5d2c4599c4", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "lewistom", + "reviewDate": "2022-03-11T08:32:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0f7dcf9d-04bc-45b3-baea-28ee628a79d8", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "pturner", + "reviewDate": "2022-06-23T05:54:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c6fdad94-5322-4b12-adca-bcf664b58f3c", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "tararichards", + "reviewDate": "2021-03-02T15:51:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1183f7ef-fbb6-4f31-aa99-8f04789edebf", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "karen66", + "reviewDate": "2021-03-20T23:29:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2388fee4-5dd4-47c2-9e9b-31e162abadc1", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "phillip05", + "reviewDate": "2021-02-21T01:34:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ebdbbcf3-746b-48a3-8488-06ed08181411", + "productId": "5dbdefd1-9501-42f4-bb7a-62488680de7b", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonheather", + "reviewDate": "2022-12-20T04:24:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "product", + "name": "Basic Filter Mini (Black)", + "description": "This Basic Filter Mini (Black) is the perfect for all your Android smartphone cases and accessories!\n\nThis Basic Filter Mini will work with any number of Android smartphones that feature a 'Smartphone Cover,' with the following settings, to enable Android 3.1.2 Jelly Bean.\n\nThe Android 4.4.", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-06-28T06:36:48", + "price": 543.0, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-02-14T14:57:35", + "newPrice": 500.3 + }, + { + "priceDate": "2022-12-25T14:57:35", + "newPrice": 508.76 + }, + { + "priceDate": "2023-11-07T14:57:35", + "newPrice": 543.0 + } + ], + "descriptionVector": [ + -0.05293440446257591, + 0.011942791752517223, + -0.029542695730924606, + 0.008631585165858269, + 0.012919316999614239, + 0.025748837739229202, + -0.05001605302095413, + 0.007267817389219999, + 0.030934523791074753, + 0.023840686306357384, + -0.006931084208190441, + -0.0657302513718605, + -0.00868209544569254, + 0.039869166910648346, + 0.043079353868961334, + 0.027095770463347435, + -0.071522057056427, + 0.018363164737820625, + -0.01197646465152502, + -0.05369766429066658, + 0.03782632201910019, + -0.0723751112818718, + -0.07138736546039581, + 0.022403959184885025, + 0.0431242510676384, + 0.02698352560400963, + 0.006869350094348192, + -0.008283628150820732, + -0.043393637984991074, + 0.05580785498023033, + -0.010006577707827091, + -0.03764673322439194, + -0.013951963745057583, + 0.0896158367395401, + -0.08252199739217758, + -0.02148355543613434, + -0.027522297576069832, + 0.004638494923710823, + -0.0001774862757883966, + 0.06011803820729256, + 0.07951384782791138, + -0.03365083411335945, + -0.044224247336387634, + -0.012088709510862827, + -0.009793313220143318, + 0.0041081407107412815, + -0.012144831009209156, + -0.042944662272930145, + -0.02280803769826889, + -0.040026310831308365, + 0.025344759225845337, + -0.04669361934065819, + 0.018553979694843292, + -0.009131072089076042, + 0.02781413309276104, + 0.04435893893241882, + 0.016746846958994865, + 0.13514211773872375, + 0.024289662018418312, + -0.020181521773338318, + -0.012896868400275707, + -0.03234880045056343, + 0.07677508890628815, + -0.00659435149282217, + -0.024222316220402718, + 0.027791684493422508, + -0.03326920419931412, + -0.01098871510475874, + 0.008625973016023636, + 0.026242712512612343, + 0.03279777988791466, + 0.02622026391327381, + -0.033561039716005325, + 0.0033280430361628532, + 0.008199444971978664, + 0.017240721732378006, + 0.07632610946893692, + 0.05163237079977989, + 0.01660092920064926, + -0.0381181575357914, + -0.011864220723509789, + -0.02572638913989067, + -0.04527934268116951, + 0.023391708731651306, + -0.05109359696507454, + -0.01720704883337021, + 0.08288117498159409, + -0.08966073393821716, + -0.020473357290029526, + -0.033067166805267334, + -0.06195884197950363, + 0.022639671340584755, + 0.011718302965164185, + 0.020316215232014656, + 0.11583609879016876, + 0.06577514857053757, + -0.0126948282122612, + 0.032595738768577576, + -0.024379458278417587, + -0.029632490128278732, + 0.055044595152139664, + -0.035356950014829636, + 0.008395872078835964, + -0.02864474058151245, + 0.008957093581557274, + 0.007643835619091988, + -0.06406903266906738, + -0.05033033713698387, + -0.014513185247778893, + -0.0927586778998375, + -0.011965240351855755, + -0.06016293540596962, + -0.0330447182059288, + 0.028554944321513176, + -0.05154257267713547, + -0.03933039680123329, + -0.07367714494466782, + -0.0407671220600605, + 0.05908539146184921, + 0.012919316999614239, + 0.00040793779771775007, + 0.028891678899526596, + 0.0692322701215744, + -0.02523251436650753, + -0.06276699900627136, + -0.022538652643561363, + 0.035671234130859375, + 0.05405684560537338, + 0.07277919352054596, + -0.0966198742389679, + -0.02541210502386093, + 0.02992432564496994, + 0.06775064766407013, + -0.045346688479185104, + -0.023212118074297905, + -0.01574787311255932, + 0.04754667729139328, + 0.12077485024929047, + -0.03282022848725319, + 0.03133860230445862, + 0.02505292370915413, + 0.014580531977117062, + 0.026152918115258217, + 0.03430185094475746, + -0.03463858366012573, + -0.05154257267713547, + -0.002083534374833107, + -0.005455072037875652, + -0.020237643271684647, + -0.03367328271269798, + -0.06770575046539307, + -0.14816245436668396, + -0.046514030545949936, + -0.08705666661262512, + 0.06707718223333359, + 0.03151819482445717, + 0.013155030086636543, + -0.011684630066156387, + -0.06626902520656586, + 0.002884678076952696, + 0.05001605302095413, + -0.012661155313253403, + 0.0660894364118576, + -0.07933425903320312, + 0.007907609455287457, + 0.0065831271931529045, + -0.028824331238865852, + 0.03546919301152229, + -0.09832599014043808, + 0.010579023510217667, + 0.06002824008464813, + 0.031001871451735497, + -0.03820795193314552, + -0.01861010119318962, + -0.06954655796289444, + 0.023032527416944504, + 0.013626455329358578, + -0.007464244496077299, + 0.01699378341436386, + -0.024312110617756844, + 0.028038620948791504, + 0.008474443107843399, + -0.10568921267986298, + -0.01487236749380827, + 0.028869228437542915, + -0.037916116416454315, + 0.0527099147439003, + -0.03344879671931267, + -0.035648785531520844, + -0.017757045105099678, + -0.05154257267713547, + 0.00488823838531971, + 0.0014086657902225852, + 0.014614205807447433, + 0.08898726850748062, + -0.09091787040233612, + -0.033067166805267334, + -0.017813166603446007, + -0.04386506602168083, + -0.03369573503732681, + -0.013166254386305809, + 0.024963127449154854, + 0.06703228503465652, + -0.01197646465152502, + 0.06285680085420609, + -0.010876471176743507, + 0.0036760002840310335, + 0.0665833055973053, + 0.006218333262950182, + -0.06011803820729256, + 0.04254058375954628, + -0.027926377952098846, + -0.04316915199160576, + -0.024154968559741974, + 0.09886476397514343, + 0.04992625489830971, + 0.024020276963710785, + -0.039846718311309814, + -0.06528127193450928, + -0.024042725563049316, + 0.06052211672067642, + -0.08018731325864792, + -0.011044837534427643, + -0.00977647677063942, + 0.014894816093146801, + -0.063799649477005, + 0.050869107246398926, + 0.057828254997730255, + 0.06312618404626846, + 0.06599963456392288, + 0.029565144330263138, + 0.02142743393778801, + -0.0711628720164299, + -0.006195884197950363, + -0.001104203169234097, + 0.04135079309344292, + 0.008199444971978664, + -0.03338145092129707, + -0.05508949235081673, + 0.055718060582876205, + 0.012223402038216591, + -0.023189669474959373, + 0.0032719208393245935, + -0.04916299507021904, + 0.1138605996966362, + -0.027724336832761765, + -0.021932533010840416, + 0.08220770955085754, + -0.04283241927623749, + 0.014816245064139366, + -0.05939967557787895, + 0.022841710597276688, + -0.052305836230516434, + 0.06299149245023727, + -0.06200374290347099, + 0.038544684648513794, + -0.0032214107923209667, + -0.03026105836033821, + -0.04786096140742302, + 0.01642133854329586, + 0.017397863790392876, + 0.025434553623199463, + -0.049432381987571716, + -0.023346809670329094, + -0.025928428396582603, + 0.041328344494104385, + 0.006650473456829786, + -0.04723239317536354, + -0.0012964213965460658, + 0.0318998247385025, + 0.06321597844362259, + 0.06555066257715225, + -0.00044967865687794983, + 0.05095890536904335, + -0.047277290374040604, + -0.02622026391327381, + -0.09482397139072418, + 0.06483229994773865, + 0.01803765632212162, + 0.01736419089138508, + 0.0523507334291935, + 0.08755053579807281, + 0.08912196010351181, + -0.03463858366012573, + 0.03555898740887642, + 0.05158747360110283, + -0.04162018001079559, + -0.002999728312715888, + -0.014120331034064293, + -0.04045283794403076, + -0.04741198569536209, + 0.0028467955999076366, + -0.0030390138272196054, + -0.018206022679805756, + 0.018105002120137215, + -0.004321404732763767, + -0.02109070122241974, + -0.01415400393307209, + -0.000491068756673485, + 0.0881791040301323, + -0.08063629269599915, + -0.03219166025519371, + -0.01487236749380827, + -0.022089675068855286, + 0.02144988253712654, + 0.06447311490774155, + 0.004503801930695772, + 0.025210065767169, + -0.04090181738138199, + -0.03555898740887642, + 0.03814060613512993, + -0.0190254058688879, + -0.0876852348446846, + 0.022819261997938156, + -0.0019207802833989263, + -0.011437692679464817, + -0.06097109243273735, + 0.02408762276172638, + 0.0006236573099158704, + 0.0016036902088671923, + 0.02846514992415905, + 0.03603041544556618, + 0.024850884452462196, + 0.0846770852804184, + 0.027454951778054237, + -0.017319291830062866, + -0.030350854620337486, + -0.0018983314512297511, + -0.018003983423113823, + -0.020765192806720734, + -0.05706499144434929, + 0.0380508117377758, + 0.013334620743989944, + 0.012661155313253403, + -0.021057026460766792, + -0.042136501520872116, + 0.06936696916818619, + -0.0006275156629271805, + 0.020585600286722183, + 0.039577335119247437, + 0.052171140909194946, + 0.030171262100338936, + -0.0025002413894981146, + -0.018553979694843292, + -0.028195763006806374, + -0.06254251301288605, + 0.002013381803408265, + 0.017633575946092606, + 0.004660943988710642, + -0.0588609017431736, + 0.0012557328445836902, + -0.07830160856246948, + 0.023705992847681046, + -0.03360593691468239, + 0.051183391362428665, + 0.002626516157761216, + 0.032573290169239044, + 0.020080501213669777, + 0.004756351467221975, + 0.03380797803401947, + -0.04523444548249245, + -0.022953955456614494, + 0.061689458787441254, + -0.027140667662024498, + 0.02687128074467182, + 0.07655060291290283, + -0.0838240310549736, + 0.08099547028541565, + -0.09787701070308685, + -0.008816787973046303, + -0.03513246029615402, + 0.00259705213829875, + 0.02765699103474617, + 0.04128344729542732, + -0.012369319796562195, + -0.013828495517373085, + 0.07462000101804733, + -0.04646913334727287, + -0.018048880621790886, + 0.05315889045596123, + 0.00905811320990324, + 0.014367268420755863, + -0.058816004544496536, + -0.045548729598522186, + 0.03201206773519516, + -0.04570586979389191, + -0.08620360493659973, + 0.05809764191508293, + 0.014614205807447433, + 0.012010138481855392, + -0.036793675273656845, + -0.022639671340584755, + -0.062362924218177795, + 0.0607915036380291, + 0.011673404835164547, + 0.0073744491674005985, + -0.05904049053788185, + 0.06936696916818619, + 0.042630378156900406, + -0.01079228799790144, + 0.12463604658842087, + 0.005612214095890522, + 0.020866211503744125, + -0.010556574910879135, + -0.08171384036540985, + -0.0611506849527359, + -0.0009407473844476044, + 0.022920282557606697, + -0.024222316220402718, + -0.03416715934872627, + 0.030530445277690887, + -0.01088208332657814, + -0.07973833382129669, + -0.0012844954617321491, + 0.004102528560906649, + 0.018879488110542297, + -0.04523444548249245, + -0.011342284269630909, + 0.05288950726389885, + -0.004063243046402931, + 0.041171200573444366, + 0.0015531802782788873, + -0.03879162296652794, + -0.02747740037739277, + 0.021640697494149208, + 0.007161185145378113, + -0.0215284526348114, + 0.06716697663068771, + -0.05661601573228836, + -0.037444692105054855, + 0.06011803820729256, + -0.00128379394300282, + -0.036636535078287125, + -0.00917597021907568, + 0.019766217097640038, + 0.001089471043087542, + -0.05154257267713547, + 0.013671353459358215, + -0.09760762751102448, + -0.06254251301288605, + -0.04478546977043152, + -0.03816305473446846, + -0.06159966066479683, + 0.11691364645957947, + -0.1219421848654747, + -0.03223655745387077, + -0.04258548095822334, + -0.00454308744519949, + -0.005960171576589346, + -0.005415786523371935, + -0.04451608285307884, + 0.028016172349452972, + 0.005965783726423979, + -0.06195884197950363, + 0.048579324036836624, + -0.030687587335705757, + 0.09590151160955429, + 0.07421591877937317, + 0.07506897300481796, + -0.003381358925253153, + -0.034975316375494, + 0.02990187704563141, + -0.025524349883198738, + 0.02036111243069172, + -0.006150986533612013, + -0.06276699900627136, + -0.06092619523406029, + -0.013446864672005177, + -0.03605286404490471, + 0.018307041376829147, + -0.025165168568491936, + -0.06721187382936478, + 0.03490797057747841, + -0.009417295455932617, + 0.011404018849134445, + 0.026287611573934555, + -0.026242712512612343, + -0.006223945412784815, + 0.0639343410730362, + -0.024312110617756844, + -0.008412708528339863, + 0.1011994406580925, + -0.024491703137755394, + -0.03237124904990196, + 0.03706306219100952, + -0.019923359155654907, + -0.02085498720407486, + -0.0002437805524095893, + 0.04022835195064545, + 0.019014181569218636, + 0.00042968514026142657, + 0.05239563062787056, + -0.024536600336432457, + -0.018329491838812828, + -0.062318023294210434, + 0.025322310626506805, + 0.028756985440850258, + -0.0076494477689266205, + -0.00033550517400726676, + 0.039846718311309814, + -0.007570876739919186, + 0.0016556031769141555, + -0.03704061359167099, + -0.023638645187020302, + 0.006010681390762329, + 0.006061191204935312, + 0.028869228437542915, + -0.019216220825910568, + 0.023571299389004707, + -0.016387665644288063, + 0.01148258987814188, + 0.0273202583193779 + ] + }, + { + "id": "ef421e20-957c-492f-ab18-49198dce7e2a", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "loganburgess", + "reviewDate": "2021-10-02T18:03:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b279da4c-3206-4555-b6fd-5f2b49096a39", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "krandolph", + "reviewDate": "2021-07-09T14:53:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "92afa2a1-bbcb-4977-b5a1-42a83b9602c5", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "dennis39", + "reviewDate": "2021-05-10T13:47:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "088fdef9-2cbb-4d27-bba6-00546b5c0a5a", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "josephsalazar", + "reviewDate": "2022-06-22T15:02:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0b1cea69-39c8-4336-a603-0b8f88467607", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "oliverlarry", + "reviewDate": "2022-03-11T08:14:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c3d52102-5e13-48fa-8e0a-d68beff015dd", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "myersgregg", + "reviewDate": "2022-05-11T22:40:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b9d8f4f6-540e-41a2-b59c-2d22b4a0ff8e", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "jessica43", + "reviewDate": "2021-12-11T14:34:05", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ff7548bf-3884-40e5-884f-c51f680cd62f", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "briangallagher", + "reviewDate": "2021-03-16T16:39:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b7535f58-1f0e-478f-8052-97f39fd7df31", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "susan93", + "reviewDate": "2022-08-12T09:09:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0b576eef-7ad9-42a6-b81f-44064e27375a", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "anthonypatton", + "reviewDate": "2021-10-14T17:34:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8fc5b9d1-c9bc-4c6d-b6f5-243c9f9bc504", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "xfarmer", + "reviewDate": "2021-07-03T20:36:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d22898f7-8a29-46b3-8a74-7418bbffb09e", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "joanharris", + "reviewDate": "2022-06-13T13:01:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "90d7ee0d-5405-4338-9302-cad248d1c43a", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "davidbridges", + "reviewDate": "2022-12-11T12:17:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "67d2d527-8fea-4974-b214-1da720a0119f", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "andersonadrian", + "reviewDate": "2022-12-26T05:57:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f4d35e94-4dc3-4ab3-9fcc-7fbe5c3c51ed", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "wmolina", + "reviewDate": "2021-03-23T02:04:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "63be4b4f-7ef4-40e0-9f7a-e02891532fa3", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "jwatson", + "reviewDate": "2022-03-22T23:49:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a6bffce8-00c3-4c4d-b831-0de991ea16c5", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "qthomas", + "reviewDate": "2021-12-15T11:14:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ccb30c00-b2e0-4745-b61f-bed5ba03f390", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "wesleylopez", + "reviewDate": "2021-06-22T21:22:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b9eb8f7a-2924-491a-8a51-3bc6dfe96e5b", + "productId": "6fd6b96d-c35f-4a38-8ef7-3eaacad191f9", + "category": "Other", + "docType": "customerRating", + "userName": "tharrison", + "reviewDate": "2021-02-14T14:57:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e0c6c2ba-1074-46f9-b3b7-b0fef033a34f", + "productId": "e0c6c2ba-1074-46f9-b3b7-b0fef033a34f", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Micro (Red)", + "description": "This Luxe Computer Micro (Red) is an elegant and simple computer with a very simple interface. Not only does it have a standard LCD display, but also has an external", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-05-28T06:38:17", + "price": 551.61, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2021-04-21T20:54:49", + "newPrice": 540.09 + }, + { + "priceDate": "2021-04-22T20:54:49", + "newPrice": 577.55 + }, + { + "priceDate": "2021-04-23T20:54:49", + "newPrice": 557.98 + }, + { + "priceDate": "2021-04-24T20:54:49", + "newPrice": 553.39 + }, + { + "priceDate": "2021-04-25T20:54:49", + "newPrice": 566.02 + }, + { + "priceDate": "2023-08-05T20:54:49", + "newPrice": 551.61 + } + ], + "descriptionVector": [ + -0.03867700323462486, + 0.03821656480431557, + -0.023853378370404243, + 0.03555624186992645, + 0.02157675474882126, + -0.02813803218305111, + 0.014452716335654259, + 0.03732126206159592, + 0.06533139944076538, + 0.04906249791383743, + 0.045737091451883316, + -0.07581920921802521, + 0.048474155366420746, + -0.044867370277643204, + 0.07745633274316788, + 0.035709720104932785, + -0.058322466909885406, + -0.028419412672519684, + 0.008818714879453182, + 0.051953040063381195, + 0.05289950221776962, + -0.033356357365846634, + -0.07326120138168335, + 0.04635101556777954, + 0.005643594078719616, + 0.012719669379293919, + -0.012943495064973831, + 0.03322845697402954, + 0.030721615999937057, + -0.012860359624028206, + 0.06471747159957886, + 0.006059269420802593, + -0.06476863473653793, + -0.004048039671033621, + -0.01205458864569664, + -0.08978590369224548, + 0.0801166519522667, + -0.02941703423857689, + 0.08426062017679214, + 0.001578767434693873, + 0.013122554868459702, + 0.012860359624028206, + -0.01249584462493658, + -0.04947177693247795, + 0.016563069075345993, + -0.016332849860191345, + -0.00393292959779501, + -0.03192387521266937, + -0.02632185071706772, + -0.04333256930112839, + -0.017381630837917328, + 0.036042261868715286, + 0.03834446519613266, + -0.0016738931881263852, + -0.0009832323994487524, + 0.017829280346632004, + -0.0222674161195755, + 0.14375977218151093, + 0.02504284866154194, + -0.06855447590351105, + 0.02120584435760975, + 0.01585961878299713, + 0.0032214850652962923, + -0.016882820054888725, + -0.020745404064655304, + 0.011587753891944885, + -0.020591923967003822, + 0.024531248956918716, + 0.09899471700191498, + 0.07259612530469894, + -0.0697823241353035, + 0.029135653749108315, + 0.0049305506981909275, + -0.0017969970358535647, + 0.037142202258110046, + 0.03182155638933182, + 0.0013277634279802442, + -0.02703809179365635, + 0.055048223584890366, + -0.028214773163199425, + 0.08553961664438248, + -0.04962525889277458, + 0.016038678586483, + -0.03217967599630356, + 0.005819456651806831, + -0.009624485857784748, + 0.04640217497944832, + -0.09679482877254486, + -0.01078198291361332, + 0.10191083699464798, + -0.01177320908755064, + 0.08973474055528641, + 0.08134449273347855, + 0.010263986885547638, + 0.03565856069326401, + -0.032793596386909485, + -0.018903641030192375, + 0.05898754671216011, + 0.0027226745150983334, + -0.011479038745164871, + 0.04545571282505989, + -0.003725091926753521, + -0.008012943901121616, + -0.03583762049674988, + 0.05949914827942848, + 0.05146702006459236, + 0.06272223591804504, + -0.014964316971600056, + -9.947234502760693e-05, + -0.0976133942604065, + -0.0021743024699389935, + 0.053411103785037994, + -0.10022255778312683, + -0.030184434726834297, + -0.018302511423826218, + 0.039188604801893234, + -0.015603817999362946, + 0.016332849860191345, + 0.024045227095484734, + 0.04233494773507118, + 0.07622849196195602, + -0.04325582832098007, + 0.02066866308450699, + 0.023635948076844215, + -0.006193564739078283, + -0.0028170007281005383, + -0.0193512924015522, + -0.0785306915640831, + 0.08743254095315933, + 0.006426982581615448, + -0.057452745735645294, + 0.12104470282793045, + 0.03647712245583534, + 0.031668078154325485, + 0.0006546888616867363, + 0.08819994330406189, + 0.014145756140351295, + 0.017752541229128838, + 0.0069002131931483746, + 0.02444171905517578, + -0.02665439061820507, + 0.0023133938666433096, + -0.02517074905335903, + 0.0035748090595006943, + -0.05458778515458107, + -0.04312793165445328, + -0.03235873579978943, + -0.01570613868534565, + -0.03854910656809807, + 0.09797151386737823, + 0.049574095755815506, + -0.013365565799176693, + 0.027728751301765442, + -0.04443250969052315, + 0.055764466524124146, + 0.030389076098799706, + -0.036784082651138306, + 0.014823627658188343, + -0.04289770871400833, + 0.03194945678114891, + 0.009311131201684475, + 0.04051876813173294, + -0.035172540694475174, + -0.05274602025747299, + 0.013467885553836823, + 0.024416137486696243, + 0.017036300152540207, + -0.029519354924559593, + -0.13004887104034424, + 0.050315916538238525, + -0.042820971459150314, + -0.00285217328928411, + -0.02667997032403946, + 0.032409898936748505, + 0.03379121795296669, + 0.05238790065050125, + 0.06251759082078934, + 0.04716957360506058, + -0.005275880917906761, + -0.11101733148097992, + 0.016729339957237244, + 0.010973832570016384, + -0.059447988867759705, + 0.02338014729321003, + 0.0151433777064085, + -0.03670734167098999, + 0.026628810912370682, + 0.016371218487620354, + 0.033867958933115005, + -0.009733201004564762, + -0.03325403854250908, + 0.0009472604724578559, + 0.038804903626441956, + 0.030389076098799706, + -0.04384417086839676, + -0.023431306704878807, + 0.06927072256803513, + 0.08620470017194748, + -0.012540609575808048, + 0.005231115967035294, + 0.002773834392428398, + 0.0942368283867836, + 0.05709462612867355, + 0.043000031262636185, + -0.0576573871076107, + -0.039342086762189865, + 0.012930705212056637, + 0.039879266172647476, + 0.03650270402431488, + 0.04292329028248787, + -0.00371869676746428, + -0.0009560536127537489, + -0.036937564611434937, + 0.0438697524368763, + 0.055406343191862106, + -0.005710741505026817, + 0.035888779908418655, + -0.02175581455230713, + -0.035709720104932785, + -0.08528381586074829, + 0.05371806398034096, + -0.01828972063958645, + 0.012937099672853947, + -0.013800426386296749, + -0.023456886410713196, + -0.055764466524124146, + 0.10109227895736694, + 0.0008065702859312296, + 0.03338193893432617, + 0.049369458109140396, + -0.050494980067014694, + 0.021065155044198036, + 0.050853099673986435, + -0.013365565799176693, + -0.01296268031001091, + -0.0317448154091835, + -0.004166347440332174, + -0.059089869260787964, + 0.00932392105460167, + 0.04870437830686569, + -0.0442022904753685, + -0.04550687223672867, + -0.032588958740234375, + 0.02683345042169094, + 0.028777534142136574, + -0.022791806608438492, + 0.07361932843923569, + -0.059038709849119186, + -0.02538817934691906, + 0.002244647592306137, + 0.0074437884613871574, + -0.008403039537370205, + -0.0430767685174942, + 0.0610339492559433, + -0.03397027775645256, + 0.02665439061820507, + 0.04673471301794052, + -0.054127342998981476, + -0.029084494337439537, + -0.017419999465346336, + 0.02155117504298687, + -0.06190367043018341, + 0.002908129710704088, + 0.01305860560387373, + -0.013403935357928276, + 0.0008281534537672997, + 0.0704474002122879, + -0.12605838477611542, + 0.01660143956542015, + 0.022599956020712852, + 0.053769223392009735, + -0.0016435169382020831, + 0.08431177586317062, + 0.019261762499809265, + -0.033177297562360764, + 0.021858135238289833, + -0.07249380648136139, + 0.06993579864501953, + -0.09091142565011978, + -0.041925668716430664, + 0.04770675674080849, + 0.03013327531516552, + 0.009605301544070244, + -0.12759318947792053, + 0.028547313064336777, + -0.020681453868746758, + -0.03888164460659027, + -0.008511754684150219, + -0.05694114789366722, + -0.0008529341430403292, + -0.005032870918512344, + -0.037858445197343826, + 0.033356357365846634, + 0.01605146937072277, + 0.01972220279276371, + 0.050878677517175674, + 0.04801371693611145, + -0.026040470227599144, + -0.04635101556777954, + -0.03156575560569763, + 0.013403935357928276, + 0.011542988009750843, + -0.015539867803454399, + -0.06553603708744049, + -0.04972757771611214, + 0.043716270476579666, + 0.0257462989538908, + 0.09751107543706894, + -0.035172540694475174, + -0.021116314455866814, + 0.10114343464374542, + 0.024735888466238976, + -0.06768476217985153, + -0.054536622017621994, + 0.061085112392902374, + -0.034942321479320526, + 0.03256337717175484, + 0.020860513672232628, + 0.05499706417322159, + 0.02138490416109562, + 0.020029162988066673, + -0.07285192608833313, + -0.09797151386737823, + 0.09745991230010986, + 0.07351700216531754, + -0.04765559360384941, + -0.0616990327835083, + 0.03793518245220184, + -0.023469677194952965, + -0.03128437697887421, + -0.05555982515215874, + 0.02790781296789646, + 0.014849207364022732, + -0.033305197954177856, + 0.021768605336546898, + -0.057606227695941925, + 0.0026331443805247545, + 0.07407976686954498, + 0.017113039270043373, + 0.03299823775887489, + 0.07321004569530487, + 0.024390557780861855, + -0.06727547943592072, + -0.05637838691473007, + -0.005803469102829695, + -0.014721306972205639, + -0.012137724086642265, + 0.005365411285310984, + 0.045378971844911575, + 0.03266569972038269, + 0.0012550201499834657, + -0.04381858929991722, + 0.09157650917768478, + 0.0018561509205028415, + 0.002689100569114089, + -0.0012726064305752516, + 0.0652802363038063, + -0.03177039697766304, + -0.021333744749426842, + 0.08093521744012833, + -0.041362907737493515, + -0.034251660108566284, + 0.07970736920833588, + 0.053411103785037994, + -0.018021130934357643, + 0.0024828617461025715, + -0.030056534335017204, + 0.039930425584316254, + -0.001672294456511736, + 0.06921955943107605, + -0.00920881051570177, + -0.03890722617506981, + -0.1442713737487793, + 0.05310413986444473, + -0.02650091052055359, + 0.015348018147051334, + 0.017496740445494652, + 0.035326022654771805, + -0.0011199256405234337, + 0.028265932574868202, + -0.011638913303613663, + 0.014670146629214287, + -0.0016499118646606803, + 0.0002699892211239785, + 0.07868417352437973, + -0.08528381586074829, + -0.0293914545327425, + -0.03995600715279579, + 0.027984552085399628, + -0.024019647389650345, + 0.008984985761344433, + -0.00400966964662075, + 0.010654082521796227, + 0.0202465932816267, + 0.003002455923706293, + -0.026935771107673645, + 0.00930473580956459, + 0.016921190544962883, + 0.03430281952023506, + -0.010564552620053291, + 0.028061293065547943, + 0.04164429008960724, + 0.023687107488512993, + -0.06722431629896164, + -0.06870795786380768, + -0.03957230597734451, + -0.020719824358820915, + 0.05289950221776962, + 0.008025734685361385, + -0.07571689039468765, + 0.02410917729139328, + -0.046478912234306335, + 0.008096079342067242, + -0.0005451744073070586, + 0.00858210027217865, + -0.028982173651456833, + 0.020003583282232285, + 0.0226639062166214, + 0.0003339393006172031, + -0.038421206176280975, + 0.05428082123398781, + -0.030951835215091705, + -0.07121480256319046, + 0.008179214783012867, + -0.010660476982593536, + -0.06609879434108734, + -0.021615125238895416, + -0.0610339492559433, + 0.03435397893190384, + -0.08722790330648422, + -0.01397948618978262, + -0.0412861667573452, + -0.010506996884942055, + -0.003123961156234145, + 0.012508634477853775, + -0.005023278295993805, + -0.03304939717054367, + 0.02613000012934208, + -0.008652444928884506, + 0.06927072256803513, + -0.03491673991084099, + -0.040262967348098755, + 0.03123321570456028, + 0.06476863473653793, + -0.08789297938346863, + 0.007501343730837107, + -0.022740647196769714, + 0.037346843630075455, + 0.05034149810671806, + -0.024927739053964615, + -0.00607525696977973, + 0.008799530565738678, + -0.01750953122973442, + -0.04138848930597305, + 0.06338731199502945, + -0.04655565321445465, + -0.03264011815190315, + 0.0693218782544136, + -0.05113447830080986, + -0.022766226902604103, + 0.056327223777770996, + 0.03683524206280708, + 0.020412864163517952, + 0.0035204514861106873, + -0.04005832597613335, + -0.005451743956655264, + -0.022229045629501343, + -0.02009311318397522, + -0.008006549440324306, + -0.011287188157439232, + -0.005934566725045443, + -0.016217738389968872, + 0.014913157559931278, + -0.0002500048140063882, + -0.011466247960925102, + -0.020770983770489693, + -0.024607988074421883, + 0.035121381282806396, + -0.007379838731139898, + 0.02885427325963974, + -0.0017906021093949676, + -0.029468193650245667, + -0.0033254039008170366, + 0.02977515384554863, + 0.06967999786138535, + 0.03481442108750343, + 0.0610339492559433, + 0.06333615630865097, + 0.049778737127780914, + -0.0028665619902312756, + 0.021883714944124222, + 0.014913157559931278, + -0.016690969467163086, + -0.08226537704467773, + -0.07587036490440369, + -0.007980968803167343, + -0.031156476587057114, + 0.03177039697766304, + -0.05827130749821663, + 0.0610339492559433, + 0.045532453805208206, + 0.036272481083869934, + -0.011268002912402153, + 0.012623745016753674, + -0.006842657923698425, + 0.06993579864501953, + 0.0054709287360310555, + 0.028419412672519684, + -0.001572372391819954, + -0.04343489184975624, + 0.048653215169906616, + -0.05873174965381622 + ] + }, + { + "id": "a4f164ff-b9b6-4a88-8f24-bf29325aeb03", + "productId": "e0c6c2ba-1074-46f9-b3b7-b0fef033a34f", + "category": "Electronics", + "docType": "customerRating", + "userName": "boylekimberly", + "reviewDate": "2021-04-21T20:54:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b160ee54-a26d-439c-bdbb-a2156da9abe6", + "productId": "b160ee54-a26d-439c-bdbb-a2156da9abe6", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Mini (Silver)", + "description": "This Basic Keyboard Mini (Silver) is still available in the U.S. You can check the price on the original launch pages at the links below.\n\n\nHere's the", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-06-25T17:44:44", + "price": 522.46, + "stock": 89, + "priceHistory": [ + { + "priceDate": "2021-01-17T14:26:03", + "newPrice": 518.65 + }, + { + "priceDate": "2021-06-16T14:26:03", + "newPrice": 537.73 + }, + { + "priceDate": "2024-01-29T14:26:03", + "newPrice": 522.46 + } + ], + "descriptionVector": [ + -0.03530822694301605, + 0.018727533519268036, + -0.017247673124074936, + 0.0758272260427475, + 0.0017964154249057174, + -0.10680008679628372, + 0.047063738107681274, + 0.05765203759074211, + -0.05444220080971718, + 0.019665472209453583, + 0.01782085746526718, + -0.03526654094457626, + 0.03647543862462044, + -0.06744830310344696, + 0.04885624721646309, + -0.010588299483060837, + -0.021176598966121674, + 0.025678709149360657, + -0.04018551483750343, + 0.015632331371307373, + 0.03061852604150772, + -0.014214999973773956, + -0.10888440161943436, + -0.021760204806923866, + -0.0027486849576234818, + -0.0018928147619590163, + -0.04927310720086098, + 0.028680117800831795, + 0.06686469167470932, + 0.02895107865333557, + 0.043270293623209, + 0.02307332120835781, + -0.029784802347421646, + -0.025386907160282135, + -0.020436668768525124, + 0.0033036326058208942, + -0.03153562173247337, + -0.019769689068198204, + -0.05777709558606148, + -0.02932625450193882, + 0.0058152275159955025, + 0.04260331392288208, + 0.021739361807703972, + -0.017216408625245094, + -0.010807151906192303, + -0.021197441965341568, + 0.03280705213546753, + -0.006680216174572706, + 0.026762550696730614, + -0.008347664959728718, + -0.00544526195153594, + 0.030785271897912025, + -0.041436098515987396, + -0.011422023177146912, + 0.02970143035054207, + -0.025470279157161713, + 0.0022979527711868286, + 0.12097340077161789, + 0.06194571778178215, + -0.038142889738082886, + -0.012287012301385403, + -0.04614664241671562, + -0.006435310002416372, + -0.026908453553915024, + 0.020426247268915176, + 0.029201194643974304, + -0.05081550031900406, + -0.02536606229841709, + 0.0233025960624218, + 0.020030226558446884, + -0.006862593349069357, + 0.00047711178194731474, + -0.00017049010784830898, + 0.048397697508335114, + 0.0120160523802042, + -0.006638530176132917, + 0.01638268306851387, + 0.06377991288900375, + 0.09879633784294128, + -0.0052368310280144215, + -0.022885732352733612, + -0.053274985402822495, + -0.026470748707652092, + -0.11221929639577866, + -0.005721433088183403, + 0.03076442889869213, + 0.025762083008885384, + -0.08370592445135117, + -0.0939607322216034, + 0.10363193601369858, + -0.02574124000966549, + 0.036892302334308624, + -0.0011502790730446577, + -0.03501642122864723, + 0.020478354766964912, + -0.03224428743124008, + -0.04685530811548233, + -0.007060603238642216, + -0.01416289247572422, + -0.07478507608175278, + 0.07120005786418915, + 0.0008747592219151556, + -0.02148924581706524, + -0.013433383777737617, + -0.055817846208810806, + 0.02196863666176796, + 0.016330575570464134, + 0.02215622365474701, + 0.007123132236301899, + -0.0732426866889, + 0.025803769007325172, + 0.021197441965341568, + -0.029722273349761963, + 0.0011528844479471445, + -0.04556303471326828, + 0.03368246182799339, + -0.047689031809568405, + -0.04631338641047478, + 0.008415404707193375, + -0.037892770022153854, + 0.03612110763788223, + 0.029201194643974304, + 0.028930235654115677, + 0.04076911881566048, + 0.007743214722722769, + -0.007727582473307848, + -0.02226044051349163, + 0.031222976744174957, + -0.008014175109565258, + -0.04627170041203499, + -0.04427076131105423, + 0.005513002164661884, + -0.004718358628451824, + 0.06157054379582405, + -0.0491897352039814, + 0.026053884997963905, + 0.039435163140296936, + 0.06536398828029633, + -0.054233767092227936, + 0.0576937235891819, + -0.07445158064365387, + 0.03414101153612137, + 0.04760565981268883, + -0.005033610854297876, + -0.10496589541435242, + -0.0898754820227623, + -0.02947215549647808, + 0.07699444144964218, + 0.029117822647094727, + 0.056234706193208694, + 0.04710542410612106, + -0.07153354585170746, + -0.04485436901450157, + -0.0048225740902125835, + 0.008785370737314224, + 0.07874526083469391, + -0.05344172939658165, + -0.06369654089212418, + 0.02732531540095806, + 0.08383098244667053, + 0.012641345150768757, + 0.015173783525824547, + 0.010187068954110146, + -0.027262786403298378, + -0.10713357478380203, + 0.03562087193131447, + 0.025241004303097725, + 0.08645721524953842, + -0.05440051481127739, + 0.0025936642196029425, + -0.056484825909137726, + 0.00928560458123684, + -0.005215988028794527, + -0.10046378523111343, + 0.056193020194768906, + 0.030785271897912025, + 0.007706739474087954, + -0.065822534263134, + 0.017800014466047287, + -0.0676567330956459, + -0.002202856121584773, + 0.049314793199300766, + -0.07499350607395172, + 0.05152416601777077, + 0.016768280416727066, + -0.03776771202683449, + -0.0038950559683144093, + -0.00889479648321867, + -0.008425826206803322, + -0.014631861820816994, + -0.002198948059231043, + 0.00437184190377593, + -0.021843578666448593, + 0.0016830810345709324, + 0.006633319426327944, + 0.05640145018696785, + 0.0031785741448402405, + 0.041998863220214844, + -0.000532150617800653, + 0.0037960512563586235, + 0.012610080651938915, + 0.030243350192904472, + 0.025970513001084328, + -0.04981502890586853, + -0.01675785891711712, + -0.011338651180267334, + -0.04848106950521469, + 0.001591892447322607, + 0.03280705213546753, + -0.039956238120794296, + -0.037851084023714066, + 0.0016505136154592037, + 0.02559533715248108, + 0.008092337287962437, + 0.056859999895095825, + 0.0750768780708313, + 0.010452819056808949, + 0.01255797315388918, + -0.050982244312763214, + -0.07682769745588303, + 0.02947215549647808, + -0.03672555834054947, + 0.028909390792250633, + 0.016486898064613342, + -0.060445014387369156, + -0.07086656987667084, + 0.06511387228965759, + 0.09037572145462036, + 0.07090825587511063, + 0.050690438598394394, + -0.0976291224360466, + -0.11046847701072693, + -0.034078482538461685, + -0.008389350958168507, + -0.004322339780628681, + 0.019978119060397148, + 0.01697671227157116, + -0.028409156948328018, + -0.08045440167188644, + 0.07778648287057877, + 0.019279874861240387, + 0.0628628134727478, + -0.04447919502854347, + -0.023969575762748718, + 0.0028007926885038614, + -0.05906936898827553, + 0.06127873808145523, + 0.026116415858268738, + -0.07532699406147003, + 0.053858593106269836, + -0.0480642095208168, + -0.07215884327888489, + 0.0007132251048460603, + 0.040519002825021744, + -0.05865250900387764, + 0.0002704719081521034, + 0.05006514862179756, + 0.013933618552982807, + 0.01800844632089138, + -0.04877287521958351, + 0.057526979595422745, + 0.04189464822411537, + -0.05277474969625473, + 0.06373822689056396, + -0.01466312725096941, + 0.0469803661108017, + 0.019436199218034744, + -0.13381275534629822, + -0.0543588288128376, + 0.037559282034635544, + 0.04149862751364708, + 0.014631861820816994, + 0.05035695061087608, + 0.027450373396277428, + -0.09604504704475403, + 0.030910329893231392, + -0.06944923847913742, + 0.08399772644042969, + -0.0106351962313056, + -0.019842639565467834, + 0.014683970250189304, + 0.10813404619693756, + 0.021697675809264183, + 0.007336774375289679, + -0.010447608307003975, + 0.03043093904852867, + -0.055859532207250595, + -0.03745506703853607, + 0.009051119908690453, + 0.02215622365474701, + -0.014704813249409199, + 0.014485960826277733, + -0.005215988028794527, + 0.07491013407707214, + 0.02870096080005169, + 0.04093586653470993, + 0.06415508687496185, + 0.03935178741812706, + -0.048397697508335114, + 0.030889486894011497, + 0.011130220256745815, + -0.07124174386262894, + -0.1172216460108757, + -0.025053417310118675, + -0.007883905433118343, + 0.04393727332353592, + -0.0064717852510511875, + 0.007685896474868059, + -0.040664903819561005, + -0.01499661710113287, + 0.0728675052523613, + -0.02574124000966549, + -0.02211453765630722, + -0.05498411878943443, + 0.07415977865457535, + -0.03764265403151512, + 0.04889793321490288, + 0.0016700540436431766, + -0.0554843544960022, + 0.041998863220214844, + -0.017331045120954514, + 0.04053984582424164, + -0.04552134871482849, + 0.09287688881158829, + 0.06819865107536316, + -0.008853110484778881, + -0.0008578241686336696, + -0.013277060352265835, + 0.028721803799271584, + -0.030201664194464684, + -0.04124851152300835, + -0.019873904064297676, + -0.012026473879814148, + -0.018769219517707825, + 0.0806211456656456, + -0.068031907081604, + 0.015246734023094177, + 0.03447450324892998, + 0.0809963196516037, + -0.030243350192904472, + 0.06869888305664062, + 0.03172321245074272, + 0.031931642442941666, + -0.026533277705311775, + -0.047689031809568405, + 0.03268199414014816, + -0.024386437609791756, + 0.00015143821656238288, + -0.03893492743372917, + 0.02430306375026703, + 0.001104684779420495, + -0.035224854946136475, + 0.018873434513807297, + -0.04985671490430832, + 0.08620709925889969, + -0.021468402817845345, + -0.005312387365847826, + 0.01826898381114006, + 0.05169091001152992, + -0.003134282538667321, + -0.03716326132416725, + -0.03791361302137375, + -0.005799594800919294, + 0.04418738931417465, + -0.034036796540021896, + 0.018915120512247086, + 0.04212392121553421, + -0.00026298139709979296, + -0.04981502890586853, + 0.030722742900252342, + 0.02522016130387783, + 0.0026509829331189394, + -0.050982244312763214, + 0.054942432790994644, + 0.037746869027614594, + 0.0942942202091217, + 0.0020647705532610416, + -0.016851652413606644, + -0.039956238120794296, + 0.005924653727561235, + 0.009973427280783653, + 0.01931113936007023, + -0.04149862751364708, + -0.011870150454342365, + 0.044687625020742416, + -0.10638322681188583, + -0.04848106950521469, + -0.014954930171370506, + 0.007435779087245464, + 0.006503049749881029, + -0.04356209561228752, + -0.0051013510674238205, + -0.05544266849756241, + -0.0044526089914143085, + -0.009405452758073807, + -0.06523893028497696, + 0.025970513001084328, + 0.006779220886528492, + 0.04170706123113632, + 0.04187380522489548, + 0.015288420021533966, + 0.01838362216949463, + -0.02855505794286728, + -0.03780939802527428, + -0.0898754820227623, + -0.10304833203554153, + -0.06027827039361, + 0.1135532557964325, + 0.018800484016537666, + -0.07182535529136658, + -0.033223915845155716, + -0.009525300934910774, + 0.0037908402737230062, + -0.07824502885341644, + -0.023052478209137917, + -0.029451312497258186, + 0.04039394482970238, + 0.005028400104492903, + 0.060820192098617554, + 0.01757074147462845, + 0.0847063958644867, + -0.035516656935214996, + -0.028054824098944664, + -0.0146110188215971, + -0.04564640671014786, + -0.03712157532572746, + -0.059152740985155106, + 0.00408524926751852, + -0.004556824453175068, + -0.037288323044776917, + -0.010161015205085278, + -0.029013607650995255, + -0.00232530920766294, + -0.010859259404242039, + 0.02784639224410057, + 0.023511026054620743, + 0.024136319756507874, + 0.036037735641002655, + -0.026720864698290825, + 0.07203378528356552, + 0.016247203573584557, + 0.057526979595422745, + -0.08537337183952332, + 0.025449436157941818, + -0.10388205200433731, + 0.01604919321835041, + -0.043395351618528366, + 0.035183168947696686, + 0.07182535529136658, + -0.01189099345356226, + -0.04818926751613617, + 0.012599659152328968, + -0.010755044408142567, + 0.0006207338301464915, + 0.09879633784294128, + -0.030701899901032448, + -0.00011650972010102123, + 0.01956125721335411, + -0.023365125060081482, + 0.04818926751613617, + 0.033119700849056244, + 0.03499557822942734, + 0.0040435632690787315, + -0.0255119651556015, + -0.08604035526514053, + -0.042436569929122925, + 0.03391173854470253, + 0.015111253596842289, + -0.015215469524264336, + -0.004309312906116247, + 0.02421969175338745, + -0.019394513219594955, + 0.08904176205396652, + 0.004603721667081118, + 0.021468402817845345, + -0.05736023560166359, + -0.0012401649728417397, + -0.0019631602335721254, + 0.014048255048692226, + -0.008644679561257362, + -0.012120267376303673, + 0.003186390269547701, + -0.012474600225687027, + -0.02100985310971737, + 0.05477568879723549, + -0.06578084826469421, + -0.025157632306218147, + 0.01530926302075386, + 0.03635038062930107, + 0.06903237849473953, + 0.0006298527005128562, + 0.02970143035054207, + 0.008592571131885052, + 0.01796676032245159, + 0.012526708655059338, + -0.038372162729501724, + -0.014350480400025845, + -0.04285342991352081, + -0.041331883519887924, + 0.06573916226625443, + 0.02469908446073532, + 0.02918035164475441, + -0.01275598257780075, + 0.008493566885590553, + 0.025157632306218147, + -0.012474600225687027, + -0.027596276253461838, + 0.02555365115404129, + 0.06632277369499207, + -0.0027538957074284554, + 0.01819603331387043, + -0.06603097170591354 + ] + }, + { + "id": "7ff00a0d-a026-469e-b298-b269cc99c670", + "productId": "b160ee54-a26d-439c-bdbb-a2156da9abe6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hamptonjames", + "reviewDate": "2021-06-16T19:18:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9dd9cc69-37cf-49b6-a104-4d6ca062c9c9", + "productId": "b160ee54-a26d-439c-bdbb-a2156da9abe6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hamiltonshelley", + "reviewDate": "2021-01-17T14:26:03", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Mini (Red)", + "description": "This Premium Mouse Mini (Red) is a fully customizable version of the famous mouse that we love so much. This product comes with full screen graphics and 3D audio! The mini comes with a built-in microphone and Bluetooth 5.0 (Bluetooth 4.2+)", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-10-11T05:44:47", + "price": 278.88, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-07-08T01:13:27", + "newPrice": 269.07 + }, + { + "priceDate": "2022-01-25T01:13:27", + "newPrice": 287.17 + }, + { + "priceDate": "2022-08-14T01:13:27", + "newPrice": 290.67 + }, + { + "priceDate": "2024-11-09T01:13:27", + "newPrice": 278.88 + } + ], + "descriptionVector": [ + -0.0824202373623848, + -0.020117653533816338, + -0.05044644698500633, + 0.015499488450586796, + -0.04859430715441704, + -0.006342361215502024, + -0.030609052628278732, + 0.060438256710767746, + 0.05395576357841492, + 0.04408580809831619, + -0.03701843321323395, + -0.05254229158163071, + 0.059804629534482956, + -0.025125741958618164, + 0.046864017844200134, + 0.025856850668787956, + -0.07657136768102646, + -0.07257464528083801, + -0.024942966178059578, + -0.029707351699471474, + 0.029829204082489014, + -0.03153512254357338, + -0.033630963414907455, + -0.0025421231985092163, + 0.02680729143321514, + -0.011137210763990879, + -0.03887057304382324, + 0.04681527614593506, + -0.03319229930639267, + 0.06355764716863632, + 0.054979316890239716, + 0.01436627097427845, + -0.0006416233372874558, + 0.008493036963045597, + 0.022335346788167953, + -0.007365912199020386, + 0.006793211214244366, + -0.005861048586666584, + 0.07364694029092789, + 0.0648249015212059, + -0.03523940220475197, + 0.02301771380007267, + 0.08807413280010223, + -0.07120991498231888, + 0.012160762213170528, + 0.0687241479754448, + -0.052834734320640564, + 0.006598249077796936, + -0.05921974405646324, + 0.028683800250291824, + -0.007067376747727394, + 0.02887876331806183, + -0.033143557608127594, + 0.03570243716239929, + 0.029804833233356476, + -0.08051935583353043, + 0.018996620550751686, + 0.09143722802400589, + 0.05103133246302605, + -0.09738357365131378, + 0.023712266236543655, + -0.07257464528083801, + 0.006336268503218889, + -0.004441480617970228, + -0.006829766556620598, + -0.08973131328821182, + -0.027806472033262253, + -0.020775649696588516, + 0.05532050132751465, + 0.06458120048046112, + -0.04230677708983421, + -0.03421585261821747, + 0.03190067410469055, + 0.01769281178712845, + 0.061608027666807175, + 0.08198156952857971, + 0.05595412850379944, + 0.013610792346298695, + 0.008876868523657322, + -0.008858591318130493, + 0.02391941472887993, + -0.003548919688910246, + -0.022481568157672882, + 0.006628711707890034, + 0.023468565195798874, + 0.031242677941918373, + 0.006022501736879349, + -0.10440221428871155, + 0.015938153490424156, + 0.05834241211414337, + -0.019739914685487747, + 0.023931600153446198, + 0.05683145672082901, + -0.002846751594915986, + 0.024455560371279716, + -0.0016343308379873633, + -0.00715267239138484, + 0.03277800604701042, + -0.05756256356835365, + 0.005093385465443134, + 0.02773336134850979, + 0.004185592755675316, + -0.020531946793198586, + -0.0335334837436676, + 0.028025804087519646, + 0.00018753680342342705, + 0.004414064344018698, + -0.02731906622648239, + -0.03428896144032478, + -0.1486586183309555, + 0.017570961266756058, + -0.018021810799837112, + -0.007908150553703308, + 0.01213639136403799, + -0.019362175837159157, + 0.01933780498802662, + -0.11073847860097885, + -0.0046151187270879745, + -0.0574650838971138, + 0.003201643470674753, + 0.049910299479961395, + 0.019252508878707886, + -0.016449928283691406, + 0.014634343795478344, + -0.0068419515155255795, + -0.041015155613422394, + -0.009906512685120106, + -0.014865861274302006, + 0.008413833566009998, + -0.06838296353816986, + -0.05151873826980591, + 0.07247716933488846, + 0.016559595242142677, + 0.04281855374574661, + -0.0010791458189487457, + 0.02924431674182415, + -0.047985050827264786, + 0.02848883904516697, + 0.01792432926595211, + 0.03672598674893379, + 0.007183135487139225, + -0.0054680779576301575, + -0.04091767221689224, + -0.0001105229530367069, + -0.058683596551418304, + 0.0319981575012207, + -0.09007249772548676, + 0.05780626833438873, + -0.03545873612165451, + 0.01994706131517887, + -0.043939586728811264, + -0.06511734426021576, + 0.03294859826564789, + -0.046352241188287735, + 0.05843989551067352, + 0.07705877721309662, + -0.09314315021038055, + -0.04956911876797676, + -0.06926029175519943, + 0.10410977154970169, + 0.05770878493785858, + 0.02758713997900486, + 0.018521400168538094, + -0.0027264233212918043, + -0.0016297614201903343, + 0.0012200362980365753, + 0.014232234098017216, + 0.023200491443276405, + -0.0005205335910432041, + 0.01460997387766838, + -0.025077002122998238, + -0.028074543923139572, + 0.022274421527981758, + -0.03448392450809479, + 0.05332213640213013, + 0.017217591404914856, + 0.028830023482441902, + 0.002612187759950757, + -0.03051157109439373, + -0.026929141953587532, + 0.06852918118238449, + 0.07827728986740112, + -0.06882162392139435, + 0.036555398255586624, + 0.04008908569812775, + 0.04976407811045647, + 0.017717182636260986, + 0.03024349734187126, + -0.03675035759806633, + -0.0323149710893631, + 0.05610034987330437, + -0.0066043417900800705, + -0.0058854189701378345, + -0.07213598489761353, + 0.0026472199242562056, + 0.08822035789489746, + 0.0432572178542614, + 0.06731066852807999, + 0.04123448580503464, + -0.034410811960697174, + -0.017327258363366127, + 0.0419168546795845, + 0.06453245878219604, + 0.032607413828372955, + -0.01803399622440338, + -0.04688838869333267, + -0.02734343707561493, + 0.020800020545721054, + 0.04211181774735451, + -0.008078742772340775, + 0.02327360212802887, + -0.03482510894536972, + 0.002787349047139287, + -0.016718002036213875, + 0.11190825700759888, + 0.008943887427449226, + 0.05775752663612366, + -0.02401689626276493, + -0.06112062186002731, + -0.038846202194690704, + 0.018497031182050705, + 0.008523499593138695, + 0.003305217018350959, + 0.0012748694280162454, + -0.10293999314308167, + 0.012179039418697357, + 0.06594593822956085, + 0.0024979521986097097, + 0.05151873826980591, + 0.007463393267244101, + -0.06540978699922562, + -0.056441530585289, + -0.02413874678313732, + -0.003387466771528125, + 0.0025086139794439077, + 0.06370387226343155, + -0.020288245752453804, + -0.023419823497533798, + -0.011868318542838097, + 0.07345197349786758, + -0.060194551944732666, + 0.037335243076086044, + -0.0709662064909935, + 0.011082377284765244, + 0.05468687415122986, + -0.0016282382421195507, + 0.023614786565303802, + -0.005949390586465597, + -0.10898382216691971, + -0.019020991399884224, + -0.08393119275569916, + -0.00028958727489225566, + -0.014341900125145912, + 0.036311693489551544, + -0.09070612490177155, + 0.022847123444080353, + 0.04084456339478493, + -0.04815564304590225, + 0.022968973964452744, + -0.06029203534126282, + -0.007329356856644154, + -0.017826847732067108, + -0.04910608381032944, + 0.042282409965991974, + -0.05439443141222, + 0.03677472844719887, + 0.06029203534126282, + -0.10196518898010254, + -0.018850399181246758, + 0.04408580809831619, + 0.0424286313354969, + 0.03207126632332802, + 0.030340978875756264, + -0.023444194346666336, + -0.002586294198408723, + -0.02184794284403324, + -0.04262359067797661, + 0.050154004245996475, + -0.0032869393471628428, + -0.01493897195905447, + 0.11239565908908844, + 0.06628711521625519, + 0.110446035861969, + -0.016242781654000282, + -0.04147819057106972, + 0.01157587580382824, + -0.009455662220716476, + -0.010722916573286057, + -0.0889514610171318, + -0.06102314218878746, + -0.06253410130739212, + 0.027367806062102318, + -0.016096560284495354, + -0.011892689391970634, + 0.03740835562348366, + 0.027294695377349854, + -0.015852857381105423, + 0.03165697306394577, + 0.03728650510311127, + 0.002309082541614771, + -0.05020274594426155, + -0.034654516726732254, + -0.060584478080272675, + -0.03687220811843872, + 0.05731886252760887, + 0.06331394612789154, + -0.03867560997605324, + 0.06355764716863632, + -0.012374001555144787, + -0.032607413828372955, + 0.07335449755191803, + 0.010832582600414753, + -0.10878886282444, + 0.02973172254860401, + 0.1065467968583107, + -0.06424001604318619, + -0.03151075169444084, + -0.028513209894299507, + 0.029536759480834007, + 0.008870775811374187, + -0.06594593822956085, + -0.03906553238630295, + -0.10518205910921097, + 0.0742318257689476, + 0.04657157510519028, + -0.008657536469399929, + -0.06419127434492111, + 0.0447925440967083, + 0.046985868364572525, + -0.04142944887280464, + -0.029268687590956688, + -0.06755436956882477, + -0.03509318083524704, + -0.03979664295911789, + 0.04547491297125816, + -0.031608231365680695, + -0.0533708781003952, + 0.03131578862667084, + 0.04364714398980141, + 0.008937794715166092, + 0.010473120957612991, + -0.020946241915225983, + 0.010588879697024822, + 0.027124105021357536, + -0.022798381745815277, + -0.09860208630561829, + -0.060584478080272675, + 0.002621326595544815, + 0.034776367247104645, + 0.04381773620843887, + 0.0012413603253662586, + -0.08008068799972534, + 0.021007167175412178, + -0.013659533113241196, + 0.07335449755191803, + -0.05819619074463844, + -0.025856850668787956, + 0.009254608303308487, + -0.010540138930082321, + 0.08812287449836731, + 0.025759369134902954, + -0.008340722881257534, + 0.028293875977396965, + 0.06336268782615662, + 8.953216456575319e-05, + -0.004989811684936285, + -0.06087692081928253, + -0.023541675880551338, + -0.048374973237514496, + -0.02973172254860401, + -0.014780565164983273, + -0.036677248775959015, + -0.08139668405056, + 0.08802539110183716, + -0.02758713997900486, + 0.031583864241838455, + 0.0029472787864506245, + -0.027928322553634644, + -0.056782715022563934, + 0.05254229158163071, + 0.026344256475567818, + 0.04944726452231407, + -0.021129019558429718, + 0.05483309552073479, + 0.09660372883081436, + -0.01107019279152155, + 0.026149293407797813, + -0.07228220254182816, + 0.00991260539740324, + 0.024358078837394714, + -0.016559595242142677, + -0.04281855374574661, + -0.02456522546708584, + 0.05190866440534592, + 0.043939586728811264, + -0.036092359572649, + 0.0135498670861125, + 0.06229039654135704, + -0.028440099209547043, + -0.043549660593271255, + 0.0026441735681146383, + -0.007122209761291742, + -0.006896784994751215, + -0.03840753808617592, + -0.02199416421353817, + -0.07510915398597717, + 0.012239965610206127, + 0.025125741958618164, + -0.027172844856977463, + -0.028123285621404648, + 0.02580810897052288, + 0.009760290384292603, + -0.024955149739980698, + 0.006126075051724911, + -0.007487763650715351, + -0.0058549558743834496, + 0.04513372853398323, + -0.023297972977161407, + 0.028050174936652184, + -0.025856850668787956, + 0.07988572865724564, + -0.009833402000367641, + -0.041137006133794785, + -0.019898321479558945, + -0.03204689919948578, + 0.010406102985143661, + -0.040868934243917465, + 0.022566864266991615, + 0.04181937500834465, + -0.08934138715267181, + -0.040990784764289856, + -0.11337047070264816, + -0.04854556545615196, + -0.04420765861868858, + -0.05171370133757591, + 0.065653495490551, + -0.02951239049434662, + 0.008828128688037395, + -0.0006538084708154202, + 0.05780626833438873, + 0.005513772368431091, + -0.03204689919948578, + -0.010850859805941582, + -0.015280155465006828, + -0.04664468765258789, + 0.024479931220412254, + -0.005525957327336073, + 0.0171810369938612, + 0.005873233545571566, + -0.05327339842915535, + -0.0345570333302021, + -0.044329509139060974, + 0.028561949729919434, + 0.0008270658436231315, + 0.0075913374312222, + -0.013769199140369892, + 0.05127503722906113, + 0.09236329793930054, + -0.01779029332101345, + 0.02595433220267296, + -0.002106504747644067, + 0.009961345233023167, + 0.039869751781225204, + 0.04108826443552971, + -0.047229573130607605, + -0.07930084317922592, + 0.029829204082489014, + 0.0303653497248888, + -0.023736637085676193, + 0.03241245076060295, + -0.026295514777302742, + 0.021068094298243523, + 0.08471103757619858, + 0.02099498175084591, + 0.021579869091510773, + -0.045694246888160706, + -0.016060004010796547, + -0.025613147765398026, + -0.023237047716975212, + 0.04025967791676521, + 0.00888905394822359, + 0.027099734172225, + 0.0008681906620040536, + 0.018216772004961967, + 0.01791214384138584, + -0.011271247640252113, + 0.035263773053884506, + 0.03560495749115944, + 0.0699426606297493, + 0.045694246888160706, + 0.011703819036483765, + 0.046474095433950424, + 0.033752817660570145, + -0.061218105256557465, + -0.031120827421545982, + 0.04510935768485069, + 0.047107722610235214, + 0.021299611777067184, + 0.02300553023815155, + 0.035288143903017044, + 0.037067171186208725, + -0.05999958887696266, + -0.008042187429964542, + 0.01947184093296528, + -0.016169670969247818, + 0.01741255447268486, + -0.03726213425397873, + 0.0638013482093811, + 0.031851936131715775, + -0.04043027013540268, + 0.027562769129872322, + 0.007097839377820492 + ] + }, + { + "id": "7ed43625-5a03-4931-a939-70fe0b8dc363", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nathan68", + "reviewDate": "2021-07-08T01:13:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "db5d5d38-627c-4db1-a4bc-47c4a469796a", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pattersoncharles", + "reviewDate": "2021-07-22T22:24:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "699eba2f-87dd-4505-a59a-02612220bb31", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rogerskevin", + "reviewDate": "2022-08-15T11:56:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "314c641f-f5f9-42c8-855a-74031b5a952e", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertbarnes", + "reviewDate": "2022-03-26T15:50:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "407080e6-c8dd-4bc2-a44b-a779e0e150b0", + "productId": "f9b8a696-90ba-41f8-989b-4ae71cd6fa8b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amber54", + "reviewDate": "2021-09-26T19:21:33", + "stars": 5, + "verifiedUser": true + }, + { + "id": "60f4a95c-70a1-487b-9903-debb5c551914", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Pro (Silver)", + "description": "This Luxe Filter Pro (Silver) is compatible with your Windows 8.1 or Windows 10 PC operating system with a single or multiple layers of anti-virus protection, and the entire effect in one smooth motion. The filter includes two filters", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-06-03T21:22:57", + "price": 1012.25, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-02-24T03:23:34", + "newPrice": 1066.74 + }, + { + "priceDate": "2022-10-08T03:23:34", + "newPrice": 921.41 + }, + { + "priceDate": "2024-09-17T03:23:34", + "newPrice": 1012.25 + } + ], + "descriptionVector": [ + -0.027314530685544014, + 0.040272705256938934, + -0.028712715953588486, + 0.04611511901021004, + 0.0009292620816268027, + -0.008058286271989346, + -0.08548898994922638, + 0.025354575365781784, + 0.041296374052762985, + 0.08314203470945358, + 0.025067448616027832, + -0.027664076536893845, + 0.011422667652368546, + -0.003498581936582923, + 0.0377509780228138, + 0.04986025393009186, + -0.09502660483121872, + -0.008851006627082825, + -0.002017692429944873, + -0.04728859290480614, + 0.02586641162633896, + -0.049485739320516586, + -0.0743035152554512, + -0.003133431077003479, + -0.018388621509075165, + 0.029262002557516098, + 0.015791993588209152, + 0.012983140535652637, + 0.03904929384589195, + 0.006282466929405928, + 0.08948380500078201, + 0.020910346880555153, + -0.024280970916152, + 0.07744942605495453, + -0.0239938423037529, + -0.061719853430986404, + 0.09462712705135345, + -0.044866740703582764, + 0.0705084428191185, + 0.0780985876917839, + -0.030760057270526886, + -0.030710121616721153, + -0.03495461121201515, + 0.04169585555791855, + -0.006117056589573622, + -0.046264924108982086, + -0.06711284816265106, + -0.011472602374851704, + -0.04821239411830902, + -0.012664804235100746, + 0.06097082793712616, + -0.0023781617637723684, + -0.06736252456903458, + -0.03318191319704056, + 0.006965954322367907, + 0.009625001810491085, + 0.024330904707312584, + 0.20972765982151031, + 0.005904832389205694, + -0.006522779818624258, + -0.017452336847782135, + -0.024717902764678, + 0.00019896039157174528, + -0.02776394784450531, + -0.10526331514120102, + -0.037701044231653214, + -0.015954282134771347, + -0.034829773008823395, + 0.02173427678644657, + 0.024593064561486244, + -0.04678924381732941, + -0.014556098729372025, + 0.04551589488983154, + -0.01691553369164467, + 0.0517827570438385, + 0.02931193821132183, + 0.03780091553926468, + -0.0950765386223793, + 0.05138327553868294, + -0.02674027718603611, + 0.02393142506480217, + -0.01473087165504694, + -0.04643969610333443, + 0.0892341285943985, + -0.0078086103312671185, + -0.011422667652368546, + 0.06236901134252548, + -0.0895337387919426, + -0.044891707599163055, + 0.023856520652770996, + 0.03135927766561508, + 0.08623801916837692, + 0.04978535324335098, + -0.05787484720349312, + 0.0016509811393916607, + 0.0014645045157521963, + -0.04441732168197632, + 0.03066018596291542, + -0.0432937815785408, + -0.05607718229293823, + -0.04569067060947418, + -0.08239301294088364, + -0.02319488115608692, + 0.006784939672797918, + -0.003314445959404111, + -0.002220554044470191, + -0.005979734938591719, + -0.09053243696689606, + -0.028537942096590996, + -0.10466408729553223, + -0.010817203670740128, + -0.05807458981871605, + -0.024805288761854172, + 0.004862436093389988, + -0.05173282325267792, + 0.025591768324375153, + -0.05692607909440994, + 0.01790175400674343, + 0.016541020944714546, + 0.032582689076662064, + 0.0623190775513649, + 0.060221798717975616, + 0.06246888265013695, + -0.005623946897685528, + -0.0190128106623888, + 0.02761414274573326, + 0.039074260741472244, + -0.04224514216184616, + 0.03083495981991291, + -0.06441635638475418, + -0.06102076172828674, + 0.06955967098474503, + 0.00903826393187046, + -0.01855091191828251, + -0.045216284692287445, + 0.0026106724981218576, + 0.014244003221392632, + 0.12743452191352844, + -0.009905886836349964, + 0.04224514216184616, + -0.01149757020175457, + -0.03572860360145569, + -0.03954864293336868, + -0.020785508677363396, + 0.011023186147212982, + -0.05045947805047035, + -0.0851394459605217, + 0.04344358667731285, + -0.04728859290480614, + 0.02068563923239708, + 0.010761026293039322, + -0.09607524424791336, + -0.013345170766115189, + -0.023831553757190704, + 0.057475365698337555, + 0.008794829249382019, + 0.04569067060947418, + 0.05198249965906143, + 0.08079508692026138, + -0.05512841418385506, + -0.007902238517999649, + 0.006510296370834112, + 0.0001375167485093698, + 0.005695729050785303, + 0.0012585220392793417, + 0.07095786184072495, + 0.04324384778738022, + 0.029936127364635468, + -0.0497354157269001, + 0.028537942096590996, + 0.003370623104274273, + 0.04908626154065132, + -0.04696401581168175, + -0.033781133592128754, + -0.044517192989587784, + -0.019562097266316414, + 0.05258172005414963, + 0.011048153974115849, + -0.03560376539826393, + -0.0324828214943409, + -0.007596385665237904, + 0.005477262660861015, + -0.10536318272352219, + -0.04988522082567215, + 0.05837420001626015, + -0.0953761488199234, + 0.048287298530340195, + -0.07819845527410507, + 0.038075558841228485, + 0.004846831317991018, + -0.01910019852221012, + 0.009412777610123158, + 0.056776273995637894, + -0.011934502981603146, + 0.014006812125444412, + 0.010136837139725685, + -0.004965427331626415, + 0.016366247087717056, + 0.00036144471960142255, + -0.006884810049086809, + 0.010998218320310116, + 0.03288230299949646, + 0.006841116584837437, + -0.06311804056167603, + 0.07415370643138885, + 0.04661446809768677, + 0.018538426607847214, + -0.020648187026381493, + -0.028887487947940826, + -0.050334639847278595, + 0.0011734762229025364, + -0.02021125517785549, + -0.04429248347878456, + 0.06531518697738647, + 0.02012386918067932, + 0.02205885574221611, + -0.033107008785009384, + 0.004250730387866497, + -0.046739306300878525, + -0.0013201606925576925, + 0.050983794033527374, + -0.058673810213804245, + -0.015979250892996788, + -0.0030117142014205456, + -0.03145914897322655, + -0.04479183629155159, + 0.03964851424098015, + 0.027139758691191673, + 0.04024773836135864, + -0.01483074203133583, + -0.006410425994545221, + -0.028488006442785263, + -0.012377677485346794, + 0.02101021818816662, + 0.010636188089847565, + -0.002367238514125347, + 0.01114802435040474, + -0.03323184698820114, + 0.01905026286840439, + 0.015467414632439613, + 0.03867477923631668, + -0.03428048640489578, + -0.031409215182065964, + -0.03178372606635094, + 0.02381907030940056, + -0.05273152515292168, + 0.0678618773818016, + 0.0383252315223217, + -0.06271855533123016, + 0.041271407157182693, + -0.021110087633132935, + 0.052182238548994064, + -0.0833917111158371, + 0.06651362776756287, + -0.058673810213804245, + 0.055577829480171204, + 0.014631001278758049, + -0.038599878549575806, + -0.1354241520166397, + -0.04119650647044182, + -0.03405577689409256, + -0.014418777078390121, + -0.008114462718367577, + 0.003273873822763562, + -0.0179891400039196, + -0.01702788844704628, + -0.009356600232422352, + -0.039448775351047516, + -0.030435478314757347, + 0.003088177414610982, + 0.04399287328124046, + -0.026515567675232887, + 0.02604118548333645, + 0.058673810213804245, + 0.00903826393187046, + -0.004082199186086655, + -0.0906822457909584, + 0.10616214573383331, + 0.05040954053401947, + -0.006157629191875458, + 0.04321887716650963, + -0.006529022008180618, + 0.015754541382193565, + -0.00528064277023077, + 0.05857393890619278, + 0.009880919009447098, + 0.01312046218663454, + 0.007346710190176964, + -0.06911025941371918, + 0.024643000215291977, + -0.002805731724947691, + 0.04599028080701828, + 0.05043450742959976, + -0.02279539965093136, + 0.0042413673363626, + -0.004697025753557682, + 0.0342305488884449, + 0.025966281071305275, + -0.01977432146668434, + 0.01380707137286663, + -0.026490600779652596, + -0.001891294145025313, + 0.0012452580267563462, + -0.020935315638780594, + -0.04958561062812805, + 0.11355254799127579, + 0.017776915803551674, + 0.022133758291602135, + -0.030760057270526886, + -0.04638976231217384, + 0.01438132580369711, + 0.05368029326200485, + -0.042469851672649384, + 0.0006768554449081421, + 0.06596434116363525, + -0.01591683179140091, + -0.05318094417452812, + -0.018513459712266922, + -0.017477305606007576, + 0.03625292330980301, + -0.06186965852975845, + 0.03902432695031166, + 0.02147211693227291, + 0.07115759700536728, + 0.04569067060947418, + -0.05977238342165947, + -0.08518937975168228, + 0.008969603106379509, + -0.01986170932650566, + -0.031409215182065964, + 0.001991164404898882, + 0.03937387093901634, + -0.027314530685544014, + -0.005102748982608318, + 0.040946830064058304, + 0.023095009848475456, + 0.0073217423632740974, + 0.0128707867115736, + -0.024830257520079613, + 0.009462712332606316, + 0.04194553196430206, + 0.008607572875916958, + -0.029736386612057686, + -0.01729004830121994, + 0.04167088866233826, + -0.062069401144981384, + -0.009712387807667255, + -0.03383106738328934, + 0.027639109641313553, + 0.039448775351047516, + 0.0015589131508022547, + -0.04901135712862015, + 0.02913716435432434, + -0.045915376394987106, + 0.023107493296265602, + 0.029911158606410027, + 0.046889111399650574, + 0.023032590746879578, + -0.00851394422352314, + 0.027489304542541504, + -0.049460772424936295, + 0.007140727713704109, + 0.017939206212759018, + 0.05402984097599983, + -0.059672512114048004, + 0.04586544260382652, + -0.08553892374038696, + -0.007384161464869976, + -0.006298071704804897, + 0.0025903861969709396, + -0.05517834797501564, + 0.007065824698656797, + 0.0022611264139413834, + 0.1404176652431488, + -0.0760512426495552, + 0.0033331718295812607, + 0.0670129805803299, + 0.03542899340391159, + 0.004391172900795937, + 0.04848703742027283, + 0.005820566788315773, + 0.04976038262248039, + 0.016890566796064377, + -0.06351751834154129, + 0.034130681306123734, + -0.06950973719358444, + -0.062069401144981384, + -0.011691068299114704, + 0.025254705920815468, + -0.02793871983885765, + 0.018975360319018364, + -0.02094779908657074, + -0.0012678848579525948, + 0.021671857684850693, + 0.012920722365379333, + 0.049985092133283615, + -0.013070527464151382, + 0.05123347043991089, + 0.04728859290480614, + -0.003025758545845747, + 0.0327574647963047, + -0.04858690872788429, + -0.015816960483789444, + -0.09407783299684525, + -0.04167088866233826, + -0.022108791396021843, + 0.02290775440633297, + 0.0219465009868145, + 0.043868035078048706, + -0.09542608261108398, + -0.02604118548333645, + -0.07045850902795792, + -0.024917643517255783, + 0.05023476853966713, + 0.038599878549575806, + 0.05313100665807724, + 0.03947374224662781, + 0.04204540327191353, + 0.04254475235939026, + -0.05173282325267792, + 0.01820136420428753, + 0.010024483315646648, + -0.007864787243306637, + 0.03477983549237251, + -0.0025607373099774122, + -0.009163101203739643, + -0.030560316517949104, + -0.01114802435040474, + 0.02129734493792057, + 0.001910019782371819, + 0.0488615520298481, + 0.0062387739308178425, + 0.0017929841997101903, + -0.02928696945309639, + -0.0027838849928230047, + 0.003242664271965623, + 0.07145720720291138, + -0.0016010459512472153, + 0.004968548193573952, + 0.009993273764848709, + -0.05058431625366211, + -0.07535215467214584, + 0.01574205793440342, + 0.06181972473859787, + -0.09607524424791336, + -0.07450325787067413, + -0.06556486338376999, + 0.038774650543928146, + 0.0108234453946352, + -0.028987359255552292, + 0.023107493296265602, + 0.004363084211945534, + -0.07170688360929489, + -0.03547893092036247, + 0.04628989100456238, + 0.023107493296265602, + -0.017389917746186256, + 0.04314397647976875, + 0.04941083863377571, + -0.018213849514722824, + -0.01714024320244789, + 0.09337874501943588, + -0.002997669856995344, + 0.008651265874505043, + -0.04174579307436943, + -0.06221920624375343, + -0.10865890234708786, + -0.052232176065444946, + 0.018713200464844704, + -0.008114462718367577, + 0.03690208122134209, + -0.03470493480563164, + 0.04678924381732941, + 0.00659144064411521, + 0.002276731189340353, + 0.019674452021718025, + 0.0406721867620945, + 0.003153717378154397, + 0.009924612939357758, + -0.026690341532230377, + 0.01278340071439743, + 0.0848398357629776, + -0.06256875395774841, + 0.019786806777119637, + 0.08473996073007584, + 0.01925000362098217, + 0.1167484000325203, + -0.01483074203133583, + 0.08419067412614822, + 0.058823615312576294, + 0.041795726865530014, + 0.004647090565413237, + -0.0267652440816164, + -0.03560376539826393, + -0.042145274579524994, + 0.010667397640645504, + 0.013083010911941528, + -0.011828390881419182, + 0.029536645859479904, + 0.05108366534113884, + 0.0766504630446434, + 0.0065727150067687035, + 0.009144376032054424, + -0.035853441804647446, + 0.050684183835983276, + 0.024555614218115807, + 0.03879961743950844, + -0.08174385130405426, + 0.0456407330930233, + -0.01939980871975422, + -0.004856193903833628, + 0.006841116584837437 + ] + }, + { + "id": "cb049dcd-563e-46de-a83a-312f4a1e5f45", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "travismitchell", + "reviewDate": "2021-03-08T05:59:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "abc996b5-91b8-466b-a5fd-f271f8bcdfb9", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "erinmoore", + "reviewDate": "2021-11-30T20:32:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5f05ee61-343e-46cd-b68e-4d736a999732", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "mrichardson", + "reviewDate": "2021-02-27T09:35:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7d9479bd-4cb8-40ca-b210-79120f27585a", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "graveslaura", + "reviewDate": "2022-10-09T01:39:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b48c3664-7d10-46ff-8b8b-4114c12039aa", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "amanda85", + "reviewDate": "2021-02-24T03:23:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9bca65b5-c6bc-4bb6-8165-ba5ba3b15bda", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "padillakristie", + "reviewDate": "2022-09-17T08:33:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b9885973-be26-4cf4-9678-f1fcf679682a", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "xwade", + "reviewDate": "2022-05-01T09:24:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "24f00556-849c-49bc-b095-37fd388754e5", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "danielrussell", + "reviewDate": "2022-08-23T09:07:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "56b45e61-76cf-4199-bc9e-daead6ed5e56", + "productId": "60f4a95c-70a1-487b-9903-debb5c551914", + "category": "Other", + "docType": "customerRating", + "userName": "victoria78", + "reviewDate": "2021-11-22T11:58:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6131f9c1-cba7-4740-acbc-dfd93c0a9420", + "productId": "6131f9c1-cba7-4740-acbc-dfd93c0a9420", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Mini (Gold)", + "description": "This Amazing Stand Mini (Gold) is so good, it's so freaking long I had to change it in half. The best part of this is", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-01-09T04:24:25", + "price": 541.88, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2022-03-13T03:25:20", + "newPrice": 554.86 + }, + { + "priceDate": "2022-03-14T03:25:20", + "newPrice": 548.12 + }, + { + "priceDate": "2022-03-15T03:25:20", + "newPrice": 577.13 + }, + { + "priceDate": "2022-06-13T03:25:20", + "newPrice": 541.88 + } + ], + "descriptionVector": [ + 0.02533332072198391, + 0.010040240362286568, + -0.03417671099305153, + -0.010352750308811665, + -0.025492900982499123, + -0.0684066116809845, + -0.10766328871250153, + -0.02622430957853794, + 0.012959223240613937, + 0.08814133703708649, + -0.024229558184742928, + 0.035852301865816116, + -0.0020612413063645363, + -0.02365773171186447, + 0.04835273325443268, + -0.047714412212371826, + 0.03516078740358353, + 0.024708298966288567, + 0.005768151022493839, + 0.07271527498960495, + 0.057289209216833115, + -0.10803563892841339, + -0.025253530591726303, + 0.020732097327709198, + -0.013125453144311905, + -0.04074608534574509, + -0.03510759398341179, + -0.002046280773356557, + -0.011808917857706547, + 0.03199578449130058, + 0.0013057298492640257, + 0.05048046633601189, + -0.0066657885909080505, + 0.04643777012825012, + -0.058619044721126556, + 0.08404545485973358, + 0.0019714776426553726, + 0.03396393731236458, + -0.039389654994010925, + 0.0338575504720211, + 0.017580393701791763, + 0.037740662693977356, + -0.015572345815598965, + 0.031011708080768585, + 0.0192559827119112, + -0.01743411272764206, + -0.072502501308918, + -0.00915590114891529, + -0.057289209216833115, + -0.019575143232941628, + -0.015253185294568539, + 0.002318896586075425, + -0.040799278765916824, + -0.0052162702195346355, + 0.007739628665149212, + -0.009574797935783863, + 0.01069850753992796, + 0.001821871381253004, + 0.05829988420009613, + -0.03787364810705185, + -0.002998773707076907, + -0.01555904746055603, + 0.010838139802217484, + -0.026570064947009087, + -0.02554609440267086, + -0.01696867123246193, + -0.07484300434589386, + -0.03880453109741211, + 0.02861800789833069, + 0.06197022274136543, + -0.0459856279194355, + 0.024242857471108437, + -0.03175641596317291, + -0.03090532124042511, + 0.007234292104840279, + -0.06021484360098839, + 0.10553555190563202, + 0.04111843928694725, + 0.026636557653546333, + 0.03571931645274162, + 0.032155364751815796, + 0.01021311804652214, + -0.010139977559447289, + -0.037740662693977356, + 0.05792753025889397, + -0.035213980823755264, + 0.05433697998523712, + -0.06218299642205238, + -0.06952367722988129, + -0.004830618854612112, + -0.09016268700361252, + -0.0007534335600212216, + 0.0037035851273685694, + -0.029841454699635506, + -0.028538217768073082, + 0.04790058732032776, + 0.00024290232977364212, + 0.06255535036325455, + 0.014920727349817753, + 0.01500051748007536, + 0.010831490159034729, + 0.009820817038416862, + -0.03630444407463074, + -0.006509533151984215, + -0.0672895535826683, + 0.01113735232502222, + -0.003336218884214759, + 0.019894303753972054, + 0.03739490732550621, + -0.20234739780426025, + 0.024030083790421486, + 0.007433766964823008, + 0.008989672176539898, + 0.013670683838427067, + -0.04042692482471466, + -0.023099200800061226, + -0.024748193100094795, + -0.0024967617355287075, + -0.00869045965373516, + -0.043352559208869934, + 0.028511621057987213, + 0.07920485734939575, + -0.015585644170641899, + 0.04002797603607178, + -0.00977427326142788, + -0.021689577028155327, + -0.01976132020354271, + 0.016144173219799995, + -0.013537701219320297, + -0.06787468492984772, + -0.03896411135792732, + -0.008983022533357143, + 0.09627991914749146, + -0.0016955372411757708, + -0.06697039306163788, + 0.016662808135151863, + 0.004704284481704235, + 0.02952229417860508, + -0.013644088059663773, + 0.06691720336675644, + 0.011935251764953136, + -0.026117922738194466, + 0.04593243449926376, + 0.0013223527930676937, + -0.012719853781163692, + 0.03422990441322327, + -0.03393734246492386, + -0.01952194981276989, + -0.01020646933466196, + 0.05439017340540886, + 0.014136126264929771, + -0.11787640303373337, + -0.11128043383359909, + -0.0960671454668045, + 0.06159786880016327, + 0.045639872550964355, + -0.044496215879917145, + -0.028644604608416557, + -0.0344160795211792, + 0.060268037021160126, + -0.0376608744263649, + 0.001195187447592616, + -0.0005473094643093646, + 0.03109149821102619, + -0.016317052766680717, + -0.04117163270711899, + 0.034256499260663986, + 0.05851265788078308, + 0.015239886939525604, + 0.04258125647902489, + 0.08436461538076401, + 0.006549428217113018, + -0.008324755355715752, + -0.04561327397823334, + -0.013989844359457493, + -0.015931401401758194, + 0.09526924043893814, + -0.015864908695220947, + -0.013391419313848019, + -0.06904493272304535, + 0.010964473709464073, + 0.07776863873004913, + 0.010745051316916943, + 0.038724739104509354, + 0.014934025704860687, + 0.06393837183713913, + 0.06526821106672287, + 0.03303305432200432, + -0.0251072496175766, + -0.06399156898260117, + -0.006805420853197575, + -0.04324617236852646, + 0.018524575978517532, + -0.05856585130095482, + 0.0012409004848450422, + 0.014814340509474277, + -0.043778106570243835, + -0.03175641596317291, + -0.027234982699155807, + 0.04617180675268173, + -0.0409056656062603, + 0.0822368785738945, + 0.06175744906067848, + 0.006250215694308281, + 0.020612413063645363, + -0.04779420047998428, + -0.005339279770851135, + 0.006695709656924009, + 0.04279403015971184, + 0.03888431936502457, + 0.05548063665628433, + -0.02485457994043827, + -0.11117404699325562, + -0.005957652349025011, + 0.06548098474740982, + 0.05103899538516998, + 0.010864736512303352, + 0.015199992805719376, + -0.003301310585811734, + -0.04085247218608856, + 0.011928603053092957, + -0.11351455003023148, + 0.020053884014487267, + 0.023857206106185913, + -0.08776898682117462, + -0.02506735362112522, + -0.0006557739689014852, + 0.01450847927480936, + 0.05526786297559738, + 0.0607999712228775, + -0.07835377007722855, + -0.05409761145710945, + -0.04159718006849289, + 0.04524092376232147, + -0.05042727291584015, + 0.005927731283009052, + -0.010106731206178665, + -0.007573399692773819, + -0.001079658279195428, + -0.0005963470321148634, + -0.0024186340160667896, + 0.0733535960316658, + -0.057980723679065704, + -0.04766121879220009, + 0.048459116369485855, + 0.009920555166900158, + -0.010632015764713287, + -0.03790024295449257, + -0.00869045965373516, + -0.0232720784842968, + -0.01738091930747032, + -0.050985801964998245, + 0.03944284841418266, + 0.0267296452075243, + 0.030107421800494194, + 0.03976200893521309, + 0.10362059623003006, + 0.013171996921300888, + 0.03691616654396057, + -0.060534004122018814, + 0.010751700960099697, + -0.04353873431682587, + 0.0262376070022583, + 0.05274118110537529, + -0.00383656844496727, + 0.025492900982499123, + 0.019575143232941628, + -0.005382499657571316, + 0.016543123871088028, + 0.04063969850540161, + -0.06851299852132797, + 0.001444531255401671, + 0.029469100758433342, + 0.012008393183350563, + -0.0423152893781662, + 0.02598493918776512, + 0.005325981415808201, + 0.06484266370534897, + 0.0688321590423584, + -0.022580565884709358, + 0.07186418026685715, + 0.03819280490279198, + 0.07042796164751053, + 0.06782148778438568, + -0.012493781745433807, + -0.04210251569747925, + 0.042661044746637344, + -0.033990535885095596, + -0.035639528185129166, + -0.021689577028155327, + -0.005468938499689102, + 0.025639181956648827, + 0.04667714238166809, + 0.043299365788698196, + -0.026676451787352562, + 0.004697635304182768, + -0.013976546004414558, + 0.07218334078788757, + 0.004265439696609974, + -0.031224481761455536, + 0.07611964643001556, + -0.01857776753604412, + -0.03816621005535126, + -0.06330005824565887, + -0.010026942007243633, + 0.0672895535826683, + -0.055214669555425644, + -0.03601188212633133, + -0.09207764267921448, + 0.041012052446603775, + 0.09425856918096542, + 0.016676107421517372, + -0.01742081344127655, + 0.03231494501233101, + 0.005316007882356644, + -0.07425788044929504, + -0.014495180919766426, + -0.0020097102969884872, + 0.02883078157901764, + 0.007201046217232943, + 0.0655873715877533, + -0.04484197124838829, + -0.010525628924369812, + 0.013697280548512936, + 0.05066664144396782, + 0.02808607555925846, + 0.007353976834565401, + -0.05159752443432808, + -0.0010705156018957496, + -0.013471209444105625, + -0.02599823661148548, + -0.04226209595799446, + 0.036171458661556244, + -0.0041590528562664986, + -0.014561672694981098, + -0.07197056710720062, + -0.01627715677022934, + -0.045214325189590454, + 0.008869986981153488, + 0.05659769847989082, + 0.01973472349345684, + -0.059842489659786224, + -0.03066595084965229, + 0.007074712309986353, + 0.02626420371234417, + -0.06830022484064102, + 0.03348519653081894, + -0.04928361624479294, + 0.07675796747207642, + -0.0009558175224810839, + 0.0013339888537302613, + -0.01954854652285576, + 0.026383887976408005, + -0.014149424619972706, + 0.07276846468448639, + 0.03393734246492386, + 0.03396393731236458, + -0.05601257085800171, + 0.014920727349817753, + -0.00869045965373516, + 0.04899105057120323, + -0.022221511229872704, + 0.030745740979909897, + 0.009255638346076012, + 0.061438288539648056, + 0.015984592959284782, + -0.0246152114123106, + 0.02811267226934433, + -0.05314012989401817, + 0.029176538810133934, + -0.045427098870277405, + -0.06787468492984772, + 0.012460536323487759, + 0.02922973223030567, + -0.00038980733370408416, + 0.04220890253782272, + 0.07345998287200928, + 0.026902522891759872, + 0.02605143003165722, + 0.03816621005535126, + -0.009415218606591225, + 0.0297616645693779, + 0.01057882234454155, + 0.006080661900341511, + 0.11628060787916183, + -0.020053884014487267, + 0.003660365706309676, + 0.024269454181194305, + -0.06718316674232483, + 0.028750991448760033, + -0.055214669555425644, + -0.08691789209842682, + -0.006213644985109568, + 0.00847103726118803, + 0.0394960418343544, + -0.07877930998802185, + -0.02276674285531044, + 0.0809602364897728, + 0.03577250987291336, + 0.01647663302719593, + 0.020160268992185593, + 0.04790058732032776, + -0.03462885320186615, + -0.005246191751211882, + -0.0185511726886034, + -0.038644950836896896, + 0.003560628043487668, + 0.14968600869178772, + -0.0014993868535384536, + -0.09415218234062195, + -0.00750025874003768, + -0.02739456109702587, + -0.030134018510580063, + -0.04486856982111931, + 0.08170494437217712, + 0.07649199664592743, + 0.11234430223703384, + -0.013298330828547478, + 0.04226209595799446, + -0.03276708722114563, + 0.06314047425985336, + 0.03476183861494064, + -0.021662980318069458, + -0.020133672282099724, + -0.07915166765451431, + 0.06665123254060745, + -0.02506735362112522, + 0.015106904320418835, + -0.06287451088428497, + -0.039602428674697876, + 0.010445838794112206, + -0.04037373140454292, + -0.04223550111055374, + 0.0777154490351677, + -0.06356602162122726, + 0.00999369565397501, + 0.026875926181674004, + -0.00229562446475029, + -0.023046007379889488, + 0.03853856399655342, + 0.014255810528993607, + -0.05803391709923744, + 0.05941694229841232, + -0.0413312129676342, + -0.0684066116809845, + -0.04061310365796089, + -0.05478912219405174, + 0.02087838016450405, + 0.01791285164654255, + -0.052422020584344864, + -0.060268037021160126, + 0.013963247649371624, + -0.048671890050172806, + 0.01813892275094986, + 0.020984767004847527, + 0.018710751086473465, + 0.04157058149576187, + 0.11681254208087921, + 0.013910054229199886, + 0.018271906301379204, + 0.004464914556592703, + 0.009681184776127338, + 0.029442504048347473, + -0.03321922942996025, + 0.06697039306163788, + -0.034283097833395004, + 0.0008132760412991047, + -0.008111981675028801, + 0.0009408569312654436, + 0.0075601013377308846, + -0.0051431297324597836, + 0.010346101596951485, + -0.08154536783695221, + 0.01785965822637081, + -0.03968222066760063, + -0.06287451088428497, + -0.023365167900919914, + -0.07925805449485779, + -0.03226175159215927, + 0.004488186910748482, + -0.05601257085800171, + 0.0627681240439415, + -0.01908310502767563, + 0.0413312129676342, + 0.030772337689995766, + -0.016609614714980125, + -0.03946944698691368, + -0.017620287835597992, + 0.02719508670270443, + 0.04731546342372894, + 0.025665778666734695, + 0.05803391709923744, + 0.07457704097032547, + -0.006263514049351215, + -0.010725104250013828, + 0.03422990441322327, + -0.020093778148293495, + 0.08383268117904663, + -0.057289209216833115, + 0.014867533929646015, + -0.014827638864517212, + 0.015253185294568539, + -0.03853856399655342, + 0.03255431354045868, + 0.013936650939285755, + -0.03047977387905121, + -0.03550654277205467, + 0.025665778666734695, + -0.010346101596951485, + -0.08383268117904663, + -0.0376608744263649, + 0.028671201318502426 + ] + }, + { + "id": "a318e8fd-6a93-4b16-af39-2bdfe577811c", + "productId": "6131f9c1-cba7-4740-acbc-dfd93c0a9420", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael08", + "reviewDate": "2022-03-13T03:25:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Super (Steel)", + "description": "This Amazing Computer Super (Steel) is a computer based on a computer, a very important type of computing power. The computer has all kinds of special features and capabilities, however its main advantage is its huge power.\n\nThe Computer and It's Technology\n\nAll three are very important, and it is very important that this Computer (", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-04-06T20:35:49", + "price": 938.01, + "stock": 43, + "priceHistory": [ + { + "priceDate": "2021-01-10T13:09:19", + "newPrice": 864.64 + }, + { + "priceDate": "2022-01-20T13:09:19", + "newPrice": 938.01 + } + ], + "descriptionVector": [ + 0.016845086589455605, + 0.05621776357293129, + -0.05436697602272034, + 0.014950918033719063, + 0.06148095056414604, + -0.028369149193167686, + -0.04057279974222183, + -0.041324686259031296, + 0.09051522612571716, + 0.12261487543582916, + 0.11891330033540726, + -0.0271979458630085, + 0.033082883805036545, + -0.003311180043965578, + 0.020590046420693398, + -0.010598667897284031, + 0.014133967459201813, + 0.03875092789530754, + 0.003334676381200552, + -0.05644911527633667, + 0.012651888653635979, + -0.04181630164384842, + -0.05167754366993904, + 0.020083969458937645, + -0.05474291741847992, + -0.00036238625762052834, + -0.02725578472018242, + -0.03698689490556717, + -0.07941048592329025, + -0.024537434801459312, + 0.020344236865639687, + 0.024508517235517502, + 0.026460522785782814, + -0.03912686929106712, + 0.039387136697769165, + -0.01954897679388523, + -0.04068847373127937, + -0.013967685401439667, + 0.007887548767030239, + -0.0417584627866745, + 0.037709858268499374, + -0.03192613646388054, + 0.023250557482242584, + 0.025318237021565437, + 0.047368671745061874, + 0.00815504603087902, + -0.06969383358955383, + -0.015601586550474167, + -0.020199645310640335, + 0.011791560798883438, + -0.00557767553254962, + 0.015471452847123146, + 0.05523453280329704, + 0.06425713747739792, + -0.031203173100948334, + -0.0129266157746315, + 0.039444975554943085, + 0.02239745855331421, + -0.024841079488396645, + -0.012087976559996605, + 0.0423368364572525, + 0.03591690585017204, + -0.07293272018432617, + 0.01531240064650774, + -0.023438528180122375, + -0.04676138237118721, + -0.02871617302298546, + 0.045864906162023544, + 0.016989680007100105, + 0.009687731973826885, + -0.07154462486505508, + 0.042770612984895706, + 0.01772710308432579, + 0.024739865213632584, + -0.004995688796043396, + 0.003687121905386448, + 0.071602463722229, + 0.03996551036834717, + 0.0625220239162445, + 0.0010989069705829024, + 0.06153878942131996, + 0.10214050859212875, + 0.009962459094822407, + -0.0028376379050314426, + 0.09144062548875809, + 0.0014576783869415522, + -0.031029662117362022, + -0.11723601818084717, + 0.033140718936920166, + 0.039300382137298584, + -0.03895336017012596, + 0.01373633649200201, + 0.05456940457224846, + -0.006387396715581417, + 0.010439615696668625, + 0.07004085928201675, + -0.0744364857673645, + 0.024812161922454834, + 0.0257086381316185, + 0.007081442978233099, + 0.05121484771370888, + -0.0028105268720537424, + -0.032851532101631165, + -0.07489918172359467, + -0.0062861815094947815, + -0.03348774462938309, + -0.00772126717492938, + 0.015037673525512218, + 0.01135778147727251, + 0.014105048961937428, + -0.08288072049617767, + -0.028470365330576897, + -0.020488830283284187, + 0.00602952903136611, + 0.04305979982018471, + -0.009702191688120365, + -0.05647803097963333, + -0.06281120330095291, + 0.044332217425107956, + -0.045749232172966, + 0.02904873713850975, + 0.08825957775115967, + 0.031810462474823, + -0.03360341861844063, + -0.09722434729337692, + 0.027805237099528313, + 0.00973834004253149, + -0.046038415282964706, + 0.02764618583023548, + -0.02067680098116398, + -0.07142894715070724, + 0.060208532959222794, + 0.013439920730888844, + 0.04375384747982025, + -0.03389260172843933, + 0.014950918033719063, + 0.060613393783569336, + 0.10699883103370667, + -0.022961370646953583, + 0.00030206385417841375, + -0.030133184045553207, + 0.008328557945787907, + -0.10503236949443817, + 0.004569139331579208, + -0.06975167244672775, + -0.004637821111828089, + -0.04647219553589821, + 0.04835190623998642, + 0.0020188800990581512, + 0.003209965070709586, + 0.010186578147113323, + -0.027949830517172813, + -0.03369017317891121, + -0.04358033463358879, + 0.06281120330095291, + 0.03259126469492912, + -0.015717260539531708, + 0.05034728720784187, + -0.02424824982881546, + 0.08519420772790909, + 0.021414225921034813, + -0.04470816254615784, + -0.08629311621189117, + 0.0482940673828125, + 0.02758834697306156, + -0.03331423178315163, + 0.061712298542261124, + -0.022946912795305252, + -0.10861827433109283, + 0.009145508520305157, + 0.006976613309234381, + -0.001684508635662496, + 0.03883768618106842, + -0.03687122091650963, + 0.08259153366088867, + 0.011003528721630573, + 0.027342539280653, + 0.04884352162480354, + -0.05668046325445175, + -0.010078133083879948, + -0.0161944180727005, + -0.008451461791992188, + -0.020344236865639687, + 0.01632455177605152, + 0.052082404494285583, + 0.010931232012808323, + 0.028369149193167686, + 0.04638544097542763, + 0.00223034736700356, + -0.059051789343357086, + 0.039300382137298584, + -0.09635678678750992, + 0.08744985610246658, + -0.02923670783638954, + 0.025130266323685646, + 0.008588825352489948, + -0.03036453388631344, + 0.012456688098609447, + -0.006813946180045605, + -0.0159052312374115, + 0.013960455544292927, + 0.01205182820558548, + 0.04973999783396721, + 0.027877533808350563, + 0.01121318805962801, + -0.030046429485082626, + 0.005086059216409922, + 0.03718932345509529, + 0.0482940673828125, + 0.03221532329916954, + 0.026634033769369125, + 0.010678194463253021, + -0.04875676706433296, + -0.027906453236937523, + 0.058993950486183167, + -0.033053964376449585, + 0.01538469735532999, + 0.0033762468956410885, + -0.018262097612023354, + -0.012586821801960468, + 0.057229917496442795, + 0.010034755803644657, + 0.06096041575074196, + -0.060150694102048874, + -0.032099649310112, + -0.04459248483181, + 0.013714647851884365, + -0.04942189157009125, + -0.026041202247142792, + 0.02406027726829052, + -0.037912290543317795, + 0.03846174106001854, + 0.034586649388074875, + 0.004489613231271505, + -0.047831371426582336, + -0.050752148032188416, + 0.05685397610068321, + -0.050491880625486374, + -0.07582458108663559, + 0.08484718203544617, + 0.02588215097784996, + -0.07339541614055634, + -0.02582431212067604, + -0.08970550447702408, + 0.01921641267836094, + -0.02760280668735504, + -0.008863551542162895, + -0.06240634620189667, + -0.030942905694246292, + -0.05130160227417946, + -0.016787249594926834, + 0.013852011412382126, + 0.021356388926506042, + 0.06911545991897583, + 0.05665154382586479, + 0.04135360196232796, + 0.04395627602934837, + -0.0390690341591835, + -0.01362066250294447, + -0.04505518451333046, + -0.06385227292776108, + -0.09890162199735641, + -0.0020965987350791693, + 0.08247585594654083, + -0.02904873713850975, + -0.016555899754166603, + 0.03050912730395794, + 0.028383608907461166, + -0.045170858502388, + 0.037825532257556915, + 0.050867822021245956, + 0.00023315624275710434, + -0.01959235407412052, + 0.01918749324977398, + -0.036321766674518585, + -0.032967209815979004, + 0.014170115813612938, + 0.061712298542261124, + 0.013902618549764156, + -0.052400510758161545, + 0.024508517235517502, + -0.014784635975956917, + 0.03909795358777046, + -0.054077789187431335, + -0.005722268484532833, + -0.031521279364824295, + -0.012037368491292, + -0.004005226772278547, + 0.07050355523824692, + -0.07906346023082733, + -0.014372546225786209, + -0.018493447452783585, + 0.018334394320845604, + 0.08432664722204208, + 0.00109800323843956, + -0.0009299138328060508, + 0.03831715136766434, + -0.0681900680065155, + -0.011726493947207928, + -0.042799532413482666, + 0.05292104557156563, + -0.07391595095396042, + -0.014965377748012543, + 0.0041136713698506355, + 0.014936458319425583, + 0.05138835683465004, + 0.060324206948280334, + 0.010786639526486397, + -0.003316602436825633, + -0.015283482149243355, + 0.0032732244580984116, + 0.023062586784362793, + -0.04372492805123329, + 0.024971215054392815, + 0.05318131297826767, + 0.010584209114313126, + 0.019867081195116043, + 0.01130717433989048, + -0.002499651862308383, + -0.0029822310898452997, + -0.009384087286889553, + -0.0360904186964035, + -0.1270105093717575, + 0.02928008697926998, + 0.02085031382739544, + 0.012767563574016094, + -0.036292847245931625, + 0.03400827944278717, + -0.00639824103564024, + -0.06668630242347717, + 0.006492226384580135, + -0.017090894281864166, + -0.03079831227660179, + 0.042423591017723083, + -0.02751605212688446, + -0.12596943974494934, + 0.007417622022330761, + 0.08924280852079391, + -0.02878846973180771, + 0.03412395343184471, + 0.05922529846429825, + 0.021486522629857063, + -0.021385306492447853, + 0.039444975554943085, + 0.023857848718762398, + 0.009702191688120365, + 0.03583015128970146, + -0.02722686529159546, + -0.02254205197095871, + 0.0011766257230192423, + 0.0018923610914498568, + -0.026402685791254044, + 0.05508993938565254, + -0.006969383452087641, + 0.09427464753389359, + -0.044332217425107956, + 0.05506101995706558, + -0.09450599551200867, + 0.02440730109810829, + -0.034499894827604294, + 0.01928870938718319, + -0.006817560642957687, + 0.0580974742770195, + 0.032735858112573624, + -0.009282872080802917, + -0.05286320671439171, + 0.004532990977168083, + 0.08594609051942825, + 0.027125651016831398, + -0.0057114241644740105, + 0.022845696657896042, + 0.01937546394765377, + 0.017437918111681938, + 0.03059588186442852, + 0.030248859897255898, + -0.05005810409784317, + 0.038027964532375336, + 0.04155603423714638, + -0.01910073682665825, + 0.02087923139333725, + -0.005834328476339579, + 0.04496842995285988, + 0.10347076505422592, + 0.036119334399700165, + 0.009210575371980667, + -0.12608511745929718, + 0.021819086745381355, + -0.01464004348963499, + -0.06009285897016525, + 0.10555290430784225, + -0.06917329877614975, + 0.03860633447766304, + -0.031174253672361374, + 0.022874616086483, + 0.042510345578193665, + -0.021761249750852585, + -0.02239745855331421, + 0.014538828283548355, + -0.0001962172391358763, + 0.016758330166339874, + -0.008762337267398834, + 0.04976891726255417, + 0.004467924125492573, + -0.058704763650894165, + 0.0018562128534540534, + -0.07611376792192459, + -0.05613100901246071, + -0.0732797384262085, + -0.03718932345509529, + 0.026691870763897896, + -0.036206092685461044, + -0.05621776357293129, + 0.03857741877436638, + -0.04945081099867821, + 0.04048604518175125, + -0.0056282831355929375, + 0.03548312559723854, + 0.11127878725528717, + 0.050694312900304794, + -0.08571474254131317, + -0.03371909260749817, + 0.013953226618468761, + 0.036379601806402206, + 0.047860287129879, + 0.006850094068795443, + -0.0015959454467520118, + -0.016772789880633354, + -0.005613823886960745, + -0.015572668053209782, + -0.03525177761912346, + -0.006542833987623453, + -0.023525284603238106, + 0.013230261392891407, + 0.07113976776599884, + -0.027776319533586502, + -0.032099649310112, + 0.0005499052931554615, + -0.033227477222681046, + -0.0179729126393795, + 0.036466360092163086, + -0.00029460826772265136, + -0.013259179890155792, + 0.017987370491027832, + -0.025043509900569916, + -0.07998885959386826, + -0.015211185440421104, + -0.08924280852079391, + -0.03649527579545975, + 0.019765865057706833, + -0.07871644198894501, + -0.08218666911125183, + -0.021775707602500916, + -0.003997996915131807, + 0.02267218567430973, + 0.018435610458254814, + 0.03050912730395794, + -0.00204056897200644, + 0.006051217671483755, + -0.05057863891124725, + 0.032996125519275665, + 0.02593998797237873, + 0.012644659727811813, + 0.022946912795305252, + -0.1056685745716095, + 0.01956343464553356, + 0.04167170822620392, + -0.05847341567277908, + -0.08160829544067383, + -0.0026370151899755, + 0.02255650982260704, + -0.011054135859012604, + -0.06980951130390167, + 0.02429162710905075, + 0.08901146054267883, + -0.03843282535672188, + -0.13105911016464233, + 0.04644327610731125, + 0.014329168014228344, + -0.023713255301117897, + 0.06153878942131996, + 0.014864162541925907, + 0.002797874854877591, + -0.023019207641482353, + -0.04155603423714638, + -0.005071599967777729, + -0.0037268849555402994, + -0.0006452463567256927, + 0.023857848718762398, + -0.007598362863063812, + 0.031579114496707916, + 0.0352228581905365, + 0.06408362835645676, + -0.038346067070961, + -0.03851957991719246, + 0.0010826402576640248, + -0.002436392242088914, + -0.013172423467040062, + -0.025361616164445877, + -0.016816167160868645, + 0.07194948196411133, + -0.11712034791707993, + 0.00958651676774025, + -0.0512726828455925, + 0.07293272018432617, + -0.023785552009940147, + 0.037941206246614456, + 0.04198981076478958, + 0.03707364946603775, + -0.05448265001177788, + -0.026287009939551353, + 0.009955229237675667, + -0.025086889043450356 + ] + }, + { + "id": "4e0a4b53-b0c2-4baa-bee8-bd58304440d6", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanieschmidt", + "reviewDate": "2022-11-29T23:25:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7d159f4f-5d07-4327-af35-6ce6cf532c44", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandonmcbride", + "reviewDate": "2021-04-23T05:38:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a8e15468-9f53-4830-bdc0-87a37561c081", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleygutierrez", + "reviewDate": "2021-01-10T13:09:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "383466b9-dc51-4412-8ecc-60c11ae67cfa", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "cnunez", + "reviewDate": "2022-02-01T19:32:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5cb18f95-d50b-4a59-be1c-c7bc30ab881a", + "productId": "2bdd7c90-b4c9-4d3a-92df-0a8825e42660", + "category": "Electronics", + "docType": "customerRating", + "userName": "rothsarah", + "reviewDate": "2022-10-20T19:13:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "product", + "name": "Awesome Filter 3000 (Steel)", + "description": "This Awesome Filter 3000 (Steel) is rated 4.6 out of 5 by 38.\n\nRated 5 out of 5 by Dandy from My new filter is so quick to use Bought this filter in conjunction with the new R-Filter 1000D. I use this filter on my main dishwasher and use it to clean dishes on a regular basis. It's also extremely clean. It works on clean dishes in just 15 minutes. My dishwasher", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-10-31T04:38:27", + "price": 164.93, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-03-18T21:22:17", + "newPrice": 159.3 + }, + { + "priceDate": "2021-11-30T21:22:17", + "newPrice": 162.09 + }, + { + "priceDate": "2022-08-14T21:22:17", + "newPrice": 155.36 + }, + { + "priceDate": "2023-02-05T21:22:17", + "newPrice": 164.93 + } + ], + "descriptionVector": [ + -0.017873438075184822, + -0.02346927486360073, + -0.021519042551517487, + 0.039159782230854034, + 0.017596416175365448, + -0.05815238878130913, + -0.031757764518260956, + -0.019679618999361992, + 0.00952400453388691, + 0.10717414319515228, + 0.03095994144678116, + -0.07446342706680298, + -0.026416786015033722, + -0.0338631272315979, + -0.0031857492867857218, + 0.05070604756474495, + -0.029718885198235512, + -0.03652253746986389, + -0.0336415097117424, + -0.06276202946901321, + -0.018837474286556244, + 0.01974610425531864, + -0.025242215022444725, + 0.005950425285845995, + 0.003986341878771782, + 0.011213837191462517, + -0.017142100259661674, + -0.024643847718834877, + -0.005989208351820707, + -0.0699867531657219, + 0.028810253366827965, + 0.042195938527584076, + 0.005111049860715866, + 0.03415123000741005, + -0.04804663732647896, + -0.015069978311657906, + 0.007064052391797304, + 0.015225110575556755, + 0.004631802439689636, + 0.10735143721103668, + -0.015978610143065453, + 0.025929227471351624, + -0.08399297297000885, + 0.02697082981467247, + 0.012554622255265713, + -0.015424566343426704, + -0.08066871017217636, + 0.016521573066711426, + 0.0084103774279356, + 0.005839616525918245, + 0.09813215583562851, + -0.02362440712749958, + -0.017529930919408798, + 0.0025070460978895426, + 0.020333390682935715, + 0.04720449075102806, + 0.0015028425259515643, + 0.18757690489292145, + 0.052346013486385345, + -0.02331414259970188, + 0.024267097935080528, + -0.07858550548553467, + 0.05194710195064545, + -0.029342135414481163, + -0.07269048690795898, + -0.024954112246632576, + -0.07127213478088379, + 0.00296967220492661, + 0.03709874302148819, + -0.00271896761842072, + -0.019890155643224716, + 0.021142292767763138, + -0.024422230198979378, + 0.04496615752577782, + -0.01111964974552393, + 0.011197215877473354, + 0.0663079097867012, + -0.052833572030067444, + 0.005014092195779085, + 0.005861778277903795, + -0.009468600153923035, + 0.0990186259150505, + -0.005972587037831545, + 0.013141907751560211, + 0.02406764216721058, + -0.004858959931880236, + -0.039093296974897385, + -0.11213836818933487, + 0.035170670598745346, + -0.010931274853646755, + 0.005022402852773666, + -0.005216318182647228, + 0.027547035366296768, + -0.0689229890704155, + -0.05828535929322243, + 0.03949220851063728, + -0.10770602524280548, + -0.0034821622539311647, + -0.05376436561346054, + 0.05092766508460045, + -0.06271770596504211, + -0.0692332535982132, + -0.03295449912548065, + 0.026150844991207123, + 0.002295124577358365, + 0.06426902860403061, + -0.022095248103141785, + 0.004196878056973219, + -0.0163996834307909, + -0.12366247177124023, + -0.009346711449325085, + -0.012266519479453564, + -0.01201165933161974, + 0.02393467165529728, + -0.04144244268536568, + 0.025973550975322723, + -0.052390336990356445, + -0.005124900955706835, + 0.058905888348817825, + -0.0005945577286183834, + -0.05137089639902115, + 0.08811505138874054, + 0.041863515973091125, + 0.00548225874081254, + 0.03645605221390724, + 0.015646183863282204, + 0.0349712148308754, + 0.002687110099941492, + 0.05332113057374954, + -0.014948089607059956, + -0.10531255602836609, + -0.024533038958907127, + -0.008116735145449638, + -0.003761954139918089, + -0.032200999557971954, + 0.09228146076202393, + 0.0008379905484616756, + 0.11249295622110367, + -0.009418737143278122, + 0.07025269418954849, + 0.027702167630195618, + -0.07167104631662369, + -0.016986967995762825, + 0.019912317395210266, + 0.03997976705431938, + -0.035591743886470795, + -0.07973791658878326, + 0.014538097195327282, + 0.007418640423566103, + -0.041952162981033325, + 0.04826825484633446, + -0.05801941826939583, + 0.008620914071798325, + 0.002721737837418914, + -0.015557536855340004, + 0.01210030633956194, + -0.09325657039880753, + 0.09019825607538223, + -0.04631802439689636, + -0.035569582134485245, + -0.014704310335218906, + -0.027680005878210068, + -0.04310457035899162, + -0.025729771703481674, + -0.03246694058179855, + 0.0997278019785881, + -0.012355166487395763, + 0.019735023379325867, + -0.042195938527584076, + 0.035392288118600845, + 0.007523908279836178, + 0.004623491782695055, + 0.01371811330318451, + -0.025220053270459175, + -0.03151398524641991, + 0.007573772221803665, + 0.029452944174408913, + -0.009806566871702671, + -0.0028976467438042164, + -0.016676703467965126, + 0.015291595831513405, + -0.008144437335431576, + -0.03009563311934471, + -0.03756413981318474, + 0.042705658823251724, + 0.04142028093338013, + -0.011778960935771465, + -0.04337051138281822, + 0.014382964931428432, + 0.07300075143575668, + -0.04086623713374138, + 0.025064921006560326, + 0.0086319949477911, + 0.016765350475907326, + -0.1021212637424469, + -0.0010222099954262376, + -0.029031870886683464, + 0.0031164938118308783, + -0.007944981567561626, + -0.014925927855074406, + -0.01827234961092472, + 0.029608076438307762, + 0.09680245071649551, + -0.04840122535824776, + 0.05682268366217613, + 0.012388409115374088, + 0.09174957871437073, + 0.0029225784819573164, + 0.004512683022767305, + -0.025574639439582825, + 0.06484523415565491, + -0.006449064239859581, + -0.01545780897140503, + 0.028632959350943565, + 0.041575413197278976, + 0.04614073038101196, + -0.03807385638356209, + -0.03599065542221069, + -0.035414449870586395, + -0.02732541784644127, + 0.032267484813928604, + -0.027524873614311218, + -0.07020837068557739, + -0.03767494857311249, + 0.01858261413872242, + -0.05123792588710785, + 0.028101077303290367, + -0.01167923305183649, + 0.06076747179031372, + 0.07756606489419937, + 0.016045095399022102, + -0.05469515919685364, + -0.0692332535982132, + 0.008000385947525501, + -0.03616794943809509, + 0.0020084071438759565, + -0.07042998820543289, + -0.03616794943809509, + -0.00600582966580987, + 0.028101077303290367, + 0.06293932348489761, + 0.052168719470500946, + -0.04844554886221886, + -0.041597574949264526, + 0.06289499998092651, + -0.04990822449326515, + 0.049021754413843155, + -0.02179606445133686, + 0.008986582979559898, + 0.007961602881550789, + -0.025330862030386925, + 0.003360272850841284, + -0.07384289801120758, + 0.05549297854304314, + 0.03669983148574829, + 0.12596729397773743, + 0.007551610469818115, + 0.0014862212119624019, + -0.09538409858942032, + -0.08173247426748276, + -0.017496688291430473, + 0.04385806992650032, + 0.02672705054283142, + 0.017452364787459373, + -0.03144749999046326, + 0.01201165933161974, + 0.010499121621251106, + -0.02395683340728283, + -0.010687495581805706, + 0.03435068577528, + -0.07335533946752548, + 0.05332113057374954, + -0.007058511953800917, + -0.03459446504712105, + -0.02157444693148136, + -0.05039578303694725, + -0.0664852038025856, + 0.018615856766700745, + 0.007363236043602228, + 0.016698865219950676, + 0.12836076319217682, + 0.012809481471776962, + -0.045099128037691116, + 0.09600462764501572, + 0.05806374177336693, + -0.00935779232531786, + 0.042550526559352875, + -0.03780791535973549, + 0.04600775986909866, + 0.010144533589482307, + -0.03822898864746094, + 0.0009771939367055893, + -0.004947606939822435, + 0.00577867217361927, + -0.010488040745258331, + -0.01893720030784607, + 0.052213042974472046, + -0.03623443469405174, + -0.020876353606581688, + 0.013141907751560211, + -0.03958085551857948, + -0.008886855095624924, + -0.010526823811233044, + -0.03098210319876671, + -0.011285862885415554, + -0.01992339827120304, + 0.02041095681488514, + -0.024732494726777077, + 0.014560258947312832, + -0.07415316253900528, + -0.005867318715900183, + 0.005834076087921858, + -0.006327175069600344, + 0.03701009601354599, + 0.09458627551794052, + -0.041708383709192276, + -0.059349123388528824, + 0.006000289227813482, + -0.0021316816564649343, + 0.014327560551464558, + -0.045431554317474365, + 0.014637825079262257, + -0.02362440712749958, + 0.1013234481215477, + -0.012875966727733612, + -0.013618385419249535, + -0.009319009259343147, + -0.028788091614842415, + 0.038561414927244186, + 0.0029419700149446726, + 0.07206995785236359, + 0.04689422622323036, + 0.02333630435168743, + 0.05841832980513573, + 0.00935779232531786, + -0.12641052901744843, + 0.009535085409879684, + 0.013773517683148384, + -0.020178258419036865, + 0.021242020651698112, + -0.049154724925756454, + -0.02417845092713833, + 0.021629851311445236, + 0.013485414907336235, + 0.08740587532520294, + -0.03073832392692566, + 0.05296654254198074, + -0.045520201325416565, + -0.008332811295986176, + -0.05983668193221092, + 0.0011946558952331543, + -0.05163683742284775, + 0.05176980793476105, + 0.05407463014125824, + 0.08146653324365616, + -0.029342135414481163, + -0.024688171222805977, + 0.01336352527141571, + -0.0001487260014982894, + 0.0031857492867857218, + 0.0008456086507067084, + -0.017773710191249847, + 0.04614073038101196, + 0.024533038958907127, + 0.016299955546855927, + 0.0672386959195137, + -0.03794088587164879, + 0.048534195870161057, + -0.024377906695008278, + -0.025353023782372475, + -0.015923205763101578, + 0.010593308135867119, + 0.01913665607571602, + 0.04294943809509277, + -0.04356996715068817, + -0.020942838862538338, + 0.039292752742767334, + -0.02300387993454933, + -0.005014092195779085, + 0.038849517703056335, + 0.04676125571131706, + 0.03013995662331581, + -0.02300387993454933, + -0.02774648927152157, + -0.003543107071891427, + 0.025641124695539474, + -0.032090190798044205, + 0.06138800084590912, + -0.04060029610991478, + -0.007213644217699766, + -0.03840628266334534, + -0.021020404994487762, + -0.02353576011955738, + 0.007961602881550789, + 0.014338641427457333, + -0.07654662430286407, + 0.06103341281414032, + 0.08222003281116486, + 0.1037169098854065, + -0.12844941020011902, + 0.01813937909901142, + 0.05176980793476105, + -0.02005636878311634, + -0.07871847599744797, + -0.008764965459704399, + -0.02976320870220661, + 0.016067257151007652, + -0.01495917048305273, + 0.0166877843439579, + -0.06147664785385132, + -0.010776142589747906, + -0.024887626990675926, + 0.08771613985300064, + 0.008161058649420738, + -0.005656782537698746, + 0.04394671693444252, + 0.01170139480382204, + -0.0349712148308754, + 0.07978224009275436, + -0.052700601518154144, + -0.020865272730588913, + 0.09299063682556152, + 0.03246694058179855, + 0.02161877043545246, + -0.004593019373714924, + 0.03780791535973549, + 0.01741912215948105, + -0.02203984372317791, + 0.003260544966906309, + -0.029497267678380013, + 0.029297811910510063, + 0.039447885006666183, + -0.042173776775598526, + 0.03481608256697655, + -0.011501939967274666, + -0.019568810239434242, + 0.005928263533860445, + 0.013928649015724659, + -0.03780791535973549, + 0.0028837956488132477, + 0.039115458726882935, + -0.03816250339150429, + -0.005016862414777279, + 0.020998243242502213, + -0.04436779022216797, + -0.0345723032951355, + 0.00858767144382, + 0.019912317395210266, + 0.03127020597457886, + 0.014438369311392307, + 0.035547420382499695, + -0.004825717303901911, + -0.08811505138874054, + -0.009673596359789371, + 0.045963436365127563, + -0.03018428012728691, + 0.02413412742316723, + 0.11080867052078247, + 0.009429818019270897, + -0.020488522946834564, + -0.08319514989852905, + 0.1298677623271942, + 0.0015970298554748297, + 0.00760701484978199, + 0.013130826875567436, + -0.010283044539391994, + -0.05996964871883392, + -0.06085611879825592, + 0.021541204303503036, + 0.0005346518009901047, + -0.07273481041193008, + -0.08186544477939606, + -0.05332113057374954, + 0.027901621535420418, + -0.00012561201583594084, + 0.0072745890356600285, + 0.03022860363125801, + -0.017618577927350998, + 0.059304799884557724, + 0.04434562847018242, + -0.02980753220617771, + 0.007197022903710604, + 0.006980945821851492, + 0.045874789357185364, + 0.01165707129985094, + -0.001961313420906663, + 0.07233589887619019, + -0.04020138457417488, + -0.002577686682343483, + 0.035946331918239594, + -0.029386458918452263, + 0.0008379905484616756, + -0.08678534626960754, + -0.031846411526203156, + -0.03820682689547539, + 0.03435068577528, + -0.04640667140483856, + -0.013141907751560211, + -0.055625949054956436, + -0.08137788623571396, + 0.052213042974472046, + -0.012465975247323513, + -0.03776359185576439, + -0.015945367515087128, + -0.0680365189909935, + 0.03647821396589279, + -0.00015504556358791888, + -0.0332426019012928, + -0.01915881782770157, + 0.02351359836757183, + 0.0336415097117424, + 0.042838629335165024 + ] + }, + { + "id": "79899a39-b1fa-424d-ab3c-ab3af175cbe3", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "alexanderhoffman", + "reviewDate": "2021-03-18T21:22:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "20c28955-d858-4956-9393-af2ed53461f9", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "larsonamanda", + "reviewDate": "2021-09-03T11:26:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b73c38d6-2bbe-48c9-8490-76d2b258b2c6", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "scain", + "reviewDate": "2021-08-06T08:01:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3568637c-e1d8-4c8a-a871-978ef6b7a911", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "tbartlett", + "reviewDate": "2021-08-23T13:40:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "afd45d7f-d112-4e27-a90a-afa357f62ae6", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "courtney95", + "reviewDate": "2021-05-01T02:02:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a2fb49e4-a50c-4f4f-8d67-ba1a8654392c", + "productId": "950a9c86-e02a-4cbc-9232-afc31983ef21", + "category": "Other", + "docType": "customerRating", + "userName": "leemegan", + "reviewDate": "2022-08-16T14:25:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Super (Black)", + "description": "This Amazing Speaker Super (Black) is the ultimate acoustic bass guitar instrument with impressive sound quality. The Black 3-string is perfect for bass players with", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-06-30T09:49:27", + "price": 1079.26, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-01-22T16:47:32", + "newPrice": 1106.34 + }, + { + "priceDate": "2021-08-29T16:47:32", + "newPrice": 996.79 + }, + { + "priceDate": "2022-04-05T16:47:32", + "newPrice": 1154.39 + }, + { + "priceDate": "2022-11-10T16:47:32", + "newPrice": 1143.92 + }, + { + "priceDate": "2023-03-11T16:47:32", + "newPrice": 1079.26 + } + ], + "descriptionVector": [ + 0.057412900030612946, + -0.020642438903450966, + -0.012852390296757221, + -0.015723034739494324, + -0.019189249724149704, + 0.013185909017920494, + -0.043214522302150726, + -0.005107008386403322, + -0.015234667807817459, + 0.10853658616542816, + -0.0003930758684873581, + -0.010898921638727188, + 0.09533876925706863, + 0.015663478523492813, + -0.012923858128488064, + 0.04271424561738968, + 0.060986317694187164, + 0.005610264837741852, + -0.03959346190094948, + 0.019070135429501534, + -0.00019746851467061788, + -0.03954581543803215, + -0.05336302891373634, + -0.005139764863997698, + -0.03597239777445793, + -0.0013876769226044416, + -0.01521084550768137, + 0.06260626763105392, + -0.04414360970258713, + -0.029182905331254005, + 0.02030891925096512, + 0.03389981761574745, + 0.003079094225540757, + 0.05436358600854874, + -0.0772334560751915, + 0.011113326996564865, + -0.06765669584274292, + -0.0453585721552372, + 0.0008680425235070288, + -0.08847780525684357, + -0.02320338785648346, + 0.05993811413645744, + 0.0556500144302845, + 0.008391574025154114, + 0.056602925062179565, + 0.07508940249681473, + -0.00308207212947309, + 0.02192886918783188, + 0.027110323309898376, + -0.026633867993950844, + 0.01425793394446373, + 0.05722231790423393, + -0.1463671624660492, + 0.015079819597303867, + 0.07423178106546402, + 0.01241166889667511, + 0.048979636281728745, + 0.06565558165311813, + 0.04426272585988045, + -0.04068930819630623, + 0.03082667663693428, + -0.03742558881640434, + 0.0037967555690556765, + 0.016640212386846542, + -0.018605591729283333, + 0.01229255460202694, + 0.02014216035604477, + -0.006450017914175987, + -0.07127775996923447, + 0.13054883480072021, + -0.014448516070842743, + -0.040498726069927216, + 0.04726439714431763, + -0.010249750688672066, + 0.03825938329100609, + 0.023298678919672966, + 0.04805054888129234, + 0.111300028860569, + -0.004970027599483728, + 0.0659414529800415, + 0.045120347291231155, + 0.00029443466337397695, + 0.006414283532649279, + 0.030088171362876892, + 0.031160196289420128, + 0.04600178822875023, + -0.00894545391201973, + -0.07809107005596161, + -0.018617503345012665, + 0.04126105457544327, + -0.059032849967479706, + 0.035019487142562866, + 0.036925308406353, + -0.004973005503416061, + 0.015568186528980732, + 0.008653624914586544, + -0.02539508417248726, + 0.01581832580268383, + -0.07142069190740585, + 0.05450652167201042, + 0.054173000156879425, + -0.0885254517197609, + -0.09152711927890778, + -0.025704780593514442, + -0.038187917321920395, + -0.017986198887228966, + -0.037139713764190674, + -0.05512591451406479, + -0.016139933839440346, + -0.133216992020607, + 0.012155573815107346, + -0.007462485693395138, + 0.056888800114393234, + 0.021488146856427193, + 0.04040343686938286, + 0.014734389260411263, + -0.016926085576415062, + 0.0010228906758129597, + 0.09910276532173157, + 0.02401336282491684, + -0.015675390139222145, + 0.010547535493969917, + 0.014936883002519608, + -0.03268485516309738, + -0.024799514561891556, + -0.06198687478899956, + -0.057698775082826614, + 0.040832243859767914, + -0.02563331089913845, + 0.02356072887778282, + -0.03261338546872139, + 0.061224546283483505, + -0.00892163161188364, + 0.04554915428161621, + -0.08623846620321274, + -0.005434571765363216, + 0.03549594059586525, + 0.04016520828008652, + 0.0076292455196380615, + -0.04883670061826706, + -0.019522767513990402, + -0.016937997192144394, + 0.10396261513233185, + 0.09714929759502411, + -0.016544921323657036, + -0.024608932435512543, + -0.016068466007709503, + 0.03251809626817703, + 0.0024388572201132774, + -0.011059725657105446, + 0.03482890501618385, + -0.08580965548753738, + 0.013960149139165878, + -0.06698966026306152, + 0.015734946355223656, + 0.062320392578840256, + -0.111300028860569, + 0.02095213532447815, + -0.025037741288542747, + 0.08185507357120514, + -0.01313826348632574, + 0.002406100742518902, + -0.03451920673251152, + 0.02314383164048195, + -0.043381281197071075, + 0.05712702497839928, + -0.026228880509734154, + -0.010666649788618088, + -0.037544701248407364, + 0.04619237035512924, + 0.04674029350280762, + 0.020856844261288643, + -0.02684827335178852, + -0.038592904806137085, + -0.013662364333868027, + -0.023596463724970818, + 0.11301527172327042, + -0.030802855268120766, + -0.011571915820240974, + 0.034209512174129486, + -0.05655527859926224, + 0.05679350718855858, + -0.02435879223048687, + -0.022822223603725433, + 0.0728500634431839, + 0.074374720454216, + 0.06317801028490067, + 0.06260626763105392, + -0.0481458380818367, + -0.03227986767888069, + 0.05917578563094139, + -0.054173000156879425, + -0.06632261723279953, + -0.027396196499466896, + -0.011828009970486164, + 0.03485272824764252, + -0.037092067301273346, + -0.0431668758392334, + -0.006706112530082464, + 0.034209512174129486, + -0.03058844991028309, + 0.03201781585812569, + 0.09843572974205017, + 0.013876769691705704, + 0.013614718802273273, + -0.068800188601017, + 0.026300348341464996, + 0.1075836718082428, + 0.013721921481192112, + -0.03416186571121216, + 0.03966492787003517, + 0.04764556139707565, + -0.026395641267299652, + 0.006741846911609173, + 0.03649649769067764, + 0.03158900514245033, + -0.030088171362876892, + -0.00816525798290968, + 0.0014561674324795604, + -0.0800921842455864, + -0.003951603546738625, + 0.011041858233511448, + 0.047717027366161346, + -0.022155186161398888, + -0.05174307897686958, + 0.021202273666858673, + 0.019939666613936424, + 0.032184574753046036, + 0.011655295267701149, + 0.039283763617277145, + -0.05898520350456238, + 0.05788935720920563, + 0.021226096898317337, + 0.01986819878220558, + -0.07499410957098007, + 0.01847456581890583, + 0.018141046166419983, + -0.02008260414004326, + -0.09500524401664734, + 0.08642904460430145, + -0.025013919919729233, + -0.0017479965463280678, + -0.058556392788887024, + 0.004359568934887648, + -0.011839921586215496, + -0.0016229269094765186, + 0.08862074464559555, + -0.03675854951143265, + -0.007134922780096531, + 0.012769009917974472, + -0.08609552681446075, + -0.0007582344114780426, + 0.0276582483202219, + -0.007712624967098236, + -0.036329738795757294, + 0.06922899931669235, + 0.0831415057182312, + -0.030921967700123787, + 0.033518653362989426, + -0.07994925230741501, + -0.037663813680410385, + -0.08309385925531387, + -0.0534583181142807, + 0.035114776343107224, + -0.10415319353342056, + -0.03814027085900307, + -0.002979336539283395, + -0.027967944741249084, + -0.0062832580879330635, + -0.003263720776885748, + -0.01795046404004097, + 0.07418413460254669, + -0.018605591729283333, + 0.030969614163041115, + -0.060128696262836456, + -0.0005929638864472508, + -0.040093738585710526, + 0.010607092641294003, + -0.02713414654135704, + -0.06241568550467491, + 0.11253881454467773, + 0.11387288570404053, + 0.09419526904821396, + -0.04738350957632065, + 0.035186246037483215, + -0.03885495290160179, + 0.027920298278331757, + 0.032136932015419006, + -0.032232221215963364, + -0.019475122913718224, + 0.01587788201868534, + 0.00434170151129365, + 0.006211789790540934, + 0.011375377885997295, + 0.018152957782149315, + 0.028944678604602814, + 0.038426145911216736, + -0.051457203924655914, + 0.004999806173145771, + 0.033447183668613434, + 0.06527441740036011, + -0.00220658490434289, + 0.03192252665758133, + -0.04969431832432747, + 0.0200230460613966, + 0.0802827700972557, + -0.09786397963762283, + 0.06532206386327744, + -0.06613203883171082, + -0.02742001973092556, + 0.045811206102371216, + -0.0032547872979193926, + -0.07780519872903824, + -0.06937193870544434, + 0.03392363712191582, + 0.02003495767712593, + 0.07547056674957275, + 0.06927664577960968, + 0.04762173816561699, + 0.021607261151075363, + -0.03387599438428879, + -0.015973174944519997, + -0.025943007320165634, + 0.05341067165136337, + 0.01784326322376728, + 0.0035257714334875345, + 0.015961263328790665, + -0.040665484964847565, + -0.00415409728884697, + -0.028420576825737953, + 0.01428175624459982, + -0.029516424983739853, + 0.04576355963945389, + -0.017462097108364105, + -0.038021158427000046, + -0.027396196499466896, + 0.008183125406503677, + 0.034209512174129486, + 0.04554915428161621, + 0.03482890501618385, + 0.05245776101946831, + -0.015568186528980732, + -0.013078706339001656, + -0.05846110358834267, + 0.04481064900755882, + -0.029349664226174355, + 0.007724536582827568, + -0.02356072887778282, + 0.021452413871884346, + -0.03849761188030243, + 0.0008367751725018024, + -0.02856351248919964, + 0.09066949784755707, + -0.015973174944519997, + 0.007200435269623995, + -0.05403006449341774, + 0.026300348341464996, + 0.004597796592861414, + 0.04018903151154518, + 0.013924415223300457, + -0.0006971885450184345, + -0.032303690910339355, + -0.013876769691705704, + 0.018808085471391678, + 0.04600178822875023, + 0.06751375645399094, + 0.006789492443203926, + 0.008218859322369099, + 0.013948237523436546, + -0.042285434901714325, + -0.023715578019618988, + 0.0007854072609916329, + -0.013495604507625103, + -0.005443505477160215, + -0.060462214052677155, + 0.00998770073056221, + 0.054982975125312805, + -0.03163665160536766, + 0.01563965529203415, + 0.03130313381552696, + 0.030088171362876892, + 0.011875655502080917, + 0.006563175935298204, + 0.005506040062755346, + 0.0800921842455864, + -0.011869700625538826, + -0.0644167959690094, + 0.016413895413279533, + 0.002218496287241578, + 0.058508746325969696, + 0.003969470504671335, + -0.016580654308199883, + -0.04893198981881142, + 0.026943564414978027, + 0.016068466007709503, + -0.04850317910313606, + -0.01592552848160267, + 0.07199244201183319, + -0.07480353116989136, + 0.007271903567016125, + -0.03404275327920914, + 0.016080375760793686, + 0.0021068272180855274, + 0.008492820896208286, + -0.06932429224252701, + -0.05479239299893379, + -0.01592552848160267, + 0.02177402190864086, + -0.04288100451231003, + -0.05622176080942154, + 0.005217188969254494, + -0.03995080292224884, + -0.005011717323213816, + 0.017569299787282944, + -0.009737561456859112, + 0.04826495423913002, + 0.06837137788534164, + 0.0072242580354213715, + 0.07037249207496643, + -0.014079263433814049, + 0.02603829838335514, + -0.050027839839458466, + -9.966483048629016e-05, + 0.014889237470924854, + -0.04624001681804657, + 0.019129691645503044, + 0.06060515344142914, + -0.022476792335510254, + -0.056936442852020264, + -0.057746417820453644, + -0.011297953315079212, + -0.06679907441139221, + -0.0004556106578093022, + 0.0347336120903492, + -0.03742558881640434, + -0.007736447732895613, + -0.024120565503835678, + 0.016902262344956398, + -0.03301837295293808, + 0.02297707088291645, + -0.01255460549145937, + -0.005181454587727785, + 0.011274131014943123, + 0.0459541417658329, + -0.08795370161533356, + -0.08056864142417908, + -0.037092067301273346, + 0.0011129705235362053, + 0.037902042269706726, + 0.015592009760439396, + -0.007855561561882496, + -0.051457203924655914, + 0.005282701458781958, + 0.04233308136463165, + -0.029349664226174355, + 0.023072361946105957, + -0.009159859269857407, + 0.06837137788534164, + -0.04114194214344025, + 0.028944678604602814, + -0.04802672564983368, + 0.013090617954730988, + 0.00637854915112257, + -0.003582350444048643, + -0.010839364491403103, + 0.005651954561471939, + -0.01916542649269104, + -0.004740733187645674, + -0.04052254930138588, + 0.012637984938919544, + 0.05755583569407463, + -0.05012312904000282, + -0.028658803552389145, + 0.04047490283846855, + -0.06918135285377502, + -0.06641791015863419, + -0.029421133920550346, + -0.0393790565431118, + 0.01858176849782467, + 0.0484793558716774, + -0.05979517847299576, + -0.014043528586626053, + -0.03561505675315857, + 0.050361357629299164, + 0.06870489567518234, + 0.016485363245010376, + -0.007480353116989136, + 0.01142897829413414, + 0.019558502361178398, + -0.04397685080766678, + 0.06546500325202942, + 0.08557142317295074, + -0.0628921389579773, + 0.0008911208715289831, + -0.01368618756532669, + -0.04035579040646553, + 0.007170656695961952, + -0.06770434230566025, + 0.001773308147676289, + 0.02147623710334301, + 0.04554915428161621, + -0.04712145775556564, + -0.007587555330246687, + 0.05155249685049057, + 0.03216075152158737, + 0.06741847097873688, + -0.08166448771953583, + 0.023405881598591805, + -0.01876043900847435, + 0.03130313381552696, + 0.012518870644271374, + 0.0019579348154366016 + ] + }, + { + "id": "af446621-7f96-46f2-8ff0-b7d07f22ec46", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "aaustin", + "reviewDate": "2021-09-13T21:57:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e60e2789-8d54-43aa-b350-8b3f6857696f", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "jdavis", + "reviewDate": "2021-07-12T19:45:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "58743c01-9fb6-4e29-86d7-9afe1d0f65f8", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "amanda04", + "reviewDate": "2021-01-22T16:47:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bf9a3497-98ae-4c7d-b1e9-1e8e08faa5ce", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "xmcintosh", + "reviewDate": "2022-02-10T05:03:35", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a556bc3a-39ae-448a-abbb-15677b4b89d4", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "bcook", + "reviewDate": "2021-11-10T15:16:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b237b053-daa2-4f94-af63-67f61e757dd3", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "melaniesilva", + "reviewDate": "2022-10-22T16:52:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3e53c7ac-1f1a-45b0-ab54-3b007f0bd6ca", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "duranjason", + "reviewDate": "2022-11-11T03:16:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c1fd90d2-dd51-43fc-a6e0-91d16aa2c40f", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "sophiaibarra", + "reviewDate": "2021-12-02T23:43:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7a712f07-c2b9-4617-8903-70b78aaadfab", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "davidpowell", + "reviewDate": "2021-06-01T21:28:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1c03a7cb-9bdf-460d-b86c-bb0f700d019d", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "xblanchard", + "reviewDate": "2022-03-06T10:23:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c977caf3-52bb-4638-8f9b-e2982f91fd00", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "janetdennis", + "reviewDate": "2021-08-26T21:38:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ead46135-f171-4c2a-bbba-79b2565790e2", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "nathan18", + "reviewDate": "2021-04-09T10:59:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "eeea9aaf-fa17-4cf5-9b90-8fa608698e81", + "productId": "0f379a3c-c8ce-4472-831a-8025baef8efd", + "category": "Media", + "docType": "customerRating", + "userName": "joan14", + "reviewDate": "2022-07-03T07:34:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "83e63fe1-55da-41b0-b061-464c08893b86", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Mini (Gold)", + "description": "This Premium Mouse Mini (Gold) is another affordable Mini. You get a mouse that you can easily install onto any of your computers. It comes with an integrated mousepad and a wireless", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-08-04T20:20:52", + "price": 1027.79, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-02-14T00:37:12", + "newPrice": 1074.03 + }, + { + "priceDate": "2021-07-27T00:37:12", + "newPrice": 989.87 + }, + { + "priceDate": "2022-01-06T00:37:12", + "newPrice": 1035.17 + }, + { + "priceDate": "2022-06-18T00:37:12", + "newPrice": 967.82 + }, + { + "priceDate": "2022-11-28T00:37:12", + "newPrice": 1065.92 + }, + { + "priceDate": "2024-02-23T00:37:12", + "newPrice": 1027.79 + } + ], + "descriptionVector": [ + -0.07938973605632782, + 0.04761531203985214, + -0.015562981367111206, + -0.03165862336754799, + 0.036082033067941666, + -0.02222125045955181, + -0.03717051446437836, + 0.05447043478488922, + 0.037911608815193176, + 0.05873172730207443, + -0.013513392768800259, + -0.04666578397154808, + 0.06614267081022263, + -0.05104287341237068, + 0.06368779391050339, + -0.02051904983818531, + -0.03691576421260834, + -0.026725715026259422, + -0.0017629939829930663, + 0.0203916747123003, + 0.0317281037569046, + -0.060352873057127, + -0.006884071975946426, + -0.04638787358999252, + -0.03409034013748169, + -0.04571625962853432, + 0.020843278616666794, + 0.032654471695423126, + 0.009130514226853848, + 0.08142774552106857, + 0.03351135924458504, + -0.04052859917283058, + -0.020299037918448448, + -0.005740586202591658, + -0.054192524403333664, + -0.029365863651037216, + -0.026656238362193108, + 0.00917104259133339, + 0.0354335755109787, + 0.08578167110681534, + 0.009761602617800236, + 0.003676522755995393, + 0.04483620822429657, + -0.05988968908786774, + 0.022429684177041054, + 0.020808540284633636, + -0.04569309949874878, + 0.07225669920444489, + -0.03429877385497093, + 0.008887342177331448, + 0.017994698137044907, + 0.05887068435549736, + -0.02674887515604496, + 0.06790277361869812, + 0.024618228897452354, + -0.02224441058933735, + 0.022198092192411423, + 0.1724897176027298, + 0.017299922183156013, + -0.03135755658149719, + 0.009657385759055614, + -0.036707330495119095, + 0.043909840285778046, + 0.01141748484224081, + -0.06410466134548187, + -0.050394415855407715, + -0.025475118309259415, + 0.0027733140159398317, + 0.08105719834566116, + 0.07832440733909607, + -0.03858322650194168, + -0.02894899807870388, + 0.013663927093148232, + -0.034877754747867584, + 0.002789235906675458, + 0.09296102076768875, + 0.0020915651693940163, + -0.010080041363835335, + 0.048912227153778076, + 0.02688783034682274, + 0.004426301922649145, + -0.040250688791275024, + -0.012448069639503956, + -0.035225141793489456, + 0.04541518911719322, + 0.0726272463798523, + 0.03418297693133354, + -0.06804172694683075, + 0.0049589634872972965, + 0.04279819875955582, + 0.007428313139826059, + 0.08110351115465164, + 0.01380288228392601, + -0.002478034235537052, + 0.015273491851985455, + 0.017763106152415276, + -0.0199053306132555, + 0.06577212363481522, + 0.01880526915192604, + 0.00830257311463356, + 0.08008451014757156, + 0.001544429105706513, + -0.047568995505571365, + 0.021063290536403656, + 0.013629188761115074, + 0.025799347087740898, + 0.05961177870631218, + -0.01967373862862587, + 0.0028587135020643473, + -0.13154424726963043, + 0.010670600458979607, + 0.00941421464085579, + -0.0023231571540236473, + 0.04687421768903732, + -0.016639884561300278, + 0.009819500148296356, + -0.031959693878889084, + 0.02966693416237831, + -0.04411827400326729, + 0.040019094944000244, + 0.07485052943229675, + 0.0441877506673336, + 0.02234862744808197, + 0.030269073322415352, + -0.016686202958226204, + -0.02271917462348938, + -0.028022630140185356, + 0.019859012216329575, + 0.004565257113426924, + -0.08809759467840195, + -0.05826854333281517, + 0.06322461366653442, + 0.028856361284852028, + 0.03754106163978577, + 0.015806153416633606, + -0.0160145852714777, + 0.03673049062490463, + 0.05127446725964546, + 0.0053989882580935955, + 0.009298418648540974, + -0.003887850558385253, + -0.04835640639066696, + -0.04687421768903732, + 0.02649412304162979, + -0.058083269745111465, + -0.027304695919156075, + -0.024039248004555702, + 0.025706710293889046, + -0.10106674581766129, + 0.03272394835948944, + 0.018110493198037148, + -0.05581367015838623, + -0.025220368057489395, + -0.047939542680978775, + 0.060260236263275146, + 0.10347530245780945, + -0.008262043818831444, + 0.0016746995970606804, + -0.0805940106511116, + 0.024155044928193092, + 0.005543733015656471, + -0.01734624058008194, + 0.037332627922296524, + -0.06655953824520111, + 0.03457668423652649, + 0.008684699423611164, + 0.03772633522748947, + 0.01008583139628172, + -0.013142845593392849, + 0.03893061354756355, + -0.016419872641563416, + -0.028740566223859787, + 0.00812887866050005, + -0.08781968057155609, + 0.04335401952266693, + 0.05108919367194176, + 0.013883939944207668, + 0.029226908460259438, + -0.008765757083892822, + -0.02883320301771164, + 0.035966236144304276, + 0.06878282129764557, + -0.08601326495409012, + 0.01185750961303711, + 0.018712632358074188, + 0.0005634198896586895, + 0.002411451656371355, + 0.06919968873262405, + -0.03274710848927498, + -0.0206348467618227, + 0.055165212601423264, + 0.0055900514125823975, + -0.011376956477761269, + -0.039509594440460205, + 0.04446566104888916, + 0.08939450979232788, + 0.04247397184371948, + 0.0642436146736145, + 0.020924335345625877, + -0.016327235847711563, + -0.013826041482388973, + 0.0517839677631855, + 0.04314558580517769, + 0.059426505118608475, + 0.026818351820111275, + -0.03226076439023018, + 0.03497039154171944, + -0.011984885670244694, + 0.018041016533970833, + 0.01662830449640751, + -0.00772938271984458, + -0.01501874066889286, + 0.022638116031885147, + 0.011550650000572205, + 0.05104287341237068, + 0.041593920439481735, + 0.04969964176416397, + -0.0325155146420002, + -0.07716645300388336, + -0.05970441550016403, + 0.03538725525140762, + 0.04863431677222252, + -0.07234933972358704, + -0.008319942280650139, + -0.019129497930407524, + -0.025498278439044952, + 0.03228392452001572, + 0.001356984255835414, + 0.04212658107280731, + 0.060769736766815186, + -0.07485052943229675, + -0.04858800023794174, + -0.012957572005689144, + 0.05326615646481514, + -0.04629523679614067, + 0.02526668645441532, + -0.023240255191922188, + -0.05048705264925957, + 0.047939542680978775, + 0.09763918071985245, + -0.1074586808681488, + 0.024016089737415314, + -0.04164024069905281, + -0.03286290168762207, + -0.0056132106110453606, + 0.02236020565032959, + 0.0776759535074234, + 0.012216477654874325, + -0.03515566512942314, + -0.02347184717655182, + -0.08888500183820724, + -0.04191815108060837, + -0.011382746510207653, + 0.014682931825518608, + -0.07596217095851898, + 0.07049660384654999, + 0.08744913339614868, + -0.05951914191246033, + -0.021283304318785667, + -0.04641103371977806, + 0.03189021721482277, + 0.0011586836772039533, + -0.04286767542362213, + 0.05349775031208992, + 0.002185649471357465, + 0.047568995505571365, + 0.07058923691511154, + -0.10792186856269836, + -0.012969151139259338, + 0.12042783200740814, + -0.004032595548778772, + 0.015041899867355824, + 0.03128807619214058, + -0.03825899586081505, + 0.04997755214571953, + -0.03209865093231201, + -0.06628162413835526, + 0.024270839989185333, + 0.01306178793311119, + -0.03383558988571167, + 0.0451604388654232, + 0.020947495475411415, + 0.05775904282927513, + 0.010236365720629692, + -0.007740962319076061, + -0.037795811891555786, + -0.01980111561715603, + 0.0027110737282782793, + -0.060769736766815186, + -0.04752267524600029, + 0.004394458141177893, + 0.011805401183664799, + 0.04566993936896324, + 0.053080882877111435, + 0.07346098124980927, + 0.011637497693300247, + 0.021318042650818825, + 0.0889776423573494, + -0.011081676930189133, + 0.03309449553489685, + -0.016790419816970825, + 0.033163972198963165, + -0.04617944359779358, + -0.05474834516644478, + 0.031195441260933876, + 0.027142580598592758, + -0.04923645779490471, + 0.01491452381014824, + -0.039509594440460205, + 0.02369186095893383, + 0.10421639680862427, + 0.05396093428134918, + -0.10291948169469833, + 0.007075135130435228, + 0.09680545330047607, + -0.06804172694683075, + -0.056137897074222565, + -0.028439495712518692, + 0.0642436146736145, + -0.0026444909162819386, + -0.025197207927703857, + -0.06401202827692032, + -0.09865818917751312, + 0.09277574717998505, + 0.031473349779844284, + 0.008400999009609222, + -0.058685410767793655, + 0.012691240757703781, + 0.016049325466156006, + -0.03323344886302948, + -0.03374295309185982, + -0.07563794404268265, + -0.00186431547626853, + -0.0012708610156551003, + 0.07860232144594193, + -0.059797052294015884, + -0.012065942399203777, + 0.040134891867637634, + 0.079621322453022, + 0.05321983993053436, + -0.017438877373933792, + -0.02772156149148941, + 0.030245913192629814, + 0.04161708056926727, + -0.01283019594848156, + -0.07123769819736481, + -0.031843896955251694, + -0.02005586586892605, + 0.0032133387867361307, + 0.012262796051800251, + 0.0010161098325625062, + -0.10032565146684647, + 0.01748519577085972, + -0.009802130982279778, + 0.04286767542362213, + -0.060630783438682556, + -0.012054363265633583, + 0.002425926038995385, + -0.004967648070305586, + 0.09101565182209015, + 0.0010826925281435251, + -0.06855122745037079, + 0.0007110597798600793, + 0.08555007725954056, + -0.0654015764594078, + 0.025729870423674583, + -0.031241759657859802, + 0.04872695356607437, + -0.037425264716148376, + -0.013397596776485443, + -0.009923717007040977, + -0.04592468962073326, + -0.003462300170212984, + 0.04543834924697876, + -0.05071864649653435, + 0.010137938894331455, + 0.019152658060193062, + 0.014740830287337303, + -0.07633271813392639, + -0.005633475258946419, + 0.02908795326948166, + 0.005830328445881605, + -0.03747158497571945, + -0.044905684888362885, + 0.08680067956447601, + -0.033905066549777985, + -0.027443651109933853, + -0.04150128364562988, + 0.025243526324629784, + -0.03520198166370392, + 0.008337311446666718, + 0.004081808961927891, + -0.01771678775548935, + 0.009142093360424042, + 0.07332202047109604, + -0.07850968092679977, + 0.046364717185497284, + 0.03858322650194168, + -0.009095774963498116, + 0.02175806649029255, + 0.012054363265633583, + 0.03228392452001572, + -0.05266401916742325, + 0.005068969447165728, + -0.00265607051551342, + -0.0691070482134819, + -0.003850216744467616, + 0.038768500089645386, + -0.042196061462163925, + 0.005100813694298267, + -0.015782993286848068, + -0.03858322650194168, + 0.02090117707848549, + -0.0023086825385689735, + -0.021352780982851982, + -0.030987007543444633, + 0.0998624637722969, + 0.00860943179577589, + 0.049421731382608414, + -0.05910227447748184, + 0.05183028802275658, + -0.022406524047255516, + -0.016790419816970825, + -0.0031091223936527967, + -0.02489613927900791, + 0.0028760829009115696, + -0.11125679314136505, + 0.009362106211483479, + 0.0768885388970375, + -0.033789269626140594, + 0.016940953209996223, + -0.05433148145675659, + -0.029782729223370552, + -0.024641387164592743, + -0.05145974084734917, + 0.02883320301771164, + 0.02248758263885975, + 0.003656258573755622, + -0.03283974528312683, + 0.05409988760948181, + 0.005946124438196421, + -0.08735650032758713, + 0.028647929430007935, + 0.017994698137044907, + 0.014127111062407494, + 0.06679113209247589, + -0.03249235451221466, + 0.03503986820578575, + 0.06961654871702194, + -0.04520675539970398, + 0.007989923469722271, + -0.021329622715711594, + 0.007196721155196428, + -0.03821267932653427, + 0.00800150353461504, + 0.021283304318785667, + 0.0517839677631855, + 0.07735172659158707, + -0.08467002958059311, + 0.009420003741979599, + 0.010983250103890896, + 0.03580412268638611, + 0.01491452381014824, + 0.04231185466051102, + -0.032052330672740936, + -0.020380094647407532, + 0.007839389145374298, + -0.015065059065818787, + -0.030848052352666855, + 0.03897693008184433, + -0.002425926038995385, + 0.03798108547925949, + 0.029481660574674606, + 0.03506302833557129, + 0.00977318175137043, + -0.05145974084734917, + 0.0019091864814981818, + -0.0576200857758522, + -0.006334040779620409, + 0.01952320523560047, + -0.019083179533481598, + -0.0036881023552268744, + -0.0218507032841444, + 0.057342175394296646, + 0.051969241350889206, + -0.060352873057127, + 0.04261292517185211, + 0.012540706433355808, + 0.09736127406358719, + 0.059055957943201065, + -0.022140193730592728, + 0.003858901560306549, + 0.04249712824821472, + -0.057712722569704056, + -0.0652163028717041, + -0.02356448397040367, + 0.03003748133778572, + -0.0026387011166661978, + 0.005332405678927898, + 0.015412447042763233, + 0.05104287341237068, + 0.019129497930407524, + -0.001515480107627809, + 0.012540706433355808, + -0.012216477654874325, + 0.018017856404185295, + 0.018886325880885124, + 0.014451339840888977, + 0.02725837752223015, + -0.03897693008184433, + -8.169045759132132e-05, + -0.04872695356607437 + ] + }, + { + "id": "62550130-21e7-4a36-a7da-bf56cdf56675", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nrobinson", + "reviewDate": "2022-11-07T04:47:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fc70378b-bcf2-4217-bc16-770a3e2c20c5", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessica33", + "reviewDate": "2021-12-23T02:16:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7b27b519-3d10-47bc-91a0-3e76f1931ed9", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dixonmike", + "reviewDate": "2022-10-20T13:36:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f157720b-0d11-45d0-9d93-ad9b36c79d21", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "meganhernandez", + "reviewDate": "2021-07-31T22:13:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "52346233-9c57-4998-8eb8-205e03cf4618", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alexanderhernandez", + "reviewDate": "2022-11-29T18:43:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8f9b659b-830a-4b30-9c33-cee2d60b7bf6", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachelfrazier", + "reviewDate": "2021-10-09T18:20:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6a8fa45b-7bca-4b49-9515-a61d258f4160", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "debra66", + "reviewDate": "2021-09-18T03:23:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2961424a-20ea-45de-b3ae-deaf9f1d3d04", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "isantana", + "reviewDate": "2021-02-14T00:37:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b13f1ff8-8b92-4c63-b772-f25582b7509b", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "walkerleonard", + "reviewDate": "2021-05-20T20:37:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e7464484-274e-4c77-bb07-5dbd9c9775ac", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "halenicole", + "reviewDate": "2022-07-02T12:15:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "df2a350c-b136-49ec-bc33-aa2b08345c06", + "productId": "83e63fe1-55da-41b0-b061-464c08893b86", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nancy31", + "reviewDate": "2021-04-17T19:08:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse 3000 (Red)", + "description": "This Awesome Mouse 3000 (Red) is amazing for this build. While the Mouse is very quiet, it is also the quietest in the build. If I did this 3 times and 2 more, I", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-02-13T05:49:33", + "price": 877.79, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-01-05T19:14:27", + "newPrice": 930.29 + }, + { + "priceDate": "2021-09-04T19:14:27", + "newPrice": 877.79 + } + ], + "descriptionVector": [ + -0.07101355493068695, + -0.004109814763069153, + -0.036795634776353836, + 0.02656058594584465, + 0.05130160599946976, + -0.01053199265152216, + -0.023199446499347687, + 0.026459498330950737, + 0.04821845516562462, + 0.11554233729839325, + -0.015327302739024162, + -0.0358605831861496, + 0.036113299429416656, + -0.07167062163352966, + 0.034521181136369705, + 0.047258131206035614, + -0.018865345045924187, + 0.013735184445977211, + -0.026636401191353798, + 0.009243134409189224, + 0.03351031243801117, + -0.00782791804522276, + -0.036113299429416656, + 0.03783177584409714, + 0.013798363506793976, + -0.07247931510210037, + 0.019421322271227837, + 0.010759438388049603, + -0.0016442417399957776, + -0.01617390662431717, + 0.00479531055316329, + 0.035633135586977005, + 0.04493313282728195, + 0.040182046592235565, + -0.014468064531683922, + -0.04192579537630081, + -0.0047258129343390465, + 0.001938025583513081, + 0.053222257643938065, + 0.023325804620981216, + 0.016502438113093376, + 0.025410722941160202, + -0.028455965220928192, + -0.08258800953626633, + 0.06580758094787598, + 0.08152659237384796, + 0.008301762863993645, + 0.03535514697432518, + 0.021089257672429085, + 0.03025025874376297, + 0.04402334988117218, + 0.05913584306836128, + -0.0466768816113472, + -0.05832714959979057, + -0.014746053144335747, + -0.03737688437104225, + -0.07131681591272354, + 0.025334907695651054, + 0.024513576179742813, + 0.00017729696992319077, + 0.018309365957975388, + -0.0014728679088875651, + 0.03179183229804039, + -0.03843829780817032, + -0.052969541400671005, + -0.1106901690363884, + -0.004280399065464735, + 0.0037812823429703712, + 0.06024779751896858, + 0.033914659172296524, + -0.06863801181316376, + -0.0020880764350295067, + 0.05079617351293564, + 0.00113722775131464, + 0.06348258256912231, + 0.02466520667076111, + 0.07146844267845154, + 0.04240595921874046, + 0.002486106241121888, + 0.06262334436178207, + 0.08814778923988342, + -0.006207368336617947, + -0.057518452405929565, + -0.02853178046643734, + 0.07970702648162842, + 0.010753120295703411, + -0.034672811627388, + -0.09345485270023346, + 0.0563054084777832, + 0.04849644750356674, + -0.03997987508773804, + 0.031210584565997124, + 0.03780650347471237, + -0.0287086833268404, + -0.011024790816009045, + 0.028759226202964783, + -0.012477915734052658, + 0.05059399828314781, + -0.053525518625974655, + -0.03982824459671974, + 0.05021492391824722, + 0.0024971626698970795, + -0.05226193368434906, + -0.035254061222076416, + -0.032373081892728806, + 0.02446303330361843, + 0.006475880276411772, + 0.022845642641186714, + -0.039929330348968506, + -0.08733908832073212, + 0.0465252511203289, + -0.011839804239571095, + -0.06348258256912231, + -0.05559780076146126, + -0.017146866768598557, + 0.0058346102014184, + -0.058630406856536865, + -0.02901194430887699, + -0.07606790214776993, + 0.023110995069146156, + 0.10917386412620544, + 0.07450105249881744, + 0.006422177888453007, + 0.031134769320487976, + -0.0041319276206195354, + -0.06722279638051987, + -0.008377578109502792, + -0.029037214815616608, + -0.015125129371881485, + -0.035203516483306885, + -0.06782931834459305, + 0.02699020504951477, + 0.06894127279520035, + 0.06024779751896858, + 0.015908552333712578, + 0.08440756797790527, + -0.015605292282998562, + 0.04735921695828438, + -0.007170852739363909, + 0.03659346327185631, + -0.02716710790991783, + -0.03558259457349777, + 0.0018969590310007334, + 0.025006374344229698, + 0.00029792997520416975, + 0.02304781600832939, + -0.104018434882164, + 0.0022665581200271845, + 0.04323992505669594, + 0.029972270131111145, + 0.016793062910437584, + -0.07551192492246628, + 0.02552444487810135, + 0.01177662517875433, + 0.030629334971308708, + 0.05190812796354294, + -0.024943195283412933, + -0.011081652715802193, + -0.030401889234781265, + 0.023351076990365982, + 0.013596189208328724, + -0.018865345045924187, + -0.04240595921874046, + -0.014240618795156479, + -0.04665160924196243, + -0.027141835540533066, + 0.05443530157208443, + 0.016578253358602524, + -0.018650535494089127, + 0.01647716574370861, + 0.008011138066649437, + -0.022251756861805916, + 0.010051829740405083, + 0.008984099142253399, + 0.06247171014547348, + 0.017601758241653442, + 0.04046003520488739, + -0.004571023862808943, + -0.04124346002936363, + -0.056709758937358856, + 0.04422552511096001, + 0.06686899065971375, + -0.05711410567164421, + 0.020735451951622963, + 0.12100103497505188, + 0.05539562925696373, + -0.043189384043216705, + 0.03995460271835327, + -0.007556246593594551, + 0.01448069978505373, + 0.034950800240039825, + 0.0035980623215436935, + 0.048723891377449036, + 0.005174386315047741, + -0.06636355817317963, + 0.12191081792116165, + 0.028759226202964783, + 0.021822137758135796, + -0.004150881431996822, + 0.014556515030562878, + -0.01973721943795681, + 0.051554325968027115, + 0.07884778827428818, + 0.039575524628162384, + 0.003626493038609624, + -0.03522878885269165, + 0.04758666455745697, + 0.03813503682613373, + 0.06954779475927353, + -0.037781234830617905, + -0.016161270439624786, + 0.006829684600234032, + -0.0640891045331955, + -0.04735921695828438, + 0.08946191519498825, + 0.024121863767504692, + -0.006456926465034485, + 0.01934550702571869, + -0.03343449532985687, + -0.0476372055709362, + -0.010222413577139378, + -0.01321711391210556, + -0.06216844916343689, + 0.009950743056833744, + -0.04058639332652092, + 0.013116026297211647, + 0.1580999344587326, + 0.008510254323482513, + 0.014177439734339714, + 0.018423089757561684, + -0.05731627717614174, + 0.01186507660895586, + 0.045160576701164246, + 0.05347497761249542, + -0.04642416536808014, + 0.07980811595916748, + -0.06479670852422714, + -0.016489801928400993, + 0.04685378447175026, + 0.07717985659837723, + -0.039449166506528854, + 0.06980051100254059, + -0.05117524787783623, + -0.03684617951512337, + 0.08850158751010895, + -0.009855973534286022, + 0.04389699175953865, + -0.024576755240559578, + -0.011650266125798225, + -0.07354072481393814, + -0.029037214815616608, + 0.05681084468960762, + -0.008895648643374443, + 0.0039329128339886665, + 0.026459498330950737, + 0.04293666407465935, + 0.036239657551050186, + 0.005174386315047741, + -0.02977009490132332, + -0.08703582733869553, + -0.001579483039677143, + 0.04766247794032097, + -0.08263854682445526, + 0.05387932434678078, + 0.002399234566837549, + 0.0059356968849897385, + -0.022416021674871445, + 8.662477193865925e-05, + 0.013027575798332691, + 0.02656058594584465, + 0.06105649471282959, + -0.010626761242747307, + 0.021506240591406822, + -0.06353312730789185, + 0.04184998199343681, + -0.01147968228906393, + 0.01340665202587843, + 0.026282597333192825, + -0.005607164464890957, + -0.013810999691486359, + 0.09734669327735901, + 0.11129669100046158, + 0.05873149633407593, + 0.015163036994636059, + -0.015024041756987572, + -0.03939862549304962, + 0.05190812796354294, + -0.03217091038823128, + -0.022668739780783653, + -0.07040703296661377, + -0.0017927131848409772, + -0.030882051214575768, + 0.06024779751896858, + -0.03110949695110321, + 0.056659214198589325, + 0.019838307052850723, + 0.050821445882320404, + -0.03555732220411301, + -0.005231247749179602, + 0.017652301117777824, + 0.039878785610198975, + 0.019029611721634865, + -0.08375050872564316, + -0.09795321524143219, + 0.006545377429574728, + 0.04849644750356674, + -0.03558259457349777, + -0.07278257608413696, + -0.05377823859453201, + -0.08405376970767975, + 0.03997987508773804, + 0.004858489613980055, + -0.043315742164850235, + 0.0059104254469275475, + 0.08562061190605164, + -0.10775864869356155, + 0.01123960129916668, + 0.01034245453774929, + 0.026408955454826355, + 0.020710181444883347, + -0.010847888886928558, + -0.07242877036333084, + -0.029466833919286728, + 0.0757140964269638, + 0.016363443806767464, + -0.04068748280405998, + -0.030705150216817856, + 0.00217178906314075, + -0.03277743235230446, + -0.1248423382639885, + -0.01583273708820343, + -0.07596681267023087, + -0.03262580186128616, + -0.038640473037958145, + -0.04574182629585266, + -0.10022766888141632, + -0.03780650347471237, + 0.05046764016151428, + 0.022769827395677567, + 0.029365748167037964, + -0.015453661791980267, + 0.013078119605779648, + -0.03510243073105812, + 0.02471574954688549, + -0.005787225905805826, + -0.049532584846019745, + -0.004018204752355814, + -0.07500648498535156, + 0.043189384043216705, + -0.03745270147919655, + 0.0013180786045268178, + -0.08213311433792114, + -0.017007872462272644, + -0.053576063364744186, + 0.028860313817858696, + -0.044730957597494125, + 0.0071203093975782394, + 0.012635864317417145, + 0.06459453701972961, + 0.016578253358602524, + 0.009792794473469257, + -0.013040211983025074, + -0.009104140102863312, + 0.0011688173981383443, + -0.03179183229804039, + 0.05307062715291977, + 0.015327302739024162, + 0.03730107098817825, + 0.015150400809943676, + -0.014910319820046425, + -0.03196873515844345, + 0.005600846838206053, + -0.016123361885547638, + 0.07177170366048813, + -0.08415485173463821, + -0.09805430471897125, + 0.043568458408117294, + 0.004618408158421516, + -0.02908775955438614, + 0.03406628966331482, + 0.028430694714188576, + 0.07227714359760284, + 0.06924453377723694, + 0.06863801181316376, + 0.04311356693506241, + 0.001209094189107418, + 0.003342186100780964, + -0.01355828158557415, + 0.009167319163680077, + 0.0005500549450516701, + -0.040182046592235565, + 0.03947443887591362, + 0.04468041658401489, + 0.07611844688653946, + 0.036113299429416656, + -0.018094556406140327, + 0.009142047725617886, + 0.04394753649830818, + 0.012604273855686188, + -0.017020508646965027, + -0.0725298598408699, + 0.01478396076709032, + 0.03644183278083801, + -0.009123093448579311, + -0.03725052624940872, + -0.0023929167073220015, + 0.053222257643938065, + 0.047005414962768555, + -0.04637362062931061, + -0.03886791691184044, + 0.0018448361661285162, + 0.0018622104544192553, + 0.007600472308695316, + -0.050998345017433167, + 0.012060931883752346, + 0.01712159626185894, + 0.06691953539848328, + 0.015036677941679955, + 0.02964373677968979, + -0.0325247123837471, + 0.050821445882320404, + 0.06024779751896858, + 0.022555017843842506, + 0.0380844920873642, + -0.04329046979546547, + 0.001455493620596826, + 0.0033137553837150335, + 0.021645234897732735, + 0.0412687323987484, + -0.09709397703409195, + -0.02527172863483429, + -0.07470322400331497, + -0.0130023043602705, + 0.014619694091379642, + -0.016072819009423256, + 0.025385450571775436, + -0.028253791853785515, + 0.01785447634756565, + 0.025246456265449524, + 0.03338395431637764, + 0.09214071929454803, + -0.07293420284986496, + -0.022150669246912003, + -0.006292660254985094, + -0.03651764616370201, + 0.019332872703671455, + -0.021341973915696144, + -0.02394496276974678, + -0.02210012637078762, + -0.0032442579977214336, + -0.02994699776172638, + -0.0043119885958731174, + -0.06777877360582352, + 0.022542381659150124, + 0.06656572967767715, + -0.043568458408117294, + 0.01599700376391411, + 0.06939616799354553, + -0.030629334971308708, + -0.010418269783258438, + -0.031817104667425156, + 0.040738023817539215, + 0.033358681946992874, + 0.0444529689848423, + -0.0814255103468895, + -0.025815069675445557, + 0.04895133525133133, + -0.012041978538036346, + -0.02759672701358795, + -0.028759226202964783, + 0.00016485853120684624, + 0.04938095435500145, + -0.005104889161884785, + 0.04273449257016182, + -0.0757140964269638, + -0.001958558801561594, + 0.016376079991459846, + -0.03664400428533554, + 0.043063025921583176, + 0.09274724125862122, + -0.061814647167921066, + -0.03277743235230446, + -0.02029319666326046, + 0.037781234830617905, + 0.011252236552536488, + -0.007891097106039524, + 0.048546988517045975, + 0.02120297960937023, + 0.06449344754219055, + -0.0011174841783940792, + 0.007929004728794098, + 0.07950485497713089, + 0.03174129128456116, + 0.01396262925118208, + -0.032802700996398926, + 0.02822851948440075, + -0.053525518625974655, + -0.024425124749541283, + -0.030401889234781265, + -0.0035001342184841633, + 0.039752427488565445, + -0.0184104535728693, + -0.023831238970160484, + -0.02505691722035408, + 0.014278526417911053, + 0.043795906007289886, + 0.013735184445977211, + 0.0007518338970839977, + 0.001031402382068336, + -0.08506463468074799, + 0.025903521105647087, + -0.02878449857234955 + ] + }, + { + "id": "d33379cd-e479-4362-95a9-3c494f4cf995", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aprilsavage", + "reviewDate": "2021-01-21T17:55:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fbd10d35-b6dd-465f-801a-e447e2df77ca", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "penningtonjose", + "reviewDate": "2021-11-26T20:49:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "05636a3a-3a21-4897-92de-da5bbe3dfa38", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "heather39", + "reviewDate": "2021-01-05T19:14:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "34bba61d-1f9a-4b61-97d2-74e671cc791b", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kgibson", + "reviewDate": "2021-06-15T03:57:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c2d09e16-c53e-471a-ae5a-43d377d00d05", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hmarsh", + "reviewDate": "2021-07-07T00:24:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "192828e7-242c-4fbb-9270-29fb04a787d7", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tammytrujillo", + "reviewDate": "2021-09-24T01:19:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "88c16074-e7e8-4d68-9a8c-1444d3ea2480", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gregorywilson", + "reviewDate": "2021-04-22T01:31:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "59ed448c-f93b-4df1-9a30-5a654fd2611a", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erica64", + "reviewDate": "2021-12-02T19:42:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "717b8cc6-5c5e-4dfc-8eaf-5707f1595bca", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "william24", + "reviewDate": "2021-06-22T07:56:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bc64a8b4-7872-41b4-9063-deb6dfd081c1", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tiffanypearson", + "reviewDate": "2021-06-15T04:34:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9d393002-1728-4ffd-9ae6-9160fe5473d2", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "khunt", + "reviewDate": "2021-11-13T05:49:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b1310a7b-61b8-4cb6-9b81-a111a94ef1df", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pmcmillan", + "reviewDate": "2021-12-02T07:01:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "13a8b505-aad7-44b3-9e66-7e0a3165a3d8", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pwilson", + "reviewDate": "2022-02-25T03:15:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "53f031b3-816f-4962-b423-d13b42d218f8", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberly62", + "reviewDate": "2022-02-04T05:53:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "07bf5752-9ca8-412e-8b2a-872f3e928546", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stacy91", + "reviewDate": "2022-09-28T16:38:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "28f3063b-e963-4727-8286-de68c0db310e", + "productId": "c770e187-1c14-4046-9d51-3eaeb9a35925", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "newmanstephanie", + "reviewDate": "2022-05-14T20:30:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "product", + "name": "Amazing TV + (Red)", + "description": "This Amazing TV + (Red) is an excellent example of a show that is completely insane. To me this is still one of the best shows on TV. It doesn't make you think it's really that far away from our future, maybe even even in a very short time. But I guess we could add in the ability to have these kinds of TV shows before the TV industry is done as well: the shows that work in our minds.\n\nThis is an", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-01-18T07:13:57", + "price": 115.26, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-05-29T19:24:58", + "newPrice": 111.81 + }, + { + "priceDate": "2021-10-02T19:24:58", + "newPrice": 111.08 + }, + { + "priceDate": "2022-02-05T19:24:58", + "newPrice": 107.0 + }, + { + "priceDate": "2022-06-11T19:24:58", + "newPrice": 119.97 + }, + { + "priceDate": "2022-10-15T19:24:58", + "newPrice": 110.26 + }, + { + "priceDate": "2022-12-21T19:24:58", + "newPrice": 115.26 + } + ], + "descriptionVector": [ + 0.02850770205259323, + 0.03962754085659981, + -0.059585556387901306, + 0.05517958104610443, + 0.008110402151942253, + -0.03278254717588425, + -0.06404398381710052, + 0.004179774783551693, + 0.03548382595181465, + 0.06719110906124115, + 0.060110077261924744, + -0.046184051781892776, + 0.06184099242091179, + -0.021426672115921974, + 0.055494293570518494, + -0.009801981039345264, + -0.018004173412919044, + 0.05449770390987396, + 0.0077432370744645596, + 0.0001817382435547188, + 0.0659322589635849, + -0.017230505123734474, + -0.05764482915401459, + -0.028429023921489716, + 0.002645551459863782, + -0.02260684408247471, + -0.03857849910855293, + 0.018253320828080177, + -0.03855227306485176, + -0.0048288688994944096, + 0.035247791558504105, + 0.008792278356850147, + 0.022685522213578224, + -0.041830528527498245, + -0.030264846980571747, + 0.013250704854726791, + 0.039575088769197464, + 0.0006892530363984406, + 0.03808020427823067, + -0.0004241241840645671, + 0.07673738151788712, + -0.0008785722311586142, + 0.03432988002896309, + 0.02060055173933506, + 0.061631184071302414, + -3.711086537805386e-05, + -0.05323885381221771, + -0.11560437083244324, + -0.0038027751725167036, + -0.015932317823171616, + -0.03585099056363106, + -0.0706004872918129, + 0.03592966869473457, + -0.037791717797517776, + -0.0476527065038681, + -0.030002586543560028, + 0.025098316371440887, + -0.13889308273792267, + -0.00098265684209764, + -0.07437703758478165, + -0.05963800847530365, + 0.03561495617032051, + 0.003265141509473324, + 0.011224743910133839, + 0.04833458364009857, + -0.003969966433942318, + 0.0010187176521867514, + -0.01243114098906517, + -0.08250711113214493, + -0.009782311506569386, + -0.012968774884939194, + 0.017414087429642677, + 0.06766317039728165, + -0.011283752508461475, + -0.02821921557188034, + 0.0531601756811142, + 0.04356144741177559, + 0.01528977882117033, + -0.029215805232524872, + -0.0038486707489937544, + 0.04482029750943184, + 0.04264353588223457, + 0.00021984794875606894, + 0.03808020427823067, + 0.044190872460603714, + 0.029399387538433075, + 0.03210067003965378, + -0.1063203513622284, + 0.036113251000642776, + 0.02563595026731491, + 0.04151581600308418, + 0.0706004872918129, + 0.0041830530390143394, + -0.06031988561153412, + 0.020495647564530373, + 0.05247829854488373, + -0.0028930597472935915, + 0.04453181102871895, + -0.0167846642434597, + -0.012509819120168686, + 0.04975078999996185, + -0.04413842037320137, + -0.040860164910554886, + -0.08056638389825821, + 0.029005996882915497, + -0.08885381370782852, + -0.010759231634438038, + 0.06708620488643646, + 0.009257790632545948, + -0.05853651463985443, + 0.013211365789175034, + 0.019748205319046974, + -0.03724097087979317, + -0.014791484922170639, + 0.03920792415738106, + -0.011283752508461475, + -0.0484919399023056, + -0.026173584163188934, + 0.11476513743400574, + -0.016378160566091537, + 0.0638866275548935, + -0.015302891843020916, + -0.05643843114376068, + 0.04555462673306465, + 0.0037240972742438316, + 0.017138713970780373, + -0.008536574430763721, + 0.0608968548476696, + -0.03086804412305355, + -0.04227637127041817, + -0.03223180025815964, + 0.08769986778497696, + 0.03561495617032051, + 0.05260942876338959, + -0.011257526464760303, + 0.021361107006669044, + -0.042958248406648636, + -0.011087057180702686, + 0.0022619955707341433, + -0.02945183962583542, + 0.027563564479351044, + -0.007277725264430046, + 0.03592966869473457, + 0.027747146785259247, + -0.0037011494860053062, + 0.030527105554938316, + -0.03238915652036667, + -0.00542551139369607, + -0.015525813214480877, + -0.015407796017825603, + 0.03018616884946823, + -0.0583791583776474, + -0.06907937675714493, + -0.018331998959183693, + 0.03645418956875801, + 0.04193543270230293, + -0.046026695519685745, + -0.0335693284869194, + -0.08838174492120743, + 0.02696036547422409, + -0.04059790447354317, + -0.050904735922813416, + -0.05822180211544037, + 0.04904268682003021, + -0.0063401442021131516, + -0.06021498143672943, + 0.10338303446769714, + -0.008503791876137257, + -0.014909502118825912, + 0.03430365398526192, + 0.04162072017788887, + -0.05331753194332123, + 0.01675843819975853, + -0.023642772808670998, + -0.0007535887416452169, + 0.0489640086889267, + 0.06745336949825287, + 0.024298422038555145, + -0.08916852623224258, + -0.034697044640779495, + -0.029425613582134247, + 0.05376337468624115, + 0.0016883010976016521, + -0.011054274626076221, + -0.05030153691768646, + 0.07972715049982071, + 0.02033829130232334, + -0.03713606670498848, + -0.05040644109249115, + -0.04314183071255684, + 0.04689215496182442, + -0.03543137386441231, + -0.005523859057575464, + -0.09105680137872696, + -0.0150144062936306, + -0.04387615993618965, + -0.018200868740677834, + -0.0567006915807724, + -0.05701540410518646, + 0.0220560971647501, + -0.022842878475785255, + -0.010274049825966358, + 0.13543124496936798, + -0.026291601359844208, + 0.007480977103114128, + -0.0350642092525959, + 0.027432434260845184, + -0.008012054488062859, + 0.06608961522579193, + 0.07920262962579727, + 0.006054935976862907, + -0.04232882335782051, + 0.005828736815601587, + 0.0039535751566290855, + 0.023485416546463966, + -0.013185139745473862, + -0.04788874089717865, + 0.014096494764089584, + -0.05722521245479584, + 0.036532867699861526, + 0.09598729014396667, + 0.010693666525185108, + -0.034434784203767776, + -0.029294483363628387, + 0.07469175010919571, + -0.026173584163188934, + 0.018672937527298927, + 0.04571198299527168, + 0.014896389096975327, + -0.05764482915401459, + -0.11497494578361511, + -0.042092788964509964, + -0.033857811242341995, + 0.008182523772120476, + 0.020836586132645607, + 0.03729342296719551, + -0.022908443585038185, + -0.02616047114133835, + -0.07799623161554337, + 0.016705986112356186, + -0.04508255794644356, + 0.00799238495528698, + -0.029399387538433075, + -0.009192225523293018, + 0.12063977122306824, + -0.04870174825191498, + -0.037345875054597855, + 0.018869632855057716, + 0.02073168195784092, + -0.021898740902543068, + -0.018384451046586037, + -0.02201675809919834, + 0.023970596492290497, + -0.04311560466885567, + 0.004563330207020044, + -0.040283191949129105, + -0.0025767080951482058, + 0.0340413935482502, + -0.020836586132645607, + 0.016378160566091537, + -0.0449514277279377, + -0.020154708996415138, + 0.011972185224294662, + 0.02260684408247471, + -0.014647241681814194, + 0.038630951195955276, + -0.02212166227400303, + -0.03530024364590645, + -0.0662994235754013, + 0.03244160860776901, + 0.04395483806729317, + 0.008582470007240772, + -0.033044807612895966, + -0.02292155660688877, + 0.10684487223625183, + -0.006592569872736931, + 0.06493566930294037, + -0.00022476533195003867, + 0.014699693769216537, + 0.03768681362271309, + 0.006366370245814323, + 0.0179517213255167, + 0.09263036400079727, + -0.03388403728604317, + 0.04558085277676582, + -0.026645652949810028, + 0.03965376690030098, + -0.07212159782648087, + -0.02285599149763584, + -0.04012583568692207, + -0.05654333531856537, + -0.03160237520933151, + 0.06278513371944427, + 0.005218981299549341, + 0.054392799735069275, + 0.020718568935990334, + 0.00405192282050848, + -0.027458660304546356, + 0.09231565147638321, + 0.017545217648148537, + 0.010601875372231007, + -0.02340673841536045, + -0.006094275042414665, + -0.021833175793290138, + -0.06719110906124115, + 0.02532123774290085, + -0.008175967261195183, + 0.08082864433526993, + -0.008923408575356007, + -0.10889050364494324, + 0.08366105705499649, + -0.08602140098810196, + 0.0035470714792609215, + -0.06698130071163177, + 0.009487268514931202, + -0.009552833624184132, + -0.006284413859248161, + -0.05743502080440521, + 0.029556743800640106, + -0.0424337275326252, + 0.0558614581823349, + -0.054655060172080994, + -0.10458943247795105, + 0.019420379772782326, + -0.006002483889460564, + 0.027012817561626434, + 0.05360601842403412, + -0.03543137386441231, + 0.020416969433426857, + -0.020207161083817482, + -0.03474949672818184, + 0.03648041561245918, + -0.021846288815140724, + 0.030002586543560028, + 0.04122732952237129, + -0.08565423637628555, + -0.015132423490285873, + 0.0213086549192667, + 0.07385251671075821, + 0.02492784708738327, + 0.05596636235713959, + -0.02618669718503952, + 0.08276937156915665, + -0.07296083122491837, + -0.041279781609773636, + -0.0701284185051918, + -0.021584028378129005, + 0.014214511960744858, + 0.036506641656160355, + 0.0073957424610853195, + 0.00151537312194705, + -0.021190637722611427, + -0.0257408544421196, + 0.04453181102871895, + 0.0348806269466877, + 0.012378688901662827, + -0.009303686209022999, + -0.025596611201763153, + 0.010287162847816944, + 0.0399160273373127, + 0.049619659781455994, + 0.01614212617278099, + -0.005759893450886011, + 0.06698130071163177, + -0.018804067745804787, + -0.018253320828080177, + -0.0801992192864418, + 0.06037233769893646, + -0.013637538999319077, + -0.020771021023392677, + 0.0167846642434597, + 0.021203750744462013, + -0.10784146189689636, + -0.015827413648366928, + 7.57071902626194e-05, + 0.003950296901166439, + 0.042669761925935745, + 0.010890361852943897, + 0.007736680563539267, + 0.06855485588312149, + -0.09357450157403946, + 0.019302362576127052, + 0.05056379735469818, + 0.059270843863487244, + -0.025373689830303192, + 0.017676347866654396, + -0.05654333531856537, + -0.05386827886104584, + -0.032048217952251434, + -0.0003407335898373276, + -0.08502481132745743, + -0.014070268720388412, + -0.0010228154715150595, + -0.011264082975685596, + 0.07584569603204727, + 0.00757276825606823, + -0.024049274623394012, + 0.05517958104610443, + 0.016942018643021584, + -0.01196562871336937, + -0.027983181178569794, + 0.04374502971768379, + 0.07338044792413712, + 0.00583529332652688, + -0.12273784726858139, + -0.028429023921489716, + -0.027956955134868622, + 0.0031700721010565758, + 0.060687050223350525, + -0.016351934522390366, + -0.05253075063228607, + -0.011198517866432667, + -0.05360601842403412, + -0.010995266027748585, + 0.016155239194631577, + 0.0047337994910776615, + 0.06456850469112396, + 0.05344866216182709, + -0.00823497585952282, + -0.02444266527891159, + -0.03703116253018379, + 0.05601881444454193, + 0.01320480927824974, + -0.04143713787198067, + -0.10731694102287292, + 0.05628107488155365, + 0.0357198603451252, + -0.019381040707230568, + -0.06603716313838959, + -0.0798320546746254, + 0.04678725078701973, + -0.02947806566953659, + 0.021780723705887794, + 0.04135845974087715, + -0.013808008283376694, + 0.029923908412456512, + 0.005104242358356714, + 0.010201928205788136, + 0.014502998441457748, + 0.013663765043020248, + -0.02863883227109909, + 0.026593200862407684, + -0.0592183917760849, + 0.04510878399014473, + -0.04259108379483223, + 0.01225411519408226, + 0.03808020427823067, + -0.012214776128530502, + -0.013847347348928452, + -0.02596377581357956, + -0.05764482915401459, + -0.041830528527498245, + 0.004592834506183863, + 0.021334880962967873, + -0.017099374905228615, + -0.005569754634052515, + 0.06551264226436615, + 0.032205574214458466, + -0.03042220138013363, + 0.03981112316250801, + 0.06414888799190521, + 0.08832929283380508, + -0.008123515173792839, + 0.015538926236331463, + 0.03015994280576706, + -0.03472327068448067, + 0.004504321608692408, + 0.034146297723054886, + 0.014227624982595444, + 0.034539688378572464, + -0.010523197241127491, + 0.010713336057960987, + -0.1134013831615448, + 0.017676347866654396, + 0.005140303168445826, + 0.01757144369184971, + 0.02764224261045456, + -0.0020013744942843914, + 0.019171232357621193, + -0.012096758931875229, + -0.014686580747365952, + -0.007172821089625359, + 0.0793599858880043, + -0.023419851437211037, + 0.023550981655716896, + 0.04899023473262787, + 0.011224743910133839, + 0.06703375279903412, + -0.030343525111675262, + -0.06372927129268646, + 0.06435869634151459, + -0.06965634971857071, + 0.003638862632215023, + -0.025517933070659637, + -0.022042984142899513, + -0.04371880367398262, + -0.060267433524131775, + 0.011847611516714096, + -0.026986591517925262, + 0.016548629850149155, + -0.06624697148799896, + 0.04888533055782318, + -0.08051393181085587, + 0.02806185930967331, + -0.027825824916362762, + -0.031077852472662926, + 0.10097023844718933, + 0.011926289647817612, + -0.012988444417715073, + -0.08680818229913712, + -0.0027094774413853884, + 0.055074676871299744 + ] + }, + { + "id": "ce7992d3-bae3-48c4-870e-8b749ae1ada1", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "hobbsbetty", + "reviewDate": "2022-04-24T12:34:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8d37aa34-af5e-4173-8638-74f38d321306", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "luisross", + "reviewDate": "2021-05-29T19:24:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5d50dc7e-adc0-4441-9c14-c7b5f913ad86", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "debraduran", + "reviewDate": "2021-08-15T11:20:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cddd106f-d5b2-4015-a614-d6a19a221ba6", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "williamsrebecca", + "reviewDate": "2021-05-30T16:02:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bf06db6a-dcef-487a-9b73-2456e07c5294", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "mibarra", + "reviewDate": "2022-10-14T06:12:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b396a1cd-8e09-45b5-9493-93600b9b8f22", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "lisanolan", + "reviewDate": "2022-10-19T12:50:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2d0d7098-3a4e-4e17-acb4-9092d308e73c", + "productId": "0d675aa8-83ec-43bf-bee3-b898d8b5cfee", + "category": "Media", + "docType": "customerRating", + "userName": "jamesbell", + "reviewDate": "2021-10-05T17:20:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6942625d-4a89-45d2-988d-13a24df36d82", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "product", + "name": "Premium TV Super (Steel)", + "description": "This Premium TV Super (Steel) is the world's premier TV super cable channel with more than 24 million homes in the United States and Canada, including all 50 shows that have been on the premium channels, including new episodes like \"The Legend of Korra\", \"Mad Men\" and \"Last Man Standing\". Super Premium's premium cable channel is a global leader in TV shows offering the highest quality content such as comedy, drama, fantasy and", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-02-22T12:57:52", + "price": 991.28, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-05-01T00:16:58", + "newPrice": 958.04 + }, + { + "priceDate": "2022-02-02T00:16:58", + "newPrice": 931.44 + }, + { + "priceDate": "2022-11-06T00:16:58", + "newPrice": 1042.51 + }, + { + "priceDate": "2025-01-27T00:16:58", + "newPrice": 991.28 + } + ], + "descriptionVector": [ + 0.037529852241277695, + 0.018068412318825722, + -0.03430676460266113, + 0.08303548395633698, + 0.010932549834251404, + 0.003936673980206251, + -0.02082715556025505, + 0.013582036830484867, + 0.05192448943853378, + 0.08145125210285187, + 0.07806427776813507, + -0.0013298650737851858, + -0.005005346145480871, + -0.05410963296890259, + 0.0335419625043869, + -0.0009022255544550717, + 0.0009431970538571477, + -0.002120272722095251, + 0.015828639268875122, + -0.05552997812628746, + 0.05096849054098129, + -0.002017844235524535, + -0.015487209893763065, + -0.009252720512449741, + -0.039032138884067535, + 0.008761062286794186, + -0.060910895466804504, + 0.008597176522016525, + -0.040616367012262344, + -0.03649190813302994, + -0.04028859734535217, + -0.005835018120706081, + 0.029717961326241493, + -0.007176833227276802, + 0.011246664449572563, + 0.005923789460211992, + -0.013848351314663887, + 0.02071789838373661, + 0.053863804787397385, + 0.024077558889985085, + 0.04878334701061249, + -0.039359912276268005, + 0.00013411749387159944, + 0.06353306770324707, + 0.06353306770324707, + -0.051951803267002106, + -0.011922692880034447, + -0.011396893300116062, + 0.013848351314663887, + -0.03190310671925545, + -0.04108071327209473, + 0.0025948588736355305, + -0.029280932620167732, + 0.08511136472225189, + -0.0388682521879673, + -0.0066373758018016815, + 0.06724781543016434, + 0.08085034042596817, + -0.031029047444462776, + 0.003933259751647711, + -0.06216735392808914, + 0.005510660819709301, + 0.01632029563188553, + 0.04845557361841202, + -0.038376595824956894, + -0.014380980283021927, + -0.061894211918115616, + 0.007921148091554642, + -0.08582153916358948, + 0.041708942502737045, + -0.01824595406651497, + -0.018423497676849365, + 0.06473489850759506, + 0.0452871136367321, + 0.010229206643998623, + 0.0638062134385109, + 0.06407935172319412, + -0.007381690200418234, + 0.0341428779065609, + -0.02499258704483509, + 0.006599818356335163, + 0.004138116724789143, + 0.039878882467746735, + 0.04881066083908081, + 0.04143579676747322, + 0.03856779634952545, + -0.016470525413751602, + -0.1090933233499527, + 0.01942046917974949, + 0.04271956905722618, + 0.06823112815618515, + 0.07800965011119843, + -0.028761960566043854, + -0.10816463828086853, + 0.05659523606300354, + 0.10516006499528885, + 0.007163175847381353, + 0.017221668735146523, + -0.03173922002315521, + 0.08773354440927505, + 0.0335419625043869, + -0.037092823535203934, + 0.05200643464922905, + -0.07953924685716629, + 0.033159565180540085, + -0.06702929735183716, + -0.046598199754953384, + 0.018655668944120407, + 0.009327834472060204, + -0.08844371140003204, + -0.012025121599435806, + -0.015746695920825005, + 0.04476814344525337, + 0.0371747650206089, + 0.030073048546910286, + 0.018013782799243927, + -0.032312821596860886, + -0.019092697650194168, + 0.055256836116313934, + 0.03559053689241409, + -0.041927456855773926, + 0.02037646993994713, + -0.07959388196468353, + -0.053426776081323624, + 0.0021236869506537914, + -0.031985048204660416, + -0.0072178044356405735, + 0.1308901458978653, + 0.015992524102330208, + -0.022356757894158363, + -0.05916278064250946, + 0.014599494636058807, + -0.0022585515398532152, + -0.001092572114430368, + -0.07948461920022964, + 0.028461502864956856, + -0.08401879668235779, + 0.04389408603310585, + 0.018942469730973244, + 0.008276233449578285, + -0.01954338327050209, + 0.02166024222970009, + 0.025675443932414055, + 0.012332407757639885, + 0.031548019498586655, + -0.026303673163056374, + 0.04263762757182121, + 0.04465888440608978, + -0.014490237459540367, + -0.03162996470928192, + 0.1352604329586029, + -0.026836302131414413, + -0.10838315635919571, + 0.005623332224786282, + 0.04465888440608978, + 0.06834038347005844, + -0.07746336609125137, + 0.024104872718453407, + -0.05959980934858322, + 0.045232485979795456, + 0.025866644456982613, + -0.05309900641441345, + -0.053126320242881775, + -0.022343099117279053, + 0.036246079951524734, + 0.02178315632045269, + 0.054628606885671616, + -0.0478273443877697, + -0.0030096948612481356, + -0.0049814460799098015, + 0.015282352454960346, + -0.018232297152280807, + 0.06664689630270004, + -0.07473193109035492, + 0.012981122359633446, + 0.016525153070688248, + 0.04771808907389641, + -0.02615344524383545, + -0.04635237157344818, + 0.013984923250973225, + -0.024828702211380005, + 0.019830184057354927, + -0.03867705166339874, + -0.06402472406625748, + -0.01998041197657585, + 0.06511729955673218, + 0.08057719469070435, + 0.009266377426683903, + -0.0979490876197815, + -0.057414665818214417, + 0.03485305234789848, + 0.020840812474489212, + 0.008194291032850742, + -0.07964850962162018, + -0.013814209029078484, + -0.015541838482022285, + 0.06238586828112602, + 0.004459059797227383, + -0.006432518362998962, + -0.01846446841955185, + -0.011868064291775227, + 0.024801386520266533, + 0.06915981322526932, + -0.04840094596147537, + 0.03086516261100769, + 0.0024343873374164104, + 0.010775492526590824, + 0.08145125210285187, + 0.009696577675640583, + 0.19983144104480743, + -0.04075293987989426, + -0.07008849829435349, + 0.013302065432071686, + -0.018177669495344162, + 0.02230212837457657, + -0.033596593886613846, + -0.01686658151447773, + 0.025033557787537575, + -0.0064700753428041935, + -0.04793660342693329, + 0.09024645388126373, + 0.012339236214756966, + 0.03780299425125122, + -0.03769373893737793, + 0.010236035101115704, + -0.04676208645105362, + -0.03990619629621506, + -0.018396183848381042, + -0.02242504246532917, + 0.018382525071501732, + -0.02552521601319313, + -0.0737486183643341, + -0.06713856011629105, + 0.03761179372668266, + 0.019994068890810013, + 0.026549503207206726, + -0.05326288938522339, + -0.018109383061528206, + -0.08991868793964386, + 0.0023148872423917055, + 0.00812600553035736, + -0.01974824070930481, + 0.016170067712664604, + -0.026713388040661812, + 0.006869547069072723, + -0.016279324889183044, + 0.009792177937924862, + 0.01685292460024357, + 0.020868128165602684, + -0.05828872323036194, + -0.019079040735960007, + -0.03285910561680794, + 0.0710718184709549, + 0.06954221427440643, + 0.00015332286420743912, + 0.04312928393483162, + 0.008986406028270721, + -0.041790883988142014, + -0.014626809395849705, + 0.07451342046260834, + -0.08653171360492706, + -0.006398375611752272, + 0.014053208753466606, + 0.05003980174660683, + -0.003977645188570023, + 0.07582450658082962, + -0.013950780034065247, + -0.054410092532634735, + -0.022261157631874084, + 0.04088951274752617, + 0.01645686663687229, + 0.04069831222295761, + 0.01589692384004593, + 0.055803120136260986, + 0.057196151465177536, + -0.0025265731383115053, + 0.05298974737524986, + -0.02478772960603237, + 0.04922037571668625, + 0.0028167874552309513, + 0.05252540484070778, + -0.02103201299905777, + 0.009689749218523502, + -0.02616710215806961, + 0.10838315635919571, + -0.007723119109869003, + -0.02947213314473629, + 0.029390189796686172, + 0.0699792429804802, + -0.056868378072977066, + -0.03236744925379753, + 0.027710359543561935, + 0.08904463052749634, + -0.0020963726565241814, + 0.040315911173820496, + 0.026303673163056374, + -0.020458413287997246, + -0.05807020887732506, + 0.08767890930175781, + -0.019598012790083885, + -0.023012300953269005, + 0.04943889006972313, + -0.061457183212041855, + -0.02862538956105709, + -0.04157236963510513, + 0.05285317450761795, + -0.03302299231290817, + 0.03162996470928192, + 0.012346064671874046, + -0.079429991543293, + 0.015214066952466965, + -0.05692300572991371, + 0.004660503007471561, + 0.03515350818634033, + -0.007122204639017582, + -0.0024821872357279062, + 0.004988274537026882, + 0.027614761143922806, + 0.007839204743504524, + -0.04121728241443634, + 0.04572414234280586, + 0.07402176409959793, + -0.09773057699203491, + 0.007422661874443293, + 0.028215674683451653, + -0.010836949571967125, + -0.033460021018981934, + 0.007723119109869003, + 0.04932963103055954, + -0.0024821872357279062, + 0.01708509586751461, + 0.03821270912885666, + -0.024487271904945374, + 0.009102491661906242, + 0.060910895466804504, + -0.04875602945685387, + -0.006101332604885101, + 0.004237131215631962, + -0.027491845190525055, + -0.020198926329612732, + 0.07768187671899796, + 0.000652982562314719, + 0.020731555297970772, + 0.007033432833850384, + 0.040725626051425934, + 0.0014826544793322682, + -0.0022158727515488863, + -0.015664752572774887, + 0.01910635456442833, + 0.047663457691669464, + 0.001557768788188696, + 0.007620690390467644, + -0.009443920105695724, + 0.021974356845021248, + 0.05746929347515106, + -0.006743218749761581, + 0.000920150603633374, + -0.03108367696404457, + 0.026453902944922447, + -0.029881848022341728, + 0.05512026324868202, + 0.011472007259726524, + -0.04536905884742737, + 0.02680898830294609, + -0.09215845912694931, + 0.02851613238453865, + -0.031438764184713364, + 0.001733604702167213, + 0.015050181187689304, + -0.03854048252105713, + 0.037857625633478165, + -0.005104360170662403, + 0.01688023842871189, + 0.09308714419603348, + -0.011512978933751583, + 0.08374565094709396, + 0.018423497676849365, + 0.04561488702893257, + -0.002098080003634095, + 0.02146904170513153, + -0.10925721377134323, + 0.048100486397743225, + 0.006883204448968172, + 0.01932486891746521, + 0.006046704016625881, + 0.027573788538575172, + 0.005947689525783062, + -0.024309730157256126, + -0.09407045692205429, + 0.004923403263092041, + -0.05402769148349762, + 0.004476131405681372, + 0.04851020127534866, + 0.0054082321003079414, + 0.04203671216964722, + 0.011328606866300106, + -0.07970313727855682, + 0.016730010509490967, + 0.024733101949095726, + -0.027409903705120087, + -0.002748501719906926, + 0.045969970524311066, + -0.013226951472461224, + -0.032394763082265854, + -0.04908380284905434, + -0.03889556601643562, + -0.008201119489967823, + -0.043812140822410583, + 0.007490947376936674, + 0.013028922490775585, + -0.056868378072977066, + -0.09090200066566467, + -0.06074700877070427, + 0.06872278451919556, + 0.06063775345683098, + 0.024610187858343124, + 0.08205216377973557, + 0.04217328503727913, + 0.0772448480129242, + 0.03681968152523041, + 0.037120137363672256, + 0.03990619629621506, + 0.038267336785793304, + -0.03758447989821434, + 0.04771808907389641, + -0.028133731335401535, + -0.0029550662729889154, + 0.033268820494413376, + -0.0046775746159255505, + -0.02306692861020565, + -0.016497839242219925, + -0.031247561797499657, + -0.016921211034059525, + -0.00833769142627716, + -0.013165494427084923, + 0.017645040526986122, + 0.05285317450761795, + 4.374556374386884e-05, + -0.013943951576948166, + 0.0013520580250769854, + -0.048865288496017456, + 0.0031565092504024506, + 0.022261157631874084, + 0.024391673505306244, + -0.003824002342298627, + -0.02743721753358841, + 0.029062418267130852, + -0.013370350934565067, + -0.016101781278848648, + 0.02657681703567505, + -0.020663270726799965, + 0.0001054161402862519, + -0.002695580245926976, + 0.04110802710056305, + -0.08117810636758804, + -0.003383559174835682, + 0.051624033600091934, + 0.028461502864956856, + 0.059435922652482986, + -0.0010951327858492732, + -0.020663270726799965, + 0.03824002295732498, + 0.05361797660589218, + -0.051405519247055054, + -0.07937536388635635, + 0.015500866807997227, + -0.06675615906715393, + 0.02093641273677349, + 0.019024411216378212, + 0.06528118252754211, + -0.019584355875849724, + -0.04932963103055954, + -0.038595110177993774, + -0.023107901215553284, + 0.06047386676073074, + -0.010980349965393543, + 0.06222198158502579, + -0.026631444692611694, + -0.008692776784300804, + -0.010379435494542122, + 0.053344834595918655, + 0.0576331801712513, + 0.034115564078092575, + 0.01879223994910717, + 0.0587257519364357, + 0.06325992941856384, + -0.023039614781737328, + 0.11340898275375366, + -0.03427945077419281, + 0.009334662929177284, + 0.07986702024936676, + -0.01696218177676201, + 0.002692166017368436, + -0.014135152101516724, + -0.028652703389525414, + -0.005452617537230253, + -0.0029653089586645365, + -0.037639111280441284, + 0.0777365043759346, + -0.04241911321878433, + -0.0377756804227829, + 0.03343270719051361, + -0.04209133982658386, + 0.07489582151174545, + -0.03586367890238762, + -0.019884811714291573, + 0.03313225135207176, + 0.043402425944805145, + -0.020909098908305168, + -0.010836949571967125, + -0.008952262811362743, + 0.14137883484363556 + ] + }, + { + "id": "f7870356-fa10-4d0b-b391-d3d95c84ae2e", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "dennismelissa", + "reviewDate": "2021-12-29T18:25:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f9bab4a9-a357-4482-b2c6-93541ae95d82", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "davidsonkatie", + "reviewDate": "2022-10-19T00:06:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "073cb4b0-2929-4b2f-a180-029283d6edb3", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "martinezchristina", + "reviewDate": "2021-11-21T15:31:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e798f625-7aad-42ed-9c1e-1fcf3928334d", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "zimmermanlindsay", + "reviewDate": "2022-10-01T16:16:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "faf2e60f-5b27-4e16-b3ec-e844fab35ba0", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "olivingston", + "reviewDate": "2021-06-09T23:03:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "94e63c35-e16c-498d-a423-12e28c1a5ff6", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "tdavis", + "reviewDate": "2022-02-11T03:24:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "56e6ff4a-342c-4b0d-a8c3-6007220475f7", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "yholland", + "reviewDate": "2022-11-06T10:28:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "87b5cb8b-747a-42f6-8dd8-95fc3b4894c8", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "debra47", + "reviewDate": "2021-07-20T06:01:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d1afaf76-a9d7-48bf-8ea3-feeeabebe811", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "grantedwards", + "reviewDate": "2021-07-07T23:06:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "87f1c539-cc55-471c-a85b-7c304f4a66bc", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "juliecardenas", + "reviewDate": "2021-07-24T03:08:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "66c92c71-1637-4d72-a4d2-c2e6fdbe708b", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "stevenmorris", + "reviewDate": "2021-10-05T05:07:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6b2afcf7-7fd2-4ff9-8a1c-c5a00059f34b", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "rodneybrooks", + "reviewDate": "2022-04-19T17:57:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f1f629e2-52fc-4559-b1f1-19b50ec81d91", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "jo35", + "reviewDate": "2021-10-20T01:40:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "51735977-d516-4264-9dc9-4eb5cc197b76", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "perrybrian", + "reviewDate": "2021-06-03T01:39:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fdc47751-7c77-4533-b69d-12bb2f018a55", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "cooleylinda", + "reviewDate": "2021-05-01T00:16:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ce7d09c0-95d9-438d-9036-c2ab7462c770", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "hernandezmeghan", + "reviewDate": "2022-09-24T13:12:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1d6da7a8-78fd-43b5-805d-c47105a51979", + "productId": "6942625d-4a89-45d2-988d-13a24df36d82", + "category": "Media", + "docType": "customerRating", + "userName": "leejohn", + "reviewDate": "2021-06-30T21:41:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone 3000 (Black)", + "description": "This Luxe Phone 3000 (Black) is available in three ways: Black, Black, and White. With its 5.6-inch 720p IPS LCD display and 5MP rear camera, the Luxe phones go beyond any smartphone of its ilk — the phone itself will come set to its specs, a phone that's in fact the envy of the LG.\n\nThe phone's front camera", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-03-24T17:21:21", + "price": 632.75, + "stock": 76, + "priceHistory": [ + { + "priceDate": "2021-01-30T20:22:54", + "newPrice": 648.05 + }, + { + "priceDate": "2022-12-11T20:22:54", + "newPrice": 638.82 + }, + { + "priceDate": "2024-07-26T20:22:54", + "newPrice": 632.75 + } + ], + "descriptionVector": [ + -0.042405109852552414, + 0.050987645983695984, + -0.03313043341040611, + 0.027616385370492935, + 0.0023547180462628603, + 0.007036756724119186, + 0.00602738605812192, + 0.025678394362330437, + 0.025932177901268005, + 0.03679877519607544, + 0.03682184964418411, + -0.015919219702482224, + 0.021410197019577026, + 0.0008637330611236393, + 0.07216712832450867, + 0.0448506735265255, + -0.034191716462373734, + -0.008484482765197754, + 0.05029550567269325, + -0.018214818090200424, + 0.08125723898410797, + -0.08407194167375565, + -0.09966816008090973, + -0.015030973590910435, + 0.004533517174422741, + -0.03924433887004852, + 0.04671945050358772, + -0.0008723848150111735, + 0.033361148089170456, + -0.07355140894651413, + 0.009459246881306171, + 0.037190988659858704, + -0.002272526267915964, + 0.058001331984996796, + -0.053202494978904724, + -0.03165386989712715, + 0.046465665102005005, + -0.0182378888130188, + 0.08660978823900223, + -0.0023907669819891453, + 0.050526220351457596, + 0.007059827912598848, + -0.05324863642454147, + -0.03354571759700775, + 0.01793796196579933, + -0.07927310466766357, + 0.019691383466124535, + 0.00427108071744442, + 0.009568835608661175, + -0.05144907534122467, + 0.027178030461072922, + -0.016357574611902237, + -0.07041370868682861, + -0.01065895613282919, + 0.029092950746417046, + -0.01410812046378851, + 0.029346736147999763, + 0.17368099093437195, + 0.026993460953235626, + -0.04554281383752823, + -0.015734650194644928, + -0.07608925551176071, + 0.005110300146043301, + 0.021906230598688126, + -0.007861556485295296, + 0.014927152544260025, + 0.0064138309098780155, + -0.03532221168279648, + -0.009857227094471455, + 0.08001138269901276, + -0.03465314209461212, + 0.04413546249270439, + -0.006160045973956585, + 0.049372654408216476, + 0.00823069829493761, + 0.05717076361179352, + -0.005718806758522987, + 0.0022379192523658276, + 0.003299200674518943, + -0.019783668220043182, + 0.0763661116361618, + -0.007446272764354944, + -0.01260848343372345, + -0.025724537670612335, + 0.03522992506623268, + 0.0289545226842165, + 0.017845677211880684, + -0.10022187232971191, + -0.043835531920194626, + 0.08241080492734909, + -0.014627225697040558, + 0.07908853143453598, + -0.024040330201387405, + -0.06953699886798859, + 0.02032584510743618, + -0.001144193927757442, + 0.00740013038739562, + 0.06459973007440567, + -0.027178030461072922, + 0.0009740428649820387, + 0.0786271020770073, + -0.02780095674097538, + -0.00046358961844816804, + 0.032253723591566086, + 0.010393635369837284, + 0.055740341544151306, + 0.01955295540392399, + -0.02874688059091568, + 0.026093678548932076, + -0.12440063059329987, + 0.028516167774796486, + -0.006644544191658497, + -0.08047281205654144, + -0.01741885580122471, + -0.03802155703306198, + 0.06953699886798859, + 0.017787998542189598, + -0.03979805111885071, + 0.06598401069641113, + -0.02189469523727894, + -0.007284773513674736, + 0.0028940103948116302, + -0.017384249716997147, + -0.0177418552339077, + -0.02024509571492672, + -0.019772132858633995, + 0.012516198679804802, + -0.0023720215540379286, + -0.0016337387496605515, + -0.06086217612028122, + -0.04166682809591293, + 0.06229260191321373, + 0.060631465166807175, + 0.050941504538059235, + -0.007907699793577194, + 0.08887077867984772, + 0.06999842822551727, + 0.02817009761929512, + -0.038090772926807404, + 0.06076989322900772, + 0.002079303842037916, + -0.013092981651425362, + 0.04000569134950638, + -0.021237162873148918, + 0.04058247432112694, + -0.004894006531685591, + -0.024893969297409058, + -0.010145618580281734, + 0.0022220578975975513, + 0.04784994572401047, + -0.02849309705197811, + -0.0819493755698204, + 0.020383523777127266, + -0.04653488099575043, + 0.02008359506726265, + -0.022286908701062202, + -0.04258968308568001, + -0.03423785790801048, + -0.04554281383752823, + 0.05334092304110527, + 0.008028823882341385, + -0.04074397310614586, + 0.005525584332644939, + -0.023140547797083855, + -0.002663297113031149, + 0.024663254618644714, + 0.030246518552303314, + 0.002558034146204591, + -0.07470497488975525, + 0.0465579517185688, + 0.029992733150720596, + -0.026139819994568825, + -0.02648589015007019, + -0.03982112184166908, + -0.02271372824907303, + -0.02401725761592388, + 0.0786271020770073, + 0.020095132291316986, + 0.016207611188292503, + 0.001245131017640233, + 0.07613539695739746, + -0.0362912081182003, + -0.08776335418224335, + -0.05638634040951729, + 0.02290983498096466, + 0.013762050308287144, + 0.006183117162436247, + -0.03375336155295372, + 0.003971153404563665, + 0.026185963302850723, + -0.01864163763821125, + 0.04808066040277481, + -0.01240084134042263, + 0.011691397987306118, + 0.008940141648054123, + -0.06658387184143066, + 0.08859392255544662, + 0.009632281959056854, + 0.009234300814568996, + 0.06473816186189651, + 0.0016121093649417162, + 0.01782260462641716, + 0.09196233749389648, + -0.0018947332864627242, + -0.02791631408035755, + -0.053525492548942566, + -0.02279447764158249, + 0.03631427884101868, + 0.03142315521836281, + 0.024917040020227432, + -0.026393605396151543, + 0.02443254180252552, + -0.03199993818998337, + 0.020510414615273476, + -0.003602011827751994, + 0.01572311297059059, + 0.017811069265007973, + -0.028446953743696213, + 0.03096172958612442, + -0.12163206934928894, + 0.01860702969133854, + -0.03322272002696991, + 0.02266758494079113, + -0.022886762395501137, + 0.0004989175940863788, + -0.05347935110330582, + 0.0971764549612999, + 0.11092697083950043, + 0.061323605477809906, + 0.011097311042249203, + 0.002578221494331956, + -0.03589899465441704, + 0.008040359243750572, + 0.01786874793469906, + 0.005842815153300762, + 0.045473597943782806, + -0.004922845866531134, + -0.04055940359830856, + -0.05061850696802139, + 0.06598401069641113, + -0.04353560507297516, + -0.08845549076795578, + 0.06390759348869324, + -0.01519247330725193, + 0.06035460904240608, + -0.04563509672880173, + 0.03331500664353371, + -0.025978321209549904, + -0.0558326281607151, + -0.00265897111967206, + 0.03001580387353897, + -0.01429269090294838, + -0.07765810936689377, + 0.04039790481328964, + -0.003630851162597537, + -0.0381830558180809, + -0.009984119795262814, + -0.01379665732383728, + 0.05071078985929489, + -0.02037198655307293, + -0.006598401349037886, + -0.028446953743696213, + -0.061785031110048294, + -0.0006344616413116455, + -0.04099775850772858, + 0.020545022562146187, + 0.03732941672205925, + -0.08887077867984772, + 0.05481748655438423, + 0.02300211973488331, + 0.026624318212270737, + -0.03232293948531151, + 0.03585285320878029, + 0.00718672014772892, + -0.061369746923446655, + 0.015111722983419895, + -0.07908853143453598, + 0.059524040669202805, + -0.04771151766180992, + -0.06436902284622192, + 0.06879871338605881, + 0.007025220897048712, + 0.053848493844270706, + -0.07336684316396713, + 0.07756582647562027, + -0.06769128888845444, + -0.011056936345994473, + 0.03308429196476936, + 0.044204674661159515, + -0.03096172958612442, + 0.009920673444867134, + 0.0354837104678154, + 0.04524288326501846, + -0.09039348363876343, + 0.010906972922384739, + -0.009493853896856308, + 0.028631525114178658, + -0.06515344232320786, + 0.023924972862005234, + 0.04148225858807564, + -0.01971445418894291, + -0.0024844941217452288, + -0.003714484628289938, + -0.08720964193344116, + 0.016230683773756027, + 0.10206758230924606, + 0.009280444122850895, + 0.056201767176389694, + -0.007319380529224873, + 0.008351822383701801, + 0.07161341607570648, + -0.02763945795595646, + -0.09279290586709976, + -0.010087940841913223, + -0.01581539958715439, + -0.042405109852552414, + -0.04701937735080719, + 0.022309979423880577, + -0.01671518012881279, + 0.025978321209549904, + 0.060308463871479034, + -0.0005883189733140171, + -0.0560171976685524, + 0.046050380915403366, + 0.06201574578881264, + 0.01387740671634674, + -0.028193170204758644, + -0.035252995789051056, + -0.023175153881311417, + -0.0317922979593277, + -0.115818090736866, + 0.06515344232320786, + 0.026970388367772102, + -0.05758604779839516, + -0.005038202274590731, + 0.006707990076392889, + 0.03723713383078575, + 0.02274833433330059, + 0.05158749967813492, + -0.043304894119501114, + 0.09177776426076889, + 0.07438197731971741, + -0.06667615473270416, + 0.0036164314951747656, + 0.020591165870428085, + -0.07244398444890976, + -0.05564805492758751, + 0.018295567482709885, + 0.04914193972945213, + 0.03790619969367981, + 0.0014405163237825036, + -0.041090045124292374, + 0.07170570641756058, + 0.006852185819298029, + 0.013242945075035095, + 0.06741443276405334, + 0.026624318212270737, + -0.0634000226855278, + -0.09233147650957108, + 0.006454205606132746, + -0.030315732583403587, + 0.012700769118964672, + 0.10031415522098541, + 0.029392879456281662, + -0.012723840773105621, + 0.03922126814723015, + 0.026831960305571556, + 0.06113903224468231, + -0.041205402463674545, + 0.018630102276802063, + 0.0690755695104599, + 0.001301367417909205, + -0.11729466170072556, + 0.03965962305665016, + -0.011812523007392883, + 0.043466392904520035, + 0.05749376118183136, + -0.010785848833620548, + -0.023671187460422516, + 0.05038779228925705, + -0.05606333911418915, + 0.036568064242601395, + 0.002868055133149028, + 0.007359755225479603, + 0.0688910037279129, + -0.03532221168279648, + -0.009805317036807537, + 0.05495591461658478, + -0.016703644767403603, + 0.026393605396151543, + 0.0068925609812140465, + -0.02874688059091568, + 0.006690686568617821, + 0.14414969086647034, + 0.010607045143842697, + -0.014211941510438919, + -0.0008968980982899666, + 0.01145491749048233, + 0.04150532931089401, + -0.08508707582950592, + 0.011939414776861668, + 0.05361777916550636, + 0.015630828216671944, + -0.01556161418557167, + 0.04570431262254715, + -0.03343036025762558, + 0.09385418146848679, + -0.0055515398271381855, + -0.013762050308287144, + -0.08282608538866043, + 0.0008493134519085288, + -0.025078538805246353, + -0.048265229910612106, + 0.012550805695354939, + 0.024340257048606873, + -0.03659113496541977, + 0.019772132858633995, + 0.0026012929156422615, + 0.06782972067594528, + -0.03612970933318138, + -0.0017332339193671942, + 0.04212825372815132, + -0.05823204666376114, + -0.01803024671971798, + -0.04023640602827072, + -0.040836259722709656, + -0.024917040020227432, + 0.009413103573024273, + -0.0006586144445464015, + -0.056524768471717834, + 0.07249012589454651, + -0.04448153078556061, + 0.028100883588194847, + -0.0004942312370985746, + -0.029992733150720596, + -0.04692709073424339, + -0.00876710657030344, + 0.035668279975652695, + 0.0036741099320352077, + 0.03869062662124634, + 0.00596393970772624, + 0.003437628736719489, + -0.0029473628383129835, + 0.09486932307481766, + -0.10114472359418869, + -0.032669007778167725, + -0.0019091528374701738, + 0.013242945075035095, + -0.017638035118579865, + -0.027293387800455093, + -0.016888216137886047, + 0.000741166586522013, + -0.05518662929534912, + -0.04697323590517044, + 0.05629405379295349, + -0.05371006578207016, + -0.04192061349749565, + 0.03626813739538193, + -0.02394804358482361, + -0.03197686746716499, + -0.03375336155295372, + 0.044412318617105484, + 0.04554281383752823, + 0.011183829046785831, + -0.06381531059741974, + 0.016968965530395508, + -0.08374893665313721, + 0.028446953743696213, + -0.0037202525418251753, + 0.022309979423880577, + -0.0006766389706172049, + -0.027408743277192116, + 0.02167551778256893, + 0.027247244492173195, + -0.023601973429322243, + -0.07013685256242752, + 0.00027343136025592685, + -0.011258810758590698, + -0.017349643632769585, + -0.04118233174085617, + 0.046050380915403366, + 0.0026373418513685465, + 0.04217439889907837, + 0.0027253013104200363, + 0.04145918786525726, + -0.034353215247392654, + 0.05366392061114311, + -0.05347935110330582, + -0.0007952400483191013, + -0.009972583502531052, + -0.013081446290016174, + -0.03022344596683979, + -0.0858253613114357, + -0.05135678872466087, + -0.06252331286668777, + -0.04817294329404831, + 0.015284758061170578, + -0.011581809259951115, + -0.08139566332101822, + 0.011379934847354889, + 0.03901362419128418, + -0.03227679431438446, + -0.04039790481328964, + -0.020383523777127266, + 0.021098734810948372, + 0.015123259276151657, + -0.03543756902217865, + 0.04302803799510002, + -0.002470074687153101, + -0.037098705768585205, + 0.06985999643802643, + -0.027570243924856186 + ] + }, + { + "id": "09f25e26-2c9c-4448-be36-af4697cb7790", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "katherine41", + "reviewDate": "2022-12-11T21:07:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "76764dff-dbdd-4b0d-acf5-f644e66cbf23", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "andrealee", + "reviewDate": "2022-06-05T20:20:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "09ffd4b4-c8a5-44a3-947b-418199b2df10", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "erinrobinson", + "reviewDate": "2021-12-24T15:14:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9055da7a-6ddb-4253-adfd-7bdf24e9431b", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcguiregeorge", + "reviewDate": "2022-02-09T07:07:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d55474ac-b011-4823-b7e6-832d5fc81e7f", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "grahamsheri", + "reviewDate": "2022-10-15T21:16:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6001635c-6a44-4ad2-be1d-5372b7214cdd", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "tvasquez", + "reviewDate": "2021-08-06T00:31:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8c1f4954-b7f4-47a7-8e10-2c984133218b", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "wnelson", + "reviewDate": "2021-08-11T19:34:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "08898937-8096-4dc5-a026-7f3cec5dd914", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "moorerobert", + "reviewDate": "2021-03-12T21:40:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6aafc4a7-35a1-470f-8b53-fa91ad44bdd4", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonesluis", + "reviewDate": "2022-01-18T23:13:09", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2b01866f-2638-423c-8b64-7dcad1fc25a9", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "ramirezian", + "reviewDate": "2021-02-06T03:56:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "50c12508-1e6a-4269-85a7-25130e72472e", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelreynolds", + "reviewDate": "2021-11-01T04:00:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f8aa50e6-6ba1-47c5-b01b-166c94e9902a", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "hallmichael", + "reviewDate": "2022-02-10T12:19:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "34bc9924-402d-49cb-b8dc-6332f379a7f7", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "villacharles", + "reviewDate": "2022-01-22T18:41:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4c15017f-3595-4e41-81d9-c590f03e95ea", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "nvillegas", + "reviewDate": "2021-06-06T19:31:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e523a1f1-22f3-4e8b-bbc7-bb4caff7f1ae", + "productId": "3e31c6ba-ef6b-4db5-a75c-1448d021acca", + "category": "Electronics", + "docType": "customerRating", + "userName": "rojasbrandon", + "reviewDate": "2021-01-30T20:22:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "product", + "name": "Basic Filter Micro (Steel)", + "description": "This Basic Filter Micro (Steel) is available as an Add-on. You must have the required Adobe Acrobat Reader installed to print this PDF in order to print it. Just click the image or click Create To-Page.", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-11-10T06:29:13", + "price": 547.16, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-02-11T23:52:22", + "newPrice": 554.85 + }, + { + "priceDate": "2021-11-19T23:52:22", + "newPrice": 592.38 + }, + { + "priceDate": "2022-08-27T23:52:22", + "newPrice": 525.77 + }, + { + "priceDate": "2023-10-09T23:52:22", + "newPrice": 547.16 + } + ], + "descriptionVector": [ + 0.013955415226519108, + -0.05174176022410393, + -0.03831322118639946, + 0.019629446789622307, + 0.03680014610290527, + 0.01510373130440712, + 0.004600018262863159, + 0.01688699796795845, + -0.004255523439496756, + 0.057442814111709595, + -0.024790113791823387, + -0.01056450605392456, + 0.002055147662758827, + -0.06398145854473114, + 0.01976454257965088, + -0.057929158210754395, + -0.10532082617282867, + -0.036556974053382874, + -0.03671908751130104, + -0.03758370131254196, + 0.046013690531253815, + -0.005869920365512371, + -0.0960262268781662, + 0.01726526767015457, + -0.005224836990237236, + 0.04317667707800865, + -0.042339082807302475, + 0.0025617575738579035, + -0.013063781894743443, + -0.02812698297202587, + 0.04255523532629013, + 0.0412583127617836, + -0.0554974302649498, + 0.032017748802900314, + -0.047310613095760345, + -0.03701629862189293, + 0.018156901001930237, + -0.010051141493022442, + 0.000778068439103663, + 0.03923187404870987, + 0.03145034611225128, + -0.020588627085089684, + 0.013820319436490536, + -0.0019048533868044615, + -0.004258900880813599, + -0.03623274341225624, + 0.0005661366158165038, + -0.040123507380485535, + -0.06376530230045319, + -0.0038975190836936235, + 0.09451314806938171, + 0.017103152349591255, + -0.016981564462184906, + 0.008038210682570934, + -0.0037489135283976793, + 0.043987251818180084, + 0.036070626229047775, + 0.27040812373161316, + -0.018143391236662865, + -0.050309743732213974, + -0.04666215181350708, + -0.09110873192548752, + 0.07586990296840668, + 0.0665753036737442, + -0.07803144305944443, + -0.008869051001966, + -0.05728069692850113, + 0.04044773802161217, + 0.0612795390188694, + 0.07635624706745148, + 0.013252915814518929, + -0.03985331580042839, + 0.015630604699254036, + -0.010969794355332851, + -0.027829771861433983, + 0.04660811275243759, + 0.07889605313539505, + -0.0335308238863945, + 0.04444658011198044, + -0.04444658011198044, + -0.036638032644987106, + 0.0073222024366259575, + -0.06068511679768562, + 0.04747273027896881, + 0.02180449105799198, + 0.02088584005832672, + 0.03142332658171654, + -0.09559392184019089, + -0.016684353351593018, + 0.06765606999397278, + 0.049093879759311676, + 0.08224643766880035, + 0.02683006227016449, + 0.015914306044578552, + 0.07019587606191635, + 0.04179869592189789, + -0.024236219003796577, + -0.013759526424109936, + -0.061549730598926544, + 0.022628577426075935, + -0.0010089981369674206, + -0.027127273380756378, + -0.0427173487842083, + 0.03696225956082344, + 0.009476982988417149, + 0.014077001251280308, + 0.027775734663009644, + -0.029018618166446686, + -0.016198009252548218, + -0.06306280195713043, + -0.008308403193950653, + -0.03420630469918251, + -0.031045056879520416, + 0.08964969217777252, + -0.009200036525726318, + 0.013347483240067959, + -0.04628388583660126, + 0.010692846961319447, + 0.017413873225450516, + 0.012030296958982944, + -0.08051721006631851, + 0.00550853880122304, + 0.04931003600358963, + -0.07068222016096115, + -0.06808837503194809, + 0.011496668681502342, + 0.021818000823259354, + -0.045230135321617126, + 0.04093408212065697, + 0.014657914638519287, + -0.05506512150168419, + -0.06549452990293503, + -0.02676251530647278, + -0.05782108008861542, + -0.03323361277580261, + 0.0037252716720104218, + 0.039393987506628036, + 0.08208432048559189, + -0.0072884284891188145, + 0.10451025515794754, + -0.02223679982125759, + -0.00924056489020586, + 0.0465540774166584, + 0.015387432649731636, + -0.00884203240275383, + -0.04498696327209473, + -0.013941905461251736, + 0.07214125245809555, + 0.07257356494665146, + -0.00017446379933971912, + -0.04917493835091591, + -0.08689373731613159, + 0.03363889828324318, + -0.009267584420740604, + 0.08808258175849915, + 0.011888446286320686, + 0.013914885930716991, + 0.04539225250482559, + -0.031234191730618477, + -0.02272314392030239, + 0.04585157707333565, + -0.04458167403936386, + 0.025330496951937675, + -0.035881493240594864, + 0.010429410263895988, + 0.038043029606342316, + 0.0017562478315085173, + 0.031531400978565216, + -0.06046896427869797, + 0.0349898599088192, + -0.03685418516397476, + -0.02535751648247242, + 0.0007375396671704948, + -0.08235450834035873, + -0.07727490365505219, + 0.0001489222195232287, + 0.03020746260881424, + -0.0002659702149685472, + -0.024033576250076294, + -0.02688410133123398, + 0.005147156771272421, + -0.008578594774007797, + 0.023195980116724968, + -0.046635132282972336, + 0.0006273519829846919, + -0.05582166090607643, + 0.05636204406619072, + 0.022263817489147186, + -0.009017656557261944, + -0.003156180027872324, + -0.0347466878592968, + -0.03190967068076134, + 0.038772545754909515, + 0.01479301042854786, + 0.08505643159151077, + 0.005120137706398964, + -0.09753929823637009, + -0.031963709741830826, + -0.019818581640720367, + -0.05668627470731735, + -0.03388207405805588, + 0.027356937527656555, + -0.026573380455374718, + 0.06408953666687012, + 0.035449184477329254, + 0.07127664238214493, + 0.032936401665210724, + 0.051849838346242905, + -0.002712051849812269, + -0.04690532386302948, + 0.02370934560894966, + -0.04960724711418152, + -0.01289491169154644, + 0.0118208983913064, + 0.07397855818271637, + 0.05360608547925949, + -0.05422752723097801, + -0.11142716556787491, + -0.03928591310977936, + 0.0041879755444824696, + 0.03463860973715782, + -0.05765896663069725, + -0.016859978437423706, + -0.01621151901781559, + 0.0002391621092101559, + -0.057010505348443985, + 0.013306954875588417, + 0.006028658244758844, + 0.09235161542892456, + 0.05846954137086868, + -0.0019572030287235975, + 0.015157769434154034, + -0.041663601994514465, + -0.03561130166053772, + 0.013847338035702705, + 0.0014277957379817963, + -0.06679145246744156, + -0.04744571074843407, + 0.070952408015728, + 0.07813951373100281, + 0.02769467607140541, + -0.010449673980474472, + -0.03701629862189293, + -0.03812408819794655, + 0.06695356965065002, + -0.02350670099258423, + 0.00878123939037323, + -0.048472438007593155, + -0.07414067536592484, + -0.030099384486675262, + 0.006660231854766607, + 0.07905817031860352, + -0.006444078404456377, + 0.07830163091421127, + -0.04309561848640442, + 0.0989442989230156, + 0.050552915781736374, + -0.025681747123599052, + -0.09667468816041946, + -0.010280804708600044, + 0.027721695601940155, + 0.0236417967826128, + -0.0417446605861187, + 0.043500907719135284, + -0.02996428869664669, + -0.03369293734431267, + 0.030855922028422356, + -0.06695356965065002, + -0.0617658831179142, + 0.08100355416536331, + 0.07813951373100281, + 0.04998551309108734, + 0.04660811275243759, + 0.030720826238393784, + -0.03707033768296242, + -0.021169541403651237, + -0.02793784998357296, + 0.016198009252548218, + -0.01664382591843605, + -0.014347193762660027, + 0.05422752723097801, + -0.005471387412399054, + 0.0014269513776525855, + 0.04231206327676773, + 0.04722955450415611, + -0.005609860643744469, + -0.010172727517783642, + 0.0232770387083292, + -0.07905817031860352, + -0.004961399827152491, + -0.06673741340637207, + -0.05460579693317413, + -0.03569236025214195, + -0.0525793582201004, + 0.04371706023812294, + 0.0007434500730596483, + 0.012347772717475891, + -0.014536327682435513, + -0.006295472849160433, + 0.02499275654554367, + -0.08597508072853088, + -0.014955125749111176, + -0.0048195491544902325, + -0.004316316917538643, + 0.050498880445957184, + 0.04974234104156494, + 0.08392162621021271, + -0.0020754120778292418, + 0.0009473605896346271, + -0.12612560391426086, + 0.03752966597676277, + -0.025371026247739792, + -0.052336182445287704, + 0.0074235242791473866, + 0.04115023836493492, + -0.04806715250015259, + 0.017738102003932, + -0.021534299477934837, + 0.01633310504257679, + -0.00393129326403141, + -0.09019007533788681, + -0.015941325575113297, + -0.003887386992573738, + 0.10910351574420929, + 0.043933212757110596, + -0.056145891547203064, + -0.01028755959123373, + 0.03463860973715782, + -0.018886419013142586, + 0.03598957136273384, + -0.031288228929042816, + 0.001965646632015705, + -0.03477370738983154, + 0.07695066928863525, + 0.024587469175457954, + -0.06398145854473114, + 0.034962840378284454, + -0.04385215789079666, + -0.006599438842386007, + -0.015022673644125462, + -0.050309743732213974, + 0.04009648784995079, + -0.0030666787642985582, + -0.022128721699118614, + 0.03553024306893349, + -0.026195110753178596, + 0.03798899054527283, + -0.02573578432202339, + -0.014833538793027401, + -0.01197625882923603, + 0.0018119749147444963, + 0.02424972876906395, + 0.022061174735426903, + -0.012786834500730038, + 0.06571068614721298, + -0.006548777688294649, + 0.04106917977333069, + -0.0016718128463253379, + -0.016684353351593018, + -0.030126404017210007, + -0.014468779787421227, + -0.08338124305009842, + 0.00994306430220604, + 0.0040832762606441975, + -0.029613040387630463, + 0.10094372183084488, + -0.036692067980766296, + 0.02670847624540329, + -0.019534878432750702, + 0.031774576753377914, + -0.03180159628391266, + 0.029072655364871025, + 0.04071792960166931, + 0.020737232640385628, + -0.02014281041920185, + -0.08808258175849915, + 0.04352792724967003, + 0.008990637958049774, + -0.05141753330826759, + 0.004539225250482559, + 0.026749005541205406, + 0.015117241069674492, + 0.04212292656302452, + 0.013806809671223164, + 0.11018428206443787, + -0.04674321040511131, + -0.059712424874305725, + 0.0036881202831864357, + -0.05587569996714592, + 0.025884389877319336, + -0.02173694409430027, + 0.011685802601277828, + -0.011239985935389996, + -0.014779500663280487, + 0.019737523049116135, + -0.02646530419588089, + 0.030855922028422356, + 0.031234191730618477, + 0.05471387505531311, + -0.04082600772380829, + 0.04106917977333069, + -0.0010208190651610494, + 0.01965646632015705, + -0.02523593045771122, + -0.0009524266934022307, + 0.008423234336078167, + 0.03174755722284317, + -0.023966027423739433, + 0.05636204406619072, + -0.048715610057115555, + 0.04447359964251518, + -0.052903588861227036, + 0.06311684101819992, + -0.03185563161969185, + -0.02357424981892109, + 0.013347483240067959, + -0.06479203701019287, + 0.013664958998560905, + 0.02393900789320469, + -0.005143779795616865, + 0.025762803852558136, + -0.016130460426211357, + -0.022750163450837135, + 0.027086744084954262, + 0.06090126931667328, + -0.007592394482344389, + -0.0559837743639946, + 0.06338703632354736, + 0.038043029606342316, + -0.057388775050640106, + -0.04887772724032402, + 0.014698443002998829, + -0.08359739184379578, + 0.03163947910070419, + 0.035638321191072464, + 0.029802173376083374, + 0.023844441398978233, + -0.012097845785319805, + -0.06430568546056747, + -0.01541445218026638, + -0.003600307973101735, + 0.028154002502560616, + -0.014928106218576431, + 0.00027546915225684643, + -0.05679435282945633, + -0.016751902177929878, + -0.0805712416768074, + -0.027289388701319695, + 0.010915755294263363, + -0.02426323853433132, + -0.06544049829244614, + 0.021507279947400093, + -0.09251373261213303, + -0.0275055430829525, + 0.04236610233783722, + 0.007822057232260704, + 0.06765606999397278, + 0.08402970433235168, + 0.028072945773601532, + -0.013131329789757729, + -0.05263339355587959, + 0.02719482220709324, + 0.019602427259087563, + -0.016414161771535873, + 0.013124574907124043, + -0.06711568683385849, + -0.031207172200083733, + 0.004748623818159103, + 0.006126603111624718, + 0.03507091850042343, + 0.0073492215014994144, + -0.06581876426935196, + 0.026776023209095, + 0.026370735839009285, + 0.03893466293811798, + -0.0006628146511502564, + -0.027667658403515816, + -0.01785968989133835, + 0.04744571074843407, + 0.010888736695051193, + 0.020669685676693916, + -0.04136639088392258, + -0.014036472886800766, + 0.0738164484500885, + 0.04179869592189789, + -0.016927527263760567, + 0.0034753442741930485, + 0.04831032454967499, + -0.0023608023766428232, + 0.0994306430220604, + 0.010990058071911335, + 0.029802173376083374, + -0.054794929921627045, + -0.006923669017851353, + -0.02216925099492073, + 0.0347466878592968, + -0.002066968474537134, + 0.012611210346221924, + 0.01798127591609955, + -0.00939592532813549, + 0.008119268342852592, + 0.0133272185921669, + 0.037124376744031906, + -0.04109619930386543, + 0.05033676326274872, + 0.014198588207364082, + 0.00525185652077198, + -0.03261217102408409, + -0.00250096432864666, + 0.07295183092355728, + 0.004647301975637674, + 0.008396215736865997 + ] + }, + { + "id": "c67c4b5d-21cf-4df2-b330-02741d256552", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "mcdanieldavid", + "reviewDate": "2021-06-30T10:33:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4705a1f5-e1c1-4080-94c5-f409564ba16b", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "cmccormick", + "reviewDate": "2022-04-08T23:50:21", + "stars": 5, + "verifiedUser": true + }, + { + "id": "0c30916c-5283-4464-8062-fed237372335", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "brian53", + "reviewDate": "2022-04-19T21:23:41", + "stars": 5, + "verifiedUser": false + }, + { + "id": "1760fdd1-e89a-4bca-b825-2a1aa9bec80a", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "zeaton", + "reviewDate": "2022-08-28T11:05:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f020818d-a35c-4c19-8386-3bef1c677cf6", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "jeremiah96", + "reviewDate": "2021-05-31T09:22:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3a789005-3c25-4e05-a077-aaa008cec6aa", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "christine03", + "reviewDate": "2021-08-16T12:18:18", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7011e52d-9357-4deb-b9cd-16f955e2e98a", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "zstrickland", + "reviewDate": "2021-05-18T23:45:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7645709d-002f-4ad9-92b2-9a8bab03e159", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "franciscoarmstrong", + "reviewDate": "2021-02-11T23:52:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ca17b55f-5260-4f48-a5e2-fb06b03c18f0", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "greenmichael", + "reviewDate": "2022-06-18T22:32:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3afd6457-0f0e-4f1a-8dec-49f96444eeae", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "gloria85", + "reviewDate": "2022-05-21T23:43:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8d0ff754-ef51-4531-b3e0-2b3548aa21b3", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "xewing", + "reviewDate": "2021-09-17T11:00:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "12ca6daf-f88e-463e-a18a-bbd4ded118ca", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "turneralexandra", + "reviewDate": "2022-08-11T10:19:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bdc0fcc4-b671-4459-9b5f-a504ce98f078", + "productId": "331f19f8-4a93-4aa4-a4bd-3a60e2051a94", + "category": "Other", + "docType": "customerRating", + "userName": "desireemckee", + "reviewDate": "2022-07-10T15:07:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b24e3649-8669-4fa4-9ea9-add985c19f1e", + "productId": "b24e3649-8669-4fa4-9ea9-add985c19f1e", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Ultra (Silver)", + "description": "This Amazing Stand Ultra (Silver) is made in China and sold worldwide. It is highly polished to excellent color. The stand is durable and easily cleaned. There are many ways to clean the stand, with the addition of water, a few of which will help your hands.\n\n\nThe Ultra is constructed of a stainless steel alloy used as a construction material. This means that the", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-06-14T22:35:29", + "price": 655.42, + "stock": 54, + "priceHistory": [ + { + "priceDate": "2022-03-27T21:29:53", + "newPrice": 720.63 + }, + { + "priceDate": "2022-06-14T21:29:53", + "newPrice": 677.71 + }, + { + "priceDate": "2022-09-01T21:29:53", + "newPrice": 607.48 + }, + { + "priceDate": "2022-12-02T21:29:53", + "newPrice": 655.42 + } + ], + "descriptionVector": [ + -0.01888556219637394, + -0.004296529106795788, + -0.041374459862709045, + -0.02291056327521801, + 0.08709336072206497, + -0.07717780023813248, + -0.06808002293109894, + -0.07549113780260086, + 0.03544556722044945, + 0.03475556522607803, + -0.02132611721754074, + 0.048683349043130875, + 0.001101285102777183, + -0.049245573580265045, + 0.01682833954691887, + -0.019038895145058632, + 0.012554170563817024, + -0.012043059803545475, + -0.01042667031288147, + 0.001330486498773098, + 0.04446668177843094, + -0.037260010838508606, + 0.015601672232151031, + 0.005813890602439642, + -0.02232278510928154, + -0.05842002108693123, + 0.02928667701780796, + -0.020700007677078247, + -0.018693894147872925, + 0.02967000938951969, + 0.018642783164978027, + -0.016790006309747696, + 0.03559890016913414, + 0.05075335130095482, + -0.03968778997659683, + 0.02505723014473915, + 0.044773347675800323, + 0.04658779129385948, + 0.05760224163532257, + -0.021990563720464706, + 0.02849445305764675, + -0.009960280731320381, + 0.04247334599494934, + 0.05974891036748886, + 0.0002743230143096298, + -0.057908907532691956, + -0.05678446218371391, + -0.01358278188854456, + -0.007002224680036306, + -0.019141117110848427, + 0.027881119400262833, + 0.02967000938951969, + 0.02849445305764675, + -0.03163778781890869, + 0.05744890868663788, + -0.04536112770438194, + 0.019026117399334908, + 0.1730622798204422, + 0.11571559309959412, + 0.028954453766345978, + 0.028622232377529144, + -0.06342890858650208, + 0.02772778645157814, + 0.09419780969619751, + 0.07498002797365189, + 0.0024405564181506634, + 0.031382232904434204, + -0.04408334940671921, + 0.015205560252070427, + 0.026705564931035042, + -0.014681671746075153, + 0.0609755739569664, + 0.03324778750538826, + -0.0191794503480196, + 0.001964583992958069, + 0.05688668414950371, + 0.005967224016785622, + -0.014183337800204754, + 0.07498002797365189, + 0.027651119977235794, + 0.025044452399015427, + 0.01709667220711708, + -0.029772231355309486, + -0.07952891290187836, + 0.05801112949848175, + 0.03976445645093918, + 0.006778613198548555, + -0.0649622455239296, + -0.046920016407966614, + 0.04993557184934616, + -0.046332236379384995, + -0.02908223122358322, + 0.02252722904086113, + -0.06368446350097656, + 0.009033892303705215, + 0.07426446676254272, + -0.021045006811618805, + 0.02196500636637211, + -0.04272890463471413, + 0.0343722328543663, + 0.02910778671503067, + 0.015601672232151031, + -0.05990224331617355, + 0.01859167218208313, + -0.02349834144115448, + 0.0343722328543663, + 0.03562445566058159, + 0.02141556330025196, + -0.0060279187746346, + -0.08305558562278748, + -0.015793338418006897, + -0.038486678153276443, + 0.06961335986852646, + 0.034346677362918854, + 0.02372834086418152, + 0.030360009521245956, + -0.043393347412347794, + -0.015486671589314938, + -0.009973058477044106, + -0.06000446528196335, + -0.00766028044745326, + 0.017428895458579063, + 0.07160668820142746, + 0.020291117951273918, + 0.018348895013332367, + 0.02211834117770195, + -0.013531670905649662, + -0.024801675230264664, + 0.043546680361032486, + 0.011825837194919586, + -0.08428224921226501, + -0.03654445707798004, + -0.002632223069667816, + 0.010228614322841167, + -0.08172669261693954, + 0.04303557053208351, + 0.0031736816745251417, + 0.03501112386584282, + -0.020227229222655296, + 0.08520224690437317, + -0.06419557332992554, + -0.00826722476631403, + 0.027600008994340897, + 0.011193336918950081, + -0.07043113559484482, + -0.057704463601112366, + -0.049220018088817596, + -0.009065836668014526, + -0.025951676070690155, + -0.02150500752031803, + 0.037464458495378494, + -0.06910224258899689, + -0.048095572739839554, + -0.06843779981136322, + 0.03749001398682594, + -0.027012230828404427, + -0.062048908323049545, + 0.003135348204523325, + -0.04104223474860191, + 0.045540016144514084, + 0.033912234008312225, + -0.06925557553768158, + -0.028750009834766388, + -0.00025815112167038023, + 0.018527783453464508, + -0.0036384733393788338, + 0.021249450743198395, + 0.1393289417028427, + -0.007730558048933744, + 0.04232001304626465, + -0.013135559856891632, + 0.016636671498417854, + 0.0088550029322505, + -0.11510226130485535, + 0.06194668635725975, + 0.005865002050995827, + 0.044952236115932465, + -0.05249112844467163, + 0.03427001088857651, + -0.025606675073504448, + 0.0010102434316650033, + 0.005884168669581413, + -0.019754450768232346, + 0.02372834086418152, + 0.03989223390817642, + 0.044952236115932465, + 0.0008125870954245329, + 0.011742781847715378, + 0.00851639173924923, + 0.059084463864564896, + -0.05093223974108696, + -0.06654668599367142, + -0.01386389322578907, + 0.025708897039294243, + -0.005146251525729895, + -0.018553338944911957, + -0.004539307206869125, + 0.011576670221984386, + -0.09143780916929245, + 0.042933348566293716, + -0.04640890285372734, + 0.07426446676254272, + 0.011870559304952621, + -0.024456674233078957, + 0.027881119400262833, + -0.07349780201911926, + -0.0226422306150198, + -0.037055566906929016, + 0.02910778671503067, + 0.051826681941747665, + 0.0009519447339698672, + -0.033733345568180084, + -0.0687955766916275, + 0.03554778918623924, + -0.029031120240688324, + 0.03577778860926628, + -0.009040281176567078, + -0.08872891962528229, + -0.009315002709627151, + -0.00026553828502073884, + -0.01847667247056961, + -0.048248905688524246, + -0.039815567433834076, + -0.041783347725868225, + -0.053002238273620605, + -0.06215113028883934, + 0.02250167354941368, + 0.03989223390817642, + 0.0550466850399971, + 0.015486671589314938, + -0.0024613202549517155, + -0.054535575211048126, + -0.035087790340185165, + 0.02887778729200363, + -0.007174724712967873, + 0.08975113928318024, + -0.014771115966141224, + -0.07656446844339371, + -0.026194453239440918, + 0.004424307029694319, + -0.00482361251488328, + 0.005056807305663824, + -0.0707378014922142, + -0.01066305860877037, + -0.016227783635258675, + -0.01583167165517807, + 0.07032891362905502, + -0.11080892384052277, + -0.037643346935510635, + 0.04211556911468506, + 0.01263083703815937, + -0.022054452449083328, + -0.02614334225654602, + 0.056324463337659836, + 0.06649557501077652, + 0.052005574107170105, + 0.048683349043130875, + -0.040428902953863144, + 0.02711445279419422, + -0.03319667652249336, + 0.04973112791776657, + -0.034321121871471405, + -0.01639389432966709, + 0.02808556519448757, + -0.06629113107919693, + 0.013800004497170448, + -0.025951676070690155, + -0.05075335130095482, + 0.0649111345410347, + 0.06705780327320099, + -0.029031120240688324, + 0.004769307095557451, + 0.08438447117805481, + 0.02273167483508587, + -0.04211556911468506, + -0.015052227303385735, + -0.04500334709882736, + 0.08172669261693954, + 0.0007083683158271015, + -0.05939112976193428, + 0.11530670523643494, + 0.021338896825909615, + 0.04656223580241203, + 0.07569558173418045, + 0.06624002009630203, + -0.06174224242568016, + 0.029210010543465614, + -0.010867503471672535, + 0.011653337627649307, + -0.01730111613869667, + 0.0033413900528103113, + -0.02323000691831112, + 0.03789890184998512, + 0.0630200207233429, + -0.00587458536028862, + -0.0086058359593153, + 0.025478897616267204, + 0.009206391870975494, + -0.019371118396520615, + -0.005970418453216553, + 0.02535112015902996, + -0.03222556784749031, + 0.002820695284754038, + 1.2771542969858274e-05, + 0.016790006309747696, + 0.08740002661943436, + 0.021019451320171356, + -0.05131557211279869, + -0.02438000775873661, + -0.06148668751120567, + 0.08203335851430893, + 0.034116677939891815, + -0.022425007075071335, + 0.009085003286600113, + 0.07436668872833252, + -0.015742227435112, + -0.024226674810051918, + -0.012828893028199673, + 0.015793338418006897, + 0.03105000965297222, + -0.015090560540556908, + 0.002303195185959339, + -0.0668533518910408, + 0.08126669377088547, + 0.06767113506793976, + -0.024546118453145027, + 0.02379222959280014, + -0.04214112460613251, + 0.03345223143696785, + 0.023613341152668, + 0.011634170077741146, + 0.03600778803229332, + -0.015576115809381008, + 0.0027823620475828648, + -0.05433112755417824, + -0.05157112702727318, + -0.000991076696664095, + 0.004095279145985842, + 0.046511124819517136, + 0.0285200085490942, + 0.012739448808133602, + 0.043188903480768204, + 0.04403223842382431, + -0.016457783058285713, + 0.05944224074482918, + -0.05295112729072571, + 0.05131557211279869, + -0.019013339653611183, + -0.019920561462640762, + 0.019818339496850967, + 0.0015037852572277188, + -0.025772785767912865, + 0.02829000912606716, + 0.05269557237625122, + 0.10436892509460449, + 0.06133335456252098, + 0.004401945974677801, + -0.05001223832368851, + -0.002577917417511344, + 0.006938335485756397, + 0.04109334573149681, + 0.017377782613039017, + 0.037081122398376465, + 0.05627335235476494, + 0.06981780380010605, + -0.0034276400692760944, + -0.02584945224225521, + 0.004801251459866762, + 0.014119449071586132, + 0.037464458495378494, + -0.06828446686267853, + -0.06020890921354294, + 0.044134460389614105, + 0.0061525022611021996, + -0.026002787053585052, + 0.01949889585375786, + 0.06833557784557343, + 0.0240605641156435, + 0.013033337891101837, + 0.02637334167957306, + -0.010228614322841167, + 0.06020890921354294, + -0.013007782399654388, + 0.06419557332992554, + 0.05489335209131241, + 0.017313893884420395, + -0.053206685930490494, + 0.09465780854225159, + -0.03789890184998512, + -0.01944778487086296, + -0.072628915309906, + -0.004660695791244507, + 0.05149446055293083, + 0.06935779750347137, + 0.034116677939891815, + -0.03605889901518822, + 0.04625556990504265, + 0.0628155767917633, + -0.021683895960450172, + 0.015780560672283173, + 0.04842779412865639, + 0.06041335314512253, + 0.04735445976257324, + -0.002022084081545472, + 0.06220224127173424, + -0.07124891132116318, + 0.045897793024778366, + 0.07809780538082123, + -0.03792445734143257, + -0.08034669607877731, + -0.026245564222335815, + -0.07048224657773972, + -0.014745560474693775, + 0.044952236115932465, + 0.03659556806087494, + 0.059288907796144485, + 0.07733113318681717, + 0.0028190980665385723, + 0.10917337238788605, + -0.12062226235866547, + 0.06475780159235, + -0.03283889964222908, + -0.028596676886081696, + -0.01944778487086296, + -0.05586446449160576, + 0.07145335525274277, + -0.006574168801307678, + -0.015703894197940826, + -0.027778897434473038, + -0.033503346145153046, + 0.003916390240192413, + -0.0807044729590416, + 0.0220927856862545, + 0.06542224436998367, + 0.024737786501646042, + -0.024022230878472328, + 0.02429056353867054, + -0.01512889377772808, + 0.020227229222655296, + 0.044338904321193695, + 0.012707504443824291, + -0.058880019932985306, + 0.08760447055101395, + -0.027804452925920486, + -0.06787557899951935, + -0.045131124556064606, + -0.03516445681452751, + 0.01630445010960102, + -0.006574168801307678, + -0.018131673336029053, + -0.020073896273970604, + -0.004775695968419313, + 0.005251668393611908, + -0.012164448387920856, + -0.007858335971832275, + -0.03306889906525612, + -0.029337788000702858, + 0.059697795659303665, + 0.03680001199245453, + 0.055915575474500656, + -0.030947787687182426, + 0.12328004091978073, + -0.009168058633804321, + -0.06838668882846832, + 0.008305558003485203, + 0.02752334251999855, + -0.028852231800556183, + -0.0011547920294106007, + 0.023281117901206017, + 0.03933001309633255, + -0.021108895540237427, + -0.05054890736937523, + -0.02526167407631874, + -0.007966946810483932, + -0.04799335077404976, + -0.06843779981136322, + -0.007845558226108551, + -0.05361557379364967, + -0.023511119186878204, + 0.018374450504779816, + -0.034295566380023956, + 0.053411129862070084, + -0.06710891425609589, + -0.02073834091424942, + -0.030922232195734978, + -0.03695334494113922, + -0.036493346095085144, + -0.041553348302841187, + -0.047712236642837524, + -0.0010693406220525503, + 0.007858335971832275, + 0.06992002576589584, + 0.032378900796175, + -0.01856611669063568, + -0.06634224206209183, + -0.0403011254966259, + 0.012988615781068802, + -0.01318667083978653, + -0.056937795132398605, + 0.04249890148639679, + -0.001808056142181158, + -0.03416778892278671, + -0.030768899247050285, + 0.009116947650909424, + 0.04732890427112579, + 0.008465280756354332, + -0.028392231091856956, + 0.06424668431282043, + -0.02790667675435543, + -0.019703339785337448, + 0.035496678203344345, + 0.041808903217315674 + ] + }, + { + "id": "de16d06b-d0d7-4699-bde5-52229521dc87", + "productId": "b24e3649-8669-4fa4-9ea9-add985c19f1e", + "category": "Accessory", + "docType": "customerRating", + "userName": "tmccullough", + "reviewDate": "2022-09-02T22:15:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f7b38c04-2f35-4f7b-b2aa-a7c69901e7f3", + "productId": "b24e3649-8669-4fa4-9ea9-add985c19f1e", + "category": "Accessory", + "docType": "customerRating", + "userName": "selenathompson", + "reviewDate": "2022-03-27T21:29:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "product", + "name": "Amazing Filter 3000 (Gold)", + "description": "This Amazing Filter 3000 (Gold) is one of the more common applications of Blu-rays and video-streaming. Many customers have come to this site to request a Blu-ray version of their camera equipment for the special needs of their child or in need of a movie-going experience such as the documentary \"A Very Private Heart\" or the film version of \"The Wolf Man.\" (Note: Only about 30", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-08-19T19:00:05", + "price": 993.58, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-02-20T03:15:41", + "newPrice": 995.45 + }, + { + "priceDate": "2021-09-06T03:15:41", + "newPrice": 1003.92 + }, + { + "priceDate": "2022-03-23T03:15:41", + "newPrice": 983.65 + }, + { + "priceDate": "2022-10-07T03:15:41", + "newPrice": 964.83 + }, + { + "priceDate": "2025-03-12T03:15:41", + "newPrice": 993.58 + } + ], + "descriptionVector": [ + -0.011473109014332294, + 0.008006361313164234, + -0.03079931251704693, + 0.010028022341430187, + 0.008809187449514866, + -0.019005073234438896, + -0.06819639354944229, + 0.005032257176935673, + 0.08226773887872696, + 0.17352712154388428, + -0.012341620400547981, + -0.008502653799951077, + -0.012465693056583405, + -0.0022497365716844797, + 0.061014752835035324, + -0.00922519713640213, + -0.07526125758886337, + -0.026989540085196495, + -0.020815080031752586, + 0.04113386943936348, + 0.05526360124349594, + -0.0022442627232521772, + -0.0168155487626791, + 0.00186200812458992, + 0.0001976273924810812, + 0.027427444234490395, + -0.05762828513979912, + -0.03027382679283619, + -0.055672310292720795, + -0.09359487891197205, + 0.0715244710445404, + 0.045921627432107925, + 0.011392826214432716, + 0.02885793335735798, + -0.07380157709121704, + 0.004930079448968172, + -0.008028256706893444, + 0.05266536399722099, + 0.01801248826086521, + 0.03698837012052536, + 0.024639450013637543, + 0.022610491141676903, + -0.026405666023492813, + 0.0560518279671669, + 0.017414018511772156, + -0.043265003710985184, + -0.0655689612030983, + -0.009809070266783237, + -0.058066193014383316, + 0.025675823912024498, + 0.03637530282139778, + -0.054300207644701004, + -0.09254390746355057, + 0.0007681581773795187, + 0.006524783093482256, + -0.037221916019916534, + 0.07292576134204865, + 0.15846319496631622, + 0.0861796885728836, + -0.020990241318941116, + 0.014509249478578568, + -0.046359531581401825, + 0.04370291158556938, + 0.008984348736703396, + -0.03760143369436264, + -0.05599344149231911, + -0.008203418925404549, + 0.040987901389598846, + -0.051789555698633194, + 0.03552868589758873, + -0.062124110758304596, + -0.024683240801095963, + 0.04787760227918625, + 0.051088906824588776, + 0.003981285262852907, + 0.03783498331904411, + 0.08851517736911774, + 0.023106781765818596, + 0.0107870576903224, + -0.01766216568648815, + 0.002844557398930192, + 0.0758451297879219, + -0.09184325486421585, + -0.01633385382592678, + 0.045483723282814026, + 0.009232494980096817, + -0.026288891211152077, + -0.12366434931755066, + 0.010101006366312504, + -0.03158754110336304, + 0.019837092608213425, + 0.05266536399722099, + 0.048432283103466034, + -0.042389195412397385, + 0.005809538532048464, + 0.045658886432647705, + -0.05362875387072563, + -0.006316778250038624, + -0.08238451182842255, + 0.026011552661657333, + -0.024508077651262283, + -0.06025571748614311, + 0.009787174873054028, + -0.015822963789105415, + -0.027617203071713448, + -0.03293044865131378, + -0.0396449901163578, + -0.06089797616004944, + -0.025369292125105858, + -0.046622276306152344, + -0.019180234521627426, + -0.045133400708436966, + 0.006506537087261677, + -0.0019723966252058744, + 0.03313480317592621, + 0.033163998275995255, + -0.02885793335735798, + -0.02118000015616417, + 0.03982015326619148, + -0.014020255766808987, + -0.015954336151480675, + 0.032726094126701355, + -0.017224259674549103, + 0.009962337091565132, + -0.008838380686938763, + -0.0353243313729763, + -0.003016069997102022, + 0.01932620257139206, + 0.03398142009973526, + -0.03225899487733841, + -0.07683771848678589, + 0.022274762392044067, + 0.016348449513316154, + -0.01862555555999279, + -0.01442896667867899, + 0.05012551695108414, + -0.022931620478630066, + 0.028755756095051765, + 0.0013921726495027542, + 0.06002216786146164, + -0.03853563219308853, + -0.020537739619612694, + 0.00022203147818800062, + 0.024070173501968384, + -0.010728670284152031, + -0.030127858743071556, + -0.08162547647953033, + 0.04487065598368645, + -0.04647630825638771, + -0.017764342948794365, + 0.04431597888469696, + -0.0793483704328537, + 0.003581697354093194, + -0.0581829659640789, + 0.05701521784067154, + 0.07012317329645157, + -0.06936413794755936, + -0.007816602475941181, + -0.04568807780742645, + 0.03754304721951485, + -0.0844864547252655, + -0.02444969117641449, + -0.013122550211846828, + 0.019515961408615112, + 0.06796284019947052, + 0.006692646536976099, + 0.06113152578473091, + 0.012816017493605614, + -0.04898696392774582, + 0.05167277902364731, + 0.02109242044389248, + -0.016085706651210785, + -0.0007330345688387752, + -0.025398485362529755, + -0.06451798975467682, + 0.03205464035272598, + 0.05167277902364731, + 0.022829443216323853, + -0.07263382524251938, + -0.0836106464266777, + -0.003284286940470338, + 0.012451096437871456, + -0.019428381696343422, + -0.032463349401950836, + 0.006991881877183914, + 0.014326789416372776, + 0.038331277668476105, + -0.024945983663201332, + -0.006035789381712675, + -0.013991061598062515, + 0.017151275649666786, + 0.0035178360994905233, + 0.026332681998610497, + -0.032813675701618195, + -0.005466512870043516, + -0.042827099561691284, + -0.07385995984077454, + -0.08010740578174591, + -0.023267347365617752, + -0.011633673682808876, + -0.04364452138543129, + 0.00918140634894371, + 0.11169494688510895, + 0.013363398611545563, + 0.02392420545220375, + 0.005240262020379305, + -0.0018154807621613145, + 0.058679256588220596, + 0.00047713390085846186, + 0.029543984681367874, + -0.0029558581300079823, + 0.017355632036924362, + -0.04907454550266266, + -0.055847473442554474, + 0.02922285534441471, + 0.0022515610326081514, + -0.07029833644628525, + -0.04501662403345108, + 0.004696530289947987, + 0.034185778349637985, + 0.05275294557213783, + -0.04822792857885361, + -0.01026157196611166, + 0.015370462089776993, + 0.013706423342227936, + 0.02193903550505638, + 0.04136741906404495, + 0.05330762639641762, + 0.10445491969585419, + 0.055935055017471313, + -0.04370291158556938, + 0.04889938235282898, + -0.0689554288983345, + 0.02595316432416439, + -0.04174693673849106, + 0.024420497938990593, + -0.060489263385534286, + -0.06626960635185242, + 0.0015399656258523464, + -0.004203887190669775, + -0.03836046904325485, + 0.06621122360229492, + -0.03500320017337799, + 0.014647919684648514, + 0.08226773887872696, + 0.0008356685284525156, + 0.000480326940305531, + 0.0014323139330372214, + -0.03821450099349022, + -0.009619311429560184, + 0.0025781651493161917, + -0.008225314319133759, + -0.08290999382734299, + 0.07169963419437408, + -0.02329654060304165, + 0.11677464097738266, + 0.005988349672406912, + 0.010604597628116608, + -0.09306938946247101, + -0.07742159068584442, + -0.03529513627290726, + -0.013224728405475616, + 0.001999765867367387, + -0.03803934156894684, + -0.056256186217069626, + -0.011305245570838451, + -0.030390601605176926, + -0.06953930109739304, + 0.042914681136608124, + 0.014815783128142357, + -0.012064279988408089, + 0.02207040786743164, + -0.022274762392044067, + -0.031529154628515244, + -0.05476730689406395, + -0.000886301277205348, + -0.011458511464297771, + -0.0032514440827071667, + 0.09412036091089249, + -0.01703450083732605, + 0.06936413794755936, + 0.029339628294110298, + -0.023895012214779854, + 0.00810124073177576, + 0.006856861058622599, + 0.006203652825206518, + 0.09884973615407944, + -0.01804168149828911, + -0.014553040266036987, + -0.018829911947250366, + -0.007265572436153889, + 0.029952695593237877, + 0.003525134641677141, + -0.06878026574850082, + 0.04119225591421127, + -0.03190867230296135, + 0.002665746258571744, + 0.02891632169485092, + 0.03202544525265694, + 0.013312309049069881, + -0.009553625248372555, + -0.06802123039960861, + -0.007185289636254311, + -0.07251705229282379, + -0.056869249790906906, + 0.0724586695432663, + -0.008852977305650711, + 0.03389383852481842, + 0.03430255129933357, + -0.09593036770820618, + 0.019442977383732796, + -0.040316443890333176, + -0.03424416482448578, + 0.024829208850860596, + 0.02661002241075039, + -0.040053702890872955, + -0.019764108583331108, + -0.03897353634238243, + -0.005648973397910595, + 0.013779408298432827, + -0.03287206217646599, + 0.01840660348534584, + 0.0021767523139715195, + 0.07169963419437408, + 0.0340690016746521, + -0.027865348383784294, + -0.002773397834971547, + -0.0810999870300293, + -0.04127983748912811, + -0.020727498456835747, + 0.008072047494351864, + -0.016538208350539207, + 0.020464755594730377, + 0.013677230104804039, + 0.06352540850639343, + -0.08466161787509918, + -0.004371750634163618, + 0.011859924532473087, + -0.013217429630458355, + 0.026945749297738075, + 0.02771938033401966, + -0.003537906799465418, + 0.027018733322620392, + -0.0008384054526686668, + 0.06200733408331871, + -0.037397079169750214, + -0.013261220417916775, + -0.02700413577258587, + 0.04157177358865738, + -0.03897353634238243, + 0.0020417317282408476, + -0.03544110432267189, + -0.011998594738543034, + 0.01977870613336563, + 0.009940441697835922, + 0.002713185967877507, + 0.01972031779587269, + -0.018246037885546684, + -0.043265003710985184, + 0.017939504235982895, + 0.0016667755553498864, + -0.007010127883404493, + 0.04244758188724518, + 0.008159628137946129, + -0.03906111791729927, + 0.06953930109739304, + -0.03468206897377968, + 0.047556474804878235, + -0.011889118701219559, + -0.03328077495098114, + -0.042827099561691284, + -0.017618374899029732, + -0.06708703190088272, + 0.07917320728302002, + -0.034886423498392105, + -0.03474045544862747, + 0.10585621744394302, + 0.005856978241354227, + 0.028405431658029556, + 0.04116306081414223, + -0.02855139970779419, + 0.037718210369348526, + -0.03062414936721325, + -0.027208492159843445, + 0.07806384563446045, + 0.019399188458919525, + -0.07304254174232483, + -0.018173053860664368, + -0.05447537079453468, + 0.006123370490968227, + -0.03027382679283619, + -0.008488057181239128, + -0.025500662624835968, + 0.0007125078118406236, + -0.014604128897190094, + -0.029602371156215668, + 0.019939269870519638, + 0.011772343888878822, + 0.11175333708524704, + -0.050242289900779724, + 0.038594018667936325, + -0.011655569076538086, + 0.005794941447675228, + -0.03719272464513779, + -0.03310561180114746, + 0.02250831201672554, + -0.0033116559498012066, + -0.044461946934461594, + -0.016041915863752365, + -0.03389383852481842, + 0.02172008343040943, + -0.10754944384098053, + -0.002862803405150771, + -0.05114729329943657, + -0.029295839369297028, + 0.05459214746952057, + 0.012035086750984192, + 0.03564545884728432, + 0.12529918551445007, + -0.06866349279880524, + -0.015822963789105415, + 0.11274591833353043, + -0.006590468809008598, + 0.004484876058995724, + -0.0014012957690283656, + 0.05923393741250038, + 0.11140301078557968, + 0.019209429621696472, + 0.05208149179816246, + -0.03167512267827988, + 0.07485254853963852, + -0.03593739494681358, + -0.031762704253196716, + -0.04580485448241234, + -0.008998946286737919, + 0.02515033818781376, + 0.03914869949221611, + 0.056781671941280365, + -0.10206104069948196, + 0.0037477361038327217, + -0.05716118961572647, + 0.012808718718588352, + -0.03377706557512283, + 0.07531964778900146, + -0.056110214442014694, + -0.09441229701042175, + 0.03018624521791935, + -0.021866051480174065, + 0.025675823912024498, + -0.06691186875104904, + -0.04078354313969612, + 0.026858167722821236, + -0.00734950415790081, + 0.023909607902169228, + -0.026026148349046707, + 0.015093122608959675, + 0.017749745398759842, + 0.020990241318941116, + 0.06405089050531387, + -0.009903949685394764, + -0.08098321408033371, + 0.07771352678537369, + 0.026770586147904396, + -0.08267644792795181, + 0.016698773950338364, + -0.038243696093559265, + -0.06907220184803009, + -0.05234423279762268, + -0.0014934382634237409, + 0.000506327545735985, + -0.06802123039960861, + 0.01607111096382141, + -0.09044196456670761, + 0.010144797153770924, + 0.02789454348385334, + -0.03459448739886284, + 0.015633204951882362, + -0.02118000015616417, + 0.05710279941558838, + -0.044374365359544754, + 0.02026040107011795, + -0.04084193333983421, + 0.03036140650510788, + 0.05301568657159805, + 0.010290765203535557, + 0.0032988835591822863, + -0.02859519049525261, + 0.07105737179517746, + 0.017443211749196053, + 0.056518927216529846, + -0.0058715748600661755, + 0.0038827569223940372, + -0.028784949332475662, + -0.024259932339191437, + -0.05155600607395172, + -0.039790958166122437, + -0.05155600607395172, + -0.002658447716385126, + -0.01416622381657362, + 0.011349035426974297, + -0.01522449404001236, + 0.054884083569049835, + -0.04913293197751045, + -0.05943829193711281, + -0.06673670560121536, + 0.025164935737848282, + 0.03552868589758873, + 0.015063929371535778, + -0.036871593445539474, + -0.039703380316495895, + -0.03982015326619148, + 0.06545218825340271 + ] + }, + { + "id": "2b1d01a2-1c95-43c7-b2cb-44087f6a60b4", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "allenchristine", + "reviewDate": "2022-10-07T15:15:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "617bb0a7-0e71-453e-8fb1-a9026796c627", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "rsloan", + "reviewDate": "2022-04-15T10:26:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ee922cf7-0f8b-4d5f-87f3-d0ac79b5be46", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "kylehanson", + "reviewDate": "2022-02-21T13:26:17", + "stars": 4, + "verifiedUser": false + }, + { + "id": "598b6ba6-6b7a-4bef-87ed-f7c9b3645ff9", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "michael02", + "reviewDate": "2021-02-20T03:15:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "40992913-6008-412b-a5fb-10fc1d2beac1", + "productId": "6f6642f1-e1bb-4a37-9973-28bd1d04f252", + "category": "Other", + "docType": "customerRating", + "userName": "brenda76", + "reviewDate": "2021-03-17T12:06:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2aa6a7b3-89f5-4a1a-ace8-c20a9bfc4bf7", + "productId": "2aa6a7b3-89f5-4a1a-ace8-c20a9bfc4bf7", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Super (Red)", + "description": "This Luxe Stand Super (Red) is used to hold the same number of hands as the original Luxe Stand. It has no buttons.\n\nAchievements Edit\n\nTrivia Edit\n\nReferences Edit", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-03-28T12:31:47", + "price": 242.09, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-01-10T21:13:16", + "newPrice": 240.39 + }, + { + "priceDate": "2021-11-19T21:13:16", + "newPrice": 221.67 + }, + { + "priceDate": "2022-09-28T21:13:16", + "newPrice": 260.97 + }, + { + "priceDate": "2023-12-18T21:13:16", + "newPrice": 242.09 + } + ], + "descriptionVector": [ + -0.027619976550340652, + 0.018199436366558075, + -0.04815267398953438, + -0.018359847366809845, + -0.019438980147242546, + -0.11911297589540482, + -0.01717863418161869, + 0.05389832705259323, + 0.019803551957011223, + 0.015020367689430714, + -0.039636269211769104, + 0.06153975799679756, + -0.016609901562333107, + -0.0695895105600357, + 0.0893055647611618, + 0.022413888946175575, + -0.017134886234998703, + 0.0235805194824934, + 0.014087063260376453, + -0.07542265951633453, + 0.08382239937782288, + -0.05112758278846741, + -0.06859787553548813, + 0.019424397498369217, + 0.006678959354758263, + -0.029778243973851204, + -0.004054041113704443, + -0.002548358403146267, + -0.0450027696788311, + 0.05130257457494736, + -0.06177308410406113, + -0.020430617034435272, + -0.01827234961092472, + 0.035698894411325455, + -0.009588244371116161, + -0.05261503532528877, + 0.14069563150405884, + 0.06317304074764252, + 0.008552859537303448, + -0.05421915277838707, + 0.04526526480913162, + -0.00010578285582596436, + -0.06953117996454239, + -0.00812995620071888, + 0.009952816180884838, + -0.043048664927482605, + -0.046636052429676056, + -0.0001683867012616247, + -0.028101211413741112, + 0.03152818977832794, + 0.06451466679573059, + 0.016289077699184418, + 0.010543422773480415, + 0.023070117458701134, + -0.011454853229224682, + -0.027867885306477547, + -0.0242075826972723, + 0.0881972685456276, + 0.03776966407895088, + -0.004651939030736685, + -0.04791934788227081, + -0.0631147101521492, + 0.020984765142202377, + 0.0450027696788311, + 0.019963964819908142, + -0.03488225117325783, + 0.022749295458197594, + 0.009391375817358494, + 0.06270638853311539, + 0.013664159923791885, + -0.030653215944767, + 0.10196350514888763, + -0.01827234961092472, + 0.06118977069854736, + 0.05483163148164749, + 0.0033777598291635513, + 0.06223973631858826, + -0.014291223138570786, + 0.043369486927986145, + 0.02827620692551136, + 0.03371562063694, + 0.0124173229560256, + -0.05246920511126518, + -0.041502878069877625, + 0.012074626050889492, + -0.036807190626859665, + -0.013365210965275764, + -0.10033022612333298, + -0.01825776696205139, + 0.007743509951978922, + -0.009748656302690506, + 0.02872827649116516, + 0.008764311671257019, + -0.03739050775766373, + -0.07723093777894974, + -0.014787041582167149, + 0.007787258364260197, + 0.04144454747438431, + -0.03581555560231209, + 0.007984127849340439, + -0.026628341525793076, + 0.03295731171965599, + -0.04062790796160698, + -0.03138235956430435, + 0.05074842646718025, + 0.04310699552297592, + 0.02657000906765461, + -0.01767445169389248, + -0.012388157658278942, + -0.05401499196887016, + 0.09747197479009628, + -0.00628522178158164, + -0.046344395726919174, + -0.007779967039823532, + -0.05077759176492691, + 0.03753633797168732, + -0.02732831984758377, + 0.00026089686434715986, + -0.00660239951685071, + -0.06486465781927109, + 0.04809434339404106, + 0.023376358672976494, + 0.06760624051094055, + -0.007677887100726366, + 0.03123653121292591, + -0.010062187910079956, + 0.019788969308137894, + -0.007707052864134312, + 0.008348699659109116, + -0.0324614942073822, + -0.04870682209730148, + 0.07145611941814423, + 0.020095210522413254, + 0.0602564662694931, + -0.007316960487514734, + 0.10423843562602997, + -0.009179923683404922, + -0.0029749078676104546, + -0.07612264156341553, + 0.05416082218289375, + -0.07629763334989548, + -0.04237785190343857, + 0.02250138483941555, + 0.019322317093610764, + -0.0500192828476429, + -0.019453562796115875, + -0.07956419885158539, + -0.006697188131511211, + -0.02343468926846981, + 0.08743895590305328, + 0.05488996580243111, + -0.0011274389689788222, + -0.02998240292072296, + 0.022078482434153557, + -0.026613758876919746, + 0.05013594403862953, + -0.12949597835540771, + -0.016303660348057747, + -0.037594668567180634, + 0.040569573640823364, + 0.06293971836566925, + 0.026015859097242355, + -0.07081446796655655, + -0.022880541160702705, + -0.010528840124607086, + 0.0036457201931625605, + 0.047861017286777496, + 0.022938871756196022, + -0.015501602552831173, + 0.005902421195060015, + 0.0017025513807311654, + -0.01593908853828907, + -0.026803335174918175, + -0.01798069290816784, + 0.11409646272659302, + -0.01132360752671957, + 0.0900055393576622, + -0.021947236731648445, + 0.06078144907951355, + 0.021495167165994644, + 0.010251765139400959, + 0.018709836527705193, + -0.09764697402715683, + -0.033686455339193344, + 0.07513100653886795, + -0.03762383386492729, + 0.03208233788609505, + 0.034298937767744064, + -0.0002649982925504446, + 0.005869609769433737, + -0.060548122972249985, + -0.0248346459120512, + 0.08790560811758041, + -0.028363704681396484, + -0.034298937767744064, + -0.0503692701458931, + 0.015895340591669083, + 0.03858630359172821, + -0.025067972019314766, + 0.040686238557100296, + -0.05626075714826584, + 0.06608961522579193, + 0.028815772384405136, + 0.02435341104865074, + -0.03001157008111477, + -0.005548786371946335, + -0.02235555648803711, + -0.007382583804428577, + 0.05783570557832718, + 0.07524766772985458, + -0.007831007242202759, + -0.001875723130069673, + 0.014706836082041264, + 0.050690095871686935, + 0.034473929554224014, + 0.06375635415315628, + 0.018826499581336975, + 0.03666136413812637, + -0.034269772469997406, + -0.07402270287275314, + -0.00472120800986886, + -0.029267841950058937, + -0.037915490567684174, + -0.030886542052030563, + -0.04791934788227081, + 0.05206088721752167, + -0.04605273902416229, + 0.03269482031464577, + 0.034911416471004486, + -0.03173235058784485, + 0.019497312605381012, + -0.07104779779911041, + 0.028363704681396484, + 0.06859787553548813, + -0.00906326062977314, + -0.00484880805015564, + -0.01892857998609543, + -0.036136381328105927, + 0.048211004585027695, + -0.03995709493756294, + -0.02467423491179943, + 0.00044591716141439974, + -0.027226239442825317, + 0.02970532886683941, + -0.006529484875500202, + 0.08271410316228867, + 0.017761949449777603, + -0.034269772469997406, + 0.020270204171538353, + -0.05098175257444382, + 0.09123050421476364, + -0.03079904429614544, + 0.036136381328105927, + 0.046169400215148926, + 0.047248534858226776, + 0.02845120057463646, + 0.06795622408390045, + 0.006613336503505707, + 0.04045291244983673, + -0.08370573818683624, + 0.014334972016513348, + -0.03266565501689911, + -0.009799696505069733, + 0.08323908597230911, + -0.025067972019314766, + 0.10645503550767899, + 0.019453562796115875, + -0.09029719978570938, + -0.010229891166090965, + 0.008939306251704693, + 0.04999011754989624, + -0.05019427835941315, + 0.050865091383457184, + 0.0304782222956419, + 0.00921638123691082, + -0.025505458936095238, + -0.0440986342728138, + 0.03526140749454498, + 0.004498818889260292, + -0.06078144907951355, + 0.0284220352768898, + 0.05293585732579231, + 0.016172414645552635, + -0.05322751775383949, + 0.02264721505343914, + -0.04669438675045967, + 0.0019340546568855643, + -0.011155904270708561, + 0.005847735330462456, + -0.02827620692551136, + 0.027430400252342224, + 0.010295514017343521, + 0.10674668848514557, + 0.007411749567836523, + 0.035844720900058746, + -0.0009861673461273313, + -0.014706836082041264, + 0.022588882595300674, + 0.02735748514533043, + -0.10091353952884674, + 0.008567443117499352, + 0.0602564662694931, + -0.009741364978253841, + -0.09998023509979248, + -0.051156748086214066, + 0.03421143814921379, + 0.014561006799340248, + 0.03739050775766373, + -0.09233880043029785, + 0.014663087204098701, + 0.06964784115552902, + -0.01888483203947544, + -0.02966158092021942, + -0.023201363161206245, + -0.010674669407308102, + -0.04675271734595299, + -0.02174307592213154, + 0.03800299018621445, + 0.015107864513993263, + 0.004852453712373972, + -0.043194495141506195, + -0.03377395123243332, + -0.016959890723228455, + -0.004845162387937307, + 0.11782968044281006, + -0.0412403866648674, + -0.024338828399777412, + 0.001639662659727037, + -0.05401499196887016, + -0.06988116353750229, + 0.014262057840824127, + -0.020751439034938812, + -0.04153204709291458, + -0.009449707344174385, + -0.029953237622976303, + -0.015180779621005058, + 0.08860558271408081, + 0.03033239208161831, + -0.039169616997241974, + -0.06912285834550858, + 0.025067972019314766, + 0.0982302874326706, + -0.04896931350231171, + 0.00710550881922245, + 0.04237785190343857, + -0.04619856923818588, + 0.015034950338304043, + -0.04748186096549034, + 0.08720562607049942, + 0.06953117996454239, + 0.0016104968963190913, + 0.013941233977675438, + 0.07075613737106323, + -0.0012058219872415066, + 0.07553932815790176, + 0.05267336592078209, + 0.0049691167660057545, + -0.03470725566148758, + 0.0016004712088033557, + -0.029953237622976303, + 0.02531588263809681, + -0.011403813026845455, + 0.0971803218126297, + 0.060373127460479736, + 0.06953117996454239, + -0.03266565501689911, + -0.0007719812565483153, + 0.010368428193032742, + -0.058360692113637924, + 0.04497360438108444, + -0.048648491501808167, + -0.056202422827482224, + -0.051798392087221146, + 0.02264721505343914, + -0.001714400015771389, + -0.014349554665386677, + -0.008538276888430119, + 0.05701906606554985, + 0.01856400817632675, + 0.01920565403997898, + -0.05139007419347763, + 0.07291440665721893, + 0.021947236731648445, + 0.03666136413812637, + 0.06824788451194763, + -0.036486368626356125, + -0.00913617480546236, + -0.02263263240456581, + -0.020284786820411682, + -0.021509749814867973, + -0.05716489255428314, + -0.08883891254663467, + -0.015880757942795753, + 0.050398439168930054, + 0.05561910942196846, + 0.02296803705394268, + -0.020591028034687042, + -0.03846964240074158, + -0.0006730910972692072, + 0.00605918699875474, + 0.05906067043542862, + 0.06299804896116257, + 0.007991419173777103, + -0.01118506956845522, + -0.023361776024103165, + 0.01763070374727249, + -0.002603044267743826, + 0.08994720876216888, + 0.024134667590260506, + -0.09758864343166351, + 0.046927712857723236, + -0.044594451785087585, + -0.07664762437343597, + -0.0024389869067817926, + 0.027969965711236, + -0.00889555737376213, + 0.02893243543803692, + 0.0440986342728138, + 0.010492382571101189, + -0.0724477544426918, + 0.05512329190969467, + 0.068131223320961, + -0.03564056009054184, + -0.008538276888430119, + -0.06159808859229088, + -0.059439823031425476, + -0.07093113660812378, + 0.00014275273133534938, + -0.021305589005351067, + -0.07186444103717804, + 0.03176151588559151, + -0.04984428733587265, + 0.016930725425481796, + 0.020255621522665024, + 0.0017180456779897213, + -0.015137030743062496, + -0.005957107059657574, + 0.0017736429581418633, + 0.005851380992680788, + 0.04138621687889099, + 0.031061537563800812, + 0.012774604372680187, + 0.05080675706267357, + 0.02767830900847912, + 0.030215729027986526, + 0.0014054251369088888, + -0.02029937133193016, + 0.02939908765256405, + 0.007656012661755085, + 0.05521078780293465, + -0.042436182498931885, + -0.045702748000621796, + -0.020182708278298378, + 0.02732831984758377, + 0.021640995517373085, + -0.02388675883412361, + 0.03030322678387165, + 0.03558222949504852, + 0.02811579406261444, + -0.0063216788694262505, + 0.0028837646823376417, + 0.04042374715209007, + 0.07227276265621185, + -0.03356979414820671, + -0.003035062225535512, + 0.03636970743536949, + -0.07233109325170517, + -0.0034014570992439985, + -0.02500964142382145, + 0.04094872996211052, + -0.03062405064702034, + -0.0162307471036911, + -0.03456142917275429, + -0.005155048333108425, + -0.07373104989528656, + 0.007152903359383345, + -0.005118591245263815, + -0.026161689311265945, + -0.006190433166921139, + 0.007335189264267683, + -0.04019042104482651, + 0.06550630182027817, + -0.06964784115552902, + -0.053052522242069244, + 0.05561910942196846, + -0.044623617082834244, + 0.017076553776860237, + -0.0037186346016824245, + -0.01592450588941574, + 0.05567744001746178, + 0.09222213923931122, + -0.017543205991387367, + -0.041036225855350494, + -0.015662014484405518, + -0.06153975799679756, + -0.02139308676123619, + -0.014896413311362267, + -0.034007277339696884, + -0.00671541690826416, + 0.04651939123868942, + 0.04920263960957527, + -0.09298045188188553, + 0.0018055429682135582, + 0.026686672121286392, + 0.06188974902033806, + -0.01669739931821823, + 0.004950887989252806, + 0.0738477110862732, + -0.023697182536125183, + -0.011272567324340343, + -0.0019468145910650492, + 0.06363969296216965 + ] + }, + { + "id": "54ccd6e6-9c1f-4300-8437-471b32186a3d", + "productId": "2aa6a7b3-89f5-4a1a-ace8-c20a9bfc4bf7", + "category": "Accessory", + "docType": "customerRating", + "userName": "brittanyhopkins", + "reviewDate": "2022-09-29T22:13:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6ccde194-a2e4-4f9a-965f-6228706d6550", + "productId": "2aa6a7b3-89f5-4a1a-ace8-c20a9bfc4bf7", + "category": "Accessory", + "docType": "customerRating", + "userName": "lunajeffrey", + "reviewDate": "2021-01-10T21:13:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Micro (Red)", + "description": "This Awesome Mouse Micro (Red) is in our current top 5 lists. Our personal favorite is the Mouse Box Keyboard, which works similarly with Micro USB adapters.\n\nClick here to view a full list of our top 10 Mouse Accessories.\n\nIf you wish to keep up-to-date with the latest updates for your favorite mouse, check out our Mouse Pro. And don't forget to sign up for free updates from our website for this service. You can also", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-11-14T08:44:00", + "price": 568.87, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-03-03T21:09:03", + "newPrice": 559.88 + }, + { + "priceDate": "2021-11-30T21:09:03", + "newPrice": 621.27 + }, + { + "priceDate": "2022-08-29T21:09:03", + "newPrice": 602.8 + }, + { + "priceDate": "2024-07-03T21:09:03", + "newPrice": 568.87 + } + ], + "descriptionVector": [ + -0.04195660352706909, + 0.029342200607061386, + -0.04003702104091644, + 0.03156093880534172, + 0.02162647247314453, + 0.01366144884377718, + 0.0031193227041512728, + 0.03053882345557213, + 0.0836140513420105, + 0.04577083885669708, + -0.041308432817459106, + -0.04327787458896637, + 0.05728834122419357, + -0.10310903936624527, + -0.013611589558422565, + -0.03649701178073883, + -0.046169713139534, + -0.02540331520140171, + -0.010077811777591705, + 0.007242063991725445, + 0.06137680262327194, + -0.10939130932092667, + -0.004446826409548521, + 0.020317666232585907, + 0.03841659426689148, + 0.009473267942667007, + -0.04542182385921478, + 0.0035805213265120983, + -0.034028973430395126, + 0.05963172763586044, + 0.0216887965798378, + 0.023695634678006172, + 0.014745889231562614, + 0.0220378115773201, + -0.00787153746932745, + -0.05349903181195259, + 0.06566470116376877, + -0.028743889182806015, + 0.06626301258802414, + 0.06416892260313034, + 0.049809444695711136, + -0.006643752101808786, + 0.015693215653300285, + -0.06616329401731491, + -0.011673309840261936, + 0.11507527530193329, + -0.036272644996643066, + -0.010557707399129868, + 0.011941303499042988, + 0.030987557023763657, + 0.008862490765750408, + 0.002740703523159027, + -0.05998074263334274, + 0.011991162784397602, + 0.020766399800777435, + -0.07603543996810913, + 0.019594706594944, + 0.03869082033634186, + 0.06920471042394638, + -0.04003702104091644, + 0.021152809262275696, + -0.02645036019384861, + -0.012471058405935764, + -0.020529568195343018, + -0.011673309840261936, + -0.03968800604343414, + -0.0363972932100296, + 0.02585204876959324, + 0.07738164067268372, + 0.020342595875263214, + -0.0969264879822731, + 0.04457421600818634, + -0.02329675853252411, + -0.013150391168892384, + -0.04103420674800873, + -0.06711062043905258, + 0.002904304303228855, + 0.05275114253163338, + 0.05688946321606636, + -0.053648609668016434, + 0.003920187707990408, + -0.011243272572755814, + 0.045222386717796326, + -0.011953768320381641, + -0.025627681985497475, + -0.008999603800475597, + -0.023246899247169495, + -0.11078736931085587, + -0.0004304260073695332, + 0.01448412798345089, + -0.04811422899365425, + 0.07658389210700989, + 0.03901490569114685, + 0.03166065737605095, + 0.014920396730303764, + -0.06446807831525803, + -0.036372363567352295, + 0.05863454192876816, + 0.00837636273354292, + -0.034652214497327805, + 0.010906722396612167, + 0.002190693048760295, + -0.015531172975897789, + -0.028220364823937416, + -0.01508243940770626, + 0.006961605045944452, + 0.026500219479203224, + 0.017936883494257927, + -0.09577972441911697, + -0.10939130932092667, + 0.028669100254774094, + -0.005384804680943489, + -0.03340573236346245, + -0.005250807851552963, + -0.034203480929136276, + 0.016328921541571617, + -0.0902453362941742, + -0.003786190878599882, + -0.06835710257291794, + 0.03026459738612175, + 0.09418422728776932, + 0.08755293488502502, + 0.014022928662598133, + 0.10131410509347916, + 0.000704652164131403, + -0.008544637821614742, + -0.012252924032509327, + 0.01913350820541382, + 0.025415780022740364, + -0.05359875038266182, + -0.07668361067771912, + 0.07194697111845016, + -0.023558521643280983, + 0.013511870987713337, + -0.018285900354385376, + 0.05609171465039253, + 0.018535196781158447, + 0.028768818825483322, + -0.024094508960843086, + 0.0241443682461977, + -0.010295946151018143, + -0.02844473160803318, + -0.04614478349685669, + 0.00048457010416314006, + -0.13531814515590668, + 0.004683658480644226, + -0.03619785234332085, + 0.02060435712337494, + -0.006706076208502054, + 0.013511870987713337, + 0.007185972295701504, + -0.06780865043401718, + 0.010906722396612167, + -0.003368619130924344, + 0.0356743298470974, + 0.03736954927444458, + -0.057088904082775116, + -0.028818678110837936, + -0.0752376914024353, + 0.08899885416030884, + -0.009329922497272491, + -0.02033013105392456, + -0.014696029946208, + -0.038815468549728394, + -0.030040230602025986, + 0.008058509789407253, + 0.05499481037259102, + -0.007360479794442654, + -0.04961000755429268, + 0.020591892302036285, + 0.02337154932320118, + -0.00543154776096344, + 0.011355455964803696, + 0.0021049974020570517, + 0.030912768095731735, + 0.0007264656014740467, + 0.04203139245510101, + -0.07374191284179688, + -0.04118378460407257, + -0.04881225898861885, + 0.05040775611996651, + 0.06317173689603806, + -0.04597027599811554, + -0.012876165099442005, + 0.02981586381793022, + -0.034727003425359726, + -0.0007720401627011597, + 0.017961813136935234, + 0.005204064771533012, + 0.011972465552389622, + -0.03422841057181358, + -0.028768818825483322, + -0.017899489030241966, + -0.054845232516527176, + 0.04569604992866516, + 0.05369846895337105, + 0.015618426725268364, + 0.08166953921318054, + -0.006568963173776865, + 0.009946931153535843, + -0.01781223528087139, + 0.053199876099824905, + 0.08635631203651428, + 0.03367995843291283, + 0.05798637121915817, + 0.01841054856777191, + 0.07857826352119446, + 0.034477706998586655, + 0.02393246628344059, + -0.010115206241607666, + 0.0008740958874113858, + -0.04103420674800873, + -0.027646983042359352, + -0.0037487964145839214, + 0.09463296085596085, + 0.03894011676311493, + 0.009167879819869995, + -0.0017746795201674104, + -0.00019963197701144964, + -0.036796167492866516, + 0.02966628596186638, + -0.013885815627872944, + -0.007185972295701504, + 0.02253640443086624, + -0.06327145546674728, + -0.031087275594472885, + 0.03193488344550133, + 0.029591497033834457, + 0.03537517413496971, + 0.04153279960155487, + -0.047391269356012344, + -0.09373549371957779, + 0.019507452845573425, + -0.045745909214019775, + -0.08201855421066284, + 0.04883718863129616, + -0.05290072038769722, + -0.024817468598484993, + 0.04051068425178528, + 0.07827910780906677, + -0.034477706998586655, + 0.040111809968948364, + -0.030139949172735214, + 0.03938885033130646, + 0.07319346070289612, + 0.014920396730303764, + -0.012626868672668934, + 0.0188966765999794, + -0.12255416810512543, + 0.06421878188848495, + -0.08610701560974121, + -0.013250109739601612, + -0.0006563509814441204, + 0.04250505566596985, + -0.03764377534389496, + 0.05639087036252022, + 0.06446807831525803, + -0.01292602438479662, + 0.014783283695578575, + 0.00823924969881773, + -0.028320083394646645, + -0.027123460546135902, + -0.027098530903458595, + 0.08894899487495422, + -0.011448942124843597, + 0.005070067942142487, + 0.11846570670604706, + -0.017126670107245445, + -0.020280271768569946, + 0.050258178263902664, + 0.030115019530057907, + -0.013374757952988148, + 0.049111414700746536, + -0.0057151224464178085, + -0.02151428908109665, + 0.011293131858110428, + -0.0027188900858163834, + 0.0496847964823246, + 0.002648775465786457, + 0.03717011213302612, + 0.021352246403694153, + 0.051454801112413406, + 0.1189642995595932, + -0.006135810632258654, + -0.04188181459903717, + 0.015069974586367607, + 0.009049463085830212, + 0.03153600916266441, + -0.04941057041287422, + 0.011068765074014664, + -0.02400725521147251, + -0.04926099255681038, + 0.07842868566513062, + -0.035948555916547775, + 0.02575233019888401, + -0.047042254358530045, + 0.019831538200378418, + 0.07224612683057785, + 0.0150450449436903, + 0.0033062950242310762, + -0.006625054869800806, + 0.004630682989954948, + -0.07648417353630066, + -0.03018980845808983, + 0.028843607753515244, + 0.017749911174178123, + -0.03866589069366455, + 0.07119908183813095, + -0.0015401850687339902, + -0.09602902084589005, + 0.1101890578866005, + -0.02662486769258976, + -0.10500369220972061, + -0.009068161249160767, + 0.09558028727769852, + -0.07224612683057785, + 0.02739768661558628, + -0.012396269477903843, + 0.044275060296058655, + -0.016316456720232964, + 0.009280063211917877, + -0.022374361753463745, + -0.07643431425094604, + 0.09333661943674088, + -0.011785493232309818, + -0.033181365579366684, + 0.018909141421318054, + 0.06357061117887497, + -0.030887838453054428, + -0.011330526322126389, + -0.08176925778388977, + -0.04380139708518982, + -0.03200967237353325, + -0.038790538907051086, + -0.0023963628336787224, + -0.023209504783153534, + -0.02557782270014286, + 0.1094910278916359, + 0.07917657494544983, + -0.017151599749922752, + -0.06282272189855576, + 0.01487053744494915, + 0.030289527028799057, + -0.03579897806048393, + -0.013561730273067951, + -0.055543262511491776, + -0.02449338324368, + -0.06451793760061264, + 0.06955372542142868, + -0.03734461963176727, + 0.00157212617341429, + -0.06865625828504562, + 0.04006195068359375, + -0.004496685694903135, + 0.07254528999328613, + -0.02046724408864975, + -0.007310620509088039, + -0.009442105889320374, + 0.0011771470308303833, + 0.05713876336812973, + -0.033879395574331284, + -0.05083156004548073, + -0.02077886462211609, + 0.059532009065151215, + -0.021427035331726074, + -0.01205348689109087, + -0.03190995380282402, + -0.023109786212444305, + 0.020143158733844757, + 0.03520066663622856, + -0.022623658180236816, + -0.08496025204658508, + -0.014546452090144157, + 0.0346272848546505, + -0.07498839497566223, + 0.02092844247817993, + 0.04494816064834595, + 0.02389507181942463, + -0.014471663162112236, + 0.02474267967045307, + 0.017188994213938713, + -0.008176925592124462, + -0.01626659743487835, + 0.06257342547178268, + 0.019145973026752472, + 0.028220364823937416, + -0.027372756972908974, + -0.021015696227550507, + 0.04248012602329254, + 0.03457742556929588, + -0.05733820050954819, + 0.00023332596174441278, + -0.006157624069601297, + 0.05200325325131416, + 0.014633705839514732, + -0.04985930398106575, + 0.02784642018377781, + 0.06062891334295273, + -0.045671120285987854, + -0.034203480929136276, + 0.012938489206135273, + 0.008793934248387814, + -0.005278853699564934, + -0.017064346000552177, + -0.06875597685575485, + -0.02774670161306858, + -0.02019301801919937, + -0.00262384582310915, + 0.00029818201437592506, + -0.043402522802352905, + -0.02592683769762516, + -0.00580860860645771, + 0.021264992654323578, + -0.03597348555922508, + 0.0419815331697464, + 0.04260477423667908, + 0.06491681188344955, + 0.028220364823937416, + 0.012234226800501347, + -0.07947573065757751, + 0.04240533709526062, + -0.014259761199355125, + 0.03938885033130646, + 0.010277248919010162, + -0.061875395476818085, + 0.017126670107245445, + -0.04784000292420387, + -0.0002979872515425086, + 0.0037020533345639706, + -0.092339426279068, + -0.007865305058658123, + 0.0007778830477036536, + -0.0738416314125061, + -0.03908969461917877, + -0.034652214497327805, + -0.01804906688630581, + 0.01072598248720169, + -0.04681788757443428, + 0.03200967237353325, + 0.03156093880534172, + 0.019258156418800354, + -0.022611193358898163, + -0.042804211378097534, + 0.06735991686582565, + -0.08002418279647827, + 0.0440756231546402, + -0.002377665601670742, + 0.023458803072571754, + 0.04215604066848755, + -0.07159795612096786, + -0.010314643383026123, + -0.06481709331274033, + 0.0057307034730911255, + 0.03572418913245201, + 0.03096262738108635, + -0.017101740464568138, + 0.06441821902990341, + 0.06322159618139267, + 0.007846607826650143, + 0.02949177846312523, + 0.033704888075590134, + 0.07319346070289612, + -0.014384409412741661, + -0.017999207600951195, + 0.03886532783508301, + -0.10839412361383438, + 0.04068519175052643, + 0.052950579673051834, + -0.03333094343543053, + -0.023521127179265022, + 0.0033094112295657396, + -0.007996185682713985, + -0.017936883494257927, + 0.026774445548653603, + 0.0077094947919249535, + -0.020753934979438782, + 0.01275151688605547, + 0.018285900354385376, + 0.010027952492237091, + 0.10241100937128067, + -0.006593892816454172, + 0.07643431425094604, + -0.011660845018923283, + 0.0370953232049942, + 0.040710121393203735, + -0.09986818581819534, + -0.013636519201099873, + 0.04307843744754791, + 0.08899885416030884, + 0.024618031457066536, + 0.0223868265748024, + 0.029367130249738693, + 0.006394455675035715, + -0.013811026699841022, + -0.07224612683057785, + -0.0037269829772412777, + -0.004247389268130064, + 0.030563753098249435, + -0.015069974586367607, + -0.003558707656338811, + 0.008158228360116482, + 0.0014046300202608109, + -0.04751591756939888, + 0.04472379386425018, + 0.008295341394841671, + 0.03799279034137726, + -0.07439008355140686, + 0.047216761857271194, + -0.01711420528590679, + -0.05035789683461189, + -0.03166065737605095, + -0.04484844207763672 + ] + }, + { + "id": "c7eb8162-c962-43bf-9e09-1637fda07e28", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaronjames", + "reviewDate": "2021-09-18T21:30:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "563d8360-a200-4324-9c14-01609ea2e3ab", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ymcintyre", + "reviewDate": "2021-11-10T13:09:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4257e03b-daee-4184-b2d1-ff0abf3237e2", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fwiggins", + "reviewDate": "2021-05-18T13:10:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0bae64cf-780d-4a18-bcef-251c6cbedb86", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholastaylor", + "reviewDate": "2021-06-09T23:57:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "baf5039b-42e9-4e59-96a1-e369065898c0", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bentleypamela", + "reviewDate": "2021-03-31T16:25:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f413ca18-c6b0-479b-b74f-1510bb844ab1", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jcole", + "reviewDate": "2021-03-03T21:09:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fec98f84-869d-4f11-b59a-eb1e21150703", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pattersondiana", + "reviewDate": "2022-08-31T12:25:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7ef3f4fb-1b67-4037-83e6-d689b26cea68", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher74", + "reviewDate": "2022-01-11T13:54:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6be79c2e-33ad-4d3c-bd93-548b5dfccbc7", + "productId": "6c30d713-c17e-4ff1-901d-e5e5939a7358", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brendathomas", + "reviewDate": "2022-05-13T21:45:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard + (Silver)", + "description": "This Awesome Keyboard + (Silver) is an elegant, inexpensive, high performance and low cost keyboard with a sleek all-black finish. The Silver and Gold colorway features the same black construction and is ideal for professional gamers (like me who loves keyboards with a matte or matte finish). It has a touch screen and touch-", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-08-24T22:41:38", + "price": 715.8, + "stock": 33, + "priceHistory": [ + { + "priceDate": "2021-02-08T01:52:14", + "newPrice": 730.66 + }, + { + "priceDate": "2023-07-22T01:52:14", + "newPrice": 715.8 + } + ], + "descriptionVector": [ + -0.022239284589886665, + -0.03123762272298336, + -0.03907205909490585, + -0.015218328684568405, + -0.013303522951900959, + -0.05536668375134468, + -0.0004442851059138775, + -0.02613147348165512, + -0.033215004950761795, + 0.035793110728263855, + 0.03251415863633156, + -0.032013557851314545, + 0.09982022643089294, + -0.03764533996582031, + 0.0024216666352003813, + 0.03331512585282326, + 0.0034322587307542562, + 0.0023747351951897144, + 0.007246227469295263, + 0.017083074897527695, + 0.056267768144607544, + -0.02728286013007164, + -0.08074725419282913, + -0.07053495198488235, + -0.042275916785001755, + -0.04608049988746643, + -0.0027846037410199642, + 0.05496620014309883, + 0.0011388716520741582, + 0.023666003718972206, + 0.05661819130182266, + -0.003391584847122431, + -0.03661910444498062, + 0.05806994065642357, + -0.020724961534142494, + -0.023978879675269127, + -0.06097343564033508, + -0.041299741715192795, + 0.015368510037660599, + 0.0017270800890401006, + 0.001234299037605524, + 0.006232506595551968, + 0.010744189843535423, + -0.009411334991455078, + -0.017884040251374245, + 0.01144503429532051, + 0.023928819224238396, + 0.011251050978899002, + 0.023215459659695625, + -0.027257829904556274, + 0.09441371262073517, + 0.038771696388721466, + -0.009267411194741726, + -0.015030602924525738, + 0.04590528830885887, + -0.007584134116768837, + 0.02235192060470581, + 0.0946139544248581, + 0.01822194643318653, + -0.07033471018075943, + -0.006814457476139069, + -0.06673037260770798, + -0.020537234842777252, + -0.04044871777296066, + 0.025931231677532196, + -0.012258513830602169, + -0.02066238597035408, + -0.022677311673760414, + 0.0250176303088665, + 0.03248912841081619, + -0.04670625180006027, + -0.018534822389483452, + 0.03656904399394989, + 0.11153433471918106, + -0.0009331551264040172, + 0.06337632983922958, + 0.1034245640039444, + 0.020862625911831856, + 0.05536668375134468, + 0.02888478897511959, + 0.007715542335063219, + -0.003235146403312683, + -0.0914100930094719, + -0.04940950870513916, + 0.024679724127054214, + 0.02369103394448757, + -0.0234532468020916, + -0.12555120885372162, + -0.03819600120186806, + 0.08800599724054337, + -0.04545474424958229, + 0.036994557827711105, + -0.004104943946003914, + -0.005096763372421265, + 0.057018671184778214, + -0.016419775784015656, + -0.05416523665189743, + 0.0696338638663292, + -0.015030602924525738, + -0.01750858686864376, + 0.06783169507980347, + -0.04465378075838089, + -0.028008732944726944, + 0.011144672520458698, + -0.028984909877181053, + 0.08345050364732742, + 0.0355428084731102, + 0.0012585470685735345, + -0.00970543920993805, + -0.1370650827884674, + 0.04535462334752083, + -0.013140826486051083, + 6.520304395962739e-06, + 0.014955512247979641, + 0.033440276980400085, + 0.07418935000896454, + -0.072537362575531, + -0.006285695359110832, + 0.018997881561517715, + -0.029835933819413185, + -0.0022386338096112013, + 0.049384478479623795, + -0.010988234542310238, + 0.022714857012033463, + -0.02870957739651203, + -0.019661180675029755, + -0.05326415225863457, + 0.019210636615753174, + 0.051612161099910736, + -0.01384167093783617, + -0.08530274033546448, + 0.022564677521586418, + 0.06728103011846542, + 0.0701344683766365, + -0.005969689693301916, + 0.056317828595638275, + 0.007490271236747503, + 0.14177075028419495, + -0.024404391646385193, + -0.00607606815174222, + -0.006639246363192797, + -0.02390378899872303, + 0.02327803522348404, + 0.014292213134467602, + -0.0282590351998806, + -0.020161783322691917, + -0.027157709002494812, + 0.06272554397583008, + 0.014580059796571732, + 0.06673037260770798, + 0.0250176303088665, + -0.08284978568553925, + -0.041825372725725174, + -0.06923338770866394, + 0.009148518554866314, + 0.043827787041664124, + -0.02573098987340927, + -0.020462144166231155, + 0.07699272781610489, + 0.046806372702121735, + -0.04327712208032608, + -0.03469178080558777, + -0.03141283243894577, + 0.02514278143644333, + -0.029535572975873947, + 0.02998611517250538, + 0.053914934396743774, + 0.039472538977861404, + -0.031963497400283813, + 0.04395293816924095, + 0.000534237187821418, + 0.006801942363381386, + 0.027883583679795265, + -0.03782055154442787, + 0.03606843948364258, + 0.00024071961524896324, + 0.03804582357406616, + -0.049609750509262085, + -0.019448423758149147, + -0.025205357000231743, + -0.028234004974365234, + -0.0038452562876045704, + -0.059121206402778625, + -0.02381618320941925, + 0.1274535059928894, + -0.004020467400550842, + -0.010074634104967117, + 0.061874520033597946, + 0.023515822365880013, + -0.013603884726762772, + -0.008090994320809841, + -0.0015917608980089426, + -0.04500420391559601, + 0.02439187653362751, + 0.0009120359318330884, + 0.06462784111499786, + 0.03514232486486435, + -0.06958380341529846, + 0.016419775784015656, + 0.0654788613319397, + 0.007002183236181736, + 0.04437844827771187, + 0.09090948849916458, + -0.006047909148037434, + 0.019348302856087685, + 0.01963615044951439, + 0.02693243697285652, + -0.02803376317024231, + 0.006977153476327658, + 0.004808916710317135, + -0.006601701024919748, + 0.05902108550071716, + -0.022639766335487366, + -0.00545344315469265, + 0.06332626938819885, + -0.013028191402554512, + 0.005006029270589352, + -0.0022558418568223715, + -0.02559332363307476, + -0.07323820888996124, + 0.03581814095377922, + 0.03737000748515129, + 0.0001418700849171728, + 0.007865723222494125, + -0.014404849149286747, + -0.019536029547452927, + 0.04059889540076256, + -0.002534302184358239, + 0.05166222155094147, + 0.022189224138855934, + -0.10542697459459305, + -0.034191180020570755, + -0.013741550035774708, + -0.012890525162220001, + -0.02603135257959366, + 2.551901707192883e-05, + -0.027583220973610878, + -0.04007326439023018, + -0.03847133368253708, + 0.1026235967874527, + 0.006877032574266195, + 0.011382458731532097, + -0.07999634742736816, + -0.03551777824759483, + 0.03686940670013428, + -0.04890890419483185, + 0.1154390349984169, + -0.05531662330031395, + -0.0752406194806099, + -0.004746341612190008, + -0.029835933819413185, + 0.002044650027528405, + -0.035217415541410446, + 0.06507837772369385, + 0.03767037019133568, + 0.06688055396080017, + 0.029535572975873947, + -0.009936967864632607, + 0.019986571744084358, + -0.06673037260770798, + -0.005857054144144058, + -2.8965550882276148e-05, + -0.04470384120941162, + 0.01728331670165062, + -0.07884495705366135, + 0.03349033743143082, + 0.060272593051195145, + -0.09010852873325348, + -0.04825812205672264, + 0.06097343564033508, + 0.0025937489699572325, + -0.01892279088497162, + 0.05917126685380936, + -0.007659224793314934, + -0.03266433998942375, + 0.019748784601688385, + -0.057519275695085526, + 0.03151295334100723, + -0.013741550035774708, + 0.020111722871661186, + 0.059421565383672714, + 0.11533891409635544, + 0.08750539273023605, + -0.012577648274600506, + 0.11914349347352982, + -0.035167355090379715, + 0.00010422709601698443, + -0.025568293407559395, + 0.030912229791283607, + 0.009110973216593266, + -0.010869340971112251, + 0.0205747801810503, + 0.003998565953224897, + 0.06327620893716812, + 0.0661296471953392, + 0.0029081900138407946, + 0.06097343564033508, + -0.0016175732016563416, + 0.02941042184829712, + -0.001794348587282002, + 0.03354039415717125, + -0.03501717373728752, + -0.1122351735830307, + -0.05166222155094147, + -0.0387466661632061, + 0.07619176805019379, + -0.07734315097332001, + 0.010262359865009785, + -0.027357948943972588, + -0.06352651119232178, + 0.052363064140081406, + -0.015656355768442154, + -0.02207658812403679, + -0.01110712718218565, + 0.05927138775587082, + -0.09186063706874847, + 0.025806080549955368, + 0.04723188653588295, + 0.022514617070555687, + -0.017971644178032875, + 0.005037317052483559, + -0.03959769010543823, + -0.06002229079604149, + 0.09456389397382736, + 0.01923566684126854, + -0.02248958684504032, + -0.008585340343415737, + -0.01268402673304081, + -0.0026156501844525337, + -0.0589209645986557, + -0.029560603201389313, + -0.03191343694925308, + -0.05038568377494812, + -0.006845744792371988, + 0.055566925555467606, + -0.052363064140081406, + 0.02029944770038128, + 0.06663025170564651, + 0.05641794949769974, + 0.018860215321183205, + 0.035743050277233124, + -0.0234532468020916, + 0.01499305758625269, + -0.053514450788497925, + -0.0477074570953846, + -0.05451565980911255, + -0.04545474424958229, + -0.06077319383621216, + 0.012527587823569775, + 0.01326597761362791, + 0.0015706416452303529, + -0.01037499587982893, + 0.03914714977145195, + -0.024229181930422783, + 0.05306391045451164, + -0.01301567628979683, + -0.008541537448763847, + -0.04212573543190956, + 0.036944497376680374, + 0.05456572026014328, + -0.0161319300532341, + -0.029260240495204926, + 0.048183031380176544, + 0.021563470363616943, + -0.0493093878030777, + 0.012752859853208065, + -0.005922758486121893, + 0.05008532106876373, + 0.0033821985125541687, + -0.00648906547576189, + 0.014192093163728714, + -0.06042277440428734, + -0.017007984220981598, + 0.05246318504214287, + 0.002052471973001957, + 0.04167519509792328, + -0.048007819801568985, + -0.03666916489601135, + -0.028559396043419838, + 0.05857054144144058, + -0.02087514102458954, + 0.045604925602674484, + -0.020812567323446274, + -0.006614216137677431, + 0.03799576312303543, + -0.07584134489297867, + -0.04102440923452377, + 0.006514095701277256, + -0.02780849300324917, + 0.004170648287981749, + -0.06162422150373459, + 0.06728103011846542, + 0.009780529886484146, + 0.06167428195476532, + 0.011814229190349579, + 0.02235192060470581, + 0.08945774286985397, + 0.04545474424958229, + 0.017483556643128395, + 0.04197555407881737, + 0.05546680465340614, + 0.025881171226501465, + 0.031563013792037964, + -0.003128768177703023, + -0.028559396043419838, + -0.10072130709886551, + -0.008272463455796242, + 0.06012241169810295, + -0.042501188814640045, + -0.07504037767648697, + -0.028183944523334503, + 0.021112928166985512, + 0.006983410567045212, + -0.0444285087287426, + 0.013766580261290073, + 0.04728194698691368, + 0.09936968237161636, + 0.06978404521942139, + 0.09115979075431824, + -0.06477801501750946, + 0.05266342684626579, + 0.014805331826210022, + -0.005065476056188345, + 0.02039956860244274, + 0.021851317957043648, + 0.0007411270053125918, + -0.013966821134090424, + 0.013729034923017025, + 0.049034055322408676, + -0.0517122820019722, + 0.01942339353263378, + -0.03807085379958153, + -0.011138414964079857, + 0.015919173136353493, + -0.06477801501750946, + -0.03531753644347191, + -0.010256102308630943, + 0.0685325413942337, + -0.02613147348165512, + 0.06497825682163239, + -0.02123807929456234, + -0.11473818868398666, + -0.038546424359083176, + 0.01206453051418066, + -0.03834618255496025, + 0.012389922514557838, + -0.06077319383621216, + 0.0597219280898571, + 0.07363869249820709, + -0.026632076129317284, + -0.015493660233914852, + -0.0460304394364357, + -0.046280741691589355, + 0.004386533051729202, + 0.08690466731786728, + 0.012408695183694363, + -0.008372584357857704, + 0.023253004997968674, + -0.02878466807305813, + 0.03131271153688431, + 0.03904702886939049, + 0.10602770000696182, + 0.024679724127054214, + 0.0015690772561356425, + -0.013291007839143276, + 0.03726988658308983, + 0.0074777561239898205, + 0.08029671013355255, + 0.0021150473039597273, + 0.007383893243968487, + -0.009836847893893719, + -0.06127379834651947, + 0.009067170321941376, + 0.0004118241195101291, + -0.02790861390531063, + -0.09656630456447601, + 0.018297037109732628, + 0.018071765080094337, + 0.002083759754896164, + 0.04127471148967743, + 0.026106443256139755, + -0.02008669264614582, + -0.06412723660469055, + 0.035342566668987274, + 0.014642635360360146, + -0.03764533996582031, + 0.041474953293800354, + 0.01643229089677334, + 0.020311962813138962, + -0.01519329845905304, + 0.04505426436662674, + 0.03884678706526756, + 0.03904702886939049, + -0.05952168628573418, + -0.02207658812403679, + -0.01533096469938755, + -0.0020775021985173225, + 0.015468630008399487, + -0.03704461455345154, + 0.058620601892471313, + 0.00276583107188344, + -0.06077319383621216, + 0.03349033743143082, + -0.004123716615140438, + 0.0201742984354496, + -0.00673310924321413, + -0.056267768144607544, + 0.04991011321544647, + 0.02123807929456234, + 0.05596740543842316, + 0.02976084314286709, + -0.05576716735959053 + ] + }, + { + "id": "5592cf74-9ff4-4cd1-85d8-443777eba70e", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markjohnson", + "reviewDate": "2022-04-12T17:53:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1c5cefc1-a758-4092-a259-00b12d8557bf", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ingramlisa", + "reviewDate": "2022-04-26T03:04:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d4d1339f-7c4d-4034-8b8f-0866648fec0c", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "webbandrea", + "reviewDate": "2022-01-10T22:33:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7c9e41b7-0b5d-4d1e-9d91-253141910a6d", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karenandrade", + "reviewDate": "2022-07-22T05:09:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fa1430cc-5f7b-4896-a701-20a6dc4c62c8", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisa66", + "reviewDate": "2021-10-18T20:14:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ece3d01c-280e-4a40-9e9a-aab58aac2c7b", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tracycarr", + "reviewDate": "2021-03-02T09:49:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a5eb0bcd-038a-4d9c-8cb2-ee7df5e47789", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kgarza", + "reviewDate": "2022-09-05T04:30:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ec633322-12ab-407e-83df-cc780a0c332f", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jimmygamble", + "reviewDate": "2021-11-11T20:44:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f95fe27a-ba4b-47d7-b6f8-c50869c8601c", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markcallahan", + "reviewDate": "2022-03-13T11:31:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3f92745d-6f75-4836-b03b-291fe241f945", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "caitlin37", + "reviewDate": "2021-02-08T01:52:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8ad25b9b-3ad4-42a3-9de9-910745845389", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomaswalton", + "reviewDate": "2022-04-08T03:17:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "15c1a3cc-5eb9-4aaf-ad54-34ac77a01e0c", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ewallace", + "reviewDate": "2021-05-29T19:26:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1334afe9-29d0-411a-ba96-548c9469ef5d", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yanderson", + "reviewDate": "2021-12-09T10:37:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e930fefa-af46-426a-b063-9ed4929009ab", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "connie73", + "reviewDate": "2021-11-13T04:10:28", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fd315e6c-f969-4ddb-bcb0-d7b4b827edac", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothy03", + "reviewDate": "2021-07-07T21:54:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b498a3ba-fa38-49a8-8e00-a7c61b497282", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "oliversarah", + "reviewDate": "2021-07-04T15:03:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "700528b5-1feb-4f67-b4f8-fea0c52d02df", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brent04", + "reviewDate": "2021-03-25T21:16:04", + "stars": 4, + "verifiedUser": false + }, + { + "id": "06766aad-8c79-4361-b23f-6463eb3b8b4c", + "productId": "2b3f2dae-156b-42a1-9e0e-9cdfe52bdf70", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rebeccacruz", + "reviewDate": "2021-02-10T18:36:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Pro (Black)", + "description": "This Luxe Filter Pro (Black) is rated 4.1 out of 5 by 54.\n\nRated 5 out of 5 by P-Punk from Extremely Smooth No longer wear, this filter works for every band I use. It has a nice smooth grain with an attractive finish.\n\nRated 5 out of 5 by Fanny from Perfect Fits Most Sides All I had to do was a few things. First", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-08-23T17:31:06", + "price": 1027.22, + "stock": 49, + "priceHistory": [ + { + "priceDate": "2021-01-07T02:15:39", + "newPrice": 1122.09 + }, + { + "priceDate": "2021-12-31T02:15:39", + "newPrice": 1064.79 + }, + { + "priceDate": "2022-12-24T02:15:39", + "newPrice": 932.92 + }, + { + "priceDate": "2025-03-15T02:15:39", + "newPrice": 1027.22 + } + ], + "descriptionVector": [ + 0.01228878740221262, + 0.058986179530620575, + -0.035223860293626785, + 0.032921962440013885, + 0.0011524484725669026, + 0.018367242068052292, + -0.09068525582551956, + 0.031291451305150986, + -0.0057967109605669975, + 0.07044772058725357, + -0.04642164334654808, + 0.04109850153326988, + -0.04474317654967308, + 0.010202690958976746, + 0.033953022211790085, + 0.02611217461526394, + -0.057931143790483475, + -0.01334382500499487, + 0.01222884189337492, + -0.02608819678425789, + 0.02361845038831234, + -0.11240943521261215, + -0.09432993084192276, + -0.01905061863362789, + 0.02180810272693634, + 0.02199992723762989, + 0.0009643700905144215, + 0.04045109078288078, + 0.036039117723703384, + -0.028198271989822388, + 0.08349182456731796, + 0.059753481298685074, + -0.034480538219213486, + 0.10723016411066055, + -0.04373609647154808, + -0.014902402646839619, + 0.11538272351026535, + -0.04021131247282028, + -0.007289349101483822, + 0.10109176486730576, + 0.017360160127282143, + -0.033161744475364685, + -0.07001611590385437, + 0.034840211272239685, + -0.01098197977989912, + -0.10233862698078156, + 0.006959650199860334, + 0.00588962621986866, + 0.01197707187384367, + -0.004477914422750473, + 0.04548649862408638, + -0.026304000988602638, + -0.08147765696048737, + -0.08339590579271317, + -0.01936233416199684, + 0.029037505388259888, + 0.02558465674519539, + 0.14799296855926514, + 0.05256004258990288, + -0.08526620268821716, + 0.0010123263346031308, + -0.04982653632760048, + 0.015813572332262993, + -0.056732237339019775, + -0.035823315382003784, + 0.001300813164561987, + -0.054622162133455276, + -0.05145705118775368, + 0.04774044081568718, + 0.04519876092672348, + -0.014770523644983768, + 0.0021790119353681803, + 0.03215466067194939, + 0.009333483874797821, + 0.07059159129858017, + 0.017671875655651093, + 0.08550598472356796, + -0.04457532986998558, + -0.02269529178738594, + 0.029756849631667137, + 0.04507886990904808, + 0.017803756520152092, + -0.030883820727467537, + 0.08761605620384216, + 0.0023558505345135927, + 0.013307858258485794, + 0.031099624931812286, + -0.08680079877376556, + -0.02675958350300789, + 0.02259938046336174, + -0.004531865008175373, + 0.04721292108297348, + -0.036111053079366684, + -0.06723465770483017, + 0.02154434286057949, + -0.006641939748078585, + -0.033209700137376785, + 0.029013527557253838, + -0.018678957596421242, + 0.02498520351946354, + -0.061767641454935074, + -0.07159867137670517, + -0.03956390172243118, + 0.02210782840847969, + 0.0030092543456703424, + -0.008895883336663246, + -0.02515305019915104, + -0.10214680433273315, + 0.0008714548894204199, + -0.09356263279914856, + 0.05054588243365288, + -0.04009142145514488, + -0.04949084296822548, + -0.04558240994811058, + -0.07188641279935837, + 0.037046197801828384, + -0.01181522011756897, + -0.002872878685593605, + 0.06488479673862457, + 0.003302986267954111, + 0.02551272138953209, + 0.055869024246931076, + 0.037909410893917084, + 0.06267881393432617, + 0.004984451923519373, + 0.056444499641656876, + -0.0006556517910212278, + -0.008266457356512547, + 0.053567126393318176, + -0.03913229703903198, + -0.07097524404525757, + 0.08449890464544296, + 0.054478295147418976, + -0.033137764781713486, + -0.06325428932905197, + 0.029445134103298187, + -0.0037705597933381796, + 0.06483684480190277, + 0.01149151474237442, + 0.02719119004905224, + 0.01936233416199684, + -0.05471807345747948, + 0.016964521259069443, + 0.027958489954471588, + 0.04771646484732628, + -0.05049792677164078, + -0.03747780621051788, + -0.004106253385543823, + 0.02575250342488289, + 0.009747106581926346, + 0.02553670108318329, + -0.08593758940696716, + -0.034912146627902985, + -0.06416545808315277, + 0.09116481989622116, + 0.02208385057747364, + -0.05375894904136658, + 0.05160091817378998, + -0.010748193599283695, + -0.008859916590154171, + -0.003962384536862373, + -0.015345998108386993, + 0.02412199042737484, + 0.016125287860631943, + 0.04373609647154808, + 0.08440299332141876, + 0.014638643711805344, + 0.012852273881435394, + -0.09078116714954376, + 0.028054403141140938, + 0.06723465770483017, + 0.011005958542227745, + -0.016077330335974693, + -0.04066689684987068, + -0.057163842022418976, + 0.01973399519920349, + 0.036302875727415085, + -0.01004083827137947, + 0.008080626837909222, + 0.014147091656923294, + 0.053231433033943176, + 0.04275299236178398, + -0.02464951016008854, + -0.06685100495815277, + 0.07869619876146317, + -0.07984714955091476, + 0.02637593448162079, + 0.005398074630647898, + 0.04968266934156418, + 0.01098197977989912, + -0.029708893969655037, + 0.04275299236178398, + 0.018151437863707542, + 0.02401408925652504, + -0.0044419472105801105, + -0.029589002951979637, + -0.028749767690896988, + -0.016425013542175293, + -0.018211383372545242, + 0.008032671175897121, + -0.014998315833508968, + 0.04915514960885048, + 0.07965531945228577, + -0.04786033183336258, + 0.07222210615873337, + -0.02089693397283554, + 0.07399648427963257, + 0.06488479673862457, + -0.01984189637005329, + -0.015310031361877918, + 0.009687161073088646, + 0.035535577684640884, + -0.06982429325580597, + 0.05083362013101578, + -0.036590613424777985, + 0.0020516281947493553, + -0.00020325205696281046, + 0.01217489130795002, + -0.033281631767749786, + -0.062391072511672974, + 0.008548200130462646, + -0.008913867175579071, + -0.015489866957068443, + 0.007661010138690472, + 0.018391219899058342, + -0.035823315382003784, + -0.008829943835735321, + 0.053854864090681076, + 0.09456971287727356, + 0.04124236851930618, + 0.04256116598844528, + 0.01090405136346817, + -0.019518190994858742, + 0.05174478888511658, + -0.017911657691001892, + -0.01025064755231142, + -0.04874752089381218, + -0.016341090202331543, + 0.04582219198346138, + 0.035223860293626785, + 0.008710052818059921, + -0.029349220916628838, + -0.037789519876241684, + 0.02197594940662384, + 0.06757035106420517, + -0.07313327491283417, + 0.04435952752828598, + -0.031339406967163086, + -0.04802817851305008, + 0.006276273634284735, + -0.03975572809576988, + 0.018750891089439392, + -0.05337530001997948, + 0.13974449038505554, + -0.014254993759095669, + 0.04306470602750778, + -0.009069724939763546, + -0.012816306203603745, + -0.03215466067194939, + -0.008985801599919796, + 0.003950395621359348, + 0.034384626895189285, + 0.02608819678425789, + -0.03232250735163689, + -0.02685549668967724, + -0.04129032790660858, + 0.013739463873207569, + -0.01214491855353117, + -0.007049567997455597, + 0.0038694695103913546, + -0.00277546769939363, + -0.013991233892738819, + 0.032682180404663086, + 0.07572291046380997, + -0.03975572809576988, + 0.032897982746362686, + -0.07792890071868896, + 0.06517253816127777, + 0.03889251500368118, + -0.02666367217898369, + 0.08315613120794296, + 0.08181335031986237, + -0.002387321786954999, + 0.0003400022687856108, + 0.06311041861772537, + 0.000715222442522645, + 0.033713240176439285, + -0.06608370691537857, + -0.004747668281197548, + 0.001444681896828115, + -0.02616013213992119, + 0.02106478065252304, + 0.055101726204156876, + -0.06124012544751167, + -0.035919226706027985, + -0.0038964448031038046, + 0.00546401459723711, + 0.015106217004358768, + -0.016125287860631943, + 0.037621673196554184, + 0.02484133467078209, + 0.028222249820828438, + -0.02252744510769844, + -0.04090667515993118, + -0.012708405032753944, + 0.06675509363412857, + -0.017300214618444443, + 0.0030931776855140924, + -0.06315837055444717, + -0.07399648427963257, + 0.04833989590406418, + 0.05097748711705208, + -0.008937845006585121, + -0.034480538219213486, + 0.07169458270072937, + 0.005970552563667297, + -0.02635195665061474, + 0.02467348799109459, + 0.01997377537190914, + 0.014111124910414219, + -0.07816867530345917, + 0.01070623192936182, + -0.00042223974014632404, + 0.04095463454723358, + 0.01933835633099079, + -0.026639694347977638, + -0.02683151885867119, + -0.013547639362514019, + -0.006791803054511547, + -0.02390618808567524, + -0.04368813708424568, + 0.032226596027612686, + -0.01987786404788494, + 0.0015061257872730494, + 0.00948334764689207, + 0.04551047459244728, + 0.009507325477898121, + -0.02268330380320549, + 0.019170507788658142, + 0.02343861386179924, + 0.02675958350300789, + 0.02767075225710869, + 0.02476939931511879, + -0.02051328308880329, + 0.06742648035287857, + -0.08080627024173737, + 0.02479337900876999, + -0.031243493780493736, + -0.0046667419373989105, + 0.03810123726725578, + 0.0015068751526996493, + -0.017408117651939392, + 0.02347458153963089, + -0.0006253044703043997, + -0.03220261633396149, + 0.04459930583834648, + 0.07236596941947937, + -0.017468061298131943, + 0.017803756520152092, + 0.02721516788005829, + 0.02076505310833454, + -0.019182497635483742, + 0.054813988506793976, + 0.031291451305150986, + 0.00589262368157506, + 0.05107340216636658, + -0.07092728465795517, + 0.018631000071763992, + -0.04630175232887268, + -0.0024562589824199677, + -0.08042262494564056, + -0.05433442443609238, + -0.0021790119353681803, + 0.07241392880678177, + -0.02637593448162079, + -0.007343300152570009, + 0.055533330887556076, + 0.035295795649290085, + -0.03220261633396149, + 0.04778839647769928, + -0.014446818269789219, + 0.08224496245384216, + 0.02223970927298069, + -0.058027055114507675, + 0.034000977873802185, + 0.029061483219265938, + -0.057115886360406876, + 0.03165112063288689, + -0.008764003403484821, + -0.05164887383580208, + -0.007924769073724747, + -0.04277696833014488, + -0.01200104970484972, + 0.02068112976849079, + 0.02257540263235569, + -0.06742648035287857, + -0.04479113221168518, + 0.08018284291028976, + 0.07011202722787857, + -0.04455135017633438, + 0.02347458153963089, + -0.03165112063288689, + -0.05251208692789078, + -0.06378180533647537, + -0.015345998108386993, + 0.01016672421246767, + 0.07140684872865677, + 0.032682180404663086, + 0.029253309592604637, + -0.12171294540166855, + 0.02252744510769844, + -0.02125660516321659, + -0.01345172617584467, + -0.04399985447525978, + 0.034480538219213486, + 0.06387771666049957, + 0.02246749959886074, + -0.014602676033973694, + 0.03901240602135658, + -0.018678957596421242, + 0.01018470712006092, + 0.04620584100484848, + 0.0009688659920357168, + -0.032586269080638885, + 0.014914391562342644, + 0.04354427009820938, + 0.032874006778001785, + 0.01158143300563097, + -0.002387321786954999, + -0.011287701316177845, + 0.04893934726715088, + 0.032802071422338486, + -0.0072234091348946095, + -0.00634221313521266, + 0.037573717534542084, + 0.005541943479329348, + 0.015933461487293243, + 0.03781349956989288, + 0.01019070204347372, + 0.0070975241251289845, + -0.0006466599879786372, + -0.07466787099838257, + 0.04632573202252388, + 0.033473458141088486, + -0.10137949883937836, + -0.04066689684987068, + -0.06512457877397537, + 0.07270167022943497, + -0.04519876092672348, + -0.04524671658873558, + 0.05078566446900368, + -0.00048255969886668026, + -0.06795399636030197, + -0.02508111670613289, + 0.06066465005278587, + -0.02430182695388794, + 0.04181784391403198, + 0.09389832615852356, + 0.05006631836295128, + -0.07898393273353577, + -0.07207823544740677, + 0.07529130578041077, + 0.035895250737667084, + 0.01240867841988802, + -0.04435952752828598, + -0.061048299074172974, + -0.11010753363370895, + 0.002033644588664174, + 0.008865910582244396, + -0.02063317410647869, + 0.011401597410440445, + -0.028773747384548187, + -0.015214118175208569, + 0.0005087857716716826, + -0.014051179401576519, + 0.04407178983092308, + -0.004361020866781473, + -0.01058034598827362, + 0.05116931349039078, + -0.04483908787369728, + -0.02080102078616619, + 0.01325990166515112, + -0.02059720642864704, + 0.04649357870221138, + 0.10147541016340256, + 0.034144844859838486, + 0.09672774374485016, + 0.00956727098673582, + 0.08977408707141876, + 0.027862578630447388, + -0.02299501933157444, + -3.027706225111615e-05, + -0.055293548852205276, + -0.07447604835033417, + -0.01140759140253067, + -0.02572852559387684, + -0.02186804823577404, + 0.011191788129508495, + -0.027790643274784088, + -0.01110187079757452, + 0.10070811212062836, + 0.02656775899231434, + -0.00020531266636680812, + 0.003704619826748967, + 0.017719833180308342, + 0.02072908729314804, + 0.026951409876346588, + -0.06828968971967697, + -0.003947398159652948, + -0.02339065819978714, + 0.04313664138317108, + 0.02281518280506134 + ] + }, + { + "id": "e9f6be0e-3e5a-4f2b-8e92-3ee0529a37ab", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "torresmelissa", + "reviewDate": "2021-05-08T15:25:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "976e87d2-9b6a-4d88-a527-7cd9fecc4434", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "uhall", + "reviewDate": "2021-02-27T16:03:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7ea201f9-6df9-4809-aee1-6b8130ac5f36", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "cruzwilliam", + "reviewDate": "2021-01-07T02:15:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b51924b8-6d8c-4cf3-9a58-001baedce612", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "samuelwolf", + "reviewDate": "2022-09-29T13:57:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b0cc854f-3c0c-46ec-86c6-e71e8cbb7399", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "loganarthur", + "reviewDate": "2022-10-30T09:29:41", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4734646a-4dcf-47c3-871b-f0a5cb5f7148", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "jmatthews", + "reviewDate": "2021-06-06T19:22:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7066475f-c4aa-4dde-8822-9a0ff2d26fec", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "deleonpatricia", + "reviewDate": "2022-09-28T12:58:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "276a180a-e8ef-42c6-be5a-4443a84c2dd7", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "jacquelineschneider", + "reviewDate": "2021-02-08T16:05:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "548081e3-d1f3-4308-96a4-f850d6f3f232", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "esmith", + "reviewDate": "2021-12-11T11:05:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7e769027-9cb0-4c24-badc-c838d3c8de62", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "mendozavalerie", + "reviewDate": "2022-07-08T22:15:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c478ab2f-4151-4b96-83c8-894fbd232960", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "tranjacqueline", + "reviewDate": "2022-12-24T14:58:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "32faf3fb-d3fb-4550-8e9a-aead537d2d6e", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "sandra14", + "reviewDate": "2022-01-23T06:47:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "655a9126-6418-45e6-925a-b315c4bb27ba", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "jensenlisa", + "reviewDate": "2022-08-27T04:11:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b44256fe-ea98-42e1-bdbb-6c05c1e26f49", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "yjones", + "reviewDate": "2022-01-06T21:24:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4e0bdc7d-7edc-4fc6-83f6-7128a1f3321f", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "melinda58", + "reviewDate": "2021-02-11T09:43:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3a0f602c-faee-462b-91c8-8dd0ccca4898", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "kmiller", + "reviewDate": "2022-04-18T09:30:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a44038f3-5693-4c21-be20-a8be348836d3", + "productId": "1dc0904f-ab5e-4f61-bb63-dfa169a7a2fb", + "category": "Other", + "docType": "customerRating", + "userName": "rdonaldson", + "reviewDate": "2022-02-03T05:56:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7909a70c-7bd5-4a3e-ba40-f53d9c99b573", + "productId": "7909a70c-7bd5-4a3e-ba40-f53d9c99b573", + "category": "Media", + "docType": "product", + "name": "Luxe TV Mini (Steel)", + "description": "This Luxe TV Mini (Steel) is an awesome TV, as it's so great at all of the things you love about watching small televisions, but there are a few things you will want to look out for. The first thing to consider is the TV", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-02-12T10:55:39", + "price": 903.2, + "stock": 15, + "priceHistory": [ + { + "priceDate": "2022-04-13T02:19:37", + "newPrice": 858.64 + }, + { + "priceDate": "2022-08-08T02:19:37", + "newPrice": 897.23 + }, + { + "priceDate": "2025-06-15T02:19:37", + "newPrice": 903.2 + } + ], + "descriptionVector": [ + 0.02771267294883728, + 0.07003462314605713, + -0.041085779666900635, + 0.02512795478105545, + -0.05987555533647537, + -0.017621034756302834, + -0.04232194647192955, + -0.02067774347960949, + 0.007546252571046352, + -0.000312905409373343, + 0.040164269506931305, + 0.01740751415491104, + 0.005073913838714361, + 0.052413586527109146, + 0.05933613330125809, + -0.03904047980904579, + 0.03695023059844971, + 0.017104091122746468, + 0.003632652573287487, + -0.011046860367059708, + 0.05106503888964653, + -0.13728223741054535, + -0.03454531729221344, + 0.002472338965162635, + -0.040119320154190063, + 0.0005784009117633104, + -0.015508308075368404, + 0.030005205422639847, + 0.006383129861205816, + -0.05277319997549057, + 0.033264197409152985, + 0.03124137409031391, + -0.06918054074048996, + 0.014609275385737419, + -0.03474760055541992, + -0.03207297995686531, + 0.02515042945742607, + 0.01475536823272705, + 0.010597343556582928, + 0.08473379909992218, + 0.00668655289337039, + -0.004719919990748167, + -0.03780430927872658, + -0.030724430456757545, + -0.002857237122952938, + -0.02683611586689949, + -0.05093018338084221, + 0.006017897743731737, + -0.014451945200562477, + -0.016924284398555756, + -0.07079879939556122, + -0.014418231323361397, + -0.05115494132041931, + 0.0206327922642231, + -0.018565017729997635, + -0.027195729315280914, + -0.018632445484399796, + 0.06252770125865936, + 0.02326246164739132, + 0.0008899015374481678, + -0.041063301265239716, + -0.016699526458978653, + 0.006057230290025473, + -0.015811732038855553, + -0.052278731018304825, + -0.05956089124083519, + -0.027015922591090202, + 0.004211404826492071, + -0.004160834010690451, + 0.028274567797780037, + -0.0065573169849812984, + -0.03342152759432793, + 0.001477784477174282, + 0.033354099839925766, + 0.02778009884059429, + -0.02694849483668804, + -0.026296695694327354, + 0.010029830038547516, + 0.014654227532446384, + -0.020250704139471054, + 0.061628665775060654, + 0.02840942144393921, + 0.02250952273607254, + -0.020936215296387672, + 0.036051198840141296, + 0.04985134303569794, + -0.014665464870631695, + -0.07250695675611496, + -0.01896958239376545, + 0.09039770066738129, + -0.026409074664115906, + 0.08356505632400513, + 0.06526974588632584, + -0.08217155933380127, + 0.050570569932460785, + 0.020452985540032387, + -0.0711134597659111, + 0.038366205990314484, + -0.029218550771474838, + 0.012406646274030209, + 0.03735479339957237, + -0.00031782197766005993, + 0.026970969513058662, + -0.08432923257350922, + -0.030949188396334648, + 0.01826159469783306, + 0.014878985472023487, + -0.0013569769216701388, + 0.021082308143377304, + -0.14339566230773926, + 0.08140737563371658, + -0.029196076095104218, + -0.01432832796126604, + -0.07259686291217804, + -0.025554994121193886, + 0.02070022001862526, + 0.007220353465527296, + -0.05645923316478729, + -0.0046272072941064835, + 0.0008737470488995314, + 0.03369123861193657, + 0.04131053760647774, + -0.025240333750844002, + 0.02232971601188183, + -0.05605466663837433, + 0.05196407064795494, + -0.004236689768731594, + 0.05470611900091171, + 0.040973398834466934, + 0.01737380027770996, + -0.04587312415242195, + 0.056683991104364395, + 0.05816739425063133, + 0.019419098272919655, + -0.02335236594080925, + 0.047154247760772705, + -0.027263155207037926, + -0.020250704139471054, + 0.046210262924432755, + -0.053222715854644775, + 0.03888314962387085, + -0.03184822201728821, + -0.014058617874979973, + -0.007506920024752617, + -0.005057056900113821, + 0.018621208146214485, + -0.068775974214077, + -0.01640734076499939, + -0.06216808781027794, + 0.06531470268964767, + 0.05277319997549057, + -0.10968194901943207, + -0.05767292529344559, + -0.027330582961440086, + 0.06360653787851334, + 0.11085069179534912, + -0.034904930740594864, + 0.04661482572555542, + -0.016103917732834816, + 0.04926697164773941, + -0.020093372091650963, + -0.10653533041477203, + -0.03877076879143715, + -0.05520058423280716, + 0.012002081610262394, + -0.0012726926943287253, + 0.025240333750844002, + 0.03265735134482384, + -0.11975111067295074, + 0.021082308143377304, + 0.030701953917741776, + -0.008450903929769993, + -0.0070124524645507336, + 0.021228400990366936, + -0.03357885777950287, + -0.037602029740810394, + 0.10662523657083511, + -0.013923763297498226, + -0.02593708410859108, + -0.0077316779643297195, + -0.023037703707814217, + 0.04169262573122978, + -0.025689849629998207, + -0.03607367351651192, + -0.018407687544822693, + 0.013283203355967999, + 0.0469294898211956, + 0.017991885542869568, + -0.040973398834466934, + 0.06895577907562256, + -0.0007536419434472919, + 0.006568555254489183, + 0.005883042700588703, + -0.05605466663837433, + -0.018789775669574738, + -0.0708886981010437, + 0.03546682745218277, + -0.012721307575702667, + -0.00673712370917201, + 0.05726835876703262, + 0.011046860367059708, + 0.04612036049365997, + 0.07214734703302383, + 0.008119385689496994, + -0.0208575502038002, + -0.10168056190013885, + 0.04416496306657791, + 0.05605466663837433, + 0.05106503888964653, + -0.004649682901799679, + -0.04688453674316406, + -0.03566910699009895, + -0.03465769812464714, + 0.036882802844047546, + 0.045468561351299286, + 0.050570569932460785, + 0.027892477810382843, + 0.042771462351083755, + -0.09970268607139587, + -0.047918424010276794, + 0.09727530181407928, + -0.03625347837805748, + 0.05196407064795494, + -0.034994833171367645, + -0.03133127838373184, + -0.05245853587985039, + 0.04510894790291786, + 0.026409074664115906, + 0.025465091690421104, + 0.03387104347348213, + -0.014811557717621326, + -0.053986892104148865, + -0.043625544756650925, + 0.00648427102714777, + 0.0015030696522444487, + -0.014069856144487858, + -0.0016379245789721608, + -0.015216122381389141, + -0.058571957051754, + -0.03906295448541641, + -0.026206793263554573, + -0.04751386120915413, + -0.021880200132727623, + -0.03357885777950287, + 0.06077458709478378, + 0.016722001135349274, + 0.05870681256055832, + 0.010451250709593296, + -0.020351843908429146, + 0.03110651858150959, + -0.02665630914270878, + -0.09021789580583572, + 0.0014180830912664533, + 0.07075384259223938, + -0.0006676017655991018, + -0.03551177680492401, + 0.07457473129034042, + 0.011552565731108189, + 0.03537692129611969, + 0.006635982543230057, + -0.04656987637281418, + -0.05128979682922363, + 0.03798411786556244, + 0.04238937422633171, + 0.009687073528766632, + 0.030679479241371155, + 0.03191564977169037, + -0.13575388491153717, + 0.0285667534917593, + 0.036680519580841064, + -0.04908716678619385, + -0.016722001135349274, + 0.02239714376628399, + 0.05600971356034279, + -0.12577462196350098, + 0.001986299641430378, + -0.038366205990314484, + 0.01077715028077364, + -0.07866533100605011, + -0.031623464077711105, + 0.07893504202365875, + -0.05425660312175751, + 0.0011764680966734886, + -0.002521504880860448, + 0.044569529592990875, + -0.0704391822218895, + -0.021913914009928703, + 0.024835769087076187, + 0.018329022452235222, + -0.055784955620765686, + -0.048862408846616745, + -0.030679479241371155, + 0.08073310554027557, + -0.029285978525877, + 0.022756755352020264, + 0.03142118081450462, + -0.03809649497270584, + 0.003351704915985465, + 0.00312975631095469, + -0.032365165650844574, + -0.036006245762109756, + -0.0008899015374481678, + 0.024341300129890442, + -0.07497929781675339, + -0.053087860345840454, + 0.05861691012978554, + -0.004132739268243313, + 0.0801037847995758, + -0.006186466198414564, + -0.0155307836830616, + 0.06576421856880188, + 0.0007206306327134371, + -0.06441567093133926, + -0.06742742657661438, + -0.007967674173414707, + -0.008265478536486626, + -0.007040547206997871, + 0.0015143075725063682, + 0.04949172958731651, + 0.03393847122788429, + 0.02171163074672222, + -0.02760029211640358, + -0.07151802629232407, + 0.03103909082710743, + 0.030589574947953224, + -0.07880018651485443, + -0.026588881388306618, + -0.05367223173379898, + 0.03209545463323593, + 0.017834553495049477, + -0.03432055935263634, + 0.08527322113513947, + -0.005104817915707827, + 0.056504182517528534, + 0.04818813502788544, + -0.0015044744359329343, + -0.01571059040725231, + -0.06553945690393448, + 0.02330741286277771, + 0.015957824885845184, + 0.0652247965335846, + 0.012271791696548462, + -0.025465091690421104, + -0.010237731039524078, + -0.03728736564517021, + -0.054076794534921646, + -0.06491013616323471, + 0.012283029034733772, + 0.05672894045710564, + -0.00313818478025496, + 0.0014096546219661832, + -0.008889182470738888, + 0.02164420299232006, + 0.03265735134482384, + 0.05618952214717865, + 0.023959212005138397, + 0.0007782249012961984, + -0.048817455768585205, + -0.015800492838025093, + 0.038590963929891586, + 0.08023864030838013, + -0.02775762416422367, + 0.004031598102301359, + 0.060055360198020935, + -0.08145233243703842, + 0.06383129954338074, + -0.05102008581161499, + 0.0053548612631857395, + -0.08639700710773468, + 0.09565704315900803, + 0.06225799024105072, + -0.03524206951260567, + -0.0365007147192955, + 0.05295300483703613, + 0.04409753531217575, + 0.04142291471362114, + 0.06998966634273529, + -0.04908716678619385, + -0.03512968868017197, + 0.03791669011116028, + -0.08001387864351273, + 0.009366793558001518, + 0.053132813423871994, + 0.01638486422598362, + -0.003478131489828229, + -0.002580503700301051, + -0.03524206951260567, + -0.033309146761894226, + -0.09799452871084213, + -0.026071937754750252, + -0.01640734076499939, + -0.06846131384372711, + 0.014496896415948868, + 0.032410115003585815, + 0.05497582629323006, + -0.04333335906267166, + -0.050615519285202026, + 0.03101661615073681, + 0.04508647322654724, + -0.03735479339957237, + 0.016744477674365044, + 0.041984811425209045, + 0.018879679962992668, + -0.022801708430051804, + -0.04562589153647423, + -0.0241839699447155, + 0.024386253207921982, + 0.02409406751394272, + 0.007051785010844469, + -0.07345094531774521, + -0.026341646909713745, + -0.09583684802055359, + -0.022217337042093277, + -0.004118692129850388, + 0.08140737563371658, + 0.04389525577425957, + 0.07844056934118271, + -0.014553085900843143, + 0.00949040986597538, + -0.02411654219031334, + 0.01645229198038578, + 0.06580916792154312, + -0.007759772706776857, + -0.04061378538608551, + -0.008698138408362865, + 0.032724779099226, + -0.02939835749566555, + -0.003936076071113348, + 0.015721827745437622, + -0.06774208694696426, + 0.07349589467048645, + -0.09421858936548233, + -0.013215775601565838, + -0.01720523089170456, + 0.013519198633730412, + 0.008709375746548176, + 0.03508473560214043, + -0.014777843840420246, + -0.017564844340085983, + 0.027173252776265144, + -0.004166453145444393, + -0.014508134685456753, + 0.01647476851940155, + 0.054796021431684494, + -0.06500004231929779, + -0.028341995552182198, + 0.0030033299699425697, + 0.04850279539823532, + 0.004011931829154491, + -0.012597690336406231, + -0.030701953917741776, + -0.03429808467626572, + -0.04063626378774643, + -0.03546682745218277, + 0.001682876143604517, + -0.025420140475034714, + 0.06135895848274231, + 0.04949172958731651, + -0.03459027037024498, + -0.019362909719347954, + 0.031623464077711105, + 0.09269023686647415, + -0.010597343556582928, + 0.025375187397003174, + -0.052278731018304825, + -0.0037562695797532797, + -0.0275103896856308, + 0.05362727865576744, + -0.017115328460931778, + 0.02230723947286606, + -0.023914260789752007, + -0.03706260770559311, + -0.09313975274562836, + 0.018003122881054878, + -0.010608581826090813, + -0.04854774847626686, + -0.0046272072941064835, + -0.06927043944597244, + -0.008557664230465889, + -0.013575388118624687, + 0.005557143595069647, + 0.035938818007707596, + 0.04522132873535156, + 0.07506920397281647, + 0.10815358906984329, + 0.03171336650848389, + 0.023554647341370583, + 0.033196769654750824, + 0.03398342430591583, + -0.03602872043848038, + -0.04913211613893509, + -0.03425313159823418, + -0.015508308075368404, + -0.08203670382499695, + -0.002135201822966337, + 0.03465769812464714, + 0.03366876021027565, + -0.01822788082063198, + -0.03036481700837612, + 0.033331625163555145, + 0.018621208146214485, + 0.10986175388097763, + -0.10141085088253021, + 0.06437071412801743, + -0.005750997457653284, + 0.032455068081617355, + 0.029623115435242653, + -0.01913815177977085, + -0.0208013616502285, + -0.0033348482102155685, + 0.019531477242708206, + -0.006855121813714504 + ] + }, + { + "id": "ca12de67-63cb-4e03-9f35-8ef7f5b089c5", + "productId": "7909a70c-7bd5-4a3e-ba40-f53d9c99b573", + "category": "Media", + "docType": "customerRating", + "userName": "ihinton", + "reviewDate": "2022-04-13T02:19:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0d29b39f-ff75-46b6-9e52-57338c96a799", + "productId": "7909a70c-7bd5-4a3e-ba40-f53d9c99b573", + "category": "Media", + "docType": "customerRating", + "userName": "gunderwood", + "reviewDate": "2022-08-08T18:57:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "884b4244-66e6-4140-8e67-b57512680dae", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard 3000 (Red)", + "description": "This Awesome Keyboard 3000 (Red) is amazing. I purchased this keyboard because I am a gamer and can say that I love this keyboard as much as I love these mice. I cannot say enough things about the quality of these keyboards. I am only going to review them because I need to see them at some point; they look awesome with the keyboard and I", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-05-07T13:42:45", + "price": 482.8, + "stock": 8, + "priceHistory": [ + { + "priceDate": "2021-03-31T03:59:01", + "newPrice": 451.7 + }, + { + "priceDate": "2022-01-16T03:59:01", + "newPrice": 441.22 + }, + { + "priceDate": "2022-11-03T03:59:01", + "newPrice": 529.09 + }, + { + "priceDate": "2024-03-07T03:59:01", + "newPrice": 482.8 + } + ], + "descriptionVector": [ + -0.03131388872861862, + 0.013064004480838776, + -0.04982858523726463, + 0.04117809608578682, + 0.02321508899331093, + 0.010062813758850098, + -0.056316450238227844, + -0.020302169024944305, + 0.014961815439164639, + 0.02820236049592495, + 0.06739437580108643, + -0.015204559080302715, + 0.03956716135144234, + -0.11095576733350754, + 0.027761008590459824, + 0.010802078060805798, + -0.04863693565130234, + 0.015546606853604317, + -0.01731201261281967, + 0.0376693494617939, + 0.0046286736615002155, + 0.016274835914373398, + -0.03482263162732124, + -0.0035804640501737595, + 0.012390943244099617, + -0.03709559515118599, + -0.022177912294864655, + 0.008551185019314289, + -0.00036859745159745216, + -0.052388422191143036, + 0.0045597124844789505, + -0.00889323279261589, + 0.02414192631840706, + 0.055566154420375824, + -0.042391810566186905, + -0.017565788701176643, + -0.07167548686265945, + -0.03744867444038391, + 0.05194707214832306, + 0.014233585447072983, + 0.0022564094979315996, + 0.019331196323037148, + -0.011850288137793541, + -0.07017488777637482, + 0.009119424968957901, + 0.07997289299964905, + 0.023788845166563988, + -0.029813293367624283, + 0.0022853731643408537, + 0.0024205371737480164, + 0.08888819068670273, + 0.0723816454410553, + -0.046650853008031845, + -0.05830253288149834, + 0.048857610672712326, + -0.050005123019218445, + 0.023479899391531944, + 0.005006581079214811, + 0.08628422021865845, + -0.07330848276615143, + 0.0009344238787889481, + -0.0410236231982708, + 0.011640645563602448, + -0.07763373106718063, + -0.046474311500787735, + -0.07860469818115234, + -0.05375661328434944, + -0.01763199269771576, + 0.026988644152879715, + 0.013692930340766907, + -0.03947889059782028, + -0.01392463967204094, + 0.019198790192604065, + 0.018900878727436066, + 0.026304548606276512, + 0.009340100921690464, + 0.07917845994234085, + 0.06183334439992905, + 0.0018343671690672636, + 0.019750479608774185, + 0.020578013733029366, + 0.019882885739207268, + -0.011431003920733929, + -0.02855544164776802, + 0.07273472845554352, + 0.009698699228465557, + -0.05071128532290459, + -0.1163402572274208, + -0.023479899391531944, + 0.025134967640042305, + -0.08487189561128616, + 0.03098287433385849, + -0.0027943067252635956, + -0.04854866489768028, + 0.019949087873101234, + -0.039081674069166183, + -0.009158043190836906, + 0.029548482969403267, + 0.014520464465022087, + -0.006537518929690123, + 0.010940000414848328, + -0.006851981859654188, + -0.07732478529214859, + -0.022277217358350754, + -0.034403350204229355, + 0.030828401446342468, + 0.004650741349905729, + 0.044775109738111496, + -0.0500933937728405, + -0.08765240758657455, + -0.03548466041684151, + -0.01871330291032791, + -0.028996793553233147, + 0.00265500508248806, + -0.0024246748071163893, + 0.012313706800341606, + -0.05914109945297241, + 0.024230197072029114, + -0.007712617516517639, + -0.05079955607652664, + 0.0723816454410553, + 0.03138009086251259, + 0.028776118531823158, + 0.02301648072898388, + 0.03206418454647064, + -0.007718134205788374, + 0.003505985951051116, + 0.017863702028989792, + 0.03023257851600647, + -0.060200344771146774, + -0.07878123968839645, + 0.027407927438616753, + 0.06483453512191772, + 0.13222891092300415, + -0.06739437580108643, + 0.08853510767221451, + -0.030563591048121452, + 0.10486511886119843, + -0.0008689107489772141, + -0.037735551595687866, + 0.04660671949386597, + -0.016065195202827454, + -0.013317781500518322, + 0.016197599470615387, + -0.04078087955713272, + 0.10486511886119843, + -0.053889017552137375, + 0.02928367257118225, + 0.03473436459898949, + 0.06615859270095825, + 0.009196661412715912, + -0.10239354521036148, + 0.0019474634900689125, + -0.06156853213906288, + -0.009478023275732994, + 0.06620272248983383, + -0.04148704186081886, + -0.04620950296521187, + 0.013681896030902863, + 0.05587510019540787, + -0.05914109945297241, + -0.0065485527738928795, + -0.020147696137428284, + 0.050005123019218445, + -0.015005950815975666, + -0.010553817264735699, + 0.03021050989627838, + -0.02577492780983448, + -0.03343237563967705, + 0.03318963199853897, + -0.03023257851600647, + -0.02372264303267002, + 0.018669167533516884, + -0.03078426606953144, + 0.03819897025823593, + -0.01733407936990261, + 0.05393315479159355, + -0.08138521760702133, + -0.00514174485579133, + -0.0015943823382258415, + 0.0027736183255910873, + 0.021173838526010513, + -0.06562896817922592, + -0.02595146745443344, + 0.12534382939338684, + 0.07560351490974426, + 0.016374140977859497, + 0.005715501960366964, + -0.0009613187285140157, + 0.05547788366675377, + 0.03879479691386223, + 0.0024163995403796434, + -0.004093535244464874, + 0.009185628034174442, + -0.047930773347616196, + 0.12084203958511353, + -0.0013412947300821543, + -0.003368063597008586, + 0.025686657056212425, + 0.0035611549392342567, + -0.039611298590898514, + 0.04510612413287163, + 0.094272680580616, + -0.00018878121045418084, + 0.04660671949386597, + 0.022122744470834732, + 0.0016674811486154795, + 0.025090832263231277, + 0.06518761813640594, + 0.032527606934309006, + 0.001957118045538664, + 0.010973101481795311, + -0.033851660788059235, + -0.04934309795498848, + 0.06099477782845497, + -0.013406051322817802, + -0.021206939592957497, + 0.021085567772388458, + 0.008021563291549683, + -0.06033274903893471, + 0.012258538044989109, + 0.01615346409380436, + -0.012490247376263142, + 0.055919233709573746, + 0.005012097768485546, + 0.00400802306830883, + 0.0597589910030365, + -0.02297234535217285, + -0.012081997469067574, + 0.07410291582345963, + -0.053712476044893265, + -0.05552201718091965, + -0.029614685103297234, + -0.0015543848276138306, + -0.035727404057979584, + 0.025907332077622414, + -0.07136653363704681, + -0.04660671949386597, + -0.026834171265363693, + 0.08544564992189407, + 0.0026936233043670654, + 0.052962180227041245, + -0.06929218769073486, + -0.016561714932322502, + 0.04272282496094704, + -0.0339178629219532, + 0.0737498328089714, + -0.04735701531171799, + -0.06086236983537674, + -0.03656597062945366, + -0.013814302161335945, + -0.029438145458698273, + -0.03138009086251259, + 0.08107627183198929, + 0.02765067107975483, + 0.08606354147195816, + 0.05004926025867462, + 0.045900557190179825, + -0.027407927438616753, + -0.06920391321182251, + -0.017753364518284798, + 0.08142935484647751, + -0.03930234909057617, + 0.06554069370031357, + -0.03506537526845932, + 0.05622817948460579, + 0.052962180227041245, + -0.010989652015268803, + -0.05190293490886688, + 0.059096965938806534, + -0.019342228770256042, + -0.03797829523682594, + 0.06774745136499405, + -0.046650853008031845, + 0.007127826567739248, + 0.008010529913008213, + 0.004305935464799404, + 0.0619216151535511, + 0.02429639920592308, + 0.021074533462524414, + 0.031468361616134644, + 0.07701583951711655, + 0.017488552257418633, + 0.005094851367175579, + 0.05472758412361145, + -0.03769141808152199, + 0.07004248350858688, + 0.018724337220191956, + 0.01944153383374214, + -0.026767969131469727, + -0.02173656038939953, + -0.024539142847061157, + 0.01186132151633501, + -0.03599221631884575, + 0.020600080490112305, + 0.04100155457854271, + 0.040913283824920654, + 0.02283993922173977, + 0.017797499895095825, + -0.02394331805408001, + 0.05565442517399788, + -0.022751670330762863, + -0.10618916898965836, + -0.11607544124126434, + -0.015491437166929245, + 0.035727404057979584, + -0.011210327968001366, + 0.07842816412448883, + -0.043693799525499344, + -0.06377529352903366, + 0.01855883002281189, + -0.01603209227323532, + -0.04894588142633438, + 0.01861399970948696, + 0.06951285898685455, + -0.09374305605888367, + 0.020754553377628326, + 0.06143612787127495, + -0.00044204111327417195, + -0.00275568850338459, + 0.037735551595687866, + -0.0960380882024765, + -0.0711899995803833, + 0.0893295407295227, + 0.010289006866514683, + 0.00012809537292923778, + 0.0065485527738928795, + 0.037713486701250076, + -0.030166374519467354, + -0.07127826660871506, + -0.0010606228606775403, + 0.023568170145154, + -0.07127826660871506, + 6.232365558389574e-05, + 0.036654241383075714, + -0.06673234701156616, + -0.0069071510806679726, + 0.050755422562360764, + 0.044973716139793396, + 0.025929400697350502, + 0.01670515350997448, + -0.0038645840249955654, + -0.06624685972929001, + -0.038287241011857986, + -0.033873725682497025, + -0.04735701531171799, + -0.017400283366441727, + -0.029923630878329277, + 0.05490412563085556, + 0.017323046922683716, + 0.0013247440801933408, + -0.04230353981256485, + -0.037559013813734055, + -0.02021389827132225, + 0.012291639111936092, + -0.01751062087714672, + -0.01371499802917242, + 0.00427007582038641, + -0.03193178027868271, + 0.08729932457208633, + -0.050534747540950775, + 0.03800036385655403, + 0.05282977595925331, + 0.05689020827412605, + -0.03630116209387779, + 0.02504669688642025, + -0.041840121150016785, + 0.06121545284986496, + 0.023303359746932983, + -0.009511124342679977, + 0.03952302783727646, + -0.06642340123653412, + -0.04120016098022461, + 0.027363792061805725, + -0.01745545119047165, + 0.047798365354537964, + -0.060906507074832916, + -0.015160423703491688, + -0.05230015143752098, + 0.02780514396727085, + 0.04912242293357849, + 0.02414192631840706, + 0.005820322781801224, + 0.03416060656309128, + 0.013328814879059792, + -0.013218477368354797, + 0.03678664565086365, + 0.004173530265688896, + -0.04195046052336693, + 0.008496016263961792, + -0.08217965066432953, + 0.020622149109840393, + -0.016175532713532448, + 0.08288580924272537, + -0.03305722773075104, + -0.023303359746932983, + 0.025090832263231277, + 0.07485321164131165, + 0.017113404348492622, + 0.008656006306409836, + -0.029173333197832108, + 0.04974031448364258, + 0.005726535804569721, + 0.027187252417206764, + -0.05026993528008461, + -0.08257686346769333, + 0.0004437651368789375, + 0.057199154049158096, + -0.0745442658662796, + -0.06377529352903366, + -0.03815483674407005, + 0.05358007177710533, + -0.01234680786728859, + -0.002152967732399702, + -0.01213716622442007, + 0.049960989505052567, + 0.10151084512472153, + 0.0887557864189148, + 0.056139908730983734, + -0.058876290917396545, + 0.03634529560804367, + 0.03193178027868271, + 0.01567901112139225, + 0.025377711281180382, + -0.05803772062063217, + 0.034977104514837265, + 0.013814302161335945, + -0.011662713252007961, + 0.04448823258280754, + -0.09992197901010513, + 0.06739437580108643, + -0.0644814521074295, + -0.05071128532290459, + 0.04451029747724533, + -0.06346634775400162, + -0.019496701657772064, + -0.026988644152879715, + 0.029548482969403267, + -0.017422350123524666, + 0.06170094013214111, + 0.03473436459898949, + -0.06752678006887436, + -0.01060898695141077, + 0.004890726413577795, + -0.05543374642729759, + 0.018779506906867027, + -0.020169762894511223, + 0.03563913330435753, + 0.034601956605911255, + 0.008021563291549683, + 0.006394079886376858, + -0.027915481477975845, + -0.07273472845554352, + -0.009025637991726398, + 0.030320847406983376, + 0.0069733536802232265, + 0.011215845122933388, + 0.051461584866046906, + -0.013692930340766907, + 0.026569360867142677, + 0.013670862652361393, + 0.048857610672712326, + 0.06810053437948227, + 0.015513504855334759, + -0.052211880683898926, + 0.0042093899101018906, + 0.055566154420375824, + 0.005188638344407082, + -0.008032597601413727, + -0.006951285991817713, + 0.006526485085487366, + -0.002686727326363325, + 0.03486676886677742, + 0.033277902752161026, + -0.018580898642539978, + -0.0733526200056076, + 0.02204550802707672, + 0.02487015724182129, + 0.01690376177430153, + 0.06885083019733429, + -0.001570935477502644, + -0.002615007571876049, + -0.0341164693236351, + 0.05137331411242485, + 0.025377711281180382, + -0.026745900511741638, + 0.025863198563456535, + 0.010625537484884262, + 0.03992024436593056, + -0.03731627017259598, + 0.04153117537498474, + 0.07917845994234085, + 0.010200736112892628, + -0.06298086047172546, + -0.03177730739116669, + 0.055389612913131714, + -0.0643049106001854, + 0.031468361616134644, + -0.03466815873980522, + 0.0033432375639677048, + 0.02467154897749424, + -0.027407927438616753, + 0.01936429738998413, + 0.0252453051507473, + -0.01014556735754013, + 0.04669499024748802, + -0.009599395096302032, + 0.03837551176548004, + -0.04446616396307945, + -0.041244298219680786, + 0.03358684852719307, + -0.10512992739677429 + ] + }, + { + "id": "e6496f3f-0c31-4ec5-9b67-fc402bb43148", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amberirwin", + "reviewDate": "2022-06-07T22:27:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b0b31b1c-ce08-48a3-a0f8-5cfd64942080", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patrick10", + "reviewDate": "2022-03-03T06:06:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "569e196e-d98c-4240-9f2b-dcfb486ff50a", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alanluna", + "reviewDate": "2021-12-03T10:57:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "60ffd99d-c30d-471f-8611-669b9f9d5225", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michellewells", + "reviewDate": "2021-03-31T03:59:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "60bb78b0-acb8-4328-96ca-9c7669d94e3a", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristinedelgado", + "reviewDate": "2022-09-07T08:36:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3a19ff98-6f82-4c94-a43c-11930667b05c", + "productId": "884b4244-66e6-4140-8e67-b57512680dae", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james10", + "reviewDate": "2022-11-03T15:54:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard 3000 (Gold)", + "description": "This Luxe Keyboard 3000 (Gold) is a pair of solid silver-coated plastic and brass keys. The keys come with several unique designs, such as a circle with the key tip, an alphanumeric key, and a white ring around it.\n\nThe Luxe keys are the heart and soul of this laptop computer. It is a little hard to believe that we have seen this kind of thing in laptops before.\n\nBut for a reason", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-04-30T19:21:34", + "price": 118.76, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-02-22T14:05:07", + "newPrice": 129.04 + }, + { + "priceDate": "2023-07-15T14:05:07", + "newPrice": 118.76 + } + ], + "descriptionVector": [ + 0.011756726540625095, + 0.02960209548473358, + -0.03987118601799011, + -0.016922656446695328, + -0.029325909912586212, + -0.039670322090387344, + 0.00875006802380085, + -0.03296653926372528, + 0.00864963699132204, + 0.020927350968122482, + 0.05413241684436798, + 0.05413241684436798, + 0.030681731179356575, + -0.06738933175802231, + 0.02355111576616764, + 0.03808853030204773, + -0.03585393726825714, + 0.008078434504568577, + -0.007883848622441292, + -0.011216909624636173, + 0.022044647485017776, + -0.06869494169950485, + -0.052174005657434464, + -0.060911521315574646, + 0.004626112058758736, + -0.04855848476290703, + 0.0456961952149868, + 0.009710441343486309, + -0.005875225178897381, + 0.0015213757287710905, + 0.060409363359212875, + -0.033769991248846054, + -0.004243217874318361, + 0.03437257558107376, + -0.010526444762945175, + -0.08611974865198135, + 0.011141586117446423, + 0.022371049970388412, + 0.04911085590720177, + -0.0559401772916317, + 0.014750831760466099, + -0.024969706311821938, + -0.06538070738315582, + -0.023187052458524704, + -0.02508269064128399, + 0.011662572622299194, + 0.018529556691646576, + 0.008919545449316502, + 0.02515801414847374, + -0.01374652050435543, + 0.01855466328561306, + 0.014436984434723854, + -0.05684405937790871, + 0.010965831577777863, + 0.039544783532619476, + -0.006305195856839418, + 0.004105125088244677, + 0.11268380284309387, + 0.04770481958985329, + -0.05041646212339401, + -0.01773866079747677, + -0.07617706060409546, + -0.04082528129220009, + -0.040448665618896484, + -0.0385906882584095, + 0.008517821319401264, + 0.036230552941560745, + 0.025685278698801994, + 0.054232846945524216, + 0.04597238078713417, + -0.028271382674574852, + 0.0026425959076732397, + 0.05089350789785385, + 0.09159325063228607, + 0.04574640840291977, + -0.018115276470780373, + 0.07512253522872925, + -0.029576987028121948, + 0.036155231297016144, + -0.016696685925126076, + 0.07688008248806, + -0.010877953842282295, + -0.06543092429637909, + -0.06809235364198685, + 0.027141530066728592, + 0.017550351098179817, + 0.0174624752253294, + -0.06979968398809433, + -0.05066753923892975, + 0.10776267200708389, + -0.07436930388212204, + 0.051144588738679886, + -0.019282789900898933, + -0.052475299686193466, + 0.007582555525004864, + -0.010099612176418304, + -0.020839473232626915, + 0.035602860152721405, + -0.024191364645957947, + -0.028622891753911972, + 0.03198733553290367, + -0.025986572727560997, + -0.05754707753658295, + 0.013558211736381054, + -0.025358878076076508, + 0.0770307257771492, + 0.06462747603654861, + 0.05061732232570648, + -0.017286719754338264, + -0.1496424823999405, + 0.05719556659460068, + -0.008160035125911236, + -0.04582173377275467, + -0.012447191402316093, + -0.015064680017530918, + 0.03304186463356018, + -0.02120353654026985, + -0.023638993501663208, + 0.002036870224401355, + 0.015617051161825657, + 0.07005076110363007, + 0.009716718457639217, + 0.013934828341007233, + 0.023375360295176506, + -0.034196823835372925, + 0.018893618136644363, + -0.05167185142636299, + -0.06427596509456635, + 0.0011957589304074645, + -0.016709240153431892, + -0.07989301532506943, + 0.08134926855564117, + 0.023877516388893127, + 0.12051744014024734, + -0.030957916751503944, + 0.0742688700556755, + 0.0006069025839678943, + 0.07532339543104172, + -0.020513072609901428, + 0.06116259843111038, + 0.0005190253141336143, + -0.04408929497003555, + -0.01275476161390543, + -0.02889907732605934, + -0.061966050416231155, + -0.04991430416703224, + -0.10404671728610992, + 0.03422192856669426, + -0.0035056765191257, + 0.070452481508255, + 0.04170405492186546, + -0.0388166569173336, + -0.02382730133831501, + -0.03449811786413193, + 0.011593526229262352, + 0.06759019196033478, + -0.09084001928567886, + 0.013407564722001553, + 0.03585393726825714, + 0.023576224222779274, + -0.010451121255755424, + -0.0034899841994047165, + -0.015566835179924965, + 0.03344358876347542, + 0.02191910892724991, + 0.056542765349149704, + 0.0037316465750336647, + 0.0034680147655308247, + -0.10796353965997696, + 0.030983025208115578, + -0.03221330791711807, + 0.00030580515158362687, + 0.013558211736381054, + -0.05413241684436798, + 0.028296489268541336, + -0.02601167932152748, + 0.0637235939502716, + 0.007086676545441151, + 0.025409093126654625, + -0.06683696061372757, + 0.05799901485443115, + 0.06874515116214752, + -0.0385906882584095, + -0.03276567906141281, + 0.0979706346988678, + -0.020487964153289795, + 0.04245728999376297, + -0.002611211035400629, + -0.0228857584297657, + 0.036933571100234985, + 0.002502933843061328, + 0.02992849610745907, + -0.002479395130649209, + 0.024982260540127754, + -0.017688443884253502, + 0.015943452715873718, + 0.0030474590603262186, + 0.019734730944037437, + -0.01437421515583992, + 0.02125375159084797, + 0.015679821372032166, + 0.06447682529687881, + 0.03246438503265381, + 0.027668794617056847, + 0.012491130270063877, + -0.00753861665725708, + -0.021705692633986473, + -0.022634681314229965, + 0.03284100070595741, + 0.06116259843111038, + 0.000278147344943136, + 0.021906554698944092, + -0.01212706696242094, + 0.026614267379045486, + 0.006785382516682148, + -0.00019772391533479095, + -0.036155231297016144, + 0.020839473232626915, + 0.006446427665650845, + -0.07853719592094421, + 0.014964248053729534, + -0.011976419948041439, + 0.017675891518592834, + 0.0388919822871685, + -0.011242017149925232, + 0.008229081518948078, + 0.05327875167131424, + 0.02734239399433136, + 0.032363954931497574, + 0.0038289392832666636, + -0.006094918120652437, + -0.01205174345523119, + -0.011317340657114983, + 0.02343813143670559, + 0.006848152261227369, + -0.003869739593937993, + -0.05041646212339401, + -0.07728180289268494, + 0.016269853338599205, + 0.002512349048629403, + -0.010093335062265396, + -0.008021941408514977, + -0.021190982311964035, + -0.01960919052362442, + -0.03251459822058678, + -0.0696992501616478, + 0.11398940533399582, + -0.10947000235319138, + -0.05860160291194916, + 0.03058129921555519, + 0.015730036422610283, + 0.057044919580221176, + -0.05368047580122948, + 0.06307078897953033, + 0.01964685320854187, + 0.01454996969550848, + 0.0038509087171405554, + 0.010250259190797806, + 0.009967796504497528, + -0.01827847771346569, + 0.007281261961907148, + -0.0015409911284223199, + 0.023136837407946587, + -0.029200371354818344, + -0.05187271162867546, + 0.062317557632923126, + 0.024831613525748253, + -0.10977129638195038, + -0.021278860047459602, + 0.020525624975562096, + 0.0008615113329142332, + -0.07969215512275696, + 0.08185142278671265, + 0.015089787542819977, + -0.008831668645143509, + 0.020638611167669296, + -0.06156432256102562, + 0.03668249398469925, + -0.07878827303647995, + -0.023149391636252403, + 0.012321652844548225, + 0.01663391664624214, + 0.05538780614733696, + -0.042130887508392334, + 0.09269799292087555, + -0.07346542179584503, + 0.025647616013884544, + 0.03811363875865936, + -0.011725341901183128, + 0.005658670328557491, + -0.014424431137740612, + 0.05684405937790871, + -0.0026174881495535374, + -0.0044221109710633755, + 0.00019713545043487102, + -0.013533104211091995, + 0.060760874301195145, + 0.018328692764043808, + 0.009427978657186031, + -0.015843020752072334, + 0.03768680617213249, + 0.010984661988914013, + -0.05001473426818848, + -0.09952731430530548, + -0.023212160915136337, + 0.05111948028206825, + 0.012855193577706814, + 0.04557065665721893, + -0.03203755244612694, + -0.0034240761306136847, + 0.029225477948784828, + -0.018253369256854057, + -0.03311718627810478, + -0.0058689480647444725, + 0.04742863401770592, + -0.06854429095983505, + 0.004491157364100218, + 0.0033110911026597023, + -0.006672397721558809, + -0.0079466188326478, + 0.05006495118141174, + -0.020261993631720543, + -0.09776976704597473, + 0.0281960591673851, + 0.0629703626036644, + -0.08245401084423065, + -0.006936029531061649, + 0.009484470821917057, + -0.01480104774236679, + -0.09817149490118027, + -0.015516620129346848, + 0.02937612496316433, + -0.09716718643903732, + -0.004406418651342392, + 0.04069974273443222, + -0.024517765268683434, + 0.007739479187875986, + 0.05342939496040344, + 0.03570329025387764, + -0.030757054686546326, + 0.076578788459301, + 0.03605480119585991, + -0.08295616507530212, + -0.025810817256569862, + 0.011373832821846008, + -0.04700180143117905, + -0.05378090590238571, + -0.02761857956647873, + 0.019345559179782867, + 0.05322853475809097, + 0.0015982683980837464, + -0.012472298927605152, + 0.05483543500304222, + -0.06061022728681564, + -0.020613502711057663, + 0.00950957927852869, + 0.05940505489706993, + -0.07788439095020294, + -0.017249058932065964, + 0.11459199339151382, + -0.026589158922433853, + 0.018328692764043808, + 0.12694503366947174, + 0.0634222999215126, + -0.02648872882127762, + -0.02593635581433773, + -0.030254898592829704, + 0.045445118099451065, + -0.009114131331443787, + 0.04215599596500397, + 0.017826536670327187, + -0.01041345950216055, + -0.04371267929673195, + 0.0594552680850029, + 0.051345448940992355, + 0.046148136258125305, + 0.0024841029662638903, + 0.025685278698801994, + -0.05684405937790871, + 0.03894219547510147, + -0.002724196296185255, + 0.027041099965572357, + 0.04090060666203499, + 0.033970851451158524, + 0.004666912369430065, + -0.042633041739463806, + -0.08611974865198135, + -0.03464876115322113, + -0.024894382804632187, + 0.029275694862008095, + -0.028020303696393967, + 0.011229462921619415, + 0.013884613290429115, + 0.06829321384429932, + -0.020061131566762924, + 0.01126712467521429, + -0.019383221864700317, + 0.04167894646525383, + -0.007507232017815113, + 0.015089787542819977, + 0.008059603162109852, + 0.10997216403484344, + -0.00968533381819725, + -0.04027291014790535, + -0.03394574299454689, + -0.07361606508493423, + 0.012547622434794903, + 0.03231373801827431, + -0.02515801414847374, + -0.0811484083533287, + -0.018140384927392006, + -0.011154139414429665, + 0.02086458168923855, + 0.012365590780973434, + -4.077565608895384e-05, + -0.026262758299708366, + 0.08119862526655197, + 0.048106543719768524, + 0.04697669297456741, + -0.034673869609832764, + 0.03849025443196297, + 0.013256917707622051, + -0.0869734138250351, + 0.015403634868562222, + -0.03223841264843941, + -0.03984607756137848, + -0.0021074858959764242, + -0.0422564260661602, + 0.11338682472705841, + -0.04476720467209816, + 0.0031510288827121258, + -0.021103104576468468, + -0.002622195752337575, + 0.017537796869874, + -0.024756290018558502, + -0.03153539448976517, + 0.00040447094943374395, + 0.004720266442745924, + -0.0020337316673249006, + 0.15225368738174438, + 0.03113367035984993, + -0.07823590189218521, + -0.020324762910604477, + 0.0382893942296505, + -0.056191254407167435, + -0.033493805676698685, + -0.06854429095983505, + 0.04549533128738403, + 0.01542874239385128, + -0.032439276576042175, + -0.008938376791775227, + 0.002546872477978468, + -0.07241089642047882, + 0.02453031949698925, + 0.04667539894580841, + -0.0278947651386261, + 0.022408710792660713, + 0.015265542082488537, + 0.04265815019607544, + 0.014349107630550861, + -0.050918616354465485, + 0.08978548645973206, + 0.052676163613796234, + 0.01170023437589407, + 0.011499372310936451, + -0.011361279524862766, + -0.020211778581142426, + 0.009076469577848911, + -0.001895638881251216, + 0.046700507402420044, + 0.03618033975362778, + -0.04933682456612587, + -0.009371486492455006, + -0.006324026733636856, + 0.0004794020496774465, + -0.1390972137451172, + 0.03733529895544052, + -0.02734239399433136, + -0.028221165761351585, + -0.008982314728200436, + -0.01240325253456831, + -0.016822226345539093, + 0.017198842018842697, + 0.05995742604136467, + 0.06286992877721786, + 0.00927733164280653, + 0.06528028100728989, + 0.010714753530919552, + 0.048382729291915894, + 0.010356967337429523, + -0.022119970992207527, + 0.003628076985478401, + -0.059505484998226166, + -0.05051689222455025, + -0.031736258417367935, + 0.015240434557199478, + -0.05518694221973419, + 0.007952895015478134, + -0.0596059150993824, + 0.07537361234426498, + 0.028698215261101723, + -0.07542382925748825, + -0.03979586064815521, + 0.004933682736009359, + 0.04100103676319122, + 0.011254571378231049, + -0.06688717752695084, + 0.011053708381950855, + 0.04348670691251755, + -0.014248675666749477, + 0.03213798254728317, + -0.11931226402521133 + ] + }, + { + "id": "8ba64be1-612e-4b8d-93e6-e9121531b090", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisakey", + "reviewDate": "2021-08-12T19:03:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dae429e1-62b8-4762-9fa6-3d2cc2af3bee", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lmorgan", + "reviewDate": "2022-06-18T07:21:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3c6bf70b-fdcf-4e9f-99c2-7c199865002c", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "webbemily", + "reviewDate": "2021-03-22T01:25:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b9e717f2-38b9-4c1a-9213-7e4f8c9dc058", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cherylhall", + "reviewDate": "2021-12-03T23:00:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bd80f84e-16eb-47fa-9b92-5ad519c6a325", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "josephmartin", + "reviewDate": "2021-07-04T02:21:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dba659ba-f5f4-4cd1-80a2-c04280c598e9", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "morrowtravis", + "reviewDate": "2021-02-22T14:05:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5fa11a1f-0248-43ea-abf1-4a26ca34c4a2", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthony79", + "reviewDate": "2022-08-29T23:42:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e1cb9661-36c2-4f78-ae83-35da773491f9", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wramos", + "reviewDate": "2022-05-22T09:34:49", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4e0778b5-48fa-43c7-b480-201aa817c409", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markburns", + "reviewDate": "2022-02-10T14:11:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "61625a49-f65c-4a7d-af8e-0c20afe4ea5a", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alyssakelly", + "reviewDate": "2022-05-31T09:52:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b96a7514-8b64-4a69-b44b-6a175a2985cb", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gilleric", + "reviewDate": "2022-03-02T22:11:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f7cca324-0ffa-44ca-b464-c6821e399b27", + "productId": "72f268c9-3839-4bf7-9b3d-01eb1402b026", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pauldaniel", + "reviewDate": "2021-06-11T21:46:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Pro (Gold)", + "description": "This Luxe Mouse Pro (Gold) is an extremely easy and stylish upgrade over the old Elite Mouse Pro. Each keystroke is placed in keystrokes and is easy to use with your finger and an interchangeable set of buttons.\n\nTwo buttons, on the right, are for the USB keyboard and the right trackpad. You", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-04-11T17:28:03", + "price": 860.45, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-04-21T00:06:35", + "newPrice": 869.82 + }, + { + "priceDate": "2022-08-27T00:06:35", + "newPrice": 940.9 + }, + { + "priceDate": "2023-11-25T00:06:35", + "newPrice": 860.45 + } + ], + "descriptionVector": [ + -0.05597815290093422, + 0.009305459447205067, + -0.04606687277555466, + 0.003956031985580921, + -0.00864511076360941, + -0.007094201166182756, + 0.0061854650266468525, + 0.026801662519574165, + 0.01366739347577095, + 0.026195837184786797, + 0.07022713869810104, + 0.011534892953932285, + 0.02098575048148632, + -0.05365179106593132, + 0.03952397033572197, + -0.02840103767812252, + -0.0774000957608223, + -0.010274778120219707, + -0.0277952142059803, + -0.0004570186138153076, + 0.03819115832448006, + -0.11408881098031998, + -0.06470202654600143, + -0.05505730211734772, + 0.011619707569479942, + -0.0201618280261755, + -0.004449778702110052, + 0.0491202250123024, + 0.04221383109688759, + 0.001950753852725029, + -0.0017599192215129733, + 0.01611492410302162, + -0.0333687961101532, + 0.02144617587327957, + -0.01269807480275631, + -0.0329083688557148, + 0.06218179315328598, + -0.04497638717293739, + 0.05781986191868782, + 0.03918470814824104, + -0.02910379320383072, + -0.03184211999177933, + 0.0021794524509459734, + -0.019543888047337532, + -0.004343759268522263, + 0.034216951578855515, + -0.014842692762613297, + 0.03484700620174408, + -0.013206967152655125, + 0.00601280527189374, + 0.04049328714609146, + 0.06111554428935051, + -0.12765927612781525, + 0.0053888061083853245, + 0.0430862158536911, + -0.018974414095282555, + -0.03126052767038345, + 0.09421777725219727, + 0.03017004393041134, + -0.051228493452072144, + 0.008214975707232952, + -0.06135787442326546, + -0.029539987444877625, + -0.04480675607919693, + -0.026850128546357155, + -0.04059021919965744, + -0.004522477742284536, + -0.02242761105298996, + 0.0852515771985054, + 0.07269889861345291, + -0.06290878355503082, + 0.006833696737885475, + 0.012504211626946926, + 0.0430862158536911, + -0.00991128385066986, + 0.008233150467276573, + 0.04827206954360008, + -0.014745760709047318, + 0.058498382568359375, + -0.011831746436655521, + 0.036446381360292435, + -0.04352241009473801, + -0.060485485941171646, + 0.02626853622496128, + 0.08752948045730591, + -0.006342979148030281, + 0.019204625859856606, + -0.09067976474761963, + -0.021240195259451866, + 0.06101861223578453, + -0.041583772748708725, + 0.047738946974277496, + -0.008154393173754215, + -0.021421942859888077, + -0.03581632673740387, + -0.036494847387075424, + 0.009493265300989151, + 0.016090691089630127, + -0.009644720703363419, + -0.011056290939450264, + -0.01729022152721882, + 0.007330472581088543, + -0.09416931122541428, + 0.012916171923279762, + 0.016417834907770157, + 0.07056640088558197, + 0.04832053557038307, + -0.023554444313049316, + -0.032181382179260254, + -0.1315365433692932, + 0.09077669680118561, + -0.01455189660191536, + -0.021555224433541298, + -0.010305069386959076, + -0.05403951555490494, + 0.010026390664279461, + -0.07095412909984589, + -0.002608073176816106, + -0.032690271735191345, + 0.007821190170943737, + 0.07463753968477249, + 0.05709287151694298, + 0.0010859398171305656, + 0.05394258722662926, + -0.03484700620174408, + 0.0009776487713679671, + 0.01756890118122101, + -0.06305418163537979, + -0.0031381691806018353, + -0.025323450565338135, + -0.05878917872905731, + 0.1186446100473404, + 0.03169672191143036, + 0.04715735465288162, + -0.04475829005241394, + 0.08966197818517685, + -0.02585657685995102, + 0.0365917794406414, + 0.0016160360537469387, + 0.05820758640766144, + 0.015206187032163143, + -0.07686696946620941, + -0.05176161974668503, + -0.0007538724457845092, + -0.04604263976216316, + -0.020258760079741478, + -0.026244303211569786, + 0.03155132383108139, + -0.04092948138713837, + 0.05820758640766144, + 0.023142483085393906, + -0.06882162392139435, + -0.03545283153653145, + -0.051131561398506165, + 0.0634903758764267, + 0.03886967897415161, + -0.05079229921102524, + -0.027043990790843964, + -0.022136814892292023, + 0.06848236918449402, + -0.024475296959280968, + -0.004243798553943634, + -0.01014755479991436, + 0.04109911248087883, + -0.0210826825350523, + 0.06363577395677567, + 0.02534768357872963, + 0.008626936003565788, + -0.048659797757864, + 0.039863232523202896, + -0.07526759803295135, + -0.010050623677670956, + 0.009117653593420982, + -0.09164908528327942, + 0.05370025709271431, + -0.009687128476798534, + 0.060630884021520615, + 0.028473736718297005, + 0.019107695668935776, + -0.004031760152429342, + 0.07720623165369034, + 0.07710929960012436, + -0.07672157138586044, + 0.015581797808408737, + 0.10614039748907089, + -0.0347500741481781, + 0.020004315301775932, + 0.01890171505510807, + 0.011674231849610806, + -0.04517025128006935, + -0.003568304469808936, + 0.018271656706929207, + 0.022900154814124107, + -0.007918122224509716, + 0.010286894626915455, + 0.09310305863618851, + 0.04138990864157677, + 0.09678646922111511, + 0.010547399520874023, + 0.031575556844472885, + 0.02881299890577793, + 0.026850128546357155, + 0.01341294776648283, + -0.014564013108611107, + 0.04044482111930847, + -0.016757097095251083, + 0.0005584941827692091, + -0.0347500741481781, + 0.04439479485154152, + -0.009450857527554035, + 0.01867150142788887, + 0.014261101372539997, + 0.03271450474858284, + 0.0021082682069391012, + 0.021882370114326477, + 0.005058631766587496, + 0.024584345519542694, + 0.04109911248087883, + -0.03710067272186279, + -0.06887008994817734, + 0.014127819798886776, + 0.0028973540756851435, + -0.0006285426206886768, + 0.005552378483116627, + -0.07153572142124176, + -0.03979053348302841, + 0.02228221297264099, + -0.016066458076238632, + 0.08951658010482788, + -0.04674539342522621, + -0.012237648479640484, + -0.005937077105045319, + 0.027407485991716385, + 0.06126094236969948, + -0.07677003741264343, + -0.028207173570990562, + -0.035743627697229385, + -0.03872428089380264, + 0.0236271433532238, + 0.05093769729137421, + -0.041220277547836304, + -0.018150493502616882, + -0.018598802387714386, + -0.021252311766147614, + 0.039354339241981506, + 0.02566271275281906, + 0.07473447173833847, + -0.005403951741755009, + -0.07827248424291611, + 0.020973633974790573, + -0.002261238871142268, + 0.01603010855615139, + -0.06111554428935051, + 0.027674049139022827, + 5.125840471009724e-05, + 0.027819447219371796, + 0.032132916152477264, + -0.06799770891666412, + -0.010238428600132465, + -0.051034629344940186, + -0.015351585112512112, + -0.009269109927117825, + -0.03184211999177933, + 0.010801845230162144, + 0.02293650433421135, + 0.01727810502052307, + 0.027770981192588806, + -0.09954903274774551, + -0.03317493200302124, + 0.015787778422236443, + -0.029176492244005203, + -0.0028700921684503555, + 0.08035652339458466, + 0.005352456588298082, + 0.008348257280886173, + 0.003428964875638485, + -0.09339385479688644, + 0.048635564744472504, + -0.024220850318670273, + -0.047787413001060486, + 0.04832053557038307, + 0.055154234170913696, + 0.04155953973531723, + 0.012364871799945831, + 0.02668049745261669, + -0.03227831423282623, + -0.030315442010760307, + 0.03378075733780861, + -0.0028519174084067345, + 0.01424898486584425, + -0.01885324902832508, + 0.014418615959584713, + 0.09925823658704758, + -0.04090524837374687, + 0.05573582649230957, + -0.01447919849306345, + 0.023190949112176895, + 0.09295766055583954, + -0.013812791556119919, + -0.030363908037543297, + 0.06208486109972, + 0.02641393430531025, + -0.07381361722946167, + -0.04924139007925987, + 0.025735411792993546, + 0.05403951555490494, + 0.011886270716786385, + 0.010971476323902607, + -0.04924139007925987, + -0.006779172457754612, + 0.0653320774435997, + 0.020767653360962868, + -0.03920894116163254, + -0.012722307816147804, + 0.10584960132837296, + -0.06591366976499557, + 0.020598022267222404, + 0.00661560008302331, + -0.022463960573077202, + -0.019071346148848534, + -0.07429827749729156, + -0.04480675607919693, + -0.12891939282417297, + 0.02798907645046711, + 0.061600204557180405, + -0.023384813219308853, + -0.008427014574408531, + 0.015412167645990849, + -0.025735411792993546, + -0.05064690113067627, + -0.06295724958181381, + -0.03993593156337738, + -0.06387810409069061, + -0.04138990864157677, + 0.04439479485154152, + -0.007603093516081572, + 0.005540261976420879, + 0.06455662846565247, + 0.03281143680214882, + 0.003919682465493679, + 0.026850128546357155, + 0.09441164135932922, + -0.04257732257246971, + 0.028061775490641594, + 0.014236868359148502, + -0.08214975893497467, + -0.024014871567487717, + -0.014067237265408039, + 0.0407598502933979, + 0.05171315371990204, + 0.001503201317973435, + -0.08302214741706848, + 0.06358730792999268, + -0.09741652756929398, + -0.03385345637798309, + -0.007597035262733698, + 0.04706042259931564, + -0.048490166664123535, + -0.01885324902832508, + 0.09765885770320892, + -0.019761985167860985, + -0.03622828796505928, + 0.06223025918006897, + 0.07546146214008331, + 0.001559997326694429, + 0.016793446615338326, + -0.037827663123607635, + 0.013425064273178577, + -0.03886967897415161, + 0.0008049889001995325, + -0.017350804060697556, + -0.0699848085641861, + -0.005034398753196001, + 0.08253748714923859, + -0.05185855180025101, + 0.05151928961277008, + 0.03710067272186279, + 0.011304679326713085, + -0.05336099490523338, + 0.03734300285577774, + 0.010923010297119617, + 0.0435466431081295, + 0.011825688183307648, + 0.01037776842713356, + 0.05602661892771721, + -0.007657617796212435, + -0.011007825843989849, + -0.05573582649230957, + 0.03409578651189804, + -0.025081120431423187, + -0.04388590529561043, + -0.004931408911943436, + -0.001990132499486208, + 0.04185033589601517, + 0.024717627093195915, + -0.023966405540704727, + 0.0003087810182478279, + 0.06038855388760567, + -0.057286735624074936, + 0.018756316974759102, + 0.008911673910915852, + 0.02798907645046711, + -0.024766093119978905, + -0.039451271295547485, + 0.014006654731929302, + -0.03118782863020897, + 0.04243192449212074, + 0.07521913200616837, + 0.010462583974003792, + -0.08093810826539993, + -0.029806550592184067, + -0.025783877819776535, + 0.0352105014026165, + -0.014903275296092033, + 0.022039884701371193, + 0.006194552406668663, + 0.06785231083631516, + 0.07400748133659363, + 0.043619342148303986, + -0.05151928961277008, + 0.047375451773405075, + 0.004349817521870136, + -0.04337701201438904, + 0.016611699014902115, + -0.041947267949581146, + 0.007372880354523659, + -0.07701236754655838, + -0.04444326087832451, + 0.09538096189498901, + -0.02590504288673401, + 0.045654911547899246, + -0.05079229921102524, + 0.00668224086984992, + 0.04039635509252548, + -0.022451844066381454, + -0.028279872611165047, + 0.004743603523820639, + -0.04022672772407532, + 0.033611126244068146, + 0.0491202250123024, + 0.03227831423282623, + -0.07269889861345291, + 0.06678605824708939, + 0.01473364420235157, + -0.03230254724621773, + 0.0032108682207763195, + -0.09029203653335571, + 0.030266975983977318, + 0.03373229131102562, + -0.0838460698723793, + 0.011080523952841759, + -0.02900686115026474, + -0.028716066852211952, + -0.014612479135394096, + 0.06731918454170227, + -0.010989651083946228, + -0.012055900879204273, + 0.04206843301653862, + 0.0068458132445812225, + -0.028328338637948036, + -0.04049328714609146, + 0.09213374555110931, + 0.07085719704627991, + 0.007500103209167719, + 0.019616587087512016, + -0.07076026499271393, + 0.0033835279755294323, + 0.022633591666817665, + 0.009632604196667671, + 0.018647268414497375, + 0.08147123456001282, + -0.0597584992647171, + 0.00104504672344774, + 0.015436400659382343, + -0.006009776145219803, + -0.041123345494270325, + 0.02260935865342617, + 0.0002711063134483993, + -0.0007175230421125889, + -0.024863025173544884, + -0.02334846369922161, + 0.03651908040046692, + -0.06862776726484299, + 0.030145810917019844, + 0.02590504288673401, + -0.04226229339838028, + 0.10439562052488327, + 0.05054996907711029, + 0.08365220576524734, + 0.04250462353229523, + 0.014030887745320797, + 0.028182940557599068, + -0.028061775490641594, + -0.007899947464466095, + -0.036955274641513824, + 0.02098575048148632, + -0.04856286570429802, + 0.051955483853816986, + -0.018986530601978302, + 0.056365881115198135, + 0.017108475789427757, + -0.028110241517424583, + -0.034313883632421494, + 0.008208917453885078, + 0.025081120431423187, + 0.055154234170913696, + -0.03123629465699196, + 0.00039643619675189257, + 0.028667600825428963, + -0.07618845254182816, + -0.016793446615338326, + -0.08806260675191879 + ] + }, + { + "id": "c56f5872-57c5-4270-b3ef-2390012d4204", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "josephanderson", + "reviewDate": "2021-07-22T03:16:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9c4ec08e-50e8-4a53-998a-97cc6017610a", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristynash", + "reviewDate": "2022-07-12T21:38:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2e65380f-eb23-4eaa-84bb-4650f092e4d2", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthewstevens", + "reviewDate": "2021-06-15T04:44:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d4ce5e10-0b61-4299-bab4-aae14679ed70", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ncarter", + "reviewDate": "2022-08-27T19:15:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "01c04036-3a1d-46de-8f30-fb7eded457a5", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vdouglas", + "reviewDate": "2022-07-19T00:33:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "152df3c4-6335-4676-907f-c70d09390350", + "productId": "47e168a0-f4fd-42a7-ab4a-a50fc3172bd4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patrick49", + "reviewDate": "2021-04-21T00:06:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4ef37890-61b2-4156-8f61-33f77d712cd1", + "productId": "4ef37890-61b2-4156-8f61-33f77d712cd1", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Mini (Gold)", + "description": "This Awesome Speaker Mini (Gold) is a great value for an affordable Speaker Mini (Gold). It has an elegant, sleek, sturdy design. It has a built-in microphone and headphone jack. The speaker is made from durable plastic so it will last for a long time. The aluminum front panel provides an added cooling and provides the perfect ventilation. The speaker also features a great silver trim and even more color options come in white, red, gold, and blue. Price is very affordable", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-12-11T20:46:17", + "price": 162.99, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-02-27T18:04:57", + "newPrice": 164.1 + }, + { + "priceDate": "2021-02-28T18:04:57", + "newPrice": 173.89 + }, + { + "priceDate": "2021-03-01T18:04:57", + "newPrice": 161.34 + }, + { + "priceDate": "2021-03-02T18:04:57", + "newPrice": 179.15 + }, + { + "priceDate": "2021-10-05T18:04:57", + "newPrice": 162.99 + } + ], + "descriptionVector": [ + -0.06022781506180763, + 0.03030022606253624, + -0.04115334525704384, + -0.0354938842356205, + -0.008454252034425735, + -0.040897153317928314, + -0.020669830963015556, + 0.014032195322215557, + -0.04557843506336212, + 0.08207378536462784, + -0.06642293930053711, + -0.012588218785822392, + 0.035307567566633224, + 0.016372835263609886, + 0.05212290957570076, + -0.022824151441454887, + 0.03686799108982086, + -0.05254213139414787, + 0.0020029358565807343, + 0.03854487091302872, + 0.02934533916413784, + -0.12203934788703918, + -0.032023683190345764, + -0.04727860167622566, + -0.07573892176151276, + -0.003962202928960323, + 0.004893801175057888, + 0.04769781976938248, + 0.0305797066539526, + 0.02064654231071472, + 0.047744400799274445, + 0.01255328394472599, + -0.03749682009220123, + 0.030346807092428207, + -0.053007930517196655, + 0.04788414016366005, + -0.01775858737528324, + 0.0009803613647818565, + 0.04492631554603577, + 0.030090617015957832, + 0.015744006261229515, + -0.034795187413692474, + 0.016990019008517265, + -0.06483922153711319, + 0.017886683344841003, + 0.02007593773305416, + -0.026503965258598328, + 0.06195126846432686, + 0.034795187413692474, + 0.010364028625190258, + 0.0014177757548168302, + 0.05184343084692955, + -0.03386358916759491, + 0.04816361889243126, + 0.003446912858635187, + -0.05109815299510956, + -0.0006040831212885678, + 0.1136549636721611, + -0.005214037839323282, + -0.020728057250380516, + 0.03339779004454613, + -0.041758883744478226, + 0.005825398955494165, + -0.005289730150252581, + -0.007912760600447655, + 0.011586750857532024, + -0.028902828693389893, + 0.03472531586885452, + -0.032023683190345764, + 0.09143634885549545, + 0.012739603407680988, + -0.009356738068163395, + -0.007767198607325554, + 0.01802642270922661, + 0.03758998215198517, + -0.015895390883088112, + 0.013915745541453362, + 0.050678934901952744, + -0.0014017639914527535, + -0.0002705637307371944, + 0.042201392352581024, + 0.040105294436216354, + -0.004232948645949364, + -0.06642293930053711, + 0.017444172874093056, + -0.008570701815187931, + -0.0038020845968276262, + -0.0928337424993515, + -0.005036451853811741, + 0.04506605491042137, + -0.048256777226924896, + 0.03703102096915245, + 0.04946785792708397, + 0.050073396414518356, + 0.06106625124812126, + 0.02645738422870636, + -0.03877776861190796, + 0.0410601831972599, + -0.06591056287288666, + -0.057759080082178116, + 0.028530189767479897, + -0.03474860638380051, + -0.05366004630923271, + 0.02606145478785038, + -0.018468931317329407, + 0.09409140050411224, + 0.0385681577026844, + 0.02384890988469124, + 0.043505627661943436, + -0.14421138167381287, + 0.05603562295436859, + 0.029042569920420647, + -0.012681378051638603, + -0.00943825300782919, + 0.03998884558677673, + 0.038638029247522354, + -0.0026710662059485912, + -0.02154320478439331, + -0.0473717600107193, + 0.007522654253989458, + 0.0026230306830257177, + -0.02193913422524929, + 0.0251531470566988, + 0.017502399161458015, + -0.008407671935856342, + -0.041968490928411484, + -0.019039535894989967, + 0.05352030694484711, + 0.03216342255473137, + 0.007639104034751654, + -0.09567511826753616, + 0.06660926342010498, + 0.022812508046627045, + 0.015371368266642094, + -0.008384382352232933, + -0.011802182532846928, + 0.05710696056485176, + 0.07499364018440247, + -0.01212241966277361, + -0.006888003088533878, + -0.029205597937107086, + 0.04471670463681221, + -0.0004395978176034987, + 0.024384578689932823, + -0.05095841363072395, + -0.04974733665585518, + -0.06255681067705154, + 0.02205558307468891, + -0.04071083292365074, + 0.04066425561904907, + 0.013671201653778553, + -0.08407672494649887, + -0.0029985811561346054, + -0.030905764549970627, + 0.03370055928826332, + 0.06646952033042908, + -0.11821979284286499, + -0.004698747768998146, + 0.023359820246696472, + 0.03453899919986725, + 0.0005440387176349759, + -0.046277131885290146, + -0.0024265218526124954, + -0.02578197605907917, + -0.05049261450767517, + 0.0011819649953395128, + 0.05025971308350563, + 0.08659204095602036, + -0.13033056259155273, + 0.055383503437042236, + 0.0542655847966671, + -0.0048734224401414394, + -0.01161586306989193, + -0.05370662733912468, + 0.0005036452203057706, + 0.00873373169451952, + 0.026480674743652344, + -0.009071435779333115, + -0.03493492677807808, + -0.04303982853889465, + -0.01968000829219818, + 0.08174772560596466, + -0.02922888845205307, + 0.01552275288850069, + -0.04213152080774307, + 0.0326990932226181, + 0.05901673808693886, + -0.028506901115179062, + -0.02967139706015587, + 0.019482044503092766, + -0.027575302869081497, + -0.005944760050624609, + -0.029601527377963066, + -0.0013428112724795938, + 0.011254869401454926, + -0.023988649249076843, + 0.033164892345666885, + 0.029950877651572227, + -0.053054507821798325, + 0.032373033463954926, + -0.0020728057716041803, + 0.059901755303144455, + 0.08347118645906448, + -0.003921445459127426, + -0.035354144871234894, + -0.12008298933506012, + 0.01752568781375885, + 0.028297290205955505, + 0.028739800676703453, + 0.007778843864798546, + -0.00033188180532306433, + -0.026154614984989166, + -0.06302260607481003, + 0.034515708684921265, + 0.057479601353406906, + 0.041479405015707016, + 0.04250416159629822, + -0.01933065988123417, + -0.026830023154616356, + -0.05934279412031174, + -0.0010349472286179662, + -0.027435561642050743, + 0.0030830074101686478, + 0.047581370919942856, + -0.10228946805000305, + -0.0210424717515707, + 0.012914277613162994, + -0.02776162140071392, + 0.0673079565167427, + 0.02708621323108673, + -0.0830053836107254, + 0.0276451725512743, + -0.0286000594496727, + 0.015639202669262886, + -0.00811654794961214, + 0.017455818131566048, + 0.0064513166435062885, + -0.03430609777569771, + -0.012844407930970192, + 0.04788414016366005, + -0.03132498264312744, + 0.04331931099295616, + -0.0828656479716301, + -0.036611802875995636, + -0.03922027722001076, + 0.008617281913757324, + 0.06241706758737564, + -0.02554907649755478, + -0.05263528972864151, + 0.03686799108982086, + -0.1215735450387001, + -0.0420849435031414, + -0.04001213610172272, + 0.0326990932226181, + -0.0252230167388916, + 0.0022009003441780806, + 0.10378002375364304, + -0.0532408282160759, + 0.07457442581653595, + -0.04872257634997368, + 0.03668167442083359, + -0.046673063188791275, + -0.01155763864517212, + 0.017327724024653435, + -0.08114218711853027, + -0.006002984941005707, + 0.06865877658128738, + -0.07271122932434082, + 0.05468480661511421, + 0.07424836605787277, + -0.025246307253837585, + -0.0008966631139628589, + 0.01849222183227539, + 0.008396027609705925, + -0.04557843506336212, + 0.04257402941584587, + -0.060740191489458084, + 0.004442558158189058, + -0.04811703786253929, + 0.0023857643827795982, + 0.11579763889312744, + -0.011691555380821228, + 0.0877099558711052, + 0.004899623338133097, + 0.01696673035621643, + -0.029089149087667465, + -0.012052549980580807, + -0.024617478251457214, + -0.06339524686336517, + -0.04848967865109444, + -0.010393140837550163, + 0.020669830963015556, + 0.015976905822753906, + 0.08249300718307495, + 0.015138468705117702, + 0.05286819115281105, + 0.0050597419030964375, + 4.13942507293541e-05, + 0.0052460613660514355, + 0.06516528129577637, + 0.0029156107921153307, + 0.04024503752589226, + -0.04008200764656067, + -0.056501422077417374, + -0.019551914185285568, + 0.06274312734603882, + -0.08994579315185547, + 0.11337548494338989, + -0.023534495383501053, + -0.03453899919986725, + 0.06963695585727692, + 0.03547059744596481, + -0.025013407692313194, + -0.012599864043295383, + 0.07834739238023758, + -0.018864860758185387, + -0.04371523857116699, + -0.007150014862418175, + 0.05254213139414787, + 0.03949975594878197, + 0.021741168573498726, + -0.06796007603406906, + -0.08729073405265808, + 0.06288287043571472, + -0.04059438407421112, + 0.008949163369834423, + 0.026830023154616356, + -0.09846991300582886, + 0.042713768780231476, + 0.06353498995304108, + -0.028087681159377098, + -0.06567766517400742, + 0.026666993275284767, + -0.017956553027033806, + 0.06264996528625488, + -0.03227987140417099, + -0.011371318250894547, + -0.006899647880345583, + 0.059109896421432495, + 0.03658851236104965, + 0.0326990932226181, + -0.07937215268611908, + 0.01382258627563715, + -0.007936051115393639, + -0.009380027651786804, + -0.09809727221727371, + -0.05556982383131981, + -0.013240337371826172, + 0.028763089329004288, + -0.05366004630923271, + 0.001291136723011732, + -0.04422761872410774, + 0.043109700083732605, + -0.019714944064617157, + 0.02946178801357746, + -0.0394531786441803, + -0.0008100536069832742, + -0.04709228128194809, + 0.06101967394351959, + -0.0050539192743599415, + -0.0021645098458975554, + -0.012040904723107815, + 0.002854474587365985, + 0.026760153472423553, + 0.009537234902381897, + 0.019412174820899963, + -0.045205794274806976, + 0.018841570243239403, + -0.07252490520477295, + 0.0050568305887281895, + -0.020716411992907524, + -0.04555514454841614, + -0.045252375304698944, + 0.02273099310696125, + 0.05244896933436394, + 0.04166572168469429, + 0.06311576813459396, + -0.056175362318754196, + -0.030789315700531006, + 0.037962619215250015, + 0.007470251992344856, + 0.029694687575101852, + 0.003336285473778844, + -0.027039634063839912, + 0.07676368206739426, + 0.0033886879682540894, + -0.03984910622239113, + 0.055709563195705414, + 0.005738061852753162, + -0.015219982713460922, + -0.03207026422023773, + -0.07629787921905518, + -0.009426607750356197, + 0.09190214425325394, + 0.01712975837290287, + -0.013834230601787567, + 0.045601725578308105, + 0.07224542647600174, + 0.021391820162534714, + 0.02092602103948593, + 0.051936592906713486, + 0.05161053314805031, + 0.008506654761731625, + 0.043109700083732605, + -0.05971543490886688, + -0.08295881003141403, + -0.03663509339094162, + 0.07150015234947205, + -0.05258870869874954, + -0.030207065865397453, + 0.04199178144335747, + -0.024780508130788803, + -0.0241982601583004, + -0.020565027371048927, + -0.03495821729302406, + 0.043622080236673355, + 0.06395420432090759, + 0.009810891933739185, + 0.09413798153400421, + -0.03884764015674591, + 0.047977298498153687, + -0.012192289344966412, + -0.004617232829332352, + -0.00681231077760458, + -0.010072903707623482, + 0.01912105083465576, + -0.003627409925684333, + -0.06460632383823395, + 0.00904232356697321, + -0.08649887889623642, + -0.04290008917450905, + -0.03616929426789284, + -0.018841570243239403, + 0.0014578053960576653, + -0.030742736533284187, + -0.007382914423942566, + 0.02708621323108673, + -0.002736569382250309, + -0.044297486543655396, + 0.010550348088145256, + 7.919493509689346e-05, + -0.0533805675804615, + 0.012995792552828789, + 0.13675859570503235, + -0.06376788765192032, + -0.08649887889623642, + -0.040897153317928314, + -2.035596253335825e-06, + 0.06926431506872177, + -0.011947744525969028, + -0.022765927016735077, + 0.010195176117122173, + -0.04324943944811821, + 0.03200039267539978, + 0.05827145650982857, + 0.020448576658964157, + 0.010538702830672264, + 0.10927645117044449, + -0.0463470034301281, + 0.044576965272426605, + -0.013345141895115376, + 0.06386104971170425, + -0.028483610600233078, + 0.0375434011220932, + -0.013508171774446964, + 0.025968296453356743, + 0.013543106615543365, + 0.00015529667143709958, + -0.02205558307468891, + 0.04154927283525467, + -0.022230258211493492, + 0.004355221055448055, + 0.0012460123980417848, + 0.010084548965096474, + -0.03274567052721977, + -0.07774185389280319, + 0.0096420394256711, + -0.08938683569431305, + 0.05417242646217346, + 0.021752813830971718, + -0.03335120901465416, + 0.003117942251265049, + -0.04439064860343933, + 0.050073396414518356, + 0.05873725563287735, + -0.06889167428016663, + -0.012168999761343002, + 0.012017615139484406, + 0.004413445945829153, + 0.05449848622083664, + -0.009531412273645401, + 0.07438810169696808, + 0.026154614984989166, + -0.04285351186990738, + -0.0027773266192525625, + 0.008273755200207233, + 0.019831392914056778, + -0.03987239673733711, + 0.011348028667271137, + 0.04807046055793762, + 0.014404835179448128, + -0.01453292928636074, + 0.0050539192743599415, + -0.008273755200207233, + -0.014521284960210323, + -0.03668167442083359, + -0.04867599904537201, + 0.002211089711636305, + -0.002473101718351245, + 0.04182875156402588, + -0.021787749603390694, + -0.006946227978914976 + ] + }, + { + "id": "b22fcd73-6e67-4aad-bc06-27bc86bd69cc", + "productId": "4ef37890-61b2-4156-8f61-33f77d712cd1", + "category": "Media", + "docType": "customerRating", + "userName": "belldenise", + "reviewDate": "2021-02-27T18:04:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker 3000 (Steel)", + "description": "This Awesome Speaker 3000 (Steel) is rated 4.7 out of 5 by 12.\n\nRated 5 out of 5 by Jon from Great speaker This speaker is perfect for my room. It takes the audio out of your ear as well as into a completely subwoofer. The only downside is this comes with a small (and expensive) speaker that won't work with these speakers of this price. I do recommend getting the speaker in a box to cut down on your cable.\n", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-29T18:10:28", + "price": 558.37, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-01-01T01:42:21", + "newPrice": 528.55 + }, + { + "priceDate": "2021-06-21T01:42:21", + "newPrice": 510.58 + }, + { + "priceDate": "2021-12-09T01:42:21", + "newPrice": 584.66 + }, + { + "priceDate": "2022-05-29T01:42:21", + "newPrice": 557.13 + }, + { + "priceDate": "2022-11-16T01:42:21", + "newPrice": 504.66 + }, + { + "priceDate": "2023-11-17T01:42:21", + "newPrice": 558.37 + } + ], + "descriptionVector": [ + 0.003350986633449793, + -0.013760952278971672, + -0.038859546184539795, + 0.01786111108958721, + -0.021160710602998734, + -0.027781546115875244, + -0.06326576322317123, + 0.008708778768777847, + -0.026202065870165825, + 0.1277431845664978, + -0.011975923553109169, + -0.03345036506652832, + -0.06196755915880203, + -0.03314745053648949, + 0.008779098279774189, + -0.005249608773738146, + -0.016844185069203377, + -0.023454202339053154, + -0.020576518028974533, + -0.02964230440557003, + 0.015902988612651825, + -0.060755904763936996, + -0.006701973266899586, + -0.01584889553487301, + -0.06668436527252197, + -0.013133487664163113, + 0.004906125832349062, + 0.015037518925964832, + -0.015188976190984249, + -0.07378120720386505, + 0.021982906386256218, + 0.030118310824036598, + -0.046216029673814774, + 0.0623137466609478, + -0.039984654635190964, + 0.0015821850392967463, + -0.032433439046144485, + -0.0407419390976429, + 0.028149370104074478, + 0.044117268174886703, + -0.01399895641952753, + 0.017125463113188744, + 0.03855663165450096, + -0.05097610875964165, + 0.03241180256009102, + 0.03481347858905792, + -0.0018242457881569862, + 0.05707766115665436, + 0.03241180256009102, + 0.039984654635190964, + -0.027500268071889877, + 0.00784331001341343, + -0.07499286532402039, + 0.026656435802578926, + 0.03836189955472946, + 0.011305185034871101, + 0.010888678021728992, + 0.12402166426181793, + 0.03535439819097519, + -0.029988491907715797, + 0.07222336530685425, + -0.02990194410085678, + -0.03403455764055252, + -0.03823208063840866, + -0.11389568448066711, + 0.012213927693665028, + -0.019267497584223747, + 0.07572851330041885, + -0.04716804623603821, + 0.03953028470277786, + 0.04721131920814514, + -0.046605490148067474, + 0.012289655394852161, + 0.048120059072971344, + 0.05534672364592552, + -0.04258106276392937, + 0.03403455764055252, + 0.0647803321480751, + -0.05647183209657669, + -0.0011366038816049695, + 0.005336155649274588, + 0.05893842130899429, + 0.009969118051230907, + 0.004979149904102087, + 0.04937499016523361, + -0.0006027854396961629, + -0.08118096739053726, + -0.09944235533475876, + 0.02360565960407257, + 0.06253011524677277, + 0.01927831582725048, + 0.042148325592279434, + 0.01901867426931858, + -0.02747863158583641, + 0.01301448605954647, + 0.004643780644983053, + -0.11502078920602798, + 0.028625378385186195, + -0.08035877346992493, + -0.027197355404496193, + 0.06798256933689117, + -0.04169395565986633, + -0.09918271750211716, + -0.0308323223143816, + -0.05612564459443092, + 0.039054274559020996, + 0.01121863815933466, + 0.022101907059550285, + 0.036955513060092926, + -0.09096076339483261, + 0.045220740139484406, + -0.01281975582242012, + -0.013793407939374447, + -0.06742001324892044, + 0.04716804623603821, + 0.018283026292920113, + -0.0201113298535347, + -0.0801856741309166, + -0.04426872357726097, + -0.03457547351717949, + 0.010336942039430141, + 0.011499915271997452, + 0.04238633066415787, + 0.030139947310090065, + 0.050153911113739014, + -0.038729723542928696, + 0.02460094913840294, + 0.03920573368668556, + -0.009363289922475815, + 0.05188484862446785, + -0.05352924019098282, + 0.07395429909229279, + 0.020673884078860283, + 0.016519634053111076, + -0.05166848376393318, + 0.05941442772746086, + -0.015957079827785492, + 0.03593858703970909, + 0.0035943996626883745, + 0.009157740511000156, + 0.005095446947962046, + 0.043727807700634, + 0.005901414901018143, + 0.06638145446777344, + -0.014193686656653881, + 0.04807678610086441, + -0.10437552630901337, + 0.04097994416952133, + -0.028019549325108528, + -0.030139947310090065, + 0.026980986818671227, + -0.061751194298267365, + -0.010910315439105034, + -0.013036122545599937, + 0.003891904605552554, + 0.0009973174892365932, + -0.09952890127897263, + 0.05582273378968239, + -0.038405176252126694, + 0.09814415127038956, + -0.011229456402361393, + -0.07468994706869125, + -0.05660165473818779, + 0.012192290276288986, + -0.02486058883368969, + 0.06538616120815277, + 0.08585450053215027, + 0.038275353610515594, + -0.11692482233047485, + 0.026137154549360275, + 0.04820660874247551, + -0.040871761739254, + 0.011618917807936668, + 0.007767581846565008, + -0.03468365967273712, + -0.08014240115880966, + 0.07282919436693192, + -0.03215216472744942, + -0.006761474534869194, + 0.01973268762230873, + 0.002850637538358569, + 0.040763575583696365, + 0.016508815810084343, + -0.027456995099782944, + 0.03875136375427246, + 0.07936348021030426, + 0.02682952955365181, + -0.04435527324676514, + -0.0307025033980608, + 0.07698344439268112, + -0.0009297027136199176, + 0.012776481918990612, + -0.006074508652091026, + 0.020933523774147034, + -0.06612180918455124, + -0.006799338851124048, + 0.03699878603219986, + 0.01836957409977913, + -0.017850292846560478, + 0.022740190848708153, + -0.025726057589054108, + 0.041542500257492065, + 0.14167723059654236, + -0.040157750248909, + -0.002799250418320298, + -0.050327006727457047, + 0.01666027307510376, + 0.08992219716310501, + -0.021820630878210068, + -0.018607577309012413, + 0.01940813660621643, + -0.02622370235621929, + -0.08308500051498413, + -0.016216719523072243, + 0.04264597222208977, + 0.019970690831542015, + -0.021193165332078934, + 0.0050575826317071915, + -0.06274648010730743, + -0.052966684103012085, + 0.048639342188835144, + -0.04123958572745323, + 0.04474473372101784, + -0.02760845236480236, + -0.08053186535835266, + -0.008470774628221989, + -0.004427413456141949, + -0.022675279527902603, + 0.11103963851928711, + -0.007832491770386696, + 0.02631024830043316, + 0.01937568187713623, + -0.010537081398069859, + 0.03089723363518715, + -0.04136940464377403, + 0.02825755439698696, + -0.03743152320384979, + -0.0614050067961216, + -0.0439874492585659, + 0.0654294341802597, + -0.05504380911588669, + 0.04323016107082367, + -0.04478800669312477, + -0.06071263179183006, + -0.02427639812231064, + -0.008027222007513046, + 0.11354949325323105, + -0.04435527324676514, + -0.028084460645914078, + -0.01304694078862667, + -0.10186567157506943, + 0.02263200655579567, + -0.02622370235621929, + 0.06958368420600891, + 0.01888885535299778, + 0.010996862314641476, + 0.060236621648073196, + -0.041282858699560165, + 0.04894225671887398, + -0.0029263661708682775, + -0.019743505865335464, + 0.06707382947206497, + 0.0017525741131976247, + 0.04290561005473137, + -0.03122178465127945, + -0.01804502308368683, + 0.015892168506979942, + -0.023064741864800453, + -0.005906824022531509, + 0.021171528846025467, + -0.0198192335665226, + 0.033342182636260986, + -0.0308323223143816, + -0.020944343879818916, + -0.023951847106218338, + -0.0040731122717261314, + -0.015188976190984249, + -0.026916077360510826, + -0.04677858576178551, + 0.020122148096561432, + 0.12315619736909866, + -0.004943990148603916, + 0.0413910411298275, + 0.030918870121240616, + 0.054870717227458954, + -0.07503613829612732, + 0.07213681936264038, + 0.008784507401287556, + 0.04149922356009483, + -0.04638912156224251, + -0.01869412511587143, + 0.023973483592271805, + 0.020316878333687782, + 0.05898169428110123, + -0.0031724837608635426, + 0.07369466125965118, + 0.03258489817380905, + -0.06858839839696884, + -0.010764267295598984, + 0.017363466322422028, + 0.027175717055797577, + 0.035700585693120956, + -0.05686129629611969, + -0.07395429909229279, + -0.02341092936694622, + 0.04173722863197327, + -0.029620666056871414, + 0.036566052585840225, + -0.03455383703112602, + -0.06923750042915344, + 0.029101384803652763, + -0.007242891471832991, + -0.030551046133041382, + -0.012516841292381287, + 0.06772292405366898, + -0.014020592905580997, + 0.005733730271458626, + 0.03392637521028519, + 0.05993370711803436, + 0.07620452344417572, + -0.030853960663080215, + -0.015156520530581474, + -0.029079748317599297, + 0.04271088168025017, + -0.05699111521244049, + 0.008010994642972946, + 0.045480381697416306, + -0.02931775338947773, + 0.03524621203541756, + 0.04933171719312668, + 0.04881243407726288, + 0.028322463855147362, + 0.010520854033529758, + 0.00027755851624533534, + 0.05777003616094589, + -0.02108498103916645, + -0.04416054114699364, + -0.03392637521028519, + 0.035116393119096756, + 0.007318619638681412, + 0.046475671231746674, + -0.0424296036362648, + 0.029728850349783897, + -0.0399630181491375, + -0.011618917807936668, + -0.07140117138624191, + 0.012949575670063496, + -0.054135069251060486, + -0.004427413456141949, + -0.02786809206008911, + 0.001221122220158577, + 0.006117782089859247, + -0.041412677615880966, + 0.021236438304185867, + 0.04604293406009674, + -0.004968331195414066, + -0.02367056906223297, + -0.018477756530046463, + 0.04026593267917633, + -0.02315128780901432, + -0.005436225328594446, + 0.0008979237754829228, + -0.0215718075633049, + 0.015048337168991566, + -0.05474089831113815, + 0.07213681936264038, + -0.04017938673496246, + 0.034986574202775955, + -0.012516841292381287, + -0.045480381697416306, + -0.0068967039696872234, + -0.05166848376393318, + -0.020457517355680466, + 0.04046066105365753, + -0.005685047712177038, + 0.0219288133084774, + 0.05002409219741821, + -0.0154161611571908, + -0.03816717118024826, + 0.024233123287558556, + 0.004673531278967857, + 0.07365138828754425, + 0.08048859238624573, + -0.0002868555602617562, + 0.028755197301506996, + 0.011370095424354076, + -0.05400524660944939, + 0.050803013145923615, + -0.020814523100852966, + 0.04760077968239784, + -0.02237236686050892, + -0.016779275611042976, + -0.032693080604076385, + 0.05898169428110123, + 0.0043976628221571445, + -0.032238710671663284, + 0.0036674237344413996, + 0.08948946744203568, + -0.026872804388403893, + -0.059457700699567795, + -0.05950097367167473, + 0.05820276960730553, + 0.04846624657511711, + -0.0432734377682209, + -0.025466417893767357, + -0.07248300313949585, + 0.01730937510728836, + -0.00915233138948679, + -0.0617944672703743, + -0.013382310047745705, + 0.032628171145915985, + -0.05240413174033165, + -0.028949929401278496, + 0.014410054311156273, + -0.03373164311051369, + 0.07209354639053345, + 0.08061841130256653, + -0.027759909629821777, + 0.05491399019956589, + -0.03154633566737175, + 0.03881627321243286, + 0.015243067406117916, + 0.07750272750854492, + -0.01475624181330204, + -0.004473391454666853, + 0.05625546723604202, + 0.0009310549939982593, + -0.05370233580470085, + 0.05288013815879822, + -0.061015546321868896, + -0.05123574659228325, + -0.07109825313091278, + -0.011683827266097069, + 0.04924517124891281, + -0.020316878333687782, + -0.002039260696619749, + -0.01698482409119606, + 0.02386529929935932, + -0.033169087022542953, + -0.022480549290776253, + 0.001154859783127904, + -0.027651725336909294, + -0.00045031419722363353, + 0.055130358785390854, + -0.07088188827037811, + -0.07793545722961426, + -0.005576863884925842, + 0.03022649511694908, + 0.0408068485558033, + 0.01377177145332098, + 0.03907591104507446, + -0.011424186639487743, + -0.11804993450641632, + 0.07023278623819351, + 0.04162904620170593, + 0.011835284531116486, + -0.003967633005231619, + 0.05837586522102356, + -0.03271471709012985, + -0.02576933056116104, + -0.07031933218240738, + 0.07862783223390579, + 0.040871761739254, + 0.061491552740335464, + -0.013869136571884155, + 0.037474796175956726, + -0.08230607211589813, + -0.03883790969848633, + -0.008173270151019096, + -0.006485606078058481, + -0.05313977971673012, + -0.007145525887608528, + -0.015448616817593575, + 0.023389292880892754, + -0.03849172219634056, + -0.0664680004119873, + 0.036176592111587524, + -0.031243421137332916, + 0.07308883219957352, + 0.01892131008207798, + 0.01396650169044733, + -0.01672518253326416, + 0.017871929332613945, + 0.027327174320816994, + 0.057813309133052826, + -0.0036917650140821934, + 0.0198192335665226, + 0.024709131568670273, + -0.0034375335089862347, + 0.01866166852414608, + -0.031719427555799484, + 0.09554774314165115, + -0.028647014871239662, + -0.03784262016415596, + -0.011359277181327343, + 0.027565179392695427, + -0.010645265690982342, + -0.03955192118883133, + -0.06209738180041313, + 0.03386146202683449, + 0.002972344169393182, + -0.03533276170492172, + -0.036695875227451324, + 0.01957041211426258, + -0.009736523032188416, + -0.0010108404094353318, + -0.057034388184547424, + 0.0066046081483364105, + -0.04212668910622597, + 0.05469762161374092, + 0.06858839839696884, + -0.0608857236802578 + ] + }, + { + "id": "940190a8-8691-416c-8cad-ddb3404db158", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "sarah04", + "reviewDate": "2021-09-14T11:51:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "24705dc6-2eaf-4e23-9da9-0e228c2d0f69", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "taylor69", + "reviewDate": "2022-02-17T19:32:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4b6b5d79-0e1b-46c4-9152-d05369e5373e", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "troyliu", + "reviewDate": "2022-08-15T00:25:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "72af24b9-e720-4668-a182-2aaeae470772", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonkristina", + "reviewDate": "2021-07-19T09:29:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5b0ebb91-9c76-41bb-b928-5271eb04967d", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "baldwinbruce", + "reviewDate": "2022-09-17T08:28:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a043827-fae8-40f0-b840-2d9b2fceb03a", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "sjackson", + "reviewDate": "2021-04-19T04:05:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b4ea3a33-4606-416c-a02d-9e8cc57af1e4", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "rfisher", + "reviewDate": "2021-01-01T01:42:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2cc9126b-90bf-42e1-9f08-9779f07dd6ea", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "davidirwin", + "reviewDate": "2022-05-01T09:46:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d8cd84e0-5464-4eb1-ad4a-2cac1d620a1a", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "kevin01", + "reviewDate": "2022-06-19T11:10:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "77252406-dc95-430c-a33e-fad1028b4066", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "jessica69", + "reviewDate": "2022-11-19T15:15:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6d811815-f638-478e-b3c1-9337ea674be4", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "ablackburn", + "reviewDate": "2021-09-17T02:54:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "39f83af0-962e-4569-83e3-4a8b2afaf513", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "alvareznathaniel", + "reviewDate": "2022-02-01T04:36:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cc35872c-2432-431a-b8ff-01f6e8872653", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "phillipbrown", + "reviewDate": "2022-03-26T05:33:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7ec978c7-f0cb-4523-9d38-95b6eb96f642", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "sullivanlori", + "reviewDate": "2022-01-23T14:56:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8c571450-c4de-4c41-8116-4a2c087dbd41", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "christinebaker", + "reviewDate": "2022-04-05T00:07:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5be8cc4a-2b10-46e6-a000-01c7f708aff0", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "craigrichard", + "reviewDate": "2021-05-24T21:28:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "345eb42d-7e35-40cc-9705-f5cda1e7d6b5", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "moorekatie", + "reviewDate": "2022-04-24T14:25:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3aa38f31-64e5-4721-8533-cdb6346ef7db", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "thall", + "reviewDate": "2022-08-11T11:19:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b416425f-2f29-4de1-9616-cdaaeb14c2c1", + "productId": "b5e7131b-4e55-49ad-b4bc-305513bbdc3f", + "category": "Media", + "docType": "customerRating", + "userName": "nelsonroy", + "reviewDate": "2021-03-05T11:53:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "da53a0e7-5b33-449b-8013-c30c3d65f9a3", + "productId": "da53a0e7-5b33-449b-8013-c30c3d65f9a3", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Silver)", + "description": "This Luxe Filter 3000 (Silver) is a stainless steel filter that will keep your filter from leaking while taking on ultra smooth and detailed texture.\n\nThe Filter 3000 features a stainless steel filter which is durable and is easy to clean. The filter can be easily and effortlessly opened and removed. The filters come with a black glass top and a sleek black inner lining.\n\nThe filter itself features silver threads and the brass plate keeps the filter completely closed and", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-10-11T09:55:02", + "price": 115.63, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-08-29T03:18:52", + "newPrice": 108.22 + }, + { + "priceDate": "2022-03-02T03:18:52", + "newPrice": 115.63 + } + ], + "descriptionVector": [ + 0.029867615550756454, + 0.028933441266417503, + -0.04429541155695915, + 0.014025582931935787, + 0.052080195397138596, + -0.023185675963759422, + -0.07629086822271347, + -0.0046416763216257095, + 0.016438866034150124, + 0.0488884337246418, + -0.0248204804956913, + 0.026040097698569298, + 0.0018196929013356566, + -0.006694912910461426, + 0.04343908652663231, + -0.013389825820922852, + -0.0547010712325573, + -0.02470370940864086, + 0.023211626335978508, + -0.06617064774036407, + 0.012196158990263939, + -0.0385865718126297, + -0.04660489782691002, + -0.009951546788215637, + 0.0014880286762490869, + -0.023380296304821968, + 0.007213898468762636, + -0.013091408647596836, + -0.03684797137975693, + -0.03523911535739899, + 0.0962718054652214, + 0.042868200689554214, + 0.027116991579532623, + 0.03617328777909279, + -0.09201613068580627, + -0.06969974935054779, + 0.0743706226348877, + 0.05475296825170517, + 0.06809089332818985, + 0.009756927378475666, + 0.019812270998954773, + -0.04803210869431496, + -0.0844908356666565, + 0.026325538754463196, + 0.012338880449533463, + -0.06549596786499023, + -0.044684652239084244, + -0.0011742046335712075, + -0.042997948825359344, + 0.0009576904121786356, + 0.05407828837633133, + -0.050601083785295486, + -0.07732883840799332, + -0.039624541997909546, + 0.020538851618766785, + -0.02794736810028553, + 0.06767570972442627, + 0.23354347050189972, + 0.05677701160311699, + 0.010781923308968544, + 0.06103269383311272, + -0.07582378387451172, + 0.01852778159081936, + 0.013078434392809868, + -0.06871367990970612, + -0.05630992725491524, + -0.0025608690921217203, + -0.06637824326753616, + 0.042530860751867294, + 0.011521478183567524, + -0.050886526703834534, + -0.02174549177289009, + 0.024223648011684418, + 0.022913210093975067, + 0.047772616147994995, + 0.02077239379286766, + 0.06269344687461853, + -0.06783140450716019, + 0.022861311212182045, + -0.047305528074502945, + 0.014129379764199257, + 0.06502888351678848, + -0.07001114636659622, + -0.01314979512244463, + 0.02976381778717041, + 0.0032193318475037813, + -0.0071944366209208965, + -0.0768098533153534, + 0.01575120911002159, + 0.044061869382858276, + 0.02153789810836315, + 0.08558070659637451, + -0.016075575724244118, + -0.06835038959980011, + -0.023419220000505447, + 0.03526506572961807, + -0.04987450689077377, + 0.0008920063264667988, + -0.10109837353229523, + -0.011767996475100517, + -0.046501100063323975, + -0.0061597093008458614, + -0.040299221873283386, + 0.03386380523443222, + -0.01920246332883835, + 0.03152836859226227, + -0.030620144680142403, + -0.08350476622581482, + -0.012754068709909916, + -0.15538425743579865, + 0.02616984397172928, + -0.04670869559049606, + -0.03324102237820625, + -0.03804163634777069, + -0.029945462942123413, + 0.026779651641845703, + -0.030179006978869438, + 0.007200923748314381, + 0.011346320621669292, + -0.011982077732682228, + -0.035991642624139786, + 0.04112960025668144, + 0.072294682264328, + 0.04144098982214928, + -0.016672408208251, + 0.029997361823916435, + 0.013986659236252308, + -0.03804163634777069, + 0.025858452543616295, + 0.00722038559615612, + -0.0977768674492836, + -0.002927402500063181, + 0.012792992405593395, + 0.020253408700227737, + -0.08007945865392685, + 0.07831490784883499, + -0.010243476368486881, + 0.10608063638210297, + -0.025637883692979813, + 0.10374519973993301, + -0.035316962748765945, + -0.05698460713028908, + 0.019397083669900894, + 0.014505644328892231, + 0.06015041843056679, + -0.10172116011381149, + -0.10742999613285065, + 0.008887626230716705, + -0.0031674334313720465, + 0.013882861472666264, + 0.03806758671998978, + -0.07270986586809158, + -0.0163869671523571, + -0.0410258024930954, + 0.0395207442343235, + -0.028855593875050545, + -0.08506172150373459, + 0.051950447261333466, + 0.009166581556200981, + -0.02626066654920578, + 0.022238528355956078, + -0.030801789835095406, + -0.025819528847932816, + 0.0541301853954792, + -0.000379305420210585, + 0.07452631741762161, + 0.03158026561141014, + 0.035394810140132904, + -0.08225920051336288, + 0.033500514924526215, + -0.021213531494140625, + 0.007129563018679619, + 0.011787458322942257, + -0.049589063972234726, + -0.06373141705989838, + -0.02389928139746189, + 0.0472017303109169, + -0.023406244814395905, + -0.00023881442029960454, + -0.0023224600590765476, + 0.040973905473947525, + 0.010626227594912052, + -0.02989356406033039, + -0.04922577366232872, + 0.05291057005524635, + 0.004923874977976084, + 0.030179006978869438, + -0.019993916153907776, + 0.06243395432829857, + 0.032825831323862076, + -0.014583492651581764, + 0.053092215210199356, + 0.040714412927627563, + 0.060098521411418915, + -0.019345184788107872, + -0.01152796484529972, + -0.030127108097076416, + -0.022225553169846535, + -0.001596691319718957, + -0.050808679312467575, + -0.00791452918201685, + 0.015024630352854729, + 0.0438283234834671, + -0.022809412330389023, + 0.029452426359057426, + 0.0261309202760458, + -0.0033669183030724525, + 0.032021403312683105, + -0.0309055857360363, + -0.02270561456680298, + 0.02107081189751625, + 0.01916353963315487, + -0.04883653670549393, + 0.01040565874427557, + -0.0021245968528091908, + 0.012747581116855145, + -0.036873918026685715, + -0.05018589645624161, + 0.017580633983016014, + -0.02127840556204319, + 0.011904229409992695, + -0.053299810737371445, + -0.026014147326350212, + 0.02068157121539116, + 0.035732150077819824, + -0.007538264151662588, + 0.04450300708413124, + 0.07260607182979584, + 0.08059844374656677, + 0.035965695977211, + 0.0327739343047142, + -0.013636344112455845, + -0.018670503050088882, + 0.0524434857070446, + -0.007427979726344347, + -0.019903093576431274, + -0.07686175405979156, + -0.0648212879896164, + 0.03731505572795868, + 0.0037464264314621687, + 0.03287773206830025, + 0.031087230890989304, + -0.05267702788114548, + 0.00804427545517683, + 0.020071763545274734, + -0.03191760927438736, + 0.06061750650405884, + -0.10597683489322662, + -0.03453848510980606, + 0.021927136927843094, + -0.002234881278127432, + 0.029478376731276512, + -0.07203518599271774, + 0.061447881162166595, + -0.021096760407090187, + 0.04847324639558792, + -0.05428588390350342, + 0.003344212658703327, + -0.05213209241628647, + -0.04961501434445381, + -0.014336974360048771, + 0.005514220800250769, + 0.07078962028026581, + -0.017191395163536072, + -0.0367182232439518, + -0.016412915661931038, + -0.021589796990156174, + -0.05833397060632706, + 0.0002556408871896565, + 0.008777341805398464, + -0.023743586614727974, + 0.023574916645884514, + 0.02110973559319973, + 0.005692622158676386, + -0.04497009143233299, + -0.004800615832209587, + -0.07712124288082123, + 0.039624541997909546, + -0.008654083125293255, + -0.06284914165735245, + 0.09019967913627625, + -0.016075575724244118, + -0.003795081516727805, + -0.026831550523638725, + 0.09642750769853592, + -0.00829728040844202, + 0.05454537644982338, + -0.03196950629353523, + -0.013934760354459286, + -0.019319234415888786, + -0.005715327803045511, + 0.03152836859226227, + 0.03710746392607689, + -0.03557645529508591, + 0.006578140892088413, + -0.02600117400288582, + 0.04356883093714714, + 0.01000344567000866, + -0.02768787555396557, + 0.0410258024930954, + -0.05522005632519722, + -0.007077664602547884, + 0.011028441600501537, + -0.06430230289697647, + -0.06539217382669449, + 0.1073262020945549, + 0.026312563568353653, + -0.002734404755756259, + -0.006604090332984924, + -0.11178947240114212, + 0.03791189193725586, + -0.003196626203134656, + -0.014298050664365292, + 0.007577188313007355, + 0.060773201286792755, + -0.03233279660344124, + -0.0018991625402122736, + 0.0261309202760458, + 0.01730816625058651, + 0.010509456507861614, + -0.018514808267354965, + 0.03583594784140587, + -0.014064506627619267, + 0.04611185938119888, + 0.044061869382858276, + -0.037133410573005676, + -0.04894033074378967, + 0.02000689134001732, + -0.017243292182683945, + 0.0009001154685392976, + 0.01972144842147827, + 0.027895471081137657, + -0.05189855024218559, + -0.020409105345606804, + -0.03804163634777069, + 0.0013234129874035716, + 0.0018569949315860868, + -0.003717233659699559, + -0.005267702974379063, + -0.019098665565252304, + 0.037470754235982895, + 0.010288887657225132, + -0.01200802717357874, + -0.022316375747323036, + 0.09803635627031326, + -0.0052158040925860405, + -0.00025908727548085153, + -0.02249802090227604, + 0.00616295263171196, + 0.021252455189824104, + 0.0016096659237518907, + -0.04873273894190788, + 0.03998783230781555, + -0.026273639872670174, + 0.07764022797346115, + -0.015816083177924156, + 0.04585236683487892, + -0.02101891301572323, + -0.007616112008690834, + 0.017580633983016014, + -0.016283169388771057, + -0.0023175945971161127, + 0.06279724091291428, + 0.03562835231423378, + -0.031061282381415367, + 0.08677437156438828, + -0.07421492785215378, + 0.029115086421370506, + -0.027324587106704712, + 0.00927037838846445, + -0.05838586762547493, + -0.02583250217139721, + -0.017360065132379532, + 0.0531960129737854, + -0.009730977937579155, + -0.06679343432188034, + 0.07551238685846329, + 0.03173596411943436, + -0.016620511189103127, + 0.0515093095600605, + 0.011008979752659798, + 0.0249113030731678, + 0.06082509830594063, + -0.04655299708247185, + 0.07764022797346115, + -0.02609199658036232, + -0.06933645904064178, + 0.017126521095633507, + -0.07551238685846329, + -0.012604860588908195, + -0.038897961378097534, + 0.0050957887433469296, + 0.0019088934641331434, + 0.029063187539577484, + -0.016114499419927597, + 0.004177833441644907, + -0.0047195241786539555, + 0.03651062771677971, + 0.06149978190660477, + -0.05254727974534035, + -0.0404549203813076, + 0.03568025305867195, + -0.045333381742239, + -0.04520363733172417, + -0.019397083669900894, + 0.005270946305245161, + 0.05449347570538521, + 0.01996796764433384, + 0.012838403694331646, + -0.11396921426057816, + 0.040766309946775436, + -0.07789972424507141, + 0.022173654288053513, + -0.00405457429587841, + 0.02748028188943863, + 0.03347456455230713, + 0.04022137448191643, + -0.01532304659485817, + 0.0657554641366005, + -0.05568714439868927, + 0.050601083785295486, + 0.05833397060632706, + -0.03819733113050461, + 0.03150241822004318, + 0.04037707298994064, + 0.008530824445188046, + 0.0055077336728572845, + -0.0032469029538333416, + 0.03978023678064346, + -0.02221257984638214, + 0.023951180279254913, + -0.00326149957254529, + -0.05791877955198288, + -0.022874286398291588, + 0.004404889419674873, + -0.03656252846121788, + 0.04707198590040207, + 0.0002809819998219609, + -0.022679666057229042, + 0.026753701269626617, + 0.03124292753636837, + -0.03721126168966293, + 0.03617328777909279, + 0.07603137195110321, + -0.04727957770228386, + -0.09284650534391403, + -0.06279724091291428, + 0.0110998023301363, + -0.03414924442768097, + -0.029608123004436493, + 0.006688425317406654, + 0.0009609340922906995, + -0.05823017284274101, + 0.001973766600713134, + 0.04543717950582504, + -0.04304984584450722, + -0.0030506616458296776, + 0.08910980820655823, + 0.08065034449100494, + 0.00468708761036396, + -0.058074478060007095, + 0.09767307341098785, + -0.006604090332984924, + -0.009490947239100933, + -0.05854156240820885, + 0.0060883485712111, + -0.06539217382669449, + 0.03718531131744385, + 0.04546312987804413, + 0.010249963030219078, + 0.01534899603575468, + -0.017710380256175995, + -0.06290104240179062, + 0.0040870108641684055, + -0.024210672825574875, + 0.009335251525044441, + 0.026857499033212662, + -0.017593607306480408, + 0.03344861418008804, + -0.006026719231158495, + -0.007116588763892651, + 0.027246737852692604, + -0.015842031687498093, + 0.09248321503400803, + 0.013428749516606331, + 0.021979035809636116, + 0.12621727585792542, + -0.010762461461126804, + 0.05688080936670303, + 0.048525143414735794, + 0.014181278645992279, + -0.03209925442934036, + -0.07514909654855728, + -0.07546049356460571, + -0.018177466467022896, + -0.027376484125852585, + -0.0070906393229961395, + 0.000994181609712541, + -0.027220789343118668, + 0.014259126037359238, + 0.04538528248667717, + -0.03318912163376808, + 0.0015885821776464581, + -0.021732516586780548, + -0.02786952070891857, + 0.08848702907562256, + -0.01777525246143341, + -0.008537311106920242, + -0.020383154973387718, + -0.017632532864809036, + 0.007330670021474361, + 0.046085912734270096 + ] + }, + { + "id": "5145883f-9bdf-472e-9059-0f132cbce8c0", + "productId": "da53a0e7-5b33-449b-8013-c30c3d65f9a3", + "category": "Other", + "docType": "customerRating", + "userName": "hcoleman", + "reviewDate": "2022-01-15T21:43:33", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8482841a-4b3b-413b-84fb-db42450b59dc", + "productId": "da53a0e7-5b33-449b-8013-c30c3d65f9a3", + "category": "Other", + "docType": "customerRating", + "userName": "marc52", + "reviewDate": "2021-08-29T03:18:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Ultra (Black)", + "description": "This Amazing Speaker Ultra (Black) is now available. This speaker is an incredible sounding beast and has the sound of a real beast. This speaker would only make one speech.\n\n\nWhat it does: These speakers are great speakers. I have used them on a few gigs and a couple hundred other gigs, but they are still quite amazing. This speaker is the single best speaker at what it does. It", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-13T18:02:51", + "price": 623.09, + "stock": 31, + "priceHistory": [ + { + "priceDate": "2021-02-03T15:22:43", + "newPrice": 646.98 + }, + { + "priceDate": "2021-07-23T15:22:43", + "newPrice": 635.09 + }, + { + "priceDate": "2022-01-09T15:22:43", + "newPrice": 650.16 + }, + { + "priceDate": "2022-06-28T15:22:43", + "newPrice": 637.05 + }, + { + "priceDate": "2022-12-15T15:22:43", + "newPrice": 571.75 + }, + { + "priceDate": "2023-03-02T15:22:43", + "newPrice": 623.09 + } + ], + "descriptionVector": [ + 0.021146541461348534, + 0.03637484088540077, + -0.0450567901134491, + -0.05689327046275139, + -0.018201379105448723, + -0.023617127910256386, + -0.06470981240272522, + 0.03241073712706566, + -0.010273171588778496, + 0.133551225066185, + 0.006424221675843, + 0.034588202834129333, + -0.00040042336331680417, + -0.05248250439763069, + -0.007202386390417814, + -0.03816148266196251, + 0.0043095676228404045, + -0.00631953589618206, + -0.007809564005583525, + 0.011996998451650143, + -0.01980656199157238, + -0.08603780716657639, + -0.031768664717674255, + -0.03564902022480965, + -0.054855383932590485, + -0.010105674155056477, + -0.002097206423059106, + 0.020895294845104218, + 0.03749149292707443, + -0.04536386579275131, + 0.06705477833747864, + 0.06063404306769371, + 0.03369488567113876, + 0.06448648124933243, + -0.030735764652490616, + -0.008996004238724709, + 0.01568891853094101, + 0.001213483395986259, + 0.01750347390770912, + 0.025599179789423943, + 0.037575241178274155, + 0.004794611595571041, + -0.02579459361732006, + 0.01606578752398491, + 0.027232278138399124, + 0.03961312398314476, + -0.053543321788311005, + 0.061359863728284836, + -0.03056826815009117, + 0.02917245589196682, + 0.025208352133631706, + 0.010580250062048435, + -0.0625881776213646, + 0.0017709356034174562, + 0.01751743257045746, + -0.030400769785046577, + 0.03221532329916954, + -0.03696108236908913, + 0.04106476902961731, + -0.02120237424969673, + -0.00838184729218483, + -0.010412752628326416, + -0.03394613042473793, + -0.0012038872810080647, + -0.014781641773879528, + 0.01489330641925335, + 0.020630091428756714, + -0.015018929727375507, + -0.0019628596492111683, + 0.04949546977877617, + 0.004138580523431301, + -0.0073419674299657345, + -0.013057814911007881, + 0.03104284405708313, + 0.04807174205780029, + -0.02143966220319271, + 0.045308034867048264, + 0.07900291681289673, + -0.03908271715044975, + 0.013923217542469501, + 0.05940572917461395, + 0.07961707562208176, + -0.017154520377516747, + -0.04653634876012802, + 0.12964294850826263, + 0.072470523416996, + -0.048853397369384766, + -0.11194406449794769, + -0.01554933749139309, + 0.04273974150419235, + -0.0798962414264679, + 0.05323624238371849, + 0.04804382473230362, + 0.012318034656345844, + 0.024077745154500008, + -0.030261188745498657, + -0.023896289989352226, + 0.021132582798600197, + -0.08151537925004959, + -0.0036395778879523277, + 0.03615151345729828, + -0.11132990568876266, + -0.034951113164424896, + -0.03241073712706566, + -0.06822725385427475, + 0.026673953980207443, + -0.04232100024819374, + 0.008004977367818356, + -0.021565284579992294, + -0.03804981708526611, + 0.06269984692335129, + -0.003625619923695922, + 0.02223527431488037, + -0.006364899687469006, + 0.025822509080171585, + 0.021425703540444374, + -0.04273974150419235, + -0.06180652603507042, + -0.020755713805556297, + -0.006713852286338806, + 0.007293113972991705, + -0.07464798539876938, + 0.06571479886770248, + 0.008507469668984413, + 0.012506469152867794, + -0.04120434820652008, + 0.041316013783216476, + 0.0927935317158699, + -0.00650797039270401, + -0.034532371908426285, + -0.04321431741118431, + 0.040757689625024796, + 0.016261201351881027, + 0.031210340559482574, + -0.021886320784687996, + -0.012666987255215645, + 0.051952097564935684, + -0.022640058770775795, + -0.07475965470075607, + -0.0053285094909369946, + -0.05170084908604622, + 0.055692870169878006, + 0.057619091123342514, + 0.02621333673596382, + -0.014321023598313332, + -0.017154520377516747, + -0.053068745881319046, + 0.02585042454302311, + 0.021467577666044235, + 0.02804184891283512, + 0.00929610338062048, + -0.10200589150190353, + -0.0035069759469479322, + -0.05094711109995842, + -0.018327001482248306, + 0.026017922908067703, + -0.10619332641363144, + 0.014334982261061668, + -0.006860412657260895, + 0.09083940088748932, + -0.036123596131801605, + -0.0290328748524189, + -0.04603385552763939, + 0.03966895863413811, + -0.019974060356616974, + 0.06001988425850868, + 0.09910260140895844, + 0.07464798539876938, + -0.09793011844158173, + 0.04070185869932175, + 0.04120434820652008, + -0.05669785663485527, + -0.03880355507135391, + -0.05027712136507034, + 0.06565896421670914, + 0.03673775494098663, + 0.06158319488167763, + 0.03428112715482712, + 0.01055931206792593, + 0.005241271574050188, + -0.018382834270596504, + 0.11523818224668503, + -0.00896808784455061, + 0.0049655986949801445, + 0.059964053332805634, + 0.07475965470075607, + 0.04508470371365547, + -0.01524225901812315, + -0.029060792177915573, + 0.01610766164958477, + -0.002378113567829132, + -0.03199199587106705, + -0.0074396743439137936, + -0.03726816177368164, + -0.0192482378333807, + 0.021104667335748672, + -0.0097846370190382, + 0.04251641407608986, + 0.02270985022187233, + 0.011606170795857906, + 0.01670786179602146, + 0.03310864418745041, + 0.11132990568876266, + 0.00228913058526814, + -0.0652681365609169, + -0.05198001116514206, + -0.022835472598671913, + 0.08441866934299469, + 0.05468788743019104, + 0.00985442753881216, + -0.0004553834442049265, + -0.011920228600502014, + -0.0855911523103714, + 0.0028753713704645634, + 0.04703884199261665, + -0.017168479040265083, + -0.0031074248254299164, + 0.0007075018365867436, + 0.004159517586231232, + -0.08972275257110596, + 0.03637484088540077, + -0.02931203693151474, + 0.05262208729982376, + 0.012150537222623825, + -0.09547349065542221, + 0.02716248854994774, + 0.034392789006233215, + -0.04807174205780029, + 0.08229703456163406, + 0.03347155451774597, + -0.08302285522222519, + 0.02056029997766018, + 0.05636285990476608, + 0.0347277857363224, + -0.03871980682015419, + 0.0025333974044770002, + 0.006961608771234751, + 0.0012352929916232824, + -0.039445627480745316, + 0.05019337311387062, + -0.005007472820580006, + 0.05318041145801544, + -0.0797845721244812, + 0.0027567273937165737, + 0.0032068765722215176, + -0.05454830452799797, + 0.09670180827379227, + -0.028265178203582764, + -0.09379851818084717, + -0.011431694962084293, + -0.06532397121191025, + -0.016261201351881027, + -0.03028910607099533, + 0.04804382473230362, + -0.03285739943385124, + 0.05320832505822182, + 0.10133589804172516, + -0.040338948369026184, + -0.015381840988993645, + -0.06990222632884979, + -0.0341973751783371, + -0.002939927624538541, + 0.012687924318015575, + 0.02083946205675602, + -0.13466787338256836, + 0.022598184645175934, + 0.004414253402501345, + -0.005883344449102879, + -0.0031475545838475227, + 0.011738773435354233, + -0.031070759519934654, + 0.06588229537010193, + -0.004958619829267263, + 0.048155490309000015, + -0.011194407008588314, + 0.039110634475946426, + -0.03056826815009117, + 0.012164495885372162, + 0.060243215411901474, + -0.00032343564089387655, + 0.09737179428339005, + 0.03126617148518562, + 0.03690525144338608, + 0.01821533776819706, + 0.019890310242772102, + -0.0006521056056953967, + 0.053962063044309616, + -0.0018843453144654632, + 0.012806568294763565, + -0.05496704950928688, + -0.018131589516997337, + -0.02042071893811226, + 0.01732201874256134, + 0.06822725385427475, + 0.03215949237346649, + 0.07252635806798935, + 0.032326988875865936, + -0.027357902377843857, + -0.0077048782259225845, + 0.016498489305377007, + 0.023296089842915535, + 0.01341374684125185, + -0.0017578498227521777, + -0.007390820886939764, + 0.006323025096207857, + 0.06370482593774796, + -0.029842445626854897, + 0.03369488567113876, + -0.044414713978767395, + -0.02350546233355999, + 0.07006973028182983, + -0.029200373217463493, + 0.012136579491198063, + -0.035984016954898834, + 0.07587630301713943, + -0.03215949237346649, + 0.03601193055510521, + -0.02724623680114746, + -0.00973578356206417, + 0.027371859177947044, + -0.06275567412376404, + -0.0697905644774437, + -0.05717243254184723, + 0.06459815055131912, + -0.010475563816726208, + -0.004909766372293234, + 0.046145521104335785, + -0.08531198650598526, + 0.027944141998887062, + -0.005248250439763069, + 0.00898902490735054, + -0.02406378649175167, + 0.08531198650598526, + 0.015116636641323566, + 0.028153514489531517, + -0.021830487996339798, + -0.06420732289552689, + 0.0279022678732872, + 0.06543563306331635, + 0.010203381069004536, + 0.10362502932548523, + -0.0333319753408432, + 0.002280406653881073, + 0.011236281134188175, + -0.00232402584515512, + -0.06644061952829361, + -0.04218141734600067, + -0.008584239520132542, + -0.004721331875771284, + -0.028027890250086784, + 0.0014533884823322296, + -0.007034888956695795, + 0.025738760828971863, + 0.007481548469513655, + 0.0022908751852810383, + -0.00435493141412735, + -0.0001487411354901269, + -0.018187420442700386, + 0.008737778291106224, + 0.0008004105184227228, + -0.018717829138040543, + 0.051672935485839844, + -0.00873079989105463, + 0.02519439347088337, + 0.017587222158908844, + 0.03525819256901741, + 0.05627911165356636, + -0.013818532228469849, + 0.02266797609627247, + -0.034532371908426285, + 0.0008152410155162215, + 0.007087232079356909, + -0.05184043198823929, + -0.01933198608458042, + -0.0609690360724926, + 0.024622110649943352, + 0.08402784168720245, + -0.03444862365722656, + 0.01014056894928217, + 0.048155490309000015, + 0.0355931892991066, + -0.0006752237095497549, + 0.04287932440638542, + 0.04218141734600067, + 0.07073971629142761, + 0.037910234183073044, + -0.04031103104352951, + -0.013609159737825394, + -0.04706675559282303, + 0.051393773406744, + -0.018508458510041237, + -0.0275812316685915, + -0.06867391616106033, + 0.026813535019755363, + 0.029200373217463493, + -0.04056227579712868, + 0.03603984788060188, + 0.04966296628117561, + -0.04243266209959984, + 0.028111640363931656, + -0.005820533260703087, + 0.013148542493581772, + 0.024510446935892105, + -0.00835393089801073, + -0.044414713978767395, + -0.03581651672720909, + 0.02195611223578453, + 0.08056622743606567, + -0.03436487540602684, + -0.07554131001234055, + 0.04943963512778282, + -0.023659002035856247, + -0.08145954459905624, + -0.034867364913225174, + -0.017489515244960785, + 0.07207969576120377, + 0.041036851704120636, + 0.014809558168053627, + 0.05577661842107773, + -0.014334982261061668, + 0.04346556216478348, + 0.03726816177368164, + 0.03000994212925434, + 0.023240258917212486, + -0.08737778663635254, + 0.030400769785046577, + 0.10306670516729355, + -0.08480949699878693, + -0.09843261539936066, + -0.05220334231853485, + -0.025459598749876022, + -0.042348913848400116, + 0.06443064659833908, + -0.00647307513281703, + -0.00022289362095762044, + -0.054297059774398804, + 0.027316026389598846, + 0.04667593166232109, + -0.03645859286189079, + 0.03296906128525734, + -0.023993996903300285, + 0.015214343555271626, + -0.0028055806178599596, + 0.005394810810685158, + -0.09195604920387268, + -0.08145954459905624, + -0.03830106183886528, + 0.03084743022918701, + 0.026994990184903145, + 0.021565284579992294, + 0.013944154605269432, + -0.0032016420736908913, + -0.0507516972720623, + 0.02171882428228855, + 0.10663998126983643, + -0.03375071659684181, + 0.014460604637861252, + 0.05778658762574196, + -0.04809965565800667, + 0.006225318182259798, + -0.029367869719862938, + 0.09619931131601334, + 0.01600995473563671, + -0.022877346724271774, + -0.0726938545703888, + 0.027944141998887062, + -0.046983007341623306, + 0.0710747092962265, + -0.002357176272198558, + 0.016749735921621323, + 0.012248244136571884, + -0.054715804755687714, + -0.016023913398385048, + 0.026115629822015762, + -0.0608573742210865, + -0.039780620485544205, + -0.035146526992321014, + -0.035788603127002716, + 0.03830106183886528, + 0.000803027709480375, + -0.08190620690584183, + 0.020965086296200752, + 0.018103672191500664, + -0.01737785153090954, + 0.05474371835589409, + -0.07314050942659378, + -0.017754720523953438, + -0.0010773919057101011, + -0.08045456558465958, + -0.007362904492765665, + 0.051254190504550934, + 0.11373070627450943, + -0.02171882428228855, + 0.023254215717315674, + 0.022249232977628708, + -0.025529388338327408, + 0.01728014461696148, + -0.012464595027267933, + -0.02163507603108883, + 0.06281150877475739, + 0.041930172592401505, + -0.025459598749876022, + -0.0036046826280653477, + -0.008221328258514404, + -0.0017552326899021864, + -0.011180448345839977, + -0.017768677324056625, + -0.010426710359752178, + -0.060522377490997314, + 0.012666987255215645, + -0.010168485343456268, + -0.009400788694620132 + ] + }, + { + "id": "b39ea987-9cd3-40a9-8043-323de8cf381c", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "kimberlyrodgers", + "reviewDate": "2021-08-15T18:56:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e3d0326c-be9b-4f72-a471-603274f020d7", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "jeremyperry", + "reviewDate": "2022-03-17T13:48:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8182cc89-5e3f-45f7-ae15-56aaac7d183c", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "greenejanice", + "reviewDate": "2022-06-05T22:44:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4a6235e9-fbd5-4889-ad62-b35849a0d458", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "jamesrogers", + "reviewDate": "2022-12-16T01:39:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b94b64a8-48fc-4660-ae19-2d94ddf11633", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "benjamin59", + "reviewDate": "2022-07-29T04:47:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "851129de-116d-4db1-8778-2450f9a14d05", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "richardheath", + "reviewDate": "2021-02-15T13:35:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2e61ea70-5929-4e7e-9638-e5c06792b935", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "alyssa16", + "reviewDate": "2022-04-04T15:20:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ee7cbcf4-5078-49a1-bc32-a14136096f17", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "owenssarah", + "reviewDate": "2021-02-03T15:22:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9465a241-0680-4055-b749-88d5bf417703", + "productId": "91aa5465-ae43-4238-a04b-c0d6410947ef", + "category": "Media", + "docType": "customerRating", + "userName": "lpowell", + "reviewDate": "2022-03-02T06:40:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "12830cec-5fff-47c3-b83d-20f48f480608", + "productId": "12830cec-5fff-47c3-b83d-20f48f480608", + "category": "Media", + "docType": "product", + "name": "Amazing TV Super (Red)", + "description": "This Amazing TV Super (Red) is an amazing TV show about a woman who has taken to fighting crime and her ability to fight crime in her life. The show centers around a person known as \"The Widow\" who is just waiting her turn. Along the way she meets and meets many people who share her story. I have watched this show a lot as I watched a couple", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-06-01T20:00:08", + "price": 154.03, + "stock": 37, + "priceHistory": [ + { + "priceDate": "2021-10-11T12:18:00", + "newPrice": 146.37 + }, + { + "priceDate": "2021-12-28T12:18:00", + "newPrice": 157.63 + }, + { + "priceDate": "2022-03-16T12:18:00", + "newPrice": 166.05 + }, + { + "priceDate": "2022-06-02T12:18:00", + "newPrice": 152.59 + }, + { + "priceDate": "2023-05-18T12:18:00", + "newPrice": 154.03 + } + ], + "descriptionVector": [ + -0.012581607326865196, + 0.00780346617102623, + -0.03373393043875694, + 0.05264688655734062, + -0.0030643106438219547, + -0.008851413615047932, + 0.0019415098940953612, + -0.05354512855410576, + 0.08967436105012894, + 0.10908634215593338, + 0.03276083618402481, + 0.015332469716668129, + 0.032137054949998856, + -0.05100011080503464, + 0.08937495201826096, + -0.06597079336643219, + -0.0157566387206316, + 0.07370564341545105, + 0.031987350434064865, + -0.032860640436410904, + 0.016392892226576805, + 0.041294120252132416, + -0.01029234193265438, + 0.008614378049969673, + -0.027421291917562485, + 0.015332469716668129, + -0.0800931304693222, + 0.03692767396569252, + -0.06562147289514542, + -0.000686545972712338, + -0.0035867250990122557, + -0.0069488901644945145, + 0.09366654604673386, + -0.01989852637052536, + -0.014558984898030758, + 0.043165456503629684, + -0.0003573079884517938, + 0.047307342290878296, + 0.029142919927835464, + -0.03323490545153618, + 0.05409405007958412, + -0.014771069400012493, + -0.030415428802371025, + 0.0329105406999588, + 0.035979531705379486, + -0.04755685478448868, + -0.009288058616220951, + -0.07220857590436935, + -0.01524514053016901, + 0.03632884472608566, + 0.007872081361711025, + -0.01423462014645338, + -0.032137054949998856, + -0.041019659489393234, + 0.01815194822847843, + -0.058884669095277786, + 0.0286189466714859, + -0.08707944303750992, + -0.04511164501309395, + -0.024526961147785187, + -0.06831619888544083, + -0.03253627568483353, + 0.016916867345571518, + 0.0059071802534163, + -0.019848624244332314, + -0.033409565687179565, + -0.02230631187558174, + -0.02433982864022255, + -0.07360583543777466, + 0.01494572777301073, + 0.028020119294524193, + 0.042566630989313126, + 0.014109864830970764, + -0.06182890385389328, + -0.056189946830272675, + 0.006668189540505409, + 0.06262733787298203, + -0.021570252254605293, + 0.022693052887916565, + -0.006253377068787813, + 0.008177733048796654, + -0.0006066243513487279, + 0.020559731870889664, + 0.023129697889089584, + 0.0357799232006073, + -0.027571000158786774, + -0.008333677425980568, + -0.14801010489463806, + -0.0036802918184548616, + 0.016717256978154182, + 0.012425662949681282, + 0.04498688876628876, + -0.011714556254446507, + -0.028094973415136337, + -0.020634585991501808, + 0.04326526075601578, + -0.0061629293486475945, + 0.025974126532673836, + -0.03997171297669411, + 0.05384454131126404, + 0.02846924029290676, + -0.00010263102012686431, + -0.02218155562877655, + -0.11816855520009995, + 0.0014947287272661924, + -0.0543934665620327, + -0.06093066185712814, + 0.03882395848631859, + -0.027820510789752007, + -0.06347567588090897, + -0.02507588639855385, + -0.013648268766701221, + -0.05134942755103111, + 0.07390525192022324, + 0.004678336903452873, + 0.053595028817653656, + -0.023366734385490417, + -0.03281073644757271, + 0.055890534073114395, + -0.038175228983163834, + 0.06197860836982727, + 0.0214704480022192, + -0.022555822506546974, + 0.032162006944417953, + 0.02334178239107132, + 0.013985108584165573, + -0.006562147289514542, + 0.12475565075874329, + 0.01977377198636532, + -0.012226054444909096, + 0.008633091114461422, + 0.055042196065187454, + -0.02105875499546528, + 0.04882936179637909, + -0.04521144926548004, + 0.025674713775515556, + -0.01474611833691597, + -0.061629291623830795, + 0.004865470342338085, + 0.03248637169599533, + 0.01788996160030365, + -0.04166838899254799, + 0.04665861651301384, + 0.06961365789175034, + -0.002792967250570655, + 0.019661491736769676, + -0.004279118962585926, + -0.07964400947093964, + 0.02162015438079834, + -0.09177026152610779, + 0.09286811202764511, + -0.006643238477408886, + -0.03393353894352913, + -0.045860178768634796, + 0.05329561606049538, + 0.09276830404996872, + -0.06457352638244629, + 0.008102879859507084, + -0.04109451174736023, + 0.04109451174736023, + -0.014072437770664692, + -0.05853535234928131, + -0.034133147448301315, + 0.07106082141399384, + 0.022718004882335663, + -0.009113400243222713, + 0.02707197703421116, + 0.011633465066552162, + -0.03647855296730995, + 0.03538070246577263, + 0.018825627863407135, + -0.07121052592992783, + 0.0557907298207283, + -0.03463216871023178, + -0.010966021567583084, + 0.059034377336502075, + 0.09426537156105042, + 0.05249717831611633, + -0.04448786750435829, + -0.08328687399625778, + 0.0014986272435635328, + 0.021557776257395744, + -0.06936414539813995, + -0.009836982935667038, + -0.03363412618637085, + 0.03705243021249771, + 0.019062664359807968, + -0.06317626684904099, + -0.04695802927017212, + -0.0629267543554306, + 0.021719958633184433, + -0.08124088495969772, + 0.0053676120005548, + -0.061629291623830795, + -0.04648395627737045, + 0.07635045796632767, + 0.0040077753365039825, + -0.07744830846786499, + -0.017004195600748062, + 0.0038892575539648533, + -0.00013596417556982487, + -0.01815194822847843, + 0.06896492838859558, + -0.012768740765750408, + 0.019524259492754936, + -0.01509543415158987, + 0.04019627347588539, + -0.02346653863787651, + 0.03602943196892738, + 0.0429658479988575, + -0.009419051930308342, + -0.05269678682088852, + 0.01730360835790634, + 0.040271125733852386, + 0.07410486042499542, + 0.0018385864095762372, + -0.03196239843964577, + -0.014471655711531639, + -0.012213578447699547, + 0.062327925115823746, + -0.006234664004296064, + 0.0065995738841593266, + 0.04563561826944351, + 0.019574161618947983, + 0.011546135880053043, + -0.009263107553124428, + 0.018688397482037544, + -0.007709899451583624, + -0.02006070874631405, + -0.027296537533402443, + -0.10509416460990906, + -0.06941404938697815, + 0.022406116127967834, + -0.0053769685328006744, + -0.027670804411172867, + 0.035156141966581345, + -0.0021613917779177427, + -0.006743043195456266, + -0.10679084062576294, + -0.04538610577583313, + 0.017216280102729797, + -0.010267389938235283, + -0.011334051378071308, + -0.0600823238492012, + 0.07475358992815018, + -0.02347901463508606, + 0.01687943935394287, + 0.04628434777259827, + -0.059034377336502075, + -0.06242772936820984, + -0.029317578300833702, + 0.056738872081041336, + 0.025088362395763397, + -0.011221771128475666, + 0.0015571065014228225, + 0.025674713775515556, + -0.019274748861789703, + -0.07635045796632767, + 0.007079883478581905, + -0.011939115822315216, + -0.06622029840946198, + -0.053046103566884995, + -0.03832493722438812, + 0.02749614603817463, + 0.012650223448872566, + -0.008252586238086224, + -0.0701625794172287, + -0.011901689693331718, + -0.022069275379180908, + 0.0501517727971077, + 0.03874910622835159, + 0.05973300710320473, + -0.007984361611306667, + 0.06088075786828995, + 0.019000286236405373, + 0.009425289928913116, + 0.05883476510643959, + -0.024165170267224312, + 0.04456271976232529, + -0.07570172846317291, + 0.059633202850818634, + -0.05923398584127426, + 0.08213911950588226, + -0.02391565963625908, + 0.04383913800120354, + -0.07669977843761444, + -0.006898987572640181, + -0.042466823011636734, + 0.05184844881296158, + -0.05124962329864502, + -0.06257743388414383, + -0.02689731866121292, + 0.06457352638244629, + -0.0214704480022192, + 0.08383580297231674, + -0.0028943312354385853, + -0.018937908113002777, + -0.04628434777259827, + 0.031288716942071915, + -0.057886622846126556, + 0.03448246419429779, + -0.03460721671581268, + -0.003418304957449436, + -0.04935333505272865, + -0.03460721671581268, + 0.0013637352967634797, + 0.0279203150421381, + 0.044163502752780914, + 0.02533787302672863, + -0.11697090417146683, + 0.06542186439037323, + -0.03380878269672394, + 0.003954754211008549, + 0.015943773090839386, + 0.023990511894226074, + -0.03565516695380211, + -0.03952259197831154, + 0.019786246120929718, + 0.004297832492738962, + -0.057736918330192566, + 0.07046199589967728, + 0.0004148125590290874, + -0.043889038264751434, + 0.04314050450921059, + 0.03308520093560219, + -0.023079795762896538, + -0.042292166501283646, + -0.04361457750201225, + 0.006481056101620197, + -0.01095354650169611, + -0.006250258069485426, + 0.06337587535381317, + -0.01759054698050022, + 0.08932504802942276, + 0.042167410254478455, + -0.052048057317733765, + -0.026423247531056404, + 0.07719879597425461, + 0.023691099137067795, + 0.02058468386530876, + -0.013922731392085552, + -0.011090777814388275, + 0.020148038864135742, + -0.034432560205459595, + -0.00994926318526268, + 0.008633091114461422, + -0.017216280102729797, + 0.028593996539711952, + 0.052596982568502426, + 0.009705989621579647, + 0.0014331305865198374, + -0.009967977181077003, + -0.02649810165166855, + 0.03795066848397255, + 0.021083705127239227, + 0.04376428201794624, + -0.0008194887195713818, + -0.05254708230495453, + 0.013797975145280361, + -0.005511080846190453, + 0.05095021054148674, + 0.015956249088048935, + -0.009543807245790958, + 0.02677256427705288, + 0.002429616404697299, + -0.0443880632519722, + -0.011265435256063938, + 0.04022122174501419, + 0.035280898213386536, + -0.003433899488300085, + 0.02130826562643051, + 0.031862594187259674, + -0.02849419228732586, + -0.0032498848158866167, + -0.0012241648510098457, + -0.04605978727340698, + 0.022144129499793053, + -0.020946474745869637, + 0.002699400531128049, + 0.03765125572681427, + -0.08782798051834106, + -0.005860396660864353, + -0.06267724186182022, + 0.032960444688797, + 0.03303529694676399, + 0.006955127697438002, + -0.010036592371761799, + -0.01702914759516716, + 0.005495486781001091, + -0.05105001479387283, + -0.1188671886920929, + -0.02133321762084961, + 0.043714381754398346, + 0.029567090794444084, + 0.08663032948970795, + -0.00716097466647625, + -0.05129952356219292, + 0.10050315409898758, + -0.010610468685626984, + -0.022293835878372192, + -0.045161545276641846, + -0.011839311569929123, + 0.07495319843292236, + 0.022119177505373955, + -0.0843847244977951, + -0.07315671443939209, + -0.009356673806905746, + -0.04593503102660179, + -0.0021613917779177427, + -0.048729557543992996, + -0.018563641235232353, + 0.01646774634718895, + -0.05129952356219292, + 0.05683867633342743, + 0.02234373800456524, + 0.044288258999586105, + 0.0700627788901329, + 0.060631249099969864, + 0.030116014182567596, + -0.04770656302571297, + 0.007435436826199293, + 0.07989352196455002, + 0.08857651799917221, + -0.004238573368638754, + -0.058635156601667404, + -0.0486796572804451, + 0.06267724186182022, + 0.03158813342452049, + -0.05898447334766388, + -0.06741795688867569, + -0.02231878601014614, + -0.08288765698671341, + -0.0003842084261123091, + 0.022530870512127876, + -0.024102792143821716, + 0.03847464546561241, + -0.0036709350533783436, + 0.01282488089054823, + 0.00873913336545229, + 0.031288716942071915, + -0.03737679496407509, + 0.059633202850818634, + -0.0543934665620327, + 0.026273541152477264, + -0.08842680603265762, + 0.002917722798883915, + 0.08712934702634811, + 0.009606185369193554, + 0.01959911361336708, + -0.008564475923776627, + -0.07051189243793488, + -0.017927387729287148, + -0.010261152870953083, + 0.016293087974190712, + -0.023304356262087822, + -0.016230709850788116, + 0.04096975550055504, + 0.07086121290922165, + -0.07031228393316269, + 0.025238068774342537, + 0.018139472231268883, + 0.05184844881296158, + -0.0008631531964056194, + -0.03854949772357941, + 0.0061255027540028095, + -0.017403414472937584, + -0.04139392450451851, + 0.025799470022320747, + -0.012849831953644753, + 0.008084166795015335, + 0.04326526075601578, + 0.005024534184485674, + -0.08702954649925232, + -0.010067781433463097, + -0.03675301745533943, + 0.03882395848631859, + 0.0428909957408905, + -0.003936040680855513, + -0.0024639242328703403, + -0.01424709614366293, + 0.04850499704480171, + -0.008895077742636204, + 0.03191249817609787, + 0.0018775726202875376, + 0.030440378934144974, + 0.05539150908589363, + -0.0328855887055397, + 0.05544141307473183, + -0.01589387096464634, + -0.10210002958774567, + 0.03218695893883705, + -0.007847130298614502, + -0.029991259798407555, + -0.0314883254468441, + -0.024439632892608643, + -0.019823674112558365, + -0.003047156846150756, + -0.08488374948501587, + 0.009899361059069633, + -0.013211623765528202, + 0.017390938475728035, + 0.06357548385858536, + -0.018102046102285385, + 0.06542186439037323, + 0.03750155121088028, + 0.007840893231332302, + 0.0816401019692421, + 0.07106082141399384, + -0.006874036509543657, + -0.09142094105482101, + 0.018925432115793228, + 0.15399837493896484 + ] + }, + { + "id": "7152096f-807e-46ce-8af1-dacb1bde74dc", + "productId": "12830cec-5fff-47c3-b83d-20f48f480608", + "category": "Media", + "docType": "customerRating", + "userName": "knoxscott", + "reviewDate": "2022-06-04T00:53:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "82b124e4-ab48-473e-83d0-229c0d304522", + "productId": "12830cec-5fff-47c3-b83d-20f48f480608", + "category": "Media", + "docType": "customerRating", + "userName": "elam", + "reviewDate": "2021-10-11T12:18:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1659c5a4-0b84-41d5-9147-40b27403e28b", + "productId": "12830cec-5fff-47c3-b83d-20f48f480608", + "category": "Media", + "docType": "customerRating", + "userName": "alexander04", + "reviewDate": "2021-12-18T21:31:55", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Micro (Steel)", + "description": "This Amazing Stand Micro (Steel) is rated 4.2 out of 5 by 28.\n\nRated 5 out of 5 by Chris from Great stand. I have two large set of 30\" T4 aluminum mini-shinings and these fit with any set.\n", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-12-07T01:36:05", + "price": 425.97, + "stock": 96, + "priceHistory": [ + { + "priceDate": "2021-01-14T17:24:38", + "newPrice": 402.97 + }, + { + "priceDate": "2021-12-21T17:24:38", + "newPrice": 392.76 + }, + { + "priceDate": "2022-11-27T17:24:38", + "newPrice": 402.78 + }, + { + "priceDate": "2025-04-07T17:24:38", + "newPrice": 425.97 + } + ], + "descriptionVector": [ + 0.02710041217505932, + 0.0005105141317471862, + -0.06015434488654137, + 0.004170439206063747, + 0.006763196084648371, + -0.01702706143260002, + -0.06901317834854126, + 0.03148220106959343, + -0.003676297143101692, + 0.10097166150808334, + 0.002155173337087035, + -0.0118415467441082, + -0.004170439206063747, + -0.035292454063892365, + -0.0041079274378716946, + -0.014562304131686687, + 0.006173797883093357, + -0.018825022503733635, + -0.00045469991164281964, + -0.00638217106461525, + 0.06748908013105392, + -0.0955420508980751, + -0.02550487034022808, + 0.04850926250219345, + -0.02432607300579548, + -0.05396268516778946, + 0.00025693149655126035, + -0.0076443166472017765, + -0.011103310622274876, + 0.0015092167304828763, + 0.012823876924812794, + -0.007364501245319843, + -0.004346068017184734, + 0.01986093446612358, + -0.0032148996833711863, + 0.01887265034019947, + 0.03388742357492447, + -0.020801590755581856, + -0.0661078616976738, + 0.10363883525133133, + -0.024064118042588234, + 0.07020387798547745, + 0.06796535849571228, + 0.012883412651717663, + -0.009031486697494984, + 0.01358592789620161, + -0.04236523061990738, + 0.0058374241925776005, + 0.022528111934661865, + 0.02108735963702202, + 0.022301876917481422, + 0.05867787078022957, + -0.02100400999188423, + 0.009382744319736958, + 0.04360356554389, + -0.04336542263627052, + -0.003122620051726699, + 0.204229474067688, + 0.08239668607711792, + -0.07539534568786621, + -0.0041228109039366245, + 0.026695573702454567, + 0.005807656329125166, + -0.03357784077525139, + -0.001274797017686069, + -0.004622906446456909, + 0.004557417705655098, + 0.005953517742455006, + -0.01819395087659359, + 0.021134987473487854, + -0.007316873408854008, + 0.006346449721604586, + -0.020622985437512398, + -0.04086494445800781, + 0.03731665015220642, + -0.040007639676332474, + 0.10411512106657028, + 0.04910461604595184, + 0.010734192095696926, + 0.03626883029937744, + 0.04748525843024254, + 0.013192995451390743, + 0.019741864874958992, + 0.022147085517644882, + 0.07144220918416977, + 0.014240814372897148, + 0.0004509789578150958, + -0.11230716109275818, + -0.04705660417675972, + 0.064631387591362, + -0.02614784985780716, + -0.012109454721212387, + 0.025028588250279427, + 0.03000572882592678, + 0.013943138532340527, + -0.028719769790768623, + -0.057153768837451935, + 0.05658223107457161, + 0.06429798901081085, + 0.01588398590683937, + -0.016943711787462234, + 0.014514676295220852, + -0.003735832404345274, + -0.03888837620615959, + -0.025552498176693916, + 0.04243667423725128, + 0.03422081843018532, + 0.04169843718409538, + 0.013955045491456985, + -0.17460477352142334, + 0.0006065146299079061, + -0.013038204051554203, + 0.0018991722026839852, + -0.023052019998431206, + -0.013645462691783905, + 0.028076790273189545, + -0.030910663306713104, + -0.0077336193062365055, + -0.03993619605898857, + -0.07563348859548569, + -0.019372746348381042, + 0.049914292991161346, + -0.0301009863615036, + 0.04865214601159096, + 0.018944093957543373, + 0.04388933256268501, + -0.0304343830794096, + -0.025885894894599915, + 0.018455905839800835, + 0.007239477708935738, + -0.023849792778491974, + 0.01778911054134369, + 0.05315300449728966, + -0.025647753849625587, + -0.0667746514081955, + 0.011121171526610851, + 0.0489141009747982, + 0.0015687518753111362, + 0.012514294125139713, + -0.014705188572406769, + -0.004777697846293449, + -0.010198376141488552, + -0.0022593599278479815, + 0.040412478148937225, + -0.028910282999277115, + -0.011972524225711823, + -0.031720343977212906, + 0.0012420526472851634, + 0.007084686309099197, + 0.015038586221635342, + 0.01992047019302845, + -0.041674625128507614, + -0.10020960867404938, + -0.07706233114004135, + 0.03731665015220642, + 0.0005920029361732304, + -0.06672702729701996, + 0.032029926776885986, + -0.0911126360297203, + 0.023730721324682236, + 0.056629858911037445, + 0.02152791991829872, + -0.04112689942121506, + 0.031529828906059265, + 0.019777586683630943, + 0.025957336649298668, + 0.04874740168452263, + 0.08892174065113068, + -0.05963043496012688, + 0.029029352590441704, + 0.04086494445800781, + -0.014788538217544556, + -0.01322871632874012, + -0.08625456690788269, + -0.012043965980410576, + -0.01490760874003172, + 0.025885894894599915, + -0.0722995176911354, + 0.038007255643606186, + -0.014859979972243309, + -0.021206429228186607, + 0.018586881458759308, + -0.04431798681616783, + 0.014288442209362984, + 0.03376835212111473, + 0.010632982477545738, + 0.021385036408901215, + 0.03260146453976631, + 0.03300630301237106, + 0.006388124544173479, + 0.010436516255140305, + -0.015455331653356552, + -0.0030452243518084288, + 0.010859216563403606, + -0.03410175070166588, + -0.020777776837348938, + -0.0014228906948119402, + -0.011877267621457577, + -0.012419037520885468, + -0.00388169358484447, + -0.035411521792411804, + 0.03929321840405464, + 0.08534962683916092, + -0.04336542263627052, + 0.0413174144923687, + -0.06644126027822495, + 0.013300159014761448, + 0.0773957297205925, + 0.01677701249718666, + -0.00966851320117712, + -0.012014199048280716, + -0.02821967378258705, + -0.049009356647729874, + 0.06591735035181046, + 0.003765600034967065, + 0.11859407275915146, + 0.063297800719738, + 0.01875358074903488, + -0.025361984968185425, + -0.02069442719221115, + 0.0489141009747982, + -0.06182132661342621, + -0.01438369881361723, + -0.04362737759947777, + -0.06586971879005432, + -0.015764914453029633, + -0.0413174144923687, + -0.0012398200342431664, + 0.05372454226016998, + 0.01084135565906763, + -0.04267481341958046, + -0.016336452215909958, + -0.0692036896944046, + 0.037697672843933105, + -0.04924749955534935, + 0.025909708812832832, + -0.051390763372182846, + -0.06325016915798187, + -0.02364737167954445, + -0.018539253622293472, + -0.027338553220033646, + 0.0165626872330904, + -0.044294171035289764, + -0.009888793341815472, + -0.002741594798862934, + -0.027743391692638397, + 0.07687181979417801, + -0.04091257229447365, + -0.059011269360780716, + -0.02738618105649948, + -0.06401222199201584, + -0.011746290139853954, + 0.002894897945225239, + 0.031124990433454514, + 0.09344641119241714, + 0.029529448598623276, + 0.0480329804122448, + 0.0390312634408474, + 0.03972186893224716, + -0.04646125063300133, + 0.03479235619306564, + -0.030291497707366943, + 0.015598216094076633, + 0.06720330566167831, + -0.0007813991978764534, + 0.07668130844831467, + 0.057153768837451935, + -0.020027633756399155, + -0.04188895225524902, + 0.017896274104714394, + -0.05877312645316124, + -0.008733810856938362, + 0.043460678309202194, + -0.037602417171001434, + -0.07115644216537476, + -0.03888837620615959, + -0.05053345859050751, + 0.06977523118257523, + -0.0012346106814220548, + -0.019408468157052994, + 0.12097547948360443, + 0.011895128525793552, + 0.07372836023569107, + 0.057153768837451935, + 0.03767386078834534, + -0.043746449053287506, + 0.08549251407384872, + -0.07263291627168655, + -0.014943329617381096, + -0.022254249081015587, + -0.027148040011525154, + -0.025981150567531586, + 0.04536580666899681, + 0.06882266700267792, + -0.052009932696819305, + 0.001580658950842917, + 9.097719157580286e-05, + 0.015288633294403553, + 0.02170652523636818, + -0.029529448598623276, + 0.03293485939502716, + 0.06634600460529327, + -0.07220426201820374, + -0.047723397612571716, + 0.012020152062177658, + 0.04791390895843506, + -0.015562495216727257, + -0.0057481215335428715, + -0.0315774567425251, + -0.00868022907525301, + 0.029886659234762192, + 0.020301494747400284, + -0.05524864420294762, + 0.04577064514160156, + 0.0670604258775711, + -0.02845781482756138, + 0.019170327112078667, + 0.024195095524191856, + 0.004578255116939545, + 0.058820754289627075, + 0.0021938711870461702, + -0.04148411005735397, + 0.0033309932332485914, + 0.05010480433702469, + 0.013145366683602333, + -0.030553452670574188, + 0.010329353623092175, + -0.02562393993139267, + -0.019718050956726074, + -0.007150174584239721, + -0.015681564807891846, + 0.00931130163371563, + 0.0023546162992715836, + 0.0444132424890995, + 0.00031125734676606953, + -0.03817395493388176, + -0.03941228613257408, + -0.08249194175004959, + -0.0020286610815674067, + 0.05743953958153725, + -0.005355189088732004, + 0.02013479731976986, + 0.04686609283089638, + 0.005504027009010315, + 0.05324826389551163, + -0.05958280712366104, + 0.05205756053328514, + -0.04488952457904816, + 0.02090875431895256, + -0.023456860333681107, + 0.001486891065724194, + -0.017229480668902397, + -0.013788347132503986, + 0.009507767856121063, + 0.04536580666899681, + 0.004060299135744572, + 0.04996192082762718, + -0.03981712833046913, + 0.0608687661588192, + -0.021789874881505966, + 0.03264909237623215, + -0.04003145173192024, + 0.054629478603601456, + -0.01005549170076847, + 0.05386742949485779, + 0.0075252465903759, + -0.007060871925204992, + 0.00982330460101366, + -0.1142122820019722, + 0.020099075511097908, + -0.08482571691274643, + -0.08001527935266495, + 0.06820350140333176, + 0.055486783385276794, + -0.013347786851227283, + -0.0037894139531999826, + 0.05524864420294762, + 0.020587263628840446, + 0.032577648758888245, + -0.007483571767807007, + -0.05524864420294762, + 0.04829493537545204, + 0.048366378992795944, + 0.020920662209391594, + 0.03241094946861267, + 0.03188703954219818, + -0.0028353629168123007, + 0.09168417006731033, + -0.040198151022195816, + -0.0007464222726412117, + -0.052343327552080154, + -0.03805488348007202, + -0.005200397688895464, + 0.01831302046775818, + 0.03798344358801842, + -0.10678229480981827, + 0.014836166054010391, + 0.05539152771234512, + 0.011799871921539307, + -0.0473661869764328, + -0.01005549170076847, + 0.02164699137210846, + 0.022968672215938568, + 0.003679273882880807, + 0.007656223606318235, + -0.048056796193122864, + 0.0203253086656332, + 0.09935230016708374, + 0.03317300230264664, + -0.11668894439935684, + -0.011359311640262604, + -0.10230524837970734, + 0.010061444714665413, + -0.014645653776824474, + 0.06058299541473389, + 0.061535559594631195, + 0.07572874426841736, + -0.058487359434366226, + 0.05748716741800308, + -0.10297204554080963, + 0.06506004184484482, + -0.04477045312523842, + -0.015145748853683472, + -0.01809869334101677, + -0.03750716149806976, + 0.09439897537231445, + -0.08258719742298126, + 0.023302068933844566, + -0.051390763372182846, + -0.08873122930526733, + -0.006310728844255209, + -0.04060298949480057, + -0.06620311737060547, + 0.046699393540620804, + 0.011031867936253548, + -0.009567302651703358, + 0.014979050494730473, + 0.03934084624052048, + -0.012407130561769009, + -0.004494905937463045, + -0.008197993971407413, + 0.0137049974873662, + 0.029767587780952454, + 0.04477045312523842, + -0.10944946855306625, + -0.024838075041770935, + -0.03722139447927475, + 0.05696325749158859, + 0.04631836712360382, + -0.021730339154601097, + 0.03417319059371948, + 0.001309029757976532, + -0.0675843358039856, + -0.046889904886484146, + 0.01778911054134369, + -0.006227379664778709, + 0.04746144264936447, + 0.10068589448928833, + -0.015991149470210075, + -0.037388090044260025, + -0.030148614197969437, + 0.045222919434309006, + 0.019539445638656616, + 0.0012100525200366974, + 0.008120598271489143, + -0.07206138223409653, + -0.0692036896944046, + -0.0004595371428877115, + -0.013895510695874691, + 0.034339889883995056, + -0.04779484122991562, + -0.040198151022195816, + -0.002531733363866806, + 0.04612785577774048, + 0.009043393656611443, + -0.08306347578763962, + -0.026743201538920403, + -0.02529054321348667, + -0.04829493537545204, + 0.022801972925662994, + -0.026957528665661812, + 0.0600590854883194, + 0.006114262621849775, + 0.060392484068870544, + 0.04691372066736221, + 0.008781438693404198, + -0.05539152771234512, + -0.035697292536497116, + 0.016979431733489037, + 0.036221202462911606, + 0.00276392069645226, + 0.06534580886363983, + 0.02455230802297592, + -0.08106309920549393, + 0.019408468157052994, + 0.03712613508105278, + -0.06325016915798187, + 0.0169318038970232, + -0.09011244773864746, + -0.011871314607560635, + 0.01131763681769371, + -0.0041198343969881535, + -0.03376835212111473, + 0.0773957297205925, + 0.04924749955534935, + 0.02013479731976986, + -0.020492007955908775, + 0.003816204844042659, + -0.007412129547446966, + -0.0017830785363912582, + 0.07077541947364807, + -0.02667175978422165 + ] + }, + { + "id": "5ff20f13-b637-435a-8e46-c07ae04acfa2", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "debbiemitchell", + "reviewDate": "2021-10-30T15:33:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "34def08b-e727-48ef-9691-b6dae1eed13b", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthonymathis", + "reviewDate": "2022-09-03T16:23:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d7a86b75-06f9-4b2c-8389-8aaf989d21dc", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "mackenziejordan", + "reviewDate": "2022-09-11T03:20:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "54923175-a4aa-4d47-8559-ba23638b4d30", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "petersontamara", + "reviewDate": "2021-01-14T17:24:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "741dd98c-f7a0-4311-b220-a18c3e0b7e98", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "pricekenneth", + "reviewDate": "2021-07-26T17:06:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3fdac79a-c63e-49be-bcf1-2a5c9c42aba3", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "shanemoore", + "reviewDate": "2021-07-25T19:44:13", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f032f678-bbd0-4754-97ce-c9bd2efc19fe", + "productId": "7f08f22b-1e73-4b83-bd39-58c6fd4ab980", + "category": "Accessory", + "docType": "customerRating", + "userName": "phambrandon", + "reviewDate": "2022-11-28T04:32:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Super (Silver)", + "description": "This Amazing Stand Super (Silver) is back, not the most expensive to make, but is perfect for any enthusiast. It is extremely resistant to shock when used with large amounts of water and has a very low viscosity which is extremely helpful since we have already received a pair that is still very strong.\n\n", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-08-17T18:07:33", + "price": 732.02, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-04-29T17:07:19", + "newPrice": 663.52 + }, + { + "priceDate": "2022-09-25T17:07:19", + "newPrice": 742.07 + }, + { + "priceDate": "2023-11-27T17:07:19", + "newPrice": 732.02 + } + ], + "descriptionVector": [ + 0.008060501888394356, + 0.003911386709660292, + -0.048526450991630554, + 0.02762114815413952, + 0.03776920959353447, + -0.05441024526953697, + -0.06900086998939514, + -0.01276308111846447, + -0.03310377523303032, + 0.014226600527763367, + 0.04296953231096268, + 0.04513880982995033, + 0.029418975114822388, + -0.056133780628442764, + 0.03809608891606331, + -0.0054269093088805676, + 0.023743193596601486, + -0.01408544834703207, + -0.017458230257034302, + -0.009902902878820896, + 0.07375545054674149, + -0.06810938566923141, + 0.016477597877383232, + 0.01736908219754696, + -0.01906290091574192, + -0.06727733463048935, + -0.00508517399430275, + -0.003645798424258828, + -0.04172145575284958, + 0.06769336014986038, + 0.05265699326992035, + 0.008825692348182201, + 0.009390299208462238, + 0.062166158109903336, + 0.017770249396562576, + 0.0011143551673740149, + 0.00946458987891674, + 0.02705654315650463, + 0.01059380266815424, + 0.03286604583263397, + 0.001699391519650817, + 0.010489796288311481, + 0.025600451976060867, + 0.04617887735366821, + 0.01170072890818119, + -0.004814014304429293, + -0.06305763870477676, + -0.013505984097719193, + 0.018810315057635307, + -0.014806064777076244, + 0.009902902878820896, + -0.019835520535707474, + 0.005634922534227371, + 0.03194484859704971, + -0.010422934778034687, + -0.04035451263189316, + 0.0251992829144001, + 0.15309754014015198, + 0.08326461166143417, + -0.008075360208749771, + -0.012792796827852726, + -0.06596982479095459, + 0.06023460999131203, + 0.06585095822811127, + 0.022925999015569687, + -0.00013987478450872004, + 0.01843886263668537, + -0.032628316432237625, + -0.02716054953634739, + 0.019181765615940094, + -0.029463550075888634, + 0.046268023550510406, + 0.04644631966948509, + 0.04715950787067413, + -0.0022361392620950937, + 0.01635873317718506, + 0.12587755918502808, + 0.003974533174186945, + 0.01356541644781828, + 0.02898809127509594, + 0.050903741270303726, + 0.0637708306312561, + 0.017487946897745132, + -0.0703083798289299, + 0.05723327770829201, + 0.0054677692241966724, + -0.0237580519169569, + -0.09729062765836716, + 0.031647685915231705, + 0.03524333983659744, + -0.004973738454282284, + -0.024946697056293488, + 0.04668404906988144, + 0.003029188606888056, + -0.01199788972735405, + 0.0670396015048027, + -0.04436619207262993, + 0.047248657792806625, + -0.027101116254925728, + -0.0113738514482975, + 0.02288142591714859, + -0.002811889396980405, + -0.014390039257705212, + 0.061512403190135956, + -0.051854658871889114, + 0.03045904077589512, + 0.03714517131447792, + 0.08718714118003845, + -0.010601231828331947, + -0.11934000253677368, + 0.03188541531562805, + -0.057530440390110016, + 0.03084534965455532, + 0.0113738514482975, + 0.037917789071798325, + 0.006522691808640957, + -0.013015667907893658, + 0.010653235018253326, + 0.037264034152030945, + -0.0650189071893692, + 0.03140995651483536, + 0.05967000126838684, + -0.022212812677025795, + 0.03138023987412453, + 0.04050309583544731, + -0.032658033072948456, + -0.031647685915231705, + 0.02001381851732731, + 0.021722495555877686, + 0.0058615077286958694, + -0.09723120182752609, + -0.0032000564970076084, + 0.016239868476986885, + 0.03476788103580475, + -0.06436514854431152, + 0.07530069351196289, + 0.019508643075823784, + 0.0833834782242775, + -0.0748252347111702, + 0.049180205911397934, + -0.01840914599597454, + -0.05140891671180725, + 0.0361645370721817, + 0.07678649574518204, + 0.015452391467988491, + -0.010564086958765984, + -0.04665433615446091, + 0.012235619127750397, + -0.05512343347072601, + -0.004126828629523516, + 0.07256680727005005, + -0.05467769131064415, + -0.03351980075240135, + -0.05625264719128609, + -0.0467434823513031, + 0.017799966037273407, + -0.08599849790334702, + -0.02369861863553524, + 0.0016464596847072244, + 0.060769498348236084, + 0.01723535917699337, + -0.0690603032708168, + -0.04317754507064819, + 0.014895213767886162, + -0.0035046469420194626, + 0.006203243508934975, + 0.08379950374364853, + 0.07672706246376038, + -0.071556456387043, + 0.03512447327375412, + 0.02888408489525318, + -0.055182866752147675, + 0.029329827055335045, + -0.07209134846925735, + 0.026551367715001106, + 0.06650471687316895, + 0.008023357018828392, + -0.01794854737818241, + 0.02056356705725193, + -0.08035243302583694, + -0.04133514687418938, + -0.009397728368639946, + -0.02549644559621811, + -0.009353154338896275, + 0.020340695977211, + 0.08183824270963669, + -0.056163497269153595, + 0.03081563301384449, + 0.026744522154331207, + 0.06071006879210472, + 0.0060620917938649654, + -0.060799214988946915, + -0.018691450357437134, + 0.06858484447002411, + -0.0037962363567203283, + 0.008327946998178959, + 0.009278863668441772, + 0.021989941596984863, + -0.027695439755916595, + -0.012094467878341675, + -0.07969868183135986, + 0.03782864287495613, + 0.04496051371097565, + -0.04112713411450386, + -0.014635196886956692, + -0.024798115715384483, + 0.028378911316394806, + 0.03848239779472351, + 0.05969971790909767, + 0.01658160425722599, + -0.020771579816937447, + 0.018201133236289024, + -0.11036573350429535, + 0.02473868429660797, + -0.0062441034242510796, + 0.04882361367344856, + 0.05824362859129906, + -0.00038375603617168963, + -0.000981561141088605, + 0.014144880697131157, + -0.013305400498211384, + -0.06852541118860245, + -0.015690119937062263, + 0.004071110859513283, + -0.07262624055147171, + -0.025303291156888008, + -0.0042382641695439816, + 0.016967913135886192, + 0.03586737811565399, + 0.018424004316329956, + -0.02555587701499462, + -0.05438052862882614, + 0.006760421209037304, + -0.0020429843571037054, + -0.058213911950588226, + 0.07024894654750824, + -0.06068035215139389, + -0.029716135933995247, + -0.05735214427113533, + 0.017309648916125298, + -2.3288281226996332e-05, + -0.005356333684176207, + -0.08231370151042938, + 0.007555327843874693, + 0.019315488636493683, + 0.020340695977211, + 0.019048044458031654, + -0.00312576605938375, + -0.031231660395860672, + -0.07042724639177322, + -0.04430675879120827, + -0.0280371755361557, + -0.008142221719026566, + 0.029522981494665146, + 0.047961845993995667, + 0.1035904511809349, + 0.12480777502059937, + 0.002158134477213025, + -0.00479172682389617, + -0.030429324135184288, + -0.0018711879383772612, + -0.04041394591331482, + 0.007135587278753519, + 0.06103694438934326, + -0.08148164302110672, + 0.06745562702417374, + -0.02334202453494072, + 0.04778354614973068, + 0.005423194728791714, + 0.009293721988797188, + -0.013030526228249073, + 0.02686338685452938, + 0.014635196886956692, + -0.06359253078699112, + -0.004475993104279041, + -0.022925999015569687, + -0.026120483875274658, + 0.07518182694911957, + 0.03886870667338371, + -0.04103798419237137, + 0.07821287214756012, + 0.016537029296159744, + 0.07767798006534576, + 0.03381696343421936, + 0.10139145702123642, + -0.05901624634861946, + 0.011611579917371273, + -0.09461618214845657, + 0.0016009568935260177, + -0.018498295918107033, + -0.020905302837491035, + 0.0033616379369050264, + 0.025184426456689835, + -0.0013028668472543359, + 0.0302956011146307, + -0.010229780338704586, + 0.011633867397904396, + 0.014910071156919003, + -0.02069728821516037, + -0.02415921911597252, + 0.027918310835957527, + 0.032331157475709915, + -0.024961555376648903, + -0.05304330214858055, + -0.059135112911462784, + 0.025704458355903625, + -0.0015183088835328817, + -0.04103798419237137, + -0.059521421790122986, + -0.08439382910728455, + 0.14239972829818726, + -0.02771029807627201, + -0.006400112994015217, + -0.009784038178622723, + 0.08558247238397598, + -0.055866338312625885, + -0.019211482256650925, + 0.0357782281935215, + -0.021276753395795822, + 0.027368562296032906, + 0.035332486033439636, + 0.02418893575668335, + -0.014382610097527504, + 0.05889738351106644, + 0.0740526095032692, + -0.0816599428653717, + 0.025615310296416283, + -0.03084534965455532, + -0.031617969274520874, + 0.0027784588746726513, + 0.0044017028994858265, + -0.0365508496761322, + -0.03283632919192314, + 0.018334856256842613, + -0.04415817931294441, + -0.05158721283078194, + -0.03081563301384449, + -0.019627507776021957, + -0.052865006029605865, + 0.012896803207695484, + 0.024530671536922455, + -0.03340093791484833, + -0.05030941963195801, + -0.0018925464246422052, + 0.06775279343128204, + -0.03976019099354744, + 0.09574539214372635, + -0.07488466054201126, + 0.028586924076080322, + 0.0077039082534611225, + 0.001959407702088356, + -0.033698100596666336, + 0.042256347835063934, + 0.010571515187621117, + 0.08837579190731049, + 0.0015164515934884548, + 0.08332404494285583, + -0.021722495555877686, + 0.06109637767076492, + -0.003430356504395604, + 0.023089438676834106, + 0.01285965833812952, + 0.010682950727641582, + 0.028809795156121254, + 0.09467560797929764, + 0.07244794070720673, + -0.023490605875849724, + 0.030102446675300598, + -0.0020374127198010683, + -0.000784227391704917, + -0.03354951739311218, + -0.005471483804285526, + 0.004851159173995256, + -0.021633347496390343, + 0.04240492731332779, + -0.008387379348278046, + 0.0654943659901619, + 0.014538619667291641, + 0.06198786199092865, + 0.03239059075713158, + -0.02383234165608883, + 0.0197166558355093, + -0.006804995238780975, + 0.02366890199482441, + 0.07690536230802536, + -0.020845869556069374, + -0.0569361187517643, + 0.06971405446529388, + 0.00943487323820591, + 0.01762166991829872, + -0.10923651605844498, + -0.000751725398004055, + -0.005939512979239225, + 0.02650679461658001, + 0.007232164964079857, + 0.006548693403601646, + -0.02585303969681263, + 0.04228606075048447, + 0.007339885924011469, + 0.03919558599591255, + -0.03316320851445198, + 0.04246436059474945, + 0.0031944846268743277, + -0.040532808750867844, + -0.052181534469127655, + -0.01576440967619419, + 0.0076221888884902, + 0.04234549403190613, + -0.06035347282886505, + -0.05610406771302223, + -0.03387639671564102, + -0.06264161318540573, + 0.011611579917371273, + 0.016641035676002502, + 0.037323467433452606, + 0.07601387798786163, + 0.11922114342451096, + -0.014553477987647057, + 0.07571671903133392, + -0.08106561750173569, + 0.020845869556069374, + 0.04169173911213875, + 0.05604463443160057, + -0.0024497241247445345, + -0.053845640271902084, + 0.0463571734726429, + -0.01949378475546837, + -0.01360999047756195, + -0.005452910903841257, + -0.0540536530315876, + 0.07292339950799942, + -0.05993744730949402, + -0.005170607939362526, + -0.013245968148112297, + -0.0463571734726429, + -0.022138521075248718, + 0.057471007108688354, + -0.03218257427215576, + 0.013023097068071365, + 0.023683760315179825, + -0.012978523038327694, + 0.015437533147633076, + 0.00020128038886468858, + 0.04641660675406456, + -0.054499395191669464, + -0.10353101789951324, + -0.019478928297758102, + 0.039938487112522125, + -0.01876574009656906, + 0.003543649334460497, + -0.010526941157877445, + -0.01985037885606289, + -0.024129502475261688, + 0.03934416547417641, + -0.05331074818968773, + -0.01739879883825779, + 0.005880080629140139, + 0.09027761965990067, + 0.045584551990032196, + 0.04436619207262993, + 0.018958894535899162, + 0.06240388751029968, + 0.04733780398964882, + -0.07714308798313141, + 0.01609128713607788, + 0.02157391607761383, + -0.024753542616963387, + 0.08879181742668152, + 0.005954370833933353, + 0.0471297912299633, + -0.02307458035647869, + -0.05215182155370712, + -0.1003216803073883, + 0.052538130432367325, + -0.07565728574991226, + -0.04365300387144089, + 0.02069728821516037, + 0.0017142496071755886, + 0.011202983558177948, + -0.00938287004828453, + -0.042910102754831314, + 0.08171937614679337, + -0.048526450991630554, + -0.0028360337018966675, + -0.012332196347415447, + -0.07999584078788757, + -0.04439590871334076, + 0.01876574009656906, + 0.00794906634837389, + 0.02405521273612976, + -0.001110640587285161, + 0.07898548990488052, + 0.02762114815413952, + -0.039581894874572754, + -0.027442852035164833, + -0.054172515869140625, + -0.006556122563779354, + -0.037917789071798325, + -0.0056126355193555355, + 0.053815923631191254, + 0.024768399074673653, + 0.013149389997124672, + -0.027071399614214897, + 0.002847177442163229, + 0.04279123619198799, + 0.05969971790909767, + -0.0035120758693665266, + 0.010942967608571053, + -0.03019159473478794, + -0.023252876475453377, + 0.039611611515283585, + 0.00913771241903305 + ] + }, + { + "id": "1a48657e-f961-4887-8587-be335a03e8c0", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "fcampbell", + "reviewDate": "2022-09-26T01:22:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c3b51760-7513-48aa-8ebc-259f03640390", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "lawsontroy", + "reviewDate": "2021-04-29T17:07:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4b85ac50-9f6f-4385-94e3-fce70768aed8", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomas29", + "reviewDate": "2021-07-27T12:05:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a42f6038-3850-41a4-9cb1-b9447245a618", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "robinsonmary", + "reviewDate": "2021-11-01T08:11:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2698eb5e-e3b1-44af-9363-38afecd4b8e0", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "fmarshall", + "reviewDate": "2021-12-12T09:41:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f9f62e7a-fc33-4c92-bd1a-dc475222c841", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "shanebryant", + "reviewDate": "2021-10-02T00:01:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bdda8ad0-ddfe-46d8-a37d-f1c866a4d121", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "vincentrodriguez", + "reviewDate": "2022-05-18T01:25:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eedf24cf-c2fa-46c2-81b5-ef96455c9fdb", + "productId": "6ef80ff2-b307-443b-a824-225796d8ea1c", + "category": "Accessory", + "docType": "customerRating", + "userName": "powellbarbara", + "reviewDate": "2022-09-16T21:00:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "86173772-fde0-42f8-ae7f-c21a29f30707", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Super (Silver)", + "description": "This Awesome Filter Super (Silver) is rated 4.2 out of 5 by 17.\n\nRated 4 out of 5 by Gave it my first time to my niece, who was 10 or 11, and it worked like a charm The filter didn't sound like an extension of what anyone else's had to replace, which I'm sure wasn't for people who weren't that older but didn't have any experience with", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-03-21T02:50:28", + "price": 347.83, + "stock": 75, + "priceHistory": [ + { + "priceDate": "2021-03-17T01:09:14", + "newPrice": 378.87 + }, + { + "priceDate": "2021-08-14T01:09:14", + "newPrice": 376.61 + }, + { + "priceDate": "2022-01-11T01:09:14", + "newPrice": 375.53 + }, + { + "priceDate": "2022-06-10T01:09:14", + "newPrice": 342.11 + }, + { + "priceDate": "2022-11-07T01:09:14", + "newPrice": 316.12 + }, + { + "priceDate": "2024-12-12T01:09:14", + "newPrice": 347.83 + } + ], + "descriptionVector": [ + 0.037834737449884415, + 0.023538952693343163, + -0.019348395988345146, + 0.03584721311926842, + -0.01494232565164566, + -0.04669477045536041, + -0.08352377265691757, + -0.024975715205073357, + 0.011925125494599342, + 0.10881078243255615, + -0.04571298137307167, + -0.05962562933564186, + -0.028352105990052223, + 0.040133554488420486, + -0.03024384193122387, + 0.03692478686571121, + -0.05459696054458618, + -0.019551938399672508, + -0.04521011561155319, + 0.001652276492677629, + 0.019623776897788048, + 0.03742765262722969, + -0.07691466808319092, + -0.003406323492527008, + 0.02170708030462265, + -0.0027762434910982847, + -0.019731532782316208, + 0.03785868361592293, + -0.037834737449884415, + -0.014870488084852695, + 0.047963909804821014, + 0.0014120677951723337, + -0.05019088834524155, + 0.10555412620306015, + -0.006441483739763498, + 0.021970488131046295, + 0.010925378650426865, + -0.008476896211504936, + -0.03941517323255539, + 0.07969240844249725, + -0.018462393432855606, + -0.023981954902410507, + -0.029405731707811356, + 0.029525460675358772, + 0.002723861485719681, + -0.07648363709449768, + -0.012008937075734138, + -0.010027402080595493, + 0.03682900220155716, + 0.02067740075290203, + 0.06015244126319885, + 0.007854299619793892, + -0.0013581891544163227, + 0.007830353453755379, + -0.011637773364782333, + 0.003163869958370924, + -0.030483303591609, + 0.05737470090389252, + 0.07753726094961166, + -0.03395547717809677, + 0.0071478914469480515, + -0.054980095475912094, + 0.035535916686058044, + -0.03156087547540665, + -0.0902765542268753, + -0.01276323664933443, + -0.06795884668827057, + 0.0009368886239826679, + 0.022006407380104065, + 0.05110083892941475, + -0.012332208454608917, + 0.023634737357497215, + -0.04348599910736084, + 0.07902191579341888, + 0.05316019803285599, + -0.007375379092991352, + 0.09741247445344925, + -0.05507588014006615, + -0.04638347029685974, + 0.08227857947349548, + 0.012104720808565617, + 0.005025674123317003, + -0.008027908392250538, + 0.02219797484576702, + 0.024233387783169746, + 0.014990217983722687, + -0.0016597595531493425, + -0.095879927277565, + 0.0060373940505087376, + 0.0076507581397891045, + -0.002604131354019046, + 0.005055606830865145, + -0.01390067394822836, + -0.023981954902410507, + -0.011458178050816059, + 0.025789879262447357, + -0.05641685798764229, + 0.002900463528931141, + -0.018390554934740067, + 0.030650924891233444, + -0.03476964309811592, + -0.07782461494207382, + -0.05747048556804657, + 0.01738482154905796, + -0.004172596614807844, + 0.009219223633408546, + 0.0013858767924830317, + -0.06283439695835114, + -0.0004519814101513475, + -0.0721733495593071, + 0.05689578130841255, + -0.01354148332029581, + -0.017253117635846138, + -0.029621245339512825, + 0.021754972636699677, + 0.02376643940806389, + -0.04827520623803139, + -0.0015924113104119897, + -0.021395782008767128, + 0.025334905833005905, + -0.0014614564133808017, + 0.1007649153470993, + 0.030866440385580063, + 0.020725293084979057, + 0.047006066888570786, + -0.02595750242471695, + 0.043246541172266006, + -0.030483303591609, + 0.04231264442205429, + -0.006327739916741848, + -0.037978410720825195, + 0.009237183257937431, + -0.019456153735518456, + -0.02825632132589817, + -0.05081348866224289, + 0.017504552379250526, + -0.03721213713288307, + 0.1007649153470993, + 0.0018034357344731688, + 0.04535379260778427, + 0.00853676162660122, + -0.030148059129714966, + 0.040947720408439636, + 0.017516525462269783, + 0.02290438301861286, + -0.0046814498491585255, + -0.10277638584375381, + 0.027561886236071587, + 0.041019558906555176, + -0.016103709116578102, + 0.07610049843788147, + -0.0747116282582283, + -0.04995143041014671, + -0.01390067394822836, + -0.026604045182466507, + 0.057949405163526535, + -0.019635748118162155, + 0.09176120907068253, + 0.005283094011247158, + -0.008321247063577175, + -0.04772444814443588, + -0.029405731707811356, + -0.001141178305260837, + -0.06431905180215836, + 0.049664076417684555, + 0.1070866733789444, + -0.010913405567407608, + 0.03321314975619316, + -0.07653152942657471, + 0.032375041395425797, + 0.02185075730085373, + 0.01000345591455698, + 0.034362562000751495, + -0.018713826313614845, + -0.04171399399638176, + 0.02138380892574787, + 0.00022430700482800603, + -0.0031369305215775967, + -0.08687621355056763, + 0.0004680701531469822, + 0.011643759906291962, + 0.06623473018407822, + -0.02358684502542019, + -0.04030117765069008, + 0.04221685975790024, + -0.004259401001036167, + 0.014511297456920147, + 0.004115724936127663, + -0.024736255407333374, + 0.07801618427038193, + -0.04238448292016983, + -0.00860261358320713, + -0.004049873445183039, + 0.0150141641497612, + -0.1005733460187912, + 0.03596694394946098, + -0.04947251081466675, + -0.019096963107585907, + 0.0019366355845704675, + -0.026436423882842064, + -0.04662293195724487, + 0.03912782296538353, + 0.07011399418115616, + -0.0842900425195694, + 0.09597571194171906, + 0.05177132785320282, + 0.053064413368701935, + 0.08500842750072479, + -0.004663490224629641, + -0.04542562738060951, + 0.05952984467148781, + -0.026077233254909515, + -0.030435411259531975, + -0.03520067036151886, + 0.05531534180045128, + 0.05086137726902962, + -0.029836760833859444, + -0.044108595699071884, + -0.0672883614897728, + -0.036350082606077194, + 0.051148731261491776, + -0.020665427669882774, + 0.02351500652730465, + 0.00913541205227375, + -0.056847888976335526, + -0.03675716370344162, + -0.0021297005005180836, + 0.029094433411955833, + 0.039750419557094574, + 0.0761483907699585, + -0.004262394271790981, + 0.015924112871289253, + -0.06182866171002388, + 0.05732680857181549, + -0.019779425114393234, + 0.0179116353392601, + -0.08218279480934143, + 0.031153792515397072, + 0.005166356917470694, + 0.041522424668073654, + 0.026316693052649498, + 0.01607976295053959, + -0.05952984467148781, + -0.07303541153669357, + 0.09295850992202759, + -0.09118650108575821, + 0.01442748587578535, + -0.07643574476242065, + -0.05258549377322197, + -0.037020571529865265, + -0.06776727735996246, + 0.014774703420698643, + -0.05081348866224289, + 0.09195277839899063, + 0.014008430764079094, + 0.14281415939331055, + 0.01837858185172081, + 0.006770741660147905, + -0.05694367364048958, + -0.013397806324064732, + -0.008584653958678246, + 0.02543068863451481, + 0.035775378346443176, + 0.059050921350717545, + -0.04638347029685974, + -0.029381785541772842, + 0.005067579913884401, + -0.004184569697827101, + -0.007339459843933582, + 0.03704451769590378, + -0.07533422857522964, + 0.06101449951529503, + -0.003789460053667426, + 0.015552950091660023, + -0.022114163264632225, + -0.036948733031749725, + -0.019587857648730278, + 0.019647721201181412, + 0.022652950137853622, + 0.03800235688686371, + 0.12815918028354645, + 0.060966607183218, + 0.006489375606179237, + 0.042408429086208344, + 0.08500842750072479, + -0.06513321399688721, + -0.0125716682523489, + -0.06594738364219666, + 0.0012219961499795318, + 0.036517705768346786, + -0.024520739912986755, + 0.02818448282778263, + -0.04104350507259369, + -0.07284384220838547, + 0.0002690187538973987, + 0.013685159385204315, + 0.0712634027004242, + -0.04207318276166916, + 0.004717369098216295, + -0.02722664177417755, + -0.013254130259156227, + 0.013876727782189846, + -0.008434991352260113, + -0.0316566601395607, + -0.033165257424116135, + -0.00687849847599864, + 0.007369392551481724, + -0.01664249412715435, + -0.05023878067731857, + -0.07835143059492111, + 0.045593250542879105, + 0.0032746202778071165, + 0.02634063921868801, + 0.025478580966591835, + 0.12739290297031403, + -0.05574636906385422, + -0.07265227288007736, + 0.018498312681913376, + -0.013936592265963554, + 0.0051633636467158794, + -0.0408758819103241, + 0.011733557097613811, + 0.08342798799276352, + 0.0861099436879158, + 0.018294770270586014, + -0.016989711672067642, + -0.01767217367887497, + 0.0010079784551635385, + 0.005432756617665291, + -0.015744518488645554, + 0.043773353099823, + 0.013816862367093563, + -0.030267788097262383, + 0.04195345565676689, + 0.034721750766038895, + -0.08711567521095276, + 0.009039628319442272, + -0.015636760741472244, + 0.01020101085305214, + 0.03285396099090576, + -0.015696626156568527, + -0.0009047111379913986, + 0.02067740075290203, + 0.036517705768346786, + 0.08371534198522568, + -0.043773353099823, + 0.0410674512386322, + -0.07662731409072876, + -0.0022180015221238136, + -0.03845733404159546, + 0.0013155352789908648, + -0.06475008279085159, + 0.00036199670284986496, + 0.004995741415768862, + 0.03010016679763794, + -0.02796896919608116, + 0.03203979507088661, + -0.018426474183797836, + 0.07428060472011566, + -0.006692917086184025, + 0.027106912806630135, + -0.026891397312283516, + 0.005145404487848282, + 0.005103498697280884, + -0.03211163356900215, + 0.033165257424116135, + -0.04494670778512955, + 0.03235109522938728, + -0.01894131489098072, + -0.07475952059030533, + -0.053208090364933014, + -0.0071897972375154495, + -0.010398565791547298, + 0.04188161715865135, + -0.001878267154097557, + -0.0502866730093956, + 0.0033644179347902536, + -0.018282797187566757, + 0.01696576550602913, + 0.07150286436080933, + -0.006651011295616627, + 0.027250587940216064, + 0.006830606609582901, + -0.020354129374027252, + 0.010608093813061714, + 0.03168060630559921, + -0.009123439900577068, + 0.04681449756026268, + -0.012823102064430714, + 0.023958008736371994, + -0.001980037894099951, + -0.03304553031921387, + -0.003807419678196311, + -0.017253117635846138, + -6.337280501611531e-05, + -0.01020101085305214, + -0.03972647339105606, + 0.013936592265963554, + 0.09276694059371948, + -0.11647351831197739, + 0.012930858880281448, + 0.04990353807806969, + 0.009925631806254387, + -0.08960606157779694, + -0.03136930614709854, + -0.028376052156090736, + 0.008363152854144573, + 0.010955311357975006, + -0.04623979330062866, + -0.06791095435619354, + 0.006788700819015503, + -0.009380859322845936, + 0.036876894533634186, + -0.004325252491980791, + 0.03493726626038551, + 0.0716465413570404, + 0.06144552677869797, + -0.02273675985634327, + 0.07595682144165039, + -0.035679593682289124, + -0.008357166312634945, + 0.11494097113609314, + 0.07456795126199722, + 0.04578481987118721, + 0.04628768563270569, + 0.03898414596915245, + 0.02847183682024479, + 0.03318920359015465, + 0.022042324766516685, + -0.06254704296588898, + 0.004816146567463875, + 0.014846541918814182, + -0.02626880072057247, + 0.004447976127266884, + -0.0176362544298172, + -0.015517030842602253, + 0.03788262978196144, + 0.008009948767721653, + -0.052250247448682785, + 0.00012702622916549444, + -0.022605057805776596, + -0.026675883680582047, + -0.07629206776618958, + 0.022389542311429977, + -0.11206744611263275, + -0.05105294659733772, + -0.014259863644838333, + 0.08907925337553024, + -0.008506828919053078, + 0.0027433177456259727, + 0.024879930540919304, + 0.05057402700185776, + -0.026604045182466507, + -0.026220908388495445, + -0.020545698702335358, + 0.01795952580869198, + 0.07854299247264862, + 0.10277638584375381, + 0.013481617905199528, + -0.03321314975619316, + -0.12001752853393555, + 0.08941449970006943, + -0.02156340517103672, + 0.0005148397758603096, + 0.011727570556104183, + -0.030818548053503036, + -0.0870198905467987, + -0.05052613466978073, + 0.00017295397992711514, + 0.012068801559507847, + -0.01065598614513874, + -0.010997217148542404, + -0.069826640188694, + -0.015038110315799713, + -0.029309947043657303, + 0.06968296319246292, + 0.01671433262526989, + -0.021790891885757446, + 0.08960606157779694, + 0.0446833036839962, + -0.008093760348856449, + 0.042719725519418716, + -0.032207418233156204, + 0.040851935744285583, + 0.08898346871137619, + 0.013709105551242828, + 0.032375041395425797, + 0.013170319609344006, + 0.047389205545186996, + 0.0179116353392601, + 0.00038725227932445705, + 0.025310959666967392, + -0.011667706072330475, + -0.05814097449183464, + -0.030531195923686028, + -0.015995951369404793, + -0.033620234578847885, + -0.06029611825942993, + -0.006501348689198494, + -0.01600792445242405, + 0.07226913422346115, + 0.0170016847550869, + 0.018282797187566757, + 0.008345193229615688, + -0.0410674512386322, + 0.0009713110630400479, + -0.025239121168851852, + -0.06431905180215836, + -0.0042863404378294945, + 0.014295782893896103, + 0.022209947928786278, + 0.0332849882543087 + ] + }, + { + "id": "da1bc0d9-d95d-4943-8d50-4173ed6fd59a", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "adammontes", + "reviewDate": "2022-08-01T15:26:33", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b155a48d-5451-435e-94ec-e00cc5d80015", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "mcphersoncindy", + "reviewDate": "2022-08-20T00:25:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "659e977a-93f7-4a3a-955a-f8dda67d3a8e", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "evelynmiller", + "reviewDate": "2022-06-09T07:05:15", + "stars": 4, + "verifiedUser": true + }, + { + "id": "afdde52d-22dd-4e59-935d-449dc7f5315b", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "vfrost", + "reviewDate": "2021-05-29T22:03:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "12fa9b07-9f0a-4843-aab5-280c692eee22", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "simmonssusan", + "reviewDate": "2021-04-29T17:56:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4d66f2c9-8771-430c-91e9-bb6ffa78ffee", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "terrenceayala", + "reviewDate": "2021-03-17T01:09:14", + "stars": 5, + "verifiedUser": true + }, + { + "id": "68f6d1e0-ba0f-4394-a0d4-e1e121a2abf2", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "bowenregina", + "reviewDate": "2021-08-29T14:33:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b97d4165-400e-4010-8ed2-f3962faad493", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "gonzalezdawn", + "reviewDate": "2021-07-22T15:40:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e675cf7b-9488-410d-80cf-5e3ac46bcd75", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "butleremily", + "reviewDate": "2021-07-21T15:00:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "297bdcae-2795-4059-9d5c-5217b4ad2e26", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "hnguyen", + "reviewDate": "2022-11-10T12:32:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "79a14bd5-b3f2-4a73-9b57-604565f461f5", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "richard99", + "reviewDate": "2021-08-26T04:09:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3f02504c-00d4-4128-be0e-27f7994c5c79", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "shari44", + "reviewDate": "2022-02-22T05:14:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "366ad8f9-2b0f-4ef8-b6e1-ac8be0eeeaa3", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "henrybobby", + "reviewDate": "2022-08-25T03:33:01", + "stars": 5, + "verifiedUser": true + }, + { + "id": "bcd7e1a0-ffd6-4570-b0c5-90bbb6222be0", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "gailgeorge", + "reviewDate": "2021-12-24T15:52:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a453bc10-d79a-4ab1-92c9-18f4fb027604", + "productId": "86173772-fde0-42f8-ae7f-c21a29f30707", + "category": "Other", + "docType": "customerRating", + "userName": "christina81", + "reviewDate": "2022-01-11T00:26:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Super (Red)", + "description": "This Basic Stand Super (Red) is a fully compatible Super-Heavy-Dry Ball Thrower (Dry Ball Thrower) designed to fit the latest Super-Heavy-Dry Bat", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-11-30T10:16:01", + "price": 960.38, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-03-13T15:44:38", + "newPrice": 966.32 + }, + { + "priceDate": "2022-01-20T15:44:38", + "newPrice": 921.31 + }, + { + "priceDate": "2022-11-29T15:44:38", + "newPrice": 1008.95 + }, + { + "priceDate": "2023-03-18T15:44:38", + "newPrice": 960.38 + } + ], + "descriptionVector": [ + -0.011386556550860405, + -0.034712281078100204, + -0.043936144560575485, + 0.11930982768535614, + -0.012007392942905426, + -0.012846546247601509, + -0.008432464674115181, + -0.004066139925271273, + 0.009012367576360703, + 0.07559199631214142, + 0.0549338236451149, + 0.020890135318040848, + 0.06795092672109604, + -0.10686580091714859, + 0.029800167307257652, + -0.005942295305430889, + -0.039024028927087784, + 0.04298100993037224, + 0.009237506426870823, + -0.07870300859212875, + 0.10686580091714859, + -0.050185445696115494, + -0.01052011363208294, + 0.021777044981718063, + -0.0333750955760479, + -0.01019263919442892, + -0.03523078188300133, + 0.007654713466763496, + -0.040115609765052795, + 0.048029571771621704, + 0.0007705028401687741, + 0.030291378498077393, + 0.06685934960842133, + 0.07138941437005997, + 0.02189984731376171, + -0.0014105276204645634, + 0.006873550359159708, + 0.027889899909496307, + -0.02462880127131939, + -0.07346341758966446, + -0.0027477145195007324, + -0.004414081573486328, + 0.020344344899058342, + 0.03910589590668678, + -0.005195244215428829, + 0.03086445853114128, + -0.03299304097890854, + 0.0383690781891346, + -0.041179902851581573, + -0.05370579659938812, + 0.063420869410038, + 0.011891412548720837, + 0.027207661420106888, + 0.012805611826479435, + 0.04691070318222046, + 0.01354242954403162, + 0.02580225095152855, + 0.20314326882362366, + 0.058999963104724884, + -0.03684086725115776, + -0.05179552733898163, + -0.09092871844768524, + 0.03703189268708229, + 0.07919421792030334, + -0.05438803508877754, + -0.03457583487033844, + 0.000964514329098165, + 0.017697259783744812, + 0.055861666798591614, + -0.002706780331209302, + -0.04532790929079056, + 0.0732451006770134, + -0.05779922381043434, + 0.006788270547986031, + 0.050785817205905914, + 0.00864395871758461, + 0.07439126074314117, + 0.058126699179410934, + 0.03738665580749512, + -0.018638748675584793, + 0.03007306158542633, + -0.03591302037239075, + 0.011079548858106136, + 0.01895257830619812, + 0.011004502885043621, + 0.02008509449660778, + 0.03798702731728554, + -0.06795092672109604, + -0.012969349510967731, + 0.01773819513618946, + 0.02996390499174595, + 0.07204435765743256, + 0.0911470279097557, + 0.02228190191090107, + -0.04772938787937164, + 0.10855775326490402, + -0.02565215900540352, + 0.02531103976070881, + -0.056380171328783035, + 0.038532815873622894, + 0.018938934430480003, + 0.0014975130325183272, + -0.09982509911060333, + 0.014135976321995258, + -0.017151469364762306, + 0.023591799661517143, + 9.684585529612377e-05, + 0.007675180211663246, + -0.03277472406625748, + -0.09436719864606857, + -0.026088790968060493, + -0.03877842426300049, + -6.667812704108655e-05, + 0.02027612179517746, + -0.06074649468064308, + -0.0107793640345335, + -0.07237183302640915, + -0.022418349981307983, + -0.0013192782644182444, + -0.013985884375870228, + -0.001845454447902739, + -0.010915812104940414, + 0.03476686030626297, + 0.0016586917918175459, + 0.007893496192991734, + -0.07586489617824554, + -0.02019425295293331, + 0.0010242101270705462, + 0.004536884371191263, + -0.04947591945528984, + -0.07515536993741989, + -0.002703369129449129, + 0.010281330905854702, + -0.028817743062973022, + -0.1163625568151474, + 0.08170485496520996, + -0.0047210888005793095, + -0.024274036288261414, + -0.01425877958536148, + 0.0749916285276413, + -0.009994790889322758, + -0.07417294383049011, + 0.143324613571167, + 0.07717479020357132, + -0.00286540063098073, + 0.055697932839393616, + -0.0347941517829895, + 0.028845032677054405, + 0.013167198747396469, + -0.029827456921339035, + 0.04936676099896431, + -0.09594998508691788, + -0.014381582848727703, + 0.0034504199866205454, + -0.023182455450296402, + 0.08208690583705902, + -0.10075294226408005, + -0.005205478053539991, + -0.09011002629995346, + 0.058727070689201355, + 0.025147302076220512, + 0.049994420260190964, + -0.025051789358258247, + -0.04546435922384262, + -0.0730813592672348, + 0.06522198021411896, + 0.009257973171770573, + 0.03779599815607071, + 0.03558554872870445, + -0.002520870417356491, + 0.020835556089878082, + -0.01837949827313423, + -0.03408462181687355, + -0.026811962947249413, + -0.013944949954748154, + 0.05024002492427826, + 0.031000906601548195, + -0.04180756211280823, + 0.011877767741680145, + -0.003902402939274907, + -0.018897999078035355, + -0.036977313458919525, + -0.05103142186999321, + 0.004325390327721834, + -0.0011794193414971232, + 0.009066946804523468, + 0.006020752713084221, + 0.08547081053256989, + -0.07520994544029236, + -0.019389212131500244, + 0.050294604152441025, + -0.06347544491291046, + -0.03801431506872177, + -0.025133658200502396, + 0.02217274345457554, + 0.029227087274193764, + -0.004066139925271273, + -0.03752310574054718, + -0.0032917996868491173, + -0.000773914041928947, + -0.04996712878346443, + -0.01788828708231449, + -0.00923068355768919, + -0.04691070318222046, + 0.005471550859510899, + -0.021313123404979706, + 0.03566741570830345, + 0.002111527370288968, + 0.07646526396274567, + 0.023810114711523056, + 0.04650136083364487, + 0.02719401754438877, + 0.005894538480788469, + -0.05487924441695213, + 0.06729598343372345, + 0.06456702947616577, + 0.06391207873821259, + 0.010752075351774693, + -0.019730329513549805, + -0.045300621539354324, + -0.016919508576393127, + -0.043826986104249954, + -0.002425357000902295, + -0.04180756211280823, + -0.09218403697013855, + 0.01600530929863453, + 0.04519146308302879, + -0.060091543942689896, + -0.0030666610691696405, + 0.004301512148231268, + 0.029554560780525208, + -0.003547638887539506, + 0.04729275777935982, + -0.06789635121822357, + -0.01762903667986393, + 0.05425158515572548, + -0.026129724457859993, + -0.06276591867208481, + -0.10009799897670746, + 0.0684967190027237, + -0.029636429622769356, + -0.029036059975624084, + -0.059600334614515305, + -0.033729858696460724, + 0.061456020921468735, + 0.10266321152448654, + 0.058617912232875824, + -0.025543000549077988, + -0.03744123503565788, + -0.07630153000354767, + -0.04066139832139015, + 0.024560578167438507, + -0.03252911940217018, + 0.07280846685171127, + 0.026866542175412178, + 0.08503417670726776, + 0.07952169328927994, + 0.0034316584933549166, + 0.010977213270962238, + -0.03143753856420517, + -0.05370579659938812, + -0.001186241745017469, + 0.0008105843444354832, + 0.07128025591373444, + -0.01940285600721836, + 0.06724140048027039, + -0.014654478058218956, + -0.00828237272799015, + -0.053323742002248764, + 0.0399518720805645, + 0.03411191329360008, + 0.04131634905934334, + -0.012880658730864525, + -0.012457670643925667, + 0.02273217961192131, + -0.01801108941435814, + 0.02859942801296711, + 0.09649577736854553, + -0.03632236644625664, + -0.016182690858840942, + 0.022909561172127724, + 0.11172333359718323, + 0.10080752521753311, + -0.006051453296095133, + -0.010943101719021797, + -0.044427353888750076, + -0.042462509125471115, + -0.07269930839538574, + 0.008630313910543919, + -0.027221307158470154, + -0.03891487047076225, + 0.0530235581099987, + -0.0016450469847768545, + -0.02220003306865692, + 0.07810263335704803, + -0.006880372762680054, + 0.030591564252972603, + -0.013358225114643574, + 0.022609375417232513, + -0.00818685907870531, + -0.014313358813524246, + 0.005338514223694801, + 0.0028551670257002115, + -0.040224768221378326, + 0.014327003620564938, + 0.04213503375649452, + 0.036076758056879044, + 0.06565860658884048, + -0.007334061432629824, + -0.014968307688832283, + 0.05621643364429474, + 0.033647991716861725, + -0.0381234735250473, + 0.0026692571118474007, + 0.0111955301836133, + 0.07766599953174591, + 0.023250680416822433, + -0.009612737223505974, + -0.04489127919077873, + 0.02004415914416313, + -0.045600805431604385, + -0.037659551948308945, + -0.035803861916065216, + -0.0067678033374249935, + 0.1360110193490982, + -0.03007306158542633, + -0.0013926188694313169, + 0.017560813575983047, + -0.0349578894674778, + 0.006078742910176516, + -0.010213106870651245, + -0.04565538465976715, + 0.016810350120067596, + -0.06598608195781708, + -0.07422751933336258, + -0.030509695410728455, + 0.07979458570480347, + 0.009155637584626675, + -0.016141757369041443, + -0.029745588079094887, + 0.03416649252176285, + 0.0466105192899704, + -0.09202029556035995, + -0.0136720547452569, + -0.01607353426516056, + -0.02617065981030464, + 0.055779799818992615, + -0.0014267307706177235, + 0.03351154178380966, + 0.05981865152716637, + 0.0014838682254776359, + -0.053132716566324234, + 0.0015802343841642141, + -0.035203494131565094, + 0.10009799897670746, + -0.016291849315166473, + 0.02144957147538662, + -0.0008741177734918892, + 0.030891748145222664, + -0.03392088785767555, + 0.015841571614146233, + -0.06691392511129379, + -0.0016638085944578052, + -0.0198940671980381, + 0.06855130195617676, + 0.030973616987466812, + -0.018775196745991707, + -0.03583115339279175, + -0.032365381717681885, + 0.002314493292942643, + -0.02757607027888298, + 0.0010071542346850038, + 0.05583437904715538, + -0.003864879719913006, + 0.016523810103535652, + -0.03613133728504181, + 0.018543235957622528, + 0.009544513188302517, + 0.008719004690647125, + 0.02050808258354664, + 0.03866926580667496, + 0.06003696843981743, + 0.015500453300774097, + -0.05610727518796921, + 0.05698053911328316, + -0.033347807824611664, + -0.008104990236461163, + -0.039242345839738846, + -0.001980196451768279, + 0.015759704634547234, + 0.035421811044216156, + -0.01619633659720421, + -0.017833707854151726, + 0.06276591867208481, + -0.011816366575658321, + -0.048056863248348236, + -0.010908990167081356, + 0.031492117792367935, + -0.03684086725115776, + 0.020671818405389786, + 0.007279482204467058, + 0.01724698394536972, + -0.04063411056995392, + -0.08661697059869766, + -0.04205316677689552, + -0.00294556375592947, + -0.06533113867044449, + -0.00473814457654953, + 0.003400957677513361, + -0.013815324753522873, + -0.005689866840839386, + -0.04521875083446503, + 0.040497664362192154, + 0.002659023506566882, + -0.013856259174644947, + 0.022363770753145218, + 0.046965282410383224, + 0.028353821486234665, + 0.02625252865254879, + -0.057144276797771454, + 0.006501730531454086, + 0.02204994112253189, + -0.037550393491983414, + -0.018052024766802788, + -0.011679918505251408, + 0.05062207952141762, + 0.013453738763928413, + 0.010581515729427338, + -0.01528213731944561, + -0.036977313458919525, + -0.002877339953556657, + -0.05730801448225975, + -0.03760497272014618, + -0.010356376878917217, + -0.030728010460734367, + -0.016728481277823448, + -0.008712182752788067, + 0.0265936478972435, + -0.00014902642578817904, + 0.039242345839738846, + -0.002798882545903325, + 0.026757383719086647, + -0.024260392412543297, + 0.010097126476466656, + -0.0256794486194849, + -0.0597640722990036, + -0.0013116030022501945, + 0.039242345839738846, + 0.055288586765527725, + 0.02621159330010414, + -0.04666509851813316, + 0.03416649252176285, + -0.030236799269914627, + 0.0363769456744194, + -0.02999119460582733, + 0.006082153879106045, + 0.04287185147404671, + 0.06860587745904922, + 0.011720852926373482, + 0.021463215351104736, + -0.020890135318040848, + 0.052941687405109406, + 0.06222013011574745, + -0.052259448915719986, + -8.965036977315322e-05, + 0.03544909879565239, + -0.003810300724580884, + 0.01108637172728777, + -0.02224096655845642, + 0.04248979687690735, + 0.017260627821087837, + -0.0648399218916893, + -0.0431993268430233, + 0.05561606213450432, + -0.04535520076751709, + 0.05220486968755722, + 0.007504621054977179, + -0.041561953723430634, + -0.017506234347820282, + 0.02136770263314247, + -0.06091023236513138, + 0.000611029623541981, + -0.03861468657851219, + -0.06735055893659592, + 0.046364910900592804, + -0.03184688091278076, + -0.07193519920110703, + 0.005468139424920082, + 0.032092489302158356, + 0.031028196215629578, + 0.05703511834144592, + 0.06762345880270004, + -0.028353821486234665, + 0.0022752645891159773, + -0.06576776504516602, + -0.022909561172127724, + 0.08732649683952332, + 0.007443219423294067, + 0.03506704792380333, + 0.03806889429688454, + -0.0224319938570261, + -0.08077701181173325, + -0.00012322928523644805, + 0.03523078188300133, + 0.07280846685171127, + 0.06456702947616577, + -0.019307343289256096, + 0.013030750676989555, + 0.040688689798116684, + -0.027412332594394684, + -0.002797176828607917, + -0.03351154178380966 + ] + }, + { + "id": "1c741280-5372-4c27-91fa-658e1286ee78", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "bethanyalexander", + "reviewDate": "2021-05-06T05:33:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ac05d609-ebdb-47b9-a126-7a9210549160", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "rachelcole", + "reviewDate": "2022-06-22T14:03:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6158c1d8-6515-43e8-951e-dfd95656a992", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "michellesmith", + "reviewDate": "2021-10-13T14:51:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f1587140-f068-42b0-8893-4b238b1fc18a", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "courtneybaker", + "reviewDate": "2021-12-06T07:57:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "be2b135f-5595-4a90-aeac-36acb1a427e3", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "shafferricky", + "reviewDate": "2021-03-13T15:44:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "177d9d91-e63b-4b37-b73a-fb90c929ae27", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "verickson", + "reviewDate": "2022-11-29T23:58:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "41dcde6a-33bf-4da8-95b9-84dc2790c158", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "smithmichael", + "reviewDate": "2022-05-19T06:55:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "135ddadc-6f2d-4226-9966-05603baed89c", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "kevin02", + "reviewDate": "2021-06-04T15:44:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3be208b7-aebf-443a-8874-17d24d5196dd", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "theresa61", + "reviewDate": "2022-04-16T04:18:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "963efab0-8975-4790-9035-1bc61ef60f9a", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "salinasjennifer", + "reviewDate": "2022-01-17T17:45:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0baba5a7-74ef-4caa-82e8-e4807ecf3bf0", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrewrodriguez", + "reviewDate": "2021-11-18T07:36:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "40d92bc8-1f69-4e3a-ba1e-b757ef63a771", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "caldwelljohn", + "reviewDate": "2021-10-13T05:06:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c26b04f8-3533-49a9-b602-dc98ace52382", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "shawncoffey", + "reviewDate": "2022-04-21T01:01:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8186d5fe-bb21-4c30-b409-bf69b2408384", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "ericroth", + "reviewDate": "2021-06-18T15:41:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "72a1bb03-919f-4625-8e07-8e005b45dd43", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael44", + "reviewDate": "2022-03-25T14:46:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3dc3fd05-559f-4e06-a379-ccd26914e1d3", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "olivia79", + "reviewDate": "2022-09-07T16:25:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1bbbf93c-874d-481a-b46b-ace791cde0f2", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "michelefuller", + "reviewDate": "2022-10-15T03:40:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "64e9389e-52d1-4ec6-a06b-4a462a93e459", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "newtonshawn", + "reviewDate": "2021-11-06T09:45:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a26a0b61-459d-44c8-9ae1-16ff55d3f87d", + "productId": "5997bfff-660a-4656-b2b2-2ae1b5624a7c", + "category": "Accessory", + "docType": "customerRating", + "userName": "charles94", + "reviewDate": "2022-06-12T16:10:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Gold)", + "description": "This Basic Phone Ultra (Gold) is not compatible with these devices.\n\n1. Please note that your device will not be able to view the file. Please select the file and press \"Add Files\"\n\n2. This is a download page on the mobile device. You can view only these file information provided by the developer or on the apps that you download.\n\n3. Any", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-04-11T14:48:33", + "price": 187.31, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-02-11T11:49:11", + "newPrice": 172.68 + }, + { + "priceDate": "2024-06-05T11:49:11", + "newPrice": 187.31 + } + ], + "descriptionVector": [ + -0.052928753197193146, + -0.011511938646435738, + -0.015541116707026958, + 0.03822486847639084, + 0.015423380769789219, + 0.05562359467148781, + -0.0739380419254303, + 0.03341078385710716, + 0.07556017488241196, + 0.06399591267108917, + -0.0023661612067371607, + -0.07749627530574799, + -0.054315418004989624, + -0.018458345904946327, + 0.07456596195697784, + -0.023743372410535812, + -0.10386908054351807, + -0.021558720618486404, + 0.026359722018241882, + 0.03602713346481323, + 0.06776345521211624, + -0.07535086572170258, + -0.004536096006631851, + -0.022265136241912842, + -0.023128530010581017, + 0.022317461669445038, + -0.008947915397584438, + 0.003044776851311326, + 0.03024500235915184, + -0.10130506008863449, + 0.024489032104611397, + -0.038617320358753204, + -0.031683992594480515, + 0.013958225026726723, + -0.05672245845198631, + 0.02397884428501129, + 0.04296046122908592, + -0.03916675224900246, + -0.028962990269064903, + -0.056565478444099426, + 0.008601249195635319, + -0.05667013302445412, + 0.003973580896854401, + 0.0004300624714232981, + -0.007090307306498289, + -0.021440984681248665, + 0.0022337085101753473, + 0.0409458726644516, + -0.0374922901391983, + -0.01605130545794964, + -0.0019033943535760045, + -0.0030856572557240725, + -0.03880046680569649, + -0.017817340791225433, + 0.02116626873612404, + 0.0019328283378854394, + 0.005844270810484886, + 0.10161902010440826, + 0.017097845673561096, + 0.04458259791135788, + -0.03456197679042816, + -0.0602283701300621, + -0.010197222232818604, + 0.06195515766739845, + -0.03356776759028435, + 0.06650760769844055, + 0.01028879452496767, + 0.013984388671815395, + 0.0035615060478448868, + 0.05269328132271767, + 0.045210521668195724, + 0.037361472845077515, + -0.09994455426931381, + -0.01865457370877266, + -0.026869909837841988, + 0.05415843799710274, + -0.024475950747728348, + 1.7425298210582696e-05, + 0.113758884370327, + -0.04220172017812729, + -0.024502113461494446, + -0.009490808472037315, + -0.06608898937702179, + 0.02261834219098091, + -0.02182035520672798, + 0.047251272946596146, + 0.02264450676739216, + -0.12600339949131012, + -0.06975188106298447, + 0.026974564418196678, + -0.0038885497488081455, + 0.02649053931236267, + 0.005186913069337606, + -0.004882762674242258, + 0.08780469000339508, + 0.01178011391311884, + 0.03937606140971184, + 0.0014054703060537577, + -0.07749627530574799, + -0.016417594626545906, + 0.1069563701748848, + 0.04238486289978027, + -0.026516703888773918, + -0.030192675068974495, + 0.00015790079487487674, + 0.0057428875006735325, + 0.10643310099840164, + -0.05415843799710274, + 0.02287997677922249, + -0.002196098444983363, + -0.0352683924138546, + -0.01529256347566843, + 0.026477457955479622, + 0.02990487590432167, + -0.01773885078728199, + 0.035660844296216965, + 0.0056284223683178425, + -0.029538586735725403, + 0.003447040682658553, + 0.027000728994607925, + -0.02581028826534748, + -0.04230637475848198, + -0.04937051609158516, + 0.008476972579956055, + -0.06781578063964844, + 0.06666459143161774, + 0.07346709817647934, + 0.057821325957775116, + 0.05308573320508003, + -0.06556572020053864, + -0.06383892893791199, + -0.004199241288006306, + 0.012846277095377445, + -0.010321498848497868, + -0.020185137167572975, + 0.026896074414253235, + -0.04034411162137985, + 0.014115205965936184, + -0.01558036170899868, + 0.016326021403074265, + -0.011969799175858498, + 0.03900977224111557, + 0.08743840456008911, + -0.016783883795142174, + -0.045079704374074936, + 0.01797432266175747, + 0.020381363108754158, + -0.023403247818350792, + -0.022670669481158257, + -0.002923770807683468, + -0.05389680340886116, + -0.10585750639438629, + 0.009530053474009037, + -0.032024119049310684, + 0.037361472845077515, + 0.03003569319844246, + 0.0693332627415657, + -0.05256246402859688, + 0.009196468628942966, + 0.01843218319118023, + 0.0016859102761372924, + -0.010635461658239365, + 0.01568501628935337, + -0.08246733993291855, + 0.020041238516569138, + -0.03207644820213318, + 0.032573554664850235, + 0.010157977230846882, + -0.05478636175394058, + 0.05719340220093727, + -0.05107114464044571, + 0.008908670395612717, + -0.03626260533928871, + -0.07576948404312134, + -0.0682867243885994, + -0.009046029299497604, + 0.015187909826636314, + 0.07011816650629044, + 0.06718786060810089, + -0.053059570491313934, + 0.04458259791135788, + -0.013918980024755001, + -0.02536550909280777, + 0.00961508508771658, + -0.026412049308419228, + -0.023573311045765877, + 0.006096094846725464, + 0.027157709002494812, + -0.06802508980035782, + 0.02240903489291668, + 0.009543134830892086, + 0.02138865739107132, + -0.008915211074054241, + -0.0069071631878614426, + 0.10925876349210739, + -0.03652423992753029, + 0.01581583358347416, + -0.014586148783564568, + -0.059652771800756454, + 0.02922462485730648, + 0.04387618228793144, + 0.05483868718147278, + 0.04071040078997612, + 0.029486259445548058, + -0.004231945611536503, + 0.06697855144739151, + -0.01500476524233818, + -0.018222875893115997, + -0.011054077185690403, + -0.027367016300559044, + 0.024711422622203827, + -0.08916519582271576, + -0.003218109952285886, + -0.000647137756459415, + 0.12265446782112122, + 0.10219461470842361, + -0.06472849100828171, + -0.054524727165699005, + -0.1262127012014389, + -0.07341477274894714, + 0.02809959463775158, + -0.049056556075811386, + 0.0001589228049851954, + 0.02424047887325287, + -0.07189729064702988, + -0.07671137154102325, + 0.0043725743889808655, + 0.02932927943766117, + 0.006243264302611351, + 0.030297327786684036, + 0.08372318744659424, + -0.012545396573841572, + 0.03102990612387657, + -0.02557481825351715, + -0.07545552402734756, + -0.030218837782740593, + 0.025836452841758728, + -0.04869026690721512, + -0.04557681083679199, + 0.0035418833140283823, + -0.050417058169841766, + 0.02864902839064598, + -0.07556017488241196, + -0.06174585223197937, + 0.07786256819963455, + 0.016286777332425117, + 0.032233428210020065, + 0.04050109162926674, + 0.004751944914460182, + -0.0036040216218680143, + 0.05052171275019646, + -0.019164761528372765, + -0.03058512695133686, + 0.07210659235715866, + -0.00881709810346365, + 0.056460823863744736, + 0.03210261091589928, + -0.0511757992208004, + -0.05240548402070999, + -0.001707168179564178, + -0.007750935852527618, + 0.014939356595277786, + -0.047382090240716934, + -0.020302873104810715, + 0.04387618228793144, + 0.050547875463962555, + 0.10936341434717178, + -0.05923415720462799, + -0.011407284066081047, + 0.004261379595845938, + 0.00228767073713243, + -0.032468900084495544, + 0.0007280810386873782, + 0.053059570491313934, + -0.014232941903173923, + 0.01718941703438759, + -0.02319393865764141, + 0.032809022814035416, + -0.00334238656796515, + 0.027471670880913734, + 0.08770003914833069, + 0.06886231899261475, + 0.009137600660324097, + -0.0029057832434773445, + 0.039637695997953415, + 0.013434954918920994, + -0.06792043894529343, + 0.009314204566180706, + 0.021297086030244827, + 0.054315418004989624, + -0.0003912260290235281, + -0.028047267347574234, + 0.01741180755198002, + -0.004326788242906332, + 0.00716879777610302, + -0.01217256672680378, + 0.006544144358485937, + 0.03503292053937912, + 0.05039089545607567, + 0.08272897452116013, + 0.025535572320222855, + -0.030506636947393417, + -0.012205271050333977, + -0.016770800575613976, + 0.059181828051805496, + 0.09151990711688995, + 0.036210279911756516, + -0.012551937252283096, + 0.00517710205167532, + -0.057925980538129807, + 0.1273639053106308, + -0.010112191550433636, + -0.07064144313335419, + -0.08319991827011108, + -0.001766036031767726, + 0.023233184590935707, + -0.037361472845077515, + 0.03126537799835205, + -0.008575085550546646, + -0.0034208770375698805, + 0.037126000970602036, + -0.06692622601985931, + -0.019465642049908638, + 0.023926516994833946, + 0.08775236457586288, + 0.039768513292074203, + 0.022369788959622383, + 0.032468900084495544, + -0.05125429108738899, + 0.040317948907613754, + -0.016888536512851715, + 0.01658765599131584, + 0.03116072341799736, + 0.023468656465411186, + -0.0013809420634061098, + -0.009288040921092033, + 0.03607946261763573, + 0.0352945551276207, + 0.05096649006009102, + -0.0010416342411190271, + -0.0009966656798496842, + 0.06315868347883224, + -0.046100080013275146, + -0.11197976768016815, + -0.05426309257745743, + -0.03652423992753029, + -0.045524485409259796, + 0.026111168786883354, + 0.07194961607456207, + -0.03330612927675247, + 0.0015444639138877392, + -0.01433759555220604, + 0.009876719675958157, + -0.018039731308817863, + 0.04228020831942558, + 0.01578967086970806, + -0.010269172489643097, + -0.0670308768749237, + -0.041129015386104584, + 0.03649807721376419, + 0.0043104360811412334, + -0.04751290753483772, + 0.06969955563545227, + 9.939062874764204e-05, + 0.013330301269888878, + 0.02093079686164856, + -0.008490054868161678, + 0.04604775458574295, + -0.01232954766601324, + -0.036445751786231995, + -0.025221610441803932, + 0.010609298013150692, + -0.043379075825214386, + 0.017032435163855553, + -0.13615483045578003, + 0.037570782005786896, + 0.0019132057204842567, + -0.011590428650379181, + 0.02650362253189087, + 0.02935544215142727, + -0.010844768956303596, + 0.016182122752070427, + -0.012728541158139706, + 0.01979268528521061, + 0.08110684156417847, + -0.037256818264722824, + -0.04937051609158516, + 0.0030006258748471737, + 0.026974564418196678, + 0.011636215262115002, + 0.0010015713050961494, + -0.0420447401702404, + -0.048716429620981216, + 0.05933880805969238, + 0.021807273849844933, + -0.013997470960021019, + 0.007698608562350273, + 0.03435267135500908, + -0.02560098096728325, + 0.05400145798921585, + 0.05251013860106468, + 0.07085074484348297, + 0.045079704374074936, + 0.0011528290342539549, + 0.03403870761394501, + -0.01707168109714985, + 0.010687788017094135, + -0.01517482753843069, + 0.0019867904484272003, + -0.013631181791424751, + 0.04471341520547867, + -0.02875368297100067, + 0.050652530044317245, + 0.021310167387127876, + 0.005337353330105543, + 0.014677721075713634, + 0.0005596535629592836, + 0.04795768857002258, + 0.09371764212846756, + 0.06514710932970047, + -0.041547633707523346, + 0.084141805768013, + -0.00645584287121892, + -0.03239040821790695, + -0.0069987354800105095, + -0.03908826410770416, + -0.07440898567438126, + 0.015318727120757103, + -0.04570762813091278, + -0.031919464468955994, + 0.06038535013794899, + 0.018785391002893448, + 0.06655993312597275, + 0.03448348864912987, + -0.03068978153169155, + 0.04039643704891205, + -0.025430917739868164, + -0.024031171575188637, + -0.0990026667714119, + -0.049632150679826736, + -0.052143849432468414, + 0.010164517909288406, + -0.027314690873026848, + 0.043745364993810654, + -0.0920955091714859, + -0.059757426381111145, + -0.08241501450538635, + -0.041102852672338486, + 0.04230637475848198, + -0.015632688999176025, + -0.029774058610200882, + 0.007208043243736029, + -0.04481806978583336, + -0.07325778901576996, + 0.01898161694407463, + 0.008653576485812664, + 0.004284272436052561, + 0.046911150217056274, + -0.0523008294403553, + -0.020276710391044617, + -0.004647290799766779, + 0.015632688999176025, + 0.022657588124275208, + -0.01671847328543663, + 0.008398482576012611, + -0.011590428650379181, + -0.012244516052305698, + -0.052039194852113724, + -6.934348493814468e-05, + 0.004169807303696871, + -0.003868927014991641, + -0.13050352036952972, + 0.07550784945487976, + 0.026412049308419228, + -0.0041272914968431, + -0.0716879814863205, + -0.06012371554970741, + -0.011976340785622597, + -0.01977960392832756, + -0.02331167459487915, + 0.006118987686932087, + 0.026896074414253235, + 0.003944146912544966, + 0.002951569389551878, + 0.045524485409259796, + -0.04526284709572792, + -0.007293074391782284, + -0.001292640226893127, + -0.022775324061512947, + 0.0773392915725708, + 0.01911243423819542, + 0.07927539199590683, + -0.07911841571331024, + 0.04445178061723709, + -0.016064386814832687, + -0.021637210622429848, + 0.06174585223197937, + 0.021859601140022278, + -0.021768029779195786, + 0.053399696946144104, + 0.03375091031193733, + 0.02263142354786396, + 0.01444225013256073, + -0.027131546288728714, + 0.02659519389271736, + 0.03126537799835205, + -0.00022443373745772988, + 0.04238486289978027, + -0.024423623457551003, + 0.021297086030244827, + 0.017228662967681885, + -0.06514710932970047 + ] + }, + { + "id": "4d4af692-e289-4dd9-8bf1-ed3729db4f4a", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "creeves", + "reviewDate": "2022-07-25T07:42:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9166685b-74de-45a4-8ca6-babcdf9186f1", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "monicamclaughlin", + "reviewDate": "2021-07-25T10:22:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e783b637-23e2-4f94-9389-262b45ce0587", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarah33", + "reviewDate": "2021-02-11T11:49:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "21ff849b-0dbf-4e59-bf57-958eb41a1f7f", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "brittanywallace", + "reviewDate": "2022-07-07T06:42:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9d37b95c-7529-43c9-a5a6-ebbe45886b53", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "gina19", + "reviewDate": "2021-12-18T02:03:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fc587f11-b6a2-4a80-90f0-c775d8885a91", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "wstephens", + "reviewDate": "2021-02-18T12:32:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ff816beb-b64a-4d7f-bccc-27d02e4737d2", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "vdonaldson", + "reviewDate": "2021-05-31T14:49:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7899f579-8139-477e-bd24-ee811d22cd74", + "productId": "7bdc7967-c98e-4130-b9be-b7b78e0c835c", + "category": "Electronics", + "docType": "customerRating", + "userName": "rhonda19", + "reviewDate": "2021-07-23T01:49:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Mini (Steel)", + "description": "This Amazing Mouse Mini (Steel) is a small 5×3 mold (9x14mm)\n\n(5×3 is recommended)\n\nThe Mouse Mini is 5×3 in diameter, has only 3 screws\n\nThe Mouse Mini is perfect for 2 (or fewer) people\n\nHow to install the mouse Mini\n\nRemove the", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-07-20T04:10:46", + "price": 442.79, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-02-05T12:13:53", + "newPrice": 473.07 + }, + { + "priceDate": "2021-05-09T12:13:53", + "newPrice": 437.94 + }, + { + "priceDate": "2021-08-10T12:13:53", + "newPrice": 425.44 + }, + { + "priceDate": "2021-11-11T12:13:53", + "newPrice": 410.2 + }, + { + "priceDate": "2022-02-12T12:13:53", + "newPrice": 468.41 + }, + { + "priceDate": "2022-02-14T12:13:53", + "newPrice": 442.79 + } + ], + "descriptionVector": [ + -0.022104905918240547, + -0.0036929911002516747, + -0.01575322635471821, + -0.03500716760754585, + 0.019360024482011795, + 0.04548279941082001, + 0.01284922193735838, + 0.06539975851774216, + 0.050256505608558655, + 0.010256835259497166, + -0.03368113934993744, + -0.0037327720783650875, + -0.028244420886039734, + -0.021176684647798538, + 0.02678578905761242, + 0.010389437898993492, + -0.01604495197534561, + 0.029093079268932343, + -0.03280596062541008, + -0.01678752899169922, + 0.020261725410819054, + -0.06168687343597412, + -0.008214750327169895, + 0.08815441280603409, + 0.015196293592453003, + -0.04264509677886963, + 0.010402698069810867, + -0.012610537000000477, + -0.09176121652126312, + 0.021587753668427467, + 0.0027249897830188274, + -0.010880068875849247, + 0.017119035124778748, + -0.0025592362508177757, + -0.026825569570064545, + -0.03585582599043846, + -0.0028277570381760597, + 0.01738424226641655, + -0.053306370973587036, + 0.14108949899673462, + -0.0038653749506920576, + 0.02335137315094471, + -0.013213880360126495, + -0.036359719932079315, + 0.014108950272202492, + 0.05542801693081856, + -0.05632971599698067, + 0.005672089755535126, + 0.0031642368994653225, + 0.0024316059425473213, + 0.015474759973585606, + 0.032116424292325974, + -0.044183291494846344, + -0.0015075294068083167, + -0.00949436891824007, + -0.0598834753036499, + -0.013346482999622822, + 0.19444890320301056, + 0.06099734082818031, + -0.06248249113559723, + 0.012212728150188923, + -0.07224206626415253, + 0.03490108624100685, + 0.03702273219823837, + -0.10088429600000381, + -0.06343723088502884, + -0.023775702342391014, + 0.02329833246767521, + 0.037394020706415176, + 0.03866700828075409, + 0.0013542072847485542, + -0.04389156401157379, + -0.0023255236446857452, + -0.043334633111953735, + -0.01678752899169922, + 0.011801659129559994, + 0.0993991419672966, + -0.0005101068527437747, + -0.0010865151416510344, + -0.020261725410819054, + -0.020937999710440636, + 0.012570756487548351, + -0.05248423293232918, + 0.01689361035823822, + 0.03171861544251442, + 0.0028194694314152002, + 0.03185122087597847, + -0.1086283028125763, + -0.013034866191446781, + 0.06847614049911499, + -0.006772693712264299, + 0.016668185591697693, + 0.07080995291471481, + 0.022144686430692673, + -0.0013243715511634946, + -0.027979213744401932, + -0.0048665269277989864, + 0.06189903989434242, + -0.02019542269408703, + -0.061103422194719315, + 0.0250089094042778, + 0.03561714291572571, + -0.0695900097489357, + -0.030313026160001755, + -0.036227114498615265, + 0.014254813082516193, + 0.050309546291828156, + 0.015793006867170334, + -0.03280596062541008, + -0.1285717785358429, + 0.025512799620628357, + -0.014321114867925644, + 0.018113557249307632, + 0.005161568522453308, + -0.015434978529810905, + -0.07521237432956696, + -0.06699099391698837, + 0.014506758190691471, + -0.06248249113559723, + 0.0017089199973270297, + 0.04285725951194763, + 0.04182295873761177, + 0.020752355456352234, + 0.035378456115722656, + -0.032302070409059525, + 0.0023122632410377264, + 0.024783484637737274, + -0.00047737048589624465, + 0.005953870713710785, + -0.027037734165787697, + 0.004541649948805571, + -0.019678272306919098, + 0.06073213368654251, + -0.010853548534214497, + -0.08184251934289932, + 0.03699621185660362, + 0.048293981701135635, + 0.0012323783012107015, + 0.016800789162516594, + 0.053147248923778534, + 0.017808571457862854, + 0.010979521088302135, + -0.05537497624754906, + 0.0013890154659748077, + -0.08645709604024887, + -0.02272813953459263, + -0.0887378677725792, + -0.0003899354487657547, + -0.05606451258063316, + 0.0888969898223877, + -0.09170817583799362, + -0.06173991411924362, + -0.0444750152528286, + 0.0149178272113204, + 0.05882265046238899, + 0.057231418788433075, + -0.047233156859874725, + 0.07611407339572906, + -0.08316854387521744, + 0.05179469659924507, + 0.07282552123069763, + -0.08359287679195404, + 0.034317634999752045, + -0.062217287719249725, + -0.00948110781610012, + -0.00316755217500031, + 0.03572322428226471, + 0.0299152173101902, + -0.05192730203270912, + 0.010197163559496403, + 0.020964520052075386, + 0.0020039614755660295, + 0.00962034147232771, + -0.025618882849812508, + 0.023178989067673683, + 0.006955022923648357, + -0.025048689916729927, + -0.03309768810868263, + 0.011284507811069489, + -0.061156462877988815, + -0.005572637543082237, + 0.024093948304653168, + -0.02523433417081833, + 0.05770878866314888, + -0.0061958711594343185, + -0.022595535963773727, + -0.05760270357131958, + 0.008745161816477776, + -0.007392612285912037, + -0.012272399850189686, + 0.10252857208251953, + -0.04359983652830124, + 0.011456891894340515, + -0.02438567578792572, + 0.03267335891723633, + 0.0063748848624527454, + -0.02286074124276638, + 0.04646405950188637, + 0.030153902247548103, + -0.014400675892829895, + -0.006988173350691795, + 0.031188204884529114, + 0.023855263367295265, + 0.0001809822570066899, + 0.04039084538817406, + -0.06858222931623459, + 0.009103190153837204, + 0.016495801508426666, + 0.055321935564279556, + -0.09780790656805038, + 0.08168339729309082, + -0.0021630849223583937, + -0.021640796214342117, + -0.014161990955471992, + 0.03081691637635231, + 0.05892873555421829, + -0.02353701740503311, + -0.012232618406414986, + -0.06099734082818031, + -0.046304937452077866, + 0.029172640293836594, + -0.058186158537864685, + -0.041212983429431915, + -0.0597243532538414, + -0.08645709604024887, + 0.006722967606037855, + 0.06471022218465805, + 0.09064734727144241, + 0.06826397776603699, + 0.0028973736334592104, + -0.011768508702516556, + 0.03206338360905647, + 0.0034808265045285225, + 0.07733401656150818, + -0.09579234570264816, + 0.027554884552955627, + -0.03686361014842987, + -0.04492586851119995, + 0.051158204674720764, + 0.0197843536734581, + -0.05187425762414932, + 0.01648254133760929, + -0.04508499056100845, + -0.04195556044578552, + 0.04935480281710625, + 0.03582930564880371, + 0.029252203181385994, + -0.03283248096704483, + -0.030366066843271255, + -0.04471370205283165, + -0.018511366099119186, + 0.033389411866664886, + 0.012080125510692596, + 0.010880068875849247, + 0.017941173166036606, + 0.055958427488803864, + 0.08343375474214554, + -0.00031223840778693557, + -0.026586884632706642, + -0.07553061842918396, + -0.03248771280050278, + -0.004080854821950197, + -0.11679664254188538, + 0.07128732651472092, + 0.04195556044578552, + 0.0003381374408490956, + -0.023828743025660515, + -0.06783965229988098, + 0.03094951994717121, + 0.06439197063446045, + 0.0446341410279274, + -0.018325721845030785, + 0.02691839076578617, + -0.03681056946516037, + -0.034158509224653244, + -0.05200686305761337, + -0.07234814763069153, + 0.061209503561258316, + -0.009640231728553772, + 0.006573789287358522, + 0.08651013672351837, + 0.07383330166339874, + 0.021508192643523216, + 0.05158253386616707, + -0.001851468114182353, + 0.006020172033458948, + -0.06879439204931259, + 0.027634447440505028, + -0.050362586975097656, + -0.047180116176605225, + -0.01341941487044096, + -0.03895873576402664, + 0.06359636038541794, + 0.01795443519949913, + 0.03357505798339844, + 0.028244420886039734, + 0.05495064705610275, + -0.04086821898818016, + -0.038295719772577286, + -0.0012530975509434938, + -0.05269639566540718, + 0.02795269340276718, + -0.04643753916025162, + -0.03163905441761017, + 0.08820746093988419, + 0.025327155366539955, + -0.010064560920000076, + -0.05110516399145126, + -0.0593530647456646, + -0.0015340499812737107, + 0.07627319544553757, + -0.01885613426566124, + -0.054261110723018646, + -0.0013915018644183874, + 0.042194247245788574, + -0.07744009792804718, + 0.0019741258583962917, + -0.04378548264503479, + 0.022820960730314255, + 0.011616014875471592, + -0.02601669169962406, + -0.07828875631093979, + -0.033468976616859436, + 0.06693795323371887, + 0.029490888118743896, + -0.0691126361489296, + -0.04553584009408951, + -0.04383852332830429, + 0.04346723482012749, + -0.04105386137962341, + 0.004273128695785999, + -0.0599365159869194, + -0.05569322407245636, + 0.01219283789396286, + -0.033283330500125885, + -0.0890561193227768, + 0.029596969485282898, + -0.007843461818993092, + 0.02443871647119522, + 0.021216465160250664, + -0.012418262660503387, + -0.042247287929058075, + 0.023338112980127335, + 0.07446979731321335, + -0.019598711282014847, + -0.04269813746213913, + 0.05076039582490921, + -0.024213291704654694, + -0.01798095554113388, + 0.03556410223245621, + 0.0015398513060063124, + -0.08682838827371597, + 0.032116424292325974, + 0.013452565297484398, + 0.03288552165031433, + -0.03678404912352562, + -0.00572181586176157, + 0.030153902247548103, + 0.09780790656805038, + 0.027263158932328224, + 0.03665144369006157, + -0.016031691804528236, + -0.01272324938327074, + 0.00948110781610012, + -0.0006215761532075703, + 0.02869527041912079, + -0.058186158537864685, + -0.07425763458013535, + -0.035192813724279404, + -0.0017520160181447864, + -0.017185337841510773, + -0.04161079227924347, + 0.011098863556981087, + 0.05152949318289757, + -0.0597773939371109, + -0.10655970126390457, + 0.09027606248855591, + -0.022688359022140503, + -0.053041163831949234, + 0.031400371342897415, + 0.05590538680553436, + 0.0068953512236475945, + -0.040284764021635056, + -0.031082123517990112, + 0.048187896609306335, + -0.04381200298666954, + 0.011788398958742619, + 0.03490108624100685, + 0.05500368773937225, + 0.014135470613837242, + 0.007027954328805208, + -0.024650881066918373, + 0.017729008570313454, + 0.06375548243522644, + 0.05606451258063316, + -0.05590538680553436, + -0.008818093687295914, + 0.01624385640025139, + -0.0058378432877361774, + 0.0011793371522799134, + 0.004110690206289291, + 0.01893569529056549, + -0.05349201336503029, + -0.02774052880704403, + 0.018087036907672882, + -0.07091603428125381, + 0.02872179076075554, + -0.008380504325032234, + -0.02869527041912079, + -0.07866004854440689, + 0.01062812376767397, + -0.037102293223142624, + 0.02185296081006527, + -0.00043634645408019423, + 0.0023752497509121895, + 0.005002445075660944, + 0.056223634630441666, + -0.03171861544251442, + 0.020686054602265358, + -0.04935480281710625, + 0.018736790865659714, + 0.012961934320628643, + -0.032408151775598526, + -0.050336066633462906, + -0.020937999710440636, + 0.04248597472906113, + -0.09329941123723984, + 0.048134855926036835, + 0.05845136195421219, + -0.07876612991094589, + 0.020115861669182777, + -0.042353369295597076, + -0.05179469659924507, + 0.04558888077735901, + 0.04150471091270447, + 0.029119599610567093, + 0.0019923588261008263, + 0.0023487291764467955, + 0.030445627868175507, + -0.01357190776616335, + 0.06189903989434242, + -0.001624385709874332, + 0.005396938417106867, + 0.017649447545409203, + -0.06874135136604309, + 0.04577452689409256, + -0.06386156380176544, + -0.0021000986453145742, + 0.04155775159597397, + -0.08571451902389526, + -0.05457935854792595, + -0.03254075348377228, + -0.0599365159869194, + -0.03079039603471756, + 0.04296334460377693, + -0.005788117181509733, + 0.01288900338113308, + 0.027395762503147125, + -0.05574626475572586, + -0.0174638032913208, + -0.017370982095599174, + 0.04410373046994209, + 0.06577104330062866, + 0.026533842086791992, + 0.0022045234218239784, + -0.06539975851774216, + -0.019386546686291695, + 0.02975609339773655, + -0.03588234633207321, + 0.0021896054968237877, + 0.03073735535144806, + 0.017172077670693398, + -0.022277290001511574, + 0.03879961371421814, + 0.043228548020124435, + -0.00642461096867919, + -0.04696794971823692, + -0.031267765909433365, + 0.04580104723572731, + 0.05158253386616707, + -0.04855918511748314, + 0.0011884536361321807, + -0.043414194136857986, + 0.06539975851774216, + 0.019161120057106018, + -0.011927631683647633, + 0.045270632952451706, + -0.013293442316353321, + 0.09022302180528641, + 0.0901169404387474, + 0.008493216708302498, + 0.04182295873761177, + 0.020699314773082733, + -0.027210118249058723, + 0.025181293487548828, + -0.00186472840141505, + -0.005841158330440521, + 0.0004351033130660653, + -0.062058161944150925, + 0.008652339689433575, + -0.0023072906769812107, + -0.03882613405585289, + -0.08640405535697937, + 0.02872179076075554, + 0.042353369295597076, + 0.05484456568956375, + -0.0030913054943084717, + -0.004554910119622946, + 0.027157075703144073, + -0.02122972533106804, + 0.06508150696754456, + -0.014520019292831421 + ] + }, + { + "id": "1922fb20-d7e6-4493-bdeb-77c6b3a78bcd", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessica56", + "reviewDate": "2021-07-18T16:11:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b20bc1bf-d6de-4097-a7cb-6b896d3398f9", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bennettamanda", + "reviewDate": "2021-04-01T02:36:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "491f2732-83c0-4cf0-871d-782b3bbedf0a", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "browndavid", + "reviewDate": "2022-02-13T08:14:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "55a76089-c3ad-4f4c-93f4-01847f96fce7", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniemccullough", + "reviewDate": "2021-09-14T11:46:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e500ff31-f07a-4fe2-a35f-6a53e8295e81", + "productId": "56cbe76e-b90b-4844-a76a-73760722ad0b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dominguezdaniel", + "reviewDate": "2021-02-05T12:13:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Silver)", + "description": "This Amazing Keyboard Ultra (Silver) is sold by the brand in three different colors! Just check out the brand name in the picture below…\n\nJust look at the photos from the seller's website to see how it looks – they're nice", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-01-22T22:43:26", + "price": 939.33, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-02-10T17:26:38", + "newPrice": 853.13 + }, + { + "priceDate": "2023-10-29T17:26:38", + "newPrice": 939.33 + } + ], + "descriptionVector": [ + 0.016366833820939064, + 0.048768818378448486, + -0.030766446143388748, + 0.01483423076570034, + 0.07699617743492126, + -0.04940931126475334, + -0.0005650760722346604, + 0.010768256150186062, + 0.003422624198719859, + 0.03239054977893829, + 0.03447214514017105, + -0.013587560504674911, + 0.02429291047155857, + -0.01985522359609604, + -0.022703120484948158, + -0.0021745243575423956, + -0.03714848309755325, + 0.05650046095252037, + -0.02139926329255104, + 0.04682447016239166, + -0.012009207159280777, + -0.0722382441163063, + -0.055905718356370926, + -0.0202097799628973, + -0.03296241536736488, + -0.03351140767335892, + -0.005224005319178104, + 0.01659558154642582, + 0.013930680230259895, + 0.005329800769686699, + 0.05567697435617447, + -0.007994701154530048, + 0.0024418721441179514, + 0.07850590348243713, + -0.04387363791465759, + 0.01727038435637951, + -0.03339703381061554, + -0.01558909472078085, + 0.012935631908476353, + 0.056683458387851715, + 0.05133078247308731, + -0.004091708455234766, + 0.021170517429709435, + -0.0013188683660700917, + -0.07502895593643188, + 0.019100358709692955, + 0.013679059222340584, + 0.028707724064588547, + 0.017807938158512115, + -0.0024676062166690826, + 0.02868484891951084, + 0.016732828691601753, + -0.07823140919208527, + -0.010602414608001709, + 0.050324298441410065, + -0.06615357846021652, + 0.012706885114312172, + 0.07104875892400742, + 0.02806723304092884, + -0.03721710667014122, + 0.0006701566744595766, + -0.05453323945403099, + -0.02946258895099163, + 0.0095902094617486, + 0.07388521730899811, + 0.03193305432796478, + -0.005618593655526638, + -0.05723245069384575, + 0.039779070764780045, + 0.06016040965914726, + 0.00027753421454690397, + 0.0367138609290123, + 0.03019457869231701, + 0.02843322791159153, + -0.012466700747609138, + 0.05407574400305748, + 0.0873812809586525, + -0.016012277454137802, + 0.039573196321725845, + 0.028295980766415596, + 0.03575312718749046, + 0.0024418721441179514, + -0.05059879273176193, + -0.07873465120792389, + 0.0129241943359375, + 0.04517749324440956, + -0.0016584143741056323, + -0.07489170134067535, + -0.1075109988451004, + 0.11602038145065308, + -0.049134813249111176, + -0.07484595477581024, + 0.02449878305196762, + -0.0274953655898571, + 0.012752634473145008, + -0.056317463517189026, + -0.01224939152598381, + 0.04311877489089966, + -0.01343887485563755, + -0.02671762742102146, + 0.059840165078639984, + -0.03948169946670532, + -0.0558142215013504, + 0.0021802429109811783, + -0.027380993589758873, + 0.03529563173651695, + 0.03769747540354729, + 0.008749565109610558, + -0.0972631424665451, + -0.13267314434051514, + 0.019786598160862923, + -0.020598649978637695, + -0.04115154966711998, + 0.02314917743206024, + 0.029485464096069336, + 0.06167013943195343, + -0.06299687176942825, + -0.04419388249516487, + -0.004311877302825451, + -0.038383714854717255, + 0.0073198978789150715, + -0.038177840411663055, + 0.00690243486315012, + 0.046595726162195206, + -0.035798873752355576, + 0.03758310154080391, + 0.00313383131287992, + 0.02946258895099163, + 0.039458826184272766, + 0.02161657251417637, + -0.06542158871889114, + -0.03577600046992302, + 0.02610001154243946, + 0.06862404197454453, + -0.07722492516040802, + 0.04565786197781563, + 0.02806723304092884, + 0.053115010261535645, + 0.018837299197912216, + 0.022931868210434914, + -0.0660620778799057, + 0.0004721477162092924, + 0.04115154966711998, + 0.013095755130052567, + -0.12379777431488037, + 0.007703048642724752, + -0.015005790628492832, + 0.022554434835910797, + 0.010333636775612831, + 0.03923007845878601, + 0.0011008440051227808, + -0.061944637447595596, + 0.01127149909734726, + -0.025459520518779755, + 0.001659844070672989, + 0.06665682047605515, + -0.032642170786857605, + -0.06926453113555908, + 0.05567697435617447, + 0.07228399068117142, + -0.04867732152342796, + 0.04085417836904526, + 0.01031648088246584, + -0.0032682199962437153, + -0.01783081330358982, + 0.05041579529643059, + 0.04931781068444252, + 0.027884235605597496, + -0.037651725113391876, + 0.023126302286982536, + -0.029599836096167564, + -0.011929146014153957, + 0.044537004083395004, + -0.10760249942541122, + 0.042821403592824936, + -0.024178538471460342, + 0.047487836331129074, + -0.07855165749788284, + 0.018482742831110954, + -0.044948749244213104, + -0.009189902804791927, + 0.04886031895875931, + -0.08637479692697525, + 0.024636032059788704, + 0.08198285847902298, + 0.01617239974439144, + -0.008000419475138187, + 0.0017441944219172, + 0.003794337622821331, + 0.009504429996013641, + 0.01380486972630024, + -0.008675222285091877, + -0.03952744975686073, + 0.05636321380734444, + 0.023606671020388603, + 0.04025943949818611, + -0.022062629461288452, + -0.012741196900606155, + 0.005332659929990768, + 0.09442668408155441, + 0.03410615026950836, + -0.0015354629140347242, + 0.052703265100717545, + -0.017018763348460197, + 0.010871192440390587, + 0.02222275175154209, + -0.019557852298021317, + -0.028753474354743958, + 0.01127149909734726, + -0.0033454219810664654, + -0.04481149837374687, + 0.0408313050866127, + -0.007914640009403229, + -0.014159427024424076, + -0.00853225588798523, + 0.03513551130890846, + -0.013896368443965912, + -0.00043104475480504334, + -0.008395007811486721, + -0.06217338144779205, + -0.0051382253877818584, + 0.017773626372218132, + 0.03744585067033768, + 0.00837213359773159, + -0.016046589240431786, + -0.01913467049598694, + 0.0947926789522171, + 0.061898887157440186, + 0.03749160096049309, + 0.05567697435617447, + -0.09451818466186523, + -0.06455235183238983, + -0.013233003206551075, + -0.0395960733294487, + -0.033831652253866196, + 0.06917303800582886, + -0.007148337550461292, + -0.04886031895875931, + -0.06043490767478943, + 0.06752605736255646, + 0.004243253264576197, + -0.05366400256752968, + -0.04904331639409065, + -0.0529320128262043, + 0.02440728433430195, + -0.1317581683397293, + 0.05819318816065788, + -0.1058640256524086, + -0.07310748100280762, + 0.02895934507250786, + -0.0036170589737594128, + -0.029920082539319992, + -0.052657514810562134, + 0.0363021194934845, + -0.027380993589758873, + 0.05480773374438286, + -0.016835765913128853, + 0.02744961716234684, + -0.002845038427039981, + -0.0873812809586525, + 0.003894414519891143, + 0.01113996934145689, + -0.03996206820011139, + 0.022394312545657158, + -0.08381283283233643, + -0.0046349819749593735, + 0.04977530613541603, + -0.10531502962112427, + -0.031818680465221405, + 0.02383541688323021, + 0.014273800887167454, + 0.005861637182533741, + 0.02909659408032894, + -0.029508337378501892, + -0.07297023385763168, + 0.05174252763390541, + -0.06734306365251541, + 0.07544069737195969, + 0.030514823272824287, + -0.0837213322520256, + 0.03332841023802757, + 0.0976291373372078, + 0.07164350152015686, + -0.005821606144309044, + 0.0484028235077858, + 0.01787656359374523, + -0.022085504606366158, + 0.1194058358669281, + -0.00814338680356741, + 0.017590628936886787, + -0.012123581022024155, + -0.008177698589861393, + -0.0036256369203329086, + 0.03142981231212616, + 0.016366833820939064, + 0.0011566010070964694, + 0.049546558409929276, + 0.007365647237747908, + -0.03488388657569885, + 0.01690438948571682, + 0.06162438914179802, + -0.05183402821421623, + -0.15115588903427124, + -0.05078179016709328, + -0.020152593031525612, + 0.08212010562419891, + -0.021536512300372124, + 0.009304276667535305, + -0.006519284099340439, + -0.0189745482057333, + 0.005807309411466122, + 0.023995541036128998, + -0.012054956518113613, + -0.013450312428176403, + 0.011952021159231663, + -0.043141648173332214, + -0.02016403153538704, + 0.0635916143655777, + -0.008823907934129238, + 0.033580031245946884, + 0.015005790628492832, + -0.0022746010217815638, + -0.07992413640022278, + 0.04744208976626396, + 0.057049453258514404, + -0.003971616271883249, + 0.015131601132452488, + -0.04023656249046326, + 0.025413770228624344, + -0.012157892808318138, + -0.02481902949512005, + -0.0072112432681024075, + 0.025185024365782738, + 0.05691220611333847, + 0.07356497645378113, + -0.02491052821278572, + 0.020804522559046745, + 0.10458303987979889, + 0.07484595477581024, + 0.05855918303132057, + 0.053481005132198334, + 0.012729760259389877, + 0.04016793891787529, + -0.005655764602124691, + -0.010059140622615814, + -0.042684152722358704, + 0.025162149220705032, + -0.03426627069711685, + 0.013964992947876453, + 0.02047283947467804, + 0.0013467468088492751, + -0.02351517230272293, + 0.03408327326178551, + 0.01747625693678856, + 0.03586750105023384, + -0.007886046543717384, + -0.0179451871663332, + -0.06377460807561874, + 0.011054189875721931, + 0.01964935101568699, + -0.03401464968919754, + 0.015474721789360046, + -0.018276870250701904, + 0.0003182797518093139, + 0.03767459839582443, + 0.015371785499155521, + 0.03291666507720947, + 0.029691334813833237, + 0.06601633131504059, + -0.007359928451478481, + -0.0027077903505414724, + -0.030217453837394714, + -0.08312658965587616, + 0.06249362975358963, + 0.010550946928560734, + 0.039161454886198044, + 0.013084317557513714, + -0.006450660061091185, + 0.02683200128376484, + 0.029576962813735008, + -0.007188368588685989, + 0.026854874566197395, + -0.01757919229567051, + 0.047213342040777206, + 0.014216613955795765, + -0.039618946611881256, + -0.048768818378448486, + 0.026397380977869034, + -0.03687398508191109, + -0.025551019236445427, + -0.052383020520210266, + 0.03687398508191109, + 0.03824646770954132, + 0.045520614832639694, + -0.003110956633463502, + -0.037239979952573776, + 0.03849808871746063, + 0.09634815901517868, + 0.03152130916714668, + 0.05297775939106941, + -0.004772230051457882, + 0.04867732152342796, + 0.034975387156009674, + 0.021330639719963074, + -0.042981524020433426, + -0.09598216414451599, + -0.016298210248351097, + 0.05521947890520096, + -0.04968380555510521, + -0.07612694054841995, + -0.04533761739730835, + 0.0028621943201869726, + -0.02962271124124527, + -0.03598187118768692, + 0.021582260727882385, + 0.03705698251724243, + 0.1325816512107849, + 0.08417882770299911, + 0.08966875076293945, + -0.04069405794143677, + 0.07731641829013824, + 0.006313411984592676, + 0.007805984932929277, + 0.08010713011026382, + -0.04602385684847832, + -0.0008327813702635467, + -0.008749565109610558, + 0.007228399161249399, + 0.010659601539373398, + -0.08642054349184036, + 0.04032806307077408, + 0.013964992947876453, + 3.793086580117233e-05, + 0.0013853478012606502, + -0.018688613548874855, + -0.03435777127742767, + 0.00036706714308820665, + 0.04730483889579773, + 0.009521585889160633, + 0.04012218862771988, + -0.019409166648983955, + -0.04844857379794121, + -0.044742874801158905, + -0.022623058408498764, + -0.09909311681985855, + -0.032802291214466095, + 0.003662808332592249, + 0.019454916939139366, + 0.027335243299603462, + -0.05439599230885506, + -0.07338197529315948, + 0.010110609233379364, + -0.08390432596206665, + -0.000744856777600944, + 0.09300845116376877, + -0.02155938744544983, + -0.022394312545657158, + 0.09218496084213257, + -0.07667592912912369, + 0.04128880053758621, + 0.01602371409535408, + 0.05613446608185768, + -0.013701933436095715, + -0.023229237645864487, + -0.030148828402161598, + 0.01023641973733902, + -0.014411048963665962, + 0.03504401072859764, + 0.0029594118241220713, + 0.05892517790198326, + 0.020026782527565956, + -0.0820743516087532, + 0.046344101428985596, + -0.011082782410085201, + -0.019420603290200233, + -0.06999652087688446, + 0.02491052821278572, + 0.03492963686585426, + 0.016309646889567375, + 0.044125258922576904, + 0.0006730160093866289, + -0.027312368154525757, + 0.016995888203382492, + 0.009990517050027847, + 0.04346189275383949, + -0.009944767691195011, + -0.03913857787847519, + -0.014788481406867504, + -0.020964644849300385, + 0.017487693578004837, + 0.00022052621352486312, + 0.05302350968122482, + -0.021021831780672073, + -0.0009793222416192293, + -0.03044619970023632, + -0.025253647938370705, + 0.0007934654713608325, + 0.0185628030449152, + -0.04110580310225487, + 0.10430854558944702, + 0.005346956662833691, + 0.021364951506257057, + 0.005884511861950159, + -0.023343611508607864, + 0.03328265994787216, + -0.030880818143486977, + -0.07791116088628769, + 0.03028607740998268, + -0.03207030147314072, + -0.013473186641931534, + 0.044376879930496216, + -0.02433866076171398 + ] + }, + { + "id": "62723253-371b-4e74-b8f2-58a73ed0a5b8", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "julie65", + "reviewDate": "2022-10-01T01:02:37", + "stars": 4, + "verifiedUser": false + }, + { + "id": "598d3979-87ad-4fe0-9a97-f4786bf3f67e", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sandovalsarah", + "reviewDate": "2021-04-09T19:06:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0bcc10da-7e43-47ba-8cac-aa68a17814da", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "douglasnunez", + "reviewDate": "2022-12-19T23:37:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "46294cd2-e3df-4b5f-867f-8b84ddb5310c", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mooremariah", + "reviewDate": "2021-07-12T00:34:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c28c499c-a252-4877-8ab8-61de2839faf3", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dlopez", + "reviewDate": "2021-08-01T11:45:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1dd89938-fe79-4bc6-ac21-99b0e57af104", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wyattkatrina", + "reviewDate": "2021-12-21T23:59:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "399bd163-6588-4a67-8806-a79d576b7a4c", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithlinda", + "reviewDate": "2022-07-13T12:23:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3575fbe1-e6ba-442f-a105-5d926df02cd9", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sue60", + "reviewDate": "2021-02-10T17:26:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bfcdc0e4-7995-437a-8a1b-2800944d161e", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davisangel", + "reviewDate": "2022-01-04T17:07:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9a56bd62-bdb0-4990-aa23-ba542977424a", + "productId": "2cbdb2db-9c44-41cd-aa7b-a84db4d1b73e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicadavidson", + "reviewDate": "2022-06-15T07:29:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a25e5744-864b-4357-9aef-bdc2190040a6", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Super (Black)", + "description": "This Awesome Mouse Super (Black) is rated 5.0 out of 5 by 7.\n\nRated 5 out of 5 by Anonymous from Not cheap, but it's great for a little more money than most of my other high end mouse.\n\nRated 5 out of 5 by Anonymous from Good gaming mouse This mouse is pretty fast", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-07-28T00:11:20", + "price": 573.91, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-02-11T02:51:32", + "newPrice": 608.3 + }, + { + "priceDate": "2022-11-05T02:51:32", + "newPrice": 600.14 + }, + { + "priceDate": "2025-08-13T02:51:32", + "newPrice": 573.91 + } + ], + "descriptionVector": [ + -0.071331687271595, + -0.011760976165533066, + -0.021421387791633606, + 0.020666496828198433, + -0.022974930703639984, + -0.010792747139930725, + -0.049275755882263184, + 0.01694674603641033, + 0.008883640170097351, + 0.06739313155412674, + 0.020491449162364006, + -0.013806839473545551, + 0.030217504128813744, + -0.06511751562356949, + 0.022646717727184296, + 0.02262483537197113, + 0.023653237149119377, + -0.025097375735640526, + -0.00910244882106781, + -0.02273424156010151, + 0.0026817761827260256, + -0.009392370469868183, + -0.015841761603951454, + -0.010305897332727909, + -0.00895475223660469, + -0.015272858552634716, + 0.01938646472990513, + 0.05610259249806404, + -0.0006923248874954879, + -0.030108099803328514, + 0.0028417801950126886, + 0.009403310716152191, + 0.002142959274351597, + 0.0627981424331665, + 0.0722944512963295, + 0.008582777343690395, + -0.011017026379704475, + -0.024681638926267624, + 0.028182581067085266, + 0.07859614491462708, + 0.02597261220216751, + -0.02087436616420746, + 0.01421163510531187, + 0.006203231401741505, + -0.02069931849837303, + -0.0022441584151238203, + -0.009890160523355007, + 0.021191637963056564, + 0.04993218183517456, + 0.023762641474604607, + 0.061354003846645355, + 0.0479191392660141, + -0.06507375836372375, + -0.02195747010409832, + 0.05338936299085617, + -0.01181567832827568, + -0.011345239356160164, + 0.0627981424331665, + -0.024200260639190674, + -0.10012693703174591, + 0.016968626528978348, + -0.04529343545436859, + 0.01543696504086256, + -0.030808286741375923, + -0.06393595039844513, + -0.06257933378219604, + -0.014080350287258625, + 0.022931167855858803, + 0.0357314869761467, + 0.02195747010409832, + -0.05089494213461876, + -0.002453394467011094, + 0.009835458360612392, + 0.0041327523067593575, + 0.0263008251786232, + 0.016662294045090675, + 0.07382611185312271, + 0.018139254301786423, + -0.050019703805446625, + 0.00856089685112238, + 0.033981017768383026, + -0.012461164966225624, + 0.023828284814953804, + 0.006263403687626123, + 0.12620894610881805, + 0.02039298601448536, + -0.03321518376469612, + -0.11211766302585602, + -0.014703955501317978, + 0.01368649397045374, + -0.020721198990941048, + 0.040851615369319916, + -0.03262440115213394, + -0.014200694859027863, + -0.007964642718434334, + -0.008883640170097351, + -0.03818214684724808, + 0.018084552139043808, + 0.03179292753338814, + 0.04441819712519646, + 0.07623300701379776, + 0.0010413933778181672, + -0.07925257086753845, + 0.011771916411817074, + -0.0647236630320549, + -0.017253078520298004, + 0.013522387482225895, + -0.048312995582818985, + -0.02634458616375923, + -0.10467816144227982, + 0.008161570876836777, + -0.019867844879627228, + -0.03034878894686699, + -0.0347030870616436, + -0.014113171957433224, + 0.03128966689109802, + -0.08240341395139694, + -0.016673235222697258, + -0.05115751177072525, + -0.025381827726960182, + 0.03496565669775009, + 0.05899086967110634, + -0.004794649314135313, + 0.05951600894331932, + 0.02949543483555317, + -0.02511925809085369, + -0.026213301345705986, + -0.0173515435308218, + 0.03424358740448952, + -0.05395826697349548, + -0.04936327785253525, + 0.03389349207282066, + 0.02110411413013935, + 0.045118387788534164, + -0.08415389060974121, + 0.05395826697349548, + -0.022974930703639984, + 0.04052340239286423, + -0.01259244978427887, + 0.00033334162435494363, + -0.00164380157366395, + -0.05023851618170738, + -0.016618533059954643, + 0.0038428306579589844, + -0.020896246656775475, + 0.018916025757789612, + -0.022230980917811394, + 0.017373424023389816, + 0.009277495555579662, + 0.041704967617988586, + 0.1023150235414505, + -0.08529169112443924, + -0.01950681023299694, + -0.016541950404644012, + 0.0016957686748355627, + 0.053695693612098694, + -0.027854368090629578, + 0.0031344369053840637, + -0.0779397189617157, + 0.1078290045261383, + -0.006624438334256411, + -0.0063399868085980415, + -0.005103716626763344, + 0.0029019524808973074, + -0.02518489956855774, + 0.04651876538991928, + 0.010054267011582851, + 0.012625271454453468, + -0.023762641474604607, + 0.018894145265221596, + 0.028073176741600037, + -0.04542471840977669, + 0.018959788605570793, + -0.040807854384183884, + 0.04163932800292969, + 0.07054397463798523, + 0.052995506674051285, + -0.008708592504262924, + -0.0026024580001831055, + 0.03971380740404129, + 0.03269004449248314, + 0.0305019561201334, + -0.0647236630320549, + -0.005516718607395887, + 0.08568555116653442, + -0.05684654042124748, + 0.019473988562822342, + 0.02986740879714489, + -0.031639762222766876, + 0.0320117361843586, + -0.030064336955547333, + -0.024791043251752853, + 0.034790609031915665, + -0.0740886777639389, + -0.04430879279971123, + 0.09566323459148407, + -0.014703955501317978, + 0.07487639039754868, + 0.011044377461075783, + 0.015305680222809315, + -0.023653237149119377, + 0.08205332607030869, + 0.10704129189252853, + -0.00976981595158577, + 0.04629995673894882, + -0.07969018816947937, + 0.04253644123673439, + 0.0305019561201334, + 0.018511230126023293, + -0.01827053911983967, + 0.019375525414943695, + -0.00548936752602458, + 0.005831256043165922, + 0.00024086069606710225, + 0.06839965283870697, + 0.020524270832538605, + 0.004037023521959782, + -0.03135531023144722, + -0.06621155887842178, + -0.11351803690195084, + 0.05255788937211037, + 0.04115794599056244, + -0.037722647190093994, + -0.008177980780601501, + -0.03555643931031227, + -0.0375913605093956, + 0.04157368466258049, + -0.04988842085003853, + 0.057940587401390076, + -0.024922329932451248, + -0.016071511432528496, + -0.05015099048614502, + -0.0074012097902596, + 0.014430444687604904, + -0.09645094722509384, + 0.028467033058404922, + -0.08673582971096039, + 0.02288740687072277, + 0.00509824650362134, + 0.08437269926071167, + -0.018183017149567604, + -0.01368649397045374, + -0.023784523829817772, + -0.007111288141459227, + 0.01073804497718811, + -0.03325894847512245, + 0.05242660269141197, + -0.050282277166843414, + -0.09933922439813614, + -0.04172684997320175, + -0.0751827210187912, + 0.0008971163188107312, + -0.00475635752081871, + 0.11868192255496979, + 0.05111375078558922, + 0.057196635752916336, + 0.0526016503572464, + 0.03689117357134819, + 0.0009429294150322676, + -0.033565279096364975, + -0.019123895093798637, + 0.10056455433368683, + -0.02800753340125084, + 0.07702071964740753, + -0.05995362624526024, + 0.04665004834532738, + 0.06800579279661179, + 0.0012909722281619906, + -0.011301477439701557, + 0.04067656770348549, + -0.05382698029279709, + 0.015075930394232273, + 0.05352064594626427, + -0.020754020661115646, + -0.022340385243296623, + 0.011476525105535984, + -0.018565932288765907, + 0.04102666303515434, + 0.02068837732076645, + 0.004616866819560528, + 0.0874360203742981, + 0.08660455048084259, + 0.051245033740997314, + 0.026738442480564117, + 0.0393855944275856, + -0.026694681495428085, + 0.01389436237514019, + -0.008943811990320683, + 0.04936327785253525, + -0.04770033061504364, + -0.046081144362688065, + 0.020382044836878777, + 0.048312995582818985, + -0.018401825800538063, + 0.05833444371819496, + 0.052514128386974335, + 0.045862335711717606, + -0.026694681495428085, + 0.0040971958078444, + 0.00015205505769699812, + 0.073125921189785, + 0.08472279459238052, + -0.09181220084428787, + -0.05093870311975479, + 0.023653237149119377, + 0.020786842331290245, + -0.06025996059179306, + -0.0051420084200799465, + -0.05662773177027702, + -0.05675901845097542, + 0.021235400810837746, + 0.052995506674051285, + -0.04008578509092331, + 0.022931167855858803, + 0.17443442344665527, + -0.06476742029190063, + -0.027744963765144348, + 0.03279944881796837, + 0.05041356012225151, + 0.019703738391399384, + -0.05636516213417053, + -0.06656165421009064, + -0.024878567084670067, + 0.08183451741933823, + 0.050326038151979446, + 0.0012102865148335695, + -0.019441166892647743, + -0.0014523437712341547, + -0.0862106904387474, + -0.053783219307661057, + 0.004854821600019932, + -0.00344623951241374, + -0.049319516867399216, + 0.004460965748876333, + -0.03461556136608124, + -0.020666496828198433, + -0.02614765800535679, + 0.07015012204647064, + 0.031596001237630844, + 0.02211063541471958, + -0.025250542908906937, + -0.0035966706927865744, + 0.004581310320645571, + 0.024791043251752853, + 0.0086757717654109, + -0.03365280106663704, + -0.04529343545436859, + -0.08319112658500671, + 0.017898565158247948, + 0.0159730464220047, + 0.001085155177861452, + -0.06249181181192398, + 0.004953285679221153, + 0.03614722564816475, + 0.004201130010187626, + -0.03743819519877434, + 0.019966308027505875, + -0.028707722201943398, + 0.04091725870966911, + 0.020896246656775475, + 0.01860969327390194, + -0.02191370725631714, + 0.003232900984585285, + 0.009611179120838642, + -0.07391363382339478, + 0.04704390466213226, + -0.026235181838274002, + 0.0300205759704113, + 0.027241703122854233, + -0.08327865600585938, + -0.014780538156628609, + -0.10502825677394867, + -0.0035884652752429247, + 0.07316968590021133, + -0.08914273232221603, + -0.004140957724303007, + -0.02634458616375923, + 0.02608201652765274, + -0.07045645266771317, + 0.0385541208088398, + 0.02566627971827984, + 0.06336704641580582, + 0.021749600768089294, + 0.0041382224299013615, + 0.03767888620495796, + -0.018664395436644554, + 0.04201130196452141, + -0.0006256565684452653, + 0.010059737600386143, + 0.020480509847402573, + -0.0024055298417806625, + 0.0022728771436959505, + 0.0028554557356983423, + 0.04282089322805405, + 0.019419286400079727, + -0.05807187035679817, + 0.019036371260881424, + 0.055227357894182205, + -0.05689030513167381, + -0.03826966881752014, + 0.047350239008665085, + 0.03796333819627762, + 0.012307998724281788, + -0.004986106883734465, + -0.001930988160893321, + -0.03708810359239578, + 0.05662773177027702, + -0.031114619225263596, + -0.09365019202232361, + -0.045380957424640656, + -0.019266121089458466, + -0.008593717589974403, + -0.02002101019024849, + 0.01118113286793232, + 0.007187871262431145, + 0.026607157662510872, + 0.08931777626276016, + -0.03314954414963722, + 0.08323489129543304, + -0.09452542662620544, + 0.011027966625988483, + 0.03595029562711716, + 0.09286247938871384, + 0.02848891355097294, + -0.0440681055188179, + 0.02827010490000248, + 0.001274561625905335, + 0.000504286028444767, + 0.01932082325220108, + -0.04748152196407318, + 0.013960005715489388, + -0.12279552966356277, + -0.027985652908682823, + 0.010573938488960266, + -0.05689030513167381, + 0.018215836957097054, + 0.0328432098031044, + 0.02811693772673607, + 0.02006477303802967, + 0.002989476080983877, + 0.04739399999380112, + -0.047569047659635544, + 0.017635993659496307, + 0.021673018112778664, + -0.06673670560121536, + 0.02800753340125084, + -0.06524880230426788, + 0.07115664333105087, + 0.009682292118668556, + 0.010300426743924618, + -0.00706752622500062, + -0.02827010490000248, + -0.0016137153143063188, + -0.023346904665231705, + 0.060391247272491455, + 0.03651919960975647, + 0.03481249138712883, + 0.07369482517242432, + -0.04435255751013756, + -0.02518489956855774, + -0.023784523829817772, + 0.09592580795288086, + 0.05566497519612312, + 0.019550571218132973, + -0.025053614750504494, + -0.02395956963300705, + -0.05457092821598053, + 0.0019815878476947546, + -0.04822547361254692, + -0.03901362046599388, + 0.002705024555325508, + -0.04603738337755203, + -0.0067502534948289394, + 0.037613242864608765, + 0.01456172950565815, + 0.009244674816727638, + 0.08109056204557419, + 0.018916025757789612, + 0.07693319767713547, + 0.0903242975473404, + 0.05010722950100899, + 0.008577307686209679, + 0.0028226342983543873, + 0.04870685189962387, + 0.016476307064294815, + -0.05120127275586128, + 0.09251238405704498, + -0.001277296687476337, + 0.03012998029589653, + -0.00908056739717722, + 0.001356614986434579, + 0.07465758174657822, + 0.0026858786586672068, + -0.07653933763504028, + -0.037919577211141586, + 0.040326472371816635, + -0.001066693221218884, + 0.0015261918306350708, + -0.021629255264997482, + 0.021443268284201622, + 0.024834806099534035, + -0.02741675078868866, + -0.028773365542292595, + 0.040326472371816635, + 0.05662773177027702, + 0.014145992696285248, + -0.07181306928396225, + 0.040326472371816635, + -0.06332328170537949, + -0.05877206102013588, + 0.0197256188839674, + -0.012964424677193165 + ] + }, + { + "id": "2d988dc3-4e9d-4621-ae12-1afb15d3e71f", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christophercollins", + "reviewDate": "2021-12-14T23:01:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6db0f41b-eb4a-4d1e-a7c3-09428838e6a1", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carpenterjoseph", + "reviewDate": "2021-10-21T20:11:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "97567592-2c56-491d-8cae-8f79b5018949", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mollygoodman", + "reviewDate": "2022-01-01T12:32:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2290bf55-12f2-4470-b90e-303f9c21c0da", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "urollins", + "reviewDate": "2021-02-11T02:51:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "acfa326c-166d-4de1-bcb5-e7853f06f995", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "barbarablack", + "reviewDate": "2021-04-21T21:52:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d8a2f888-3334-4b4f-bd54-9760cee8a0d2", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamesjimenez", + "reviewDate": "2021-10-22T02:07:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cef18c27-d815-4a04-9ec3-df64dffd17e4", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "april39", + "reviewDate": "2022-06-16T02:36:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a4c33acb-640b-42cb-bac0-5472f0ca1306", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james52", + "reviewDate": "2022-09-30T01:19:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5b3380b3-bf9c-4ed8-852a-1e999c075d31", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markreyes", + "reviewDate": "2022-02-07T12:18:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "83c14529-a784-47a5-82e2-a39693db6274", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "haydendebbie", + "reviewDate": "2022-08-05T12:22:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "85fe1d17-2ad7-4ac0-9018-74f224ac6cae", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vincent43", + "reviewDate": "2022-08-10T10:23:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8514317e-232f-4b3a-9da3-596767ed193b", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rosemargaret", + "reviewDate": "2022-04-26T00:53:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "36241113-85a6-42a7-b9d2-13c53187de55", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "redwards", + "reviewDate": "2021-04-22T02:18:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "96f583fb-fd24-4631-993b-53309fcaaca5", + "productId": "a25e5744-864b-4357-9aef-bdc2190040a6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "william52", + "reviewDate": "2022-11-05T08:54:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Micro (Steel)", + "description": "This Premium Mouse Micro (Steel) is made from a specially engineered single layer PCB so that each Micro will have its own unique unique layout which gives it the unique look and feel of the", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-11-19T16:00:39", + "price": 611.56, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2021-01-07T17:38:35", + "newPrice": 568.5 + }, + { + "priceDate": "2021-08-20T17:38:35", + "newPrice": 654.83 + }, + { + "priceDate": "2022-04-02T17:38:35", + "newPrice": 595.61 + }, + { + "priceDate": "2022-11-13T17:38:35", + "newPrice": 596.01 + }, + { + "priceDate": "2024-07-20T17:38:35", + "newPrice": 611.56 + } + ], + "descriptionVector": [ + -0.04262765869498253, + -0.026918763294816017, + -0.02968352846801281, + -0.06565061211585999, + 0.005689762067049742, + 0.025649484246969223, + 0.015344449318945408, + -0.008570773527026176, + 0.06836511194705963, + 0.013220606371760368, + 0.028200609609484673, + 0.04227577894926071, + 0.02759738638997078, + -0.08183705806732178, + -0.003902089549228549, + 0.008740429766476154, + -0.016588592901825905, + -0.04727749153971672, + -0.02156517095863819, + -0.02525990456342697, + 0.03601735457777977, + -0.07158229500055313, + -0.03765108063817024, + 0.0012669224524870515, + -0.006723407190293074, + -0.034459032118320465, + 0.012447728775441647, + -0.0067548248916864395, + -0.08827142417430878, + 0.042124975472688675, + 0.03340339660644531, + -0.004778645932674408, + -0.034836046397686005, + 0.031819939613342285, + -0.026516614481806755, + -0.06801323592662811, + -0.019227687269449234, + -0.03259909898042679, + 0.08394833654165268, + 0.02581285685300827, + 0.030688898637890816, + 0.026717688888311386, + 0.0015787440352141857, + 0.008840966038405895, + -0.002213383326306939, + 0.04644806310534477, + 0.04046611487865448, + 0.038053229451179504, + -0.03845537453889847, + -0.011907342821359634, + 0.04742829501628876, + 0.09420310705900192, + -0.06806350499391556, + 0.04441218823194504, + -0.018561631441116333, + -0.05494343116879463, + 0.04453786090016365, + 0.18760190904140472, + 0.06298638880252838, + -0.0757545754313469, + 0.015017704106867313, + -0.05504396930336952, + -0.017832737416028976, + 0.018913509324193, + -0.06776189059019089, + -0.06670625507831573, + -0.05398833006620407, + -0.044010039418935776, + 0.08932705968618393, + 0.0912875309586525, + -0.0633382648229599, + -0.09259451180696487, + 0.06916940957307816, + 0.01910201646387577, + 0.03601735457777977, + 0.08942759782075882, + 0.08324457705020905, + -0.00011555856326594949, + 0.08726605772972107, + -0.03357933461666107, + 0.006205013487488031, + 0.02561178244650364, + -0.05036900192499161, + 0.0485844723880291, + 0.0837472602725029, + 0.0719844400882721, + 0.049489304423332214, + -0.0682143047451973, + -0.0221306923776865, + 0.05484289675951004, + -0.027446581050753593, + 0.061981018632650375, + 0.023487940430641174, + -0.03141779080033302, + -0.03317718580365181, + 0.01606077514588833, + -0.011153316125273705, + 0.04886094853281975, + -0.05569745972752571, + 0.02958299219608307, + 0.034559570252895355, + -0.03604248911142349, + -0.061679407954216, + -0.01058151200413704, + 0.011612015776336193, + -0.00030337803764268756, + -0.011995312757790089, + 0.039385341107845306, + -0.0362686961889267, + -0.11119384318590164, + 0.005975663661956787, + -0.012359758839011192, + -0.04491487517952919, + 0.029859468340873718, + 0.00379526917822659, + -0.018649600446224213, + -0.045417558401823044, + -0.013786126859486103, + -0.010857988148927689, + -0.029557857662439346, + 0.020396430045366287, + 0.022005019709467888, + -0.03845537453889847, + -0.009060890413820744, + 0.01807151362299919, + 0.010518676601350307, + -0.03772648423910141, + -0.0069684660993516445, + 0.020446697250008583, + -0.0037324335426092148, + -0.10375411063432693, + 0.013220606371760368, + 0.005680336616933346, + 0.02732091024518013, + -0.00022424447524826974, + 0.023613611236214638, + -0.014904599636793137, + 0.04378383234143257, + 0.0007579541997984052, + 0.07334169000387192, + 0.01976807415485382, + -0.019076881930232048, + -0.04225064441561699, + -0.018674734979867935, + -0.021678276360034943, + -0.026642287150025368, + -0.03629383072257042, + 0.06635437160730362, + -0.016965607181191444, + -0.006465781480073929, + 0.03792755678296089, + -0.06640464067459106, + -0.021426932886242867, + -0.042501986026763916, + 0.06338853389024734, + 0.020773442462086678, + -0.094504714012146, + 0.01815948262810707, + -0.0841996818780899, + -0.008036671206355095, + 0.045543231070041656, + 0.008495370857417583, + -0.020484399050474167, + 0.014364213682711124, + 0.037575677037239075, + 0.046649135649204254, + 0.0010760592995211482, + -0.005554665345698595, + 0.002499285154044628, + 0.025963662192225456, + -0.049891453236341476, + 0.007678507827222347, + 0.05604933947324753, + -0.040792860090732574, + 0.10687075555324554, + -0.0060322158969938755, + 0.025473544374108315, + -0.0014931304613128304, + -0.015671193599700928, + 0.0038046943955123425, + -0.011505194939672947, + 0.07007423788309097, + -0.054239675402641296, + -0.039862893521785736, + 0.03403175249695778, + 0.06942074745893478, + 0.026818225160241127, + 0.12094593048095703, + -0.04124527424573898, + 0.03543926775455475, + 0.028703292831778526, + -0.013874096795916557, + 0.10103961825370789, + -0.002640665275976062, + 0.013409112580120564, + 0.04056665301322937, + -0.032398026436567307, + 0.0453672893345356, + 0.02099965140223503, + 1.9304759916849434e-05, + -0.019051747396588326, + 0.03755054250359535, + 0.05197759345173836, + -0.020119953900575638, + 0.03463497385382652, + -0.03998856246471405, + 0.0004661614657379687, + 0.030412420630455017, + 0.02459384687244892, + 0.043155476450920105, + -0.036545172333717346, + -0.09586196392774582, + 0.0005670911050401628, + -0.022834450006484985, + 0.04114473983645439, + 0.011322971433401108, + 0.011706268414855003, + -0.06756081432104111, + -0.008501654490828514, + -0.03443389758467674, + 0.007910999469459057, + -0.013635321520268917, + 0.028024669736623764, + -0.057054709643125534, + 0.0031040776520967484, + -7.127911521820351e-05, + 0.06906887143850327, + 0.014879466034471989, + 0.05428994074463844, + 0.041471485048532486, + -0.028376547619700432, + -0.015432418324053288, + 0.026114467531442642, + -0.030010273680090904, + -0.048056650906801224, + 0.05293269455432892, + -0.06142806261777878, + -0.027873864397406578, + 0.05303322896361351, + 0.027094703167676926, + -0.026617152616381645, + -0.022356899455189705, + -0.04295440390706062, + 0.04639779403805733, + 0.04619671776890755, + -0.06142806261777878, + 0.0816359892487526, + -0.06911914050579071, + -0.09043297171592712, + -0.042401451617479324, + -0.018310287967324257, + 0.011951327323913574, + -0.007282644044607878, + 0.0843002125620842, + -0.009268248453736305, + 0.03827943652868271, + 0.049112290143966675, + -0.06504739075899124, + 0.010713466443121433, + -0.12275559455156326, + -0.018913509324193, + 0.031342387199401855, + -0.020182788372039795, + -0.001066633965820074, + -0.052329473197460175, + 0.025938527658581734, + -0.022997822612524033, + -0.09083511680364609, + -0.0017216949490830302, + 0.08203813433647156, + 0.05720551311969757, + -0.02269621193408966, + 0.06484632194042206, + 0.017505992203950882, + -0.021037353202700615, + -0.044286519289016724, + -0.04546782746911049, + 0.10677021741867065, + 0.009425337426364422, + -0.01181308925151825, + 0.02958299219608307, + 0.008068088442087173, + 0.029004903510212898, + 0.009858902543783188, + 0.04953957349061966, + 0.039762355387210846, + -0.00567091116681695, + 0.02636580914258957, + -0.061226990073919296, + -0.08927679061889648, + -0.024317370727658272, + 0.01441448274999857, + 0.01579686440527439, + 0.012177535332739353, + -0.017631664872169495, + -0.027346044778823853, + 0.04586997255682945, + 0.001778246951289475, + 0.028326280415058136, + -0.00020362655050121248, + -0.010078826919198036, + -0.010311318561434746, + -0.09802350401878357, + 0.03146805986762047, + 0.06414256244897842, + 0.0654495432972908, + 0.007577971089631319, + -0.04066718742251396, + -0.0075402697548270226, + -0.04463839530944824, + 0.021816514432430267, + 0.03888265788555145, + -0.061679407954216, + -0.016764532774686813, + 0.060824841260910034, + -0.06022161990404129, + -0.00046380513231270015, + -0.014326512813568115, + 0.05740658566355705, + -0.0351627916097641, + -0.0011569601483643055, + -0.05680336430668831, + -0.06801323592662811, + 0.06962182372808456, + 0.052128396928310394, + -0.025762587785720825, + -0.0346098393201828, + 0.005202786065638065, + -0.015042837709188461, + -0.06957155466079712, + 0.036721114069223404, + -0.033830676227808, + -0.06645490974187851, + -0.020295891910791397, + -0.0035627775359898806, + -0.028527354821562767, + 0.0020264475606381893, + 0.027446581050753593, + 0.08088196069002151, + -0.031819939613342285, + 0.007508852053433657, + 0.03450930118560791, + -0.024141430854797363, + 0.016374953091144562, + -0.013220606371760368, + -0.032950978726148605, + -0.00759053835645318, + -0.08118356764316559, + -0.00799268577247858, + 0.04586997255682945, + 0.0012889148201793432, + -0.09299665689468384, + 0.038354840129613876, + -0.0005199644365347922, + 0.10355303436517715, + 0.007207241374999285, + 0.029004903510212898, + -0.010889406315982342, + 0.040315307676792145, + 0.05549638718366623, + 0.0019400485325604677, + -0.007490001153200865, + 0.04436191916465759, + 0.04152175039052963, + -0.01927795633673668, + 0.04124527424573898, + -0.03978748992085457, + -0.007138121873140335, + 0.021288694813847542, + 0.025184500962495804, + -0.007829313166439533, + -0.010374154895544052, + 0.030965374782681465, + 0.07173310220241547, + -0.05906544625759125, + 0.023110926151275635, + 0.04046611487865448, + 0.04757910221815109, + -0.031040776520967484, + 0.018850674852728844, + 0.004473893437534571, + 0.046096183359622955, + 0.003421397414058447, + 0.03845537453889847, + 0.002318633021786809, + -0.01394949946552515, + 0.02598879672586918, + 0.015155942179262638, + -0.05398833006620407, + 0.006497199181467295, + 0.0014247967628762126, + -0.03888265788555145, + 0.011932476423680782, + 0.018360557034611702, + 0.02059750445187092, + -0.01036158762872219, + -0.01158688124269247, + 0.049891453236341476, + -0.026642287150025368, + -0.007188390474766493, + 0.019805775955319405, + 0.018209751695394516, + -0.04602077975869179, + -0.03775161877274513, + 0.014690958894789219, + -0.021062487736344337, + 0.07168283313512802, + 0.04727749153971672, + -0.045819707214832306, + -0.045618630945682526, + 0.02345023863017559, + -0.04378383234143257, + 0.08133437484502792, + -0.033705007284879684, + -0.006773675791919231, + 0.028200609609484673, + 0.06248370185494423, + 0.007665941026061773, + 0.0132834417745471, + -0.02825087681412697, + 0.1062675341963768, + -0.04860960692167282, + -0.013585052452981472, + 0.05700444057583809, + 0.0016918480396270752, + 0.005614359397441149, + -0.06374041736125946, + 0.030035408213734627, + 0.09269504994153976, + -0.044261384755373, + -0.06323772668838501, + -0.0831943079829216, + -0.10068773478269577, + -0.01986861042678356, + -0.01768193207681179, + 0.03981262445449829, + 0.014163140207529068, + 0.022180959582328796, + 0.01087055541574955, + 0.07429679483175278, + 0.05162571370601654, + -0.043431952595710754, + 0.030337018892169, + -0.04579457268118858, + -0.06474578380584717, + 0.04262765869498253, + -0.046096183359622955, + -0.02752198465168476, + 0.017254650592803955, + -0.04740316420793533, + -0.008093222975730896, + -0.011687418445944786, + -0.030010273680090904, + -0.05604933947324753, + 0.052631083875894547, + 0.020936815068125725, + 0.031995877623558044, + 0.08671310544013977, + 0.010707182809710503, + 0.07334169000387192, + -0.06705813109874725, + 0.11833196878433228, + 0.1083788126707077, + -0.0023327709641307592, + -0.039460744708776474, + -0.06680679321289062, + -0.0056112175807356834, + 0.03307665139436722, + 3.760316758416593e-05, + 0.01012281235307455, + 0.03689705207943916, + -0.035967085510492325, + 0.004923167638480663, + -0.010619212873280048, + 0.029356783255934715, + -0.07263793051242828, + 0.01910201646387577, + -0.02674282342195511, + -0.033327993005514145, + 0.022080423310399055, + -0.0010493542067706585, + -0.002939134370535612, + -0.049388766288757324, + 0.05051980912685394, + -0.026315541937947273, + -0.03533872961997986, + 0.012435161508619785, + 0.012221520766615868, + -0.0027176388539373875, + 0.02646634727716446, + -0.0006970822578296065, + 0.032372891902923584, + -0.001787672284990549, + -0.04275332763791084, + -0.02749685011804104, + 0.05609960854053497, + 0.03292584419250488, + 0.037852153182029724, + 0.0501427948474884, + 0.005268763285130262, + 0.021690841764211655, + -0.027924131602048874, + -0.018863242119550705, + 0.06560035049915314, + 0.002093995688483119, + 0.032096415758132935, + 0.027773326262831688, + 0.05665256083011627, + 0.06072430685162544, + -0.012981831096112728, + 0.051675982773303986, + -0.028376547619700432 + ] + }, + { + "id": "cb80d8a2-3b76-4d20-8df1-cb3684ebc97b", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emily86", + "reviewDate": "2021-10-10T07:17:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1ccf9c62-7514-4c7c-841e-a0d70f541d85", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gcrawford", + "reviewDate": "2021-01-25T21:00:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2e9cfda4-1107-4150-aa2b-ab4aed068ba6", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "clarkpatricia", + "reviewDate": "2022-11-15T01:41:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "17124620-2d52-4cbc-8571-7b9acdeb6e01", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david21", + "reviewDate": "2021-05-01T23:44:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "21eaf401-9d94-4d5f-98ef-c42655309d86", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sarah23", + "reviewDate": "2021-04-25T06:19:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bc808e46-fef3-48e6-bd49-4fc443f84ee7", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erogers", + "reviewDate": "2021-01-07T17:38:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "88a27c40-43b5-4c32-a9ab-e2fe3b73a042", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "glenn30", + "reviewDate": "2022-09-21T16:47:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d29485fe-f735-433d-a5c5-7fd66be63227", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "averypaul", + "reviewDate": "2021-08-14T12:02:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4cb8fbd6-bedc-44a2-a313-17fc1e8bf25e", + "productId": "4df4fefb-9dce-42ec-8246-c9c16d5877a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yangmichael", + "reviewDate": "2021-12-01T19:57:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Pro (Steel)", + "description": "This Premium Mouse Pro (Steel) is a standard price model for a single-speaker, dual-zone speaker setup. It is a $140 model or $180 for your model of 1/4", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-12-25T20:57:25", + "price": 856.11, + "stock": 1, + "priceHistory": [ + { + "priceDate": "2021-10-08T04:06:37", + "newPrice": 841.47 + }, + { + "priceDate": "2022-03-15T04:06:37", + "newPrice": 865.67 + }, + { + "priceDate": "2022-08-20T04:06:37", + "newPrice": 892.11 + }, + { + "priceDate": "2023-08-23T04:06:37", + "newPrice": 856.11 + } + ], + "descriptionVector": [ + -0.0352175310254097, + -0.00595081364735961, + -0.0439641997218132, + 0.02457275614142418, + -0.042938198894262314, + -0.025060107931494713, + -0.03331942483782768, + 0.08787710219621658, + 0.02870241552591324, + 0.08125938475131989, + -0.010324148461222649, + 0.010529348626732826, + 0.014838558621704578, + -0.04496455192565918, + 0.03593573346734047, + -0.03652568534016609, + -0.024675356224179268, + -0.02340567857027054, + -0.036397434771060944, + -0.02698386088013649, + 0.027342962101101875, + -0.01703163981437683, + -0.006098301615566015, + 0.007226903922855854, + -0.10034302622079849, + 0.0048222108744084835, + -0.0018548198277130723, + 0.0376029871404171, + 0.03290902450680733, + -7.364372140727937e-05, + 0.01728813908994198, + 0.06212444230914116, + -0.007797617930918932, + 0.018096117302775383, + 0.004665104206651449, + -0.015710661187767982, + -0.05807173252105713, + -0.05889253318309784, + 0.05735353007912636, + 0.12476188689470291, + -0.0041296593844890594, + 0.019981395453214645, + 0.006912690587341785, + -0.06422774493694305, + 0.023046577349305153, + -0.0030507538467645645, + -0.02211035043001175, + 0.11665646731853485, + -0.007855330593883991, + 0.004828623495995998, + -0.0014588470803573728, + 0.08166978508234024, + -0.05976463481783867, + 0.046785708516836166, + 0.03088267147541046, + -0.07320526987314224, + 0.05309562012553215, + 0.20530307292938232, + -0.008278556168079376, + -0.015402860008180141, + 0.032960325479507446, + 0.0003815446107182652, + -0.022790076211094856, + -0.03242167457938194, + -0.07489816844463348, + -0.01345345564186573, + -0.03490972891449928, + 0.010356211103498936, + 0.0015710660954937339, + 0.07695017755031586, + -0.03983454033732414, + -0.09357141703367233, + 0.07120456546545029, + 0.02852286584675312, + 0.02481643110513687, + 0.008272144012153149, + 0.06622844934463501, + 0.049350712448358536, + 0.06289394199848175, + -0.019789019599556923, + -0.01864759251475334, + 0.022623350843787193, + -0.038115985691547394, + 0.05781523138284683, + 0.09434091299772263, + 0.02155887521803379, + -0.03088267147541046, + -0.09290451556444168, + -0.014530758373439312, + 0.06879346072673798, + 0.0031485448125749826, + 0.03780818730592728, + 0.01909646950662136, + -0.03026706911623478, + 0.013184130191802979, + -0.01969924569129944, + -0.04888901114463806, + 0.04632400721311569, + -0.036217883229255676, + -0.008849270641803741, + 0.049478963017463684, + -0.053557321429252625, + -0.050966665148735046, + 0.02459840662777424, + -0.0024463743902742863, + 0.021622998639941216, + -0.009830384515225887, + 2.4172173652914353e-05, + -0.011914452537894249, + -0.10260023176670074, + -0.03414022922515869, + 0.0097341975197196, + 0.04650355502963066, + -0.04804255813360214, + 0.0223796758800745, + 0.04006539285182953, + -0.03750038519501686, + -0.021353673189878464, + -0.016185186803340912, + -0.033114224672317505, + 0.010041997767984867, + 0.014902683906257153, + -0.025098582729697227, + -0.01676231250166893, + 0.04742695763707161, + -0.009791909717023373, + 0.009580296464264393, + 0.02258487604558468, + 0.0018660417990759015, + -0.053454723209142685, + -0.07243576645851135, + 0.07376956939697266, + 0.0031565602403134108, + 0.017762664705514908, + -0.03591008111834526, + 0.005030617583543062, + -0.019455568864941597, + -0.017377914860844612, + 0.023367203772068024, + 0.02772771380841732, + -0.015107885003089905, + 0.01591586135327816, + 0.0017025226261466742, + 0.0633043423295021, + -0.04786301031708717, + -0.03431977704167366, + 0.011734901927411556, + 0.06561285257339478, + 0.00932379625737667, + -0.03929588943719864, + 0.03365287557244301, + -0.07792487740516663, + -0.002569815143942833, + 0.04378465190529823, + 0.05899513512849808, + -0.008919808082282543, + -0.07587287575006485, + 0.012587766163051128, + -0.056737929582595825, + 0.0683317556977272, + 0.03829553723335266, + -0.017416389659047127, + -0.05802043154835701, + -0.005181311629712582, + -0.023085052147507668, + 0.05494242534041405, + 0.09818842262029648, + 0.04563145339488983, + -0.0050209988839924335, + -0.004027059301733971, + 0.014479458332061768, + -0.05986723676323891, + -0.02700951136648655, + -0.08228538930416107, + 0.05142836645245552, + -0.04814516007900238, + 0.0009458459098823369, + 0.05219786986708641, + 0.03503797948360443, + 0.04473370313644409, + 0.06653625518083572, + 0.07428257167339325, + -0.054429423063993454, + -0.0638173446059227, + 0.051941368728876114, + 0.0386546365916729, + 0.030600519850850105, + 0.04265604913234711, + -0.006938341073691845, + 0.02272595278918743, + 0.06309914588928223, + 0.02949756756424904, + -0.021841024979948997, + -0.03021577000617981, + -0.053608622401952744, + 0.03275512531399727, + 0.008874920196831226, + 0.07612937688827515, + 0.05412162467837334, + -0.022495102137327194, + 0.005078711546957493, + 0.03516623005270958, + 0.045374952256679535, + -0.033062927424907684, + -0.02235402539372444, + -0.04747825860977173, + 0.03285772353410721, + 0.05889253318309784, + -0.0030283101368695498, + -0.04170699417591095, + -0.02573983371257782, + -0.055917128920555115, + -0.01424860768020153, + 0.00941357109695673, + 0.06848565489053726, + 0.024559931829571724, + 0.04919681325554848, + -0.0027509687934070826, + -0.007444929331541061, + -0.09275060892105103, + 0.03685913607478142, + 0.013581706210970879, + -0.008990345522761345, + -0.021969275549054146, + -0.09859882295131683, + 0.004524029325693846, + 0.03247297555208206, + -0.007040941156446934, + 0.0871075987815857, + -0.03747473657131195, + -0.0516335666179657, + 0.031190471723675728, + 0.031344372779130936, + 0.054429423063993454, + -0.06371474266052246, + 0.030061868950724602, + -0.03490972891449928, + -0.03647438436746597, + 0.04111704230308533, + 0.051171865314245224, + -0.06904995441436768, + -0.015172009356319904, + -0.013979282230138779, + -0.03824423626065254, + -0.049427662044763565, + -0.041193995624780655, + 0.12465928494930267, + -0.09423831850290298, + -0.08018208295106888, + -0.015313085168600082, + -0.09634161740541458, + -0.020302021875977516, + -0.033011626452207565, + 0.0003292425535619259, + -0.026201535016298294, + 0.041245292872190475, + 0.06048283725976944, + -0.05555802583694458, + 0.0635608434677124, + -0.07058896124362946, + 0.030061868950724602, + 0.018814317882061005, + -0.0656641498208046, + 0.02454710565507412, + -0.06032893806695938, + 0.016505813226103783, + -0.010279260575771332, + -0.12106827646493912, + -0.05858473479747772, + 0.055968426167964935, + -0.02772771380841732, + 0.05473722517490387, + -0.012421040795743465, + 0.027394263073801994, + 0.05206961929798126, + 0.011946515180170536, + -0.04886336252093315, + 0.07094806432723999, + -0.015287434682250023, + -0.008605594746768475, + 0.06032893806695938, + 0.046118807047605515, + 0.007085828576236963, + 0.03378112614154816, + 0.012703191488981247, + -0.013645831495523453, + 0.015236134640872478, + 0.05571192875504494, + 0.015018109232187271, + -0.05386512354016304, + -0.013697131536900997, + -0.02084067277610302, + 0.05730223283171654, + 0.004716404713690281, + 0.029959268867969513, + 0.044502850621938705, + 0.06217574328184128, + 0.023456979542970657, + 0.012690366245806217, + 0.03198562189936638, + 0.011144950054585934, + 0.026252834126353264, + -0.05930293723940849, + -0.0178780909627676, + 0.0481964610517025, + 0.04665745794773102, + 0.013158479705452919, + -0.03752603754401207, + -0.016159536316990852, + -0.04232259839773178, + 0.07269226759672165, + -0.057456132024526596, + -0.07700147479772568, + -0.006454195827245712, + 0.08921090513467789, + -0.009278908371925354, + 0.001233607530593872, + 0.03647438436746597, + 0.02081502228975296, + 0.05889253318309784, + -0.050274115055799484, + -0.053454723209142685, + -0.06043154001235962, + 0.021622998639941216, + -0.03578183054924011, + -0.05571192875504494, + -0.023367203772068024, + 0.01919906958937645, + 0.024636881425976753, + -0.03113917075097561, + -0.03262687474489212, + -0.008118243888020515, + -0.017044464126229286, + -0.06043154001235962, + 0.07807877659797668, + 0.029805367812514305, + -0.019686419516801834, + -0.02788161300122738, + 0.016775138676166534, + -0.04647790640592575, + 0.08664590120315552, + 0.043758999556303024, + -0.015979986637830734, + 0.042091745883226395, + 0.022251425310969353, + -0.041270945221185684, + 0.021353673189878464, + -0.025355083867907524, + -0.0767962783575058, + 0.02777901291847229, + 0.0014644580660387874, + -0.061662741005420685, + -0.021353673189878464, + -0.04878641292452812, + 0.04955591261386871, + -0.04763215780258179, + 0.006232964340597391, + 0.012786554172635078, + 0.037141285836696625, + -0.0017906947759911418, + -0.04763215780258179, + 0.004155309405177832, + -0.04578535631299019, + 0.032190822064876556, + -0.04655485600233078, + 0.07848917692899704, + 0.007085828576236963, + 0.03024141862988472, + 0.0067459652200341225, + -0.02076372317969799, + -0.0003659141075331718, + -0.01964794471859932, + 0.05817433446645737, + 0.06448424607515335, + -0.0587899349629879, + 0.07146106660366058, + 0.015672186389565468, + -4.027860632049851e-05, + -0.038885489106178284, + 0.0010901275090873241, + 0.030472269281744957, + 0.05391642451286316, + 0.007188429124653339, + -0.029831018298864365, + 0.08064378798007965, + -0.014543583616614342, + -0.028112463653087616, + -0.005556444171816111, + -0.058379534631967545, + -0.020109646022319794, + 0.03934719040989876, + 0.04003974050283432, + -0.037859488278627396, + 0.03288337588310242, + 0.06289394199848175, + -0.05437812581658363, + -0.018198717385530472, + 0.02954886667430401, + -0.04255344718694687, + 0.004482347518205643, + -0.005081918090581894, + 0.028445914387702942, + -0.03703868389129639, + -0.0049985554069280624, + 0.00501779280602932, + -0.06186794117093086, + 0.06068803742527962, + -0.0008841254748404026, + 0.011395038105547428, + -0.029087167233228683, + -0.02441885508596897, + -0.03765428438782692, + 0.027368612587451935, + 0.02173842489719391, + -0.004049502778798342, + -0.0038378899917006493, + 0.028035514056682587, + -0.020263547077775, + 0.021841024979948997, + -0.08992910385131836, + 0.08392699062824249, + -0.06756225228309631, + -0.003578183241188526, + 0.043835949152708054, + -0.02931801788508892, + 0.011946515180170536, + -0.03278077393770218, + 0.00953540951013565, + 0.05740483105182648, + 0.0029241067823022604, + -0.03329377621412277, + -0.10152292996644974, + -0.016198011115193367, + 0.004014234058558941, + -0.015300259925425053, + 0.019737720489501953, + 0.05153096839785576, + 0.06315044313669205, + 0.0005751224234700203, + -0.007739905267953873, + -0.006739553064107895, + -0.018237192183732986, + 0.06571544706821442, + 0.03424282744526863, + -0.06551025062799454, + 0.010426748543977737, + -0.04988936334848404, + -0.04160439595580101, + 0.03819293901324272, + 0.004110421985387802, + 0.03095962107181549, + -0.023431329056620598, + -0.08433739095926285, + -0.002848759526386857, + 0.07417996972799301, + 0.04986371472477913, + 0.000203296760446392, + -0.02402127906680107, + -0.018288491293787956, + 0.022674651816487312, + -0.05160791799426079, + 0.06976816058158875, + 0.12517228722572327, + 0.012158127501606941, + -0.058328233659267426, + -0.015107885003089905, + 0.033806778490543365, + 0.013761256821453571, + -0.006970403250306845, + 0.057456132024526596, + -0.034858427941799164, + -0.02949756756424904, + -0.0016151521122083068, + 0.01599281094968319, + 0.0077142552472651005, + -0.03249862417578697, + -0.00717560388147831, + -0.0024800400715321302, + -0.03726953640580177, + 0.03847508877515793, + 0.020968923345208168, + 0.04327164962887764, + -0.026573460549116135, + 0.08520949631929398, + -0.026291310787200928, + 0.033037275075912476, + 0.002633940428495407, + 0.05889253318309784, + 0.013915156945586205, + 0.06484334915876389, + -0.010657599195837975, + 0.07366696745157242, + 0.03088267147541046, + 0.041270945221185684, + -0.03534578159451485, + -0.021917974576354027, + 0.047811709344387054, + -0.029882317408919334, + 0.0023533927742391825, + -0.0010364226764068007, + 0.03816728666424751, + -0.038013387471437454, + -0.02504728175699711, + -0.03165217116475105, + -0.016467338427901268, + 0.013248255476355553, + 0.01763441599905491, + -0.10834585130214691, + 0.06217574328184128, + 0.018865618854761124, + 0.01745486445724964, + 0.008470932021737099 + ] + }, + { + "id": "83845ef3-8ee0-4297-9d80-cb2be66f0097", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emily39", + "reviewDate": "2022-07-23T09:53:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a245df2f-43e5-421d-a05a-b3a88a9ba545", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertobrien", + "reviewDate": "2021-10-08T04:06:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "124bde3d-a483-4475-b467-8ba54e0180d9", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kylewalker", + "reviewDate": "2022-08-20T10:40:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "030d24f7-c6a7-4341-9ae5-cbb692e14627", + "productId": "d6d1bece-12b0-4b16-aec8-1e6e7da3a7fb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harveytimothy", + "reviewDate": "2022-02-23T13:10:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "52b82fe3-be0f-4493-b697-821a373c964a", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Ultra (Red)", + "description": "This Luxe Stand Ultra (Red) is the ultimate portable platform for gaming, making it perfect for small portable computers.\n\nThe Luxe stand is compatible with nearly every platform. It allows the user to stand on the upper portion of the", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-01-11T09:15:13", + "price": 891.22, + "stock": 34, + "priceHistory": [ + { + "priceDate": "2021-01-30T19:53:40", + "newPrice": 824.23 + }, + { + "priceDate": "2021-09-18T19:53:40", + "newPrice": 920.79 + }, + { + "priceDate": "2022-05-07T19:53:40", + "newPrice": 853.38 + }, + { + "priceDate": "2022-12-24T19:53:40", + "newPrice": 834.07 + }, + { + "priceDate": "2024-05-11T19:53:40", + "newPrice": 891.22 + } + ], + "descriptionVector": [ + -0.0381874144077301, + 0.0016599084483459592, + -0.04181826487183571, + -0.015005826018750668, + 0.008842265233397484, + -0.031154228374361992, + -0.05260925740003586, + 0.025999942794442177, + 0.013774383813142776, + 0.03653702884912491, + 0.03062102571129799, + -0.03247453644871712, + 0.02390521951019764, + -0.05723034217953682, + 0.06439048051834106, + -0.03102727420628071, + -0.05773815140128136, + -0.0031484304927289486, + 0.037527259439229965, + 0.0011036962969228625, + 0.05499597266316414, + -0.08257012814283371, + -0.015894494950771332, + 0.03029094822704792, + 0.012498507276177406, + -0.034658126533031464, + 0.028386656194925308, + 0.001237790216691792, + 0.041843656450510025, + 0.022000927478075027, + 0.005843004677444696, + -0.02085835114121437, + -0.037044838070869446, + 0.025314396247267723, + -0.03110344707965851, + -0.050552621483802795, + 0.05611315742135048, + 0.03133196011185646, + 0.01839546672999859, + 0.015640590339899063, + -0.01701168157160282, + 0.07383577525615692, + 0.018522419035434723, + 0.009559549391269684, + -0.0018884235760197043, + -0.0375780425965786, + 0.010403785854578018, + -0.02605072408914566, + -0.03140813484787941, + -0.02549212984740734, + -0.004665516782552004, + 0.04897840693593025, + 0.022584911435842514, + 0.023765571415424347, + 0.013368134386837482, + -0.03285539522767067, + 0.03557218611240387, + 0.1338590830564499, + 0.040726471692323685, + -0.03882217779755592, + 0.007591779809445143, + -0.056874874979257584, + 0.027193298563361168, + -0.00834714900702238, + -0.00643650908023119, + -0.05230456963181496, + 0.04006631672382355, + -0.008670879527926445, + 0.07403890043497086, + 0.043773338198661804, + -0.05504675209522247, + 0.05667174980044365, + 0.03986319154500961, + -0.020985305309295654, + 0.06723422557115555, + -0.021683545783162117, + -0.0030738457571715117, + -0.031154228374361992, + 0.029224544763565063, + -0.03902530297636986, + 0.06632016599178314, + -0.014282194897532463, + -0.043037012219429016, + -0.01910640299320221, + 0.0428592786192894, + -0.01916988007724285, + 0.05697643384337425, + -0.08962870389223099, + -0.021556593477725983, + 0.08551543205976486, + -0.028412045910954475, + 0.09303104132413864, + 0.056062374264001846, + -0.01319039985537529, + -0.002002681139856577, + -0.03102727420628071, + -0.03940616175532341, + 0.05738268420100212, + 0.0244511179625988, + -0.03978702053427696, + 0.01645308919250965, + 0.054081909358501434, + -0.0544881597161293, + -0.034251876175403595, + 0.02111225761473179, + 0.0021772412583231926, + 0.07449592649936676, + 0.018357381224632263, + -0.008461407385766506, + -0.12329660356044769, + 0.052152227610349655, + -0.01278415136039257, + 0.0037165444809943438, + -0.02917376346886158, + -0.002269282005727291, + 0.05631628260016441, + 0.010403785854578018, + -0.03564835712313652, + 0.03308391198515892, + -0.025860294699668884, + 0.04900379851460457, + 0.032322194427251816, + 0.05641784146428108, + 0.03699405863881111, + -0.014713834039866924, + -0.01458688173443079, + -0.03854288160800934, + -0.01863667741417885, + 0.08348418772220612, + -0.004732167348265648, + -0.04329092055559158, + 0.10592944920063019, + 0.010061012580990791, + 0.04925770312547684, + -0.04057412967085838, + 0.1142575591802597, + 0.008861307986080647, + -0.03130657225847244, + -0.04450966790318489, + 0.013977508060634136, + -0.0377303846180439, + -0.06053111329674721, + -0.040244050323963165, + -0.014726529829204082, + -0.07363265007734299, + -0.016084924340248108, + -0.046160053461790085, + -0.023854438215494156, + -0.05707799643278122, + 0.011165502481162548, + 0.04257998242974281, + -0.016326135024428368, + -0.03851749375462532, + -0.021962841972708702, + 0.023295845836400986, + 0.042960841208696365, + -0.04722645878791809, + 0.0115082748234272, + 0.03318547457456589, + 0.10724975913763046, + 0.021950146183371544, + 0.0597693994641304, + -0.06560923159122467, + -0.001967769116163254, + 0.018027303740382195, + 0.028005797415971756, + 0.04115810990333557, + 0.05778893455862999, + -0.008658183738589287, + 0.008512187749147415, + -0.03402336314320564, + 0.011267065070569515, + -0.05789049714803696, + -0.024743108078837395, + 0.039913974702358246, + -0.02013472095131874, + 0.09323416650295258, + -0.02413373440504074, + 0.07368343323469162, + -0.01839546672999859, + 0.0014615445397794247, + 0.02597455121576786, + -0.1014099270105362, + 0.018966754898428917, + 0.04113272204995155, + 0.003713370533660054, + 0.05712877959012985, + 0.04801356419920921, + 0.027218690142035484, + -0.008105939254164696, + -0.07256624102592468, + -0.014320280402898788, + 0.016897423192858696, + -0.013863250613212585, + -0.009457986801862717, + -0.06743735074996948, + 0.02365131489932537, + 0.031078055500984192, + 0.010498999617993832, + 0.005506579298526049, + -0.028005797415971756, + 0.11689817905426025, + 0.04194521903991699, + 0.052710819989442825, + 0.027117127552628517, + -0.0455760695040226, + 0.021835889667272568, + -0.021962841972708702, + 0.020185502246022224, + 0.007566389162093401, + -0.004243398550897837, + 0.03326164558529854, + -0.03283000364899635, + 0.04387490078806877, + 0.008194806054234505, + 0.017887655645608902, + 0.06256236135959625, + 0.016910118982195854, + -0.02612689509987831, + -0.02671087719500065, + 0.03844131901860237, + -0.006906234659254551, + -0.03618156164884567, + -0.05748424679040909, + -0.03826358541846275, + -0.03996475413441658, + 0.08942557871341705, + 0.03138274326920509, + 0.030392510816454887, + 0.034251876175403595, + 0.03310929983854294, + -0.007255354896187782, + 0.035292889922857285, + 0.019969681277871132, + -0.030798759311437607, + -0.03595304489135742, + -0.01590719074010849, + -0.056874874979257584, + 0.005957262124866247, + -0.012498507276177406, + -0.06860531866550446, + -0.03100188449025154, + -0.0324491448700428, + 0.04313857480883598, + -0.025136662647128105, + 0.04379872977733612, + 0.08449981361627579, + 0.00031281972769647837, + -0.020109329372644424, + -0.029605403542518616, + -0.008334454149007797, + 0.013533173128962517, + -0.012028781697154045, + 0.0913044810295105, + -0.0035515057388693094, + 0.020198198035359383, + 0.0641365721821785, + -0.003045281395316124, + -0.02853899821639061, + 0.026634706184267998, + -0.03468351811170578, + 0.00014530149928759784, + -0.027599547058343887, + -0.006204820238053799, + 0.0024454290978610516, + 0.03006243333220482, + 0.07266780734062195, + -0.003529289038851857, + 0.01646578311920166, + -0.040244050323963165, + -0.04494130611419678, + -0.06017564609646797, + 0.08785136789083481, + -0.006817367393523455, + -0.015005826018750668, + 0.03267766162753105, + -0.03140813484787941, + 0.06865609437227249, + -0.02117573469877243, + -0.01726558618247509, + 0.0405995175242424, + -1.6055071682785638e-05, + 0.03242375701665878, + -0.0377303846180439, + 0.024920843541622162, + -0.06692954152822495, + 0.06048033386468887, + -0.030037041753530502, + 0.023562448099255562, + -0.04092959687113762, + -0.04387490078806877, + 0.0026549012400209904, + 0.05849986895918846, + 0.022953074425458908, + 0.06891000270843506, + 0.036968667060136795, + 0.002921502338722348, + 0.02292768284678459, + 0.010790991596877575, + -0.05337097495794296, + 0.03732413426041603, + 0.04092959687113762, + -0.004233877174556255, + -0.024603459984064102, + -0.0375780425965786, + 0.08886698633432388, + -0.037222571671009064, + 0.05860143154859543, + -0.07388655096292496, + -0.00327855721116066, + 0.14492936432361603, + 0.020667923614382744, + -0.07906623184680939, + 0.005589098669588566, + 0.07023031264543533, + -0.05596081167459488, + 0.028716733679175377, + -0.005119373556226492, + 0.009870583191514015, + 0.060632675886154175, + -0.021289991214871407, + -0.07891388982534409, + -0.07733967155218124, + 0.07693342119455338, + 0.09389432519674301, + -0.07134749740362167, + -0.0101498793810606, + 0.021289991214871407, + -0.09485916048288345, + -0.06753890961408615, + -0.04524599388241768, + 0.01741793006658554, + -0.007985333912074566, + -0.04486513510346413, + 0.0269393939524889, + 0.03707022964954376, + -0.049283094704151154, + -0.00787742342799902, + 0.024654241278767586, + 0.006544419098645449, + 0.07759357988834381, + 0.015564418397843838, + -0.03267766162753105, + -0.02846282720565796, + 0.007858380675315857, + -0.030824150890111923, + 0.04174209386110306, + 0.026253847405314445, + 0.05042566731572151, + 0.06891000270843506, + 0.0014060026733204722, + -0.0354706235229969, + 0.029300715774297714, + -0.001916987937875092, + 0.0427069365978241, + 0.03988858312368393, + 0.09140604734420776, + -0.08449981361627579, + -0.03638468310236931, + 0.018243122845888138, + -0.010810034349560738, + -0.00847410224378109, + 0.05179676041007042, + 0.05682409182190895, + 0.010207008570432663, + 0.031763602048158646, + -0.028919856995344162, + -0.045906148850917816, + -0.04725184664130211, + 0.02494623325765133, + -0.04598231986165047, + -0.08714043349027634, + -0.00451634731143713, + 0.05941392853856087, + -0.02780267223715782, + 0.03029094822704792, + 0.006576157175004482, + 0.06296861171722412, + -0.021708935499191284, + 0.042402248829603195, + -0.02678705006837845, + 0.008931132033467293, + 0.05141590163111687, + 0.006119126919656992, + 0.09455447643995285, + -0.04082803428173065, + 0.0058715688064694405, + -0.021226515993475914, + 0.04770887643098831, + -0.027447205036878586, + -0.022013623267412186, + -0.0695701539516449, + 5.926119047217071e-05, + 0.044814351946115494, + 0.016503868624567986, + -0.039685457944869995, + 0.009229471907019615, + 0.0427069365978241, + -0.05301550775766373, + 0.0375780425965786, + 0.0538787879049778, + 0.0641365721821785, + 0.018522419035434723, + -0.05504675209522247, + -0.02158198319375515, + -0.060226429253816605, + -0.019715776666998863, + 0.0381874144077301, + 0.003313469234853983, + -0.10090211778879166, + 0.016745079308748245, + 0.012968232855200768, + -0.09577322751283646, + 0.10034352540969849, + 0.039761628955602646, + 0.02413373440504074, + 0.09165995568037033, + 0.03958389535546303, + 0.019398394972085953, + -0.0855662152171135, + 0.024095648899674416, + -0.020033158361911774, + -0.07378499209880829, + -0.06337486207485199, + -0.07942169904708862, + 0.0014186979969963431, + -0.0538787879049778, + -0.025225529447197914, + -0.023206979036331177, + -0.07551155239343643, + 0.04854676499962807, + -0.11324193328619003, + -0.03981241211295128, + 0.028665952384471893, + -0.012003391049802303, + -0.03511515632271767, + 0.07165218144655228, + 0.021531201899051666, + -0.01981733925640583, + 0.036816325038671494, + -0.012219211086630821, + -0.08389043807983398, + 0.05636706203222275, + 0.013660125434398651, + -0.04397646337747574, + -0.011343236081302166, + -0.010638647712767124, + 0.0706365630030632, + 0.04852137714624405, + -0.009039042517542839, + 0.007566389162093401, + 0.00013994566688779742, + -0.04577919468283653, + 0.00823923945426941, + 0.0356229692697525, + -0.030265556648373604, + -0.014561491087079048, + 0.04882606491446495, + 0.05337097495794296, + 0.03572452813386917, + 0.05291394516825676, + 0.04384951293468475, + 0.0455760695040226, + -0.0024803411215543747, + -0.023625923320651054, + -0.023841744288802147, + -0.07058577984571457, + -3.95239912904799e-05, + 0.02398139238357544, + -0.004281484521925449, + -0.014206022955477238, + -0.0380350723862648, + -0.008518535643815994, + 0.008658183738589287, + -0.05065418407320976, + -0.044560447335243225, + 0.018497029319405556, + -0.09739822149276733, + 0.0001900325296446681, + 0.006077867466956377, + -0.012358859181404114, + 0.01637691631913185, + -0.021201124414801598, + -0.022026317194104195, + 0.013368134386837482, + -0.03618156164884567, + 0.044408105313777924, + 0.018560506403446198, + 0.01007370837032795, + 0.041361235082149506, + 0.04237685725092888, + 0.026914002373814583, + 0.01885249651968479, + -0.09755056351423264, + -0.04057412967085838, + -0.003824454266577959, + -0.008702617138624191, + 0.0508573092520237, + -0.09450369328260422, + 0.05469128489494324, + 0.006087388843297958, + 0.022254833951592445, + -0.009210429154336452, + 0.04476357251405716, + 0.05717955902218819, + 0.03729874640703201, + -0.013139619491994381, + 0.07520686089992523, + -0.04273232817649841, + -0.0709412470459938, + 0.08881621062755585, + -0.013952117413282394 + ] + }, + { + "id": "78f70010-9cf7-4a0c-9c64-366c57b62489", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "millerkatherine", + "reviewDate": "2021-04-25T17:14:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "54df94f3-cd1e-4828-86d1-11a124a15dce", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "taylorelliott", + "reviewDate": "2022-07-09T07:25:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ce840943-3509-4bb7-a658-0388ef0da586", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "yclayton", + "reviewDate": "2021-05-26T05:20:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cfacdc56-c883-407d-8ba4-429d1c296aee", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "dalenunez", + "reviewDate": "2021-01-30T19:53:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "37dfc4ef-b14c-4675-8a34-db1efc2ffedf", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "icox", + "reviewDate": "2022-12-26T00:37:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bbf47c32-567e-409b-ba70-65cb2d3300e0", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "gregorykristin", + "reviewDate": "2021-09-17T22:32:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5b8c4731-ec60-4af0-afd8-50c26e37a831", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "hmccoy", + "reviewDate": "2021-07-28T21:29:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "72f23ac3-4930-4c00-80d4-d8cdf921e08a", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthew60", + "reviewDate": "2021-04-09T01:30:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8a7a3e35-994f-4966-b926-537e9a3ca16b", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarah05", + "reviewDate": "2021-10-08T17:43:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1a56e194-c950-46d1-873e-35b9f2450525", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonesbriana", + "reviewDate": "2021-10-05T17:02:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "08ac0799-9e96-4888-bccc-013f899a2780", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "cynthiasmith", + "reviewDate": "2022-07-21T18:44:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a946b587-85f6-47dc-b9ce-56777b71e9e5", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "murraybarbara", + "reviewDate": "2021-08-16T17:06:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "29e91944-3f24-4c87-b589-1cc36c0d7b96", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "elizabethnewman", + "reviewDate": "2021-04-03T14:21:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "04acec8a-f6e2-4a17-a0bc-34866c797693", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "lodom", + "reviewDate": "2022-10-09T02:39:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9038ec6f-9d2a-4f00-b2a1-3f520d7e5bea", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "janetsmith", + "reviewDate": "2022-03-13T18:02:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bbd02251-669d-43f8-ad7f-24ecbc6e4986", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "echavez", + "reviewDate": "2021-03-13T23:39:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "50432e5e-caae-42a5-8177-f8fb0f817e0a", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "johnhansen", + "reviewDate": "2022-07-30T13:44:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ec58dfa2-7ff1-44f1-a193-afb9bcf740ec", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "robyncollins", + "reviewDate": "2022-05-15T20:49:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "189923fd-8742-44e7-a251-0afde1fbb80c", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "jamiegoodwin", + "reviewDate": "2021-09-09T16:06:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3ed48e96-4b4c-499b-94eb-c65b44761e9a", + "productId": "52b82fe3-be0f-4493-b697-821a373c964a", + "category": "Accessory", + "docType": "customerRating", + "userName": "ytaylor", + "reviewDate": "2022-01-14T06:50:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "826bf113-c3f8-44f6-8a4c-bca663ab30f1", + "productId": "826bf113-c3f8-44f6-8a4c-bca663ab30f1", + "category": "Media", + "docType": "product", + "name": "Awesome TV Micro (Black)", + "description": "This Awesome TV Micro (Black) is just gorgeous\n\nIt has a low light in the room with no other feature than low brightness on the LCD that is great. And it is perfect for getting into theater just to watch something. The other thing that i could not love more is the sound quality. I love it when things sound like", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-06-18T18:37:10", + "price": 972.44, + "stock": 35, + "priceHistory": [ + { + "priceDate": "2018-06-18T18:37:10", + "newPrice": 893.83 + }, + { + "priceDate": "2022-01-27T18:37:10", + "newPrice": 988.01 + }, + { + "priceDate": "2025-09-07T18:37:10", + "newPrice": 1035.32 + }, + { + "priceDate": "2025-09-08T18:37:10", + "newPrice": 972.44 + } + ], + "descriptionVector": [ + 0.04641611874103546, + 0.02477973699569702, + -0.020753029733896255, + 0.006957828998565674, + -0.02624816633760929, + 0.03976230323314667, + -0.0022026433143764734, + -0.02567456103861332, + 0.03742199391126633, + 0.0030286347027868032, + 0.007164326962083578, + 0.023517806082963943, + 0.0736050009727478, + 0.018171807751059532, + 0.04588840529322624, + -0.021946128457784653, + 0.028634363785386086, + -0.02822136878967285, + 0.054744865745306015, + 0.07557819783687592, + 0.09755874425172806, + -0.06782305985689163, + -0.038821589201688766, + 0.04515418782830238, + -0.016037996858358383, + 0.009653773158788681, + -0.04818282276391983, + 0.040955401957035065, + 0.023414557799696922, + -0.05121145769953728, + -0.002670131390914321, + 0.0012963473564013839, + -0.041620783507823944, + 0.03152533248066902, + -0.03602239862084389, + -0.03542584925889969, + -0.04905470460653305, + -0.007697779685258865, + 0.08140602707862854, + 0.0015300915110856295, + 0.010043824091553688, + 0.032374270260334015, + -0.03602239862084389, + -0.0009765626164153218, + 0.004129956476390362, + 0.00625229487195611, + 0.00924651324748993, + 0.015177589841187, + -0.01532672718167305, + -0.03829387202858925, + -0.0005470758187584579, + -0.04630139842629433, + -0.04471825063228607, + -0.01225220412015915, + -0.04324981942772865, + 0.06791483610868454, + 0.0014454846968874335, + -0.03145650029182434, + 0.03225954622030258, + -0.059287816286087036, + -0.014535151422023773, + -0.0009399952832609415, + -0.01220631506294012, + -0.013617383316159248, + -0.06919971108436584, + -0.021590493619441986, + 0.025926947593688965, + 0.06690528988838196, + -0.022485317662358284, + 0.01810297556221485, + 0.005411963444203138, + -0.00520833395421505, + 0.0398770235478878, + 0.03271843120455742, + 0.07117291539907455, + -0.0058450354263186455, + 0.03895925357937813, + 0.04187316820025444, + 0.017839116975665092, + -0.006091685499995947, + 0.006022852845489979, + 0.018584802746772766, + -0.0272806566208601, + 0.003911986481398344, + 0.06832782924175262, + 0.03785793110728264, + -0.059287816286087036, + -0.07837739586830139, + -0.014581040479242802, + 0.09296990185976028, + -0.06396843492984772, + 0.08397577702999115, + 0.0649779811501503, + -0.032443102449178696, + 0.09214391559362411, + -0.04361692816019058, + -0.05011013522744179, + 0.02962096408009529, + -0.02324247546494007, + 0.01777028478682041, + 0.06181167811155319, + -0.125183567404747, + 0.04033590853214264, + -0.11976873129606247, + -0.024687960743904114, + 0.020294146612286568, + 0.005328790750354528, + 0.04708150029182434, + 0.015200533904135227, + -0.17134730517864227, + 0.012550478801131248, + -0.03308553993701935, + 0.014408959075808525, + -0.0021610569674521685, + 0.03102056123316288, + 0.05318465828895569, + 0.01653129793703556, + 0.0014332955470308661, + 0.011730222962796688, + 9.155274165095761e-05, + -0.015085812658071518, + -0.03542584925889969, + 0.0121030667796731, + 0.03813326358795166, + 0.008506562560796738, + -0.033269092440605164, + -0.050706684589385986, + 0.07075991481542587, + 0.026661163195967674, + 0.046094901859760284, + -0.07576175779104233, + 0.07121880352497101, + 0.06612519174814224, + 0.01400743518024683, + -0.04370870441198349, + 0.033039651811122894, + -0.011397532187402248, + -0.00406685983762145, + 0.023747248575091362, + -0.07378855347633362, + 0.03271843120455742, + -0.015177589841187, + 0.02764776349067688, + 0.021544605493545532, + 0.0035620874259620905, + 0.048228710889816284, + -0.044098757207393646, + -0.030905839055776596, + -0.011908040381968021, + 0.04611784592270851, + 0.027303600683808327, + -0.14326359331607819, + -0.0456819050014019, + -0.07502754032611847, + 0.059150151908397675, + 0.04097834601998329, + 0.006280975416302681, + -0.017586730420589447, + -0.04357104003429413, + 0.06782305985689163, + -0.011426212266087532, + -0.0496971420943737, + -0.013800937682390213, + -0.039647579193115234, + 0.07108113914728165, + -0.022187042981386185, + 0.02831314504146576, + 0.027165934443473816, + -0.058783043175935745, + 0.0545613132417202, + 0.07828561961650848, + 0.015292310155928135, + 0.0030114264227449894, + 0.0035075948107987642, + 0.005368943326175213, + -0.01997292786836624, + 0.038683924823999405, + -0.026890603825449944, + -0.05272577702999115, + -0.030974673107266426, + -0.062224674969911575, + 0.03595356270670891, + -0.007422449067234993, + -0.04680617153644562, + -0.0035764274653047323, + 0.05924192816019058, + 0.01856185868382454, + 0.04937592148780823, + -0.004660541191697121, + 0.06144457310438156, + -0.023953747004270554, + 0.038247983902692795, + 0.060159698128700256, + -0.06181167811155319, + 0.005463588051497936, + -0.047999270260334015, + 0.015533224679529667, + -0.05355176702141762, + -0.04643906280398369, + 0.06575807929039001, + 0.0001698408741503954, + 0.03994585573673248, + 0.12527534365653992, + -0.00025919778272509575, + -0.02020237036049366, + -0.06392254680395126, + 0.0742015466094017, + 0.059517260640859604, + 0.05011013522744179, + 0.02217557094991207, + -0.024252021685242653, + 0.0049788919277489185, + -0.06144457310438156, + 0.029689796268939972, + 0.0557544119656086, + -0.009011335670948029, + -0.012825808487832546, + -0.05199155956506729, + 0.027991926297545433, + -0.017575258389115334, + 0.043593984097242355, + -0.025261566042900085, + 0.06300477683544159, + -0.018045615404844284, + 0.006986509542912245, + -0.012126010842621326, + 0.04318098723888397, + -0.028129590675234795, + 0.04207966476678848, + 0.044832970947027206, + -0.12426579743623734, + -0.04758627340197563, + -0.0029884823597967625, + 0.03381975367665291, + -0.01916988007724285, + 0.004035311285406351, + -0.0013759351568296552, + -0.02367841638624668, + -0.0028723273426294327, + 0.03602239862084389, + -0.06401432305574417, + 0.05011013522744179, + -0.06997981667518616, + 0.017575258389115334, + 0.06346366554498672, + -0.0742015466094017, + 0.05873715505003929, + -0.008139455690979958, + -0.05015602335333824, + 0.03540290147066116, + -0.02310481108725071, + -0.000825991271995008, + -0.022014962509274483, + 0.02558278478682041, + -0.019927039742469788, + 0.00891382247209549, + 0.11242658644914627, + -0.07117291539907455, + 0.03287903964519501, + -0.052679888904094696, + -0.06158223748207092, + -0.0777808427810669, + 0.047999270260334015, + -0.0026342810597270727, + -0.060022030025720596, + 0.032374270260334015, + 0.021211914718151093, + -0.08140602707862854, + 0.020649781450629234, + 0.022026434540748596, + 0.0016806627390906215, + -0.02067272551357746, + -0.030492844060063362, + 0.044397030025720596, + -0.041987888514995575, + 0.00045386498095467687, + -0.02604166977107525, + 0.023609584197402, + -0.008988390676677227, + -0.00042124121682718396, + 0.08645375072956085, + 0.006785747595131397, + 0.0736050009727478, + -0.016141245141625404, + 0.06415198743343353, + -0.006177726201713085, + 0.01265372708439827, + 0.01986967958509922, + -0.03418686240911484, + -0.03175477683544159, + -0.013055250979959965, + -0.03755965828895569, + 0.040657125413417816, + -0.03505874052643776, + 0.03921164199709892, + 0.09673275798559189, + 0.034576911479234695, + -0.04428230971097946, + 0.013101139105856419, + -0.03170888498425484, + 0.033911529928445816, + 0.03246604651212692, + 0.022313235327601433, + -0.07768906652927399, + -0.044098757207393646, + 0.05345999076962471, + -0.03191538527607918, + 0.09104259312152863, + -0.025926947593688965, + -0.009504635818302631, + 0.0545613132417202, + 0.0005517363315448165, + -0.044190533459186554, + -0.05309288203716278, + -0.004580236505717039, + -0.06543686240911484, + -0.0210054162889719, + -0.005079272668808699, + -0.002503786003217101, + 0.02397669106721878, + -0.0030286347027868032, + -0.019043687731027603, + -0.018389778211712837, + 0.05947137251496315, + -0.013605911284685135, + 0.00048433776828460395, + -0.041184842586517334, + -0.05323054641485214, + 0.008391842246055603, + 0.015785610303282738, + 0.01847008243203163, + -0.0022958542685955763, + 0.02597283571958542, + 0.05557085573673248, + 0.06809838861227036, + -0.03079111874103546, + 0.00036262592766433954, + -0.02604166977107525, + 0.09099670499563217, + 0.04104717820882797, + 0.044557638466358185, + 0.007640419062227011, + -0.030607564374804497, + -0.022152626886963844, + -0.023586640134453773, + -0.07576175779104233, + -0.05685573071241379, + -0.03437041491270065, + 0.05309288203716278, + -0.06419787555932999, + 0.0014203895116224885, + -0.027395376935601234, + -0.018871605396270752, + 0.05901248753070831, + 0.026523496955633163, + 0.039188697934150696, + 0.018710996955633163, + 0.035242293030023575, + -0.007887069135904312, + 0.05171623080968857, + 0.019146936014294624, + -0.008844989351928234, + 0.0625917837023735, + 0.04150605946779251, + -0.05543319135904312, + 0.077184297144413, + -0.00846641045063734, + 0.08204846829175949, + -0.011093521490693092, + 0.014259821735322475, + 0.06823605298995972, + -0.05245044454932213, + -0.11068283021450043, + 0.05446953326463699, + -0.003969347104430199, + -0.03939519450068474, + 0.02654644101858139, + -0.0496971420943737, + 0.0073192003183066845, + 0.04079478979110718, + -0.04478708282113075, + 0.05772761255502701, + 0.05433186888694763, + 0.01430570986121893, + 0.03797265514731407, + 0.022244403138756752, + -0.08319567888975143, + -0.0466226190328598, + -0.04437408596277237, + 0.03306259587407112, + -0.11095815896987915, + -0.036183007061481476, + -0.03716960549354553, + 0.00944727472960949, + 0.07438509911298752, + -0.04827459901571274, + -0.03840859234333038, + 0.02147577330470085, + 0.029001470655202866, + -0.040748901665210724, + 0.04698972404003143, + 0.0588289350271225, + 0.06713473796844482, + 0.015039924532175064, + -0.07709252089262009, + -0.024756792932748795, + 0.02597283571958542, + 0.061719901859760284, + 0.0001455522869946435, + -0.08053414523601532, + -0.02003028802573681, + -0.05538730323314667, + -0.057085175067186356, + -0.04868759587407112, + 0.03636655956506729, + 0.060710359364748, + 0.062087010592222214, + -0.013250276446342468, + 0.03785793110728264, + 0.016255967319011688, + 0.03769732266664505, + 0.053872983902692795, + 0.00909737590700388, + 0.02487151511013508, + 0.016278911381959915, + 0.02985040657222271, + 0.032603710889816284, + 0.014408959075808525, + 0.002703113714233041, + -0.07429332286119461, + 0.05199155956506729, + -0.08686675131320953, + -0.019284602254629135, + -0.0306534543633461, + -0.020580949261784554, + 0.08113069832324982, + -0.008271384984254837, + 0.09893539547920227, + -0.05194567143917084, + 0.053276438266038895, + -0.015189061872661114, + -0.041620783507823944, + -0.029460355639457703, + 0.017907949164509773, + -0.09397944808006287, + -0.025399230420589447, + 0.038179151713848114, + 0.006527625489979982, + 0.009126055985689163, + 0.0008023300324566662, + -0.02030561864376068, + -0.008477882482111454, + 0.01916988007724285, + -0.03264959901571274, + -0.01723109558224678, + 0.060985688120126724, + 0.07961638271808624, + 0.04377753660082817, + -0.028359033167362213, + -0.022611510008573532, + -0.024596184492111206, + 0.052542220801115036, + -0.03712371736764908, + 0.04914648085832596, + -0.06470265239477158, + -0.04937592148780823, + -0.030745230615139008, + 0.062454115599393845, + -0.012527533806860447, + 0.0007980280206538737, + -0.0006101723411120474, + 0.001978937303647399, + -0.0656663030385971, + 0.02714299038052559, + -0.042423829436302185, + -0.020959528163075447, + -0.01642804779112339, + -0.02284095250070095, + 0.030309289693832397, + -0.01536114327609539, + -0.04116189852356911, + 0.0010640373220667243, + 0.011942457407712936, + 0.07383444160223007, + 0.010938648134469986, + 0.024229077622294426, + -0.02280653640627861, + 0.023861970752477646, + -0.016037996858358383, + -0.04703561216592789, + -0.001037508132867515, + 0.029643908143043518, + 0.036045342683792114, + -0.045796625316143036, + -0.05332232639193535, + 0.012114538811147213, + -0.03051578812301159, + 0.0010489802807569504, + 0.0008231232641264796, + 0.030768174678087234, + -0.01903221569955349, + 0.03258076682686806, + -0.10159692168235779, + 0.044764138758182526, + 0.002833609003573656, + 0.023058922961354256, + 0.02941446751356125, + -0.018011199310421944, + -0.05699339881539345, + 0.04731094464659691, + 0.02624816633760929, + 0.00019825223716907203 + ] + }, + { + "id": "b1eb82c5-a101-4912-8a00-f6e050169087", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Mini (Black)", + "description": "This Basic Stand Mini (Black) is the foundation of this new system. The system contains approximately 14.5mm fans in the front of the unit, one 8mm fan in the back, two 10.1mm fans at the top, and", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-10-20T02:31:25", + "price": 1020.91, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-03-06T09:53:22", + "newPrice": 1021.6 + }, + { + "priceDate": "2022-12-09T09:53:22", + "newPrice": 1088.61 + }, + { + "priceDate": "2023-12-02T09:53:22", + "newPrice": 1020.91 + } + ], + "descriptionVector": [ + 0.0023180292919278145, + -0.010921714827418327, + -0.03425665572285652, + -0.012048941105604172, + -0.02776823751628399, + -0.03249708563089371, + -0.020757444202899933, + 0.07329715043306351, + 0.008234244771301746, + -0.009760122746229172, + -0.01608358323574066, + 2.856726132449694e-05, + 0.029527809470891953, + -0.0021169844549149275, + -0.0018248680280521512, + 0.06015535071492195, + 0.016372263431549072, + 0.04915802925825119, + 0.0775861069560051, + -0.01594611629843712, + 0.07621143758296967, + -0.034201670438051224, + -0.057845912873744965, + 0.07329715043306351, + -0.06345454603433609, + -0.04605128616094589, + 0.039507877081632614, + -0.014420238323509693, + -0.06988798081874847, + 0.05861572548747063, + -0.0005008936277590692, + 0.05856074020266533, + -0.012117673642933369, + 0.06004537642002106, + -0.018063101917505264, + 0.015616197139024734, + -0.01921781897544861, + 0.06142004206776619, + 0.017307035624980927, + 0.027025917544960976, + 0.09100283682346344, + -0.036016229540109634, + -0.02853805013000965, + -0.00988384336233139, + 0.042944543063640594, + 0.01207643374800682, + -0.015464983880519867, + -0.06059524416923523, + 0.009210256859660149, + -0.05801087245345116, + 0.0960616022348404, + 0.0050553311593830585, + 0.017911888659000397, + 0.034586578607559204, + -0.050257761031389236, + -0.027122145518660545, + -0.022173350676894188, + 0.22203592956066132, + 0.07445187121629715, + -0.04673861712217331, + 0.0069695524871349335, + -0.022599495947360992, + 0.06906317919492722, + 0.025843705981969833, + -0.048443201929330826, + 0.04976288229227066, + -0.06889822334051132, + 0.03002268821001053, + 0.06180494651198387, + 0.04772837460041046, + -0.057461004704236984, + 0.0014648776268586516, + 0.017526982352137566, + 0.010715515352785587, + 0.005323390942066908, + -0.043549392372369766, + 0.10562927275896072, + 0.01817307434976101, + 0.0377483069896698, + 0.004897244740277529, + 0.033376872539520264, + -0.004801018163561821, + -0.03326689824461937, + -0.03585126996040344, + 0.02745206467807293, + 0.06697368621826172, + 0.002108392771333456, + -0.08033543825149536, + 0.013904739171266556, + 0.02185717783868313, + -0.07813597470521927, + 0.03510894998908043, + 0.04236718267202377, + -0.02170596458017826, + 0.05424429103732109, + 0.052347250282764435, + -0.02837309055030346, + 0.024551520124077797, + 0.07654135674238205, + -0.06087017431855202, + 0.027685757726430893, + 0.03879305347800255, + -0.04998282715678215, + 0.007677505258470774, + -0.031919725239276886, + 0.028922956436872482, + 0.08698881417512894, + 0.045583900064229965, + -0.045831337571144104, + -0.10529935359954834, + -0.05383189022541046, + -0.04789333790540695, + 0.026737239211797714, + 0.032304633408784866, + -0.019932646304368973, + 0.0014167643385007977, + -0.009237750433385372, + -0.0033284081146121025, + 0.02456526830792427, + -0.01935528591275215, + 0.08390956372022629, + 0.05872569978237152, + -0.008165511302649975, + 0.027562037110328674, + -0.0530620776116848, + 0.021059870719909668, + -0.03631865605711937, + -0.06427934765815735, + 0.02415286749601364, + -0.07692626863718033, + -0.0315898060798645, + 0.03307444602251053, + 0.00011416165216360241, + -0.030517568811774254, + -0.06614889204502106, + -0.022352056577801704, + 0.07582653313875198, + 0.05751599371433258, + -0.002503609051927924, + 0.034998975694179535, + -0.07445187121629715, + -0.022173350676894188, + 0.057625964283943176, + 0.040745075792074203, + 0.00728572579100728, + 0.01417279802262783, + -0.06240979954600334, + 0.023094376549124718, + -0.010021309368312359, + 0.07230739295482635, + -0.06361950933933258, + -0.07478179037570953, + -0.04200977087020874, + -0.08907830715179443, + 0.057021114975214005, + 0.03637364134192467, + 0.02246202901005745, + 0.04409926012158394, + -0.025719985365867615, + 0.10079045593738556, + 0.04484158009290695, + -0.03447660431265831, + -0.016386009752750397, + -0.03277201950550079, + 0.038023240864276886, + -0.014791397377848625, + 0.04167984798550606, + 0.09617158025503159, + -0.024427801370620728, + -0.0035535094793885946, + 0.0693930983543396, + 0.032744526863098145, + -0.036813534796237946, + 0.004897244740277529, + 0.0006104373023845255, + 0.025046400725841522, + 0.06021033599972725, + -0.021719710901379585, + 0.010894222185015678, + 0.01598735712468624, + 0.00041755454731173813, + 0.01072238851338625, + -0.03612620383501053, + 0.04506152495741844, + 0.0050347112119197845, + 0.02897794358432293, + 0.0066843098029494286, + -0.029940208420157433, + -0.06823838502168655, + 0.028922956436872482, + 0.0077118719927966595, + 0.014585197903215885, + 0.03189223259687424, + 0.048883095383644104, + -0.0024692423176020384, + -0.05960548296570778, + 0.005687677301466465, + -0.013100559823215008, + -0.02379545569419861, + -0.013368619605898857, + -0.06416936963796616, + 0.14725413918495178, + 0.04082755744457245, + 0.010983575135469437, + 0.02100488543510437, + 0.020413778722286224, + 0.010261875577270985, + 0.04852568358182907, + 0.05116504058241844, + 0.004151489119976759, + 0.05878068506717682, + -0.02878548949956894, + -0.044594138860702515, + 0.008275484666228294, + 0.09760122746229172, + 0.0653240904211998, + 0.01299745962023735, + 0.0046120015904307365, + 0.035603828728199005, + -0.031699780374765396, + 0.0571860745549202, + -0.12360989302396774, + -0.03186473995447159, + -0.07368205487728119, + -0.04118496924638748, + -0.03038010187447071, + 0.037638332694768906, + 0.007595025468617678, + -0.006863016169518232, + 0.046601150184869766, + -0.13196785748004913, + 0.05493162199854851, + -0.00517905130982399, + 0.017045848071575165, + -0.010763628408312798, + 0.01582239754498005, + -0.014626437798142433, + -0.0007796929567120969, + -0.06136505678296089, + -0.022613242268562317, + -0.05421679466962814, + 0.05405183508992195, + -0.034971483051776886, + -0.0067461696453392506, + 0.016262289136648178, + -0.005381814204156399, + -0.026682252064347267, + -0.01732078194618225, + -0.024702733382582664, + -0.08066535741090775, + 0.01336174551397562, + 0.063179612159729, + 0.03832566738128662, + 0.018255554139614105, + 0.010646781884133816, + 0.041954781860113144, + 0.05850575119256973, + 0.004027768969535828, + -0.07989554107189178, + -0.004711665213108063, + 0.01894288696348667, + -0.00943707674741745, + -0.024194108322262764, + 0.003821569262072444, + -0.0326620452105999, + -0.026957184076309204, + 0.05045021325349808, + 0.0346415638923645, + 0.006787409540265799, + 0.06246478855609894, + 0.07021789997816086, + 0.009993815794587135, + 0.03128737956285477, + -0.05944052338600159, + -0.013141799718141556, + 0.007017666008323431, + -0.08061037212610245, + 0.06295966356992722, + -0.030874980613589287, + -0.01690838299691677, + 0.034174177795648575, + 0.017801914364099503, + 0.03981030359864235, + 0.015506223775446415, + -0.02221458964049816, + -0.009004057385027409, + -0.004663551691919565, + -0.03959035873413086, + -0.03145233914256096, + -0.03953537344932556, + -0.04984536021947861, + 0.02745206467807293, + -0.0034074513241648674, + 0.03288199380040169, + 0.047865841537714005, + 0.02980274148285389, + 0.04528147354722023, + -0.08676886558532715, + 0.02786446362733841, + 0.00041218477417714894, + 0.028455570340156555, + 0.028001930564641953, + -0.0199188981205225, + -0.05176989361643791, + -0.009134650230407715, + 0.05801087245345116, + -0.053364504128694534, + -0.0255412794649601, + -0.045171499252319336, + -0.015602449886500835, + 0.0713176280260086, + 0.01754072867333889, + -0.06240979954600334, + -0.0448140874505043, + 0.011987080797553062, + -0.038628093898296356, + 0.03675854951143265, + -0.045391444116830826, + -0.054766662418842316, + 0.02834559604525566, + -0.019300300627946854, + -0.043769340962171555, + -0.020372537896037102, + 0.05325452983379364, + 0.06999795138835907, + -0.04924050718545914, + -0.038903024047613144, + 0.017073342576622963, + -0.05020277202129364, + -0.04341192916035652, + -0.021307310089468956, + -0.015588703565299511, + 0.020991137251257896, + -0.04503403231501579, + -0.013684792444109917, + -0.026613518595695496, + -0.004969414789229631, + -0.06284969300031662, + -0.08687884360551834, + 0.06955806165933609, + 0.046216245740652084, + 0.002720118733122945, + -0.05872569978237152, + -0.0694480836391449, + -0.03593374788761139, + -0.07577154785394669, + 0.004897244740277529, + -0.03040759451687336, + 0.028290610760450363, + -0.014750157482922077, + 0.001450271811336279, + -0.06983299553394318, + 0.02367173507809639, + -0.06471923738718033, + 0.075386643409729, + -0.018722940236330032, + 0.03227714076638222, + -0.05039522796869278, + 0.07071278244256973, + -0.0022269575856626034, + 0.014818890951573849, + -0.06087017431855202, + 0.013299886137247086, + -0.057241059839725494, + 0.022324563935399055, + 0.0611451081931591, + -0.01127912849187851, + -0.024771466851234436, + -0.06301465630531311, + 0.03711596131324768, + -0.020674964413046837, + -0.0026960622053593397, + -0.037418387830257416, + 0.07472680509090424, + 0.013506085611879826, + -0.05982543155550957, + 0.043329447507858276, + 0.03524641692638397, + -0.0611451081931591, + 0.006852705962955952, + -0.02081243135035038, + 0.0428345687687397, + -0.030710021033883095, + -0.04341192916035652, + 0.05165991932153702, + -0.0489380806684494, + -0.01209018100053072, + -0.03788577392697334, + 0.01824180781841278, + 0.03290948644280434, + -0.049680400639772415, + -0.007464432157576084, + -0.04448416829109192, + 0.060100361704826355, + 0.031177407130599022, + -0.030352607369422913, + -0.03521892428398132, + 0.013519832864403725, + -0.03156231343746185, + -0.02313561551272869, + 0.048828110098838806, + 0.05289711803197861, + -0.02221458964049816, + -0.009842602536082268, + -0.02875799685716629, + -0.04596880450844765, + 0.017100835219025612, + 0.06768851727247238, + 0.009457697160542011, + -0.0939171314239502, + 0.06647881120443344, + -0.06163998693227768, + -0.08836348354816437, + 0.04393430054187775, + 0.09501685947179794, + 0.03708846867084503, + -0.041734836995601654, + 0.03634614869952202, + -0.008440444245934486, + -0.0027184004429727793, + -0.03180975466966629, + -0.0058973138220608234, + -0.012708780355751514, + 0.0043233223259449005, + -0.01693587563931942, + 0.01996013894677162, + -0.011808373965322971, + 0.045611392706632614, + -0.0064231231808662415, + -0.01919032633304596, + 0.04393430054187775, + -0.0550965815782547, + -0.023616747930645943, + 0.0060004135593771935, + 0.036813534796237946, + -0.06032031029462814, + 0.06356451660394669, + 0.02427658811211586, + -0.03750086575746536, + 0.015959862619638443, + 0.03994777053594589, + -0.012859992682933807, + 0.03409169614315033, + 0.11162281781435013, + -0.06306964159011841, + 0.0021376044023782015, + 0.006168810185045004, + 0.027273358777165413, + -0.02725961059331894, + 0.030517568811774254, + -0.08434946089982986, + 0.0015069767832756042, + -0.07219741493463516, + 0.01661970280110836, + 0.026792224496603012, + 0.00479758158326149, + 0.08495431393384933, + 0.02567874640226364, + 0.008158638142049313, + -0.03772081434726715, + -0.0034297897946089506, + -0.003955599386245012, + 0.07687127590179443, + -0.02303938940167427, + -0.019451512023806572, + -0.04506152495741844, + -0.026173625141382217, + -0.008186131715774536, + -0.03590625524520874, + 0.01594611629843712, + 0.01009004283696413, + -0.075386643409729, + -0.0007702421280555427, + 0.019135339185595512, + 0.04467662051320076, + -0.04264211654663086, + -0.02570623904466629, + -0.03018764778971672, + -0.002682315418496728, + -0.035356391221284866, + -0.043356940150260925, + -0.0023214658722281456, + -0.06807342171669006, + -0.02570623904466629, + -0.00949893705546856, + 0.017169568687677383, + -0.0795656219124794, + -0.012213900685310364, + 0.04591381922364235, + 0.041349928826093674, + 0.017554474994540215, + 0.0244690403342247, + 0.036016229540109634, + -0.018090594559907913, + -0.025307586416602135, + 0.0044058021157979965, + 0.04511651396751404, + 0.004103375598788261, + -0.0024761157110333443, + 0.05012029409408569, + -0.05267716944217682, + -0.01499759778380394, + 0.0025603140238672495, + 0.003336999798193574, + 0.01371228601783514, + 0.08825350552797318, + 0.02434532158076763, + -0.0043645622208714485, + 0.005680804140865803, + 0.008000551722943783, + -0.03285449743270874, + -0.043796833604574203 + ] + }, + { + "id": "4a177faf-28cc-43f7-bef2-75437530b285", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "ospencer", + "reviewDate": "2021-04-06T12:08:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6daea77c-2b15-4baf-bec5-5dbbcc6fe1cd", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "cclay", + "reviewDate": "2022-08-07T01:51:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2afea5f3-11fe-46fe-b186-8772e9f4b6e8", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "kenneth30", + "reviewDate": "2022-12-09T20:51:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "640630cb-3691-4709-b302-b70d140cd81f", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "graywilliam", + "reviewDate": "2021-03-06T09:53:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "96829fbb-dd75-4f5e-8650-98a5c5eee0a4", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "qford", + "reviewDate": "2022-05-21T20:57:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "df11f188-cf47-4a8b-866a-4c6cccac4e32", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "kempmelissa", + "reviewDate": "2022-06-23T23:40:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8bd4942c-2fed-49e6-b9a9-41c68da2e575", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "dana09", + "reviewDate": "2022-07-23T21:50:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "055d5143-310c-4074-99f5-295b0b2142e6", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "rogerssabrina", + "reviewDate": "2021-07-02T07:00:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e039be58-306c-4dd8-a225-82f593a2e406", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "alvin48", + "reviewDate": "2021-05-19T00:37:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ca4286d7-9e43-40ef-9a05-8e6b923146ec", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "kyle28", + "reviewDate": "2022-11-16T03:21:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4895058e-de8d-407b-b02c-909b3a720496", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "erin12", + "reviewDate": "2021-11-22T16:54:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9f5985d9-56b2-4b44-99cb-30967a353bb2", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "barbara87", + "reviewDate": "2021-06-14T14:34:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7014fd6b-94b5-459a-909e-2375d7377487", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "hfox", + "reviewDate": "2022-06-14T02:57:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "25af3d6f-d96c-48bf-b39d-a207d98a1715", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "mark42", + "reviewDate": "2022-06-20T22:34:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ec89d2bf-045c-40f0-84b8-8eeb9b73e72e", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "joshuafrazier", + "reviewDate": "2021-10-06T22:24:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6921acb1-1f1d-4f34-9a8e-a8a2e8f95246", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "annwest", + "reviewDate": "2022-04-08T11:59:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "14f8c275-1b6e-4929-892c-6b6063283fb5", + "productId": "b1eb82c5-a101-4912-8a00-f6e050169087", + "category": "Accessory", + "docType": "customerRating", + "userName": "maria24", + "reviewDate": "2022-07-25T16:42:59", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3347f35d-53a4-4255-9d03-847632b02beb", + "productId": "3347f35d-53a4-4255-9d03-847632b02beb", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer 3000 (Steel)", + "description": "This Awesome Computer 3000 (Steel) is rated 4.6 out of 5 by 6.\n\nRated 4 out of 5 by Jim from Great Computer, Great Warranty The computer I bought 3 years ago was a little too big....Great Computer, Great Warranty The computer I bought 3 years ago was a little too big for me. Unfortunately though, it's still very portable and if you're going to buy a computer, use it!\n\nRated", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-09-26T14:18:35", + "price": 693.18, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2018-09-26T14:18:35", + "newPrice": 633.05 + }, + { + "priceDate": "2021-08-10T14:18:35", + "newPrice": 693.18 + } + ], + "descriptionVector": [ + -0.007107487879693508, + 0.01655554585158825, + -0.041321463882923126, + 0.0210651233792305, + 0.02107737772166729, + 0.041296955198049545, + -0.03085630014538765, + 0.046541791409254074, + 0.08352524042129517, + 0.1443065106868744, + 0.1029360294342041, + -0.09151503443717957, + -0.02508453093469143, + -0.007554769515991211, + -0.004969114437699318, + 0.054850198328495026, + -0.013835093006491661, + 0.00022364078904502094, + -0.025930076837539673, + -0.04065973311662674, + 0.03781673684716225, + 0.005079403053969145, + -0.02482718974351883, + 0.07950583100318909, + 0.0251212939620018, + -0.017217276617884636, + 0.007524133659899235, + 0.0001503065141150728, + 0.06107537820935249, + -0.09239733964204788, + 0.01752363331615925, + 0.059604864567518234, + -0.04166458547115326, + 0.014067924581468105, + 0.014337519183754921, + -0.04590456932783127, + -0.06769269704818726, + -0.04460561275482178, + 0.05828139930963516, + 0.07347671687602997, + 0.011727355420589447, + 0.0031309709884226322, + 0.06455560028553009, + 0.005664545111358166, + 0.08720152080059052, + -0.04529185593128204, + -0.010642850771546364, + 0.016004102304577827, + 0.0627419650554657, + 0.054065924137830734, + -0.007658930961042643, + 0.028258390724658966, + 0.03563547506928444, + 0.02958185411989689, + 0.04242435097694397, + -0.026420248672366142, + 0.0537228062748909, + 0.1504826694726944, + 0.014165958389639854, + -0.05872255563735962, + 0.018160857260227203, + 0.011886660940945148, + 0.013381684198975563, + -0.049850448966026306, + -0.09921073168516159, + -0.01909218356013298, + -0.034238483756780624, + 0.07004551589488983, + -0.023761067539453506, + -0.013210124336183071, + -0.06533987075090408, + -0.05337968468666077, + 0.047546643763780594, + 0.04394388198852539, + 0.04092932865023613, + 0.0006023749010637403, + 0.022670434787869453, + 0.04021857678890228, + -0.029434803873300552, + -0.010630596429109573, + 0.08058420568704605, + 0.0462476871907711, + 0.008339043706655502, + 0.007272921036928892, + 0.08538789302110672, + -0.008522857911884785, + -0.07328065484762192, + -0.1394048035144806, + -0.022682689130306244, + 0.04524283856153488, + -0.012487120926380157, + -0.014766419306397438, + 0.04965437948703766, + -0.08156455308198929, + -0.0028338043484836817, + -0.0010730162030085921, + -0.12175861746072769, + 0.024202222004532814, + 0.006044428329914808, + 0.006384484935551882, + 0.04041464626789093, + -0.02759665995836258, + -0.056124646216630936, + -0.06288901716470718, + -0.040561698377132416, + -0.006258878391236067, + 0.016383985057473183, + -0.008424824103713036, + 0.013393938541412354, + -0.121366485953331, + -0.03039063885807991, + -0.016935428604483604, + -0.06504576653242111, + -0.08573100715875626, + 0.0011051837354898453, + 0.024949733167886734, + -0.04073325917124748, + -0.06097734346985817, + 0.0006904526380822062, + -0.04999750107526779, + 0.025060022249817848, + 0.0407087504863739, + 0.022400841116905212, + 0.010030136443674564, + 0.03994898498058319, + 0.031248439103364944, + -0.013148852623999119, + -0.008559620939195156, + 0.04413995146751404, + -0.010826664976775646, + -0.07078077644109726, + 0.08484870195388794, + 0.03492472693324089, + -0.0038509105797857046, + -0.07014355063438416, + 0.04752213507890701, + 0.041002850979566574, + 0.037302058190107346, + 0.00235129171051085, + -0.013602261431515217, + 0.0028169548604637384, + 0.017217276617884636, + -0.06847696751356125, + -0.06293803453445435, + -0.0633791834115982, + 0.04242435097694397, + -0.10695543885231018, + 0.01580803282558918, + -0.007364828139543533, + 0.05377182364463806, + 0.013467464596033096, + -0.04747311770915985, + -0.03889511525630951, + -0.026420248672366142, + 0.03931175917387009, + 0.021469514816999435, + -0.03372380509972572, + 0.060389138758182526, + -0.04840444400906563, + 0.06641825288534164, + -0.046321213245391846, + -0.02487620711326599, + -0.07651578634977341, + -0.038748063147068024, + -0.006513155065476894, + 0.0537228062748909, + 0.07362376898527145, + 0.015709999948740005, + -0.12107238173484802, + 0.025954585522413254, + 6.940906314412132e-05, + -0.04372330382466316, + 0.007321937941014767, + -0.021212175488471985, + 0.03411594033241272, + -0.044311512261629105, + 0.04749762639403343, + -0.002391118323430419, + -0.0004308148636482656, + -0.070094533264637, + 0.017682939767837524, + 0.03698344528675079, + -0.03842945024371147, + 0.020440155640244484, + 0.06127144768834114, + 0.031738609075546265, + 0.042301807552576065, + -0.0139453811571002, + 0.01782999187707901, + 0.005379633046686649, + 0.00917846243828535, + 0.01556294783949852, + 0.050830792635679245, + 0.02134697325527668, + -0.026959437876939774, + 0.04467913880944252, + 0.008608638308942318, + 0.028282899409532547, + -0.03938528522849083, + 0.02187390625476837, + 0.012493248097598553, + 0.04168909415602684, + 0.1312679499387741, + -0.026469266042113304, + 0.05445806309580803, + -0.05705597251653671, + 0.016408493742346764, + 0.017646176740527153, + 0.01982744038105011, + -0.014165958389639854, + -0.014509079046547413, + -0.004509578458964825, + -0.04512029513716698, + -0.05016906186938286, + 0.025268344208598137, + 0.020244086161255836, + 0.012082729488611221, + 0.01683739386498928, + -0.060879308730363846, + -0.04671335220336914, + 0.09009353816509247, + -0.018148602917790413, + -0.01631045900285244, + -0.026052620261907578, + -0.041517533361911774, + -0.05279147997498512, + 0.05764417722821236, + -0.0025749325286597013, + 0.030562197789549828, + 0.03835592791438103, + 0.0006946650100871921, + 0.01684964820742607, + -0.025684989988803864, + 0.013896364718675613, + -0.06901615858078003, + 0.07837843894958496, + -0.05749712511897087, + -0.024459561333060265, + -0.0617126002907753, + 0.04825739189982414, + 0.00021636480232700706, + 0.0003528852539602667, + -0.012425849214196205, + -0.069310262799263, + -0.03997349366545677, + -0.039042167365550995, + 0.06783974915742874, + -0.0365913100540638, + -0.04502226039767265, + 0.009068174287676811, + -0.007119742222130299, + 0.0033760566730052233, + -0.023454710841178894, + 0.07288851588964462, + 0.06053619086742401, + 0.01580803282558918, + 0.030488671734929085, + 0.051320966333150864, + -0.01366353314369917, + -0.0044789426028728485, + -0.023442456498742104, + 0.03884609788656235, + -0.02835642546415329, + 0.0492132268846035, + 0.0037620668299496174, + 0.006935928016901016, + 0.05146801471710205, + 0.008087831549346447, + -0.001162625732831657, + 0.004163394682109356, + -0.0537228062748909, + -0.060144051909446716, + 0.05597759410738945, + -0.04597809538245201, + -0.002941029379144311, + -0.013148852623999119, + 0.0016282887663692236, + 0.03369929641485214, + -0.07666283845901489, + 0.024471815675497055, + 0.05646776780486107, + 0.0032044968102127314, + 0.019263742491602898, + 0.017891263589262962, + 0.03242484852671623, + -0.0832311362028122, + -0.01608988270163536, + -0.05244835838675499, + 0.05940879508852959, + -0.08303506672382355, + -0.033797331154346466, + 0.02135922573506832, + 0.04762016981840134, + 0.033748313784599304, + -0.012891512364149094, + 0.049090683460235596, + 0.05568348988890648, + -0.012254289351403713, + -0.006678587757050991, + -0.018013805150985718, + 0.051320966333150864, + -0.0049721780233085155, + -0.07695693522691727, + -0.03546391427516937, + 0.004445243626832962, + 0.05146801471710205, + -0.022204773500561714, + -0.006721477955579758, + 0.0019070737762376666, + -0.005398014560341835, + -0.003317848779261112, + 0.02287875860929489, + -0.016138900071382523, + 0.0160408653318882, + 0.11283750087022781, + -0.01832016371190548, + 0.041321463882923126, + 0.026420248672366142, + 0.024655630812048912, + 0.015501676127314568, + 0.000600077211856842, + -0.03563547506928444, + -0.06926124542951584, + 0.01577126979827881, + -0.020746512338519096, + -0.028478968888521194, + -0.031297456473112106, + 0.03869904577732086, + -0.07151603698730469, + -0.04825739189982414, + 0.048845596611499786, + 0.014533587731420994, + 0.002401840640231967, + 0.05553644150495529, + 0.045561447739601135, + -0.04911519214510918, + -0.050585705786943436, + 0.05002200976014137, + 0.015599710866808891, + 0.0943090096116066, + 0.04828190058469772, + 0.0263467226177454, + -0.0325964093208313, + 0.03668934106826782, + 0.018246637657284737, + -0.009876957163214684, + 0.014680638909339905, + -0.07774121314287186, + -0.02938578650355339, + -0.051075879484415054, + 0.0014276247238740325, + -0.035758018493652344, + 0.018271146342158318, + 0.04426249489188194, + 0.03458160534501076, + 0.005744198337197304, + 0.07435902953147888, + -0.04512029513716698, + 0.0022256853990256786, + -0.02134697325527668, + -0.009111064486205578, + -0.014680638909339905, + 0.04320862516760826, + 0.05994798615574837, + -0.02688591182231903, + 0.020121542736887932, + -0.020930325612425804, + 0.06303606182336807, + 0.005407205317169428, + 0.029924975708127022, + 0.015759015455842018, + -0.022731706500053406, + -0.01905542053282261, + 0.061418499797582626, + -0.04614965617656708, + 0.026542790234088898, + 0.013908619061112404, + 0.017143750563263893, + -0.0273760836571455, + 0.008853724226355553, + 6.361699342960492e-05, + 0.04940929636359215, + 0.034238483756780624, + -0.002879758132621646, + 0.02181263454258442, + -0.09298554807901382, + -0.029287751764059067, + 0.0066295708529651165, + -0.03394438326358795, + 0.030831793323159218, + -0.006580553483217955, + 0.05249737575650215, + -0.027474116533994675, + 0.004675011616200209, + -0.006445756182074547, + -0.0818096399307251, + 0.023675287142395973, + 0.020170560106635094, + 0.028478968888521194, + -0.041542042046785355, + -0.025537939742207527, + 0.04698294773697853, + 0.05651678144931793, + -0.01556294783949852, + -0.03132196515798569, + -0.0838683545589447, + 0.03698344528675079, + -0.03330715745687485, + -0.0633791834115982, + -0.02884659729897976, + -0.01710698753595352, + -0.023908119648694992, + 0.016457511112093925, + 0.036003101617097855, + 0.015906067565083504, + 0.010759266093373299, + 0.08475066721439362, + -0.013835093006491661, + 0.06656529754400253, + -0.08156455308198929, + 0.034998249262571335, + 0.03058670647442341, + 0.0104345278814435, + 0.01736432872712612, + 0.00039290316635742784, + 0.03565998375415802, + -0.06730055809020996, + -0.008492222987115383, + 0.008357425220310688, + -0.072398342192173, + 0.005208073183894157, + -0.058575503528118134, + -0.015121793374419212, + 0.06244786083698273, + 0.016629070043563843, + 0.03242484852671623, + 0.0010661231353878975, + 0.029238734394311905, + -0.002493747975677252, + 0.015624219551682472, + 0.023038065060973167, + -0.07058470696210861, + -0.009117191657423973, + -0.005744198337197304, + -0.05073275789618492, + 0.0009481756715103984, + -0.05828139930963516, + 0.062398843467235565, + 0.04845346137881279, + -0.0009780455147847533, + -0.006317086052149534, + 0.019962238147854805, + -0.0311749130487442, + -0.0035843797959387302, + 0.010526434518396854, + 0.03291502222418785, + -0.028209375217556953, + 0.03494923189282417, + -0.04764467850327492, + -0.002162882126867771, + -0.04516931250691414, + 0.0006873890524730086, + 0.02414095029234886, + -4.607325536198914e-05, + -0.0356844924390316, + 0.03188566118478775, + -0.034777674823999405, + -0.09950482845306396, + -0.003875419031828642, + -0.01854074001312256, + -0.07440804690122604, + -0.031983695924282074, + -0.029532838612794876, + 0.07181013375520706, + -0.00031267586746253073, + -0.08602511137723923, + 0.07695693522691727, + -0.01936177723109722, + -0.01905542053282261, + 0.0506347231566906, + 0.0411008857190609, + 3.85579296562355e-05, + 0.04492422565817833, + -0.009184589609503746, + 0.02686140313744545, + 0.013099835254251957, + -0.0021766682621091604, + 0.008847597055137157, + 0.018920622766017914, + 0.05730105936527252, + -0.10323013365268707, + 0.09259340912103653, + -0.04063522443175316, + -0.06710448861122131, + -0.01955784671008587, + 0.034998249262571335, + -0.027229031547904015, + 0.04284099489450455, + -0.0799960047006607, + 0.01678837649524212, + -0.015452658757567406, + -0.012370705604553223, + -0.05769319459795952, + 0.0686730369925499, + -0.05445806309580803, + 0.0032320688478648663, + -0.012523883953690529, + 0.04872305691242218, + -0.033772822469472885, + -0.0068624019622802734, + 0.11107288300991058, + -0.06636923551559448 + ] + }, + { + "id": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Micro (Silver)", + "description": "This Awesome Speaker Micro (Silver) is constructed as low as possible, and you get the exact same design as all of the speakers you get from the standard Micro speakers. To make the Micro better, we used the same low and high power amplifier you also get from our speaker case, that comes with the speaker and the Micro and supports all of the speakers you get from", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-12-09T05:56:18", + "price": 284.78, + "stock": 4, + "priceHistory": [ + { + "priceDate": "2021-01-15T11:55:09", + "newPrice": 304.48 + }, + { + "priceDate": "2022-11-27T11:55:09", + "newPrice": 309.95 + }, + { + "priceDate": "2023-05-16T11:55:09", + "newPrice": 284.78 + } + ], + "descriptionVector": [ + 0.02158081717789173, + 0.03029128536581993, + -0.035738199949264526, + -0.027556337416172028, + -0.02691281959414482, + -0.033554837107658386, + 0.0261314045637846, + -0.0010794717818498611, + -0.024545595049858093, + 0.026108423247933388, + -0.021132653579115868, + -0.0022250190377235413, + 0.051941052079200745, + -0.04601149633526802, + -0.023580318316817284, + -0.05616988241672516, + -0.015283539891242981, + -0.03849613294005394, + 0.018949290737509727, + 0.02594754286110401, + 0.025763681158423424, + -0.044701479375362396, + -0.01513415202498436, + -0.0014450413873419166, + -0.05428529530763626, + -0.016547592356801033, + -0.04065651446580887, + 0.030888838693499565, + -0.008538098074495792, + 0.0063317520543932915, + 0.07110867649316788, + -0.0005882151890546083, + -0.06334050744771957, + 0.032382719218730927, + 0.00937122292816639, + 0.004797652363777161, + 0.016294781118631363, + -0.03212990611791611, + 0.010428430512547493, + 0.006394954863935709, + 0.004559206310659647, + 0.020431678742170334, + 0.034290287643671036, + -0.052906326949596405, + 0.00914139486849308, + 0.08002599328756332, + -0.04771222174167633, + 0.09717113524675369, + -0.026085440069437027, + -0.03272745758295059, + -0.013146142475306988, + 0.026797905564308167, + -0.04316163435578346, + 0.07101675122976303, + 0.032796408981084824, + -0.03470397740602493, + -0.014352737925946712, + 0.10424982756376266, + -0.024315766990184784, + -0.0145365996286273, + 0.09170123934745789, + -0.028613543137907982, + 0.033577822148799896, + 0.04456358402967453, + -0.03219885379076004, + -0.011301775462925434, + 0.007222334388643503, + 0.0290731992572546, + 0.010198602452874184, + 0.030153390020132065, + 0.10461755096912384, + 0.006779916118830442, + 0.02636123262345791, + 0.07795754075050354, + 0.021259058266878128, + -0.004843617789447308, + 0.05456108599901199, + 0.05805446580052376, + 0.035761184990406036, + 0.014617038890719414, + 0.047298531979322433, + 0.025235077366232872, + -0.03024532087147236, + -0.012272797524929047, + 0.009273545816540718, + 0.023224085569381714, + -0.03890982270240784, + -0.04667799919843674, + 0.002202036324888468, + 0.07198202610015869, + -0.05713515728712082, + 0.03323308005928993, + 0.0940454825758934, + 0.043207600712776184, + -0.0074234334751963615, + 0.045207101851701736, + -0.06517912447452545, + 0.04964277520775795, + -0.08862154930830002, + -0.05456108599901199, + 0.0640299841761589, + -0.0703272670507431, + -0.03252061456441879, + -0.008790908381342888, + -0.057548847049474716, + 0.03539346158504486, + 0.033164132386446, + -0.001397639513015747, + 0.031141648069024086, + -0.0992855504155159, + 0.06242119148373604, + -0.029900578781962395, + -0.03649663180112839, + -0.008285286836326122, + 0.07441819459199905, + -0.0113362492993474, + -0.01914464496076107, + -0.014145893044769764, + -0.06122608855366707, + -0.03720909729599953, + 0.021741697564721107, + -0.023649265989661217, + 0.02711966447532177, + 0.02518911100924015, + 0.014697479084134102, + 0.007164877373725176, + -0.03727804869413376, + 0.051987018436193466, + 0.015363979153335094, + 0.0390477180480957, + -0.11454610526561737, + -0.00873345136642456, + 0.013019736856222153, + -0.02925706095993519, + 0.012077443301677704, + 0.03872596099972725, + 0.0655008852481842, + 0.06347840279340744, + 0.0033612295519560575, + 0.009917063638567924, + 0.003171621821820736, + 0.0992855504155159, + 0.029647767543792725, + 0.0029504126869142056, + -0.028912320733070374, + -0.021845119073987007, + -0.07363678514957428, + 0.04378217086195946, + -0.042472150176763535, + 0.013870099559426308, + -0.02216687798500061, + -0.1066400334239006, + 0.043506376445293427, + -0.049045223742723465, + 0.03435923531651497, + 0.03360080346465111, + -0.0726255401968956, + -0.031831130385398865, + -0.0025755062233656645, + 0.07101675122976303, + 0.06435174494981766, + -0.0390477180480957, + -0.056307777762413025, + -0.034244321286678314, + -0.053136155009269714, + 0.06274294853210449, + 0.050470154732465744, + 0.06848864257335663, + -0.08609344065189362, + 0.03994404897093773, + 0.05322808772325516, + -0.004050712566822767, + -0.009756184183061123, + -0.01637522131204605, + -0.0037576823960989714, + -0.03810542821884155, + -0.020581066608428955, + -0.06628229469060898, + -0.047344498336315155, + -0.011485637165606022, + -0.002914502052590251, + 0.05474494770169258, + -0.06954585015773773, + -0.008434675633907318, + 0.023902077227830887, + 0.06835074722766876, + -0.003976018633693457, + 0.052906326949596405, + -0.004774669650942087, + 0.018190858885645866, + -0.016444168984889984, + 0.0017366352258250117, + 0.013720711693167686, + -0.01258306484669447, + 0.028245819732546806, + -0.044448669999837875, + 3.660633956314996e-05, + 0.03433625400066376, + -0.03201499208807945, + 0.04748239368200302, + -0.026039473712444305, + 0.05474494770169258, + 0.03222183883190155, + -0.03881789371371269, + -0.04414989426732063, + -0.07336098700761795, + 0.043506376445293427, + 0.05662953481078148, + -0.03334799408912659, + 0.00901499018073082, + -0.017248565331101418, + 0.006670747883617878, + 0.019282540306448936, + 0.010325008071959019, + 0.10755934566259384, + 0.044655513018369675, + 0.006779916118830442, + -0.043000753968954086, + 0.000621612009126693, + 0.03872596099972725, + 0.02117861993610859, + -0.05543443188071251, + 0.09772272408008575, + -0.04619536176323891, + -0.09399951249361038, + 0.0019506622338667512, + 0.0027708597481250763, + -0.007888834923505783, + 0.032106924802064896, + -0.009652761742472649, + -0.04437972232699394, + 0.014628530479967594, + 0.004395454190671444, + 0.021983016282320023, + -0.014835375361144543, + 0.011715465225279331, + 0.012318762950599194, + -0.031601302325725555, + 0.022534601390361786, + 0.0955163761973381, + -0.039645273238420486, + 0.03748489171266556, + -0.058743949979543686, + 0.020374221727252007, + -0.02785511314868927, + -0.04316163435578346, + 0.0625590905547142, + -0.007670498453080654, + -0.08829978853464127, + 0.01560529787093401, + -0.06605246663093567, + 0.04766625538468361, + -0.02859056182205677, + 0.0686265379190445, + -0.029417941346764565, + 0.025717714801430702, + 0.1192345917224884, + -0.10204347968101501, + -0.0018544219201430678, + -0.07248764485120773, + 0.013111667707562447, + -0.09661954641342163, + 0.0225690770894289, + 0.022810395807027817, + -0.09505672007799149, + -0.03867999464273453, + 0.06242119148373604, + 0.017639273777604103, + -0.0074693989008665085, + 0.04835573956370354, + -0.016903825104236603, + 0.008210592903196812, + -0.0570891909301281, + 0.04166775569319725, + -0.03564627096056938, + -0.008325506933033466, + -0.07313115894794464, + 0.03656557947397232, + -0.006251312326639891, + -0.01490432396531105, + 0.0948728621006012, + 0.02810792252421379, + 0.1036982387304306, + 0.031118664890527725, + 0.08990858495235443, + -0.023810146376490593, + 0.008664502762258053, + -0.0017308895476162434, + -0.07869299501180649, + -0.038863856345415115, + -0.006090432871133089, + -0.06499526649713516, + -0.014697479084134102, + 0.0845765769481659, + -0.0035077447537332773, + 0.002736385678872466, + 0.03240570053458214, + -0.031601302325725555, + 0.010382465086877346, + 0.06743143498897552, + 0.050240326672792435, + 0.04164477065205574, + 0.0014522235142067075, + -0.060444675385951996, + 0.003579565789550543, + 0.033325012773275375, + 0.016616540029644966, + 0.07634875178337097, + -0.04028879106044769, + 0.01622583344578743, + 0.14708970487117767, + 0.0444946363568306, + -0.027027733623981476, + -0.03587609902024269, + 0.04424182325601578, + -0.05787060409784317, + 0.006705222185701132, + 0.016409695148468018, + 0.005952536594122648, + 0.046838875859975815, + 0.006619036663323641, + 0.006940795574337244, + -0.05934150144457817, + 0.06554684787988663, + -0.008296778425574303, + 0.02130502462387085, + 0.053182121366262436, + -0.03955334052443504, + 0.05249263718724251, + 0.010778916999697685, + -0.0021675622556358576, + -0.06393805891275406, + 0.030819889158010483, + -0.0655008852481842, + -0.03263552859425545, + -0.054147396236658096, + 0.010405447334051132, + 0.009624033235013485, + 0.062329262495040894, + 0.004329378716647625, + 0.0057456917129457, + -0.04074844345450401, + 0.024407697841525078, + -0.0028642271645367146, + -0.024522611871361732, + -0.0803937166929245, + -0.03635873645544052, + -0.04545991122722626, + -0.004346615634858608, + -0.03488783910870552, + 0.0012726706918329, + -0.032359734177589417, + 0.08287585526704788, + 0.022350739687681198, + 0.06007695198059082, + -0.044724464416503906, + 0.011393706314265728, + 0.033095184713602066, + 0.06375419348478317, + -0.011801650747656822, + -0.012571573257446289, + 0.00611341604962945, + 0.05106770619750023, + -0.05980115756392479, + -0.008744942955672741, + 0.036956287920475006, + 0.019995005801320076, + -0.056537605822086334, + -0.05552636459469795, + 0.025235077366232872, + -0.017685238271951675, + -0.010428430512547493, + 0.028935302048921585, + -0.01095703337341547, + -0.011255810037255287, + 0.0036686239764094353, + 0.07189009338617325, + -0.036657512187957764, + -0.023201102390885353, + 0.05129753425717354, + 0.027441423386335373, + 0.048309773206710815, + 0.048539601266384125, + -0.006222583819180727, + 0.0656847432255745, + -0.0003169107949361205, + -0.03173920139670372, + -0.025349991396069527, + -0.01782313548028469, + 0.07841719686985016, + -0.026269301772117615, + -0.07271747291088104, + 0.00950911920517683, + 0.056031983345746994, + 0.036427684128284454, + 0.024361731484532356, + -0.0007282664300873876, + 0.039093684405088425, + -0.02787809632718563, + -0.03415239229798317, + -0.002476393012329936, + 0.08393306285142899, + 0.037668753415346146, + -0.029877595603466034, + -0.03300325199961662, + -0.05180315673351288, + 0.03907070308923721, + 0.06177767738699913, + -0.03263552859425545, + -0.06802898645401001, + 0.016524609178304672, + -0.016283290460705757, + -0.026246318593621254, + -0.03566925227642059, + 0.03881789371371269, + 0.06494929641485214, + 0.008905821479856968, + 0.010072197765111923, + 0.06609843671321869, + -0.037163134664297104, + 0.05796253681182861, + -0.0556182935833931, + 0.043207600712776184, + 0.0024534102994948626, + -0.019029730930924416, + 0.006693730596452951, + -0.010974271222949028, + -0.02155783399939537, + 0.03702523559331894, + -0.07046516239643097, + -0.08181864768266678, + 0.007159131579101086, + -0.039576321840286255, + -0.034014493227005005, + -0.09542444348335266, + 0.0019449165556579828, + -0.01635223813354969, + 0.034635029733181, + -0.06683388352394104, + -0.009491882286965847, + -0.012571573257446289, + -0.018328756093978882, + -0.0268668532371521, + 0.01866200566291809, + -0.08517412841320038, + -0.0610881932079792, + -0.04306970536708832, + 0.002671746537089348, + 0.029647767543792725, + -0.005610667634755373, + 0.010434175841510296, + 0.025258060544729233, + -0.0020282291807234287, + 0.04959680885076523, + 0.04720660299062729, + 0.006682239472866058, + 0.05543443188071251, + 0.0799800232052803, + -0.0474364310503006, + 0.05304422602057457, + -0.03810542821884155, + 0.06375419348478317, + 0.004892456345260143, + 0.01160629652440548, + 0.012261305935680866, + -0.003588184481486678, + -0.029877595603466034, + 0.05543443188071251, + -0.012881840579211712, + -0.002476393012329936, + 0.016628030687570572, + -0.010939796455204487, + -0.0018371848855167627, + -0.0028771550860255957, + -0.08949489146471024, + -0.03153235465288162, + 0.003717462532222271, + -0.06085836514830589, + 0.010595055297017097, + 0.03530152887105942, + -0.005492880940437317, + 0.051941052079200745, + -0.03566925227642059, + 0.035715218633413315, + -0.035761184990406036, + -0.08117513358592987, + -0.03897877037525177, + 0.02059255912899971, + 0.004524732008576393, + -0.004205846227705479, + 0.027510371059179306, + 0.06881040334701538, + 0.034520115703344345, + 0.014111418277025223, + -0.028705475851893425, + -0.03300325199961662, + 0.02348838746547699, + 0.040058963000774384, + -0.021546343341469765, + 0.07690033316612244, + -0.04295479133725166, + -0.006044467445462942, + -0.06963778287172318, + 0.06076643243432045, + -0.012077443301677704, + 0.01777716912329197, + -0.11362679302692413, + 0.014858358539640903, + -0.05474494770169258, + 0.08678292483091354, + 0.08034775406122208, + 0.008400200866162777 + ] + }, + { + "id": "1c99967a-57cd-4263-b825-17fa18c0819f", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "hernandezmark", + "reviewDate": "2021-12-02T01:22:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a3a292e-c185-456b-9837-68a737525302", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "harristimothy", + "reviewDate": "2022-11-27T16:55:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8806c507-5d9a-4f0c-9d1c-2b6395eaf25b", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "jeremy03", + "reviewDate": "2021-04-25T23:38:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c7b14cba-cab3-4ed2-a8da-8b0686fbef55", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "johnlozano", + "reviewDate": "2022-08-02T09:28:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a7b721a4-5bbe-452b-bf2e-22d38f75dc02", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "chadmatthews", + "reviewDate": "2022-05-16T18:57:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cc59f75a-ae13-4176-b23f-77d91f33c474", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "ramirezjulie", + "reviewDate": "2021-02-14T03:27:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "62badac8-9bed-4794-b63d-3b8cb439fb98", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "cody47", + "reviewDate": "2022-10-26T13:42:31", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a1926653-ceff-4896-8c6f-f39b148a254d", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "umiranda", + "reviewDate": "2021-08-08T23:50:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "22fa4e45-f2a8-4e8e-a634-382d86e6be85", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "reyesautumn", + "reviewDate": "2021-01-15T11:55:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "75c560f9-3f21-4c9f-9c90-547c2869b40b", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "wagneradam", + "reviewDate": "2021-09-29T13:36:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "44cc6c3a-f1f4-465b-9fab-3bbb31c6fad1", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "derrickbaker", + "reviewDate": "2021-02-14T01:13:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cf9d7029-ebd5-4894-aeda-5b8b4a6f56b2", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "jeannedorsey", + "reviewDate": "2022-03-13T16:29:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5442c961-5445-4cde-a161-cbb0a5cfcee3", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "dhart", + "reviewDate": "2021-06-15T17:04:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "593a7efe-1d2c-44bb-a9af-26dc7c173bf5", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "svargas", + "reviewDate": "2021-07-10T10:13:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "97aa5d86-4980-4c54-b4b2-d1140eb2b39a", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "baileymary", + "reviewDate": "2021-09-25T12:10:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "93ddec6c-a698-4a88-9d06-11783246ef31", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "susanhayes", + "reviewDate": "2021-02-12T05:55:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2235acd7-c5d1-4846-be13-1b2f7fe6e44f", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "hcastaneda", + "reviewDate": "2021-08-26T01:39:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7c860ab8-eb80-4281-a8f0-d552826a45a9", + "productId": "dd30e5cb-6455-4671-9446-66c5f3f3ffb3", + "category": "Media", + "docType": "customerRating", + "userName": "brett92", + "reviewDate": "2021-02-07T18:43:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Micro (Red)", + "description": "This Basic Keyboard Micro (Red) is a basic keyboard keyboard that fits in most modern computers, as well as some keyboards. It is also sometimes called the \"Universal Basic Keyboard\" in the States. It is also commonly known as the \"Classic Standard Keyboard\". For more details, see The Modern Standard Keyboard Micro\n\nStandard Keyboard\n\nStandard keyboards are often called the most advanced keyboards for gaming or using a variety of peripherals, but are less frequently used.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-11-28T20:09:23", + "price": 182.25, + "stock": 15, + "priceHistory": [ + { + "priceDate": "2021-01-02T14:00:20", + "newPrice": 180.68 + }, + { + "priceDate": "2021-12-20T14:00:20", + "newPrice": 190.86 + }, + { + "priceDate": "2022-12-07T14:00:20", + "newPrice": 189.07 + }, + { + "priceDate": "2023-04-16T14:00:20", + "newPrice": 182.25 + } + ], + "descriptionVector": [ + 0.03217197582125664, + 0.04509576037526131, + -0.05029911547899246, + 0.0444612056016922, + -0.011633521877229214, + 0.028872285038232803, + -0.0027920452412217855, + -0.01777813583612442, + 0.003624899545684457, + -0.015144729986786842, + 0.02616484835743904, + -0.04065386950969696, + 0.06015588343143463, + -0.10059823095798492, + 0.01472169253975153, + 0.04941073805093765, + -0.023288195952773094, + 0.011559490114450455, + 0.0174714345484972, + 0.047549374401569366, + 0.0509759746491909, + -0.03549281507730484, + -0.06117117032408714, + 0.01019519567489624, + 0.036952294409275055, + 0.01655132882297039, + -0.026207150891423225, + -0.018306933343410492, + -0.07661202549934387, + 0.040209680795669556, + 0.038792505860328674, + -0.027222439646720886, + 0.00472215237095952, + 0.003939533606171608, + 0.012394988909363747, + -0.03930015116930008, + -0.08325371146202087, + -0.04221910610795021, + -0.001144844340160489, + 0.014108289033174515, + 0.07305851578712463, + 0.054698701947927475, + 0.0206970926374197, + -0.026545580476522446, + -0.04251523315906525, + 0.10609772056341171, + -0.053471896797418594, + -0.028872285038232803, + -0.005206000991165638, + -0.0537257194519043, + 0.08067318797111511, + 0.08968387544155121, + 0.01937510073184967, + 0.06201724708080292, + 0.00763053260743618, + -0.028576159849762917, + 0.01152776274830103, + 0.07356616109609604, + 0.03739648312330246, + -0.14087137579917908, + 0.056940801441669464, + -0.02039039134979248, + -0.0237323846668005, + -0.049876078963279724, + -0.008503046818077564, + 0.01017933152616024, + -0.0192270390689373, + -0.01753488928079605, + 0.07754270732402802, + 0.039257846772670746, + -0.03166433051228523, + 0.021638350561261177, + -0.031643178313970566, + 0.03663501888513565, + -0.05507943779230118, + 0.012352684512734413, + 0.0670090839266777, + 0.056263942271471024, + 0.08147695660591125, + 0.017587769776582718, + -0.03877135366201401, + 0.011125876568257809, + -0.024282332509756088, + -0.021046098321676254, + -0.007524773478507996, + 0.0237323846668005, + 0.03910978510975838, + -0.027920451015233994, + -0.02684170752763748, + 0.08092700690031052, + -0.029083803296089172, + 0.040949996560811996, + 0.013061271980404854, + 0.006446028593927622, + 0.050214510411024094, + -0.012818025425076485, + -0.062228765338659286, + 0.06874353438615799, + -0.002402057871222496, + 0.03739648312330246, + 0.0852842926979065, + 0.03754454851150513, + -0.029422232881188393, + -0.03202391043305397, + 0.094929538667202, + -0.02521301433444023, + 0.05973284691572189, + 0.04224025830626488, + -0.023013221099972725, + 0.004077020566910505, + -0.052456606179475784, + 0.027455110102891922, + -0.002279112581163645, + 0.00805885810405016, + -0.054614096879959106, + 0.016011955216526985, + -0.060748133808374405, + -0.03894057124853134, + 0.023711232468485832, + 0.06193263828754425, + 0.014658236876130104, + 0.0048252674750983715, + -0.009740429930388927, + 0.012765145860612392, + -0.07174710184335709, + -0.024895736947655678, + -0.05981745198369026, + 0.02100379392504692, + 0.023965055122971535, + 0.04539188742637634, + 0.0011699621099978685, + 0.07648511976003647, + 0.056602369993925095, + 0.043742042034864426, + -0.018275205045938492, + 0.04793011024594307, + 0.028385791927576065, + 0.07424301654100418, + -0.00380733422935009, + 0.05596781522035599, + -0.001317364163696766, + -0.061086565256118774, + -0.049199219793081284, + 0.01467938907444477, + -0.09408346563577652, + -0.024578457698225975, + -0.036952294409275055, + 0.05854834243655205, + 0.0761466845870018, + -0.0318758487701416, + -0.0380098894238472, + -0.027180137112736702, + 0.03128359839320183, + -0.040336593985557556, + 0.040548112243413925, + 0.02158547006547451, + -0.023076675832271576, + -0.024578457698225975, + -0.0636247843503952, + 0.05173744261264801, + 0.005541786551475525, + 0.03236234188079834, + 0.005541786551475525, + -0.02042211778461933, + 0.05029911547899246, + 0.028639614582061768, + 0.06548614799976349, + 0.012765145860612392, + 0.019047247245907784, + -0.005264168605208397, + -0.07775422930717468, + 0.05774457007646561, + -0.020073112100362778, + -0.014192895963788033, + 0.05008759722113609, + -0.02076054736971855, + 0.006371996831148863, + -0.027856996282935143, + 0.009830325841903687, + -0.03610622137784958, + 0.029866423457860947, + -0.03407564386725426, + -0.050002992153167725, + -0.016286930069327354, + 0.0956910029053688, + -0.024916887283325195, + -0.010211058892309666, + 0.056602369993925095, + -0.0190049447119236, + 0.0036301875952631235, + 0.02149028703570366, + -0.002358432160690427, + -0.03682538494467735, + -0.01952316425740719, + 0.0505952425301075, + 0.05474100634455681, + -0.04628026485443115, + 0.005510058719664812, + -0.03921554237604141, + -0.03153742104768753, + 0.00271801371127367, + 0.054360274225473404, + 0.026270607486367226, + 0.02603793703019619, + 0.056602369993925095, + 0.057956088334321976, + 0.031516268849372864, + 0.005018278025090694, + -0.004981262609362602, + 0.057956088334321976, + -0.008053570054471493, + -0.049664560705423355, + -0.04924152418971062, + -0.03765030577778816, + 0.0634978786110878, + -0.004666628781706095, + -0.006668122950941324, + 0.002193183172494173, + -9.460498404223472e-05, + -0.047210946679115295, + 0.061213474720716476, + -0.02597448043525219, + -0.015250489115715027, + -0.003223014296963811, + -0.0382002554833889, + 0.0035958157386630774, + 0.08139234781265259, + -0.016561904922127724, + -0.0077098519541323185, + 0.04780319705605507, + -0.08934544771909714, + -0.010470169596374035, + -0.0011699621099978685, + 0.003400161163881421, + -0.0301837008446455, + 0.035175539553165436, + 0.03542936220765114, + -0.0725085660815239, + -0.10076744854450226, + 0.07876951992511749, + 0.04454581066966057, + 0.03693114221096039, + -0.04543418809771538, + -0.002866076771169901, + 0.019628923386335373, + -0.003696287050843239, + 0.018846305087208748, + -0.06870122998952866, + -0.12538820505142212, + -0.01802138239145279, + -0.08354983478784561, + 0.043953560292720795, + 0.0191953107714653, + 0.053937237709760666, + -0.026080239564180374, + 0.026947466656565666, + 0.019914474338293076, + -0.03411794453859329, + -0.004040004685521126, + -0.05541786551475525, + 0.08464973419904709, + 0.006128750741481781, + -0.03210851922631264, + 0.02237866446375847, + -0.030077941715717316, + 0.027095530182123184, + 0.08435361087322235, + -0.08105392009019852, + -0.029189562425017357, + 0.05406414717435837, + 0.05194896087050438, + -0.027497414499521255, + 0.0736507698893547, + 0.006689275149255991, + -0.04298057407140732, + 0.04835314676165581, + 0.002839636756107211, + 0.1045747846364975, + -0.030099093914031982, + -0.02760317362844944, + 0.05656006559729576, + 0.08139234781265259, + 0.02468421682715416, + 0.037163812667131424, + -0.006826762109994888, + 0.011295092292129993, + 0.029739512130618095, + 0.009015979245305061, + 0.0037068629171699286, + 0.025593748316168785, + -0.0568561926484108, + -0.010258650407195091, + -0.02563605085015297, + 0.048649273812770844, + 0.01876169815659523, + -0.011570066213607788, + 0.0076516843400895596, + 0.03803103789687157, + 0.07310082018375397, + 0.003730658907443285, + 0.019882746040821075, + -0.015345672145485878, + -0.0640055239200592, + -0.09755236655473709, + 0.02889343723654747, + -0.009550063870847225, + -0.015313944779336452, + 0.002264570677652955, + -0.010242787189781666, + -0.08460742980241776, + -0.023351650685071945, + -0.04247292876243591, + -0.07280469685792923, + 0.013198759406805038, + 0.09027612954378128, + -0.03119898959994316, + 0.012574778869748116, + -0.011813312768936157, + -0.001961834728717804, + -0.007286814972758293, + -0.0017278423765674233, + -0.04099230095744133, + -0.021606622263789177, + 0.11362777650356293, + 0.04793011024594307, + -0.04949534684419632, + 0.0038681458681821823, + 0.05173744261264801, + -0.012701690196990967, + -0.094929538667202, + -0.055037133395671844, + -0.041098058223724365, + -0.06734751164913177, + -0.05596781522035599, + 0.08397287130355835, + -0.06100195646286011, + 0.028808830305933952, + 0.044841937720775604, + -0.02168065309524536, + -0.03718496486544609, + 0.06193263828754425, + 0.06519002467393875, + -0.02269594371318817, + -0.03204506263136864, + -0.025191862136125565, + -0.014933211728930473, + -0.05330267921090126, + 0.00402942905202508, + -0.03496402129530907, + 0.007011840585619211, + 0.0012486205669119954, + -0.008709277026355267, + 0.01661478355526924, + -0.01159121748059988, + 0.03760800138115883, + -0.003566731931641698, + 0.002514427062124014, + -0.01845499500632286, + 0.05871755629777908, + 0.07119715213775635, + -0.05038372427225113, + -0.05533326044678688, + 0.05859064683318138, + -0.01152776274830103, + -0.028131971135735512, + -0.05440257862210274, + -0.011273940093815327, + 0.026482125744223595, + 0.05601011961698532, + 0.057829178869724274, + 0.018000230193138123, + -0.03955397382378578, + 0.02569950744509697, + 0.03951166942715645, + -0.00508173368871212, + 0.07386228442192078, + -0.0788964256644249, + -0.0379464328289032, + -0.03291229158639908, + -0.001849465537816286, + 0.004336130805313587, + 0.08257684856653214, + -0.0239227507263422, + 0.007545925211161375, + 0.05199126526713371, + -0.09476032108068466, + -0.00033909070771187544, + -0.012162318453192711, + 0.03396988287568092, + -0.026207150891423225, + -0.023076675832271576, + 0.044968847185373306, + -0.0031833546236157417, + 0.011845040135085583, + -0.03989240154623985, + -0.06882814317941666, + -0.06138268858194351, + -0.03424485772848129, + 0.01860305853188038, + 0.05017220601439476, + 0.04636486992239952, + 0.09645246714353561, + 0.018962640315294266, + -0.008783308789134026, + -0.04873387888073921, + -0.06320174783468246, + -0.04004046693444252, + 0.029464537277817726, + 0.03064904175698757, + -0.06772825121879578, + -0.04215565323829651, + -0.03031061217188835, + -0.055375561118125916, + -0.0440804697573185, + -0.04378434643149376, + -0.013611219823360443, + -0.022949764505028725, + 0.07538522034883499, + -0.000561846187338233, + -0.03669847175478935, + 0.038052190095186234, + -0.0691242665052414, + -0.029527993872761726, + 0.005658121779561043, + 0.010380273684859276, + -0.01882515288889408, + -0.08367674797773361, + -0.0019353949464857578, + 0.04025198519229889, + 0.031452812254428864, + -0.0018415335798636079, + -0.029866423457860947, + -0.051018279045820236, + 0.03923669457435608, + -0.02100379392504692, + -0.053598806262016296, + 0.010819175280630589, + 0.035323601216077805, + 0.013579492457211018, + 0.03217197582125664, + 0.043615128844976425, + 0.020379815250635147, + 0.018127141520380974, + 0.04016737639904022, + -0.12555742263793945, + 0.07043568789958954, + -0.021331647410988808, + 0.04873387888073921, + 0.08481895178556442, + 0.03534475341439247, + 0.002643982181325555, + -0.018042534589767456, + -0.027497414499521255, + -0.018751122057437897, + 0.13816393911838531, + -0.0031939304899424314, + 0.030902864411473274, + -0.006340269464999437, + 0.07491987943649292, + 0.014404415152966976, + -0.01798965409398079, + -0.008302103728055954, + 0.049326132982969284, + -0.023838143795728683, + 0.034033339470624924, + -0.0693780928850174, + 0.01128451619297266, + 0.004455110058188438, + -0.04996068775653839, + -0.014563053846359253, + -0.012151742354035378, + -0.07043568789958954, + -0.027920451015233994, + 0.00787377916276455, + 0.0672629103064537, + -0.057406142354011536, + -0.021204737946391106, + 0.011369123123586178, + 0.010189907625317574, + 0.04236717149615288, + -0.01814829371869564, + 0.019914474338293076, + -0.051779747009277344, + -0.021268192678689957, + -0.015271641314029694, + 0.02005196176469326, + -0.03591585531830788, + 0.0541064515709877, + 0.03765030577778816, + -0.0029850557912141085, + 0.039257846772670746, + 0.022865157574415207, + 0.05287964269518852, + -0.04281136021018028, + 0.024091966450214386, + -0.011548914015293121, + -0.01559949479997158, + 0.06865892559289932, + -0.002059662016108632, + 0.07052028924226761, + -0.014520750381052494, + -0.043615128844976425, + 0.013791010715067387, + 0.03399103507399559, + -0.010285090655088425, + 0.04611105099320412, + 0.031643178313970566, + 0.09899069368839264, + 0.016688816249370575, + 0.006742154713720083, + 0.010068284347653389, + -0.094929538667202 + ] + }, + { + "id": "29d18f41-8153-45da-8bf0-a0fdb1aaf13b", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "breanna62", + "reviewDate": "2022-08-31T19:20:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "930c7eba-5eb5-4e3e-a848-c5ac1f82ef36", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mariamyers", + "reviewDate": "2021-01-02T14:00:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aaf9e58d-2b7d-4a50-b53e-56beb417915e", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david35", + "reviewDate": "2021-07-07T14:41:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9b50c102-e5bf-4843-b582-8a08350b80d9", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dakota98", + "reviewDate": "2021-06-04T16:04:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "08c87383-6b72-4d76-a77d-05465e2a42da", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "manderson", + "reviewDate": "2021-06-21T20:59:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4ee107dc-e910-4705-b58d-5958af021547", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christian36", + "reviewDate": "2022-03-05T03:27:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "50cfe129-964a-4780-b85a-e22537fdf8e0", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stevenmorgan", + "reviewDate": "2022-05-31T09:23:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1eb89f76-df08-40db-bbd8-2b864083581d", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hernandezmonica", + "reviewDate": "2022-12-06T05:41:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "038c23db-4b70-4cc1-82ed-32346abda188", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "portertammy", + "reviewDate": "2021-09-26T06:32:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cef6a4cd-2f36-452d-ab75-0b021de1e13b", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jonespaula", + "reviewDate": "2022-01-03T20:20:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3c8792f7-8167-434d-a60e-335b14b0aa3c", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michelle22", + "reviewDate": "2022-12-09T05:12:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c5799d58-344f-4f46-b888-e3a3cb208f72", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pwilliams", + "reviewDate": "2021-09-23T06:17:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "89ec1e08-610d-4913-af78-42dca78d3ddd", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "millerashley", + "reviewDate": "2021-11-06T07:21:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "91447f50-011e-4e56-a505-270c31ad0169", + "productId": "7c3103c4-5940-43df-ab72-36c1f88a70d3", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "catherinewatson", + "reviewDate": "2021-07-11T23:36:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Ultra (Steel)", + "description": "This Amazing Mouse Ultra (Steel) is a great addition to any lineup for you. There are more than 6200 parts available. You can purchase this item directly from eBay, Amazon.com, or Google.\n\nAll parts are built to last. All components are machine-made. They come in the following colors: Navy, Green; Black; Grey; Red; and White. All are painted", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-12-29T04:29:08", + "price": 944.03, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-10-23T00:31:49", + "newPrice": 986.55 + }, + { + "priceDate": "2022-02-26T00:31:49", + "newPrice": 902.21 + }, + { + "priceDate": "2022-07-02T00:31:49", + "newPrice": 984.34 + }, + { + "priceDate": "2022-11-05T00:31:49", + "newPrice": 959.5 + }, + { + "priceDate": "2025-06-10T00:31:49", + "newPrice": 944.03 + } + ], + "descriptionVector": [ + -0.041280731558799744, + -0.012789157219231129, + -0.04666296765208244, + -0.06824268400669098, + 0.04140767082571983, + -0.015854746103286743, + -0.08007345348596573, + -0.0002754984307102859, + 0.05300994589924812, + 0.003519398160278797, + -0.0010004420764744282, + 0.018418924883008003, + 0.01577858254313469, + -0.057630542665719986, + -0.025502149015665054, + -0.01601976715028286, + -0.034400612115859985, + -0.004541261587291956, + -0.06737949699163437, + -0.021059267222881317, + 0.07723000645637512, + -0.008155864663422108, + -0.01661638356745243, + 0.010580409318208694, + -0.042220085859298706, + -0.013760244473814964, + -0.006531038321554661, + 0.003760583233088255, + -0.037726424634456635, + -0.020373793318867683, + 0.02713966928422451, + 0.024626268073916435, + 0.0631651058793068, + 0.02787591889500618, + 0.048363957554101944, + -0.013341343961656094, + -0.00849860068410635, + -0.05823985114693642, + 0.08474482595920563, + 0.0376756489276886, + 0.025273658335208893, + -0.02861216850578785, + -0.010244019329547882, + 0.03729483112692833, + -0.013112852349877357, + 0.033308930695056915, + -0.03348664566874504, + 0.026987342163920403, + 0.028688332065939903, + 0.01624825969338417, + 0.018406230956315994, + 0.038564227521419525, + -0.10398885607719421, + -0.017771532759070396, + 0.04686607047915459, + -0.061438728123903275, + 0.030490873381495476, + 0.2299128621816635, + 0.002037379425019026, + -0.017289163544774055, + -0.01747957244515419, + -0.07565595209598541, + -0.024715125560760498, + 0.03219186142086983, + -0.04219469800591469, + -0.058646060526371, + 0.03219186142086983, + -0.049303311854600906, + 0.06875044852495193, + 0.02212555892765522, + -0.012014825828373432, + -0.020741917192935944, + 0.0320141464471817, + -0.009863200597465038, + 0.025603702291846275, + 0.035873107612133026, + 0.012846279889345169, + 0.037827976047992706, + 0.026606524363160133, + -0.0032242638990283012, + 0.05181671306490898, + 0.008854031562805176, + -0.024499326944351196, + 0.03861500322818756, + 0.09038093686103821, + 0.0627589002251625, + 0.06336820870637894, + -0.10703540593385696, + -0.031227122992277145, + 0.0781947448849678, + -0.009253891184926033, + 0.010669266805052757, + 0.06407906860113144, + 0.011443598195910454, + 0.014559962786734104, + 0.02678423933684826, + -0.04813546687364578, + 0.0113674346357584, + -0.020196078345179558, + 0.01687026210129261, + 0.040417544543743134, + 0.035136859863996506, + -0.0545332171022892, + 0.02627648040652275, + -0.03848806396126747, + -0.004096973221749067, + 0.0008639821317046881, + 0.057376664131879807, + -0.028662944212555885, + -0.1123160868883133, + 0.0018977458821609616, + -0.07301561534404755, + 0.013874489814043045, + -0.015829358249902725, + 0.05514252930879593, + 0.03389285132288933, + -0.09510309249162674, + -0.044428832828998566, + 0.004293729551136494, + -0.0093490956351161, + 0.05661502853035927, + 0.013239792548120022, + 0.008587459102272987, + -0.0002846222196239978, + -0.03853883966803551, + -0.013366731815040112, + 0.016197482123970985, + -0.024651655927300453, + 0.0471707247197628, + -0.023915406316518784, + -0.09931748360395432, + 0.04998878389596939, + 0.002638755366206169, + 0.006337455473840237, + -0.08616654574871063, + 0.03617776557803154, + -0.018012717366218567, + -0.028510617092251778, + -0.02250637672841549, + 0.07707767933607101, + -0.035390738397836685, + -0.03163332864642143, + -0.034781429916620255, + 0.015499315224587917, + -0.0719493180513382, + -0.05889993906021118, + -0.019967587664723396, + 0.028561392799019814, + 0.011779987253248692, + 0.024143896996974945, + 0.012916096486151218, + -0.09317360818386078, + 0.004350852221250534, + -0.033664360642433167, + 0.02397887594997883, + 0.02911992557346821, + -0.10825402289628983, + -0.0239407941699028, + -0.04110301658511162, + 0.10723850876092911, + -0.011526108719408512, + 0.008333579637110233, + -0.020716529339551926, + 0.008206640370190144, + -0.03117634728550911, + 0.011164330877363682, + 0.03181104362010956, + 0.0694105327129364, + -0.019777176901698112, + 0.02531174011528492, + 0.023547280579805374, + -0.025032473728060722, + 0.007997189648449421, + -0.08403396606445312, + 0.10551212728023529, + 0.04031599313020706, + 0.06016933172941208, + 0.0532638244330883, + 0.02871371991932392, + -0.022684091702103615, + 0.013442895375192165, + 0.03226802498102188, + -0.0430578850209713, + 0.04838934540748596, + 0.04562206566333771, + 0.027215832844376564, + -0.00641679298132658, + 0.05270528793334961, + -0.008980970829725266, + 0.0049760290421545506, + -0.00019616122881416231, + -0.019129786640405655, + 0.011240494437515736, + -0.0003060432500205934, + -0.033816687762737274, + 0.09139645844697952, + -0.04303249716758728, + 0.04341331496834755, + -0.03780258819460869, + -0.049201760441064835, + 0.03676168620586395, + -0.0011146876495331526, + 0.04409879073500633, + -0.027215832844376564, + 0.015803970396518707, + -0.057528991252183914, + -0.02041187509894371, + 0.009977446869015694, + 0.02663191221654415, + -0.007311716675758362, + -0.0039985948242247105, + 0.008206640370190144, + -0.028536004945635796, + -0.010859675705432892, + 0.04069681093096733, + 0.032572682946920395, + 0.013747550547122955, + -0.068851999938488, + -0.05565028637647629, + -0.05316227301955223, + -0.028028246015310287, + -0.00752116646617651, + -0.03935125097632408, + -0.013925265520811081, + -0.09764187783002853, + -0.058493733406066895, + 0.09444300085306168, + 0.026098765432834625, + 0.08108896762132645, + 0.015359682030975819, + -0.04889710247516632, + -0.03163332864642143, + 0.02297605387866497, + -0.04153461009263992, + -0.055802613496780396, + 0.06702406704425812, + -0.10449661314487457, + -0.002603846834972501, + 0.01321440376341343, + 0.01131665799766779, + 0.002159558702260256, + -0.061438728123903275, + -0.039300475269556046, + -0.013480977155268192, + 0.018177740275859833, + -0.0665670856833458, + 0.13983657956123352, + -0.08779137581586838, + -0.07413268089294434, + 0.02029762975871563, + -0.010231325402855873, + -0.028205960988998413, + -0.01821582205593586, + 0.034400612115859985, + 0.019624849781394005, + 0.03348664566874504, + 0.023509198799729347, + -0.013925265520811081, + -0.0004327844362705946, + -0.105105921626091, + -0.01857125200331211, + 0.039427414536476135, + -0.017809614539146423, + 0.08794370293617249, + -0.03742177039384842, + 0.00929197296500206, + -0.005445705261081457, + -0.03633009269833565, + -0.03178565576672554, + 0.0309478547424078, + 0.0008647755021229386, + 0.03031315840780735, + 0.033689748495817184, + -0.030135441571474075, + -0.0036907666362822056, + -0.022201722487807274, + -0.059103041887283325, + 0.053111497312784195, + 0.030617812648415565, + -0.009171380661427975, + 0.004839569330215454, + 0.07530052214860916, + 0.007870250381529331, + 0.01723838783800602, + -0.017631899565458298, + -0.01326518040150404, + 0.0021357573568820953, + 0.0013884010259062052, + 0.041864655911922455, + -0.04960796609520912, + -0.01872357912361622, + -0.010720042511820793, + 0.032090310007333755, + -0.007990842685103416, + 0.025032473728060722, + 0.02028493583202362, + 0.06138795241713524, + 0.021490860730409622, + -0.03414672985672951, + 0.0396559052169323, + 0.04793236404657364, + 0.00017771533748600632, + -0.06478992849588394, + 0.0036748992279171944, + 0.026200316846370697, + 0.08687740564346313, + 0.03800569102168083, + -0.03254729509353638, + 0.024004263803362846, + -0.061794158071279526, + 0.030414709821343422, + 0.018139658495783806, + -0.07316794246435165, + -0.014191838912665844, + 0.10307489335536957, + -0.025425985455513, + 0.035873107612133026, + -0.028282124549150467, + -0.020018363371491432, + 0.02297605387866497, + -0.06468837708234787, + -0.04925253614783287, + -0.10114540904760361, + 0.07301561534404755, + 0.0889592170715332, + -0.08510025590658188, + -0.06646553426980972, + 0.039909787476062775, + -0.017212999984622, + -0.036355480551719666, + -0.06763337552547455, + 0.0024515194818377495, + 0.02212555892765522, + 0.024842064827680588, + 0.0339944027364254, + -0.09373214095830917, + 0.008098741061985493, + 0.08398319035768509, + 0.08195215463638306, + 0.011875192634761333, + 0.023915406316518784, + -0.002843445399776101, + -0.02675885148346424, + 0.05412701144814491, + 0.013874489814043045, + -0.048490896821022034, + 0.0020722877234220505, + -0.056564249098300934, + -0.0306685883551836, + 0.03396901488304138, + 0.0015851572388783097, + -0.09332593530416489, + -0.0026022600941359997, + 0.00011107208410976455, + 0.06971518695354462, + -0.017822308465838432, + -0.02420736663043499, + -0.02369960956275463, + 0.020576896145939827, + 0.008219334296882153, + 0.03485759347677231, + 0.006477089133113623, + 0.009006358683109283, + 0.03018621914088726, + 0.028409065678715706, + 0.06148950383067131, + 0.016299035400152206, + 0.015981685370206833, + 0.053619254380464554, + 0.013747550547122955, + -0.016946425661444664, + -0.06839501112699509, + 0.025692559778690338, + 0.05615804344415665, + -0.06037243828177452, + -0.014166451059281826, + 0.06966441124677658, + 0.018076186999678612, + -0.004785620141774416, + -0.017263775691390038, + 0.03935125097632408, + 0.028079021722078323, + 0.00849860068410635, + 0.04313404858112335, + 0.06712561845779419, + 0.013811020180583, + -0.03617776557803154, + 0.006715100724250078, + 0.012116377241909504, + -0.024004263803362846, + 0.021795514971017838, + 0.0174922663718462, + 0.039300475269556046, + 0.0613371767103672, + 0.049328699707984924, + -0.08169827610254288, + 0.05956002324819565, + 0.1259240061044693, + -0.05925536900758743, + -0.018266597762703896, + -0.003249651752412319, + 0.0403667688369751, + 0.0036653787828981876, + -0.03348664566874504, + -0.021122736856341362, + -0.054228562861680984, + 0.045647453516721725, + 0.04255012795329094, + -0.02764742821455002, + -0.05585338920354843, + -0.07743310928344727, + -0.06270812451839447, + 0.036380868405103683, + -0.018190434202551842, + 0.004712629597634077, + 0.0339944027364254, + 0.08179982751607895, + -0.04239780083298683, + 0.06646553426980972, + -0.08657275140285492, + 0.0667194128036499, + 0.04877016320824623, + 0.007863903418183327, + -0.013442895375192165, + -0.01831737346947193, + 0.0339944027364254, + -0.06418062001466751, + -0.006638937164098024, + 0.03691401332616806, + -0.05341615155339241, + 0.007146695163100958, + -0.043464090675115585, + -0.019904116168618202, + 0.016590995714068413, + 0.04201698303222656, + 0.001643866766244173, + 0.034882981330156326, + -0.031988758593797684, + 0.03544151410460472, + -0.033562809228897095, + 0.026327256113290787, + 0.0034114995505660772, + -0.006981673650443554, + 0.005559951066970825, + 0.005363194737583399, + -0.028180573135614395, + -0.045063529163599014, + -0.015803970396518707, + 0.015499315224587917, + -0.01797463558614254, + -0.05108046531677246, + 0.00010750190995167941, + -0.015562785789370537, + -0.0030513086821883917, + 0.06088019534945488, + -0.009615669026970863, + 0.005347327329218388, + 0.07921025902032852, + -0.05052192881703377, + 0.05069964379072189, + -0.031227122992277145, + 0.102262482047081, + 0.06524691730737686, + -0.01651483215391636, + -0.02774897962808609, + -0.0437687486410141, + -0.014648821204900742, + 0.004135055001825094, + -0.022569846361875534, + 0.006943591870367527, + -0.0289675984531641, + -0.04201698303222656, + 0.03714250400662422, + 0.05062348023056984, + -0.016844874247908592, + 0.002773628570139408, + 7.522158557549119e-05, + -0.006511997431516647, + 0.016413280740380287, + 0.06006778031587601, + -0.03414672985672951, + -0.011513414792716503, + 0.028307514265179634, + 0.051385119557380676, + -0.013963347300887108, + -0.06585622578859329, + 0.03828496113419533, + 0.01124684140086174, + -0.047348443418741226, + 0.07306639105081558, + -0.008923848159611225, + 0.06443449854850769, + -0.03851345181465149, + 0.02653036080300808, + -0.026479585096240044, + 0.038335736840963364, + 0.020259547978639603, + 0.025159412994980812, + -0.09378291666507721, + 0.046129822731018066, + -0.010066304355859756, + -0.02239213138818741, + -0.005042672622948885, + 0.005169611889868975, + 0.027622040361166, + 0.03678707405924797, + -0.004658680409193039, + 0.04988723248243332, + 0.0403667688369751, + -0.035873107612133026, + 0.026073377579450607, + 0.004658680409193039 + ] + }, + { + "id": "5a5cbce2-9781-441a-a152-9e760edd2aec", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "baldwinandrew", + "reviewDate": "2022-09-28T20:40:37", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f53bf25c-bafe-463a-9f88-0029a9988d37", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xmiller", + "reviewDate": "2022-08-08T09:56:17", + "stars": 4, + "verifiedUser": false + }, + { + "id": "07f033c6-a56f-4e2c-b928-a2ec6bcb3a28", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "donna08", + "reviewDate": "2021-12-20T05:00:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bea6dc3b-561f-4b9e-8cfa-c02867d95fac", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shawn96", + "reviewDate": "2022-11-01T10:42:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "29938557-5544-43a1-9692-058dbb9db897", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "penachristine", + "reviewDate": "2022-11-05T20:52:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "60df5490-8ce9-4b19-ac81-12740969a19a", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lawrencecalvin", + "reviewDate": "2021-11-28T03:08:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "da237a8b-f9d0-4541-b926-5ccf2bde1a3b", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garytaylor", + "reviewDate": "2022-09-19T03:31:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9548604a-5956-4d9b-be28-fdd0d31d5f53", + "productId": "9346a45c-7c57-4dee-bc2c-fcce5305d994", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachelmelton", + "reviewDate": "2021-10-23T00:31:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83db44b4-9fa2-469e-85a0-fd5d4b2c1c19", + "productId": "83db44b4-9fa2-469e-85a0-fd5d4b2c1c19", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Mini (Red)", + "description": "This Awesome Phone Mini (Red) is a bit light on detail and slightly flimsy. After replacing it, I was shocked by the lack of color. At a glance, it looked great, but if you look at the sides of and top of the phone, it appears to have been painted red and colored as well. That color should be used on phones that have the same dimensions,", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-09-24T18:32:20", + "price": 1072.07, + "stock": 78, + "priceHistory": [ + { + "priceDate": "2021-06-09T01:34:18", + "newPrice": 997.61 + }, + { + "priceDate": "2021-06-17T01:34:18", + "newPrice": 1098.22 + }, + { + "priceDate": "2021-06-25T01:34:18", + "newPrice": 985.52 + }, + { + "priceDate": "2025-01-12T01:34:18", + "newPrice": 1072.07 + } + ], + "descriptionVector": [ + -0.03844952955842018, + 0.016581205651164055, + -0.025839870795607567, + 0.029935527592897415, + -0.015240808017551899, + 0.03162343427538872, + 0.020925084128975868, + -0.024325719103217125, + -0.03266596794128418, + -0.014309977181255817, + 0.004924096632748842, + 0.002730438020080328, + 0.012528986670076847, + 0.020068718120455742, + 0.05709097534418106, + 0.042619653046131134, + -0.03844952955842018, + 0.007744514849036932, + 0.006003860849887133, + 0.008644318208098412, + 0.08528894931077957, + -0.08782081305980682, + -0.053169071674346924, + 0.018765555694699287, + -0.027453312650322914, + -0.032566677778959274, + -0.02837173268198967, + 0.003918799106031656, + 0.043289851397275925, + -0.000499933899845928, + -0.00750870443880558, + -0.03283972293138504, + -0.04934645816683769, + 0.07307644933462143, + -0.010878312401473522, + 0.07943092286586761, + -0.023469354957342148, + -0.0363396480679512, + 0.02869442105293274, + 0.06950205564498901, + -0.031275924295186996, + -0.01680460385978222, + -0.013801122084259987, + -0.0445309616625309, + 0.0005247560329735279, + -0.008104436099529266, + -0.013875588774681091, + 0.015935828909277916, + 0.017598913982510567, + -0.05028970167040825, + -0.04249554127454758, + 0.003977751359343529, + 0.006956411059945822, + -0.013602545484900475, + 0.04465506970882416, + -0.004027395974844694, + -0.004042909946292639, + 0.08196277916431427, + -0.0058394139632582664, + -0.03807719796895981, + -0.008278191089630127, + -0.04582171142101288, + 0.02854548767209053, + -0.002950734691694379, + 0.030953237786889076, + 0.03318723291158676, + -0.08330317586660385, + -0.059970345348119736, + -0.02526896260678768, + 0.03946723788976669, + 0.0021145381033420563, + -0.028495842590928078, + -0.07724656909704208, + 0.0790834128856659, + 0.01790918968617916, + 0.03269078955054283, + 0.030928414314985275, + -0.002809558529406786, + 0.001965604955330491, + -0.01037566363811493, + 0.022339945659041405, + 0.027974577620625496, + -0.024536708369851112, + -0.01050598081201315, + -0.03926866129040718, + 0.012411081232130527, + 0.0453500896692276, + -0.08330317586660385, + -0.027651889249682426, + 0.041850168257951736, + -0.05381444841623306, + -0.006875738967210054, + 0.08593432605266571, + 0.028595130890607834, + 0.0940760001540184, + 0.004753444343805313, + -0.013999699614942074, + 0.05391373857855797, + -0.08047345280647278, + -0.06131074205040932, + 0.018914487212896347, + 0.016581205651164055, + -0.014769187197089195, + 0.020565161481499672, + 0.06190647557377815, + 0.029066752642393112, + -0.02360587753355503, + 0.007018466480076313, + 0.04204874485731125, + -0.0724807158112526, + 0.07526079565286636, + -1.1817191989393905e-06, + -0.08052309602499008, + 0.004706902429461479, + -0.007167399395257235, + 0.05292085185647011, + 0.023717576637864113, + 0.005104057025164366, + 0.05624702200293541, + -0.027949756011366844, + -0.013974878005683422, + 0.01392523292452097, + 0.01023914199322462, + 0.0420735664665699, + -0.013155746273696423, + 0.006373090203851461, + 0.006522023119032383, + 0.007359771057963371, + 0.02051551826298237, + -0.05882852524518967, + -0.05902710184454918, + 0.09159377962350845, + 0.10514668375253677, + 0.052027251571416855, + -0.02332042157649994, + 0.03614106774330139, + 0.07888483256101608, + 0.04589617997407913, + 0.019919784739613533, + 0.012957168743014336, + 0.0708424523472786, + 0.06071500852704048, + 0.02988588437438011, + 0.003267217194661498, + -0.027999399229884148, + 0.02328318916261196, + -0.0677148625254631, + -0.009525504894554615, + -0.011685033328831196, + 0.02787528932094574, + -0.05242440849542618, + -0.13711762428283691, + 0.013006812892854214, + -0.062253985553979874, + 0.03648857772350311, + 0.08057273924350739, + -0.047757841646671295, + 0.006385501474142075, + 0.0015785343712195754, + 0.02983623929321766, + -0.021409114822745323, + -0.0626014918088913, + 0.04266929626464844, + -0.07769337296485901, + -0.011300290003418922, + -0.06141003221273422, + 0.04877554997801781, + 0.07143818587064743, + -0.10048011690378189, + 0.038523998111486435, + 0.04587135836482048, + 0.06741699576377869, + 0.028173154219985008, + -0.034229762852191925, + 0.0004262430884409696, + 0.037704866379499435, + 0.056991685181856155, + -0.020490694791078568, + -0.0018601107876747847, + -0.043463606387376785, + 0.026088092476129532, + 0.02258816733956337, + -0.02083820477128029, + -0.0177602581679821, + -0.024201609194278717, + 0.01861662231385708, + -0.025492360815405846, + -0.004979946184903383, + -0.05709097534418106, + 0.021285004913806915, + -0.026187382638454437, + 0.01385076716542244, + 0.01857938803732395, + 0.008420919068157673, + 0.05051309987902641, + -0.03594249114394188, + 0.05510520190000534, + -0.030878771096467972, + -0.006522023119032383, + 0.08638112992048264, + -0.0076204040087759495, + 0.06329651176929474, + 0.05530377849936485, + -0.02737884595990181, + 0.011039656586945057, + -0.04259483143687248, + -0.022191014140844345, + 0.016879070550203323, + 0.04753444343805313, + 0.011958076618611813, + 0.02480975165963173, + 0.025182083249092102, + -0.020614806562662125, + 0.010716969147324562, + 0.07367217540740967, + 0.05743848532438278, + 0.0511336550116539, + -0.018864843994379044, + -0.0396161712706089, + -0.014707131311297417, + 0.021930381655693054, + -0.006276904605329037, + 0.022749511525034904, + 0.013813533820211887, + -0.09874256700277328, + 0.01491811964660883, + 0.08866476267576218, + 0.04778266325592995, + 0.027577422559261322, + 0.0012612761929631233, + -0.07620403915643692, + -0.05247405171394348, + -0.015848951414227486, + -0.029811417683959007, + -0.03450280800461769, + 0.07724656909704208, + -0.020701684057712555, + 0.025020740926265717, + -0.10236659646034241, + 0.03482549265027046, + 0.015625551342964172, + 0.048229463398456573, + -0.06553050875663757, + -0.04046012461185455, + 0.11418195068836212, + -0.06170789524912834, + 0.04522598162293434, + -0.08434570580720901, + -0.10008296370506287, + 0.03892115131020546, + -0.02673346921801567, + -0.037332531064748764, + -0.014632664620876312, + 0.09278524667024612, + 0.01126305665820837, + -0.012919935397803783, + 0.06692054867744446, + 0.002902641659602523, + 0.03775450959801674, + -0.049247171729803085, + 0.05381444841623306, + -0.00602558022364974, + 0.026832757517695427, + 0.008321629837155342, + -0.04634297639131546, + 0.046938709914684296, + 0.04455578327178955, + -0.03897079452872276, + 0.00325790885835886, + 0.09164342284202576, + 0.005175421014428139, + -0.07848767936229706, + 0.018765555694699287, + -0.053715161979198456, + -0.027974577620625496, + 0.030233394354581833, + -0.04870108515024185, + 0.046938709914684296, + -0.023556232452392578, + 0.02556682750582695, + 0.10405450314283371, + 0.028123511001467705, + 0.07928198575973511, + -0.025057973340153694, + 0.04629333317279816, + -0.025963982567191124, + -0.08985622972249985, + -0.03812684118747711, + -0.026609359309077263, + -0.03475102782249451, + -0.02951355092227459, + -0.050562746822834015, + 0.001960950903594494, + -0.0445309616625309, + -0.002511692699044943, + -0.003788482630625367, + 0.001400125096552074, + -0.017636146396398544, + 0.029463907703757286, + 0.019472986459732056, + 0.034875139594078064, + -0.03154896944761276, + -0.038648106157779694, + -0.06726805865764618, + 0.029637662693858147, + 0.062452562153339386, + -0.03167308121919632, + 0.10544455051422119, + -0.01829393394291401, + 0.019584685564041138, + 0.07833874225616455, + 0.011647799983620644, + -0.040633879601955414, + -0.06741699576377869, + 0.018095357343554497, + -0.03365885093808174, + -0.0576867051422596, + -0.019212353974580765, + 0.012671713717281818, + -0.025591649115085602, + 0.0758565291762352, + -0.03929348289966583, + -0.042123209685087204, + 0.041353724896907806, + -0.008147874847054482, + -0.019299231469631195, + -0.037853799760341644, + -0.056644175201654434, + -0.039516884833574295, + 0.00032714835833758116, + -0.05738884210586548, + 0.032070234417915344, + 0.01392523292452097, + 0.0058642360381782055, + -0.008594674058258533, + -0.012733769603073597, + 0.08171456307172775, + 0.04678977653384209, + 0.06582837551832199, + 0.04723657667636871, + 0.00403980677947402, + 0.05376480519771576, + -0.08479250967502594, + 0.020490694791078568, + -0.021781448274850845, + -0.09606177359819412, + -0.04189981147646904, + -0.0018492511007934809, + 0.0610128752887249, + -0.022128958255052567, + 0.0016894584987312555, + -0.04110550135374069, + 0.06528228521347046, + 0.03432904928922653, + 0.041155144572257996, + 0.05788528174161911, + -0.00924625527113676, + -0.0494457483291626, + 0.03524747118353844, + 0.022550934925675392, + 0.05242440849542618, + 0.006354473531246185, + 0.0610625222325325, + -0.00020749776740558445, + 0.030481616035103798, + 0.04713728651404381, + -0.045921001583337784, + 0.05505555868148804, + -0.14456427097320557, + 0.031573791056871414, + 0.06860845535993576, + 0.004936507437378168, + -0.14754293859004974, + 0.025815049186348915, + -0.037059489637613297, + -0.021260183304548264, + 0.00904147233814001, + -0.047931596636772156, + -0.03298865258693695, + 0.0610625222325325, + -0.05311942845582962, + 0.0395665280520916, + -0.07655154913663864, + 0.03978992626070976, + 0.07193462550640106, + 0.0362403579056263, + -0.05644559860229492, + 0.0658780187368393, + 0.003155517391860485, + 0.016879070550203323, + -0.08330317586660385, + -0.04934645816683769, + 0.037704866379499435, + 0.06577873229980469, + -0.021719392389059067, + -0.02933979593217373, + -0.0362403579056263, + 0.011815349571406841, + 0.07774301618337631, + -0.017660968005657196, + -0.006084532476961613, + 0.07024671882390976, + 0.031921301037073135, + -0.004775163717567921, + 0.00331686157733202, + -0.050885435193777084, + 0.037704866379499435, + 0.027080979198217392, + -0.03499925136566162, + -0.05341729521751404, + 0.019448164850473404, + 0.04798123985528946, + -0.020316939800977707, + -0.013466022908687592, + 0.015389740467071533, + -0.012187682092189789, + 0.052225831896066666, + -0.016171639785170555, + 0.01723899133503437, + 0.07734585553407669, + 0.035371582955121994, + -0.000663217157125473, + -0.005305737257003784, + 0.02655971422791481, + -0.04046012461185455, + 0.042148031294345856, + -0.03517300635576248, + -0.0009207471157424152, + 0.00980475451797247, + -0.08017558604478836, + -0.0017003181856125593, + -0.060963232070207596, + -0.012615864165127277, + 0.0036209330428391695, + -0.009873014874756336, + 0.050364166498184204, + -0.08866476267576218, + -0.003934312611818314, + -0.023543821647763252, + 0.018591800704598427, + 0.01630816049873829, + 0.03626517951488495, + -0.05882852524518967, + 0.056147731840610504, + -0.08514001965522766, + 0.008172697387635708, + -0.00039133691461756825, + 0.02737884595990181, + -0.036190714687108994, + -0.018852433189749718, + -0.08712579309940338, + 0.02025488391518593, + -0.04172605648636818, + -0.01633298397064209, + 0.013292267918586731, + -0.07014743238687515, + 0.009835782460868359, + 0.02202966995537281, + -0.08330317586660385, + 0.006764039397239685, + -0.049892548471689224, + 0.003067088546231389, + 0.005069926846772432, + 0.006478584371507168, + -0.035694271326065063, + -0.0031803396996110678, + 0.01630816049873829, + 0.010623885318636894, + -0.012528986670076847, + 0.0453997366130352, + -0.026932045817375183, + -0.006981233134865761, + -0.08424641937017441, + -0.018355989828705788, + 0.01583654060959816, + 0.01572483964264393, + -0.016941126435995102, + -0.08012594282627106, + -0.02889299765229225, + -0.02071409486234188, + 0.0021331545431166887, + -0.012957168743014336, + -0.019758442416787148, + 0.011697444133460522, + 0.06706948578357697, + -0.06369367241859436, + -0.0009835781529545784, + -0.01598547212779522, + -0.019125476479530334, + 0.013962466269731522, + 0.024561529979109764, + 0.04572242498397827, + -0.004685183055698872, + -0.05247405171394348, + -0.002893333323299885, + -0.037655219435691833, + 0.0626014918088913, + -0.05212654173374176, + -0.035396404564380646, + 0.006522023119032383, + 0.059622835367918015, + -0.000665932078845799, + -0.0028948846738785505, + -0.0016677390085533261, + -0.01676737144589424, + -0.01509187463670969, + -0.011889816261827946, + 0.0956149697303772, + 0.02772635594010353, + -0.04701317474246025, + 0.0329638309776783, + -0.056147731840610504 + ] + }, + { + "id": "f9c79698-b048-4e8f-b369-26754ea29628", + "productId": "83db44b4-9fa2-469e-85a0-fd5d4b2c1c19", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristina66", + "reviewDate": "2021-06-26T00:07:12", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0bc9f607-cc78-485e-9a42-a5c3e81ff80a", + "productId": "83db44b4-9fa2-469e-85a0-fd5d4b2c1c19", + "category": "Electronics", + "docType": "customerRating", + "userName": "beardbreanna", + "reviewDate": "2021-06-09T01:34:18", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5c52071a-37f7-44d9-811a-e50119634c9a", + "productId": "5c52071a-37f7-44d9-811a-e50119634c9a", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Black)", + "description": "This Premium Stand Micro (Black) is fully lined in place with a full set of chrome hardware accents.\n\n\nIf you ever look or shop at a new, classic home or office or if you're looking for something a little bit more traditional, here's the standard size of the Micro for the size of the desk.\n\n\nMicro is now available in our original price bracket for less than $1,000!\n\n\nThe Micro and the Micro are two major stand sizes for the current", + "countryOfOrigin": "USA", + "rareItem": true, + "firstAvailable": "2020-01-12T11:15:45", + "price": 642.44, + "stock": 70, + "priceHistory": [ + { + "priceDate": "2021-09-14T03:50:15", + "newPrice": 705.49 + }, + { + "priceDate": "2025-01-03T03:50:15", + "newPrice": 642.44 + } + ], + "descriptionVector": [ + 0.001299516181461513, + 0.01528606191277504, + -0.05157873407006264, + 0.0091368043795228, + -0.018715713173151016, + -0.020832451060414314, + 0.010443019680678844, + 0.032528094947338104, + 0.04238834232091904, + 0.011159762740135193, + 0.02256067283451557, + -0.00437079556286335, + 0.044103167951107025, + -0.07443414628505707, + 0.028294621035456657, + -0.01779131405055523, + -0.03177785873413086, + -0.04067351669073105, + 0.011494689621031284, + -0.0013840851606801152, + 0.06730689853429794, + -0.049810320138931274, + -0.028616150841116905, + 0.061465777456760406, + -0.0741662010550499, + -0.026244867593050003, + -0.0007962886011227965, + 0.003257163567468524, + 0.01198368240147829, + 0.0688609629869461, + 0.014643002301454544, + 0.012358800508081913, + -0.0071071479469537735, + 0.036198895424604416, + -0.021823834627866745, + -0.015366444364190102, + -0.005157873500138521, + -0.010302349925041199, + 0.05744665488600731, + 0.05776818469166756, + 0.0048195975832641125, + 0.05524953454732895, + 0.03609171882271767, + -0.05246294289827347, + 0.010583688504993916, + 0.048309847712516785, + -0.042200785130262375, + -0.007221023086458445, + 0.013216213323175907, + -0.04027160629630089, + -0.000739351031370461, + 0.06896813958883286, + -0.008312884718179703, + 0.030491741374135017, + -0.008848767727613449, + -0.07486285269260406, + 0.05541029945015907, + 0.18541550636291504, + 0.04383522644639015, + -0.06586001813411713, + 0.05171270668506622, + 0.012707124464213848, + -0.008728194050490856, + -0.011260240338742733, + -0.02048412710428238, + 0.054981593042612076, + -0.008895657025277615, + -0.051980648189783096, + 0.03108121268451214, + 0.0531327947974205, + -0.022600863128900528, + 0.021207569167017937, + 0.03365344926714897, + 0.007535854354500771, + 0.012968367896974087, + -0.05222179368138313, + 0.057285889983177185, + 0.005623421631753445, + 0.03799410164356232, + 0.018126241862773895, + -0.006038730964064598, + 0.0022708040196448565, + 0.027946297079324722, + -0.00055262929527089, + 0.07079014182090759, + -0.023900380358099937, + 0.018608536571264267, + -0.06773560494184494, + -0.042817048728466034, + 0.06194807216525078, + -0.046809375286102295, + 0.025307072326540947, + 0.10058522969484329, + 0.01789849065244198, + -0.00044168479507789016, + -0.059375833719968796, + -0.05776818469166756, + 0.04584478586912155, + 0.01899705082178116, + -0.056374888867139816, + 0.08097191900014877, + -0.050105057656764984, + 0.03949457406997681, + -0.006075573153793812, + -0.0003694661718327552, + 0.043701257556676865, + 0.042709872126579285, + 0.023136746138334274, + 0.003620559349656105, + -0.15079747140407562, + 0.06264472007751465, + 0.014241090044379234, + 0.01473678182810545, + 0.03962854668498039, + -0.026727162301540375, + 0.030893653631210327, + 0.01079134363681078, + -0.06259112805128098, + -0.0019861161708831787, + -0.01706787198781967, + -0.06382366269826889, + -0.020805656909942627, + 0.02268124558031559, + 0.045523256063461304, + 0.00010105370893143117, + 0.04145054891705513, + -0.0880991593003273, + -0.01422769296914339, + 0.025642000138759613, + -0.030304182320833206, + -0.0515519417822361, + 0.05991171672940254, + 0.02446305751800537, + 0.013852574862539768, + -0.030491741374135017, + 0.04793472960591316, + 0.08300827443599701, + 0.02856256254017353, + 0.007864082232117653, + 0.027812326326966286, + -0.047211289405822754, + -0.04528211057186127, + 0.0015649456763640046, + 0.02837500348687172, + -0.043701257556676865, + -0.021287951618433, + -0.03126877173781395, + 0.08370491862297058, + -0.03140274062752724, + -0.011816219426691532, + -0.01836738921701908, + -0.09785223007202148, + 7.828915113350376e-05, + -0.06934325397014618, + 0.09935270249843597, + -0.002130134729668498, + -0.0589471273124218, + -0.029286004602909088, + -0.09645893424749374, + 0.050587352365255356, + 0.08552692085504532, + 0.032313741743564606, + -0.03544865921139717, + -0.007127243559807539, + 0.03574339300394058, + 0.043513696640729904, + 0.04868496581912041, + -0.0006614805315621197, + -0.03724386543035507, + 0.023511864244937897, + 0.028910886496305466, + -0.02426210045814514, + 0.006849254015833139, + -0.08129344880580902, + 0.034323304891586304, + 0.006701886188238859, + 0.04726487770676613, + -0.09061780571937561, + 0.04396919533610344, + -0.0423615500330925, + 0.026847736909985542, + 0.042575903236866, + -0.05321317911148071, + 0.004977012984454632, + -0.026030514389276505, + 0.04496058076620102, + 0.014522428624331951, + 0.060286834836006165, + 0.029848681762814522, + -0.019144419580698013, + 0.0005978444241918623, + 0.022908996790647507, + -0.002806687029078603, + -0.027343427762389183, + 0.05685718357563019, + -0.02746400237083435, + 0.010034408420324326, + 0.052784472703933716, + -0.06768202036619186, + 0.02447645366191864, + -0.0497567318379879, + 0.046595022082328796, + 0.09206469357013702, + 0.039923280477523804, + 0.03962854668498039, + -0.04083428159356117, + 0.005810980685055256, + 0.06280548125505447, + 0.006849254015833139, + -0.003737783757969737, + -0.04102184250950813, + -0.07245137542486191, + -0.03794051334261894, + -0.002530372468754649, + 0.015741562470793724, + 0.04316537454724312, + 0.044505078345537186, + 0.03443048149347305, + 0.01957312598824501, + -0.0555710643529892, + 0.09436898678541183, + -0.06580642610788345, + -0.029098445549607277, + -0.045523256063461304, + -0.05825047940015793, + -0.0661279559135437, + 0.010690865106880665, + 0.034216128289699554, + 0.0549280047416687, + 0.03686874732375145, + -0.07405902445316315, + -0.05013184994459152, + -0.03936060518026352, + 0.0553567111492157, + 0.005767440423369408, + 0.029393181204795837, + -0.04892611503601074, + -0.058679185807704926, + 0.03306397795677185, + 0.04075390100479126, + -0.020403744652867317, + 0.07545232027769089, + -0.017925284802913666, + 0.03309077396988869, + -0.015955915674567223, + -0.083436980843544, + 0.05240935459733009, + -0.07127243280410767, + -0.06553848832845688, + -0.0034899378661066294, + -0.05755383148789406, + 0.012807602994143963, + -0.030197005718946457, + 0.04801511391997337, + -0.002332765609025955, + 0.05302561819553375, + 0.08059679716825485, + -0.01797887310385704, + 0.00106841663364321, + -0.02359224669635296, + 0.010972203686833382, + -0.04705052450299263, + 0.031322360038757324, + 0.05374906212091446, + -0.08161497861146927, + 0.07379108667373657, + 0.05463326722383499, + -0.06130501255393028, + -0.0481758788228035, + 0.060769129544496536, + -0.0020514270290732384, + -0.034323304891586304, + 0.05187347158789635, + 0.006825809367001057, + -0.036225687712430954, + 0.014683193527162075, + -0.024047747254371643, + 0.05921506881713867, + -0.011327225714921951, + -0.006474135909229517, + 0.09619098901748657, + 0.012881286442279816, + 0.06789637356996536, + 0.01779131405055523, + 0.029232416301965714, + -0.03852998465299606, + 0.05393661931157112, + -0.009478430263698101, + 0.0017667391803115606, + -0.04857778921723366, + -0.03429650887846947, + -0.045308902859687805, + 0.04032519459724426, + 0.03017021156847477, + 0.008466950617730618, + -0.02866973914206028, + 0.0006359423859976232, + 0.085151806473732, + -0.015406635589897633, + -0.009505224414169788, + -0.014401854947209358, + 0.04603234678506851, + 0.000605798966716975, + -0.01717504858970642, + -0.003774625714868307, + 0.07534514367580414, + 0.0007569346926175058, + 0.006939684506505728, + 0.005559785757213831, + 0.028616150841116905, + 0.04356728494167328, + -0.021020010113716125, + -0.06119783595204353, + 0.05173949897289276, + 0.07888197153806686, + -0.03662760183215141, + 0.04587158188223839, + -0.031000830233097076, + 0.02625826559960842, + 0.02327071689069271, + 0.024342482909560204, + -0.01458941400051117, + -0.028428591787815094, + 0.028107061982154846, + 0.02156928926706314, + -0.038503192365169525, + -0.024020953103899956, + 0.048711761832237244, + -0.0017265479546040297, + -0.025199895724654198, + -0.0633949562907219, + 0.014576016925275326, + 0.03603813052177429, + -0.0703614354133606, + 0.009491827338933945, + -0.028750121593475342, + 0.034618038684129715, + -0.041906047612428665, + 0.006852603517472744, + -0.01079134363681078, + 0.05238255858421326, + 0.04185245931148529, + -0.013865971937775612, + -0.010288952849805355, + 0.02467741072177887, + -0.02907165139913559, + 0.028241032734513283, + -0.07990015298128128, + -0.011307130567729473, + 0.03228694945573807, + 0.0017139881383627653, + -0.11189236491918564, + 0.06977196037769318, + 0.03668119013309479, + 0.07143320143222809, + 0.002166976686567068, + 0.0555710643529892, + -0.024998940527439117, + 0.0493280254304409, + -0.018702315166592598, + -0.0493280254304409, + -0.06050118803977966, + 0.03874433785676956, + 0.04003045707941055, + 0.04678258299827576, + -0.003737783757969737, + -0.010804740712046623, + 0.06141218915581703, + -0.040995046496391296, + 0.07588102668523788, + -0.006005238275974989, + -0.017509976401925087, + 0.009726275689899921, + -0.008748289197683334, + -0.026673574000597, + 0.09581587463617325, + 0.04115581139922142, + 0.016451606526970863, + 0.007609538268297911, + 0.023230526596307755, + -0.06870019435882568, + 0.08713456988334656, + 0.0381280742585659, + 0.043701257556676865, + 0.08166856318712234, + -0.05345432460308075, + -0.060394011437892914, + 0.027919502928853035, + -0.03435009717941284, + 0.0349663645029068, + -0.05125720426440239, + -0.04163810610771179, + -0.016424812376499176, + 0.018353991210460663, + 0.015366444364190102, + -0.08622357249259949, + -0.046702198684215546, + -0.012814301066100597, + 0.011508086696267128, + 0.024101335555315018, + 0.05171270668506622, + 0.032126184552907944, + -0.03006303496658802, + 0.01998843438923359, + -0.041504137217998505, + -0.04343331605195999, + 0.03635966032743454, + 0.008500443771481514, + 0.017509976401925087, + -0.07593461871147156, + -0.05372226610779762, + -0.056374888867139816, + -0.04493378475308418, + 0.053347148001194, + 0.05905430391430855, + -0.014937737956643105, + 0.017054475843906403, + -0.008667906746268272, + 0.026097500696778297, + -0.07223702222108841, + 0.08600921928882599, + -0.08863504230976105, + -0.03459124639630318, + 0.011729137971997261, + -0.035609424114227295, + 0.035609424114227295, + -0.043406520038843155, + 0.03799410164356232, + 0.01596931181848049, + 0.004883233457803726, + -0.014643002301454544, + -0.057982537895441055, + -0.03223336115479469, + 0.020939627662301064, + 0.014200898818671703, + 0.011916697025299072, + 0.02577597089111805, + 0.07893556356430054, + -0.022426702082157135, + 0.05232897028326988, + 0.02866973914206028, + -0.026646779850125313, + 0.07191549241542816, + 0.032019007951021194, + -0.11082059890031815, + 0.02678075060248375, + -0.05240935459733009, + 0.026097500696778297, + 0.06768202036619186, + -0.02556161768734455, + -0.017416195943951607, + -0.03284962475299835, + -0.03349268436431885, + 0.007308104075491428, + 0.083436980843544, + -0.014401854947209358, + 0.054204560816287994, + 0.011568373069167137, + 0.008848767727613449, + 0.0437280498445034, + -0.027397016063332558, + 0.05042658746242523, + 0.02805347368121147, + -0.003744482295587659, + -0.004796152468770742, + -0.0764705017209053, + -0.04455866664648056, + 0.0531327947974205, + -0.015420032665133476, + 0.07079014182090759, + -0.05744665488600731, + -0.022306127473711967, + -0.0210735984146595, + -0.017201842740178108, + -0.008453553542494774, + -0.04506775736808777, + 0.010911917313933372, + -0.016545386984944344, + -0.0327424481511116, + 0.0075760455802083015, + -0.02006881684064865, + 0.06269830465316772, + -0.003741133026778698, + 0.0457376092672348, + -0.014803767204284668, + 0.03105441853404045, + -0.09201110154390335, + 0.0011965262237936258, + -0.017309019342064857, + 0.030625712126493454, + -0.012666933238506317, + 0.09742352366447449, + 0.019961640238761902, + -0.07877479493618011, + -0.011106174439191818, + -0.01677313633263111, + -0.0046755787916481495, + 0.03949457406997681, + 0.02008221484720707, + 0.024034351110458374, + 0.004511464852839708, + -0.03196541965007782, + -0.06114424765110016, + 0.02907165139913559, + 0.0076564280316233635, + 0.05621412396430969, + -0.0633949562907219, + 0.044317521154880524, + 0.0629662498831749, + -0.039414193481206894, + 0.07947144657373428, + -0.025146307423710823 + ] + }, + { + "id": "9ec4cedc-ef45-49ab-a496-6209e36dfeb9", + "productId": "5c52071a-37f7-44d9-811a-e50119634c9a", + "category": "Accessory", + "docType": "customerRating", + "userName": "justin08", + "reviewDate": "2022-05-17T15:25:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "47e3e02b-0aa0-4a22-bcf7-66bf09749f64", + "productId": "5c52071a-37f7-44d9-811a-e50119634c9a", + "category": "Accessory", + "docType": "customerRating", + "userName": "aliciavaldez", + "reviewDate": "2021-09-14T03:50:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7400eb1b-de8b-4562-89b4-3a1b48e18069", + "productId": "5c52071a-37f7-44d9-811a-e50119634c9a", + "category": "Accessory", + "docType": "customerRating", + "userName": "hardingdaniel", + "reviewDate": "2022-06-22T20:03:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Super (Silver)", + "description": "This Luxe Keyboard Super (Silver) is the pinnacle of premium design features for the next generation of keyboards. This compact and stylish lightweight design perfectly matches the standard Luxe look and feel of the keys, giving you great comfort and", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-26T01:03:43", + "price": 591.48, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-01-28T00:21:18", + "newPrice": 590.0 + }, + { + "priceDate": "2021-09-09T00:21:18", + "newPrice": 545.27 + }, + { + "priceDate": "2022-04-21T00:21:18", + "newPrice": 612.18 + }, + { + "priceDate": "2022-12-01T00:21:18", + "newPrice": 610.42 + }, + { + "priceDate": "2024-12-30T00:21:18", + "newPrice": 591.48 + } + ], + "descriptionVector": [ + 0.001775021548382938, + 0.040904249995946884, + -0.029636194929480553, + 0.02285112999379635, + 0.028182253241539, + -0.0374147891998291, + -0.02206357754766941, + 0.004416350275278091, + -0.021494116634130478, + 0.029321175068616867, + 0.08243854343891144, + 0.014260753057897091, + 0.05074259266257286, + -0.05573446303606033, + 0.007602907717227936, + 0.01198290940374136, + -0.024341421201825142, + -0.009571787901222706, + 0.03133246302604675, + -0.039450306445360184, + 0.016017600893974304, + -0.09208302944898605, + -0.03125976398587227, + -0.013133947737514973, + 0.0022899594623595476, + -0.03814176097512245, + 0.031817108392715454, + 0.034579601138830185, + -0.018574116751551628, + -0.014297101646661758, + 0.04214010015130043, + -0.010389630682766438, + -0.035597361624240875, + 0.06334342807531357, + -0.017871376127004623, + -0.02425660751760006, + -0.0054916623048484325, + 0.020040174946188927, + 0.029951216652989388, + 0.012085896916687489, + 0.01905876398086548, + -0.015908554196357727, + -0.02415967918932438, + -0.014793865382671356, + 0.013558014295995235, + 0.020330963656306267, + 0.03850524500012398, + 0.002076411619782448, + 0.02099735289812088, + -0.06915920227766037, + 0.02099735289812088, + 0.03673627972602844, + -0.035306572914123535, + -0.003713611513376236, + 0.010638012550771236, + -0.02537129633128643, + 0.021797021850943565, + 0.09440933167934418, + 0.06722061336040497, + -0.02348117157816887, + -0.002779150614514947, + -0.0869942307472229, + -0.04558109864592552, + -0.05176035314798355, + -0.03903835639357567, + -0.022923827171325684, + -0.003974109422415495, + -0.016587061807513237, + 0.027091795578598976, + 0.05549214035272598, + -0.02609826810657978, + 0.04977329820394516, + 0.033658768981695175, + 0.05069413036108017, + 0.03760864585638046, + 0.00776647636666894, + 0.05437745153903961, + 0.03877180069684982, + 0.061598699539899826, + 0.0032410803250968456, + 0.07541115581989288, + -0.028109556064009666, + -0.023456940427422523, + -0.059272389858961105, + 0.02774607017636299, + 0.028569970279932022, + 0.033537607640028, + -0.08200235664844513, + -0.05137263610959053, + 0.12222810089588165, + -0.07037081569433212, + -0.01865892857313156, + -0.012201000936329365, + -0.039595700800418854, + 0.031017441302537918, + 0.017241334542632103, + -0.02658291533589363, + 0.026801006868481636, + -0.04466026648879051, + -0.029563497751951218, + 0.035985078662633896, + -0.02861843630671501, + -0.01715652272105217, + -0.0031623251270502806, + -0.0050524501129984856, + 0.07066160440444946, + 0.08810891956090927, + -0.024074865505099297, + -0.05374740809202194, + -0.17340688407421112, + 0.08437713235616684, + 0.005322035402059555, + -0.0221120435744524, + -0.007960335351526737, + -0.05282657966017723, + 0.00611261697486043, + -0.048343587666749954, + -0.010153365321457386, + 0.0134853171184659, + 0.014357682317495346, + 0.061356376856565475, + 0.023008640855550766, + 0.028594203293323517, + 0.017362497746944427, + -0.041243504732847214, + -0.00918406993150711, + 0.007724069524556398, + 0.00915983784943819, + 0.048392053693532944, + -0.020161336287856102, + -0.04628383740782738, + 0.059417784214019775, + 0.019567644223570824, + 0.12843158841133118, + -0.03571852296590805, + 0.07783439010381699, + -0.006718426011502743, + 0.059466250240802765, + -0.033852629363536835, + 0.04194624349474907, + 0.026801006868481636, + -0.02445046789944172, + 0.02099735289812088, + -0.043279021978378296, + -0.060823261737823486, + -0.004501163959503174, + -0.021760674193501472, + 0.0369543731212616, + -0.004549628589302301, + 0.04008034989237785, + 0.08583107590675354, + -0.04572649300098419, + -0.03218059614300728, + -0.060047827661037445, + 0.019652456045150757, + 0.0899021103978157, + -0.07541115581989288, + -0.03436150774359703, + 0.0768166333436966, + 0.07541115581989288, + 0.006151994224637747, + -0.008111787959933281, + -0.005343238823115826, + 0.037002839148044586, + -0.0028306443709880114, + 0.07851289957761765, + 0.012188885360956192, + 0.026316359639167786, + -0.02080349437892437, + 0.028666900470852852, + -0.042552050203084946, + -0.02241494692862034, + -0.012382743880152702, + -0.06576666980981827, + 0.03709976747632027, + -0.017871376127004623, + 0.03334374725818634, + -0.021033702418208122, + 0.019519178196787834, + 0.0011525523150339723, + 0.01807735301554203, + 0.07449032366275787, + -0.11137200146913528, + -0.03474922478199005, + 0.14597582817077637, + -0.010032203048467636, + 0.04529030993580818, + 0.05563753470778465, + -0.0007212918135337532, + 0.019507061690092087, + -0.014660587534308434, + 0.009311290457844734, + -0.033464912325143814, + -0.013957848772406578, + -0.033998023718595505, + 0.024341421201825142, + 0.08035455644130707, + 0.029757358133792877, + 0.028061090037226677, + 0.033271051943302155, + 0.010541083291172981, + 0.07807671278715134, + -0.004237636458128691, + -0.039595700800418854, + 0.0036590886302292347, + 0.01910722814500332, + 0.011165066622197628, + 0.04708350449800491, + 0.006009628996253014, + 0.035694289952516556, + -0.01285527553409338, + 0.025783248245716095, + 0.020209800451993942, + -0.0020658099092543125, + 0.04967636987566948, + 0.02585594542324543, + 0.0004494348540902138, + 0.025104740634560585, + -0.006239836569875479, + -0.11495839059352875, + -0.0030260179191827774, + -0.012867391109466553, + 0.058496955782175064, + -0.01198290940374136, + -0.0045617446303367615, + -0.015823740512132645, + 0.057139940559864044, + 0.0013517121551558375, + 0.023638682439923286, + 0.029103083536028862, + -0.02663138136267662, + -0.035500429570674896, + 0.017168637365102768, + 0.011528552509844303, + -0.013327806256711483, + -0.04194624349474907, + -0.03894142806529999, + -0.08932053297758102, + -0.014539425261318684, + 0.04410292208194733, + 0.016708223149180412, + -0.04657462611794472, + -0.03261677920818329, + 0.01891336962580681, + 0.009608136489987373, + -0.03852947801351547, + 0.09213149547576904, + -0.02498357929289341, + -0.034821923822164536, + 0.028497273102402687, + -0.04306093230843544, + 0.030581258237361908, + -0.021736441180109978, + 0.08156617730855942, + 0.008438925258815289, + 0.0260013397783041, + 0.014915026724338531, + 0.018356025218963623, + 0.021639510989189148, + -0.010207888670265675, + -0.02128814160823822, + -0.05277811363339424, + 0.04403022676706314, + 0.04928865283727646, + -0.05020948126912117, + 0.05558906868100166, + 0.05083952471613884, + -0.07453878968954086, + -0.060096289962530136, + -0.0004422408528625965, + -0.0242929570376873, + 0.0034894621931016445, + 0.08413480967283249, + 0.022681504487991333, + -0.03906258940696716, + 0.035355035215616226, + -0.03780250623822212, + 0.06668749451637268, + -0.020730797201395035, + -0.03831138461828232, + 0.03760864585638046, + 0.06440965086221695, + 0.08626725524663925, + -0.04987023025751114, + 0.07696202397346497, + -0.011413448490202427, + 0.04461180418729782, + 0.0031108311377465725, + 0.01290373969823122, + 0.040128812193870544, + -0.04403022676706314, + 0.029830053448677063, + 0.028642667457461357, + 0.01336415484547615, + 0.01996747776865959, + -0.023650798946619034, + 0.06862609088420868, + 0.006845646072179079, + 0.030629722401499748, + -0.014284985139966011, + 0.03964416682720184, + 0.010510792955756187, + -0.05180881917476654, + -0.0694984495639801, + 0.008784236386418343, + 0.0947485864162445, + -0.05680068954825401, + 0.07933679968118668, + -0.07865829020738602, + 0.017907725647091866, + 0.059563178569078445, + 0.0034894621931016445, + -0.05665529519319534, + 0.004098300356417894, + 0.041485827416181564, + -0.013085482642054558, + 0.033852629363536835, + 0.021603163331747055, + 0.04596881568431854, + 0.009365812875330448, + -0.016405317932367325, + -0.019458597525954247, + -0.08985365182161331, + 0.06382808089256287, + 0.04451487213373184, + -0.03855371102690697, + 0.0038468895945698023, + -0.007178841158747673, + 0.0021263910457491875, + -0.056267574429512024, + -0.03993495553731918, + 0.031235532835125923, + -0.06920766830444336, + -0.05738226696848869, + 0.02648598700761795, + 0.012303988449275494, + 0.002760976320132613, + 0.059708572924137115, + 0.023347893729805946, + -0.00943245179951191, + 0.06722061336040497, + 0.005306890234351158, + -0.04247935488820076, + -0.07899754494428635, + -0.006766891106963158, + -0.003949877340346575, + -0.08030609041452408, + -0.011328635737299919, + 0.061162516474723816, + 0.07424800097942352, + 0.0011570958886295557, + -0.03242291882634163, + 0.08946593105792999, + -0.010977266356348991, + 0.042067404836416245, + 0.02789146453142166, + 0.03981379419565201, + -0.03785097226500511, + 0.010341166518628597, + 0.055879857391119, + -0.021700091660022736, + -0.01953129470348358, + 0.0005346267716959119, + 0.024268724024295807, + -0.02508050948381424, + -0.010110958479344845, + -0.017968306317925453, + 0.00540684862062335, + -0.061017122119665146, + 0.04243088886141777, + 0.013606478460133076, + -0.024729140102863312, + 0.0014736313605681062, + 0.09697796404361725, + 0.0011449797311797738, + 0.06785064935684204, + -0.002341453218832612, + 0.004813155625015497, + -0.020003825426101685, + 0.0753626897931099, + 0.007602907717227936, + 0.044005993753671646, + 0.04529030993580818, + -0.005670376121997833, + 0.020185569301247597, + -0.06470043957233429, + -0.0748295783996582, + -0.009559672325849533, + -0.022863246500492096, + 0.019688805565238, + -0.03508847951889038, + -0.02643752098083496, + 0.0006050521042197943, + 0.017120173200964928, + -0.0022081751376390457, + 0.02764913998544216, + 0.030193539336323738, + 0.04676848649978638, + -0.011116602458059788, + 0.014878679066896439, + 0.005334151908755302, + 0.044151388108730316, + 0.0032865158282220364, + -0.07400567829608917, + 0.006542741321027279, + -0.078706756234169, + 0.030290469527244568, + 0.101097472012043, + -0.028739597648382187, + -0.09096834063529968, + -0.05437745153903961, + 0.00247321673668921, + -0.036372795701026917, + 0.02522590383887291, + 0.056897617876529694, + -0.010995440185070038, + 0.12804387509822845, + 0.058496955782175064, + 0.040904249995946884, + -0.07352102547883987, + 0.05583139508962631, + -0.05001562461256981, + -0.06717214733362198, + 0.0006811569328419864, + -0.012673532590270042, + 0.009032618254423141, + -0.05277811363339424, + -0.03445843979716301, + 0.07342410087585449, + -0.06334342807531357, + 0.030581258237361908, + -0.03739055618643761, + -0.030411630868911743, + -0.03344067931175232, + -0.05466824024915695, + -0.05035487562417984, + 0.008632783778011799, + 0.027091795578598976, + 0.03576698526740074, + 0.14035391807556152, + -0.022826896980404854, + -0.06794758141040802, + -0.0018053120002150536, + -0.009929215535521507, + -0.10730095952749252, + -0.014054778032004833, + -0.041728150099515915, + 0.09993431717157364, + 0.015193699859082699, + -0.03651819005608559, + 0.004913114011287689, + -0.010292701423168182, + -0.04378790408372879, + -0.018137933686375618, + 0.03780250623822212, + -0.04243088886141777, + -0.004404234234243631, + 0.08355323225259781, + -0.0021869719494134188, + -0.0170111283659935, + 0.02323884889483452, + 0.058109235018491745, + 0.04608997702598572, + -0.028521506115794182, + -0.011467971839010715, + -0.030653955414891243, + -0.0034319101832807064, + 0.06450658291578293, + 0.01876797527074814, + 0.04669578745961189, + 0.06993463635444641, + -0.04953097552061081, + -0.0005626454949378967, + -0.043763671070337296, + 0.018404489383101463, + -0.05214807391166687, + 0.00952938199043274, + 0.0011745129013434052, + -0.007469629868865013, + 0.04068616032600403, + -0.031138602644205093, + 0.003762076376006007, + -0.017871376127004623, + 0.040613461285829544, + 0.061889488250017166, + -0.012831042520701885, + 0.03867487236857414, + 0.04054076597094536, + 0.06179255619645119, + -0.004761661868542433, + 0.0070576793514192104, + 0.00554012693464756, + -0.04625960439443588, + -0.07788285613059998, + -0.040419600903987885, + 0.009196186438202858, + -0.047810476273298264, + 0.007596849929541349, + -0.004210375249385834, + 0.06954691559076309, + 0.02541976235806942, + -0.06591206043958664, + -0.043327488005161285, + 0.08403787761926651, + 0.05379587411880493, + 0.029393872246146202, + -0.07996684312820435, + -0.01254025474190712, + 0.0033470969647169113, + 0.03782673925161362, + 0.04587188735604286, + -0.06314957141876221 + ] + }, + { + "id": "4a55bbff-b283-479e-9ebf-5ee1f671308d", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "donnawilliams", + "reviewDate": "2021-06-16T08:43:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ccc1767f-2e73-41a1-8a1c-d68fab312ba0", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "waltercrystal", + "reviewDate": "2021-01-28T00:21:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f5b91206-bab7-4b79-9c7b-c5a05e430bc4", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "butlerlisa", + "reviewDate": "2022-01-02T11:47:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d029e45a-cd1e-47da-8706-b6f0ea19dc12", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qperez", + "reviewDate": "2021-12-12T19:44:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6526cb0c-79c1-4a87-b925-6ff24ad8a1bd", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uking", + "reviewDate": "2021-05-28T04:34:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "57a43905-0209-4bd8-9a31-7d7f28ffab7b", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertsonbobby", + "reviewDate": "2021-12-15T20:39:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0609092e-8be9-49c7-b1ac-d4bc7332188b", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "colemanmichael", + "reviewDate": "2021-12-18T19:14:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bab404fb-7c51-4f0a-8d98-bce479a890fb", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "solisstacy", + "reviewDate": "2022-10-28T05:44:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7a211a67-d79f-4f90-988c-640bb92fb1d4", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bendercraig", + "reviewDate": "2021-09-25T04:11:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5e04d5c0-978f-4778-8208-e14e3fc89b95", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angela69", + "reviewDate": "2021-03-11T23:44:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "385086a4-1aca-4b82-9ff2-96efc3101533", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scott31", + "reviewDate": "2021-07-07T19:45:59", + "stars": 4, + "verifiedUser": false + }, + { + "id": "47164040-cb92-44ed-999f-ead5ea3446c1", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardcrane", + "reviewDate": "2022-01-25T08:14:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4a1cce28-c771-4c84-a77c-a7c8de7357e8", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tluna", + "reviewDate": "2022-03-04T10:52:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ebe63faf-28e3-4410-badc-d90d249634cd", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robersonanna", + "reviewDate": "2021-02-23T03:20:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0944c72f-8d59-4f48-96b7-99068ff530bf", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wrodriguez", + "reviewDate": "2021-11-23T03:17:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "77e67760-17cc-449a-8995-dfa6b668579c", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beckryan", + "reviewDate": "2022-08-29T22:03:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fd871eeb-4227-4481-8f88-4d86264c4a6f", + "productId": "b9fa6f2b-2edb-4b83-ad84-4b32dc9073df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beckerchristopher", + "reviewDate": "2022-12-01T01:16:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Micro (Black)", + "description": "This Amazing Computer Micro (Black) is a super simple computer. It's an ATmega328, which is roughly the same size as a Raspberry Pi but contains a tiny 1/2\" floppy drive. The ATmega328 is an incredibly small chip to work with in a desktop computer. With only 1 x 0.8mm RAM, you have a 3 hour game load time, the CPU in the ATmega328", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-01-18T16:39:38", + "price": 137.38, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-03-21T06:16:26", + "newPrice": 130.97 + }, + { + "priceDate": "2021-09-24T06:16:26", + "newPrice": 142.76 + }, + { + "priceDate": "2022-03-30T06:16:26", + "newPrice": 139.8 + }, + { + "priceDate": "2022-10-03T06:16:26", + "newPrice": 150.73 + }, + { + "priceDate": "2023-12-16T06:16:26", + "newPrice": 137.38 + } + ], + "descriptionVector": [ + -0.08991584181785583, + 0.04723725840449333, + -0.046294085681438446, + -0.02615995705127716, + -0.01463228464126587, + 0.0653933435678482, + -0.00016395002603530884, + 0.030574530363082886, + 0.07314832508563995, + 0.07634463161230087, + 0.05313209071755409, + -0.059943895787000656, + 0.015143170021474361, + -0.08708632737398148, + 0.03481880947947502, + -0.02597656100988388, + -0.05847673863172531, + -0.020121028646826744, + -0.0008678503218106925, + -0.013086528517305851, + 0.0494379960000515, + -0.04652987793087959, + -0.07838816940784454, + 0.03264427185058594, + 0.006160099990665913, + 0.005236576311290264, + -0.039508476853370667, + 0.013636712916195393, + -0.07555865496397018, + -0.004037960432469845, + 0.07393430173397064, + 0.03122951276600361, + -0.03568338602781296, + -0.00977232214063406, + 0.02319944091141224, + -0.027640214189887047, + -0.006232148036360741, + -0.05211031809449196, + 0.06465975940227509, + -0.03492360934615135, + 0.02803320437669754, + 0.010807192884385586, + 0.009104241617023945, + -0.0035139750689268112, + 0.029421763494610786, + 0.10081473737955093, + -0.024326009675860405, + -0.03141290694475174, + -0.04849482327699661, + -0.05179592967033386, + 0.020487817004323006, + 0.06397858262062073, + 0.02784980833530426, + 0.05433725565671921, + -0.023251838982105255, + 0.007938374765217304, + 0.016728224232792854, + 0.1096176877617836, + 0.03555238991975784, + -0.07786418497562408, + 0.056904781609773636, + 0.03544759377837181, + 0.022727854549884796, + -0.006415542680770159, + -0.019243353977799416, + -0.02054021693766117, + -0.07409149408340454, + 0.07613503932952881, + 0.03345644846558571, + 0.013676011003553867, + -0.019177855923771858, + -0.04540330916643143, + 0.018169183284044266, + -0.04212840273976326, + 0.03159630298614502, + -0.0033322179224342108, + 0.08273725211620331, + 0.00883569847792387, + 0.03605017438530922, + -0.020854607224464417, + 0.04561290517449379, + 0.008829149417579174, + -0.02973615564405918, + -0.017383206635713577, + 0.022649256512522697, + 0.04765644669532776, + 0.008082469925284386, + -0.1254420429468155, + 0.011141233146190643, + 0.0017438879003748298, + -0.061463452875614166, + 0.08043171465396881, + 0.06963761895895004, + 0.05989149957895279, + 0.0035860231146216393, + 0.03248707577586174, + -0.04794463887810707, + 0.04286198318004608, + 0.031543903052806854, + 0.02124759554862976, + 0.06025828793644905, + -0.032722871750593185, + -0.035395193845033646, + -0.09646566212177277, + -0.030155343934893608, + -0.023435235023498535, + 0.027718812227249146, + 0.006598937325179577, + 0.05022397264838219, + -0.06701769679784775, + -0.03568338602781296, + -0.000551412464119494, + -0.034845009446144104, + 0.01401660218834877, + 0.028976377099752426, + 0.00564921461045742, + 0.0076894816011190414, + 0.002112315036356449, + -0.08200366795063019, + -0.009693724103271961, + 0.026474347338080406, + -0.05863393470644951, + 0.0374649353325367, + 0.01784169301390648, + -0.04356936365365982, + 0.016178039833903313, + -0.028976377099752426, + -0.029159771278500557, + 0.04228559881448746, + -0.0038709400687366724, + -0.06628412008285522, + 0.03903689235448837, + 0.06004869192838669, + -0.006310745608061552, + -0.04561290517449379, + -0.025491876527667046, + 0.06041548401117325, + 0.07498227059841156, + -0.021561987698078156, + 0.047892238944768906, + 0.008449260145425797, + 0.045665301382541656, + -0.07487747073173523, + 0.021286895498633385, + -0.058162346482276917, + -0.04142102226614952, + -0.055647220462560654, + 0.009385882876813412, + -0.05260810628533363, + 0.06733208894729614, + -0.03314206004142761, + -0.042521391063928604, + -0.02348763309419155, + -0.10951288789510727, + 0.0022203868720680475, + 0.0029883526731282473, + -0.030207742005586624, + 0.052005521953105927, + -0.03924648463726044, + 0.06748928129673004, + 0.005380671937018633, + 0.016571030020713806, + -0.012791786342859268, + -0.010230809450149536, + 0.030862722545862198, + -0.027745012193918228, + 0.05900072306394577, + 0.004005211405456066, + -0.07115717977285385, + 0.00798422284424305, + -0.018706267699599266, + 0.014684682711958885, + 0.0027329097501933575, + 0.01571955345571041, + 0.046634674072265625, + 0.06628412008285522, + 0.011527672410011292, + 0.01450128760188818, + -0.030050545930862427, + -0.08001253008842468, + -0.006035653408616781, + 0.013859406113624573, + 0.013276472687721252, + 0.04335976764559746, + 0.011684867553412914, + 0.01865386962890625, + -0.01685922034084797, + 0.032801467925310135, + 0.004850137047469616, + -0.06670330464839935, + 0.022243168205022812, + -0.04540330916643143, + 0.03919408470392227, + 0.012916233390569687, + 0.036443162709474564, + 0.00444404873996973, + -0.052896298468112946, + 0.020854607224464417, + -0.010820292867720127, + 0.06072987616062164, + -0.07021400332450867, + 0.02196807600557804, + 0.007728780619800091, + 0.03419002890586853, + 0.046058289706707, + -0.013990402221679688, + 0.01615184172987938, + -0.0032961938995867968, + 0.05543762445449829, + -0.006281271576881409, + 0.06958522647619247, + -0.018889663740992546, + -0.05952470749616623, + -0.008193816989660263, + 0.0836804211139679, + -0.02777121029794216, + 0.03196309134364128, + -0.01679372228682041, + -0.034583017230033875, + -0.013820107094943523, + 0.0471324622631073, + -0.0394560806453228, + -0.0382247157394886, + -0.058319542557001114, + -0.03340405225753784, + -0.08127009123563766, + 0.01748800277709961, + 0.05080035701394081, + 0.008102119900286198, + 0.0010930001735687256, + -0.07189075648784637, + 0.05962950736284256, + 0.04309777542948723, + 0.003422277746722102, + -0.08284204453229904, + -0.02989334985613823, + 0.016898520290851593, + -0.008331363089382648, + -0.060101091861724854, + 0.15468040108680725, + -0.00772223062813282, + 0.037988919764757156, + -0.047263458371162415, + -0.06277341395616531, + 0.006772507447749376, + -0.056276001036167145, + -0.003288006642833352, + -0.06078227236866951, + -0.08776750415563583, + -0.006975551601499319, + -0.009726474061608315, + 0.03581438213586807, + 0.021745381876826286, + 0.04246899485588074, + -0.061725445091724396, + 0.06177784502506256, + 0.05418005958199501, + -0.07089518755674362, + 0.0013107814593240619, + -0.034504421055316925, + -0.03801511973142624, + -0.055490024387836456, + 0.008717802353203297, + 0.03903689235448837, + -0.07901695370674133, + -0.00045152779784984887, + 0.045036520808935165, + -0.04249519109725952, + 0.024705898016691208, + -0.01392490416765213, + 0.04016345739364624, + -0.02803320437669754, + -0.013636712916195393, + 0.046372681856155396, + -0.03487120941281319, + 0.008423061110079288, + -0.06979481875896454, + 0.08530477434396744, + -0.05952470749616623, + -0.004954934120178223, + 0.054127663373947144, + 0.04034685343503952, + -0.020225824788212776, + 0.020749811083078384, + 0.0337708406150341, + 0.009353133849799633, + 0.0003708832082338631, + -0.009051842615008354, + -0.04102803394198418, + -0.008992894552648067, + -0.02402471750974655, + 0.004342526663094759, + 0.03898449242115021, + 0.0701616033911705, + 0.013171675615012646, + 0.002721447730436921, + 0.014330992475152016, + 0.0053741224110126495, + 0.006366419140249491, + 0.008102119900286198, + 0.0101325623691082, + -0.022203868255019188, + 0.0024283435195684433, + -0.0016833022236824036, + 0.004273753613233566, + 0.0004253285296726972, + -0.016990216448903084, + -0.03219888359308243, + -0.06675570458173752, + -0.020854607224464417, + 0.05596160888671875, + -0.017985789105296135, + -0.034661613404750824, + -0.006739758420735598, + 0.07671142369508743, + -0.04883541166782379, + 0.021928776055574417, + 0.006464666221290827, + -0.0023251839447766542, + -0.034059032797813416, + -0.014946674928069115, + -0.05769076198339462, + -0.10018595308065414, + 0.11842063814401627, + 0.028138000518083572, + 0.002443080535158515, + -0.03314206004142761, + 0.012673890218138695, + -0.05334168300032616, + -0.026133757084608078, + 0.03468781337141991, + 0.0072571937926113605, + 0.03044353425502777, + -0.03856530413031578, + 0.0057965852320194244, + -0.11108484119176865, + 0.0038218162953853607, + 0.12827154994010925, + -0.0031226237770169973, + 0.0964132621884346, + 0.012261251918971539, + 0.015549258328974247, + -0.013047229498624802, + -0.03345644846558571, + 0.01633523590862751, + -0.021208297461271286, + -0.05344648286700249, + -0.06507895141839981, + 0.021129699423909187, + -0.04608448967337608, + 0.0019420197932049632, + -0.07503467053174973, + 0.07671142369508743, + 0.033875636756420135, + 0.03908928856253624, + 0.00546909449622035, + 0.0634021982550621, + -0.016387633979320526, + -0.010597598738968372, + 0.01392490416765213, + -0.006746308412402868, + -0.03170109912753105, + 0.10196750611066818, + 0.0219549760222435, + -0.06093946844339371, + 0.017029516398906708, + -0.0022989846765995026, + -0.06193504109978676, + 0.0005550967180170119, + 0.02089390717446804, + -0.012464296072721481, + -0.027194827795028687, + -0.12753798067569733, + -0.01937435008585453, + -0.04532471299171448, + -0.07451068609952927, + 0.004889436066150665, + -0.00893394649028778, + -0.029238369315862656, + 0.016020845621824265, + -0.01892896182835102, + 0.04443393647670746, + -0.021823979914188385, + -0.027640214189887047, + 0.06591732800006866, + -0.10374905169010162, + 0.03453061729669571, + -0.05313209071755409, + 0.03696715086698532, + 0.06418817490339279, + -0.011593170464038849, + 0.00046994915464892983, + -0.02973615564405918, + 0.017880991101264954, + 0.03060073032975197, + -0.06251142174005508, + 0.059053122997283936, + 0.022282466292381287, + 0.055647220462560654, + -0.0008997806580737233, + 0.02703763172030449, + 0.04802323505282402, + -0.0012346399016678333, + -0.02247896045446396, + -0.05090515315532684, + -0.04624168574810028, + 0.04409334808588028, + 0.019230253994464874, + -0.04542950913310051, + -0.07943614572286606, + 0.015247967094182968, + -0.043909952044487, + -0.03384943678975105, + -0.031098516657948494, + -0.005537867546081543, + 0.014226195402443409, + -0.029395565390586853, + -0.041918810456991196, + -0.020147226750850677, + -0.015601656399667263, + -0.009340034797787666, + 0.0219549760222435, + -0.005688513163477182, + -0.004781363997608423, + -0.01191411167383194, + -0.015536158345639706, + 0.008010422810912132, + 0.011462174355983734, + -0.017553500831127167, + -0.06319260597229004, + 0.008671953342854977, + -0.0011478548403829336, + -0.03232987970113754, + 0.013623612932860851, + -0.0133943697437644, + -0.03481880947947502, + 0.013676011003553867, + 0.07623983174562454, + -0.015824349597096443, + 0.05517563223838806, + 0.0653933435678482, + 0.044669732451438904, + -0.022256268188357353, + -0.003070225240662694, + -0.08682433515787125, + 0.03060073032975197, + -0.05915791913866997, + 0.02819039858877659, + 0.08221326768398285, + -0.06701769679784775, + -0.07094758749008179, + -0.007958023808896542, + 0.03314206004142761, + -0.04616308957338333, + 0.10815052688121796, + 0.006356594152748585, + 0.01579815149307251, + 0.040477849543094635, + -0.019780438393354416, + 0.0031340860296040773, + 0.02356623113155365, + 0.0339280366897583, + 0.022623056545853615, + -0.04736825451254845, + -0.015601656399667263, + -0.06596972793340683, + -0.019924534484744072, + -0.015221767127513885, + -0.019308852031826973, + 0.004706041421741247, + -0.029316967353224754, + -0.04079224169254303, + 0.0006038109422661364, + 0.058057550340890884, + 0.02042231895029545, + -0.06392618268728256, + -0.01856217347085476, + 0.05339408293366432, + -0.048678215593099594, + -0.004041234962642193, + 0.01810368523001671, + 0.004853412043303251, + -0.04094943776726723, + -0.03518560156226158, + 0.0462154857814312, + 0.00015832128701731563, + -0.030731726437807083, + -0.009739573113620281, + 0.03916788846254349, + 0.0612538605928421, + 0.0220335740596056, + 0.10469222813844681, + 0.02792840637266636, + -0.06989961117506027, + -0.028426192700862885, + -0.027483019977808, + -0.0373077392578125, + 0.02293744869530201, + -0.07068558782339096, + 0.06958522647619247, + -0.06256382167339325, + -0.0035729233641177416, + -0.03356124460697174, + 0.092116579413414, + -0.0026821487117558718, + 0.08729591965675354, + 0.040215857326984406, + 0.13036750257015228, + -0.0005579622811637819, + -0.0437527559697628, + 0.03581438213586807, + -0.02553117461502552 + ] + }, + { + "id": "92f77522-ab58-4a64-b3e1-13d9a9ef0769", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "flemingdavid", + "reviewDate": "2022-04-28T20:21:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "67b7b8e8-45ae-485c-8a60-536a36247c46", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "sherylcompton", + "reviewDate": "2022-10-05T08:01:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "214379c6-dc78-4d34-bfbb-dff0a908a676", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevinjackson", + "reviewDate": "2021-04-22T10:07:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fca77054-a5ba-4cce-884b-0f6cc5824dcc", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidmendez", + "reviewDate": "2021-06-30T11:08:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e6f972c0-64ca-4a5b-8f7b-c7b91a735d83", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebecca95", + "reviewDate": "2021-10-01T13:06:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2fffebd4-204b-48c0-b625-16c2f69a7adc", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "beckeranthony", + "reviewDate": "2022-08-02T21:15:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "307ca7e8-e617-4009-a54c-c0bc035f9d4b", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "brittany90", + "reviewDate": "2021-05-02T13:27:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f73e118c-c25c-405d-b115-ed5ec4086c77", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "zavalaangela", + "reviewDate": "2021-09-08T10:44:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "42352030-2f6b-4096-a1e8-f2c740d367cf", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "kayla74", + "reviewDate": "2022-02-23T21:59:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1b227b05-4b3d-461f-81f8-0adca2383b9a", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathandougherty", + "reviewDate": "2021-07-08T20:53:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "faf5edc9-437e-43d8-9b1e-f3073e5e55fe", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniemartin", + "reviewDate": "2021-03-21T06:16:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "982adc9a-b1fa-4508-a70a-03a48ef80f2c", + "productId": "06f42dbc-13ae-441f-a071-52bd4bd29799", + "category": "Electronics", + "docType": "customerRating", + "userName": "lisa25", + "reviewDate": "2022-05-19T14:19:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Pro (Steel)", + "description": "This Basic Keyboard Pro (Steel) is like the Pro version of the Pro, except that its backlit keyboard is a different color and its buttons are a higher spec (a few keys on the left-hand side are red and green whereas others are orange).\n\n\nWith a 5 and 7-inch screen, you'll be able to run a full HD desktop PC, which isn't much, but with a 5.7-inch screen you", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-04-29T01:59:03", + "price": 901.19, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-01-30T18:30:57", + "newPrice": 954.48 + }, + { + "priceDate": "2021-12-11T18:30:57", + "newPrice": 928.5 + }, + { + "priceDate": "2022-10-22T18:30:57", + "newPrice": 865.48 + }, + { + "priceDate": "2025-05-20T18:30:57", + "newPrice": 901.19 + } + ], + "descriptionVector": [ + 0.010241754353046417, + 0.038595858961343765, + -0.04235214740037918, + 0.011239518411457539, + 0.017666291445493698, + -0.01536556612700224, + 0.04563890025019646, + 0.043173834681510925, + -0.002432783367112279, + 0.02979205921292305, + 0.07705085724592209, + -0.04901956021785736, + -0.006432643160223961, + -0.02339463122189045, + 0.046906646341085434, + 0.02168082445859909, + -0.05160200595855713, + -0.0030519841238856316, + -0.005725404713302851, + -0.016785912215709686, + 0.06136835739016533, + -0.062025707215070724, + -0.10930798202753067, + -0.0046425373293459415, + 0.014367802068591118, + 0.019262714311480522, + -0.00870402343571186, + 0.009907210245728493, + 0.017243709415197372, + 0.027491332963109016, + 0.012266628444194794, + 0.03209278732538223, + -0.06775404512882233, + -0.004968278110027313, + 0.006456119939684868, + -0.006373951211571693, + -0.0515080988407135, + -0.049676910042762756, + 0.03566126152873039, + -0.011896868236362934, + 0.06517159938812256, + 0.06230742856860161, + 0.014614308252930641, + -0.021234765648841858, + 0.021046951413154602, + 0.05399664118885994, + -0.03505086153745651, + -0.0067261033691465855, + 0.01652766764163971, + -0.09775739908218384, + 0.04784571751952171, + 0.0022948572877794504, + -0.034252651035785675, + 0.04920737445354462, + 0.021223027259111404, + -0.014532139524817467, + -0.03319619596004486, + 0.11653883755207062, + 0.032937951385974884, + -0.08165231347084045, + -0.005329233594238758, + -0.09005700796842575, + -0.08677025139331818, + -0.020354386419057846, + -0.048831745982170105, + -0.006021799519658089, + -0.0754074826836586, + -0.025871433317661285, + 0.043713800609111786, + 0.04244605451822281, + -0.022432083263993263, + -0.03155282139778137, + 0.0767691358923912, + 0.08357740938663483, + -0.012982670217752457, + 0.018135828897356987, + 0.10902626067399979, + -0.017619337886571884, + 0.08977528661489487, + -0.026317493990063667, + 0.02411067485809326, + 0.0018282558303326368, + -0.0286182202398777, + -0.03117719106376171, + 0.04066181927919388, + -0.007958635687828064, + 0.02713918127119541, + -0.07226159423589706, + -0.022713804617524147, + 0.042704299092292786, + -0.05761206895112991, + 0.08611290156841278, + 0.034088313579559326, + -0.042704299092292786, + 0.067331463098526, + 0.03887758031487465, + -0.12170373648405075, + 0.030918946489691734, + -0.008768584579229355, + -0.03709334507584572, + 0.06474901735782623, + -0.04662492498755455, + -0.017020680010318756, + -0.04359641671180725, + 0.03976970165967941, + 0.024486303329467773, + 0.07038344442844391, + 0.015036890283226967, + -0.029299046844244003, + -0.11888651549816132, + 0.0024591947440057993, + -0.022361652925610542, + -0.07428059726953506, + -0.02800782211124897, + -0.07662827521562576, + 0.023183340206742287, + -0.009015091694891453, + -0.01872274838387966, + 0.021704301238059998, + -0.004557434003800154, + 0.007835382595658302, + 0.07132252305746078, + -0.031224144622683525, + -0.020460031926631927, + -0.053010616451501846, + -0.01481386087834835, + -0.0012339992681518197, + 0.028688650578260422, + 0.02746785618364811, + -0.06568808853626251, + -0.06737841665744781, + 0.11606930196285248, + 0.10855672508478165, + 0.05803465098142624, + -0.0016272356733679771, + 0.05141419172286987, + 0.01565902680158615, + 0.14151814579963684, + 0.03256232291460037, + 0.06380994617938995, + 0.018969254568219185, + -0.05141419172286987, + -0.014367802068591118, + 0.0018121155444532633, + -0.06028842180967331, + 0.039675794541835785, + -0.02326550893485546, + 0.06038232892751694, + 0.0329849049448967, + 0.06287087500095367, + -0.025660142302513123, + -0.059865839779376984, + -0.015776410698890686, + -0.04683621600270271, + 0.03831413760781288, + 0.003380659269168973, + -0.046977076679468155, + 0.01565902680158615, + -0.019544435665011406, + 0.05019339919090271, + -0.03289099782705307, + -0.00014572123473044485, + -0.02153996378183365, + -0.03286752104759216, + -0.002129052300006151, + 0.05122637748718262, + 0.052869755774736404, + 0.047822240740060806, + -0.06423252820968628, + -0.007037170697003603, + -0.039840131998062134, + 0.0420704260468483, + -0.02932252362370491, + -0.010623252019286156, + -0.004349077120423317, + -0.04129569232463837, + 0.06319954991340637, + 0.024321965873241425, + -0.013064839877188206, + -0.03516824543476105, + 0.033477917313575745, + -0.04594409838318825, + -0.03291447460651398, + -0.027866961434483528, + 0.09362547844648361, + 0.012947455048561096, + 0.04561542347073555, + 0.05009949207305908, + -0.00567258195951581, + -0.023077694699168205, + 0.018100613728165627, + -0.02366461418569088, + -0.03235103189945221, + -0.004569172393530607, + 0.022396868094801903, + -0.00029694483964703977, + 0.033783115446567535, + 0.04547456279397011, + -0.0313180536031723, + 0.06714364886283875, + 0.012384012341499329, + 0.03676467016339302, + 0.045897144824266434, + -0.008956399746239185, + 0.06540636718273163, + 0.019168807193636894, + -0.040614865720272064, + 0.014297371730208397, + 0.052400220185518265, + 1.8650758647709154e-05, + -0.012337058782577515, + -0.04202347248792648, + 0.04023923724889755, + -0.03678814694285393, + 0.033477917313575745, + 0.017290662974119186, + 0.024932362139225006, + -0.02400502935051918, + -0.02908775582909584, + -0.0659698098897934, + 0.04277472943067551, + -0.02427501231431961, + 0.0030901338905096054, + -0.012536611407995224, + -0.07413973659276962, + -0.01928619109094143, + 0.08897707611322403, + -0.03286752104759216, + 0.035708215087652206, + 0.016210731118917465, + -0.10780546814203262, + -0.03345444053411484, + 0.016703743487596512, + 0.03652990236878395, + 0.020342648029327393, + 0.022784234955906868, + 0.03965231776237488, + -0.007747344207018614, + -0.08099496364593506, + 0.08273224532604218, + -0.009050306864082813, + -0.0030519841238856316, + -0.021352149546146393, + -0.034182220697402954, + 0.10076242685317993, + -0.017220232635736465, + 0.043948572129011154, + -0.016715481877326965, + -0.10423699021339417, + 0.007706259842962027, + -0.008510340005159378, + 0.00910899881273508, + -0.01543599646538496, + 0.003812045557424426, + -0.012935716658830643, + 0.031834542751312256, + 0.04491112008690834, + -0.037281159311532974, + 0.007788428571075201, + -0.050850749015808105, + 0.024157628417015076, + -0.02097652107477188, + -0.014942983165383339, + -0.005241195671260357, + 0.012149244546890259, + 0.05878590792417526, + 0.04178870469331741, + -0.0578937903046608, + -0.03753940388560295, + 0.04009837657213211, + 0.06944437325000763, + -0.058222465217113495, + 0.028336498886346817, + 0.04631972685456276, + 0.011210172437131405, + 0.015353827737271786, + -0.05897372215986252, + 0.05460703745484352, + -0.00478046340867877, + 0.043948572129011154, + 0.04164784401655197, + 0.0646551102399826, + 0.02716265805065632, + 0.060945775359869, + 0.0191922839730978, + 0.018793178722262383, + -0.008498601615428925, + 0.07249636203050613, + 0.04531022533774376, + 0.006461989134550095, + -0.05099160969257355, + -0.002808412304148078, + 0.05230631306767464, + 0.04345555603504181, + 0.008610116317868233, + 0.011873391456902027, + -0.01669200509786606, + 0.0023638203274458647, + 0.11118612438440323, + -0.007999720051884651, + -0.0038003071676939726, + -0.04707098379731178, + -0.07953940331935883, + -0.035027384757995605, + 0.03911234810948372, + 0.043643370270729065, + -0.05268194153904915, + 0.019603127613663673, + -0.021422579884529114, + -0.018664056435227394, + 0.0437607541680336, + -0.022162100300192833, + -0.07099384814500809, + -0.02885298803448677, + 0.03263275325298309, + -0.01569424197077751, + 0.07108775526285172, + 0.01225489005446434, + -0.027209611609578133, + -0.0005410668672993779, + -0.0017769003752619028, + -0.05803465098142624, + -0.11888651549816132, + 0.08409389853477478, + 0.05409054830670357, + -0.04002794623374939, + -0.05531134083867073, + 0.008034935221076012, + 0.02847735956311226, + -0.09353157132863998, + -0.03460480272769928, + -0.0070782555267214775, + -0.026200110092759132, + 0.006925655994564295, + 0.07526662200689316, + -0.016245946288108826, + 0.0033395749051123857, + 0.037022914737463, + 0.01912185363471508, + 0.03648294880986214, + 0.10808718949556351, + 0.045028503984212875, + 0.0018722747918218374, + -0.016386806964874268, + -0.04019228368997574, + -0.08691111207008362, + -0.005120877176523209, + -0.03744549676775932, + -0.014719953760504723, + -0.00020982390560675412, + 0.001631637685932219, + 0.008328394964337349, + 0.018628841266036034, + -0.04772833362221718, + -0.005713666323572397, + 0.012419227510690689, + -0.022643374279141426, + 0.005704862531274557, + -0.007970374077558517, + 0.04514588788151741, + -0.01955617405474186, + -0.053245384246110916, + 0.05592173710465431, + 0.0659698098897934, + -0.045662377029657364, + 0.024321965873241425, + -0.002999161370098591, + 0.03103633038699627, + -0.006438512355089188, + 0.04157741367816925, + 0.0662984848022461, + -0.027186134830117226, + 0.0007325495244003832, + 0.10311010479927063, + 0.027561763301491737, + 0.0787881389260292, + -0.03110676072537899, + -0.055123526602983475, + -0.09517494589090347, + 0.010869758203625679, + -0.015846841037273407, + 0.0838121771812439, + -0.0329849049448967, + -0.023688090965151787, + 0.05343319848179817, + 0.003436416620388627, + 0.0003822316648438573, + -0.05498266592621803, + 0.03744549676775932, + 0.028735604137182236, + -0.01719675585627556, + -0.055123526602983475, + -0.04268082231283188, + 0.06615762412548065, + -0.029346000403165817, + 0.004398965276777744, + -0.02245556004345417, + 0.01838233508169651, + 0.02598881721496582, + -0.0006111304392106831, + 0.04164784401655197, + 0.03582559898495674, + -0.005073923617601395, + -0.07625264674425125, + -0.027045274153351784, + -0.08226270973682404, + -0.002445989055559039, + 0.08132363855838776, + 0.00019936938770115376, + -0.06944437325000763, + 0.024932362139225006, + -0.01982615888118744, + -0.02393459714949131, + -0.01381609681993723, + 0.022772496566176414, + 0.030144210904836655, + 0.05113247036933899, + 0.08292005956172943, + 0.04636668041348457, + -0.008340133354067802, + 0.014027387835085392, + -0.06573504209518433, + -0.03645947203040123, + -0.041929565370082855, + 0.013569590635597706, + -0.03763331100344658, + 0.004137786105275154, + 0.007207377813756466, + -0.006450250744819641, + -0.021762993186712265, + 0.03566126152873039, + -0.0888831689953804, + -0.015494688414037228, + -0.014989936724305153, + -0.07193291932344437, + -0.005047512240707874, + -0.0006261703092604876, + 0.0444415844976902, + 0.015835102647542953, + 0.04042705148458481, + -0.0626361072063446, + 0.022596420720219612, + -0.011339294724166393, + -0.02713918127119541, + -0.10348573327064514, + 0.03584907576441765, + -0.10254666209220886, + 0.022678589448332787, + 0.05498266592621803, + -0.030519841238856316, + -0.01726718619465828, + -0.04392509534955025, + -0.08432866632938385, + -0.011486024595797062, + 0.07512576133012772, + -0.0008128841873258352, + -0.0027086357586085796, + 0.03167020529508591, + 0.015635548159480095, + 0.020483508706092834, + -0.02467411756515503, + 0.02584795653820038, + 0.050615981221199036, + 0.010089155286550522, + -0.04688316956162453, + -0.018135828897356987, + -0.05080379545688629, + -0.062401335686445236, + 0.00976047944277525, + -0.002445989055559039, + 0.010053940117359161, + -0.0531984306871891, + 0.038830626755952835, + -0.0007255798554979265, + 0.04655449464917183, + -0.10245275497436523, + 0.008029066026210785, + 0.014449970796704292, + -0.03049636445939541, + -0.004269842989742756, + 0.03706986829638481, + -0.03709334507584572, + -0.03251536935567856, + -0.03415874391794205, + 0.028453882783651352, + 0.047587472945451736, + -0.024063721299171448, + 0.03768026456236839, + 0.06484292447566986, + -0.011210172437131405, + 0.0021892115473747253, + 0.0016448433743789792, + -0.007624091114848852, + -0.039135824888944626, + 0.02279597334563732, + 0.041084401309490204, + 0.031764112412929535, + 0.035097815096378326, + -0.011257125996053219, + 0.047751810401678085, + -0.045967575162649155, + -0.031247621402144432, + -0.05686081200838089, + 0.04026271402835846, + 0.008938792161643505, + 0.031529344618320465, + 0.014356063678860664, + 0.025871433317661285, + 0.042234763503074646, + -0.0023506146389991045, + 0.007659306284040213, + -0.06606371700763702 + ] + }, + { + "id": "6a0f1f3d-d772-4129-803a-9b9f2d0cc617", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "austinzoe", + "reviewDate": "2021-10-07T07:23:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bca4c028-a824-499c-bd22-6a76a1a7197e", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamnelson", + "reviewDate": "2022-08-12T21:49:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2aa38725-fdc4-4c4d-b49e-3146fd66ceb0", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew13", + "reviewDate": "2021-01-30T18:30:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5913fce4-ec98-4bb2-bacb-a85cc8ee2baf", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "torresjake", + "reviewDate": "2022-09-22T10:57:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c936da93-3496-4e45-8bbc-c840297f5f2c", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john86", + "reviewDate": "2021-09-25T03:48:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9112d7dc-b2c3-409d-9fea-eff3917ee525", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hcurtis", + "reviewDate": "2022-10-24T17:58:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "921e13e5-19ee-4621-b809-2eb84800af92", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicamoreno", + "reviewDate": "2022-01-01T02:25:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "447e3263-5102-4c29-baf5-fc0f8004e420", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dbrooks", + "reviewDate": "2022-07-14T08:21:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "363f3364-b45f-4770-860c-98361f336d90", + "productId": "3172020f-47cc-4dd6-ba9b-08e03c063dc9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mitchell40", + "reviewDate": "2022-05-09T06:36:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "product", + "name": "Amazing TV Super (Black)", + "description": "This Amazing TV Super (Black) is rated 4.8 out of 5 by 4.\n\nRated 5 out of 5 by Jimy27 from I love this TV The great quality is what I was expecting from this place, not unlike the original\n\nRated 5 out of 5 by Mike from The TV and the picture are wonderful I am new to the TV and for my first time as this place I", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-09-18T00:38:45", + "price": 944.12, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-03-07T17:38:13", + "newPrice": 1009.45 + }, + { + "priceDate": "2022-11-26T17:38:13", + "newPrice": 900.11 + }, + { + "priceDate": "2023-04-27T17:38:13", + "newPrice": 944.12 + } + ], + "descriptionVector": [ + 0.05705978348851204, + 0.03690279275178909, + -0.02584967575967312, + 0.049351394176483154, + -0.059806447476148605, + 0.02527376264333725, + -0.05852171778678894, + 0.0020350804552435875, + 0.048686880618333817, + 0.06042666360735893, + 0.046737633645534515, + -0.03829827904701233, + -0.0023341127671301365, + 0.028795698657631874, + 0.03386817127466202, + 0.005858817137777805, + 0.03776666522026062, + 0.021906880661845207, + 0.033469460904598236, + -0.0024420965928584337, + 0.00852241925895214, + -0.06543268263339996, + -0.05209806188941002, + 0.04912989214062691, + -0.03386817127466202, + -0.022239139303565025, + -0.03920644894242287, + 0.053870104253292084, + 0.0025749998167157173, + -0.08957677334547043, + -0.00016647513257339597, + 0.0015214650193229318, + 0.023989031091332436, + 0.051832254976034164, + -0.00559577951207757, + 0.052806880325078964, + -0.004532553721219301, + 0.019525697454810143, + 0.011828386224806309, + 0.0874946191906929, + 0.07252085953950882, + 0.011374300345778465, + 0.023258063942193985, + 0.02038956992328167, + 0.014331397600471973, + -0.02140849456191063, + -0.011186021380126476, + -0.061799999326467514, + 0.01708913967013359, + 0.003585618222132325, + -0.0025528494734317064, + -0.013777634128928185, + -0.10065203905105591, + -0.01511774118989706, + 0.018650751560926437, + 0.029881075024604797, + -0.010970053263008595, + 0.08062795549631119, + 0.05506623536348343, + -0.06250881403684616, + -0.018938709050416946, + 0.04487698897719383, + 0.06662881374359131, + -0.03269419074058533, + -0.049794405698776245, + -0.027776774019002914, + -0.041532255709171295, + -0.016025913879275322, + -0.018628600984811783, + 0.04379161074757576, + 0.03956085816025734, + -0.009397365152835846, + 0.04155440628528595, + 0.0036188438534736633, + 0.012681182473897934, + 0.024963654577732086, + 0.0909058004617691, + -0.001884180004708469, + -0.04164300858974457, + 0.06981848925352097, + 0.05803440511226654, + 0.013190644793212414, + 0.007215537130832672, + 0.06738193333148956, + 0.05546494573354721, + 0.07770407944917679, + -0.07703956961631775, + -0.16302795708179474, + -0.02934946119785309, + 0.04651612788438797, + -0.030877849087119102, + 0.013500751927495003, + -0.0036603761836886406, + -0.07172343879938126, + 0.04970580339431763, + 0.012249247170984745, + -0.05555354803800583, + 0.037500858306884766, + 0.023125160485506058, + 0.06521117687225342, + 0.06844516098499298, + -0.027931826189160347, + -0.006761451251804829, + -0.06742623448371887, + -0.01316849421709776, + -0.037102147936820984, + 0.0034056450240314007, + -0.02136419340968132, + 0.01956999860703945, + -0.17764730751514435, + -0.02609333209693432, + -0.024609247222542763, + 0.015881935134530067, + -0.022604621946811676, + 0.017199892550706863, + 0.032871395349502563, + -0.03858623653650284, + -0.026115482673048973, + 0.02629268728196621, + -0.09418408572673798, + -0.05546494573354721, + 0.001805268693715334, + -0.06211010366678238, + 0.06654021143913269, + 0.06246451288461685, + 0.03242838755249977, + -0.006141236517578363, + 0.06840085983276367, + 0.060293760150671005, + -0.05085763335227966, + -0.05449032038450241, + -0.002485013334080577, + 0.020411720499396324, + 0.027621719986200333, + -0.04044688120484352, + 0.03455483913421631, + -0.03264988958835602, + -0.02022344060242176, + 0.014863010495901108, + -0.04607311636209488, + 0.009884676896035671, + -0.01822989247739315, + 0.026514193043112755, + 0.020688600838184357, + 0.023546021431684494, + 0.05604085698723793, + 0.029415912926197052, + -0.034532688558101654, + -0.02233881689608097, + 0.009751773439347744, + 0.042218923568725586, + -0.0899311825633049, + -0.1079174131155014, + -0.07371698319911957, + 0.03898494318127632, + 0.08581118285655975, + -0.04638322442770004, + 0.037057846784591675, + -0.08364042639732361, + 0.10800601541996002, + -0.06919828057289124, + -0.07850150018930435, + -0.037988170981407166, + -0.02002408541738987, + 0.03457698971033096, + 0.0026954433415085077, + 0.004834354855120182, + -0.04106709361076355, + -0.09161461889743805, + 0.023989031091332436, + 0.04647182673215866, + -0.043237846344709396, + -0.0019201746908947825, + 0.008195698261260986, + -0.02401118166744709, + 0.00541303725913167, + 0.07203354686498642, + -0.016136666759848595, + -0.02242741920053959, + -0.028552042320370674, + -0.023789675906300545, + -0.012636881321668625, + -0.0320739783346653, + -0.010997741483151913, + -0.008754999376833439, + 0.027333762496709824, + 0.04015892371535301, + 0.0028075806330889463, + -0.01737709529697895, + 0.05289548262953758, + 0.00864424742758274, + -0.014829784631729126, + 0.02804257906973362, + -0.037301503121852875, + -0.024033332243561745, + 0.0021126074716448784, + 0.02449849434196949, + -0.004028629045933485, + -0.08186838030815125, + 0.03389032185077667, + -0.01261473074555397, + 0.03143161162734032, + 0.14601634442806244, + -0.04259548336267471, + 0.03202967718243599, + -0.05967354774475098, + 0.05037032067775726, + 0.06760343909263611, + 0.026226235553622246, + 0.018240967765450478, + -0.0010057728504762053, + -0.003286585910245776, + -0.02096548303961754, + 0.01338999904692173, + 0.05404730886220932, + 0.04656042903661728, + 0.005797903053462505, + -0.023457419127225876, + -0.036769889295101166, + -0.06862236559391022, + 0.044057417660951614, + -0.04319354519248009, + 0.018827956169843674, + -0.00761978467926383, + -0.04193096607923508, + -0.09560171514749527, + 0.026469891890883446, + -0.030146880075335503, + -0.007885591126978397, + 0.055199138820171356, + -0.06020515784621239, + -0.09214623272418976, + -0.0069718812592327595, + 0.025450967252254486, + -0.05945204198360443, + 0.011551504954695702, + -0.030390536412596703, + 0.009452741593122482, + -0.08736171573400497, + 0.02124236524105072, + -0.04297204315662384, + -0.014054515399038792, + -0.00730413943529129, + 0.03169741854071617, + 0.04895268753170967, + -0.02633698843419552, + 0.024365590885281563, + -0.024276988580822945, + -0.02527376264333725, + -0.07274236530065536, + -0.062331609427928925, + -0.013079891912639141, + -0.03264988958835602, + 0.052230965346097946, + 0.0476236529648304, + 0.016823332756757736, + 0.06312903016805649, + -0.008395053446292877, + 0.00639043003320694, + -0.025539569556713104, + -0.07256516069173813, + 0.003245053580030799, + 0.028552042320370674, + 0.00883252639323473, + -0.022482795640826225, + 0.028374837711453438, + 0.0025763842277228832, + -0.03796602040529251, + 0.006395967677235603, + 0.014320322312414646, + -0.028419138863682747, + 0.000744119577575475, + -0.011274623684585094, + 0.004826048389077187, + -0.0670718252658844, + -0.0011988978367298841, + -0.01872827857732773, + 0.02148602157831192, + -0.008677472360432148, + -0.016214193776249886, + 0.08966537564992905, + 0.03911784663796425, + 0.012670107185840607, + -0.033757418394088745, + 0.06538838148117065, + -0.051256343722343445, + -0.007863440550863743, + 0.022128386422991753, + 0.04438967630267143, + -0.017797956243157387, + -0.03745655715465546, + 0.06184430047869682, + 0.08177978545427322, + 0.004970026668161154, + 0.029393762350082397, + 0.047313544899225235, + 0.005471182521432638, + -0.060338061302900314, + 0.002383951563388109, + -0.05745849385857582, + 0.05041462182998657, + 0.050237417221069336, + -0.01635817065834999, + -0.06450236588716507, + -0.04038042947649956, + 0.04033612832427025, + -0.027200859040021896, + 0.002623454201966524, + -0.00915370974689722, + -0.023922579362988472, + 0.027333762496709824, + -0.0007572714821435511, + -0.007126935292035341, + -0.016734730452299118, + 0.051256343722343445, + -0.01880580559372902, + -0.02702365443110466, + 0.07345117628574371, + -0.003087230958044529, + 0.022283440455794334, + -0.0017138978000730276, + -0.019160214811563492, + -0.03415612876415253, + 0.06405935436487198, + 0.029814623296260834, + -0.032738491892814636, + -0.039538707584142685, + -0.075356125831604, + -0.0070770964957773685, + 0.01465258002281189, + 0.050769031047821045, + 0.01839601993560791, + 0.020622149109840393, + 0.0347541905939579, + 0.05107913911342621, + -0.039095696061849594, + 0.03145376220345497, + 0.012858386151492596, + 0.04656042903661728, + 0.05400300770998001, + 0.08058365434408188, + -0.005736988969147205, + 0.041820213198661804, + -0.029327310621738434, + 0.02303655818104744, + -0.060781072825193405, + 0.0063627418130636215, + -0.04523139446973801, + 0.042462579905986786, + -0.03008042834699154, + 0.001028615515679121, + -0.02983677387237549, + -0.013733332976698875, + 0.06153419241309166, + 0.03023548237979412, + 0.01249290257692337, + 0.00502540310844779, + -0.036681290715932846, + 0.02779892273247242, + -0.029172256588935852, + 0.030589891597628593, + -0.008190160617232323, + -0.007592096459120512, + 0.018750429153442383, + -0.07367268204689026, + 0.050326019525527954, + -0.04232967644929886, + 0.03630473092198372, + -0.023213762789964676, + -0.029925374314188957, + 0.02095440775156021, + -0.023258063942193985, + -0.04215247184038162, + 0.020001934841275215, + 0.003685295581817627, + 0.003004166530445218, + -0.05014881491661072, + -0.02910580486059189, + 0.04029182717204094, + 0.02343526855111122, + -0.031475912779569626, + 0.02507440745830536, + 0.014242795296013355, + 0.019769353792071342, + 0.016269568353891373, + -0.004992177244275808, + -0.03519720211625099, + 0.019968708977103233, + -0.03683634102344513, + 0.04151010513305664, + -0.07114752382040024, + 0.0007503494271077216, + 0.010637795552611351, + 0.0006534408312290907, + 0.09001978486776352, + -0.048686880618333817, + -0.012437526136636734, + 0.07588773965835571, + 0.06521117687225342, + -0.07442580163478851, + 0.03679203987121582, + 0.012326773256063461, + 0.07376128435134888, + -0.024077633395791054, + -0.03894064202904701, + -0.047269243746995926, + 0.006844515912234783, + 0.05262967571616173, + -0.06888817250728607, + -0.10091784596443176, + -0.041532255709171295, + -0.04239612817764282, + -0.007021720055490732, + 0.012260322459042072, + 0.03956085816025734, + 0.08062795549631119, + 0.0840834379196167, + -0.044943440705537796, + 0.0948042944073677, + -0.03894064202904701, + 0.048332471400499344, + 0.11863827705383301, + 0.05462322384119034, + 0.0016211423790082335, + -0.02221698872745037, + 0.05506623536348343, + 0.04850967600941658, + 0.03488709405064583, + -0.10561376065015793, + -0.016313869506120682, + 0.04485483840107918, + -0.07859010249376297, + 0.022283440455794334, + 0.008815913461148739, + -0.07903311401605606, + 0.05896472930908203, + 0.02396688051521778, + -0.02706795558333397, + -0.03384602069854736, + 0.03435548394918442, + -0.003640994429588318, + -0.00470975786447525, + -0.010781773366034031, + 0.03442193567752838, + -0.10455053299665451, + -0.0007420429610647261, + -0.003879112657159567, + 0.03993741795420647, + 0.04948429763317108, + 0.016435697674751282, + -0.00928107462823391, + -0.02503010630607605, + 0.006700537167489529, + -0.04467763379216194, + -0.05914193391799927, + 0.038519784808158875, + 0.04842107370495796, + 0.10118365287780762, + -0.026469891890883446, + -0.02946021407842636, + -0.007381666451692581, + 0.049174193292856216, + -0.01851784810423851, + 0.03216258063912392, + -0.03468773886561394, + -0.059895049780607224, + -0.1278529018163681, + -0.017487848177552223, + -0.00252793007530272, + 0.015815483406186104, + 0.03781096637248993, + -0.044544730335474014, + -0.02209516055881977, + 0.027422364801168442, + -0.000979469041340053, + -0.0053493548184633255, + 0.011019892059266567, + 0.02031204290688038, + 0.04638322442770004, + 0.016834408044815063, + -0.000996774178929627, + 0.02766602113842964, + 0.0008029569871723652, + 0.029371611773967743, + 0.054756127297878265, + 0.02852989174425602, + 0.013943762518465519, + -0.018384944647550583, + 0.036437634378671646, + 0.011972364969551563, + 0.006567634176462889, + 0.058787524700164795, + -0.020887956023216248, + -0.08962107449769974, + -0.04029182717204094, + 0.0036493008956313133, + -0.05094623565673828, + -0.0054047307930886745, + -0.03825397789478302, + 0.012481827288866043, + 0.020987633615732193, + 0.05816730856895447, + -0.09391827881336212, + 0.06157849356532097, + 0.008572258055210114, + -0.012625806033611298, + 0.040026020258665085, + -0.0019035617588087916, + -0.03674773871898651, + 0.03105505183339119, + 0.08284300565719604, + 0.04549720138311386 + ] + }, + { + "id": "7015de3a-d901-4744-b55f-999605ac5dab", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "hgonzales", + "reviewDate": "2021-03-19T05:48:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a58f0555-b91e-49af-8c8c-95f67b4dc1c3", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "isawyer", + "reviewDate": "2022-04-01T10:01:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "58ebfb6b-1a99-4268-9453-19734a2c37c8", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "theresagarcia", + "reviewDate": "2022-08-11T15:29:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "34b3a2ec-1f82-45af-9e6c-fe6d024feedb", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "julie68", + "reviewDate": "2021-06-17T19:26:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "22d1563a-67d1-4456-ba08-9eb5d8554c97", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "lauramiller", + "reviewDate": "2021-03-07T17:38:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2c5f2c9d-c971-4444-9a65-f4fe6a4734b2", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "jorgewhite", + "reviewDate": "2022-06-19T03:24:27", + "stars": 4, + "verifiedUser": false + }, + { + "id": "718fd457-f761-4227-912b-254c4af3e89b", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "cwarner", + "reviewDate": "2022-11-05T08:47:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "50489e47-8fa6-45b4-833a-17912bb2deec", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "candace66", + "reviewDate": "2022-11-27T13:46:17", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6a4f36e2-dc98-451f-a48b-de6ade1b2b86", + "productId": "72fd6d83-1c79-418b-b3df-d9873f297a85", + "category": "Media", + "docType": "customerRating", + "userName": "ebony96", + "reviewDate": "2022-05-14T06:49:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer + (Black)", + "description": "This Amazing Computer + (Black) is an excellent example of the value that the Linux Project has put into the software development community. While there are many other excellent ways this computer may be used for a variety of purposes, it's the best way to learn and", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-04-12T02:51:24", + "price": 758.67, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-01-27T19:27:54", + "newPrice": 801.49 + }, + { + "priceDate": "2021-09-12T19:27:54", + "newPrice": 691.2 + }, + { + "priceDate": "2022-04-28T19:27:54", + "newPrice": 818.83 + }, + { + "priceDate": "2022-12-12T19:27:54", + "newPrice": 730.43 + }, + { + "priceDate": "2025-07-13T19:27:54", + "newPrice": 758.67 + } + ], + "descriptionVector": [ + -0.03720422461628914, + 0.06860904395580292, + -0.02816854417324066, + -0.03329480439424515, + 0.0075275772251188755, + 0.06280963867902756, + -0.045799773186445236, + 0.04745674878358841, + 0.04800044000148773, + 0.09206557273864746, + 0.0010420808102935553, + -0.07710103690624237, + 0.0291264820843935, + -0.02762484923005104, + 0.04701661318540573, + 0.0474308580160141, + 0.016893358901143074, + -0.020996956154704094, + -0.03251809999346733, + 0.013760644011199474, + 0.023780154064297676, + -0.05276424065232277, + -0.05452477186918259, + 0.049579743295907974, + -0.0014919231180101633, + -0.04126898944377899, + 0.029359493404626846, + 0.038395173847675323, + 0.040414612740278244, + -0.007825314998626709, + 0.03968968614935875, + 0.040000367909669876, + -0.04121720790863037, + -0.027469508349895477, + 0.008569657802581787, + -0.056388869881629944, + -0.023119954392313957, + -0.028738128021359444, + 0.009980674833059311, + 0.004265411291271448, + 0.050589460879564285, + -0.03717833384871483, + 0.03922366350889206, + -0.015352891758084297, + 0.0646219551563263, + 0.002996791386976838, + 0.006511386949568987, + -0.045747995376586914, + -0.05892610922455788, + -0.0128415422514081, + 0.03886120021343231, + 0.027728410437703133, + 0.07254435867071152, + -0.023210570216178894, + -0.05359272658824921, + 0.07596186548471451, + 0.019197586923837662, + 0.033087681978940964, + 0.040958303958177567, + -0.10583916306495667, + -0.049605634063482285, + 0.11733441054821014, + 0.06933397054672241, + -0.06721097230911255, + -0.0010064817033708096, + -0.02209729142487049, + -0.01958594098687172, + 0.03256987780332565, + 0.006093907169997692, + 0.037489019334316254, + -0.022653929889202118, + -0.0035696120467036963, + 0.0434955470263958, + 0.06524331867694855, + 0.06633070856332779, + 0.036634642630815506, + 0.054006967693567276, + 0.010330191813409328, + -0.0057411533780395985, + 0.01176062598824501, + 0.06602002680301666, + -0.028246214613318443, + 0.0015024410095065832, + -0.03528834879398346, + 0.04701661318540573, + 0.06891972571611404, + 0.04173501208424568, + -0.10967091470956802, + 0.006970937829464674, + 0.006132742390036583, + -0.018640948459506035, + 0.06353456526994705, + 0.058408305048942566, + 0.02904881164431572, + 0.02855689637362957, + 0.02587726153433323, + -0.06627892702817917, + 0.01627199351787567, + 0.07011067867279053, + -0.00822014082223177, + 0.03875763714313507, + -0.08740533143281937, + -0.0358838252723217, + -0.001925584045238793, + -0.031223587691783905, + -0.049191392958164215, + 0.024026110768318176, + -0.04781921207904816, + 0.029851406812667847, + -0.06498441845178604, + -0.05144383758306503, + 0.018524441868066788, + -0.017165206372737885, + 0.014783307909965515, + -0.007786479312926531, + 0.07130162417888641, + 0.006957992911338806, + -0.05556038022041321, + 0.04567032307386398, + -0.03580615296959877, + 0.05820118263363838, + 0.008051853626966476, + 0.04362499713897705, + 0.0030259178020060062, + -0.04541142284870148, + -0.020207306370139122, + -0.010446698404848576, + 0.0033560178708285093, + 0.05820118263363838, + 0.016362609341740608, + -0.09848634153604507, + 0.030705783516168594, + 0.07114628702402115, + 0.03976735472679138, + 0.04271883890032768, + -0.010019510053098202, + 0.06467373669147491, + 0.05175452306866646, + -0.03482232615351677, + -0.013462906703352928, + -0.007210422307252884, + -0.022692766040563583, + -0.05721735581755638, + 0.011424053460359573, + 0.0011885223211720586, + 0.053074922412633896, + -0.008394898846745491, + 0.01184476912021637, + -0.027210606262087822, + 0.05294547230005264, + -0.02806498296558857, + -0.0014344792580232024, + -0.01700986549258232, + -0.05959925428032875, + 0.13473263382911682, + 0.013372291810810566, + -0.00954701378941536, + 0.030705783516168594, + -0.06327566504478455, + 0.06249895691871643, + -0.06332744657993317, + -0.015197550877928734, + 0.014110161922872066, + 0.0368676520884037, + 0.03093879669904709, + 0.006679673213511705, + 0.07295860350131989, + -0.003003263846039772, + -0.11826646327972412, + 0.06037595868110657, + 0.04403924196958542, + -0.052013423293828964, + 0.010983919724822044, + 0.009009791538119316, + -2.6168323529418558e-05, + -0.04390978813171387, + 0.031120028346776962, + 0.05115904659032822, + 0.017320547252893448, + -0.06695207208395004, + -0.004381917417049408, + 0.07466735690832138, + -0.03394205868244171, + 0.09424035251140594, + -0.01003892719745636, + 0.015560014173388481, + 0.05773515999317169, + -0.017113426700234413, + 0.032207414507865906, + 0.003014590824022889, + 0.020233195275068283, + -0.06695207208395004, + 0.06814302504062653, + 0.009993619285523891, + 0.047197844833135605, + -0.02415556274354458, + -0.030369210988283157, + 0.047249626368284225, + -0.05411053076386452, + 0.004304246511310339, + 0.00014674487465526909, + 0.03590971603989601, + 0.059340350329875946, + 0.03404562175273895, + 0.012873904779553413, + -0.04701661318540573, + 0.02445329912006855, + 0.05364450812339783, + -0.0059903464280068874, + -0.055456820875406265, + 0.046731822192668915, + -0.024660421535372734, + -0.10749613493680954, + 0.013449962250888348, + 0.07575473934412003, + 0.006233067251741886, + 0.049709197133779526, + 0.017165206372737885, + -0.03717833384871483, + -0.07932759076356888, + 0.0434955470263958, + -0.026537461206316948, + -0.04126898944377899, + -0.04787098988890648, + -0.005372217856347561, + -0.11588456481695175, + 0.08372892439365387, + -0.0012540568131953478, + 0.02185133285820484, + 0.10009153932332993, + -0.05556038022041321, + -0.006744398735463619, + 0.0003234253090340644, + 0.031767282634973526, + -0.029747847467660904, + 0.017268767580389977, + -0.001697426661849022, + -0.01774773560464382, + -0.06534688174724579, + 0.09848634153604507, + -0.013734754174947739, + -0.04367677867412567, + -0.04248582944273949, + -0.045307859778404236, + 0.008731472305953503, + -0.028893468901515007, + 0.040828853845596313, + -0.01251144241541624, + -0.03143071010708809, + -0.06301676481962204, + 0.0013325365725904703, + 0.02806498296558857, + -0.05271245911717415, + 0.019417654722929, + -0.053540945053100586, + 0.05809762328863144, + 0.07611720263957977, + -0.03880941867828369, + 0.05416231229901314, + -0.08673218637704849, + -0.021695991978049278, + -0.051133155822753906, + -0.020660383626818657, + 0.0508742555975914, + -0.030187979340553284, + 0.02904881164431572, + -0.009268693625926971, + -0.043858010321855545, + -0.031120028346776962, + 0.05245355889201164, + 0.05473189428448677, + -0.001320400508120656, + -0.0024207341484725475, + -0.02563130296766758, + 0.02954072505235672, + 0.006592293735593557, + -0.020336756482720375, + 0.08398782461881638, + -0.017773626372218132, + -0.01377358939498663, + -0.013928931206464767, + 0.003747607348486781, + 0.037851482629776, + 0.0015315675409510732, + 0.04401335120201111, + -0.07508159428834915, + 0.007313983049243689, + -0.05985815450549126, + -0.009637629613280296, + -0.03212974593043327, + -0.04124309867620468, + 0.031327150762081146, + 0.0727514773607254, + 0.0793793722987175, + 0.046188127249479294, + -0.008602021262049675, + 0.012867432087659836, + -0.027210606262087822, + -0.04502306878566742, + 0.07192299515008926, + 0.02992907725274563, + -0.02464747615158558, + 0.0266669113188982, + -0.021048737689852715, + -0.027314167469739914, + 0.0958455428481102, + -0.012492024339735508, + 0.005841477774083614, + -0.09087461978197098, + -0.02390960603952408, + 0.09496527165174484, + -0.05051179230213165, + -0.02765073999762535, + -0.06866082549095154, + 0.045799773186445236, + -0.043340206146240234, + 0.039327222853899, + -0.010835051536560059, + 0.015987202525138855, + 0.026006711646914482, + 0.0001249000197276473, + -0.025721918791532516, + -0.09796854108572006, + 0.11868070065975189, + -0.007566412445157766, + -0.005110079422593117, + -0.06348278373479843, + 0.020971067249774933, + -0.09848634153604507, + -0.04362499713897705, + -0.050201110541820526, + -0.047146063297986984, + 0.08730177581310272, + 0.03596149757504463, + 0.001110042561776936, + -0.13462907075881958, + -0.038498736917972565, + 0.053489167243242264, + 0.09004613757133484, + 0.05359272658824921, + 0.02032381109893322, + -0.008491987362504005, + -0.060220617800951004, + -0.0018090781522914767, + 0.016828633844852448, + -0.0641559287905693, + -0.0348999984562397, + 0.013307565823197365, + 0.03482232615351677, + -0.017385274171829224, + 0.0015582668129354715, + -0.0285051167011261, + 0.07378708571195602, + 0.009734717197716236, + 0.005527558736503124, + 0.02858278714120388, + 0.026744583621621132, + -0.06840192526578903, + -0.03526246175169945, + 0.006692618131637573, + 0.025113500654697418, + -0.011663537472486496, + -0.006932102609425783, + 0.009456397965550423, + 0.01280270703136921, + 0.044272251427173615, + 0.025864316150546074, + 0.04701661318540573, + 0.022679820656776428, + 0.010958029888570309, + 0.014123107306659222, + -0.025450073182582855, + -0.013229895383119583, + -0.05141795054078102, + -0.0009959638118743896, + -0.05970281362533569, + -0.0007224985747598112, + 0.037955041974782944, + -0.03593560680747032, + 0.0026052019093185663, + -0.02130763977766037, + 0.018291430547833443, + 0.0043107192032039165, + 0.002454715082421899, + 0.0550425760447979, + -0.07192299515008926, + -0.0037087718956172466, + -0.025566577911376953, + -0.007223367225378752, + 0.03135303780436516, + -0.03091290593147278, + 0.03878352791070938, + -0.07855088263750076, + -0.0018996938597410917, + 0.055508602410554886, + -0.01453735027462244, + 0.019132861867547035, + 0.02661513164639473, + 0.024310903623700142, + -0.015637684613466263, + 0.013708864338696003, + -0.001131887431256473, + 0.0072427853010594845, + -0.07223367691040039, + -0.07031779736280441, + -0.07663501054048538, + -0.01843382604420185, + -0.000756074907258153, + -0.024530969560146332, + -0.0422787070274353, + -0.019987238571047783, + 0.01870567351579666, + -0.036608751863241196, + 0.03238864615559578, + 0.03285467252135277, + -0.005265420768409967, + 0.01014896109700203, + 0.037514910101890564, + 0.025307675823569298, + -0.011896549724042416, + 0.04797455295920372, + -0.015236386097967625, + -0.010815633460879326, + -0.019598886370658875, + -0.05809762328863144, + 0.04882892966270447, + 0.06555400043725967, + -0.020207306370139122, + -0.07285504043102264, + 0.0011335056042298675, + 0.03280289098620415, + -0.0070291911251842976, + -0.009003318846225739, + 0.07233723253011703, + 0.020142579451203346, + -0.001889985054731369, + 0.01007776241749525, + 0.04639524966478348, + 0.02524295076727867, + 0.05970281362533569, + -0.04613634571433067, + -0.09232447296380997, + 0.0028997031040489674, + 0.041838571429252625, + -0.12789762020111084, + 0.06581290066242218, + -0.060841985046863556, + 0.009747662581503391, + 0.08740533143281937, + -0.04800044000148773, + -0.0825897604227066, + 0.04056995362043381, + -0.017928967252373695, + -0.02585137076675892, + 0.036090947687625885, + 0.004537258762866259, + -0.07404598593711853, + 0.10884242504835129, + 7.281620491994545e-05, + 0.02951483428478241, + 0.0006237921770662069, + 0.03772202879190445, + 0.021346474066376686, + -0.05970281362533569, + -0.02089339680969715, + -0.019055191427469254, + -0.035573143512010574, + -0.025204114615917206, + -0.010051872581243515, + -0.0052492390386760235, + -0.01221370417624712, + -0.02946305461227894, + 0.028349775820970535, + 0.005411053076386452, + -0.04463471472263336, + -0.017903076484799385, + 0.004449879284948111, + 0.009242803789675236, + -0.024789871647953987, + -0.04121720790863037, + -0.018835125491023064, + -0.03678998351097107, + -0.008776780217885971, + -0.07301037758588791, + 0.025346511974930763, + 0.03137892857193947, + 0.019624775275588036, + -0.004559912718832493, + 0.024569805711507797, + 0.018420880660414696, + 0.05141795054078102, + 0.0459551140666008, + -0.004870594944804907, + -0.02327529527246952, + -0.051961641758680344, + -0.007126279175281525, + -0.036505188792943954, + 0.005925620906054974, + -0.04598100483417511, + 0.07487447559833527, + -0.05077069252729416, + -0.0002635542186908424, + -0.012271957471966743, + 0.0195341594517231, + 0.00633986433967948, + 0.007890040054917336, + 0.01429139357060194, + 0.0016407917719334364, + -0.03521068021655083, + -0.014161942526698112, + 0.045747995376586914, + -0.04758619889616966 + ] + }, + { + "id": "511a06a2-4cc2-4535-846c-47086a1cd408", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "colemanthomas", + "reviewDate": "2021-07-13T01:47:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8f6fd227-f2a7-4147-9611-29606b90c2a5", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael00", + "reviewDate": "2021-10-16T11:26:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4f86c314-8f81-4b17-b023-0bece2659e05", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "colleen61", + "reviewDate": "2022-03-23T16:53:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "713ccfa4-500c-43ce-8a0c-3ab0a2f1e1a9", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "qlewis", + "reviewDate": "2021-01-27T19:27:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f300a6a2-6451-4ffb-b930-15db42b5f218", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "burkekathy", + "reviewDate": "2021-12-18T13:06:44", + "stars": 5, + "verifiedUser": false + }, + { + "id": "268c05f1-dc1a-4324-8888-868126690487", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "kennethwinters", + "reviewDate": "2021-07-14T19:53:27", + "stars": 4, + "verifiedUser": true + }, + { + "id": "aab297b6-91c1-40ee-b08b-e862f11c041a", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "benjamin36", + "reviewDate": "2021-05-08T08:13:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "63865919-20c6-498c-bb9b-4a250b94717e", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "ccollins", + "reviewDate": "2022-12-13T14:48:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b374f428-d394-47a6-8d71-0dc588728c7d", + "productId": "94b69078-5e6b-4f9d-ada4-22f83e8badb8", + "category": "Electronics", + "docType": "customerRating", + "userName": "heather82", + "reviewDate": "2022-02-18T18:02:30", + "stars": 5, + "verifiedUser": false + }, + { + "id": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "productId": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Ultra (Silver)", + "description": "This Amazing Filter Ultra (Silver) is a new filter technology that looks and operates more unlike anything you'd see in a commercial product. It consists of two layers of titanium coated aluminium oxide that blend together and give this ultra filter the texture and clarity. It is based upon the U-", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-22T17:33:25", + "price": 206.81, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2022-02-04T20:02:14", + "newPrice": 196.65 + }, + { + "priceDate": "2022-04-14T20:02:14", + "newPrice": 210.51 + }, + { + "priceDate": "2022-06-22T20:02:14", + "newPrice": 206.41 + }, + { + "priceDate": "2022-08-30T20:02:14", + "newPrice": 201.63 + }, + { + "priceDate": "2023-03-24T20:02:14", + "newPrice": 206.81 + } + ], + "descriptionVector": [ + 0.012427338398993015, + 0.011159923858940601, + -0.029991043731570244, + -0.012013761326670647, + 0.03057805635035038, + -0.06329070776700974, + -0.08757171034812927, + -0.04002363607287407, + 0.019011227414011955, + 0.05907488614320755, + -0.028923746198415756, + -0.030844882130622864, + 0.031138388440012932, + -0.028203321620821953, + -0.030391279608011246, + 0.008424974977970123, + -0.049362484365701675, + -0.014235072769224644, + -0.04568030685186386, + 0.0157959945499897, + 0.03353980556130409, + -0.015542511828243732, + -0.0311117060482502, + -0.042851973325014114, + 0.010312756523489952, + -0.012367303483188152, + -0.007277630735188723, + 0.008538375608623028, + 0.0055265966802835464, + -0.018384190276265144, + 0.10710324347019196, + 0.01328117586672306, + 0.07812613248825073, + 0.10230041295289993, + -0.04247841611504555, + 0.06745316833257675, + 0.039436619728803635, + 0.007998056709766388, + 0.02656235173344612, + 0.06371762603521347, + 0.007150889374315739, + -0.02609541080892086, + -0.05758066847920418, + 0.10694315284490585, + 0.01119327638298273, + -0.024961406365036964, + -0.04730793461203575, + -0.004065734334290028, + 0.016236254945397377, + 0.015195639804005623, + 0.04882883280515671, + -0.007270960137248039, + -0.008845223113894463, + 0.019171321764588356, + 0.019785016775131226, + -0.03655492141842842, + 0.08362271636724472, + 0.1908326894044876, + 0.10037927329540253, + 0.03135184571146965, + 0.06702625006437302, + -0.08746498078107834, + 0.015769312158226967, + 0.011526807211339474, + -0.043305572122335434, + 0.005403190851211548, + -0.018904495984315872, + -0.030684785917401314, + 0.053151387721300125, + 0.07385694980621338, + 0.008158151060342789, + 0.028443463146686554, + 0.053311482071876526, + 0.03089824691414833, + -0.02538832649588585, + 0.08250205218791962, + 0.09925861656665802, + -0.05736720934510231, + 0.04730793461203575, + 0.011446759104728699, + 0.022279823198914528, + 0.07465741783380508, + -0.05683356150984764, + -0.011286664754152298, + 0.050349730998277664, + 0.050509825348854065, + 0.07572471350431442, + -0.08773180842399597, + -0.027296118438243866, + 0.009378871880471706, + 0.007811279501765966, + 0.054245367646217346, + 0.028443463146686554, + -0.06505174934864044, + 0.012053784914314747, + 0.07380358129739761, + -0.0394899845123291, + -0.003226905595511198, + -0.10037927329540253, + 0.07364349067211151, + -0.00691074738278985, + -0.05619318410754204, + -0.007084183394908905, + 0.05328479781746864, + 0.008051421493291855, + -0.00013268251495901495, + -0.014595285058021545, + -0.016049478203058243, + -0.017050068825483322, + 0.014862109906971455, + -0.05248432606458664, + -0.05886142700910568, + -0.02074558474123478, + 0.017090091481804848, + 0.053604986518621445, + -0.012440679594874382, + -0.08100783824920654, + 0.026602376252412796, + 0.012694163247942924, + 0.012727515771985054, + -0.03647487238049507, + 0.04557357728481293, + 0.031085023656487465, + -0.0028099927585572004, + -0.01412834320217371, + 0.025561761111021042, + 0.03436696156859398, + 0.031538624316453934, + 0.024107569828629494, + -0.0015851027565076947, + -0.11195944994688034, + -0.05203072354197502, + -0.007664525881409645, + -0.001712678000330925, + -0.08383617550134659, + 0.0005636661662720144, + 0.026829175651073456, + 0.09290819615125656, + -0.011446759104728699, + 0.06788008660078049, + -0.01989174634218216, + 0.011726925149559975, + -0.003241914324462414, + 0.013861519284546375, + -0.0385294184088707, + -0.08906593173742294, + -0.033246301114559174, + -0.0008429978042840958, + -0.026535669341683388, + -0.0643046423792839, + 0.05581963062286377, + -0.0870380625128746, + -0.010112638585269451, + -0.06611904501914978, + 0.0002522322756703943, + 0.03740875795483589, + -0.0548056960105896, + 0.03004440851509571, + 0.02593531459569931, + -0.02943071350455284, + 0.02129257284104824, + -0.06339743733406067, + -0.013641389086842537, + 0.03319293260574341, + 0.05613981932401657, + 0.002599868690595031, + 0.005266443360596895, + 0.06969448924064636, + -0.03415350243449211, + 0.05211077257990837, + 0.013034363277256489, + 0.010619604028761387, + 0.04023709520697594, + -0.044319506734609604, + -0.013794812373816967, + 0.014728697948157787, + 0.013914884068071842, + 0.0032352437265217304, + 0.0003128930984530598, + -0.07940689474344254, + -0.0047494713217020035, + 0.01207379624247551, + -0.020478758960962296, + -0.02554842084646225, + 0.003196887904778123, + 0.011346700601279736, + 0.05768739804625511, + 0.02540166676044464, + 0.018784426152706146, + 0.05549944192171097, + -0.002948407782241702, + -0.01688997447490692, + 0.009585660882294178, + 0.04381253942847252, + -0.0042458404786884785, + -0.008585069328546524, + -0.0391697958111763, + -0.056940291076898575, + -1.5386689483420923e-05, + -0.035114068537950516, + 0.014101660810410976, + -0.007097524590790272, + 0.04885551705956459, + -0.02042539417743683, + 0.03180544823408127, + 0.002990099135786295, + 0.031085023656487465, + 0.0273228008300066, + 0.0030568051151931286, + 0.013561341911554337, + -0.04151785001158714, + -0.020545465871691704, + -0.04933580011129379, + 0.015062227845191956, + 0.05187062919139862, + 0.054965790361166, + -0.04311879724264145, + -0.08725152164697647, + -0.0311117060482502, + 0.03335303068161011, + -0.015729287639260292, + 0.011173265054821968, + 0.012060455046594143, + 0.003895633853971958, + -0.003969010431319475, + -0.05976862832903862, + 0.042851973325014114, + -0.011853666044771671, + 0.00658055255189538, + 0.033326346427202225, + -0.046720921993255615, + 0.015449123457074165, + -0.029057158157229424, + 0.008731823414564133, + -0.027909815311431885, + 0.027082659304142, + -0.034420326352119446, + -0.017076751217246056, + 0.03311288729310036, + 0.0353008471429348, + 0.015048886649310589, + 0.022159753367304802, + -0.08170157670974731, + -0.0346604660153389, + 0.05355162173509598, + -0.05018963664770126, + 0.038742877542972565, + -0.08431645482778549, + -0.030364597216248512, + 0.03746212273836136, + 0.039836857467889786, + -0.019331416115164757, + -0.07193581014871597, + 0.08485010266304016, + -0.028230004012584686, + 0.10085956007242203, + 0.010539556853473186, + -0.0554460771381855, + -0.06686615198850632, + -0.09787112474441528, + -0.00687072379514575, + 0.022426577284932137, + 0.06131620705127716, + 0.024334369227290154, + -0.08874574303627014, + -0.017383597791194916, + -0.05120357125997543, + -0.0351407527923584, + 0.01879776641726494, + 0.027429530397057533, + -0.037889041006565094, + 0.06675942242145538, + 0.04063732922077179, + 0.04095751792192459, + 0.0018327489960938692, + 0.017143456265330315, + -0.10448837280273438, + 0.04450628161430359, + 0.02841678075492382, + -0.018997885286808014, + 0.12754198908805847, + 0.033406395465135574, + 0.017823858186602592, + 0.032259050756692886, + 0.093495212495327, + 0.0001784386986400932, + 0.046800971031188965, + -0.031138388440012932, + -0.022640036419034004, + -0.045626942068338394, + -0.03233909606933594, + 0.03004440851509571, + -0.020345347002148628, + -0.022399894893169403, + 0.004569365177303553, + -0.05838114023208618, + 0.04573367163538933, + -0.022626694291830063, + -0.03490060940384865, + 0.0021212527062743902, + 0.011553489603102207, + -0.040904153138399124, + -0.023627284914255142, + 0.027069319039583206, + -0.02214641124010086, + 0.07876650989055634, + 0.01905125007033348, + -0.0017143456498160958, + -0.004946254193782806, + -0.06499838083982468, + 0.012140502221882343, + -0.022279823198914528, + 0.012774210423231125, + 0.00526310782879591, + 0.08570394665002823, + -0.061583030968904495, + -0.007364348974078894, + 0.012560750357806683, + 0.025575103238224983, + -0.002764966106042266, + -0.0390097014605999, + -0.008158151060342789, + 0.03249919041991234, + 0.07535116374492645, + 0.04941584914922714, + -0.0346604660153389, + -0.01803731732070446, + 0.013407917693257332, + 0.056940291076898575, + -0.03786235675215721, + 0.032259050756692886, + -0.010592921636998653, + -0.01879776641726494, + 0.026228822767734528, + 0.04274524375796318, + -0.0691608414053917, + 0.033246301114559174, + 0.02780308574438095, + -0.024881359189748764, + 0.06377099454402924, + 0.004125769715756178, + -0.0552859790623188, + 0.07503097504377365, + -0.005343155469745398, + 0.01578265242278576, + -0.030177820473909378, + 0.027216071262955666, + -0.07561798393726349, + -0.00737769016996026, + 0.010266061872243881, + 0.001515895128250122, + -0.05032305046916008, + 0.011179935187101364, + 0.02477462962269783, + 0.05387181416153908, + 0.017290210351347923, + 0.014702015556395054, + -0.03407345339655876, + 0.08255542069673538, + 0.08613086491823196, + 0.032926108688116074, + 0.011133241467177868, + 0.04576035588979721, + 0.018837790936231613, + -0.05565953627228737, + 0.10486192256212234, + 0.012227220460772514, + 0.009572319686412811, + -0.011366711929440498, + -0.00625035772100091, + -0.0857573077082634, + 0.027829768136143684, + -0.03452705591917038, + 0.04704111069440842, + -0.07006804645061493, + -0.03375326469540596, + 0.047574762254953384, + 0.002895042998716235, + 0.06425127387046814, + 0.07908670604228973, + 0.021812880411744118, + -0.023960815742611885, + 0.02943071350455284, + 0.017743811011314392, + 0.060889288783073425, + 0.008378281258046627, + -0.06771998852491379, + -0.005046313162893057, + -0.03876956179738045, + -0.028043227270245552, + -0.04805504530668259, + -0.041464485228061676, + 0.032392460852861404, + 0.014275096356868744, + 0.009812461212277412, + -0.011286664754152298, + 0.005279784556478262, + 0.051123522222042084, + 0.029937678948044777, + -0.03081819787621498, + 0.037808991968631744, + 0.0175703763961792, + -0.02190626971423626, + -0.03994358703494072, + -0.0014133346267044544, + 0.021932952105998993, + 0.009178753942251205, + 0.01779717579483986, + -0.015235663391649723, + -0.11676228046417236, + -0.015342392958700657, + -0.07652518898248672, + -0.012307267636060715, + -0.009625684469938278, + 0.005680020898580551, + 0.05219082161784172, + 0.036261413246393204, + 0.0179706122726202, + 0.08885247260332108, + -0.04514665901660919, + 0.005800091661512852, + 0.0707617849111557, + -0.017476987093687057, + 0.01083306409418583, + -0.015662582591176033, + 0.09338848292827606, + 0.03938325494527817, + -0.013067716732621193, + -0.009532296098768711, + 0.013101070187985897, + 0.07604490965604782, + 0.016436371952295303, + 0.030711468309164047, + 0.01053288672119379, + -0.0797804445028305, + -0.036821745336055756, + 0.052617739886045456, + 0.0276429895311594, + -0.00662057613953948, + -0.0013758124550804496, + -0.02780308574438095, + 0.014648650772869587, + -0.02709600143134594, + 0.014355143532156944, + -0.1282890886068344, + -0.10667632520198822, + -0.04181135818362236, + 0.018597649410367012, + -0.05736720934510231, + -0.02964417263865471, + -0.0001555085036670789, + 0.04066401347517967, + -0.008498352020978928, + -0.006380434613674879, + 0.0793001651763916, + -0.04482647031545639, + 0.022159753367304802, + 0.06734643876552582, + 0.034260232001543045, + 0.03423354774713516, + -0.069000743329525, + 0.11067868769168854, + 0.014661991968750954, + -0.12273914366960526, + 0.006737311836332083, + -0.027696356177330017, + -0.08741161972284317, + 0.0012132164556533098, + 0.008931941352784634, + 0.04218491166830063, + 0.027055976912379265, + -0.062436871230602264, + -0.04381253942847252, + 0.0467476062476635, + 0.013574683107435703, + 0.02516152523458004, + -0.010539556853473186, + -0.05171053484082222, + 0.09023995697498322, + -0.009252130053937435, + -0.02501477114856243, + 0.0017410281579941511, + 0.02314700186252594, + 0.037115249782800674, + 0.01750366948544979, + 0.005466561298817396, + 0.03732870891690254, + 0.02214641124010086, + -0.030791515484452248, + 0.08223523199558258, + 0.023587262257933617, + 0.03871619701385498, + -0.0011882017133757472, + -0.03615468367934227, + -0.033246301114559174, + -0.03303283825516701, + 0.0038989691529423, + -0.010166003368794918, + -0.022893518209457397, + 0.03361985459923744, + 0.006220339797437191, + 0.008191503584384918, + -0.012247231788933277, + 0.02175951562821865, + -0.03297947347164154, + 0.003568774089217186, + 0.009118718095123768, + -0.02393413335084915, + -0.024214299395680428, + 0.014848768711090088, + 0.00010068445408251137, + 0.05715375021100044 + ] + }, + { + "id": "fc8b8387-5379-4068-babf-bffdd99a46b3", + "productId": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "category": "Other", + "docType": "customerRating", + "userName": "cranecheryl", + "reviewDate": "2022-08-31T11:50:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4438bcd4-72e1-4f62-b3cb-9f97aa1625dc", + "productId": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "category": "Other", + "docType": "customerRating", + "userName": "meghan77", + "reviewDate": "2022-02-04T20:02:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "abcd7abe-326e-481b-aee4-5b2a4c362314", + "productId": "2b193e1b-191a-4f65-a8b0-ef7fb33e44bc", + "category": "Other", + "docType": "customerRating", + "userName": "usanders", + "reviewDate": "2022-02-26T09:01:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse 3000 (Black)", + "description": "This Premium Mouse 3000 (Black) is available in a Limited Edition from Mango. They came with a 4\" wide and 6\" height cap so they have ample room", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-01-05T21:37:29", + "price": 121.07, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-03-06T11:10:57", + "newPrice": 125.69 + }, + { + "priceDate": "2024-07-16T11:10:57", + "newPrice": 121.07 + } + ], + "descriptionVector": [ + -0.09168150275945663, + 0.016895199194550514, + -0.028904376551508904, + 0.0056065707467496395, + 0.049628786742687225, + -0.02934356965124607, + -0.032747313380241394, + 0.07252171635627747, + 0.013196371495723724, + 0.0005022410186938941, + 0.038758765906095505, + 0.0007681585266254842, + 0.0034311937633901834, + -0.06187128648161888, + -0.014232591725885868, + 0.013223821297287941, + -0.08190946280956268, + -0.008735819719731808, + 0.040186140686273575, + -0.01471295952796936, + 0.03486092761158943, + -0.006567304953932762, + -0.04254680499434471, + 0.05009543150663376, + -0.019887199625372887, + -0.03002980910241604, + 0.0056374515406787395, + -0.02104008011519909, + 0.042272306978702545, + 0.06121249869465828, + -0.015165876597166061, + 0.02970041334629059, + 0.0538560189306736, + 0.024347752332687378, + -0.049464091658592224, + -0.04032339155673981, + -0.02194591611623764, + 0.04073513299226761, + 0.08844245225191116, + -0.04111942648887634, + -0.005071304272860289, + -0.005733524914830923, + -0.008955416269600391, + -0.04073513299226761, + 0.00018292551976628602, + -0.014822757802903652, + -0.009058351628482342, + -0.04131157323718071, + -0.024786943569779396, + 0.019996996968984604, + 0.002412129193544388, + 0.013621839694678783, + -0.08212905377149582, + -0.026735862717032433, + 0.008571121841669083, + 0.012709141708910465, + 0.023647787049412727, + 0.1988445520401001, + 0.07899980992078781, + -0.01310029812157154, + 0.007610388100147247, + -0.051138512790203094, + 0.0013681885320693254, + 0.05391091853380203, + -0.05429521203041077, + -0.08344663679599762, + -0.020491089671850204, + -0.02390855923295021, + 0.05259333923459053, + 0.04759752005338669, + -0.06922776997089386, + -0.026118246838450432, + 0.03845681995153427, + 0.03782548010349274, + 0.03840192034840584, + 0.05166005343198776, + 0.06335356086492538, + -0.036507900804281235, + -0.014987454749643803, + 0.002712358720600605, + 0.037990178912878036, + -0.008996590040624142, + -0.025226136669516563, + 0.0704355463385582, + 0.06763569265604019, + 0.039582252502441406, + -0.03820977360010147, + -0.07641954720020294, + 0.005383543204516172, + 0.004807102493941784, + -4.173725756118074e-05, + 0.0875091701745987, + 0.052209045737981796, + -0.06456134468317032, + -0.014973729848861694, + -0.01275031641125679, + -0.007212369237095118, + 0.04315069317817688, + -0.033570799976587296, + -0.04208016023039818, + 0.07131393253803253, + 0.017869656905531883, + -0.07032574713230133, + -0.006354570854455233, + -0.013484591618180275, + 0.041339024901390076, + -0.041339024901390076, + -0.02104008011519909, + -0.05207179859280586, + -0.14427484571933746, + 0.02010679617524147, + -0.014383564703166485, + -0.03689219802618027, + 0.014109069481492043, + -0.08394072949886322, + 0.06110269948840141, + -0.039746951311826706, + -0.03217087313532829, + -0.022124337032437325, + 0.020669512450695038, + -0.0094838198274374, + 0.001592931686900556, + -0.0011245737550780177, + 0.033735498785972595, + 0.018116703256964684, + -0.0170736201107502, + -0.018775492906570435, + -0.01948918029665947, + 0.06247517839074135, + -0.10842572897672653, + -0.05325212702155113, + 0.11243335902690887, + 0.03969205170869827, + 0.059236131608486176, + -0.044358473271131516, + 0.024334026500582695, + 0.017306942492723465, + 0.05918123200535774, + -0.01369046326726675, + 0.09481074661016464, + -0.037743132561445236, + -0.018459822982549667, + 0.005222277250140905, + 0.022865476086735725, + -0.04960133880376816, + 0.02852008305490017, + -0.06725139915943146, + 0.03129248693585396, + -0.03085329569876194, + 0.04408397898077965, + 0.018446099013090134, + -0.10266131907701492, + 0.05149535834789276, + -0.05742445960640907, + 0.05470695346593857, + 0.045785851776599884, + -0.10798653215169907, + -0.016936372965574265, + -0.057644058018922806, + 0.08443481475114822, + 0.04479766637086868, + 0.0092985350638628, + 0.019297033548355103, + 0.009154425002634525, + 0.04375458508729935, + 0.021259676665067673, + 0.017801033332943916, + -0.05758915841579437, + -0.039609700441360474, + 0.021479273214936256, + -0.0028873495757579803, + -0.0546795055270195, + 0.028094615787267685, + -0.05009543150663376, + 0.047789666801691055, + -0.015865840017795563, + -0.003595891175791621, + 0.051138512790203094, + 0.02248118259012699, + -0.0008209131192415953, + 0.06681220978498459, + 0.0696120634675026, + -0.06664750725030899, + -0.01785593293607235, + 0.019420556724071503, + 0.03162188082933426, + 0.06659261137247086, + 0.05569513887166977, + 0.024347752332687378, + -0.07268641144037247, + 0.02508888952434063, + -0.002110184170305729, + 0.013093436136841774, + -0.028904376551508904, + 0.06027921289205551, + 0.0752117708325386, + -0.06845918297767639, + 0.07856061309576035, + -0.011604297906160355, + -0.03137483820319176, + 0.0026351569686084986, + 0.020573439076542854, + 0.04216251149773598, + 0.07180802524089813, + -0.012866976670920849, + -0.006931011565029621, + -0.07609015703201294, + 0.009916150011122227, + 0.014891381375491619, + 0.02132830023765564, + -0.03252771869301796, + -0.03969205170869827, + 0.007088846527040005, + -0.054569706320762634, + 0.06373785436153412, + 0.006323690060526133, + 0.010478866286575794, + 0.016003087162971497, + -0.021547896787524223, + -0.07383929193019867, + 0.06933756172657013, + 0.02157534658908844, + -0.020367566496133804, + -0.01998327299952507, + -0.02023031935095787, + 0.05487165227532387, + 0.07361969351768494, + 0.061596792191267014, + 0.0185970701277256, + 0.031237589195370674, + -0.05610688030719757, + -0.04606034606695175, + -0.01723831705749035, + -0.004220368340611458, + -0.013457141816616058, + 0.06714159995317459, + -0.0724119171500206, + -0.01564624346792698, + 0.01405416987836361, + 0.07383929193019867, + -0.053197231143713, + 0.011590573005378246, + -0.025226136669516563, + 0.034064892679452896, + 0.05218159407377243, + -0.029672963544726372, + 0.06335356086492538, + -0.03192382678389549, + -0.09184619784355164, + -0.00038558040978387, + -0.07049044966697693, + 0.046362292021512985, + -0.03093564324080944, + 0.05618923157453537, + 0.012516994960606098, + 0.03626085817813873, + 0.04065278545022011, + -0.016977546736598015, + -0.06461624056100845, + -0.025857476517558098, + 0.0010207801824435592, + 0.04120177403092384, + -0.0520443469285965, + 0.006862387526780367, + -0.022261586040258408, + 0.04886019974946976, + 0.010705324821174145, + -0.05940082669258118, + -0.0008367823902517557, + -0.002669468754902482, + -0.013663013465702534, + 0.0022182667162269354, + 0.07696854323148727, + -0.05610688030719757, + 0.006896699778735638, + -0.003932148218154907, + -0.021273402497172356, + 0.03840192034840584, + 0.017293216660618782, + -0.014767858199775219, + 0.030908193439245224, + 0.04638973996043205, + 0.04298599809408188, + 0.0371117927134037, + 0.01256503164768219, + -0.007260406389832497, + 0.010568076744675636, + 0.07153353095054626, + -0.0017018720973283052, + -0.0689532682299614, + -0.004896313417702913, + 0.03601381182670593, + 0.004501726478338242, + 0.0017825051909312606, + 0.036041259765625, + -0.0069893416948616505, + 0.04951899126172066, + 0.07350989431142807, + -0.0278338436037302, + 0.006062919739633799, + -0.05901653319597244, + -0.0017095922958105803, + -0.1428474634885788, + -0.06659261137247086, + 0.09168150275945663, + 0.05676567181944847, + -0.06379275768995285, + -0.05316977947950363, + -0.0371117927134037, + 0.015481546521186829, + 0.03856661915779114, + 0.009401471354067326, + -0.08130557090044022, + -0.017553986981511116, + 0.06500053405761719, + -0.031814027577638626, + 0.05358152464032173, + 0.020779309794306755, + 0.008337801322340965, + -0.014452188275754452, + -0.010952371172606945, + -0.023977182805538177, + -0.0344766341149807, + 0.06560442596673965, + 0.021465549245476723, + -0.0551735982298851, + -0.09991636127233505, + 0.0271750558167696, + 0.013134609907865524, + -0.04891509935259819, + -0.050616972148418427, + -0.04155861958861351, + 0.005534515716135502, + -0.07532157003879547, + 0.03870386630296707, + -0.0349707268178463, + 0.013621839694678783, + 0.017265766859054565, + 0.028739679604768753, + 0.02566532976925373, + 0.02447127364575863, + 0.09689691662788391, + -0.0526207871735096, + 0.018212776631116867, + 0.008262314833700657, + -0.050644420087337494, + 0.015110977925360203, + -0.04136647284030914, + 0.0180206298828125, + 0.024567347019910812, + 0.0017336106393486261, + -0.11408033221960068, + 0.01961270347237587, + 0.03543737158179283, + 0.04065278545022011, + 0.02766914665699005, + -0.02766914665699005, + 0.012880701571702957, + -0.0054590292274951935, + 0.022810576483607292, + -0.06335356086492538, + -0.02517123892903328, + -0.009024039842188358, + 0.026708412915468216, + -0.007418240886181593, + 0.0901443213224411, + 0.0365353524684906, + 0.029920009896159172, + 0.004371340852230787, + -0.02843773365020752, + 0.04438592493534088, + -0.04221740737557411, + -0.04306834563612938, + 0.037441186606884, + -0.06675730645656586, + 0.0069344425573945045, + 0.051056165248155594, + 0.04290364682674408, + -0.026749586686491966, + -0.007727048359811306, + -0.027737770229578018, + 0.06247517839074135, + -0.0016160922823473811, + 0.0279985424131155, + 0.07449807971715927, + -0.02942591905593872, + -0.024484999477863312, + -0.03856661915779114, + 0.0367823988199234, + 0.04304089397192001, + 0.040927279740571976, + 0.024210503324866295, + -0.0035753040574491024, + 0.02562415599822998, + 0.015083528123795986, + -0.0373588390648365, + 0.03019450604915619, + 0.06478094309568405, + -0.038923464715480804, + 0.013148334808647633, + -0.036590252071619034, + -0.02696918323636055, + -0.06549462676048279, + 0.0015809225151315331, + -0.024814393371343613, + -0.030990542843937874, + 0.09837918728590012, + 0.05133065953850746, + -0.0753764659166336, + -0.046197593212127686, + -0.003705689450725913, + 0.013251270167529583, + 0.028465183451771736, + 0.04139392077922821, + 0.0023692394606769085, + -0.06247517839074135, + 0.0725766122341156, + -0.037660785019397736, + -0.0022731658536940813, + -0.07482747733592987, + 0.025116339325904846, + 0.003949304111301899, + -0.00819369126111269, + 0.017540263012051582, + -0.03952735289931297, + -0.01748536340892315, + -0.0534442737698555, + 0.04466041922569275, + 0.003463790286332369, + -0.0005374107277020812, + -0.009243636392056942, + -0.04279385134577751, + -0.036425553262233734, + -0.018706869333982468, + -0.01994209922850132, + 0.046444639563560486, + -0.002388110850006342, + 0.08383093029260635, + 0.03280221298336983, + 0.06176149100065231, + 0.008042718283832073, + -0.04224485903978348, + 0.048448458313941956, + 0.002825588220730424, + -0.002712358720600605, + 0.03321395814418793, + 0.008756406605243683, + 0.008104479871690273, + 0.034064892679452896, + -0.010808260180056095, + -0.033406104892492294, + -0.016826573759317398, + -0.06104779988527298, + 0.027682872489094734, + 0.0888267457485199, + -0.04128412529826164, + 0.0743882805109024, + 0.023798760026693344, + -0.012407196685671806, + -0.010650425218045712, + -0.01843237318098545, + 0.0366177000105381, + 0.040844932198524475, + 0.01091119647026062, + 0.0054761855863034725, + -0.051467906683683395, + -0.048283759504556656, + 0.0539383664727211, + -0.013340481556952, + 0.06154189258813858, + -0.036425553262233734, + 0.022330209612846375, + -0.032143425196409225, + 0.0176500603556633, + 0.004580643959343433, + -0.047542620450258255, + 0.06110269948840141, + 0.04103707894682884, + 0.017416739836335182, + 0.035656966269016266, + 0.048366107046604156, + 0.04089983180165291, + -0.02475949563086033, + 0.0697767585515976, + 0.007349617313593626, + -0.05638137832283974, + 0.020930282771587372, + 0.01924213580787182, + 0.038182325661182404, + 0.04015869274735451, + 0.06741609424352646, + 0.08064678311347961, + 0.0019574961625039577, + -0.0542677603662014, + -0.05316977947950363, + -0.011178829707205296, + 0.0364530049264431, + -0.001189766451716423, + -0.006728570908308029, + 0.048777852207422256, + 0.03697454556822777, + 0.01936565712094307, + -0.027120156213641167, + 0.005448735784739256, + 0.07630974799394608, + 0.03019450604915619, + -0.04158606752753258, + 0.005078166723251343, + -0.012118976563215256, + -0.08553279936313629, + 0.03672749921679497, + 0.0024670283310115337 + ] + }, + { + "id": "7bc08bcb-85e9-4d08-8ec8-a4f1ac905d70", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vpalmer", + "reviewDate": "2022-07-06T05:57:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ca77a95e-31c1-465b-b618-039d096839ab", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "samanthaknight", + "reviewDate": "2021-08-21T18:54:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "df9dcc6c-6444-4e14-bb92-36b48cce1903", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sherry69", + "reviewDate": "2022-10-22T23:32:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fdbca040-ac5d-4894-841e-9265e65caa3a", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessefields", + "reviewDate": "2022-01-18T16:16:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8d20b49c-34da-4214-9fb8-6e2e4c50c79d", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fhatfield", + "reviewDate": "2021-03-06T11:10:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "35be4e79-8ffc-4458-ab53-b45bb5328ce4", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fieldsjean", + "reviewDate": "2022-03-03T05:52:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea2ec74c-d7df-49ea-8798-c040264b65fc", + "productId": "1ab7d4bc-d578-463e-b275-44d8561fd436", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsmindy", + "reviewDate": "2022-05-05T16:20:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Silver)", + "description": "This Amazing Keyboard Ultra (Silver) is available from Amazon and other retailers.\n\nThis Ultra Keyboard is designed to be as fast and as powerful as all existing Super Nintendo keyboards. With the 3.4GHz Cortex-A7 processor, this Super Nintendo laptop is ready to challenge the powerful but simple-to-use Nintendo Nintendo Classic. With an", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-05-16T15:53:41", + "price": 1015.89, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-02-06T09:34:38", + "newPrice": 1074.67 + }, + { + "priceDate": "2021-09-19T09:34:38", + "newPrice": 969.98 + }, + { + "priceDate": "2022-05-02T09:34:38", + "newPrice": 930.57 + }, + { + "priceDate": "2022-12-13T09:34:38", + "newPrice": 1072.67 + }, + { + "priceDate": "2023-08-11T09:34:38", + "newPrice": 1015.89 + } + ], + "descriptionVector": [ + 0.015865487977862358, + 0.015301280654966831, + -0.04752875864505768, + 0.0032413664739578962, + 0.007233127485960722, + -0.10083498805761337, + 0.0018703446257859468, + 0.014928904362022877, + 0.005069395527243614, + 0.07393362373113632, + 0.03771156445145607, + -0.026833662763237953, + 0.046626027673482895, + -0.09532833099365234, + -0.00024331406166311353, + -0.00849130842834711, + -0.07276007533073425, + -0.012209429405629635, + 0.0012652331497520208, + 0.04394040256738663, + 0.007300832308828831, + -0.028165189549326897, + -0.046400345861911774, + -0.03996839001774788, + 0.00858722347766161, + -0.017919199541211128, + -0.007865038700401783, + 0.004996048752218485, + 0.01943127252161503, + 0.00805686879903078, + 0.042744286358356476, + -0.00923606101423502, + 0.00602008355781436, + 0.04301510378718376, + 0.021090039983391762, + 0.01708417385816574, + -0.051591046154499054, + -0.007058223709464073, + 0.017772505059838295, + -0.10128635913133621, + 0.025411861017346382, + 0.013439399190247059, + 0.0024740456137806177, + 0.0464906170964241, + -0.006375533528625965, + 0.06278490275144577, + 0.014409834519028664, + 0.011701643466949463, + -0.012378690764307976, + 0.026607979089021683, + 0.07515230774879456, + 0.007628072053194046, + -0.05294514074921608, + -0.04807039722800255, + 0.03669599071145058, + -0.04992099478840828, + -0.02678852528333664, + 0.07190247625112534, + 0.057323381304740906, + -0.03315277397632599, + 0.029970651492476463, + -0.07095461338758469, + 0.021688098087906837, + -0.0011213604593649507, + 0.03556757792830467, + -0.030489720404148102, + -0.03595123812556267, + 0.006809972692281008, + 0.04960503801703453, + 0.015459259040653706, + -0.016260432079434395, + -0.001954975537955761, + 0.00394380372017622, + 0.02733016386628151, + 0.02150755189359188, + 0.011814484372735023, + 0.07510717213153839, + 0.010279842652380466, + 0.05222295597195625, + 0.03534189611673355, + 0.0514104999601841, + -0.020367855206131935, + -0.02399006113409996, + -0.0350259393453598, + 0.07564881443977356, + 0.02766868844628334, + 0.03317534551024437, + -0.09641160815954208, + -0.06743396073579788, + 0.06468063592910767, + -0.09000222384929657, + 0.0012983803171664476, + 0.03554501011967659, + -0.000412223394960165, + -0.0009972350671887398, + 0.0410742349922657, + -0.11130665987730026, + 0.024802519008517265, + -0.014082594774663448, + -0.018178734928369522, + 0.065267413854599, + -0.007176707033067942, + -0.020446844398975372, + -0.019047612324357033, + -0.04290226474404335, + 0.00065518484916538, + 0.02624688670039177, + 0.018099745735526085, + -0.020266298204660416, + -0.07036783546209335, + 0.0005448119482025504, + -0.020999766886234283, + -0.03674113005399704, + -0.03459714353084564, + -0.0021171849220991135, + 0.04730307683348656, + -0.08503720909357071, + 0.014940189197659492, + -0.029948081821203232, + -0.02550213411450386, + 0.04364701732993126, + 0.0006685847183689475, + -0.007769123651087284, + 0.05479573830962181, + -0.005379709415137768, + -0.00029180056299082935, + -0.038952820003032684, + 0.049559902399778366, + 2.536725514801219e-05, + -0.023403286933898926, + -0.09289096295833588, + 0.01772736944258213, + -0.013281421735882759, + 0.03622205927968025, + -0.07072892785072327, + 0.010420894250273705, + -0.0028915584553033113, + 0.09930034726858139, + -0.025366725400090218, + 0.04549761489033699, + -0.030331742018461227, + 0.03888511285185814, + 0.028007211163640022, + -0.0073234005831182, + -0.11870905011892319, + -0.023267876356840134, + -0.011261561885476112, + 0.05578874051570892, + 0.047709304839372635, + 0.021575257182121277, + 0.0514104999601841, + -0.035702988505363464, + -0.0676596462726593, + -0.06969079375267029, + -0.031618133187294006, + 0.05804556608200073, + -0.07596476376056671, + -0.02789437025785446, + 0.0477544404566288, + 0.11383430659770966, + -0.07424958050251007, + 0.036380037665367126, + -0.022116895765066147, + -0.04698712006211281, + -0.009546373970806599, + 0.04475286230444908, + 0.005901600234210491, + 0.06698259711265564, + -0.028909942135214806, + 0.04540733993053436, + 0.012807488441467285, + 0.03380725532770157, + -0.021022334694862366, + -0.056240107864141464, + 0.08138114959001541, + 0.019487693905830383, + 0.04644548147916794, + -0.06079889461398125, + -0.016384556889533997, + -0.062288399785757065, + 0.0005694959545508027, + -0.0013174222549423575, + -0.053215958178043365, + 0.011278488673269749, + 0.0802527368068695, + -0.0001600936084287241, + 0.02022116258740425, + 0.04190926253795624, + 0.0093545438721776, + 0.0003632079460658133, + -0.020886925980448723, + -0.01053937803953886, + -0.11058448255062103, + -0.018235154449939728, + -0.06901374459266663, + 0.08436015993356705, + 0.01189347356557846, + 0.026495138183236122, + -0.015526963397860527, + 0.051049407571554184, + 0.03491310030221939, + 0.04421122372150421, + 0.021214164793491364, + -0.026337159797549248, + 0.008073795586824417, + 0.0077804080210626125, + -0.021665530279278755, + 0.0007070213323459029, + 0.022951921448111534, + -0.0067196995951235294, + 0.041661009192466736, + 0.0347776897251606, + 0.03568042069673538, + -0.0374181754887104, + 0.10200853645801544, + 0.003861993784084916, + 0.005354320164769888, + -0.008513876236975193, + -0.05362218990921974, + -0.08007218688726425, + -0.01404874213039875, + -0.001804050407372415, + 0.0332656167447567, + -0.0332656167447567, + -0.003424733644351363, + -0.04680657386779785, + 0.03141501918435097, + 0.01258180569857359, + 0.01975851319730282, + 0.024396291002631187, + -0.08914463222026825, + -0.036380037665367126, + 0.017479117959737778, + 0.027081912383437157, + -0.023425854742527008, + 0.002423267113044858, + -0.012875192798674107, + -0.051049407571554184, + -0.10291127115488052, + 0.09031818062067032, + 0.05944480001926422, + -0.02766868844628334, + -0.03651544824242592, + -0.05714283883571625, + 0.022827796638011932, + -0.0706837922334671, + 0.0929812341928482, + 0.03739560768008232, + -0.0701872929930687, + 0.014421118423342705, + -0.07980137318372726, + 0.018505973741412163, + 0.009117577224969864, + 0.05285486578941345, + -0.03631233051419258, + 0.06734368950128555, + 0.03152786195278168, + 0.0026686969213187695, + 0.02301962673664093, + -0.05705256387591362, + -0.0171970147639513, + -0.05574360489845276, + -0.004603925161063671, + 0.07199275493621826, + -0.11293157935142517, + 0.002043838147073984, + 0.010781986638903618, + -0.046851709485054016, + 0.0029846525285393, + -0.005833895411342382, + 0.012198145501315594, + 0.003664521500468254, + 0.0010832765838131309, + -0.02310989983379841, + -0.012830056250095367, + 0.017885345965623856, + -0.0428345613181591, + 0.07745426893234253, + 0.05172645300626755, + -0.016034750267863274, + 0.034867964684963226, + 0.09406451135873795, + 0.030963653698563576, + 0.006855109240859747, + 0.0550665557384491, + 0.025208747014403343, + -0.008254341781139374, + 0.0011820127256214619, + 0.03710222244262695, + 0.02529902011156082, + -0.023380719125270844, + -0.0022554155439138412, + -0.003069283440709114, + 0.05542764812707901, + 0.014849916100502014, + 0.0022455418948084116, + 0.10137663036584854, + -0.01258180569857359, + -0.04937935620546341, + 0.019724659621715546, + 0.04583613947033882, + -0.05470546334981918, + -0.03608664870262146, + -0.0658993199467659, + -0.030850812792778015, + 0.0695553794503212, + -0.00863800197839737, + 0.03626719489693642, + -0.004739334806799889, + 0.016170158982276917, + 0.03983297944068909, + -0.012525385245680809, + -0.010607082396745682, + -0.02052583359181881, + 0.088964082300663, + -0.023809514939785004, + 0.021090039983391762, + 0.09045358747243881, + -0.033671844750642776, + 0.012784919701516628, + -0.029045352712273598, + -0.03845631703734398, + -0.05578874051570892, + 0.10318209230899811, + 0.034100644290447235, + -0.02151883766055107, + -0.019724659621715546, + 0.017230866476893425, + -0.01269464660435915, + -0.057639338076114655, + 0.003856351599097252, + 0.032137203961610794, + -0.021225448697805405, + -0.0033203554339706898, + 0.03520648553967476, + -0.060437802225351334, + 0.007306474726647139, + 0.1270141750574112, + 0.06346195191144943, + 0.04680657386779785, + 0.09370341897010803, + -0.027397869154810905, + 0.020695095881819725, + 0.009021662175655365, + -0.06292030960321426, + -0.03649287670850754, + -0.06517713516950607, + -0.036921676248311996, + 0.023854652419686317, + 0.027510710060596466, + 0.0013146011624485254, + -0.054840873926877975, + 0.0815165564417839, + -0.006132924929261208, + 0.03234031796455383, + -0.009772056713700294, + -0.003139809239655733, + -0.017253436148166656, + -0.006905887741595507, + 0.031144199892878532, + -0.013811775483191013, + -0.030986221507191658, + 0.04193183034658432, + 0.021586541086435318, + -0.07506203651428223, + 0.061114851385354996, + 0.03425861895084381, + -0.022398998960852623, + 0.05005640164017677, + -0.013518388383090496, + 0.012626942247152328, + -0.08544343709945679, + -0.06147594377398491, + 0.02203790657222271, + 0.008581581525504589, + 0.029361307621002197, + -0.007261338178068399, + -0.029564421623945236, + 0.013416831381618977, + 0.05132022500038147, + 0.02789437025785446, + 0.0414578951895237, + -0.044910840690135956, + -0.0005116647807881236, + 0.03710222244262695, + -0.03791467845439911, + -0.01387948077172041, + -0.05154590681195259, + 0.05416382476687431, + 0.05736852064728737, + -0.01399232167750597, + 0.0432182215154171, + -0.003196229925379157, + 0.013529672287404537, + -0.0076393564231693745, + -0.006821257062256336, + 0.08205819875001907, + 0.08828704059123993, + -0.005800043232738972, + 0.05854206904768944, + 0.007825544103980064, + 0.06115998700261116, + 0.05028208717703819, + -0.06869778782129288, + -0.03252086415886879, + -0.10273072123527527, + -0.03504851087927818, + 0.06039266660809517, + -0.029767535626888275, + -0.0670277327299118, + -0.03784697502851486, + -0.024486564099788666, + -0.05177159234881401, + -0.02193634957075119, + -0.00049685436533764, + 0.013563524931669235, + 0.11627168208360672, + 0.05001126602292061, + 0.0646355003118515, + -0.046941984444856644, + 0.019702091813087463, + -0.007684492971748114, + 0.030941085889935493, + 0.03924620524048805, + 0.029406443238258362, + 0.007650640327483416, + 0.025885796174407005, + -0.034078072756528854, + 0.01674564927816391, + -0.007171065080910921, + 0.03272397816181183, + -0.048386350274086, + 0.00729519035667181, + -0.0035291118547320366, + -0.08923490345478058, + -0.07880836725234985, + 0.011746780015528202, + 0.05511169508099556, + 0.0033457446843385696, + 0.06170162558555603, + -0.027849234640598297, + -0.054750602692365646, + -0.04689684510231018, + -0.008858042769134045, + -0.03940418362617493, + 0.00794966984540224, + -0.013055738992989063, + 0.08891894668340683, + 0.08305119723081589, + -0.0689234659075737, + -0.009196566417813301, + -0.0019930596463382244, + -0.05249377340078354, + 0.03405550494790077, + 0.12105615437030792, + -0.001887270831502974, + -0.0173888448625803, + 0.09397424012422562, + -0.023967493325471878, + 0.05163618177175522, + 0.007915817201137543, + 0.0033739551436156034, + 0.01804332435131073, + -0.09307150542736053, + -0.020830504596233368, + -0.04021663963794708, + -0.02279394306242466, + -0.017535539343953133, + -0.017783788964152336, + 0.035928670316934586, + 0.009958244860172272, + -0.09022790938615799, + 0.033243048936128616, + -0.014917620457708836, + 0.010155717842280865, + -0.04820580407977104, + 0.042721718549728394, + 0.019747229292988777, + -0.003407807322219014, + 0.03265627473592758, + 0.002067816909402609, + -0.02581809088587761, + 0.016023464500904083, + -0.04161587357521057, + 0.01123899407684803, + -0.05903857201337814, + -0.0635070875287056, + 0.05768447369337082, + 0.05633037909865379, + 0.010996385477483273, + 0.04928908124566078, + 0.038298338651657104, + 0.004809860605746508, + -0.06923942267894745, + -0.03568042069673538, + 0.011205141432583332, + -0.010505525395274162, + 0.02096591517329216, + -0.040690574795007706, + 0.12710444629192352, + -0.02951928600668907, + -0.010020308196544647, + 0.0004450179112609476, + 0.013067022897303104, + -0.01317986473441124, + 0.007018729113042355, + -0.033874958753585815, + 0.051500771194696426, + 0.008006090298295021, + 0.04075827822089195, + 0.01922815851867199, + -0.006087788380682468 + ] + }, + { + "id": "03767461-90ea-4059-9765-dda87f05bae0", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mcculloughlaura", + "reviewDate": "2021-02-27T22:04:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7f4642bb-6bfb-40ff-8787-8ded81b3a88b", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amarshall", + "reviewDate": "2021-07-09T04:26:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "bf9f9c4c-acd8-4f54-9108-7e13bea4c1b7", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "howardamanda", + "reviewDate": "2021-05-04T01:26:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "66095c49-eb2a-44a1-b86c-7144e6f9b6b6", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anelson", + "reviewDate": "2021-09-26T19:22:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "212b8e14-7d25-4936-a5a2-ab892fce9327", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisarobertson", + "reviewDate": "2021-10-05T09:40:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0dea01bf-2ee3-4c19-ad98-16ab2f5ca29f", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dustin66", + "reviewDate": "2021-06-14T18:49:12", + "stars": 4, + "verifiedUser": true + }, + { + "id": "604688a9-3793-4f5c-84c4-6e0cb1f909f4", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frankparker", + "reviewDate": "2021-02-06T09:34:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "82e45313-b6d5-4509-b6b4-eba27752e57e", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "troystokes", + "reviewDate": "2021-06-28T20:33:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1b2e6a47-7ecb-4ab4-b903-cf498ffb4f9f", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "george40", + "reviewDate": "2022-03-18T09:16:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "47ea1a46-90d1-499b-bc1f-fa3befc19732", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "durhamjennifer", + "reviewDate": "2022-03-02T02:15:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "382c40c4-1291-4922-ac66-ffce4ada1791", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michaelanderson", + "reviewDate": "2022-12-15T22:01:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d5525069-8764-4867-b81f-3a0934d68063", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charles87", + "reviewDate": "2021-02-17T00:16:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a2611cc7-cb82-4e5f-8774-a34e93171b2e", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashleyrogers", + "reviewDate": "2021-06-17T17:54:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "41d8e5b9-f90f-41e3-baa9-a2dfba6fd016", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carrielopez", + "reviewDate": "2021-02-09T04:31:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b70f611c-186a-46e2-941f-24745e28a766", + "productId": "ff188a3d-6b43-46ea-b552-7de7817a0fb9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zacharychavez", + "reviewDate": "2021-04-28T03:00:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Steel)", + "description": "This Amazing Keyboard Ultra (Steel) is just as good as it sounds and is much cheaper than your normal keyboard. You can purchase it for $249.95 but for reference, that price includes the whole setup.\n\nFor $279.05 your first order can ship at no extra cost, and you'll get a key", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-07-27T19:53:18", + "price": 926.77, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-01-17T14:18:11", + "newPrice": 902.23 + }, + { + "priceDate": "2021-09-10T14:18:11", + "newPrice": 907.03 + }, + { + "priceDate": "2022-05-04T14:18:11", + "newPrice": 904.03 + }, + { + "priceDate": "2022-12-26T14:18:11", + "newPrice": 988.8 + }, + { + "priceDate": "2023-05-26T14:18:11", + "newPrice": 926.77 + } + ], + "descriptionVector": [ + 0.01848287135362625, + 0.012882360257208347, + -0.025575274601578712, + -0.03239534795284271, + -0.005342982709407806, + -0.06119121238589287, + -0.010123546235263348, + 0.05967564135789871, + -0.01958402991294861, + 0.06109648942947388, + 0.024651722982525826, + -0.046319663524627686, + 0.024580681696534157, + -0.057449646294116974, + 0.015830621123313904, + -0.02512533962726593, + -0.025954168289899826, + -0.0020794712472707033, + -0.06659043580293655, + 0.005573870614171028, + 0.0013150250306352973, + 0.025409508496522903, + -0.03365043178200722, + -0.04549083486199379, + -0.04809572547674179, + -0.03554489463567734, + -0.017642203718423843, + 0.019489306956529617, + 0.045017220079898834, + -0.028724823147058487, + 0.02822752483189106, + -0.02640410326421261, + -0.03260847553610802, + 0.02926948107779026, + 0.016458163037896156, + 0.0037711691111326218, + -0.10656364262104034, + -0.05981772765517235, + 0.010218269191682339, + 0.04864038527011871, + -0.005017371848225594, + 0.04056522622704506, + 0.017393555492162704, + -0.011970649473369122, + -0.011804883368313313, + -0.018530234694480896, + 0.010680045001208782, + 0.02943524718284607, + -0.03933382406830788, + 0.04454360529780388, + 0.06460124999284744, + 0.06895852088928223, + -0.09050805866718292, + 0.018968328833580017, + 0.0440463051199913, + -0.04160718247294426, + 0.06512222439050674, + 0.10002774000167847, + 0.0692426860332489, + -0.03902597352862358, + -0.0033745153341442347, + -0.049777064472436905, + 0.0048486460000276566, + -0.07075826078653336, + 0.02979045920073986, + -0.03021671436727047, + -0.022591492161154747, + 0.05318709835410118, + 0.00923551619052887, + 0.046438068151474, + -0.010070264339447021, + -0.03135339170694351, + 0.011793043464422226, + 0.009644010104238987, + -0.03556857630610466, + -0.026119934394955635, + 0.08051475137472153, + 0.0377945713698864, + 0.039594314992427826, + 0.032679516822099686, + 0.03211117908358574, + -0.00442535150796175, + -0.01632791943848133, + -0.08274075388908386, + 0.11774098873138428, + 0.03289264440536499, + -0.041488777846097946, + -0.10362722724676132, + -0.1059953048825264, + 0.09334975481033325, + -0.055981434881687164, + 0.0047894436866045, + -0.015309643931686878, + -0.01070964615792036, + 0.022259961813688278, + 0.028701141476631165, + -0.10552168637514114, + 0.029743097722530365, + -0.015096516348421574, + 0.006589185446500778, + 0.039144378155469894, + -0.08941873908042908, + -0.053660716861486435, + -0.03322417661547661, + -0.07573123276233673, + -0.02114696428179741, + 0.06630627065896988, + 0.07175285369157791, + -0.032419029623270035, + -0.1521255224943161, + -0.012171936221420765, + -0.002295558573678136, + -0.00436022924259305, + 0.045632921159267426, + 0.0813198983669281, + 0.04655647277832031, + -0.08264602720737457, + -0.007370652165263891, + 0.026782996952533722, + -0.026569869369268417, + 0.048829831182956696, + 0.013876955024898052, + -0.0057485164143145084, + 0.026996122673153877, + -0.003392276121303439, + -0.007755465339869261, + -0.010389955714344978, + 0.028251206502318382, + -0.012633712030947208, + -0.017227789387106895, + -0.0765363797545433, + 0.03497655689716339, + 0.043809499591588974, + 0.07710471749305725, + -0.038291871547698975, + 0.009152633138000965, + 0.012550828978419304, + 0.024059703573584557, + -0.02115880325436592, + 0.04911400005221367, + -0.03308209031820297, + -0.004161902237683535, + -0.06635362654924393, + 0.05148208141326904, + -0.07037936896085739, + -0.01787901110947132, + -0.025883125141263008, + 0.06853226572275162, + 0.026522507891058922, + 0.003000062657520175, + 0.014149283990263939, + -0.08780844509601593, + -0.03767617046833038, + -0.040707312524318695, + 0.021715302020311356, + 0.012160096317529678, + -0.07492608577013016, + -0.0089809475466609, + -0.01579510048031807, + 0.0682007297873497, + -0.01580694131553173, + 0.0017494198400527239, + -0.05309237539768219, + 0.003617243841290474, + -0.02323087491095066, + 0.04738530144095421, + 0.0419623963534832, + 0.06540639698505402, + -0.02227180264890194, + 0.03886020928621292, + -0.00026307901134714484, + -0.026048891246318817, + 0.027493420988321304, + -0.10334305465221405, + 0.036823660135269165, + 0.021810026839375496, + 0.12740275263786316, + -0.01664760895073414, + 0.0262383371591568, + -0.036207959055900574, + -0.012941562570631504, + 0.07814667373895645, + -0.019193297252058983, + 0.02313615195453167, + 0.09505476802587509, + 0.07142132520675659, + 0.02278093993663788, + 0.05285556986927986, + 0.05280820652842522, + 0.0072048865258693695, + -0.003176188562065363, + 0.0028742582071572542, + -0.0665430799126625, + 0.039499592036008835, + -0.05096110329031944, + 0.05318709835410118, + 0.003241310827434063, + 0.03270319849252701, + -0.0004869366530328989, + 0.01048467867076397, + 0.018103979527950287, + 0.07691527158021927, + 0.05001387000083923, + -0.02280461974442005, + 0.012171936221420765, + -0.010052504017949104, + -0.026380421593785286, + 0.010135387070477009, + 0.025764720514416695, + -0.016884418204426765, + -0.040873076766729355, + -0.01553461141884327, + -0.022851981222629547, + -0.03781825304031372, + 0.01632791943848133, + 0.0034514779690653086, + -0.012538989074528217, + -0.03443189710378647, + -0.055649902671575546, + -0.09102903306484222, + -0.029672054573893547, + -0.012669233605265617, + 0.005091374274343252, + -0.0099696209654212, + 0.014705782756209373, + -0.02735133469104767, + 0.04703008756041527, + -0.018494712188839912, + 0.053045015782117844, + -0.007364731747657061, + -0.05645504966378212, + -0.030003586784005165, + -0.014101922512054443, + 0.01588982343673706, + -0.05877577140927315, + -0.052192505449056625, + -0.05730755999684334, + -0.029979905113577843, + -0.04549083486199379, + 0.09396545588970184, + 0.022994065657258034, + -0.03627900034189224, + -0.025006935000419617, + -0.021987631916999817, + -0.022757258266210556, + -0.04447256028652191, + 0.10258527100086212, + 0.0058758012019097805, + -0.05782853811979294, + 0.009596648626029491, + -0.018707839772105217, + -0.008637575432658195, + -0.020164210349321365, + 0.0535186305642128, + -0.0020853914320468903, + 0.06630627065896988, + 0.013758550398051739, + -0.01873152144253254, + 0.09083958715200424, + -0.10059607774019241, + 0.0015362926060333848, + 0.010395875200629234, + 0.0044075907208025455, + 0.09619145095348358, + -0.02469908446073532, + 0.07198966294527054, + 0.014575538225471973, + -0.04288594797253609, + -0.06071759760379791, + 0.06000717356801033, + 0.014042720198631287, + 0.023254554718732834, + 0.04949289187788963, + -0.06076495721936226, + -0.0393575057387352, + 0.0016058549517765641, + -0.03755776584148407, + 0.03942854702472687, + -0.037415679544210434, + -0.0597703643143177, + 0.027398698031902313, + 0.05025067925453186, + 0.01719226874411106, + 0.03237166628241539, + 0.05171889066696167, + -0.049682337790727615, + 0.04575132578611374, + 0.015001793392002583, + 0.0047568827867507935, + -0.04496985673904419, + -0.038126103579998016, + -0.008690857328474522, + 0.004543755203485489, + 0.06753767281770706, + 0.023242715746164322, + 0.03296368941664696, + 0.039239101111888885, + 0.013296774588525295, + -0.028038078919053078, + -0.014611059799790382, + 0.05034540221095085, + 0.012361383065581322, + -0.07331578433513641, + -0.044756729155778885, + -0.04920872300863266, + 0.037581443786621094, + -0.0009657330228947103, + -0.038718122988939285, + 0.01829342544078827, + 0.009484164416790009, + 0.11291009932756424, + -0.04963497817516327, + -0.007358811795711517, + -0.006701669190078974, + 0.09623881429433823, + -0.05673922225832939, + 0.026735635474324226, + 0.05958091840147972, + 0.07961488515138626, + 0.02988518215715885, + -0.010910932905972004, + -0.04842725768685341, + -0.028369611129164696, + 0.0576864518225193, + 0.047953639179468155, + -0.07170549035072327, + 0.014480815269052982, + 0.019098572432994843, + 0.05152944102883339, + -0.0644591674208641, + -0.053234461694955826, + 0.014409773051738739, + -0.022591492161154747, + 0.0023917618673294783, + 0.055128924548625946, + -0.042601779103279114, + 0.0035432411823421717, + 0.06057551130652428, + 0.009099351242184639, + 0.02642778493463993, + 0.08619815111160278, + -0.020436538383364677, + -0.0005561290308833122, + -0.03083241544663906, + -0.010330753400921822, + -0.004440152086317539, + 0.005662673618644476, + -0.07738889008760452, + -0.001524452120065689, + 0.01648184470832348, + 0.0014556298265233636, + -0.014492656104266644, + 0.007116083521395922, + -0.03428981453180313, + 0.028274886310100555, + -0.02365713007748127, + 0.010135387070477009, + -0.014776825904846191, + -0.027327654883265495, + 0.07170549035072327, + -0.04068363085389137, + 0.0359237901866436, + 0.01528596319258213, + 0.03185068815946579, + -0.12977084517478943, + 0.04783523455262184, + 0.01926433853805065, + 0.030074628069996834, + 0.0550815649330616, + 0.02718557044863701, + 0.027422377839684486, + -0.07042673230171204, + 0.014658421277999878, + 0.020128687843680382, + -0.02590680681169033, + 0.05437114089727402, + -0.021798186004161835, + 0.0012210417771711946, + -0.045182984322309494, + 0.029506288468837738, + 0.017298832535743713, + -0.023278236389160156, + 0.010881332680583, + 0.051245272159576416, + 0.07421565800905228, + 0.003862932091578841, + -0.018352627754211426, + 0.025409508496522903, + -0.051766250282526016, + 0.023704491555690765, + -0.021987631916999817, + 0.06104912981390953, + -0.04042314365506172, + 0.060812320560216904, + 0.0067608715035021305, + -0.04608285799622536, + 0.020779911428689957, + 0.11575180292129517, + 0.034053005278110504, + 0.021028559654951096, + 0.03246638923883438, + 0.05370807647705078, + 0.0011707200901582837, + -0.03289264440536499, + -0.02943524718284607, + -0.1112050861120224, + 0.035781703889369965, + 1.4118295439402573e-05, + -0.0022230360191315413, + -0.07364732027053833, + -0.04489881545305252, + 0.015191239304840565, + -0.018186861649155617, + -0.05295029282569885, + 0.02858273684978485, + 0.052097782492637634, + 0.09363391995429993, + 0.028511695563793182, + 0.0524766743183136, + -0.08250394463539124, + 0.06232789158821106, + 0.0009524126071482897, + -0.006506302393972874, + 0.0098393764346838, + -0.020353656262159348, + 0.03256111219525337, + 0.0065595842897892, + 0.01208905316889286, + 0.0064234198071062565, + -0.017381714656949043, + 0.03381619602441788, + -0.06043342873454094, + -0.022769099101424217, + 0.0314481146633625, + -0.02926948107779026, + -0.017831649631261826, + 0.027943355962634087, + 0.008667176589369774, + -0.02278093993663788, + 0.03222958371043205, + -0.013794071972370148, + -0.012160096317529678, + -0.04210447892546654, + -0.040541548281908035, + -0.07985169440507889, + -0.006677988450974226, + -0.06730086356401443, + 0.06256470084190369, + 0.042341288179159164, + -0.04679328203201294, + -0.04219920188188553, + -0.008217240683734417, + -0.06687460839748383, + 0.009567047469317913, + 0.09316030889749527, + -0.021016718819737434, + -0.0229585450142622, + 0.009916339069604874, + -0.032490070909261703, + 0.04444888234138489, + 0.007317370269447565, + 0.08416160196065903, + 0.07407357543706894, + -0.05067693442106247, + 0.021727142855525017, + 0.0064293397590518, + -0.015688536688685417, + 0.018103979527950287, + 0.02874850295484066, + 0.037249915301799774, + -0.008898064494132996, + -0.06952685862779617, + 0.025835763663053513, + 0.03857604041695595, + 0.02787231281399727, + -0.09453379362821579, + -0.028085440397262573, + 0.015510930679738522, + -0.06157010793685913, + 0.0194182638078928, + -0.01221929769963026, + -0.035094961524009705, + 0.05119791254401207, + 0.004987770691514015, + -0.029387885704636574, + -0.021277207881212234, + -0.00983345601707697, + 0.04878246784210205, + 0.01960771158337593, + 0.02477012760937214, + -0.03277423977851868, + 0.053660716861486435, + 0.023704491555690765, + 0.007246328052133322, + -0.031140265986323357, + -0.040257375687360764, + -0.007252248004078865, + -0.015901664271950722, + -0.07435774058103561, + 0.045538198202848434, + -0.011585836298763752, + -0.06493277847766876, + 0.010466918349266052, + -0.00479536410421133, + -0.036042191088199615, + 0.018234223127365112, + 0.003350834595039487, + 0.028985312208533287, + 0.08899248391389847, + -0.004111580550670624, + 0.06782183796167374, + -0.04084939882159233 + ] + }, + { + "id": "cfc6a342-f7b6-4f45-aa77-fa56db339469", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alexandra55", + "reviewDate": "2021-11-04T20:48:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dc296102-c012-40af-b3d6-3a9ecc4ae9e1", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steven20", + "reviewDate": "2022-02-13T01:38:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "111ef59d-5bd6-4609-a7e7-99d35a6b307b", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evillarreal", + "reviewDate": "2022-11-14T04:39:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aca0aa1a-e17e-4ab0-855e-4b88954a0196", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bradleyhernandez", + "reviewDate": "2022-04-24T13:06:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7b61c828-3167-41f9-b599-f53ba21821a9", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harrisonemily", + "reviewDate": "2021-12-08T22:26:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ff67dd29-db1d-4998-9be5-468bb28844f1", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sshannon", + "reviewDate": "2022-09-27T12:07:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "25847705-2c8a-436c-ba53-190a491153d1", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "upham", + "reviewDate": "2021-11-29T04:04:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "af96a04f-db90-4af6-8ce9-01d308788eef", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertsimpson", + "reviewDate": "2022-10-13T08:59:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c3f129a6-42bb-4335-a4bd-965d6354667f", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "houstonjames", + "reviewDate": "2021-01-17T14:18:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ad7b1024-6c1b-4c48-ab9f-9d53a62cdc3f", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashley04", + "reviewDate": "2021-03-03T14:59:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "84ac8011-f50a-444a-869b-3836f939ba62", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robinwebb", + "reviewDate": "2021-10-25T21:12:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d5e109e4-2257-4511-a5e8-f22164c0c87b", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evansnicole", + "reviewDate": "2022-06-14T23:40:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d7870d44-41ad-4ba1-b5bc-27f75a2da399", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paul27", + "reviewDate": "2021-05-06T20:50:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "697797c5-9de0-4ab2-92d4-5af559e72dd6", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joseph36", + "reviewDate": "2022-02-02T01:25:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0ded42bc-cac5-4f0e-b9a1-5a1c3ee4aa51", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amygreen", + "reviewDate": "2021-04-15T05:00:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "212d000b-3948-491d-bf85-9a844a674e9d", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davisjames", + "reviewDate": "2022-02-22T08:16:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "77e6c782-b9d1-423f-9205-f3ad273239c2", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomaspatrick", + "reviewDate": "2021-11-11T10:30:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8707a873-dc06-41a2-a830-47f48f7bf612", + "productId": "bc073f8c-bf20-4997-8e12-26e7927b0bd5", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "meganjensen", + "reviewDate": "2022-12-27T18:10:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Super (Silver)", + "description": "This Amazing Keyboard Super (Silver) is available in Silver for $39.99 (without purchase).\n\nBlack - Comes with its own logo.\n\nBlack - Comes with a brand new LED cover.\n\nBlack - Comes with an awesome mini usb stick charger.\n\nWhite - Comes with a white version of the Samsung Galaxy Note 7.\n\nNote's Touchscreen Keyboard and Powerplay\n", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-01-14T14:55:13", + "price": 518.33, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-07-10T09:59:54", + "newPrice": 567.69 + }, + { + "priceDate": "2022-03-03T09:59:54", + "newPrice": 490.91 + }, + { + "priceDate": "2022-10-25T09:59:54", + "newPrice": 513.25 + }, + { + "priceDate": "2023-04-30T09:59:54", + "newPrice": 518.33 + } + ], + "descriptionVector": [ + -0.008256965316832066, + -0.02400636300444603, + -0.0354234017431736, + 0.014768245629966259, + 0.015392614528536797, + -0.06269177794456482, + 0.04253356531262398, + 0.04485265165567398, + 0.013200950808823109, + 0.03868541121482849, + 0.05051020160317421, + -0.022349871695041656, + 0.011550831608474255, + -0.034454990178346634, + 0.027905484661459923, + 0.01572391204535961, + -0.031243950128555298, + -0.01601698435842991, + 0.004947171080857515, + 0.00029426589026115835, + 0.004294131882488728, + -0.06773769855499268, + -0.03149879351258278, + -0.017647989094257355, + -0.03165170177817345, + -0.02887389436364174, + 0.011703738942742348, + 0.003168037161231041, + 0.014984862878918648, + 0.08226384222507477, + 0.0004989379667676985, + -0.0464581735432148, + 0.004657285287976265, + 0.016246343031525612, + -0.008632861077785492, + 0.006157682742923498, + -0.05652453377842903, + -0.022222450003027916, + 0.06100979819893837, + -0.005237056873738766, + -0.010327577590942383, + 0.016182633116841316, + -0.022744880989193916, + -0.009257230907678604, + -0.03978124260902405, + 0.06386405974626541, + 0.010136444121599197, + 0.010053619742393494, + 0.01102202944457531, + -0.03190654516220093, + 0.04281389340758324, + 0.008741170167922974, + -0.07191714644432068, + -0.027523217722773552, + 0.08990918099880219, + -0.023853454738855362, + 0.0175970196723938, + 0.11039868742227554, + 0.04577009379863739, + -0.009811517782509327, + -0.04862435162067413, + -0.05835941433906555, + -0.019482869654893875, + -0.006259620655328035, + 0.01396548468619585, + 0.005794529337435961, + -0.009333684109151363, + -0.02991875819861889, + 0.003921421244740486, + 0.03580566868185997, + -0.03307883068919182, + 0.06682025641202927, + 0.03348658233880997, + 0.05662647262215614, + -0.021457916125655174, + 0.04398617893457413, + 0.14648468792438507, + 0.02831323631107807, + 0.04536234214901924, + 0.00695088692009449, + 0.04345100745558739, + -0.0028415173292160034, + -0.048726290464401245, + -0.0498221218585968, + 0.013392084278166294, + 0.017291206866502762, + 0.035729214549064636, + -0.130072683095932, + -0.057645849883556366, + 0.04551524668931961, + -0.03328270465135574, + 0.013952742330729961, + 0.027217404916882515, + -0.01587681844830513, + 0.017252979800105095, + -0.0049662841483950615, + -0.04324712976813316, + 0.028287751600146294, + -0.010805411264300346, + 0.003615607973188162, + 0.03761506453156471, + -0.05407802760601044, + -0.0005793732707388699, + 0.012939735315740108, + -0.046228811144828796, + 0.05774778872728348, + 0.020948227494955063, + 0.04462329298257828, + -0.06182530149817467, + -0.15402808785438538, + 0.04943985491991043, + 0.020553218200802803, + -0.05326252430677414, + 0.05158054828643799, + 0.03435305505990982, + 0.037079889327287674, + -0.04599945247173309, + -0.0003080035967286676, + 0.012481015175580978, + -0.040341902524232864, + -0.02478363923728466, + 0.025280585512518883, + -0.027115466073155403, + 0.021317752078175545, + -0.0033225365914404392, + 0.022515520453453064, + -0.023305539041757584, + 0.020514991134405136, + 0.07054098695516586, + -0.06931773573160172, + -0.06641250848770142, + 0.05662647262215614, + 0.007135649211704731, + 0.08532197773456573, + -0.02087177336215973, + 0.05525031313300133, + 0.006320146378129721, + 0.08414968848228455, + -0.07716694474220276, + 0.004510749597102404, + -0.04842047765851021, + -0.0004567293217405677, + 0.05892007425427437, + 0.055556125938892365, + -0.1004597470164299, + 0.031830091029405594, + -0.002177328569814563, + -0.010244753211736679, + -0.001435890095308423, + 0.04566815495491028, + 0.022783108055591583, + -0.10122428089380264, + -0.05152957886457443, + -0.045719124376773834, + -0.0013315631076693535, + 0.04212581366300583, + -0.061468519270420074, + -0.021814698353409767, + 9.735860658111051e-05, + 0.1125393807888031, + -0.02780354768037796, + 0.013149982318282127, + 0.01888398639857769, + -0.016717806458473206, + -0.06070398539304733, + 0.048598866909742355, + 0.07650434970855713, + 0.06467956304550171, + -0.07426171749830246, + 0.008486325852572918, + -0.0027793990448117256, + -0.00760711170732975, + 0.06289564818143845, + -0.0895523950457573, + 0.02701352909207344, + -0.03374142572283745, + 0.023178117349743843, + 0.00029844691744074225, + -0.006868062075227499, + -0.028364205732941628, + 0.0008728427928872406, + 0.04997502639889717, + -0.039551883935928345, + -0.006195909809321165, + 0.06401696801185608, + 0.037207312881946564, + 0.014564369805157185, + 0.02345844730734825, + 0.02428669109940529, + 0.0015179181937128305, + -0.05275283381342888, + -0.0077855028212070465, + -0.02468170039355755, + 0.004590388387441635, + 0.047936271876096725, + 0.03883831948041916, + 0.030224571004509926, + 0.023904424160718918, + 0.018259616568684578, + 0.05234508216381073, + -0.0014390756841748953, + 0.0950060710310936, + 0.08144833892583847, + -0.03649374842643738, + -0.0015115471323952079, + 0.03162621706724167, + -0.04431747645139694, + 0.022999726235866547, + 0.04357842728495598, + 0.02910325489938259, + -0.015137770213186741, + 0.04431747645139694, + 0.02544623427093029, + -0.025535430759191513, + 0.08063283562660217, + -0.026554808020591736, + -0.0053644790314137936, + -0.02516590617597103, + 0.005584282334893942, + -0.034837257117033005, + 0.025357039645314217, + -0.02650384046137333, + 0.05071407929062843, + 0.0041507817804813385, + -0.03432757034897804, + -0.02099919505417347, + 0.059072982519865036, + 0.06208014860749245, + 0.024860091507434845, + 0.014780987054109573, + -0.05841038376092911, + -0.07701404392719269, + -0.008409871719777584, + 0.000701220880728215, + -0.0075306580401957035, + 0.014092907309532166, + -0.011053885333240032, + 0.033639486879110336, + -0.10275334864854813, + 0.055046435445547104, + -0.015634717419743538, + -0.09857389330863953, + 0.02833872102200985, + -0.06498537212610245, + 0.03185557574033737, + -0.07466947287321091, + 0.06447568535804749, + 0.027650639414787292, + -0.08389484882354736, + 0.016488445922732353, + -0.13241726160049438, + 0.022655686363577843, + -0.04589751362800598, + 0.0506376251578331, + -0.010333948768675327, + 0.04533685743808746, + 0.025000255554914474, + 0.027650639414787292, + 0.061978209763765335, + -0.01785186491906643, + 0.019177056849002838, + -0.031116526573896408, + -0.038252174854278564, + 0.039144132286310196, + -0.05310961604118347, + 0.0422787219285965, + 0.001445446745492518, + -0.09633126109838486, + -0.008588263764977455, + 0.029944241046905518, + 0.016998136416077614, + -0.03636632487177849, + 0.011933098547160625, + -0.026580292731523514, + -0.07900182902812958, + -0.001446243142709136, + -0.10764636099338531, + 0.017546052113175392, + 0.018807532265782356, + -0.02596866525709629, + 0.05270186439156532, + 0.07594369351863861, + 0.10198881477117538, + 0.023827971890568733, + 0.02635093219578266, + -0.02716643549501896, + -0.03766603395342827, + 0.05234508216381073, + -0.009034241549670696, + 0.0024815495125949383, + -0.00659410422667861, + 0.02162356488406658, + 0.04533685743808746, + 0.06870611011981964, + 0.06682025641202927, + 0.0014263334451243281, + 0.07268168032169342, + 0.000257631967542693, + -0.006893546786159277, + 0.0554032176733017, + 0.014742760919034481, + -0.016857970505952835, + -0.09648416936397552, + -0.027115466073155403, + -0.055658064782619476, + 0.09413959830999374, + 0.0006952479598112404, + 0.016501188278198242, + -0.0364682637155056, + 0.006772495340555906, + 0.09286537766456604, + -0.06620863080024719, + -0.04380778968334198, + -0.00260737887583673, + 0.04383327439427376, + -0.05937879532575607, + -0.021228555589914322, + 0.03070877492427826, + -0.03200848400592804, + -0.026274479925632477, + -0.0022840448655188084, + -0.016220860183238983, + -0.0674828514456749, + 0.024503309279680252, + 0.015966014936566353, + -0.08262062072753906, + 0.0022728953044861555, + 0.017622504383325577, + -0.011474378407001495, + -0.047018829733133316, + -0.0554032176733017, + 0.012436416931450367, + 0.019329963251948357, + 0.017635246738791466, + 0.039144132286310196, + -0.03279850259423256, + 0.034047238528728485, + 0.09515897929668427, + 0.060551080852746964, + -0.003054949687793851, + 0.0750262513756752, + -0.04709528386592865, + -0.023165374994277954, + -0.05336446315050125, + -0.026172541081905365, + -0.05198829993605614, + -0.022362614050507545, + -0.04760497435927391, + 0.00923811737447977, + 0.0019097417825832963, + 0.0017759483307600021, + -0.02884840965270996, + 0.05124925076961517, + -0.0558619387447834, + 0.03516855463385582, + -0.027064498513936996, + -0.015711169689893723, + -0.015456325374543667, + -0.0163737665861845, + 0.05810457095503807, + -0.02951100654900074, + 0.0014064237475395203, + 0.08277352899312973, + 0.005026809871196747, + -0.04528588801622391, + -0.01614440605044365, + 0.009276343509554863, + 0.043731335550546646, + 0.015010347589850426, + 0.00965223927050829, + 0.011041142977774143, + -0.02112661860883236, + -0.0950060710310936, + 0.022744880989193916, + 0.051070861518383026, + 0.04447038471698761, + 0.01888398639857769, + 0.02767612412571907, + -0.015392614528536797, + 0.03618793562054634, + 0.04136127978563309, + 0.016972651705145836, + -0.03843056783080101, + 0.03384336456656456, + 0.031116526573896408, + -0.004472522996366024, + -0.004545790608972311, + 0.03450595960021019, + -0.02046402171254158, + 0.08445550501346588, + -0.05784972757101059, + 0.07558691501617432, + -0.03896573930978775, + 0.05142764374613762, + 0.000996283139102161, + 0.0047082542441785336, + 0.03384336456656456, + 0.10703473538160324, + 0.04735012724995613, + 0.07018420845270157, + 0.04875177517533302, + 0.01720201037824154, + -0.020489506423473358, + -0.04500555992126465, + -0.0725797489285469, + -0.12466998398303986, + -0.02138146199285984, + 0.02334376610815525, + -0.065036341547966, + -0.07981733232736588, + -0.026147056370973587, + 0.01193946972489357, + -0.00229837978258729, + -0.07818632572889328, + 0.03358852118253708, + 0.013939999975264072, + 0.11569945514202118, + 0.05601484701037407, + 0.0879213884472847, + -0.07563787698745728, + 0.06493441015481949, + 0.012372706085443497, + -0.050051480531692505, + 0.031473308801651, + -0.0006637905607931316, + -0.023178117349743843, + 0.02231164649128914, + 0.0068871756084263325, + -0.016832485795021057, + -0.029740365222096443, + 0.023381993174552917, + -0.033766910433769226, + 0.021547112613916397, + -0.026299964636564255, + -0.065036341547966, + -0.00983063131570816, + -0.0031951142009347677, + 0.0387873500585556, + -0.03799733147025108, + 0.04080062359571457, + -0.0038322259206324816, + -0.032518170773983, + -0.06809447705745697, + -0.022999726235866547, + -0.09261053055524826, + -0.008008492179214954, + -0.04627978056669235, + 0.02675868384540081, + 0.06009235978126526, + -0.03267107903957367, + -0.046228811144828796, + -0.03555082157254219, + 0.003927792422473431, + 0.012417303398251534, + 0.029995210468769073, + -0.007626224774867296, + 0.02612157352268696, + 0.06743188202381134, + -0.031167495995759964, + 0.005775415804237127, + -0.00838438794016838, + 0.0519118458032608, + -0.005141490139067173, + -0.03957736864686012, + 0.0031393670942634344, + 0.0018221390200778842, + -0.021865667775273323, + 0.00337669113650918, + -0.005651179235428572, + 0.026401901617646217, + -0.0425080806016922, + -0.05020438879728317, + 0.06381309032440186, + 0.05053568631410599, + 0.010130072943866253, + -0.10897155851125717, + 0.016870712861418724, + -0.016870712861418724, + 0.003091583726927638, + 0.0018922212766483426, + -0.00012154893192928284, + 0.040061574429273605, + -0.03753861039876938, + 0.008499068208038807, + 0.03374142572283745, + -0.06483247131109238, + 0.003209449350833893, + -0.02271939627826214, + 0.04551524668931961, + 0.004724182188510895, + -0.008021234534680843, + 0.05912394821643829, + -0.02612157352268696, + -0.008422614075243473, + -0.05637162923812866, + -0.03305334597826004, + 0.021674534305930138, + -0.02217148058116436, + 0.034837257117033005, + 0.03741119056940079, + -0.029154224321246147, + -0.05851232260465622, + 0.011652769520878792, + -0.02716643549501896, + 0.022986983880400658, + -0.020808061584830284, + -0.07991927117109299, + 0.028440658003091812, + 0.03448047488927841, + 0.04498007521033287, + 0.02887389436364174, + -0.05178442597389221 + ] + }, + { + "id": "a09ad7fb-6d00-4bab-a04a-2b363e1e8850", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dhorn", + "reviewDate": "2022-10-26T03:25:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e2f6f6bd-e629-4ca6-ae67-bdac4cef3a63", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tuckerlaura", + "reviewDate": "2021-08-03T00:47:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bc240651-526f-45f9-b068-04311a237cc3", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "krista08", + "reviewDate": "2022-04-07T03:37:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b34a1add-7121-4e7a-8e3b-05000e38b779", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathleenparker", + "reviewDate": "2021-11-23T20:01:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "918fbddb-a355-44de-81a7-704dbe9723dd", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jsparks", + "reviewDate": "2021-07-10T09:59:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3c7a0a51-5cb8-49db-86ed-ed05d14edc30", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rkeith", + "reviewDate": "2021-12-07T01:24:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "570a46b4-4c4d-47e1-8049-09dfa9e006f7", + "productId": "54a1efa3-c123-47e3-85f0-7abd07a3bfac", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maria89", + "reviewDate": "2021-08-24T09:03:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Black)", + "description": "This Basic Speaker Mini (Black) is rated 4.7 out of 5 by 486.\n\nRated 5 out of 5 by Svee from Beautiful item This item", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-08-12T02:59:45", + "price": 1096.74, + "stock": 1, + "priceHistory": [ + { + "priceDate": "2021-02-10T14:05:18", + "newPrice": 1122.99 + }, + { + "priceDate": "2021-07-29T14:05:18", + "newPrice": 1053.42 + }, + { + "priceDate": "2022-01-14T14:05:18", + "newPrice": 1073.64 + }, + { + "priceDate": "2022-07-02T14:05:18", + "newPrice": 1068.42 + }, + { + "priceDate": "2022-12-18T14:05:18", + "newPrice": 1199.41 + }, + { + "priceDate": "2023-11-22T14:05:18", + "newPrice": 1096.74 + } + ], + "descriptionVector": [ + -0.0375005379319191, + 0.030070772394537926, + -0.010847899131476879, + -0.016497159376740456, + -0.05860283598303795, + 0.009441079571843147, + -0.024971051141619682, + 0.03644542396068573, + -0.009056402370333672, + 0.05992173030972481, + -0.02749892883002758, + -0.017299486324191093, + -0.04624919965863228, + -0.012177783064544201, + 0.0406658835709095, + 0.006044928450137377, + 0.015101330354809761, + -0.012034903280436993, + 0.004443022422492504, + 0.004278160631656647, + 0.016837874427437782, + -0.09021231532096863, + -0.04783187061548233, + 0.03818196803331375, + -0.040797773748636246, + 0.01621139980852604, + 0.004753511864691973, + 0.059701912105083466, + 0.0318073146045208, + 0.012133819982409477, + 0.010661056265234947, + 0.030466439202427864, + -0.03490671515464783, + 0.03149957209825516, + -0.0317193903028965, + 0.05723997950553894, + 0.012232737615704536, + -0.04345754161477089, + 0.005698719061911106, + 0.052228182554244995, + 0.03338998556137085, + -0.026597686111927032, + 0.04624919965863228, + -0.04919472709298134, + 0.01942070759832859, + 0.007100043352693319, + 0.0252568107098341, + 0.030224643647670746, + 0.04919472709298134, + -0.04163307324051857, + -0.0003736864891834557, + 0.018420545384287834, + -0.05363500118255615, + -0.008061736822128296, + 0.016343288123607635, + 0.019036030396819115, + -0.02266298606991768, + 0.11843663454055786, + 0.01678292080760002, + -0.05306348204612732, + 0.036621276289224625, + -0.04361141100525856, + -0.015013404190540314, + 0.00011076645023422316, + -0.0799689069390297, + 0.028685932978987694, + -0.04387519136071205, + 0.040643900632858276, + 0.025608515366911888, + 0.0750890001654625, + 0.05271177738904953, + 0.01728849485516548, + 0.0068142833188176155, + 0.02648777887225151, + 0.10770963877439499, + -0.037588465958833694, + 0.04519408568739891, + 0.05781149864196777, + -0.05425048619508743, + 0.041105516254901886, + 0.002896070247516036, + 0.0018450770294293761, + 0.024069806560873985, + 0.01278227660804987, + 0.024619344621896744, + 0.005940516013652086, + -0.048930950462818146, + -0.12397599220275879, + -0.01647517830133438, + 0.019343771040439606, + -0.05605297535657883, + 0.036665238440036774, + 0.025190865620970726, + 0.02947727032005787, + 0.07561656087636948, + -0.0015139798633754253, + -0.009952150285243988, + 0.023520268499851227, + -0.033170171082019806, + 0.0024729252327233553, + 0.05398670583963394, + -0.03396150842308998, + -0.05833905562758446, + 0.0007975184125825763, + 0.01769515499472618, + 0.03772035613656044, + 0.045413900166749954, + -0.016585085541009903, + 0.014672690071165562, + -0.13487884402275085, + 0.04251233488321304, + 0.010204938240349293, + -0.0010544279357418418, + -0.019332781434059143, + -0.016640039160847664, + 0.0651533380150795, + -0.02567446045577526, + -0.05077740177512169, + -0.0021514450199902058, + -0.04629316180944443, + -0.008902531117200851, + -0.03914915397763252, + 0.03323611617088318, + 0.05992173030972481, + 0.03376367315649986, + -0.04937057942152023, + 0.019387735053896904, + 0.033060263842344284, + 0.061987996101379395, + -0.07078061997890472, + -0.02916952781379223, + 0.08594789355993271, + -0.0028411163948476315, + -0.03567606955766678, + -0.021871650591492653, + 0.02916952781379223, + 0.00613835034891963, + 0.00032800607732497156, + -0.003176335245370865, + -0.041918832808732986, + 0.0018821709090843797, + 0.0013374404516071081, + 0.06906605511903763, + -0.009633418172597885, + -0.029103582724928856, + -0.009688371792435646, + -0.02567446045577526, + 0.059086430817842484, + 0.006369156762957573, + 0.03980860114097595, + 0.014430893585085869, + -0.11474373191595078, + -0.002090995665639639, + -0.0684066116809845, + -0.0018615631852298975, + 0.06321895867586136, + -0.0665161982178688, + 0.019508633762598038, + -0.06150440126657486, + 0.04620523750782013, + 0.0021514450199902058, + -0.011298521421849728, + 0.05306348204612732, + -0.02389395423233509, + -0.007545169908553362, + 0.08713489770889282, + 0.030158698558807373, + 0.11518336832523346, + -0.1498263031244278, + 0.0342472679913044, + 0.0076880501583218575, + -0.021838678047060966, + -0.041457220911979675, + -0.021014370024204254, + -0.022684969007968903, + -0.03576399385929108, + 0.057459793984889984, + 0.002788910176604986, + -0.0031021474860608578, + 0.010193947702646255, + -0.009814766235649586, + 0.06576882302761078, + -0.031543537974357605, + -0.025234829634428024, + -0.013991261832416058, + -0.037082888185977936, + 0.03802809491753578, + -0.026465795934200287, + -0.04633712396025658, + 0.026773538440465927, + -0.03602777421474457, + -0.01506835874170065, + -0.013958289287984371, + 0.004063840489834547, + -0.02470727264881134, + -0.03182929754257202, + 0.0171236339956522, + 0.037434592843055725, + -0.01932178996503353, + -0.01890414021909237, + -0.010204938240349293, + 0.1074458584189415, + 0.07104440033435822, + -0.020420867949724197, + -0.02653174102306366, + -0.078078493475914, + 0.027411002665758133, + 0.07223140448331833, + 0.024839160963892937, + -0.01728849485516548, + 0.026707593351602554, + -0.0014686428476125002, + -0.02668561227619648, + 0.019838357344269753, + 0.07908964902162552, + 0.06405425816774368, + 0.003552769310772419, + 0.004734278190881014, + -0.040336158126592636, + -0.0975101962685585, + 0.06634034216403961, + -0.03468690067529678, + 0.06572485715150833, + 0.04457860067486763, + -0.08867360651493073, + -0.07517693191766739, + 0.02901565656065941, + 0.006781310774385929, + 0.07196762412786484, + 0.07442955672740936, + -0.017354439944028854, + -0.019750431180000305, + -0.076627716422081, + 0.00863875262439251, + -0.015156284905970097, + 0.00041112382314167917, + -0.0015593167627230287, + -0.026971371844410896, + -0.11685396730899811, + 0.09689471125602722, + -0.03308224678039551, + 0.046029385179281235, + -0.042886022478342056, + -0.012969119474291801, + -0.0050447676330804825, + -0.040446069091558456, + 0.08805812150239944, + -0.06154836341738701, + -0.04739224165678024, + 0.0019742187578231096, + -0.07821038365364075, + -0.005989974830299616, + -0.026421833783388138, + 0.07561656087636948, + -0.0019646016880869865, + -0.019607549533247948, + 0.07416577637195587, + -0.04123740270733833, + 0.02459736354649067, + -0.005220619961619377, + -0.002559477696195245, + 0.022641004994511604, + -0.02088247984647751, + 0.04411698877811432, + -0.03681911155581474, + -0.020168079063296318, + 0.048623207956552505, + -0.06897813081741333, + 0.01803586818277836, + 0.012023912742733955, + -0.01299110148102045, + -0.01971745863556862, + 0.020728610455989838, + 0.009270722046494484, + -0.08089213818311691, + 0.04341357946395874, + -0.030642293393611908, + 0.019706467166543007, + -0.04624919965863228, + 0.0014892505714669824, + 0.1075337827205658, + 0.09539996087551117, + 0.07091251015663147, + 0.01642022468149662, + -0.017925960943102837, + -0.03572003170847893, + 0.0023904945701360703, + 0.014958450570702553, + -0.01707967184484005, + -0.018442528322339058, + -0.025454644113779068, + 0.034445103257894516, + -0.011342484503984451, + 0.018992066383361816, + 0.029960865154862404, + 0.07697942107915878, + 0.011474373750388622, + -0.04721638932824135, + 0.007583637721836567, + 0.06537315249443054, + -0.002011312637478113, + 0.02134409360587597, + -0.046029385179281235, + -0.048271503299474716, + 0.030774181708693504, + 0.04813961312174797, + -0.031147869303822517, + 0.03932500630617142, + -0.05631675198674202, + -0.02490510605275631, + 0.04420491307973862, + -0.037742335349321365, + -0.06528522819280624, + -0.03470887988805771, + 0.09487240761518478, + -0.028400173410773277, + -0.009748821146786213, + 0.03572003170847893, + -0.01682688295841217, + 0.033521875739097595, + -0.042160630226135254, + -0.03242279961705208, + -0.03268657624721527, + 0.08106798678636551, + -0.02688344568014145, + -0.004297394771128893, + 2.758427945082076e-05, + -0.10120309889316559, + 0.03437915816903114, + 0.059086430817842484, + 0.01469467207789421, + -0.07394596189260483, + 0.05082136392593384, + -0.007347336038947105, + 0.07390199601650238, + 0.012254718691110611, + -0.029916901141405106, + -0.0503377690911293, + 0.10894060134887695, + 0.0069077047519385815, + 0.01555195264518261, + -0.021322112530469894, + 0.0700332447886467, + -0.049942102283239365, + -0.008913521654903889, + -0.07588034123182297, + -0.003445609239861369, + 0.008402450941503048, + 0.0021198466420173645, + -0.013507667928934097, + 0.0010990778682753444, + -0.04906283691525459, + 0.04651297628879547, + 0.007671563886106014, + 0.056404680013656616, + -0.0454578623175621, + 0.009853233583271503, + -0.015486007556319237, + 0.052579887211322784, + 0.00808371789753437, + 0.02892773039638996, + -0.048315465450286865, + 0.014683681540191174, + -0.06049324944615364, + 0.03338998556137085, + -0.029301417991518974, + -0.05003002658486366, + 0.0006161705823615193, + -0.03539030998945236, + 0.0010441240156069398, + -0.05398670583963394, + -0.07179176807403564, + -0.06255951523780823, + 0.007946333847939968, + 0.013101008720695972, + 0.032312892377376556, + 0.02017907053232193, + -0.060625139623880386, + -0.042578279972076416, + 0.0316314622759819, + -0.011595272459089756, + 0.024465475231409073, + 0.020288977771997452, + -0.03323611617088318, + 0.015134302899241447, + -0.0014810075517743826, + -0.04284205660223961, + 0.05016191676259041, + 0.008424432016909122, + 0.020409876480698586, + -0.03802809491753578, + -0.0684066116809845, + -0.05754772201180458, + 0.06379048526287079, + 0.05464615300297737, + -0.05728394165635109, + 0.05209629237651825, + 0.07675959914922714, + -0.028905749320983887, + -0.03547823429107666, + 0.05372292920947075, + 0.029213491827249527, + 0.02369612082839012, + -0.03279648348689079, + -0.05447030067443848, + -0.1008513867855072, + -0.028092430904507637, + 0.10384088009595871, + -0.05143684521317482, + -0.043941136449575424, + 0.05165666341781616, + -0.04007238149642944, + -0.016859855502843857, + -0.013540640473365784, + 0.0073803081177175045, + 0.02363017573952675, + 0.03552220016717911, + -0.05952605977654457, + 0.036115702241659164, + 0.03435717523097992, + 0.06928586959838867, + -0.022487133741378784, + 0.005242601502686739, + -0.06752734631299973, + -0.028685932978987694, + 0.05455822870135307, + -0.011386447586119175, + 0.0014384182868525386, + -0.063438780605793, + -0.037434592843055725, + -0.05099721625447273, + -0.1039288118481636, + -0.032752521336078644, + 0.020201051607728004, + 0.01520024798810482, + 0.02714722417294979, + -0.007995791733264923, + 0.008633256889879704, + -0.019222872331738472, + 0.029872937127947807, + 0.015409072861075401, + 0.0021995296701788902, + -0.005099721718579531, + 0.08300236612558365, + -0.09504825621843338, + -0.008138672448694706, + -0.06559296697378159, + 0.029411325231194496, + 0.04712846130132675, + 0.04594145715236664, + 0.006742842961102724, + -0.004643604159355164, + -0.02510293945670128, + -0.030686255544424057, + 0.05658053234219551, + -0.011243566870689392, + 0.011595272459089756, + 0.09830152988433838, + -0.03593984991312027, + -0.05996569246053696, + -0.08260669559240341, + 0.046029385179281235, + 0.004539191722869873, + 0.06972550600767136, + -0.017914969474077225, + -0.07460541278123856, + -0.058383017778396606, + -0.012034903280436993, + -0.03785224258899689, + -0.011859050951898098, + -0.014507828280329704, + -0.03706090897321701, + 0.01023791078478098, + -0.01278227660804987, + -0.013892345130443573, + 0.010891862213611603, + -0.045413900166749954, + -0.020157089456915855, + 0.05016191676259041, + 0.0537668913602829, + -0.024641327559947968, + -0.021179230883717537, + 0.011793105863034725, + 0.02236623503267765, + 0.11826078593730927, + 0.0007192091434262693, + -0.01499142311513424, + -0.04774394631385803, + 0.02826828509569168, + 0.007869398221373558, + -0.02470727264881134, + 0.11122668534517288, + -0.004544686991721392, + -0.040028419345617294, + 0.0048167090862989426, + 0.016354279592633247, + -0.004753511864691973, + -0.026311924681067467, + -0.012023912742733955, + 0.07056080549955368, + 0.060053616762161255, + -0.04550182446837425, + -0.021388055756688118, + 0.03431321308016777, + 0.0045309485867619514, + -0.01824469305574894, + -0.014672690071165562, + -0.023674137890338898, + -0.005569577217102051, + 0.06915397942066193, + 0.01341974176466465, + -0.05231611058115959 + ] + }, + { + "id": "b4606aef-ea68-49ce-b36b-8bd12f56dcbb", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "belindaarnold", + "reviewDate": "2022-03-01T14:29:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "929be946-1e7a-44d4-973f-0ce641de1dd9", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "brownamanda", + "reviewDate": "2022-01-25T17:31:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "630cdb6e-0340-4801-afe8-049b1ddfc946", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "lopezashley", + "reviewDate": "2022-08-02T11:47:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e2336035-7e0a-45be-b849-57762d9f1c71", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "jrodriguez", + "reviewDate": "2022-01-20T14:31:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "01436eeb-0639-4acd-8e1f-8f1a9210f53b", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "ashley79", + "reviewDate": "2022-09-02T06:38:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "67307a1a-299e-4a3b-8e02-d355c139dd54", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "kingseth", + "reviewDate": "2022-07-04T02:06:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "acc6ab7e-1aa1-4803-988a-a7608ccf12cc", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "caroldixon", + "reviewDate": "2021-08-24T22:47:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "929a3ec4-42d8-4dcb-8ce9-c1884776e483", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "allenjohn", + "reviewDate": "2022-07-07T06:38:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "10ca0563-a3e1-4b4d-bea7-d9d12c0d4abc", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "douglasmichael", + "reviewDate": "2022-09-12T22:55:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "21b24e5b-0ab5-4e19-bb77-6bbedc743935", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "michaeldavidson", + "reviewDate": "2022-10-03T15:56:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7648d2ad-795d-4b44-8b90-47a5a0af0f59", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "jimmy87", + "reviewDate": "2021-02-10T14:05:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "51cbeb33-e728-4b62-9a37-885a73f36d6a", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "johngarcia", + "reviewDate": "2021-02-12T03:20:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "abc8e2bd-cd34-40eb-b0b9-7c9760e945c1", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "weissisabel", + "reviewDate": "2021-02-17T21:23:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2789f87a-4a65-41af-918e-370ba6b9607e", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "calebmartin", + "reviewDate": "2022-05-03T14:50:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0f0abf11-cad6-46f0-adf7-f1e79395b608", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "sruiz", + "reviewDate": "2022-01-15T00:11:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "daf8d7f2-659f-4fda-b123-b30f4cd90e4c", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "whitney25", + "reviewDate": "2022-12-21T23:33:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "28b5576d-f37b-4ef6-9c22-4ccc88b72664", + "productId": "666c0ce1-411a-4862-9161-07e61ab4b97c", + "category": "Media", + "docType": "customerRating", + "userName": "barrettaaron", + "reviewDate": "2021-11-12T16:48:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Mini (Black)", + "description": "This Amazing Computer Mini (Black) is powered by a Intel Core i7 3200QM processor with 16MB of RAM and a 512GB SSD. It features a 1920X1080 IPS LCD panel with 3.5mm capacitive touch display (PVD), a 5K display with a 2,560×1,000 pixel resolution, 64GB/s solid state drive for an additional $200, 1TB hard drive for $100", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-07-03T04:08:49", + "price": 263.55, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-01-15T03:58:05", + "newPrice": 239.35 + }, + { + "priceDate": "2021-09-08T03:58:05", + "newPrice": 255.99 + }, + { + "priceDate": "2022-05-02T03:58:05", + "newPrice": 274.57 + }, + { + "priceDate": "2022-12-24T03:58:05", + "newPrice": 262.77 + }, + { + "priceDate": "2024-05-15T03:58:05", + "newPrice": 263.55 + } + ], + "descriptionVector": [ + -0.0081067169085145, + 0.0650596171617508, + -0.04562923312187195, + -0.03667324408888817, + -0.02429441548883915, + -0.016818219795823097, + 0.0020122029818594456, + 0.07725829631090164, + 0.07967744767665863, + 0.09203054010868073, + 0.09393496811389923, + -0.08209659159183502, + 0.08065539598464966, + 0.0016293857479467988, + -0.014193188399076462, + 0.01735866814851761, + -0.06732435524463654, + -0.02438448928296566, + -0.019443253055214882, + -0.03312172740697861, + 0.013536930084228516, + -0.05708158016204834, + -0.07401560992002487, + 0.03909238800406456, + -0.020832974463701248, + 0.011683966033160686, + 0.02959595061838627, + -0.011420176364481449, + -0.051754310727119446, + -0.01022990420460701, + 0.038603413850069046, + 0.014990991912782192, + -0.015685852617025375, + -0.026584884151816368, + 0.0625375285744667, + -0.018014926463365555, + -0.06644934415817261, + -0.0003798012912739068, + 0.06727287918329239, + 0.006237667985260487, + 0.07365531474351883, + 0.03265848755836487, + 0.00022900670592207462, + 0.028926823288202286, + 0.05275799706578255, + -0.01454061921685934, + -0.03394526615738869, + -0.0018754824995994568, + -0.009329157881438732, + -0.06490520387887955, + 0.023496611043810844, + -0.028437847271561623, + 0.0019800334703177214, + 0.007360383868217468, + -0.023342197760939598, + -0.042129192501306534, + 0.027022389695048332, + 0.14782533049583435, + 0.024165736511349678, + -0.057287465780973434, + 0.005362657364457846, + -0.00775285204872489, + -0.002330681076273322, + -0.009026764892041683, + -0.014514883048832417, + -0.05219181254506111, + -0.013691343367099762, + 0.05780217796564102, + -0.040842410176992416, + 0.07344942539930344, + -0.042901258915662766, + -0.07751565426588058, + 0.06583168357610703, + -0.009837436489760876, + 0.02302050217986107, + 0.02251865714788437, + 0.05785364657640457, + 0.026970917358994484, + 0.030342282727360725, + -0.029029766097664833, + 0.07787594944238663, + -0.005816247779875994, + -0.01694689877331257, + -0.04382774233818054, + 0.03268422186374664, + 0.04982413724064827, + -0.02082010731101036, + -0.15688426792621613, + -0.03621000051498413, + -0.008499184623360634, + -0.08338337391614914, + 0.10633953660726547, + 0.10314831882715225, + -0.018388092517852783, + 0.0026234237011522055, + 0.05697863921523094, + -0.021566439419984818, + 0.032581280916929245, + 0.027614308521151543, + -0.025812815874814987, + 0.046555716544389725, + -0.03494895622134209, + -0.0050506130792200565, + -0.05136827379465103, + -0.009599382057785988, + 0.059294842183589935, + 0.019893625751137733, + 0.027459895238280296, + 0.0008364073000848293, + -0.10464098304510117, + -0.055228617042303085, + -0.020356865599751472, + -0.07581710070371628, + -0.04333876445889473, + -0.03206656873226166, + 0.04104829579591751, + -0.06469932198524475, + 0.009535042569041252, + -0.047559406608343124, + -0.08297160267829895, + 0.019649136811494827, + -0.01495238859206438, + 0.0034035341814160347, + 0.010474393144249916, + -0.011471647769212723, + 0.046324096620082855, + -0.04889765754342079, + -0.008737239055335522, + -0.015286951325833797, + -0.07633181661367416, + -0.025928625836968422, + 0.0973835438489914, + 0.012134339660406113, + 0.01680535264313221, + -0.045783646404743195, + -0.04215492680668831, + 0.060941919684410095, + 0.08801577985286713, + -0.003789568319916725, + 0.03597838059067726, + -0.01616196148097515, + -0.02607017196714878, + -0.049489576369524, + -0.021077463403344154, + -0.10644247382879257, + 0.027511365711688995, + -0.06228017434477806, + 0.03059963881969452, + -0.05517714470624924, + 0.10283949226140976, + -0.01795058697462082, + -0.03548940271139145, + -0.05589774250984192, + -0.10283949226140976, + 0.0211804062128067, + 0.05389036610722542, + -0.0325298085808754, + -0.016226300969719887, + 0.010429355315864086, + 0.08286865800619125, + -0.008679334074258804, + 0.013871492817997932, + -0.032812900841236115, + -0.04735352098941803, + 0.01684395596385002, + -0.02287895604968071, + -0.004043707624077797, + 0.0765891745686531, + -0.062177229672670364, + 0.01881272904574871, + 0.09779531508684158, + -4.526350676314905e-05, + 0.029209915548563004, + -0.05036458745598793, + 0.026456205174326897, + 0.04462554678320885, + 0.07195676118135452, + 0.060530152171850204, + -0.029853306710720062, + -0.09151582419872284, + 0.006240885239094496, + 0.00418847007676959, + 0.011761173605918884, + 0.07314059883356094, + 0.005221111699938774, + 0.016046151518821716, + -0.004387921188026667, + -0.020575618371367455, + -0.008968859910964966, + -0.009966114535927773, + 0.07133910804986954, + -0.026559147983789444, + -0.012372394092381, + 0.029750363901257515, + 0.00013873101852368563, + 0.026584884151816368, + -0.0027022389695048332, + 0.015672985464334488, + 0.005324054043740034, + 0.029570214450359344, + -0.025053614750504494, + 0.013601269572973251, + 0.050802092999219894, + -0.022171227261424065, + 0.006337393540889025, + -0.06614051759243011, + -0.03667324408888817, + -0.04099682345986366, + 0.046735864132642746, + 0.03191215544939041, + -0.0016856823349371552, + 0.03525778278708458, + -0.05831689015030861, + -0.018825598061084747, + 0.046092476695775986, + -0.032426867634058, + 0.05780217796564102, + 0.02132195234298706, + 0.026044435799121857, + -0.04809985309839249, + 0.0629492998123169, + 0.006208715494722128, + 0.007379685994237661, + -0.037651196122169495, + -0.02954447828233242, + -0.05708158016204834, + 0.04228360578417778, + 0.03566955402493477, + -0.008209658786654472, + -0.019662005826830864, + -0.08436132222414017, + -0.040842410176992416, + -0.003064145799726248, + 0.03520631417632103, + -0.016367847099900246, + -0.015531440265476704, + -0.0181693397462368, + -0.020035171881318092, + -0.09177318215370178, + 0.07453032582998276, + -0.005803379695862532, + -0.036879125982522964, + -0.04284978657960892, + -0.04565497115254402, + 0.022299904376268387, + 0.010693144984543324, + 0.002181092742830515, + 0.004699965473264456, + -0.050853561609983444, + 0.03898944705724716, + -0.020575618371367455, + 0.004764304496347904, + -0.024358753114938736, + 0.06346400827169418, + -0.03556660935282707, + 0.024140000343322754, + 0.013498326763510704, + -0.00517285754904151, + 0.008093848824501038, + -0.03852620720863342, + -0.013215235434472561, + -0.07226558774709702, + -0.0028888219967484474, + 0.022750278934836388, + -0.049026332795619965, + 0.039658572524785995, + 0.04575791209936142, + -0.020266791805624962, + 0.01415458507835865, + 0.014836578629910946, + 0.06500814855098724, + -0.0075598349794745445, + 0.0032764647621661425, + -0.009020330384373665, + -0.043544650077819824, + -0.0505962073802948, + -0.05430213361978531, + 0.01775757037103176, + -0.05378742143511772, + -0.030805524438619614, + 0.060993392020463943, + 0.0474821962416172, + 0.06269194185733795, + -0.003003023797646165, + 0.021077463403344154, + -0.02320065163075924, + -0.003467873204499483, + 0.009657287038862705, + 0.02411426603794098, + -0.02063995786011219, + 0.009438534267246723, + 0.05759629234671593, + 0.025928625836968422, + 0.0871407687664032, + 0.006993651855736971, + 0.029235651716589928, + 0.0345371849834919, + 0.0013808762887492776, + -0.011426609940826893, + -0.01575019210577011, + 0.034820277243852615, + -0.060993392020463943, + -0.011741871014237404, + -0.01854250580072403, + -0.026687826961278915, + 0.10335420072078705, + -0.05152268707752228, + 0.0024545337073504925, + -0.00737325195223093, + -0.004394355230033398, + 0.051805779337882996, + 0.018645448610186577, + -0.013047953136265278, + 0.03124302811920643, + 0.05389036610722542, + -0.017654627561569214, + 0.017281461507081985, + -0.002489920239895582, + -0.009149008430540562, + -0.014656429179012775, + 0.0156601183116436, + -0.025594063103199005, + -0.12703096866607666, + 0.0792142003774643, + 0.06691258400678635, + 0.010828257538378239, + -0.06222870200872421, + 0.05051900073885918, + -0.005539589561522007, + -0.02621171809732914, + 0.0047353520058095455, + -0.04627262428402901, + 0.06933172792196274, + -0.021810928359627724, + 0.05841983109712601, + -0.042540960013866425, + -0.023342197760939598, + 0.08389808237552643, + -0.02352234721183777, + 0.08050098270177841, + 0.06557433307170868, + -0.04210345447063446, + -0.03914386034011841, + -0.02338080108165741, + -0.08394955843687057, + -0.04094535484910011, + -0.05337565392255783, + -0.023625288158655167, + 0.0031863900367170572, + -0.02525950036942959, + 0.001679248409345746, + -0.062177229672670364, + 0.025838550180196762, + -0.0005352202570065856, + 0.008608561009168625, + -0.03350776061415672, + 0.03816590830683708, + -0.030676845461130142, + -0.0526035837829113, + 0.02332932874560356, + 0.027640042826533318, + -0.0666552260518074, + 0.054868318140506744, + 0.027151066809892654, + -0.07406707853078842, + -0.0013905271189287305, + -0.009367761202156544, + -0.02049841172993183, + 0.01684395596385002, + 0.04153727367520332, + 0.04086814820766449, + -0.048434413969516754, + -0.1135455071926117, + 0.10052328556776047, + -0.022492922842502594, + -0.0892510935664177, + 0.01793771982192993, + -0.011439478024840355, + -0.05703010782599449, + 0.0374453105032444, + 0.023946983739733696, + 0.007913699373602867, + -0.006125074811279774, + 0.01420605555176735, + 0.051574159413576126, + -0.07936861366033554, + 0.007173800840973854, + -0.046916015446186066, + -0.0008782276418060064, + 0.0568242222070694, + -0.04104829579591751, + 0.002711889799684286, + -0.04019901901483536, + -0.01397443562746048, + 0.06552285701036453, + -0.052449170500040054, + 0.0374453105032444, + 0.06825083494186401, + 0.020627090707421303, + -0.04763661324977875, + 0.020794371142983437, + 0.03330187872052193, + 0.04300420358777046, + -0.016354979947209358, + -0.031757742166519165, + -0.10994251817464828, + 0.005121386144310236, + -0.004892982542514801, + -0.03350776061415672, + -0.013987303711473942, + 0.036055587232112885, + -0.0506991483271122, + -0.038062963634729385, + 0.027923135086894035, + 0.028257697820663452, + -0.04629835858941078, + 0.06279488652944565, + 0.022158358246088028, + 0.0029129493050277233, + -0.02854079008102417, + -0.02049841172993183, + -0.009908209554851055, + -0.05553744360804558, + 0.015003859996795654, + -0.062125761061906815, + 0.009194046258926392, + 0.0078300591558218, + 0.04220639914274216, + -0.005085999611765146, + -0.05353006720542908, + 0.028257697820663452, + -0.07555975019931793, + -0.011304366402328014, + -0.0018031010404229164, + -0.03268422186374664, + -0.002263125032186508, + 0.05914042890071869, + 0.013408252038061619, + -0.005021660588681698, + 0.09794972836971283, + 0.012565410695970058, + -0.026507677510380745, + -0.02401132322847843, + 0.042721111327409744, + -0.07159646600484848, + 0.001840095967054367, + -0.06104486435651779, + -0.003911812324076891, + 0.0157115887850523, + -0.024783391505479813, + -0.07942008972167969, + -0.03430556505918503, + 0.030162133276462555, + -0.055228617042303085, + 0.046787336468696594, + -0.00691644474864006, + -0.049206484109163284, + 0.0545080192387104, + -0.03996739909052849, + 0.001080091344192624, + 0.021450629457831383, + 0.017706098034977913, + 0.0038185210432857275, + -0.008479882963001728, + -0.023689627647399902, + -0.007501929998397827, + -0.0747876763343811, + -0.0870378315448761, + -0.009444968774914742, + 0.04905207082629204, + -0.01173543743789196, + -0.02054988406598568, + 0.07216264307498932, + 0.0354379341006279, + 0.015042463317513466, + -0.07046409696340561, + 0.03489748388528824, + 0.022261301055550575, + -0.014990991912782192, + -0.016354979947209358, + 0.014450544491410255, + -0.034176889806985855, + 0.003307025646790862, + -0.027845928445458412, + 0.02635326236486435, + -0.009078236296772957, + 0.013807154260575771, + 0.013112292625010014, + 0.01232735626399517, + 0.04645277187228203, + -0.00842197798192501, + 0.08549369126558304, + 0.018375225365161896, + -0.06243458762764931, + -0.04164021462202072, + -0.03438277170062065, + -0.02579994685947895, + 0.04598953202366829, + -0.031937889754772186, + 0.08662606030702591, + -0.07875096052885056, + -0.025040747597813606, + -0.03615853190422058, + 0.03808870166540146, + 0.013395383954048157, + 0.05188298597931862, + 0.05389036610722542, + 0.05553744360804558, + -0.009464270435273647, + -0.03397100418806076, + 0.001461300067603588, + -0.08662606030702591 + ] + }, + { + "id": "23b174c7-a08a-4097-a714-597b0c627a4f", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "vwhite", + "reviewDate": "2021-04-08T17:26:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ad8917ea-36e9-45c7-916a-67c59f0f5d8e", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "maryhubbard", + "reviewDate": "2021-12-26T19:24:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d5d15905-00c0-4c70-b4d3-e20981dd02a6", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "ycoleman", + "reviewDate": "2021-04-07T12:14:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0438f016-b729-437f-9551-7e0e7f8f2387", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "huertamary", + "reviewDate": "2021-09-10T12:54:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "587c5c17-cf80-4b59-bff5-5881ad681d89", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifermolina", + "reviewDate": "2021-09-28T11:21:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "27620b8e-9561-4839-97a3-63e68d8a525b", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "alan79", + "reviewDate": "2022-04-05T19:24:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b226d935-c7d3-4bbc-a81e-4255a936f043", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "ktaylor", + "reviewDate": "2022-05-10T05:50:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "21595a3f-2471-41aa-b28c-880db5bfedbe", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert44", + "reviewDate": "2021-01-15T03:58:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7f0b9702-c145-435d-b107-15f17464746b", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "susancallahan", + "reviewDate": "2022-01-20T06:56:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "afd6a838-dc1c-4a1d-9bc3-6d455e91801a", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeffrey03", + "reviewDate": "2022-07-20T07:34:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5f1f82f1-cc31-4de3-bea0-f6baf89498b5", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "theodorehopkins", + "reviewDate": "2022-12-27T01:46:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "23c010f2-c5a2-4524-af7c-9e4f34c554c5", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "amyschmidt", + "reviewDate": "2021-12-07T21:58:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b1f78b7e-fd28-49ea-9a66-861c62626009", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "alec56", + "reviewDate": "2022-03-13T08:04:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "61609255-0dec-4d46-8393-25fff00e103d", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "bellheather", + "reviewDate": "2022-06-22T05:59:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e543caf0-35e7-4469-92e2-ed3f1058e3e5", + "productId": "a2493f3f-571b-454a-bb3e-d66bc6b33d7e", + "category": "Electronics", + "docType": "customerRating", + "userName": "edwardsmelissa", + "reviewDate": "2021-09-23T20:48:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "df44a026-c591-494f-a387-a29dc645477c", + "productId": "df44a026-c591-494f-a387-a29dc645477c", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer + (Red)", + "description": "This Basic Computer + (Red) is a computer that runs Windows. It is a full-speed digital computer made for making up games and performing basic tasks such as writing scripts. If you do not wish to install Python (or other programming language) on your computer, all necessary Python programs for this Basic Computer are available on an additional download link. You can download or open up the Python installation files. The Python interpreter is a special", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-01-26T11:07:00", + "price": 756.17, + "stock": 42, + "priceHistory": [ + { + "priceDate": "2021-10-30T23:38:01", + "newPrice": 700.11 + }, + { + "priceDate": "2021-11-11T23:38:01", + "newPrice": 811.11 + }, + { + "priceDate": "2021-11-23T23:38:01", + "newPrice": 801.78 + }, + { + "priceDate": "2021-12-05T23:38:01", + "newPrice": 723.35 + }, + { + "priceDate": "2021-12-17T23:38:01", + "newPrice": 801.26 + }, + { + "priceDate": "2022-06-14T23:38:01", + "newPrice": 756.17 + } + ], + "descriptionVector": [ + -0.05314397066831589, + 0.01751544326543808, + -0.03084740787744522, + 0.06114314869046211, + 0.0012010261416435242, + 0.047627296298742294, + 0.0659242644906044, + 0.022032221779227257, + 0.036364082247018814, + 0.09217444807291031, + 0.04896049201488495, + -0.06514273583889008, + 0.038363877683877945, + -0.09415125846862793, + 0.01018860936164856, + 0.060453563928604126, + -0.033123038709163666, + -0.006056849379092455, + -0.023813648149371147, + -0.006579784210771322, + 0.06790107488632202, + 0.020561108365654945, + -0.06693565845489502, + 0.05001785606145859, + -0.024549204856157303, + 0.017400512471795082, + -0.009447306394577026, + -0.005056952126324177, + 0.009056542068719864, + 0.01799815334379673, + 0.08215248584747314, + 0.02523878961801529, + -0.00267357612028718, + -0.02622719295322895, + -0.015768496319651604, + -0.028181016445159912, + -0.012458491139113903, + -0.07567039132118225, + 0.008573832921683788, + -0.015124884434044361, + 0.027376500889658928, + 0.011975781992077827, + 0.0625682920217514, + -0.04636305570602417, + 0.016641970723867416, + 0.04831688106060028, + 0.007349820341914892, + -0.03760533407330513, + -0.0037869676016271114, + -0.05829286575317383, + 0.014860543422400951, + 0.009464546106755733, + 0.1270674169063568, + 0.037375472486019135, + 0.0032927654683589935, + 0.0411452017724514, + -0.016205232590436935, + 0.06509676575660706, + -0.054339248687028885, + -0.1263318657875061, + -0.025031913071870804, + 0.04684576764702797, + -0.06261426210403442, + -0.00603386340662837, + -0.08256623893976212, + 0.04319097101688385, + -0.03204268962144852, + 0.04371964931488037, + 0.046087224036455154, + 0.025560595095157623, + 0.027698306366801262, + -0.006941816303879023, + -0.017791276797652245, + 0.034732066094875336, + 0.0014768599066883326, + 0.005260954145342112, + 0.0187681894749403, + -0.006464853882789612, + 0.05254632979631424, + -0.03792714327573776, + -0.0014488454908132553, + -0.039398256689310074, + -0.008849666453897953, + -0.030042894184589386, + -0.013676756992936134, + -0.026548998430371284, + 0.005895946640521288, + -0.06620009988546371, + 0.020078398287296295, + 0.024962954223155975, + 0.09217444807291031, + 0.06491287797689438, + 0.08702555298805237, + 0.010619599372148514, + 0.03431831672787666, + 0.01782575622200966, + -0.04684576764702797, + 0.047121599316596985, + -0.04392652586102486, + 0.05512077733874321, + 0.059901896864175797, + -0.024411287158727646, + -0.08573832362890244, + -0.08486485481262207, + 0.03806505724787712, + -0.04905243590474129, + 0.03353678807616234, + -0.0036404309794306755, + -0.030709492042660713, + -0.05194869264960289, + -0.10279404371976852, + -0.015699537470936775, + -0.0008124166051857173, + 0.029537199065089226, + -0.03275525942444801, + 0.0036720368079841137, + -0.02468712069094181, + -0.027376500889658928, + 0.02673288807272911, + -0.0003652642189990729, + 0.07019969075918198, + 0.022296562790870667, + -0.013102103024721146, + -0.002710928674787283, + -0.03197373077273369, + 0.014515751041471958, + -0.013837659731507301, + -0.07231441885232925, + 0.035260748118162155, + -0.006631503347307444, + -0.02169892191886902, + 0.06233843043446541, + 0.02006690576672554, + 0.01206772681325674, + 0.03365171700716019, + 0.015239815227687359, + 0.034226372838020325, + 0.0618327334523201, + 0.023445868864655495, + 0.01636613719165325, + -0.04891451820731163, + -0.004703540354967117, + -0.03799609839916229, + 0.03903047740459442, + -0.042984094470739365, + -0.0035599793773144484, + -0.02367573045194149, + 0.031123241409659386, + 0.020503642037510872, + -0.017607389017939568, + -0.07318788766860962, + -0.08086526393890381, + 0.020216315984725952, + 0.016848845407366753, + 0.016848845407366753, + 0.025974346324801445, + -0.004959261044859886, + 0.045006874948740005, + -0.025422677397727966, + 0.0565459206700325, + 0.004212211351841688, + 0.046064238995313644, + 0.001473986660130322, + -0.004548383876681328, + 0.02002093382179737, + 0.014262903481721878, + -0.003738122060894966, + 0.003516880329698324, + -0.10316182672977448, + 0.010263314470648766, + -0.030548589304089546, + 0.011337916366755962, + -0.014757106080651283, + 0.028204001486301422, + -0.034686096012592316, + 0.025560595095157623, + 0.014584709890186787, + 0.04627111181616783, + 0.06357967853546143, + -0.07176274806261063, + -0.03190477192401886, + -0.021986249834299088, + -0.011136787943542004, + 0.05001785606145859, + -0.0061028217896819115, + 0.012446998618543148, + 0.022779271006584167, + 0.03307706490159035, + -0.052316468209028244, + -0.0037496150471270084, + 0.035306721925735474, + -0.0955304279923439, + 0.06367162615060806, + -0.059855926781892776, + 0.02090590074658394, + -0.00012678296479862183, + -0.03208865970373154, + 0.008637044578790665, + -0.05705161392688751, + -0.00606259610503912, + 0.01212519221007824, + -0.02292868122458458, + 0.03227255120873451, + 0.02569851092994213, + -0.017963673919439316, + 0.01700974814593792, + -0.000721190357580781, + -0.026640944182872772, + 0.03974304720759392, + -0.002600307809188962, + 0.068820521235466, + -0.02244597114622593, + -0.07833679020404816, + -0.0029235505498945713, + 0.08008373528718948, + -0.00015192406135611236, + -0.02002093382179737, + -0.0172051303088665, + -0.0779690071940422, + -0.009855310432612896, + 0.04321395605802536, + -0.010424217209219933, + -0.056362032890319824, + -0.03496192768216133, + 0.001831708592362702, + -0.06072939932346344, + 0.0596720352768898, + 0.020710518583655357, + 0.019791072234511375, + 0.011636736802756786, + -0.019067008048295975, + 0.03153699263930321, + 0.06275217980146408, + -0.01135515607893467, + -0.03703068196773529, + 0.049742020666599274, + 0.10251821577548981, + -0.027031708508729935, + -0.13874438405036926, + 0.11603406816720963, + 0.03751339018344879, + 0.03231852129101753, + -0.07962401211261749, + -0.09782903641462326, + -0.00340194976888597, + -0.018182041123509407, + 0.06284412741661072, + -0.004036942031234503, + -0.038294918835163116, + -0.037283528596162796, + -0.007303847931325436, + 0.040984299033880234, + 0.06440718472003937, + 0.029008517041802406, + -0.06624607741832733, + 0.007240636274218559, + 0.09617403894662857, + -0.013688250444829464, + -0.05599425360560417, + -0.037375472486019135, + -0.011694202199578285, + -0.02519281581044197, + -0.048592712730169296, + 0.069280244410038, + -0.03804207220673561, + 0.016228219494223595, + 0.03659394383430481, + -0.10886239260435104, + -0.04413340240716934, + 0.028709696605801582, + 0.0967257022857666, + 0.03043365851044655, + 0.03847881034016609, + 0.0040628015995025635, + -0.005947665311396122, + -0.008068137802183628, + 0.011182759888470173, + 0.08284207433462143, + -0.020951872691512108, + -0.03438727557659149, + -0.011159773916006088, + 0.04073145240545273, + 0.06771718710660934, + -0.025997331365942955, + -0.0003331195330247283, + -0.0536496676504612, + -0.06321190297603607, + -0.024043509736657143, + -0.022147152572870255, + -0.012102206237614155, + 0.010533401742577553, + 0.05024771764874458, + -0.01700974814593792, + 0.07617609202861786, + 0.043030064553022385, + 0.0575113371014595, + -0.03542165085673332, + -0.06629204750061035, + 0.04068547859787941, + 0.048132989555597305, + 0.0014035915955901146, + -0.045443613082170486, + 0.009188711643218994, + -0.022744791582226753, + 0.010217342525720596, + -0.004177731927484274, + 0.0471675731241703, + -0.02336541749536991, + 0.008229040540754795, + 0.019664648920297623, + 0.05116716027259827, + -0.03721456974744797, + -0.045029859989881516, + -0.00886690616607666, + 0.08316387981176376, + -0.013377937488257885, + 0.05930425599217415, + -0.02625017985701561, + -0.0193658284842968, + 0.00976911187171936, + -0.017457978799939156, + -0.020997844636440277, + -0.061464954167604446, + 0.10536849498748779, + 0.10113904625177383, + -0.03399651125073433, + -0.07764720171689987, + 0.024962954223155975, + -0.0267099030315876, + -0.07580830901861191, + -0.025583580136299133, + -0.06528065353631973, + -0.02415844053030014, + 0.026985736563801765, + 0.027629347518086433, + -0.0875772163271904, + -0.005982144735753536, + 0.0649588480591774, + 0.03611123561859131, + 0.0567757822573185, + 0.0348929688334465, + 0.04873063042759895, + -0.03252539783716202, + -0.035789430141448975, + -0.016308670863509178, + -0.05346577614545822, + -0.03351380303502083, + 0.05553453043103218, + 0.007045254111289978, + 0.03721456974744797, + 0.0016190867172554135, + 0.00491328863427043, + 0.02824997343122959, + 0.008642790839076042, + 0.08762319386005402, + 0.004005336202681065, + -0.017412006855010986, + -0.0627981498837471, + -0.03516880422830582, + 0.04891451820731163, + 0.0038990250322967768, + -0.0324794240295887, + 0.053327858448028564, + 0.0004406875232234597, + -0.07226844131946564, + -0.04840882495045662, + -0.03385859355330467, + 0.0428231917321682, + 0.04673083499073982, + 0.023399896919727325, + 0.017136171460151672, + 0.03797311335802078, + -0.014906516298651695, + -0.03404248133301735, + -0.0138951251283288, + -0.06164884567260742, + -0.03234150633215904, + 0.03845582157373428, + -0.048684656620025635, + 0.008774961344897747, + 0.00824053306132555, + 0.06289009749889374, + 0.021262185648083687, + -0.013619291596114635, + 0.08284207433462143, + -0.11842462420463562, + -0.024342328310012817, + -0.08297999203205109, + -0.002163571072742343, + 0.04983396455645561, + -0.003568599233403802, + -0.021239198744297028, + -0.08472693711519241, + -0.003657670458778739, + -0.008137095719575882, + -0.013240020722150803, + -0.025951359421014786, + -0.017641866579651833, + 0.015653565526008606, + 0.021112775430083275, + 0.01575700379908085, + -0.054798971861600876, + 0.03174386918544769, + -0.052270498126745224, + -0.05833883956074715, + -0.08178471028804779, + -0.0801297053694725, + -0.027905181050300598, + 0.030709492042660713, + -0.06684371083974838, + -0.016733914613723755, + 0.00352837354876101, + -0.02143458090722561, + 0.05213258042931557, + -0.033123038709163666, + -0.05645397678017616, + -0.06955607980489731, + 0.0822904035449028, + 0.007614160887897015, + 0.04073145240545273, + 0.01577998884022236, + 0.004692047368735075, + -0.0028560287319123745, + -0.012918214313685894, + -0.006884350907057524, + -0.01744648441672325, + -0.0068498714827001095, + -0.005125910509377718, + -0.035214778035879135, + -0.031720880419015884, + -0.04725951701402664, + -0.04020277038216591, + -0.001458902028389275, + 0.01835443824529648, + -0.012711338698863983, + -0.0006698306533508003, + -0.010119650512933731, + 0.039903949946165085, + -0.030042894184589386, + 0.0637635737657547, + -0.01145284716039896, + -0.04983396455645561, + -0.0273075420409441, + 0.02473309449851513, + -0.05047757923603058, + 0.05038563162088394, + -0.02004391886293888, + 0.032640326768159866, + 0.14260604977607727, + 0.001053052837960422, + -0.0009022062295116484, + -0.021331144496798515, + -0.00243365834467113, + -0.0401797853410244, + 0.018182041123509407, + -0.012251616455614567, + -0.060407593846321106, + 0.0037840944714844227, + -0.03916839510202408, + -0.009487532079219818, + -0.01722811721265316, + -0.0396970734000206, + 0.07052149623632431, + -0.012872242368757725, + -0.013504360802471638, + -0.014182452112436295, + -0.003815700300037861, + -0.0883127748966217, + -0.017044227570295334, + -0.008751975372433662, + -0.07295802980661392, + -0.07406136393547058, + 0.02889358624815941, + 0.0471675731241703, + 0.0616028718650341, + -0.05254632979631424, + 0.012688352726399899, + 0.005815495271235704, + -0.017067214474081993, + 0.013297486118972301, + 0.04877660423517227, + -0.09199056029319763, + -0.012975679710507393, + -0.10775905102491379, + 0.03282421827316284, + 0.05912036821246147, + 0.012929707765579224, + 0.041880760341882706, + 0.0524543859064579, + 0.011544791981577873, + -0.012814776971936226, + 0.07065941393375397, + 0.08275012671947479, + -0.0035571062471717596, + -0.018584299832582474, + 0.010579373687505722, + 0.023020625114440918, + 0.023261981084942818, + -0.007119958754628897, + 0.07617609202861786, + -0.017676346004009247, + -0.0380190871655941, + -0.012159671634435654, + 0.03041067160665989, + 0.009993227198719978, + 0.07300399988889694, + 0.03820297494530678, + 0.07042955607175827, + -0.020687531679868698, + -0.0024207285605371, + 0.0076716262847185135, + -0.08941610902547836 + ] + }, + { + "id": "9e40d4b6-d073-4ff7-abf5-a9ea282f4870", + "productId": "df44a026-c591-494f-a387-a29dc645477c", + "category": "Electronics", + "docType": "customerRating", + "userName": "robinsonmark", + "reviewDate": "2021-12-21T11:36:06", + "stars": 4, + "verifiedUser": true + }, + { + "id": "bc378efa-a989-4ee7-a871-7cb3e30ed21c", + "productId": "df44a026-c591-494f-a387-a29dc645477c", + "category": "Electronics", + "docType": "customerRating", + "userName": "whitealexander", + "reviewDate": "2021-10-30T23:38:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Pro (Red)", + "description": "This Amazing Filter Pro (Red) is sold separately.\n\nSASIS-U4 (SAS1, $22.00)\n\n\"The SAS-U4 is your new-look Filter Pro!\" \"The SAS", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-07-15T12:22:57", + "price": 952.35, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-02-12T06:44:40", + "newPrice": 911.39 + }, + { + "priceDate": "2021-09-27T06:44:40", + "newPrice": 1000.45 + }, + { + "priceDate": "2022-05-12T06:44:40", + "newPrice": 981.69 + }, + { + "priceDate": "2022-12-25T06:44:40", + "newPrice": 880.09 + }, + { + "priceDate": "2023-04-30T06:44:40", + "newPrice": 952.35 + } + ], + "descriptionVector": [ + 0.010945156216621399, + 0.022091535851359367, + -0.03340320661664009, + 0.07117585092782974, + 0.05412929505109787, + -0.05737762898206711, + -0.046137820929288864, + 0.0323108471930027, + 0.015134930610656738, + 0.051398396492004395, + -0.050765976309776306, + -0.0032627058681100607, + 0.07864989340305328, + -0.04107847064733505, + 0.05197332054376602, + -0.0247361958026886, + -0.09733499586582184, + 0.011124820448458195, + -0.06732384860515594, + 0.014710921794176102, + 0.006917079910635948, + -0.012950210832059383, + -0.06214951351284981, + -0.009141325019299984, + 0.032224610447883606, + 0.04251578822731972, + -0.037197720259428024, + 0.04110721871256828, + -0.043550655245780945, + 0.03670903295278549, + 0.07767251878976822, + 0.043090712279081345, + 0.06536909937858582, + 0.06163208186626434, + -0.04872499033808708, + 0.05499168485403061, + 0.03834757208824158, + 0.034150611609220505, + -0.017032185569405556, + 0.07922481745481491, + 0.0168453361839056, + -0.019705593585968018, + -0.04297572746872902, + 0.022767074406147003, + -0.017032185569405556, + 0.007021285127848387, + -0.06347184628248215, + 0.0337769091129303, + -0.04590785130858421, + 0.033748164772987366, + 0.04280325025320053, + 0.04018733650445938, + -0.06876116245985031, + -0.013489204458892345, + 0.02301141805946827, + -0.005278540309518576, + 0.022738328203558922, + 0.20467370748519897, + 0.05806753784418106, + -0.033518191426992416, + 0.01701781339943409, + -0.05070848390460014, + 0.06082718446850777, + 0.018756965175271034, + -0.020912937819957733, + -0.001418450498022139, + -0.09095331281423569, + -0.04806382581591606, + 0.06559906899929047, + 0.07152081280946732, + 0.015867961570620537, + 0.01913066767156124, + 0.025368615984916687, + 0.024060659110546112, + 0.005001857411116362, + 0.08888357877731323, + 0.16304904222488403, + -0.022652089595794678, + 0.016902828589081764, + -0.05243326351046562, + 0.02502365969121456, + 0.08399670571088791, + -0.015709856525063515, + 0.029579948633909225, + -0.0102121252566576, + -0.003404640592634678, + 0.03426559641957283, + -0.14051194489002228, + 0.08790620416402817, + -0.029982397332787514, + 0.0013438898604363203, + 0.08129455149173737, + 0.01813891902565956, + -0.06830122321844101, + 0.024118151515722275, + 0.005271353758871555, + -0.016011692583560944, + 0.027366483584046364, + -0.04035981371998787, + -0.0032986386213451624, + -0.01364012248814106, + -0.04952988401055336, + -0.05548037216067314, + 0.0023518071975558996, + -0.007553091738373041, + -0.007553091738373041, + -0.053123172372579575, + -0.04234330728650093, + -0.0456203892827034, + 0.006464325822889805, + -0.009888729080557823, + 0.019820578396320343, + -0.0384625568985939, + 0.02555546537041664, + 0.0173483956605196, + -0.02671969123184681, + -0.016658484935760498, + 0.00789804756641388, + -0.0003561846970114857, + 0.012008769437670708, + 0.01506306417286396, + 0.019518742337822914, + 0.042429547756910324, + 0.02549797296524048, + 0.012138127349317074, + 0.039813634008169174, + 0.06381680071353912, + 0.011110447347164154, + 0.04392435774207115, + -0.052260786294937134, + -0.10854605585336685, + 0.0010779864387586713, + 0.02794140949845314, + 0.045534148812294006, + -0.06145960092544556, + 0.043780624866485596, + 0.007768689189106226, + 0.1469511240720749, + -0.03849130496382713, + 0.03578915074467659, + -0.03725521266460419, + -0.0187713373452425, + 0.05766509100794792, + 0.10779865086078644, + -0.028918784111738205, + -0.03647906333208084, + 0.0061085899360477924, + 0.07623520493507385, + -0.013086755760014057, + 0.017520872876048088, + -0.024549346417188644, + -0.09658759087324142, + -0.005357592832297087, + -0.017635859549045563, + 0.020797953009605408, + 0.0755452960729599, + -0.005084502976387739, + 0.030873533338308334, + 0.008077711798250675, + 0.03538670390844345, + -0.033087000250816345, + 0.010700812563300133, + -0.00015855384117458016, + 0.006600870750844479, + -0.01282803900539875, + -0.05171460658311844, + 0.026302870362997055, + 0.02758208103477955, + -0.025929167866706848, + 0.010916410014033318, + 0.06111464649438858, + -0.009924662299454212, + 0.023385120555758476, + -0.05527914687991142, + 0.02059672772884369, + 0.011850664392113686, + 0.038290079683065414, + 0.019360637292265892, + -0.011139193549752235, + -0.01979183219373226, + -0.016629738733172417, + -0.007032065186649561, + -0.017851456999778748, + -0.056457746773958206, + 0.01760711334645748, + -0.042889490723609924, + 0.05430177226662636, + -0.02972368150949478, + 0.052490755915641785, + -0.007111117709428072, + 0.0351567342877388, + 0.017535246908664703, + 0.07767251878976822, + 0.015767348930239677, + -0.05019105225801468, + 0.002412893110886216, + -0.03095977194607258, + 0.011318857781589031, + -0.02664782665669918, + 0.02293955162167549, + -0.05714765563607216, + 0.02420439012348652, + 0.0664614588022232, + 0.027826424688100815, + -0.013941958546638489, + 0.03929620236158371, + -0.019906817004084587, + 0.022666461765766144, + -0.005073722917586565, + -0.027883917093276978, + -0.017132798209786415, + -0.08641139417886734, + -0.04320569708943367, + 0.022623343393206596, + 0.011692560277879238, + 0.005152775440365076, + 0.0010995462071150541, + -0.041135963052511215, + 0.03162093833088875, + 0.009443162009119987, + -0.014624683186411858, + -0.032368339598178864, + -0.0026338803581893444, + -0.011347603984177113, + -0.009709064848721027, + -0.005321660079061985, + 0.007711196783930063, + -0.014890586957335472, + 0.07962726801633835, + 0.037197720259428024, + -0.08089210838079453, + -0.027883917093276978, + 0.0008933813078328967, + -0.010664879344403744, + -0.07744254916906357, + -0.011031394824385643, + -0.03121848776936531, + -0.0020607507321983576, + 0.008056152611970901, + -0.016399767249822617, + -0.019849324598908424, + 0.03055732324719429, + -0.06467919051647186, + 0.016629738733172417, + 0.08618142455816269, + 0.010176192037761211, + 0.0589299276471138, + -0.07428045570850372, + -0.07652267068624496, + 0.03254081681370735, + -0.049644872546195984, + 0.023025792092084885, + -0.04585035890340805, + 0.018397636711597443, + -0.014962452463805676, + 0.10549894720315933, + 0.02916312776505947, + -0.07525783032178879, + -0.04760388284921646, + -0.06812874227762222, + 0.033460699021816254, + 0.015264288522303104, + 0.05148463323712349, + -0.002308687660843134, + -0.041825875639915466, + -0.04021608084440231, + -0.011297298595309258, + -0.04449928179383278, + -0.01622729003429413, + 0.054244279861450195, + 0.04366564005613327, + 0.04475799947977066, + -0.0447005070745945, + 0.03774389997124672, + -0.0002423223777441308, + 0.04349316284060478, + -0.0789373591542244, + 0.12487395107746124, + 0.018383262678980827, + -0.005318066570907831, + 0.012705867178738117, + 0.05806753784418106, + 0.02697840891778469, + -0.01923127844929695, + 0.06117213889956474, + 0.005634276196360588, + -0.015666736289858818, + 0.022723954170942307, + -0.045074209570884705, + -0.024419987574219704, + -0.030039889737963676, + 0.01694594696164131, + 0.05108218640089035, + -0.03995736688375473, + 0.039842382073402405, + 0.010377416387200356, + 0.04467175900936127, + -0.010334297083318233, + 0.004390998277813196, + 0.013647308573126793, + -0.0014885197160765529, + -0.03141971305012703, + -0.044844236224889755, + 0.007445293478667736, + -0.0028422910254448652, + 0.08859611302614212, + -0.023528851568698883, + 0.0032950453460216522, + -0.01836889050900936, + -0.05283571034669876, + 0.0807771235704422, + -0.022982671856880188, + -0.007646517362445593, + -0.03409311920404434, + 0.07589025050401688, + -0.033288221806287766, + -0.03926745429635048, + -0.012332165613770485, + 0.028027648106217384, + 0.007495599333196878, + -0.09997965395450592, + 0.011369164101779461, + -0.02029489167034626, + 0.06663393974304199, + 0.08439915627241135, + 0.014272540807723999, + -0.023428238928318024, + 0.00938566867262125, + 0.025512346997857094, + -0.012519015930593014, + 0.0035843050573021173, + 0.026159139350056648, + 0.022565850988030434, + 0.0249661672860384, + 0.009292243048548698, + -0.010607386939227581, + 0.04165339842438698, + 0.054905444383621216, + -0.07060092687606812, + -0.00682724779471755, + 0.07083089649677277, + 0.021071042865514755, + 0.01813891902565956, + -0.009479094296693802, + 0.07221072167158127, + 0.004017296247184277, + 0.01436596643179655, + -0.06151709705591202, + 0.018498247489333153, + 0.011879410594701767, + 0.001824492122977972, + -0.04932866245508194, + 0.04633904621005058, + -0.029809920117259026, + 0.02784079685807228, + 0.010607386939227581, + 0.01579609513282776, + 0.0016547092236578465, + 0.03630658611655235, + -0.0204242505133152, + -0.0025404547341167927, + -0.002078717341646552, + 0.009586893022060394, + 0.07215322554111481, + 0.06927859783172607, + 0.09676006436347961, + -0.012756173498928547, + 0.02227838709950447, + -0.0235432256013155, + 0.011110447347164154, + -0.10463655740022659, + -0.01397070474922657, + -0.03734145313501358, + -0.018455129116773605, + -0.059274882078170776, + -0.04567788168787956, + 0.049673616886138916, + 0.027064647525548935, + 0.0001281231816392392, + 0.04240080341696739, + 0.03932494670152664, + 0.06053972244262695, + -0.0830768272280693, + 0.015810469165444374, + 0.12280421704053879, + 0.009931848384439945, + -0.00873887725174427, + -0.042314562946558, + -0.043780624866485596, + 0.030011143535375595, + -0.12303419411182404, + -0.06956606358289719, + 0.022436492145061493, + -0.007078777998685837, + 0.0023877399507910013, + -0.0769251137971878, + 0.0036364076659083366, + 0.03823258727788925, + 0.07870738953351974, + -0.016773469746112823, + 0.013776667416095734, + -0.023083284497261047, + -0.02502365969121456, + -0.0441543273627758, + -0.08779121935367584, + 0.015336154028773308, + -0.0008426260901615024, + 0.04829379543662071, + 0.05476171150803566, + -0.10843106359243393, + 0.06778378784656525, + -0.05151338130235672, + -0.009292243048548698, + 0.0039741769433021545, + -0.002718322677537799, + 0.058153778314590454, + 0.029982397332787514, + 0.003332774853333831, + 0.07727006822824478, + -0.004840159323066473, + 0.03650780767202377, + 0.045476656407117844, + -0.0019870884716510773, + 0.03530046343803406, + 0.0025099117774516344, + 0.007247662637382746, + 0.050104811787605286, + 0.04041730612516403, + -0.008702944032847881, + -0.050104811787605286, + 0.03383440151810646, + 0.01754961907863617, + -0.02740960381925106, + 0.0002611871459521353, + -0.02648972161114216, + -0.03673778101801872, + -0.0220771636813879, + -0.02582855522632599, + -0.002770425286144018, + -0.0013474831357598305, + -0.040503546595573425, + -0.012267486192286015, + -0.05559535697102547, + 0.02771143987774849, + -0.06502414494752884, + -0.07612022012472153, + -0.002236821921542287, + -0.004462864249944687, + -0.007168610114604235, + -0.002459605922922492, + -0.06830122321844101, + 0.041567157953977585, + -0.07284314185380936, + 0.03389189392328262, + 0.06134461611509323, + -0.02860257402062416, + -0.002693169517442584, + 0.10429159551858902, + 0.02572794444859028, + 0.015781722962856293, + 0.002215262269601226, + 0.07945478707551956, + 0.05392806977033615, + -0.050507258623838425, + -0.02827199175953865, + -9.948916704161093e-05, + -0.05852748081088066, + -0.04303321987390518, + 0.030471084639430046, + 0.004240080248564482, + -0.01655787229537964, + -0.028688814491033554, + 0.018023934215307236, + 0.06007977947592735, + -0.036565300077199936, + 0.050737231969833374, + -0.0641617551445961, + 0.008968847803771496, + 0.029953651130199432, + -0.03886500746011734, + -0.05082346871495247, + -1.2344909919193015e-05, + -0.06927859783172607, + 0.03843381255865097, + 0.00758183840662241, + 0.027768932282924652, + 0.02069734036922455, + 0.027035901322960854, + 0.03187965229153633, + 0.029522456228733063, + 0.057262640446424484, + 0.012835226021707058, + 0.027725812047719955, + -0.004161027725785971, + -0.02283894084393978, + -0.030269861221313477, + -0.0029680561274290085, + -0.029953651130199432, + -0.04478674381971359, + -0.021990925073623657, + 0.011045767925679684, + 0.03279953449964523, + -0.022968297824263573, + -0.06255196034908295, + -0.005264167208224535, + 0.005519290920346975, + 0.06669142842292786, + -0.07209573686122894, + 0.00024614023277536035, + -0.042458295822143555, + 0.01395633164793253, + 0.03300075978040695 + ] + }, + { + "id": "c0ca6129-c29f-45a9-ac1a-68668d1903d0", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "kingerika", + "reviewDate": "2021-10-27T00:17:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6e4d206c-85c8-47d5-ab95-325d100c0e67", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "thomaswilliam", + "reviewDate": "2022-08-05T07:42:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "32897821-9ffb-4d69-99bf-76cf31861b9b", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "theodoreramirez", + "reviewDate": "2022-05-24T02:05:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9e82ed72-a95c-4e4c-b97a-d682f828199a", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "susangarcia", + "reviewDate": "2022-02-05T05:51:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e5d16f4e-38cf-407b-9769-4108d9b7a66c", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "robert82", + "reviewDate": "2021-08-26T11:56:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f2f005d3-569e-4d9f-84f7-374732cd7236", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "brandonwilkerson", + "reviewDate": "2021-02-14T04:32:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "72cec374-9943-42ef-a9d7-0455cdad4d99", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "vaughanamber", + "reviewDate": "2021-12-04T14:13:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9127e94f-b7e5-4a1e-a727-4e616a6c13bd", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "melissa10", + "reviewDate": "2021-02-12T06:44:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ad7fb333-c1f7-487c-b482-f3fc60b0068b", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "amymorales", + "reviewDate": "2022-11-05T03:48:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "78f12294-b456-4e58-80ab-ad887277e511", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "anthony60", + "reviewDate": "2022-06-21T20:31:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0f9a23ae-f931-4205-895a-ebe635b9340f", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "cassandranielsen", + "reviewDate": "2022-06-01T03:53:55", + "stars": 5, + "verifiedUser": false + }, + { + "id": "dcced037-4f6d-4bcd-acfe-4d7811d22ac2", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "imcgee", + "reviewDate": "2022-12-27T05:57:38", + "stars": 4, + "verifiedUser": true + }, + { + "id": "45df53ea-93d1-4691-be8b-f904c2c425de", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "gmurphy", + "reviewDate": "2021-08-22T00:28:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "52e1ec86-d3aa-425f-a91c-499372fdfe48", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "joseph27", + "reviewDate": "2022-02-01T11:00:40", + "stars": 5, + "verifiedUser": true + }, + { + "id": "c86017f4-1a10-4ed1-ad5e-6410a1e07611", + "productId": "4f774f9e-5542-47a7-840d-7692d28e75c0", + "category": "Other", + "docType": "customerRating", + "userName": "linda81", + "reviewDate": "2022-10-14T09:18:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "productId": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Silver)", + "description": "This Awesome Stand + (Silver) is now purchasable from the following merchants: Newegg, Kmart, Walmart, eBay and others. This product is not eligible for any other programs and promotions.\n\nCheck out our Product Page before purchasing.", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-01-17T18:32:56", + "price": 1084.19, + "stock": 32, + "priceHistory": [ + { + "priceDate": "2022-03-09T01:42:54", + "newPrice": 1039.84 + }, + { + "priceDate": "2022-05-31T01:42:54", + "newPrice": 986.12 + }, + { + "priceDate": "2022-08-22T01:42:54", + "newPrice": 992.37 + }, + { + "priceDate": "2022-11-13T01:42:54", + "newPrice": 985.55 + }, + { + "priceDate": "2024-12-11T01:42:54", + "newPrice": 1084.19 + } + ], + "descriptionVector": [ + -0.05544718727469444, + -0.03420986607670784, + -0.04851628839969635, + 0.04025151953101158, + -0.013665638864040375, + -0.12962087988853455, + -0.00854592863470316, + 0.052831754088401794, + 0.01384871918708086, + 0.07134902477264404, + 0.006685701664537191, + -0.04624086245894432, + 0.03088826686143875, + -0.05832416191697121, + 0.03632836788892746, + 0.026559725403785706, + -0.024467378854751587, + 0.01690877601504326, + -0.038708414882421494, + 0.059527263045310974, + 0.04148077219724655, + -0.038028400391340256, + -0.02327735722064972, + -0.00810784287750721, + -0.009324019774794579, + -0.03583143651485443, + -0.030077483505010605, + -0.01181522011756897, + 0.009029783308506012, + -0.00692435959354043, + -0.02186502330005169, + -0.014267188496887684, + -0.024807384237647057, + 0.04540392383933067, + -0.0317775160074234, + 0.035700663924217224, + -0.002870438154786825, + 0.0158626027405262, + 0.035360660403966904, + 0.0512101836502552, + -0.0044364286586642265, + -0.02383967489004135, + -0.014999509789049625, + 0.010932511650025845, + -0.038891494274139404, + 0.0038969956804066896, + 0.00997787807136774, + -0.04849013313651085, + -0.028874384239315987, + -0.032535988837480545, + 0.021211164072155952, + 0.009062476456165314, + -0.06010265648365021, + 0.019458824768662453, + 0.09964800626039505, + -0.009330558590590954, + 0.0119132986292243, + 0.10796508938074112, + 0.007414753548800945, + 0.014280266128480434, + -0.08406002819538116, + 0.025291239842772484, + 0.04851628839969635, + 0.059161100536584854, + -0.011860989965498447, + -0.012299074791371822, + -0.023002736270427704, + 0.01225984375923872, + 0.018464960157871246, + 0.007892070338129997, + -0.005665682256221771, + 0.011324826627969742, + 0.023185815662145615, + 0.040486909449100494, + 0.004240271169692278, + 0.035386811941862106, + 0.0476270392537117, + 0.02929285354912281, + 0.055865656584501266, + -0.016987239941954613, + 0.05361638218164444, + 0.023591209203004837, + -0.024284297600388527, + -0.04310234263539314, + -0.003936226945370436, + 0.00916709378361702, + 0.03248368203639984, + -0.13516558706760406, + -0.05623181536793709, + 0.02890053763985634, + 0.011148284189403057, + 0.006878589745610952, + 0.025474321097135544, + -0.021956562995910645, + 0.002373505849391222, + 0.0247158445417881, + -0.029894402250647545, + 0.06036420166492462, + 0.02114577777683735, + -0.010782123543322086, + 0.06308425217866898, + -0.028272833675146103, + 0.003220252227038145, + 0.028142062947154045, + -0.0846877321600914, + 0.09012783318758011, + -0.0035406427923589945, + 0.054767172783613205, + -0.021956562995910645, + -0.08531543612480164, + 0.02628510445356369, + -0.03933611884713173, + 0.049667079001665115, + 0.037871476262807846, + 0.053877927362918854, + 0.10069417953491211, + -0.010520580224692822, + -0.028612840920686722, + 0.026572803035378456, + -0.07035515457391739, + -0.0063849263824522495, + 0.003828340442851186, + 0.05942264571785927, + 0.013874873518943787, + 0.03674683719873428, + 0.021838868036866188, + -0.01956344209611416, + 0.03776685893535614, + 0.054610248655080795, + -0.0316990502178669, + -0.06632738560438156, + -0.006113575305789709, + 0.002615433419123292, + 0.021956562995910645, + -0.06585661321878433, + 0.038211479783058167, + 0.06611815094947815, + 0.06125344708561897, + -0.06852435320615768, + -0.028508223593235016, + -0.12386692315340042, + 0.0036092980299144983, + 0.04017305746674538, + 0.020557306706905365, + -0.042239248752593994, + 0.020400380715727806, + -0.05738260596990585, + -0.013391018845140934, + -0.006015496794134378, + 0.041873086243867874, + 0.04373004660010338, + -0.05434870347380638, + -0.04380850866436958, + -0.04794089123606682, + 0.01922343485057354, + 0.02661203406751156, + -0.08013688027858734, + -0.04103614762425423, + 0.04166385158896446, + 0.10289114713668823, + -0.006509159691631794, + 0.05591796338558197, + -0.10257729142904282, + 0.04299772530794144, + 0.03742685168981552, + 0.010827894322574139, + 0.049824003130197525, + 0.04616239666938782, + -0.07396445423364639, + 0.023538900539278984, + -0.0027167813386768103, + -0.038708414882421494, + 0.010239421389997005, + -0.06046881899237633, + 0.026062792167067528, + 0.016974162310361862, + 0.0546625554561615, + -0.0582195445895195, + 0.016150301322340965, + -0.0776783674955368, + -0.026494339108467102, + -0.007251288741827011, + -0.053040988743305206, + 0.059161100536584854, + 0.033242158591747284, + 0.010017110034823418, + 0.05869032442569733, + 0.021472707390785217, + 0.008748624473810196, + 0.0001574368216097355, + -0.0021626364905387163, + 0.027462050318717957, + 0.009330558590590954, + 0.022701961919665337, + -0.01489489246159792, + 0.005237405188381672, + 0.0017833985621109605, + 0.0440962053835392, + -0.014254111796617508, + -0.0059108794666826725, + -0.018412651494145393, + 0.07427830994129181, + 0.08845395594835281, + 0.009363251738250256, + 0.02468969114124775, + -0.019171126186847687, + 0.022466572001576424, + 0.004550854209810495, + 0.02416660450398922, + 0.033608317375183105, + -0.017889564856886864, + 0.025330470874905586, + -0.017497248947620392, + -0.010265575721859932, + 0.05393023416399956, + 0.03774070367217064, + 0.0001877799368230626, + -0.007996687665581703, + -0.03159443289041519, + -0.002945631742477417, + 0.03402678668498993, + -0.0529363714158535, + -0.02929285354912281, + -0.019131895154714584, + -0.030077483505010605, + -0.04726088047027588, + 0.047574732452631, + 0.003870841348543763, + 0.07825376838445663, + 0.07176749408245087, + -0.1357932984828949, + -0.07370290905237198, + 0.0035406427923589945, + 0.003303619334474206, + -0.018464960157871246, + 0.04995477572083473, + -0.062351930886507034, + 0.0032840033527463675, + -0.010075956583023071, + 0.0008769874693825841, + -0.04723472520709038, + 0.021760405972599983, + -0.08186306059360504, + 0.0476531945168972, + -0.04386081546545029, + 0.026572803035378456, + 0.07140132784843445, + -0.0105925053358078, + -0.020413456484675407, + 0.02437583915889263, + -0.056336432695388794, + -0.04325926676392555, + -0.041193075478076935, + 0.0599457323551178, + 0.05942264571785927, + 0.0582718551158905, + 0.0564410500228405, + -0.0064012729562819, + 0.0049202837981283665, + 0.007584756705909967, + -0.024218913167715073, + 0.060259584337472916, + -0.04987631365656853, + 0.029319006949663162, + -0.08034611493349075, + 0.03138519823551178, + 0.010919434018433094, + -0.026036638766527176, + -0.011789065785706043, + 0.04958861693739891, + -0.0022950428538024426, + -0.023957369849085808, + 0.033765245229005814, + -0.07841069251298904, + -0.03143750876188278, + -0.009147478267550468, + -0.058847248554229736, + 0.07344137132167816, + 0.01490797009319067, + -0.0023996601812541485, + 0.02625895105302334, + -0.0038021861109882593, + -0.013561021536588669, + -0.012684851884841919, + 0.027828210964798927, + -0.0546625554561615, + 0.0027396664954721928, + -0.016464153304696083, + 0.012743698433041573, + 0.04077460616827011, + -0.03193444013595581, + -0.03719146177172661, + 0.06015496701002121, + 0.047025490552186966, + 0.04103614762425423, + 0.022270414978265762, + 0.024245066568255424, + 0.05058247968554497, + -0.03651145100593567, + -0.04864706099033356, + 0.04046075418591499, + 0.028717458248138428, + -0.06810588389635086, + -0.056911829859018326, + -0.05340714752674103, + 0.09258633852005005, + -0.08259538561105728, + 0.007061670068651438, + 0.04658086597919464, + -0.05853339657187462, + 0.0864662230014801, + -0.009932108223438263, + -0.023041967302560806, + 0.023748135194182396, + 0.04676394909620285, + -0.029162080958485603, + 0.041166920214891434, + 0.03384370729327202, + -0.010788662359118462, + 0.03980689495801926, + -0.040696144104003906, + -0.03389601409435272, + -0.0005149134085513651, + 0.07124440371990204, + 0.08918627351522446, + 0.00961171742528677, + 0.020413456484675407, + 0.04550854116678238, + -0.0970848873257637, + -0.012155226431787014, + -0.03849918022751808, + 0.04286695271730423, + 0.04731318727135658, + -0.013887951150536537, + 0.03768839314579964, + -0.058481089770793915, + 0.039074573665857315, + 0.003007748397067189, + 0.0387607216835022, + 0.03264060616493225, + 0.0688382014632225, + 0.03805455565452576, + -0.009997493587434292, + -0.016660310328006744, + 0.008284385316073895, + -0.09274326264858246, + 0.06088728830218315, + 0.008977474644780159, + 0.03295445814728737, + -0.021080393344163895, + 0.001669790712185204, + -0.030417488887906075, + -0.008683238178491592, + -0.024833539500832558, + 0.09384174644947052, + -0.045063916593790054, + 0.051942504942417145, + -0.014790275134146214, + -0.012403692118823528, + -0.07328443974256516, + 0.0024356222711503506, + -0.03810686245560646, + -0.01111559197306633, + -0.007813607342541218, + 0.053014833480119705, + 0.098758764564991, + 0.007571679539978504, + 0.05502871796488762, + -0.007905147038400173, + 0.01639876700937748, + -0.031149810180068016, + -0.06596122682094574, + -0.012966010719537735, + 0.042788490653038025, + -0.005570873152464628, + 0.04744395986199379, + 0.044697754085063934, + 0.06250885874032974, + -0.0021757136564701796, + 0.011730218306183815, + -0.013822564855217934, + -0.008944782428443432, + -0.05790569260716438, + 0.0256050918251276, + 0.040643833577632904, + -0.032719071954488754, + -0.02683434635400772, + 0.018268801271915436, + -0.04281464219093323, + -0.030757496133446693, + -0.05084402486681938, + 0.037296079099178314, + -0.00899055227637291, + -0.0006252520252019167, + 0.014581040479242802, + -0.08970936387777328, + 0.0476531945168972, + 0.06836742907762527, + 0.00978825893253088, + 0.051131721585989, + -0.02525200881063938, + 0.04433159530162811, + 0.04257925599813461, + -0.02837745100259781, + -0.0846354216337204, + -0.0633981004357338, + -0.04485468193888664, + 0.03849918022751808, + 0.006538583431392908, + -0.08678007870912552, + -0.028429759666323662, + -0.05413946881890297, + -0.06193346157670021, + 0.10901126265525818, + 0.07297059148550034, + 0.06156729906797409, + 0.12146072089672089, + -0.03405294194817543, + 0.07009360939264297, + -0.09619563817977905, + 0.0669550895690918, + 0.043834663927555084, + 0.007538986392319202, + 0.05555180460214615, + -0.03494218736886978, + -0.00268899230286479, + -0.005188365932554007, + -0.010827894322574139, + -0.05306714400649071, + -0.07129671424627304, + 0.07004130631685257, + -0.022531958296895027, + 0.005508756265044212, + 0.05094864219427109, + 0.007493216544389725, + 0.01015441957861185, + 0.07433061301708221, + 0.02470276691019535, + -0.03049595281481743, + 0.020936543121933937, + -0.08709392696619034, + 0.004524699877947569, + 0.017366476356983185, + 0.03716530650854111, + -0.02680819109082222, + -0.04563931003212929, + -0.05806262046098709, + 0.027566667646169662, + 0.04786242917180061, + 0.0001042597577907145, + -0.04820243641734123, + 0.015313361771404743, + -0.038525331765413284, + 0.044906988739967346, + 0.01656877063214779, + 0.030809804797172546, + -0.003406601957976818, + 0.07553371787071228, + -0.016974162310361862, + 0.019511133432388306, + 0.056911829859018326, + 0.017562635242938995, + 0.008513235487043858, + -0.018216492608189583, + -0.007741682697087526, + -0.023238124325871468, + -0.08060765266418457, + 0.023891983553767204, + -0.003939496353268623, + 0.019001122564077377, + -0.019014200195670128, + -0.033085230737924576, + -0.001999171916395426, + 0.02220502868294716, + 0.022375032305717468, + -0.0022427341900765896, + 0.03954535350203514, + 0.016503384336829185, + 0.007172825746238232, + 0.054244086146354675, + 0.05348561331629753, + 0.037505313754081726, + -0.0388653390109539, + 0.002072730800136924, + -0.048960912972688675, + -0.11162669211626053, + -0.07459215819835663, + -0.03298061341047287, + -0.034157559275627136, + 0.09922953695058823, + 0.011972146108746529, + 0.10702352970838547, + 0.05523795261979103, + -0.021433476358652115, + -0.06930898129940033, + -0.006976668257266283, + -0.0064372350461781025, + 0.030600570142269135, + -0.04796704649925232, + 0.03311138600111008, + -0.004116038326174021, + 0.03546527773141861, + -0.02929285354912281, + 0.00962479505687952, + 0.048254743218421936, + -0.051131721585989, + -0.0440962053835392, + 0.046816255897283554, + -0.038394562900066376, + 0.012207535095512867, + 0.03423602133989334, + 0.04875167831778526 + ] + }, + { + "id": "622e033a-077d-4d9c-8f37-dcb307170fbd", + "productId": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasjuarez", + "reviewDate": "2022-09-14T20:42:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f2794f7d-956a-4001-910c-ddefce96291e", + "productId": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "category": "Accessory", + "docType": "customerRating", + "userName": "john84", + "reviewDate": "2022-11-13T12:26:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a86268a4-6455-4760-8ff2-f4f0b7cfe513", + "productId": "3fa124b9-25bd-444f-a8fa-8be22d9a0bed", + "category": "Accessory", + "docType": "customerRating", + "userName": "opope", + "reviewDate": "2022-03-09T01:42:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Pro (Gold)", + "description": "This Awesome Computer Pro (Gold) is a fully-functioning system running Windows Server 2010 R2. The graphics and performance are absolutely spectacular. I've used Vista and 8.4 to test the hardware and I'll add my own. Note that the new feature", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-07-21T18:23:34", + "price": 279.55, + "stock": 51, + "priceHistory": [ + { + "priceDate": "2021-03-24T14:30:40", + "newPrice": 274.87 + }, + { + "priceDate": "2022-11-23T14:30:40", + "newPrice": 279.55 + } + ], + "descriptionVector": [ + -0.02149268239736557, + 0.055291201919317245, + -0.030254211276769638, + 0.022470911964774132, + -0.020769644528627396, + 0.00032806998933665454, + -0.05129322409629822, + 0.05909070000052452, + 0.05994133651256561, + 0.12271811813116074, + 0.09719909727573395, + -0.07865528017282486, + 0.03788156434893608, + -0.046047646552324295, + 0.0029116489458829165, + 0.055376265197992325, + -0.026738258078694344, + 0.01774989441037178, + -0.02971547655761242, + 0.018316982313990593, + 0.028609653934836388, + 0.03572662174701691, + -0.03586839511990547, + 0.0145883709192276, + -0.02818433567881584, + -0.00782583188265562, + -0.00910178292542696, + 0.030481047928333282, + 0.009250643663108349, + 0.006422285921871662, + 0.10564872622489929, + 0.0657256469130516, + 0.000911773182451725, + -0.003710890421643853, + 0.03249421343207359, + 0.002723800716921687, + -0.010654189623892307, + -0.02794332429766655, + 0.023406609892845154, + 0.03796662762761116, + 0.02281116507947445, + -0.03419548273086548, + 0.013170648366212845, + 0.06277678161859512, + 0.0603950060904026, + -0.04040510952472687, + -0.045877519994974136, + -0.015680018812417984, + -0.01015089824795723, + -0.008144819177687168, + 0.010824316181242466, + -0.00772659108042717, + 0.03277776017785072, + 0.04811752215027809, + 0.005206588190048933, + -0.004958486650139093, + 0.009931150823831558, + 0.10128214210271835, + -0.037824854254722595, + -0.08290845155715942, + -0.021705342456698418, + 0.037626370787620544, + -0.0017402551602572203, + -0.038477007299661636, + -0.052370693534612656, + -0.025079522281885147, + -0.041482578963041306, + 0.06011146306991577, + 0.017126096412539482, + 0.03742789104580879, + -0.03612358495593071, + -0.059487663209438324, + 0.07099957764148712, + 0.04896815866231918, + 0.02588762529194355, + 0.0460192933678627, + 0.0920385867357254, + -0.022201545536518097, + 0.03966789320111275, + -0.03201219066977501, + 0.036577258259058, + 0.03833523392677307, + -0.009364061057567596, + -0.006936210673302412, + 0.010313935577869415, + 0.02289622835814953, + -0.041199035942554474, + -0.14937131106853485, + 0.041028909385204315, + -0.021053189411759377, + -0.019791414961218834, + 0.06107551231980324, + 0.02411547116935253, + -0.06481830030679703, + 0.023193951696157455, + 0.05271094664931297, + -0.06771045923233032, + 0.04080207273364067, + -0.027716487646102905, + 0.029743831604719162, + -0.03073623776435852, + -0.07434540241956711, + -0.0784851536154747, + -0.09583808481693268, + -0.00809519924223423, + 0.018288629129529, + 0.016573183238506317, + -0.00922228954732418, + -0.003629371291026473, + -0.0448000505566597, + -0.04655802994966507, + -0.021974708884954453, + 0.0306228194385767, + -0.012858749367296696, + -0.02662484161555767, + 0.013681028038263321, + -0.01668660156428814, + 0.007024818100035191, + 0.011511911638081074, + -0.008563048206269741, + 0.06793729215860367, + 0.04610435664653778, + -0.020330149680376053, + -0.014191408641636372, + -0.026936739683151245, + 0.021549392491579056, + -0.0056708925403654575, + -0.020060783252120018, + 0.013744826428592205, + -0.028212690725922585, + -0.08988364785909653, + 0.06606590002775192, + 0.030934719368815422, + 0.027603069320321083, + 0.017437994480133057, + 0.04006485641002655, + 0.03555649518966675, + 0.10224619507789612, + 0.07020565122365952, + 0.021521037444472313, + -0.03816510736942291, + -0.042503342032432556, + -0.051179807633161545, + -0.03592510521411896, + -0.05994133651256561, + 0.049903854727745056, + -0.03759801760315895, + 0.006500260904431343, + -0.02342078648507595, + 0.04828765243291855, + -0.06413779407739639, + -0.04959195479750633, + -0.014148877002298832, + -0.025830915197730064, + 0.037909917533397675, + 0.031615227460861206, + 0.002365825464949012, + 0.060224879533052444, + 0.009980770759284496, + 0.06084867939352989, + -0.040121566504240036, + -0.011816722340881824, + -0.025816738605499268, + 0.0057488675229251385, + 0.004575701430439949, + -0.0075635528191924095, + 0.0747990757226944, + 0.027376234531402588, + -0.05829677730798721, + 0.02136508747935295, + 0.06799400597810745, + -0.020401036366820335, + 0.024313952773809433, + 0.012724065221846104, + 0.020117491483688354, + 0.04210637882351875, + 0.062323108315467834, + 0.030764592811465263, + -0.013269889168441296, + -0.07882540673017502, + -0.010002036578953266, + 0.04800410568714142, + -0.08279503136873245, + -0.00815899670124054, + 0.08500668406486511, + 0.03374180942773819, + 0.050811197608709335, + -0.0034503836650401354, + -0.0034415230620652437, + -0.09107453376054764, + 0.04689828306436539, + -0.053561579436063766, + 0.0969722643494606, + -0.033061303198337555, + 0.005763044580817223, + 0.07003552466630936, + -0.02116660587489605, + 0.021350910887122154, + -0.012830394320189953, + -0.01015089824795723, + 0.02839699573814869, + 0.03703092783689499, + 0.0772375538945198, + -0.06311703473329544, + 0.020840531215071678, + 0.016289638355374336, + 0.0001270412903977558, + -0.045877519994974136, + -0.0017969640903174877, + 0.027560537680983543, + 0.057219307869672775, + 0.02424306608736515, + -0.10286999493837357, + 0.03195548057556152, + 0.08642440289258957, + 0.014375712722539902, + -0.008839503861963749, + 0.06249323859810829, + -0.015297233127057552, + -0.05378841608762741, + 0.05313626304268837, + -0.04204966872930527, + -0.008144819177687168, + 0.05183195695281029, + -0.05914741009473801, + -0.07593325525522232, + 0.10269986838102341, + -0.09294593334197998, + -0.020358504727482796, + 0.054639048874378204, + -0.07241729646921158, + -0.031133200973272324, + 0.00860557984560728, + 0.0427301749587059, + -0.032976239919662476, + 0.004090131260454655, + 0.06612260639667511, + 0.01811850257217884, + -0.03144510090351105, + 0.10706645250320435, + -0.030225858092308044, + 0.05489424243569374, + -0.07610338181257248, + -0.05920412018895149, + 0.06470488756895065, + -0.03073623776435852, + 0.04837271571159363, + 0.05495094880461693, + -0.014163054525852203, + 0.007450134959071875, + 0.002704306971281767, + -0.017324576154351234, + -0.06867451220750809, + 0.052824363112449646, + 0.05852361023426056, + -0.006564058363437653, + 0.06963855773210526, + -0.05846690386533737, + -0.062039565294981, + -0.03365674614906311, + -0.08806896209716797, + -0.031615227460861206, + -0.015665840357542038, + 0.0032784848008304834, + -0.029431933537125587, + 0.047323599457740784, + 0.018274450674653053, + 0.003269623965024948, + -0.05605677515268326, + 0.03263598680496216, + 0.058580320328474045, + -0.06056513264775276, + -0.030481047928333282, + 0.02991395816206932, + 0.05064107105135918, + -0.047890689224004745, + -0.046784862875938416, + 0.05636867135763168, + 0.008499250747263432, + 0.03053775615990162, + -0.008782794699072838, + 0.004012156743556261, + 0.04335397481918335, + 0.048712968826293945, + 0.028170159086585045, + -0.02198888547718525, + -0.0036860802210867405, + 0.006836969871073961, + -0.04060359299182892, + 0.007116970140486956, + -0.03249421343207359, + 0.045423850417137146, + 0.03541472554206848, + 0.04570739343762398, + 0.016672424972057343, + 0.013064319267868996, + -0.007740768603980541, + 0.03785320743918419, + 0.021109897643327713, + -0.03337320312857628, + 0.08024313300848007, + 0.01668660156428814, + -0.017679007723927498, + 0.002073420211672783, + -0.02859547547996044, + 0.06254994869232178, + -0.047323599457740784, + 0.00957672018557787, + -0.006383298430591822, + -0.018430400639772415, + 0.0316435806453228, + 0.023151420056819916, + -0.05801323056221008, + -0.020401036366820335, + 0.06810741871595383, + -0.035811688750982285, + 0.03683244809508324, + 0.011923051439225674, + -0.026355473324656487, + -0.038278523832559586, + 0.029148388653993607, + -0.024753445759415627, + -0.10990189760923386, + 0.07372160255908966, + 0.035528142005205154, + 0.01972052827477455, + -0.08103705197572708, + -0.009108871221542358, + -0.05880715698003769, + -0.02203141711652279, + 0.01837369240820408, + -0.027744842693209648, + 0.025774206966161728, + 0.04409119114279747, + 0.02560408040881157, + -0.0871049091219902, + 0.0097610242664814, + 0.05563145503401756, + -0.010278493165969849, + 0.06878792494535446, + 0.0665762796998024, + 0.02765977941453457, + -0.052455756813287735, + 0.006365576758980751, + 0.015850145369768143, + -0.04573575034737587, + 0.010264315642416477, + -0.11404164880514145, + 0.02642636001110077, + -0.024725092574954033, + 0.0018802552949637175, + -0.042758531868457794, + 0.042304858565330505, + -0.0575312040746212, + 0.05268259346485138, + 0.017806602641940117, + -0.026936739683151245, + 0.0013583559775725007, + -0.005458234343677759, + 0.018586350604891777, + 0.00102519104257226, + -0.045877519994974136, + 0.05614183843135834, + 0.04409119114279747, + -0.05509272217750549, + 0.06073525920510292, + 0.004125574603676796, + 0.03924257680773735, + -0.01463090255856514, + 0.03476257249712944, + 0.030878011137247086, + -0.023123065009713173, + -0.053646642714738846, + 0.08029983937740326, + -0.07842844724655151, + -0.018841540440917015, + 0.025547372177243233, + -0.008045579306781292, + -0.016204575076699257, + 0.0505560077726841, + 0.03788156434893608, + 0.02001825161278248, + -0.029205096885561943, + -0.0033688645344227552, + 0.11228367686271667, + -0.11398494243621826, + 0.029687123373150826, + -0.04919499531388283, + -0.03331649303436279, + 0.015481537207961082, + 0.00235696486197412, + -0.019989896565675735, + -0.07287096977233887, + 0.00752102117985487, + -0.030934719368815422, + -0.012220773845911026, + 0.01976305991411209, + 0.02424306608736515, + 0.031218264251947403, + 0.015637487173080444, + -0.013227356597781181, + 0.03291953355073929, + 0.051718540489673615, + -0.048514485359191895, + -0.06805071234703064, + -0.04618941992521286, + -0.017069386318325996, + 0.07133983075618744, + 0.011277987621724606, + 0.00227544573135674, + -0.021223315969109535, + -0.0867079496383667, + 0.029687123373150826, + -0.0008559503476135433, + 0.04610435664653778, + 0.06487501412630081, + 0.07672717422246933, + 0.029205096885561943, + 0.06294690817594528, + -0.001055317698046565, + 0.00714886886999011, + 0.0522005669772625, + 0.013638496398925781, + 0.03538636863231659, + -0.0034734217915683985, + 0.018586350604891777, + 0.04667144641280174, + -0.010838493704795837, + -0.01429773773998022, + -0.026312941685318947, + 0.04414789751172066, + -0.044119544327259064, + 0.05129322409629822, + -0.02067040279507637, + -0.02608610689640045, + 0.010923556983470917, + 0.014928624965250492, + -0.002628104295581579, + -0.016176221892237663, + 0.05398689955472946, + -0.055574748665094376, + -0.09243554621934891, + -0.011249633505940437, + 0.00891747884452343, + 0.00840000994503498, + -0.02222989872097969, + -0.033231429755687714, + -0.015439005568623543, + 0.008286591619253159, + 0.0048202588222920895, + -0.022017240524291992, + -0.008102287538349628, + -0.03566991537809372, + -0.012341280467808247, + -0.006517982110381126, + 0.08336212486028671, + -0.07729426771402359, + 0.05256917327642441, + -0.03884561359882355, + 0.029942313209176064, + -0.014184320345520973, + 0.028212690725922585, + 0.018472932279109955, + -0.040121566504240036, + -0.05982791632413864, + 0.012142798863351345, + -0.0850633904337883, + -0.08205781877040863, + 0.013468369841575623, + 0.009612162597477436, + 0.023846102878451347, + -0.04420460760593414, + 0.0008599376888014376, + 0.06306032836437225, + -0.017976729199290276, + -0.11829482018947601, + 0.03235244378447533, + 0.06374083459377289, + 0.0032820291817188263, + -0.019281035289168358, + 0.00857013650238514, + 0.0074359579011797905, + -0.04638790339231491, + -0.002518230816349387, + 0.05350487306714058, + 0.03813675418496132, + 0.06192614883184433, + 0.00807393342256546, + 0.013347863219678402, + 0.04590587690472603, + 0.019748883321881294, + 0.0394410565495491, + 0.012036469765007496, + -0.00920811202377081, + -0.004083042498677969, + 0.0007137350039556623, + 0.02863800711929798, + 0.09351301938295364, + 0.025731675326824188, + 0.04993220791220665, + -0.042389921844005585, + 0.022173190489411354, + -0.026780789718031883, + 0.014517485164105892, + 0.0017677235882729292, + 0.0023020280059427023, + 0.015481537207961082, + 0.033798519521951675, + -0.08438288420438766, + -0.04426131770014763, + -0.015297233127057552, + -0.08699149638414383 + ] + }, + { + "id": "786e0d34-1048-4239-be43-8d2a303a3fd0", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "websterjeffrey", + "reviewDate": "2022-09-07T00:23:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d7815c8e-3490-4520-94a2-9f49c8420eb9", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "williambass", + "reviewDate": "2021-03-24T14:30:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "99900134-d591-4813-9818-f86d54822140", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "meadowsamy", + "reviewDate": "2021-12-08T01:29:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "aab221b0-d6c1-4141-9e0d-821fb39768b3", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephenscott", + "reviewDate": "2022-07-16T05:19:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fbe88448-e721-44cd-af61-c936fbb0b32b", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "bradleyjames", + "reviewDate": "2022-07-16T08:03:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "12939a23-a2dd-46b6-b765-b9e23ab371d8", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "dakota37", + "reviewDate": "2021-04-26T05:17:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0a69a559-e657-4116-b656-ede2af969667", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcdonaldjoshua", + "reviewDate": "2021-09-25T03:29:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "37b7ae29-3713-4986-a83b-3eb61f9e5c31", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamesaguilar", + "reviewDate": "2021-05-27T03:02:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ad4e6371-54e8-4296-a858-ebca5269f891", + "productId": "634a5545-eee6-4e86-ab07-18a1a8864aeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "hjohnson", + "reviewDate": "2022-07-28T10:33:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "product", + "name": "Awesome TV Super (Gold)", + "description": "This Awesome TV Super (Gold) is rated 4.9 out of 5 by 6.\n\nRated 5 out of 5 by Anonymous from I loved this TV after reading reviews of previous TV's! And this is what really made me enjoy the 4D television!! If you're into the concept of ultra bright color photography, this TV has it all!!! It is such an obvious choice for the price because", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-02-24T21:00:29", + "price": 560.16, + "stock": 85, + "priceHistory": [ + { + "priceDate": "2021-01-18T13:35:32", + "newPrice": 585.47 + }, + { + "priceDate": "2021-06-14T13:35:32", + "newPrice": 538.07 + }, + { + "priceDate": "2021-11-08T13:35:32", + "newPrice": 595.24 + }, + { + "priceDate": "2022-04-04T13:35:32", + "newPrice": 573.24 + }, + { + "priceDate": "2022-08-29T13:35:32", + "newPrice": 581.52 + }, + { + "priceDate": "2025-07-02T13:35:32", + "newPrice": 560.16 + } + ], + "descriptionVector": [ + 0.0694948136806488, + 0.011151809245347977, + -0.043677918612957, + 0.04746318608522415, + -0.05195111036300659, + -0.0017183872405439615, + -0.06772684305906296, + 0.020354317501187325, + 0.012273790314793587, + 0.10145426541566849, + 0.06740951538085938, + -0.05122578889131546, + 0.025975555181503296, + 0.0029494494665414095, + 0.008375190198421478, + 0.02479690872132778, + 0.025023572146892548, + 0.024003589525818825, + 0.010896813124418259, + 0.013033110648393631, + 0.07860665768384933, + -0.020750978961586952, + -0.008720850571990013, + 0.007944530807435513, + 0.006544888019561768, + 0.00447942316532135, + -0.01337310392409563, + 0.052404437214136124, + 0.031392794102430344, + -0.04632987454533577, + 0.02685954049229622, + 0.015877727419137955, + 0.005241577047854662, + 0.010177158750593662, + -0.009825832210481167, + 0.03683270141482353, + -0.023346267640590668, + 0.030848804861307144, + 0.03649270907044411, + 0.0884438157081604, + 0.05231377109885216, + 0.00044163825805298984, + 0.03329676389694214, + 0.0037144364323467016, + -0.007819865830242634, + -0.06496155261993408, + 0.027766190469264984, + 0.006686551962047815, + 0.045015230774879456, + -0.031710125505924225, + -0.010879813693463802, + -0.015356403775513172, + -0.0681348368525505, + -0.0010752315865829587, + 0.017543699592351913, + 0.00679421704262495, + -0.0651882141828537, + 0.04061797261238098, + 0.08463588356971741, + -0.040572639554739, + -0.001393976155668497, + -0.017328370362520218, + 0.01874501258134842, + -0.01889234408736229, + -0.059702977538108826, + -0.0453098900616169, + -0.019934991374611855, + -0.009865498170256615, + -0.03676470369100571, + 0.018518349155783653, + 0.05176978185772896, + 0.00789919774979353, + 0.04882316291332245, + 0.02479690872132778, + 0.02534089982509613, + 0.05149778351187706, + 0.05412707477807999, + -0.004031764343380928, + -0.007134211249649525, + 0.02071697823703289, + 0.044448573142290115, + 0.023164937272667885, + 0.019946325570344925, + 0.02937549725174904, + 0.07099078595638275, + 0.04292993247509003, + -0.01440441980957985, + -0.13554434478282928, + -0.04440324008464813, + 0.008873848244547844, + -0.006714885123074055, + 0.06337491422891617, + 0.0059555647894740105, + -0.06899615377187729, + 0.04419924318790436, + 0.041796617209911346, + -0.05852433294057846, + 0.010840147733688354, + -0.024026256054639816, + 0.05956697836518288, + 0.029194166883826256, + -0.06364691257476807, + 0.018393684178590775, + -0.023346267640590668, + -0.0038901001680642366, + -0.017883693799376488, + 0.04410857707262039, + 0.023482264950871468, + 0.023844925686717033, + -0.14207223057746887, + -0.0347474068403244, + -0.03613004833459854, + -0.012693116441369057, + -0.01736236922442913, + 0.036152713000774384, + 0.027244867756962776, + -0.03229944780468941, + -0.039552655071020126, + -0.016285721212625504, + -0.05603104084730148, + 0.0065165553241968155, + 0.08218792825937271, + -0.08744650334119797, + 0.0285368449985981, + 0.009417838416993618, + 0.04941248893737793, + -0.016489718109369278, + 0.07729201018810272, + 0.09782765805721283, + -0.00024631869746372104, + -0.04719119146466255, + 0.020886976271867752, + 0.010879813693463802, + 0.05444440245628357, + -0.04818850755691528, + 0.05739101767539978, + -0.03628871217370033, + 0.026224885135889053, + 0.016013726592063904, + 0.004230094142258167, + -0.019209671765565872, + -0.005796900950372219, + 0.037875350564718246, + -0.008460188284516335, + -0.027902189642190933, + 0.09936896711587906, + -0.02071697823703289, + -0.012829113751649857, + -0.015379070304334164, + -0.018019691109657288, + 0.09039311856031418, + -0.09161709994077682, + -0.09243308752775192, + -0.07964929938316345, + 0.0057459017261862755, + 0.1339123696088791, + -0.01337310392409563, + 0.003266777377575636, + -0.06070029363036156, + 0.04424457624554634, + -0.04578588157892227, + -0.0849078819155693, + -0.07235076278448105, + 0.0018005524761974812, + 0.04859650135040283, + -0.009780499152839184, + -0.017124373465776443, + -0.004884582944214344, + -0.07189743220806122, + 0.03574472293257713, + 0.059838976711034775, + -0.021634962409734726, + 0.008562186732888222, + 0.0029551160987466574, + -0.0009590669069439173, + 0.040504638105630875, + 0.043156594038009644, + 0.0008698184392414987, + -0.022450948134064674, + -0.06174294278025627, + -0.0386686697602272, + 0.01775902882218361, + -0.019662996754050255, + -0.017543699592351913, + 0.020943641662597656, + 0.026927538216114044, + 0.0486871674656868, + 0.03545005992054939, + -0.029012836515903473, + 0.06759084016084671, + 0.00556740490719676, + -0.03177812322974205, + 0.03880466893315315, + -0.034203413873910904, + -0.02027498558163643, + 0.013180441223084927, + 0.03125679865479469, + -0.05485239252448082, + -0.06845216453075409, + -0.005893232300877571, + -0.021192969754338264, + 0.022745611146092415, + 0.13264305889606476, + -0.01498240977525711, + 0.008703851141035557, + -0.06659352779388428, + 0.036447376012802124, + 0.010126159526407719, + 0.04419924318790436, + 0.05952164903283119, + 0.006114228628575802, + 0.019119005650281906, + -0.02531823329627514, + 0.042068611830472946, + 0.04467523470520973, + 0.03025948256254196, + -0.01559439953416586, + -0.04832450672984123, + -0.055487051606178284, + -0.0686788260936737, + 0.055895041674375534, + -0.005068746395409107, + 0.02350493147969246, + 0.011491803452372551, + 0.006499555427581072, + -0.06015630438923836, + 0.028038186952471733, + -0.049775149673223495, + 0.005063079763203859, + -0.007190877106040716, + -0.06002030521631241, + -0.06722818315029144, + -0.04986581206321716, + 0.00657322071492672, + -0.06478022783994675, + 0.014438419602811337, + -0.0023558763787150383, + -0.023130936548113823, + -0.07597736269235611, + 0.019130339846014977, + -0.05847899988293648, + 0.03180078789591789, + -0.013520435430109501, + -0.0016447218367829919, + 0.07824399322271347, + 0.0031874454580247402, + 0.04553655534982681, + -0.005505072418600321, + -0.023142270743846893, + -0.028627509251236916, + -0.013962428085505962, + -0.056076373904943466, + -0.0651882141828537, + 0.04986581206321716, + 0.040821969509124756, + 0.01874501258134842, + 0.0708547905087471, + -0.005660903174430132, + 0.004842083901166916, + -0.003612438216805458, + -0.061380282044410706, + 0.009650168009102345, + 0.003802268300205469, + 0.0032894436735659838, + -0.04324726015329361, + 0.0797853022813797, + 0.06414556503295898, + -0.046964529901742935, + 0.013395770452916622, + 0.007785866502672434, + -0.0486871674656868, + -0.02391292341053486, + -0.006595887243747711, + -0.005527738481760025, + -0.06283092498779297, + 0.019674329087138176, + 0.051588449627161026, + 0.042045947164297104, + 0.006884882226586342, + 0.019130339846014977, + 0.07393740117549896, + 0.01043215487152338, + 0.02059231325984001, + -0.02647421322762966, + 0.09882497787475586, + -0.0551697239279747, + 0.008375190198421478, + 0.005904565565288067, + 0.036470040678977966, + -0.014608416706323624, + -0.05553238093852997, + 0.014030426740646362, + 0.03789801895618439, + -0.05140712112188339, + 0.03286610543727875, + 0.04517389461398125, + -0.017396368086338043, + -0.035336729139089584, + 0.01398509368300438, + -0.05974831059575081, + 0.052404437214136124, + 0.03789801895618439, + -0.03050881065428257, + -0.04805251210927963, + -0.05621236935257912, + 0.03962065652012825, + -0.011707132682204247, + 0.0026972871273756027, + -0.030758140608668327, + -0.06686551868915558, + 0.044153910130262375, + 0.0024635412264615297, + 0.03404475003480911, + -0.04832450672984123, + 0.07416406273841858, + -0.03066747449338436, + -0.0453098900616169, + 0.0973743349313736, + 0.005740235093981028, + 0.019708329811692238, + 0.010131826624274254, + -0.03984731808304787, + -0.027471529319882393, + 0.04054997116327286, + 0.0403006449341774, + 0.05077246576547623, + -0.0039269328117370605, + -0.0825052559375763, + 0.025136902928352356, + 0.011899796314537525, + 0.020048324018716812, + -0.005411574151366949, + -0.012783780694007874, + 0.10072894394397736, + 0.08876114338636398, + -0.03440741077065468, + -0.00010412321717012674, + 0.005099912639707327, + -0.003093946957960725, + 0.062060270458459854, + 0.09809965640306473, + -0.011384138837456703, + 0.034090083092451096, + -0.03622071444988251, + 0.010097826831042767, + -0.061108287423849106, + 0.0013946844264864922, + -0.04567255079746246, + 0.04438057169318199, + -0.01720370538532734, + 0.0011545636225491762, + -0.006675219163298607, + -0.0703107938170433, + 0.04236327484250069, + 0.03313810005784035, + -0.004995081108063459, + -0.03093947097659111, + 0.004139428958296776, + 0.024660911411046982, + -0.0013422686606645584, + 0.061108287423849106, + 0.006839549634605646, + -0.0031392795499414206, + 0.04605787992477417, + -0.05362841486930847, + 0.0470551960170269, + -0.02785685658454895, + 0.07298541814088821, + -0.048233840614557266, + -0.017011042684316635, + 0.02994215488433838, + -0.03805668279528618, + -0.0776093378663063, + 0.04805251210927963, + 0.02366359531879425, + 0.03361409157514572, + -0.04125262796878815, + 0.0011836047051474452, + -0.0008542353753000498, + 0.05594037473201752, + -0.06210560351610184, + 0.06441756337881088, + 0.013452436774969101, + 0.025091569870710373, + 0.017577698454260826, + 0.020399650558829308, + -0.050183139741420746, + -0.010267823934555054, + -0.05000181123614311, + -0.0033857752569019794, + -0.05476173013448715, + -0.029602160677313805, + 0.016274388879537582, + 0.024570245295763016, + 0.06002030521631241, + -0.008516854606568813, + 0.017464367672801018, + 0.07189743220806122, + 0.05095379427075386, + -0.036991365253925323, + -0.010528486222028732, + 0.016489718109369278, + 0.0428619310259819, + -0.03844200819730759, + -0.002630705013871193, + -0.050455134361982346, + -0.013996426947414875, + 0.0643722340464592, + -0.05358308181166649, + -0.05906832218170166, + -0.0543537363409996, + -0.029080836102366447, + 0.03676470369100571, + -0.01875634491443634, + 0.01484641246497631, + 0.044176578521728516, + 0.1301044374704361, + -0.018155688419938087, + 0.0979183241724968, + -0.035200729966163635, + 0.0887158140540123, + 0.1460614949464798, + 0.028786173090338707, + -0.004363258834928274, + 0.024252917617559433, + 0.058297667652368546, + 0.010930812917649746, + -0.035767387598752975, + -0.039824649691581726, + -0.0565296970307827, + 0.04381391778588295, + -0.08177993446588516, + 0.0638282373547554, + -0.005944231525063515, + -0.04141129180788994, + 0.07076412439346313, + 0.025703560560941696, + 0.023176269605755806, + -0.06020163744688034, + 0.039121996611356735, + 0.013701765798032284, + -0.05013780668377876, + -0.035200729966163635, + 0.010273491032421589, + -0.06287625432014465, + -0.053129758685827255, + -0.02477424219250679, + 0.007457205560058355, + 0.032798103988170624, + -0.009621835313737392, + 0.017725029960274696, + -0.026134219020605087, + -0.0019620496314018965, + -0.030440812930464745, + -0.056348368525505066, + 0.09891563653945923, + 0.04320192709565163, + 0.08957713097333908, + -0.04243127256631851, + -0.019107673317193985, + -0.032118115574121475, + 0.05566838011145592, + -0.018994340673089027, + 0.022065622732043266, + 0.007774533703923225, + 0.007049212697893381, + -0.05503372475504875, + -0.024706244468688965, + -0.00165180501062423, + 0.006414556875824928, + -0.0003518585581332445, + -0.03415808081626892, + -0.05893232300877571, + 0.0289448369294405, + -0.004782584961503744, + -0.03540472686290741, + 0.01833701878786087, + -0.006046229973435402, + 0.06559620797634125, + 0.02129496820271015, + 0.030758140608668327, + -0.014166424050927162, + 0.025499563664197922, + 0.029738157987594604, + 0.06972147524356842, + 0.019708329811692238, + 0.04224994406104088, + 0.05244977027177811, + 0.03257144242525101, + 0.0025074570439755917, + -0.015152406878769398, + -0.006641219835728407, + 0.001015732646919787, + -0.087355837225914, + -0.040640637278556824, + 0.03472473844885826, + -0.0475991852581501, + -0.032798103988170624, + -0.010228157974779606, + 0.0035671056248247623, + -0.019617663696408272, + 0.10988611727952957, + -0.09510770440101624, + 0.06337491422891617, + -0.0017028042348101735, + -0.03594871610403061, + 0.04521922767162323, + -0.008936180733144283, + -0.05934031680226326, + 0.08554253727197647, + 0.08404655754566193, + 0.03930332884192467 + ] + }, + { + "id": "13e52c6d-2e3f-41c7-89c4-7f1c4c0961c3", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "thomasmonica", + "reviewDate": "2021-10-31T16:34:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a1a1be5c-1cfe-4d9c-b5b8-6b4ff86e3384", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "jonathan55", + "reviewDate": "2021-03-08T13:15:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ad3aa3d3-e738-4675-8f16-9b2ec578806c", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "barronjohn", + "reviewDate": "2022-06-17T17:53:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1f673244-fa93-4f3e-b0f2-224149cf2dbd", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "meagan69", + "reviewDate": "2022-07-03T21:20:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ed543ef0-4929-4ba9-8ee4-880654b5eff5", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "lewismargaret", + "reviewDate": "2022-08-30T23:29:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a836fb1-f945-4a5c-9a3a-e2c94c358b4e", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "onash", + "reviewDate": "2021-01-18T13:35:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ca8fde86-88c9-422d-8e69-6e1861774fb9", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "kellylori", + "reviewDate": "2022-02-21T08:48:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d10ac44b-9d89-4e46-a79e-fe4f7a393173", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "jonathanpratt", + "reviewDate": "2022-08-20T13:22:46", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d08edd24-7274-47eb-bbfa-deccb86504b4", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "adamsjohnny", + "reviewDate": "2021-07-23T17:41:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4afb80bc-cb40-4b88-b760-88a66df104e7", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "masonbrittany", + "reviewDate": "2021-10-20T04:00:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "85e382d3-8113-452e-86d2-9cf5bee25609", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "judylopez", + "reviewDate": "2021-05-06T09:01:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f9a797c3-cc7e-4fbb-a294-1148513e3030", + "productId": "e34122bd-f0b2-4ec1-848f-7d3e3b0bf9ea", + "category": "Media", + "docType": "customerRating", + "userName": "harrisbrian", + "reviewDate": "2021-11-16T02:41:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Mini (Gold)", + "description": "This Amazing Stand Mini (Gold) is an award-winning stand designed by Bowers & Wilkins that is sold to our customer base in a single order of 1000. This unique and unique product can be ordered using our online shipping service.\n\nProduct Specifications Material\n\nFounded and maintained by James Sutter\n\nBrand: Bowers & Wilkins\n\nYear: 2011\n\nModel: N5S1\n\n", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-12-31T16:54:06", + "price": 119.63, + "stock": 75, + "priceHistory": [ + { + "priceDate": "2021-04-23T04:44:43", + "newPrice": 114.72 + }, + { + "priceDate": "2022-11-07T04:44:43", + "newPrice": 127.51 + }, + { + "priceDate": "2025-09-05T04:44:43", + "newPrice": 119.63 + } + ], + "descriptionVector": [ + -0.017168372869491577, + 0.023139381781220436, + -0.04922979325056076, + -0.06050989776849747, + -0.017913024872541428, + -0.09845958650112152, + -0.0814153254032135, + 0.04545137286186218, + 0.004330015275627375, + 0.07043859362602234, + -0.02399435266852379, + 0.02780035324394703, + 0.002987228101119399, + -0.0024683845695108175, + 0.05830352008342743, + 0.013707119040191174, + 0.008253229781985283, + -0.011673115193843842, + -0.014424191787838936, + 0.012493611313402653, + 0.018175033852458, + -0.08963407576084137, + -0.00018508575158193707, + 0.001942646224051714, + -0.048816096037626266, + -0.030006730929017067, + -0.03381273150444031, + -0.008356654085218906, + -0.04354837164282799, + 0.025345759466290474, + 0.009101306088268757, + -0.019388539716601372, + -0.015375691466033459, + 0.018974844366312027, + -0.08152563869953156, + 0.07314141094684601, + -0.010101070627570152, + 0.05648325756192207, + -0.019333381205797195, + 0.028903542086482048, + 0.022946324199438095, + -0.004157642368227243, + 0.003116508014500141, + 0.0062364633195102215, + 0.021539758890867233, + 0.015830757096409798, + -0.07380332052707672, + 0.005240146070718765, + -0.015127474442124367, + 0.012659089639782906, + 0.06238531693816185, + 0.028875961899757385, + -0.05907575041055679, + 0.019443700090050697, + 0.01836809143424034, + -0.07258981466293335, + -0.02100195363163948, + 0.19890491664409637, + 0.08593839406967163, + -0.05681421607732773, + 0.009328839369118214, + -0.04517557471990585, + 0.03149603679776192, + -0.0019495411543175578, + 0.022201672196388245, + 0.04451366141438484, + -0.01947128027677536, + 0.0684528574347496, + -0.05088457465171814, + 0.06712903082370758, + -0.023815084248781204, + 0.010301023721694946, + 0.0028079599142074585, + 0.07187274098396301, + 0.030530745163559914, + -0.02191208489239216, + 0.0911785438656807, + 0.06944572180509567, + 0.05107763409614563, + -0.006950088310986757, + 0.057972561568021774, + -0.04258308187127113, + -0.05369770899415016, + -0.04263824224472046, + -0.010762983933091164, + 0.01464482955634594, + 0.010059701278805733, + -0.13591283559799194, + -0.04641666263341904, + -0.006364019587635994, + -0.036129429936409, + 0.0019960820209234953, + 0.05190502479672432, + -0.0025597424246370792, + 0.040293965488672256, + 0.02198103442788124, + 0.0159410759806633, + 0.04614086449146271, + -0.0071983058005571365, + -0.0667429119348526, + 0.03993542864918709, + -0.001023035147227347, + -0.016933945938944817, + -0.03690166026353836, + -0.07297592610120773, + 0.06034442037343979, + -0.0025597424246370792, + 0.010625085793435574, + 0.0013798476429656148, + -0.07849187403917313, + 0.09150949865579605, + 0.04034912586212158, + -0.013886387459933758, + 0.1011623963713646, + 0.00490574212744832, + 0.02882080338895321, + -0.020560678094625473, + -0.08318042755126953, + -0.04790596663951874, + -0.09614288806915283, + -0.01927822083234787, + -0.015361902303993702, + -0.0016263413708657026, + -0.0035267563071101904, + 0.010831933468580246, + 0.007536157499998808, + -0.02053309790790081, + -0.0075085777789354324, + 0.0051194848492741585, + -0.054552678018808365, + -0.05736580863595009, + -0.014120814390480518, + -0.07352752238512039, + 0.01885073632001877, + -0.05160164833068848, + 0.043906908482313156, + 0.08031213283538818, + 0.001068713958375156, + -0.01405186578631401, + 0.003023426281288266, + -0.011514531448483467, + 0.0035750207025557756, + 0.017016684636473656, + 0.04189359024167061, + -0.07314141094684601, + -0.00587792694568634, + -0.0656948834657669, + 0.02712465077638626, + -0.09255752712488174, + -0.004212801810353994, + -0.020146982744336128, + -0.06552940607070923, + -0.0754581019282341, + -0.06586036086082458, + -0.007370679173618555, + 0.02748318761587143, + -0.09746671468019485, + -0.03552267327904701, + -0.0028665666468441486, + 0.10039016604423523, + 0.007998117245733738, + -0.04542379081249237, + -0.04900915548205376, + 0.004598917439579964, + -0.020146982744336128, + -0.02042277902364731, + 0.03133055940270424, + 0.07617517560720444, + -0.07529262453317642, + 0.009439158253371716, + 0.05036056041717529, + -0.00792916864156723, + -0.023566868156194687, + -0.06856317073106766, + 0.019650546833872795, + 0.03348177671432495, + 0.06343334913253784, + 0.008494552224874496, + 0.06663259118795395, + -0.053808026015758514, + -0.03902529925107956, + 0.13105881214141846, + -0.019443700090050697, + 0.036101847887039185, + -0.016699519008398056, + 0.04321741685271263, + 0.03312323987483978, + 0.009383998811244965, + -0.01978844590485096, + 0.015030945651233196, + -0.012472926639020443, + 0.029620615765452385, + 0.0378393717110157, + 0.04023880511522293, + 0.009370208717882633, + -0.013913966715335846, + -0.02272568643093109, + 0.01704426482319832, + -0.08450424671173096, + -0.0016358218854293227, + -0.023690976202487946, + 0.07551326602697372, + 0.04950559139251709, + -0.038721922785043716, + 0.030172210186719894, + -0.046499401330947876, + -0.01947128027677536, + 0.052897896617650986, + 0.019443700090050697, + 0.03687408193945885, + -0.02010561339557171, + -0.0015823862049728632, + -0.04534105211496353, + 0.030282529070973396, + 0.04106619581580162, + 0.06988699734210968, + 0.0036370749585330486, + 0.00026760943001136184, + 0.0033371455501765013, + -0.003719814121723175, + -0.004619602579623461, + -0.06850801408290863, + -0.02846226654946804, + -0.033785153180360794, + -0.07595454156398773, + -0.008949617855250835, + -0.05709001421928406, + 0.027979621663689613, + 0.10640254616737366, + -0.006019272841513157, + -0.06492265313863754, + 0.04084555804729462, + -0.08676578849554062, + 0.008846193552017212, + -0.05907575041055679, + 0.02182934619486332, + -0.023856453597545624, + -0.05267725884914398, + -0.021181222051382065, + -0.018630098551511765, + -0.056400518864393234, + 0.020629627630114555, + -0.05193260684609413, + -0.03375757113099098, + -0.0036336276680231094, + 0.002525267656892538, + 0.04859545826911926, + -0.02319454215466976, + -0.05201534554362297, + -0.006629474461078644, + -0.014437980949878693, + -0.002963095670565963, + -0.03521929681301117, + 0.025097541511058807, + 0.05703485384583473, + 0.024008143693208694, + 0.039825111627578735, + 0.038887400180101395, + 0.07214853912591934, + -0.015472221188247204, + 0.008770349435508251, + -0.0378393717110157, + -0.005178091581910849, + 0.04887125641107559, + -0.09360555559396744, + 0.02151217870414257, + -0.019884975627064705, + -0.08913764357566833, + 0.04090071842074394, + 0.05551796779036522, + -0.024835534393787384, + -0.009053042158484459, + 0.05664873868227005, + -0.0321027897298336, + -0.09349523484706879, + -0.022987693548202515, + -0.00050160608952865, + 0.004333463031798601, + -0.029234498739242554, + -0.04021122679114342, + 0.0756787434220314, + 0.0010144164552912116, + 0.08102920651435852, + -0.009859748184680939, + 0.0030699672643095255, + -0.03949415311217308, + 0.033316295593976974, + -0.05190502479672432, + -0.048457562923431396, + -0.03588121011853218, + -0.024159831926226616, + 0.0195540189743042, + 0.014024285599589348, + 0.036570705473423004, + -0.003950794227421284, + 0.013555430807173252, + -0.016547828912734985, + 0.045092836022377014, + 0.004729921463876963, + -0.006157171446830034, + 0.035550255328416824, + 0.010087281465530396, + -0.04227970540523529, + -0.05435962229967117, + -0.022863585501909256, + 0.03930109366774559, + -0.07154178619384766, + 0.013879491947591305, + -0.014548299834132195, + -0.01581696793437004, + 0.07027311623096466, + -0.017016684636473656, + -0.03306807950139046, + -0.024545947089791298, + 0.017223533242940903, + -0.02599388174712658, + 0.036129429936409, + 0.045947808772325516, + 0.04261066019535065, + 0.006157171446830034, + 0.017995765432715416, + -0.019457489252090454, + -0.06431590020656586, + -0.0005972732324153185, + -0.004757501184940338, + 0.00013639031385537237, + 0.053256433457136154, + -0.013707119040191174, + 0.006963878404349089, + -0.024173621088266373, + 0.009728744626045227, + -0.055848926305770874, + 0.0680115818977356, + -0.014300082810223103, + 0.003233721712604165, + -0.04318983480334282, + 0.007067302241921425, + -0.02784172259271145, + 0.016340982168912888, + 0.06856317073106766, + 0.06464685499668121, + 0.012824567966163158, + -0.019098954275250435, + -0.00932194385677576, + 0.001135939615778625, + -0.09261268377304077, + -0.004654076881706715, + -0.005284963175654411, + 0.037315357476472855, + -0.02527680993080139, + 0.0016616778448224068, + -0.00427830358967185, + 0.008866879157721996, + -0.08279430866241455, + 0.05267725884914398, + -0.012659089639782906, + 0.010749194771051407, + -0.08158080279827118, + 0.043989647179841995, + -0.004816107917577028, + 0.01044581737369299, + -0.0321027897298336, + 0.0677909404039383, + 0.0030113602988421917, + 0.047602590173482895, + 0.031109919771552086, + 0.010852618142962456, + 0.0327371247112751, + -0.030006730929017067, + 0.03477802127599716, + -0.09377103298902512, + 0.02363581582903862, + -0.002540781395509839, + 0.034447066485881805, + -0.010149335488677025, + 0.023732345551252365, + 0.06900444626808167, + 0.01798197440803051, + 0.0005541799473576248, + 0.021774185821413994, + -0.015554959885776043, + 0.04263824224472046, + 0.023029062896966934, + 0.030254948884248734, + 0.06690838932991028, + -0.03430916741490364, + -0.0814153254032135, + 0.06575004011392593, + -0.016382351517677307, + -0.02371855638921261, + -0.09663932770490646, + -0.05736580863595009, + -0.01891968585550785, + 0.007798164617270231, + 0.036350067704916, + -0.09272300451993942, + 0.015527380630373955, + 0.09829410910606384, + -0.004785080906003714, + 0.08698642253875732, + 0.03976995125412941, + 0.027345288544893265, + 0.05940670892596245, + 0.03960447385907173, + -0.04181085154414177, + -0.028214050456881523, + -0.022629156708717346, + 0.03229584917426109, + 0.04663730040192604, + -0.052897896617650986, + -0.003723261645063758, + -0.0639849379658699, + -0.019347170367836952, + 0.05049845948815346, + 0.007032827474176884, + 0.07176242023706436, + 0.025690505281090736, + -0.009976962581276894, + 0.08963407576084137, + -0.05852415785193443, + 0.0433553121984005, + -0.03488834202289581, + -0.07071439176797867, + -0.023015273734927177, + -0.06315755099058151, + 0.046582140028476715, + -0.04920221492648125, + 0.005653841886669397, + -0.027428027242422104, + -0.05044329911470413, + 0.018754206597805023, + -0.08880668878555298, + -0.02520786039531231, + 0.06563972681760788, + -0.017719967290759087, + 0.003571573179215193, + -0.01352785062044859, + -0.04004574939608574, + -0.019305801019072533, + 0.02249125763773918, + -0.03243374451994896, + -0.016630569472908974, + -0.003554336028173566, + 0.03874950110912323, + -0.06023409962654114, + -0.03494349867105484, + -0.011114625260233879, + -0.024118462577462196, + 0.06437105685472488, + -0.001091122510842979, + -0.08759317547082901, + -0.057531289756298065, + -0.0393286757171154, + 0.038418546319007874, + 0.04252792149782181, + -0.017223533242940903, + 0.024077091366052628, + 0.06194404140114784, + 0.012534980662167072, + 0.024587316438555717, + -0.03626732528209686, + 0.01747174933552742, + 0.008687610737979412, + -0.027965832501649857, + 0.014217344112694263, + -0.014851677231490612, + -0.08307010680437088, + -0.03317840024828911, + -0.016906365752220154, + 0.053532227873802185, + -0.021222591400146484, + 0.016740888357162476, + -0.0011109454790130258, + 0.044899776577949524, + -0.003207865636795759, + -0.10452712327241898, + -0.00367154972627759, + -0.039907850325107574, + -0.0247665848582983, + -0.045672010630369186, + -0.025263020768761635, + 0.006008930504322052, + -0.03447464480996132, + -0.0044713616371154785, + 0.021291540935635567, + -0.10491324216127396, + -0.08207723498344421, + 0.011335263028740883, + 0.0080256974324584, + 0.07722320407629013, + -0.027621084824204445, + 0.06916993111371994, + 0.036212168633937836, + 0.024325309321284294, + 0.02937239781022072, + 0.04415512457489967, + -0.001557392068207264, + -0.002282221568748355, + -0.002094334689900279, + 0.03924593701958656, + -0.025069961324334145, + -0.003950794227421284, + 0.020602047443389893, + 0.016630569472908974, + 0.09189561754465103, + 0.01982981525361538, + -0.03395063057541847, + 0.10414101183414459, + 0.01723732240498066, + 0.02446320839226246, + 0.022036192938685417, + 0.04525831341743469 + ] + }, + { + "id": "78cbbb03-f77d-445a-816d-3b243bae39ec", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "ysilva", + "reviewDate": "2022-09-02T06:07:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3ccb3735-84cb-4f2a-b1fe-3135295e8942", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "ljuarez", + "reviewDate": "2022-11-07T21:11:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c64e1227-b676-4edf-bfd7-7d7f590ca942", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasscott", + "reviewDate": "2021-08-22T06:01:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "830fc656-dc40-4f4b-b71a-f79d4239a57b", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissa51", + "reviewDate": "2021-07-19T04:36:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6a2471cb-354f-496b-a9eb-288ad46618ca", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "mckinneymatthew", + "reviewDate": "2022-03-27T14:03:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8803357b-f512-4790-bc4c-ea4d958a8c70", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "davidlewis", + "reviewDate": "2021-04-23T04:44:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "675c602f-22a4-46a3-ab1c-6d3220a5d477", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer53", + "reviewDate": "2021-07-24T22:21:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eccb425d-f299-4d21-a56d-6090872386b4", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "davidvaldez", + "reviewDate": "2022-08-17T12:58:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bb264cad-ab78-4142-9f67-cf748cf3c12b", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "hardychristine", + "reviewDate": "2021-07-13T07:53:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0b3fe7fc-109d-4794-bdf6-b01ad9c0f938", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "daisybailey", + "reviewDate": "2021-07-11T09:17:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "66147e1d-2122-486b-a6fe-5612b33306ff", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamwilliams", + "reviewDate": "2022-03-05T07:35:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5142e0c2-b8e1-4575-bdad-9e93730191e2", + "productId": "7a1d1c73-c3db-47ef-b7b3-00e685b28ae0", + "category": "Accessory", + "docType": "customerRating", + "userName": "coleveronica", + "reviewDate": "2022-07-14T12:29:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "90d75e23-b305-4d32-bda2-52287e23163c", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Black)", + "description": "This Premium Computer Ultra (Black) is a 4K Ultra HD display and the Ultra-HD Premium version of the original system. The Premium model utilizes a full-color display with a resolution of 1920x1080. This is a 4K model, but is designed to be used with all 5 major gaming monitors. The Premium model does not offer an additional computer charger.\n\nSpecs Processor: Microsoft Surface Pro 4, with Intel® Core™", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-14T11:57:17", + "price": 826.21, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-04-02T10:17:09", + "newPrice": 827.47 + }, + { + "priceDate": "2022-12-18T10:17:09", + "newPrice": 840.69 + }, + { + "priceDate": "2023-11-01T10:17:09", + "newPrice": 826.21 + } + ], + "descriptionVector": [ + 0.024359948933124542, + 0.089703269302845, + -0.031249502673745155, + 0.03210911899805069, + -0.013147040270268917, + 0.030111778527498245, + -0.05602661892771721, + 0.06720159947872162, + 0.06831404566764832, + 0.05450965091586113, + 0.10537858307361603, + -0.07493812590837479, + 0.07640452682971954, + 0.010182635858654976, + -0.020782437175512314, + 0.010473387315869331, + -0.06502728164196014, + 0.013677977956831455, + 0.01916433870792389, + -0.0022501663770526648, + 0.010663008317351341, + 0.025725217536091805, + -0.04305655509233475, + 0.005609614308923483, + -0.049680642783641815, + 0.01749567687511444, + 0.04174185171723366, + -0.0273306742310524, + 0.05713905766606331, + 0.0009820775594562292, + 0.010233201086521149, + 0.027027281001210213, + -0.005236693657934666, + -0.0032709583174437284, + 0.06280239671468735, + 0.003994677681475878, + -0.023879576474428177, + -0.05966733768582344, + 0.11205323785543442, + -0.024777114391326904, + 0.014878910034894943, + 0.01918962225317955, + 0.05562209337949753, + 0.018658684566617012, + 0.023993348702788353, + -0.07003327459096909, + -0.0013131238520145416, + 0.032791752368211746, + -0.022324685007333755, + -0.05218363553285599, + 0.013324019499123096, + -0.0225901547819376, + -0.024246176704764366, + 0.025333335623145103, + 0.016636062413454056, + -0.03643247112631798, + 0.0644710585474968, + 0.1916433870792389, + 0.04763273894786835, + -0.01937924325466156, + 0.05526813492178917, + -0.00808416586369276, + -0.013779109343886375, + 0.011901863850653172, + 0.002877495251595974, + 0.016673985868692398, + -0.014411178417503834, + 0.022261478006839752, + -0.000360081932740286, + 0.0680612176656723, + 0.026825018227100372, + -0.00948735885322094, + 0.08692216128110886, + 0.056279443204402924, + 0.0066683306358754635, + 0.05562209337949753, + 0.09162475913763046, + 0.007812375668436289, + 0.061032604426145554, + 0.015447772108018398, + 0.042803727090358734, + 0.004354957025498152, + -0.0027368597220629454, + 0.0178496353328228, + 0.08338257670402527, + 0.016749834641814232, + 0.006330173462629318, + -0.10982835292816162, + -0.013753826729953289, + 0.004658350255340338, + -0.02126280963420868, + 0.10851364582777023, + 0.11599734425544739, + -0.0671510323882103, + 0.01668662764132023, + 0.022299403324723244, + -0.05870658904314041, + 0.036584168672561646, + -0.025598803535103798, + 0.016787758097052574, + 0.06249900534749031, + -0.07529208809137344, + 0.02127545140683651, + -0.04204524680972099, + 0.07584831118583679, + -0.008400199934840202, + 0.056330010294914246, + -0.013349302113056183, + 0.0012680889340117574, + -0.050970062613487244, + -0.10477180033922195, + -0.03117365390062332, + -0.05415569245815277, + -0.040199603885412216, + -0.019480373710393906, + 0.02793746069073677, + -0.03660944849252701, + -0.004307551775127649, + 0.007294078823179007, + -0.030743848532438278, + -0.014423820190131664, + -0.00967697985470295, + 0.04376447573304176, + 0.01688889041543007, + -0.021743182092905045, + 0.043182969093322754, + -0.01650964841246605, + 0.10730007290840149, + 0.04636859893798828, + -0.05855489522218704, + 0.01882302202284336, + 0.0821184366941452, + -0.05299268662929535, + -0.008741517551243305, + -0.021351298317313194, + 0.021920161321759224, + -0.015650033950805664, + 0.03587625175714493, + 0.028215570375323296, + -0.008286427706480026, + -0.08034864068031311, + 0.008336992934346199, + 0.024233534932136536, + -0.05759415030479431, + -0.07544378191232681, + 0.00550848338752985, + 0.04030073434114456, + 0.09132136404514313, + -0.03266533836722374, + 0.029479708522558212, + 0.0054105124436318874, + -0.03127478435635567, + -0.056330010294914246, + -0.058605458587408066, + 0.05885828658938408, + -0.011901863850653172, + -0.029151033610105515, + -0.014031937345862389, + -0.05188024416565895, + 0.09566999971866608, + 0.018355291336774826, + 0.010726215317845345, + -0.03304458037018776, + -0.018405856564641, + 0.06265070289373398, + 0.010378576815128326, + 0.03210911899805069, + 0.017192283645272255, + -0.029100468382239342, + -0.028999336063861847, + 0.005963573232293129, + -0.012761478312313557, + 0.10011976957321167, + -0.04232335463166237, + 0.048871591687202454, + -0.02375316247344017, + 0.0459640733897686, + 0.05562209337949753, + -0.020479043945670128, + -0.06563407182693481, + 0.01615568995475769, + -0.012837326154112816, + -0.07124684751033783, + -0.032589491456747055, + 0.10922156274318695, + 0.02755821868777275, + 0.04922555387020111, + 0.03939055651426315, + -0.006769461557269096, + 0.023449769243597984, + 0.027785763144493103, + -0.029353294521570206, + 0.016673985868692398, + -0.04009847342967987, + -0.0068832337856292725, + 0.019290752708911896, + 0.08034864068031311, + 0.011080173775553703, + -0.01573852449655533, + -0.004143213853240013, + -0.016787758097052574, + 0.06168995797634125, + 0.04389088600873947, + -0.009291417896747589, + -0.0004724717582575977, + -0.02242581732571125, + -0.003052894491702318, + 0.04973120614886284, + 0.010220559313893318, + 0.05562209337949753, + -0.04914970323443413, + -0.0031777280382812023, + -0.04725349694490433, + -0.0022106622345745564, + 0.035041917115449905, + -0.02523220330476761, + -0.0050723557360470295, + 0.01649700663983822, + -0.028923489153385162, + -0.11013174057006836, + 0.056330010294914246, + -0.013551564887166023, + 0.020592816174030304, + -0.033170994371175766, + -0.0037102464120835066, + -0.005849801003932953, + 0.07377512007951736, + -0.01783699356019497, + 0.008950100280344486, + 0.00998669397085905, + -0.09041118621826172, + -0.03918829187750816, + 0.007079175673425198, + 0.01005622185766697, + -0.01071989443153143, + 0.021755823865532875, + 0.006453427020460367, + -0.003470060182735324, + -0.06260013580322266, + 0.08156221359968185, + -0.014777778647840023, + 0.01974584348499775, + -0.017773786559700966, + -0.044522956013679504, + -0.015017964877188206, + -0.03812641650438309, + 0.11316567659378052, + 0.011054891161620617, + -0.029783101752400398, + 0.0029422822408378124, + -0.006175316404551268, + -0.012097804807126522, + -0.05456021800637245, + 0.09723753482103348, + -0.01841849833726883, + 0.03167930990457535, + 0.05885828658938408, + -0.028645377606153488, + 0.012584498152136803, + 0.012597139924764633, + -0.01500532403588295, + 0.023588823154568672, + -0.017343979328870773, + -0.046267468482255936, + -0.07160080224275589, + 0.034460414201021194, + 0.08469727635383606, + -0.050439126789569855, + -0.020264139398932457, + 0.021717898547649384, + 0.035825684666633606, + 0.036811713129282, + 0.005543247330933809, + -0.005480040330439806, + 0.015460413880646229, + 0.016256820410490036, + -0.03251364082098007, + 0.07417964935302734, + -0.021743182092905045, + 0.010707252658903599, + 0.032791752368211746, + 0.03147704899311066, + -0.006472389213740826, + -0.035598140209913254, + 0.03309514373540878, + -0.0034100136253982782, + 0.0021648372057825327, + 0.03471324220299721, + 0.05375116690993309, + -0.026521624997258186, + 0.0027747838757932186, + 0.012097804807126522, + 0.0671510323882103, + 0.009234531782567501, + 0.013096475042402744, + -0.016003992408514023, + 0.0038461412768810987, + 0.004440286196768284, + 0.03327212482690811, + -0.02700199745595455, + 0.008690952323377132, + -0.0038935465272516012, + -0.08004524558782578, + -0.004908017814159393, + 0.004620426334440708, + 0.0968330055475235, + -0.046646710485219955, + 0.0005459497915580869, + 0.0031319030094891787, + -0.004421324469149113, + 0.06386427581310272, + 0.010346973314881325, + -0.07347172498703003, + 0.027861611917614937, + 0.051779113709926605, + -0.02831670269370079, + 0.011181305162608624, + 0.02145243063569069, + -0.03686227649450302, + -0.009272456169128418, + -0.04735462740063667, + -0.05415569245815277, + -0.08651763945817947, + 0.07923620194196701, + 0.06942648440599442, + -0.05284098908305168, + -0.07423020899295807, + 0.06856687366962433, + -0.026496343314647675, + -0.053650036454200745, + -0.01595342718064785, + 0.007047572173178196, + 0.04459880664944649, + -0.04687425494194031, + 0.1267172396183014, + -0.01169328112155199, + -0.054054562002420425, + 0.050262145698070526, + 0.03875848650932312, + 0.02165469154715538, + 0.09698470681905746, + -0.00043968315003439784, + -0.006908516865223646, + -0.05617831274867058, + -0.008273785933852196, + -0.028165005147457123, + -0.006355456076562405, + -0.02543446607887745, + -0.04467465355992317, + 0.08864139020442963, + 0.0016386394854635, + -0.03908716142177582, + -0.00522721279412508, + 0.053296077996492386, + 0.03875848650932312, + 0.05815036967396736, + 0.054813046008348465, + 0.009171324782073498, + -0.03954225033521652, + 0.02770991623401642, + -0.007104458287358284, + -0.02432202361524105, + 0.027836328372359276, + 0.0774158388376236, + -0.08039920777082443, + 0.03802528604865074, + -0.003963074181228876, + -0.02355089969933033, + 0.014701930806040764, + 0.0022391052916646004, + 0.0443965420126915, + -0.02296939678490162, + -0.07493812590837479, + 0.0696287453174591, + -0.04821424186229706, + 0.020833002403378487, + -0.059363942593336105, + 0.0372668020427227, + -0.04553426802158356, + 0.06077977642416954, + -0.06189221888780594, + 0.050211578607559204, + 4.580033055390231e-05, + 0.032968729734420776, + 0.06740386039018631, + -0.01206620130687952, + 0.028746508061885834, + -0.05223420262336731, + -0.021907519549131393, + 0.024435795843601227, + 0.010233201086521149, + 0.02544710785150528, + -0.01820359379053116, + 0.020441118627786636, + 0.012040918692946434, + 0.009910845197737217, + 0.0025077348109334707, + 0.051197607070207596, + 0.003675482701510191, + -0.012287425808608532, + 0.07428077608346939, + 0.02429674193263054, + -0.03640718758106232, + -0.04907385632395744, + -0.020567532628774643, + -0.10952495783567429, + 0.015194944106042385, + 0.008476048707962036, + -0.022830341011285782, + -0.04780971631407738, + 0.02791217714548111, + 0.01063140481710434, + 0.012110446579754353, + 0.0322355292737484, + 0.11812110245227814, + -0.015157020650804043, + 0.021528277546167374, + 0.03438456729054451, + 0.02317165769636631, + -0.0508689321577549, + 0.048517633229494095, + 0.04839121922850609, + -0.040149036794900894, + -0.013361943885684013, + 0.023866934701800346, + -0.017015304416418076, + -0.014082502573728561, + 0.035800401121377945, + -0.031224220991134644, + -0.025586163625121117, + 0.03782302141189575, + -0.09202928096055984, + 0.02051696740090847, + -0.04194411635398865, + -0.0489727258682251, + 0.04614105448126793, + 0.059363942593336105, + 0.05809980258345604, + -0.02107318863272667, + 0.08651763945817947, + 0.003934631124138832, + -0.05339720845222473, + 0.04464937001466751, + 0.01576380617916584, + -0.08484897762537003, + 0.013463074341416359, + -0.04523087292909622, + 0.005773952696472406, + 0.03172987699508667, + 0.05587492138147354, + -0.024928810074925423, + -0.01262242253869772, + -0.006535595748573542, + -0.03729208558797836, + 0.03901131451129913, + 0.031578179448843, + -0.00531570240855217, + 0.017546242102980614, + 0.015498337335884571, + -0.0036976051051169634, + -0.03592681512236595, + 0.05094477906823158, + 0.07807318866252899, + 0.0037386894691735506, + -0.0413878932595253, + -0.015915503725409508, + -0.1080079898238182, + -0.016610778868198395, + 0.016395876184105873, + 0.06821291148662567, + -0.04098336771130562, + -0.04427012801170349, + 0.05663340538740158, + 0.0022517465986311436, + 0.03167930990457535, + -0.05117232725024223, + 0.035067200660705566, + 0.018949436023831367, + -0.02280505746603012, + -0.048896875232458115, + 0.08505123853683472, + 0.03944111987948418, + 0.022286761552095413, + 0.0010926896939054132, + -0.011927146464586258, + 0.03928942233324051, + 0.027431804686784744, + 0.03210911899805069, + -0.012477046810090542, + 0.04619162157177925, + 0.015523620881140232, + 0.027204260230064392, + 0.045685965567827225, + -0.04619162157177925, + -0.026268796995282173, + -0.02224883623421192, + 0.05718962475657463, + 0.07827545702457428, + 0.042247507721185684, + 0.06846573948860168, + -0.01576380617916584, + 0.0023844812531024218, + -0.033929478377103806, + -0.015296075493097305, + 0.030541585758328438, + 0.02167997509241104, + 0.015624751336872578, + 0.002575682243332267, + -0.046444445848464966, + -0.01082734577357769, + 0.06725216656923294, + -0.015473054721951485 + ] + }, + { + "id": "caa5f319-911c-4bb3-926e-a35f0e166871", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristine65", + "reviewDate": "2022-10-22T13:39:34", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b9635220-7975-4f42-83c1-6c0d761e5abf", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "charlesjohnson", + "reviewDate": "2022-09-28T02:30:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d6d8df6b-c02a-4534-a97f-c7d15a1c854d", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniepham", + "reviewDate": "2021-09-08T04:14:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d8a7feb6-4aa5-4038-9c93-773c3e8c3c49", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "nancy13", + "reviewDate": "2022-01-05T08:41:51", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d6558cf5-da98-49dc-9e44-355f9db9f83e", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "amberstewart", + "reviewDate": "2022-10-08T15:51:39", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1a7434c7-f5e7-4060-ac81-e125be7afa50", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "antoniohood", + "reviewDate": "2022-03-09T18:25:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "89f1c42e-deaf-4d03-b59e-863f46e7e053", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "ellisjamie", + "reviewDate": "2022-02-15T04:17:47", + "stars": 4, + "verifiedUser": true + }, + { + "id": "15493e64-9f4f-4d9f-b46a-4392237917cd", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "justingordon", + "reviewDate": "2021-04-02T10:17:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a18e3baf-be04-44ac-857e-e76229aab877", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "longdillon", + "reviewDate": "2022-12-18T23:09:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3757d527-8582-43c5-b9f3-7d624b278933", + "productId": "90d75e23-b305-4d32-bda2-52287e23163c", + "category": "Electronics", + "docType": "customerRating", + "userName": "simpsontammy", + "reviewDate": "2021-06-26T03:21:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Ultra (Silver)", + "description": "This Premium Keyboard Ultra (Silver) is now available at Amazon.com here.\n\n\nIt's been six months since we launched a fully custom-designed,", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-02-22T02:21:07", + "price": 656.83, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2021-03-24T07:17:21", + "newPrice": 680.07 + }, + { + "priceDate": "2022-02-05T07:17:21", + "newPrice": 614.1 + }, + { + "priceDate": "2022-12-20T07:17:21", + "newPrice": 704.05 + }, + { + "priceDate": "2024-07-16T07:17:21", + "newPrice": 656.83 + } + ], + "descriptionVector": [ + 0.01662963628768921, + 0.012721117585897446, + -0.02078397199511528, + -0.020267752930521965, + 0.02452041581273079, + -0.0654369369149208, + 0.01176857016980648, + 0.06804262101650238, + -0.03736444190144539, + 0.06583024561405182, + 0.0859382227063179, + -0.056095827370882034, + 0.03952764719724655, + -0.04611558839678764, + 0.0026317965239286423, + 0.0017053672345355153, + -0.021324772387742996, + -0.03647949546575546, + -0.007227070163935423, + -0.006403577048331499, + -0.0081550357863307, + 0.004808828234672546, + -0.047860901802778244, + -0.04316576570272446, + 0.03254639729857445, + -0.0163592342287302, + 0.037241533398628235, + 0.02385670505464077, + 0.08057937026023865, + 0.03547164052724838, + 0.07517135888338089, + 0.032816797494888306, + 0.004685919266194105, + 0.0650927945971489, + 0.011123296804726124, + -0.002361395861953497, + -0.05673495680093765, + 0.008990819565951824, + 0.009365692734718323, + -0.015351378358900547, + 0.023106958717107773, + 0.01253675390034914, + -0.0013520028442144394, + 0.03399672731757164, + 0.06902588903903961, + -0.015793852508068085, + 0.009255073964595795, + -0.009150600992143154, + 0.0037794625386595726, + 0.02849038876593113, + 0.0024750870652496815, + -0.0030082063749432564, + -0.08166097104549408, + 0.013274210505187511, + 0.03564371168613434, + -0.037610262632369995, + 0.018497858196496964, + 0.0856432393193245, + 0.04970454052090645, + -0.00797067116945982, + -0.008505327627062798, + -0.04417362064123154, + 0.004400155041366816, + -0.010600931942462921, + 0.03874102979898453, + -0.029744062572717667, + -0.049925778061151505, + -0.03736444190144539, + 0.035250402987003326, + 0.07836700230836868, + -0.03365258127450943, + -0.01474912278354168, + 0.023279031738638878, + 0.03301345184445381, + 0.04026510566473007, + -0.009181329049170017, + 0.0791044607758522, + 0.04778715595602989, + 0.06622356176376343, + -0.0013927166583016515, + 0.018338074907660484, + -0.01798163913190365, + -0.05806237831711769, + -0.054080113768577576, + 0.04370656609535217, + 0.06047140061855316, + 0.06494530290365219, + -0.09562347829341888, + -0.05319516733288765, + 0.06283126026391983, + -0.014491012319922447, + -0.0050546471029520035, + 0.01784643717110157, + -0.06489613652229309, + 0.011713261716067791, + 0.04046176001429558, + -0.016580471768975258, + 0.0049194470047950745, + -0.04117463156580925, + -0.04056008532643318, + -0.0001440343912690878, + -0.06642021238803864, + 0.04842628538608551, + 0.01422061212360859, + -0.04471442103385925, + 0.03662698715925217, + 0.04326409101486206, + 0.03296428918838501, + -0.058209870010614395, + -0.0894288420677185, + 0.018571604043245316, + -0.025220999494194984, + -0.04673013463616371, + 0.0051283929497003555, + -0.03404588997364044, + 0.04228081554174423, + -0.06671519577503204, + -0.03702029585838318, + 0.012450717389583588, + 0.007270088419318199, + 0.041789181530475616, + 0.04250205308198929, + -0.01787102036178112, + 0.014331230893731117, + 0.016936909407377243, + 0.01423290278762579, + -0.04530438780784607, + 0.01787102036178112, + 0.03910975530743599, + -0.038937684148550034, + -0.08077602833509445, + 0.033160943537950516, + -0.0074483067728579044, + 0.08303755521774292, + -0.014650794677436352, + 0.025515981018543243, + -0.016002798452973366, + 0.13529860973358154, + -0.015769269317388535, + 0.06843592971563339, + 0.00260106916539371, + 0.005985685624182224, + 0.08824891597032547, + 0.008388563059270382, + -0.11750134080648422, + -0.0009118337766267359, + -0.006031776312738657, + 0.07777703553438187, + 0.04466525837779045, + 0.040707577019929886, + 0.05894732475280762, + -0.04223165288567543, + -0.05884899944067001, + -0.044468604028224945, + 0.04260038211941719, + 0.012143444269895554, + -0.08746229857206345, + -0.042379144579172134, + 0.036209095269441605, + 0.05776739493012428, + -0.013667520135641098, + 0.022934885695576668, + 0.009359546937048435, + 0.017907893285155296, + -0.04264954477548599, + 0.08883888274431229, + 0.036872804164886475, + 0.009574638679623604, + 0.012125007808208466, + 0.00932267401367426, + -0.055850010365247726, + -0.03650407865643501, + -0.0028422786854207516, + -0.07689209282398224, + 0.09542682021856308, + 0.046853046864271164, + 0.04675471782684326, + -0.020329207181930542, + 0.04262496531009674, + -0.004544573370367289, + -0.004111317917704582, + 0.06897673010826111, + -0.08195595443248749, + 0.0197269506752491, + 0.1409032791852951, + 0.026622164994478226, + -8.277176675619557e-05, + 0.06981251388788223, + 0.03404588997364044, + -0.0009786657756194472, + 0.025638891384005547, + 0.007122597191482782, + -0.08102184534072876, + 0.016088834032416344, + 0.05039283633232117, + 0.07871115207672119, + 0.05791488662362099, + 0.04363282024860382, + -0.022406375035643578, + -0.002193931955844164, + 0.0395030677318573, + 0.06288042664527893, + 0.005070010665804148, + -0.039699722081422806, + -0.009236637502908707, + 0.035520803183317184, + -0.04232998192310333, + -0.008320963010191917, + -0.020402953028678894, + 0.03982263058423996, + -0.0067661600187420845, + 0.06268376857042313, + 0.022590739652514458, + -0.03291512280702591, + 0.07246735692024231, + 0.007177906110882759, + -0.02110353671014309, + 0.006655541248619556, + -0.007460597902536392, + -0.10098232328891754, + 0.0006107058725319803, + -0.002370614092797041, + 0.036872804164886475, + 0.004716646391898394, + -0.013483156450092793, + -0.06243795156478882, + 0.05884899944067001, + 0.019714660942554474, + 0.037266116589307785, + 0.013495447114109993, + -0.07300815731287003, + -0.0722215324640274, + -0.01509326882660389, + -0.02168121002614498, + -0.0021647410467267036, + 0.011750133708119392, + -0.022123683243989944, + -0.026228856295347214, + -0.03458669036626816, + 0.032841380685567856, + 0.029055770486593246, + 0.01530221477150917, + -0.0344146192073822, + -0.04980286955833435, + 0.044099874794483185, + -0.06288042664527893, + 0.1510310173034668, + 0.028588715940713882, + -0.14139491319656372, + 0.07423724979162216, + -0.03355425223708153, + -0.02812165953218937, + -0.054473426192998886, + 0.07605630904436111, + -0.022971758618950844, + 0.06941920518875122, + 0.04559937119483948, + -0.017256472259759903, + 0.026622164994478226, + -0.015511160716414452, + 0.036577824503183365, + -0.007067287806421518, + -0.04117463156580925, + 0.04181376099586487, + -0.09876995533704758, + 0.07276234030723572, + 0.014466430991888046, + -0.03026028349995613, + -0.019075531512498856, + 0.003117288462817669, + 0.027949586510658264, + -0.0010762250749394298, + 0.07925195246934891, + -0.04626308009028435, + -1.9636689103208482e-05, + -0.00994336698204279, + -0.10707862675189972, + 0.08957633376121521, + -0.02954740822315216, + -0.019997350871562958, + 0.04441944137215614, + 0.07079578936100006, + 0.07684292644262314, + -0.01996047981083393, + 0.055112551897764206, + 0.033775489777326584, + -0.026695910841226578, + -0.011209333315491676, + 0.025294745340943336, + -0.023598596453666687, + -0.0017145854653790593, + 0.014724540524184704, + -0.01977611519396305, + 0.018792839720845222, + 0.04146961495280266, + -0.01127693336457014, + 0.08456163108348846, + 0.033455926924943924, + -0.0024474323727190495, + 0.007220924366265535, + 0.038667283952236176, + -0.020587315782904625, + -0.08520076423883438, + -0.0016869308892637491, + -0.00021643568470608443, + 0.08082518726587296, + 0.0018590039107948542, + 0.016580471768975258, + 0.005429520737379789, + 0.00044746685307472944, + 0.053785134106874466, + -0.04768883064389229, + 0.006876778323203325, + -0.007982962764799595, + 0.068534255027771, + -0.0012498344294726849, + 0.05806237831711769, + 0.0274825319647789, + -0.023733796551823616, + -0.01442955806851387, + -0.04496024176478386, + 0.00985118467360735, + -0.10511207580566406, + 0.020181715488433838, + -0.008732709102332592, + -0.00554013904184103, + -0.00519599299877882, + 0.045525625348091125, + -0.010981950908899307, + -0.02023088000714779, + -0.06347039341926575, + 8.421210804954171e-05, + -0.005798248574137688, + -0.011190896853804588, + 0.06032390892505646, + -0.06381453573703766, + -0.011301514692604542, + 0.08465996384620667, + 0.049630798399448395, + 0.024631034582853317, + 0.0892813503742218, + 0.023131540045142174, + -0.0006886764895170927, + -0.03360341861844063, + -0.06617439538240433, + -0.032103922218084335, + -0.021361645311117172, + -0.019825277850031853, + -0.03847062587738037, + 0.01839953102171421, + 0.0014057757798582315, + -0.04043717682361603, + 0.02581096440553665, + -0.016961490735411644, + 0.08333253860473633, + -0.02603220008313656, + 0.009113728068768978, + -0.025663472712039948, + -0.0035551530309021473, + 0.06445366144180298, + -0.01585530675947666, + -0.03908517584204674, + 0.0026348691899329424, + 0.05191691219806671, + 0.00021067431953269988, + 0.0274825319647789, + 0.03628284111618996, + 0.06710850447416306, + -0.03854437172412872, + 0.0026932512409985065, + 0.03434087336063385, + 0.02009567990899086, + -0.08633153140544891, + 0.036921970546245575, + 0.0016008942620828748, + 0.10530873388051987, + -0.024766234681010246, + -0.0034568256232887506, + 0.01959175057709217, + 0.005033138208091259, + -0.0003339677641633898, + 0.006809178274124861, + -0.04368198290467262, + 0.02814624086022377, + 0.0756630003452301, + -0.04611558839678764, + -0.05811154097318649, + -0.02298404835164547, + -0.015793852508068085, + 0.03731527924537659, + -0.03800357133150101, + 0.024151688441634178, + -0.03168603032827377, + -0.012493736110627651, + 0.006538777612149715, + -0.010484167374670506, + 0.04505856707692146, + 0.07512219995260239, + -0.010926641523838043, + 0.06548610329627991, + 0.02243095636367798, + 0.06814094632863998, + -0.014208321459591389, + -0.08790476620197296, + -0.037266116589307785, + -0.06755097955465317, + 0.011676388792693615, + 0.07064829766750336, + -0.023782959207892418, + -0.0894780084490776, + -0.05260520428419113, + 0.01511785015463829, + -0.008966237306594849, + 0.0024858417455106974, + 0.017305636778473854, + 0.027752932161092758, + 0.10206392407417297, + 0.0651911199092865, + 0.005994903855025768, + -0.024053359404206276, + 0.06484697759151459, + 0.023623177781701088, + -0.009089146740734577, + 0.0394539013504982, + -0.0059365215711295605, + 0.007104160729795694, + -0.0006694718613289297, + -0.033431343734264374, + -0.01855931244790554, + -0.027875840663909912, + 0.018092256039381027, + -0.02094375342130661, + 0.019505714997649193, + -0.05698077753186226, + -0.011510460637509823, + -0.020267752930521965, + -0.03050610050559044, + 0.009924930520355701, + -0.036258257925510406, + 0.09154288470745087, + -0.06037307530641556, + -0.04938497766852379, + -0.06710850447416306, + -0.03756109997630119, + -0.05737408623099327, + 0.01084060501307249, + -0.059193145483732224, + 0.0823984295129776, + 0.001666958094574511, + -0.07064829766750336, + -0.03706946223974228, + -0.007540488615632057, + -0.02647467516362667, + 0.01975153386592865, + 0.06111053004860878, + -0.040732160210609436, + 0.017047526314854622, + 0.048549193888902664, + -0.0009878838900476694, + 0.01739167422056198, + 0.0028914425056427717, + 0.050638653337955475, + 0.028023332357406616, + -0.06715767085552216, + -0.022381793707609177, + -0.024483542889356613, + -0.026917148381471634, + 0.03429171070456505, + 0.03957680985331535, + 0.08869139105081558, + 0.02433605119585991, + -0.01320046465843916, + 0.08800309896469116, + -0.046926792711019516, + 0.028072496876120567, + -0.04500940442085266, + 0.057521577924489975, + 0.04525522515177727, + -0.007362270262092352, + 0.008247217163443565, + -0.017428547143936157, + 0.01715814508497715, + 0.015769269317388535, + -0.01564636081457138, + -0.01195293478667736, + -0.029449081048369408, + -0.03783150017261505, + 0.005229793023318052, + 0.03335759788751602, + 0.09862246364355087, + 0.02610594592988491, + 0.06779679656028748, + 0.031415630131959915, + -0.005300465971231461, + -0.023942742496728897, + -0.020292334258556366, + -0.02534390799701214, + -0.01564636081457138, + 0.0026486965361982584, + 0.015031813643872738, + 0.012493736110627651, + -0.042723290622234344, + -0.03269388899207115, + -0.025835545733571053, + 0.0057736667804419994, + -0.02782667800784111, + -0.08810142427682877, + 0.00029018131317570806, + 0.06297875195741653, + 0.05314600467681885, + 0.024643324315547943, + -0.02316841296851635 + ] + }, + { + "id": "3af3a2e0-37dc-4aae-b9e3-67eda913a000", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maureen09", + "reviewDate": "2021-04-19T07:27:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "adb6c506-5ca1-4fa0-87b2-5e41c36a07e3", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pamelaroberts", + "reviewDate": "2022-11-30T13:56:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "338213d0-b6d3-4ba5-ad50-1e08d4204e82", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jodi16", + "reviewDate": "2022-07-20T09:19:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f7b09dd2-d9fe-4e5f-a824-1074362e48b4", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cjohnson", + "reviewDate": "2022-05-20T06:13:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5b28cb4c-744d-4231-883c-70d2513705ea", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shawnjames", + "reviewDate": "2022-07-28T22:49:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "72e5d088-46c5-4181-a72f-6ecffba0d2c7", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eelliott", + "reviewDate": "2021-04-29T18:27:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a53fc80c-5b62-4431-a5d4-82e14fc52a9e", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hopkinscalvin", + "reviewDate": "2021-10-18T16:06:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "702b3f9c-f88b-489b-9bf2-1590ddb85e32", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maria08", + "reviewDate": "2021-06-04T14:30:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c351f5b9-6acb-47a9-bc0e-dfc9685d55ea", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paul84", + "reviewDate": "2021-07-03T09:18:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "15b57c42-681f-437f-bdb4-90e493360173", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carriecarr", + "reviewDate": "2022-12-05T15:25:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5affdda8-c6e7-4ebb-a8df-e6b3d02b2f20", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsondeborah", + "reviewDate": "2021-12-06T07:41:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eefab70e-9278-4984-b5ca-e12b12c49781", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnwilson", + "reviewDate": "2022-12-20T07:54:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a1a93de-e55c-4930-8f64-6b88366f8e50", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nyoung", + "reviewDate": "2021-09-24T07:18:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5f184c90-2212-4baf-b7d2-3e6f339209a8", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "drakesteven", + "reviewDate": "2022-04-17T23:16:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "207c0c17-3696-478a-bbb3-0af24927ecf2", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wadecrystal", + "reviewDate": "2022-09-28T11:00:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "28598bdf-0ae3-44c7-a5ea-4699653672f9", + "productId": "0923e64c-3ce6-4937-996b-4b0e157358eb", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pburnett", + "reviewDate": "2021-03-24T07:17:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse 3000 (Silver)", + "description": "This Basic Mouse 3000 (Silver) is sold in 3 different colors: red (silver model) or blue (white model)\n\nMouse Backspace Mouse 2200 (Silver) is sold in 3 different colors: red (silver model) or blue (white model)\n", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-03-20T10:49:12", + "price": 222.98, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-02-12T14:40:30", + "newPrice": 211.62 + }, + { + "priceDate": "2025-03-17T14:40:30", + "newPrice": 222.98 + } + ], + "descriptionVector": [ + -0.051355138421058655, + -0.036887191236019135, + -0.04111815616488457, + 0.07761628925800323, + 0.009847931563854218, + -0.03348296880722046, + 0.01860164850950241, + 0.0004118502256460488, + 0.024765724316239357, + -0.0051124137826263905, + 0.01131296344101429, + -0.04746459797024727, + 0.011920860968530178, + -0.0717804804444313, + -0.0051428088918328285, + 0.02801189385354519, + -0.059622541069984436, + 0.020887341350317, + -0.006027298979461193, + -0.021008921787142754, + 0.00419448921456933, + -0.008632137440145016, + -0.05524568259716034, + 0.005972588434815407, + -0.04308773949742317, + -0.049555763602256775, + 0.010686829686164856, + -0.023355403915047646, + -0.014577370136976242, + 0.009410246275365353, + -0.0009490792290307581, + -0.003595710964873433, + 0.07824850082397461, + 0.005613929126411676, + -0.06035201624035835, + -0.047391653060913086, + -0.0514524020254612, + -0.024680618196725845, + 0.0879262238740921, + 0.034650128334760666, + 0.025483043864369392, + 0.02079007774591446, + 0.019793126732110977, + -0.058163587003946304, + -0.07022426277399063, + 0.07032153010368347, + -0.04376858472824097, + -0.01019443292170763, + 0.02854684367775917, + -0.04265005514025688, + 0.04532480239868164, + 0.04576248675584793, + -0.011537885293364525, + -0.004130660090595484, + 0.040972258895635605, + -0.05344630777835846, + 0.009349456056952477, + 0.17828403413295746, + 0.006206628400832415, + -0.023404035717248917, + -0.008753716945648193, + -0.048729024827480316, + -0.008036398328840733, + 0.012936048209667206, + -0.08841254562139511, + -0.015221741050481796, + -0.027865998446941376, + -0.01423694845288992, + 0.02626115083694458, + -0.005048584658652544, + -0.04702691361308098, + 0.001889039995148778, + 0.030054429545998573, + 0.04705122858285904, + -0.031075695529580116, + 0.07693544775247574, + 0.06696593761444092, + -0.020717130973935127, + 0.045057326555252075, + -0.041944894939661026, + -0.029130425304174423, + -0.014103210531175137, + -0.05986569821834564, + -0.003115472150966525, + -0.017094064503908157, + -0.012692890129983425, + 0.019963338971138, + -0.1114639937877655, + -0.006778051611036062, + 0.10514187067747116, + 0.030565062537789345, + 0.002732497174292803, + 0.06205412745475769, + -0.04709986224770546, + 0.005811495706439018, + -0.032826438546180725, + 0.013227839022874832, + 0.029592426493763924, + -0.03037053532898426, + -0.052716828882694244, + 0.07401753962039948, + 0.055002521723508835, + -0.08179862052202225, + -0.012279519811272621, + 0.05748274177312851, + 0.01469894964247942, + 0.00232672574929893, + 0.0390026718378067, + -0.07567102462053299, + -0.05033387243747711, + 0.005580494645982981, + -0.013276470825076103, + -0.04843723401427269, + -0.017774909734725952, + 0.01590258628129959, + 0.012097151018679142, + -0.06978657841682434, + -0.04607859253883362, + -0.006200549658387899, + -0.0055257841013371944, + 0.057774532586336136, + -0.0351850800216198, + 0.033701810985803604, + 0.018480069935321808, + -0.0416531041264534, + -0.011051568202674389, + -0.03803003579378128, + -0.023343246430158615, + 0.03705740347504616, + -0.0579204261302948, + -0.031075695529580116, + 0.035598449409008026, + 0.025507358834147453, + 0.0694461539387703, + -0.04111815616488457, + 0.08486242592334747, + -0.004969558212906122, + 0.002775050001218915, + -0.06759814918041229, + 0.07377438247203827, + -0.07319080084562302, + -0.0353066585958004, + 0.023829562589526176, + 0.03929446265101433, + -0.056364212185144424, + -0.000818381377030164, + -0.0745524913072586, + 0.025483043864369392, + 7.503728556912392e-05, + 0.025701886042952538, + -0.0065227351151406765, + -0.08379252254962921, + 0.07416343688964844, + 0.021191289648413658, + 0.019647231325507164, + 0.016145745292305946, + -0.055440209805965424, + -0.02762284129858017, + 0.039610568434000015, + 0.029300635680556297, + 0.005601771175861359, + -0.01906364969909191, + -0.014334212057292461, + -0.0343826562166214, + -0.011720254085958004, + 0.007094158325344324, + 0.07353122532367706, + 0.06594467163085938, + -0.04354974254965782, + 0.01179320178925991, + -0.10202943533658981, + -0.025021040812134743, + 0.019160913303494453, + -0.04843723401427269, + 0.07319080084562302, + -0.0424555279314518, + -0.008413294330239296, + 0.019671548157930374, + -0.022042345255613327, + -0.0830630511045456, + 0.03131885454058647, + 0.014346369542181492, + -0.10047321766614914, + -0.03153769671916962, + 0.05086882412433624, + -0.019136598333716393, + -0.01108196284621954, + 0.020182181149721146, + -0.09035781025886536, + 0.011616911739110947, + 0.030565062537789345, + 0.01155004370957613, + 0.03632792457938194, + 0.020230812951922417, + 0.007854029536247253, + 0.07552512735128403, + -0.022516505792737007, + 0.03443128615617752, + 0.03350728377699852, + -0.022820454090833664, + 0.031075695529580116, + -0.006601761560887098, + 0.060935597866773605, + 0.020619867369532585, + 0.05388399213552475, + -0.005130650941282511, + 0.002755293156951666, + 0.013094102032482624, + 0.052716828882694244, + -0.01806669868528843, + -0.00049657589988783, + -0.008103267289698124, + 0.07640049606561661, + -0.007787161041051149, + 0.06589603424072266, + 0.05082019045948982, + 0.014638160355389118, + 0.006583524867892265, + -0.024097038432955742, + -0.044595323503017426, + 0.016619903966784477, + -0.014881319366395473, + -0.07148868590593338, + 0.02305145561695099, + -0.10416923463344574, + -0.010243064723908901, + 0.13043038547039032, + 0.06249181181192398, + 0.00885705929249525, + 0.015379794873297215, + -0.08549463748931885, + -0.0362306609749794, + 0.0009338817908428609, + -0.05072292685508728, + -0.03885677829384804, + 0.12478909641504288, + -0.0625404417514801, + -0.015379794873297215, + -0.052327774465084076, + 0.04607859253883362, + -0.00924611371010542, + 0.00610936526209116, + -0.04160447046160698, + -0.058212216943502426, + 0.047197125852108, + -0.04979892447590828, + 0.09998690336942673, + -0.10134859383106232, + -0.08257672935724258, + 0.0343826562166214, + -0.035525500774383545, + 0.022346293553709984, + -0.09585320204496384, + -0.007209658622741699, + 0.035063501447439194, + 0.023221665993332863, + 0.041920579969882965, + 0.015756690874695778, + -0.05495389178395271, + -0.04809681326150894, + 0.0070212106220424175, + 0.07990198582410812, + -0.07503880560398102, + 0.01019443292170763, + -0.01997549645602703, + -0.03037053532898426, + 0.01043151319026947, + -0.15134204924106598, + -0.018346332013607025, + 0.027039259672164917, + 0.008662532083690166, + -0.025580307468771935, + 0.03389633819460869, + -0.0743093341588974, + -0.05208461731672287, + 0.023173034191131592, + -0.049531448632478714, + 0.023817405104637146, + -0.00086473353439942, + -0.07119689881801605, + 0.00023385038366541266, + 0.10874062031507492, + 0.016923852264881134, + -0.009580456651747227, + -0.01383573655039072, + 0.0031063538044691086, + -0.06565287709236145, + 0.07542786002159119, + 0.0009498390718363225, + -0.009829694405198097, + 0.010474065318703651, + 0.005705113522708416, + -0.022990664467215538, + -0.018735386431217194, + 0.014431475661695004, + -0.0038419091142714024, + 0.051890090107917786, + -0.0007526524714194238, + 0.028838634490966797, + 0.038759514689445496, + -0.038783829659223557, + -0.054127149283885956, + -0.12410825490951538, + -0.0662364587187767, + 0.009282587096095085, + 0.020522603765130043, + 0.016583431512117386, + -0.025604622438549995, + -0.03934309631586075, + -0.060400646179914474, + -0.019100124016404152, + -0.026869047433137894, + -0.04109383746981621, + -0.04265005514025688, + 0.08452200144529343, + -0.06064380705356598, + 0.01862596534192562, + 0.015282531268894672, + -0.04675943776965141, + 0.04471690580248833, + -0.06448571383953094, + -0.006534893065690994, + -0.07518470287322998, + 0.05359220132231712, + 0.018674597144126892, + -0.042382579296827316, + -0.035039182752370834, + 0.035112131386995316, + -0.025628937408328056, + -0.019331125542521477, + -0.09381067007780075, + -0.01855301670730114, + -0.03579297661781311, + 0.011659464798867702, + 0.0008670131210237741, + -0.07124552875757217, + -0.0037811193615198135, + 0.036425188183784485, + 0.046929650008678436, + -0.019270336255431175, + 0.033580232411623, + 0.13490450382232666, + -0.005902680102735758, + 0.05159829929471016, + 0.01403026282787323, + -0.04663785919547081, + -0.01991470716893673, + -0.031853802502155304, + 0.0006337326485663652, + 0.007866187021136284, + 0.001592690241523087, + -0.08534874022006989, + 0.008547032251954079, + -0.002053172094747424, + 0.08291715383529663, + -0.017325064167380333, + -0.008692927658557892, + -0.004756794311106205, + 0.004069870337843895, + 0.022321978583931923, + -0.03907562047243118, + 0.006407234352082014, + 0.03579297661781311, + -0.011458858847618103, + 0.00880842749029398, + 0.019209545105695724, + 0.024109195917844772, + 0.03934309631586075, + 0.028255052864551544, + -0.012005966156721115, + -0.02136150188744068, + 0.04758618026971817, + -0.05072292685508728, + 0.0444251149892807, + -0.009458878077566624, + -0.04213942214846611, + 0.0433795303106308, + -0.0028738330584019423, + 0.0006086569046601653, + -0.012498362921178341, + 0.0370330847799778, + 0.07396890968084335, + 0.0036109082866460085, + -0.029616743326187134, + 0.03314254432916641, + -0.04585975036025047, + -0.07596281170845032, + 0.041871946305036545, + -0.018662437796592712, + -0.018358489498496056, + 0.06448571383953094, + 0.036036133766174316, + 0.003422460285946727, + 0.06433982402086258, + -0.028668424114584923, + -0.000403871585149318, + 0.011306884698569775, + 0.032753489911556244, + -0.020242970436811447, + -0.016887379810214043, + -0.03793277218937874, + 0.00419448921456933, + -0.007854029536247253, + -0.00691786827519536, + -0.08627274632453918, + -0.032875072211027145, + 0.046370383352041245, + 0.012595626525580883, + -0.05082019045948982, + -0.05475936457514763, + -0.021580344066023827, + -0.008461926132440567, + 0.06861941516399384, + -0.00021276396000757813, + -0.048729024827480316, + -0.06754951924085617, + 0.038200248032808304, + 0.029057476669549942, + 0.051841456443071365, + -0.07917250692844391, + 0.05485662817955017, + -0.03771393001079559, + -0.013860052451491356, + 0.06740362197160721, + 0.015477058477699757, + -0.06083833426237106, + -0.07824850082397461, + 0.022394925355911255, + 0.06842488795518875, + -0.013300786726176739, + -0.06234591826796532, + -0.02443746104836464, + -0.010814487934112549, + -0.049628712236881256, + 0.00041374991997145116, + 0.036862876266241074, + -0.028425265103578568, + 0.022018030285835266, + 0.004018199164420366, + 0.006057693623006344, + 0.06857078522443771, + -0.021106185391545296, + -0.014443633146584034, + 0.03440697118639946, + 0.0030410047620534897, + -0.01715485379099846, + -0.05646147578954697, + -0.03158633038401604, + -0.00203645508736372, + 0.0333370715379715, + -0.04500869661569595, + 0.016413219273090363, + -0.06604193150997162, + -0.010540934279561043, + 0.06677141040563583, + -0.007306922227144241, + -0.009069823659956455, + -0.012559152208268642, + 0.01985391601920128, + 0.024121353402733803, + -0.08369526267051697, + 0.05257093533873558, + 0.03793277218937874, + 0.043647006154060364, + -0.02350129932165146, + -0.04080204665660858, + -0.0003525802749209106, + 0.012091071344912052, + -0.052716828882694244, + -0.012109308503568172, + -0.05616968497633934, + 0.025166936218738556, + 0.049142394214868546, + 0.014492264948785305, + 0.05879579856991768, + -0.02934926748275757, + -0.0022476993035525084, + 0.025945045053958893, + 0.040899310261011124, + 0.04403606057167053, + 0.030078744515776634, + 0.014309896156191826, + -0.05646147578954697, + 0.029738321900367737, + 0.09697173535823822, + -0.026966311037540436, + 0.017531750723719597, + -0.027014942839741707, + 0.03620634600520134, + 0.01985391601920128, + 0.025555990636348724, + 0.058649905025959015, + 0.012498362921178341, + 0.017872171476483345, + -0.05704505741596222, + 0.0036109082866460085, + 0.004544030409306288, + -0.017118379473686218, + -0.027987578883767128, + 0.04564090818166733, + 0.03798140585422516, + -0.014115368947386742, + -0.005018190015107393, + 0.005261348560452461, + 0.03078390471637249, + -0.0007705094758421183, + -0.08243083208799362, + 0.004410292953252792, + 0.05432167649269104, + -0.07980471849441528, + 2.8542664949782193e-05, + -0.013252154923975468 + ] + }, + { + "id": "09c1fa42-c59c-44dd-9a4d-60add93e064e", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ianrivera", + "reviewDate": "2021-06-16T12:52:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "432bbef5-cc56-455c-9306-4b291e1fd953", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jason05", + "reviewDate": "2021-04-23T11:43:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7fcc31e0-a691-410c-aa65-f2b72098a08a", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "imartin", + "reviewDate": "2021-05-06T11:45:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7e1f9713-9efb-444e-8fb0-fd658bc35276", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rsanchez", + "reviewDate": "2022-05-05T22:50:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "63be4355-ca0e-4f5c-87b0-decaa8e55765", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robindaniel", + "reviewDate": "2022-09-16T16:11:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "29416624-e626-404d-babf-9a45c9ca3e52", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kayla80", + "reviewDate": "2022-11-01T04:15:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "46343181-aa07-4a74-a1a2-2143bbfad6a5", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sosborn", + "reviewDate": "2022-12-15T10:43:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fcff046f-8fd4-4962-a279-ac9e36b05962", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "elynch", + "reviewDate": "2021-02-12T14:40:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f2d7a153-f0ad-4419-aaa6-9576677764a2", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "florespamela", + "reviewDate": "2022-03-13T01:57:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2510c18d-5a3b-44e0-8120-47c9c28de724", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthewramirez", + "reviewDate": "2021-12-25T17:21:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "de7a521a-dd40-4a88-9327-4c4f966fb4e4", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uryan", + "reviewDate": "2021-09-10T14:12:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4d506362-abda-4f98-93b5-f70431d165fd", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "juan79", + "reviewDate": "2021-10-27T11:15:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2472c34c-9208-4fee-b866-2603f6872dac", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ggreen", + "reviewDate": "2021-06-04T06:30:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1ad7c466-0323-4bbe-942a-6dc284ea3e75", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "allison32", + "reviewDate": "2022-04-01T15:21:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "affb885f-f87f-491f-97b4-919c50b369ad", + "productId": "c0bca986-099f-4bc4-9772-be8aae5f1de6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathy26", + "reviewDate": "2022-07-01T22:10:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "40226094-f948-4bb0-b609-6063a789cbeb", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Silver)", + "description": "This Premium Computer Super (Silver) is equipped with the latest Intel-based i7 6700K and i7 6700K processors including up to 1TB of 6GB (8", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-04-03T05:30:39", + "price": 1002.51, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-01-15T17:07:49", + "newPrice": 1097.28 + }, + { + "priceDate": "2021-07-12T17:07:49", + "newPrice": 986.33 + }, + { + "priceDate": "2022-01-06T17:07:49", + "newPrice": 1079.86 + }, + { + "priceDate": "2022-07-03T17:07:49", + "newPrice": 1042.77 + }, + { + "priceDate": "2022-12-28T17:07:49", + "newPrice": 1077.41 + }, + { + "priceDate": "2024-06-26T17:07:49", + "newPrice": 1002.51 + } + ], + "descriptionVector": [ + 0.02072889730334282, + 0.011182032525539398, + -0.029936151579022408, + 0.013005874119699001, + 0.004936949349939823, + -0.032300855964422226, + -0.021043352782726288, + 0.040426380932331085, + 0.08583373576402664, + 0.08155714720487595, + 0.11974460631608963, + -0.06646328419446945, + 0.0434451550245285, + -0.005065876059234142, + -0.01588628441095352, + 0.08573310822248459, + -0.021143978461623192, + -0.026087217032909393, + -0.030489591881632805, + -0.05700447037816048, + 0.04130685701966286, + 0.04523126035928726, + -0.018452240154147148, + 0.0006729344604536891, + -0.047042522579431534, + -0.021835779771208763, + 0.025458306074142456, + 0.02943302132189274, + 0.004556458443403244, + 0.0047765769995749, + 0.0827646553516388, + 0.051293957978487015, + -0.0026980270631611347, + -0.038262929767370224, + 0.06228731945157051, + -0.03406180441379547, + -0.050010982900857925, + -0.04580985754728317, + 0.06279044598340988, + -0.031219128519296646, + -0.005880315322428942, + -0.002767207333818078, + 0.01238954160362482, + 0.024250797927379608, + 0.07783399522304535, + 0.012509034015238285, + 0.012578214518725872, + 0.01608753576874733, + 0.002779785543680191, + -0.0439985953271389, + 0.0031508428510278463, + 0.0037011397071182728, + 0.02416275069117546, + 0.015546672977507114, + 0.015596985816955566, + -0.06565827876329422, + -0.016829650849103928, + 0.22479784488677979, + 0.0061476025730371475, + 0.03657744824886322, + 0.038992464542388916, + 0.0035596347879618406, + -0.012798333540558815, + -0.00459104822948575, + -0.06968330591917038, + -0.05841322988271713, + 0.0016839085146784782, + -0.005798556841909885, + -0.013433532789349556, + 0.07058893889188766, + -0.0449293814599514, + -0.020967883989214897, + 0.037986207753419876, + 0.020213190466165543, + 0.10414762049913406, + 0.03217507153749466, + 0.06983424723148346, + -0.043369684368371964, + 0.07104175537824631, + 0.011056250892579556, + 0.028980206698179245, + -0.0023065300192683935, + -0.0032892031595110893, + 0.013169391080737114, + 0.0557466484606266, + 0.047042522579431534, + -0.00458161486312747, + -0.12819716334342957, + -0.007289075292646885, + 0.007458881475031376, + -0.023873452097177505, + 0.013609628193080425, + 0.045960795134305954, + -0.053734131157398224, + -0.03237632289528847, + 0.08467654138803482, + -0.06601046770811081, + 0.017332779243588448, + -0.03418758884072304, + -0.01786106452345848, + 0.01998678222298622, + -0.04910534992814064, + -0.031495850533246994, + -0.02671612799167633, + -0.013018452562391758, + 0.06359545141458511, + 0.027596602216362953, + 0.012798333540558815, + -0.022753991186618805, + -0.12688903510570526, + -0.09333035349845886, + -0.04538219794631004, + 0.009546864777803421, + 0.013446111232042313, + -0.0471683032810688, + 0.0065721170976758, + -0.06268981844186783, + -0.006999776232987642, + -0.018993103876709938, + -0.019081151112914085, + -0.019886156544089317, + 0.0713939443230629, + -0.02908083237707615, + -0.06349482387304306, + 0.011075117625296116, + 0.010288979858160019, + -0.0782868042588234, + -0.005622461903840303, + 0.01565987803041935, + -0.06983424723148346, + -0.045256417244672775, + 0.03768433257937431, + -0.042514365166425705, + -0.008691546507179737, + -0.05801072716712952, + 0.02080436609685421, + 0.02988583780825138, + 0.1392659991979599, + -0.011251213029026985, + -0.009446239098906517, + -0.06827455013990402, + -0.04830034449696541, + 0.02111882157623768, + -0.027697227895259857, + -0.07305426895618439, + 0.04321874678134918, + -0.038992464542388916, + 0.03695479407906532, + -0.03270335868000984, + 0.06746954470872879, + 0.03182288259267807, + -0.010886444710195065, + -0.03781011328101158, + -0.043369684368371964, + 0.009924211539328098, + 0.04636329784989357, + -0.02149616926908493, + -0.002713749883696437, + 0.0026115518994629383, + 0.04331937059760094, + -0.052677564322948456, + 0.025231897830963135, + -0.07114238291978836, + -0.0025313657242804766, + 0.02872864156961441, + 0.02045217715203762, + 0.05564602091908455, + 0.02177288942039013, + 0.011748052202165127, + 0.024766504764556885, + 0.01631394401192665, + -0.016490038484334946, + -0.0012664690148085356, + -0.048501595854759216, + 0.090613454580307, + 0.03179772570729256, + 0.02749597653746605, + -0.017647234722971916, + -0.005804846063256264, + -0.06279044598340988, + 0.0158485509455204, + 0.04198608174920082, + -0.08995939046144485, + 0.022628208622336388, + 0.041080448776483536, + 0.04477844387292862, + -0.024074703454971313, + 0.009798428975045681, + 0.05262725055217743, + 0.002312819240614772, + 0.05941948667168617, + -0.06963299959897995, + 1.4948913303669542e-05, + 0.013483845628798008, + 0.005449511576443911, + 0.05479070171713829, + 0.01011288445442915, + 0.04140748083591461, + -0.007295364513993263, + 0.011087696067988873, + 0.01110027451068163, + 0.013559315353631973, + 0.023345166817307472, + -0.09660068899393082, + 0.009672647342085838, + 0.008521740324795246, + 0.007194738835096359, + 0.04731924459338188, + -0.026892222464084625, + 0.08195964992046356, + 0.015521517023444176, + 0.021647106856107712, + 0.039923254400491714, + -0.0318731963634491, + 0.05428757518529892, + -0.0008804750395938754, + 0.02872864156961441, + 0.03290461003780365, + -0.025496041402220726, + -0.05564602091908455, + 0.017534030601382256, + -0.022376643493771553, + 0.0013435105793178082, + 0.020200612023472786, + 0.0009362908313050866, + -0.09896539151668549, + 0.051067549735307693, + -0.043596092611551285, + -0.05916792154312134, + -0.02574760466814041, + -0.052727874368429184, + -0.040275443345308304, + 0.018728962168097496, + 0.039067935198545456, + 0.01713152788579464, + 0.02447720617055893, + -0.053532879799604416, + -0.03642651066184044, + -0.06309232115745544, + 0.017269888892769814, + 0.02416275069117546, + 0.01925724744796753, + -0.05104239657521248, + -0.031495850533246994, + -0.02257789485156536, + -0.023873452097177505, + 0.05811135098338127, + 0.007238762453198433, + -0.027521133422851562, + 0.004377218894660473, + -0.04543251171708107, + -0.06092886999249458, + -0.05896667018532753, + 0.07169582694768906, + 0.019923891872167587, + 0.05866479128599167, + -0.010823553428053856, + 0.0020801222417503595, + -0.03305554762482643, + 0.02160937339067459, + -0.02845192141830921, + -0.035168688744306564, + -0.02087983675301075, + 0.010049993172287941, + -0.054036010056734085, + 0.018842166289687157, + 0.05474039167165756, + 0.01573534682393074, + -0.06007355451583862, + 0.0059966640546917915, + 0.05624977499246597, + 0.0467909574508667, + -0.015999488532543182, + -0.024565253406763077, + 0.06354513764381409, + -0.03904277831315994, + -0.044753286987543106, + 0.07748179882764816, + -0.007691578473895788, + 0.025470884516835213, + 0.02837645262479782, + 0.03670322895050049, + 0.020313816145062447, + 0.0077544692903757095, + 0.04895441234111786, + -0.030263183638453484, + -0.014666197821497917, + -0.01810005120933056, + 0.04163388907909393, + 0.009333034977316856, + -0.0082009956240654, + 0.04168420284986496, + -0.003248323919251561, + 0.07194738835096359, + 0.021521326154470444, + 0.02177288942039013, + 0.01964717172086239, + -0.011414729990065098, + 0.021244604140520096, + 0.02308102324604988, + 0.018376771360635757, + -0.014968075789511204, + -0.01690511964261532, + 0.027596602216362953, + -0.03290461003780365, + 0.11863771826028824, + -0.05413663759827614, + 0.025760183110833168, + -0.0382126159965992, + -0.02598659135401249, + 0.00214144098572433, + -0.019206933677196503, + -0.015433469787240028, + 0.06535640358924866, + 0.06666453927755356, + 0.04060247540473938, + 0.04412437602877617, + 0.05544476956129074, + -0.05116817727684975, + -0.025936279445886612, + 0.002191753825172782, + -0.032502107322216034, + -0.06163325160741806, + 0.055042266845703125, + 0.015647299587726593, + 0.00390553567558527, + -0.09856288880109787, + 0.09725475311279297, + -0.04724377393722534, + -0.03325679898262024, + 0.0613313727080822, + -0.040929511189460754, + 0.04145779460668564, + -0.027948793023824692, + 0.05217443406581879, + -0.023911185562610626, + -0.009502841159701347, + 0.0848274827003479, + -0.06751985847949982, + -0.030137402936816216, + 0.10304073244333267, + -0.007899118587374687, + -0.0822112113237381, + 0.014314007945358753, + 0.00024606133229099214, + 0.013383219949901104, + -0.0026068349834531546, + -0.062035754323005676, + -0.015747925266623497, + 0.02524447627365589, + 0.0009527997463010252, + -0.04354577884078026, + 0.018842166289687157, + 0.049205977469682693, + 0.1228640004992485, + -0.0773811787366867, + -0.015131591819226742, + 0.004223135765641928, + 0.04256467893719673, + 0.006430612411350012, + -0.0094147939234972, + -0.04060247540473938, + 0.04485391452908516, + 0.013521580956876278, + -0.045910485088825226, + 0.01425111759454012, + 0.011314104311168194, + 0.02160937339067459, + 0.03386055305600166, + 0.012345517985522747, + 0.06545703113079071, + 0.02265336364507675, + -0.027470821514725685, + 0.06958268582820892, + -0.0458601713180542, + 0.02900536358356476, + 0.006471491418778896, + 0.03204929083585739, + -0.0002134365786332637, + 0.06857642531394958, + 0.04538219794631004, + 0.009848741814494133, + 0.006955752614885569, + -0.04900472238659859, + 0.10258791595697403, + -0.10163197666406631, + 0.0011194611433893442, + 0.04948269575834274, + -0.017873642966151237, + 0.06570859253406525, + 0.006059554871171713, + 0.05725603178143501, + -0.027018005028367043, + -0.020313816145062447, + 0.02799910493195057, + 0.03353352099657059, + 0.025156429037451744, + 0.017307624220848083, + 0.0013411521213129163, + -0.0041948347352445126, + 0.00825759768486023, + 0.007112980354577303, + -0.034741029143333435, + -0.025936279445886612, + 0.014590729027986526, + -0.07989682257175446, + 0.009383347816765308, + 0.024565253406763077, + -0.05624977499246597, + -0.0013183541595935822, + -0.046614862978458405, + -0.02401181124150753, + 0.02880411222577095, + 0.007905407808721066, + 0.0656079649925232, + -0.031068190932273865, + 0.129404678940773, + 0.0846262276172638, + 0.033156175166368484, + -0.039722003042697906, + 0.017345357686281204, + 0.043822500854730606, + -0.015005810186266899, + 0.0645010843873024, + -0.020364129915833473, + 0.036174945533275604, + 0.004484133329242468, + 0.04480360075831413, + 0.059570424258708954, + -0.0462375171482563, + -0.01096191443502903, + -0.07129332423210144, + 0.06983424723148346, + -0.003918113652616739, + -0.03947043791413307, + 0.029684586450457573, + 0.07551959902048111, + -0.027948793023824692, + -0.038262929767370224, + 0.07099144160747528, + -0.014552994631230831, + -0.030841782689094543, + 0.016288787126541138, + 0.01670386828482151, + 0.00422627991065383, + -0.007697867229580879, + -0.02749597653746605, + 0.004996695555746555, + 0.016766760498285294, + -0.010590856894850731, + -0.05911760777235031, + -0.03864027559757233, + 0.004452688153833151, + -0.06329357624053955, + -0.015949176624417305, + 0.03345805034041405, + -0.03479134291410446, + 0.06520546227693558, + -0.04218733310699463, + 0.054891329258680344, + -0.03622525930404663, + 0.0052199591882526875, + 0.0453067272901535, + -0.028024261817336082, + -0.03363414481282234, + 0.08060120046138763, + -0.06701672822237015, + -0.08618592470884323, + -0.02216281369328499, + 0.05207381024956703, + 0.02779785357415676, + -0.031344909220933914, + 0.07597241550683975, + -0.0161252710968256, + -0.01494291890412569, + -0.013446111232042313, + 0.08095338940620422, + 0.013672519475221634, + 0.005053297616541386, + 0.02169742062687874, + -0.03529446944594383, + 0.025646978989243507, + 0.004826889839023352, + 0.052526623010635376, + 0.004025028552860022, + 0.050438642501831055, + -0.013924083672463894, + 0.06983424723148346, + 0.048199716955423355, + 0.06807329505681992, + 0.0008851918391883373, + 0.018804430961608887, + -0.004870913457125425, + -0.02157163806259632, + -0.0453067272901535, + -0.011421019211411476, + 0.01670386828482151, + 0.0022593617904931307, + 0.0626395121216774, + 0.0727020800113678, + -0.06777141988277435, + -0.0484764389693737, + -0.051721617579460144, + 0.03204929083585739, + -0.017345357686281204, + 0.01840192824602127, + 0.01306876540184021, + 0.055344145745038986, + -0.06862673908472061, + -0.01443979050964117, + 0.006295396480709314, + -0.02018803358078003 + ] + }, + { + "id": "6d212fae-e6c7-4ea5-bee9-0584bbf76991", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "shawn40", + "reviewDate": "2022-03-19T20:58:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "800b8cf5-25b2-43fd-be92-3f62703b5279", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "sierraobrien", + "reviewDate": "2021-09-10T16:46:32", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1739b934-c585-472a-8421-5e1bd28708be", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "faith42", + "reviewDate": "2021-01-23T06:42:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8877831c-e0d9-4923-9af9-c54b0bdb51b7", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "dunnlisa", + "reviewDate": "2021-12-13T12:25:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "594941b4-0460-4092-847c-73f78ab34d5f", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "ruizsara", + "reviewDate": "2022-12-06T00:36:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "68e111a4-5ac4-4c3f-82bf-b845bb831e7c", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "larsenlinda", + "reviewDate": "2022-04-23T10:50:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9df14ccc-7062-40a3-ae63-c924bb2b22b6", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "donnamartinez", + "reviewDate": "2021-03-12T22:34:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d82e908-3622-47ac-ba45-d0abd68a541e", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "karilopez", + "reviewDate": "2022-04-01T23:39:42", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f5fee298-bf3e-4a87-a2c5-34c550298724", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "dgonzalez", + "reviewDate": "2022-12-29T06:06:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8d3c8e32-111a-4919-a2a3-e4b38c7bedaa", + "productId": "40226094-f948-4bb0-b609-6063a789cbeb", + "category": "Electronics", + "docType": "customerRating", + "userName": "vanderson", + "reviewDate": "2021-01-15T17:07:49", + "stars": 5, + "verifiedUser": false + }, + { + "id": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "productId": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Micro (Black)", + "description": "This Awesome Keyboard Micro (Black) is ideal for the workstation, smartphone or keyboard on the go. Built for the iPad, there are many more things you can create and you can even build your own!\n\nYou can create your own Micro", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-10-13T06:47:08", + "price": 857.05, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2022-03-08T07:50:53", + "newPrice": 872.91 + }, + { + "priceDate": "2022-03-31T07:50:53", + "newPrice": 812.71 + }, + { + "priceDate": "2022-04-23T07:50:53", + "newPrice": 904.04 + }, + { + "priceDate": "2022-05-16T07:50:53", + "newPrice": 895.88 + }, + { + "priceDate": "2022-06-08T07:50:53", + "newPrice": 940.52 + }, + { + "priceDate": "2023-06-18T07:50:53", + "newPrice": 857.05 + } + ], + "descriptionVector": [ + -0.03914017230272293, + 0.001375293591991067, + -0.033385634422302246, + 0.00708833197131753, + -0.0014357221079990268, + 0.040491439402103424, + 0.03860432282090187, + 0.0032733299303799868, + 0.0232511255890131, + 0.057918135076761246, + 0.02047869749367237, + -0.026955462992191315, + 0.027258334681391716, + -0.05717260763049126, + 0.022424057126045227, + -0.014654266647994518, + -0.0663985088467598, + -0.0577317550778389, + 0.003989734686911106, + 0.02432282082736492, + 0.056893035769462585, + -0.100087009370327, + -0.12981490790843964, + -0.0065816063433885574, + 0.0031714022625237703, + 0.010227699764072895, + 0.002143390476703644, + 0.015399794094264507, + -0.008695874363183975, + 0.055634960532188416, + 0.01714712381362915, + -0.018312009051442146, + -0.039489638060331345, + 0.030776290223002434, + 0.011188730597496033, + -0.08009756356477737, + -0.0011896399082615972, + -0.03785879909992218, + 0.004039242397993803, + -0.015423092059791088, + 0.0650472417473793, + 0.0378355011343956, + 0.015562877990305424, + -0.001164157991297543, + -0.010437379591166973, + 0.09030196815729141, + -0.010955753736197948, + -0.035389237105846405, + -0.0019293425139039755, + 0.011048944666981697, + 0.05754537135362625, + 0.035925086587667465, + -0.026419615373015404, + -0.02637302130460739, + 0.042098984122276306, + 0.032593511044979095, + 0.0007346062920987606, + 0.006989316549152136, + 0.06551319360733032, + -0.09719809144735336, + -0.005949655547738075, + -0.04976393282413483, + -0.009109409525990486, + -0.044335562735795975, + 0.02532462403178215, + -0.003124806797131896, + -0.023111339658498764, + 0.0056642587296664715, + 0.05591453239321709, + 0.047667138278484344, + 0.020665079355239868, + -0.03422435373067856, + 0.00245790951885283, + 0.021422255784273148, + 0.005440018139779568, + -0.01393203716725111, + 0.11779327690601349, + 0.08499009162187576, + 0.06271746754646301, + 0.0041819410398602486, + 0.010815966874361038, + -0.0338049940764904, + -0.012336143292486668, + -0.05796473100781441, + 0.04522087797522545, + 0.05218689516186714, + -0.0014058719389140606, + -0.09291131049394608, + -0.018987642601132393, + 0.08256712555885315, + -0.0679827481508255, + 0.022610438987612724, + -0.017776161432266235, + 0.01767132245004177, + 0.059688761830329895, + -0.053072210401296616, + -0.03040352649986744, + 0.01945359818637371, + 0.03550572693347931, + -0.0689612552523613, + 0.08391839265823364, + -0.03646093234419823, + 0.010903333313763142, + -0.049204789102077484, + -0.096172995865345, + 0.045896511524915695, + 0.09757085889577866, + 0.02432282082736492, + -0.027677692472934723, + -0.1312127709388733, + 0.04163302853703499, + 0.0065466598607599735, + 0.004071276634931564, + 0.008824012242257595, + 0.022552194073796272, + 0.006878652144223452, + -0.05218689516186714, + -0.007530988659709692, + -0.0045372312888503075, + -0.015749258920550346, + 0.028982365503907204, + -0.004531406797468662, + 0.02812035009264946, + -0.014013579115271568, + -0.043054189532995224, + 0.03347882628440857, + -0.08834496140480042, + 0.036181360483169556, + 0.05470304936170578, + 0.03790539130568504, + -0.04780692607164383, + 0.04007207974791527, + 0.04780692607164383, + 0.04785351827740669, + 0.02553430199623108, + 0.04557034373283386, + 0.041539836674928665, + 0.10465336591005325, + -0.0018157662125304341, + 0.05447007343173027, + 0.025347920134663582, + -0.014817350544035435, + -0.02579057775437832, + -0.048971809446811676, + -0.05134817957878113, + 0.032570213079452515, + -0.0034597115591168404, + 0.07599716633558273, + 0.043613333255052567, + 0.062018536031246185, + -0.05195391923189163, + -0.06374256312847137, + -0.04170292243361473, + -0.047131288796663284, + 0.03450392559170723, + 0.027235036715865135, + -0.023903463035821915, + -0.06453468650579453, + -0.05363135412335396, + 0.08168181031942368, + 0.0015405617887154222, + 0.01074607390910387, + 0.01686755008995533, + 0.00919677596539259, + -0.016937443986535072, + 0.02937842719256878, + 0.05120839178562164, + 0.04962414503097534, + -0.026163341477513313, + 0.0338049940764904, + -0.026419615373015404, + 0.022179430350661278, + -0.004735261667519808, + -0.05316540226340294, + 0.023169584572315216, + -0.015621121972799301, + -0.013314647600054741, + -0.059455785900354385, + 0.026466211304068565, + -0.0638357549905777, + -0.023390911519527435, + 0.05447007343173027, + -0.04354344308376312, + 0.05721920356154442, + 0.08112266659736633, + 0.056893035769462585, + 0.029797784984111786, + 0.0466187410056591, + 0.06080705299973488, + 0.0016454015858471394, + 0.030054060742259026, + -0.043823014944791794, + -0.04990372061729431, + -0.0015434740344062448, + 0.06966018676757812, + 0.004324639681726694, + -0.0807964950799942, + 0.03888389840722084, + -0.0064418199472129345, + 0.02760780043900013, + -0.03114905394613743, + 0.05964216589927673, + 0.05377114191651344, + 0.04803990200161934, + 0.01612202264368534, + -0.0037392843514680862, + -0.004371235147118568, + 0.031009268015623093, + 0.01344278547912836, + -0.06458128243684769, + 0.018591580912470818, + -0.016739413142204285, + 0.02149214781820774, + -0.051254987716674805, + 0.027468014508485794, + -0.0028932858258485794, + -0.014001931063830853, + -0.009231721982359886, + -0.04957755282521248, + -0.04240185394883156, + 0.022633736953139305, + -0.013104968704283237, + 0.009284142404794693, + -0.012103166431188583, + 0.024648988619446754, + -0.07501866668462753, + 0.0440559908747673, + 0.060993436723947525, + 0.008858958259224892, + 0.04319397732615471, + -0.06220491603016853, + 0.009359859861433506, + 0.029238641262054443, + -0.015376496128737926, + -0.027444716542959213, + -0.008084309287369251, + 0.03396807610988617, + -0.04582661762833595, + -0.04559364169836044, + 0.11108353734016418, + 0.02839992195367813, + -0.005160445347428322, + -0.07674269378185272, + -0.014747457578778267, + 0.10595803707838058, + -0.0750652551651001, + 0.035645514726638794, + 0.06495404988527298, + -0.10465336591005325, + 0.0061214761808514595, + -0.014898892492055893, + 0.12590087950229645, + 0.023577293381094933, + 0.043846312910318375, + -0.012825395911931992, + 0.043357059359550476, + 0.08387179672718048, + -0.06206512823700905, + 0.014992083422839642, + -0.061273008584976196, + 0.03611146658658981, + -0.025138242170214653, + -0.043333761394023895, + 0.008876431733369827, + -0.05032308027148247, + 0.004435303620994091, + 0.033362336456775665, + -0.0691942349076271, + -0.036973483860492706, + 0.008183324709534645, + 0.021294116973876953, + -0.0230065006762743, + 0.06723722070455551, + 0.009738447144627571, + -0.05936259403824806, + 0.014805701561272144, + -0.07925885170698166, + 0.08676071465015411, + -0.006203018128871918, + 0.019022589549422264, + 0.04419577866792679, + 0.06747020035982132, + 0.05624070018529892, + 0.09435576945543289, + 0.053817737847566605, + -0.006634026300162077, + 0.019733170047402382, + -0.0017429607687518, + -0.027165142819285393, + -0.003978086169809103, + -0.03427094966173172, + -0.06295043975114822, + 0.02249395102262497, + 0.0916532352566719, + 0.03252362087368965, + -0.001299576018936932, + 0.002687974600121379, + -0.006610728334635496, + 0.017729565501213074, + 0.06528021395206451, + 0.021853262558579445, + -0.05922280624508858, + -0.02100289613008499, + -0.09188621491193771, + -0.0056293117813766, + 0.049996908754110336, + 0.010565516538918018, + 0.006634026300162077, + -0.03324585035443306, + -0.001299576018936932, + 0.11891157180070877, + -0.009365684352815151, + -0.06439489871263504, + -0.023845218122005463, + 0.08144883066415787, + -0.0727354884147644, + 0.0602945014834404, + 0.031312137842178345, + -0.018486741930246353, + -0.015108572319149971, + -0.018090680241584778, + 0.006092354189604521, + -0.040747713297605515, + 0.07939863204956055, + 0.015294954180717468, + -0.0031510167755186558, + -0.010175280272960663, + 0.0011117381509393454, + 0.04098069295287132, + -0.03459711745381355, + -0.03170819953083992, + -0.012673960067331791, + 0.04419577866792679, + -0.009487996809184551, + 0.019476894289255142, + -0.09375002980232239, + -0.006587430834770203, + 0.10055296868085861, + 0.05036967247724533, + 0.033106062561273575, + 0.03238383308053017, + -0.05707941949367523, + 0.016972390934824944, + -0.06341639906167984, + -0.02328607253730297, + -0.05624070018529892, + -0.04286780580878258, + -0.019768116995692253, + 0.007688248064368963, + -0.055308789014816284, + 0.001445914851501584, + -0.032873086631298065, + 0.032593511044979095, + -0.014992083422839642, + -0.057405587285757065, + 0.03226734325289726, + 0.05707941949367523, + -0.017857704311609268, + -0.028050456196069717, + 0.07748822122812271, + -0.05391092598438263, + -0.03347882628440857, + 0.05498262122273445, + 0.0074785687029361725, + -0.040771011263132095, + 0.014735808596014977, + 0.045616939663887024, + -0.03427094966173172, + 0.005763273686170578, + 0.01340783853083849, + 0.056380484253168106, + -0.026769081130623817, + -0.015527931042015553, + 0.006203018128871918, + -0.050742436200380325, + 0.049204789102077484, + 0.016797658056020737, + -0.03324585035443306, + -0.044591840356588364, + 0.04729437455534935, + -0.002216195687651634, + 0.006115651689469814, + -0.009942302480340004, + 0.05232668295502663, + -0.005445842631161213, + -0.04342695325613022, + -0.006098178680986166, + 0.0024113142862915993, + -0.009499645791947842, + 0.013745655305683613, + -0.05912961810827255, + -0.030520014464855194, + -0.046642038971185684, + -0.00708833197131753, + -0.008771591819822788, + -0.009062813594937325, + 0.01344278547912836, + 0.04605959355831146, + 0.004805155098438263, + 0.07734843343496323, + 0.05474964529275894, + 0.04044484347105026, + 0.020769918337464333, + 0.009552066214382648, + -0.03494658321142197, + -0.07837353646755219, + -0.02912215143442154, + 0.03597168251872063, + 0.002734570065513253, + -0.05339837819337845, + -0.005093464162200689, + 0.021876560524106026, + -0.03785879909992218, + -0.05009010061621666, + 0.06784296780824661, + 0.04144664481282234, + 0.059688761830329895, + 0.028772685676813126, + 0.022913308814167976, + -0.026629295200109482, + 0.06812253594398499, + -0.019826361909508705, + -0.05013669654726982, + 0.08224095404148102, + -0.03944304212927818, + 0.006663148291409016, + -0.05269944667816162, + 0.029215343296527863, + -0.05978195369243622, + -0.07077847421169281, + -0.008381355553865433, + -0.0067621637135744095, + -0.04119037091732025, + 0.004234360996633768, + 0.007059209514409304, + -0.02072332240641117, + -0.029564809054136276, + 0.03203436732292175, + -0.015574526973068714, + 0.03958282992243767, + -0.0016235599759966135, + -0.08815857768058777, + -0.07534483075141907, + 0.03243042901158333, + -0.0884847491979599, + 0.08149542659521103, + -0.06178555637598038, + -0.016727764159440994, + 0.10586484521627426, + -0.07814055681228638, + 0.008492019027471542, + -0.03364190831780434, + -0.06658488512039185, + 0.0016468577086925507, + 0.0746924951672554, + -0.027141844853758812, + 0.08270691335201263, + 0.0853162556886673, + -0.0362512543797493, + 0.016483137384057045, + 0.03201106935739517, + 0.04466173052787781, + -0.005035220179706812, + -0.030636504292488098, + -0.011677983216941357, + -0.0820079818367958, + -0.013897091150283813, + 0.04123696684837341, + -0.03038022853434086, + 0.004982800222933292, + 0.000968311564065516, + -0.021864911541342735, + 0.03089277818799019, + 0.0008394460310228169, + -0.03431754559278488, + -0.09183961898088455, + 0.0018798349192366004, + 0.029494915157556534, + 0.0061214761808514595, + 0.03252362087368965, + -0.03706667572259903, + -0.02301814965903759, + -0.009289966896176338, + 0.035668812692165375, + -0.00818914920091629, + -0.01276715099811554, + -0.07301505655050278, + -0.013489380478858948, + 0.037509333342313766, + 0.002246774034574628, + 0.037462737411260605, + 0.03914017230272293, + 0.0270952507853508, + -0.03247702494263649, + -0.0023254037369042635, + -0.014316449873149395, + -0.049437765032052994, + 0.05987514555454254, + -0.029331831261515617, + 0.020047688856720924, + 0.006057407706975937, + 0.01417666394263506, + -0.0037713185884058475, + 0.02455579861998558, + 0.013675762340426445, + 0.011538196355104446, + -0.0685884952545166, + 0.04864564165472984, + 0.032570213079452515, + 0.008759942837059498, + 0.005865201354026794, + -0.021527094766497612 + ] + }, + { + "id": "3d673b79-01ad-4e36-85ff-725c8444fed6", + "productId": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksontrevor", + "reviewDate": "2022-06-12T03:24:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b7617f3c-9161-43a2-a0bd-510a74ad12ab", + "productId": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brenda65", + "reviewDate": "2022-06-05T04:41:33", + "stars": 5, + "verifiedUser": false + }, + { + "id": "1beb1ccf-9cce-427c-961b-860f9ad0ebce", + "productId": "647697e0-defe-413c-b4ce-a1b82c1be7df", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jason16", + "reviewDate": "2022-03-08T07:50:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fd181657-222a-46f7-a4b0-a508497b6fae", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Steel)", + "description": "This Awesome Stand + (Steel) is not required on the original PS4, but for all of the consoles on sale.\n\n\nAll sales are final until sold\n\n\nIt is currently my favourite stand and looks awesome in HD.\n\n\nI just bought an X-Box 360 here and it's great, so far it was ok. It looks really cool too though and I was impressed a lot.\n\n\nWas this review helpful", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-04-13T12:26:16", + "price": 836.86, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-01-18T06:30:01", + "newPrice": 847.84 + }, + { + "priceDate": "2021-07-13T06:30:01", + "newPrice": 902.86 + }, + { + "priceDate": "2022-01-05T06:30:01", + "newPrice": 858.24 + }, + { + "priceDate": "2022-06-30T06:30:01", + "newPrice": 842.43 + }, + { + "priceDate": "2022-12-23T06:30:01", + "newPrice": 852.85 + }, + { + "priceDate": "2024-08-19T06:30:01", + "newPrice": 836.86 + } + ], + "descriptionVector": [ + 0.02174309641122818, + 0.0066857654601335526, + -0.031243031844496727, + 0.06837791949510574, + 0.007594543509185314, + -0.07632380723953247, + -0.0845399722456932, + 0.011959378607571125, + 0.00689860200509429, + 0.06329686939716339, + 0.029216019436717033, + -0.03678353503346443, + -0.004979696124792099, + -0.035756513476371765, + -0.008553996682167053, + 0.004405375570058823, + -0.03151329979300499, + 0.0028428861405700445, + 0.018162040039896965, + 0.032567348331213, + 0.06745900213718414, + -0.017918797209858894, + -0.005239829421043396, + -0.04072945564985275, + -0.04318889603018761, + -0.0564861036837101, + -0.029486287385225296, + -0.03456733375787735, + -0.00881750788539648, + 0.03464841470122337, + -0.01717555895447731, + -0.02390524372458458, + -0.030378174036741257, + 0.08535077422857285, + -0.005185775924474001, + 0.031891677528619766, + -0.007952649146318436, + -0.005209424067288637, + -0.04851318523287773, + 0.06064824014902115, + -0.0230674110352993, + -0.02587820403277874, + -0.012378294952213764, + 0.04172944650053978, + -0.02281065657734871, + 0.019067438319325447, + 0.01648637466132641, + -0.01074992772191763, + -0.024310646578669548, + -0.012080999091267586, + 0.03797271475195885, + 0.03040519915521145, + 0.006182390730828047, + 0.04202674329280853, + -0.00739184208214283, + -0.016243133693933487, + 0.013432341627776623, + 0.0015092802932485938, + 0.009736420586705208, + -0.051891542971134186, + -0.019283654168248177, + -0.023607948794960976, + 0.05821582302451134, + -0.013013425283133984, + -0.05810771510004997, + -0.016229620203375816, + -0.009945878759026527, + 0.022080931812524796, + -0.056648265570402145, + -0.004276998341083527, + -0.03386463597416878, + 0.035080842673778534, + 0.009945878759026527, + 0.030297093093395233, + 0.012141809798777103, + -0.018364740535616875, + 0.0885939970612526, + 0.038810547441244125, + 0.034053824841976166, + -0.021905258297920227, + -0.01272964384406805, + 0.09194532781839371, + -0.04324294999241829, + 0.00521955918520689, + -0.0021891742944717407, + 0.03972946107387543, + -0.01544584147632122, + -0.12443159520626068, + -0.004929020535200834, + 0.00466550886631012, + 0.018540415912866592, + 0.03691866993904114, + 0.053810447454452515, + -0.07091844081878662, + 0.01608097180724144, + -0.01890527829527855, + -0.11156681180000305, + 0.03067546896636486, + 0.034675441682338715, + -0.02910791151225567, + 0.011263437569141388, + -0.03799974173307419, + -0.04364835470914841, + 0.007871568202972412, + -0.08599942177534103, + 0.00434794370085001, + 0.00998641923069954, + 0.05886446684598923, + -0.026864683255553246, + -0.09156695008277893, + -0.016702590510249138, + 0.008574265986680984, + 0.02025661990046501, + -0.009256694465875626, + 0.051215868443250656, + 0.04083756357431412, + 0.010898575186729431, + -0.049675341695547104, + 0.034702468663454056, + -0.05343206971883774, + 0.056864481419324875, + 0.03929703310132027, + 0.08016162365674973, + -0.000641887541860342, + 0.06237795576453209, + -0.00178039341699332, + -0.021472828462719917, + 0.028648454695940018, + 0.05605367571115494, + -0.002277011750265956, + -0.08399943262338638, + 0.03975648805499077, + 0.012574239633977413, + -0.003356396220624447, + -0.020729590207338333, + 0.12064783275127411, + 0.026418739929795265, + 0.014080986380577087, + 0.005094560328871012, + -0.02758089452981949, + -0.05826987698674202, + -0.0771346166729927, + 0.021810663864016533, + 0.04129701852798462, + -0.02935115247964859, + 0.07383733987808228, + -0.05654015764594078, + 0.01828365959227085, + -0.015716109424829483, + -0.004624968860298395, + 0.005057398229837418, + -0.08956696093082428, + -0.1274586021900177, + -0.003373288083821535, + 0.032080862671136856, + 0.046810492873191833, + -0.047729406505823135, + -0.04262133315205574, + -0.009493178687989712, + 0.02824305184185505, + 0.011905324645340443, + -0.0017043803818523884, + -0.07275626808404922, + 0.034026797860860825, + 0.042972683906555176, + -0.004236457869410515, + 0.11924243718385696, + 0.06940493732690811, + -0.03216194361448288, + 0.028161972761154175, + 0.020391754806041718, + -0.00024957602727226913, + 0.009972905740141869, + -0.02694576419889927, + 0.052513159811496735, + -0.008831021375954151, + 0.09675610065460205, + -0.05724285542964935, + 0.0561617836356163, + -0.009749934077262878, + -0.023959297686815262, + -0.03537813946604729, + -0.06864818185567856, + -0.03856730833649635, + 0.060594186186790466, + 0.0438375398516655, + 0.031216004863381386, + 0.014405308291316032, + 0.0008462780388072133, + 0.0370267778635025, + -0.06470226496458054, + -0.017932310700416565, + 0.06654009222984314, + 0.023080924525856972, + 0.03156735375523567, + -0.012553969398140907, + 0.007270221132785082, + 0.03799974173307419, + -0.0895129069685936, + 0.034486252814531326, + 0.00718238390982151, + 0.07075627893209457, + 0.11210735142230988, + -0.024648481979966164, + 0.047053735703229904, + -0.058594197034835815, + 0.07318869233131409, + 0.055783405900001526, + 0.07351301610469818, + 0.020972831174731255, + 0.02262146957218647, + 0.05335099250078201, + -0.09702637046575546, + 0.02217552624642849, + 0.02171606943011284, + 0.03529705852270126, + 0.015216113068163395, + 0.011776947416365147, + -0.05391855537891388, + -0.012209377251565456, + 0.05935094878077507, + -0.0672968402504921, + -0.04291862994432449, + -0.019945811480283737, + -0.03632408007979393, + -0.007547246292233467, + 0.012580996379256248, + 0.012770184315741062, + 0.061242830008268356, + 0.05789149925112724, + -0.06254012137651443, + -0.04886453598737717, + -0.056432049721479416, + 0.025107938796281815, + -0.02501334436237812, + -0.007351301610469818, + -0.053810447454452515, + 0.029945744201540947, + -0.03897270932793617, + -0.02128363959491253, + -0.04572942107915878, + 0.03956729918718338, + -0.05283747985959053, + 0.03516192361712456, + 0.005804014857858419, + 0.025324152782559395, + 0.052080728113651276, + -0.028351159766316414, + 0.03954027220606804, + -0.025310639292001724, + -0.011783704161643982, + -0.03854028135538101, + -0.008885075338184834, + 0.10210742056369781, + 0.08367510885000229, + 0.0718914046883583, + 0.08405348658561707, + 0.03216194361448288, + 0.00827697105705738, + -0.009020209312438965, + -0.05437801033258438, + 0.0055877999402582645, + 0.03286464139819145, + 0.05197262018918991, + -0.009270207956433296, + 0.029486287385225296, + 0.03567543625831604, + 0.013999905437231064, + -0.0356484092772007, + 0.05499962717294693, + -0.025310639292001724, + -0.011783704161643982, + 0.05224289000034332, + -0.03018898516893387, + -0.047378059476614, + -0.005371585488319397, + -0.019405273720622063, + 0.05518881604075432, + 0.02540523372590542, + 0.04778346046805382, + 0.07859406620264053, + 0.0018530279630795121, + 0.028567373752593994, + -0.00034628144931048155, + 0.007466165814548731, + -0.07243194431066513, + -0.014108012430369854, + -0.03867541253566742, + 0.059242844581604004, + 0.0070877899415791035, + -0.04189160838723183, + -0.02178363688290119, + 0.08156701922416687, + 0.04356727376580238, + 0.0827021449804306, + -0.00581752834841609, + 0.0007284579332917929, + 0.024094432592391968, + -0.0013952607987448573, + -0.031161950901150703, + 0.03297274932265282, + 0.027675488963723183, + -0.05540503188967705, + -0.033405181020498276, + -0.07972919195890427, + 0.08670211583375931, + -0.054891519248485565, + 0.02671603485941887, + 0.017662042751908302, + -0.006412118673324585, + 0.06767521798610687, + 0.027216032147407532, + -0.04375646263360977, + -0.019689057022333145, + 0.033810582011938095, + -0.009695880115032196, + -0.012776941061019897, + 0.03240518644452095, + -0.015270167030394077, + 0.05324288457632065, + 0.004331051837652922, + -0.07972919195890427, + -0.022067418321967125, + 0.046161849051713943, + 0.045351043343544006, + -0.022959304973483086, + 0.017080966383218765, + -0.0910264104604721, + -0.07772920280694962, + 0.023851189762353897, + -0.0039155138656497, + 0.04718887060880661, + 0.0003821764839813113, + 0.0030185605864971876, + 0.028864670544862747, + -0.0160539448261261, + -0.01609448529779911, + -0.008425618521869183, + -0.019824190065264702, + 0.043134842067956924, + 0.08070215582847595, + 0.041432153433561325, + -0.016607996076345444, + -0.048810482025146484, + 0.030351147055625916, + -0.07826974242925644, + 0.049269936978816986, + -0.04702670872211456, + 0.03824298456311226, + -0.022662008181214333, + 0.0016714413650333881, + -0.054269902408123016, + -0.005280369892716408, + 0.025743069127202034, + 0.08745887130498886, + -0.012668833136558533, + -0.007358058355748653, + -0.045567259192466736, + 0.047513190656900406, + -0.0752967894077301, + 0.007155356928706169, + -0.01739177480340004, + 0.007290491368621588, + 0.06113472208380699, + 0.0370267778635025, + 0.04978344589471817, + -0.09799933433532715, + -0.010574253275990486, + -0.05843203887343407, + 0.0010903642978519201, + 0.018999870866537094, + -0.08940479904413223, + -0.045756448060274124, + 0.024702535942196846, + -0.021702555939555168, + 0.006844548508524895, + -0.008547239936888218, + 0.040756482630968094, + 0.014526928775012493, + 0.036864615976810455, + 0.02737819403409958, + 0.04540509730577469, + -0.06437794119119644, + 0.02498631738126278, + 0.03789163753390312, + -0.00395943270996213, + 0.0019222842529416084, + 0.0638914629817009, + -0.08026973158121109, + 0.005972932558506727, + -0.07118871062994003, + -0.002804035088047385, + -0.002569239353761077, + 0.05626989156007767, + -0.03335112705826759, + -0.06043202430009842, + 0.01804041862487793, + 0.09616151452064514, + -0.0365673191845417, + 0.02286471053957939, + 0.03375652804970741, + 0.03172951564192772, + 0.02848629467189312, + -0.009952635504305363, + -0.06675630807876587, + -0.027364680543541908, + -0.045999690890312195, + 0.04148620739579201, + -0.11016141623258591, + -0.10453983396291733, + -0.005540503188967705, + -0.018351227045059204, + -0.02351335436105728, + 0.0495402067899704, + 0.07843190431594849, + 0.0925939679145813, + 0.08432375639677048, + -0.013695853762328625, + 0.06464821100234985, + -0.06405362486839294, + 0.026161985471844673, + -0.0036215970758348703, + 0.06324281543493271, + 0.019851217046380043, + -0.06535091251134872, + 0.07216167449951172, + -0.0413510724902153, + -0.0034864628687500954, + -0.06940493732690811, + -0.0743778795003891, + -0.051675327122211456, + -0.04699968174099922, + -0.021432287991046906, + 0.01737826131284237, + -0.003530381480231881, + -0.002131742425262928, + 0.06383740901947021, + -0.03462138772010803, + -0.02695927768945694, + 0.0534050427377224, + 0.019824190065264702, + -0.051432084292173386, + 0.06567522883415222, + 0.0697292611002922, + 0.014283686876296997, + 0.003322612727060914, + -0.029621422290802002, + 0.0439726747572422, + 0.020472833886742592, + 0.08199944347143173, + -0.05391855537891388, + -0.041864581406116486, + -0.058377984911203384, + -0.01271613035351038, + -0.05281045287847519, + 0.023148491978645325, + 0.03408085182309151, + 0.06475631892681122, + 0.026891710236668587, + 0.016378268599510193, + 0.07794541865587234, + 0.054269902408123016, + -0.014418821781873703, + 0.03064844198524952, + -0.04189160838723183, + -0.04116188362240791, + -0.05545908585190773, + -0.005624962039291859, + -0.0033074100501835346, + 0.011506679467856884, + -0.03524300456047058, + -0.02128363959491253, + -0.004999966360628605, + 0.08189133554697037, + -0.03499976173043251, + -0.07626975327730179, + 0.02743224799633026, + -0.05313477665185928, + 0.008162107318639755, + 0.010148580186069012, + -0.01379720401018858, + -0.001495766919106245, + -0.04981047287583351, + -0.03802676871418953, + -0.016040431335568428, + -0.014445848762989044, + -0.038134876638650894, + 0.016013406217098236, + -0.06756711006164551, + 0.021351207047700882, + 0.030161958187818527, + 0.0378105565905571, + 0.030134931206703186, + -0.03213491663336754, + -0.016418807208538055, + -0.0054019903764128685, + 0.05675637349486351, + 0.044513214379549026, + -0.02149985544383526, + -0.01163505669683218, + -0.0034965979866683483, + 0.05983743444085121, + -0.033378154039382935, + -0.03799974173307419, + 0.06340497732162476, + 0.00691211549565196, + 0.00021114722767379135, + -0.05870230495929718, + -0.06075634807348251, + -0.008067512884736061, + 0.0370267778635025, + -0.013891798444092274 + ] + }, + { + "id": "bb910e72-b54e-4612-ba91-1b85de5ca2dd", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "graycharles", + "reviewDate": "2022-12-24T22:48:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2ebd8a39-d1d7-4425-bcab-4bbec52b1e15", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "amberpetersen", + "reviewDate": "2021-04-09T20:35:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "69ba0abd-dc69-4f63-bbdc-f39c24cfc24d", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrewmason", + "reviewDate": "2022-02-07T18:53:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ac460095-2caf-41f3-9de3-6ea060ea9a39", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "julie70", + "reviewDate": "2022-03-25T05:22:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cd5a9588-2a3c-4c42-9545-93a473a96f58", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "tonyayoung", + "reviewDate": "2021-05-20T03:56:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7f70321b-28d7-4a4a-abff-6108ab7d1a08", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "mitchellryan", + "reviewDate": "2022-12-09T17:02:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7e35717f-31f9-4f92-859b-403dd371bc26", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "donna20", + "reviewDate": "2022-07-06T18:32:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b692731a-7ed8-40c4-932c-d53128619f1a", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "jared06", + "reviewDate": "2021-08-04T01:26:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6940ee6f-ffd5-4237-b9c3-fca19988d193", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "caitlyn54", + "reviewDate": "2021-07-10T06:41:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "338b3309-8a05-4c54-945b-4f4b9cf87518", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "johnsonstephanie", + "reviewDate": "2021-01-18T06:30:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d7599347-d535-4ed7-a08c-f4ca9e9a8599", + "productId": "fd181657-222a-46f7-a4b0-a508497b6fae", + "category": "Accessory", + "docType": "customerRating", + "userName": "alexander62", + "reviewDate": "2022-08-12T09:34:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Pro (Black)", + "description": "This Amazing Stand Pro (Black) is equipped with a 7.2-inch HD display with 3,536 pixel resolution and 5 GB RAM. It boasts a 5th-generation Intel® Core™ i7 Processor with 8 GB of RAM, up to 64 GB of storage, a 5400 rpm spinning-state drive, and an AMD Radeon™ R9 390 graphics card. The PRO features a USB", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-06-07T19:11:42", + "price": 776.82, + "stock": 76, + "priceHistory": [ + { + "priceDate": "2021-01-21T08:43:03", + "newPrice": 820.14 + }, + { + "priceDate": "2021-07-15T08:43:03", + "newPrice": 834.62 + }, + { + "priceDate": "2022-01-06T08:43:03", + "newPrice": 789.92 + }, + { + "priceDate": "2022-06-30T08:43:03", + "newPrice": 798.02 + }, + { + "priceDate": "2022-12-22T08:43:03", + "newPrice": 853.96 + }, + { + "priceDate": "2024-01-26T08:43:03", + "newPrice": 776.82 + } + ], + "descriptionVector": [ + 0.010055947117507458, + 0.0326232835650444, + -0.04854687303304672, + 0.039313867688179016, + 0.0017362063517794013, + -0.027029957622289658, + -0.018131481483578682, + 0.08173216879367828, + 0.06449722498655319, + 0.10137572139501572, + 0.0591447576880455, + -0.03248947486281395, + 0.03883214667439461, + -0.0005615908303298056, + 0.04019702598452568, + 0.0019034709548577666, + 0.003069305093958974, + -0.01418403722345829, + -0.006774215493351221, + -0.032114800065755844, + 0.06123222038149834, + -0.07279355078935623, + -0.04212391376495361, + 0.01869348995387554, + -0.03436283767223358, + -0.018345579504966736, + 0.020473185926675797, + -0.036289725452661514, + -0.0015379978576675057, + 0.03958149254322052, + 0.014424897730350494, + 0.0649254247546196, + -0.02163734659552574, + 0.010249974206089973, + 0.002047318499535322, + 0.03738697990775108, + -0.0251432117074728, + -0.0031930808909237385, + 0.042150676250457764, + -0.005897749215364456, + 0.032757095992565155, + 0.021904969587922096, + 0.02624046802520752, + 0.023483946919441223, + 0.04008997604250908, + -0.025022782385349274, + -0.05232036113739014, + -0.01222369633615017, + -0.02898360788822174, + -0.054568398743867874, + 0.016298260539770126, + -0.042338013648986816, + -0.04798486456274986, + 0.017957525327801704, + 0.017315229400992393, + -0.06588886678218842, + 0.02565169706940651, + 0.17213532328605652, + 0.029385041445493698, + -0.04493395984172821, + 0.015936968848109245, + -0.037547554820775986, + -0.0003077668370679021, + -0.008122368715703487, + -0.01892096921801567, + -0.017248323187232018, + -0.01940269209444523, + 0.0251432117074728, + -0.05545155704021454, + 0.06401550024747849, + -0.024005813524127007, + -0.029063893482089043, + 0.10774515569210052, + 0.025330549106001854, + -0.0016952265286818147, + 0.001565596554428339, + 0.07975175231695175, + 0.02688276395201683, + 0.06155336648225784, + 0.013903032056987286, + 0.0710807591676712, + 0.0008279596804641187, + -0.011407444253563881, + 0.02352409064769745, + 0.0650324672460556, + 0.00913933664560318, + 0.027364486828446388, + -0.13905708491802216, + -0.024982638657093048, + -0.005492968950420618, + -0.04723551869392395, + 0.09190185368061066, + 0.03551361709833145, + -0.027324343100190163, + -0.007466691080480814, + 0.04367612674832344, + -0.06433665007352829, + 0.028207499533891678, + 0.02890332043170929, + -0.027297580614686012, + -0.006195480469614267, + -0.0707596093416214, + -0.006580188870429993, + -0.017368754372000694, + -0.032141562551259995, + 0.07193715125322342, + 0.028635697439312935, + -0.006760834716260433, + -0.006322601344436407, + -0.14537300169467926, + -0.03963501751422882, + -0.024701634421944618, + -0.023202942684292793, + -0.028448360040783882, + -0.07488100975751877, + 0.05253446102142334, + -0.04150838032364845, + -0.010450690984725952, + -0.031579554080963135, + -0.09671907126903534, + -0.04257887229323387, + 0.010209830477833748, + -0.010183067992329597, + 0.02573198452591896, + -0.006198825314640999, + 0.03781517595052719, + 0.021945113316178322, + -0.01592358760535717, + 0.008376610465347767, + -0.07413166761398315, + -0.027645491063594818, + 0.10790573060512543, + 0.02662852220237255, + 0.019857652485370636, + -0.03893919661641121, + 0.04113370552659035, + 0.0118289515376091, + 0.12257149070501328, + 0.005188547540456057, + 0.04779752716422081, + -0.05232036113739014, + -0.039795588701963425, + -0.029893526807427406, + 0.008296323008835316, + -0.048145439475774765, + 0.03184717521071434, + 0.007654027547687292, + -0.002818408189341426, + -0.013836126774549484, + 0.060482874512672424, + -0.031097831204533577, + -0.06717345863580704, + -0.06299853324890137, + -0.12878035008907318, + 0.03125840425491333, + -0.01384950801730156, + -0.08697758615016937, + -0.06214213743805885, + 0.011594780720770359, + 0.10506892204284668, + -0.04552273079752922, + 0.005713758058845997, + -0.05084843561053276, + 0.01048414409160614, + 0.04252534732222557, + -0.006730726920068264, + 0.07338231801986694, + 0.07477395981550217, + -0.0770755186676979, + 0.020526709035038948, + 0.02719053067266941, + 0.0023283229675143957, + -0.019068162888288498, + -0.09843186289072037, + 0.02029922977089882, + -0.008122368715703487, + 0.07964470237493515, + 0.06278443336486816, + 0.02575874701142311, + -0.06540714204311371, + 0.029251230880618095, + -0.05727139487862587, + -0.02209230698645115, + -0.005543148145079613, + 0.04600445181131363, + 0.04316764324903488, + 0.036262962967157364, + 0.005124987103044987, + -0.010624646209180355, + -0.03406845033168793, + 0.0051116058602929115, + 0.000557409250177443, + 0.028046926483511925, + -0.0005411009187810123, + -0.0013531704898923635, + 0.0009132646373473108, + 0.0024136279243975878, + -0.004606466740369797, + -0.03310500830411911, + 0.0355939045548439, + -0.05946590378880501, + 0.08531831949949265, + 0.08981439471244812, + -0.04065198451280594, + 0.04241829738020897, + -0.0442381389439106, + -0.05328380689024925, + 0.03789546340703964, + 0.06942149251699448, + 0.03674468398094177, + -0.008068843744695187, + 0.013153687119483948, + -0.039313867688179016, + 0.02234654873609543, + 0.024715015664696693, + 0.002027246868237853, + 0.06428312510251999, + 0.0014585471944883466, + 0.020794333890080452, + -0.02178454026579857, + 0.08628176152706146, + -0.05448811128735542, + 0.02040627971291542, + -0.055183932185173035, + -0.0266552846878767, + -0.01684688962996006, + 0.04062522202730179, + -0.021971875801682472, + -0.012457866221666336, + 0.0026912870816886425, + -0.07498805969953537, + -0.01855967752635479, + 0.039795588701963425, + 0.0827491357922554, + -0.005265489220619202, + 0.014732664451003075, + -0.008952000178396702, + -0.010310188867151737, + -0.08050110191106796, + 0.024260055273771286, + -0.04292678460478783, + -0.036262962967157364, + -0.042230963706970215, + -0.01253146305680275, + 0.036343250423669815, + 0.028689222410321236, + 0.013956557027995586, + 0.03404168784618378, + -0.03647705912590027, + 0.031606316566467285, + 0.0023483948316425085, + -0.006904682144522667, + -0.0470481812953949, + 0.04113370552659035, + 0.02419314906001091, + 0.026508091017603874, + 0.007781148422509432, + -0.06273090839385986, + 0.014103749766945839, + -0.03441636264324188, + -0.02962590381503105, + -0.06872567534446716, + -0.048145439475774765, + -0.01659264601767063, + -0.033426154404878616, + 0.04372965171933174, + 0.0295456163585186, + 0.00656011700630188, + 0.014866475947201252, + 0.02826102450489998, + -0.00766071816906333, + -0.02278812788426876, + 0.016606027260422707, + -0.007888197898864746, + 0.01603063754737377, + 0.03612915053963661, + -0.05138368159532547, + 0.051116056740283966, + 0.005262143909931183, + -0.06262385845184326, + 0.045174818485975266, + 0.007105399388819933, + 0.05234712362289429, + 0.044559285044670105, + 0.006309220101684332, + -0.026508091017603874, + 0.01174866408109665, + 0.0016032310668379068, + 0.05245417356491089, + 0.046298835426568985, + -0.010444000363349915, + 0.01314699649810791, + 0.050955481827259064, + 0.0415351428091526, + 0.02175777778029442, + -0.013508288189768791, + -0.008838260546326637, + 0.041561905294656754, + 0.05146396905183792, + -0.049831464886665344, + 0.05071462318301201, + -0.04140133038163185, + -0.005660233553498983, + -0.032275374978780746, + -0.0001168761300505139, + 0.08558594435453415, + -0.11732607334852219, + 0.004663336556404829, + -0.01746242307126522, + -0.00903897825628519, + 0.09768252074718475, + 0.041615430265665054, + -0.031151356175541878, + -0.0024454081431031227, + 0.055237457156181335, + 0.007754386402666569, + 0.017676521092653275, + 0.011634924449026585, + -0.02898360788822174, + -0.019041400402784348, + -0.02685600146651268, + -0.043354980647563934, + -0.10244621336460114, + 0.0413745678961277, + 0.05274856090545654, + -0.03313177078962326, + -0.021115481853485107, + 0.016833508387207985, + -0.026534853503108025, + -0.016686314716935158, + -0.03232889994978905, + -0.0027966639026999474, + 0.07134838402271271, + 0.00989537313580513, + 0.07375699281692505, + -0.004683408420532942, + 0.007680789567530155, + 0.05248093605041504, + -0.021182386204600334, + 0.042177438735961914, + 0.08430135250091553, + 0.0032499509397894144, + -0.05850246176123619, + -0.06706640869379044, + -0.011949381791055202, + -0.08130396902561188, + 0.038725096732378006, + -0.02893008291721344, + -0.02009851299226284, + -0.02946532890200615, + 0.001702753477729857, + -0.03645029664039612, + 0.007573740556836128, + 0.02603975124657154, + 0.026307374238967896, + 0.04723551869392395, + 0.036343250423669815, + -0.056896720081567764, + -0.05957295373082161, + -0.011668377555906773, + 0.01265858393162489, + -0.03677144646644592, + 0.015174243599176407, + 0.08601413667201996, + 0.026427803561091423, + -0.0009207915281876922, + -0.01538834162056446, + -0.011688449420034885, + -0.014317848719656467, + 0.03612915053963661, + -0.003253296250477433, + -0.05197245255112648, + -0.045736826956272125, + 0.08628176152706146, + -0.04728904366493225, + -0.017034225165843964, + -0.02652147226035595, + 0.012578296475112438, + -0.0005080661503598094, + 0.024126244708895683, + 0.013448072597384453, + 0.0473158061504364, + -0.026922907680273056, + -0.0063159107230603695, + 0.10148277133703232, + -0.031659841537475586, + 0.04086608439683914, + -0.012551534920930862, + 0.010504215955734253, + 0.030964020639657974, + -0.04129428043961525, + -0.0006824394804425538, + -0.035674192011356354, + 0.008122368715703487, + 0.029304755851626396, + -0.09243710339069366, + 0.008711139671504498, + 0.04854687303304672, + 0.03066963516175747, + -0.024848826229572296, + 0.007332879584282637, + 0.0026511435862630606, + -0.007439928594976664, + 0.009065740741789341, + -0.009299910627305508, + -0.06149984151124954, + -0.009025597013533115, + 0.057539016008377075, + 0.004914233461022377, + -0.07819953560829163, + 0.02321632392704487, + -0.064818374812603, + -0.029973814263939857, + 0.08007290214300156, + 0.061125170439481735, + 0.02587917633354664, + 0.04431842267513275, + 0.041561905294656754, + 0.04150838032364845, + -0.1005193218588829, + 0.0073797134682536125, + -0.00398758752271533, + -0.04653969779610634, + 0.012337435968220234, + -0.10116162151098251, + 0.0382433757185936, + 0.0020088476594537497, + 0.004439202137291431, + -0.07755724340677261, + -0.02209230698645115, + 0.08216036111116409, + -0.08901152014732361, + 0.010082709603011608, + 0.02941180393099785, + -0.03484455868601799, + -0.014117131009697914, + 0.07605855166912079, + -0.01384950801730156, + 0.042846497148275375, + 0.059894103556871414, + -0.06679878383874893, + -0.007185686379671097, + 0.05218655243515968, + 0.018064575269818306, + -0.08055462688207626, + -0.013836126774549484, + -0.06679878383874893, + -0.0040478031150996685, + 0.02306913211941719, + -0.04097313433885574, + -0.05376552790403366, + -0.019322404637932777, + -0.02222611755132675, + -0.0050948793068528175, + 0.06653115898370743, + 0.013080090284347534, + -0.06085754558444023, + 0.07830658555030823, + -0.008042081259191036, + 0.013314261101186275, + 0.012498009949922562, + 0.005365848075598478, + 0.04860039800405502, + -0.002122587524354458, + -0.023898763582110405, + 0.009253077208995819, + -0.09233005344867706, + -0.06936796754598618, + 0.01505381241440773, + 0.04860039800405502, + -0.013026566244661808, + -0.0590377077460289, + 0.06364083290100098, + 0.009059050120413303, + -0.009728108532726765, + -0.0885298028588295, + 0.028100449591875076, + 0.017475804314017296, + -0.043997276574373245, + -0.03077668324112892, + 0.02063375897705555, + 0.027324343100190163, + -0.0710272341966629, + -0.05141044408082962, + 0.008336466737091541, + 0.010183067992329597, + -0.024340342730283737, + 0.012411031872034073, + -0.03473750874400139, + 0.03184717521071434, + 0.022948700934648514, + 0.09345407038927078, + 0.04659322276711464, + -0.06786927580833435, + 0.002855206374078989, + -0.03551361709833145, + 0.010537669062614441, + 0.0502864234149456, + -0.0027816100046038628, + 0.06840452551841736, + -0.07429223507642746, + -0.07996585220098495, + -0.02296208217740059, + 0.02772577852010727, + 0.04803838953375816, + 0.03792222589254379, + 0.014357992447912693, + 0.022828269749879837, + -0.061606891453266144, + -0.03904624655842781, + 0.027458153665065765, + -0.014612234197556973 + ] + }, + { + "id": "f3e7242d-d317-4681-b787-1a01d3735f2f", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "nfowler", + "reviewDate": "2022-02-27T12:56:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "20b15957-db7b-4016-a925-27ed6a43805c", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissa48", + "reviewDate": "2022-01-30T12:35:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b033e97f-d699-47ad-ac21-a3445ee31095", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "christophercallahan", + "reviewDate": "2022-10-06T03:41:05", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d40f2c8e-6650-45c0-bded-de68a1da65ff", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrew51", + "reviewDate": "2021-09-12T06:43:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d0170bfe-e6a2-48e8-a2b7-8ab7c779253b", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "rachel69", + "reviewDate": "2022-12-05T05:58:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ffd74b9f-f5fc-470f-823b-e248165218a6", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "warnersteven", + "reviewDate": "2021-07-08T04:59:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1c7bfaf5-10e0-4dfc-ac38-b31851fad6c3", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "kari75", + "reviewDate": "2022-11-15T21:27:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "03c42cd0-c35f-4972-94c6-fc3486b3645d", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "amanda75", + "reviewDate": "2022-04-16T08:51:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "41259ed3-b0b9-4a8e-9999-373a99d12c24", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "amanda75", + "reviewDate": "2022-12-25T00:06:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f176a544-0b2c-4063-a325-48779251e60e", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "jordanamber", + "reviewDate": "2022-05-17T18:30:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "954f2e1d-e82c-4c2e-ab09-1f0e9edf6dea", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "webbchristopher", + "reviewDate": "2022-11-07T03:10:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d30585fb-36f0-4832-8c3e-4ca970d8c26a", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "trevorpacheco", + "reviewDate": "2021-08-20T16:08:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "36e4b42a-8f12-4aa4-a67c-7a8ad71e4376", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "susanlara", + "reviewDate": "2021-06-30T01:45:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "88c914f9-9b3d-4aca-91c1-706a6a2ffb2b", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "icurtis", + "reviewDate": "2022-03-08T06:59:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9c7004d1-1f24-4168-92d2-6462385264c4", + "productId": "44ab67cc-8cdd-40a6-8d74-8642aeb92519", + "category": "Accessory", + "docType": "customerRating", + "userName": "john02", + "reviewDate": "2021-01-21T08:43:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "15d321eb-6363-421a-b026-7594170fe727", + "productId": "15d321eb-6363-421a-b026-7594170fe727", + "category": "Media", + "docType": "product", + "name": "Amazing TV 3000 (Steel)", + "description": "This Amazing TV 3000 (Steel) is available now at Amazon (EBook: http://smarturl.it/Steel3) and is available in PDF (45 pages).\n\nWe'll be posting this article as soon as the Kickstarter is over. Our goal is $2k including commission, shipping and book publishing fees. Once the Kickstarter", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-11-27T06:04:46", + "price": 521.76, + "stock": 37, + "priceHistory": [ + { + "priceDate": "2021-03-07T13:35:03", + "newPrice": 555.06 + }, + { + "priceDate": "2022-10-14T13:35:03", + "newPrice": 520.59 + }, + { + "priceDate": "2025-04-23T13:35:03", + "newPrice": 521.76 + } + ], + "descriptionVector": [ + 0.023596132174134254, + -0.056798264384269714, + -0.04889565333724022, + -0.025187823921442032, + -6.430251232814044e-05, + -0.08315891772508621, + -0.0037348908372223377, + 0.06567823141813278, + -0.021138783544301987, + 0.16419556736946106, + 0.057691846042871475, + -0.046661701053380966, + 0.06322088092565536, + -0.03998776525259018, + 0.01619616150856018, + -0.08466683328151703, + 0.008600720204412937, + 0.004771584644913673, + 0.009843356907367706, + -0.036832306534051895, + -0.014618432149291039, + 0.016810499131679535, + -0.012552025727927685, + 0.015623711049556732, + -0.007253367453813553, + -0.042361341416835785, + -0.02657008357346058, + -0.002347396221011877, + 0.03177798539400101, + -0.08042231947183609, + 0.052162811160087585, + 0.0506269671022892, + 0.005801297724246979, + -0.019770488142967224, + 0.0029477712232619524, + 0.020636145025491714, + 0.006296955980360508, + 0.09276491403579712, + -0.009249962866306305, + -0.023079531267285347, + 0.04613113775849342, + -0.0030315446201711893, + -0.008670531213283539, + -0.001692917780019343, + 0.01253806333988905, + -0.023833490908145905, + -0.027603287249803543, + -0.04593566805124283, + -0.01491163857281208, + 0.035575706511735916, + -0.021627461537718773, + 0.01590295508503914, + -0.04381341114640236, + 0.04372963681817055, + -0.04381341114640236, + -0.033453453332185745, + 0.058082789182662964, + 0.11795274168252945, + -0.006220163777470589, + 0.014730130322277546, + 0.0016885546501725912, + -0.0177459679543972, + 0.0629974827170372, + 0.007735063787549734, + -0.017145592719316483, + -0.08684493601322174, + -0.02830139733850956, + 0.020007845014333725, + -0.01972860097885132, + 0.032922886312007904, + 0.021948592737317085, + 0.02698894962668419, + 0.09483131766319275, + 0.050375647842884064, + -0.01098127756267786, + -0.03496136888861656, + 0.05375450477004051, + 0.02300971932709217, + 0.03479382395744324, + -0.053838275372982025, + 0.036385517567396164, + 0.06724199652671814, + -0.029962899163365364, + -0.032085154205560684, + 0.038954563438892365, + 0.03373269736766815, + -0.08606305718421936, + -0.15403108298778534, + -0.022856134921312332, + 0.058473728597164154, + -0.009201095439493656, + 0.02534140832722187, + -0.03783758729696274, + -0.04546095058321953, + 0.05274922400712967, + 0.08801776170730591, + -0.05802693963050842, + 0.009075435809791088, + -0.04629868268966675, + 0.004987998865544796, + 0.04353416711091995, + -0.013110513798892498, + 0.04973338544368744, + -0.06601332128047943, + -0.03864739462733269, + -0.056016381829977036, + 0.02901346981525421, + 0.08047816902399063, + 0.011853914707899094, + -0.11130672693252563, + 0.03878701478242874, + -0.004862339235842228, + -0.0006946198991499841, + -0.03694400563836098, + 0.025439145043492317, + 0.04414850473403931, + 0.007504687178879976, + -0.09075435996055603, + 0.05836203321814537, + -0.022939909249544144, + -0.07427895069122314, + 0.010408826172351837, + -0.023316888138651848, + -0.02023123949766159, + -0.02292594686150551, + 0.05196734145283699, + -0.04333869740366936, + -0.02539725787937641, + 0.049621690064668655, + -0.007379027083516121, + -0.07573101669549942, + -0.05746845155954361, + 0.03607834875583649, + 0.06428200751543045, + -0.028650451451539993, + 0.04520963132381439, + 0.025746311992406845, + 0.008223741315305233, + 0.02675159089267254, + 0.034235335886478424, + -0.022730475291609764, + -0.0019372564274817705, + 0.02515989914536476, + 0.09310000389814377, + -0.08075741678476334, + 0.05459223687648773, + -0.055150724947452545, + 0.007358083967119455, + 0.039764370769262314, + 0.02901346981525421, + -0.0018063607858493924, + -0.027002912014722824, + -0.047890376299619675, + -0.04255681112408638, + -0.003069940721616149, + 0.017578421160578728, + -0.11862292140722275, + -0.007525630295276642, + 0.007846761494874954, + 0.0742231011390686, + -0.07478158921003342, + -0.03200138360261917, + -0.04682924970984459, + 0.008209778927266598, + -0.0035481462255120277, + -0.030018748715519905, + 0.09818225353956223, + 0.02023123949766159, + -0.0739438533782959, + 0.03320213034749031, + 0.0324481725692749, + -0.06282994151115417, + 0.046242836862802505, + -0.05964655429124832, + -0.010045808739960194, + 0.02405688539147377, + 0.08690078556537628, + 0.03563155606389046, + -0.02295387163758278, + -0.04850471392273903, + -0.05579298734664917, + 0.03817267715930939, + 0.020817652344703674, + -0.022339534014463425, + -0.007040443830192089, + 0.056016381829977036, + 0.07656875252723694, + -0.002403245074674487, + -0.014283339492976665, + -0.019114263355731964, + -0.004862339235842228, + -0.019924072548747063, + -0.026109330356121063, + -0.041439834982156754, + -0.005738467909395695, + -0.046186987310647964, + 0.01789955236017704, + -0.017787853255867958, + -0.049174897372722626, + -0.04029493406414986, + -0.04819754511117935, + 0.02943233586847782, + 0.02573235146701336, + -0.029711579903960228, + -0.028343284502625465, + 0.02303764410316944, + -0.017885589972138405, + -0.0001832539855968207, + 0.03783758729696274, + 0.026137255132198334, + -0.051213379949331284, + 0.04180285334587097, + 0.012091272510588169, + 0.0070648775435984135, + 0.04258473590016365, + 0.04766698181629181, + -0.021613499149680138, + -0.08567211031913757, + 0.034235335886478424, + -0.007525630295276642, + -0.016475405544042587, + -0.08656569570302963, + -0.009822414256632328, + -0.053056392818689346, + 0.047443583607673645, + -0.0038361167535185814, + 0.03560363128781319, + 0.03498929366469383, + 0.06618086993694305, + -0.012510138563811779, + -0.06444955617189407, + -0.03457042947411537, + -0.04473491758108139, + 0.01062524039298296, + -0.015707485377788544, + 0.014143717475235462, + -0.05746845155954361, + -0.025746311992406845, + -0.04923074692487717, + 0.03228062763810158, + -0.018360303714871407, + -0.03923380747437477, + -0.007846761494874954, + -0.01614031381905079, + 0.05448053777217865, + 0.03884286433458328, + 0.060707684606313705, + 0.06517559289932251, + -0.04945414140820503, + 0.001760983606800437, + -0.014855789951980114, + 0.013710889033973217, + 0.035128917545080185, + 0.0515763983130455, + 0.01823464408516884, + 0.13794662058353424, + 0.03286704048514366, + 0.08466683328151703, + 0.0030716860201209784, + 0.021320292726159096, + -0.030968178063631058, + -0.029962899163365364, + -0.041914548724889755, + 0.05138092860579491, + 0.005700071807950735, + 0.10466071963310242, + -0.03702777624130249, + -0.07215669751167297, + -0.02707272209227085, + 0.02426631934940815, + 0.011009201407432556, + -0.030968178063631058, + 0.038926638662815094, + -0.061489567160606384, + -0.13537757098674774, + -0.07712724059820175, + -0.02552291750907898, + 0.07020198553800583, + -0.027184421196579933, + -0.05448053777217865, + 0.011365237645804882, + -0.05925561487674713, + 0.012670704163610935, + -0.006827520206570625, + 0.005860636942088604, + -0.061936356127262115, + -0.007825817912817001, + 0.01306164637207985, + 0.047499433159828186, + -0.054312992841005325, + -0.04043455794453621, + -0.04160738363862038, + 0.05869712680578232, + 0.03060516156256199, + 0.1054425984621048, + 0.023735754191875458, + 0.007525630295276642, + -0.0506269671022892, + -0.03141497075557709, + 0.014939563348889351, + -0.01083467435091734, + -0.02217198722064495, + -0.05375450477004051, + -0.004621490836143494, + -0.010164488106966019, + 0.056435246020555496, + 0.02985120192170143, + 0.007846761494874954, + 0.011770142242312431, + -0.08360570669174194, + 0.07036953419446945, + -0.0604284405708313, + -0.004754132125526667, + -0.016754649579524994, + 0.055094875395298004, + -0.010262222960591316, + 0.06444955617189407, + 0.06517559289932251, + 0.022674627602100372, + -0.026346687227487564, + 0.10231506824493408, + 0.0013220466207712889, + -0.11884631961584091, + 0.045796044170856476, + -0.0025568294804543257, + -0.04814169555902481, + 0.03739079460501671, + 0.028385169804096222, + -0.018248606473207474, + 0.010185430757701397, + -0.021180670708417892, + 0.06439370661973953, + 0.05249790474772453, + 0.06221560016274452, + 0.08667739480733871, + -0.01658710464835167, + -0.019686713814735413, + -0.000379379402147606, + 0.020552370697259903, + 0.013934284448623657, + 0.0517718680202961, + 0.06428200751543045, + -0.003731400240212679, + -0.013515418395400047, + -0.02059425786137581, + -0.06573408097028732, + 0.04476284235715866, + 0.004956583958119154, + 0.03105195239186287, + -0.01951916702091694, + 0.0017653467366471887, + 0.03753041848540306, + 0.022995756939053535, + 0.03188968449831009, + 0.06087522953748703, + 0.018360303714871407, + 0.02282821200788021, + -0.07254763692617416, + -0.03613419458270073, + -0.03697192668914795, + 0.016740689054131508, + -0.05076659098267555, + -0.06869406998157501, + 0.036441363394260406, + -0.028427056968212128, + 0.050878290086984634, + 0.03789343312382698, + -0.0021641424391418695, + -0.03563155606389046, + 0.018988603726029396, + 0.039764370769262314, + 0.013243154622614384, + -0.034710049629211426, + 0.03744664415717125, + -0.012007499113678932, + 0.0002790260186884552, + 0.07980798184871674, + 0.04978923499584198, + -0.024782920256257057, + 0.02985120192170143, + -0.00812600553035736, + 0.006586671806871891, + 0.09019586443901062, + -0.0021240010391920805, + 0.050375647842884064, + 0.05202319100499153, + -0.049984708428382874, + -0.0459635891020298, + -0.07254763692617416, + 0.037223249673843384, + -0.0459635891020298, + 0.02594178356230259, + -0.012063348665833473, + -0.0037697963416576385, + 0.05020810291171074, + -0.02023123949766159, + 0.03713947534561157, + 0.07824421674013138, + 0.021166708320379257, + -0.04479076713323593, + -0.044064730405807495, + 0.041132666170597076, + 0.04844886437058449, + 0.04046247899532318, + -0.02002180740237236, + -0.020538408309221268, + 0.006750728003680706, + -0.07472573965787888, + -0.03147081658244133, + -0.05548581853508949, + -0.055988457053899765, + -0.02767309732735157, + 0.04121644049882889, + 0.00966882985085249, + 0.017410874366760254, + 0.033844392746686935, + 0.029571957886219025, + 0.02539725787937641, + 0.02791045419871807, + -0.011888820677995682, + -0.02261877804994583, + 0.04733188822865486, + -0.03320213034749031, + 0.01445088628679514, + 0.005410355981439352, + -0.005357997491955757, + 0.05875297263264656, + -0.036832306534051895, + -0.010262222960591316, + -0.032615721225738525, + -0.0177459679543972, + -0.05375450477004051, + 0.010171469300985336, + 0.024364054203033447, + -0.026723667979240417, + 0.0004188662569504231, + 0.045796044170856476, + -0.017019933089613914, + -0.00367206078954041, + 0.05179979279637337, + 0.015456165187060833, + 0.03588287532329559, + -0.026737630367279053, + -0.011665425263345242, + -0.044483598321676254, + -0.055904682725667953, + -0.04127229005098343, + -0.018388228490948677, + 0.04858848452568054, + -0.06858237087726593, + -0.08304721862077713, + -0.04037870839238167, + -0.10304109752178192, + 0.0674653947353363, + 0.010471656918525696, + -0.05333563685417175, + 0.00993411149829626, + 0.03437495604157448, + 0.012705610133707523, + 0.020580295473337173, + 0.09684187918901443, + 0.0588088221848011, + -0.012510138563811779, + -0.022660665214061737, + -0.05886467173695564, + -0.0144648477435112, + 0.03188968449831009, + 0.012586930766701698, + 0.020189354196190834, + 0.07606611400842667, + -0.05185564234852791, + -0.005389412399381399, + -0.04858848452568054, + 0.01288013719022274, + 0.05420129373669624, + -0.036860231310129166, + 0.007005538325756788, + 0.002745319390669465, + -0.016740689054131508, + 0.022074252367019653, + 0.011972594074904919, + -0.019295772537589073, + 0.023023681715130806, + 0.006914783734828234, + -0.001106505049392581, + -0.0438692606985569, + -0.04769490659236908, + -0.0001428944815415889, + -0.009473358280956745, + 0.0620480552315712, + -0.03462627902626991, + 0.05093413591384888, + -0.016000691801309586, + 0.004907716531306505, + -0.03708362579345703, + 0.027868568897247314, + 0.02038482390344143, + -0.03498929366469383, + -0.016391633078455925, + -0.033872317522764206, + -0.03708362579345703, + 0.023051606491208076, + -0.04883980751037598, + 0.0034434297122061253, + 0.0726034864783287, + -0.008377324789762497, + 0.004569132812321186, + 0.03029799275100231, + 0.053391486406326294, + 0.022576890885829926, + -0.008230721578001976, + 0.036860231310129166 + ] + }, + { + "id": "a7e81309-e6cd-497b-b272-0fe0f239729e", + "productId": "15d321eb-6363-421a-b026-7594170fe727", + "category": "Media", + "docType": "customerRating", + "userName": "stevendonovan", + "reviewDate": "2022-10-14T23:12:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "19e4d978-65d9-415d-8f59-f86a50d221b2", + "productId": "15d321eb-6363-421a-b026-7594170fe727", + "category": "Media", + "docType": "customerRating", + "userName": "hendersonlisa", + "reviewDate": "2021-11-19T05:24:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5a110ad3-5844-48bd-9804-8e35fe21c66a", + "productId": "15d321eb-6363-421a-b026-7594170fe727", + "category": "Media", + "docType": "customerRating", + "userName": "stephenpotter", + "reviewDate": "2021-03-07T13:35:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a756de8a-b992-44ff-9054-b36dd860a470", + "productId": "a756de8a-b992-44ff-9054-b36dd860a470", + "category": "Other", + "docType": "product", + "name": "Basic Filter Mini (Steel)", + "description": "This Basic Filter Mini (Steel) is the classic example of a very popular filter on the market. This Filter is a compact and simple mini-filter but with a very unique appearance. The filter holds the filter in place and also creates", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-06-20T03:53:25", + "price": 232.81, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-10-02T02:22:57", + "newPrice": 244.99 + }, + { + "priceDate": "2021-11-16T02:22:57", + "newPrice": 240.6 + }, + { + "priceDate": "2021-12-31T02:22:57", + "newPrice": 216.47 + }, + { + "priceDate": "2022-02-14T02:22:57", + "newPrice": 243.42 + }, + { + "priceDate": "2022-12-21T02:22:57", + "newPrice": 232.81 + } + ], + "descriptionVector": [ + 0.0032946402207016945, + 0.013153836131095886, + -0.02179531194269657, + 0.008418949320912361, + -0.014130483381450176, + 0.021585147827863693, + -0.07224719226360321, + -0.0358516201376915, + -0.025813166052103043, + -0.035826895385980606, + -0.06715378910303116, + -0.008116064593195915, + 0.023587893694639206, + -0.02690107747912407, + 0.04732413962483406, + 0.003331728046759963, + -0.003705697599798441, + 0.007788455579429865, + -0.027618110179901123, + -0.0544944629073143, + 0.040030188858509064, + -0.07531312853097916, + -0.0518735833466053, + 0.03753293678164482, + -0.017493117600679398, + -0.0021433704532682896, + -0.029299426823854446, + 0.011880485340952873, + -0.049994464963674545, + 0.012782956473529339, + 0.05533511936664581, + 0.06136808171868324, + -0.006289486773312092, + 0.07773619890213013, + -0.08594498783349991, + 0.015045317821204662, + -0.032835137099027634, + 0.05330764874815941, + -0.019335148856043816, + 0.05469226464629173, + 0.06082412600517273, + -0.024552177637815475, + -0.03372524678707123, + 0.02424311265349388, + -0.002529702614992857, + 0.0032359177712351084, + -0.0632472038269043, + -0.01582416333258152, + -0.016776084899902344, + -0.05825269967317581, + 0.06918126344680786, + 0.02016344480216503, + 0.017295315861701965, + 0.023278826847672462, + -0.033354368060827255, + 0.021016467362642288, + 0.005878429394215345, + 0.23696684837341309, + 0.023192288354039192, + -0.037236232310533524, + -0.007992438971996307, + -0.03899172693490982, + 0.03854667395353317, + 0.001498195924796164, + -0.06290104985237122, + -0.0010886838426813483, + -0.08357135951519012, + -0.016528833657503128, + 0.02853294461965561, + 0.05434611067175865, + -0.005121218506246805, + -0.01018680538982153, + -0.0163186676800251, + 0.0045927162282168865, + -0.004197111818939447, + 0.009519223123788834, + 0.06482961773872375, + -0.00012053561658831313, + 0.0646812692284584, + -0.021090643480420113, + -0.010897655971348286, + 0.036296673119068146, + -0.04764556512236595, + -0.01565108634531498, + -0.03431865572929382, + 0.007114692125469446, + 0.08485707640647888, + -0.0547911636531353, + -0.007232137024402618, + 0.015354383736848831, + -0.00729395030066371, + 0.050340618938207626, + 0.029793933033943176, + 0.00606077816337347, + 0.06121973320841789, + 0.03473898395895958, + -0.0466318316757679, + 0.02168404869735241, + -0.013450538739562035, + 0.013277461752295494, + -0.02305630035698414, + -0.015218394808471203, + -0.06858785450458527, + 0.0635439082980156, + 0.028087889775633812, + 0.016603007912635803, + -0.03634612634778023, + 0.023785695433616638, + -0.0018868460319936275, + -0.10671420395374298, + 0.0017091332701966166, + 0.0003384269366506487, + -0.027494484558701515, + 0.07219774276018143, + -0.016652459278702736, + -0.01754256896674633, + -0.06562082469463348, + 0.01259133592247963, + 0.033527445048093796, + 0.037582386285066605, + -0.020324159413576126, + 0.03491206094622612, + 0.03733513504266739, + 0.0007560519152320921, + -0.0192362479865551, + 0.000753733969759196, + 0.01142306812107563, + -0.015230757184326649, + 0.028483493253588676, + 0.027494484558701515, + -0.030065910890698433, + -0.02902744896709919, + 0.036445025354623795, + -0.03389832377433777, + -0.040524691343307495, + 0.013846143148839474, + 0.04408513009548187, + 0.10008782893419266, + -0.009030899032950401, + 0.047225236892700195, + -0.03162360191345215, + -0.06161533668637276, + 0.0039900378324091434, + 0.018618116155266762, + 0.00945741031318903, + -0.08619224280118942, + -0.08955487608909607, + 0.03632139787077904, + -0.0332307443022728, + 0.007893538102507591, + 0.017616745084524155, + -0.0932636633515358, + 0.02086811512708664, + -0.030708767473697662, + 0.03501095995306969, + 0.06304939836263657, + -0.06606588512659073, + 0.025689540430903435, + -0.042032934725284576, + -0.0518735833466053, + 0.03510986268520355, + -0.06888455897569656, + 0.016763722524046898, + -0.035159312188625336, + -0.032217007130384445, + 0.04188458248972893, + 0.003331728046759963, + 0.04438183456659317, + -0.09192849695682526, + 0.030585139989852905, + 0.0038509585428982973, + 0.05103292688727379, + -0.01079875510185957, + -0.017554931342601776, + -0.09652739763259888, + 0.0275439340621233, + 0.021807674318552017, + -0.04499996453523636, + -0.023736244067549706, + 0.014934053644537926, + 0.021090643480420113, + 0.07570873200893402, + -0.03651920333504677, + -0.034640081226825714, + -0.028582394123077393, + 0.01940932497382164, + 0.007887355983257294, + 0.018791193142533302, + -0.005550819914788008, + 0.012300814501941204, + -0.017122238874435425, + -0.010668947361409664, + 0.06285160034894943, + 0.005037770606577396, + 0.021028829738497734, + -0.040203265845775604, + -0.08881311863660812, + 0.004462908487766981, + -0.03716205805540085, + -0.05998346954584122, + 0.02203020267188549, + 0.05612633004784584, + 0.03543129190802574, + -0.020831027999520302, + 0.031574152410030365, + 0.019310424104332924, + -0.0023118113167583942, + 0.0728406012058258, + 0.011083095334470272, + -0.026802176609635353, + 0.02465107850730419, + -0.04319502040743828, + -0.053258199244737625, + -0.021585147827863693, + 0.07941751927137375, + 0.08940652012825012, + -0.0036778817884624004, + -0.06567027419805527, + -0.04522249102592468, + -0.00953158549964428, + 0.045766446739435196, + 0.00011319531040498987, + -0.024206025525927544, + -0.002047560177743435, + 0.019100259989500046, + -0.04210710898041725, + 0.04465381056070328, + 0.0492527075111866, + 0.06700544059276581, + 0.09494497627019882, + -0.059934020042419434, + 0.049351610243320465, + -0.08708234876394272, + 0.046409305185079575, + -0.005915517453104258, + -0.026554923504590988, + -0.04007963836193085, + -0.037236232310533524, + 0.02759338542819023, + 0.003965312615036964, + 0.052466992288827896, + 0.03703843057155609, + -0.09217575192451477, + -0.03780491650104523, + 0.053109847009181976, + 0.04635985195636749, + 0.020855752751231194, + -0.1332196742296219, + -0.0002219478046754375, + -0.0326373353600502, + -0.015193669125437737, + 0.0270988792181015, + 0.03459063172340393, + 0.07640103995800018, + -0.017035700380802155, + 0.05904391035437584, + 0.01346290111541748, + 0.0016643187263980508, + -0.07649993896484375, + -0.06018127128481865, + 0.01040315069258213, + 0.00916688796132803, + 0.021436795592308044, + 0.050488971173763275, + 0.00782554317265749, + -0.09539003670215607, + 0.014217021875083447, + -0.06928016245365143, + 0.013079660013318062, + 0.10167025029659271, + 0.0013552530435845256, + 0.03431865572929382, + 0.010817298665642738, + 0.01999036781489849, + -0.02838459238409996, + -0.007837905548512936, + -0.06814280152320862, + 0.01385850552469492, + -0.014303560368716717, + -0.032538436353206635, + 0.09895046800374985, + 0.015935426577925682, + 0.0029994824435561895, + 0.017381854355335236, + 0.0028202245011925697, + 0.03867029771208763, + 0.0387692004442215, + -0.0270988792181015, + -0.07259334623813629, + -0.031054919585585594, + -0.06453291326761246, + 0.01710987649857998, + -0.04653292894363403, + -0.034664805978536606, + 0.04596424847841263, + 0.026035694405436516, + 0.01926097460091114, + -0.03372524678707123, + 0.0005567045882344246, + 0.012294633314013481, + -0.09756585955619812, + 0.015082405880093575, + -0.016973888501524925, + -0.013228011317551136, + 0.013351637870073318, + 0.05582962557673454, + 0.028508219867944717, + 0.003124654060229659, + -0.008678564801812172, + -0.11116474866867065, + -0.011929935775697231, + -0.0036438845563679934, + -0.03461535647511482, + -0.014971141703426838, + 0.039708759635686874, + 0.0059464238584041595, + -0.00926578976213932, + -0.012894220650196075, + 0.06067577749490738, + 0.0317719541490078, + -0.013574165292084217, + 0.004141480196267366, + -0.022895585745573044, + 0.113637275993824, + -0.001624140189960599, + -0.035653818398714066, + -0.022425806149840355, + -0.030931293964385986, + -0.007516477722674608, + -0.014896966516971588, + 0.031895577907562256, + -0.026554923504590988, + -0.07061532884836197, + 0.02153569646179676, + -0.0237486083060503, + -0.05854940414428711, + 0.0352582149207592, + -0.05078567564487457, + -0.06601642817258835, + 0.019359875470399857, + -0.004197111818939447, + -0.0014008402358740568, + 0.029571404680609703, + 0.002888218965381384, + 0.07506587356328964, + -0.031722500920295715, + 0.008548757061362267, + -0.026505474001169205, + 0.0036407937295734882, + 0.003449173178523779, + 0.0012416713871061802, + -0.042156558483839035, + 0.016541196033358574, + -0.02372388169169426, + 0.12352737784385681, + -0.027667559683322906, + 0.030214261263608932, + -0.04292304441332817, + 0.12718671560287476, + 0.007491752505302429, + 0.03231590986251831, + -0.024292564019560814, + 0.03065931610763073, + -0.012758231721818447, + -0.008486944250762463, + 0.06329665333032608, + -0.0655713751912117, + 0.02159751020371914, + -0.07946696877479553, + 0.0702197253704071, + -0.045247215777635574, + 8.417211211053655e-05, + -0.011231447570025921, + 0.05315930023789406, + 0.03735985979437828, + -0.09222520142793655, + 0.0734340101480484, + -0.013561801984906197, + -0.035480741411447525, + 0.0387692004442215, + 0.039733484387397766, + -0.0260851439088583, + -0.03899172693490982, + -0.048362597823143005, + 0.0163186676800251, + -0.028162065893411636, + -0.09173069894313812, + 0.011262353509664536, + -0.07921971380710602, + -0.029002724215388298, + -0.007980075664818287, + -0.04062359407544136, + -0.0655713751912117, + -0.005009954795241356, + -0.0023303553462028503, + -0.024700529873371124, + 0.01786399632692337, + 0.012622242793440819, + 0.03607414662837982, + -0.04959886148571968, + 0.03738458454608917, + 0.036766454577445984, + -0.04994501546025276, + -0.02357553131878376, + -0.0454697422683239, + -0.03624722361564636, + 0.01500822976231575, + 0.03196975588798523, + 0.02479943074285984, + -0.03281041234731674, + 0.06166478618979454, + -0.1092856302857399, + 0.007813180796802044, + 0.003483170410618186, + -0.02514558471739292, + -0.03365107253193855, + -0.023563168942928314, + 0.005600270349532366, + 0.08010982722043991, + 0.03436810523271561, + 0.04000546410679817, + -0.06903291493654251, + -0.040227990597486496, + -0.050315894186496735, + 0.034640081226825714, + 0.031722500920295715, + -0.06547247618436813, + 0.017678556963801384, + -0.005575545132160187, + -0.0396345853805542, + -0.021078279241919518, + -0.037409309297800064, + -0.08737905323505402, + 0.015539823099970818, + 0.008765103295445442, + -0.029076900333166122, + 0.014254109933972359, + 0.02357553131878376, + -0.050488971173763275, + -0.04680490866303444, + 0.030238987877964973, + 0.029596129432320595, + -0.004345463588833809, + 0.06369225680828094, + -0.13796691596508026, + -0.04161260277032852, + -0.03258788585662842, + -0.013821417465806007, + -0.023439541459083557, + 0.004744158126413822, + -0.04423348233103752, + 0.026826901361346245, + -0.1095823273062706, + -0.03342854604125023, + 0.004326919559389353, + -0.06275269389152527, + 0.08589553833007812, + 0.09801091253757477, + 0.05874720588326454, + 0.009346146136522293, + -0.032884590327739716, + 0.04828842356801033, + -0.016009602695703506, + -0.009667574428021908, + 0.012214276008307934, + -0.04747248813509941, + -0.01889009401202202, + 0.019483501091599464, + -0.005708443466573954, + 0.004941960331052542, + 0.0332307443022728, + -0.06413730978965759, + -0.060428522527217865, + 0.03943678364157677, + 0.033008214086294174, + 0.03248898684978485, + -0.02640657313168049, + -0.05172523483633995, + 0.08095048367977142, + 0.018642842769622803, + -0.02791481278836727, + -0.02509613335132599, + -0.049673035740852356, + 0.04465381056070328, + 0.05726369097828865, + 0.012770594097673893, + 0.0329340398311615, + 0.026332397013902664, + -0.006100956816226244, + 0.05301094800233841, + -0.008820734918117523, + -0.0036346125416457653, + -0.07862631231546402, + -0.026010967791080475, + 0.01722113974392414, + -0.01856866665184498, + 0.03592579439282417, + 0.018111249431967735, + -0.017295315861701965, + 0.025021957233548164, + 0.025392837822437286, + -0.020880477502942085, + 0.03145052492618561, + 0.031376346945762634, + -0.001036142697557807, + 0.008993811905384064, + 0.08104938268661499, + -0.05043952167034149, + 0.047843366861343384, + 0.011793946847319603, + -0.006508923601359129, + 0.055532921105623245 + ] + }, + { + "id": "c03cc64d-d396-4686-b38f-ede2139ed01d", + "productId": "a756de8a-b992-44ff-9054-b36dd860a470", + "category": "Other", + "docType": "customerRating", + "userName": "saraparker", + "reviewDate": "2022-02-14T16:39:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ea4e6e82-8a89-4ac2-bafa-bc2d60854e28", + "productId": "a756de8a-b992-44ff-9054-b36dd860a470", + "category": "Other", + "docType": "customerRating", + "userName": "danielsscott", + "reviewDate": "2021-10-02T02:22:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5357283d-ec10-4f70-8e9c-fba96b47826c", + "productId": "5357283d-ec10-4f70-8e9c-fba96b47826c", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Micro (Red)", + "description": "This Premium Mouse Micro (Red) is rated 4.0 out of 5 by 17.\n\nRated 5 out of 5 by Marenson from Nice looking mouse The color is light and the feel is beautiful and sharp, so you don't let this mouse slide off your hands. I would advise to purchase a lot of these as they work well at getting up and down over time since they are very light and the quality is", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-11-11T16:47:56", + "price": 1058.08, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2020-11-11T16:47:56", + "newPrice": 1135.52 + }, + { + "priceDate": "2023-07-05T16:47:56", + "newPrice": 1058.08 + } + ], + "descriptionVector": [ + -0.0830913856625557, + 0.0008512141066603363, + -0.022126195952296257, + 0.03312484920024872, + -0.0025898925960063934, + 0.02751811407506466, + 0.022426940500736237, + 0.028699608519673347, + 0.023973625153303146, + 0.027367740869522095, + 0.03484338894486427, + 0.01561722718179226, + 0.029580360278487206, + -0.07870911061763763, + 0.0006974853458814323, + 0.05026727914810181, + -0.060578517615795135, + -0.04339312016963959, + -0.001816549920476973, + -0.0016822890611365438, + 0.02749663218855858, + -0.03443523496389389, + -0.015391669236123562, + 0.042705707252025604, + -0.01550981868058443, + -0.025842538103461266, + 0.024489186704158783, + 0.04341460391879082, + 0.01708872616291046, + 0.0028543865773826838, + -0.008034172467887402, + -0.008393991738557816, + -0.0002735565649345517, + 0.029515916481614113, + -0.029988514259457588, + -0.022362494841217995, + 0.04010641574859619, + -0.07995504885911942, + 0.06302743405103683, + 0.09039517492055893, + -0.008861219510436058, + -0.0010935550089925528, + 0.04152420908212662, + -0.08605586737394333, + -0.018442077562212944, + 0.04390868544578552, + 0.0017722438788041472, + 0.0332537405192852, + 0.053403615951538086, + -0.022684721276164055, + 0.03101963736116886, + 0.053360652178525925, + -0.043070897459983826, + -0.05000950023531914, + 0.034005600959062576, + -0.03748564422130585, + 0.017797624692320824, + 0.1257970929145813, + 0.02970925159752369, + -0.08236100524663925, + 0.014886848628520966, + -0.008963257074356079, + -0.01769021525979042, + -0.030783338472247124, + -0.04103013128042221, + -0.02657291665673256, + -0.012427188456058502, + -0.05542289838194847, + 0.05735625699162483, + 0.05232952907681465, + -0.04451017081737518, + -0.024166962131857872, + 0.011825699359178543, + -0.03531598672270775, + 0.05048209801316261, + 0.07080382853746414, + 0.09194186329841614, + -0.009247890673577785, + 0.01875356212258339, + 0.017142431810498238, + 0.015456114895641804, + 0.009349929168820381, + 0.006213594228029251, + 0.038924917578697205, + 0.07626018673181534, + 0.0177116971462965, + 0.03327522054314613, + -0.08364991098642349, + -0.025090675801038742, + 0.07256533205509186, + -0.006568043027073145, + 0.026981070637702942, + 0.0410945750772953, + -0.012276816181838512, + 0.04420942813158035, + -0.05013838782906532, + 0.006922491826117039, + 0.03933307155966759, + 0.00133052549790591, + 0.03129890188574791, + -0.009430485777556896, + -0.010198458097875118, + -0.08549734205007553, + 0.00979030504822731, + 0.04481091722846031, + 0.005762477871030569, + -0.0032088353764265776, + -0.017905034124851227, + -0.038001205772161484, + -0.10990060120820999, + 0.00796972680836916, + -0.029021834954619408, + -0.06659340858459473, + -0.04794725030660629, + -0.048634666949510574, + 0.05035320669412613, + -0.030568521469831467, + -0.012083481065928936, + -0.008254360407590866, + -0.00987086072564125, + 0.0451546236872673, + 0.0016446959925815463, + 0.025198085233569145, + 0.050568025559186935, + 0.04096568375825882, + -0.02844182774424553, + -0.029558878391981125, + -0.012642006389796734, + 0.03851676732301712, + -0.040278270840644836, + -0.03443523496389389, + 0.08682920783758163, + 0.047990214079618454, + 0.0689563974738121, + 0.0035632841754704714, + 0.055251043289899826, + -0.05808663368225098, + 0.03795824199914932, + 0.0014151098439469934, + 0.01017160527408123, + 0.005061635747551918, + -0.06216816604137421, + 0.010756983421742916, + 0.029021834954619408, + -0.057098474353551865, + 0.009376781061291695, + -0.0435434952378273, + -0.0020515064243227243, + 0.020815810188651085, + -0.0017064559506252408, + 0.03589599207043648, + -0.07256533205509186, + 0.04283459484577179, + -0.03591747581958771, + 0.06831194460391998, + 0.024618078023195267, + -0.09082481265068054, + 0.008189914748072624, + -0.12399262189865112, + 0.010526054538786411, + -0.01124569308012724, + 0.007438053842633963, + 0.023286210373044014, + -0.01969875954091549, + 0.024338815361261368, + 0.06938603520393372, + -0.02147100307047367, + 0.02375880815088749, + -0.07230754941701889, + 0.04562722146511078, + -0.05409102886915207, + -0.03855973109602928, + 0.05731329321861267, + -0.059246648102998734, + 0.06066444516181946, + 0.030267776921391487, + 0.00874307006597519, + -0.019763203337788582, + -0.0027241536881774664, + -0.04622871056199074, + 0.058387380093336105, + 0.06135185807943344, + -0.10354200750589371, + -0.03563821315765381, + 0.05374732241034508, + 0.0005826922715641558, + 0.021180998533964157, + 0.026035873219370842, + -0.02629365399479866, + 0.04451017081737518, + -0.014618326909840107, + 0.016476497054100037, + 0.034607090055942535, + -0.03351151943206787, + -0.03434930741786957, + 0.07827947288751602, + 0.03828046843409538, + 0.04231903329491615, + 0.02850627340376377, + -0.018388371914625168, + -0.03557376563549042, + 0.0055046966299414635, + 0.06435930728912354, + 0.01983839087188244, + 0.03419893607497215, + -0.04747465252876282, + 0.044553134590387344, + -0.028549237176775932, + 0.04094420373439789, + 0.026078836992383003, + 0.017002800479531288, + -0.0500524640083313, + 0.012437929399311543, + 0.01815207302570343, + 0.039956044405698776, + 0.043006449937820435, + 0.018603190779685974, + -0.008630290627479553, + -0.038301948457956314, + -0.04665834829211235, + 0.008501400239765644, + 0.03140630945563316, + -0.024252887815237045, + 0.008732329122722149, + -0.0413738377392292, + -0.003297447692602873, + 0.03630414605140686, + -0.026100318878889084, + 0.051470257341861725, + 0.027475150302052498, + -0.04880652204155922, + -0.07879503816366196, + -0.02309287339448929, + -0.0011123515432700515, + -0.05009542778134346, + 0.08768847584724426, + -0.07402608543634415, + -0.014177951030433178, + -0.001044549746438861, + 0.08128691464662552, + -0.02973073348402977, + 0.028935909271240234, + -0.05980517342686653, + 0.05671180412173271, + 0.0489354133605957, + -0.09752711653709412, + 0.10517461597919464, + -0.08601289987564087, + -0.12596894800662994, + -0.011868663132190704, + -0.06814008951187134, + -0.019312087446451187, + 0.009027702733874321, + 0.08339212834835052, + 0.008931035175919533, + 0.030418148264288902, + 0.06590598821640015, + -0.01297497283667326, + -0.012502375058829784, + -0.02562771923840046, + 0.03312484920024872, + 0.05073987692594528, + -0.03748564422130585, + 0.021513966843485832, + -0.020858772099018097, + 0.05254434421658516, + 0.04919319227337837, + -0.058645159006118774, + -0.04794725030660629, + 0.04970875382423401, + -0.030504075810313225, + 0.004540703725069761, + 0.0944337472319603, + -0.05099765956401825, + -0.02908628061413765, + 0.04034271463751793, + 0.01566019095480442, + 0.07583055645227432, + 0.03535895049571991, + -0.0015695098554715514, + 0.054606590420007706, + 0.0632852166891098, + 0.07750613242387772, + 0.03482190519571304, + 0.017636511474847794, + -0.008565844967961311, + 0.0189361572265625, + -0.04545537009835243, + -0.05980517342686653, + -0.037721943110227585, + -0.022298049181699753, + -0.013189790770411491, + 0.01819503679871559, + -0.046486493200063705, + 0.022684721276164055, + 0.03697007894515991, + -0.022706203162670135, + 0.023565473034977913, + 0.013361644931137562, + 0.019032824784517288, + 0.008007319644093513, + 0.04940801113843918, + -0.10019085556268692, + -0.03593895584344864, + 0.04390868544578552, + 0.046486493200063705, + 0.0009921879973262548, + 0.03129890188574791, + -0.02693810686469078, + -0.026358099654316902, + 0.057742927223443985, + 0.021900637075304985, + -0.06109407916665077, + -0.015026479959487915, + 0.17056503891944885, + -0.06831194460391998, + -0.023694362491369247, + 0.018968379124999046, + 0.06036369875073433, + 0.02474696934223175, + -0.0064284116961061954, + -0.06878454238176346, + -0.04532647877931595, + 0.06049259006977081, + 0.02633661776781082, + -0.04601389542222023, + -0.06418745219707489, + -0.004111068788915873, + -0.07041715830564499, + -0.003249113680794835, + -0.030590003356337547, + -0.059246648102998734, + -0.03151371702551842, + 0.012276816181838512, + 0.014500176534056664, + 0.004580982029438019, + -0.03190039098262787, + 0.043049413710832596, + 0.12785933911800385, + 0.04156717285513878, + -0.054262883961200714, + 0.033898189663887024, + 0.053618431091308594, + 0.010832169093191624, + 0.029988514259457588, + -0.04264125972986221, + -0.0058215525932610035, + -0.05348953977227211, + 0.036798227578401566, + 0.04045012220740318, + 0.0012137185549363494, + -0.0774202048778534, + -0.008238248527050018, + 0.024596596136689186, + 0.04416646435856819, + 0.011202729307115078, + 0.02311435528099537, + -0.006917121354490519, + 0.009049184620380402, + 0.08240396529436111, + -0.004666908644139767, + -0.010719389654695988, + 0.003783472115173936, + 0.011353101581335068, + 0.002765774494037032, + -0.012803119607269764, + -0.07415498048067093, + 0.08506770431995392, + 0.03639007359743118, + -0.025412902235984802, + -0.003955326043069363, + -0.05314583331346512, + -0.005966554395854473, + 0.0895359069108963, + -0.07595944404602051, + 0.038065649569034576, + -0.0009928593644872308, + 0.05658291280269623, + -0.05344657972455025, + 0.0306974109262228, + -0.026035873219370842, + 0.07578758895397186, + -0.04092271998524666, + 0.009323076345026493, + 0.0638437420129776, + 0.006251187529414892, + 0.02110581286251545, + 0.04498277232050896, + 0.03858121111989021, + -0.03757156804203987, + -0.021965082734823227, + -0.031771499663591385, + 0.014124246314167976, + 0.0019843759946525097, + 0.017980219796299934, + -0.05464955419301987, + 0.029215171933174133, + 0.05907479301095009, + -0.012652747333049774, + -0.005118025466799736, + -0.023995107039809227, + 0.03263076767325401, + -0.003297447692602873, + 0.001965579576790333, + 0.015176852233707905, + -0.037120454013347626, + 0.056454021483659744, + 0.052157673984766006, + -0.03415597230195999, + -0.05568068102002144, + -0.026852179318666458, + 0.029193690046668053, + 0.050825804471969604, + -0.030117403715848923, + -0.012781637720763683, + 0.0008122784201987088, + 0.11024431139230728, + -0.015531300567090511, + 0.019022084772586823, + -0.03505820408463478, + 0.11797773838043213, + -0.05671180412173271, + -0.0008216766873374581, + 0.02947295270860195, + -0.05245841667056084, + 0.017002800479531288, + -0.0644022673368454, + -0.029344061389565468, + 0.10285458713769913, + -0.052157673984766006, + 0.008071765303611755, + -0.08936405181884766, + -0.05632513016462326, + -0.0494939386844635, + 0.015993157401680946, + 0.06912825256586075, + -0.022620275616645813, + 0.020128393545746803, + -0.003904306795448065, + 0.04665834829211235, + 0.03256632387638092, + -0.07737723737955093, + 0.02156767062842846, + 0.013576461933553219, + -0.030912229791283607, + 0.04100864753127098, + -0.0026221154257655144, + 0.035466358065605164, + -0.00495959771797061, + -0.01750762015581131, + 0.010466979816555977, + -0.011750513687729836, + 0.012223112396895885, + -0.051813963800668716, + 0.02311435528099537, + 0.0015533985570073128, + 0.018076887354254723, + 0.07737723737955093, + -0.055165115743875504, + 0.005885997787117958, + -0.07394015789031982, + 0.048076141625642776, + 0.043070897459983826, + 0.05486437305808067, + -0.05314583331346512, + -0.03813009336590767, + -0.0008297323365695775, + 0.006611006800085306, + -0.012770896777510643, + 0.0042775520123541355, + -0.037442680448293686, + -0.005794700235128403, + -0.02532697655260563, + -0.05099765956401825, + 0.053661394864320755, + 0.03063296712934971, + -0.006686192471534014, + 0.0019575238693505526, + 0.008286582306027412, + 0.03752860426902771, + 0.005510067101567984, + 0.010724760591983795, + 0.013705352321267128, + 0.04859170317649841, + 0.05104062333703041, + -0.004562185145914555, + 0.03868861868977547, + -0.007776391226798296, + 0.07166309654712677, + -0.014629066921770573, + 0.00962919183075428, + 0.037378232926130295, + -0.004755521193146706, + -0.0925433486700058, + -0.07943949103355408, + 0.017056504264473915, + 0.006686192471534014, + 0.011149024590849876, + -0.006535820662975311, + -0.03067592903971672, + 0.10242495685815811, + -0.022942502051591873, + -0.0029215170070528984, + 0.043629422783851624, + -0.01672353781759739, + -0.00860343873500824, + -0.01724983938038349, + 0.012040517292916775, + 0.003710971213877201, + -0.07058900594711304, + 0.07806465774774551, + -0.06169556826353073 + ] + }, + { + "id": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Super (Steel)", + "description": "This Basic Phone Super (Steel) is compatible with a variety of devices—ranging from cell phones to tablets. It features an Android 6.0+ processor, 3GB of RAM, 1GB of internal storage, and offers basic support for iOS and Android as well as Android 4.0 and newer. It boasts a quad-core 1.5GHz Snapdragon 801 processor and 32GB of RAM and offers three GB of internal storage, a microSD card slot, and a microSD card", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-01-28T01:43:04", + "price": 185.15, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-02-05T02:35:07", + "newPrice": 202.08 + }, + { + "priceDate": "2023-05-02T02:35:07", + "newPrice": 185.15 + } + ], + "descriptionVector": [ + -0.05269845202565193, + 0.027757756412029266, + -0.04803573340177536, + 0.06469524651765823, + 0.032396189868450165, + 0.04759860411286354, + -0.04121164605021477, + 0.025669246912002563, + 0.0680951401591301, + 0.05740974098443985, + 0.026106376200914383, + -0.06450096517801285, + 0.01566382497549057, + -0.01645308919250965, + 0.08956308662891388, + 0.015323835425078869, + -0.030161971226334572, + -0.03501897305250168, + -0.021225091069936752, + -0.046068646013736725, + 0.10316268354654312, + -0.06751230359077454, + -0.07853769510984421, + -0.06046965345740318, + -0.032469045370817184, + -0.007783343084156513, + -0.025159262120723724, + -0.010442550294101238, + -0.07669203728437424, + -0.04490296542644501, + -0.02940913662314415, + -0.0070912204682827, + -0.06556950509548187, + 0.04992996156215668, + 0.013138185255229473, + -0.015178125351667404, + 0.01599167287349701, + -0.054204121232032776, + 0.04551009088754654, + -0.04152735322713852, + 0.0800919309258461, + -0.06304386258125305, + 0.01030898280441761, + -0.00458379415795207, + 0.04322730377316475, + 0.025110691785812378, + -0.012367136776447296, + 0.01222749799489975, + 0.011316810734570026, + -0.1077282652258873, + 0.01946442760527134, + -0.015505973249673843, + 0.001831999747082591, + 0.018578026443719864, + 0.03880743309855461, + 0.0003276577917858958, + -0.017412345856428146, + 0.16805221140384674, + 0.001441921922378242, + -0.020970098674297333, + 0.033731866627931595, + -0.015080985613167286, + 0.0029491097666323185, + -0.009975064545869827, + -0.031886205077171326, + -0.0005194713594391942, + -0.019804418087005615, + 0.03591751679778099, + -0.019974414259195328, + 0.038176022469997406, + -0.04058023542165756, + 0.00204297574236989, + -0.05158134177327156, + 0.032541900873184204, + 0.01591881737112999, + 0.030769096687436104, + 0.018978727981448174, + 0.029093431308865547, + 0.05823543295264244, + -0.060323942452669144, + 0.05585550144314766, + 0.02615494653582573, + -0.004010060802102089, + 0.008214402012526989, + 0.021820073947310448, + -0.0026045662816613913, + 0.06853227317333221, + -0.10578546673059464, + -0.021565081551671028, + 0.01707235537469387, + 0.010788612067699432, + 0.057749733328819275, + -0.01804375648498535, + 0.01548168808221817, + 0.09184587746858597, + 0.082908995449543, + 0.0031904419884085655, + 0.007394782733172178, + -0.003021964803338051, + -0.018323034048080444, + 0.05896398425102234, + 0.006484095472842455, + -0.03589323163032532, + -0.027320627123117447, + 0.03744747117161751, + -0.001847177860327065, + 0.0031752639915794134, + -0.02542639710009098, + 0.009556148201227188, + -0.09213729202747345, + -0.03375615179538727, + -0.02571781538426876, + -0.059595391154289246, + 0.037933170795440674, + -0.016052385792136192, + 0.014704568311572075, + -0.03888028860092163, + -0.027150630950927734, + -0.02250005304813385, + 0.034096140414476395, + -0.038248877972364426, + 0.06629805266857147, + -0.059449683874845505, + -0.054495543241500854, + -0.056486912071704865, + -0.037277474999427795, + 0.04196448251605034, + 0.0037216765340417624, + 0.04300873726606369, + -0.06148962303996086, + -0.045631516724824905, + 0.035504672676324844, + 0.06469524651765823, + -0.032614756375551224, + 0.001872980734333396, + 0.02659207582473755, + 0.0403616726398468, + 0.12812766432762146, + -0.01729092001914978, + 0.05668119341135025, + 0.013976017944514751, + 0.026106376200914383, + 0.01488670613616705, + 0.013041045516729355, + -0.004480582661926746, + 0.07737201452255249, + -0.015785250812768936, + 0.008445109240710735, + 0.003727747593075037, + 0.042814455926418304, + -0.04832715168595314, + -0.0870860144495964, + -0.003451505908742547, + -0.0815490335226059, + -0.006690517999231815, + -0.014048873446881771, + -0.0651809424161911, + -0.05211561173200607, + -0.005949825514107943, + 0.07669203728437424, + -0.01264034304767847, + -0.024115005508065224, + 0.02800060622394085, + -0.05400984361767769, + -0.04021596163511276, + 0.017193781211972237, + 0.04640863835811615, + 0.05255274102091789, + -0.01740020327270031, + 0.02369001880288124, + -0.01946442760527134, + 0.027466336265206337, + -0.03878314793109894, + -0.06435525417327881, + -0.060906782746315, + -0.013113901019096375, + 0.006945510394871235, + -0.00042081353603862226, + 0.02109152264893055, + -0.03081766702234745, + 0.06192675232887268, + 0.005570372100919485, + -0.045922938734292984, + -0.00277152587659657, + 0.023350028321146965, + 0.08111190050840378, + -0.040167391300201416, + 0.019512997940182686, + -0.05289273336529732, + 0.009003664366900921, + 0.017558054998517036, + -0.006247316487133503, + -0.07776057720184326, + 0.0446358323097229, + 0.08868882805109024, + -0.006951581686735153, + 0.024406425654888153, + 0.06357813626527786, + -0.030841952189803123, + 0.0006826362223364413, + -0.008542248979210854, + 0.026567790657281876, + 0.0673665925860405, + -0.06260672956705093, + 0.03589323163032532, + -0.01942800171673298, + -0.038176022469997406, + 0.043567292392253876, + 0.025912096723914146, + 0.022742902860045433, + 0.04232875630259514, + -0.07397211343050003, + -0.009112946689128876, + -0.025110691785812378, + 0.08883453160524368, + -0.004705219063907862, + 0.0771777331829071, + -0.05128992348909378, + -0.019233720377087593, + -0.10510548204183578, + 0.04937140643596649, + 0.002389037050306797, + 0.00550662400200963, + -0.024248573929071426, + -0.016950931400060654, + -0.05085279420018196, + 0.0414544977247715, + 0.047914307564496994, + -0.018238035961985588, + 0.05056137219071388, + 0.07319499552249908, + 0.012980333529412746, + 0.03834601864218712, + 0.0034575769677758217, + -0.009622931480407715, + 0.05551551282405853, + 0.04470868781208992, + -0.03178906813263893, + -0.10646544396877289, + 0.07134933024644852, + -0.014425290748476982, + -0.046141501516103745, + -0.011450378224253654, + -0.10131702572107315, + 0.033076170831918716, + 0.0012134911958128214, + -0.021443655714392662, + 0.037350330501794815, + -0.0701836571097374, + -0.044150132685899734, + -0.0021977925207465887, + -0.06488952040672302, + -0.049832820892333984, + 0.07897482067346573, + -0.02293718419969082, + 0.039050281047821045, + -0.01617381162941456, + -0.060178231447935104, + 0.04524295777082443, + 0.0315462164580822, + 0.014206726104021072, + -0.051921334117650986, + -0.10869966447353363, + 0.04359157755970955, + -0.04079880192875862, + 0.08057763427495956, + 0.05060994252562523, + -0.07523493468761444, + 0.004693076480180025, + 0.010667187161743641, + 0.019197292625904083, + 0.011553589254617691, + 0.002719920128583908, + 0.022232918068766594, + -0.021225091069936752, + 0.0053335935808718204, + -0.07309785485267639, + 0.07392354309558868, + -0.013271752744913101, + -0.0058435783721506596, + 0.06547236442565918, + 0.08611461520195007, + 0.06940653175115585, + -0.007819770835340023, + 0.04347015172243118, + 0.028462020680308342, + -0.06794943660497665, + -0.0004098094068467617, + 0.09102018177509308, + 0.03178906813263893, + -0.030186256393790245, + 0.007983693853020668, + 0.0025620677042752504, + 0.008621175773441792, + -0.02365359105169773, + -0.020460113883018494, + 0.006441596429795027, + -0.059158261865377426, + 0.07071792334318161, + 0.055758364498615265, + 0.009877923876047134, + 0.0037550684064626694, + -0.022487910464406013, + -0.05677833408117294, + 0.06459810584783554, + 0.06639519333839417, + 0.0058617922477424145, + 0.024940695613622665, + -0.04801144823431969, + -0.033586155623197556, + 0.07086363434791565, + -0.02449142374098301, + -0.043324440717697144, + -0.011990719474852085, + 0.03030768223106861, + 0.042158763855695724, + -0.026737786829471588, + 0.021905070170760155, + -0.0062776729464530945, + 0.022232918068766594, + 0.04779288172721863, + -0.0023465382400900126, + -0.08587176352739334, + 0.09650859236717224, + 0.08164617419242859, + -0.012956048361957073, + -0.06474381685256958, + 0.03482469171285629, + -0.009556148201227188, + 0.054058413952589035, + 0.005057351663708687, + 0.009629002772271633, + 0.029749127104878426, + 0.025693532079458237, + 0.0034029358066618443, + -0.019270148128271103, + 0.06139248237013817, + 0.04738003760576248, + 0.02343502640724182, + 0.03271189704537392, + 0.04988139122724533, + 0.09043734520673752, + -0.05794401466846466, + 0.004046488553285599, + -0.008578676730394363, + 0.003199548926204443, + -0.025086406618356705, + 0.016695939004421234, + -0.019258005544543266, + -0.02315574884414673, + 0.0015322318067774177, + -0.039123136550188065, + 0.06639519333839417, + 0.03169192746281624, + 0.05614692345261574, + -0.02325288951396942, + 0.01108610350638628, + -0.02416357584297657, + -0.02301003783941269, + -0.04772002622485161, + -0.002830720506608486, + -0.050658512860536575, + 0.0375446118414402, + -0.000999479554593563, + -0.03361044079065323, + 0.04344586655497551, + 0.00446844007819891, + 0.04750146344304085, + -0.02734491042792797, + -0.04660291597247124, + 0.03671892359852791, + 0.042595893144607544, + 0.028122032061219215, + 0.0297734122723341, + -0.05658405274152756, + -0.009811140596866608, + 0.05711832270026207, + 0.007449423894286156, + -0.0007611829787492752, + 0.014862420968711376, + 0.020702963694930077, + 0.006641947664320469, + -0.03841887041926384, + -0.018687307834625244, + 0.07270929217338562, + -0.06828942149877548, + 0.012846766039729118, + 0.09840282797813416, + -0.025256400927901268, + 0.06707517057657242, + 0.015688110142946243, + 0.013988160528242588, + -0.023325743153691292, + 0.12297924607992172, + 0.03429042175412178, + -0.04971139878034592, + -0.003527396358549595, + -0.025402111932635307, + 0.0022327022161334753, + -0.06547236442565918, + 0.049832820892333984, + 0.009823283180594444, + -0.0129317631945014, + 0.007012294139713049, + 0.05056137219071388, + -0.10539690405130386, + -0.039633121341466904, + -0.022184347733855247, + -0.10967106372117996, + -0.025474965572357178, + -0.003460612613707781, + -0.008803312666714191, + -0.033586155623197556, + 5.274398790788837e-05, + 0.010551832616329193, + -0.0031084802467375994, + -0.015214553102850914, + 0.05017281323671341, + 0.03220191225409508, + 0.01851731352508068, + -0.06561807543039322, + 0.018359461799263954, + 0.002542336005717516, + -0.008730458095669746, + 0.030501961708068848, + -0.02116437815129757, + -0.035796090960502625, + 0.04104165360331535, + -0.023738589137792587, + -0.04058023542165756, + 0.0315462164580822, + 0.01584596373140812, + 0.03633036091923714, + 0.015493830665946007, + -0.016088813543319702, + -0.029287710785865784, + -0.020630108192563057, + -0.007109433878213167, + -0.04507296159863472, + -0.07916910201311111, + -0.0027457228861749172, + 0.03939027339220047, + -0.0358203761279583, + 0.0722721666097641, + -0.1119052842259407, + -0.06532665342092514, + -0.05332986265420914, + 0.003147943178191781, + -0.005224310792982578, + 0.0022903792560100555, + -0.027247771620750427, + -0.022439341992139816, + -0.02778204157948494, + -0.03659749776124954, + 0.03574752062559128, + -0.0024618920870125294, + -0.017448773607611656, + 0.05371842160820961, + -0.0033756152261048555, + -0.013806023634970188, + -0.016975216567516327, + 0.0038977426011115313, + 0.053669851273298264, + -0.023495739325881004, + -0.007412996608763933, + 0.00246037426404655, + -0.06503523141145706, + -0.0665409043431282, + -0.034096140414476395, + 0.015165983699262142, + -0.016647368669509888, + -0.09777141362428665, + 0.07771200686693192, + 0.010351481847465038, + 0.023422883823513985, + -0.03412042558193207, + 0.033440448343753815, + 0.026324940845370293, + -0.020047267898917198, + 0.004328801296651363, + 0.06474381685256958, + 0.05983824282884598, + -0.006575163919478655, + -0.03110908716917038, + 0.038758862763643265, + -0.014498145319521427, + -0.04789002239704132, + 0.04905570298433304, + -0.03198334574699402, + 0.01910015381872654, + 0.03982740268111229, + 0.05857542157173157, + -0.059012554585933685, + -0.018383745104074478, + -0.053766991943120956, + -0.04900713264942169, + 0.05410698428750038, + -0.02376287430524826, + -0.006083393003791571, + 0.05721546337008476, + -0.06076107174158096, + -0.06921225041151047, + -0.04184305667877197, + -0.025329256430268288, + -0.051678482443094254, + 0.061003923416137695, + 0.04062880575656891, + 0.08038335293531418, + -0.0360875129699707, + -0.004292374011129141, + 0.011037533171474934, + -0.02242719940841198 + ] + }, + { + "id": "20c031da-fb6c-4ad2-80d9-6ff70175da1f", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "solomonisaac", + "reviewDate": "2021-02-05T02:35:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c785ac96-9466-48aa-aaab-73185adfd81e", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "khowe", + "reviewDate": "2022-01-08T21:31:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8f86dbc4-c753-44e0-aed9-04e4406d143c", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "ayates", + "reviewDate": "2022-10-18T08:58:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "744b6f72-1bd7-4641-9383-cbe588acc30f", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert50", + "reviewDate": "2022-01-23T20:40:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "04e8a8d7-baee-4024-b22a-02768bbd99b5", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael52", + "reviewDate": "2022-07-13T12:06:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f93897bb-f4e5-4ee2-bcf2-f971d6635900", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "sedwards", + "reviewDate": "2021-10-25T07:41:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "479e18ad-a0de-484d-8acc-537e47a8c097", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "aliciasnyder", + "reviewDate": "2022-11-26T08:43:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3cb3d828-0e48-48e1-ba98-fab6abf05de4", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "smithchristy", + "reviewDate": "2021-10-08T08:13:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bbb4c97f-727b-472b-803f-40db28ea9a86", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "elijah87", + "reviewDate": "2022-12-08T06:50:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5abd8db2-267d-416e-8b2b-25fd9ff1bbc1", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "luke85", + "reviewDate": "2022-12-31T06:08:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "35b85e99-ca91-4a6a-bba0-31e99adb0ceb", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "vanderson", + "reviewDate": "2021-12-13T16:26:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7874c573-06dc-4caf-ab3a-bfe9ae8ee466", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "vadams", + "reviewDate": "2022-07-09T19:54:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "05e174ac-851c-4703-8b42-735833377380", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "tara38", + "reviewDate": "2022-10-09T05:43:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "58fd4f6b-c863-4aaf-b584-a53fecc40ac8", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "haley76", + "reviewDate": "2022-02-13T16:51:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "076a5848-9deb-453e-a3a9-16d56c7bf5af", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaronhouston", + "reviewDate": "2021-11-01T08:30:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9a177873-63f5-4aa1-bdef-c6dd649a10c1", + "productId": "e6110577-0a95-4d2c-bbe8-e36c7fad840f", + "category": "Electronics", + "docType": "customerRating", + "userName": "longmichael", + "reviewDate": "2021-09-16T12:40:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "897c62f5-10ee-416e-9534-60325e0c3763", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "product", + "name": "Awesome TV + (Gold)", + "description": "This Awesome TV + (Gold) is a short documentary produced and hosted by Steven Egan. It features several documentary topics including the following topics: film editing, original films, photography,", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-01-10T13:17:00", + "price": 778.61, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-03-06T00:26:45", + "newPrice": 704.98 + }, + { + "priceDate": "2022-10-23T00:26:45", + "newPrice": 709.86 + }, + { + "priceDate": "2023-03-14T00:26:45", + "newPrice": 778.61 + } + ], + "descriptionVector": [ + -0.0067794169299304485, + 0.02806233987212181, + -0.06373763084411621, + -0.03634211793541908, + -0.07785215228796005, + 0.043177105486392975, + -0.015059196390211582, + 0.03967626020312309, + -0.01668458990752697, + 0.0762406513094902, + 0.032730136066675186, + -0.013079551048576832, + 0.07079489529132843, + -0.022936100140213966, + 0.04345494881272316, + -0.018740640953183174, + 0.005181808490306139, + 0.026659222319722176, + 0.030646298080682755, + -0.02443646267056465, + 0.10074657946825027, + -0.05284610763192177, + -0.06129259616136551, + 0.006494625471532345, + -0.005980612710118294, + 0.0003542523190844804, + -0.029784979298710823, + 0.052734971046447754, + 0.04251027852296829, + -0.040343087166547775, + 0.03623098134994507, + 0.014725781977176666, + -0.06290409713983536, + -0.016337282955646515, + -0.02677036076784134, + 0.06168157979846001, + 0.03375815972685814, + 0.11113797873258591, + 0.0014743147185072303, + 0.032230012118816376, + 0.06234840676188469, + -0.03673110157251358, + -0.023394543677568436, + 0.021255139261484146, + 0.004469830542802811, + -0.015003627166152, + -0.03837038576602936, + -0.09757914394140244, + -0.05315173789858818, + 0.009745411574840546, + 0.00465737609192729, + -0.06390433758497238, + 0.04712250456213951, + 0.008106126450002193, + -0.06523799151182175, + -0.04467746615409851, + 0.0060848044231534, + 0.033813729882240295, + -0.00286874920129776, + -0.019101839512586594, + -0.04539986327290535, + -0.015003627166152, + 0.017295848578214645, + 0.020268788561224937, + 0.042288001626729965, + -0.011231881566345692, + 0.009182775393128395, + 0.0044976151548326015, + -0.05367964506149292, + -0.00857151672244072, + 0.024839337915182114, + -0.0285902451723814, + 0.03234115242958069, + 0.11625032871961594, + 0.005324203986674547, + 0.007758819963783026, + 0.04028751701116562, + -0.021018970757722855, + -0.02947934903204441, + -0.031841032207012177, + 0.01740698516368866, + 0.037564635276794434, + -0.02074112556874752, + -0.020088190212845802, + 0.02004651352763176, + -0.03334139287471771, + -0.027978986501693726, + -0.15214788913726807, + 0.030007254332304, + -0.0034088101238012314, + 0.024478139355778694, + 0.0490674190223217, + -0.018643395975232124, + -0.0677386000752449, + 0.009682896547019482, + 0.0360642746090889, + 0.017698723822832108, + 0.02528388984501362, + -0.042649198323488235, + -0.013954762369394302, + 0.01714303344488144, + -0.06629380583763123, + 0.00750875985249877, + -0.06901668757200241, + 0.027451081201434135, + -0.01157224178314209, + 0.011850086972117424, + -0.012975359335541725, + 0.019907590001821518, + -0.03145204856991768, + 0.023061130195856094, + 0.0022244961000978947, + 0.010162179358303547, + 0.06801643967628479, + 0.02806233987212181, + 0.027214912697672844, + 0.019893698394298553, + -0.0334247462451458, + 0.00552216824144125, + -0.000403743440983817, + -0.017698723822832108, + 0.04184344783425331, + -0.037175655364990234, + 0.04217686131596565, + -0.03406378999352455, + 0.04409399256110191, + -0.07918581366539001, + 0.06251510977745056, + 0.09641219675540924, + 0.019101839512586594, + -0.10730371624231339, + 0.028270723298192024, + 0.005060251336544752, + 0.05734719708561897, + 0.010099663399159908, + 0.006855824030935764, + -0.03111863322556019, + 0.008911876939237118, + 0.02832629159092903, + 0.015267579816281796, + -0.003990548197180033, + 0.004799771588295698, + -0.03281348943710327, + -0.04078763723373413, + -0.02782617136836052, + -0.008717385120689869, + 0.014378475956618786, + -0.00013078248593956232, + -0.045844417065382004, + 0.024241970852017403, + 0.040537577122449875, + -0.019810345023870468, + -0.09713459014892578, + -0.050790056586265564, + 0.05595797300338745, + 0.04039865359663963, + -0.028506891801953316, + 0.0021376695949584246, + -0.022561009973287582, + 0.07718532532453537, + -0.02789563313126564, + -0.08829912543296814, + -0.031007496640086174, + 0.05634695664048195, + 0.027978986501693726, + -0.12191836535930634, + 0.02931264229118824, + -0.009780142456293106, + -0.07674077153205872, + 0.061014749109745026, + 0.05442982539534569, + 0.004310069605708122, + 0.038953863084316254, + 0.011065174825489521, + -0.07651849836111069, + -0.04956753924489021, + 0.027242697775363922, + 0.052734971046447754, + -0.08585409075021744, + -0.06318194419145584, + -0.061570439487695694, + 0.06662721931934357, + 0.0014560811687260866, + -0.008404809981584549, + -0.0517069436609745, + 0.06301523745059967, + 0.09202224761247635, + 0.019101839512586594, + -0.01807381398975849, + -0.048317234963178635, + 0.06179271638393402, + -0.0701836347579956, + 0.05706935375928879, + -0.09669004380702972, + 0.034897323697805405, + 0.013301827013492584, + 0.005015101283788681, + -0.048817358911037445, + -0.05629138648509979, + 0.012926735915243626, + 0.028645813465118408, + -0.016073329374194145, + 0.11480553448200226, + -0.025700658559799194, + 0.007425406016409397, + 0.013663025572896004, + -0.0027437189128249884, + -0.023797418922185898, + -0.016365068033337593, + 0.11030444502830505, + -0.028117908164858818, + 0.013746378943324089, + -0.04326045885682106, + 0.040343087166547775, + 0.04817831516265869, + 0.016934650018811226, + -0.025297783315181732, + 0.02060220204293728, + 0.0032733608968555927, + 0.036314334720373154, + 0.10235808044672012, + 0.010981821455061436, + -0.024936584755778313, + -0.022477656602859497, + 0.01807381398975849, + -0.049178555607795715, + 0.014420152641832829, + -0.009057745337486267, + 0.06940566748380661, + 0.05401305854320526, + -0.146035298705101, + -0.005570791196078062, + -0.10963761806488037, + 0.0034331216011196375, + -0.0206716638058424, + -0.04534429684281349, + 0.028395753353834152, + -0.02611742541193962, + -0.021157892420887947, + 0.02881252020597458, + -0.044566329568624496, + 0.09413386881351471, + -0.08829912543296814, + -0.05612467974424362, + 0.061348166316747665, + 0.047928255051374435, + 0.04956753924489021, + 0.07424017041921616, + -0.059569958597421646, + -0.0066404943354427814, + 0.007286483887583017, + -0.026895390823483467, + 0.026631439104676247, + 0.020268788561224937, + -0.004000967368483543, + 0.04940083250403404, + 0.06340421736240387, + 0.004511507228016853, + -0.007592113222926855, + -0.025658980011940002, + -0.07307322323322296, + -0.08324234932661057, + -0.02727048099040985, + 0.025478381663560867, + -0.028840305283665657, + -0.008397863246500492, + -0.01565656252205372, + -0.12414111942052841, + -0.054485395550727844, + 0.015614885836839676, + -0.02367238886654377, + -0.056791506707668304, + 0.0017903633415699005, + 0.07001692801713943, + -0.04414956271648407, + -0.006543248426169157, + 0.029257072135806084, + -0.014017277397215366, + 0.012593322433531284, + 0.03845373913645744, + 0.054318688809871674, + -0.031896598637104034, + 0.02597850188612938, + -0.04189901798963547, + 0.05117904022336006, + -0.003966236487030983, + 0.0044594113714993, + 0.00223838840611279, + 0.004063482396304607, + -0.0553189292550087, + -0.02294999361038208, + -0.016531774774193764, + 0.057847317308187485, + 0.05281832441687584, + 0.018157167360186577, + 0.0006846273317933083, + -0.032785702496767044, + 0.03725900873541832, + 0.034869540482759476, + 0.00640432583168149, + 0.031896598637104034, + 0.02081058733165264, + -0.041760094463825226, + -0.042649198323488235, + -0.052345987409353256, + 0.016073329374194145, + -0.07362890988588333, + 0.02251933328807354, + 0.007210076320916414, + -0.08290893584489822, + 0.016101114451885223, + 0.03231336921453476, + -0.024936584755778313, + -0.044066209346055984, + 0.0161288995295763, + -0.023172268643975258, + 0.06957237422466278, + 0.007418460212647915, + 0.03298019617795944, + -0.031702108681201935, + 0.08352018892765045, + 0.013392126187682152, + -0.11947333067655563, + 0.06696063280105591, + 0.06340421736240387, + -0.0289792288094759, + 0.04523315653204918, + -0.03975961357355118, + -0.02129681594669819, + 0.003278570482507348, + -0.029590487480163574, + -0.05862528458237648, + 0.05020658299326897, + 0.08368689566850662, + 0.06168157979846001, + -0.060514628887176514, + 0.026200778782367706, + 0.026520300656557083, + 0.006484206300228834, + 0.023755742236971855, + 0.01579548604786396, + -0.014948057942092419, + -0.0010150023736059666, + -0.01200290210545063, + -0.030646298080682755, + -0.04951196908950806, + 0.03581421449780464, + 0.04303818196058273, + 0.0010532060405239463, + -0.04403842240571976, + 0.0016358121065422893, + -0.007710197474807501, + 0.04209350794553757, + -0.014975843019783497, + 0.008161695674061775, + -0.004313542973250151, + -0.01582326926290989, + -0.016531774774193764, + 0.016573451459407806, + -0.004424680955708027, + 0.06234840676188469, + -0.05884756147861481, + 0.003045875346288085, + 0.05456874892115593, + -0.07040590792894363, + 0.03350809961557388, + -0.014697997830808163, + 0.007612951565533876, + -0.037342362105846405, + 0.007046842481940985, + 0.06834986060857773, + -0.018643395975232124, + -0.0985238179564476, + 0.008897984400391579, + -0.03814811259508133, + 0.0010097927879542112, + 0.022699931636452675, + -0.0017756029265001416, + 0.011412480846047401, + 0.030312884598970413, + -0.04251027852296829, + -0.0181293822824955, + 0.0189629178494215, + -0.004080847837030888, + 0.0011539248516783118, + 0.0026725211646407843, + -0.08913265913724899, + -0.028868090361356735, + -0.03984296694397926, + -0.01635117456316948, + -0.033841513097286224, + -0.029729409143328667, + -0.019046271219849586, + 0.006171630695462227, + 0.041926801204681396, + 0.018740640953183174, + -0.007237860932946205, + 0.061014749109745026, + 0.07157285511493683, + 0.07179513573646545, + 0.03820367902517319, + -0.04595555365085602, + 0.04715028777718544, + 0.03478618711233139, + -0.008995230309665203, + -0.01210014708340168, + -0.038926076143980026, + 0.013044820167124271, + 0.05212371051311493, + -0.029812762513756752, + 0.028340185061097145, + -0.028104016557335854, + -0.017254171893000603, + 0.023102806881070137, + 0.05879199132323265, + 0.035619720816612244, + 0.044399622827768326, + 0.046372320502996445, + 0.0887436792254448, + -0.0034418043214827776, + 0.02842353843152523, + 0.09752357751131058, + -0.0033202471677213907, + -0.03111863322556019, + -0.016642913222312927, + 0.023436222225427628, + 0.004733783192932606, + -0.046511244028806686, + -0.03687002509832382, + -0.07751873880624771, + 0.052540481090545654, + -0.048483941704034805, + 0.00519222766160965, + 0.024144725874066353, + -0.012509969063103199, + -0.005122766364365816, + 0.031841032207012177, + 0.002707251813262701, + -0.026089640334248543, + 0.0571804903447628, + -0.05912540480494499, + -0.08007491379976273, + -0.025242213159799576, + -0.008147803135216236, + -0.03431385010480881, + -0.0330357626080513, + -0.07229525595903397, + -0.05706935375928879, + 0.002438089344650507, + -0.05654144659638405, + -0.0124613456428051, + -0.01829608902335167, + -0.07707418501377106, + 0.024589277803897858, + -0.03261899575591087, + 0.016892973333597183, + 0.003636295674368739, + 0.019004594534635544, + 0.013065658509731293, + -0.022769393399357796, + 0.045122019946575165, + 0.02007429674267769, + 0.05401305854320526, + -0.014628536067903042, + -0.015670454129576683, + 0.010738707147538662, + -0.027159344404935837, + 0.019601961597800255, + -0.0175459086894989, + 0.023255622014403343, + -0.05806959420442581, + -0.014934166334569454, + -0.05851414427161217, + 0.06262625008821487, + 0.025019938126206398, + -0.07668520510196686, + 0.008814631029963493, + -0.05540228262543678, + 0.052873894572257996, + 0.014461829327046871, + -0.0047893524169921875, + -0.02470041625201702, + 0.03881493955850601, + 0.08896595239639282, + 0.0175459086894989, + -0.0415378212928772, + 0.046372320502996445, + 0.057847317308187485, + 0.01373248640447855, + 0.03442499041557312, + 0.032396722584962845, + 0.04412177950143814, + 0.05159580707550049, + 0.040343087166547775, + -0.019574176520109177, + -0.015864945948123932, + 0.01853225752711296, + -0.026992635801434517, + 0.01730974018573761, + 0.02074112556874752, + -0.04501088336110115, + 0.09035518020391464, + -0.1009688526391983, + 0.0689055472612381, + 8.666374924359843e-05, + -0.06918339431285858, + 0.06251510977745056, + -0.013822786509990692, + -0.030062822625041008, + -0.004077374469488859, + -0.04751148447394371, + 0.10063543915748596 + ] + }, + { + "id": "d820afc2-6cc5-4a5e-908f-5ad1df65223a", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "watsonalexander", + "reviewDate": "2022-02-02T03:41:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4180a9ad-8662-417e-9edc-2ca7427c450e", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "chadcalderon", + "reviewDate": "2021-11-24T11:29:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f4bd3249-dc19-4bea-8245-5eecffbd0644", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "gregoryhughes", + "reviewDate": "2022-02-01T22:50:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8e6bef7c-3f80-4467-9015-ea98a9205ca4", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "ljohnson", + "reviewDate": "2021-03-06T00:26:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "010a8622-ccb3-4e42-81ed-28e0973aec76", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "isaac86", + "reviewDate": "2021-09-29T10:57:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "34638885-40e9-4482-9c4a-5516910c902f", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "zwilkerson", + "reviewDate": "2021-06-21T19:10:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6e50d182-6ecb-4346-a612-553ac20c9b48", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "karapalmer", + "reviewDate": "2022-09-14T00:38:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "04e1824d-76cf-4ffa-9fe2-1d54fb6bf26d", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "wford", + "reviewDate": "2021-06-02T11:35:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cd4c751a-7ac2-429f-9be5-509cdb7847c9", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "wilsonruben", + "reviewDate": "2021-03-10T06:46:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "14d2279c-fe0b-4c8f-b66e-3d1305e46dc8", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "wmunoz", + "reviewDate": "2022-10-23T11:07:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4790435c-550f-490d-a00e-e214eb905d86", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "ooconnell", + "reviewDate": "2022-07-19T23:35:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c4ded1cf-ed64-492f-a8ef-d8162e9f1ee3", + "productId": "897c62f5-10ee-416e-9534-60325e0c3763", + "category": "Media", + "docType": "customerRating", + "userName": "joel89", + "reviewDate": "2022-05-10T12:16:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Ultra (Steel)", + "description": "This Luxe Phone Ultra (Steel) is made of a polymer in an opaque plastic. The smartphone features a stainless steel body and a titanium back panel along with an engraved logo with the name of the company that designed the phone at", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-05-07T22:56:51", + "price": 751.55, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-03-14T21:22:51", + "newPrice": 743.43 + }, + { + "priceDate": "2021-06-12T21:22:51", + "newPrice": 803.6 + }, + { + "priceDate": "2021-09-10T21:22:51", + "newPrice": 751.61 + }, + { + "priceDate": "2021-12-09T21:22:51", + "newPrice": 794.07 + }, + { + "priceDate": "2023-12-07T21:22:51", + "newPrice": 751.55 + } + ], + "descriptionVector": [ + -0.03627287968993187, + 0.056535959243774414, + -0.02510528266429901, + 0.010093370452523232, + 0.04467038810253143, + -0.051301147788763046, + -0.02510528266429901, + -0.009722570888698101, + -0.003920655231922865, + 0.02333853393793106, + 0.06408281624317169, + 0.05151926726102829, + -0.020622974261641502, + -0.02562876231968403, + 0.043165381997823715, + -0.02145181968808174, + -0.02196439541876316, + -0.015104611404240131, + 0.036490995436906815, + -0.08031072467565536, + 0.08681061863899231, + -0.08388785272836685, + -0.04150769114494324, + -0.025367023423314095, + 0.017471183091402054, + -0.03387359157204628, + 0.044430460780858994, + 0.020481199026107788, + 0.06181439384818077, + -0.008648344315588474, + 0.041551314294338226, + 0.009439018554985523, + -0.04056978598237038, + 0.06765993684530258, + 0.0038933907635509968, + 0.005022147204726934, + 0.019030719995498657, + -0.010584133677184582, + 0.09946141391992569, + 0.009569888934493065, + 0.03319742903113365, + -0.026588479056954384, + -0.045411985367536545, + -0.003239039331674576, + 0.03638193756341934, + -0.08166305720806122, + 0.03779969736933708, + 0.03437526151537895, + -0.0031790572684258223, + -0.022858675569295883, + 0.01775473542511463, + 0.01261807605624199, + -0.030514586716890335, + -0.01941242441534996, + -0.007225130219012499, + -0.0569721944630146, + 0.029489437118172646, + 0.1968289017677307, + 0.03361184895038605, + 0.007328735664486885, + -0.027657251805067062, + -0.07616650313138962, + 0.009340866468846798, + 0.04672069102525711, + 0.020622974261641502, + -0.00432144571095705, + 0.030427340418100357, + -0.026850219815969467, + 0.006843424867838621, + 0.09693125635385513, + -0.0037816057447344065, + 0.0009951593820005655, + 0.03361184895038605, + 0.04706967622041702, + 0.015584468841552734, + 0.026152243837714195, + -0.03745071217417717, + -0.015257293358445168, + 0.03359003737568855, + -0.049687083810567856, + 0.09230717271566391, + 0.06172714754939079, + -0.020448481664061546, + -0.04829113185405731, + 0.04789852350950241, + 0.055358126759529114, + 0.054616529494524, + -0.07607925683259964, + -0.06713645160198212, + 0.10626666992902756, + 0.007808593567460775, + -0.0039888168685138226, + 0.01705675944685936, + -0.05588160827755928, + 0.050864916294813156, + 0.053700439631938934, + -0.020404858514666557, + 0.03699266538023949, + -0.016358785331249237, + -0.027133772149682045, + 0.01389406155794859, + -0.006728913635015488, + -0.04427777975797653, + 0.013392391614615917, + 0.06111641973257065, + 0.07856579124927521, + 0.0483347550034523, + 0.041943926364183426, + -0.0068379719741642475, + -0.09056223183870316, + 0.021484537050127983, + -0.025432458147406578, + -0.056841325014829636, + 0.017274877056479454, + 0.0190634373575449, + 0.023011356592178345, + -0.009406301192939281, + -0.014221237041056156, + 0.019979529082775116, + 0.004607724491506815, + 0.020841091871261597, + -0.01251992303878069, + 0.0013243799330666661, + -0.058368146419525146, + 0.008141222409904003, + -0.007612287998199463, + 0.044583141803741455, + -0.046197209507226944, + 0.027024712413549423, + 0.01599889248609543, + -0.12982331216335297, + 0.03092901036143303, + 0.023294908925890923, + 0.06504252552986145, + -0.025061657652258873, + 0.05082129314541817, + 0.02432006038725376, + -0.04785490036010742, + 0.006559872999787331, + 0.0479421466588974, + 0.040111739188432693, + 0.04907635599374771, + 0.029424000531435013, + -0.04264190047979355, + -0.013239709660410881, + -0.02562876231968403, + -0.09064947813749313, + -0.08366972953081131, + -0.03646918386220932, + 0.03138705715537071, + 0.038606733083724976, + -0.09623327851295471, + 0.015093705616891384, + 0.0008370244759134948, + 0.03803962841629982, + 0.009439018554985523, + -0.055314503610134125, + -0.023120416328310966, + 0.0012275904882699251, + 0.03241220489144325, + 0.006832519080489874, + -0.03116893768310547, + -0.0032035952899605036, + -0.038693979382514954, + 0.00207347609102726, + -0.01583530381321907, + -0.00954807735979557, + 0.060854680836200714, + -0.05466015264391899, + 0.010360564105212688, + 0.03760339319705963, + 0.001495465636253357, + -0.002731917193159461, + -0.07956913113594055, + -0.03588026762008667, + -0.0318232886493206, + 0.049774330109357834, + 0.021091926842927933, + 0.053351450711488724, + 0.03513867035508156, + 0.04824750870466232, + 0.0298602357506752, + -0.04986157640814781, + -0.054878272116184235, + 0.021997112780809402, + 0.05317695811390877, + 0.01524638757109642, + 0.022924110293388367, + 0.001488649402745068, + 0.036207444965839386, + -0.0561869740486145, + -0.004820388741791248, + 0.027242830023169518, + -0.02102649211883545, + 0.03430982679128647, + -0.030907196924090385, + 0.10818609595298767, + 0.0261304322630167, + -0.03882484883069992, + 0.042576465755701065, + 0.05356956645846367, + 0.03908659145236015, + 0.0288787093013525, + -0.027090147137641907, + -0.02451636642217636, + -0.042140230536460876, + 0.008762856014072895, + 0.02479991875588894, + 0.028246168047189713, + 0.02695927768945694, + -0.06059293821454048, + 0.0029200431890785694, + -0.03234677016735077, + 0.0718914046883583, + 0.03980637714266777, + 0.0384976752102375, + -0.0012432676739990711, + -0.07398533076047897, + -0.007726799231022596, + -0.07084444165229797, + -0.07629737257957458, + -0.0005619924049824476, + 0.026348549872636795, + -0.026261303573846817, + -0.025432458147406578, + -0.016446031630039215, + 0.0762537494301796, + 0.07926376909017563, + 0.033655472099781036, + 0.01638059690594673, + 0.02789718098938465, + -0.022226136177778244, + 0.04689518362283707, + -0.04052616283297539, + 0.04131138324737549, + 0.01897619105875492, + -0.006914312951266766, + -0.045411985367536545, + 0.010660475119948387, + 0.026784783229231834, + 0.01487558800727129, + -0.06155265495181084, + 0.019390612840652466, + -0.048116639256477356, + 0.021091926842927933, + 0.020306704565882683, + 0.06456267088651657, + -0.004596818704158068, + -0.04039529338479042, + 0.035073235630989075, + 0.021789900958538055, + -0.04464857652783394, + -0.05701581761240959, + 0.08798845112323761, + 0.027570005506277084, + -0.01686045527458191, + 0.002914590295404196, + -0.013425109907984734, + 0.06028757616877556, + -0.02907501347362995, + 0.01088404469192028, + -0.033459167927503586, + -0.017711110413074493, + -0.001616793219000101, + -0.024581801146268845, + 0.02200801856815815, + 0.026457607746124268, + -0.09396485984325409, + 0.029336754232645035, + 0.013621415011584759, + 0.04161674901843071, + -0.02510528266429901, + 0.09230717271566391, + 0.013861344195902348, + -0.011734701693058014, + 0.045368362218141556, + -0.10024663060903549, + 0.09169644117355347, + -0.060811057686805725, + -0.014046743512153625, + 0.020808374509215355, + -0.03932651877403259, + 0.025563327595591545, + -0.05897887423634529, + 0.1363668292760849, + -0.05937148258090019, + -0.031539738178253174, + 0.005840086378157139, + 0.04798576980829239, + -0.054136671125888824, + 0.004084243439137936, + 0.025323398411273956, + 0.021942583844065666, + -0.058106403797864914, + 0.009940688498318195, + -0.0004059023631270975, + 0.056492336094379425, + -0.09762922674417496, + 0.024974411353468895, + 0.04842200502753258, + 0.026304926723241806, + 0.013654132373631, + -0.07128068059682846, + 0.005412031430751085, + 0.018256403505802155, + 0.09946141391992569, + 0.08790120482444763, + 0.04650257155299187, + 0.02015402354300022, + -0.04606634005904198, + 0.055270880460739136, + -0.0384976752102375, + -0.042031172662973404, + -0.013512356206774712, + 0.004689518362283707, + -0.04449589550495148, + -0.0699719786643982, + 0.0014654744882136583, + 0.028224356472492218, + 0.021724466234445572, + 0.04510662332177162, + 0.010840421542525291, + -0.10399825125932693, + 0.06499890238046646, + 0.026304926723241806, + -0.023207662627100945, + 0.004752227105200291, + -0.03740708902478218, + 0.003083630930632353, + -0.044539518654346466, + -0.03588026762008667, + 0.039828188717365265, + -0.009177278727293015, + 0.02059025689959526, + -0.02778812311589718, + 0.032368581742048264, + 0.012105501256883144, + -0.01642422005534172, + 0.04094058647751808, + -0.03441888466477394, + 0.05714668706059456, + 0.050908539444208145, + -0.04881461337208748, + -0.007017918862402439, + 0.004515024833381176, + -0.04279458150267601, + -0.06988473236560822, + 0.011243938468396664, + -0.007426888216286898, + 0.0526534765958786, + 0.0009113206178881228, + -0.024472741410136223, + 0.06896863877773285, + -0.0006563962670043111, + 0.06931762397289276, + 0.056492336094379425, + 0.03699266538023949, + -0.07053907960653305, + -0.03088538534939289, + 0.022487876936793327, + -0.010813157074153423, + 0.006412643473595381, + 0.09658226370811462, + 0.015431786887347698, + -0.019205214455723763, + 0.04837838187813759, + -0.02970755286514759, + 0.060069456696510315, + -0.05016694217920303, + 0.04388516768813133, + 0.059240613132715225, + -0.01347963884472847, + -0.06870689988136292, + 0.0396755076944828, + -0.0683579072356224, + 0.008828290738165379, + 0.060025833547115326, + -0.021310044452548027, + -0.010627757757902145, + 0.05496551841497421, + -0.03579302132129669, + 0.021353667601943016, + 0.04554285854101181, + 0.06020032986998558, + 0.030470963567495346, + -0.027526382356882095, + -0.05745205283164978, + 0.039435576647520065, + -0.029096825048327446, + 0.03319742903113365, + 0.0025069836992770433, + -0.020688410848379135, + 0.040264423936605453, + 0.06539151817560196, + 0.04829113185405731, + 0.025214340537786484, + -0.02381839044392109, + 0.02216070145368576, + -0.023905638605356216, + -0.03489874303340912, + 0.00196987041272223, + 0.06434455513954163, + 0.03206321969628334, + 0.016053421422839165, + 0.06665659695863724, + -0.058891624212265015, + 0.09850169718265533, + 0.023098604753613472, + -0.041594937443733215, + -0.09989764541387558, + -0.0006587819079868495, + -0.01639150269329548, + 0.017427558079361916, + 0.03112531453371048, + 0.024145565927028656, + -0.004283274989575148, + 0.023600274696946144, + 0.02735188789665699, + 0.03788694739341736, + -0.017362123355269432, + 0.034724246710538864, + -0.0018989823292940855, + -0.0734618529677391, + -0.011276655830442905, + -0.017809264361858368, + 0.03489874303340912, + -0.029533060267567635, + -0.048945482820272446, + 0.05631784349679947, + -0.06779080629348755, + 0.04589184373617172, + -0.06072381138801575, + 0.0009344955906271935, + 0.026261303573846817, + 0.017940133810043335, + -0.007814045995473862, + -0.027613628655672073, + 0.0023897457867860794, + -0.0013795908307656646, + 0.05099578574299812, + -0.02876964956521988, + -0.016805924475193024, + 0.011952819302678108, + 0.09946141391992569, + -0.07132430374622345, + -0.013599603436887264, + -0.02778812311589718, + -0.01894347369670868, + -0.058106403797864914, + -0.05016694217920303, + -0.0021620860788971186, + 0.04063522070646286, + -0.036534618586301804, + -0.025519704446196556, + -0.0013284697197377682, + -0.028616968542337418, + 0.012389053590595722, + 0.05479102209210396, + -0.0012125949142500758, + -0.017024042084813118, + -0.06909950822591782, + 0.09387761354446411, + 0.03280481696128845, + -0.020971963182091713, + -0.027918992564082146, + 0.02691565454006195, + -0.016871361061930656, + 0.01448297780007124, + -0.0004689518245868385, + 0.03819230943918228, + 0.006505343597382307, + -0.03376453369855881, + 0.001142388442531228, + 0.018572673201560974, + -0.02173537202179432, + -0.09317963570356369, + 0.023491214960813522, + -0.1045217290520668, + -0.05710306391119957, + -0.026064997538924217, + 0.023251285776495934, + 0.007039730437099934, + 0.07804231345653534, + 0.009798912331461906, + 0.0483347550034523, + -0.08550191670656204, + 0.07738795876502991, + 0.0042860014364123344, + 0.007612287998199463, + 0.028660591691732407, + -0.009989764541387558, + -0.0002936061064247042, + -0.1190919578075409, + -0.05544537678360939, + -0.021626314148306847, + -0.029729364439845085, + 0.06290498375892639, + -0.018256403505802155, + -0.04545561224222183, + 0.05374406278133392, + 0.0010217424714937806, + -0.05828089639544487, + -0.050297811627388, + 0.019859565421938896, + 0.042576465755701065, + 0.03784332424402237, + -0.0312343742698431, + 0.07564302533864975, + -0.0035989326424896717, + 0.0322159007191658, + 0.02617405541241169, + 0.019935905933380127 + ] + }, + { + "id": "a64d2c90-032e-4e6a-9ac4-52b183458c2e", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciamichael", + "reviewDate": "2021-03-14T21:22:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fea6eea9-656d-45e3-9701-378f9207cba8", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "customerRating", + "userName": "russellkarina", + "reviewDate": "2021-08-24T03:53:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8a6e37c9-f4db-45cd-929a-95eb0f5900c4", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "customerRating", + "userName": "brooksjennifer", + "reviewDate": "2021-10-14T14:39:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2cc8c8e3-13f4-4443-b17a-ebcab5d04a4c", + "productId": "23ce3b35-94ac-418a-9e20-f96f457a01b6", + "category": "Electronics", + "docType": "customerRating", + "userName": "adam13", + "reviewDate": "2021-12-10T06:14:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Pro (Gold)", + "description": "This Amazing Computer Pro (Gold) is a super-secret computer (actually just the computer-name Computer Pro). This very computer was created by two scientists from the University of California at Santa Cruz, Richard Feynman and Richard Stallman. The computer was designed to perform an intricate mathematical operation that involved solving", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-06-03T21:58:30", + "price": 373.3, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-01-29T02:19:08", + "newPrice": 398.87 + }, + { + "priceDate": "2021-12-22T02:19:08", + "newPrice": 351.85 + }, + { + "priceDate": "2022-11-14T02:19:08", + "newPrice": 398.74 + }, + { + "priceDate": "2023-04-18T02:19:08", + "newPrice": 373.3 + } + ], + "descriptionVector": [ + 0.02461175248026848, + 0.014867215417325497, + -0.034084416925907135, + -0.014602496288716793, + 0.004339252132922411, + -0.003845586208626628, + -0.02455451525747776, + 0.02159252017736435, + 0.07183197140693665, + 0.1777769774198532, + 0.007927273400127888, + -0.04252681881189346, + 0.023395473137497902, + -0.05912544205784798, + 0.03863472864031792, + 0.03228146210312843, + -0.04513108357787132, + 0.004214046988636255, + -0.07394973188638687, + -0.013658091425895691, + 0.030650217086076736, + -0.0542030930519104, + -0.04455871880054474, + 0.026371778920292854, + -0.0051369876600801945, + -0.011404398828744888, + -0.05116955190896988, + -0.007233279757201672, + -0.017357008531689644, + 0.033254485577344894, + 0.10073647648096085, + 0.0724615752696991, + 0.027630984783172607, + -0.04258405417203903, + 0.043299514800310135, + 0.02545599266886711, + -0.05895373225212097, + -0.034084416925907135, + 0.031680475920438766, + 0.01241319440305233, + 0.03193804249167442, + -0.035315003246068954, + -0.01953200064599514, + -0.0019871843978762627, + 0.037117958068847656, + -0.028446607291698456, + -0.04681956768035889, + 0.014259076677262783, + -0.05769452452659607, + 0.03322586417198181, + 0.01582592912018299, + 0.01897394470870495, + -0.005051132757216692, + 0.06633725762367249, + -0.06484910845756531, + -0.04621858149766922, + -0.04621858149766922, + 0.05603466555476189, + 0.0005799680948257446, + -0.0726332888007164, + 0.0666806772351265, + 0.04332813248038292, + -0.049280740320682526, + -0.003942172974348068, + 0.03932156786322594, + -0.002625730587169528, + -0.064677394926548, + 0.05843860283493996, + 0.05002481862902641, + 0.06628002226352692, + -0.010445685125887394, + -0.00880013220012188, + 0.05194224417209625, + 0.04919488728046417, + 0.02784562297165394, + 0.035858750343322754, + 0.119624562561512, + 0.021778538823127747, + 0.040609389543533325, + -0.0328824445605278, + 0.034284744411706924, + 0.030650217086076736, + 0.025126881897449493, + -0.025770794600248337, + 0.05431756377220154, + -0.02627161517739296, + 0.009601444937288761, + -0.14011527597904205, + 0.025055335834622383, + -0.005634231027215719, + -0.045703452080488205, + 0.09009046107530594, + 0.027459274977445602, + 0.0210487712174654, + 0.005594880785793066, + 0.05048270896077156, + -0.05056856572628021, + 0.02159252017736435, + -0.014144603163003922, + -0.019088417291641235, + -0.06662344187498093, + -0.04495937377214432, + -0.04953830689191818, + -0.027130164206027985, + -0.029820285737514496, + -0.016798952594399452, + 0.004972432740032673, + 0.00025063386419788003, + 0.09020493179559708, + 0.06175832822918892, + -0.05448927357792854, + 0.010259666480123997, + -0.04324227571487427, + -0.0014389647403731942, + -0.015997638925909996, + -0.003012077882885933, + -0.056149136275053024, + 0.003573712194338441, + -0.012155629694461823, + -0.06736751645803452, + 0.003816968062892556, + -0.007898655720055103, + -0.030850544571876526, + -0.010445685125887394, + -0.03308277577161789, + 0.01276376936584711, + 0.010445685125887394, + 0.014330621808767319, + -0.013314671814441681, + -0.0067753866314888, + -0.11578971147537231, + 0.037375520914793015, + 0.03199527785181999, + 0.018401578068733215, + -0.025341520085930824, + 0.010953661054372787, + 0.023094981908798218, + 0.08121877908706665, + 0.021649757400155067, + 0.05042547360062599, + -0.02887588180601597, + 0.008893141523003578, + -0.07251881062984467, + 0.0023914179764688015, + -0.06628002226352692, + -0.005923991557210684, + -0.047019895166158676, + 0.04484490305185318, + -0.0156256016343832, + 0.05840998515486717, + -0.041639652103185654, + 0.005301543045789003, + -0.008349393494427204, + -0.07475104182958603, + 0.03165185824036598, + 0.02757374756038189, + 0.01103236060589552, + 0.017357008531689644, + 0.011568954214453697, + 0.055261969566345215, + -0.05969780683517456, + -0.04069524630904198, + -0.02359580248594284, + -0.0011420496739447117, + -0.009537054225802422, + -0.033941324800252914, + 0.06605107337236404, + 0.02495517209172249, + -0.07240433990955353, + 0.027645293623209, + 0.04959554225206375, + 0.014502331614494324, + 0.019446145743131638, + -0.01980387419462204, + 0.02950548380613327, + 0.00893606897443533, + 0.018244177103042603, + 0.10439962148666382, + 0.003003134625032544, + -0.09804635494947433, + -0.030364034697413445, + 0.044043589383363724, + 0.001257417257875204, + 0.0028010178357362747, + 0.04352845996618271, + 0.02455451525747776, + 0.04195445030927658, + 0.057952091097831726, + 0.04126761108636856, + -0.10817723721265793, + 0.0782424807548523, + -0.033054154366254807, + 0.06370437145233154, + -0.037117958068847656, + 0.05431756377220154, + 0.053401779383420944, + 0.001009689993225038, + 0.039579130709171295, + -0.04561759531497955, + -0.006381884682923555, + 0.010302593931555748, + -0.0004422424244694412, + 0.0861983671784401, + 0.006950673647224903, + -0.022436760365962982, + -0.00986616499722004, + -0.008141910657286644, + -0.02620006911456585, + 0.01974663883447647, + 0.029333774000406265, + -0.010231047868728638, + -0.018315723165869713, + -0.04664785787463188, + -0.04238372668623924, + 0.03763308748602867, + -0.02970581315457821, + -0.005340893287211657, + 0.039178475737571716, + 0.013486381620168686, + -0.04621858149766922, + 0.02744496613740921, + 0.007791336625814438, + 0.005720085930079222, + -0.009801773354411125, + -0.05068304017186165, + -0.054861314594745636, + -0.004557467065751553, + -0.009594290517270565, + -0.044873520731925964, + -0.02256554178893566, + -0.11281340569257736, + 0.051484350115060806, + 0.05686459690332413, + 0.08642731606960297, + -0.09472662955522537, + 0.006668068002909422, + 0.005752281751483679, + -0.01193383801728487, + -0.053258687257766724, + 0.09753122180700302, + -0.008957533165812492, + -0.01465257816016674, + -0.05861031264066696, + -0.07835695147514343, + 0.00838516652584076, + -0.01299271546304226, + -0.01664155162870884, + -0.044530101120471954, + -0.06141490861773491, + -0.011983919888734818, + -0.013493536040186882, + 0.011540336534380913, + -0.07097342610359192, + 0.026929836720228195, + -0.015668528154492378, + 0.0068326229229569435, + 0.014881524257361889, + -0.05789485573768616, + 0.026242995634675026, + -0.022866034880280495, + -0.07509446144104004, + -0.0910634845495224, + 0.0012270102743059397, + 0.031108109280467033, + -0.07097342610359192, + 0.0005607401253655553, + -0.008506794460117817, + -0.03362652286887169, + -0.0027652448043227196, + -0.011540336534380913, + 0.009064851328730583, + -0.0876292884349823, + -0.014967379160225391, + 0.015554054640233517, + 0.046247199177742004, + 0.000669400324113667, + -0.04813600704073906, + 0.0818483829498291, + 0.007136692758649588, + -0.025055335834622383, + 0.013765410520136356, + -0.008206302300095558, + 0.022794488817453384, + -0.02325238287448883, + 0.04902317747473717, + -0.01752871833741665, + -0.07257605344057083, + -0.024597443640232086, + 0.022951889783143997, + -0.01774335652589798, + -0.01575438305735588, + 0.03783341497182846, + 0.04169688746333122, + 0.08196286112070084, + -0.009415426291525364, + 0.00229661981575191, + 0.0035272075328975916, + 0.037575848400592804, + -0.02552753873169422, + 0.010431376285851002, + 0.09621477872133255, + -0.05371658131480217, + -0.02097722515463829, + -0.03296830132603645, + 0.018115393817424774, + 0.056692883372306824, + -0.006009846460074186, + 0.014938761480152607, + -0.013328980654478073, + 0.009236562065780163, + 0.02854677103459835, + -0.00928664393723011, + -0.04530279338359833, + -0.016269512474536896, + 0.05357348918914795, + -0.07492275536060333, + 0.07973062992095947, + -0.010188120417296886, + 0.022036103531718254, + -0.047077130526304245, + -0.00024236136232502759, + -0.015482509508728981, + -0.1073186844587326, + 0.00997348316013813, + 0.06805435568094254, + 0.056492555886507034, + -0.037919268012046814, + 0.019546309486031532, + -0.0346853993833065, + -0.03376961499452591, + -0.024440042674541473, + -0.06942803412675858, + -0.022536924108862877, + 0.004757795017212629, + 0.002121332800015807, + -0.09982068836688995, + 0.025828029960393906, + 0.1093219667673111, + -0.035257767885923386, + 0.11973903328180313, + 0.04375740513205528, + 0.014795669354498386, + -0.005494716577231884, + 0.07978786528110504, + 0.009715918451547623, + -0.031193964183330536, + 0.07314841449260712, + -0.04933797940611839, + -0.024397114291787148, + 0.0006170824635773897, + 0.0017779129557311535, + -0.03047850728034973, + 0.07206092029809952, + -0.055805716663599014, + 0.036001842468976974, + 0.05056856572628021, + 0.02724463678896427, + -0.051140930503606796, + 0.027187401428818703, + 0.022265050560235977, + -0.021435119211673737, + -0.02220781333744526, + 0.10102266073226929, + 0.015768691897392273, + 0.007941583171486855, + 0.01089642383158207, + 0.007011487614363432, + 0.05245737358927727, + 0.02903328277170658, + -0.0032124060671776533, + -0.00832077581435442, + 0.047477785497903824, + -0.011983919888734818, + -0.01727115362882614, + 0.026185760274529457, + -0.03605907782912254, + -0.00804174691438675, + 0.004861536435782909, + -0.02132064662873745, + 0.02283741720020771, + -0.03714657574892044, + 0.06152937933802605, + 0.06708133220672607, + 0.025083955377340317, + 0.07177473604679108, + -0.07475104182958603, + 0.005956187378615141, + -0.06152937933802605, + 0.0014657943975180387, + 0.04899455979466438, + -0.09375360608100891, + 0.001227904693223536, + -0.05861031264066696, + -0.01974663883447647, + 0.03190942481160164, + -0.08064641803503036, + -0.005219265352934599, + 0.026429016143083572, + 0.04206892475485802, + 0.004478766582906246, + -0.0124203497543931, + 0.04613272473216057, + -0.01096796989440918, + -0.0762391984462738, + -0.02057657018303871, + -0.034427836537361145, + -0.034284744411706924, + 0.014953070320189, + 0.01392281148582697, + -0.009029079228639603, + 0.0035146870650351048, + -0.06725304573774338, + 0.0471629872918129, + -0.025899576023221016, + 0.053544871509075165, + 0.019775256514549255, + 0.021492356434464455, + 0.05297250300645828, + 0.10531540215015411, + -0.018516050651669502, + -0.0016983181703835726, + 0.04547450691461563, + 0.01575438305735588, + 0.039035383611917496, + -0.019274435937404633, + 0.031537383794784546, + 0.05317283049225807, + -0.021334955468773842, + -0.024196786805987358, + -0.019417528063058853, + 0.02247968688607216, + 0.0702865868806839, + 0.00918647926300764, + 0.08161944150924683, + -0.0934101864695549, + -0.012227175757288933, + -0.01472412422299385, + -0.020819826051592827, + 0.04152517765760422, + 0.0558343343436718, + -0.025770794600248337, + -0.022050412371754646, + -0.02578510344028473, + -0.02366734854876995, + -0.05606328323483467, + -0.029963377863168716, + -0.0981035903096199, + -0.040895573794841766, + 0.04375740513205528, + -0.0655931830406189, + -0.06187279894948006, + -0.03797650709748268, + -0.025498919188976288, + 0.028861572965979576, + 0.06524976342916489, + 0.017385628074407578, + -0.07269052416086197, + 0.010309748351573944, + -0.04229787364602089, + 0.018144013360142708, + -0.016283821314573288, + 0.015482509508728981, + 0.06582213193178177, + -0.05878202244639397, + 0.023409783840179443, + 0.05042547360062599, + -0.02896173670887947, + -0.1259205937385559, + 0.004911618772894144, + -0.005906105041503906, + -0.006170824635773897, + -0.03024956025183201, + 0.021077390760183334, + 0.06004122644662857, + -0.010588777251541615, + -0.05775176361203194, + 0.01472412422299385, + 0.008835905231535435, + -0.06147214397788048, + -0.04023735225200653, + -0.00481503177434206, + 0.0020479983650147915, + -0.05468960478901863, + -0.06805435568094254, + 0.05534782260656357, + 0.024711916223168373, + 0.0078128008171916, + 0.003924286458641291, + -0.001425549853593111, + 0.0655931830406189, + 0.016169348731637, + 0.05343039706349373, + 0.038005124777555466, + 0.0006461479351855814, + 0.013944274745881557, + 0.005902527831494808, + -0.07269052416086197, + 0.02572786621749401, + 0.014638269320130348, + 0.054861314594745636, + -0.0397508405148983, + -0.031337056308984756, + -0.0037847724743187428, + 0.08734310418367386, + -0.03995117172598839, + 0.020791206508874893, + 0.0437287874519825, + 0.03935018554329872, + -0.06547870486974716, + -0.04098143056035042, + 0.0023896293714642525, + -0.0006050090887583792 + ] + }, + { + "id": "2fd78ddf-7afb-4cf4-917f-1f5762741ea4", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "sandragraham", + "reviewDate": "2021-11-19T02:50:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c32a2f82-5938-44f4-b4c5-db44e5bab7c5", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristenwebb", + "reviewDate": "2021-01-29T02:19:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f4e991b6-cedc-4c61-8a6a-00d9d56e744d", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "kellyyoung", + "reviewDate": "2022-02-22T14:19:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d00587b5-04d9-4ae7-bb61-e4d3501cc49c", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda49", + "reviewDate": "2022-11-14T09:28:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2da50ea4-8543-4231-89a0-bfbce162083c", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "ssullivan", + "reviewDate": "2021-04-10T15:30:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "80af08a9-1c31-41a9-9975-bd8d50236c63", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "halltiffany", + "reviewDate": "2022-08-10T00:13:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4ab96605-5f92-4ba9-a377-25fa554a3659", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "stacy41", + "reviewDate": "2021-09-24T11:04:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "45a2caf5-6593-4919-b0a6-bd0890e71a8e", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "daltonwest", + "reviewDate": "2021-12-08T05:57:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eb7fc963-68bf-48e9-931c-37cef6f5d613", + "productId": "3fc2c90c-3d24-4813-bbad-4f99aac56d05", + "category": "Electronics", + "docType": "customerRating", + "userName": "greentaylor", + "reviewDate": "2021-08-24T23:25:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Pro (Silver)", + "description": "This Luxe Mouse Pro (Silver) is available in select colors.\n\n(Silver) is available in select colors. Stainless Steel is Steel,", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-11-03T08:40:23", + "price": 746.44, + "stock": 78, + "priceHistory": [ + { + "priceDate": "2021-07-19T07:20:01", + "newPrice": 806.37 + }, + { + "priceDate": "2023-05-17T07:20:01", + "newPrice": 746.44 + } + ], + "descriptionVector": [ + -0.04877391457557678, + 0.0010289951460435987, + -0.05277177691459656, + 0.04385533183813095, + 0.05238410457968712, + -0.06619489938020706, + 0.004530909936875105, + -0.03622305020689964, + 0.0031861746683716774, + -0.029341882094740868, + 0.021612683311104774, + 0.07162229716777802, + 0.014743629842996597, + -0.004137181211262941, + 0.021043291315436363, + 0.026361657306551933, + -0.042934611439704895, + -0.033654727041721344, + -0.03283092379570007, + -0.04622982069849968, + 0.009722072631120682, + -0.06280277669429779, + -0.06537109613418579, + -0.01613682322204113, + 0.00752324890345335, + -0.010297522880136967, + 0.017275609076023102, + 0.030916796997189522, + 0.02408408746123314, + 0.019819702953100204, + 0.026361657306551933, + 0.02223053388297558, + -0.023332975804805756, + 0.010909317061305046, + -0.02880883403122425, + -0.011406020261347294, + 0.01882629469037056, + 0.04496988654136658, + 0.11407232284545898, + 0.08301014453172684, + 0.022388026118278503, + -0.04220772907137871, + -0.03522964194417, + -0.01530090719461441, + -0.015518972650170326, + -0.01319294422864914, + -0.019056474789977074, + 0.05296561121940613, + 0.02163691259920597, + -0.019819702953100204, + 0.00035511309397406876, + 0.016887936741113663, + -0.08843754976987839, + -0.031086403876543045, + 0.01683947816491127, + -0.10408978164196014, + -0.020570816472172737, + 0.21845285594463348, + -0.03174059838056564, + -0.007450560573488474, + -0.07709816098213196, + -0.06522572040557861, + -0.014210580848157406, + 0.03261286020278931, + -0.022945303469896317, + -0.034987349063158035, + 0.0396878644824028, + -0.0749175027012825, + 0.025973986834287643, + 0.0979839563369751, + -0.03321859613060951, + -0.014065204188227654, + 0.03295207396149635, + 0.04070550203323364, + 0.046641718596220016, + 0.08034490793943405, + 0.0001347764045931399, + -0.03913058713078499, + 0.01633065938949585, + -0.08804987370967865, + 0.02548939734697342, + 0.007135577499866486, + -0.06803634017705917, + -0.006505611352622509, + 0.038767144083976746, + 0.04392801970243454, + 0.04591483622789383, + -0.08242864161729813, + -0.03280669450759888, + 0.117852121591568, + 0.05039728805422783, + 0.05756920948624611, + 0.030335290357470512, + -0.04358880594372749, + -0.0537894144654274, + 0.005927132908254862, + 0.0015264563262462616, + 0.04695670306682587, + -0.01600356213748455, + -0.05083341896533966, + -0.0004808034573215991, + 0.006021021865308285, + -0.048628535121679306, + 0.06178513541817665, + -0.006087653338909149, + 0.05039728805422783, + 0.017130231484770775, + -0.03745875135064125, + -0.03535078838467598, + -0.11135862022638321, + 0.060670580714941025, + -0.015167645178735256, + -0.06037982553243637, + -0.01601567678153515, + -0.02420523576438427, + 0.06241510063409805, + -0.05146338418126106, + -0.010030998848378658, + -0.0036374484188854694, + 0.010376268066465855, + 0.025319790467619896, + 0.009231425821781158, + -0.022509172558784485, + -0.025755921378731728, + -0.038185637444257736, + 0.00031233293702825904, + 0.0403420589864254, + -0.03355780988931656, + 0.02631319873034954, + -0.026555493474006653, + -0.06367503106594086, + 0.04378264397382736, + -0.0062451446428895, + -0.008044182322919369, + -0.036465346813201904, + 0.05538855865597725, + -0.013689647428691387, + 0.04496988654136658, + -0.062463562935590744, + 0.09231426566839218, + -0.10980793833732605, + -0.07908497750759125, + -0.01875360682606697, + 0.0011115267407149076, + -0.032879382371902466, + -0.06449883431196213, + -0.036659181118011475, + 0.0028545339591801167, + -0.04026937112212181, + 0.05456475540995598, + 0.05160875990986824, + -0.0659526064991951, + 0.03489042818546295, + 0.0022033669520169497, + 0.08228326588869095, + 0.018159983679652214, + -0.08078103512525558, + -0.0006515454733744264, + 0.04765935614705086, + 0.04463067650794983, + 0.02093425765633583, + -0.04320113733410835, + -0.01849919743835926, + 0.016173167154192924, + -0.05684232339262962, + 0.057084619998931885, + 0.0454544760286808, + 0.04661748930811882, + -0.032249417155981064, + -0.013047566637396812, + -0.01845073699951172, + -0.010782112367451191, + 0.02810617908835411, + -0.11581684648990631, + 0.0653226375579834, + -0.01920185051858425, + 0.06508034467697144, + 0.015167645178735256, + 0.01825690269470215, + 0.018487082794308662, + 0.06202743202447891, + 0.050930336117744446, + -0.09342882037162781, + -0.01299910806119442, + 0.08722607791423798, + -0.011290931142866611, + 0.011393905617296696, + 0.028251556679606438, + 0.02279992587864399, + -0.023805448785424232, + -0.018208442255854607, + 0.005357740446925163, + 0.046326737850904465, + -0.02522287331521511, + 0.02342989295721054, + 0.058102257549762726, + 0.07012007385492325, + 0.056260816752910614, + 0.022654550150036812, + 0.02759736031293869, + 0.041844286024570465, + -0.011333332397043705, + 0.025828609243035316, + -0.011078923009335995, + 0.031595222651958466, + -0.030965255573391914, + 0.015785496681928635, + 0.01946837455034256, + 0.038839831948280334, + -0.0176027063280344, + 0.00011840258230222389, + -0.0006814537337049842, + 0.026288969442248344, + 0.05228718742728233, + 0.04087510704994202, + 0.004058435559272766, + 0.0390578992664814, + -0.0371195413172245, + -0.022363796830177307, + -0.07147692143917084, + -0.006014964543282986, + -0.002165508456528187, + 0.01888686791062355, + -0.01580972597002983, + -0.0634327381849289, + -0.035375017672777176, + 0.061494383960962296, + 0.057859960943460464, + 0.08596614003181458, + -0.01197541318833828, + 0.0055515761487185955, + -0.07293069362640381, + 0.012502403929829597, + 0.02541670948266983, + -0.04169891029596329, + 0.065274178981781, + -0.0825740173459053, + -0.04140815511345863, + 0.03617459163069725, + -0.019165506586432457, + -0.009455548599362373, + -0.01920185051858425, + -0.01494957972317934, + -0.04458221420645714, + -0.02183074876666069, + -0.0736575722694397, + 0.11678602546453476, + -0.04230464622378349, + -0.07651665061712265, + 0.07070157676935196, + -0.07075003534555435, + -0.04700516164302826, + -0.053692493587732315, + 0.07152538001537323, + -0.011121324263513088, + 0.021564224734902382, + 0.008498485200107098, + -0.03028683178126812, + 0.043443430215120316, + -0.045115262269973755, + 0.020498126745224, + 0.007329413201659918, + -0.02407197281718254, + 0.0136048449203372, + -0.04060858488082886, + -0.00284090475179255, + -0.03118332102894783, + -0.13985247910022736, + -0.013580615632236004, + 0.03086833842098713, + -0.039082128554582596, + -0.041456613689661026, + 0.06745482981204987, + -0.01640334725379944, + -0.05819917470216751, + -0.010909317061305046, + -0.10263601690530777, + 0.02178228832781315, + -0.008353108540177345, + -0.04174736887216568, + 0.011163726449012756, + 0.030335290357470512, + 0.026603952050209045, + -0.015712808817625046, + 0.061494383960962296, + -0.02344200760126114, + -0.04303152859210968, + 0.08296168595552444, + 0.03605344519019127, + -0.014779973775148392, + -0.0026546407025307417, + -0.013520041480660439, + 0.07283376902341843, + -0.02926919423043728, + 0.035496167838573456, + -0.011127381585538387, + 0.06037982553243637, + 0.03983324021100998, + -0.0016082307556644082, + 0.036659181118011475, + 0.033848561346530914, + -0.037555672228336334, + -0.08756528794765472, + 0.008668091148138046, + 0.054516296833753586, + 0.11959663778543472, + 0.018923211842775345, + -0.026482805609703064, + -0.01344735361635685, + -0.05684232339262962, + 0.014392302371561527, + 0.017263494431972504, + -0.056115441024303436, + -0.012720469385385513, + 0.09420415759086609, + -0.023030105978250504, + -0.011072865687310696, + -0.00915268063545227, + -0.020219488069415092, + 0.020001422613859177, + -0.06919935345649719, + 0.016948509961366653, + -0.1453767865896225, + 0.034551218152046204, + 0.013011222705245018, + -0.00619365694001317, + -0.06653410941362381, + -0.022060928866267204, + -0.04591483622789383, + 0.00013894084258936346, + -0.04775627702474594, + 0.039227504283189774, + -0.030456436797976494, + -0.0035375019069761038, + 0.03118332102894783, + -0.005915018264204264, + 0.0061118826270103455, + 0.028542309999465942, + 0.05718153715133667, + -0.03687724471092224, + 0.050106532871723175, + 0.0326370894908905, + -0.012254051864147186, + 0.011539283208549023, + 0.01284161675721407, + -0.014840546995401382, + -0.02011045627295971, + -0.017905574291944504, + -0.006275431253015995, + 0.06813325732946396, + 0.0014128807233646512, + -0.032491713762283325, + 0.01207233127206564, + -0.07031390815973282, + 0.07263993471860886, + 0.0024698912166059017, + 0.03348512202501297, + -0.030577585101127625, + -0.0027576161082834005, + 0.061106711626052856, + 0.011212185025215149, + -0.012623551301658154, + 0.02094637230038643, + 0.014658826403319836, + 0.026216281577944756, + 0.007850347086787224, + 0.017069658264517784, + 0.046011753380298615, + -0.01444076094776392, + 0.029947618022561073, + -0.014259040355682373, + -0.026216281577944756, + 0.012090503238141537, + 0.0864022746682167, + -0.023127024993300438, + -0.005609121173620224, + 0.08286476880311966, + 0.02740352600812912, + -0.06037982553243637, + 0.025271331891417503, + 0.010582218877971172, + 0.06609798222780228, + -0.0022972561419010162, + -0.0224122554063797, + 0.030771421268582344, + -0.008886156603693962, + -0.005578834563493729, + -0.023284515365958214, + -0.016863707453012466, + -0.017505789175629616, + 0.01734829694032669, + -0.00038577851955778897, + 0.032564401626586914, + 0.012926419265568256, + 0.055291637778282166, + 0.0026803845539689064, + 0.036974165588617325, + 0.04715053737163544, + -0.02453233301639557, + -0.0013046052772551775, + -0.026482805609703064, + 0.025562085211277008, + -0.007135577499866486, + -0.033194366842508316, + 0.046254049986600876, + -0.05921681225299835, + 0.03791911154985428, + 0.0774858295917511, + 0.01921396516263485, + -0.11581684648990631, + -0.032297875732183456, + -0.02931765280663967, + 0.07094387710094452, + 0.02631319873034954, + -0.008577230386435986, + -0.009443433955311775, + 0.08344627916812897, + 0.033388201147317886, + 0.08509387820959091, + -0.06222126632928848, + 0.1024421751499176, + -0.02728237770497799, + -0.051511842757463455, + 0.01920185051858425, + 0.009370746091008186, + -0.028590768575668335, + -0.08727453649044037, + 0.02342989295721054, + 0.046011753380298615, + 0.0029983962886035442, + -0.04819240793585777, + -0.056066982448101044, + -0.025392480194568634, + 0.01900801621377468, + 0.017517903819680214, + 0.034599676728248596, + 0.009649384766817093, + 0.00365864927880466, + 0.06808479875326157, + 0.049088895320892334, + 0.007371814921498299, + -0.03309744969010353, + -0.0002597095735836774, + 0.008474254980683327, + 0.008819525130093098, + 0.02323605678975582, + -0.06677640229463577, + 0.012314626015722752, + -0.031910207122564316, + -0.03016568347811699, + -0.019044360145926476, + -0.036925703287124634, + -0.03469659388065338, + -0.01129698846489191, + 0.041723139584064484, + -0.039736323058605194, + -0.033654727041721344, + 0.07675894349813461, + -0.004921610001474619, + 0.002079190919175744, + -0.06037982553243637, + 0.07113771140575409, + 0.006127025932073593, + 0.005875645205378532, + -0.010739710181951523, + -0.0028848208021372557, + -0.03445430099964142, + 0.026410117745399475, + -0.006711561698466539, + 0.014368073083460331, + -0.023005876690149307, + -0.03629573807120323, + 0.024980578571558, + 0.0032346337102353573, + -0.01568857952952385, + -0.03290361538529396, + 0.010103686712682247, + -0.03079565055668354, + -0.04887083172798157, + 0.0014492248883470893, + 0.018789950758218765, + 0.020570816472172737, + -0.07268839329481125, + 0.041723139584064484, + 0.05524317920207977, + -0.036465346813201904, + 0.08301014453172684, + 0.006099767982959747, + 0.07404524832963943, + 0.0007844289066269994, + -0.014937465079128742, + 0.019359342753887177, + -0.07385140657424927, + -0.01990450546145439, + -0.011508995667099953, + 0.0358596071600914, + 0.016681985929608345, + -0.05335328355431557, + -0.03738606348633766, + 0.05538855865597725, + 0.027161231264472008, + -0.022375911474227905, + -0.040438976138830185, + -0.024956349283456802, + 0.022194189950823784, + 0.0033860676921904087, + -0.05722999572753906, + 0.0035011577419936657, + 0.02215784601867199, + -0.016863707453012466, + -0.020885799080133438, + 0.000957063864916563 + ] + }, + { + "id": "0a4f234f-dc27-4d95-bdd6-792562092e52", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "georgegina", + "reviewDate": "2022-08-12T17:18:58", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ea413f4b-37c2-4858-85b6-c8ace5fa20fc", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cpatel", + "reviewDate": "2021-07-19T07:20:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e7dba3f8-946b-4211-a85e-1eb7d4748d59", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emilynelson", + "reviewDate": "2022-09-15T08:01:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c2c85417-99f7-4146-9669-c3117420b2ce", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "troyjennings", + "reviewDate": "2022-02-26T01:15:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bec96ec6-17b9-40e3-97fe-9f2d4f508cc8", + "productId": "1b9fb674-a4cf-4345-b217-0fe040194a3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardcarter", + "reviewDate": "2022-08-19T07:04:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "434d2eb2-bb97-4840-bf97-9015e701550d", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Pro (Gold)", + "description": "This Amazing Computer Pro (Gold) is also available HERE\n\n\nThe ZX Spectrum and the PC version of the Nintendo DS.\n\nNote: The X Series has also been priced to the same or less the X Series PC version so you can use different pricing if", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-09-23T02:50:19", + "price": 470.48, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-06-04T22:45:14", + "newPrice": 493.36 + }, + { + "priceDate": "2022-11-28T22:45:14", + "newPrice": 494.8 + }, + { + "priceDate": "2023-05-14T22:45:14", + "newPrice": 470.48 + } + ], + "descriptionVector": [ + -0.00012984148634131998, + 0.012012998573482037, + -0.05759129300713539, + 0.021137544885277748, + -0.009746674448251724, + -0.0996590107679367, + -0.0009544853237457573, + 0.032261788845062256, + 0.06665658950805664, + 0.06185731664299965, + 0.02254473976790905, + -0.08117291331291199, + 0.02279655449092388, + -0.08170616626739502, + 0.028262395411729813, + -0.011027962900698185, + -0.0070174578577280045, + 0.011509370990097523, + -0.08656468987464905, + -0.015138452872633934, + 0.03892745077610016, + 0.0036475968081504107, + -0.02986215241253376, + -0.05045163258910179, + -0.034157801419496536, + -0.010753929615020752, + -0.050392381846904755, + 0.008576481603085995, + 0.014975514262914658, + 0.012161124497652054, + 0.04369710013270378, + 0.01589389331638813, + -0.0445266030728817, + 0.017552902922034264, + 0.019552599638700485, + -0.011790810152888298, + -0.0007924727979116142, + 0.006465689279139042, + 0.06090931221842766, + -0.0067915660329163074, + 0.022322552278637886, + 0.030869407579302788, + -0.014183041639626026, + -0.04473397880792618, + 0.007106333039700985, + 0.03403929993510246, + -0.07963240891695023, + 0.015182889997959137, + -0.06950060278177261, + -0.02156710997223854, + 0.03273579105734825, + 0.04932587593793869, + 0.03581680729985237, + 0.06588633358478546, + -0.01330169290304184, + -0.024307437241077423, + -0.006254610139876604, + 0.1110350713133812, + 0.014960701577365398, + -0.012124093249440193, + 0.015049576759338379, + 0.006284235045313835, + 0.023433495312929153, + 0.004099380224943161, + -0.008235791698098183, + -0.00973186269402504, + -0.10481378436088562, + 0.04867412522435188, + 0.009635580703616142, + -0.0008507973398081958, + 0.01013180147856474, + 0.02485550194978714, + 0.08976420760154724, + 0.0363500602543354, + 0.008554262109100819, + -0.0034902130719274282, + 0.10179202258586884, + 0.023329807445406914, + 0.03549093008041382, + -0.008361699059605598, + 0.05708766728639603, + 0.02279655449092388, + 0.03214329108595848, + 0.00971705000847578, + -0.007239646278321743, + -0.04218621551990509, + -0.025862757116556168, + -0.15369528532028198, + -0.023729747161269188, + 0.029995465651154518, + -0.023448307067155838, + 0.07246311753988266, + 0.03599455952644348, + -0.02608494646847248, + -0.021581923589110374, + 0.02426299825310707, + -0.0790991559624672, + 0.034365177154541016, + -0.03581680729985237, + -0.016190145164728165, + 0.051133010536432266, + -0.05735429376363754, + 0.03300241753458977, + -0.01876753382384777, + -0.0588059276342392, + -0.04120858758687973, + 0.013220223598182201, + 0.009894800372421741, + 0.0044882106594741344, + -0.014990326948463917, + -0.010672461241483688, + 0.05199214071035385, + -0.054836153984069824, + -0.007476647850126028, + 0.009583736769855022, + 0.03741656616330147, + -0.028084643185138702, + -0.04642261192202568, + -0.014042321592569351, + -0.08834220468997955, + -0.030054716393351555, + 0.0003888301143888384, + 0.010857618413865566, + 0.0029532574117183685, + 0.045385733246803284, + 0.001161861466243863, + -0.016367895528674126, + 0.018737908452749252, + 0.01559764239937067, + -0.03720919042825699, + -0.12241112440824509, + 0.059813182801008224, + 0.07418137788772583, + 0.06339782476425171, + 0.011538996361196041, + 0.06950060278177261, + 0.04828899726271629, + 0.07992865890264511, + -0.01733071357011795, + 0.032646916806697845, + -0.0731741264462471, + 0.020189540460705757, + -0.022070737555623055, + 0.03972732648253441, + -0.09325997531414032, + 0.003519838210195303, + -0.04455622658133507, + 0.05525090917944908, + -0.004154927562922239, + 0.009539298713207245, + -0.05445102974772453, + -0.06381257623434067, + 0.039579201489686966, + -0.031876664608716965, + -0.0025903491768985987, + 0.09711124747991562, + -0.0527920201420784, + -0.035520557314157486, + 0.03818682208657265, + 0.14788874983787537, + -0.04935550317168236, + 0.024529624730348587, + -0.08010640740394592, + -0.018737908452749252, + -0.010983524844050407, + -0.05205139145255089, + 0.057709794491529465, + 0.003869785461574793, + -0.07631438970565796, + 0.01838240586221218, + 0.03951995074748993, + -0.033269044011831284, + -0.009450423531234264, + 0.017315901815891266, + 0.05163663998246193, + 0.07530713826417923, + 0.05418440327048302, + -0.017241837456822395, + 0.029417775571346283, + -0.08769045025110245, + -0.07536638528108597, + 0.03300241753458977, + -0.02901783585548401, + -0.004203068558126688, + -0.005202917382121086, + 0.03537243232131004, + 0.05705804377794266, + 0.09634099155664444, + -0.003193961689248681, + -0.0018404625589028, + 0.006184250582009554, + -0.039934705942869186, + 0.055013906210660934, + -0.05299939587712288, + -0.025581318885087967, + -0.002270027296617627, + -0.040171705186367035, + 0.049977630376815796, + -0.07181137055158615, + 0.04298609495162964, + 0.015390266664326191, + 0.02167079783976078, + 0.10996856540441513, + -0.04645223915576935, + 0.02251511439681053, + 0.004058645572513342, + -0.0007082262891344726, + -0.016116082668304443, + 0.019167473539710045, + -0.05068863555788994, + 0.03143228590488434, + 0.043430473655462265, + -0.020011790096759796, + 0.02929927408695221, + 0.016886336728930473, + 0.0026588572654873133, + 0.09521523863077164, + 0.04277871921658516, + -0.023996373638510704, + -0.08851995319128036, + -0.03232103958725929, + -0.06736759096384048, + -0.06902660429477692, + 0.02195223793387413, + -0.02762545458972454, + -0.013346130959689617, + 0.01701964996755123, + 0.03235066682100296, + -0.03599455952644348, + -0.0340985506772995, + -0.0035290962550789118, + -0.010465084575116634, + 0.00035712195676751435, + 0.012923972681164742, + -0.03125453367829323, + 0.0013507218100130558, + 0.030365779995918274, + 0.048822250217199326, + -0.0478149950504303, + 0.05850967392325401, + 0.0016006840160116553, + -0.032084040343761444, + -0.0450894795358181, + -0.11322733014822006, + 0.0100281136110425, + -0.07850664854049683, + 0.060376059263944626, + 0.049444377422332764, + 0.012975816614925861, + -0.042660217732191086, + -0.005643591284751892, + -0.0583319216966629, + -0.02149304747581482, + 0.03122491016983986, + 0.011716747656464577, + 0.01971553824841976, + 0.10374727845191956, + -0.027699517086148262, + -0.0028940069023519754, + -0.06559008359909058, + -0.043815597891807556, + -0.08567593991756439, + -0.020056227222085, + 0.08443168550729752, + -0.07323337346315384, + 0.07252237200737, + -0.0346614271402359, + -0.09302297234535217, + -0.06357557326555252, + 0.005887998733669519, + -0.002481106435880065, + -0.054628778249025345, + -0.02226330153644085, + -0.007354443892836571, + 0.051547762006521225, + -0.02048579230904579, + -0.01946372538805008, + 0.058272674679756165, + 0.08046191185712814, + 0.05178476497530937, + 0.030958283692598343, + 0.05071825906634331, + 0.01489404495805502, + -0.039786577224731445, + -0.011561215855181217, + -0.03267654404044151, + -0.03783131763339043, + 0.020856106653809547, + -0.024885127320885658, + 0.008080259896814823, + -0.00919120293110609, + 0.0014479293022304773, + 0.03741656616330147, + 0.0582430474460125, + 0.06085006147623062, + 0.027329202741384506, + 0.000738777220249176, + -0.0003268024593126029, + 0.014649637043476105, + 0.008546856231987476, + 0.02390749752521515, + -0.009850363247096539, + -0.03232103958725929, + 0.04218621551990509, + -0.010613210499286652, + 0.04793349653482437, + 0.03312091901898384, + -0.025255441665649414, + -0.04716324061155319, + -0.005950952414423227, + 0.06967835873365402, + -0.01778990402817726, + -0.07151511311531067, + -0.029906591400504112, + 0.012227781116962433, + -0.05178476497530937, + 0.014412635937333107, + 0.04088271036744118, + 0.014316354878246784, + 0.036498185247182846, + 0.009043077938258648, + -0.09598549455404282, + -0.1144123375415802, + 0.04319347068667412, + 0.06559008359909058, + 0.005625075660645962, + -0.03356529772281647, + 0.06813784688711166, + -0.02926965057849884, + -0.04464510455727577, + -0.02709220163524151, + -0.04120858758687973, + 0.026440447196364403, + -0.00733592826873064, + 0.028129082173109055, + -0.026647822931408882, + 0.022559553384780884, + 0.04840749874711037, + -0.016604896634817123, + -0.00414011487737298, + 0.07216686755418777, + 0.04206771403551102, + -0.07341112196445465, + 0.0044511789456009865, + -0.02906227298080921, + -0.037505440413951874, + -0.029728839173913002, + -0.026692261919379234, + 0.0389866977930069, + 0.010191052220761776, + 0.0019589632283896208, + -0.05646554008126259, + 0.05759129300713539, + -0.035520557314157486, + 0.05125151202082634, + 0.00739517854526639, + 0.04061608389019966, + -0.06179806590080261, + 0.06796009838581085, + -0.026484886184334755, + -0.04106045886874199, + -0.0233446191996336, + 0.05317714810371399, + 0.056524790823459625, + -0.03158041089773178, + 0.06381257623434067, + 0.027210701256990433, + 0.029625151306390762, + -0.0010998337529599667, + 0.003284688573330641, + -0.006347188726067543, + -0.04662998765707016, + -0.06470133364200592, + -0.03270616754889488, + -0.05332527309656143, + 0.015042170882225037, + 0.05228839069604874, + 0.012975816614925861, + -0.05779867246747017, + 0.043045345693826675, + -0.05012575536966324, + 0.0478149950504303, + 0.04606711119413376, + -0.0007804376073181629, + 0.07406287640333176, + -0.06286457180976868, + -0.0009989230893552303, + -0.0527920201420784, + 0.030306529253721237, + 0.06837484985589981, + -0.02478143945336342, + 0.03042503073811531, + -0.03392079845070839, + 0.0713966116309166, + -0.05427327752113342, + -0.040941961109638214, + 0.05453990399837494, + 0.04449697583913803, + 0.030158404260873795, + 0.05492503196001053, + 0.019863663241267204, + 0.04793349653482437, + -0.028306832537055016, + -0.00582134211435914, + -0.009642986580729485, + -0.03098790906369686, + -0.011079806834459305, + -0.004154927562922239, + -0.030291717499494553, + 0.013457224704325199, + -0.017138149589300156, + -0.02713663876056671, + -0.02202630043029785, + 0.019508162513375282, + 0.005525090731680393, + -0.03220253810286522, + 0.011346433311700821, + 0.07512938231229782, + 0.0913047194480896, + -0.04908887669444084, + 0.03232103958725929, + -0.027418076992034912, + -0.00026384901138953865, + 0.024129686877131462, + -0.0023811215069144964, + -0.02082648128271103, + 0.014975514262914658, + 0.01559764239937067, + 0.033417172729969025, + 0.01736033894121647, + -0.04503022879362106, + -0.053236398845911026, + 0.0020793152507394552, + 0.04879262298345566, + -0.08354292809963226, + 0.03318016976118088, + 0.028410520404577255, + 0.033594921231269836, + 0.003232844639569521, + -0.00496221287176013, + -0.037683192640542984, + -0.09006045758724213, + -0.019582225009799004, + -0.002295949263498187, + 0.0073396312072873116, + 0.019982164725661278, + -0.012301844544708729, + 0.05753204599022865, + 0.07033011317253113, + -0.03528355434536934, + -0.012953597120940685, + 0.006162031553685665, + -0.040171705186367035, + 0.05661366507411003, + 0.06843409687280655, + 0.0038475666660815477, + -0.0924304723739624, + 0.04103083536028862, + -0.0077247582376003265, + 0.050777509808540344, + 0.041327085345983505, + 0.030928658321499825, + 0.02411487326025963, + -0.04138633608818054, + -0.05225876718759537, + 0.015449516475200653, + -0.017108524218201637, + -0.060405682772397995, + -0.013294287025928497, + 0.013523881323635578, + -0.06452357769012451, + -0.061561066657304764, + 0.004343787673860788, + 0.028410520404577255, + -0.05350302532315254, + -0.07370737940073013, + 0.06404957920312881, + -0.005017760209739208, + -0.037475816905498505, + 0.0044252569787204266, + 0.0720483660697937, + 0.0039179264567792416, + 0.024322248995304108, + -0.07115961611270905, + 0.08644619584083557, + 0.003153227036818862, + 0.028558645397424698, + 0.037860944867134094, + -0.007117442786693573, + 0.07785490155220032, + 0.015864267945289612, + 0.08235792070627213, + 0.04974063113331795, + 0.044970981776714325, + -0.03643893823027611, + -0.009702237322926521, + -0.01845647022128105, + 0.0063805170357227325, + 0.012035218067467213, + 0.08721644431352615, + -0.06108706071972847, + -0.009398579597473145, + -0.041534461081027985, + 0.03279504179954529, + -0.00987258180975914, + -0.043045345693826675, + 0.036527812480926514, + 0.022041112184524536, + 0.010102177038788795, + -0.0037272144109010696, + 0.04061608389019966, + 0.004058645572513342 + ] + }, + { + "id": "6fa468f9-4ba9-44f0-94fb-d5d3fd80ca36", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "nclark", + "reviewDate": "2021-12-18T18:13:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5fd398ff-dbb6-4117-b76b-19f4aee8343f", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertdavis", + "reviewDate": "2022-09-23T23:19:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ae44365b-53c2-4e13-8732-54779a9dfb08", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicholasmunoz", + "reviewDate": "2021-10-28T11:54:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3f139fc5-5251-4a0c-bec3-4c617701f6d1", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "gibsonjulia", + "reviewDate": "2021-12-08T20:07:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5e9332e3-e3f9-41cf-88d8-37d5e1113a20", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "joy68", + "reviewDate": "2021-06-04T22:45:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "57c11f77-f102-4d02-883e-5555882d6e9f", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "andrewmyers", + "reviewDate": "2021-07-03T17:33:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e1004aa8-e986-4c24-9579-7588880fa6cb", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "wrocha", + "reviewDate": "2021-12-29T20:59:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "08a5d914-cc40-471a-a061-7d4d61c3b000", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissahester", + "reviewDate": "2022-01-19T04:46:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "549a4ae6-a3d9-4742-98be-0384b5eee4d7", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcdanielteresa", + "reviewDate": "2021-08-14T12:49:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "506c5fb5-60b2-4a74-9928-a924ea437fb4", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnathanarellano", + "reviewDate": "2022-11-29T01:12:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3c1a8ed9-7e5b-4ee7-85bf-e95f2315c4d5", + "productId": "434d2eb2-bb97-4840-bf97-9015e701550d", + "category": "Electronics", + "docType": "customerRating", + "userName": "grantgrace", + "reviewDate": "2021-07-30T05:51:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1cb4878d-00c6-4a85-a260-bcb18540613f", + "productId": "1cb4878d-00c6-4a85-a260-bcb18540613f", + "category": "Media", + "docType": "product", + "name": "Luxe TV Pro (Steel)", + "description": "This Luxe TV Pro (Steel) is rated 3.7 out of 5 by 30.\n\nRated 4 out of 5 by Lass from My daughter likes that I buy these...", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-09-01T03:28:31", + "price": 228.25, + "stock": 17, + "priceHistory": [ + { + "priceDate": "2019-09-01T03:28:31", + "newPrice": 244.48 + }, + { + "priceDate": "2021-03-04T03:28:31", + "newPrice": 245.64 + }, + { + "priceDate": "2022-09-05T03:28:31", + "newPrice": 238.7 + }, + { + "priceDate": "2024-03-08T03:28:31", + "newPrice": 217.95 + }, + { + "priceDate": "2025-09-09T03:28:31", + "newPrice": 244.12 + }, + { + "priceDate": "2025-09-09T04:58:24.969666", + "newPrice": 228.25 + } + ], + "descriptionVector": [ + 0.0008097038371488452, + 0.024768149480223656, + -0.03846406936645508, + 0.0886782631278038, + 0.011172656901180744, + 0.016633450984954834, + -0.04961162060499191, + -0.002038382226601243, + 0.011919593438506126, + 0.058851029723882675, + 0.03271454572677612, + -0.024002382531762123, + -0.066584013402462, + -0.00459145987406373, + 0.038187891244888306, + -0.005131262354552746, + 0.02573477290570736, + -0.008398323319852352, + 0.005583190359175205, + -0.028170160949230194, + 0.021792957559227943, + -0.06889387220144272, + -0.08174870163202286, + 0.04931033402681351, + 0.07029986381530762, + 0.0006363079301081598, + -0.045720018446445465, + 0.02454218454658985, + 0.042405884712934494, + -0.08636840432882309, + 0.006992326118052006, + 0.03276475891470909, + -0.08782462030649185, + 0.06397287547588348, + -0.01685941405594349, + -0.0012208324624225497, + 0.09595932066440582, + -0.017738163471221924, + 0.028772730380296707, + 0.05217254161834717, + -0.05074143782258034, + -0.00706764729693532, + -0.0213912446051836, + -0.029149336740374565, + 0.029751908034086227, + -0.10344123095273972, + 0.01919437386095524, + 0.029751908034086227, + 0.007306164596229792, + -0.017248574644327164, + -0.042631845921278, + -0.015880238264799118, + -0.07622513920068741, + -0.004390603397041559, + -0.007437977008521557, + -0.02586030773818493, + 0.0025624928530305624, + 0.10926607996225357, + 0.03600357472896576, + -0.008078208193182945, + -0.038062356412410736, + -0.029651479795575142, + -0.009936132468283176, + -0.0017198360292240977, + -0.08506283909082413, + -0.004977481439709663, + -0.045720018446445465, + 0.0074254232458770275, + 0.02618670091032982, + 0.08139720559120178, + 0.009741553105413914, + -0.004443955607712269, + 0.0456698052585125, + 0.028622088953852654, + 0.06437458842992783, + 0.018566695973277092, + 0.02343747392296791, + -0.037535108625888824, + -0.010256248526275158, + -0.031559620052576065, + 0.06467587500810623, + 0.014725311659276485, + 0.018428606912493706, + 0.01734900288283825, + 0.0676887258887291, + 0.031484298408031464, + -0.032212402671575546, + -0.11910805851221085, + -0.04697537422180176, + 0.08651904761791229, + -0.038966212421655655, + 0.07135436683893204, + 0.016784092411398888, + -0.054633039981126785, + -0.022721920162439346, + 0.002113703638315201, + 0.010099329054355621, + 0.03751000016927719, + -0.021428905427455902, + 0.00963484775274992, + -0.011404898017644882, + 0.0025860308669507504, + -0.036631252616643906, + -0.04808008670806885, + 0.04185352846980095, + 0.048908621072769165, + 0.0346226841211319, + -0.019696516916155815, + 0.009747829288244247, + -0.17886294424533844, + 0.004651089198887348, + 0.0009752537007443607, + -0.06221538037061691, + -0.06206473708152771, + -0.014461686834692955, + 0.043912310153245926, + -0.003187031950801611, + -0.04275738447904587, + -0.00014181584992911667, + -0.009722722694277763, + 0.02711566351354122, + 0.06904450803995132, + -0.038313426077365875, + -0.010645408183336258, + 0.047929443418979645, + 0.0042933132499456406, + -0.007663940545171499, + 0.024517077952623367, + 0.06326987594366074, + -0.08019205927848816, + -0.05292575806379318, + 0.07793242484331131, + 0.010582640767097473, + 0.033693719655275345, + -0.051243580877780914, + 0.06653380393981934, + 0.001427966053597629, + 0.007538405247032642, + 0.03926749527454376, + -0.00959718693047762, + 0.019370123744010925, + 1.2216416507726535e-05, + 0.0150140430778265, + 0.0024573570117354393, + 0.033894579857587814, + 0.0007724354509264231, + -0.04953629896044731, + -0.046623874455690384, + 0.026236914098262787, + 0.06166302412748337, + 0.05146954581141472, + -0.05126868933439255, + -0.04220502823591232, + -0.01264142245054245, + 0.012610038742423058, + 0.016495361924171448, + -0.057947173714637756, + 0.040196459740400314, + -0.0569428913295269, + -0.021140173077583313, + -0.018340732902288437, + -0.043510597199201584, + -0.0003444379544816911, + -0.03489886224269867, + 0.02827058918774128, + 0.06894408166408539, + 0.020713353529572487, + 0.019734175875782967, + -0.12422990798950195, + 0.007908734492957592, + -0.010243694297969341, + 0.018955856561660767, + 0.0617634542286396, + -0.03171025961637497, + -0.04491659253835678, + -0.031358759850263596, + 0.04431402310729027, + 0.007839689962565899, + 0.02437898889183998, + -0.005231691058725119, + 0.06894408166408539, + 0.06402309238910675, + -0.03607889637351036, + -0.06497716158628464, + 0.0757732093334198, + -0.03449714928865433, + 0.06050809845328331, + -0.033292006701231, + -0.003910430241376162, + 0.03555164486169815, + -0.024454310536384583, + 0.005812292452901602, + -0.014248276129364967, + -0.03507461026310921, + -0.07346335798501968, + -0.021127620711922646, + 0.04705069586634636, + -0.003361212322488427, + -0.1026880219578743, + 0.002575046382844448, + 0.006898174528032541, + 0.00024028275220189244, + 0.07240886241197586, + -0.07989077270030975, + 0.038639817386865616, + -0.04132627695798874, + 0.015390649437904358, + 0.028295695781707764, + 0.07255950570106506, + -0.011492772959172726, + 0.003753510769456625, + -0.01513957791030407, + 0.0015809624455869198, + 0.04062328115105629, + 0.03600357472896576, + 0.062416236847639084, + 0.009779213927686214, + -0.04438934475183487, + -0.07843456417322159, + -0.06382223218679428, + 0.04348548874258995, + -0.02237042225897312, + 0.04519277065992355, + -0.029676586389541626, + -0.06422395259141922, + -0.02078867517411709, + 0.01762518100440502, + 0.03525036200881004, + 0.012277369387447834, + 0.03761042654514313, + 0.046749409288167953, + -0.013432295992970467, + -0.02311108075082302, + 0.03243836760520935, + -0.0021152726840227842, + -0.009867087937891483, + -0.040397316217422485, + -0.02982722967863083, + -0.00246049533598125, + 0.04830605164170265, + -0.019294802099466324, + -0.05322704091668129, + -0.00900089368224144, + -0.07557235658168793, + 0.001245939638465643, + -0.057545460760593414, + 0.12985388934612274, + 0.0020854580216109753, + -0.029224658384919167, + -0.01132957637310028, + -0.08054356276988983, + -0.07004879415035248, + -0.055938608944416046, + 0.07507021725177765, + 0.03060554899275303, + 0.04521787911653519, + 0.040196459740400314, + 0.01129191555082798, + 0.036229539662599564, + 0.02229510061442852, + -0.042154811322689056, + 0.012559824623167515, + 0.014574668370187283, + 0.02144145965576172, + 0.056842461228370667, + -0.033040937036275864, + -0.016194075345993042, + -0.09043575823307037, + -0.012471949681639671, + 0.027768447995185852, + -0.08576583862304688, + -0.028295695781707764, + 0.02392706088721752, + 0.026086270809173584, + -0.04830605164170265, + -0.033568184822797775, + -0.02704034186899662, + 0.04971204698085785, + -0.02749226987361908, + -0.013055689632892609, + 0.08948168903589249, + 0.011630862019956112, + -0.02316129580140114, + -0.006697317585349083, + 0.09344860911369324, + -0.05151975899934769, + 0.002785318298265338, + -0.004503585398197174, + 0.057495247572660446, + -0.01918182149529457, + 0.006904451176524162, + 0.055938608944416046, + 0.0742165744304657, + -0.08325512707233429, + 0.023186402395367622, + 0.004189746454358101, + 0.041828420013189316, + -0.0158676840364933, + 0.03924239054322243, + 0.011222871020436287, + 0.008856527507305145, + 0.018152428790926933, + -0.01943289116024971, + -0.0964614599943161, + -0.0036342518869787455, + 0.03504950553178787, + 0.02470538206398487, + 0.04757794365286827, + -0.032865189015865326, + -0.011404898017644882, + 0.017687948420643806, + 0.057746317237615585, + -0.03813767805695534, + -0.019319908693432808, + 0.030982155352830887, + -0.00879376009106636, + -0.05789696052670479, + 0.05814803019165993, + 0.012440565973520279, + 0.01394699141383171, + -0.06698572635650635, + 0.029299980029463768, + -0.05829867348074913, + 0.085263691842556, + -0.0013526447582989931, + -0.028245482593774796, + 0.0016649141907691956, + -0.07522085309028625, + 0.020751014351844788, + 0.004914714023470879, + 0.009151536040008068, + 0.030630655586719513, + -0.03404521942138672, + 0.06035745516419411, + 0.04986269026994705, + -0.0037409572396427393, + 0.016846859827637672, + -0.06748787313699722, + 0.03567718341946602, + -0.020311640575528145, + 0.019407784566283226, + 0.07984056323766708, + 0.020135890692472458, + -0.015541291795670986, + 0.0616128109395504, + -0.013859116472303867, + 0.0074128699488937855, + 0.005441962741315365, + 0.021792957559227943, + 0.0023208369966596365, + 0.0015778240049257874, + -0.02663862705230713, + -0.01092158630490303, + -0.023412365466356277, + 0.040522851049900055, + 0.03186090290546417, + 0.024165578186511993, + -0.004327835515141487, + -0.00039327910053543746, + 0.048004765063524246, + 0.06211495399475098, + -0.012440565973520279, + 0.01919437386095524, + 0.04413827136158943, + 0.024416649714112282, + 0.0245045255869627, + -0.03560186177492142, + 0.015415756031870842, + -0.05217254161834717, + 0.026789270341396332, + 0.021529333665966988, + -0.050389938056468964, + -0.01149904914200306, + 0.06648358702659607, + 0.05583817884325981, + -0.00418346980586648, + 0.08566540479660034, + 0.021403798833489418, + -0.02156699448823929, + 0.02024887129664421, + -0.05101761594414711, + 0.05844931676983833, + 0.029676586389541626, + -0.03444693610072136, + -0.021541887894272804, + 0.08139720559120178, + -0.026487985625863075, + -0.004949236288666725, + -0.03140897676348686, + 0.0062328362837433815, + 0.02879783883690834, + -0.03919217362999916, + 0.035200148820877075, + 0.039543673396110535, + 0.030856620520353317, + -0.018503928557038307, + -0.00851130485534668, + 0.07582342624664307, + 0.01153670996427536, + -0.06477630138397217, + -0.03738446533679962, + 0.04486637935042381, + -0.014913614839315414, + -0.11378535628318787, + 0.018265411257743835, + -0.05116825923323631, + 0.004001443274319172, + 0.007519574835896492, + -0.003922983538359404, + -0.07135436683893204, + -0.06432437896728516, + -0.07512042671442032, + 0.029400408267974854, + -0.0032796142622828484, + 0.01775071583688259, + 0.024316221475601196, + 0.07286079227924347, + 0.012653975747525692, + 0.07120372354984283, + -0.024856023490428925, + 0.06527844816446304, + 0.06788958609104156, + 0.0038508006837219, + -0.013168671168386936, + 0.0506410114467144, + -0.01771305501461029, + -0.07225821912288666, + -0.02970169298350811, + -0.027015233412384987, + -0.02155444025993347, + 0.03886578232049942, + -0.04853201285004616, + -0.030957048758864403, + 0.003354935673996806, + -0.00606650160625577, + 0.01478807907551527, + -0.06532865762710571, + 0.031685154885053635, + 0.009572080336511135, + 0.007940119132399559, + -0.035852931439876556, + -0.05187125876545906, + 0.05192147195339203, + 0.06618230044841766, + -0.06919515132904053, + -0.0019191235769540071, + 0.0077957529574632645, + 0.05312661454081535, + -0.03191111609339714, + -0.012748127803206444, + 0.06246645376086235, + 0.004600875079631805, + -0.01722346805036068, + -0.041175637394189835, + -0.03502439707517624, + -0.023713652044534683, + 0.057947173714637756, + 0.06859258562326431, + 0.0070362635888159275, + -0.05453260987997055, + -0.03309115022420883, + 0.0821504145860672, + 0.0017637733835726976, + 0.09746574610471725, + -0.08084484934806824, + -0.06492694467306137, + -0.031358759850263596, + -0.01726112700998783, + -0.00961601734161377, + 0.023462580516934395, + -0.07582342624664307, + -0.05608924850821495, + -0.07913756370544434, + 0.03474821895360947, + -0.025784986093640327, + -0.03592825308442116, + 0.04850690811872482, + -0.05895145982503891, + -0.023098526522517204, + -0.0008006809512153268, + 0.030053192749619484, + 0.023048313334584236, + 0.041828420013189316, + 0.08410876989364624, + 0.101432666182518, + 0.019621195271611214, + 0.04873287305235863, + 0.017763270065188408, + 0.055988822132349014, + -0.010036561638116837, + -0.07486935704946518, + -0.014386365190148354, + -0.062416236847639084, + -0.07692813873291016, + -0.014474240131676197, + 0.020889103412628174, + 0.010425721295177937, + -0.00836693961173296, + -0.07301143556833267, + -0.026864591985940933, + 0.08310448378324509, + 0.05084186792373657, + -0.04815540835261345, + 0.02937530167400837, + 0.002535816514864564, + -0.056189678609371185, + -0.014248276129364967, + -0.04057306423783302, + 0.05900167301297188, + 0.033894579857587814, + 0.04602130502462387, + -0.06377202272415161 + ] + }, + { + "id": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Super (Steel)", + "description": "This Luxe Keyboard Super (Steel) is a super-soft (as designed) keyboard on the latest Intel® G7 platform. With a premium", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-06-20T09:43:51", + "price": 983.1, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-01-01T22:42:56", + "newPrice": 1052.68 + }, + { + "priceDate": "2024-07-05T22:42:56", + "newPrice": 983.1 + } + ], + "descriptionVector": [ + 0.010302486829459667, + 0.05537346377968788, + -0.033654361963272095, + 0.005125631112605333, + 0.03401293233036995, + -0.04364309832453728, + -0.030504068359732628, + 0.04103066027164459, + 0.004709433764219284, + 0.06003487482666969, + 0.0980433002114296, + -0.001234185416251421, + 0.05778100714087486, + -0.04097943753004074, + 0.005906801670789719, + 0.05465632304549217, + -0.03432027995586395, + -0.025983523577451706, + 0.0018808920867741108, + -0.07350686192512512, + 0.05527101457118988, + -0.05060960352420807, + -0.007120177149772644, + -0.02509990520775318, + -0.014342802576720715, + -0.04136361926794052, + 0.04597380384802818, + 0.02812213823199272, + 0.013740917667746544, + 0.010084783658385277, + 0.04305402189493179, + -0.011499854736030102, + -0.03593384474515915, + 0.06638668477535248, + 0.02978692762553692, + -0.061622828245162964, + 0.023998582735657692, + 0.00022690762125421315, + 0.02994060143828392, + -0.013536020182073116, + -0.003087864490225911, + 0.061008136719465256, + 0.00507440697401762, + 0.045845743268728256, + 0.026790305972099304, + -0.0027356974314898252, + 0.04981562867760658, + 0.03473007306456566, + 0.004226004239171743, + -0.05176215246319771, + 0.02763550728559494, + 0.014509282074868679, + -0.032988447695970535, + 0.012850895524024963, + -0.009374045766890049, + -0.023575982078909874, + 0.014842240139842033, + 0.13328561186790466, + 0.037009552121162415, + -0.05834447219967842, + -0.028096526861190796, + -0.06838443130254745, + -0.011884036473929882, + -0.0451798290014267, + -0.03747057169675827, + -0.0417478010058403, + -0.01669912040233612, + -0.0018616829765960574, + 0.03539598733186722, + 0.11177141219377518, + -0.04361748695373535, + -0.003883441910147667, + 0.035677723586559296, + 0.033321402966976166, + 0.07586318254470825, + -0.008509635925292969, + 0.0720725804567337, + 0.002972609829157591, + 0.05875426530838013, + -0.03155416622757912, + 0.08344437927007675, + 0.005461790598928928, + -0.05911283567547798, + -0.05137796700000763, + 0.0949186235666275, + 0.02489500679075718, + 0.05901039019227028, + -0.10818571597337723, + -0.072379931807518, + 0.08395662158727646, + -0.04031351953744888, + 0.02730255015194416, + -0.003748978255316615, + -0.06315955519676208, + 0.047561757266521454, + -0.00014797017502132803, + -0.08072949200868607, + 0.03470446169376373, + -0.04054402932524681, + 0.0027453021612018347, + 0.004965555388480425, + -0.051557254046201706, + -0.022679556161165237, + -0.058651819825172424, + 0.008740145713090897, + 0.03537037596106529, + 0.04333575442433357, + -0.013779335655272007, + -0.05819080024957657, + -0.12324565649032593, + 0.015713052824139595, + -0.0030222334899008274, + -0.006172527559101582, + -0.0016535843024030328, + -0.035857006907463074, + -0.005388155579566956, + -0.05982997640967369, + 0.023473532870411873, + 0.009585346095263958, + 0.024203479290008545, + 0.03127243369817734, + 0.05916406214237213, + -0.0066207400523126125, + -0.025407250970602036, + -0.04781787842512131, + -0.004005099646747112, + -0.009354837238788605, + -0.029812540858983994, + 0.016430193558335304, + -0.018671255558729172, + -0.08738864958286285, + 0.09691637009382248, + 0.011762378737330437, + 0.08093439042568207, + -0.023486340418457985, + 0.03201518580317497, + 0.008855399675667286, + 0.13410520553588867, + -0.004879114218056202, + 0.04812522605061531, + 0.02922346070408821, + -0.0568077452480793, + 0.002244264353066683, + -0.010424144566059113, + -0.05737121030688286, + -0.01631493866443634, + -0.06905034929513931, + 0.013587244786322117, + 0.009969528764486313, + 0.04113310948014259, + 0.09722371399402618, + -0.0028173362370580435, + -0.05086572468280792, + -0.024498019367456436, + 0.05137796700000763, + 0.08902782946825027, + -0.09676269441843033, + -0.0012998165329918265, + 0.036241188645362854, + 0.04105627164244652, + -0.005013578105717897, + -0.007075355853885412, + -0.03554966300725937, + 0.004129958804696798, + -0.0009476494742557406, + 0.06607934087514877, + 0.0189529899507761, + 0.008624890819191933, + -0.015405707061290741, + 0.014406832866370678, + -0.023524757474660873, + 0.02010553516447544, + -0.008823384530842304, + -0.06715504825115204, + -0.00035396788734942675, + -0.04010862484574318, + 0.052325617522001266, + 0.021757518872618675, + 0.02604755386710167, + 0.0036657387390732765, + 0.0264317374676466, + 0.013395152986049652, + -0.07299461960792542, + 0.003553685499355197, + 0.10137288272380829, + 0.015290452167391777, + 0.02431873418390751, + 0.03987811505794525, + 0.0001138540028478019, + 0.01680156961083412, + -0.008983461186289787, + -0.014598924666643143, + -0.025829851627349854, + -0.015047136694192886, + -0.013139031827449799, + 0.005958025809377432, + 0.05588570609688759, + 0.07284095138311386, + 0.004040316212922335, + -0.001438282197341323, + -0.009329224936664104, + 0.08113928139209747, + -0.03657414764165878, + -0.046998292207717896, + 0.005314520560204983, + 0.009073103778064251, + -0.007850123569369316, + 0.00748515035957098, + 0.022231344133615494, + 0.05009736120700836, + -0.00010885162919294089, + 0.018351104110479355, + -0.00020789859991054982, + -0.006326200440526009, + 0.056397948414087296, + -0.00987988617271185, + 0.016225295141339302, + -0.0034608414862304926, + -0.04428340494632721, + -0.0866202861070633, + 0.018696868792176247, + -0.0055002085864543915, + 0.04576890915632248, + -0.04681900516152382, + -0.047177575528621674, + -0.04510299116373062, + 0.08282968401908875, + -0.05875426530838013, + 0.011858424171805382, + 0.030862638726830482, + -0.012946940958499908, + -0.041235558688640594, + 0.04648604989051819, + 0.03378242254257202, + 0.01774921827018261, + -0.027609895914793015, + -0.017480291426181793, + -0.049200937151908875, + 0.006156519986689091, + 0.05757610872387886, + 0.022333793342113495, + -0.06956259161233902, + -0.029249072074890137, + -0.05527101457118988, + 0.0013222271809354424, + -0.0011053242487832904, + 0.09456004947423935, + 0.013920201919972897, + -0.042490553110837936, + 0.009137134067714214, + -0.04374554753303528, + -0.006652755197137594, + -0.062493640929460526, + 0.0942014828324318, + -0.016110040247440338, + 0.09942635893821716, + -0.008957848884165287, + -0.0170320775359869, + 0.033321402966976166, + 0.007856526412069798, + 0.01292773149907589, + -0.053222041577100754, + -0.02143736742436886, + 0.049636341631412506, + -0.030913863331079483, + 0.04907287657260895, + 0.01741626113653183, + -0.07786092907190323, + -0.032604265958070755, + 0.01996466889977455, + 0.04884236678481102, + -0.0022330591455101967, + 0.0797562301158905, + 0.038648732006549835, + 0.006966504268348217, + -0.002559614134952426, + -0.028557544574141502, + 0.03280916064977646, + -0.025420056656003, + -0.08144663274288177, + 0.04274667426943779, + 0.07074075192213058, + 0.08913027495145798, + 0.004542954731732607, + 0.10383164882659912, + -0.010814729146659374, + -0.0017640367150306702, + -0.003332780674099922, + 0.02258991450071335, + 0.004590977448970079, + -0.03934025764465332, + 0.06725750118494034, + 0.03198957443237305, + 0.029863763600587845, + -0.016968047246336937, + 0.0012189781991764903, + 0.061674050986766815, + -0.027712343260645866, + 0.019081050530076027, + -0.02351195178925991, + 0.0682307630777359, + -0.017301006242632866, + -0.029325909912586212, + -0.07627297937870026, + 0.019657323136925697, + 0.07909031212329865, + 0.006268572993576527, + 0.0529659204185009, + -0.06336445361375809, + -0.03181028738617897, + 0.05450265109539032, + -0.010929984040558338, + -0.04218320921063423, + 0.003672141581773758, + 0.06377425044775009, + 0.02735377475619316, + 0.02513832226395607, + 0.011211717501282692, + 0.03726567327976227, + 0.005884390790015459, + -0.014125099405646324, + -0.05055838078260422, + -0.1021924689412117, + 0.0827784612774849, + 0.021911192685365677, + -0.03862312063574791, + -0.006214147433638573, + 0.03529353812336922, + -0.009777437895536423, + -0.07412155717611313, + -0.013164644129574299, + 0.024869395419955254, + -0.02812213823199272, + 0.03070896491408348, + 0.013484795577824116, + -0.0008283929200842977, + -0.020131148397922516, + 0.05445142462849617, + -0.009438076056540012, + -0.016378968954086304, + 0.08805456757545471, + -0.007786092814058065, + -0.04556401073932648, + -0.026508573442697525, + -0.040185458958148956, + -0.010475368238985538, + -0.006665561348199844, + -0.02812213823199272, + 0.02182154916226864, + 0.045461561530828476, + 0.0012710028095170856, + -0.011935261078178883, + 0.05593693256378174, + -0.0032911610323935747, + 0.04594819247722626, + -0.010084783658385277, + 0.017736412584781647, + -0.015303258784115314, + -0.02604755386710167, + 0.07734868675470352, + -0.009354837238788605, + -0.04825328662991524, + 0.05014858394861221, + 0.06566954404115677, + -0.04879114031791687, + 0.008733742870390415, + -0.04328453168272972, + -0.014342802576720715, + -0.033987320959568024, + 0.06300588697195053, + 0.06146915629506111, + -0.02052813582122326, + 0.02258991450071335, + 0.101885125041008, + -0.016007592901587486, + 0.05849814414978027, + 0.006451059598475695, + 0.008605681359767914, + -0.0170833021402359, + 0.07755358517169952, + 0.04100504890084267, + 0.027379386126995087, + 0.03239936754107475, + -0.0016839987365528941, + 0.043976057320833206, + -0.0531708188354969, + -0.028762441128492355, + -0.005647478625178337, + -0.009226776659488678, + 0.038315773010253906, + -0.023063739761710167, + 0.008656905964016914, + -0.042823512107133865, + 0.03718883916735649, + -0.0005838769138790667, + 0.03621557727456093, + 0.02150139771401882, + 0.02955641783773899, + -0.02653418481349945, + 0.025010261684656143, + 0.009803049266338348, + 0.0794488862156868, + 0.029684480279684067, + -0.12508973479270935, + -0.012178576551377773, + -0.08897659927606583, + -0.007190610282123089, + 0.0179413091391325, + -0.020028699189424515, + -0.029249072074890137, + -0.00880417600274086, + -0.06315955519676208, + 0.013920201919972897, + 0.004907927941530943, + 0.028147749602794647, + -0.02134772576391697, + 0.13512969017028809, + 0.05434897914528847, + 0.020131148397922516, + -0.054861221462488174, + 0.0436687134206295, + -0.02255149558186531, + -0.03823893517255783, + 0.019465232267975807, + 0.024382764473557472, + -0.01050738338381052, + -0.009995141066610813, + -0.04889358952641487, + 0.05527101457118988, + -0.04264422506093979, + 0.011429420672357082, + -0.06730872392654419, + -0.011346181854605675, + -0.0568077452480793, + -0.008163872174918652, + -0.018197430297732353, + 0.00524088554084301, + -0.0036401264369487762, + -0.0072802528738975525, + 0.11238610744476318, + -0.04582013189792633, + -0.029863763600587845, + 0.0007347484934143722, + -0.016635090112686157, + -0.08093439042568207, + 0.005932413972914219, + -0.03688149154186249, + 0.057985901832580566, + 0.0567052960395813, + -0.041901472955942154, + -0.022922871634364128, + -0.006226953584700823, + -0.03621557727456093, + -0.059317734092473984, + 0.029044175520539284, + -0.002746902871876955, + 0.023383891209959984, + 0.09732615947723389, + 0.0008419993682764471, + -0.000281333428574726, + 0.016417386010289192, + 0.06817954033613205, + 0.08134417980909348, + -0.03247620165348053, + -0.052607350051403046, + 0.016135653480887413, + -0.016775956377387047, + 0.008823384530842304, + 0.021373337134718895, + 0.03987811505794525, + 0.017633963376283646, + -0.04630676284432411, + 0.00940606091171503, + -0.014265966601669788, + 0.00044140935642644763, + -0.09568698704242706, + 0.03900730237364769, + -0.018120594322681427, + -0.02590668760240078, + 0.00880417600274086, + -0.008419993333518505, + -0.009892691858112812, + 0.011211717501282692, + 0.005833166651427746, + 0.0642864927649498, + 0.0062845805659890175, + 0.04438585042953491, + 0.061008136719465256, + 0.08974496275186539, + 0.005801151506602764, + -0.022666750475764275, + 0.016327744349837303, + -0.06956259161233902, + -0.11658649891614914, + -0.04395044595003128, + -0.004341259133070707, + -0.014099487103521824, + 0.01828707382082939, + 0.024882201105356216, + 0.05839569866657257, + -0.029428357258439064, + -0.06910157203674316, + -0.023486340418457985, + 0.053375717252492905, + -0.02620122767984867, + 0.018556000664830208, + -0.019465232267975807, + 0.10306328535079956, + 0.04635798931121826, + 0.07432645559310913, + 0.04582013189792633, + -0.10705877840518951 + ] + }, + { + "id": "2676c734-7fc1-49cb-8e41-ef8d6a715993", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinejohnson", + "reviewDate": "2022-08-13T05:56:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9906f16e-8393-4595-973f-c2de98ebcd6a", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zmatthews", + "reviewDate": "2021-04-01T12:51:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2ca3414d-7a9f-4d60-845a-1f6f7ba1399a", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ernest21", + "reviewDate": "2021-12-25T01:41:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "af5976c1-bb47-49fd-85ad-e94b6bdc18f0", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ronniecook", + "reviewDate": "2021-01-01T22:42:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9348ab0d-c58e-4cf7-b42d-ca75e3d29a1e", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "westsusan", + "reviewDate": "2021-11-17T23:45:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "49e2196c-31fc-4924-bb01-1d6d7d506c2d", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "csmith", + "reviewDate": "2021-11-11T00:16:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6ce960e4-36a7-4829-bbc1-19363cf76715", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zcain", + "reviewDate": "2022-07-31T23:13:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "152771a4-9e4f-474a-97bd-7636dee86543", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "iwilson", + "reviewDate": "2021-10-30T17:31:47", + "stars": 4, + "verifiedUser": true + }, + { + "id": "804a2518-41d9-4f87-8089-f347c3a2af86", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "justinmyers", + "reviewDate": "2021-03-24T11:12:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8fba8b52-53bf-41c8-9490-6be7d0b821fb", + "productId": "5da45af7-8f28-4230-8dc9-dff3513584d7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andrew72", + "reviewDate": "2022-04-22T14:07:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7978a7e2-8701-4243-979a-cedb75867a46", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Ultra (Silver)", + "description": "This Premium Phone Ultra (Silver) is made from solid Aluminum and comes packed with an anti-crosstalk coating to be used on the handset. It also boasts two USB Type-C ports on the back. The phone is also rated to perform flawlessly at up to 940 RMS. The phone also features 2GB of DDR", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-09-03T22:47:59", + "price": 264.48, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-01-13T16:03:13", + "newPrice": 239.51 + }, + { + "priceDate": "2022-12-24T16:03:13", + "newPrice": 264.48 + } + ], + "descriptionVector": [ + -0.01325675006955862, + 0.04484834149479866, + -0.028466612100601196, + 0.009405456483364105, + 0.002372726332396269, + -0.02205796167254448, + -0.07670848816633224, + 0.057470329105854034, + 0.043334681540727615, + 0.03308083862066269, + 0.02258286066353321, + 0.0004898039624094963, + 0.0017562751891091466, + -0.005276455078274012, + 0.035448987036943436, + -0.008264106698334217, + -0.05883751064538956, + -0.04970670863986015, + 0.02221665345132351, + 0.0034362568985670805, + 0.08403265476226807, + -0.04487275704741478, + -0.050683263689279556, + -0.050097331404685974, + -0.05478480085730553, + -0.050585608929395676, + 0.024548180401325226, + 0.00556942168623209, + 0.042895231395959854, + -0.027709782123565674, + 0.02612287737429142, + -0.003524757456034422, + -0.035790782421827316, + 0.02656232751905918, + -0.021130234003067017, + 0.016357315704226494, + 0.02639142982661724, + -0.05576135590672493, + 0.09311462938785553, + -0.008373969234526157, + 0.020959336310625076, + 0.017346078529953957, + -0.0006225545657798648, + 0.02214341051876545, + 0.03281228616833687, + -0.02675763890147209, + -0.004583710338920355, + 0.07104445993900299, + 0.03852514177560806, + -0.004794280510395765, + 0.004800383932888508, + 0.002169785788282752, + -0.020959336310625076, + -0.00332639436237514, + 0.04167453572154045, + -0.03798803314566612, + 0.02958965115249157, + 0.18281131982803345, + 0.07539013773202896, + 0.01278067845851183, + 0.061816006898880005, + -0.02194809913635254, + -0.020239125937223434, + 0.039111074060201645, + 0.00460202107205987, + 0.012487712316215038, + -0.01481924019753933, + -0.0225096195936203, + -0.016931042075157166, + 0.06757768988609314, + -0.008923281915485859, + 0.001520528458058834, + 0.05327113717794418, + 0.0843256264925003, + -0.021252304315567017, + 0.08437445014715195, + 0.012231365777552128, + -0.004211398307234049, + 0.06269490718841553, + -0.0008773746667429805, + 0.04226046800613403, + 0.05869102478027344, + -0.017602425068616867, + 0.006249959580600262, + 0.07314405590295792, + 0.008465521037578583, + 0.031469523906707764, + -0.10185480862855911, + -0.010290460661053658, + 0.06332966685295105, + 0.0036285165697336197, + 0.024487145245075226, + 0.04125949740409851, + -0.054638318717479706, + 0.00958856102079153, + 0.030663862824440002, + -0.010320978239178658, + 0.03354470431804657, + -0.046899110078811646, + 0.001480855862610042, + 0.032128699123859406, + -0.020739611238241196, + 0.012396159581840038, + 0.023913418874144554, + 0.042455777525901794, + 0.11474534869194031, + 0.04011204466223717, + -0.0048461598344147205, + 0.0071410671807825565, + -0.07045852392911911, + -0.015368552878499031, + -0.024560388177633286, + -0.02665998414158821, + 0.0017730598337948322, + 0.016613662242889404, + 0.04074680432677269, + -0.043481163680553436, + 0.012359539046883583, + -0.0512203723192215, + -0.02675763890147209, + -0.06284139305353165, + 0.028246887028217316, + -0.04948698356747627, + -0.02255844697356224, + 0.01475820504128933, + -0.04011204466223717, + 0.02614729106426239, + 0.04863249883055687, + -0.008306831121444702, + 0.0020431384909898043, + -0.09179627895355225, + 0.035473402589559555, + 0.00041312904795631766, + 0.0010353021789342165, + -0.013671786524355412, + -0.01306143868714571, + -0.019640985876321793, + 0.08574163168668747, + 0.00941766332834959, + 0.061230070888996124, + -0.008343451656401157, + 0.043432336300611496, + 0.046044621616601944, + -0.017956426367163658, + -0.07236281037330627, + 0.02290024235844612, + -0.050048504024744034, + -0.014111236669123173, + 0.004309053998440504, + 0.03449684754014015, + -0.0034942401107400656, + -0.08920840919017792, + -0.019518915563821793, + -0.050536781549453735, + -0.006817582529038191, + -0.05488245561718941, + -0.0660640224814415, + -0.0380856916308403, + 0.003057841444388032, + 0.05126919969916344, + -0.0048339529894292355, + -0.04787566512823105, + 0.0029327203519642353, + -0.030688278377056122, + 0.019299190491437912, + 0.027538884431123734, + 0.06713823974132538, + 0.09462828934192657, + 0.00368344783782959, + 0.030810346826910973, + 0.020117057487368584, + 0.005703698378056288, + 0.021032579243183136, + -0.06772416830062866, + 0.043261438608169556, + 0.023730315268039703, + 0.010180598124861717, + 0.0218382366001606, + 0.015978900715708733, + -0.03620582073926926, + 0.046654969453811646, + 0.007427930366247892, + -0.07436475157737732, + -0.023168794810771942, + 0.02949199639260769, + 0.08447210490703583, + -0.011291430331766605, + -0.021044785156846046, + -0.009722837246954441, + 0.035668715834617615, + 0.001192466588690877, + 0.027636539191007614, + -0.0670405775308609, + -0.011517259292304516, + 0.01817615143954754, + 0.004827849566936493, + 0.07622020691633224, + 0.04108859971165657, + -0.008013864047825336, + 0.004507416859269142, + -0.00225828611291945, + 0.06943314522504807, + 0.06782182306051254, + -0.06767534464597702, + -0.023181002587080002, + -0.053905900567770004, + 0.0030364792328327894, + 0.07553661614656448, + -0.024206386879086494, + 0.047118835151195526, + -0.04103977233171463, + -0.04003880172967911, + -0.012621988542377949, + 0.03430153429508209, + 0.04797331988811493, + 0.0220213420689106, + 0.03830541670322418, + -0.008593694306910038, + -0.0014861964154988527, + -0.05644494667649269, + 0.042187225073575974, + 0.023901212960481644, + 0.05541956424713135, + 0.0372312031686306, + -0.03820775821805, + -0.0514645092189312, + 0.0037322756834328175, + 0.06791947782039642, + 0.02944316901266575, + -0.007788035552948713, + -0.009887631051242352, + -0.010198908858001232, + 0.023864591494202614, + 0.01874987781047821, + 0.05214809998869896, + 0.1063469648361206, + 0.00947259459644556, + -0.0022476050071418285, + -0.07983347028493881, + 0.039306387305259705, + 0.0052489894442260265, + 0.015600484795868397, + -0.04111301526427269, + -0.05668908730149269, + 0.02644025906920433, + -0.035278093069791794, + 0.05141568183898926, + 0.01937243342399597, + -0.11757735908031464, + 0.006103476043790579, + 0.005535852629691362, + -0.03273904696106911, + -0.07773387432098389, + 0.02592756599187851, + 0.008148140273988247, + 0.005401576403528452, + 0.053612932562828064, + -0.08666936308145523, + 0.02661115489900112, + -0.039526112377643585, + 0.0074828616343438625, + -0.04433564841747284, + -0.06445270776748657, + -0.015051172114908695, + -0.09238221496343613, + 0.028466612100601196, + 0.038940176367759705, + -0.09350525587797165, + -0.013610751368105412, + -0.027172675356268883, + -0.03322732448577881, + 0.011688156984746456, + 0.050927404314279556, + -0.013732820749282837, + 0.03447243198752403, + 0.021191269159317017, + -0.10566337406635284, + 0.07788035273551941, + -0.01804187521338463, + -0.02232651598751545, + 0.13662020862102509, + -0.0008651677053421736, + 0.08940371870994568, + -0.01892077550292015, + 0.10468681901693344, + -0.05605432391166687, + -0.043066125363111496, + 0.019360225647687912, + 0.04863249883055687, + -0.02636701613664627, + 0.003973362967371941, + 0.011669846251606941, + -0.029003718867897987, + -0.027465641498565674, + -0.005358851980417967, + -0.05107388645410538, + 0.047118835151195526, + -0.06865189969539642, + 0.032104283571243286, + 0.0296873077750206, + 0.04802215099334717, + -0.02225327305495739, + -0.054296523332595825, + -0.023327484726905823, + 0.035912852734327316, + 0.1523427665233612, + -0.01821277290582657, + 0.035741955041885376, + -0.0034942401107400656, + -0.023657072335481644, + 0.06445270776748657, + -0.07402295619249344, + -0.06323201209306717, + -0.003189066192135215, + -0.020483264699578285, + -0.031078899279236794, + -0.061278898268938065, + -0.021618511527776718, + -0.009930355474352837, + 0.006414753384888172, + 0.03249490633606911, + 0.014440824277698994, + -0.09067323803901672, + 0.03786596655845642, + 0.014477444812655449, + 0.009320007637143135, + -0.02614729106426239, + 0.0257322546094656, + 0.061816006898880005, + 0.014880274422466755, + -0.005477869883179665, + 0.009466491639614105, + 0.005300868768244982, + -0.07119094580411911, + -0.028271300718188286, + 0.0023391572758555412, + 0.007061721757054329, + 0.08149360865354538, + 0.03832982853055, + 0.014599515125155449, + 0.03652320057153702, + 0.028808407485485077, + -0.06245076656341553, + 0.05258755013346672, + -0.008953799493610859, + -0.06235311180353165, + -0.035497818142175674, + -0.027221502736210823, + -0.01525869034230709, + 0.011517259292304516, + 0.0014915369683876634, + -0.011694259941577911, + 0.1053704097867012, + 0.04528779163956642, + 0.1221671774983406, + 0.0016189470188692212, + 0.021386580541729927, + -0.008581487461924553, + 0.01834704913198948, + 0.010900808498263359, + -0.014465237967669964, + 0.014233306050300598, + 0.07119094580411911, + 0.03244607895612717, + -0.07123976945877075, + 0.04602020978927612, + -0.011413500644266605, + 0.042187225073575974, + -0.017346078529953957, + -0.021166855469346046, + 0.03381325677037239, + 0.04204074293375015, + -0.06064413860440254, + 0.02626936137676239, + -0.07285109162330627, + 0.06572222709655762, + 0.02944316901266575, + -0.020910508930683136, + -0.00012397686077747494, + 0.04147922247648239, + -0.05854454264044762, + 0.05107388645410538, + -0.006603960879147053, + 0.011901778168976307, + 0.08085884898900986, + -0.005340541712939739, + -0.025170736014842987, + 0.09540953487157822, + -0.02269272319972515, + 0.05688439682126045, + -0.05644494667649269, + 0.020031608641147614, + 0.00914911087602377, + 0.10566337406635284, + 0.07050735503435135, + 0.027294745668768883, + -0.0032653596717864275, + 0.03806127607822418, + -0.0017959477845579386, + -0.07856394350528717, + -0.006094320677220821, + 0.013683993369340897, + -0.013720613904297352, + 0.0295652374625206, + 0.07792918384075165, + -0.024645837023854256, + 0.025195149704813957, + 0.0013496311148628592, + -0.038964591920375824, + -0.07412061095237732, + -0.010803152807056904, + -0.054491832852363586, + 0.0005897483788430691, + 0.0109191183000803, + 0.03129862621426582, + 0.021801616996526718, + 0.08437445014715195, + 0.043163783848285675, + 0.06406208127737045, + 0.008850039914250374, + 0.012609781697392464, + 0.007037308067083359, + 0.0225096195936203, + 0.010418633930385113, + -0.005627404898405075, + 0.06064413860440254, + -0.01330557744950056, + -0.004873625468462706, + 0.03762182593345642, + -0.06767534464597702, + 0.031884558498859406, + -0.010485772043466568, + 0.07587841153144836, + 0.010266046971082687, + -0.0737299919128418, + -0.02617170475423336, + 0.00917352456599474, + 0.007519482634961605, + -0.046801455318927765, + 0.007665965706110001, + -0.050439126789569855, + 0.004281588364392519, + -0.014404203742742538, + 0.015051172114908695, + -0.12802651524543762, + -0.04953581094741821, + -0.03019999898970127, + 0.016894422471523285, + -0.02944316901266575, + -0.03393532708287239, + 0.028686337172985077, + 0.004962125793099403, + 0.010479668155312538, + -0.01300040353089571, + 0.03393532708287239, + -0.012878334149718285, + 0.017907598987221718, + 0.039599351584911346, + -0.050439126789569855, + -0.0013656527735292912, + -0.06914017349481583, + 0.03835424408316612, + 0.031762488186359406, + -0.02600080706179142, + -0.021349959075450897, + 0.006222493946552277, + -0.02607404999434948, + 0.021655132994055748, + 0.008624211885035038, + 0.08378852158784866, + -0.010186701081693172, + -0.06542926281690598, + 0.09829037636518478, + -0.011602708138525486, + 0.01899401657283306, + -0.03464332967996597, + 0.05522425100207329, + -0.05156216397881508, + -0.014355375431478024, + -0.061962489038705826, + 0.02617170475423336, + 0.05859337002038956, + 0.015661519020795822, + 0.00939324963837862, + 0.06523395329713821, + -0.04826628789305687, + -0.02258286066353321, + 0.016772352159023285, + -0.046606142073869705, + 0.02296127751469612, + 0.0749506875872612, + -0.005252040922641754, + 0.002976970514282584, + -0.035473402589559555, + -0.06367146223783493, + -0.07851511240005493, + 0.06025351583957672, + -0.04345674812793732, + -0.02228989452123642, + 0.0529293455183506, + -0.006173666100949049, + -0.10107356309890747, + -0.05873985216021538, + 0.004321260843425989, + -0.027392400428652763, + 0.014416410587728024, + -0.03886693716049194, + 0.07573193311691284, + -0.020837267860770226, + -0.01846911758184433, + 0.03303201124072075, + 0.02619611844420433 + ] + }, + { + "id": "64c77d00-bcba-4d3b-ac9e-3791ba4c11e8", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "heatherwolf", + "reviewDate": "2021-07-04T09:31:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5d742c5f-f8c6-49e6-bfa1-bde008d49049", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "tranbrian", + "reviewDate": "2022-11-12T03:59:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "00be04c6-1c03-4de5-881b-44477957252d", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifer89", + "reviewDate": "2022-01-20T19:07:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4df872fa-e2c8-4e9e-a7ce-e7b5f788205a", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "nathanbrown", + "reviewDate": "2021-01-13T16:03:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "271a8c01-7db5-4f8e-8fc3-a54beb3819c3", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "qrivera", + "reviewDate": "2021-07-12T20:37:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5f3f19f9-0a01-4371-b7ac-27c938f7bd0c", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "farleysteven", + "reviewDate": "2022-09-19T21:29:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "04027655-350c-4602-8cfc-d9b8ed731c06", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "jcox", + "reviewDate": "2021-06-13T06:07:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ffafa5f1-3f81-4cd8-9df9-7f3a86dc8ce9", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "alexander42", + "reviewDate": "2022-06-08T12:05:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "008d32ec-6a34-42e8-99e3-360657e063e2", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "okaufman", + "reviewDate": "2022-05-27T22:29:16", + "stars": 5, + "verifiedUser": true + }, + { + "id": "02a49e1c-52dd-4725-b223-625211bf82ca", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "ronald78", + "reviewDate": "2021-02-28T16:54:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "22d7d306-eaeb-4c4b-92cc-769c98d0aaa4", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "lindsaychoi", + "reviewDate": "2021-05-27T14:17:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ab2dc118-7394-4c41-9c75-d7ceb6653f9b", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "jbaker", + "reviewDate": "2022-09-04T22:20:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ec03563a-7a51-4e76-b158-ce2aa90da66f", + "productId": "7978a7e2-8701-4243-979a-cedb75867a46", + "category": "Electronics", + "docType": "customerRating", + "userName": "cynthia91", + "reviewDate": "2021-01-27T16:58:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer + (Steel)", + "description": "This Premium Computer + (Steel) is great!\n\nThe Steel is a 4500rpm 3.5kW + (Hemlock) system; with its two 20kW", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-11-15T08:15:08", + "price": 726.19, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-02-09T21:58:04", + "newPrice": 734.8 + }, + { + "priceDate": "2022-04-02T21:58:04", + "newPrice": 726.19 + } + ], + "descriptionVector": [ + 0.008305744268000126, + 0.05087362602353096, + -0.035000089555978775, + -0.006980439648032188, + 0.018403662368655205, + 0.019713906571269035, + -0.0299699567258358, + 0.04162661358714104, + 0.02673199772834778, + 0.11807259172201157, + 0.13638588786125183, + -0.044849514961242676, + 0.031235020607709885, + -0.010105447843670845, + 0.017319321632385254, + 0.07030138373374939, + -0.02082836627960205, + 0.0032661983277648687, + 0.015414196066558361, + -0.04454830661416054, + 0.04021094739437103, + -0.010497014969587326, + -0.04304227977991104, + -0.011212378740310669, + -0.09385566413402557, + -0.04671698808670044, + -0.010911173187196255, + -0.007616736460477114, + 0.012198826298117638, + -0.028373567387461662, + 0.025045245885849, + 0.06939776986837387, + -0.0039420281536877155, + 0.0230422280728817, + 0.060060396790504456, + -0.04295191913843155, + -0.03536153584718704, + 0.018629565834999084, + 0.06367486715316772, + 0.044849514961242676, + -0.014013590291142464, + 0.0328916497528553, + 0.01897595264017582, + 0.0009431500220671296, + 0.06963873654603958, + -0.00275791366584599, + -0.008343394845724106, + 0.04496999457478523, + 0.026295248419046402, + 0.003964618779718876, + 0.0235843975096941, + 0.025406692177057266, + -0.011626536026597023, + 0.039457932114601135, + -0.01796691305935383, + -0.03204827755689621, + 0.02527114935219288, + 0.26192837953567505, + 0.0354820191860199, + 0.006042937282472849, + 0.04725915938615799, + -0.0017827606061473489, + -0.030798273161053658, + -0.011942801997065544, + -0.05138567462563515, + -0.0365663580596447, + -0.0004341596213635057, + 0.03978925943374634, + -0.005376520100980997, + 0.053223028779029846, + -0.06391582638025284, + -0.06009051576256752, + 0.06283149123191833, + 0.019412700086832047, + 0.06186762824654579, + 0.04454830661416054, + 0.05731942504644394, + 0.01837354153394699, + 0.04602421447634697, + -0.0016020372277125716, + 0.03987962007522583, + 0.08228936791419983, + -0.03028622269630432, + -0.010316291823983192, + 0.11801235377788544, + 0.038463953882455826, + -0.06147606298327446, + -0.1285545527935028, + 0.018102455884218216, + 0.03156634792685509, + 0.03090369515120983, + 0.06753029674291611, + 0.07210861891508102, + -0.057831473648548126, + 0.030873574316501617, + 0.07765080034732819, + -0.07198813557624817, + 0.04231938719749451, + 0.0031193604227155447, + -0.0039420281536877155, + 0.02612958662211895, + -0.06084353104233742, + -0.020271137356758118, + -0.025918742641806602, + -0.021460898220539093, + 0.020466919988393784, + 0.035090453922748566, + 0.037078410387039185, + 0.007929237559437752, + -0.09234963357448578, + -0.07993996888399124, + -0.06662667542695999, + 0.029367545619606972, + 0.002306105336174369, + 0.03864467889070511, + -0.015481967478990555, + -0.02012053318321705, + -0.014043711125850677, + 0.05295194312930107, + -0.05207844823598862, + 0.0017582876607775688, + 0.0898195132613182, + 0.02043679915368557, + -0.02427717112004757, + 0.02835850790143013, + 0.016174741089344025, + -0.020948849618434906, + 0.012409670278429985, + 0.05379531905055046, + -0.04551216587424278, + -0.1045183464884758, + 0.05072302371263504, + 0.013396118767559528, + 0.03750009834766388, + 0.01844884268939495, + -0.010534665547311306, + 0.0035165753215551376, + 0.09891591966152191, + 0.021882586181163788, + -0.03427719697356224, + -0.03852419555187225, + -0.052590496838092804, + -0.054367609322071075, + 0.033313337713479996, + -0.017951853573322296, + 0.042138662189245224, + -0.07319296151399612, + 0.06141582131385803, + -0.013983470387756824, + 0.01929221861064434, + 0.021927768364548683, + -0.04632542282342911, + -0.027033202350139618, + 0.020798247307538986, + 0.06656643748283386, + -0.0004308651841711253, + -0.09740988910198212, + 0.03379526734352112, + -0.056355565786361694, + 0.030406706035137177, + -0.05271098017692566, + -0.017545226961374283, + -0.0950002446770668, + 0.008268093690276146, + 0.01759040728211403, + 0.018734987825155258, + 0.020195836201310158, + 0.03043682500720024, + -0.04219890385866165, + 0.0025338921695947647, + 0.020873548462986946, + -0.004521849099546671, + 0.017469923943281174, + -0.05542182922363281, + 0.0843978077173233, + -0.018614506348967552, + 0.030376585200428963, + 0.004390071611851454, + -0.013057262636721134, + -0.0368976853787899, + 0.007654387503862381, + 0.021882586181163788, + -0.02236451581120491, + 0.015278654173016548, + 0.08445805311203003, + 0.10259062796831131, + 0.004706337582319975, + 0.023629579693078995, + 0.04650614410638809, + -0.01689763367176056, + 0.06873511523008347, + -0.063614621758461, + 0.016807273030281067, + -0.003413035999983549, + -0.03159646689891815, + 0.04093383997678757, + 0.044156741350889206, + 0.07795201241970062, + 0.0409037210047245, + -0.0668676421046257, + -0.010353942401707172, + 0.05894593521952629, + 0.05762062966823578, + -0.032469961792230606, + -0.007643091958016157, + 0.009096409194171429, + 0.03388563171029091, + 0.03963865712285042, + -0.04370493069291115, + 0.031385622918605804, + 0.003817780874669552, + -0.028795255348086357, + -0.057891715317964554, + -0.018644627183675766, + 0.027018142864108086, + 0.013478950597345829, + 0.04259047284722328, + 0.04126516729593277, + -0.02912658080458641, + -0.047229036688804626, + 0.07072307169437408, + -0.0052560376934707165, + -0.05138567462563515, + -0.030843453481793404, + -0.027997059747576714, + -0.03750009834766388, + 0.009262071922421455, + -0.027936819940805435, + 0.036144670099020004, + 0.007718393579125404, + -0.04081336036324501, + 0.03150610625743866, + 0.006694294512271881, + 0.0037330668419599533, + -0.031927794218063354, + 0.01713859848678112, + -0.045301321893930435, + -0.02750007063150406, + -0.002675082301720977, + 0.02483440190553665, + 0.011739487759768963, + 0.02150608040392399, + -0.026235006749629974, + -0.04786156862974167, + -0.025557294487953186, + -0.0625302791595459, + 0.05581339821219444, + -6.112355913501233e-05, + -0.023313313722610474, + -0.05219893157482147, + 0.017033176496624947, + -0.04060251638293266, + -0.015813294798135757, + 0.0017808780539780855, + -0.004634801298379898, + 0.06186762824654579, + 0.09210867434740067, + 0.019081374630331993, + -0.02713862434029579, + -0.0011003416730090976, + -0.06807246804237366, + -0.03126513957977295, + 0.0008918509702198207, + 0.07367488741874695, + -0.08445805311203003, + 0.05623508617281914, + 0.0006904196925461292, + -0.015090400353074074, + -0.09524121135473251, + 0.012748527340590954, + 0.021807285025715828, + 0.005192031618207693, + 0.026867538690567017, + -0.058283284306526184, + 0.05180736258625984, + -0.05695797875523567, + -0.02841874770820141, + 0.06114473566412926, + -0.008795203641057014, + 0.03090369515120983, + 0.04219890385866165, + -0.019382581114768982, + 0.00968375988304615, + -0.005478176753968, + 0.018629565834999084, + -0.035000089555978775, + 0.03725913166999817, + -0.014134072698652744, + 0.04162661358714104, + -0.07951828092336655, + 0.013335878029465675, + 0.011890091001987457, + 0.06192786991596222, + 0.0672893300652504, + -0.010655147954821587, + 0.013667204417288303, + 0.07283151149749756, + -0.08753034472465515, + 0.03433743864297867, + -0.008704842068254948, + 0.03171695023775101, + 0.03090369515120983, + -0.05653629079461098, + 0.026536213234066963, + 0.0192018561065197, + 0.0625302791595459, + 0.005414170678704977, + -0.019457882270216942, + 0.02573801763355732, + -0.0038742569740861654, + 0.03780130296945572, + 0.038614556193351746, + -0.04072299599647522, + 0.026807298883795738, + 0.022936806082725525, + 0.005745496600866318, + 0.04481939226388931, + -0.0013460125774145126, + 0.0048456452786922455, + -0.0008814969914965332, + 0.02451813593506813, + -0.023991025984287262, + -0.14674736559391022, + 0.04021094739437103, + -0.006991735193878412, + -0.061596546322107315, + -0.08644600957632065, + 0.05286158248782158, + -0.028689833357930183, + -0.03403623402118683, + 0.06747005134820938, + -0.030933814123272896, + 0.033012133091688156, + 0.014954857528209686, + 0.05012061074376106, + -0.058042317628860474, + -0.02075306512415409, + -0.04012058675289154, + -0.0255874153226614, + 0.0255874153226614, + 0.04734952002763748, + 0.050602540373802185, + -0.06644595414400101, + 0.033072374761104584, + 0.002287280047312379, + 0.013185274787247181, + 0.04987964779138565, + -0.06156642362475395, + 0.000601940555498004, + 0.0026261364109814167, + 0.0017865257104858756, + 0.03310249373316765, + 0.07951828092336655, + -0.013268106617033482, + 0.07006042450666428, + -0.04578325152397156, + -0.02466873824596405, + -0.011882561258971691, + -0.036235034465789795, + -0.018539205193519592, + 0.05277122184634209, + -0.01790667325258255, + 0.039548296481370926, + 0.06132546067237854, + 0.011859970167279243, + 0.04997000843286514, + -0.0022496292367577553, + 0.02706332318484783, + 0.0014109599869698286, + 0.0063027273863554, + 0.040301308035850525, + -0.0387350395321846, + 0.0065361615270376205, + 0.042680833488702774, + -0.04632542282342911, + -0.024578377604484558, + 0.0193675197660923, + 0.05656640976667404, + -0.003271845867857337, + 0.020271137356758118, + -0.008998516947031021, + 0.008704842068254948, + 0.03626515343785286, + -0.008087370544672012, + 0.08927734196186066, + -0.03611455112695694, + -0.011009064503014088, + -0.041536252945661545, + -0.04442782700061798, + 0.07951828092336655, + 0.003859196789562702, + 0.016460886225104332, + -0.06602426618337631, + 0.06765078008174896, + 0.0742170587182045, + -0.045994095504283905, + 0.053433872759342194, + 0.017409684136509895, + 0.0063704983331263065, + -0.019698847085237503, + -0.043072402477264404, + 0.039608534425497055, + -0.0193675197660923, + -0.07253030687570572, + 0.02344885654747486, + -0.0705423504114151, + -0.019954871386289597, + -0.025180788710713387, + -0.030165741220116615, + -0.018554264679551125, + -0.03466876596212387, + -0.039698898792266846, + 0.042379628866910934, + 0.012304248288273811, + 0.04509047791361809, + -0.00413028197363019, + 0.05171700194478035, + 0.03004525788128376, + 0.008117490448057652, + -0.08307250589132309, + -0.026837419718503952, + 0.023177770897746086, + -0.016310283914208412, + 0.0006461801240220666, + -0.032620567828416824, + 0.050000131130218506, + 0.01295184064656496, + 0.024713918566703796, + 0.04795193299651146, + 0.016234980896115303, + -0.0053840503096580505, + -0.05439773201942444, + 0.013132563792169094, + 0.063614621758461, + -0.012274128384888172, + 0.018268119543790817, + 0.04075311869382858, + 0.050000131130218506, + -0.022409696131944656, + 0.0709640383720398, + -0.016731971874833107, + -0.04605433717370033, + 0.029759112745523453, + -0.03503021225333214, + -0.0023343435022979975, + 0.013682263903319836, + -0.03674708306789398, + -0.00424323370680213, + 0.010466894134879112, + -0.00520332669839263, + -0.0646989643573761, + -0.0012321191607043147, + -0.0365663580596447, + -0.03460852429270744, + -0.06915680319070816, + 0.017274141311645508, + -0.0014109599869698286, + 0.04795193299651146, + -0.04280131682753563, + 0.0020387854892760515, + -0.013426239602267742, + 0.0551808662712574, + 0.08560263365507126, + -0.03310249373316765, + 0.0015370898181572556, + 0.0048870607279241085, + -0.0007821932667866349, + -0.04436758533120155, + 0.012296718545258045, + 0.07457850873470306, + -0.05403628572821617, + -0.014006060548126698, + -0.0007421894115395844, + 0.07042186707258224, + -0.05066278204321861, + -0.07885562628507614, + 0.05963870882987976, + -0.019653664901852608, + -0.07584357261657715, + 0.032469961792230606, + -0.007831345312297344, + -0.08566287159919739, + 0.07632549852132797, + 0.0044992584735155106, + -0.023629579693078995, + 0.036686841398477554, + 0.05819291993975639, + 0.05756039172410965, + -0.013546722009778023, + 0.10728943347930908, + -0.04180733859539032, + 0.021400658413767815, + -0.06807246804237366, + -0.03512057289481163, + -0.02350909635424614, + 0.009894603863358498, + 0.04319288209080696, + 0.025406692177057266, + -0.026460912078619003, + -0.02359945885837078, + 0.004194288048893213, + -0.038463953882455826, + -0.006694294512271881, + 0.0004040390776935965, + -0.022876564413309097, + 0.06692788749933243, + 0.021551260724663734, + -0.014307266101241112, + -0.006577577441930771, + 0.009924724698066711, + 0.04719891771674156, + -0.007853936403989792 + ] + }, + { + "id": "7c5b315a-da4a-4dc7-9f19-93bd0c011a98", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "douglasjefferson", + "reviewDate": "2021-08-24T05:51:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9d897ab2-1b8e-4fe6-a4e5-f0c9c18ccffb", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "jameszhang", + "reviewDate": "2021-12-31T11:32:39", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8eeb6188-2dc3-460c-a9b0-da25365dc41f", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "evansandrew", + "reviewDate": "2021-06-21T18:31:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "36fa2cfb-95c3-4f2a-8ddc-a0a7d8ac8932", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "mary56", + "reviewDate": "2022-04-18T08:22:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "55470a02-d199-4355-8aaa-d00ad445d391", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "whitekendra", + "reviewDate": "2022-06-21T06:26:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "36e9529b-afab-48df-9c60-5afcfffc2537", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertsondeborah", + "reviewDate": "2021-07-05T13:18:19", + "stars": 5, + "verifiedUser": true + }, + { + "id": "334d21de-6c5b-4690-b6f7-c1e23ac1b400", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "johndean", + "reviewDate": "2022-11-03T19:31:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "20b5c87a-9b31-4052-946e-ddd39f78dfb0", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "reedmeghan", + "reviewDate": "2022-02-14T05:32:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4cab676a-0e57-460f-99f5-3dd0d728ffa3", + "productId": "dcee283b-7eab-498f-9bd5-8e2d5c5f8934", + "category": "Electronics", + "docType": "customerRating", + "userName": "elizabeth53", + "reviewDate": "2021-02-09T21:58:04", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2ca7eca0-6b2f-4b6b-95c2-976ea55745d6", + "productId": "2ca7eca0-6b2f-4b6b-95c2-976ea55745d6", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Micro (Red)", + "description": "This Awesome Computer Micro (Red) is designed with a large, light and compact footprint. The CPU's memory offers 1.6 GB total, a single 256 GB of hard drive space, a 128 GB storage card, an Intel-built 4 core processor, and 4", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-02-27T19:55:19", + "price": 692.89, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2022-11-16T16:29:39", + "newPrice": 659.12 + }, + { + "priceDate": "2022-11-17T16:29:39", + "newPrice": 681.94 + }, + { + "priceDate": "2022-11-18T16:29:39", + "newPrice": 724.02 + }, + { + "priceDate": "2022-11-19T16:29:39", + "newPrice": 685.22 + }, + { + "priceDate": "2022-11-20T16:29:39", + "newPrice": 657.3 + }, + { + "priceDate": "2025-09-05T16:29:39", + "newPrice": 692.89 + } + ], + "descriptionVector": [ + -0.021236727014183998, + 0.0341346301138401, + -0.03283574804663658, + 0.05995640903711319, + 0.01563854329288006, + -0.008371297270059586, + 0.06213853135704994, + 0.07362065464258194, + 0.05434523895382881, + 0.09985807538032532, + 0.04998099431395531, + -0.08136199414730072, + 0.03855082765221596, + -0.021535469219088554, + 0.04395417869091034, + 0.02337988279759884, + -0.06608713418245316, + -0.030108094215393066, + -0.03447233885526657, + 0.029354741796851158, + 0.07575082033872604, + -0.04333071410655975, + -0.02314608357846737, + 0.030549712479114532, + -0.039719823747873306, + -0.00811801478266716, + -0.0025458093732595444, + 0.014989102259278297, + -0.007988126948475838, + -0.015131979249417782, + 0.062034621834754944, + 0.0251463633030653, + -0.01204063929617405, + -0.018677929416298866, + 0.019145525991916656, + -0.05663127079606056, + -0.010891128331422806, + -0.05444914847612381, + 0.08712902665138245, + -0.0027130404487252235, + 0.039953622967004776, + 0.002003526082262397, + 0.011657468974590302, + -0.0341346301138401, + 0.084739089012146, + 0.02943267486989498, + 0.02295125089585781, + -0.007319202180951834, + 0.010618363507091999, + -0.05564412102103233, + 0.046681832522153854, + -0.009689662605524063, + 0.03465418145060539, + -0.025276251137256622, + 0.05564412102103233, + -0.0006859722780063748, + -0.038135185837745667, + 0.1875586211681366, + 0.042291611433029175, + -0.03493993729352951, + 0.01632695086300373, + 0.032965634018182755, + 0.03509580343961716, + -0.03047178126871586, + -0.05611171945929527, + 0.00021492443920578808, + 0.015041057951748371, + 0.04605836793780327, + 0.019249437376856804, + 0.045097194612026215, + -0.013962985947728157, + -0.01166396401822567, + 0.0030572444666177034, + -0.0034907464869320393, + 0.023873457685112953, + 0.03527764603495598, + 0.06182680279016495, + -0.04501926153898239, + 0.03774552047252655, + -0.011936728842556477, + 0.048448313027620316, + 0.010839173570275307, + 0.012475765310227871, + 0.02406829036772251, + 0.04940948635339737, + 0.0037245452404022217, + -0.0020116441883146763, + -0.1510860025882721, + 0.024938542395830154, + -0.006578839384019375, + -0.024146223440766335, + 0.08162176609039307, + 0.10583293437957764, + 0.005734565667808056, + 0.0390184260904789, + -0.00576379057019949, + -0.03223825991153717, + 0.05751451104879379, + 0.03229021653532982, + -0.007189313881099224, + -0.00517929345369339, + -0.039719823747873306, + -0.04262932017445564, + -0.09305193275213242, + 0.0003048314538318664, + 0.014963124878704548, + 0.05850166082382202, + 0.030263958498835564, + 0.019613124430179596, + -0.1369541585445404, + -0.03379691764712334, + -0.018184352666139603, + -0.07169830799102783, + -0.026886865496635437, + -0.016313962638378143, + 0.004779886920005083, + -0.023860469460487366, + 0.027925971895456314, + -0.09710444509983063, + -0.0001532275346107781, + 0.07876423001289368, + 0.0058644539676606655, + 0.012709563598036766, + 0.009605235420167446, + -0.019768990576267242, + 0.015365778468549252, + -0.06951618194580078, + -0.025691892951726913, + 0.005614419002085924, + -0.014105862937867641, + -0.0661390870809555, + 0.09222064912319183, + 0.015872342512011528, + -0.0059488811530172825, + 0.0002841305104084313, + -0.03216032683849335, + 0.060683783143758774, + 0.11211952567100525, + 0.03675837069749832, + 0.031744685024023056, + -0.03254999220371246, + 0.01140418741852045, + -0.04385026916861534, + 0.015183934941887856, + -0.12136756628751755, + 0.04512317478656769, + -0.07834858447313309, + 0.01418379507958889, + 0.0009725381969474256, + 0.03218630701303482, + -0.019054604694247246, + -0.0643206536769867, + -0.03143295273184776, + -0.04231758788228035, + 0.020119687542319298, + 0.023120107129216194, + -0.042239654809236526, + 0.036836303770542145, + -0.00991047266870737, + 0.07990724593400955, + -0.006072274874895811, + 0.04675976559519768, + -0.02543211728334427, + -0.03532959893345833, + 0.05808601900935173, + -0.01717122457921505, + 0.0033705998212099075, + 0.03047178126871586, + -0.029926249757409096, + 0.03673239424824715, + 0.03800529986619949, + 0.030393848195672035, + 0.025626949965953827, + 0.035069823265075684, + 0.049851104617118835, + -0.012417315505445004, + 0.04743518307805061, + 0.05200725048780441, + -0.05179942771792412, + -0.13383683562278748, + 0.050136860460042953, + -0.0032731834799051285, + -0.006026814226061106, + 0.09305193275213242, + -0.016963403671979904, + 0.03522568941116333, + -0.04766898229718208, + 0.03784943372011185, + 0.03304356709122658, + -0.010696296580135822, + 0.03761563450098038, + -0.04901982098817825, + 0.022496642544865608, + 0.03330334275960922, + 0.014508516527712345, + 0.01471633743494749, + -0.037070102989673615, + 0.04008350893855095, + -0.017106281593441963, + 0.015482678078114986, + -0.0502927266061306, + 0.021717313677072525, + 0.060112275183200836, + 0.0034517799504101276, + -0.03540753200650215, + -0.05683909356594086, + -0.013924019411206245, + 0.01187827903777361, + 0.05081227794289589, + 0.05886534973978996, + 0.05005892738699913, + -0.01898965984582901, + -0.016067175194621086, + -0.04403211176395416, + 0.11305472254753113, + 0.011274298653006554, + 0.027302507311105728, + -0.008332330733537674, + -0.0251983180642128, + -0.026237424463033676, + 0.062034621834754944, + -0.021197760477662086, + 0.023029183968901634, + -0.009488335810601711, + -0.008345318958163261, + -0.06219048798084259, + 0.018833793699741364, + 0.03475809097290039, + -0.020080721005797386, + 0.0057735322043299675, + -0.05891730263829231, + 0.0002879865642171353, + 0.017573878169059753, + -0.02617247961461544, + -0.02795194834470749, + -0.022042034193873405, + 0.0038187140598893166, + -0.054708924144506454, + -0.02062625251710415, + 0.08156981319189072, + -0.044213954359292984, + 0.051201943308115005, + -0.07632232457399368, + -0.014677370898425579, + 0.021808234974741936, + -0.025730859488248825, + -0.0017096538795158267, + -0.0020928243175148964, + -0.08302456140518188, + 0.021015916019678116, + 0.011761379428207874, + 0.010053349658846855, + -0.005513755604624748, + 0.05016283690929413, + -0.0059553757309913635, + 0.0027649959083646536, + 0.041356414556503296, + -0.08323238044977188, + -0.058709483593702316, + -0.0469416081905365, + 0.013053767383098602, + -0.08494690805673599, + -0.019756000488996506, + -0.010020877234637737, + -0.032030440866947174, + -0.008215431123971939, + 0.08214132487773895, + -0.034030716866254807, + -0.007591967470943928, + 0.042057812213897705, + 0.08084243535995483, + -0.012755025178194046, + 0.02766619436442852, + -0.0038739165756851435, + -0.041356414556503296, + -0.03722596913576126, + -0.05122791975736618, + 0.08577819168567657, + -0.027874015271663666, + 0.04886395484209061, + 0.040057532489299774, + 0.07834858447313309, + 0.05886534973978996, + -0.009897483512759209, + 0.012034145183861256, + -0.0758027732372284, + -0.06073573976755142, + -0.05133183300495148, + -0.018587006255984306, + -0.02658812142908573, + -0.022652508690953255, + -0.03686228021979332, + 0.023016195744276047, + 0.09840332716703415, + -0.04333071410655975, + 0.02370460331439972, + 0.033199433237314224, + 0.00048545727622695267, + 0.003403071779757738, + 0.04475948587059975, + 0.005698846187442541, + -0.0034550270065665245, + -0.010261170566082, + -0.03000418283045292, + -0.035849153995513916, + 0.07871226966381073, + -0.05481283739209175, + 0.035199712961912155, + -0.03499189019203186, + -0.00877395085990429, + 0.11970499902963638, + -0.005968364421278238, + 0.003984321840107441, + -0.011352231726050377, + 0.11128824204206467, + -0.035251665860414505, + 0.038888536393642426, + 0.005078630056232214, + -0.009826045483350754, + 0.024691753089427948, + 0.025639938190579414, + -0.06463238596916199, + -0.09684467315673828, + 0.06733406335115433, + 0.0435904935002327, + 0.039823733270168304, + -0.06312568485736847, + 0.042759206146001816, + -0.032446082681417465, + 0.004071996081620455, + -0.0074296072125434875, + -0.013625276274979115, + 0.04559076949954033, + 0.04356451332569122, + 0.050552502274513245, + -0.04894188791513443, + 0.007780305575579405, + 0.093467578291893, + 0.028523456305265427, + 0.06691841781139374, + 0.05803406611084938, + 0.018651951104402542, + -0.04753909632563591, + 0.0008272257400676608, + -0.001706406706944108, + -0.00042497809045016766, + -0.0501888133585453, + -0.025211306288838387, + -0.015106001868844032, + -0.06307372450828552, + 0.0014920911053195596, + -0.07949160039424896, + 0.01409287378191948, + 0.06385305523872375, + 0.04553881660103798, + 0.006198916118592024, + -0.0025831523817032576, + 0.013625276274979115, + -0.015170945785939693, + -0.02109384909272194, + -0.00987150613218546, + -0.035485465079545975, + 0.04218769818544388, + 0.06208657845854759, + -0.0596446767449379, + 0.004399964120239019, + -0.019340358674526215, + 0.018223319202661514, + -0.014170806854963303, + 0.06795752793550491, + 0.060579873621463776, + -0.03925222530961037, + -0.09996198862791061, + 0.0734647884964943, + -0.03966786712408066, + -0.0569949597120285, + 0.021717313677072525, + -0.019756000488996506, + -0.027276528999209404, + 0.04977317154407501, + 0.003958343993872404, + 0.05034467950463295, + -0.019106559455394745, + -0.024457955732941628, + 0.08557037264108658, + -0.0821932777762413, + 0.010254676453769207, + 0.0012103960616514087, + -0.017807677388191223, + 0.0131836561486125, + -0.03582317754626274, + -0.02388644590973854, + -0.03088742308318615, + -0.019522201269865036, + 0.00020467545255087316, + -0.03088742308318615, + 0.04473350942134857, + 0.017366057261824608, + 0.02486060932278633, + 0.011040500365197659, + 0.004088232293725014, + 0.03166675195097923, + 0.03192652761936188, + -0.03491395711898804, + -0.039356134831905365, + -0.053825683891773224, + 0.012047134339809418, + 0.02021060883998871, + -0.038472894579172134, + -0.07611450552940369, + 0.03577122092247009, + -0.0032472058665007353, + 0.04242149740457535, + -0.0549687035381794, + 0.027042731642723083, + -0.0343424491584301, + 0.06551562994718552, + 0.03600502014160156, + -0.04447373375296593, + -0.0016593221807852387, + 0.0071633365005254745, + -0.016352929174900055, + -0.04727931693196297, + 0.02743239514529705, + -0.04901982098817825, + -0.0035004878882318735, + -0.026237424463033676, + -0.02336689457297325, + -0.0013061886420473456, + -0.12303014099597931, + -0.03088742308318615, + -0.04307093843817711, + 0.016223041340708733, + -0.018820805475115776, + 0.016716616228222847, + 0.025302229449152946, + 0.02211996726691723, + 0.03041982464492321, + -0.03751172125339508, + 0.045980434864759445, + 0.037953343242406845, + -0.028003903105854988, + -0.03397876396775246, + 0.01476829219609499, + -0.062450263649225235, + 0.02818574756383896, + -0.04881199821829796, + 0.011274298653006554, + 0.06738601624965668, + -0.06930836290121078, + -0.05902121588587761, + 0.03348518908023834, + -0.032913681119680405, + -0.06873685866594315, + 0.028861166909337044, + 0.0069685038179159164, + 0.020600274205207825, + 0.042759206146001816, + -0.11180779337882996, + 0.01038456428796053, + 0.008384285494685173, + 0.01823630928993225, + 0.05200725048780441, + -0.022106977179646492, + -0.006163196638226509, + 0.001969430362805724, + -0.06276199966669083, + -0.05403350666165352, + -0.019756000488996506, + 0.0002232454135082662, + -0.02230180986225605, + 0.010339103639125824, + 0.027770105749368668, + -0.010436519980430603, + -0.02640627883374691, + -0.06452847272157669, + 0.027276528999209404, + 0.020704185590147972, + -0.07232177257537842, + 0.03933015838265419, + 0.0024045559111982584, + -0.014274717308580875, + -0.013053767383098602, + -0.0341346301138401, + 0.0013199892127886415, + -0.0037797477561980486, + -0.05413741618394852, + 0.06743796914815903, + 0.056943003088235855, + 0.005906667560338974, + 0.035615354776382446, + 0.022093988955020905, + -0.009332469664514065, + -0.05896925926208496, + -0.0684770792722702, + -0.007319202180951834, + -0.0005690728430636227, + 0.023964378982782364, + -0.028237702324986458, + 0.06593126803636551, + -0.031614795327186584, + -0.016339940950274467, + -0.009033726528286934, + 0.036368705332279205, + -0.004477897193282843, + 0.031848594546318054, + 0.06509998440742493, + 0.11253517121076584, + -0.055124569684267044, + -0.019444268196821213, + 0.0006827250472269952, + -0.032316192984580994 + ] + }, + { + "id": "ce2f8ef9-85ba-4c73-97af-563d3e9139e4", + "productId": "2ca7eca0-6b2f-4b6b-95c2-976ea55745d6", + "category": "Electronics", + "docType": "customerRating", + "userName": "riveradrew", + "reviewDate": "2022-11-16T16:29:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cc4b2888-5ea1-463e-a77b-6a1a09b35e64", + "productId": "cc4b2888-5ea1-463e-a77b-6a1a09b35e64", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Micro (Steel)", + "description": "This Basic Keyboard Micro (Steel) is soldered to the right back of both the backplate and backplate assembly to ensure a clean and stable release of the keys.\n\nThe Micro has a unique 3 mm pushbutton which has been", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-03-22T14:25:41", + "price": 875.5, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2022-08-15T05:18:02", + "newPrice": 847.99 + }, + { + "priceDate": "2022-08-16T05:18:02", + "newPrice": 852.53 + }, + { + "priceDate": "2022-08-17T05:18:02", + "newPrice": 789.37 + }, + { + "priceDate": "2022-08-18T05:18:02", + "newPrice": 890.64 + }, + { + "priceDate": "2022-08-19T05:18:02", + "newPrice": 906.72 + }, + { + "priceDate": "2022-09-02T05:18:02", + "newPrice": 875.5 + } + ], + "descriptionVector": [ + 0.030790138989686966, + -0.030716124922037125, + -0.004055391997098923, + -0.0017223850591108203, + 0.041398920118808746, + 0.0317523330450058, + 0.04053541645407677, + 0.0588170625269413, + 0.027829548344016075, + 0.01697405055165291, + -0.0026784089859575033, + 0.01179918646812439, + 0.028248965740203857, + -0.049441859126091, + -0.00799359381198883, + -0.021316250786185265, + 0.002718500327318907, + 0.008092280477285385, + -0.016764342784881592, + -0.026472611352801323, + 0.06182699277997017, + -0.11694331467151642, + -0.08102148771286011, + -0.031110869720578194, + -0.019441209733486176, + -0.014223169535398483, + 0.02839699573814869, + 0.022475814446806908, + -0.1093444675207138, + 0.0460125096142292, + 0.014926309697329998, + -0.0052766352891922, + -0.0571887381374836, + 0.03532971069216728, + 0.008468521758913994, + -0.07746878266334534, + -0.08057740330696106, + -0.058915749192237854, + -0.05151427164673805, + -0.05097149685025215, + 0.02504166029393673, + 0.0018010258208960295, + -0.015629449859261513, + 0.003512616967782378, + 0.019453546032309532, + 0.10727205872535706, + 0.026349253952503204, + 0.005646709352731705, + -0.012730538845062256, + -0.0027477978728711605, + 0.07959053665399551, + 0.04527236148715019, + -0.06360334903001785, + -0.006096965633332729, + 0.009566407650709152, + -0.011028198525309563, + -0.014765944331884384, + 0.15039798617362976, + 0.07904776185750961, + -0.0783076137304306, + -0.029457874596118927, + -0.02785422094166279, + -0.030962839722633362, + -0.005569610744714737, + -0.07732074707746506, + -0.029433201998472214, + -0.03747614100575447, + 0.0032597333192825317, + 0.06118553504347801, + 0.04048607125878334, + 0.02792823500931263, + -0.039647240191698074, + 0.01513601839542389, + -0.015000324696302414, + 0.016270911321043968, + 0.022401800379157066, + 0.07475490868091583, + 0.07672863453626633, + 0.09656459093093872, + -0.03826563060283661, + 0.010399073362350464, + 0.013902438804507256, + -0.07820893079042435, + -0.015580106526613235, + 0.022241434082388878, + 0.018108943477272987, + 0.06962321698665619, + -0.06582379341125488, + -0.07352132350206375, + 0.08723872900009155, + -0.09661392867565155, + 0.006201819982379675, + -0.0030022235587239265, + -0.06789620220661163, + 0.05427749082446098, + -0.01460557896643877, + -0.029383858665823936, + 0.026768671348690987, + -0.03155495971441269, + -0.018713397905230522, + 0.05274784937500954, + -0.02067478932440281, + -0.04815893620252609, + 0.0038271797820925713, + -0.04882507026195526, + 0.05960655212402344, + 0.018207630142569542, + 0.050724782049655914, + 0.0014533106004819274, + -0.039647240191698074, + -0.055017635226249695, + -0.01946588046848774, + -0.04379206523299217, + 0.018158286809921265, + -0.03308459743857384, + -0.06118553504347801, + 0.010090678930282593, + 0.020736468955874443, + -0.058372970670461655, + -0.01269353087991476, + 0.008197134360671043, + 0.020156685262918472, + 0.027952907606959343, + -0.015617113560438156, + -0.029161814600229263, + 0.021970046684145927, + -0.04769017547369003, + -0.017960915341973305, + -0.008924946188926697, + 0.047172073274850845, + -0.04786287620663643, + 0.025251368060708046, + 0.04537104815244675, + 0.008869434706866741, + -0.02585582248866558, + -0.006251163315027952, + 0.03875906020402908, + 0.07445884495973587, + -0.003512616967782378, + 0.09315990656614304, + 0.0393265075981617, + 0.0038364315405488014, + 0.007432315498590469, + 0.04317527636885643, + -0.006685999687761068, + 0.018429674208164215, + -0.10973921418190002, + 0.03838898614048958, + 0.043816737830638885, + 0.05812625586986542, + -0.02507866732776165, + -0.05432683229446411, + -0.022599173709750175, + -0.04236111417412758, + 0.120890773832798, + 0.0042651002295315266, + -0.046234551817178726, + -0.013840760104358196, + -0.036020517349243164, + 0.012446815147995949, + 0.04302724450826645, + -0.028619039803743362, + 0.005427748896181583, + 0.0008928030147217214, + 0.00234534265473485, + 0.07115285098552704, + 0.0230062548071146, + 0.015974851325154305, + 0.02558443509042263, + 0.055017635226249695, + -0.0483563095331192, + 0.05329062417149544, + -0.0033985108602792025, + -0.028224295005202293, + 0.04278052970767021, + -0.011515462771058083, + 0.021624645218253136, + -0.0420403815805912, + -0.010355898179113865, + -0.027878891676664352, + 0.00046413420932367444, + 0.05245179310441017, + -0.015974851325154305, + -0.0003164901863783598, + 0.05654727667570114, + -0.012052069418132305, + -0.05028069391846657, + 0.0671067163348198, + -0.0038302636239677668, + 0.001299884170293808, + 0.021501287817955017, + -0.008234141394495964, + 0.043125931173563004, + 0.011873200535774231, + 0.03836431726813316, + 0.023141948506236076, + -0.06725474447011948, + -0.009258012287318707, + -0.021538294851779938, + 0.0064331162720918655, + -0.02491830103099346, + 0.08294587582349777, + 0.026003852486610413, + 0.008178630843758583, + 0.0041263229213654995, + 0.027878891676664352, + -0.02356136403977871, + 0.006463955622166395, + 0.019601574167609215, + 0.0048017073422670364, + 0.023030925542116165, + -0.07169562578201294, + 0.05324128270149231, + -0.0488990843296051, + 0.04398943856358528, + 0.07273183763027191, + -0.03128357231616974, + -0.04028870165348053, + 0.001540432102046907, + -0.007111584767699242, + -0.015999523922801018, + -0.006211071740835905, + 0.01724543794989586, + -0.013544701039791107, + -0.05319194123148918, + 0.005409245379269123, + 0.04431016743183136, + -0.0029559643007814884, + 0.06370203197002411, + 0.010941848158836365, + -0.020366394892334938, + 0.02356136403977871, + -0.015617113560438156, + 0.04746813327074051, + -0.04722141474485397, + 0.01673967018723488, + 0.002687660977244377, + -0.027952907606959343, + -0.08304455876350403, + 0.08255112916231155, + -0.0016560802469030023, + 0.016011860221624374, + -0.016159888356924057, + -0.030370721593499184, + 0.036686647683382034, + 0.02444954216480255, + 0.049195144325494766, + -0.029112471267580986, + -0.07258380949497223, + -0.01517302542924881, + -0.02433851920068264, + 0.03054342418909073, + -0.017270110547542572, + 0.021118877455592155, + 0.053339969366788864, + 0.09932780265808105, + 0.03994329646229744, + -0.06197502464056015, + 0.01899712160229683, + -0.06108684837818146, + 0.044828273355960846, + -0.03177700191736221, + -0.022340120747685432, + 0.058175601065158844, + 0.0045149000361561775, + -0.0032782370690256357, + 0.028495682403445244, + -0.07791286706924438, + -0.002245114417746663, + 0.021636981517076492, + 0.08753478527069092, + -0.0011757552856579423, + 0.024671586230397224, + -0.029901962727308273, + -0.04741878807544708, + 0.03513233736157417, + -0.06986992806196213, + 0.08264981210231781, + -0.05477092042565346, + -0.05807691439986229, + 0.02359837293624878, + 0.05264916270971298, + 0.008869434706866741, + 0.0835379883646965, + 0.08447550982236862, + 0.03335598483681679, + -0.04633323848247528, + 0.03214707598090172, + -0.08240309357643127, + -0.00032400732743553817, + -0.03236912190914154, + -0.0333806574344635, + 0.030864154919981956, + 0.02324063330888748, + 0.032862551510334015, + 0.015358062461018562, + 0.08018265664577484, + -0.03949920833110809, + 0.003330664010718465, + -0.031234227120876312, + 0.028693053871393204, + -0.013297985307872295, + -0.049441859126091, + -0.044408854097127914, + 0.040856145322322845, + 0.003688402008265257, + 0.05506698042154312, + -0.053339969366788864, + 0.009387538768351078, + -0.03811759874224663, + 0.04551907628774643, + -0.01715908758342266, + -0.0296799186617136, + -0.018984785303473473, + 0.0322951078414917, + -0.05822494253516197, + 0.027410132810473442, + 0.022290777415037155, + 0.029901962727308273, + -0.05136624351143837, + -0.025609105825424194, + -0.007259614299982786, + -0.04500097408890724, + 0.13164758682250977, + 0.08615317940711975, + -0.03727876767516136, + 0.023117275908589363, + -0.013236305676400661, + -0.04680199921131134, + -0.0961698442697525, + -0.003182634711265564, + -0.022401800379157066, + -0.06508364528417587, + 0.0014186161570250988, + -0.014593242667615414, + -0.08625186234712601, + 0.015654120594263077, + 0.058718375861644745, + 0.030000649392604828, + -0.018614711239933968, + 0.03202372044324875, + 0.03451554849743843, + -0.007493994198739529, + -0.021131213754415512, + -0.010010495781898499, + -0.028372323140501976, + 0.01265652384608984, + -0.09370268136262894, + -0.0014748983085155487, + -0.05398143082857132, + 0.001205823733471334, + -0.03947453945875168, + 0.07968921959400177, + 0.012243274599313736, + 0.05634990334510803, + 0.02114355005323887, + 0.013174626976251602, + -0.013409007340669632, + 0.03503365069627762, + 0.060001298785209656, + -0.01550609152764082, + -0.043742723762989044, + 0.04571644961833954, + 0.007808556780219078, + -0.037772197276353836, + 0.030099334195256233, + -0.031530287116765976, + 0.0210201907902956, + 0.006809357553720474, + 0.046160537749528885, + 0.01688770018517971, + 0.00021664737141691148, + 0.027410132810473442, + 0.06562642008066177, + 0.023117275908589363, + -0.011959550902247429, + 0.03747614100575447, + -0.02807626500725746, + -0.04766550287604332, + 0.05092215538024902, + 0.038043584674596786, + 0.022549830377101898, + -0.07169562578201294, + -0.06370203197002411, + 0.02468392252922058, + -0.08847230672836304, + -0.014913973398506641, + 0.0037099898327142, + -0.04685134068131447, + 0.051464930176734924, + -0.009578743018209934, + 0.06636656820774078, + -0.014617914333939552, + 0.027040058746933937, + 0.02800225093960762, + -0.015074338763952255, + -0.006778518203645945, + 0.06069210171699524, + -0.007783885579556227, + 0.02886575646698475, + 0.03705672174692154, + 0.11704200506210327, + -0.013902438804507256, + 0.008178630843758583, + -0.008240309543907642, + -0.09212370216846466, + 0.004854134749621153, + 0.0835379883646965, + -0.009776116348803043, + -0.11664725840091705, + 0.01359404344111681, + -0.04505031555891037, + 0.04833163693547249, + -0.08600515127182007, + -0.02839699573814869, + -9.56987714744173e-05, + 0.09163027256727219, + 0.005631289444863796, + 0.03537905588746071, + -0.043816737830638885, + 0.06607050448656082, + -0.052007704973220825, + -0.0561031848192215, + -0.0026336917653679848, + 0.055165667086839676, + -0.06587313115596771, + -0.0719916895031929, + 0.0003876137488987297, + 0.09103815257549286, + -0.0903966948390007, + -0.0404120571911335, + -0.011034366674721241, + -0.022167420014739037, + -0.003725409507751465, + 0.02449888549745083, + -0.0120890773832798, + -0.04376739263534546, + -0.016640985384583473, + -0.06108684837818146, + 0.03606985881924629, + 0.016764342784881592, + 0.03718008100986481, + -0.03727876767516136, + -0.022944575175642967, + -0.09799554198980331, + -0.001455623540095985, + -0.03431817516684532, + -0.04295323044061661, + 0.060445386916399, + -0.03940052166581154, + 0.02161230891942978, + 0.022068733349442482, + -0.017060400918126106, + -0.030321380123496056, + 0.040461402386426926, + -0.02051442302763462, + 0.06069210171699524, + 0.07204103469848633, + 0.013075940310955048, + 0.017640184611082077, + -0.0546722337603569, + 0.03705672174692154, + 0.055215008556842804, + -0.01575280725955963, + -0.012890903279185295, + -0.06503430008888245, + -0.008844763971865177, + 0.001124870148487389, + -0.019330186769366264, + -0.013803752139210701, + 0.0857090875506401, + -0.06375137716531754, + -0.0012451440561562777, + -0.010688964277505875, + 0.07771549373865128, + -0.06572510302066803, + -0.04939251393079758, + -0.043125931173563004, + 0.012964918278157711, + 0.02975393272936344, + -0.040264029055833817, + -0.009011296555399895, + -0.0501573346555233, + 0.037229422479867935, + 0.02414114773273468, + -0.01817062310874462, + -0.04875105246901512, + 0.04396476596593857, + 0.043866079300642014, + 0.03720474988222122, + 0.04882507026195526, + 0.03190036118030548, + -0.01134892925620079, + -0.062271084636449814, + -0.015666456893086433, + 0.04426082596182823, + 0.02125457115471363, + 0.05383339896798134, + -0.015222368761897087, + 0.018232302740216255, + -0.004160246346145868, + -0.031456273049116135, + -0.01245915051549673, + 0.07894907891750336, + 0.003762416774407029, + 0.07056073844432831, + 0.016875365749001503, + 0.03922782093286514, + 0.06986992806196213, + 0.054820265620946884, + -0.015321054495871067, + -0.0694751888513565 + ] + }, + { + "id": "69430bb8-5deb-4ebb-bc0d-72662be000ba", + "productId": "cc4b2888-5ea1-463e-a77b-6a1a09b35e64", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholasadams", + "reviewDate": "2022-08-15T05:18:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Ultra (Silver)", + "description": "This Basic Speaker Ultra (Silver) is equipped with a power of 60 seconds.\n\nBeware, however, that Ultra's special special attack is Fire Beam. This can damage almost anything, including the weak-ass Bum Blond. However, because Ultra's special attack is called an Ultra, it was used before the battle went on.\n\nAbility", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-02-03T07:13:07", + "price": 885.26, + "stock": 25, + "priceHistory": [ + { + "priceDate": "2021-01-28T12:46:26", + "newPrice": 919.75 + }, + { + "priceDate": "2021-09-18T12:46:26", + "newPrice": 970.59 + }, + { + "priceDate": "2022-05-09T12:46:26", + "newPrice": 902.92 + }, + { + "priceDate": "2022-12-28T12:46:26", + "newPrice": 855.36 + }, + { + "priceDate": "2024-12-26T12:46:26", + "newPrice": 885.26 + } + ], + "descriptionVector": [ + 0.012015745975077152, + -0.04917825758457184, + -0.006804496981203556, + -0.0030769603326916695, + 0.034254834055900574, + -0.03287401795387268, + -0.03162597492337227, + 0.042088303714990616, + -0.0104822451248765, + 0.05348002910614014, + -0.0037806450854986906, + 0.08284889906644821, + 0.004972261842340231, + -0.02488122507929802, + 0.018242690712213516, + -0.011604157276451588, + -0.018707389011979103, + 0.02843947894871235, + 0.014418895356357098, + 0.02599649876356125, + -0.01084072608500719, + -0.03382996842265129, + -0.0744577944278717, + 0.020698947831988335, + -0.06516385078430176, + 0.01857461780309677, + -0.007136424072086811, + 0.02101759798824787, + 0.005755608901381493, + -0.033219221979379654, + 0.012599937617778778, + 0.035874634981155396, + 0.014604774303734303, + 0.05217887461185455, + 0.01354924775660038, + -0.00756792863830924, + 0.017007922753691673, + 0.0042021917179226875, + -0.023500408977270126, + -0.07886578142642975, + -0.03271469473838806, + -0.06043720990419388, + -0.07047467678785324, + -0.03632605820894241, + 0.048009876161813736, + -0.006661768537014723, + -0.0713244080543518, + 0.04678838700056076, + 0.06330505758523941, + -0.06049032136797905, + 0.04723980650305748, + -0.04315046966075897, + -0.03398929163813591, + 0.023593349382281303, + 0.10356112569570541, + -0.024562574923038483, + 0.03924701362848282, + 0.022902941331267357, + -0.012002469040453434, + 0.023951830342411995, + -0.004162360914051533, + -0.07435157895088196, + -0.04315046966075897, + 0.061711810529232025, + -0.036830585449934006, + -0.008052541874349117, + 0.07870645821094513, + 0.019278302788734436, + -0.015653662383556366, + 0.05820666626095772, + 0.0028479311149567366, + 0.01461805123835802, + -0.0635174885392189, + 0.08709756284952164, + 0.009466549381613731, + 0.03130732476711273, + 0.07180238515138626, + 0.011889614164829254, + -0.009838307276368141, + 0.06203046068549156, + -0.019583674147725105, + 0.012540190480649471, + -0.02606288343667984, + -0.049125149846076965, + 0.11736927926540375, + -0.009858222678303719, + -0.032024286687374115, + -0.07976862043142319, + -0.014233016408979893, + -0.0004030834825243801, + -0.02355351857841015, + 0.04243350774049759, + 0.050824616104364395, + -0.01022334210574627, + -0.07902510464191437, + 0.06256154179573059, + -0.06829723715782166, + 0.008424299769103527, + -0.07605104148387909, + 0.010495522059500217, + 0.04633696749806404, + 0.03096212074160576, + -0.026700183749198914, + -0.0652700662612915, + 0.023593349382281303, + 0.05762247368693352, + 0.001920195878483355, + -0.000485027878312394, + -0.009884776547551155, + 0.06904075294733047, + -0.09299258142709732, + -0.06250843405723572, + 0.02369956485927105, + -0.044531285762786865, + 0.10117125511169434, + 0.007760446052998304, + -0.02168145217001438, + 0.010309643112123013, + -0.04955001547932625, + -0.028094274923205376, + -0.011816590093076229, + -0.013270429335534573, + 0.03677747771143913, + 0.03167908266186714, + -0.010734508745372295, + -0.04673527926206589, + 0.02538575418293476, + 0.09368298947811127, + 0.0549139529466629, + -0.0035682120360434055, + -0.030245160683989525, + 0.04131823405623436, + 0.04777088761329651, + -0.0344938226044178, + -0.009858222678303719, + 0.005363935139030218, + -0.04620419442653656, + -0.04625730216503143, + -0.039140794426202774, + 0.0004999645752832294, + -0.007136424072086811, + 0.05810044705867767, + 0.0910806804895401, + 0.021044151857495308, + -0.0568789578974247, + -0.025292813777923584, + -0.08603540062904358, + -0.02745697647333145, + 0.06033099442720413, + -0.021575234830379486, + 0.028014613315463066, + -0.07976862043142319, + -0.007169616408646107, + -0.01591920480132103, + -0.021057428792119026, + 0.011205845512449741, + -0.08263646811246872, + -0.013821427710354328, + 0.016636164858937263, + 0.07775051146745682, + -0.032396044582128525, + 0.025452138856053352, + -0.023819059133529663, + -0.028253600001335144, + 0.002489450154826045, + 0.03292712941765785, + 0.07413914799690247, + 0.13616961240768433, + -0.00762767530977726, + 0.04575277492403984, + 0.03345821052789688, + 0.0032313063275069, + -0.056082334369421005, + 0.020566178485751152, + 0.043654996901750565, + 0.021654896438121796, + 0.01032955851405859, + 0.025279536843299866, + 0.00060867058346048, + -0.02525298297405243, + -0.05539192631840706, + 0.09150554984807968, + -0.05932193994522095, + 0.003271137597039342, + 0.05124948173761368, + -0.013190766796469688, + -0.00042362144449725747, + -0.012248095124959946, + -0.06309262663125992, + 0.015321736223995686, + -0.005602922756224871, + -0.08258336037397385, + -0.07456400990486145, + -0.00523780332878232, + -0.03178529813885689, + 0.031652528792619705, + -0.02427048049867153, + -0.009207646362483501, + 0.042805265635252, + -0.029740631580352783, + -0.018760496750473976, + 0.041636884212493896, + 0.04843474179506302, + -0.03799896687269211, + -0.09623218327760696, + -0.024310311302542686, + -0.022464798763394356, + 0.026673628017306328, + -0.02302243560552597, + 0.026089437305927277, + 0.03266158699989319, + -0.054754626005887985, + -0.02287638746201992, + -0.01281237043440342, + 0.008497322909533978, + -0.012679599225521088, + -0.015560722909867764, + -0.01403386052697897, + -0.08433593064546585, + -0.03329888731241226, + 0.04492959752678871, + 0.035290446132421494, + 0.05162123963236809, + 0.06272086501121521, + -0.12830957770347595, + 0.010595100000500679, + -0.04261938855051994, + 0.003820476122200489, + 0.025000717490911484, + -0.02073878049850464, + -0.05390489473938942, + 0.04479682445526123, + 0.06017167121171951, + 0.05958747863769531, + -0.024084601551294327, + 0.05544503405690193, + 0.023513685911893845, + -0.05050596594810486, + -0.05332070216536522, + 0.07944997400045395, + -0.010854003019630909, + 0.01783110201358795, + -0.017645223066210747, + -0.03279435634613037, + 0.06877520680427551, + -0.01805681176483631, + 0.0940016359090805, + -0.08507944643497467, + 0.005486748181283474, + -0.03444071486592293, + -0.08964676409959793, + -0.05207265913486481, + 0.0008696479490026832, + 0.11439521610736847, + -0.043416012078523636, + 0.025000717490911484, + 0.07589171826839447, + -0.06537628173828125, + -0.04190242663025856, + 0.0034885494969785213, + -0.002079520607367158, + -0.03518423065543175, + -0.020274082198739052, + 0.0439736470580101, + -0.07121819257736206, + -0.023208314552903175, + 0.05180711671710014, + -0.004341600928455591, + 0.028997115790843964, + -0.023858889937400818, + -0.03228982910513878, + 0.05162123963236809, + -0.04277871176600456, + 0.036989908665418625, + -0.018388738855719566, + 0.04928447678685188, + -0.026009775698184967, + 0.05762247368693352, + -0.03375030681490898, + -0.05884396284818649, + 0.11821901053190231, + 0.05464841052889824, + 0.0861947238445282, + -0.01828252151608467, + 0.09293947368860245, + 0.004255300387740135, + 0.04854096099734306, + 0.019570397213101387, + 0.00984494574368, + -0.05671963468194008, + -0.016344070434570312, + -0.036910247057676315, + 0.03154631331562996, + 0.04198208823800087, + 0.03866282105445862, + 0.021933715790510178, + 0.060384102165699005, + -0.0373351126909256, + -0.004703401122242212, + 0.013927644118666649, + -0.03999052941799164, + 0.015096025541424751, + -0.054303206503391266, + -0.08040592074394226, + 0.05419699102640152, + 0.04981555789709091, + -0.009951162151992321, + 0.03983120247721672, + -0.06303951889276505, + 0.020181143656373024, + 0.0680316910147667, + -0.021150369197130203, + -0.0025326006580144167, + -0.01598558947443962, + 0.04880649968981743, + -0.03183840960264206, + 0.00725591741502285, + 0.05767558142542839, + -0.04835508018732071, + 0.014047137461602688, + -0.001900280243717134, + 0.0024031491484493017, + -0.01643700897693634, + 0.017300019040703773, + 0.06590736657381058, + 0.013170851394534111, + -0.00299065955914557, + 0.04410642012953758, + 0.050824616104364395, + -0.025730956345796585, + 0.029820293188095093, + 2.4259174097096547e-05, + 0.017645223066210747, + -0.01983593963086605, + 0.00560956122353673, + -0.04532790929079056, + -0.0019733041990548372, + 0.017857655882835388, + -0.02740386687219143, + -0.05741003900766373, + 0.024044768884778023, + 0.051647793501615524, + -0.029448535293340683, + 0.03584808111190796, + -0.030298268422484398, + 0.006850966718047857, + 0.023965107277035713, + -0.04721325263381004, + -0.033883076161146164, + -0.0008630094234831631, + 0.0016679316759109497, + 0.011398362927138805, + 0.037653762847185135, + 0.0007414412684738636, + 0.043708108365535736, + -0.025531800463795662, + -0.018229413777589798, + 0.014153353869915009, + 0.00973872933536768, + 0.00921428482979536, + 0.01740623638033867, + 0.038848698139190674, + 0.07190860062837601, + 0.005423682276159525, + -0.02288966439664364, + 0.051860224455595016, + 0.06702263653278351, + 0.006963822059333324, + -0.05047941207885742, + 0.024894502013921738, + -0.0522850938141346, + -0.013091188855469227, + -0.04716014489531517, + 0.022318750619888306, + -0.011876337230205536, + 0.014936701394617558, + 0.08141497522592545, + -0.03746788576245308, + -0.015587277710437775, + 0.06882832199335098, + -0.006220306269824505, + 0.06383614242076874, + -0.017074309289455414, + -0.03271469473838806, + 0.03834417089819908, + 0.055869899690151215, + -0.05464841052889824, + 0.016012143343687057, + -2.254767605336383e-05, + 0.0623491108417511, + 0.06893453747034073, + -0.027191434055566788, + -0.004544076509773731, + 0.06633222848176956, + 0.03218361362814903, + 0.029209548607468605, + 0.030537255108356476, + 0.03797241300344467, + -0.019610228016972542, + 0.024018215015530586, + -0.00460714241489768, + 0.11248331516981125, + 0.05348002910614014, + -0.04716014489531517, + -0.013243874534964561, + -0.025598186999559402, + -0.049337584525346756, + 0.006197071168571711, + 0.011517856270074844, + -0.09219595789909363, + 0.05523260310292244, + -0.06388925015926361, + 0.00029417002224363387, + -0.08985919505357742, + 0.01682204380631447, + 0.04434540495276451, + 0.04301770031452179, + 0.010615015402436256, + 0.035502877086400986, + 0.039273567497730255, + -0.03855660557746887, + 0.112589530646801, + -0.026832953095436096, + 0.011033243499696255, + -0.052099213004112244, + -0.012506998144090176, + -0.016091806814074516, + -0.049337584525346756, + 0.03701646625995636, + -0.06367681920528412, + -0.018229413777589798, + -0.04437195882201195, + 0.018016980960965157, + -0.04020296037197113, + -0.05175400897860527, + -0.04872683808207512, + 0.05470151826739311, + 0.03911424055695534, + -0.12873445451259613, + -0.0006501614116132259, + 0.003654512809589505, + 0.05217887461185455, + 0.007295748684555292, + -0.09915313869714737, + -0.027881842106580734, + -0.09798476099967957, + 0.03948599845170975, + 0.025956667959690094, + 0.007016930263489485, + 0.09660394489765167, + -0.0035018266644328833, + -0.014325955882668495, + -0.011464747600257397, + 0.04354878142476082, + 0.04126512631773949, + 0.03874248266220093, + -0.022624123841524124, + 0.015520892105996609, + -0.09750678390264511, + 0.009433356113731861, + -0.0692000761628151, + 3.3426054869778454e-05, + 0.039645325392484665, + -0.003936650697141886, + 0.00011938987881876528, + 0.07185549288988113, + -0.017419513314962387, + 0.012712792493402958, + -0.028386371210217476, + 0.01992887817323208, + -0.022039933130145073, + -0.0842297151684761, + -0.04089336842298508, + 0.003647874342277646, + -0.05751625820994377, + 0.004560672678053379, + -0.03956566005945206, + -0.052975498139858246, + 0.01887999102473259, + 0.010555269196629524, + -0.02790839597582817, + -0.016689274460077286, + 0.007415242493152618, + -0.055338818579912186, + -0.022451521828770638, + -0.040388841181993484, + -0.017074309289455414, + -0.010150318033993244, + -0.06564182043075562, + 0.03969843313097954, + 0.02651430480182171, + 0.053851787000894547, + -0.021495573222637177, + 0.04495615139603615, + 0.006641853135079145, + -0.023938553407788277, + 0.06298641115427017, + 0.0017641903832554817, + -0.005563091486692429, + 0.05480773374438286, + -0.0044279019348323345, + -0.005904975812882185, + -0.0020280720200389624, + 0.03664470836520195, + 0.01428612507879734, + -0.007634313777089119, + -0.032396044582128525, + 0.03444071486592293, + -0.059481263160705566, + 0.04004363715648651, + -0.07891888916492462, + 0.03162597492337227 + ] + }, + { + "id": "878cbf5f-249f-4fbd-8d34-86d1ee1b87bf", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "ortegahannah", + "reviewDate": "2022-02-14T23:10:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4037a8c9-f48a-4af1-ba69-ef8f9eb56201", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "bethwalker", + "reviewDate": "2022-04-03T08:33:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cb16d5ae-8c1d-46d8-88ff-2d6749ec9fab", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "grayteresa", + "reviewDate": "2022-04-26T11:20:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "daef4816-3526-49ef-8583-3aad31dda826", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "burnsterrance", + "reviewDate": "2021-06-01T10:56:43", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f2694895-51d7-484b-983a-afdf4e717dac", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "crystal77", + "reviewDate": "2022-12-30T17:34:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "256664fb-0a34-43c2-af4f-a279624f46d0", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "russelltonya", + "reviewDate": "2021-07-24T21:02:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4068ea6d-1dd1-4274-b585-885cdf46a72a", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "jaymartin", + "reviewDate": "2021-07-19T02:09:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "01210d87-4bf4-4c43-b2a7-57960676a548", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "longjoseph", + "reviewDate": "2021-06-06T17:01:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "794b8d66-a2c2-4b49-b5ae-381397ec7f59", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "halejorge", + "reviewDate": "2021-11-11T08:41:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cc60d030-16a2-492c-8853-15e0bf5194f6", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "sanchezrenee", + "reviewDate": "2022-02-10T10:41:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "44669a0d-8c1c-4525-a3e0-ee90eae8aa70", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "wongkelly", + "reviewDate": "2021-07-06T01:03:18", + "stars": 4, + "verifiedUser": true + }, + { + "id": "022e44ea-5608-4a44-8438-f37c19854b96", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "swalker", + "reviewDate": "2022-05-04T04:03:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d7390a8f-f302-454e-bb6e-472700bf717d", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "tsmith", + "reviewDate": "2022-10-29T19:48:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2919488d-b6aa-4416-a621-1ef1e8eabcb1", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "nicole02", + "reviewDate": "2021-05-30T22:28:26", + "stars": 3, + "verifiedUser": true + }, + { + "id": "00912f8c-145a-4ae8-9c44-5dc6609c1e72", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "millerjennifer", + "reviewDate": "2021-11-17T05:20:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1863a671-6208-48a1-a953-1c06513ad641", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "hallmartin", + "reviewDate": "2022-01-01T02:36:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d7e5fb5b-09fc-4c85-b770-17de1f55ffb3", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "rachel68", + "reviewDate": "2021-01-28T12:46:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a7fa0084-f890-475f-b31a-ba0c9f534f46", + "productId": "f5b1f5a8-a2d9-4b1c-9791-6392b77cf0a3", + "category": "Media", + "docType": "customerRating", + "userName": "crystal40", + "reviewDate": "2022-05-08T07:32:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Ultra (Silver)", + "description": "This Amazing Keyboard Ultra (Silver) is rated 4.0 out of 5 by 11.\n\nRated 1 out of 5 by BenZ from Does not work If you open a USB device and use its keyboard in a virtual environment, then this keyboard has a", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-01-06T05:50:57", + "price": 985.38, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-01-14T15:53:20", + "newPrice": 922.03 + }, + { + "priceDate": "2022-11-19T15:53:20", + "newPrice": 891.08 + }, + { + "priceDate": "2025-01-30T15:53:20", + "newPrice": 985.38 + } + ], + "descriptionVector": [ + -0.014110475778579712, + 0.0333944708108902, + -0.007522021420300007, + 0.017659975215792656, + 0.03747882694005966, + -0.02648996375501156, + -0.03660360723733902, + 0.04660055413842201, + -0.008966132998466492, + 0.08581036329269409, + 0.025809237733483315, + -0.03981274366378784, + -0.0263343695551157, + -0.07382959127426147, + -0.027890313416719437, + 0.017319612205028534, + -0.03924871236085892, + 0.009005031548440456, + -0.0006849804776720703, + 0.0528632327914238, + 0.03174127638339996, + -0.009530163370072842, + -0.06278237700462341, + -0.003651608480140567, + -0.014762028120458126, + -0.032558150589466095, + 0.033550065010786057, + 0.013624243438243866, + 0.04018228128552437, + -0.051968563348054886, + 0.028862779960036278, + -0.058775823563337326, + -0.005290213041007519, + 0.005805619992315769, + 0.049790240824222565, + 0.01648329198360443, + -0.015326058492064476, + -0.03193577006459236, + -0.0660109668970108, + 0.07799174636602402, + 3.7588077248074114e-05, + 0.020285632461309433, + 0.025653643533587456, + 0.011572340503334999, + -0.00518810423091054, + 0.01990637183189392, + 0.017339061945676804, + 0.038295697420835495, + 0.011689037084579468, + 0.09032260626554489, + 0.04897337034344673, + -0.011562616564333439, + -0.05741437152028084, + -0.01494679693132639, + 0.08946684002876282, + -0.025984281674027443, + -0.014120200648903847, + 0.050918299704790115, + 0.133966863155365, + -0.054302480071783066, + -0.02189992554485798, + -0.028960026800632477, + -0.01826290413737297, + -0.04022117704153061, + 0.016940351575613022, + 0.006729462184011936, + -0.036156270653009415, + -0.012885169126093388, + 0.02071351744234562, + 0.015812290832400322, + -0.01699869893491268, + -0.006141120567917824, + 0.01883665844798088, + 0.04442222788929939, + 0.04430553317070007, + -0.0033039520494639874, + 0.0914117693901062, + 0.006369649898260832, + 0.02528410591185093, + 0.058853618800640106, + -0.00854797288775444, + 0.00492067588493228, + -0.06328806281089783, + -0.04274958744645119, + 0.03637021407485008, + 0.020130038261413574, + 0.001671425299718976, + -0.10914953798055649, + -0.09864691644906998, + 0.08565477281808853, + -0.031546786427497864, + 0.003311245469376445, + -0.009588510729372501, + -0.0682670846581459, + 0.01837960071861744, + -0.04718403145670891, + -0.09716876596212387, + 0.02862938866019249, + -0.014266070909798145, + -0.005348560865968466, + -0.00356894894503057, + -0.013614518567919731, + -0.036059025675058365, + -0.036156270653009415, + -0.0011049640597775578, + 0.002856617793440819, + 0.0914117693901062, + -0.030710464343428612, + 0.024545032531023026, + 0.010522077791392803, + -0.04500570893287659, + -0.018467122688889503, + -0.011270876973867416, + -0.04539469629526138, + -0.001693305792286992, + 0.046211566776037216, + -0.06204330548644066, + 0.010512353852391243, + -0.017183467745780945, + -0.033977948129177094, + 0.028395995497703552, + 0.017815569415688515, + -0.018428223207592964, + 0.07456866651773453, + -0.01849629543721676, + 0.05371900275349617, + -0.03753717243671417, + 0.05932040140032768, + 0.025925934314727783, + -0.061187535524368286, + -0.013935432769358158, + 0.031468987464904785, + 0.041660428047180176, + 0.013011589646339417, + -0.03413354232907295, + -0.007619268260896206, + -0.100825235247612, + 0.09584621340036392, + -0.01780584640800953, + 0.0310411024838686, + 0.01268095150589943, + 0.006569005083292723, + -0.015151014551520348, + 0.04333306849002838, + -0.10914953798055649, + -0.006778085604310036, + -0.045239102095365524, + 0.025692541152238846, + 0.03098275512456894, + 0.054302480071783066, + 0.03876248002052307, + -0.06200440973043442, + -0.07371289283037186, + -0.07927539944648743, + 0.018233729526400566, + 0.0056159887462854385, + 0.019303442910313606, + 0.01549137756228447, + 0.010395657271146774, + 0.046483855694532394, + -0.06686673313379288, + 0.006656527053564787, + -0.0016045683296397328, + -0.016872279345989227, + 0.018574092537164688, + 0.05375789850950241, + 0.014966245740652084, + 0.08674393594264984, + -0.030496522784233093, + 0.02962130308151245, + -0.05850353091955185, + -0.0002494982036296278, + 0.04772861301898956, + -0.05130728706717491, + 0.03401684761047363, + -0.0022658449597656727, + -0.00516379252076149, + 0.02077186480164528, + -0.027190139517188072, + -0.06896726042032242, + -0.0015437891706824303, + 0.04317747429013252, + -0.06422162801027298, + -0.0011469016317278147, + 0.14874833822250366, + -0.004694577772170305, + -0.024681176990270615, + -0.024350538849830627, + 0.029135070741176605, + 0.010667948052287102, + -0.030496522784233093, + -0.0036200033500790596, + -0.08822207897901535, + 0.02302798628807068, + -0.04706733673810959, + 0.08581036329269409, + -0.011601515114307404, + -0.014966245740652084, + 0.00993373617529869, + 0.010142816230654716, + 0.03242200240492821, + 0.087677501142025, + 0.053174421191215515, + -0.03292768448591232, + -0.0019145417027175426, + 0.005056821275502443, + 0.023572565987706184, + 0.014120200648903847, + 0.005970939062535763, + -0.0008551619830541313, + 0.04998473450541496, + -0.014460563659667969, + 0.03353061527013779, + 0.0009505851194262505, + 0.017319612205028534, + 0.032499801367521286, + -0.06776140630245209, + 0.03351116552948952, + -0.11358398199081421, + -0.06087634712457657, + 0.025400802493095398, + -0.02853214181959629, + 0.006661389488726854, + -0.002832306083291769, + -0.0014501893892884254, + -0.062315598130226135, + 0.010210889391601086, + -0.04788420721888542, + 0.0015097528230398893, + 0.0021345620043575764, + -0.04228280484676361, + -0.03703149035573006, + 0.0072594559751451015, + 0.00013629713794216514, + -0.04698953777551651, + 0.00216130493208766, + -0.0375177226960659, + -0.06173211708664894, + -0.053135521709918976, + 0.07721377164125443, + 0.05694758519530296, + 0.004602193366736174, + -0.037187084555625916, + -0.03284988924860954, + 0.015530276112258434, + -0.10074743628501892, + 0.07997557520866394, + -0.03693424537777901, + -0.12486458569765091, + 0.005479843821376562, + -0.020149488002061844, + 0.03465867415070534, + -0.02295018918812275, + 0.03903476893901825, + 0.03193577006459236, + 0.06643885374069214, + 0.01870051398873329, + -0.013672866858541965, + -0.032558150589466095, + -0.055352743715047836, + -0.022561201825737953, + 0.0711066871881485, + -0.06083744764328003, + 0.02847379259765148, + 0.007993667386472225, + 0.047378525137901306, + 0.04457782581448555, + -0.030457623302936554, + -0.03244145214557648, + -0.027948662638664246, + -0.02755967527627945, + -0.022366710007190704, + 0.06850048154592514, + -0.026820601895451546, + -0.05290212854743004, + -0.004957143682986498, + -0.06293797492980957, + 0.05527494475245476, + 0.008338892832398415, + -0.03080771118402481, + 0.062432292848825455, + 0.0993470847606659, + 0.026859501376748085, + 0.03745937719941139, + 0.0727793276309967, + -0.0009967773221433163, + 0.04333306849002838, + 0.019283993169665337, + 0.024953467771410942, + 0.01729043945670128, + -0.007342115510255098, + -0.03246090188622475, + -0.016094306483864784, + 0.034736473113298416, + -0.03174127638339996, + -0.00440770061686635, + 0.02293073944747448, + 0.024233844131231308, + 0.013595069758594036, + -0.021938825026154518, + 0.07410188019275665, + -0.018768586218357086, + -0.09786894172430038, + -0.05807564780116081, + -0.0346197746694088, + 0.05231865122914314, + -0.034950412809848785, + -0.04469452053308487, + -0.022561201825737953, + -0.002169813960790634, + 0.03176072612404823, + -0.04216611012816429, + -0.0033039520494639874, + -0.027695821598172188, + 0.13910147547721863, + -0.05220195651054382, + 0.04574478417634964, + 0.08721071481704712, + 0.034969862550497055, + 0.011300050653517246, + -0.033588964492082596, + -0.03672030195593834, + -0.0015146152582019567, + 0.030593767762184143, + 0.03510601073503494, + -0.055391643196344376, + 0.012165544554591179, + 0.02164708450436592, + -0.006369649898260832, + -0.06799479573965073, + 0.023319724947214127, + -0.004684853367507458, + -0.027034543454647064, + 0.040765758603811264, + 0.030418723821640015, + -0.05690868943929672, + -0.02188047580420971, + 0.06519409269094467, + 0.027676371857523918, + 0.05165737494826317, + 0.027929212898015976, + -0.008129812777042389, + 0.0436442568898201, + -0.07344060391187668, + 0.008270819671452045, + -0.07764165848493576, + -0.0038290834054350853, + -0.04601707309484482, + 0.022269463166594505, + -0.03757607191801071, + 0.001023520017042756, + -0.027248486876487732, + 0.003286933759227395, + -0.027229037135839462, + -0.00567919947206974, + -0.015695594251155853, + 0.014937072061002254, + -0.013945156708359718, + 0.015462202951312065, + 0.05134618654847145, + -0.026723355054855347, + -0.02536190301179886, + 0.02843489497900009, + 0.030535420402884483, + -0.08923344314098358, + 0.02516741119325161, + -0.0058250692673027515, + -0.01583174057304859, + 0.03876248002052307, + -0.03934595733880997, + -0.026003731414675713, + -0.06970633566379547, + -0.01881721056997776, + 0.05827014148235321, + -0.048662178218364716, + 0.03998778760433197, + -0.02851269207894802, + 0.00045979389688000083, + 0.029426809400320053, + 0.0333944708108902, + -0.015802565962076187, + 0.008513936772942543, + -0.022016622126102448, + -0.004483066499233246, + 0.005421495996415615, + -0.02164708450436592, + -0.03220806270837784, + 0.07526884227991104, + 0.005455532111227512, + -0.009316220879554749, + -0.014917622320353985, + 0.010551252402365208, + -0.0397738441824913, + 0.033686209470033646, + 0.014655057340860367, + -0.001408859621733427, + 0.05811454728245735, + 0.07830293476581573, + -0.015734493732452393, + 0.06511630117893219, + -0.010745745152235031, + 0.07744716107845306, + 0.0460948720574379, + -0.0895446315407753, + -0.021549837663769722, + -0.0932788997888565, + -0.03213026374578476, + 0.1034703403711319, + -0.08791089057922363, + -0.11187244206666946, + -0.023825407028198242, + -0.050801604986190796, + 0.009768417105078697, + -0.019517384469509125, + 0.022561201825737953, + 0.07604680955410004, + 0.13785672187805176, + -0.010522077791392803, + 0.04924565926194191, + -0.02862938866019249, + 0.06663334369659424, + 0.007575507275760174, + 0.033802904188632965, + 0.031235596165060997, + -0.048778876662254333, + 0.05231865122914314, + -0.04660055413842201, + -0.02761802449822426, + 0.008679255843162537, + -0.04379985108971596, + 0.04698953777551651, + -0.02386430650949478, + 0.00023977355158422142, + -0.004154859576374292, + 0.0020993102807551622, + -0.019993893802165985, + -0.049906935542821884, + 0.01788364350795746, + 0.027695821598172188, + 0.022055519744753838, + -0.014480013400316238, + -0.01784474402666092, + -0.04683394357562065, + -0.05243534594774246, + -0.10471510142087936, + -0.0004868406103923917, + -0.04897337034344673, + 0.09639079123735428, + 0.052474245429039, + -0.03411409258842468, + 0.011261152103543282, + -0.02306688390672207, + -0.03553389385342598, + -0.0003046552592422813, + 0.08931124210357666, + -0.023105783388018608, + 0.003058404428884387, + 0.06951184570789337, + -0.02981579676270485, + -0.0034644086845219135, + -0.04811760038137436, + 0.0575699657201767, + -0.01554972492158413, + 0.012875445187091827, + 0.023844856768846512, + -0.05834793671965599, + -0.05613071471452713, + -0.037245433777570724, + -0.015676146373152733, + -0.021510940045118332, + 0.027734719216823578, + -0.06418272852897644, + 0.07721377164125443, + 0.019536834210157394, + 0.027190139517188072, + -0.08020896464586258, + -0.009476677514612675, + 0.04018228128552437, + 0.005397184286266565, + 0.024350538849830627, + -0.013779837638139725, + 0.027929212898015976, + 0.030049188062548637, + -0.017873918637633324, + 0.09156735986471176, + 0.006150844972580671, + -0.015763668343424797, + -0.002513823565095663, + 0.07896421104669571, + 0.04667834937572479, + 0.022074969485402107, + 0.03786781057715416, + 0.020363429561257362, + -0.06585536897182465, + -0.03318052738904953, + -0.020285632461309433, + -0.07215695083141327, + 0.017125120386481285, + -0.06040956452488899, + 0.0750354453921318, + 0.03465867415070534, + -0.04111584648489952, + -0.01208774745464325, + 0.030574319884181023, + 0.008669530972838402, + -0.026587210595607758, + -0.06107084080576897, + 0.041738223284482956, + -0.02645106427371502, + -0.002944139763712883, + 0.041660428047180176, + -0.09429026395082474 + ] + }, + { + "id": "18ac4a8f-841d-4389-a611-2c6dfb89c8b4", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "armstrongshirley", + "reviewDate": "2022-07-02T20:16:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "797387a2-ba83-4a1a-9629-8f66bb73a359", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laurenglover", + "reviewDate": "2022-02-07T19:29:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b7c921eb-2229-4ca5-8e3d-a86790aa04f0", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dhooper", + "reviewDate": "2022-11-20T10:57:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "674a1ebe-4e90-4edf-837c-c36a1d4d22fc", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomasgrant", + "reviewDate": "2021-01-14T15:53:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7315901f-350d-4dbd-ab89-e3d3314d6be5", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tamihowell", + "reviewDate": "2022-08-06T12:02:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "baaa6f08-44b7-4324-a547-14863b43c98d", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gardnerrebecca", + "reviewDate": "2021-03-28T13:53:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3d7b44ad-615d-4389-b237-15fdb36f27dc", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fjohnson", + "reviewDate": "2021-01-28T12:10:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "cafd158b-e32e-4dcc-848c-3a5e69736b74", + "productId": "ada73e56-31db-4b0c-bb38-8cf9e7f8585e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emilynelson", + "reviewDate": "2022-07-05T15:29:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Ultra (Steel)", + "description": "This Amazing Speaker Ultra (Steel) is rated 4.3 out of 5 by 28.\n\nRated 5 out of 5 by Mike Rigg from Amazing Awesome Specs! I started this project while I was still living in the dark and the sound quality of it seemed great. A little pricey but it worked out so well! My old acoustic headphones did not have stereo, and thus", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-07-07T07:09:18", + "price": 478.2, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-02-15T07:45:55", + "newPrice": 523.82 + }, + { + "priceDate": "2021-07-01T07:45:55", + "newPrice": 453.77 + }, + { + "priceDate": "2021-11-14T07:45:55", + "newPrice": 434.8 + }, + { + "priceDate": "2022-03-30T07:45:55", + "newPrice": 489.3 + }, + { + "priceDate": "2025-02-15T07:45:55", + "newPrice": 478.2 + } + ], + "descriptionVector": [ + -0.005778084974735975, + 0.024926219135522842, + -0.03852446749806404, + -0.025417722761631012, + -0.03342219814658165, + 0.004101708997040987, + -0.10279432684183121, + 0.03243919461965561, + -0.01152691338211298, + 0.12844610214233398, + 0.0033498264383524656, + -0.028671003878116608, + -0.02565177157521248, + -0.003999312408268452, + -0.03782232105731964, + -0.03466266021132469, + -0.007021470461040735, + -0.0351775661110878, + 0.008566194213926792, + 0.018314335495233536, + 0.04255010932683945, + -0.07161899656057358, + -0.0024150931276381016, + -0.011333823204040527, + -0.047043852508068085, + -0.009361959993839264, + -0.006342728156596422, + 0.040958575904369354, + 0.046762991696596146, + -0.07447439432144165, + 0.06398899853229523, + 0.02689223177731037, + 0.0015286325942724943, + 0.05387808382511139, + 0.04540550708770752, + 0.05458023026585579, + 0.02501983940601349, + -0.05687391012907028, + 0.00815660785883665, + 0.05401851236820221, + 0.006623587105423212, + 0.042830970138311386, + 0.027570974081754684, + -0.018173905089497566, + 0.023779379203915596, + -0.012217358686029911, + -0.031292352825403214, + 0.049712009727954865, + 0.028273120522499084, + 0.019999487325549126, + -0.028413549065589905, + -0.0035663219168782234, + -0.08318101614713669, + 0.006927850656211376, + 0.02290169522166252, + -0.0400925949215889, + -0.010900832712650299, + 0.09020248800516129, + 0.047675784677267075, + -0.02269105240702629, + 0.060993172228336334, + -0.03133916109800339, + -0.04086495563387871, + -0.012966315262019634, + -0.017565378919243813, + 0.0034288179595023394, + -0.0016412687255069613, + 0.036745693534612656, + -0.017389841377735138, + 0.08332144469022751, + 0.07770427316427231, + 0.019250530749559402, + 0.03318814933300018, + 0.03152640163898468, + 0.06998065114021301, + -0.026400728151202202, + 0.04989925026893616, + 0.08411721140146255, + -0.038922350853681564, + 0.05181845277547836, + 0.04826090484857559, + 0.061414461582899094, + 0.004233361687511206, + 0.009186423383653164, + 0.06848274171352386, + -0.007027321495115757, + -0.021485699340701103, + -0.12292253971099854, + -0.01757708005607128, + 0.056780289858579636, + -0.017272816970944405, + -0.010099214501678944, + 0.05003967881202698, + 0.011954053305089474, + 0.07091685384511948, + 0.019706927239894867, + -0.08004476130008698, + 0.007202858105301857, + -0.07779788970947266, + -0.00467512896284461, + 0.0066001820378005505, + -0.03215833380818367, + -0.04393099993467331, + -0.017073875293135643, + -0.013890808448195457, + -0.005760531406849623, + 0.036183975636959076, + 0.015938738361001015, + 0.01313014980405569, + -0.05883992090821266, + 0.002817364875227213, + -0.028249716386198997, + 0.009133762679994106, + -0.06623587012290955, + 0.09727077186107635, + 0.036815907806158066, + 0.005207590293139219, + -0.0663294866681099, + -0.017038768157362938, + -0.0073666926473379135, + -0.015002541244029999, + -1.9039338440052234e-05, + -0.0017787724500522017, + -0.003744784276932478, + 0.04442250356078148, + -0.002167878905311227, + 0.039343640208244324, + 0.04308842122554779, + 0.010865725576877594, + 0.022609135136008263, + -0.05233335867524147, + 0.04751195013523102, + 0.0018811689224094152, + 0.013153554871678352, + -0.030215727165341377, + 0.004318204242736101, + -0.007899153977632523, + 0.01954309269785881, + 0.011673194356262684, + -0.030590206384658813, + 0.029443366453051567, + 0.06562734395265579, + 0.012966315262019634, + 0.039273425936698914, + -0.03103489801287651, + -0.00043847618508152664, + -0.04467995464801788, + 0.02590922638773918, + -0.006553372368216515, + 0.009297597222030163, + -0.003975907806307077, + -0.0640358105301857, + -0.011866284534335136, + -0.02255062200129032, + 0.0227612666785717, + 0.033328577876091, + -0.11253076791763306, + 0.028834838420152664, + -0.04744173586368561, + 0.0635209009051323, + -0.021052708849310875, + -0.04980562999844551, + -0.028390144929289818, + 0.01127531100064516, + 0.010947642847895622, + 0.07662764936685562, + 0.04589701071381569, + 0.07063598930835724, + -0.07817237079143524, + 0.028413549065589905, + 0.04355652257800102, + -0.01715579256415367, + -0.000631200906354934, + -0.05172483250498772, + 0.027570974081754684, + -0.037096768617630005, + 0.07850003987550735, + 0.014979137107729912, + -0.005938993766903877, + 0.016430240124464035, + -0.023767676204442978, + 0.07784470170736313, + 0.0008623243193142116, + -0.020011190325021744, + 0.06843592971563339, + 0.05032053589820862, + 0.04365013912320137, + -0.0007200664258562028, + 0.007782129570841789, + 0.06445709615945816, + -0.012030119076371193, + -0.0038676599506288767, + -0.06693802028894424, + 0.003042637137696147, + -0.09380684047937393, + 0.003946651238948107, + 0.0508822537958622, + 0.03138597309589386, + -0.056359000504016876, + 0.0036131315864622593, + 0.024224072694778442, + 0.08683218061923981, + 0.0743807777762413, + -0.019039887934923172, + -0.0018548384541645646, + -0.10625825077295303, + 0.02724330499768257, + 0.09198126196861267, + 0.04706725478172302, + -0.029794439673423767, + 0.0047043850645422935, + -0.020409073680639267, + -0.05766967684030533, + 0.05392489209771156, + 0.04821409657597542, + 0.04615446552634239, + 0.01386740431189537, + -0.009332704357802868, + -0.037096768617630005, + -0.10260708630084991, + 0.03487330302596092, + -0.045358698815107346, + 0.052848268300294876, + -0.003724304959177971, + -0.08346188068389893, + 0.002646216657012701, + 0.024645360186696053, + -0.02150910347700119, + 0.0645507201552391, + 0.004724864382296801, + -0.006892743520438671, + 0.018103690817952156, + 0.019940976053476334, + 0.03089446946978569, + -0.04191817715764046, + 0.026119869202375412, + -0.038501061499118805, + 0.006360281724482775, + -0.016980255022644997, + 0.10494757443666458, + 0.003507809480652213, + -0.012767373584210873, + -0.050695016980171204, + -0.052988696843385696, + -0.010216238908469677, + -0.058886732906103134, + 0.11271800100803375, + -0.04769918695092201, + -0.08023200184106827, + 0.003996386658400297, + -0.04142667353153229, + -0.0064597525633871555, + -0.025534747168421745, + 0.04840133711695671, + 0.029888058081269264, + 0.013680164702236652, + 0.0736786276102066, + -0.019074995070695877, + 0.060993172228336334, + -0.09811334311962128, + -0.019039887934923172, + 0.0013318851124495268, + -0.008712474256753922, + 0.038290418684482574, + -0.10466671735048294, + 0.04023302346467972, + 0.023241067305207253, + 0.005529407877475023, + 0.020163321867585182, + -0.006752314046025276, + -0.0480736680328846, + 0.035903118550777435, + 0.017120685428380966, + 0.004789228085428476, + -0.01026890054345131, + 0.056218571960926056, + -0.031409379094839096, + 0.0006341265398077667, + -0.0166642889380455, + -0.02052609808743, + 0.13059934973716736, + 0.037026554346084595, + 0.06174213066697121, + 0.0015783680137246847, + 0.06389538198709488, + -0.027570974081754684, + 0.05261421948671341, + 0.004113411530852318, + 0.04439909756183624, + -0.024645360186696053, + -0.005532333627343178, + -0.01899307779967785, + 0.009724736213684082, + 0.0570143386721611, + -0.008531086146831512, + 0.03826701268553734, + 0.03232216835021973, + -0.062116608023643494, + -0.0032737604342401028, + 0.014628062956035137, + 0.048588573932647705, + 0.046622563153505325, + -0.05116311460733414, + -0.03229876235127449, + -0.00290659605525434, + 0.042854372411966324, + 0.016079166904091835, + 0.028741218149662018, + -0.06567415595054626, + -0.05448660999536514, + 0.03089446946978569, + -0.02459855191409588, + -0.028460359200835228, + -0.013083339668810368, + 0.10410500317811966, + -0.004122188314795494, + -0.01219395361840725, + 0.0399053581058979, + 0.0563121922314167, + 0.031011493876576424, + -0.0389457568526268, + -0.05472065880894661, + -0.0407947413623333, + 0.06164851039648056, + -0.04027983546257019, + -0.02635391801595688, + 0.04414164274930954, + -0.045920416712760925, + 0.0462246797978878, + 0.02032715640962124, + 0.022854885086417198, + -0.02131016179919243, + 0.04037345573306084, + 0.015271698124706745, + 0.061133600771427155, + 0.006184745114296675, + -0.03356262668967247, + 0.015611069276928902, + 0.08215120434761047, + 0.06314641982316971, + 0.026494348421692848, + -0.03875851631164551, + 0.05308231711387634, + 0.0014796286122873425, + 0.027477353811264038, + -0.0973643884062767, + 0.05443980172276497, + -0.05242697894573212, + -0.01295461319386959, + -0.018407953903079033, + 0.0012038896093145013, + -0.00871832575649023, + -0.004759971983730793, + 0.006623587105423212, + 0.010532205924391747, + -0.008566194213926792, + -0.004028568509966135, + -0.04531188681721687, + 0.05823139473795891, + 0.01313014980405569, + 0.0466693714261055, + -0.003987609874457121, + -0.0027998113073408604, + 0.005576217547059059, + -0.025417722761631012, + 0.027828427031636238, + 0.028975266963243484, + 0.014347204007208347, + -0.013785487040877342, + -0.04425866901874542, + -0.02621348947286606, + -0.05710795894265175, + -0.029934868216514587, + 0.020725039765238762, + -0.042011797428131104, + -0.0037272304762154818, + 0.040958575904369354, + -0.013188662007451057, + 0.019531389698386192, + 0.05256740748882294, + 0.00833799596875906, + 0.05500151589512825, + 0.05387808382511139, + 0.04533529281616211, + 0.035552043467760086, + 0.04142667353153229, + -0.008109798654913902, + 0.05200568959116936, + -0.001409413875080645, + 0.0549078993499279, + 0.006126232910901308, + -0.015435532666742802, + -0.032134927809238434, + 0.09661543369293213, + 0.07531697303056717, + -0.029185911640524864, + 0.03957768902182579, + 0.12207996100187302, + -0.030005082488059998, + -0.02885824255645275, + -0.02367405779659748, + 0.05003967881202698, + 0.0591207817196846, + -0.051678020507097244, + -0.002826141892001033, + -0.08261930197477341, + -0.02738373354077339, + 0.016430240124464035, + -0.04439909756183624, + -0.07559783011674881, + 0.0026037951465696096, + -0.05954206734895706, + -0.01820901222527027, + -0.03594992682337761, + 0.010280602611601353, + 0.10167089104652405, + 0.07653402537107468, + -0.024551741778850555, + 0.028553979471325874, + -0.014183370396494865, + 0.04030324146151543, + 0.03669888526201248, + 0.021825069561600685, + -0.017424948513507843, + -0.025253888219594955, + 0.0659550130367279, + 0.00914546474814415, + -0.03197109326720238, + -0.05233335867524147, + -0.05785691738128662, + -0.03627759590744972, + -0.06843592971563339, + 0.008882160298526287, + 0.0015856820391491055, + -0.04350971058011055, + -0.024575145915150642, + -0.016067463904619217, + 0.02691563591361046, + -0.04388418793678284, + -0.06380175799131393, + -0.02389640361070633, + 0.04510124400258064, + -0.01093008928000927, + -0.00882364809513092, + -0.14604657888412476, + -0.05289507657289505, + -0.06445709615945816, + 0.058605872094631195, + 0.04056069254875183, + -0.005816117860376835, + 0.051116302609443665, + 0.027407139539718628, + -0.04439909756183624, + 0.00022563787933904678, + 0.08065328747034073, + -0.029326342046260834, + -0.011363079771399498, + 0.07812555879354477, + -0.03243919461965561, + -0.001647119875997305, + -0.1031688004732132, + 0.08627046644687653, + 0.01598554663360119, + 0.022714456543326378, + -0.048869434744119644, + -0.04065431281924248, + -0.0780787467956543, + -0.03489670902490616, + -0.02537091262638569, + 0.015400424599647522, + -0.026845421642065048, + -0.06773378700017929, + 0.009233233518898487, + 0.032673243433237076, + -0.08219801634550095, + -0.04180115461349487, + 0.0064246454276144505, + -0.038711708039045334, + 0.061695318669080734, + 0.02998167835175991, + -0.02949017472565174, + 0.03686271980404854, + 0.05144397169351578, + 0.019718628376722336, + 0.07971709221601486, + 0.006377835758030415, + 0.008103947155177593, + 0.03124554269015789, + -0.053690843284130096, + 0.003876436734572053, + 0.0016324918251484632, + 0.11159456521272659, + 0.021041005849838257, + -0.009900272823870182, + -0.001554963062517345, + -0.0077762785367667675, + -0.022667646408081055, + -0.014429121278226376, + -0.05855906382203102, + 0.05883992090821266, + 0.00714434590190649, + -0.03379667550325394, + -0.02410704828798771, + 0.03943725675344467, + -0.038711708039045334, + -0.02766459248960018, + -0.053409986197948456, + 0.01548234187066555, + -0.019355854019522667, + 0.08725347369909286, + 0.08856414258480072, + -0.004432303365319967 + ] + }, + { + "id": "99c29f75-d484-486d-a00e-3e4f68d87107", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "ilamb", + "reviewDate": "2021-06-18T05:53:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4c0b1adb-661b-4d63-a8bd-7ce956ef380c", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "umartinez", + "reviewDate": "2021-05-06T03:32:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "527f2dfa-131c-4ff2-b7d4-9ed237b76d34", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "christophermyers", + "reviewDate": "2021-04-02T13:31:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3bb60c14-9801-4fb7-8e5b-03e41e73ea1a", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "carrollmary", + "reviewDate": "2022-04-01T17:45:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9dd7fa6f-5df2-45d3-b7e7-6fbb74c8dd0f", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "eric88", + "reviewDate": "2021-06-11T12:22:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0fff1c24-e16a-4790-985c-d59288f9ba24", + "productId": "577742b5-3f0e-4d91-805a-be6138d70fc1", + "category": "Media", + "docType": "customerRating", + "userName": "zali", + "reviewDate": "2021-02-15T07:45:55", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8b17b915-aee8-474d-9371-0089e1dc5965", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Steel)", + "description": "This Luxe Filter 3000 (Steel) is a very advanced filter which adds a premium blend between soft and clean lightweight fabrics. With this filter, you get the clean feel of fabric, no added cost in cost and no need to be a regular bagman.\n\nThe Luxe Filter 1500 (Steel) looks like a beautiful piece of clothing in all its glory. It is built to last and will last anywhere from a few weeks to a 1-2 months. The", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-05-27T02:13:48", + "price": 474.27, + "stock": 60, + "priceHistory": [ + { + "priceDate": "2021-02-07T11:42:13", + "newPrice": 494.43 + }, + { + "priceDate": "2022-01-17T11:42:13", + "newPrice": 476.69 + }, + { + "priceDate": "2022-12-27T11:42:13", + "newPrice": 472.69 + }, + { + "priceDate": "2025-02-01T11:42:13", + "newPrice": 474.27 + } + ], + "descriptionVector": [ + -0.0365971103310585, + 0.025972984731197357, + -0.03286430984735489, + -0.0010449558030813932, + 0.019629834219813347, + -0.02894878387451172, + -0.045628923922777176, + -0.019642885774374008, + 0.009749658405780792, + 0.04915289580821991, + -0.01576651632785797, + -0.00042989206849597394, + 0.00892739836126566, + -0.015583790838718414, + 0.0503014512360096, + -0.00663681561127305, + -0.05071910470724106, + -0.010728539898991585, + 0.037275802344083786, + -0.09418144077062607, + 0.0017114109359681606, + -0.03364741429686546, + -0.07042724639177322, + -0.04419323056936264, + 0.006600923370569944, + -0.012536207213997841, + -0.015296652913093567, + -0.0034880805760622025, + -0.0036153350956737995, + -0.03390844911336899, + 0.0686522126197815, + 0.0752824991941452, + 0.01310395821928978, + 0.08186058700084686, + -0.055339425802230835, + -0.0722544938325882, + 0.08186058700084686, + 0.044767506420612335, + 0.030097339302301407, + 0.028583334758877754, + -0.01849433220922947, + -0.01606670580804348, + -0.1166304498910904, + 0.02389775589108467, + 0.026677779853343964, + -0.08384445309638977, + -0.0422876738011837, + 0.043070778250694275, + -0.00950820092111826, + -0.046046577394008636, + 0.04103470593690872, + -0.0203868355602026, + -0.0644756481051445, + -0.049022376537323, + -0.02355841174721718, + -0.016993381083011627, + 0.04756058007478714, + 0.2052779495716095, + 0.04335791617631912, + -0.020047489553689957, + 0.00018221468781121075, + -0.09788813441991806, + -0.012386111542582512, + -0.021078579127788544, + -0.055548254400491714, + -0.050484172999858856, + -0.04364505782723427, + -0.04813485965132713, + 0.055235013365745544, + 0.05549604818224907, + -0.06149985268712044, + 0.025333449244499207, + 0.01183793880045414, + 0.04818706586956978, + 0.03829383850097656, + -0.00626157782971859, + 0.07909361273050308, + -0.06666834652423859, + 0.03302093222737312, + -0.007896309718489647, + 0.034195587038993835, + 0.05118896812200546, + -0.060821160674095154, + -0.016941173002123833, + -0.008203025907278061, + 0.021496234461665154, + 0.03745852783322334, + -0.0732986330986023, + 0.007028368301689625, + 0.004179823212325573, + 0.0515805222094059, + 0.07235890626907349, + -0.008490163832902908, + -0.10290000587701797, + -0.03623166307806969, + 0.07700533419847488, + -0.06833896785974503, + 0.023506203666329384, + -0.07115814834833145, + 0.02504631131887436, + -0.041791707277297974, + -0.025450915098190308, + -0.059359364211559296, + 0.034613244235515594, + -0.0006880720029585063, + 0.045420095324516296, + -0.01691506989300251, + -0.03289041295647621, + 0.011492067016661167, + -0.13083074986934662, + 0.054086457937955856, + -0.024028273299336433, + -0.032916516065597534, + 0.016888966783881187, + -0.03158523887395859, + 0.025829415768384933, + -0.059463780373334885, + 0.021939994767308235, + 0.09360715746879578, + 0.038842011243104935, + 0.04283584654331207, + 0.06452786177396774, + 0.084105484187603, + -0.013717390596866608, + 0.02505936287343502, + 0.003380403621122241, + 0.03685814514756203, + -0.029209818691015244, + 0.045106854289770126, + -0.008809932507574558, + -0.11224506050348282, + 0.008783828467130661, + 0.007028368301689625, + 0.009932382963597775, + -0.07397732883691788, + 0.06149985268712044, + 0.012816819362342358, + 0.10973912477493286, + -0.02167895808815956, + 0.10477945953607559, + -0.03317755088210106, + -0.04249650239944458, + -0.021313508972525597, + 0.048996273428201675, + 0.03923356533050537, + -0.12916013598442078, + -0.04006887599825859, + 0.006486720405519009, + -0.015126979909837246, + -0.016236377879977226, + 0.05043196678161621, + -0.13490289449691772, + 0.021587597206234932, + -0.003034532070159912, + 0.028609439730644226, + 0.016640983521938324, + -0.11819665879011154, + 0.03818942606449127, + 0.012066343799233437, + -0.017580708488821983, + 0.044036608189344406, + 0.004196138121187687, + -0.018324658274650574, + 0.010558866895735264, + -0.015048669651150703, + 0.06922648847103119, + 0.0040754093788564205, + -0.03390844911336899, + -0.06802573055028915, + 0.026129605248570442, + -0.009645244106650352, + 0.034926485270261765, + 0.004091723822057247, + -0.02588162198662758, + -0.04330570995807648, + 0.012177283875644207, + 0.09522558003664017, + 0.034926485270261765, + 0.02653421089053154, + 0.07157580554485321, + 0.0293925441801548, + 0.06880883127450943, + -0.023532306775450706, + -0.0528595931828022, + 0.03189847990870476, + 0.04789992794394493, + 0.036309972405433655, + -0.01682370714843273, + 0.04387998953461647, + 0.006271366495639086, + -0.009188433177769184, + 0.054608527570962906, + 0.043070778250694275, + 0.0038209001068025827, + -0.03617945313453674, + 0.0029676419217139482, + -0.025215983390808105, + -0.0010359827429056168, + 0.003478291677311063, + -0.029966821894049644, + -0.031663548201322556, + -0.0010066162794828415, + 0.02653421089053154, + -0.0009911173256114125, + 0.05001430958509445, + -0.0008589683566242456, + 0.01584482565522194, + 0.0013728811172768474, + -0.004845462739467621, + 0.010643702931702137, + 0.03257717192173004, + -0.040016669780015945, + -0.048996273428201675, + 0.04617709666490555, + 0.03098485805094242, + -0.004179823212325573, + -0.016732344403862953, + -0.044558677822351456, + -0.011857516132295132, + -0.009234113618731499, + 0.017737330868840218, + 0.004998820833861828, + -0.0054654208943247795, + -0.03500479832291603, + -0.011563851498067379, + -0.01869010739028454, + 0.04283584654331207, + 0.041165225207805634, + 0.10796408355236053, + 0.04946613684296608, + 0.05139779672026634, + -0.04338402301073074, + 0.027513092383742332, + 0.048787444829940796, + 0.00787673145532608, + -0.013978425413370132, + -0.06170868128538132, + -0.0520503856241703, + 0.05721887946128845, + -0.029940716922283173, + 0.04056484252214432, + -0.000676651718094945, + -0.023741135373711586, + -0.0536688007414341, + 0.016105860471725464, + 0.006852169521152973, + 0.07241111993789673, + -0.07893699407577515, + -0.0251507256180048, + 0.010513185523450375, + 0.038685392588377, + -0.012229491025209427, + -0.03792838752269745, + 0.08603714406490326, + -0.008692466653883457, + 0.1036309078335762, + -0.027956850826740265, + -0.037797871977090836, + -0.04643813148140907, + -0.03550076484680176, + -0.01681065559387207, + 0.003231939859688282, + 0.014069788157939911, + 0.01332583837211132, + -0.06155205890536308, + -0.02019105851650238, + -0.017672071233391762, + -0.027721919119358063, + 0.027513092383742332, + 0.03416948392987251, + -0.019159970805048943, + 0.03088044375181198, + 0.05580928921699524, + 0.05032755434513092, + -0.01743713952600956, + 0.01795920915901661, + -0.07977230101823807, + 0.012007610872387886, + -0.0031422090250998735, + -0.04876134172081947, + 0.05763653293251991, + 0.0068652210757136345, + 0.003997098654508591, + -0.004404966253787279, + 0.12561005353927612, + -0.028505025431513786, + 0.03912914916872978, + -0.054399698972702026, + -0.02252732217311859, + -0.04758668690919876, + -0.020008334890007973, + 0.04241819307208061, + 0.027748024091124535, + -0.006206107791513205, + 0.009749658405780792, + -0.050771310925483704, + 0.05476514995098114, + 0.021326562389731407, + -0.028896577656269073, + 0.009723554365336895, + -0.0917799174785614, + 0.052389729768037796, + 0.018964193761348724, + -0.0389203205704689, + -0.03709307685494423, + 0.05847184732556343, + 0.031245892867445946, + 0.007498231250792742, + 0.06666834652423859, + -0.03445662185549736, + 0.030201751738786697, + -0.003967732191085815, + 0.011361549608409405, + 0.021705063059926033, + 0.08358341455459595, + -0.0003499500744510442, + 0.0009609351982362568, + 0.00552415382117033, + 0.04834368824958801, + -0.025933830067515373, + -0.04267922788858414, + 0.03393455222249031, + 0.018363814800977707, + 0.05706225708127022, + 0.0206217672675848, + -0.09616530686616898, + -0.06123881787061691, + -0.009155803360044956, + 0.017685122787952423, + -0.04897017031908035, + -0.04262701794505119, + 0.04557671397924423, + -0.03158523887395859, + -0.010121633298695087, + 0.009123174473643303, + -0.025020206347107887, + -0.0015539741143584251, + -0.013312785886228085, + -0.004339707084000111, + -0.016862861812114716, + 0.05758432671427727, + 0.010819901712238789, + -0.019525419920682907, + 0.020765336230397224, + 0.07909361273050308, + -0.037040870636701584, + -0.009540829807519913, + 0.0071523599326610565, + 0.008738147094845772, + 0.04547230154275894, + 0.001660019624978304, + -0.028896577656269073, + 0.025385655462741852, + -0.04703851044178009, + 0.03422169014811516, + 0.012157706543803215, + 0.04356674477458, + -0.028687749058008194, + -0.017893951386213303, + 0.005556783173233271, + -0.004189612343907356, + 0.031037064269185066, + 0.05815860256552696, + 0.05732329189777374, + -0.01115924771875143, + 0.08008554577827454, + -0.06875662505626678, + -0.00871204398572445, + -0.02071313001215458, + 0.0371713861823082, + -0.006587871350347996, + -0.02389775589108467, + 0.026142658665776253, + 0.05560046061873436, + -0.040434326976537704, + -0.01605365425348282, + 0.08321796357631683, + 0.010343512520194054, + -0.0010408771922811866, + 0.04387998953461647, + 0.0327598974108696, + 0.040121082216501236, + 0.046046577394008636, + 0.00010436302545713261, + 0.09125784784555435, + -0.0007590409368276596, + -0.09600868076086044, + 0.03680593892931938, + -0.04557671397924423, + 0.015557687729597092, + 0.02102637104690075, + -0.05706225708127022, + -0.005661197006702423, + 0.025242086499929428, + -0.028400611132383347, + -0.009769235737621784, + 0.005573097616434097, + 0.05168493464589119, + 0.04046043008565903, + -0.07564795017242432, + 0.02355841174721718, + 0.06922648847103119, + -0.05466073378920555, + -0.10070731490850449, + 0.0145788062363863, + 0.009951960295438766, + 0.042966365814208984, + -0.03698866441845894, + -0.010082477703690529, + -0.08081644773483276, + 0.003644701559096575, + -0.04046043008565903, + -0.017802588641643524, + 0.0145788062363863, + -0.019577626138925552, + 0.004078672267496586, + 0.03552686795592308, + -0.01932964287698269, + 0.04291415959596634, + -0.014030632562935352, + 0.030567200854420662, + 0.06849559396505356, + -0.035448554903268814, + 0.015505480580031872, + 0.011961930431425571, + 0.021052474156022072, + -0.020700078457593918, + 0.021169940009713173, + 0.03698866441845894, + -0.02832229994237423, + 0.02115688845515251, + -0.0070087905041873455, + -0.04607268050312996, + -0.024902742356061935, + 0.03518752008676529, + -0.023545360192656517, + 0.08452314138412476, + 0.02855723164975643, + -0.025972984731197357, + -0.0043919142335653305, + 0.0234670490026474, + -0.012497051618993282, + 0.0233495831489563, + -0.004835674073547125, + -0.0640057921409607, + -0.08280031383037567, + -0.05064079537987709, + 0.05497397482395172, + -0.06395357847213745, + -0.04134794697165489, + 0.005726455710828304, + 0.0063855694606900215, + -0.08525403589010239, + -0.020334629341959953, + 0.030828237533569336, + -0.050144828855991364, + 0.021300457417964935, + 0.0577409490942955, + 0.06953973323106766, + -0.02060871571302414, + -0.04643813148140907, + 0.10128159075975418, + 0.041060809046030045, + 0.007837576791644096, + -0.02855723164975643, + 0.01639300025999546, + -0.056070324033498764, + -0.005488261580467224, + 0.02918371558189392, + 0.034822072833776474, + -0.04087808355689049, + 0.005661197006702423, + -0.07799726724624634, + 0.026808297261595726, + -0.014174201525747776, + 0.017489347606897354, + 0.05338166281580925, + -0.06155205890536308, + 0.026403693482279778, + -0.008535845205187798, + -0.026077399030327797, + -0.014095891267061234, + -0.0040949871763587, + 0.07314201444387436, + 0.018050571903586388, + 0.001052297418937087, + 0.052468039095401764, + 0.03179406747221947, + 0.02252732217311859, + 0.060403503477573395, + -0.04818706586956978, + 0.012464422732591629, + -0.07940685749053955, + -0.05275517702102661, + -0.015557687729597092, + -0.034195587038993835, + 0.03054109774529934, + -0.0026380852796137333, + -0.003827426116913557, + -0.024458982050418854, + 0.07507367432117462, + -0.004515905864536762, + 0.02738257497549057, + -0.02231849543750286, + -0.03320365399122238, + 0.07961568236351013, + -0.012040240690112114, + -0.010447926819324493, + 0.022670891135931015, + -0.03375183045864105, + -0.02918371558189392, + 0.029549164697527885 + ] + }, + { + "id": "e5d81eaf-8558-4975-8f52-6472a029e8a9", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "wrighttheresa", + "reviewDate": "2021-10-24T10:02:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9621f271-ad00-4b4c-9ab4-84bdeb6417f1", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "gina06", + "reviewDate": "2021-02-20T06:00:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b1fc787d-5b7e-4634-acca-5259625b42bf", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "samuel57", + "reviewDate": "2022-05-01T04:28:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5eaaa1e8-e5f4-4e3d-9756-14bd0e4e43ec", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "zpoole", + "reviewDate": "2021-07-09T13:02:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6359ff91-cc58-4446-80f6-4cd1cdb49713", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "pwoods", + "reviewDate": "2021-02-18T23:30:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3deacd3b-dff9-472d-81ab-5daef5bd410b", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "combsmichael", + "reviewDate": "2022-07-18T00:42:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1d4acfdb-6bb8-4886-a366-ffeee3d6cbb0", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "vazquezebony", + "reviewDate": "2022-12-28T11:55:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b2c77195-6650-471f-900a-5642c80dd164", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "donaldcain", + "reviewDate": "2021-10-03T12:21:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2b7a4fa3-7c90-452a-be1f-71a46b26acfe", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "mcfarlandapril", + "reviewDate": "2021-05-27T07:49:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7663d794-4965-48db-a0d9-d9546cdbc569", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "bethgutierrez", + "reviewDate": "2021-04-05T06:27:41", + "stars": 3, + "verifiedUser": false + }, + { + "id": "df8a3daa-a40a-407e-a247-708f1629dedc", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "william35", + "reviewDate": "2021-04-14T13:40:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6063aa1b-0b33-477f-8ea7-c462ad0b1548", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "sharonjohnson", + "reviewDate": "2021-04-05T11:26:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6dfc8d25-67b7-4af4-bd81-471856ab2bd5", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "mwest", + "reviewDate": "2022-10-29T15:09:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "924330e9-56d8-4399-bbde-ebc838f57b48", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "kathykane", + "reviewDate": "2021-02-07T11:42:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bf88b826-0f1b-42b9-a488-b8dd387e8218", + "productId": "8b17b915-aee8-474d-9371-0089e1dc5965", + "category": "Other", + "docType": "customerRating", + "userName": "thomasallen", + "reviewDate": "2021-06-08T15:30:19", + "stars": 4, + "verifiedUser": false + }, + { + "id": "56484e1d-9e3f-4edb-bf72-c85129e191be", + "productId": "56484e1d-9e3f-4edb-bf72-c85129e191be", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse + (Gold)", + "description": "This Premium Mouse + (Gold) is best suited for small hands and does just fine for the heavier hand to get a better feel for the mouse.\n\n\nI tried to be as careful to have each mouse click smoothly and smoothly but then there was a glitch causing me to click the wrong way, causing the mouse to \"click\" from the middle. I was unable to recover my mouse, which was very unfortunate as it meant", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-10-01T15:45:42", + "price": 124.72, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-04-23T04:57:00", + "newPrice": 121.21 + }, + { + "priceDate": "2023-11-16T04:57:00", + "newPrice": 124.72 + } + ], + "descriptionVector": [ + -0.03997461497783661, + -0.0014008728321641684, + -0.016947463154792786, + -0.0724344253540039, + 0.006908146198838949, + -0.03162482753396034, + -0.014299014583230019, + 0.003041476011276245, + -0.0039009172469377518, + 0.013085685670375824, + 0.01942630670964718, + 0.07175600528717041, + -0.04801128804683685, + -0.08662906289100647, + 0.023235898464918137, + 0.025049367919564247, + -0.055421724915504456, + 0.011448344215750694, + -0.010398097336292267, + -0.03449506685137749, + 0.05818759277462959, + -0.08302821964025497, + -0.04884626716375351, + 0.0011456498177722096, + -0.030294079333543777, + -0.06747673451900482, + 0.016242949292063713, + 0.0056752474047243595, + 0.05698731169104576, + -0.0034181950613856316, + -0.006431946996599436, + 0.013829338364303112, + 0.02995486930012703, + -0.026275742799043655, + -0.0077626947313547134, + -0.04107052460312843, + -0.01865656115114689, + -0.028311004862189293, + 0.01279866136610508, + 0.043627649545669556, + -0.02891114540398121, + 0.01412940863519907, + 0.022661849856376648, + -0.025623416528105736, + -0.0380176343023777, + 0.03399929776787758, + -0.0015982018085196614, + 0.0076126595959067345, + -0.017991187050938606, + -0.018721792846918106, + 0.0021689883433282375, + 0.0288067739456892, + -0.06189281493425369, + 0.027710862457752228, + 0.04568900167942047, + 0.0035910618025809526, + 0.0005267543019726872, + 0.04908110573887825, + 0.04991608485579491, + -0.010476375930011272, + 0.030868127942085266, + -0.05247320607304573, + -0.04237518087029457, + 0.01857828162610531, + -0.047959104180336, + -0.05902257189154625, + -0.05286460369825363, + -0.05022920295596123, + 0.032590270042419434, + 0.05302116274833679, + -0.08328914642333984, + -0.07384344935417175, + -0.00412596995010972, + 0.01654301956295967, + 0.03566925600171089, + 0.02043089084327221, + 0.0929957777261734, + 0.00356170698069036, + 0.0013103624805808067, + 0.006608075462281704, + -0.030946407467126846, + -0.04738505557179451, + -0.07927080988883972, + 0.010867772623896599, + 0.08746404200792313, + -0.023001059889793396, + 0.047019749879837036, + -0.03916573151946068, + -0.003930272068828344, + 0.014494712464511395, + -0.04433216154575348, + 0.05140339210629463, + 0.026053952053189278, + -0.028311004862189293, + -0.0065852440893650055, + -0.020770100876688957, + 0.039765872061252594, + 0.04276657849550247, + -0.06523273140192032, + 0.024149157106876373, + 0.008845558390021324, + 0.017247533425688744, + -0.047202400863170624, + 0.06982511281967163, + -0.009256524033844471, + 0.0054404097609221935, + -0.009132581762969494, + -0.05169041454792023, + -0.030163614079356194, + -0.014664317481219769, + 0.03527785837650299, + -0.005926393438130617, + 0.005903562065213919, + -0.004644570406526327, + -0.06857264786958694, + -0.03783498331904411, + -0.017456278204917908, + -0.030215799808502197, + 0.015186179429292679, + -0.010137165896594524, + 0.037991542369127274, + 0.10792102664709091, + -0.023314177989959717, + 0.08902962505817413, + 0.017560651525855064, + -0.02143547497689724, + 0.015147039666771889, + 0.003646509489044547, + 0.005743741989135742, + -0.05563047155737877, + -0.030659383162856102, + 0.08313258737325668, + 0.04521932825446129, + 0.04777644947171211, + 0.008949930779635906, + 0.008754231967031956, + 0.02872849442064762, + 0.036608606576919556, + -0.041044432669878006, + 0.05302116274833679, + 0.02802398055791855, + -0.08699436485767365, + -0.01108304038643837, + 0.011996299028396606, + -0.06351058185100555, + 0.022231314331293106, + -0.0730084702372551, + 0.04070522263646126, + -0.05505642294883728, + -0.04527151212096214, + 0.011715797707438469, + -0.06815515458583832, + 0.011298309080302715, + -0.07227786630392075, + 0.10698167234659195, + 0.026771511882543564, + -0.03546051308512688, + -0.022779269143939018, + -0.04926375672221184, + 0.018630467355251312, + 0.00535886874422431, + -0.044201698154211044, + -0.031181244179606438, + -0.005528473760932684, + 0.02571474201977253, + 0.07201693207025528, + -0.03133780136704445, + -0.005939439870417118, + -0.034755997359752655, + 0.046784915030002594, + -0.051299016922712326, + 0.0077822646126151085, + 0.02521897293627262, + -0.06262341886758804, + 0.06460649520158768, + -0.014612131752073765, + 0.0029517810326069593, + -0.025975672528147697, + 0.022427013143897057, + -0.006901622749865055, + 0.048480965197086334, + 0.07128632813692093, + -0.08078420907258987, + -0.005769834853708744, + 0.06815515458583832, + -0.00944569893181324, + 0.022883640602231026, + 0.054117072373628616, + -0.03900917246937752, + 0.016295135021209717, + 0.024723203852772713, + -0.021487660706043243, + 0.04733286798000336, + -0.041044432669878006, + 0.006503703072667122, + 0.07645276188850403, + -0.009471791796386242, + 0.011291785165667534, + 0.018291257321834564, + -0.019269747659564018, + 0.04414951056241989, + 0.052760232239961624, + 0.07994922995567322, + 0.0042890519835054874, + 0.03376445919275284, + -0.015290551818907261, + 0.0156949944794178, + -0.03767842426896095, + -0.01607334427535534, + 0.026928070932626724, + 0.030372358858585358, + 0.032903388142585754, + -0.0035388756077736616, + -0.031102964654564857, + 0.016790904104709625, + 0.027502117678523064, + 0.013072638772428036, + 0.06846827268600464, + -0.11032158881425858, + -0.042349088937044144, + -0.022387873381376266, + 0.014025037176907063, + -0.04876798763871193, + 0.02459273859858513, + -0.0175476036965847, + -0.011839739978313446, + 0.0006804589065723121, + 0.016895277425646782, + 0.04086178168654442, + -0.0021282178349792957, + -0.0641368180513382, + -0.04827221855521202, + -0.02979831025004387, + 0.0417228527367115, + -0.049211569130420685, + 0.09758815914392471, + -0.09534415602684021, + -0.02872849442064762, + -0.007253879681229591, + 0.01220504380762577, + -0.0230532456189394, + 0.019791610538959503, + -0.04996826872229576, + 0.03791326284408569, + 0.02622355706989765, + 0.06429337710142136, + 0.10619888454675674, + -0.03639986366033554, + -0.08511566370725632, + -0.04897673428058624, + -0.10301552712917328, + -0.02086142636835575, + -0.03154654800891876, + 0.06017066910862923, + -0.0029550425242632627, + 0.08370663970708847, + 0.11439211666584015, + -0.0022032354027032852, + 0.001357656205072999, + -0.0328512005507946, + 0.04788082465529442, + 0.06481523811817169, + -0.05116855353116989, + 0.032485898584127426, + -0.01831735111773014, + 0.04641960933804512, + 0.015094853937625885, + -0.06371933221817017, + 0.011546192690730095, + 0.05216009169816971, + -0.027267280966043472, + -0.027319466695189476, + 0.06805077940225601, + -0.04827221855521202, + 0.0417228527367115, + -0.0037802367005497217, + 0.03600846603512764, + 0.04853314906358719, + 0.07937518507242203, + -0.01692136935889721, + 0.05101199448108673, + 0.10014528781175613, + 0.10442455112934113, + 0.07384344935417175, + -0.016934417188167572, + -0.05369958281517029, + -0.04391467198729515, + -0.008030149154365063, + -0.06152750924229622, + -0.033921018242836, + -0.022648803889751434, + -0.044436536729335785, + 0.0663808286190033, + -0.04905501380562782, + 0.06945981085300446, + -0.009256524033844471, + 0.008284556679427624, + 0.0752524733543396, + 0.010632934980094433, + -0.021226730197668076, + -0.006986425258219242, + -0.0009654443711042404, + -0.05803103744983673, + -0.017638929188251495, + 0.04587165638804436, + 0.03519957885146141, + -0.011944112367928028, + -0.07499154657125473, + -0.08668124675750732, + -0.012824754230678082, + 0.08130607008934021, + 0.04608039930462837, + -0.02961565926671028, + 0.0004382824117783457, + 0.016595207154750824, + -0.04602821171283722, + -0.021852964535355568, + 0.019961215555667877, + -0.03439069539308548, + 0.0013185165589675307, + 0.003352962201461196, + -0.09597039222717285, + -0.038304656744003296, + 0.07994922995567322, + 0.039844151586294174, + -0.031024685129523277, + -0.09403949975967407, + -0.020730961114168167, + -0.05132511258125305, + -0.06095346063375473, + -0.03553878888487816, + -0.07561778277158737, + -0.05046403780579567, + 0.0030838772654533386, + 0.02721509523689747, + -0.026771511882543564, + 0.006999471690505743, + 0.03825247287750244, + 0.05322990566492081, + -0.014299014583230019, + -0.025049367919564247, + 0.07478280365467072, + -0.07196474820375443, + 0.033373065292835236, + -0.013105255551636219, + -0.07864458113908768, + 0.003953103441745043, + -0.11293090134859085, + 0.014377293176949024, + 0.07066009193658829, + 0.0013111778534948826, + -0.08114951848983765, + -0.007416961248964071, + -0.013066115789115429, + 0.037260934710502625, + 0.026693232357501984, + 0.03929619491100311, + -0.03235543519258499, + 0.014351200312376022, + 0.09158675372600555, + 0.01666043885052204, + -0.04469746723771095, + 0.0332425981760025, + 0.05153385549783707, + 0.03011142835021019, + 0.04381030052900314, + -0.022427013143897057, + 0.017612837255001068, + -0.03219887614250183, + -0.07650494575500488, + -0.03076375462114811, + -0.05051622539758682, + 0.039191823452711105, + 0.04002680256962776, + -0.1062510684132576, + 0.07493936270475388, + 0.08000142127275467, + 0.016751764342188835, + -0.037182655185461044, + 0.021526800468564034, + -0.021344149485230446, + 0.06465867906808853, + 0.008688999339938164, + -0.066485196352005, + 0.09106489270925522, + -0.007286495994776487, + 0.006777680478990078, + 0.007860544137656689, + 0.014507759362459183, + -0.05028138682246208, + 0.010495945811271667, + -0.035643164068460464, + 0.030946407467126846, + 0.03319041430950165, + 0.04780254513025284, + -0.046941470354795456, + -0.0037802367005497217, + 0.04472355917096138, + -0.01484696939587593, + 0.028676306828856468, + 0.026314882561564445, + 0.006402592174708843, + -0.036608606576919556, + 0.020652681589126587, + 0.029172075912356377, + -0.027423840016126633, + 0.0505945049226284, + 0.021565940231084824, + -0.04923766478896141, + -0.019530678167939186, + -0.03639986366033554, + 0.0343124158680439, + 0.035564884543418884, + -0.00491528632119298, + -0.021305009722709656, + -0.009941468015313148, + 0.10124119371175766, + 0.041775040328502655, + 0.04167066887021065, + -0.07420875132083893, + 0.02969393879175186, + 0.005583921447396278, + 0.03595627844333649, + -0.007677892223000526, + -0.055265169590711594, + 0.007156030274927616, + -0.08125388622283936, + -0.006389545742422342, + 0.10379831492900848, + -0.05223837122321129, + 0.003372532082721591, + -0.09910155832767487, + -0.03480818495154381, + -0.019961215555667877, + 0.00047212187200784683, + 0.009634873829782009, + 0.018513048067688942, + 0.03180747851729393, + -0.04373202100396156, + 0.06888575851917267, + -0.01220504380762577, + -0.10291115194559097, + 0.04482793062925339, + -0.0011595117393881083, + -0.023196758702397346, + -0.027554305270314217, + -0.007260402664542198, + 0.042401272803545, + 0.053073346614837646, + -0.023809945210814476, + 0.02551904320716858, + -0.0026778036262840033, + 0.02386213280260563, + -0.043471090495586395, + -0.00476198922842741, + 0.030581103637814522, + 0.021800778806209564, + -3.419621862121858e-05, + 0.0027544519398361444, + -0.0035029975697398186, + -0.0612143911421299, + 0.06580677628517151, + 0.07718336582183838, + 0.047437239438295364, + -0.011800600215792656, + -0.008062765002250671, + 0.040940061211586, + 0.01469041034579277, + 0.0022488983813673258, + 0.022531384602189064, + 0.003046368481591344, + -0.015903739258646965, + -0.06100564822554588, + -0.02320980466902256, + 0.02370557375252247, + -0.03350352868437767, + 0.05322990566492081, + 0.03368617966771126, + 0.010535085573792458, + -0.022113895043730736, + -0.0019749209750443697, + 0.09351763874292374, + -0.05067278444766998, + 0.031520456075668335, + 0.02802398055791855, + -0.043627649545669556, + 0.12138506025075912, + 0.053960513323545456, + 0.07039915770292282, + -0.03157263994216919, + 0.0004183048731647432, + 0.013190058059990406, + 0.0036954341921955347, + -0.0427926704287529, + -0.012909556739032269, + -0.005345822311937809, + -0.015460156835615635, + -0.007462623994797468, + 0.01484696939587593, + 0.008232370018959045, + 0.07133851200342178, + -0.007690938655287027, + -0.010659027844667435, + 0.020652681589126587, + 0.01592983305454254, + 0.0009442437440156937, + -0.003630201332271099, + -0.003992243204265833, + 0.0343124158680439, + -0.10959098488092422, + 0.02013082057237625, + -0.07118195295333862 + ] + }, + { + "id": "8f2d8493-91d4-48ae-9af5-b57493455033", + "productId": "56484e1d-9e3f-4edb-bf72-c85129e191be", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cphillips", + "reviewDate": "2021-04-23T04:57:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6c0ad69f-7d31-4773-9e99-40ca0b0842a5", + "productId": "56484e1d-9e3f-4edb-bf72-c85129e191be", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "orrerik", + "reviewDate": "2022-02-03T03:12:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone + (Red)", + "description": "This Awesome Phone + (Red) is a smart idea. It has a 1Gbps 3Ghz SIMD card that has wireless support for 5GPP. With one of Apple's signature 6D cameras, it's actually a smart phone with a real camera that is compatible with some iOS, Android, BlackBerry 8.0 phones. The camera has been", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-07-06T10:59:17", + "price": 646.03, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-07-20T14:59:57", + "newPrice": 613.73 + }, + { + "priceDate": "2022-04-01T14:59:57", + "newPrice": 677.71 + }, + { + "priceDate": "2022-12-12T14:59:57", + "newPrice": 680.72 + }, + { + "priceDate": "2023-08-31T14:59:57", + "newPrice": 646.03 + } + ], + "descriptionVector": [ + -0.06883292645215988, + 0.0664365217089653, + -0.03105129674077034, + 0.0972328782081604, + -0.03704231232404709, + 0.0165836364030838, + -0.014671610668301582, + 0.040560439229011536, + 0.01889081485569477, + 0.0786224976181984, + 0.01277870498597622, + -0.07153525203466415, + 0.09085945785045624, + -0.01486281305551529, + -0.01992330700159073, + 0.02523873932659626, + -0.03212203085422516, + -0.025837840512394905, + -0.0358441099524498, + 0.05730978399515152, + 0.09340883046388626, + -0.07546128332614899, + -0.10019014775753021, + -0.06541677564382553, + 0.011848186142742634, + -0.028145018965005875, + 0.008310938253998756, + 0.021758852526545525, + -0.053434744477272034, + -0.011019641533493996, + 0.022026536986231804, + 0.028323473408818245, + -0.027354713529348373, + 0.03212203085422516, + 0.0049234661273658276, + 0.016035521402955055, + 0.0383169949054718, + 0.003948333207517862, + 0.016022775322198868, + -0.018686864525079727, + 0.025175005197525024, + -0.008483020588755608, + 0.018967295065522194, + 0.018750598654150963, + 0.058533478528261185, + 0.02337770164012909, + 0.012122242711484432, + -0.012345313094556332, + -0.026182005181908607, + -0.028450941666960716, + -0.0027039230335503817, + 0.0013177043292671442, + -0.017807332798838615, + -0.0076672229915857315, + 0.01537268701940775, + -0.03268289193511009, + 0.050502970814704895, + 0.05203259363770485, + 0.007635355927050114, + -0.07836756110191345, + 0.0010046102106571198, + -0.031076790764927864, + 0.0010412572883069515, + -0.015576636418700218, + 0.02972562611103058, + -0.031561169773340225, + -0.04461393132805824, + 0.020547902211546898, + -0.02160589024424553, + 0.03140820935368538, + -0.06409110128879547, + -0.014824572950601578, + -0.0024617330636829138, + 0.06857798993587494, + 0.031204259023070335, + 0.06092988699674606, + 0.054046593606472015, + 0.04695935174822807, + 0.03880137577652931, + -0.025493675842881203, + 0.06347925215959549, + 0.029062790796160698, + -0.020522410050034523, + 0.021389193832874298, + 0.00966847687959671, + -0.009088495746254921, + 0.02604179084300995, + -0.1227775439620018, + 0.022294219583272934, + 0.030668891966342926, + -0.02280409261584282, + 0.07230006903409958, + -0.02014000341296196, + 0.016876813024282455, + 0.03579312190413475, + 0.033906590193510056, + 0.03586960211396217, + 0.05078340321779251, + -0.011860933154821396, + -0.021567650139331818, + 0.04680638760328293, + 0.005232577212154865, + -0.007775571197271347, + 0.016430674120783806, + -0.036889348179101944, + 0.02980210818350315, + -0.0199997890740633, + 0.008100615814328194, + 0.025710372254252434, + -0.07128031551837921, + -0.01144666038453579, + -0.018597636371850967, + -0.03655793145298958, + 0.01778183877468109, + -0.039234768599271774, + 0.03704231232404709, + 0.00283298478461802, + -0.013358686119318008, + 0.04729076847434044, + 0.011727090924978256, + 0.0037730641197413206, + 0.009088495746254921, + -0.06694639474153519, + -0.0006453086971305311, + -0.022727612406015396, + 0.008024134673178196, + 0.023785600438714027, + -0.01421272475272417, + -0.047571200877428055, + -0.09177723526954651, + -0.05348573252558708, + 0.06776218861341476, + 0.06623256951570511, + 0.05659596249461174, + 0.03694033622741699, + 0.052364010363817215, + 0.032810360193252563, + 0.0954483225941658, + 0.00033659618929959834, + 0.032759372144937515, + 0.046016085892915726, + 0.018737852573394775, + 0.07933632284402847, + 0.009126735851168633, + -0.016966041177511215, + 0.06373418867588043, + -0.017909307032823563, + 0.0510893277823925, + 0.0009185690432786942, + 0.03482436016201973, + -0.04030550271272659, + -0.13144539296627045, + 0.0015176704619079828, + -0.08734133094549179, + -0.03232598304748535, + 0.005659596063196659, + -0.0057838778011500835, + -0.015997281298041344, + -0.019732104614377022, + 0.08372123539447784, + -0.0834662988781929, + -0.03778162971138954, + 0.02656440995633602, + 0.027431195601820946, + -0.06245950609445572, + 0.008591368794441223, + 0.042115554213523865, + 0.046908363699913025, + 0.017998535186052322, + 0.026946814730763435, + 0.05017155408859253, + 0.008954653516411781, + -0.025315219536423683, + -0.04412955418229103, + -0.0064339665696024895, + 0.0416821613907814, + 0.07423758506774902, + 0.025621144101023674, + 0.0751553550362587, + -0.058125581592321396, + 0.04285486787557602, + -0.02586333453655243, + -0.06750725209712982, + 0.03724626079201698, + 0.030286487191915512, + 0.062255557626485825, + 0.002909465692937374, + 0.030006056651473045, + 0.016201231628656387, + -0.01370285078883171, + 0.04994210973381996, + -0.019579142332077026, + -0.00840653944760561, + -0.00803050771355629, + 0.07755175977945328, + -0.03347319737076759, + 0.030413955450057983, + -0.04622003436088562, + 0.010688223876059055, + 0.010414166375994682, + -0.004885225556790829, + 0.035691145807504654, + 0.08978872746229172, + -0.02568487823009491, + 0.014620623551309109, + -0.010477900505065918, + -0.003970640245825052, + 0.003025780664756894, + 0.04494535177946091, + 0.030362967401742935, + 0.03637947514653206, + 0.01955365017056465, + 0.005436526611447334, + -0.0002198829606641084, + 0.058890391141176224, + 0.0076735964976251125, + 0.05075790733098984, + -0.01668561063706875, + -0.00920321699231863, + -0.04803008586168289, + 0.038164034485816956, + 0.06526380777359009, + 0.003648782381787896, + -0.013804825954139233, + -0.02288057468831539, + -0.04989112541079521, + 0.027380207553505898, + 0.02949618361890316, + 0.0350538045167923, + -0.006296937819570303, + -0.0681191012263298, + -0.008100615814328194, + 0.0017670304514467716, + -0.024920068681240082, + 0.02715076506137848, + 0.0333712212741375, + 0.011185350827872753, + -0.04262542724609375, + -0.08560776710510254, + 0.02630947344005108, + -0.022064777091145515, + -0.039668161422014236, + -0.05501535162329674, + -0.04833601042628288, + 0.0906045213341713, + 0.020165497437119484, + -0.040127046406269073, + 0.0731668472290039, + -0.11207020282745361, + 0.011682476848363876, + 0.005882665980607271, + -0.028756866231560707, + -0.0426764152944088, + 0.0332692489027977, + -0.032351475208997726, + 0.0140852564945817, + 0.0062140836380422115, + -0.04058593139052391, + 0.01095590740442276, + -0.036608919501304626, + -0.0037093297578394413, + -0.017730852589011192, + -0.10717541724443436, + 0.02080284059047699, + -0.04542972892522812, + 0.041937097907066345, + 0.03362615779042244, + -0.013078255578875542, + -0.0213382076472044, + 0.015296205878257751, + 0.018788838759064674, + -0.02466513216495514, + 0.03087284229695797, + -0.04563368111848831, + 0.007571621797978878, + 0.028374461457133293, + -0.055780164897441864, + 0.0799991562962532, + 0.024206245318055153, + 0.020739104598760605, + 0.043007832020521164, + 0.033422209322452545, + 0.1228795200586319, + -0.04191160202026367, + -0.0011615556431934237, + -0.054760415107011795, + -0.07923434674739838, + -0.03607355058193207, + 0.01399602834135294, + -0.028196005150675774, + -0.015716850757598877, + 0.020216485485434532, + 0.003236103570088744, + -0.004617542028427124, + -0.021491168066859245, + -0.02044592797756195, + 0.01974485255777836, + -0.06577368080615997, + 0.02280409261584282, + 0.038469959050416946, + -0.01082206517457962, + -0.057819657027721405, + -0.023097271099686623, + -0.05899236723780632, + -0.0648559108376503, + 0.06975069642066956, + -0.032045550644397736, + 0.021746106445789337, + 0.02022923156619072, + -0.0026624957099556923, + 0.14205075800418854, + -0.04657694697380066, + -0.03757767751812935, + 0.02462689019739628, + 0.02212851122021675, + 0.008400166407227516, + -0.012695850804448128, + -0.008355552330613136, + 0.053689680993556976, + -0.05177765712141991, + 0.06592664867639542, + 0.007176470011472702, + -0.06720133125782013, + 0.0630713552236557, + 0.05832953006029129, + 0.08576072752475739, + 0.01618848368525505, + -0.024371953681111336, + -0.010554381646215916, + -0.04767317324876785, + -0.005481140222400427, + -0.02781360037624836, + 0.07479844242334366, + 0.03668539971113205, + 0.04124876856803894, + -0.03255542367696762, + 0.029776614159345627, + 0.09473449736833572, + 0.027839094400405884, + 0.04955970495939255, + 0.08157975971698761, + 0.021975548937916756, + -0.0281705129891634, + 0.023211991414427757, + -0.042778387665748596, + -0.04933026432991028, + -0.0527719110250473, + -0.004158656112849712, + -0.00292699271813035, + -0.011625116690993309, + 0.0016331885708495975, + -0.034263499081134796, + 0.044639427214860916, + 0.012918920256197453, + 0.03793459013104439, + 0.0442570224404335, + 0.007781944703310728, + -0.07097439467906952, + -0.030362967401742935, + -0.04706132784485817, + 0.027176259085536003, + -0.030439449474215508, + 0.03739922121167183, + 0.081987664103508, + -0.06786416471004486, + 0.04369616135954857, + -0.00117031903937459, + 0.05940026417374611, + -0.061286795884370804, + -0.018126003444194794, + 0.031561169773340225, + 0.03775613382458687, + -0.10962280631065369, + 0.050146061927080154, + -0.09687596559524536, + -0.023581650108098984, + 0.021312713623046875, + -0.05501535162329674, + 0.019834080711007118, + 0.06679343432188034, + -0.047035831958055496, + 0.0401015542447567, + -0.0485144667327404, + -0.023211991414427757, + 0.06760922819375992, + -0.054760415107011795, + 0.0682210773229599, + 0.006102548912167549, + -0.044868871569633484, + 0.035997070372104645, + -0.054454490542411804, + -0.05659596249461174, + -0.04137623682618141, + 0.07811262458562851, + 0.058839403092861176, + -0.062204569578170776, + -0.009298818185925484, + -0.03196907043457031, + 0.036634411662817, + -0.05358770862221718, + -0.016175737604498863, + -0.02638595551252365, + 0.008948280476033688, + 0.0698016881942749, + 0.0017925241263583302, + -0.012759584933519363, + -0.04833601042628288, + -0.07087241858243942, + -0.05945125222206116, + -0.054046593606472015, + 0.03092382848262787, + -0.01200114842504263, + -0.01796029508113861, + -0.0059814536944031715, + 0.03625200688838959, + -0.0007114328909665346, + -0.031510185450315475, + 0.03553818538784981, + 0.049610693007707596, + 0.02625848725438118, + -0.033549677580595016, + 0.01992330700159073, + -0.01676209270954132, + 0.012982654385268688, + -0.10187272727489471, + 0.05379165709018707, + 0.04112130030989647, + 0.04201357811689377, + -0.05024803429841995, + -0.10666554421186447, + 0.03021000698208809, + -0.028858840465545654, + 0.08433307707309723, + -0.013881306163966656, + -0.03518127277493477, + -0.0017048895824700594, + -0.028323473408818245, + 0.07882644981145859, + -0.06740527600049973, + 0.04328826069831848, + -0.051650188863277435, + 0.012294325046241283, + -0.09447956085205078, + 0.04634750261902809, + -0.12716245651245117, + 0.024563156068325043, + 0.014034268446266651, + -0.01552564837038517, + 0.0039100926369428635, + -0.047443732619285583, + -0.03303980454802513, + 0.06031803786754608, + 0.04938125237822533, + -0.019260471686720848, + 0.037501197308301926, + -0.020152751356363297, + -0.07173920422792435, + 0.02852742373943329, + -0.0833643227815628, + -0.008221710100769997, + -0.006484953686594963, + 0.0633772760629654, + 0.04542972892522812, + -0.030235499143600464, + 0.02359439805150032, + 0.0037730641197413206, + -0.06210259348154068, + -0.06929181516170502, + -0.018355445936322212, + 0.011809945106506348, + -0.037679653614759445, + -0.02715076506137848, + 0.07586918026208878, + 0.019668370485305786, + -0.06026704981923103, + -0.07546128332614899, + 0.016864066943526268, + 0.03207104280591011, + 0.014289205893874168, + 0.014047015458345413, + 0.05863545462489128, + 0.004219203256070614, + -0.02203928306698799, + -0.026054536923766136, + 0.03179061412811279, + -0.061541732400655746, + 0.008476647548377514, + 0.006484953686594963, + 0.03477337583899498, + 0.006430779583752155, + 0.06908786296844482, + 0.03543620929121971, + -0.04198808595538139, + -0.02985309436917305, + -0.03961717337369919, + -0.0920831561088562, + -0.0055799284018576145, + 0.008948280476033688, + -0.045582693070173264, + 0.011504021473228931, + -0.030362967401742935, + -0.054658442735672, + 0.02452491596341133, + 0.0031883029732853174, + -0.050095073878765106, + -0.01486281305551529, + 0.01337143313139677, + 0.11880052834749222, + -0.0015001435531303287, + -0.025213245302438736, + -0.0014332225546240807, + -0.016252217814326286 + ] + }, + { + "id": "dfeb256b-629c-4b77-902d-f27c8420037e", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "gilmoreanthony", + "reviewDate": "2022-06-28T12:30:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "59b78062-4ef8-42a3-927c-aace9db7217a", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "geraldchavez", + "reviewDate": "2022-12-13T01:25:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "89c40180-8b8e-46f5-8019-80d928cdc773", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "hcoleman", + "reviewDate": "2022-09-01T07:11:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ba210d39-277b-4f0e-b545-a9dcd55799d3", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "scott03", + "reviewDate": "2022-11-10T17:45:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c0c54934-2c81-4548-8405-b31bbccee5c9", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "alex19", + "reviewDate": "2021-11-21T05:36:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b01f0db0-1209-401a-bbdb-534056c11956", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "hkaiser", + "reviewDate": "2021-08-15T03:05:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b19ec472-bd7f-409d-88e4-a09abc6c4824", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "smithpaul", + "reviewDate": "2021-07-20T14:59:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "42626340-62dc-4793-aca7-bc419d34efcb", + "productId": "a64aa14a-c5ee-4b94-ac0a-fc172ff78388", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelturner", + "reviewDate": "2022-03-20T23:18:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Ultra (Steel)", + "description": "This Amazing Stand Ultra (Steel) is rated 4.2 out of 5 by 37.\n\nRated 5 out of 5 by Jim from Great Buy This stand is a great buy. I have it as my home gym equipment collection at home so far, plus it has all I need. I decided to take it to a place where it was available. As many of them do, I made it a great product. My other friends have used it quite a few times! When I made it,", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-11-24T02:21:02", + "price": 687.0, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-03-16T02:59:26", + "newPrice": 665.11 + }, + { + "priceDate": "2021-08-14T02:59:26", + "newPrice": 630.1 + }, + { + "priceDate": "2022-01-12T02:59:26", + "newPrice": 734.51 + }, + { + "priceDate": "2022-06-12T02:59:26", + "newPrice": 677.22 + }, + { + "priceDate": "2024-05-14T02:59:26", + "newPrice": 687.0 + } + ], + "descriptionVector": [ + 0.054735150188207626, + 0.05483017489314079, + -0.05183684825897217, + -0.007839669473469257, + -0.024635568261146545, + -0.027605140581727028, + -0.08552367240190506, + 0.02220051921904087, + 0.0020252480171620846, + 0.1115608811378479, + -0.046277809888124466, + -0.006301431450992823, + 0.010256901383399963, + -0.04000607132911682, + -0.005015606991946697, + -0.056160543113946915, + 0.02404165454208851, + -0.014372727833688259, + 0.0053957123309373856, + -0.0517418198287487, + 0.07231501489877701, + -0.08405075967311859, + -0.023293321952223778, + 0.02114335261285305, + -0.0754033699631691, + -0.06347756832838058, + -0.0038158998358994722, + -0.003027478465810418, + 0.03903205320239067, + 0.007281390484422445, + 0.006681536789983511, + -0.0036169386003166437, + -0.02860291674733162, + 0.07017692178487778, + 0.048178333789110184, + 0.05611303076148033, + 0.021606605499982834, + -0.0035605167504400015, + -0.05445007234811783, + 0.07312273979187012, + 0.0029473002068698406, + 0.03670390695333481, + 0.05540033429861069, + 0.041407711803913116, + 0.04226294904947281, + -0.0656631737947464, + -0.011397217400372028, + 0.0009420966962352395, + 0.013493734411895275, + 0.03969723731279373, + 0.03123989701271057, + 0.008296984247863293, + 0.0012256908230483532, + 0.023792210966348648, + 0.06262233108282089, + -0.030028311535716057, + 0.012222757562994957, + 0.14862114191055298, + 0.054877687245607376, + -0.020204966887831688, + -0.020846394822001457, + -0.02317453920841217, + 0.004489992745220661, + -0.02395850606262684, + -0.034375764429569244, + -0.006562754046171904, + -0.009371968917548656, + 0.002252420177683234, + -0.03558734804391861, + 0.05188436061143875, + -0.0015649644192308187, + 0.05839366093277931, + -0.01761550083756447, + -0.025490805506706238, + 0.004724588710814714, + 0.010500405915081501, + 0.027034983038902283, + 0.0372740663588047, + -0.02025248110294342, + 0.07663871347904205, + 0.08172261714935303, + 0.04276183620095253, + -0.009698621928691864, + -0.01744920387864113, + 0.11802266538143158, + 0.04342702031135559, + -0.017841188237071037, + -0.1115608811378479, + -0.09531138092279434, + 0.080677330493927, + -0.021986709907650948, + -0.015679338946938515, + 0.02242620661854744, + -0.03563486412167549, + 0.0002700454497244209, + 0.05278711020946503, + -0.09483624994754791, + 0.04879600554704666, + 0.047869499772787094, + 0.07107967138290405, + 0.014598415233194828, + -0.017176004126667976, + -0.05525779351592064, + -0.0347796268761158, + -0.02201046608388424, + 0.024077288806438446, + 0.0893247202038765, + 0.024920647963881493, + 0.023435860872268677, + -0.14681562781333923, + -0.04014861211180687, + -0.04143146798014641, + 0.02389911562204361, + -0.026773659512400627, + 0.021689753979444504, + 0.01933785155415535, + -0.03508846089243889, + -0.09478873759508133, + 0.032095134258270264, + -0.07720886915922165, + 0.024801865220069885, + 0.013196777552366257, + -0.01243656687438488, + -0.0008723117643967271, + 0.03691771626472473, + 0.05283462256193161, + 0.008154444396495819, + 0.04596897214651108, + 0.06780126690864563, + 0.005974778905510902, + -0.032261427491903305, + 0.0226756501942873, + 0.041360195726156235, + -0.02587090991437435, + -0.0539749376475811, + 0.033710580319166183, + -0.0005345229292288423, + 0.00027357181534171104, + -0.002558286301791668, + 0.0015152241103351116, + -0.007501138839870691, + -0.01545365247875452, + 0.003266529180109501, + 0.03872321918606758, + -0.03444703295826912, + -0.0028092151042073965, + -0.0044068447314202785, + 0.007720887195318937, + 0.02941063977777958, + -0.01423018891364336, + 0.03387687727808952, + -0.04661040008068085, + -0.07782653719186783, + -0.07008189707994461, + 0.0367276668548584, + 0.005045302677899599, + -0.07749395072460175, + 0.007174485828727484, + -0.07174485921859741, + 0.06238476559519768, + -0.017567986622452736, + 0.03057471290230751, + -0.05183684825897217, + 0.0037624475080519915, + 0.034542061388492584, + 0.02078700251877308, + 0.020276237279176712, + 0.10253337770700455, + -0.0406237430870533, + 0.018898354843258858, + -0.007132911588996649, + -0.0221173707395792, + 0.026631120592355728, + -0.042856860905885696, + 0.020691977813839912, + 0.02895926497876644, + 0.075118288397789, + -0.02259250357747078, + 0.05863122642040253, + -0.023970384150743484, + -0.0339481458067894, + 0.012145549058914185, + -0.06015164777636528, + 0.04261929541826248, + 0.04418722912669182, + 0.07934696227312088, + 0.04573140665888786, + 0.04518500715494156, + 0.020014913752675056, + 0.04238172993063927, + 0.015548678115010262, + -0.03786798194050789, + -0.031620003283023834, + 0.03363931179046631, + -0.08528610318899155, + 0.017591744661331177, + -0.006598388776183128, + 0.011314068920910358, + -0.06395269930362701, + -0.05055399239063263, + -0.000669638451654464, + 0.05739588662981987, + 0.07507077604532242, + -0.0539749376475811, + 0.020276237279176712, + -0.07554590702056885, + 0.031097356230020523, + 0.019100286066532135, + 0.05559038743376732, + 0.017069099470973015, + -0.00431181862950325, + -0.004879006650298834, + -0.04661040008068085, + -0.01503791194409132, + 0.01883896440267563, + 0.0706520527601242, + 0.0333779901266098, + 0.003468459937721491, + -0.06319248676300049, + -0.06775375455617905, + 0.023614035919308662, + -0.028056515380740166, + -0.009401665069162846, + -0.060246676206588745, + -0.04143146798014641, + -0.03591994196176529, + -0.006622145418077707, + -0.025467049330472946, + 0.018684545531868935, + 0.03071725182235241, + -0.007311086170375347, + -0.03637131676077843, + 0.013731300830841064, + 0.03515973314642906, + 0.0033793728798627853, + 0.043165698647499084, + -0.05654064938426018, + -0.04582643508911133, + -0.047726958990097046, + 0.027747679501771927, + -0.011539756320416927, + -0.0009487782372161746, + -0.042524270713329315, + -0.023827845230698586, + -0.03606248274445534, + -0.017199760302901268, + 0.10728469491004944, + -0.028887996450066566, + -0.03972099348902702, + -0.03190508112311363, + -0.025300752371549606, + -0.035040948539972305, + -0.018173780292272568, + 0.0539749376475811, + 0.11061061173677444, + 0.03380560502409935, + 0.07412051409482956, + 0.039245862513780594, + 0.018185658380389214, + -0.059724029153585434, + 0.003563486272469163, + 0.03525475785136223, + -0.03610999509692192, + 0.0795845240354538, + 0.036323804408311844, + 0.04532754421234131, + 0.03998231515288353, + 0.041692789644002914, + 0.002521166577935219, + 0.013066116720438004, + -0.04181157425045967, + 0.02236681617796421, + 0.05920138582587242, + -0.016712751239538193, + 0.013636274263262749, + 0.03425697982311249, + -0.009164098650217056, + 0.04456733539700508, + 0.011242799460887909, + -0.011486303992569447, + 0.08447837829589844, + 0.009983700700104237, + 0.02667863480746746, + 0.04209665209054947, + 0.03447078913450241, + -0.08167510479688644, + 0.03660888224840164, + -0.056683190166950226, + 0.06970179080963135, + -0.04112263023853302, + -0.02810402773320675, + 0.017817432060837746, + 0.018185658380389214, + 0.04109887406229973, + -0.02281819097697735, + 0.04321321099996567, + -0.03026587702333927, + -0.01880333013832569, + -0.022521233186125755, + -0.04530378803610802, + 0.0764961689710617, + 0.05283462256193161, + -0.04839214310050011, + -0.043023157864809036, + 0.036323804408311844, + 0.05254954472184181, + 0.015204207971692085, + -0.03119238279759884, + -0.053262241184711456, + -0.0050304546020925045, + 0.04214416444301605, + -0.003409068565815687, + -0.05492520332336426, + -0.007703069597482681, + 0.08533361554145813, + -0.008249470964074135, + 0.041407711803913116, + 0.04822584614157677, + 0.015619948506355286, + 0.02501567453145981, + -0.01157539151608944, + -0.017033465206623077, + 0.007489260286092758, + 0.04649161919951439, + 0.038105547428131104, + -0.08043976128101349, + 0.00917003769427538, + -0.0065271188504993916, + 0.040409933775663376, + -0.013137386180460453, + 0.006663719192147255, + 0.019314095377922058, + -0.02178477868437767, + 0.019967401400208473, + 0.00037954840809106827, + -0.06561566144227982, + -0.056350596249103546, + -0.04176405817270279, + -0.04470987617969513, + 0.04912859946489334, + 0.05720583349466324, + 0.04829711839556694, + 0.043973419815301895, + -0.01374317891895771, + 0.049366164952516556, + -0.03948342800140381, + 0.05140922963619232, + -0.03204762190580368, + -0.011919861659407616, + 0.03040841594338417, + 0.0011848591966554523, + -0.03188132494688034, + -0.036323804408311844, + 0.02075136825442314, + 0.04345077648758888, + 0.03382936492562294, + 0.0453513003885746, + -0.041217658668756485, + 0.0178055539727211, + -0.05216943845152855, + 0.031715027987957, + 0.013778814114630222, + 0.0006206405232660472, + 0.01019751001149416, + 0.002917604288086295, + 0.07564093917608261, + 0.01591690629720688, + 0.009324455633759499, + -0.0008084659348241985, + -0.007043824531137943, + -0.08685404062271118, + -0.12039832025766373, + 0.06133947893977165, + 0.0006844863528385758, + -0.02568085864186287, + 0.013956988230347633, + 0.004258366301655769, + 0.03872321918606758, + 0.06257481873035431, + 0.014253945089876652, + -0.04955621436238289, + 0.039245862513780594, + 0.0029487849678844213, + 0.06053175404667854, + 0.09231805056333542, + 0.04889103025197983, + -0.030812278389930725, + 0.08504854142665863, + -0.046729184687137604, + -0.006533058360219002, + -0.01236529741436243, + -0.007910939864814281, + -0.005496677476912737, + 0.048059552907943726, + 0.009829282760620117, + -0.08272039145231247, + 0.047893255949020386, + 0.09611910581588745, + -0.00013873468560632318, + -0.001894586835987866, + 0.019076529890298843, + 0.0068121980875730515, + 0.02682117372751236, + -0.007180424872785807, + -0.002074246061965823, + -0.08832694590091705, + 0.03625253215432167, + 0.07796908169984818, + -0.0325465090572834, + -0.10291348397731781, + -0.030194606631994247, + -0.08547616004943848, + -0.006182648707181215, + 0.03853316605091095, + 0.04558886960148811, + 0.09160535782575607, + 0.06143450364470482, + -0.015536800026893616, + 0.05169430747628212, + -0.09046503901481628, + 0.021713510155677795, + 0.04889103025197983, + 0.028650429099798203, + -0.038794487714767456, + -0.04889103025197983, + 0.06209968775510788, + -0.06476042419672012, + -0.01797184906899929, + -0.0692741721868515, + -0.043783366680145264, + 0.0048463414423167706, + -0.08528610318899155, + -0.015798121690750122, + 0.08452589809894562, + 0.001946554402820766, + -0.03912707790732384, + 0.07269512116909027, + 0.003079446032643318, + -0.020193088799715042, + -0.008700845763087273, + 0.010452893562614918, + 0.008504853583872318, + 0.06181460991501808, + -0.039744749665260315, + -0.042666807770729065, + -0.02087015099823475, + -0.020858272910118103, + 0.06737364828586578, + -0.017247274518013, + 0.014681563712656498, + 0.02846037782728672, + 0.0030645981896668673, + 0.00046176844625733793, + 0.022521233186125755, + 0.0022063918877393007, + -0.013386829756200314, + -0.01307799480855465, + 0.11764255911111832, + 0.0006366019952110946, + -0.03511221706867218, + -0.06281238794326782, + 0.0745481327176094, + 0.01883896440267563, + -0.016843412071466446, + 0.027866462245583534, + -0.018482616171240807, + -0.04634907841682434, + -0.04946118965744972, + -0.009259125217795372, + 0.020276237279176712, + -0.07644865661859512, + -0.06865650415420532, + 0.007643678225576878, + 0.038960784673690796, + -0.008213835768401623, + -0.033401746302843094, + -0.023222051560878754, + -0.02570461481809616, + -0.025918424129486084, + 0.04371209815144539, + 0.028246568515896797, + 0.012329662218689919, + 0.05554287135601044, + -0.02236681617796421, + 0.014812224544584751, + -0.03903205320239067, + -0.061862122267484665, + 0.008772115223109722, + -0.01693843863904476, + 0.022473720833659172, + -0.027225036174058914, + 0.10899516940116882, + -0.026797417551279068, + -0.03418571129441261, + -0.029529422521591187, + 0.02715376578271389, + -0.04321321099996567, + 0.020691977813839912, + -0.09901740401983261, + 0.0033348293509334326, + 0.02130964770913124, + 0.01537050399929285, + -0.03637131676077843, + 0.047228071838617325, + 0.0325465090572834, + -0.03140619397163391, + -0.0008834476466290653, + 0.04435352608561516, + -0.02340022660791874, + -0.03447078913450241, + 0.06694602966308594, + 0.015216086059808731 + ] + }, + { + "id": "ee226fa5-2aba-42c5-a519-f27f8aff10c1", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "harrisgeorge", + "reviewDate": "2022-02-24T22:11:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3829fdbf-c97b-4094-9003-376eae2f11ea", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "gregorywarner", + "reviewDate": "2021-03-16T02:59:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "37c4510c-8e3e-4a5f-bc39-855ab7629e06", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "popekaitlyn", + "reviewDate": "2022-05-16T14:23:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a8c1523a-9521-4ba6-87d7-b6000d6ffc9b", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "wardclifford", + "reviewDate": "2021-04-06T02:29:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "59f17f28-6ebb-4698-81ff-871ca5bf3c50", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "willie55", + "reviewDate": "2022-04-29T00:56:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "036703ad-150a-497a-aba3-52fe6f810814", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "rick67", + "reviewDate": "2022-04-12T04:02:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4284163c-24c6-4aef-a2e1-77c8fa50df16", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "reiddonna", + "reviewDate": "2022-04-06T10:11:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cffb8c0a-1929-4265-9fc9-5397304327fd", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "efry", + "reviewDate": "2021-09-02T01:04:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8dc12770-6ce4-4694-970d-a0997cbe18de", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "mark35", + "reviewDate": "2022-03-16T18:07:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7d56e04a-04cb-4162-98f8-0fa586606501", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "crystal62", + "reviewDate": "2022-06-12T07:41:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "41b06cb0-67bf-4653-9b6b-d54261df6227", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamanderson", + "reviewDate": "2022-06-09T04:45:31", + "stars": 3, + "verifiedUser": true + }, + { + "id": "573e3e42-ac55-44f9-9dab-5ff305b26433", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "smallchristopher", + "reviewDate": "2022-03-16T22:31:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "12c501ef-7c2a-4f8d-a010-dd4616cf054f", + "productId": "f1958c80-dbcb-4cce-8596-6d4424c21611", + "category": "Accessory", + "docType": "customerRating", + "userName": "victorpatrick", + "reviewDate": "2021-11-09T08:12:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Pro (Steel)", + "description": "This Amazing Filter Pro (Steel) is a sleek design with a nice design. It's an easy-to-use tool so I wouldn't use it. If you're using a traditional filter, the filters on the right is nice easy to see to the user, it's what I bought from Tandy. I prefer my normal filters, but their filters are a bit softer and better quality than their filter on these filters due to the slight surface", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-06-05T02:29:38", + "price": 486.43, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-02-21T15:01:41", + "newPrice": 531.37 + }, + { + "priceDate": "2021-06-18T15:01:41", + "newPrice": 499.95 + }, + { + "priceDate": "2021-10-13T15:01:41", + "newPrice": 467.42 + }, + { + "priceDate": "2022-02-07T15:01:41", + "newPrice": 454.46 + }, + { + "priceDate": "2022-06-04T15:01:41", + "newPrice": 503.44 + }, + { + "priceDate": "2025-03-12T15:01:41", + "newPrice": 486.43 + } + ], + "descriptionVector": [ + -0.01674507185816765, + 0.044594235718250275, + -0.020365970209240913, + 0.02450777217745781, + 0.02539711445569992, + -0.010043231770396233, + -0.061288487166166306, + -0.050489313900470734, + 0.005005734506994486, + 0.00919200200587511, + -0.0037955918814986944, + -0.012692205607891083, + 0.008956961333751678, + -0.011663107201457024, + 0.014763105660676956, + 0.0010235393419861794, + -0.036666370928287506, + 0.011561468243598938, + -0.044822923839092255, + -0.028636867180466652, + 0.016452858224511147, + -0.08685076236724854, + -0.057222913950681686, + -0.023720066994428635, + 0.002588625531643629, + -0.021001216024160385, + -0.021369658410549164, + -0.01637662947177887, + -0.013949991203844547, + -0.02281801775097847, + 0.09813272207975388, + 0.033108994364738464, + -0.006536676082760096, + 0.11048189550638199, + -0.020734412595629692, + 0.016135236248373985, + 0.04500079154968262, + -0.004653173498809338, + -0.01500449888408184, + 0.1170884519815445, + -0.016274990513920784, + -0.0755688026547432, + -0.05336062237620354, + 0.02485080435872078, + -0.0481007881462574, + -0.06769175827503204, + -0.05483439192175865, + 0.04693193733692169, + 0.012101426720619202, + 0.002210654318332672, + 0.087054044008255, + -0.022665560245513916, + -0.023097526282072067, + -0.00039246262167580426, + 0.029653260484337807, + 0.07836388796567917, + 0.006600200664252043, + 0.12633763253688812, + 0.05752783268690109, + -0.031940143555402756, + 0.013314745388925076, + -0.05155652388930321, + 0.02345326356589794, + -0.043908167630434036, + -0.040096696466207504, + -0.03587866574525833, + -0.11505566537380219, + -0.03437948599457741, + 0.0423835813999176, + 0.0532589815557003, + -0.024152034893631935, + -0.034658994525671005, + 0.05127701535820961, + 0.03943604230880737, + 0.022182773798704147, + 0.0635753720998764, + 0.11200648546218872, + -0.06316881626844406, + 0.012438107281923294, + 0.005733090452849865, + -0.008232781663537025, + 0.05803602933883667, + -0.06621798872947693, + 0.014318433590233326, + 0.02267826534807682, + -0.02153482288122177, + 0.05473275110125542, + -0.04019833728671074, + 0.018625399097800255, + 0.009236469864845276, + 0.0036177232395857573, + -0.002005787566304207, + 0.024177443236112595, + -0.09594748169183731, + 0.01792662777006626, + 0.014229499734938145, + -0.028560638427734375, + -0.010189337655901909, + -0.0601196363568306, + 0.05508849024772644, + -0.07470487058162689, + -0.05513931065797806, + -0.05508849024772644, + 0.026781950145959854, + -0.0093762231990695, + -0.01184097584336996, + -0.045966364443302155, + -0.052954066544771194, + -0.031736865639686584, + -0.08070158958435059, + -0.032422930002212524, + -0.0036748952697962523, + -0.03798768296837807, + 0.021979494020342827, + -0.044594235718250275, + -0.019171709194779396, + -0.03844505921006203, + 0.009687493555247784, + 0.10844910889863968, + -0.02668031118810177, + -0.06484586000442505, + 0.07338356226682663, + 0.016503678634762764, + 0.016160646453499794, + -0.01534753106534481, + 0.015411055646836758, + 0.03359178081154823, + -0.03768276423215866, + 0.07206224650144577, + 0.004468952305614948, + -0.09086551517248154, + 0.04225653037428856, + 0.09696387499570847, + 0.02756965532898903, + -0.07323110103607178, + 0.0678442195057869, + 0.06418520212173462, + 0.104790098965168, + -0.019794249907135963, + 0.0847671627998352, + 0.025333590805530548, + -0.07546716928482056, + -0.002785551594570279, + 0.021395068615674973, + 0.022030314430594444, + -0.08014257252216339, + -0.04192620515823364, + 0.05074341222643852, + -0.02067088894546032, + -0.021458592265844345, + 0.018993841484189034, + -0.10814419388771057, + -0.01843482442200184, + -0.0546819344162941, + 0.09538846462965012, + -0.007972330786287785, + -0.06886061280965805, + 0.051861442625522614, + 0.0037161861546337605, + -0.04657620191574097, + -0.01907007023692131, + -0.051124557852745056, + -0.015525399707257748, + 0.004519771784543991, + -0.0034970263950526714, + 0.047287676483392715, + 0.04883767291903496, + 0.00813114270567894, + -0.10570485144853592, + 0.03247375041246414, + -0.011104091070592403, + 0.05844258517026901, + 0.04202784225344658, + -0.021140970289707184, + -0.04655079171061516, + -0.017901217564940453, + 0.030364735051989555, + -0.014127859845757484, + 0.03585325554013252, + -0.022767199203372, + 0.01987047865986824, + 0.04273931682109833, + -0.049295052886009216, + -0.06972454488277435, + 0.07297700643539429, + 0.0053614722564816475, + 0.016198759898543358, + 0.00921741221100092, + 0.004637292120605707, + 0.04949833080172539, + -0.041392598301172256, + -0.021039331331849098, + 0.022945066913962364, + 0.013695892877876759, + -0.005186779424548149, + -0.01591925323009491, + -0.049752429127693176, + -0.019883183762431145, + -0.08293765038251877, + -0.010144870728254318, + -0.017939332872629166, + -0.0038019444327801466, + 0.08654584735631943, + -0.036666370928287506, + 0.05290324613451958, + 0.04248521849513054, + 0.024749165400862694, + 0.013581548817455769, + -0.03046637400984764, + -0.033769652247428894, + 0.0017119866097345948, + -0.03902948275208473, + -0.03679341822862625, + -0.045508988201618195, + 0.04474669322371483, + 0.01720244809985161, + 0.003709833836182952, + -0.06764093786478043, + -0.004027456510812044, + 0.0460934154689312, + 0.004513419233262539, + 0.01635121926665306, + 0.03681882843375206, + -0.017621710896492004, + -0.012476221658289433, + -0.013695892877876759, + 0.01149794366210699, + 0.0546819344162941, + 0.06423602253198624, + 0.08659666776657104, + -0.03913112357258797, + 0.01663072779774666, + -0.024291787296533585, + 0.032651618123054504, + -0.006133295129984617, + -0.019997527822852135, + -0.04680489003658295, + 0.009630321525037289, + -0.00936351902782917, + 0.0123110581189394, + 0.06001799553632736, + -0.02848440781235695, + -0.08796879649162292, + -0.03641227260231972, + 0.09111961722373962, + -0.02868768759071827, + 0.051353245973587036, + -0.10341797024011612, + -0.00854405201971531, + 0.0005883961566723883, + -0.014915564097464085, + 0.0174692515283823, + -0.04634751379489899, + 0.09310158342123032, + -0.010970690287649632, + 0.0807524099946022, + 0.016770482063293457, + -0.03318522498011589, + -0.04334915429353714, + -0.12125565856695175, + 0.024545885622501373, + 0.03186391294002533, + 0.06032291427254677, + 0.06692946702241898, + -0.046627018600702286, + -0.0667261853814125, + -0.023211870342493057, + -0.0675901249051094, + -0.01809179224073887, + 0.07074093818664551, + -0.019743429496884346, + 0.028865555301308632, + 0.006355631165206432, + 0.015538104809820652, + 0.005720385815948248, + -0.002776022767648101, + -0.058340948075056076, + 0.07434913516044617, + 0.06576061248779297, + -0.04263767972588539, + 0.09203436970710754, + 0.026299163699150085, + 0.014953679405152798, + 0.10229993611574173, + 0.06809832155704498, + 0.030593423172831535, + 0.01660531759262085, + -0.00813114270567894, + -0.05061636120080948, + -0.02642621286213398, + -0.019374987110495567, + -0.01566515490412712, + 0.05488521233201027, + -0.06418520212173462, + 0.006273049395531416, + 0.02754424512386322, + 0.009026838466525078, + -0.009039543569087982, + 0.005050201900303364, + 0.035141780972480774, + -0.020823348313570023, + -0.0023186460603028536, + -0.04192620515823364, + -0.02660408243536949, + -0.00291260052472353, + 0.04733849689364433, + 0.052293408662080765, + -0.0008941080304794014, + -0.015296711586415768, + -0.11088845878839493, + 0.039639320224523544, + 0.025041377171874046, + 0.004341903142631054, + -0.007864339277148247, + 0.08364912867546082, + 0.008747330866754055, + -0.004303788300603628, + 0.008455117233097553, + 0.028941785916686058, + 0.029170474037528038, + -0.038470469415187836, + -0.010526018217206001, + 0.0029729490634053946, + 0.03887702524662018, + -0.01678318716585636, + -0.05707045644521713, + 0.0034271494951099157, + -0.0323466993868351, + 0.01915900409221649, + -0.02955162152647972, + -0.01377212256193161, + 0.013403680175542831, + -0.03430325910449028, + 0.023491378873586655, + 0.044365547597408295, + -0.05198849365115166, + 0.04172292351722717, + 0.007356143090873957, + -0.021166380494832993, + 0.06494750082492828, + 0.020048348233103752, + 0.0224749855697155, + -0.025041377171874046, + -0.010341797024011612, + 0.07963437587022781, + -0.07887208461761475, + 0.017138924449682236, + -0.05074341222643852, + 0.007864339277148247, + -0.03798768296837807, + 0.001738984603434801, + -0.03819096088409424, + -0.00914753507822752, + -0.020810643211007118, + 0.005336062051355839, + 0.04177374392747879, + 0.0008067617891356349, + -0.018993841484189034, + 0.07018192112445831, + 0.01912088878452778, + 0.015055318363010883, + -0.03542128950357437, + 0.03498932346701622, + 0.011110443621873856, + -0.0038559401873499155, + 0.14808842539787292, + -0.07800814509391785, + 0.03290571644902229, + -0.026299163699150085, + 0.009687493555247784, + -0.027036048471927643, + -0.009058601222932339, + 0.012736672535538673, + 0.06139012426137924, + -0.06809832155704498, + -0.04357784241437912, + 0.03638686239719391, + -0.01219671405851841, + 0.0033255103044211864, + 0.039842598140239716, + 0.03270243853330612, + 0.032168831676244736, + -0.05254750698804855, + -0.03313440456986427, + 0.02537170611321926, + 0.011301017366349697, + -0.0649983212351799, + 0.023923344910144806, + -0.03384587913751602, + 0.001910500810481608, + -0.026959819719195366, + -0.028814736753702164, + -0.004249792546033859, + -0.012717614881694317, + -0.0053741768933832645, + -0.04507702216506004, + 0.01276843436062336, + 0.08461470156908035, + 0.08756224066019058, + -0.011644050478935242, + -0.03412538766860962, + 0.03996964544057846, + -0.006139647681266069, + -0.06205078214406967, + -0.02101392112672329, + 0.00390040734782815, + 0.021725395694375038, + 0.013454499654471874, + -0.021344248205423355, + -0.04599177464842796, + -0.006720897275954485, + -0.09609994292259216, + 0.029704079031944275, + 0.035370469093322754, + 0.02848440781235695, + 0.06931798905134201, + 0.03460817411541939, + 0.036208994686603546, + 0.10570485144853592, + -0.0512516088783741, + 0.036285221576690674, + 0.018854087218642235, + -4.522401923168218e-06, + 0.010888108052313328, + -0.01115491148084402, + 0.04177374392747879, + 0.0028538403566926718, + -0.017786873504519463, + 0.0034557355102151632, + -0.040935222059488297, + 0.021954083815217018, + 0.06581143289804459, + -0.11220976710319519, + 0.005564750637859106, + -0.022462280467152596, + -0.025752853602170944, + 0.0627114325761795, + 0.017304087057709694, + -0.00891884695738554, + -0.00623493455350399, + -0.0435270220041275, + 0.01786310411989689, + 0.03839423879981041, + 0.03730161488056183, + -0.125422865152359, + -0.08380158990621567, + -0.03570079803466797, + 0.01033544447273016, + -0.01142171397805214, + -0.03450653702020645, + -0.009280936792492867, + -0.016567202284932137, + -0.05945897847414017, + -0.04718603566288948, + 0.05574914440512657, + -0.06550651788711548, + 0.01955285668373108, + 0.054986849427223206, + 0.025930721312761307, + -0.02053113467991352, + -0.03811473026871681, + 0.1125146821141243, + 0.01500449888408184, + 0.0177487600594759, + -0.014191384427249432, + -0.00383370672352612, + -0.042332760989665985, + 0.010208395309746265, + 0.012431754730641842, + 0.021865149959921837, + -0.007070282474160194, + -0.011491591110825539, + -0.0704360231757164, + 0.03547210991382599, + -0.03323604539036751, + 0.04063030332326889, + -0.00640009855851531, + 0.006015774793922901, + -0.012152246199548244, + -0.00966208428144455, + -0.015220481902360916, + -0.023999575525522232, + -0.027417195960879326, + 0.06250815838575363, + 0.03991882875561714, + 0.01514425314962864, + 0.03501473367214203, + 0.0469573475420475, + 0.04601718485355377, + 0.03415079787373543, + 0.029932769015431404, + 0.05646061897277832, + -0.05651143938302994, + -0.02222088724374771, + -0.02167457714676857, + -0.0022440047468990088, + -0.0018040972063317895, + -0.02960244007408619, + -0.018561873584985733, + 0.002561627421528101, + 0.05191226303577423, + 0.06144094467163086, + -0.0320671945810318, + -0.013276631012558937, + -0.0001916654728120193, + 0.03844505921006203, + 0.04840570688247681, + -0.046423740684986115, + 0.030415555462241173, + -0.04273931682109833, + 0.003805120475590229, + 0.010074993595480919 + ] + }, + { + "id": "ead1cd86-5f64-4824-8ac1-467034f58383", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "peterrowe", + "reviewDate": "2021-02-21T15:01:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a0030de7-1282-47c5-a9ec-6ee86b7da487", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "annettemorgan", + "reviewDate": "2022-02-05T18:23:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b1ace068-85a8-4b73-96c9-5e98da0b9301", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "heatherdixon", + "reviewDate": "2021-12-26T11:22:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "22da3139-e9d4-487d-978e-8490c497bff7", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "horneric", + "reviewDate": "2022-06-05T19:33:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "601947e6-9182-4f93-b7fa-9a49a010efc2", + "productId": "f577feac-7a74-42c7-b9c8-9e4f93222822", + "category": "Other", + "docType": "customerRating", + "userName": "amy48", + "reviewDate": "2021-12-21T11:33:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8cbd0ce1-64b7-497e-aff1-70e950e8fd27", + "productId": "8cbd0ce1-64b7-497e-aff1-70e950e8fd27", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Mini (Red)", + "description": "This Luxe Phone Mini (Red) is the first smartphone with LTE connectivity to support LTE bands - this is a much better value overall and helps push LTE", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-12-14T19:13:56", + "price": 468.65, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-03-15T17:38:35", + "newPrice": 458.44 + }, + { + "priceDate": "2021-03-23T17:38:35", + "newPrice": 514.54 + }, + { + "priceDate": "2021-03-31T17:38:35", + "newPrice": 433.89 + }, + { + "priceDate": "2021-04-08T17:38:35", + "newPrice": 461.0 + }, + { + "priceDate": "2021-09-09T17:38:35", + "newPrice": 468.65 + } + ], + "descriptionVector": [ + -0.06454310566186905, + 0.10395344346761703, + -0.022285286337137222, + 0.01035390142351389, + -0.0381002202630043, + -0.045212261378765106, + 0.011470171622931957, + 0.052457984536886215, + -0.0007381917675957084, + 0.04093434289097786, + 0.029036378487944603, + -0.050746817141771317, + 0.045452892780303955, + 0.01874263398349285, + 0.04900891333818436, + -0.037859585136175156, + 0.015440614894032478, + -0.04713732376694679, + 0.004511868115514517, + -0.029758276417851448, + 0.03211113065481186, + -0.11892616003751755, + -0.05791233479976654, + -0.02453119307756424, + -0.0030246227979660034, + -0.03384903818368912, + -0.010213532485067844, + 0.05146871879696846, + -0.0036729949060827494, + -0.014892506413161755, + 0.058019280433654785, + -0.020948436111211777, + -0.05502473935484886, + -0.01811431534588337, + -0.012305702082812786, + 0.002122248988598585, + 0.0852375403046608, + 0.029865223914384842, + 0.011851173825562, + 0.025587305426597595, + 0.04232466593384743, + -0.02338150329887867, + 0.008067888207733631, + -0.03072080761194229, + 0.039303384721279144, + -0.04510531201958656, + -0.01637640967965126, + 0.03165660426020622, + -0.026523100212216377, + 0.022672973573207855, + -0.0762004405260086, + -0.022993816062808037, + -0.043233722448349, + -0.015133139677345753, + -0.03646926209330559, + 0.019090214744210243, + 0.034677885472774506, + 0.10625281929969788, + 0.0006575629813596606, + -0.05753801390528679, + -0.03446398675441742, + -0.03360840305685997, + 0.01419734489172697, + -0.02163022942841053, + -0.0064335898496210575, + -0.027271736413240433, + -0.09796435385942459, + 0.008428838104009628, + -0.024491088464856148, + 0.050720080733299255, + -0.0796227753162384, + 0.0661473274230957, + 0.0639548972249031, + 0.0385814867913723, + 0.06438268721103668, + 0.03975791484117508, + -0.004842738620936871, + 0.012666651979088783, + 0.003920312039554119, + -0.038180429488420486, + 0.0720294639468193, + 0.005297267343848944, + 0.0362553671002388, + -0.058340124785900116, + -0.009438159875571728, + 0.03181702643632889, + 0.05721717327833176, + -0.09673444926738739, + -0.051014188677072525, + 0.02396971732378006, + -0.05427610129117966, + 0.058072756975889206, + -0.020828120410442352, + 0.04820680245757103, + 0.0381002202630043, + 0.06309930980205536, + -0.001741246902383864, + 0.06817933917045593, + -0.018020736053586006, + 0.010180111043155193, + 0.02073454111814499, + -0.007359358016401529, + 0.0030680703930556774, + -0.018502000719308853, + 0.060372136533260345, + 0.035774100571870804, + 0.020574118942022324, + 0.05866096913814545, + -0.0038802064955234528, + -0.09876646101474762, + 0.0426187701523304, + 0.0271915253251791, + -0.08432848751544952, + -0.004715737886726856, + -0.03422335535287857, + 0.05705675110220909, + 0.011249590665102005, + -0.006674222648143768, + 0.04860785976052284, + 0.03732484579086304, + 0.04272571951150894, + 0.04301982745528221, + -0.019197164103388786, + -0.04991797357797623, + -0.005003160331398249, + -0.0420038215816021, + 0.04580047354102135, + 0.06935577094554901, + 0.004097444470971823, + -0.0673772320151329, + -0.05347399041056633, + 0.09619971364736557, + 0.043233722448349, + 0.08218952268362045, + 0.037244636565446854, + 0.0690883994102478, + 0.0683397650718689, + 0.001345205120742321, + -0.011884594336152077, + 0.004642210900783539, + 0.022071389481425285, + -0.014972717501223087, + 0.05347399041056633, + -0.007894097827374935, + -0.0068246182054281235, + 0.011069116182625294, + 0.014651874080300331, + -0.05285904183983803, + -0.027365315705537796, + 0.03836758807301521, + 0.025774464011192322, + -0.08807166665792465, + 0.042779192328453064, + 0.02772626467049122, + 0.03507893905043602, + 0.010634640231728554, + -0.04815332964062691, + -0.07662823051214218, + -0.05636158958077431, + 0.04005201905965805, + -0.007860677316784859, + 0.0016652134945616126, + 0.017018098384141922, + -0.029143325984477997, + -0.04187013581395149, + 0.020253274589776993, + 0.03719116002321243, + -0.0009901043958961964, + -0.0762004405260086, + 0.05465041846036911, + 0.04764532670378685, + -0.054516736418008804, + -0.07539832592010498, + -0.007366042584180832, + 0.0013134549371898174, + 0.032030921429395676, + 0.04772553965449333, + -0.0520569309592247, + 0.04815332964062691, + -0.0012850469211116433, + 0.05662895739078522, + 0.0781254991889, + -0.07160167396068573, + 0.0029878593049943447, + -0.01169743575155735, + -0.03069407120347023, + 0.00907720997929573, + 0.01818115822970867, + -0.01724536158144474, + 0.05061313509941101, + -0.03598799556493759, + -0.03630883991718292, + -0.0236355047672987, + 0.013769553042948246, + 0.03483830764889717, + -0.09384685754776001, + 0.06470353156328201, + 0.008081257343292236, + 0.015547563321888447, + 0.03852801024913788, + 0.010614586994051933, + 0.09523718059062958, + 0.061495091766119, + -0.013254866003990173, + 0.011343170888721943, + -0.0742219015955925, + 0.041602764278650284, + 0.09791088104248047, + -0.005106766242533922, + 0.03949054330587387, + 0.01491924375295639, + -0.005578005686402321, + 0.024464352056384087, + 0.02457129955291748, + 0.054810840636491776, + 0.06700291484594345, + 0.07860676944255829, + -0.022325390949845314, + -0.05614769086241722, + -0.1063062995672226, + 0.014130502007901669, + 0.014678610488772392, + 0.026202255859971046, + -0.019758639857172966, + -0.09047799557447433, + -0.04596089571714401, + 0.03157639130949974, + -0.005838691722601652, + 0.04438341408967972, + 0.0526718832552433, + -0.012980811297893524, + -0.06288541853427887, + 0.011102537624537945, + 0.0339292474091053, + 0.024450983852148056, + -0.0339292474091053, + 0.015935249626636505, + -0.009378001093864441, + -0.05620116740465164, + 0.0011831120355054736, + -0.03855474665760994, + -0.0607464537024498, + -0.0560942180454731, + -0.018782740458846092, + 0.04753837734460831, + -0.03807348385453224, + 0.022044653072953224, + 0.09416770190000534, + -0.04791269823908806, + 0.0344105139374733, + -0.02275318279862404, + -0.08165478706359863, + -0.028715534135699272, + 0.04526573419570923, + -0.037832848727703094, + -0.0002533748047426343, + 0.05748454108834267, + -0.01958484947681427, + 0.06705638766288757, + -0.02626909874379635, + 0.04684321582317352, + -0.048340488225221634, + -0.005270530469715595, + 0.08315205574035645, + -0.02693752385675907, + 0.04970407485961914, + 0.02310076542198658, + -0.015627773478627205, + -0.01933084800839424, + 0.03323408588767052, + -0.042244452983140945, + -0.014745453372597694, + 0.07208294421434402, + 0.015560931526124477, + -0.021777283400297165, + 0.0008372021839022636, + -0.09133357554674149, + 0.05577337369322777, + -0.02252591960132122, + -0.019451165571808815, + 0.03133575990796089, + 0.008268415927886963, + 0.05844707414507866, + -0.0847562775015831, + -0.007994362153112888, + -0.055078212171792984, + -0.023942980915308, + -0.03486504405736923, + -0.0068246182054281235, + -0.04526573419570923, + -0.039303384721279144, + 0.003699731780216098, + 0.06978356093168259, + -0.006319957319647074, + 0.01608230359852314, + -0.017058202996850014, + 0.028127320110797882, + -0.06459658592939377, + -0.009912741370499134, + 0.01299418043345213, + -0.08432848751544952, + 0.021750546991825104, + 0.010601218789815903, + -0.060372136533260345, + -0.04406256973743439, + 0.10395344346761703, + 0.010741587728261948, + 0.0556129515171051, + -0.07892761379480362, + 0.005618111230432987, + 0.07882066816091537, + -0.037271372973918915, + -0.044570572674274445, + -0.01838168501853943, + 0.012479493394494057, + -0.03042670153081417, + -0.06374099850654602, + -0.037244636565446854, + 0.07235030829906464, + -0.015199982561171055, + 0.06817933917045593, + 0.0009416436078026891, + -0.09930120408535004, + 0.031175337731838226, + 0.02106875367462635, + 0.04564005136489868, + 0.019197164103388786, + -0.028234267607331276, + 0.009759003296494484, + -0.031202074140310287, + -0.05430283769965172, + -0.034945253282785416, + -0.010534376837313175, + 0.0064436160027980804, + -0.012345807626843452, + -0.027699528262019157, + 0.05967697501182556, + 0.02807384543120861, + 0.043982356786727905, + -0.006116088014096022, + 0.053072936832904816, + 0.016603674739599228, + -0.043714988976716995, + 0.033768825232982635, + -0.026081940159201622, + 0.0008175672264769673, + -0.09967552125453949, + 0.059516552835702896, + 0.07481011748313904, + 0.02868879772722721, + 0.001438784645870328, + -0.011650646105408669, + 0.015560931526124477, + -0.043126773089170456, + 0.06796544045209885, + 0.010567797347903252, + 0.05930265784263611, + -0.04588068649172783, + 0.01035390142351389, + -0.015387141145765781, + 0.005768506787717342, + 0.003502546576783061, + 0.02665678597986698, + 0.06352709978818893, + -0.04149581864476204, + 0.0717620998620987, + -0.015026192180812359, + 0.027859950438141823, + -0.08384721726179123, + 0.05408894270658493, + 0.04705711454153061, + -0.012666651979088783, + -0.0373515821993351, + 0.04288614168763161, + 0.0020921698305755854, + 0.005694980267435312, + 0.08384721726179123, + -0.03339450806379318, + -0.003007912077009678, + 0.07047872245311737, + -0.04141560569405556, + -0.018247999250888824, + -0.03039996512234211, + -0.03275281935930252, + 0.07304546982049942, + -0.04729774594306946, + 0.026750365272164345, + 0.043982356786727905, + -0.056040745228528976, + 0.03152291849255562, + 0.048046380281448364, + -0.10512986779212952, + -0.014237450435757637, + 0.05983739718794823, + 0.10994252562522888, + -0.053367044776678085, + -0.04203055799007416, + 0.022151600569486618, + -0.0006195463356561959, + -0.04435667768120766, + -0.010053110308945179, + -0.0005811118753626943, + -0.00905047357082367, + -0.024437613785266876, + -0.03911622613668442, + 0.02255265600979328, + -0.001164730405434966, + -0.004164287354797125, + -0.009525055065751076, + -0.11133284866809845, + 0.024090033024549484, + -0.04189687222242355, + -0.04376846179366112, + -0.02983848750591278, + 0.06459658592939377, + -0.020320117473602295, + -0.0013368497602641582, + 0.006837986875325441, + 0.013121181167662144, + 0.042565297335386276, + -0.0070318300276994705, + -0.0230873953551054, + -0.03334103524684906, + -0.03622863069176674, + -0.02658994309604168, + -0.0001970809098565951, + -0.0009942820761352777, + -0.01418397668749094, + -0.016710622236132622, + -0.03334103524684906, + 0.044891417026519775, + -0.02831447869539261, + 0.014250818639993668, + 0.016871044412255287, + 0.012773599475622177, + 0.0023846058174967766, + -0.0455598421394825, + 0.019090214744210243, + -0.011918015778064728, + 0.017967261373996735, + 0.005207030102610588, + -0.027271736413240433, + -0.04580047354102135, + 0.07823245227336884, + -0.16844306886196136, + 0.03820716589689255, + -0.008843261748552322, + 0.04056002199649811, + 0.01052100770175457, + -0.03620189428329468, + -0.027044471353292465, + 0.04735121876001358, + -0.07208294421434402, + -0.03716442361474037, + 0.001144677633419633, + -0.043741725385189056, + 0.027619317173957825, + 0.05866096913814545, + -0.03130902349948883, + -0.015654511749744415, + 0.007960940711200237, + 0.024397509172558784, + 0.025881411507725716, + -0.015253456309437752, + -0.04785922169685364, + -0.05462368205189705, + -0.0161090400069952, + -0.021429702639579773, + -0.012225491926074028, + 0.044276464730501175, + 0.020520644262433052, + -0.05138850584626198, + 0.013121181167662144, + -0.005260503850877285, + -0.05577337369322777, + -0.018836213275790215, + -0.028287742286920547, + -0.05240451171994209, + -0.027405420318245888, + 0.05882139131426811, + 0.025039196014404297, + 0.0181276835501194, + 0.05213714390993118, + 0.027405420318245888, + 0.0783928707242012, + -0.035827573388814926, + 0.03328755870461464, + -0.004792606458067894, + 0.09555802494287491, + 0.00936463288962841, + 0.022338761016726494, + -0.01870252937078476, + -0.0720294639468193, + -0.05737759545445442, + -0.055131684988737106, + -0.07010440528392792, + 0.03855474665760994, + 0.022138232365250587, + -0.04491815343499184, + -0.020413696765899658, + -0.008007730357348919, + -0.002137288684025407, + 0.023528557270765305, + -0.015333667397499084, + -0.008682839572429657, + 0.04970407485961914, + 0.01985221914947033, + 0.04301982745528221, + 0.024477720260620117, + -0.08416806161403656, + 0.03224481642246246, + -0.025774464011192322 + ] + }, + { + "id": "344c0ead-2a6c-4f13-8d58-6ece9a369c54", + "productId": "8cbd0ce1-64b7-497e-aff1-70e950e8fd27", + "category": "Electronics", + "docType": "customerRating", + "userName": "bradley34", + "reviewDate": "2021-03-15T17:38:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "835d2b14-cee2-4f43-ab4d-b385d94716c0", + "productId": "8cbd0ce1-64b7-497e-aff1-70e950e8fd27", + "category": "Electronics", + "docType": "customerRating", + "userName": "taylorbreanna", + "reviewDate": "2021-04-11T00:58:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "product", + "name": "Premium TV Micro (Steel)", + "description": "This Premium TV Micro (Steel) is an integrated TV that supports the high definition capability of the Panasonic GH5. The Panasonic GH4 is a great solution for streaming video and is the perfect size to share your video with others in your organization. For a high definition, powerful", + "countryOfOrigin": "Egypt", + "rareItem": true, + "firstAvailable": "2019-08-20T18:36:47", + "price": 1039.15, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-01-29T12:48:21", + "newPrice": 992.48 + }, + { + "priceDate": "2021-08-29T12:48:21", + "newPrice": 936.78 + }, + { + "priceDate": "2022-03-29T12:48:21", + "newPrice": 964.89 + }, + { + "priceDate": "2022-10-27T12:48:21", + "newPrice": 948.53 + }, + { + "priceDate": "2025-07-15T12:48:21", + "newPrice": 1039.15 + } + ], + "descriptionVector": [ + -0.020496472716331482, + 0.036932323127985, + -0.04517441987991333, + 0.08416122198104858, + -0.02704664319753647, + 0.06168277934193611, + -0.005311438348144293, + 0.012435655109584332, + 0.024158284068107605, + 0.0172334723174572, + 0.02670825645327568, + -0.02314312756061554, + 0.07874706387519836, + 0.009456656873226166, + 0.002678378950804472, + 0.03678730130195618, + -0.03577214479446411, + -0.0011299647158011794, + 0.047349750995635986, + 0.013607917353510857, + 0.12529918551445007, + -0.12365560233592987, + -0.013414554297924042, + -0.009541252627968788, + 0.0007534357137046754, + 0.014284688048064709, + -0.023735301569104195, + -0.005347694270312786, + -0.034805331379175186, + -0.036279723048210144, + 0.02786843478679657, + 0.02593480609357357, + -0.045319441705942154, + -0.015565717592835426, + 0.0029865512624382973, + -0.05496341735124588, + 0.0184057354927063, + 0.06356807053089142, + 0.04635876789689064, + -0.008810099214315414, + 0.03345179185271263, + 0.024013260379433632, + 0.02902861312031746, + -0.014937288127839565, + -0.03664227947592735, + 0.007426345720887184, + 0.0043385811150074005, + 0.04432845488190651, + 0.0026058678049594164, + -0.05854063108563423, + -0.01194016169756651, + 0.012302717193961143, + -0.016592958942055702, + 0.06395479291677475, + -0.035119544714689255, + -0.020339366048574448, + 0.06791873276233673, + 0.18843218684196472, + 0.0699973851442337, + 0.003426149720326066, + 0.024484584107995033, + 0.037488240748643875, + -0.0003491485258564353, + 0.050419390201568604, + -0.050419390201568604, + -0.07067415863275528, + 0.006489743944257498, + 0.02433956041932106, + 0.02309478633105755, + 0.03891429305076599, + 0.01844199188053608, + -0.07874706387519836, + 0.07666841149330139, + -0.01004883088171482, + 0.010526195168495178, + 0.01962633989751339, + 0.06274627894163132, + 0.041887249797582626, + 0.036763131618499756, + -0.016327083110809326, + 0.008580480702221394, + 0.013692514039576054, + -0.041452180594205856, + 0.01141445618122816, + 0.07560491561889648, + 0.044086750596761703, + -0.0019577997736632824, + -0.0736229419708252, + -0.031203946098685265, + 0.08058401197195053, + 0.0028173585887998343, + 0.11891821026802063, + 0.05259472131729126, + -0.06680689752101898, + 0.035892996937036514, + 0.038696758449077606, + -0.06405147910118103, + 0.05191795155405998, + -0.0009433996747247875, + 0.04046119749546051, + 0.025910634547472, + -0.0352887399494648, + 0.07019075006246567, + -0.023251894861459732, + -0.004743434954434633, + -0.0036164913326501846, + 0.009607721120119095, + 0.007353834807872772, + 0.03347596153616905, + -0.15024301409721375, + -0.04918669909238815, + -0.048969168215990067, + 0.03424941375851631, + -0.0008044200949370861, + -0.05365821719169617, + -0.019457146525382996, + 0.01339038461446762, + -0.01136007346212864, + 0.04159720614552498, + 0.01278612483292818, + 0.004897520877420902, + 0.017124706879258156, + -0.03325842693448067, + 0.013946302235126495, + 0.0069308532401919365, + 0.030696367844939232, + -0.0793754905462265, + 0.010671217925846577, + 0.028400182723999023, + -0.013317872770130634, + -0.01411549560725689, + 0.004882414359599352, + 0.07120590656995773, + 0.00734779192134738, + -0.025717271491885185, + -0.007486771792173386, + -0.018200287595391273, + 0.03383851423859596, + 0.009994447231292725, + 0.005356757901608944, + -0.05080611631274223, + -0.007069832645356655, + -0.001320306328125298, + -0.013668343424797058, + 0.007003364153206348, + 0.006223869975656271, + 0.018164031207561493, + 0.06849882751703262, + 0.00686438474804163, + 0.014212177135050297, + 0.03304089233279228, + -0.057525478303432465, + -0.03101058304309845, + -0.02786843478679657, + 0.0942644402384758, + -0.02240593172609806, + -0.05849229171872139, + 0.02786843478679657, + -0.11920826137065887, + 0.02709498256444931, + 0.03289587050676346, + -0.03098641335964203, + -0.013644172810018063, + 0.009366017766296864, + 0.0196988508105278, + 0.023360662162303925, + 0.10866997390985489, + -0.049597594887018204, + 0.0018762248801067472, + 0.0501776859164238, + 0.041428010910749435, + -0.05501176044344902, + 0.0073054940439760685, + 0.014852691441774368, + 0.008338777348399162, + -0.03896263241767883, + 0.048026520758867264, + 0.010767899453639984, + -0.02513718418776989, + -0.0305996872484684, + -0.008520054630935192, + -0.052111316472291946, + -0.030865561217069626, + -0.0065562124364078045, + -0.021765416488051414, + 0.10344918072223663, + 0.041814737021923065, + 0.038720931857824326, + -0.039856936782598495, + 0.009323719888925552, + 0.054818395525217056, + 0.018309054896235466, + 0.04357917606830597, + -0.07357460260391235, + 0.04084792360663414, + -0.060619283467531204, + 0.07130258530378342, + -0.09334596246480942, + -0.02910112403333187, + -0.013088254258036613, + -0.034732818603515625, + 0.0005468545714393258, + 0.06806375831365585, + 0.014248432591557503, + -0.07662007212638855, + -0.001589201739989221, + -0.0033234257716685534, + 0.07381630688905716, + -0.00958959385752678, + 0.05573686957359314, + -0.027554219588637352, + -0.061392735689878464, + 0.00472228555008769, + 0.005655866116285324, + 0.06458322703838348, + 0.014018814079463482, + 0.015469036065042019, + -0.02559642121195793, + -0.009335804730653763, + 0.01219999324530363, + 0.044521819800138474, + -0.014188006520271301, + 0.04882414638996124, + -0.0368114709854126, + -0.035482101142406464, + -0.006785830948501825, + 0.0038340247701853514, + -0.028061797842383385, + 0.033065065741539, + 0.03453945741057396, + -0.08643323928117752, + -0.023251894861459732, + 0.022901425138115883, + -0.03175986558198929, + 0.0060274857096374035, + -0.01095521915704012, + -0.047349750995635986, + -0.08667494356632233, + -0.019034165889024734, + 0.022611379623413086, + -0.08986543118953705, + -0.008405245840549469, + -0.038624249398708344, + 0.0540449433028698, + -0.0003576459130272269, + -0.0011307200184091926, + 0.06458322703838348, + 0.020206429064273834, + -0.06501828879117966, + -0.045271098613739014, + -0.07023908942937851, + -0.014888946898281574, + -0.0073598772287368774, + 0.016701724380254745, + -0.048872485756874084, + 0.06564672291278839, + 0.041089627891778946, + -0.05109615996479988, + 0.013885877095162868, + -0.013692514039576054, + -0.04089626297354698, + -0.0336451530456543, + 0.005967059638351202, + -0.005982166156172752, + -0.030503004789352417, + 0.0542866475880146, + 0.07120590656995773, + -0.049984320998191833, + -0.02900444157421589, + 0.05138620361685753, + -0.034321922808885574, + 0.01575908064842224, + -0.030720539391040802, + -0.006719362456351519, + -0.05506009981036186, + 0.0015710740117356181, + -0.08053566515445709, + 0.030116278678178787, + 0.012308760546147823, + 0.036666449159383774, + 0.06806375831365585, + -0.07749020308256149, + 0.008967206813395023, + -0.0006087911315262318, + 0.10093545913696289, + -0.009384145960211754, + -0.05501176044344902, + 0.05186961218714714, + -0.020327279344201088, + -0.03569963574409485, + -0.003994153346866369, + -0.021040305495262146, + 0.05230467766523361, + -0.0344669446349144, + 0.02989874593913555, + 0.04386921972036362, + -0.027795923873782158, + 0.010357002727687359, + 0.04556114599108696, + -0.04403841122984886, + -0.042636528611183167, + 0.05037104710936546, + -0.055495165288448334, + -0.05133786424994469, + -0.059459105134010315, + 0.003326446982100606, + -0.04072707146406174, + 0.05109615996479988, + 0.032388292253017426, + -0.04568199813365936, + 0.11050692200660706, + -0.021487457677721977, + -0.08662660419940948, + 0.08609485626220703, + -0.00905180349946022, + -0.004000196233391762, + -0.0025454419665038586, + 0.02120949886739254, + 0.0013308809138834476, + 0.00886448286473751, + 0.018623268231749535, + 0.016218317672610283, + -0.07981055974960327, + 0.08865690976381302, + 0.022901425138115883, + -0.04594787210226059, + -0.05409328639507294, + -0.012496080249547958, + 0.016689639538526535, + -0.036714788526296616, + 0.01220603659749031, + -0.005915697664022446, + 0.048413246870040894, + 0.02002515085041523, + 0.09073556214570999, + -0.04111379757523537, + 0.015577802434563637, + -0.07072249799966812, + -0.004402028396725655, + 0.03023713082075119, + 0.05805722624063492, + -0.027336686849594116, + 0.05699373036623001, + -0.015614057891070843, + 0.011952247470617294, + -0.05704206973314285, + -0.08130911737680435, + 0.02273223176598549, + -0.02472628653049469, + -0.010489939711987972, + 0.0013044446241110563, + -0.03190488740801811, + 0.017583943903446198, + 0.10683302581310272, + 0.01312450971454382, + 0.027409197762608528, + 0.011638032272458076, + 0.00823605339974165, + 0.031639013439416885, + -0.014236346818506718, + 0.02352985367178917, + -0.042999085038900375, + 0.01293114759027958, + 0.07478312402963638, + -0.09581134468317032, + 0.05365821719169617, + -0.06279461830854416, + 0.03342761844396591, + -0.03149399161338806, + -0.025838123634457588, + 0.06603344529867172, + -0.0131607661023736, + 0.006604553200304508, + 0.08164750784635544, + -0.017463091760873795, + 0.04797818139195442, + 0.04005030170083046, + -0.016290828585624695, + -0.04507773742079735, + 0.03299255296587944, + -0.07168931514024734, + 0.014163835905492306, + 0.012423569336533546, + 0.02711915411055088, + 0.06115103140473366, + 0.06816043704748154, + 0.004912627395242453, + -0.0777319073677063, + -0.08401620388031006, + -0.0003349861945025623, + -0.025741443037986755, + 0.00801851972937584, + 0.007571368012577295, + -0.025378886610269547, + 0.056752026081085205, + -0.0352887399494648, + 0.012496080249547958, + 0.008272308856248856, + 0.04512607678771019, + -0.055930234491825104, + 0.019082505255937576, + 0.038624249398708344, + 0.023856153711676598, + -0.04253984987735748, + -0.026055658236145973, + -0.04437679797410965, + -0.018744120374321938, + 0.08551476150751114, + -0.01101564522832632, + -0.09929187595844269, + -0.01890122890472412, + -0.007788901217281818, + 0.023759473115205765, + -0.07212437689304352, + 0.023868238553404808, + -0.015843676403164864, + 0.033959366381168365, + -0.02352985367178917, + 0.04882414638996124, + -0.018635354936122894, + 0.06758034974336624, + 0.0216324795037508, + -0.023759473115205765, + -0.02357819490134716, + 0.029705382883548737, + -0.00667706411331892, + -0.033959366381168365, + 0.03289587050676346, + 0.02077443152666092, + -0.08285602182149887, + 0.04606872424483299, + -0.1140841394662857, + 0.032750848680734634, + -0.02907695434987545, + -0.022152142599225044, + -0.022272994741797447, + 0.014453880488872528, + 0.07889208197593689, + -0.019167102873325348, + 0.0708191767334938, + -0.021366605535149574, + -0.019505487754940987, + 0.00627825316041708, + 0.054721713066101074, + -0.08246929943561554, + -0.030938072130084038, + 0.024061601608991623, + -0.009196825325489044, + 0.07744186371564865, + -0.009287464432418346, + -0.021427031606435776, + 0.03369349241256714, + -0.03429775312542915, + -0.06322968751192093, + -0.09682649374008179, + 0.035554613918066025, + 0.031203946098685265, + 0.02000097930431366, + -0.02362653613090515, + 0.004574242047965527, + -0.005719313398003578, + 0.10625293850898743, + 0.02557224966585636, + 0.017354324460029602, + 0.009668147191405296, + -0.046552129089832306, + -0.06458322703838348, + 0.08237261325120926, + -0.004105941392481327, + 0.023747386410832405, + -0.02552390843629837, + -0.03801998868584633, + 0.017861902713775635, + -0.041089627891778946, + 0.03533707931637764, + -0.03818918392062187, + 0.009511039592325687, + 0.03971191495656967, + -0.01294323243200779, + -0.011777011677622795, + 0.025910634547472, + 0.03538541868329048, + 0.02753004990518093, + 0.10431931167840958, + -0.0039639403112232685, + 0.023795727640390396, + -0.012411484494805336, + 0.0565103217959404, + 0.004211686551570892, + -0.01577116549015045, + 0.050854455679655075, + 0.01357166189700365, + 0.007172557059675455, + -0.07971387356519699, + -0.027940945699810982, + 0.06651685386896133, + 0.000373885384760797, + 0.013897961936891079, + -0.018345309421420097, + -0.034756988286972046, + 0.010012575425207615, + 0.05612359568476677, + -0.03690815344452858, + -0.002915550721809268, + 0.004746456164866686, + 0.03565129265189171, + 0.05728377401828766, + -0.009094101376831532, + -0.015046054497361183, + 0.021789588034152985, + 0.023977005854249, + 0.06477658450603485 + ] + }, + { + "id": "a78a4fc4-e8d6-4a7a-be36-164b59d10077", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "morganchristina", + "reviewDate": "2021-01-29T12:48:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6024a5ba-6b86-445b-bd15-cd5b8a68b5bc", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "qwong", + "reviewDate": "2022-05-10T05:37:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c6b6234b-5df1-4e5c-aa1e-5aa68e47bd05", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "jordanzachary", + "reviewDate": "2021-11-20T19:03:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "28c16596-8630-4f79-aee1-d01adb555c2c", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "epena", + "reviewDate": "2021-07-24T16:08:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "962907a8-51d0-4e20-bdfb-8659b5792852", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "codylindsey", + "reviewDate": "2022-07-08T13:34:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6a6544b4-e504-49ea-a86a-aa99f12cb990", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "audrey52", + "reviewDate": "2022-03-19T23:08:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "599a0b19-4589-475a-9ef9-4a89f1c40317", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "catherinemccullough", + "reviewDate": "2021-10-26T01:43:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ab4a16c2-e041-4a86-90a4-47539a064fb3", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "iowens", + "reviewDate": "2022-06-09T03:33:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0ea06668-cf5d-4026-a913-c21daa65c0af", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "cwilliams", + "reviewDate": "2022-10-30T09:28:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d1fad30f-fc83-48c0-b27f-fcf7f2913416", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "james93", + "reviewDate": "2021-10-02T11:32:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6c59b26a-f10d-416f-9052-5d4b1edf4eb8", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "keithrussell", + "reviewDate": "2022-05-20T18:28:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9e81c224-99ce-452c-bf80-f7f86c42a2a1", + "productId": "e44aaaa4-6818-41b1-bc6b-686bf3c1cde1", + "category": "Media", + "docType": "customerRating", + "userName": "samuelleach", + "reviewDate": "2022-06-13T10:05:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Super (Steel)", + "description": "This Amazing Keyboard Super (Steel) is a highly rated keyboard for both small and large devices. It is also designed to be comfortable and easy to hold. It has good support against various inputs", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-12-20T03:01:29", + "price": 391.89, + "stock": 90, + "priceHistory": [ + { + "priceDate": "2021-02-02T04:39:56", + "newPrice": 423.93 + }, + { + "priceDate": "2022-11-16T04:39:56", + "newPrice": 384.94 + }, + { + "priceDate": "2024-02-01T04:39:56", + "newPrice": 391.89 + } + ], + "descriptionVector": [ + 0.019651731476187706, + 0.015878980979323387, + -0.027555404230952263, + -0.015246209688484669, + 0.06442329287528992, + -0.03295186907052994, + -0.055110808461904526, + -0.020248685032129288, + 0.01746687851846218, + 0.06671559810638428, + 0.08343031257390976, + -0.005500932689756155, + 0.02695845067501068, + -0.03130427747964859, + 0.048639826476573944, + 0.0032026590779423714, + -0.00393691286444664, + -0.0489024855196476, + -0.01841006614267826, + -0.062322016805410385, + 0.016225215047597885, + -0.09790048748254776, + -0.046013228595256805, + -0.008763287216424942, + 0.00010297459812136367, + -0.015055184252560139, + 0.013061357662081718, + 0.00814245454967022, + -0.03830058127641678, + -0.0259555671364069, + -0.007187328301370144, + -0.052436456084251404, + -0.08257070183753967, + 0.05558837205171585, + 0.013515042141079903, + 0.016726655885577202, + -0.0349576361477375, + 0.0014543295837938786, + -0.04035410284996033, + -0.0012737509096041322, + 0.05143357068300247, + 0.06198772042989731, + 0.011867448687553406, + 0.028868703171610832, + -0.04403134062886238, + 0.04348214343190193, + -0.016631143167614937, + 0.014267204329371452, + 0.025167588144540787, + 0.0057009123265743256, + 0.07502520084381104, + 0.061175864189863205, + -0.021382898092269897, + -0.023221516981720924, + 0.042479258030653, + -0.02427215687930584, + 0.03015812486410141, + 0.09503510594367981, + 0.10802482813596725, + -0.02354387193918228, + -0.028892582282423973, + -0.07082264125347137, + 0.02046358957886696, + -0.04441339150071144, + -0.012118170037865639, + -0.07311494648456573, + -0.03335779905319214, + -0.01836230978369713, + -0.003954821266233921, + 0.04310009256005287, + -0.05315279960632324, + -0.0027937456034123898, + -0.011980869807302952, + 0.014685072936117649, + -0.015270087867975235, + -0.03070732206106186, + 0.04204945266246796, + 0.04348214343190193, + 0.05597042292356491, + 0.006321744527667761, + 0.02411694824695587, + 0.008757317438721657, + -0.05023966357111931, + -0.06509188562631607, + 0.08228415995836258, + 0.02201567031443119, + 0.05515856668353081, + -0.08424217253923416, + -0.07335373014211655, + 0.07139571756124496, + -0.04773245379328728, + 0.008220058865845203, + -0.02046358957886696, + -0.043171726167201996, + 0.06007746607065201, + 0.022540990263223648, + -0.09718413650989532, + 0.028725434094667435, + -0.0007555201300419867, + 0.026027202606201172, + 0.033644337207078934, + 0.0023281213361769915, + -0.07855916768312454, + -0.014589560218155384, + -0.060220737010240555, + 0.01725197583436966, + 0.016392361372709274, + 0.0022370857186615467, + -0.06814828515052795, + -0.10229406505823135, + 0.034050267189741135, + -0.031423669308423996, + -0.02277977205812931, + 0.030587932094931602, + -0.03600827604532242, + 0.007378353737294674, + -0.05921785533428192, + -0.02578842081129551, + 0.010673540644347668, + -0.04613261669874191, + -0.02371102012693882, + 0.09092806279659271, + -0.03185347467660904, + 0.08486300706863403, + -0.04957107454538345, + 0.016750533133745193, + 0.012392768636345863, + 0.00036787299904972315, + 0.02335284650325775, + -0.008363327942788601, + -0.051624596118927, + 0.07798609137535095, + 0.10124342888593674, + 0.05936112254858017, + -0.06485310196876526, + 0.03868263214826584, + 0.011252585798501968, + 0.1073562353849411, + -0.026265984401106834, + 0.045010343194007874, + 0.06294284760951996, + -0.01441047340631485, + -0.03168632835149765, + 0.026886815205216408, + -0.09713638573884964, + 0.04114207997918129, + -0.026242105290293694, + 0.013801580294966698, + 0.00649486156180501, + 0.04054512828588486, + 0.028295626863837242, + -0.10143445432186127, + -0.05821496993303299, + -0.09517837315797806, + 0.06179669499397278, + 0.0458938367664814, + -0.11451968550682068, + -0.024618390947580338, + -0.016272971406579018, + 0.0997152253985405, + -0.023281212896108627, + -0.0037697656080126762, + -0.01818322390317917, + 0.00020109894103370607, + -0.0049517350271344185, + 0.04064064100384712, + 0.030277514830231667, + 0.061557915061712265, + -0.013073296286165714, + 0.02674354612827301, + -0.042479258030653, + 0.022039547562599182, + 0.02070237137377262, + -0.1311388909816742, + -0.013873214833438396, + -0.045464031398296356, + 0.037823017686605453, + -0.04737428203225136, + 0.008739409036934376, + 0.014637316577136517, + 0.01110931672155857, + 0.032331038266420364, + -0.05267523601651192, + 0.0030161109752953053, + 0.09059376269578934, + 0.06671559810638428, + 0.05468100309371948, + 0.06332489848136902, + 0.0029683546163141727, + -0.01404036208987236, + -0.022039547562599182, + -0.02824787050485611, + -0.09283830970525742, + -0.010578027926385403, + 0.031757961958646774, + 0.03980490565299988, + -0.016356544569134712, + 0.01745494082570076, + 0.026624156162142754, + 0.007288810331374407, + -0.00559644540771842, + 0.10592354834079742, + 0.048639826476573944, + -0.030969982966780663, + 0.04966658726334572, + 0.027221109718084335, + -0.021538106724619865, + 0.03168632835149765, + -0.005136790685355663, + -0.03335779905319214, + -0.0007999186054803431, + -0.0074440184980630875, + -0.021311264485120773, + -0.06843482702970505, + 0.04575056955218315, + 0.0001579130330355838, + 0.006172506138682365, + -0.01765790395438671, + -0.023758776485919952, + -0.04727876931428909, + 0.02238578163087368, + 0.028510531410574913, + 0.017944442108273506, + -0.028367262333631516, + -0.014482107944786549, + -0.004551775753498077, + 0.030014855787158012, + -0.020451650023460388, + 0.02469002455472946, + 0.07220757752656937, + 0.004139877390116453, + -0.07187328487634659, + 0.010607875883579254, + 0.01917416788637638, + 0.0004742054734379053, + 0.016463996842503548, + -0.04708774387836456, + -0.06303836405277252, + -0.06934219598770142, + 0.031184885650873184, + 0.06346816569566727, + -0.05076498165726662, + -0.03624705597758293, + -0.06131913140416145, + 0.06709764897823334, + 0.0014774615410715342, + 0.03128039836883545, + 0.06924668699502945, + -0.09002068638801575, + -0.022433537989854813, + -0.07507295906543732, + -0.004871145822107792, + 0.005097988527268171, + 0.05315279960632324, + 0.018839873373508453, + 0.08591364324092865, + 0.0671931579709053, + -0.0028026998043060303, + 0.0584537535905838, + -0.09493958950042725, + 0.03438455983996391, + -0.02334090881049633, + -0.04042573645710945, + 0.08548383414745331, + -0.01783698983490467, + 0.06504412740468979, + 0.016977377235889435, + -0.06170118227601051, + -0.0084349624812603, + -0.008482718840241432, + 0.007318658288568258, + -0.019460706040263176, + 0.08104249835014343, + -0.011079469695687294, + -0.03729769587516785, + 0.028223993256688118, + -0.02125156857073307, + 0.05725984275341034, + 0.0478040911257267, + -0.028725434094667435, + -0.0031578876078128815, + 0.06595149636268616, + 0.0822364091873169, + 0.08992517739534378, + 0.04209720715880394, + -0.0348382443189621, + 0.0018520503072068095, + 0.01763402670621872, + 0.016559509560465813, + -0.019675608724355698, + -0.03416965529322624, + -0.010291489772498608, + 0.037655867636203766, + 0.024976562708616257, + 0.014780585654079914, + -0.003113115904852748, + 0.019436826929450035, + -0.011043651960790157, + 0.014028423465788364, + -0.03729769587516785, + 0.02695845067501068, + -0.02088145725429058, + -0.09140562266111374, + -0.12082352489233017, + 0.00948560144752264, + 0.042192719876766205, + -0.006853033788502216, + 0.041237592697143555, + -0.05520632117986679, + -0.0435776561498642, + 0.07034508138895035, + -0.006291897036135197, + -0.05009639263153076, + 0.020451650023460388, + 0.08954312652349472, + 0.0007372383843176067, + -0.014828342013061047, + 0.01820710301399231, + 0.04209720715880394, + 0.045081980526447296, + 0.01703707128763199, + -0.056256961077451706, + -0.07789058238267899, + 0.07598032802343369, + -0.015138757415115833, + -0.08916107565164566, + 0.026600277051329613, + -0.010327307507395744, + 0.027221109718084335, + -0.03388311713933945, + 0.003748872084543109, + 0.0199382696300745, + -0.05582715570926666, + 0.0017639995785430074, + 0.030086489394307137, + -0.023281212896108627, + -0.02159780263900757, + 0.060602787882089615, + 0.006530678831040859, + 0.05668676644563675, + 0.026289861649274826, + -0.04477156326174736, + 0.016726655885577202, + -0.0363425686955452, + 0.01070338860154152, + -0.016595326364040375, + -0.026313740760087967, + -0.06642906367778778, + 0.03283248096704483, + -0.03206837922334671, + 0.0013909032568335533, + 0.013515042141079903, + 0.06007746607065201, + 0.001212563132867217, + 0.005945663433521986, + -0.014673133380711079, + 0.046944476664066315, + -0.04173903539776802, + 0.03070732206106186, + 0.034217413514852524, + 0.01669083908200264, + -0.05425119400024414, + 0.017562391236424446, + -0.000390258792322129, + -0.02600332349538803, + 0.0180280152708292, + -0.0546332448720932, + 0.032307159155607224, + 0.012142048217356205, + -0.040330223739147186, + 0.006002373993396759, + -0.04054512828588486, + 0.045965470373630524, + 0.05582715570926666, + -0.03108937293291092, + 0.05749862641096115, + 0.027244988828897476, + -0.02011735551059246, + 0.012333073653280735, + 0.02676742523908615, + 0.002143065445125103, + 0.029107484966516495, + -0.022338025271892548, + -0.00919906422495842, + -0.005868059583008289, + -0.03999593108892441, + 0.01035118568688631, + 0.024188583716750145, + -0.058692533522844315, + 0.03228328004479408, + -0.01517457515001297, + 0.029656684026122093, + -0.05009639263153076, + 0.031566936522722244, + 0.03932734206318855, + -0.057403113692998886, + 0.01335983444005251, + 0.05959990620613098, + 0.002847471507266164, + 0.016189396381378174, + 0.03166244924068451, + 0.06270406395196915, + 0.020642675459384918, + -0.07736526429653168, + -0.002347522182390094, + -0.10716520994901657, + -0.021502289921045303, + 0.0227439533919096, + -0.03464721888303757, + -0.07497744262218475, + -0.023997558280825615, + -0.02122768945991993, + -0.008005155250430107, + -0.027436014264822006, + 0.05616144835948944, + 0.07693545520305634, + 0.13047030568122864, + 0.04873533919453621, + 0.08137679100036621, + -0.04641915485262871, + 0.04453277960419655, + -0.027030084282159805, + -0.011730149388313293, + -0.025286978110671043, + -0.046395279467105865, + 0.045249126851558685, + -0.02729274518787861, + -0.01954427920281887, + -0.005139775574207306, + -0.07999186217784882, + 0.00446223234757781, + 0.007814129814505577, + -0.059074584394693375, + -0.011037682183086872, + -0.011366007849574089, + -0.03369209170341492, + -0.016977377235889435, + -0.01042282022535801, + 0.018660787492990494, + 0.02633761800825596, + -0.03658135235309601, + 0.013419529423117638, + -0.01498354971408844, + -0.02331702969968319, + -0.10582803189754486, + -0.018123527988791466, + -0.03335779905319214, + 0.06790950894355774, + 0.10621008276939392, + -0.07722198963165283, + -0.004647288005799055, + -0.03925570473074913, + -0.03151918202638626, + 0.01260767225176096, + 0.008763287216424942, + -0.03436068072915077, + 0.07082264125347137, + 0.06399348378181458, + -0.007569378707557917, + -0.026265984401106834, + -0.005106942728161812, + 0.06069830060005188, + 0.0021684360690414906, + -0.00861404836177826, + 0.01630878821015358, + -0.043697044253349304, + 0.008775226771831512, + 0.004790557082742453, + 0.014625377021729946, + 0.025549639016389847, + 0.011025743559002876, + -0.08290499448776245, + 0.011431672610342503, + 0.030468540266156197, + -0.005927755031734705, + -0.09078478813171387, + 0.03951836749911308, + 0.017359428107738495, + -0.008172302506864071, + 0.062322016805410385, + 0.021573923528194427, + -0.004638333804905415, + 0.017980258911848068, + 0.021394837647676468, + 0.03856324031949043, + -0.048472680151462555, + -0.008637926541268826, + -0.022075364366173744, + 0.017884746193885803, + 0.003993623424321413, + 0.01855333521962166, + 0.056782279163599014, + -0.05673452466726303, + -0.12473954260349274, + -0.004536851774901152, + -0.013240443542599678, + -0.05558837205171585, + 0.014291082508862019, + -0.02846277505159378, + 0.03603215515613556, + 0.001971441088244319, + -0.02748377062380314, + -0.010166129097342491, + 0.036509718745946884, + -0.006918699014931917, + 0.03873038664460182, + -0.03572173789143562, + 0.03851548209786415, + 0.033859241753816605, + 0.00469802925363183, + 0.030587932094931602, + -0.02182464487850666 + ] + }, + { + "id": "cd6aaf3c-69fc-42df-8a70-c8b65943b148", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cruzwendy", + "reviewDate": "2022-11-14T03:58:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "35c756a1-87a5-4990-99b8-59a166d7d38b", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andre03", + "reviewDate": "2022-05-12T10:14:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "738eb5b6-eeed-4b2d-8e7f-b2ce22bd5dfb", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer85", + "reviewDate": "2021-10-24T09:29:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8aae1ecd-ed54-4f87-962d-2cf6d1f5d641", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rjennings", + "reviewDate": "2022-10-02T15:51:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4cec54b7-ae3f-430c-a9f4-dbd88bc5cab5", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hjones", + "reviewDate": "2022-01-15T18:50:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0f41d34b-a306-4db4-842b-99956db917c8", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brendawilkerson", + "reviewDate": "2022-07-20T08:33:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "edfd4761-3a6b-4941-b67c-5d63e3ec9a2b", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tracywest", + "reviewDate": "2022-06-17T20:21:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4c71138f-a612-40cd-ac95-e475ac46c3f9", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robinsonjonathan", + "reviewDate": "2021-12-22T05:11:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "65b79e74-d632-47b4-a31f-5be365446f38", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinscott", + "reviewDate": "2021-07-22T07:18:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "104a4f2d-f160-42db-b349-1439fc14046b", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasongarner", + "reviewDate": "2022-05-15T06:24:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "841e12ef-4026-4eac-8246-b8f6b9c4a3b1", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasonmckinney", + "reviewDate": "2021-04-30T17:19:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "892cfcb4-9602-4b80-a6b8-403a8f4acacd", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marissa06", + "reviewDate": "2022-05-07T23:25:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dc730b2b-b7a8-415e-b86a-1470c592cc50", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "owillis", + "reviewDate": "2022-10-10T17:25:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3a979dab-4c2e-4064-911b-4d38fee3a566", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mbrowning", + "reviewDate": "2022-11-16T04:53:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "acd20568-4478-455c-9491-9d4adb69afde", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bbartlett", + "reviewDate": "2021-02-04T22:00:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "82eb8c0a-4bfa-4e51-b617-ce5a06061668", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "danielthompson", + "reviewDate": "2022-04-06T21:26:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fbad184d-5d86-4a8f-8127-dd1a55cb1de2", + "productId": "b4471995-3f13-45aa-800d-b32fe46e83b1", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidingram", + "reviewDate": "2021-02-02T04:39:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "product", + "name": "Basic TV Ultra (Red)", + "description": "This Basic TV Ultra (Red) is a great example of what you can do to put it on. If you are new to a TV, you may not have heard of this TV before or know why. If you are new to the idea of a TV", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-09-27T22:35:28", + "price": 706.99, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-03-24T17:18:10", + "newPrice": 741.13 + }, + { + "priceDate": "2021-08-31T17:18:10", + "newPrice": 660.11 + }, + { + "priceDate": "2022-02-07T17:18:10", + "newPrice": 731.22 + }, + { + "priceDate": "2022-07-17T17:18:10", + "newPrice": 637.88 + }, + { + "priceDate": "2022-12-24T17:18:10", + "newPrice": 674.93 + }, + { + "priceDate": "2024-11-29T17:18:10", + "newPrice": 706.99 + } + ], + "descriptionVector": [ + 0.0218158308416605, + 0.006909394171088934, + -0.042072489857673645, + 0.05200592055916786, + -0.02459467574954033, + 0.020583581179380417, + -0.07966864109039307, + -0.016258137300610542, + 0.00383820291608572, + 0.013982249423861504, + 0.0010656436206772923, + -0.07167160511016846, + 0.07574556767940521, + -0.026707101613283157, + 0.06613905727863312, + 0.011127959005534649, + -0.0323905348777771, + 0.031233729794621468, + -0.012102441862225533, + 0.016220415011048317, + 0.09339941293001175, + -0.05042159929871559, + -0.06156213581562042, + 0.008525148965418339, + 0.02348816767334938, + 0.03337130323052406, + -0.03935651108622551, + 0.04212278500199318, + 0.004834689665585756, + -0.014082841575145721, + 0.047127220779657364, + 0.0181190837174654, + -0.0599023699760437, + 0.012781435623764992, + -0.08716272562742233, + 0.005620562471449375, + -0.031912725418806076, + 0.019326183944940567, + -0.0012102441396564245, + 0.012140163220465183, + 0.04403402656316757, + 0.004237426444888115, + 0.04961686581373215, + -0.013894231989979744, + 0.007437500637024641, + -0.0048661245964467525, + -0.029599115252494812, + -0.018483728170394897, + -0.008921228349208832, + -0.06457988917827606, + -0.02064645104110241, + -0.02876923233270645, + 0.02811538614332676, + 0.005475962068885565, + 0.005909763742238283, + 0.0363890565931797, + -0.00822337344288826, + 0.002698687370866537, + 0.022117605432868004, + -0.04212278500199318, + -0.04003550484776497, + -0.04222337529063225, + 0.032013315707445145, + 0.023224113509058952, + -0.019514793530106544, + -0.0013210522010922432, + 0.04327958822250366, + -0.05336390808224678, + 0.009342456236481667, + 0.03706805035471916, + -0.01296375785022974, + 0.0409659780561924, + 0.048460062593221664, + 0.026656806468963623, + -0.015541421249508858, + 0.07111834734678268, + 0.06940829008817673, + -0.014686391688883305, + 0.00902182050049305, + 0.013642752543091774, + 0.042323965579271317, + 0.004272004589438438, + 0.02668195404112339, + 0.015566568821668625, + 0.01036094781011343, + 0.07418639212846756, + 0.02600296027958393, + -0.050471898168325424, + -0.02064645104110241, + 0.07313018292188644, + 0.0008943232824094594, + 0.06649112701416016, + 0.07564497739076614, + -0.01845858059823513, + 0.09375148266553879, + 0.07619822770357132, + -0.033094678074121475, + 0.023852812126278877, + -0.048862431198358536, + 0.025235949084162712, + 0.10813610255718231, + 0.00022770665236748755, + -0.056834325194358826, + -0.07172189652919769, + 0.07142012566328049, + -0.03550887852907181, + 0.019703403115272522, + 0.06875444203615189, + -0.015968935564160347, + -0.14676332473754883, + -0.0028778663836419582, + -0.036866866052150726, + 0.04011094942688942, + 0.02944822609424591, + -0.033195268362760544, + 0.046699706465005875, + -0.044511836022138596, + -0.07172189652919769, + 0.06412722170352936, + 0.03349704295396805, + 0.06025444343686104, + -0.005092456005513668, + -0.041670121252536774, + 0.06608875840902328, + -0.04715237021446228, + 0.0024896450340747833, + 0.010430104099214077, + 0.07051479816436768, + 0.08072485774755478, + 0.020168639719486237, + -0.06372485309839249, + 0.04461243003606796, + 0.04068935289978981, + 0.049289945513010025, + -0.010863905772566795, + 0.046020712703466415, + -0.017138315364718437, + -0.058192312717437744, + 0.01887352205812931, + 0.002280602930113673, + -0.0218912735581398, + 0.014271450228989124, + 0.055426038801670074, + 0.023714499548077583, + -0.01847115531563759, + 0.04486390948295593, + -0.008254808373749256, + -0.007066568359732628, + -0.006664201617240906, + 0.012001849710941315, + 0.04441124573349953, + -0.09189053624868393, + 0.00386020727455616, + -0.02894526906311512, + 0.03500591963529587, + 0.0677485242486, + -0.044335801154375076, + -0.00788387656211853, + -0.009128699079155922, + 0.09209172427654266, + -0.012429364956915379, + -0.056834325194358826, + -0.06835207343101501, + 0.00023085014254320413, + 0.047127220779657364, + 0.002549371449276805, + 0.06971006095409393, + 0.044008877128362656, + -0.06286982446908951, + 0.026279587298631668, + 0.003457840532064438, + -0.01653476431965828, + 0.011926406063139439, + 0.03337130323052406, + 0.003438979620113969, + -0.003332100808620453, + 0.06603846698999405, + 0.02912130393087864, + 0.040815092623233795, + -0.07056509703397751, + -0.0699615404009819, + 0.02148890681564808, + -0.06085799261927605, + -0.000645987456664443, + -0.017150888219475746, + 0.06815089285373688, + 0.04305325821042061, + 0.03196302056312561, + -0.06870414316654205, + 0.028744084760546684, + 0.039557695388793945, + -0.005224482621997595, + 0.023463020101189613, + -0.0526597686111927, + 0.023437870666384697, + -0.046448227018117905, + -0.023312130942940712, + -0.03970858082175255, + -0.07021301984786987, + 0.009908284991979599, + 0.03347189724445343, + 0.003872781293466687, + 0.09873077273368835, + 0.00805991142988205, + -0.020357249304652214, + -0.047957103699445724, + -0.012951184064149857, + 0.010386095382273197, + 0.03304437920451164, + 0.046850595623254776, + -0.0510251522064209, + -0.03171154111623764, + -0.02610355243086815, + -0.028894972056150436, + 0.05135207623243332, + 0.036866866052150726, + -0.005799741484224796, + -0.012548817321658134, + -0.09727219492197037, + 0.015667160972952843, + 0.11879882216453552, + 0.00361815863288939, + -0.019011836498975754, + -0.035357989370822906, + -0.04395858198404312, + -0.06412722170352936, + 0.09521006792783737, + -0.019917160272598267, + -0.025210799649357796, + 0.03764645382761955, + -0.11065089702606201, + -0.02172781154513359, + 0.025047339498996735, + 0.003211076371371746, + 0.04742899909615517, + 0.0028134246822446585, + 0.027838759124279022, + -0.03968343511223793, + -0.08354142308235168, + 0.01746523752808571, + -0.06875444203615189, + 0.010926775634288788, + -0.06895562261343002, + -0.006802515126764774, + 0.07675148546695709, + -0.004718380514532328, + 0.07981953024864197, + -0.07569526880979538, + -0.030252961441874504, + -0.042500004172325134, + -0.007902736775577068, + -0.003047614824026823, + 0.0117943799123168, + 0.006346709094941616, + 0.0052810655906796455, + 0.07981953024864197, + 0.02155177667737007, + -0.10602367669343948, + 0.011901258490979671, + -0.0002897905942518264, + -0.022846894338726997, + -0.0020841348450630903, + 0.002371764276176691, + -0.02776331640779972, + 0.01896153949201107, + 0.019929734990000725, + 0.04001035913825035, + -0.09958580881357193, + 0.002921875100582838, + 0.02063387632369995, + 0.03246597945690155, + 0.03613757714629173, + 0.04994378983974457, + 0.02643047459423542, + 0.02617899514734745, + 0.02057100646197796, + -0.0511760376393795, + 0.027159765362739563, + -0.0822337344288826, + -0.017490385100245476, + 0.08655917644500732, + 0.038375742733478546, + 0.036791421473026276, + -0.013592456467449665, + 0.017075445502996445, + -0.054420121014118195, + -0.018521450459957123, + -0.00012986548244953156, + 0.013114646077156067, + -0.06468047946691513, + -0.04478846490383148, + -0.03261686488986015, + 0.027486687526106834, + -0.006569896824657917, + 0.10743196308612823, + 0.06432840973138809, + -0.027034025639295578, + -0.06724556535482407, + 0.06100888177752495, + -0.00673335837200284, + -0.011863536201417446, + -0.004708949942141771, + -0.01972855255007744, + -0.07257692515850067, + -0.08163018524646759, + 0.07071597874164581, + 0.016547339037060738, + 0.026807693764567375, + 0.007858728058636189, + -0.06131065636873245, + 0.06815089285373688, + -0.023928256705403328, + -0.017226332798600197, + -0.06739645451307297, + -0.003765902714803815, + -0.029071008786559105, + 0.024104291573166847, + 0.0312085822224617, + 0.00032554782228544354, + 0.02557544596493244, + -0.027637576684355736, + -0.05577810853719711, + -0.04800739884376526, + 0.07197337597608566, + 0.05057248845696449, + -0.07866273075342178, + -0.012976332567632198, + -0.05909763649106026, + -0.01267455704510212, + -0.05758875980973244, + -0.07398521155118942, + 0.014422338455915451, + 0.004520340356975794, + 0.07675148546695709, + 0.03676627576351166, + -0.026581361889839172, + 0.06176331639289856, + 0.011505178175866604, + -0.03935651108622551, + 0.05142751708626747, + 0.09521006792783737, + 0.07448817044496536, + 0.02080991305410862, + -0.10994675010442734, + -0.008091346360743046, + -0.11638462543487549, + -0.024318048730492592, + 0.005233913194388151, + 0.005438240244984627, + -0.008701183833181858, + 0.001656619948334992, + -0.041745565831661224, + -0.017993343994021416, + 0.006088942755013704, + 0.05914793163537979, + -0.027159765362739563, + -0.012737426906824112, + 0.007098003290593624, + 5.230966053204611e-05, + -0.006104660220444202, + 0.08152959495782852, + -0.04549260810017586, + -0.006997411604970694, + 0.07660059630870819, + -0.04825887829065323, + 0.02726035751402378, + -0.06533432751893997, + 0.029171599075198174, + 0.0008070914191193879, + 0.1122603639960289, + 0.03163609653711319, + -0.006397004704922438, + -0.06372485309839249, + -0.01296375785022974, + -0.02055843360722065, + 0.032943788915872574, + -0.008713757619261742, + -0.023475592955946922, + 0.02382766455411911, + 0.03178698569536209, + -0.06618935614824295, + -0.007066568359732628, + 0.02207988314330578, + 0.040236689150333405, + 0.049893494695425034, + 0.017741864547133446, + -0.08092603832483292, + -0.026556214317679405, + -0.019489645957946777, + -0.0024031992070376873, + 0.015315089374780655, + -0.016321007162332535, + -0.021275149658322334, + 0.06845267117023468, + 0.026380179449915886, + -0.011127959005534649, + -0.04252514988183975, + 0.026983730494976044, + 0.03455325588583946, + 0.013366125524044037, + 0.00570229347795248, + -0.0019426776561886072, + 0.028894972056150436, + -0.04121745750308037, + -0.076902374625206, + -0.034025151282548904, + -0.04858580231666565, + 0.067144975066185, + 0.01838313788175583, + -0.11598225682973862, + -0.01162463054060936, + -0.07785799354314804, + -0.031510356813669205, + 0.00029607760370709, + -0.016673078760504723, + 0.06709467619657516, + -0.005611131899058819, + 0.039658285677433014, + 0.04453698545694351, + 0.03651479631662369, + 0.03286834433674812, + 0.11246154457330704, + -0.023764794692397118, + -0.03792307898402214, + -0.021765533834695816, + 0.012605399824678898, + 0.02199186570942402, + -0.03689201548695564, + -0.01718861050903797, + 0.01904955692589283, + 0.06115976721048355, + -0.06457988917827606, + 0.0033761097583919764, + -0.007343195844441652, + -0.002352903364226222, + 0.025122782215476036, + 0.037872783839702606, + 0.006202108226716518, + -0.09249409288167953, + -0.007607249077409506, + -0.008317678235471249, + -0.016748521476984024, + -0.016346154734492302, + 0.04951627552509308, + -0.06830178201198578, + 0.0025965238455682993, + 0.03103254735469818, + 0.010838758200407028, + 0.02390310727059841, + 0.01687426120042801, + -0.035357989370822906, + -0.004900703206658363, + -0.04265088960528374, + -0.009455622173845768, + -0.022696007043123245, + -0.000544216949492693, + 0.058443792164325714, + 0.09078402817249298, + -0.013076923787593842, + 0.014912722632288933, + -0.03425148129463196, + 0.04566864296793938, + 0.003709319746121764, + -0.04675000160932541, + -0.025562871247529984, + -0.018433433026075363, + -0.04179586097598076, + 0.03739497438073158, + -0.030328404158353806, + 0.025738907977938652, + 0.0027332657482475042, + -0.09093491733074188, + -0.05059763789176941, + 0.022872043773531914, + 0.03518195450305939, + 0.011140533722937107, + -0.0374201200902462, + -0.048133138567209244, + 0.023312130942940712, + -0.011882397346198559, + -0.03691716119647026, + -0.00022888545936439186, + 0.0007823363994248211, + -0.0024692125152796507, + 0.019954882562160492, + 0.016836538910865784, + -0.02458210289478302, + 0.06588757783174515, + -0.015503698959946632, + -0.013303255662322044, + 0.019577663391828537, + 0.035860948264598846, + 0.013190089724957943, + 0.010845045559108257, + -0.05939941108226776, + -0.07534319907426834, + 0.051804736256599426, + 0.008185651153326035, + -0.029423078522086143, + 0.05145266652107239, + -0.020093197003006935, + 0.13257989287376404, + -0.09043195843696594, + -0.003992233891040087, + 0.04094083234667778, + 0.022960061207413673, + 0.047705624252557755, + 0.022721154615283012, + 0.027813611552119255, + 0.030982250347733498, + -0.01422115508466959, + 0.0014703681226819754 + ] + }, + { + "id": "b3283c09-f1a0-4ca0-bb1d-98a7f6e8be07", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "clawrence", + "reviewDate": "2021-11-19T00:01:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "00691413-be81-4b40-8ca0-4c120ef94291", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "annlopez", + "reviewDate": "2022-11-05T17:27:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3a600391-0377-4268-8425-bfe8bf231e5e", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "parknathan", + "reviewDate": "2021-05-18T02:23:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c3d2e7af-177c-4a00-896c-8d3c037dd577", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "georgeconley", + "reviewDate": "2021-03-24T17:18:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a72bd47f-12f9-491c-8e5e-cc2e78db0460", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "georgebenjamin", + "reviewDate": "2021-11-19T23:12:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6fa13101-cdf5-4fac-ab08-c217ad5a88f1", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "katherinegraham", + "reviewDate": "2022-05-11T18:29:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "494db6e2-de81-459b-bf54-25d9b67e3abb", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "kathleenparsons", + "reviewDate": "2022-01-22T00:30:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "62a88ce3-dd9f-4c59-834a-d36837d1d282", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "fernando66", + "reviewDate": "2021-09-23T23:17:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3e0ec1eb-6f9c-4606-ad99-6aca4d8b04db", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "williamvasquez", + "reviewDate": "2022-12-28T10:14:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "073d5d8b-5453-4df3-be61-3e209bfd8ba2", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "raven32", + "reviewDate": "2021-07-27T10:20:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "00ff4b39-c4ac-4412-b600-8f24159f525a", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "kennethkeller", + "reviewDate": "2022-08-20T21:05:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bdb54d51-8c73-4210-861f-dd5d1baaeced", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "kentturner", + "reviewDate": "2021-07-03T13:47:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0b81a617-db85-45ab-8d06-9c39675e52ee", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "matthewwilliams", + "reviewDate": "2021-11-04T06:13:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8535c838-10a3-4438-81fd-4d2241f3aabd", + "productId": "2e29beeb-cddf-4b9a-8ee8-7bead8ec3e41", + "category": "Media", + "docType": "customerRating", + "userName": "jessica02", + "reviewDate": "2021-12-11T02:40:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6a29df87-cf53-4b12-aa09-58888524da10", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Pro (Silver)", + "description": "This Awesome Speaker Pro (Silver) is great for my music projects or if I have time. While this speaker is in fact not as good as some others on Amazon, I", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-10-16T01:13:10", + "price": 824.01, + "stock": 54, + "priceHistory": [ + { + "priceDate": "2021-01-23T14:04:56", + "newPrice": 876.03 + }, + { + "priceDate": "2024-04-12T14:04:56", + "newPrice": 824.01 + } + ], + "descriptionVector": [ + -0.0036790173035115004, + 0.05136069655418396, + -0.029044020920991898, + -0.002731636632233858, + -0.026585953310132027, + -0.008808079175651073, + -0.03273112326860428, + -0.031157098710536957, + -0.028354037553071976, + 0.11669357120990753, + -0.02718968875706196, + -0.018500201404094696, + 0.03721602261066437, + 0.016397904604673386, + 0.006339229643344879, + -0.03799225389957428, + 0.038380369544029236, + -0.05205067992210388, + -0.027405308559536934, + 0.05425000563263893, + 0.047436412423849106, + -0.038574427366256714, + -0.05778617411851883, + -0.03863911330699921, + -0.06201232969760895, + -0.020527029410004616, + -0.03631041571497917, + 0.03898410499095917, + 0.04804014787077904, + 0.0036817125510424376, + 0.0006306886789388955, + 0.06429789960384369, + -0.06472913920879364, + 0.053948137909173965, + 0.012991108000278473, + 0.04124811664223671, + 0.0123119056224823, + -0.04601332172751427, + 0.031976453959941864, + 0.014166237786412239, + 0.0031426623463630676, + -0.021766845136880875, + -0.01610681787133217, + -0.03534012660384178, + 0.05493998900055885, + 0.031243346631526947, + -0.037410080432891846, + 0.08987043797969818, + 0.005476749502122402, + 0.015977445989847183, + -0.0017532606143504381, + 0.04008376970887184, + -0.08240998536348343, + 0.00786474160850048, + 0.04450397938489914, + 0.02313603274524212, + -0.05472436919808388, + -0.07844257354736328, + -0.03316236287355423, + -0.053948137909173965, + -0.003908113576471806, + 0.012031598947942257, + -0.02207949385046959, + -0.002470197156071663, + -0.04273589327931404, + 0.025831282138824463, + -0.0905604213476181, + 0.02516286075115204, + 0.005757055711001158, + 0.06222794950008392, + 0.043835557997226715, + -0.061796706169843674, + 0.025572538375854492, + 0.07792508602142334, + 0.08943919837474823, + -0.0219932459294796, + -0.0033286346588283777, + 0.09090541303157806, + 0.035297002643346786, + 0.005360853858292103, + 0.01636556163430214, + 0.055716224014759064, + 0.039372220635414124, + -0.025831282138824463, + 0.03835880756378174, + -0.025443166494369507, + -0.0038811611011624336, + -0.060373615473508835, + 0.0052503482438623905, + 0.053646270185709, + -0.007287957705557346, + -0.018079740926623344, + 0.0017950369510799646, + 0.061710458248853683, + 0.06869655102491379, + 0.047522660344839096, + -0.007945599034428596, + 0.028806839138269424, + -0.019190184772014618, + -0.021691378206014633, + 0.007950989529490471, + -0.09021542966365814, + -0.08849047124385834, + 0.01534136664122343, + -0.058433033525943756, + 0.03234300762414932, + -0.004961956758052111, + -0.053430650383234024, + 0.05787242203950882, + -0.03497357293963432, + 0.06641097366809845, + 0.001927104196511209, + 0.017529910430312157, + -0.058691781014204025, + 0.024041635915637016, + 0.027125002816319466, + -0.011611140333116055, + -0.03728070855140686, + 0.016775241121649742, + 0.03965253010392189, + 0.013443910516798496, + 0.013066574931144714, + -0.03648291528224945, + 0.02129247970879078, + 0.029863378033041954, + -0.008824250660836697, + -0.003347501391544938, + 0.08417806774377823, + 0.06373728811740875, + 0.005315034184604883, + -0.10479135066270828, + 0.07262083142995834, + 0.02382601611316204, + -0.02973400615155697, + -0.02531379461288452, + 0.009471110999584198, + 0.017001641914248466, + 0.08422119170427322, + -0.001614455133676529, + -0.036008547991514206, + 0.018845193088054657, + 0.03292518109083176, + 0.04116186872124672, + 3.499614467727952e-05, + 0.007287957705557346, + -0.028526533395051956, + -0.1046188548207283, + 0.03797069191932678, + 0.037582576274871826, + 0.07236208766698837, + 0.022661667317152023, + -0.03350735828280449, + 0.06149483844637871, + -0.05282691493630409, + 0.021745283156633377, + 0.015201213769614697, + -0.008738002739846706, + -0.00609126640483737, + 0.08504054695367813, + 0.048859503120183945, + -0.03721602261066437, + -0.054206881672143936, + -0.03544793650507927, + 0.03331330046057701, + -0.08012441545724869, + 0.04198122397065163, + 0.04540958255529404, + 0.03016524575650692, + -0.10229015350341797, + 0.045754574239254, + 0.03648291528224945, + -0.02585284411907196, + 0.012775488197803497, + -0.019998760893940926, + -0.01051147747784853, + -0.054034385830163956, + -0.005897208582609892, + -0.023718206211924553, + -0.009993989951908588, + -0.012624554336071014, + -0.0010410406393930316, + 0.09823649376630783, + -0.02559410035610199, + -0.009622044861316681, + 0.06084797903895378, + 0.053646270185709, + 0.02408475987613201, + 0.018241457641124725, + 0.0005309644038788974, + 0.01900690793991089, + -0.051490068435668945, + -0.006193686276674271, + 0.003347501391544938, + -0.016419466584920883, + 0.01688305102288723, + 0.0219716839492321, + -0.015707921236753464, + 0.013336100615561008, + -0.015804950147867203, + 0.01862957328557968, + -0.01943814754486084, + 0.06119297072291374, + 0.09306161850690842, + -0.0642116516828537, + -0.05498311296105385, + -0.010333591140806675, + 0.04370618611574173, + 0.06132234260439873, + 0.010915765538811684, + -0.058433033525943756, + 0.04441773146390915, + -0.05028259754180908, + -0.0188990980386734, + -0.017163356766104698, + 0.1037563681602478, + 0.01733585260808468, + -0.03646135330200195, + -0.0316530242562294, + 0.007126242853701115, + -0.08417806774377823, + 0.05153319239616394, + -0.051835060119628906, + 0.0466170571744442, + 0.03199801594018936, + -0.09702902287244797, + 0.00936330109834671, + 0.036526039242744446, + 0.01591276004910469, + 0.02859121933579445, + -0.004080609418451786, + -0.02973400615155697, + -0.008107313886284828, + 0.06296105682849884, + 0.05023947358131409, + -0.010479134507477283, + 0.00887815561145544, + -0.015222775749862194, + -0.020268285647034645, + -0.0571393147110939, + 0.02962619625031948, + -0.005088633392006159, + 0.0712408646941185, + -0.08322934061288834, + -0.024472875520586967, + -0.024990364909172058, + -0.03158833831548691, + 0.06792031973600388, + 0.01006945688277483, + -0.03643978759646416, + -0.008673316799104214, + -0.10444635152816772, + -0.03454233333468437, + -0.03572824224829674, + 0.0180258359760046, + -0.020774992182850838, + 0.08659301698207855, + 0.11660732328891754, + -0.037517890334129333, + 0.0013085441896691918, + -0.03445608541369438, + 0.021960902959108353, + -0.014015303924679756, + -0.028612781316041946, + 0.0377981960773468, + -0.07007651776075363, + -0.025529414415359497, + 0.03590073809027672, + -0.045150838792324066, + -0.053775642067193985, + 0.031243346631526947, + -0.015007155947387218, + -0.03939378261566162, + 0.012355029582977295, + 0.024904116988182068, + 0.011276928707957268, + 0.04786765202879906, + -0.05554372817277908, + 0.0597698800265789, + 0.04627206549048424, + 0.035124506801366806, + 0.08642052114009857, + 0.02189621701836586, + 0.004196505527943373, + 0.07085274904966354, + 0.022575419396162033, + 0.029777130112051964, + 0.0940965935587883, + -0.06572099030017853, + -0.03833724558353424, + 0.008597849868237972, + -0.03132959455251694, + -0.050886332988739014, + 0.005562997423112392, + 0.01134161464869976, + 0.015287461690604687, + 0.017465224489569664, + 0.006571021396666765, + 0.00045684498036280274, + 0.03835880756378174, + 0.0198047012090683, + 0.08508367091417313, + 0.04344744235277176, + -0.03348579630255699, + -0.06654034554958344, + 0.013616406358778477, + 0.05036884546279907, + -0.05955426022410393, + 0.05041196942329407, + -0.08103001862764359, + -0.053603146225214005, + 0.0571393147110939, + 0.03148052841424942, + -0.041291240602731705, + -0.019578300416469574, + 0.051748812198638916, + -0.0474795363843441, + 0.010263514705002308, + 0.038207873702049255, + 0.0360516719520092, + 0.0014190494548529387, + -0.03385234996676445, + -0.03654760122299194, + 0.008495430462062359, + 0.043318070471286774, + -0.03176083415746689, + 0.039178162813186646, + 0.04282214492559433, + -0.012980327010154724, + 0.045754574239254, + 0.007358034607023001, + 3.453289900789969e-05, + -0.008128875866532326, + 0.060287367552518845, + -0.014274047687649727, + 0.021486539393663406, + -0.025098174810409546, + -0.03704352676868439, + -0.005832522641867399, + 0.021173888817429543, + -0.009708292782306671, + 0.05933864042162895, + -0.0016063693910837173, + 0.0175838153809309, + -0.06541912257671356, + 0.043037764728069305, + -0.11298491060733795, + 0.014953250996768475, + -0.04592707008123398, + 0.024559123441576958, + -0.08370370417833328, + 0.0007499534985981882, + -0.039436906576156616, + 0.06252981722354889, + -0.019826265051960945, + 0.004061742685735226, + -0.019987979903817177, + 0.017885683104395866, + 0.016397904604673386, + 0.04387868195772171, + 0.040493447333574295, + -0.014079989865422249, + -0.027577804401516914, + 0.014263266697525978, + 0.03236456960439682, + -0.01759459637105465, + 0.12117847055196762, + 0.002459416165947914, + 0.012764707207679749, + -0.009659778326749802, + 0.011503330431878567, + 0.0024041635915637016, + -0.019998760893940926, + -0.004150685854256153, + 0.004390563350170851, + -0.030639609321951866, + 0.07611387968063354, + 0.06990402191877365, + -0.010010161437094212, + -0.014651382341980934, + 0.025011926889419556, + 0.02699563093483448, + 0.04068750515580177, + 0.051015704870224, + 0.004390563350170851, + 0.0624435693025589, + 0.03805693984031677, + -0.040148455649614334, + 0.03736695647239685, + -0.009638216346502304, + 0.036892592906951904, + 0.004948480054736137, + -0.02040843851864338, + -0.03633197769522667, + 0.015880417078733444, + 0.007126242853701115, + -0.02233823761343956, + -0.014101551845669746, + 0.05425000563263893, + -0.00399975199252367, + 0.030143683776259422, + -0.05213692784309387, + 0.005848694127053022, + -0.00683515565469861, + -0.05092945694923401, + -0.01695851795375347, + -0.07318145036697388, + -0.04450397938489914, + 0.07175835222005844, + -0.04614269360899925, + -0.0774507224559784, + 0.02216574177145958, + 0.004191115032881498, + -0.014371076598763466, + -0.017120232805609703, + 0.004010532982647419, + 0.08430743962526321, + 0.09219913929700851, + 0.032666437327861786, + 0.06205545365810394, + -0.025292232632637024, + 0.060632359236478806, + 0.03907035291194916, + 0.08016753941774368, + 0.0074927969835698605, + -0.08284122496843338, + 0.05127444863319397, + 0.0642547756433487, + -0.03493044897913933, + -0.04139905050396919, + -0.058519281446933746, + -0.056578703224658966, + -0.04405117779970169, + 0.013832026161253452, + 0.057829298079013824, + -0.08598928153514862, + 0.023459462448954582, + 0.015211994759738445, + 0.036288853734731674, + 0.0039054183289408684, + 0.026499705389142036, + -0.09858149290084839, + -0.0028866135980933905, + 0.05295628681778908, + 0.002568573923781514, + -0.07969317585229874, + -0.06688534468412399, + -0.025701910257339478, + 0.0334211103618145, + 0.037668824195861816, + 0.02173450216650963, + 0.022575419396162033, + -0.03201957792043686, + -0.08646364510059357, + 0.04592707008123398, + 0.06434102356433868, + 0.023524148389697075, + -0.007174757309257984, + 0.11263991892337799, + -0.112553671002388, + 0.01608525589108467, + -0.04185185208916664, + 0.04415898770093918, + 0.03792756795883179, + 0.015589330345392227, + -0.04411586374044418, + 0.026176275685429573, + -0.031782396137714386, + 0.058001793920993805, + 0.01750834845006466, + -0.013066574931144714, + 0.01301266998052597, + -0.04881637915968895, + -0.08305684477090836, + 0.048600759357213974, + -0.03564199432730675, + -0.015459958463907242, + 0.033895473927259445, + -0.010436010546982288, + 0.04855763539671898, + 0.04213215783238411, + -0.005934942048043013, + -0.0006913318065926433, + -0.05502623692154884, + 0.03096304088830948, + 0.02479630708694458, + -0.005886427592486143, + -0.0031103193759918213, + -0.006802812684327364, + 0.008921279571950436, + 0.013842807151377201, + 0.06201232969760895, + 0.08741237223148346, + 0.052352551370859146, + 0.03738851845264435, + -0.024753183126449585, + -0.0031372718513011932, + 0.02928120270371437, + -0.07585513591766357, + -0.023286966606974602, + 0.05916614457964897, + 0.06015799567103386, + 0.03413265570998192, + -0.009293224662542343, + 0.02962619625031948, + 0.022575419396162033, + -0.10280764102935791, + -0.054120633751153946, + -0.10013395547866821, + -0.03932909667491913, + -0.004385172855108976, + -0.02198246493935585, + 0.004253105726093054 + ] + }, + { + "id": "54182cc8-d33c-44b1-a9d1-7fccfae737a9", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "andersonjon", + "reviewDate": "2022-11-09T17:56:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "10a4a269-1242-4757-ae28-f0cb7c1f24dd", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "kristenjoseph", + "reviewDate": "2021-08-06T02:37:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5b607c2b-2587-4fe9-aefe-7cba591a3641", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "jennifer82", + "reviewDate": "2021-01-23T14:04:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5b01e5ab-29ff-4c6b-bc0e-1b72b2b621f8", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "dross", + "reviewDate": "2021-07-22T03:47:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dcfd0727-54dd-447a-a415-aecb1a42fc2b", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "cflores", + "reviewDate": "2021-07-17T06:07:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7f66fac0-1ac6-4ce2-8fc6-566c8900defa", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "martinezmelissa", + "reviewDate": "2022-06-09T20:02:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0c1f7374-5509-4120-a62e-7fadc9c9febd", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "fletcherriley", + "reviewDate": "2021-08-09T05:46:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3f277443-aeec-4ae0-ac4f-e9a58ccb972b", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "caleb72", + "reviewDate": "2021-10-02T16:50:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b74f226-c9bd-48b4-a9aa-27d5c5be5dca", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "sburton", + "reviewDate": "2022-10-24T16:55:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4e7ed400-56a2-4fb4-8343-967d749795ab", + "productId": "6a29df87-cf53-4b12-aa09-58888524da10", + "category": "Media", + "docType": "customerRating", + "userName": "epatel", + "reviewDate": "2021-07-11T19:26:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Pro (Red)", + "description": "This Basic Mouse Pro (Red) is for both iPad Pro and iPhone 6 Plus users.\n\nWith a price of $500, it's a powerful addition to Apple's tablet lineup.\n\nThe Retina MacBook Pro, which launched with Retina display last year and now ships with a 4:3 aspect ratio while the original Retina MacBook has a curved panel with an ultra-HD 1920 x 1080", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-04-05T07:22:20", + "price": 985.46, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-03-21T23:23:00", + "newPrice": 985.38 + }, + { + "priceDate": "2021-08-26T23:23:00", + "newPrice": 1082.13 + }, + { + "priceDate": "2022-01-31T23:23:00", + "newPrice": 1027.35 + }, + { + "priceDate": "2022-07-08T23:23:00", + "newPrice": 1042.86 + }, + { + "priceDate": "2022-12-13T23:23:00", + "newPrice": 1068.68 + }, + { + "priceDate": "2025-03-17T23:23:00", + "newPrice": 985.46 + } + ], + "descriptionVector": [ + -0.08264662325382233, + 0.005293366964906454, + -0.03235546126961708, + 0.06310872733592987, + 0.010008162818849087, + -0.07499168068170547, + 0.023943932726979256, + 0.02381041646003723, + 0.053762584924697876, + 0.04459445923566818, + 0.03649446740746498, + -0.0710752010345459, + 0.07401256263256073, + -0.05852466821670532, + 0.023854920640587807, + -0.01891481690108776, + -0.06021587550640106, + -0.005610468331724405, + -0.044527702033519745, + 0.021930061280727386, + 0.03600490838289261, + -0.09283836930990219, + -0.057501040399074554, + -0.014875946566462517, + 0.008049922995269299, + 0.017935696989297867, + 0.004113972652703524, + 0.037384577095508575, + 0.03386864811182022, + 0.007204319816082716, + 0.0031209446024149656, + 0.029774146154522896, + -0.030530739575624466, + -0.003095910418778658, + -0.023454371839761734, + 0.02125135250389576, + -0.028327718377113342, + -0.036449965089559555, + 0.032778263092041016, + 0.04107853025197983, + 0.03433595597743988, + 0.00951860286295414, + 0.01903720572590828, + -0.03162112087011337, + 0.039365071803331375, + -0.015843940898776054, + -0.038519468158483505, + -0.007944222539663315, + 0.019537892192602158, + -0.02650299482047558, + 0.0001668954355409369, + 0.030975792557001114, + -0.09639880806207657, + 0.016711795702576637, + -0.02083967626094818, + -0.027348598465323448, + -0.005501986481249332, + 0.12016471475362778, + -0.023743657395243645, + -0.06960652768611908, + -0.023587888106703758, + -0.05340654030442238, + 0.03762935847043991, + -0.005819087382405996, + 0.007972038350999355, + -0.06511147320270538, + -0.005204356275498867, + -0.030642002820968628, + 0.07361201196908951, + 0.048777975142002106, + 0.0074157207272946835, + -0.019460007548332214, + 0.07067465782165527, + 0.010842639952898026, + 0.034558482468128204, + 0.05683346092700958, + 0.0989801213145256, + 0.047442808747291565, + 0.08469387143850327, + -0.00036508377525024116, + 0.003908134996891022, + 0.0207840446382761, + -0.017713168635964394, + 0.004826059564948082, + 0.05598785728216171, + 0.027593379840254784, + 0.02340986765921116, + -0.08936694264411926, + 0.01321811880916357, + -0.0022308356128633022, + -0.048955995589494705, + 0.13636469841003418, + 0.05260544270277023, + 0.015087347477674484, + 0.011782817542552948, + 0.018058085814118385, + -0.021785417571663857, + 0.029751893132925034, + -0.0012823132565245032, + -0.06026037782430649, + 0.028550246730446815, + 0.07775101810693741, + -0.05661093071103096, + 0.021273605525493622, + -0.047932371497154236, + -0.0004537469649221748, + 0.025323601439595222, + -0.030419474467635155, + -0.05296148732304573, + -0.09047958254814148, + -0.007182066794484854, + -0.026859039440751076, + -0.07610432058572769, + 0.011816197074949741, + -0.10930538922548294, + 0.040967267006635666, + -0.13707678020000458, + 0.039276059716939926, + 0.009351707994937897, + 0.0031710134353488684, + 0.050068631768226624, + 0.002945704385638237, + -0.01868116296827793, + 0.04637467861175537, + 0.0248340405523777, + -0.034269195050001144, + 0.0006731449393555522, + 0.003488114569336176, + 0.042658474296331406, + -0.11331087350845337, + -0.057234007865190506, + 0.12292405217885971, + 0.06617960333824158, + 0.003298966446891427, + -0.019304238259792328, + 0.0674702599644661, + 0.01588844507932663, + 0.021551763638854027, + -0.03442496433854103, + 0.08215706050395966, + -0.004903944209218025, + -0.05701148137450218, + -0.007660500705242157, + 0.007393467705696821, + -0.05144830048084259, + 0.03929831087589264, + -0.005120908375829458, + 0.08358123898506165, + 0.006837149616330862, + 0.03380189090967178, + -0.007354525849223137, + -0.12274602800607681, + 0.047932371497154236, + -0.03404666855931282, + 0.005696697626262903, + -0.012583916075527668, + -0.03960984945297241, + -0.04294775798916817, + -0.02801618166267872, + 0.09039057046175003, + -0.024144206196069717, + 0.027860412374138832, + 0.013919079676270485, + 0.017991328611969948, + -0.05972631275653839, + 0.01731261983513832, + 0.09283836930990219, + 0.005780145525932312, + -0.02763788402080536, + -0.004024961497634649, + -0.041901882737874985, + 0.00888996385037899, + -0.0901680439710617, + -0.06751476973295212, + 0.03264474868774414, + -0.007899717427790165, + 0.023543383926153183, + 0.082424096763134, + 0.004837186075747013, + -0.08371475338935852, + 0.06916146725416183, + 0.02241962030529976, + -0.058747194707393646, + 0.01929311268031597, + 0.029774146154522896, + -0.03046398051083088, + 0.04479473456740379, + 0.01769091561436653, + -0.026080192998051643, + -0.09346144646406174, + 0.03444721922278404, + -0.012294630520045757, + -0.017245862632989883, + -0.024010689929127693, + -0.007243262138217688, + 0.018592150881886482, + 0.014842567965388298, + 0.0014700706815347075, + 0.01583281345665455, + -0.03593815118074417, + 0.006564553827047348, + 0.05153731256723404, + 0.05189335346221924, + 0.009535293094813824, + 0.01976042054593563, + -0.06181807070970535, + 0.024388987571001053, + -0.017857812345027924, + 0.0453510545194149, + -0.031821396201848984, + -0.033423591405153275, + -0.03451397642493248, + 0.03611617162823677, + 0.02387717366218567, + 0.05937027186155319, + 0.01769091561436653, + 0.06488894671201706, + 0.045284297317266464, + 0.0457070991396904, + -0.08144497126340866, + 0.04775434732437134, + 0.04864445701241493, + 0.005193229764699936, + -0.01646701619029045, + -0.05091423541307449, + -0.000865770096424967, + 0.06337576359510422, + 0.012806443497538567, + -0.019638029858469963, + 0.006514485459774733, + -0.06066092848777771, + 0.015120727010071278, + -0.006141752004623413, + 0.07574827969074249, + -0.013140234164893627, + 0.011087420396506786, + 0.003293403424322605, + -0.023387614637613297, + -0.09737792611122131, + 0.026970302686095238, + -0.051225773990154266, + 0.02454475499689579, + -0.07343399524688721, + -0.00864518340677023, + 0.08447134494781494, + 0.018825804814696312, + 0.057901591062545776, + 0.003093128791078925, + -0.10494384914636612, + 0.011938586831092834, + 0.020283358171582222, + -0.022375114262104034, + 0.0031348527409136295, + 0.06537850946187973, + -0.04279198870062828, + 0.034269195050001144, + 0.011437900364398956, + -0.03896452113986015, + -0.0207840446382761, + -0.010269632562994957, + 0.057901591062545776, + 0.033045295625925064, + -0.046419184654951096, + 0.007565926294773817, + 0.04664171114563942, + 0.04975709319114685, + 0.0206060241907835, + -0.058168623596429825, + -0.016978830099105835, + 0.024322228506207466, + 0.023432118818163872, + -0.06195158511400223, + 0.06399884074926376, + 0.0020667219068855047, + 0.0288840364664793, + 0.08536145091056824, + -0.07405707240104675, + 0.0901680439710617, + 0.03415793180465698, + -0.023276349529623985, + 0.05175983905792236, + 0.07156476378440857, + 0.00801654439419508, + 0.04241369292140007, + -0.008038796484470367, + 0.012962212786078453, + -0.01783555932343006, + 0.017557399347424507, + 0.03745133802294731, + -0.024678271263837814, + -0.04065572842955589, + -0.028572499752044678, + 0.06039389595389366, + 0.03711754456162453, + 0.03705078735947609, + -0.03834144398570061, + 0.047531820833683014, + 0.005332309287041426, + -0.007821832783520222, + 0.004664727486670017, + 0.04009941220283508, + -0.05322851985692978, + -0.09301639348268509, + -0.04230242967605591, + 0.05852466821670532, + 0.04495050385594368, + -0.024121953174471855, + 0.02661425992846489, + -0.023966185748577118, + -0.07152026146650314, + 0.06355378031730652, + 0.04555132985115051, + -0.045662593096494675, + 0.015220863744616508, + 0.08896639198064804, + 0.0067258863709867, + 0.03669474273920059, + -0.008183439262211323, + -0.0031737948302179575, + -0.018169350922107697, + -0.07249937951564789, + -0.026658764109015465, + -0.08812078833580017, + 0.05287247523665428, + 0.0874532088637352, + -0.01551014930009842, + -0.016511522233486176, + -0.06511147320270538, + -0.013129107654094696, + -0.05687796697020531, + -0.022720031440258026, + -0.09110265970230103, + 0.036739248782396317, + -0.001958239823579788, + 0.020950941368937492, + -0.01979379914700985, + 0.057323019951581955, + 0.09835704416036606, + -0.019582398235797882, + 0.024900799617171288, + 0.05634389817714691, + 0.014831441454589367, + 0.011905208230018616, + 0.003045841818675399, + 0.023832667618989944, + -0.06253015995025635, + -0.02745986357331276, + -0.005346217192709446, + -0.0586581826210022, + 0.05518675968050957, + 0.0013226463925093412, + -0.03547084331512451, + -0.008233508095145226, + -0.043504077941179276, + -0.007070803549140692, + 0.030330464243888855, + 0.038608476519584656, + -0.03811891749501228, + -0.012661800719797611, + 0.0002065331063931808, + 0.005029115825891495, + -0.0349145270884037, + 0.03918704763054848, + 0.12675152719020844, + -0.022452998906373978, + 0.03896452113986015, + -0.053762584924697876, + 0.02754887379705906, + -0.00028146221302449703, + -0.025434864684939384, + 0.005023552570492029, + -0.045885119587183, + -0.003043060190975666, + 0.09684386104345322, + -0.0586581826210022, + 0.048110391944646835, + -0.0011960839619860053, + 0.04305902123451233, + -0.050380170345306396, + 0.004119535908102989, + -0.018124844878911972, + -0.012806443497538567, + -0.009284949861466885, + -0.014798061922192574, + 0.06092796102166176, + -0.027704643085598946, + 0.009067985229194164, + -0.062396641820669174, + 0.008177876472473145, + 0.016333499923348427, + 0.020194347947835922, + -0.10076034069061279, + -0.04690874367952347, + 0.018291739746928215, + 0.03978787362575531, + -0.09092463552951813, + 0.025991182774305344, + -0.004241925664246082, + 0.004333718214184046, + -0.02004970610141754, + 0.005629939492791891, + 0.016711795702576637, + 0.008967848494648933, + 0.004386568441987038, + -0.03829694166779518, + -0.04276973754167557, + -0.021184593439102173, + -0.0014631167287006974, + 0.05238291621208191, + -0.05625488981604576, + 0.06804883480072021, + 0.020850803703069687, + 0.0033935406245291233, + 0.012105482630431652, + 0.014375260099768639, + 0.004186294041574001, + -0.016578279435634613, + 0.05447467043995857, + -0.0036438836250454187, + -0.0577680729329586, + 0.05514225363731384, + -0.019949568435549736, + -0.06666916608810425, + 0.0027440390549600124, + -0.03010793775320053, + -0.018403002992272377, + -0.0390535332262516, + -0.0025159488432109356, + -0.006625748705118895, + -0.006709196604788303, + 0.014364133588969707, + -0.03237771615386009, + -0.007749511394649744, + -0.0021877209655940533, + -0.035114798694849014, + -0.0025409830268472433, + 0.04003265127539635, + 0.08589551597833633, + 0.05153731256723404, + 0.08714167028665543, + -0.026369478553533554, + -0.037095293402671814, + 0.0018650565762072802, + 0.08553947508335114, + -0.04762083292007446, + 0.0020486414432525635, + -0.04561808705329895, + -0.02737085148692131, + 0.04561808705329895, + -0.08887738734483719, + 0.013462898321449757, + -0.06537850946187973, + -0.023343108594417572, + -0.014030342921614647, + 0.0753922313451767, + -0.00021087934146635234, + -0.04016616940498352, + 0.012628421187400818, + -0.06337576359510422, + 0.02425546944141388, + -0.021373743191361427, + 0.049223028123378754, + 0.05852466821670532, + 0.013307129964232445, + -0.014786935411393642, + -0.031376343220472336, + -0.04016616940498352, + -0.049801599234342575, + 0.0008713332936167717, + -0.00798872858285904, + -0.006759265437722206, + -0.015788309276103973, + 0.008767574094235897, + -0.026770027354359627, + 0.010842639952898026, + 0.007593742571771145, + 0.018970448523759842, + 0.044727977365255356, + 0.03480326384305954, + 0.03246672451496124, + 0.08424881845712662, + 0.0012899626744911075, + -0.07281091809272766, + -0.009913588874042034, + -0.04757632687687874, + -0.020672781392931938, + 0.01269517932087183, + 0.030797772109508514, + 0.0077383853495121, + -0.04383786767721176, + 0.04428292438387871, + 0.06893894076347351, + 0.03629419580101967, + 0.007894154638051987, + -0.024856293573975563, + -0.06782630831003189, + 0.009129180572926998, + 0.055720824748277664, + -0.03017469495534897, + 0.053273022174835205, + 0.01576605625450611, + -0.04299226403236389, + 0.006609059404581785, + 0.07200981676578522, + 0.04272523149847984, + 0.042836494743824005, + 0.027993928641080856, + -0.025457117706537247, + -0.00891777966171503, + -0.03836369886994362, + -0.04272523149847984, + 0.0031404157634824514 + ] + }, + { + "id": "5c49d15e-da4a-4ec8-ab6f-7276e14078f8", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "weisskelly", + "reviewDate": "2021-04-30T21:40:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5f6d87b0-3ad4-481c-82d2-9000bdd0a2f6", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "acampbell", + "reviewDate": "2022-08-08T00:22:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6d067b42-e074-4fa8-98c7-93e78cc52597", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "isingleton", + "reviewDate": "2022-02-24T22:06:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c43e7f35-9d62-4c36-9591-fcaf4312c4c8", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael71", + "reviewDate": "2022-07-28T12:15:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "85411ea4-5c2f-4fda-ad77-28a11dae9bd7", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "margaret79", + "reviewDate": "2021-09-06T18:15:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d8845cc1-fceb-4a09-ae43-77f2ba245f5e", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xnguyen", + "reviewDate": "2021-03-21T23:23:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2119858c-224b-4dc2-b54c-f913fa3c6e07", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "whernandez", + "reviewDate": "2022-01-19T04:27:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "71b40766-5ee1-4853-bc89-ca53a1e87696", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "asmith", + "reviewDate": "2021-09-19T08:42:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2cf58cec-dc3d-49fe-b073-bacc79231238", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "holly02", + "reviewDate": "2021-12-09T05:40:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c5a477c1-3a21-431b-873a-e45eaaa9ea9d", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bradleyparker", + "reviewDate": "2021-09-23T10:54:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "66b1f4de-d337-4e7b-bf5c-7c1ba6ab22cd", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "haley21", + "reviewDate": "2021-11-22T17:54:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0e96d4ac-151f-4404-bb35-6581a689f319", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mullendanielle", + "reviewDate": "2022-04-23T00:33:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c51fbbd9-c8d3-4c6f-a8ef-3f19728354ad", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "renee81", + "reviewDate": "2022-12-17T19:20:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "66516991-a9e9-4207-b299-1e80368f14cb", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeremyross", + "reviewDate": "2021-09-07T23:40:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ad05e4b8-2c21-44d4-9437-77a1efb9a093", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "abigailmercado", + "reviewDate": "2022-11-04T16:19:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "61da3927-0e84-45f5-bda3-c92ac79115b6", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wfranco", + "reviewDate": "2021-06-12T00:24:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4baf2153-9e7e-4823-a167-07e087676c77", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simmonsvictor", + "reviewDate": "2022-01-24T18:43:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fe735213-3e3b-492b-b662-e8a2d784665d", + "productId": "01194676-5ab5-44cf-a018-57e009a7f2e7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robinperry", + "reviewDate": "2021-12-11T22:50:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2b74f364-3919-4295-b187-ec1fb9779d23", + "productId": "2b74f364-3919-4295-b187-ec1fb9779d23", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Super (Red)", + "description": "This Premium Speaker Super (Red) is a $100,000 premium speaker that will be made available to your favorite musicians and groups whenever they're ready. It offers a premium sound, an extensive range of materials, and an affordable price that will make your music stand out even more. A dedicated fan, the Premium Speaker is perfect for any age group.", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-10-17T06:19:29", + "price": 338.06, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2022-06-02T10:02:24", + "newPrice": 323.06 + }, + { + "priceDate": "2022-06-03T10:02:24", + "newPrice": 347.77 + }, + { + "priceDate": "2025-06-27T10:02:24", + "newPrice": 338.06 + } + ], + "descriptionVector": [ + -0.038251690566539764, + -0.021305082365870476, + -0.046481356024742126, + -0.0010617009829729795, + -0.03681691363453865, + -0.06648701429367065, + -0.06415888667106628, + 0.01472676545381546, + 0.004392311908304691, + 0.09442456066608429, + -0.043205730617046356, + -0.026583978906273842, + 0.02394453063607216, + -0.03216065838932991, + 0.02106144092977047, + -0.03530092537403107, + -0.006903171539306641, + -0.034163929522037506, + -0.043747156858444214, + 0.0011953653302043676, + -0.00038555398350581527, + -0.03608598932623863, + -0.011024771258234978, + -0.07357968389987946, + -0.036762770265340805, + -0.021927721798419952, + -0.009738885797560215, + 0.03329765051603317, + -0.045615073293447495, + 0.016730038449168205, + 0.0821342021226883, + 0.012723492458462715, + -0.02264511026442051, + 0.024648383259773254, + -0.020804263651371002, + 0.006189167033880949, + 0.006510638166218996, + -0.02284814417362213, + 0.08646560460329056, + 0.017271464690566063, + -0.008696642704308033, + 0.018042994663119316, + 0.005678196903318167, + -0.03494899719953537, + 0.001972818048670888, + 0.025379307568073273, + 0.013549165800213814, + 0.09063458442687988, + -0.028912106528878212, + -0.01977555640041828, + -0.02991374395787716, + 0.09020143747329712, + -0.05603750795125961, + 0.06069376692175865, + -0.003698610933497548, + -0.03540920838713646, + 0.05021718889474869, + 0.06280532479286194, + -0.00710620591416955, + -0.05184146389365196, + 0.051218826323747635, + -0.06237218528985977, + -0.06535002589225769, + 0.01034798938781023, + -0.03419100120663643, + 0.022766930982470512, + 0.003196100704371929, + 0.0013044964289292693, + -0.030076170340180397, + 0.09290856868028641, + 0.0002673286944627762, + 0.010043437592685223, + 0.07823594659566879, + 0.07385040074586868, + 0.06805714964866638, + 0.007194187492132187, + 0.06123519316315651, + 0.06242632865905762, + -0.003443125868216157, + -0.009062104858458042, + -0.006970849819481373, + 0.04001132398843765, + -0.0038238156121224165, + -0.011336090043187141, + 0.032377228140830994, + -0.037141770124435425, + -0.010923253372311592, + -0.089118592441082, + 0.011809837073087692, + 0.020479409024119377, + 0.022969964891672134, + 0.054954659193754196, + 0.03697934374213219, + 0.04285380616784096, + 0.09339585155248642, + 0.006605387665331364, + -0.0378185510635376, + 0.0106660770252347, + -0.0858158990740776, + 0.009434334002435207, + 0.017190251499414444, + -0.058582209050655365, + -0.004615650046616793, + -0.002047264017164707, + -0.008771088905632496, + 0.015809616073966026, + 0.028018753975629807, + 0.0029033927712589502, + 0.008033396676182747, + -0.1627524197101593, + 0.06589145213365555, + -0.026651656255126, + 0.02104790508747101, + 0.037601981312036514, + 0.011065377853810787, + 0.058582209050655365, + 0.0008573975646868348, + -0.0036512361839413643, + 0.015917900949716568, + 0.03218773007392883, + -0.030265670269727707, + -0.01556597463786602, + -0.033405937254428864, + -0.023321891203522682, + 0.024120492860674858, + -0.0930168554186821, + -0.030807094648480415, + 0.06009819731116295, + 0.009583226405084133, + 0.010930021293461323, + -0.06648701429367065, + 0.10611934214830399, + -0.04209581017494202, + 0.04718520864844322, + -0.010090812109410763, + 0.026326801627874374, + 0.034055646508932114, + 0.043097447603940964, + -0.017203785479068756, + -0.011958729475736618, + -0.06616216152906418, + 0.029209889471530914, + 0.062209758907556534, + 0.07081841677427292, + -0.019274737685918808, + -0.034082718193531036, + -0.03681691363453865, + 0.06821957975625992, + 0.028939178213477135, + -0.0429079495370388, + 0.04220409691333771, + -0.04307037591934204, + 0.00852744746953249, + -0.0029846064280718565, + 0.006371898110955954, + 0.061560045927762985, + -0.1990279108285904, + 0.008175521157681942, + -0.04867412522435188, + 0.10871818661689758, + -0.012276817113161087, + -0.019071703776717186, + -0.034434642642736435, + 0.02191418595612049, + -0.03595063462853432, + 0.03830583393573761, + 0.020533550530672073, + -0.002060799626633525, + -0.04071517661213875, + 0.024106957018375397, + 0.04531729221343994, + -0.10633591562509537, + 0.018760383129119873, + -0.04691449552774429, + 0.02349785342812538, + -0.001982969930395484, + 0.06367160379886627, + -0.005935373716056347, + 0.0032400914933532476, + -0.02823532558977604, + -0.003884725971147418, + 0.09886424243450165, + -0.004859291482716799, + -0.02617790922522545, + -0.004859291482716799, + 0.10287079215049744, + 0.09225885570049286, + -0.007546113803982735, + -0.010848808102309704, + 0.036031849682331085, + 0.060152340680360794, + 0.01472676545381546, + -0.01724439300596714, + 0.017285000532865524, + -0.01659468375146389, + -0.021196797490119934, + 0.04512779042124748, + 0.019897377118468285, + 0.014185341075062752, + -0.07926464825868607, + -0.036221347749233246, + 0.07206369936466217, + 0.09778139740228653, + 0.00747843598946929, + -0.05208510532975197, + -0.024837881326675415, + 0.031835801899433136, + 0.0897141546010971, + 0.002267218194901943, + 0.0613434761762619, + -0.008892909623682499, + -0.07964365184307098, + -0.020736586302518845, + -0.012060246430337429, + 0.05284310132265091, + 0.00409791199490428, + 0.01197903323918581, + -0.00903503317385912, + 0.048701196908950806, + -0.05712036043405533, + 0.053438667207956314, + -0.025514664128422737, + 0.0507044717669487, + 0.0008730481495149434, + -0.07298412173986435, + 0.05603750795125961, + 0.003979475237429142, + -0.028478967025876045, + 0.04401786997914314, + 0.010165258310735226, + -0.020181624218821526, + -0.0273013673722744, + 0.009474941529333591, + 0.041337814182043076, + 0.032106515020132065, + 0.04875534027814865, + 0.017839960753917694, + -0.04564214497804642, + -0.06870686262845993, + 0.05067740008234978, + -0.026150837540626526, + 0.02311885729432106, + -0.043395232409238815, + 0.006365130189806223, + -0.058203209191560745, + -0.0047679259441792965, + 0.09030972421169281, + -0.08473304659128189, + -0.0640505999326706, + -0.009705047123134136, + -0.1034122183918953, + -0.03754783794283867, + -0.07211783528327942, + 0.023159462958574295, + -0.051976822316646576, + 0.05441323295235634, + 0.060802049934864044, + -0.03873897343873978, + 0.046454284340143204, + -0.007695005740970373, + 0.017596319317817688, + 0.000815098755992949, + -0.01911230944097042, + 0.01762339100241661, + -0.15809616446495056, + 0.051029328256845474, + -0.001592128537595272, + -0.07081841677427292, + -0.007776219863444567, + 0.018949883058667183, + -0.045723360031843185, + 0.04242066666483879, + -0.010172026231884956, + 0.0029135444201529026, + 0.006855796556919813, + 0.047672491520643234, + 0.0009517240105196834, + -0.030157385393977165, + 0.030807094648480415, + -0.008791391737759113, + 0.08235077559947968, + -0.00705883139744401, + 0.07390454411506653, + -0.04428858309984207, + 0.03142973408102989, + -0.0633467510342598, + 0.018381385132670403, + -0.028560180217027664, + -0.018015924841165543, + -0.03979475423693657, + -0.03738541156053543, + 0.007458132226020098, + 0.0031994846649467945, + 0.045344360172748566, + -0.00022925973462406546, + 0.036031849682331085, + 0.0005871079629287124, + -0.020533550530672073, + 0.045073650777339935, + 0.02161640115082264, + -0.005075861234217882, + 0.013440880924463272, + -0.026624584570527077, + -0.05836563929915428, + 0.01974848471581936, + 0.024851417168974876, + -0.06746158003807068, + 0.06372574716806412, + -0.032106515020132065, + -0.018584420904517174, + 0.06637873500585556, + -0.058311495929956436, + -0.03086123801767826, + 0.0022350710351020098, + 0.06448373943567276, + 0.023998672142624855, + 0.022401468828320503, + 0.015227584168314934, + 0.04780784621834755, + -0.014361304230988026, + -0.019085239619016647, + -0.027436722069978714, + -0.08040164411067963, + 0.008818463422358036, + 0.004182509612292051, + 0.0028137192130088806, + -0.024201707914471626, + 0.011254876852035522, + 0.04001132398843765, + 0.027179546654224396, + -0.0016894158907234669, + -0.05917777493596077, + 0.017758747562766075, + -0.05097518488764763, + 0.08429990708827972, + 0.046833280473947525, + -0.006767814978957176, + -0.0033517605625092983, + 0.012006103992462158, + -0.02647569216787815, + 0.09095943719148636, + -0.0371146984398365, + -0.05906949192285538, + -0.02191418595612049, + 0.03955111280083656, + -0.04883655533194542, + 0.02020869590342045, + -0.03375786170363426, + -0.0011259953025728464, + -0.0032705466728657484, + 0.0016699583502486348, + -0.05113761126995087, + 0.05852806568145752, + -0.015186977572739124, + 0.061018623411655426, + -0.020993763580918312, + 0.040390320122241974, + -0.040877602994441986, + 0.06139761954545975, + -0.012249745428562164, + -0.014104126952588558, + 0.04704985022544861, + -0.035923562943935394, + 0.012743796221911907, + -0.011119520291686058, + 0.05733693018555641, + -0.0003904183395206928, + 0.033784933388233185, + 0.002818794921040535, + -0.04269137978553772, + -0.004642721265554428, + 0.026692263782024384, + -0.01375220064073801, + 0.027003582566976547, + 0.006906555499881506, + 0.11066731065511703, + -0.006053810473531485, + -0.02052001655101776, + -0.026056088507175446, + 0.022157827392220497, + -0.005109700374305248, + 0.05514415726065636, + 0.038820188492536545, + 0.04596700146794319, + 0.09913495928049088, + 0.032485511153936386, + -0.04128367081284523, + -0.010314150713384151, + -0.07617852836847305, + 0.030969522893428802, + -0.022482682019472122, + -0.02376856654882431, + -0.08050993084907532, + 0.035571638494729996, + -0.02573123387992382, + -0.006294067949056625, + -0.019599592313170433, + 0.028181182220578194, + -0.02888503484427929, + -0.011539124883711338, + -0.008026628755033016, + 0.06258875131607056, + -0.019870305433869362, + -0.0027494248934090137, + -0.04707692191004753, + -0.08543689548969269, + 0.006236541550606489, + -0.017650462687015533, + -0.018516741693019867, + -0.008520679548382759, + -0.0008396320627070963, + -0.02991374395787716, + -0.0710349902510643, + 0.012012871913611889, + -0.02692236937582493, + 0.024810809642076492, + 0.05917777493596077, + 0.014036448672413826, + 0.07385040074586868, + -0.013190471567213535, + 0.036681558936834335, + 0.010226168669760227, + 0.003641084535047412, + 0.04445100948214531, + -0.006568164564669132, + 0.021697616204619408, + 0.07168469578027725, + -0.020736586302518845, + -0.010212632827460766, + -0.04017375037074089, + -0.07601609826087952, + -0.023917458951473236, + -0.006805038079619408, + -0.02880382165312767, + -0.03281036764383316, + 0.05630822107195854, + -0.02544698491692543, + 0.02872260846197605, + -0.05863635241985321, + 0.011011235415935516, + -0.04978404939174652, + -0.00862219650298357, + 0.005793249700218439, + 0.07964365184307098, + -0.09312513470649719, + -0.08121377974748611, + 0.020804263651371002, + 0.008913212455809116, + 0.019694341346621513, + 0.05287017300724983, + -0.0030895075760781765, + -0.04753713309764862, + -0.05804078280925751, + 0.05777006968855858, + 0.01639164797961712, + 0.0023399721831083298, + 0.0322689414024353, + 0.014862122014164925, + -0.045263148844242096, + 0.06215561553835869, + -0.029805457219481468, + 0.05138125270605087, + 0.07921051234006882, + 0.008818463422358036, + -0.04442393779754639, + 0.051300037652254105, + -0.05533365532755852, + 0.05901534855365753, + 0.01769106835126877, + 0.049269694834947586, + -0.0826214849948883, + -0.018692705780267715, + -0.00043292867485433817, + -0.005563144106417894, + -0.015782544389367104, + -0.04602114483714104, + -0.016148006543517113, + -0.012831777334213257, + 0.03879311680793762, + -0.010611934587359428, + 0.01827310025691986, + 0.006767814978957176, + -0.007938647642731667, + 0.011045074090361595, + 0.05154367908835411, + 0.006368514150381088, + -0.009197460487484932, + 0.05127296969294548, + 0.015159905888140202, + 0.008635732345283031, + 0.05917777493596077, + 0.11007174849510193, + 0.01258813589811325, + -0.004432918969541788, + 0.01723085716366768, + -0.05124589800834656, + 0.028316538780927658, + -0.08370433747768402, + 0.059502631425857544, + 0.035842347890138626, + 0.031267307698726654, + -0.09328756481409073, + 0.003189333016052842, + 0.011579731479287148, + -0.028289467096328735, + 0.028641393408179283, + -0.06789471954107285, + -0.029101604595780373, + -0.028208253905177116, + 0.06139761954545975, + 0.032106515020132065, + 0.05966505780816078 + ] + }, + { + "id": "78806d9f-d902-4afe-b4f9-e4b12d9b5e63", + "productId": "2b74f364-3919-4295-b187-ec1fb9779d23", + "category": "Media", + "docType": "customerRating", + "userName": "joshuahahn", + "reviewDate": "2022-06-02T10:02:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker 3000 (Black)", + "description": "This Awesome Speaker 3000 (Black) is rated 4.6 out of 5 by 16.\n\nRated 5 out of 5 by Fergys from Great speaker These microphones are great speakers for most recording purposes. It's good enough for some recording. If you plan to record vocals", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-04-25T02:05:09", + "price": 442.73, + "stock": 70, + "priceHistory": [ + { + "priceDate": "2021-02-28T17:01:10", + "newPrice": 469.42 + }, + { + "priceDate": "2022-12-20T17:01:10", + "newPrice": 460.11 + }, + { + "priceDate": "2024-08-29T17:01:10", + "newPrice": 442.73 + } + ], + "descriptionVector": [ + -0.014712595380842686, + 0.02978185936808586, + -0.03551085293292999, + 0.03381667658686638, + -0.03481980785727501, + 0.06330874562263489, + -0.05773578956723213, + 0.013954673893749714, + 0.006609521806240082, + 0.12982749938964844, + -0.0331033393740654, + 0.006080091465264559, + -0.0620604008436203, + 0.009903136640787125, + -0.00529151875525713, + 0.0005646097706630826, + 0.005846027284860611, + -0.04337986186146736, + 0.03332625702023506, + 0.02322806604206562, + 0.02174566127359867, + -0.04694655165076256, + -0.0372273251414299, + 0.01234966330230236, + -0.02759726159274578, + -0.014790615998208523, + 0.028154557570815086, + 0.011870388872921467, + 0.014523115009069443, + -0.044360704720020294, + 0.02021867223083973, + 0.056175362318754196, + -0.029893318191170692, + 0.0007676742388866842, + 0.008498752489686012, + -0.029469773173332214, + 0.010215221904218197, + -0.023027440533041954, + -0.0006792036001570523, + 0.03091874159872532, + 0.04268881678581238, + 0.0052218567579984665, + 0.05300992727279663, + -0.05951913446187973, + -0.0009348628227598965, + 0.02942519076168537, + -0.00617483165115118, + 0.042599648237228394, + 0.06776710599660873, + 0.04792739450931549, + 0.03675919398665428, + 0.0419531874358654, + -0.08408471196889877, + 0.020519612357020378, + 0.10744652897119522, + -0.021500451490283012, + 0.024966828525066376, + 0.08493179827928543, + 0.03564460575580597, + -0.06754418462514877, + 0.048328645527362823, + 0.007200254593044519, + -0.022481290623545647, + -0.05532827228307724, + -0.07106629014015198, + 0.026103710755705833, + 0.0027516453992575407, + 0.028622685000300407, + 0.010984289459884167, + 0.06611751019954681, + 0.01796719990670681, + 0.0035137466620653868, + -0.015816040337085724, + 0.0396125465631485, + 0.03332625702023506, + -0.01808980479836464, + 0.03227854147553444, + 0.07757549732923508, + -0.04362507164478302, + 0.02174566127359867, + 0.02978185936808586, + 0.03243458271026611, + 0.04050422087311745, + 0.006609521806240082, + 0.11431240290403366, + 0.020352423191070557, + -0.10494984686374664, + -0.11119154840707779, + 0.001157084247097373, + 0.05604161322116852, + -0.019717106595635414, + 0.0703529566526413, + -0.01939387433230877, + -0.01270633190870285, + 0.005918475799262524, + -0.06892627477645874, + -0.04496258124709129, + 0.027262885123491287, + -0.022213788703083992, + 0.017699697986245155, + 0.057958707213401794, + -0.06473542004823685, + -0.044427577406167984, + -0.034842099994421005, + -0.03314792364835739, + 0.03887691721320152, + -0.0019240619149059057, + -0.022737646475434303, + 0.04395944997668266, + -0.07414256036281586, + 0.027641845867037773, + -0.025323497131466866, + 0.016395626589655876, + -0.09072767198085785, + 0.002449312712997198, + 0.03515418618917465, + -0.019828565418720245, + -0.055818695574998856, + -0.04948781803250313, + 0.024721618741750717, + 0.014757178723812103, + 0.014188737608492374, + 0.04159651696681976, + 0.03807441145181656, + 0.023540152236819267, + -0.019783981144428253, + -0.008164376020431519, + 0.034663766622543335, + 0.013129875995218754, + -0.013854360207915306, + -0.024721618741750717, + 0.11333156377077103, + 0.03678148612380028, + -0.016206147149205208, + -0.028355183079838753, + 0.04806114360690117, + 0.018357306718826294, + 0.028332890942692757, + 0.026995383203029633, + -0.0042911735363304615, + -0.0036976539995521307, + 0.026348920539021492, + 0.03236771002411842, + 0.011814659461379051, + 0.019639085978269577, + 0.018368452787399292, + -0.09072767198085785, + 0.0579141229391098, + 0.05403535068035126, + 0.006771137472242117, + 0.01028209738433361, + -0.07467756420373917, + 0.018758557736873627, + -0.025256620720028877, + -0.02210232987999916, + -0.022849105298519135, + -0.09380394220352173, + 0.026683297008275986, + -0.03232312574982643, + 0.07070962339639664, + -0.02505599521100521, + -0.009646780788898468, + -0.013408523984253407, + 0.01049386989325285, + 0.027285175397992134, + 0.09291226416826248, + 0.05537285655736923, + 0.07735258340835571, + -0.14935512840747833, + 0.04177485406398773, + 0.031476035714149475, + -0.055818695574998856, + 0.0041825007647275925, + -0.05176158249378204, + -0.054882436990737915, + -0.05902871489524841, + 0.03245687484741211, + 0.03510960191488266, + -0.002417268231511116, + 0.011151478625833988, + 0.03457459807395935, + 0.08979140967130661, + -0.009914282709360123, + -0.013285919092595577, + 0.0691937804222107, + 0.023094315081834793, + 0.040348175913095474, + -0.011446844786405563, + -0.028578100726008415, + 0.019705960527062416, + 0.009563187137246132, + 0.01780001074075699, + -0.01601666584610939, + 0.01270633190870285, + -0.06223873421549797, + 0.028511226177215576, + -0.020965447649359703, + 0.02038586139678955, + 0.00963563472032547, + 0.0013047675602138042, + -0.040883179754018784, + 0.019728252664208412, + 0.11885993182659149, + -0.01979512721300125, + -0.015425932593643665, + -0.06223873421549797, + 0.02706225775182247, + 0.10316649824380875, + -0.006865877658128738, + -0.014589990489184856, + -0.016685420647263527, + -0.05136033147573471, + -0.058538295328617096, + 0.023963697254657745, + 0.05055782571434975, + 0.029514357447624207, + -0.0033131204545497894, + 0.00596863217651844, + 0.0027990154922008514, + -0.0839063748717308, + 0.09380394220352173, + -0.04148506000638008, + 0.018535640090703964, + 0.012750915251672268, + -0.0679454356431961, + 0.0023671116214245558, + 0.0006593499565497041, + -0.04384799301624298, + 0.05149408429861069, + -0.0020215886179357767, + -0.00939599797129631, + 0.03399500995874405, + -0.01980627328157425, + 0.027441218495368958, + -0.030874157324433327, + 0.0041992198675870895, + -0.03923358768224716, + -0.02116607502102852, + -0.06865877658128738, + 0.11654158681631088, + -0.04815031215548515, + 0.049799904227256775, + -0.03996921703219414, + -0.031476035714149475, + 0.0042800274677574635, + -0.0650029182434082, + 0.046010296791791916, + -0.026259751990437508, + -0.06406666338443756, + -0.05407993122935295, + -0.13669338822364807, + 0.03914441913366318, + -0.06767793744802475, + 0.07900217920541763, + 0.05225200578570366, + 0.04291173443198204, + 0.08930099010467529, + -0.019750544801354408, + -0.015882914885878563, + -0.05064699426293373, + 0.012929250486195087, + 0.019349291920661926, + -0.0286672692745924, + 0.034373972564935684, + -0.059073299169540405, + -0.00971922930330038, + 0.07748633623123169, + -0.049978237599134445, + 0.01732073724269867, + 0.00847646128386259, + -0.0543920174241066, + 0.04592112824320793, + -0.017153548076748848, + -0.004530810285359621, + -0.05176158249378204, + 0.03361605107784271, + -0.005355607718229294, + 0.013720609247684479, + -0.01039912924170494, + -0.020909719169139862, + 0.08466430008411407, + 0.017454488202929497, + 0.021121490746736526, + 0.0227599386125803, + 0.06241707131266594, + -0.04168568551540375, + 0.030695823952555656, + -0.017175840213894844, + -0.023072024807333946, + -0.07021920382976532, + 0.015281036496162415, + 0.02487765997648239, + 0.018747413530945778, + 0.029893318191170692, + -0.025390371680259705, + 0.06393291056156158, + 0.008298126049339771, + -0.033482298254966736, + 0.05769120529294014, + 0.07757549732923508, + 0.03836420550942421, + 0.053990766406059265, + -0.02358473651111126, + -0.13847672939300537, + 0.01415529940277338, + 0.010555172339081764, + -0.035488560795784, + 0.026973091065883636, + -0.004817817360162735, + -0.006185977254062891, + 0.03343771770596504, + 0.006642959546297789, + -0.05153866484761238, + 0.009184226393699646, + 0.13375087082386017, + -0.018234701827168465, + 0.02565787360072136, + 0.0626845732331276, + 0.03067353181540966, + 0.04734780639410019, + -0.005352821201086044, + -0.070977121591568, + -0.02104347012937069, + 0.04592112824320793, + 0.008504325523972511, + 0.0277755968272686, + 0.07173504680395126, + -0.060366224497556686, + -0.006592803169041872, + 0.030450614169239998, + 0.01460113562643528, + 0.0013012844137847424, + 0.03796295449137688, + -0.03860941529273987, + 0.0360458567738533, + -0.03535481169819832, + -0.06330874562263489, + -0.017710844054818153, + 0.058716628700494766, + 0.013196751475334167, + 0.057067036628723145, + -0.03299187868833542, + -0.002953664865344763, + -0.020909719169139862, + 0.038208164274692535, + -0.02813226543366909, + -0.0021553393453359604, + -0.02411973848938942, + 0.007779841776937246, + -0.05167241767048836, + 0.0010999615769833326, + -0.037093572318553925, + 0.03446313738822937, + 0.03214479237794876, + -0.017978345975279808, + 0.00308741582557559, + 0.023205773904919624, + 0.003179369494318962, + 0.017588239163160324, + -0.012951541692018509, + -0.07583674043416977, + -0.003299187868833542, + 0.012494559399783611, + 0.0006300919339992106, + -0.036670029163360596, + 0.0268839243799448, + 0.007891301065683365, + 0.007244838401675224, + 0.02434265799820423, + -0.07325088977813721, + 0.006169258616864681, + -0.06629584729671478, + -0.04204235598444939, + 0.00859906617552042, + -0.025992251932621002, + 0.04993365705013275, + 0.0401921346783638, + -0.024208907037973404, + -0.045252375304698944, + 0.03109707497060299, + 0.002925800159573555, + 0.07833342254161835, + 0.06237248703837395, + 0.01040470227599144, + 0.0531882606446743, + 0.03586752340197563, + -0.014656865037977695, + 0.00862693041563034, + -0.05002282187342644, + 0.03733878210186958, + -0.006782283540815115, + -0.022080037742853165, + -0.006007642950862646, + 0.06634043157100677, + -0.021723369136452675, + -0.0738750621676445, + 0.004171355161815882, + 0.05586327612400055, + -0.002755825174972415, + -0.062327902764081955, + -0.04774905741214752, + 0.029982484877109528, + 0.005559020210057497, + 0.030227694660425186, + -0.04922031611204147, + -0.07583674043416977, + 0.01338623184710741, + -0.001635661581531167, + -0.032011039555072784, + -0.0478828102350235, + 0.023138899356126785, + -0.02228066511452198, + -0.02837747521698475, + -0.014757178723812103, + -0.004697998985648155, + 0.05167241767048836, + 0.057824958115816116, + -0.048506978899240494, + 0.0342848040163517, + -0.04587654769420624, + 0.04048192873597145, + 0.04179714620113373, + 0.06959503144025803, + 0.006709835026413202, + -0.03296958655118942, + 0.055239107459783554, + 0.020909719169139862, + -0.04219839721918106, + -0.017008651047945023, + -0.06696459650993347, + -0.05189533531665802, + -0.0289570614695549, + -0.009462873451411724, + -0.013531128875911236, + -0.031074784696102142, + 0.008989172987639904, + -0.024543283507227898, + 0.0555511936545372, + -0.001667706063017249, + 0.02015179768204689, + 0.038208164274692535, + -0.025323497131466866, + 0.014589990489184856, + 0.07819966971874237, + -0.10976487398147583, + -0.051271162927150726, + -0.02748580276966095, + 0.06758876889944077, + 0.04988907277584076, + 0.03707128018140793, + 0.0768175795674324, + -0.00037582599907182157, + -0.08577888458967209, + 0.02027440257370472, + 0.105217345058918, + 0.022492436692118645, + 0.013141022063791752, + 0.047258637845516205, + -0.02605912648141384, + -0.020029190927743912, + -0.07815508544445038, + 0.0738750621676445, + 0.06099039316177368, + 0.049264900386333466, + -0.005316596943885088, + 0.0006018789135850966, + -0.0786455050110817, + -0.012416538782417774, + -0.03156520426273346, + -0.05243033915758133, + -0.0039456505328416824, + -0.034730639308691025, + -0.018647098913788795, + 0.07227005064487457, + -0.015626559033989906, + -0.07436548173427582, + 0.021857120096683502, + -0.004059895873069763, + 0.07191338390111923, + 0.07360755652189255, + -0.027641845867037773, + 0.0024883232545107603, + -0.029759567230939865, + 0.04694655165076256, + 0.04984448850154877, + 0.011926118284463882, + 0.02316119149327278, + -0.018769703805446625, + 0.012171328999102116, + 0.0006231257575564086, + 0.02784247137606144, + 0.11047821491956711, + -0.01205986924469471, + -0.0662066787481308, + -0.003597341012209654, + 0.0025315138045698404, + -0.0318995825946331, + 0.016830317676067352, + -0.019226687029004097, + -0.022236080840229988, + 0.06843585520982742, + -0.014077278785407543, + -0.024030571803450584, + 0.0466790497303009, + -0.04407091066241264, + 0.013553421013057232, + -0.09081683307886124, + -0.00042110623326152563, + -0.038453374058008194, + 0.021422430872917175, + 0.04547529295086861, + -0.04984448850154877 + ] + }, + { + "id": "3744d42a-d55a-46d1-b0a6-da6cf089322b", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "sguerrero", + "reviewDate": "2021-04-14T12:16:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "32a05cf1-2ec0-40fe-a984-372c415554c0", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "jessicathomas", + "reviewDate": "2021-05-26T21:41:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4f46aaf7-f87a-4f87-9224-fc128213f48d", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "bookerkathy", + "reviewDate": "2022-04-23T01:01:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "da20d02d-21e2-4391-9aee-f0d5df81d13a", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth36", + "reviewDate": "2021-02-28T17:01:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a6eab6c5-e773-424a-ae46-214825424d87", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "kimberly97", + "reviewDate": "2021-06-27T17:07:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d720adc2-213e-4187-819d-d380bc7012b8", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "erinbush", + "reviewDate": "2021-10-26T08:10:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "41f1de46-2755-42ce-9585-89ac9b74fd94", + "productId": "6c6c7d08-dbe6-40ab-9d8f-f2f7c257b56e", + "category": "Media", + "docType": "customerRating", + "userName": "dherman", + "reviewDate": "2022-12-21T09:21:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "46347bcb-473d-4a76-9ca0-da34592e2640", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Ultra (Steel)", + "description": "This Luxe Speaker Ultra (Steel) is available in 3 different mounting areas, but unlike our regular speaker models, this unique, 1-inch Ultra features a removable cover, a 4K panel, and our own proprietary LED light-up system which enables each individual amplifier to be configured for use on 3D displays and a 4K monitor. It's ideal for an evening or a corporate meeting, or to set up to play a lot of", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-02-26T11:34:26", + "price": 178.16, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-06-12T16:12:54", + "newPrice": 169.07 + }, + { + "priceDate": "2022-12-15T16:12:54", + "newPrice": 166.63 + }, + { + "priceDate": "2025-07-29T16:12:54", + "newPrice": 178.16 + } + ], + "descriptionVector": [ + 0.016379553824663162, + 0.001800962258130312, + -0.05019031837582588, + -0.03946341946721077, + -0.03170745074748993, + 0.009031102992594242, + -0.04679872840642929, + 0.04403812810778618, + 0.005021661054342985, + 0.05281946063041687, + -0.004209913779050112, + 0.028657646849751472, + -0.01348749827593565, + -0.04645693674683571, + -0.020270684733986855, + -0.04664097726345062, + -0.028026653453707695, + 0.0020112935453653336, + -0.005439037457108498, + -0.0518992617726326, + 0.056894633919000626, + -0.09470169246196747, + -0.059576358646154404, + 0.003690658137202263, + -0.019613398239016533, + 0.011463059112429619, + 0.014210511930286884, + 0.022268831729888916, + 0.011357893235981464, + -0.013296885415911674, + 0.041487861424684525, + 0.03488871455192566, + -0.03189149126410484, + 0.020586181432008743, + -0.06867318600416183, + -0.05255654826760292, + 0.028026653453707695, + -0.031102748587727547, + 0.03775447979569435, + 0.02605479769408703, + -0.022360851988196373, + -0.01937677711248398, + 0.003716949373483658, + -0.014815215021371841, + 0.023938337340950966, + -0.005830122157931328, + 0.005978011526167393, + 0.016629323363304138, + -0.001234053517691791, + -0.010588869452476501, + -0.019021842628717422, + -0.0025814888067543507, + -0.11031879484653473, + 0.028184402734041214, + 0.03523050248622894, + -0.04927011951804161, + 0.02729049324989319, + 0.19949929416179657, + 0.04974336549639702, + 0.014065909199416637, + 0.03478354960680008, + -0.0750357136130333, + -0.03452063351869583, + 0.01711571402847767, + -0.05568522587418556, + 0.016773926094174385, + 0.039700042456388474, + 0.005606645252555609, + -0.041593026369810104, + 0.08208180963993073, + 0.03149712085723877, + 0.005685519427061081, + 0.03538824990391731, + 0.057420458644628525, + 0.053503040224313736, + -0.0008815841865725815, + 0.03935825452208519, + 0.02805294468998909, + -0.015735413879156113, + -0.0282632764428854, + 0.07992591708898544, + 0.03617699444293976, + -0.04632548242807388, + 0.012126917019486427, + 0.07698127627372742, + -0.02600221335887909, + -0.00135893770493567, + -0.0929664596915245, + -0.02337307296693325, + 0.1212560310959816, + -0.0030070811044424772, + 0.051610056310892105, + 0.04706164076924324, + -0.000985106686130166, + 0.0611538402736187, + -0.0010220789117738605, + -0.10653283447027206, + 0.022097937762737274, + -0.06457172334194183, + 0.007828270085155964, + 0.05142601579427719, + -0.0045878528617322445, + -0.02428012527525425, + -0.022860389202833176, + 0.04566819593310356, + 0.0328642763197422, + 0.04311792925000191, + 0.03967375308275223, + -0.0008544711163267493, + -0.14723195135593414, + 0.042828723788261414, + -0.043643757700920105, + 0.007098683156073093, + -0.051557473838329315, + 0.04990111291408539, + 0.07666578143835068, + 0.010648025199770927, + 0.0008594007813371718, + -0.013415196910500526, + 0.026265127584338188, + 0.04572077840566635, + -0.006549850106239319, + 0.024569330736994743, + -0.04987482354044914, + -0.016616176813840866, + 0.025016285479068756, + 0.03980521112680435, + 0.036150701344013214, + 0.0408305749297142, + 0.0292886421084404, + -0.05747304484248161, + 0.11073946207761765, + 0.008787906728684902, + 0.0011338174808770418, + -0.007979446090757847, + 0.04777150973677635, + 0.025699863210320473, + -0.01112127024680376, + -0.0003958090965170413, + -0.0292886421084404, + -0.03381076455116272, + 0.03601924329996109, + 0.011160708032548428, + 0.054791320115327835, + -0.061784837394952774, + -0.044406209141016006, + -0.04232918471097946, + -0.011180425994098186, + -0.02024439349770546, + 0.02175614982843399, + 0.03996295854449272, + -0.08208180963993073, + -0.02088853344321251, + -0.0019242032431066036, + 0.06246841326355934, + 0.05763079226016998, + -0.09333454072475433, + 0.04259210079908371, + -0.021716712042689323, + 0.029052019119262695, + 0.07414180040359497, + -0.03294314816594124, + -0.015117566101253033, + 0.04898091405630112, + 0.018995551392436028, + 0.07372114062309265, + 0.047456011176109314, + 0.0282632764428854, + -0.059628941118717194, + 0.018916675820946693, + 0.04874429106712341, + -0.009938156232237816, + -0.028552481904625893, + -0.025726154446601868, + 0.010411402210593224, + -0.03328493610024452, + 0.10237878561019897, + 0.0009867498883977532, + 0.01846972294151783, + -0.020336413756012917, + 0.004341370891779661, + 0.043643757700920105, + -0.024043504148721695, + -0.06099609285593033, + 0.041540443897247314, + 0.04196110740303993, + 0.04106719791889191, + -0.01808849722146988, + -0.009734397754073143, + 0.00807146541774273, + 0.003966717980802059, + 0.005508052185177803, + 0.042881306260824203, + -0.027474533766508102, + -0.06273132562637329, + -0.06341490149497986, + 0.06546563655138016, + 0.05757820978760719, + -0.006083177402615547, + -0.01819366216659546, + 0.0259496308863163, + 0.053503040224313736, + 0.04072540998458862, + 0.003582205856218934, + -0.024950556457042694, + -0.05610588937997818, + -0.0011979028349742293, + 0.07282723486423492, + 0.0232547614723444, + 0.023412508890032768, + -0.0036446480080485344, + -0.015314752236008644, + -0.05352932959794998, + 0.05610588937997818, + 0.057315293699502945, + 0.02718532830476761, + -0.013033971190452576, + -0.013231157325208187, + 0.017155151814222336, + -0.08155598491430283, + 0.055106814950704575, + -0.052845753729343414, + 0.055054232478141785, + -0.01494667213410139, + -0.10758449137210846, + 0.01004332210868597, + 0.08923307806253433, + -0.013310031034052372, + 0.0709342509508133, + -0.01869319938123226, + -0.01883780211210251, + 0.007098683156073093, + 0.019140154123306274, + -0.0070723919197916985, + 0.03170745074748993, + -0.022702641785144806, + 0.012422695755958557, + -0.0487968735396862, + 0.047350846230983734, + 0.01949508674442768, + -0.052582837641239166, + 0.015446209348738194, + -0.021900752559304237, + 0.035782620310783386, + -0.03767560422420502, + -0.003200980369001627, + 0.14144784212112427, + -0.02212422899901867, + -0.016944820061326027, + -0.007532491814345121, + -0.09549043327569962, + -0.008386963047087193, + -0.052425090223550797, + 0.07419438660144806, + -0.01739177480340004, + 0.01620865985751152, + 0.07177557796239853, + -0.07356338948011398, + -0.00039827392902225256, + -0.012731620110571384, + -0.013349467888474464, + -0.05003257095813751, + -0.02610738016664982, + -0.012271519750356674, + -0.09333454072475433, + -0.03154970332980156, + 0.01772041618824005, + -0.04432733356952667, + 0.032653942704200745, + 0.00861701276153326, + -0.017326045781373978, + -0.0025124738458544016, + -0.0033718745689839125, + 0.07787518203258514, + 0.004367662128061056, + 0.03428401052951813, + -0.09938156604766846, + 0.04335455223917961, + -0.059103112667798996, + -0.07287981361150742, + 0.10495534539222717, + -0.004380807746201754, + 0.006375669036060572, + -0.032706525176763535, + 0.061784837394952774, + -0.015327897854149342, + 0.03246990218758583, + 0.018877239897847176, + 0.0333901047706604, + -0.059155695140361786, + -0.022268831729888916, + -0.03899017348885536, + 0.05799887329339981, + 0.0544758215546608, + 0.03533566743135452, + 0.027264202013611794, + -0.02422754280269146, + -0.05013773590326309, + 0.013283739797770977, + -0.020651910454034805, + -0.03173374384641647, + 0.024214398115873337, + -0.05778853967785835, + -0.036860570311546326, + -0.01620865985751152, + 0.05878761410713196, + -0.01146963145583868, + 0.06983000785112381, + -0.030971292406320572, + -0.05410774052143097, + 0.044406209141016006, + -0.008045174181461334, + -0.06877835094928741, + -0.03654507175087929, + 0.06394073367118835, + 0.01765468902885914, + 0.008327807299792767, + -0.0016974398167803884, + 0.008498701266944408, + 0.06099609285593033, + -0.07734935730695724, + -0.039016466587781906, + -0.11189628392457962, + 0.061679668724536896, + -0.009602940641343594, + -0.0073221605271101, + 0.022032208740711212, + -0.034704674035310745, + 0.06804219633340836, + -0.0002711302659008652, + -0.023189032450318336, + -0.021125156432390213, + 0.044511374086141586, + -0.0015314752236008644, + 0.038201432675123215, + 0.006053599528968334, + 0.003907562233507633, + -0.018640616908669472, + 0.022005917504429817, + -0.030918709933757782, + 0.08097757399082184, + -0.015656540170311928, + 0.012448986992239952, + -0.019258465617895126, + 0.008682741783559322, + -0.02934122458100319, + -0.012383258901536465, + -0.035887788981199265, + -0.017641542479395866, + 0.05208330228924751, + 0.001731947297230363, + -0.023675423115491867, + 0.05205700919032097, + 0.007249859161674976, + 0.010615160688757896, + -0.01295509748160839, + -0.0413564033806324, + -0.0282632764428854, + 0.0013975532492622733, + 0.03310089558362961, + -0.0001151276592281647, + 0.013789849355816841, + -0.003398166038095951, + 0.018403993919491768, + -0.0385432206094265, + 0.04777150973677635, + -0.00794000830501318, + 0.003434316720813513, + -0.04813959077000618, + 0.03241731971502304, + -0.029709303751587868, + -0.053713370114564896, + -0.06357265263795853, + 0.07798034697771072, + -0.018969260156154633, + 0.009090258739888668, + 0.10132712870836258, + 0.0014345255913212895, + -0.009379464201629162, + 0.04782409220933914, + 0.005235278978943825, + 0.028342150151729584, + 0.061416756361722946, + 0.03236473724246025, + 0.024043504148721695, + 0.051452308893203735, + -0.07156524062156677, + -0.029604138806462288, + 0.008294942788779736, + 0.011088406667113304, + 0.031313080340623856, + -0.015682831406593323, + 0.015853725373744965, + 0.04104090481996536, + 0.03523050248622894, + 0.04348600655794144, + -0.034809838980436325, + 0.061259008944034576, + -0.057367876172065735, + 0.005084103439003229, + -0.010575723834335804, + 0.08450062572956085, + 0.0199157502502203, + -0.049191247671842575, + -0.0328642763197422, + -0.026580626145005226, + -0.0023662277963012457, + -0.0017680979799479246, + -0.012718474492430687, + -0.07240656763315201, + 0.015064983628690243, + -0.07219623774290085, + 0.00023990920453798026, + 0.009708106517791748, + 0.03822772577404976, + 0.027658574283123016, + 0.03991037607192993, + 0.03607182949781418, + 0.06015476956963539, + -0.06609662622213364, + 0.1037985235452652, + 0.04537899047136307, + -0.06031251698732376, + -0.02551582269370556, + 0.008919363841414452, + 0.01582743413746357, + 0.03507275506854057, + -0.10132712870836258, + 0.03165486827492714, + -0.0816611498594284, + 0.04624660685658455, + -0.07834842801094055, + 0.013277166523039341, + -0.01657674089074135, + -0.0035854922607541084, + 0.012271519750356674, + 0.01701054908335209, + -0.015866871923208237, + -0.06662245839834213, + 0.005054525565356016, + -0.035624872893095016, + 0.03462579846382141, + 0.027658574283123016, + 0.0359666608273983, + -0.11925788223743439, + -0.08812883496284485, + -0.047193098813295364, + 0.002670222194865346, + 0.0141316382214427, + 0.021953335031867027, + 0.0031927642412483692, + -0.010516568087041378, + -0.04117236286401749, + 0.045037202537059784, + 0.015787998214364052, + -0.04054136946797371, + 0.00389770301990211, + 0.04764005169272423, + -0.014894089661538601, + 0.008524992503225803, + -0.044669121503829956, + 0.11841655522584915, + 0.06415106356143951, + 0.0028608350548893213, + -0.05573780834674835, + -0.01820680871605873, + -0.09060022979974747, + 0.02309701219201088, + 0.025778736919164658, + -0.005731529556214809, + -0.011850857175886631, + -0.061732254922389984, + 0.012264947406947613, + 0.003153327153995633, + -0.050900187343358994, + -0.06231066584587097, + -0.028526190668344498, + -0.0909683108329773, + 0.053608205169439316, + -0.011673389934003353, + -0.013553226366639137, + 0.046877600252628326, + 0.02353082038462162, + 0.04758746922016144, + 0.046062566339969635, + -0.02535807341337204, + 0.0280003622174263, + 0.04140898585319519, + -0.033994805067777634, + 0.02768486551940441, + 0.008702459745109081, + 0.06956709921360016, + -0.03654507175087929, + -0.02337307296693325, + -0.047193098813295364, + 0.0007254788652062416, + 0.02002091519534588, + -0.0038484064862132072, + -0.04330196976661682, + 0.06094351038336754, + 0.01120014488697052, + -0.004742315039038658, + -0.04808700829744339, + 0.018995551392436028, + -0.0008692600531503558, + 0.017812436446547508, + -0.052793171256780624, + 0.027395660057663918, + -0.022636912763118744, + 0.08113531768321991, + 0.06898868829011917, + 0.02892056107521057 + ] + }, + { + "id": "05186f00-83e3-4424-b89c-b19bcc42851b", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "thomaswoods", + "reviewDate": "2021-11-03T11:54:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e284f020-bd90-4e57-8d08-8ebb13c628eb", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "chadduncan", + "reviewDate": "2021-06-12T16:12:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a6610294-aa02-490f-9c7c-5cd241c08019", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonbrent", + "reviewDate": "2022-12-04T13:41:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e47dfbde-37eb-49ab-8954-581cf11fe595", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "rgeorge", + "reviewDate": "2022-05-02T09:00:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "667fbce0-f1db-4c0b-a8c8-ce49adbe579f", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "ihall", + "reviewDate": "2022-08-17T00:56:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4b51ab94-922e-402b-9f80-d3311a6e5294", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "schneiderchristopher", + "reviewDate": "2022-03-23T16:21:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5e288fea-bab4-4599-bccc-12666c3c8d83", + "productId": "46347bcb-473d-4a76-9ca0-da34592e2640", + "category": "Media", + "docType": "customerRating", + "userName": "lopezkeith", + "reviewDate": "2022-12-16T07:18:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Silver)", + "description": "This Luxe Filter 3000 (Silver) is rated 4.4 out of 5 by 4.\n\nRated 4 out of 5 by Dolly19 from Very nice filter The filter was very well made. The color is perfect for my use! I bought the filter on two separate occasions. First time I bought the filter because of the high price of the filters from a Chinese online retailer, and second time because I wanted it to last longer. The product", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-03-09T05:01:49", + "price": 919.6, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-01-04T01:39:05", + "newPrice": 906.25 + }, + { + "priceDate": "2021-08-25T01:39:05", + "newPrice": 842.95 + }, + { + "priceDate": "2022-04-15T01:39:05", + "newPrice": 994.36 + }, + { + "priceDate": "2022-12-04T01:39:05", + "newPrice": 882.86 + }, + { + "priceDate": "2023-10-11T01:39:05", + "newPrice": 919.6 + } + ], + "descriptionVector": [ + -0.009404790587723255, + 0.021718168631196022, + -0.020884089171886444, + 0.04358604550361633, + 0.04039942845702171, + -0.019226621836423874, + -0.0627485066652298, + -0.0024928844068199396, + -0.006817002780735493, + 0.1005173772573471, + -0.004095548298209906, + -0.01549464650452137, + -0.04439873620867729, + -0.049617085605859756, + 0.01934424787759781, + 0.004472488537430763, + -0.08537560701370239, + 0.0038255415856838226, + -0.0015732572646811604, + 0.00010359170846641064, + 0.006763536017388105, + -0.05184129998087883, + -0.04238839074969292, + 0.03434700146317482, + 0.0005740985507145524, + -0.005319935269653797, + 0.01406173873692751, + 0.015120379626750946, + 0.02801654487848282, + -0.056931328028440475, + 0.07404066622257233, + 0.05149911344051361, + 0.00677422946318984, + 0.0954701155424118, + -0.07459672540426254, + -0.0542793832719326, + 0.08905411511659622, + 0.00462219538167119, + 0.06270573288202286, + 0.10778884589672089, + 0.0017470240127295256, + 0.011131764389574528, + -0.04760674014687538, + -0.030091052874922752, + -0.0012364172143861651, + -0.14414618909358978, + -0.032593291252851486, + -0.001999654108658433, + 0.01885235495865345, + 0.009116070345044136, + 0.025300437584519386, + -0.04178956523537636, + -0.07318520545959473, + -0.04456983134150505, + 0.010281643830239773, + -0.009837870486080647, + 0.014190059155225754, + 0.17331761121749878, + 0.039415642619132996, + 0.0013861239422112703, + 0.020734380930662155, + -0.06304791569709778, + 0.016350112855434418, + -0.025749556720256805, + -0.029021717607975006, + -0.0009791087359189987, + -0.0756232813000679, + -0.08413518220186234, + 0.05410828813910484, + 0.026840277016162872, + 0.0015759306261315942, + -0.028722304850816727, + 0.026198677718639374, + 0.014125899411737919, + 0.07771917432546616, + 0.03056155890226364, + 0.07729144394397736, + -0.06488717347383499, + -0.032486360520124435, + 0.019076913595199585, + 0.039415642619132996, + 0.004571401979774237, + -0.0340048149228096, + -0.00397524842992425, + 0.020039314404129982, + 0.007672469597309828, + -0.006533629260957241, + -0.07883128523826599, + -0.03742668032646179, + -0.009982231073081493, + -0.021440142765641212, + 0.033192120492458344, + -0.02371782250702381, + -0.08678712695837021, + -0.002102577593177557, + 0.009495683945715427, + -0.04508311301469803, + 0.023503955453634262, + -0.06681197136640549, + -0.013505685143172741, + -0.056418050080537796, + -0.046451859176158905, + -0.022990675643086433, + 0.05962605029344559, + -0.012425658293068409, + 0.040335267782211304, + -0.010297683998942375, + -0.07943011075258255, + 0.004533975385129452, + -0.11882437020540237, + 0.026369770988821983, + -0.014414618723094463, + -0.08725763857364655, + -0.07126040011644363, + -0.028080705553293228, + 0.03524523973464966, + -0.02793099731206894, + -0.021878568455576897, + 0.015013446100056171, + -0.006672642659395933, + 0.04478369653224945, + 0.07553773373365402, + 0.03156673163175583, + 0.022135209292173386, + 0.05500653013586998, + -0.003673161379992962, + 0.01693824678659439, + -0.04065607115626335, + 0.09239044040441513, + -0.007961190305650234, + -0.09367363899946213, + 0.039073456078767776, + -0.002046437468379736, + 0.004830715246498585, + -0.08105549961328506, + 0.07545219361782074, + -0.025471530854701996, + 0.11728452891111374, + -0.02023179456591606, + 0.04129767045378685, + -0.016328725963830948, + -0.02827318385243416, + 0.024722997099161148, + 0.020456355065107346, + 0.029128652065992355, + -0.06287682801485062, + -0.11018414795398712, + 0.03520246595144272, + -0.0008822003728710115, + 0.01533424574881792, + 0.059839919209480286, + -0.097608782351017, + -0.03141702711582184, + -0.015152459032833576, + 0.025022409856319427, + 0.021985502913594246, + -0.052825089544057846, + 0.05222626030445099, + -0.006266295909881592, + -0.05757293105125427, + -0.007383749820291996, + -0.023140382021665573, + 0.009228350594639778, + -0.011281470768153667, + 0.0062395622953772545, + 0.05115692690014839, + -0.011751977726817131, + 0.008303376846015453, + -0.1039392426609993, + 0.04790615290403366, + 0.01564435288310051, + 0.0014542939607053995, + 0.022755421698093414, + -0.015184539370238781, + -0.0741262137889862, + 0.009484990499913692, + 0.02100171521306038, + -0.028914785012602806, + -0.03124593198299408, + 0.006309069227427244, + 0.022520169615745544, + 0.06625591963529587, + -0.043650202453136444, + -0.05838562175631523, + 0.06569986790418625, + -0.0337909460067749, + 0.0414046049118042, + -0.032700225710868835, + 0.04931767284870148, + 0.03744806721806526, + -0.05171298235654831, + 0.04833388701081276, + 0.021097954362630844, + 0.03370539844036102, + -0.07147426903247833, + 0.007223349530249834, + -0.028529824689030647, + -0.008356843143701553, + -0.021343901753425598, + -0.032550521194934845, + -0.01674576662480831, + 0.02119419537484646, + 0.06159362569451332, + -0.06488717347383499, + 0.03096790611743927, + -0.03195169195532799, + 0.06617037206888199, + 0.04863329976797104, + -0.04456983134150505, + -0.03879543021321297, + 0.010228177532553673, + 0.009944804012775421, + -0.025107957422733307, + 0.006731456145644188, + 0.03545910865068436, + 0.06488717347383499, + -0.012169018387794495, + -0.03554465249180794, + -0.03498860076069832, + -0.050130367279052734, + 0.014147285372018814, + -0.06133698299527168, + 0.001518453937023878, + 0.0014583038864657283, + 0.01400827243924141, + -0.03811105713248253, + 0.04074161499738693, + 0.05872781202197075, + 0.07972952723503113, + 0.039928924292325974, + 0.01360192522406578, + -0.032614678144454956, + -0.036442894488573074, + 0.030347691848874092, + 0.015344939194619656, + 0.039394255727529526, + -0.0834508091211319, + -0.03096790611743927, + -0.011088991537690163, + 0.025385983288288116, + 0.025407370179891586, + -0.0308395866304636, + -0.026348384097218513, + 0.02716107666492462, + 0.046537406742572784, + -0.057273514568805695, + 0.0673680305480957, + -0.06137975677847862, + -0.07622211426496506, + 0.029791638255119324, + -0.019536728039383888, + -0.02771713025867939, + -0.08507619053125381, + 0.12233178317546844, + 0.004547341726720333, + 0.06723970919847488, + -0.0027535343542695045, + 0.017847180366516113, + -0.06646978855133057, + -0.05474988743662834, + 0.02095894142985344, + 0.07185922563076019, + 0.053252819925546646, + -0.008260603062808514, + -0.03445393219590187, + -0.03563020005822182, + -0.0013861239422112703, + -0.04016417637467384, + -0.013024485670030117, + 0.05162743479013443, + -0.04739287123084068, + -0.00044711519149132073, + 0.026797503232955933, + -0.010249564424157143, + -0.07049047946929932, + 0.030283533036708832, + -0.06967778503894806, + 0.05171298235654831, + -0.011473950929939747, + -0.039907537400722504, + 0.10633455216884613, + 0.04362881928682327, + -0.03845324367284775, + -0.02446635626256466, + 0.10599236190319061, + -0.0366353765130043, + 0.069720558822155, + -0.04422764480113983, + 0.010800271295011044, + -0.006811656057834625, + -0.01945118047297001, + 0.02429526299238205, + -0.007421176414936781, + -0.11035524308681488, + -0.022605715319514275, + -0.01396549865603447, + 0.047050684690475464, + -0.00523973535746336, + -0.010800271295011044, + 0.0018085107440128922, + -0.030091052874922752, + 0.012992405332624912, + 0.004138321615755558, + -0.026070356369018555, + -0.032978251576423645, + 0.08289474993944168, + 0.03225110471248627, + 0.008447736501693726, + -0.046323537826538086, + -0.0633901059627533, + 0.02072368748486042, + 0.039415642619132996, + 0.02746049128472805, + 0.010709377937018871, + 0.08759982138872147, + -0.028765078634023666, + -0.05188407376408577, + 0.02812347747385502, + 0.013067258521914482, + 0.04803447425365448, + -0.009912723675370216, + 0.03866710886359215, + 0.026733344420790672, + 0.06197858601808548, + 0.030262146145105362, + -0.01570851355791092, + -0.03332044184207916, + -0.010907204821705818, + -0.01537701953202486, + 0.01783648692071438, + -0.022605715319514275, + -0.01232941821217537, + -0.03071126528084278, + 0.010928590781986713, + 0.004221194889396429, + -0.04172540456056595, + -0.002217530971392989, + -0.010864431038498878, + 0.03451809287071228, + 0.01204069796949625, + 0.023439796641469002, + 0.012725071981549263, + 0.012949631549417973, + -0.005376075394451618, + 0.09709550440311432, + -0.039629507809877396, + 0.02478715591132641, + -0.008538629859685898, + 0.03659260272979736, + 0.04213175177574158, + 0.0012344121932983398, + -0.03738390654325485, + 0.0002462809206917882, + -0.004052774980664253, + 0.029813025146722794, + 0.0372769758105278, + 0.03481750562787056, + -0.018991367891430855, + 0.003622368210926652, + 0.017569154500961304, + 0.00880061648786068, + 0.014018965885043144, + 0.026369770988821983, + -0.0048895287327468395, + -0.007795443292707205, + 0.05812898278236389, + -0.067154161632061, + 0.06689751893281937, + -0.03043323941528797, + -0.026412544772028923, + -0.008207136765122414, + 0.0019141074735671282, + -0.03800412267446518, + 0.025364596396684647, + -0.010249564424157143, + -0.019440487027168274, + 0.08062776923179626, + 0.02771713025867939, + 0.004052774980664253, + 0.03768332302570343, + -0.014927899464964867, + 0.04572471231222153, + 0.007763362955302, + -0.04046358913183212, + 0.04888993874192238, + 0.013858565129339695, + -0.028679531067609787, + 0.06681197136640549, + -0.03995031118392944, + -0.03143841400742531, + 0.008084163069725037, + -0.032529134303331375, + 0.015238005667924881, + 0.03199446573853493, + -0.0035127613227814436, + 0.006817002780735493, + -0.0072019631043076515, + 0.04401377588510513, + 0.08563224971294403, + -0.09572675824165344, + -0.026412544772028923, + 0.03190891817212105, + -0.03056155890226364, + -0.06591373682022095, + 0.039437029510736465, + -0.03413313254714012, + 0.07019107043743134, + 0.03453947976231575, + -0.02031734213232994, + -0.11548804491758347, + 0.02453051693737507, + -0.036164868623018265, + 0.002750860992819071, + -0.01708795316517353, + -0.004290701821446419, + 0.03569436073303223, + 0.07511000335216522, + -0.05898445099592209, + 0.02442358247935772, + -0.029706092551350594, + 0.036164868623018265, + 0.062106903642416, + 0.017932727932929993, + 0.02418833039700985, + 0.03438977524638176, + 0.026754731312394142, + -0.02367504872381687, + -0.0015518706059083343, + 0.03376955911517143, + -0.010827003978192806, + -0.002831061137840152, + -0.014788885600864887, + -0.023375635966658592, + -0.01406173873692751, + -0.009533110074698925, + 0.03424006700515747, + 0.01730182021856308, + 0.049617085605859756, + -0.02048843540251255, + 0.042987216264009476, + 0.03691340237855911, + -0.057102423161268234, + 0.012607445009052753, + 0.030133824795484543, + -0.0743400827050209, + -0.06933560222387314, + -0.05954050272703171, + 0.05590476840734482, + -0.04623799026012421, + -0.018028967082500458, + 0.04422764480113983, + 0.01698102056980133, + -0.07934456318616867, + -0.03396204113960266, + 0.05218348652124405, + -0.004213174805045128, + 0.005993615835905075, + 0.10120175033807755, + 0.04191788285970688, + -0.025942036882042885, + -0.08511896431446075, + 0.09743769466876984, + -0.009506377391517162, + 0.039501190185546875, + -0.02188926190137863, + -0.009896684437990189, + -0.09067950397729874, + -0.04211036488413811, + 0.023012062534689903, + 0.00998757779598236, + -0.02418833039700985, + 0.0007512069423682988, + -0.057401835918426514, + 0.0070522562600672245, + -0.05141356587409973, + 0.04191788285970688, + 0.04439873620867729, + -0.025257663801312447, + 0.039116229861974716, + 0.007635043002665043, + 0.0006292361067607999, + 0.016307339072227478, + -0.020071394741535187, + 0.07280024141073227, + 0.06522935628890991, + 0.03695617616176605, + 0.05214071273803711, + 0.013259738683700562, + 0.07164536416530609, + 0.060139331966638565, + -0.011217311024665833, + -0.014917206019163132, + -0.07237251102924347, + -0.0629623755812645, + -0.060438744723796844, + 0.011826831847429276, + -0.035801295191049576, + -0.025086570531129837, + -0.05184129998087883, + -0.01196584478020668, + 0.07930178940296173, + 0.0387740433216095, + -0.009458256885409355, + 0.0007512069423682988, + -0.026498090475797653, + 0.02188926190137863, + -0.03387649357318878, + -0.06270573288202286, + -0.04927489906549454, + -0.024744383990764618, + 0.032208334654569626, + 0.012992405332624912 + ] + }, + { + "id": "cf099091-546b-4561-8ab7-8f581140aa18", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "rodriguezconnie", + "reviewDate": "2022-06-10T11:23:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7dff1f7e-bd05-4def-994f-46692a6dab6a", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "vickiflores", + "reviewDate": "2022-12-04T21:27:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fb746133-5aef-4de2-ae22-65b5d6c86870", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "cbyrd", + "reviewDate": "2021-03-18T11:36:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "28b14c74-74fc-4eea-a62c-6102dc516bd1", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "timothymorton", + "reviewDate": "2021-01-07T23:56:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "21ddfc8d-9981-4ded-8980-9017f8f974d0", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "christopher09", + "reviewDate": "2021-12-21T04:06:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "92a26f6f-e3c1-498f-ac92-cb654d10950c", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "fletcheranne", + "reviewDate": "2022-02-23T03:28:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9f6b5df3-c117-47ce-8cb0-d1266c2832a1", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "leahlee", + "reviewDate": "2021-08-07T13:48:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fdc8bbd3-67e1-47b4-9eaa-dcf7eae3f58a", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "johnsonjames", + "reviewDate": "2022-07-12T06:40:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f156e253-250f-40b5-a03b-855244b8b426", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "jacklewis", + "reviewDate": "2021-06-04T02:01:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9220bb75-fb0e-4d23-a72b-4e3a4d4adee6", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "caguilar", + "reviewDate": "2022-02-24T11:14:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4c30a1c2-c56f-4982-a931-ba04fb4b3511", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "mmartinez", + "reviewDate": "2021-11-02T04:55:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dc37377f-9ae9-4e88-8619-72810b809bc5", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "oandrews", + "reviewDate": "2022-07-19T17:09:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d5a7b517-77bc-433b-9914-3c3ba227d12d", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "mhernandez", + "reviewDate": "2021-12-31T01:28:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f5f3cec4-00a1-471a-aeb6-520d7f5c205d", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "mware", + "reviewDate": "2021-04-15T09:44:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "157b2ecc-f530-4046-8692-c965fcd34518", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "lopezjeffrey", + "reviewDate": "2022-05-24T04:19:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7ba5d5a6-1d21-46b3-acbb-a60559734df2", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "fostertaylor", + "reviewDate": "2022-06-23T22:31:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "11b00f00-0359-43ec-bd1f-6544afb2a0e1", + "productId": "5658a49c-f22a-4d25-9dc2-3aa730c1ca79", + "category": "Other", + "docType": "customerRating", + "userName": "david04", + "reviewDate": "2021-01-04T01:39:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard 3000 (Black)", + "description": "This Premium Keyboard 3000 (Black) is equipped with two customisable buttons inside the switch. You can set the brightness, volume and number of switches on the main keyboard within the Control Panel menu.\n\nThis keyboard uses a full capacitive key pad for easier control when using multiple keyboards.\n\nThe special pad has a large number of buttons with 4 different sized buttons. The buttons do not fit together easily.\n\nThere's also a 'Matching", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-12-01T16:38:34", + "price": 609.61, + "stock": 82, + "priceHistory": [ + { + "priceDate": "2021-04-28T11:31:15", + "newPrice": 633.56 + }, + { + "priceDate": "2021-12-11T11:31:15", + "newPrice": 628.01 + }, + { + "priceDate": "2022-07-26T11:31:15", + "newPrice": 661.61 + }, + { + "priceDate": "2022-10-21T11:31:15", + "newPrice": 609.61 + } + ], + "descriptionVector": [ + -0.03480632230639458, + -0.003407746320590377, + -0.015408383682370186, + 0.03585486114025116, + -0.020510412752628326, + 0.037414878606796265, + -0.020459264516830444, + 0.05595608800649643, + -0.008413872681558132, + 0.042529694736003876, + 0.06086631119251251, + 0.02301667258143425, + -0.011968669481575489, + -0.06971494108438492, + -0.028924284502863884, + 0.04045819491147995, + -0.06035482883453369, + -0.006230485625565052, + 0.019206134602427483, + -0.026597043499350548, + -0.036238472908735275, + -0.02958921156823635, + -0.08449675887823105, + -0.0024982679169625044, + -0.014756244607269764, + -0.010734720155596733, + 0.035496823489665985, + -0.016674300655722618, + -0.010037826374173164, + 0.05350097641348839, + -0.018605142831802368, + -0.03025413677096367, + 0.005747774615883827, + 0.023157330229878426, + -0.006364749278873205, + -0.10505831986665726, + -0.0706356093287468, + -0.033067286014556885, + 0.0268783587962389, + -0.03877030685544014, + 0.011041609570384026, + 0.06700409203767776, + -0.0025078582111746073, + 0.004523415584117174, + -0.016418559476733208, + 0.007135168649256229, + -0.006975330412387848, + -0.04429430887103081, + 0.004245297517627478, + -0.003497255500406027, + 0.07252809405326843, + 0.016546430066227913, + -0.06772016733884811, + 0.02300388552248478, + 0.05385901406407356, + 0.050508808344602585, + -0.015063133090734482, + 0.12920024991035461, + 0.10030154138803482, + -0.04501038044691086, + 0.030484303832054138, + -0.058513496071100235, + -0.06552079319953918, + -0.013554262928664684, + -0.036724381148815155, + -0.04094410315155983, + -0.02129042148590088, + -0.019282856956124306, + 0.035215508192777634, + 0.0024167506489902735, + -0.06475356966257095, + -0.012096540071070194, + 0.010466192848980427, + 0.059229571372270584, + 0.010510947555303574, + 0.004539399407804012, + 0.10296124964952469, + -0.0008463422418572009, + 0.05329638347029686, + 0.04004900902509689, + -0.013656559400260448, + 0.03224891424179077, + -0.04288773238658905, + -0.0169428288936615, + 0.046416956931352615, + 0.02736426703631878, + -0.01571527309715748, + -0.08009801805019379, + -0.008931747637689114, + 0.06823164969682693, + -0.08229739218950272, + -0.010728326626121998, + 0.033885657787323, + -0.07830783724784851, + 0.008580104447901249, + -0.02159731090068817, + -0.02956363745033741, + 0.008791089989244938, + -0.05994564667344093, + -0.0011772068683058023, + 0.024806858971714973, + -0.004839894827455282, + -0.05984335020184517, + -0.06592997908592224, + 0.037210285663604736, + 0.0703287199139595, + 0.07708027958869934, + 0.010108155198395252, + -0.05140390247106552, + -0.0940614715218544, + -0.017390374094247818, + -0.06250305473804474, + -0.008957321755588055, + 0.004862272180616856, + -0.050738975405693054, + -0.01104800309985876, + -0.06961264461278915, + 0.006128189153969288, + 0.022236663848161697, + -0.059229571372270584, + 0.033323027193546295, + 0.060201384127140045, + 0.021904200315475464, + 0.07922850549221039, + -0.06311683356761932, + -0.005121209658682346, + 0.0012523307232186198, + 0.003159997286275029, + 0.009877989068627357, + -0.022147154435515404, + -0.0494602732360363, + 0.09498213231563568, + 0.0672086849808693, + 0.10567209869623184, + -0.018950393423438072, + 0.04912780970335007, + -0.008861418813467026, + 0.10326813906431198, + -0.02935904450714588, + 0.07165857404470444, + 0.02155894972383976, + -0.0060099088586866856, + 0.03542010113596916, + 0.03247908130288124, + -0.07779635488986969, + 0.014999198727309704, + -0.056058384478092194, + 0.13656559586524963, + 0.025842608883976936, + 0.05713249742984772, + -0.023413071408867836, + -0.05943416431546211, + -0.024065209552645683, + -0.07037986814975739, + 0.05020191892981529, + 0.03424369543790817, + -0.07529009133577347, + 0.00472161453217268, + 0.02984495274722576, + 0.04002343490719795, + -0.02297831140458584, + 0.0006877030245959759, + -0.006470242515206337, + 0.04892321676015854, + 0.008810270577669144, + 0.07124938815832138, + 0.018835309892892838, + 0.017582179978489876, + 0.0025909740943461657, + 0.025331126525998116, + -0.05524001270532608, + -0.01381000317633152, + 0.0600479431450367, + -0.01941072754561901, + 0.05856464430689812, + -0.05882038548588753, + 0.020011717453598976, + 0.008995682932436466, + 0.04562415927648544, + -0.05237571895122528, + 0.012691137380897999, + -0.013950660824775696, + -0.07385794818401337, + 0.01136767864227295, + 0.10638817399740219, + -0.000942245009355247, + 0.010140122845768929, + 0.03396238014101982, + -0.007819275371730328, + -0.015907078981399536, + 0.026980655267834663, + 0.019039902836084366, + -0.015549041330814362, + 0.04598219692707062, + -0.00257179350592196, + 0.05789971724152565, + 7.976915367180482e-05, + 0.01379721611738205, + 0.07217005640268326, + -0.020011717453598976, + -0.00744845112785697, + 0.05119930952787399, + 0.04892321676015854, + 0.0007000904297456145, + -0.012742285616695881, + 0.04306675121188164, + -0.058973830193281174, + 0.00016383395995944738, + -0.0010757098207250237, + 0.039358511567115784, + 0.024589478969573975, + -0.04938355088233948, + 0.05158292129635811, + -0.06644146144390106, + 0.029001006856560707, + 0.009679789654910564, + -0.03339974954724312, + 0.06956149637699127, + -0.001777398632839322, + -0.03779849037528038, + 0.0706356093287468, + 0.013515901751816273, + 0.005092438776046038, + -0.0063359783962368965, + 0.00046353021753020585, + 0.04022802785038948, + 0.07165857404470444, + -0.06511160731315613, + 0.010204058140516281, + -0.01115669310092926, + -0.1017848402261734, + -0.06741327792406082, + 0.002403963590040803, + 0.013349669985473156, + 0.004302839282900095, + 0.014526077546179295, + -0.005821300204843283, + -0.04270871356129646, + -0.03455058112740517, + 0.07682453840970993, + -0.02419308014214039, + -0.0026916719507426023, + -0.03518993407487869, + -0.0430411770939827, + 0.05194095894694328, + -0.03074004501104355, + 0.08245083689689636, + -0.0075699277222156525, + -0.08986731618642807, + -0.035957157611846924, + -0.04874419793486595, + 0.08828172832727432, + -0.007979113608598709, + 0.04961371794342995, + 0.03518993407487869, + 0.028157062828540802, + 0.026059988886117935, + -0.0257275253534317, + -0.054165903478860855, + -0.05309179052710533, + 0.03314400836825371, + 0.06766901910305023, + -0.023911764845252037, + 0.051224883645772934, + 0.011533910408616066, + 0.06153123825788498, + 0.023860616609454155, + -0.11784536391496658, + -0.044012993574142456, + -0.006936969235539436, + 0.0703287199139595, + -0.01489690225571394, + 0.05887153372168541, + -0.021955348551273346, + 0.022211089730262756, + 0.026520321145653725, + -0.032606951892375946, + 0.07810324430465698, + -0.037210285663604736, + -0.08224624395370483, + 0.021136976778507233, + 0.07247694581747055, + 0.07355105876922607, + 0.037926360964775085, + 0.013515901751816273, + 0.026955081149935722, + -0.04631466045975685, + 0.06495816260576248, + -0.0528871975839138, + -0.017313651740550995, + -0.016277901828289032, + 0.022722570225596428, + 0.01675102300941944, + 0.017032338306307793, + -0.0006841066642664373, + 0.0034812716767191887, + -0.0036762740928679705, + 0.026827210560441017, + 0.03337417542934418, + -0.025395061820745468, + -0.04048376902937889, + -0.0259449053555727, + -0.12285788357257843, + -0.1103777289390564, + 0.009398474358022213, + 0.04815599322319031, + 0.026264579966664314, + -0.0042900522239506245, + -0.0606105700135231, + 0.023195691406726837, + 0.03222334012389183, + -0.00690500158816576, + -0.04605891928076744, + -0.007806488312780857, + 0.0460333451628685, + -0.015293300151824951, + 0.0514550507068634, + 0.03319515660405159, + -0.03056102618575096, + -0.03247908130288124, + -0.026827210560441017, + -0.0383099727332592, + -0.067771315574646, + 0.06879428029060364, + 0.05324523523449898, + -0.09155520796775818, + -0.04140443727374077, + 0.08444561809301376, + 0.016840532422065735, + -0.0259449053555727, + -0.0817859098315239, + 0.029256748035550117, + -0.10526291280984879, + -0.01430869847536087, + 0.08009801805019379, + -0.043757252395153046, + 0.0220192838460207, + 0.04621236398816109, + 0.003957589156925678, + 0.036264047026634216, + 0.04002343490719795, + 0.07390909641981125, + -0.009251424111425877, + -0.04071393609046936, + -0.02568916417658329, + -0.018720226362347603, + -0.043271344155073166, + -0.08101868629455566, + -0.011668174527585506, + -0.04089295491576195, + 0.0016511265421286225, + -0.02542063593864441, + 0.042759861797094345, + 0.019730404019355774, + -0.0036347161512821913, + -0.007691404782235622, + -0.009730937890708447, + -0.008835844695568085, + -0.024039635434746742, + 0.061428941786289215, + 0.02419308014214039, + -0.011962275952100754, + 0.0426064170897007, + 0.04626351222395897, + -0.08654268831014633, + 0.027031803503632545, + -0.002036336110904813, + 0.038182102143764496, + 0.003970376215875149, + -0.01116948015987873, + 0.011674568057060242, + -0.014717883430421352, + -0.024832433089613914, + 0.09099257737398148, + -0.025804247707128525, + 0.09743724763393402, + -0.03636634349822998, + -0.018336616456508636, + -0.05600723624229431, + 0.03470402583479881, + -0.047567788511514664, + 0.06025253236293793, + -0.03360434249043465, + 0.016418559476733208, + 0.07084020227193832, + -0.03782406449317932, + -0.02718524821102619, + -0.025100959464907646, + -0.02736426703631878, + 0.0157919954508543, + -0.017492670565843582, + 0.0751877948641777, + -0.008177312090992928, + 0.053654421120882034, + -0.012499331496655941, + -0.018234319984912872, + -0.06951034814119339, + 0.047874677926301956, + 0.008771909400820732, + 0.013119502924382687, + 0.08096753805875778, + 0.025305552408099174, + -0.04406414180994034, + 0.014474929310381413, + -0.031916454434394836, + -0.09109487384557724, + -0.006441471632570028, + 0.01795300468802452, + -0.026724914088845253, + -0.015203790739178658, + -0.015843143686652184, + -0.04549628868699074, + -0.01382279023528099, + 0.010837016627192497, + 0.03204432129859924, + -0.004881452769041061, + 0.06725983321666718, + 0.09431721270084381, + 0.038642436265945435, + -0.07467631250619888, + 0.07841013371944427, + -0.006195321213454008, + -0.040586065500974655, + 0.045163825154304504, + -0.008209279738366604, + -0.007167136296629906, + -0.030202988535165787, + 0.01964089460670948, + 0.04053491726517677, + -0.05084127187728882, + 0.029461340978741646, + -0.007953539490699768, + -0.008081409148871899, + -0.005610313732177019, + -0.03493419289588928, + -0.006553358398377895, + -0.04455005005002022, + -0.008369117975234985, + -0.0004923010710626841, + 0.05703020095825195, + 0.014692309312522411, + -0.03628962114453316, + -0.009846021421253681, + 0.008695187047123909, + -0.06480471789836884, + 0.048846494406461716, + -0.00202674581669271, + 0.03025413677096367, + 0.053910162299871445, + 0.03273482248187065, + -0.006936969235539436, + -0.032300062477588654, + -0.052017681300640106, + 0.0032431131694465876, + 0.084343321621418, + -0.018771374598145485, + 0.03247908130288124, + -0.01649528183043003, + 0.01136767864227295, + -0.006182534154504538, + -0.032095469534397125, + 0.05738823860883713, + 0.05856464430689812, + -0.027082951739430428, + 5.2259533731557894e-06, + -0.0440385676920414, + -0.023898977786302567, + -0.014756244607269764, + 0.022351747378706932, + 0.04777238145470619, + 0.006134582683444023, + -0.04112312197685242, + 0.010101761668920517, + -0.0055144112557172775, + 0.036494214087724686, + -0.1326783299446106, + 0.0474654920399189, + 0.023413071408867836, + -0.0002519446425139904, + -0.04171132668852806, + -0.015216577798128128, + -0.022594699636101723, + -0.03419254720211029, + 0.03511321172118187, + 0.020165162160992622, + -0.009846021421253681, + -0.0008966912282630801, + -0.02419308014214039, + 0.02297831140458584, + -0.0007528369897045195, + 0.03004954569041729, + 0.05524001270532608, + 0.011661780998110771, + -0.03483189642429352, + -0.012441790662705898, + 0.032300062477588654, + -0.06460012495517731, + -0.0021082633174955845, + 0.020510412752628326, + 0.0663391649723053, + 0.036008305847644806, + -0.04066278785467148, + -0.024141931906342506, + 0.02618785947561264, + 0.025024237111210823, + -0.010306354612112045, + -0.06357716768980026, + -0.028924284502863884, + 0.07830783724784851, + -0.05063667893409729, + -0.03081676736474037, + -0.03969097137451172 + ] + }, + { + "id": "f0a435ff-2ffd-4ea9-835b-27ed13dcc285", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dfuentes", + "reviewDate": "2021-06-12T13:56:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9c0f7b8c-d2e9-427f-a7be-a57fa465040c", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rcarter", + "reviewDate": "2021-08-08T17:48:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f9dd1aca-e115-406e-adec-e1d4c8122163", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marisa36", + "reviewDate": "2021-04-28T11:31:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "316c8056-a1ea-4dc3-bbfe-5b1697609e46", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kennethcooley", + "reviewDate": "2021-07-12T07:19:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ea7f3750-780f-48b1-9edd-bf3589095b6d", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steven29", + "reviewDate": "2022-07-28T02:17:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "787ace07-9b44-4aa7-a108-4a5b650531d0", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lisa46", + "reviewDate": "2021-05-19T00:21:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "61bafd7e-1a1b-4fac-b6ad-42df698cd629", + "productId": "c4cedb85-a3e3-4949-a968-87dae86efcca", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnsonkaren", + "reviewDate": "2021-11-01T21:58:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Gold)", + "description": "This Awesome Phone Super (Gold) is $1,250 USD and comes with a 1TB hard drive. The box comes with 5 different colors of Gold and is $2,000 USD. The", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-07-29T18:42:11", + "price": 497.67, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2021-01-27T10:35:23", + "newPrice": 464.41 + }, + { + "priceDate": "2021-08-18T10:35:23", + "newPrice": 490.39 + }, + { + "priceDate": "2022-03-09T10:35:23", + "newPrice": 516.76 + }, + { + "priceDate": "2022-09-28T10:35:23", + "newPrice": 497.73 + }, + { + "priceDate": "2023-06-23T10:35:23", + "newPrice": 497.67 + } + ], + "descriptionVector": [ + -0.07010358572006226, + 0.022499779239296913, + -0.02043514885008335, + 0.02423594519495964, + -0.04265338554978371, + -0.09262682497501373, + 0.00026119480025954545, + 0.02651173062622547, + 0.0191916786134243, + 0.022534972056746483, + 0.03566179797053337, + -0.02458787150681019, + 0.06245506927371025, + -0.07366976886987686, + 0.06846126914024353, + -0.02210092917084694, + -0.017514165490865707, + -0.056918106973171234, + -0.014745684340596199, + 0.014581452123820782, + 0.12322089821100235, + -0.03843028098344803, + -0.031086765229701996, + -0.07854980230331421, + -0.0031380036380141973, + -0.04509340599179268, + 0.0009362688288092613, + 0.008358233608305454, + 0.051428068429231644, + -0.03857104852795601, + 0.019250333309173584, + -0.0004567701544146985, + -0.001640853239223361, + 0.018100708723068237, + 0.0014128348557278514, + 0.06742895394563675, + -0.017338203266263008, + 0.01830013282597065, + 0.03373793885111809, + -0.0515219122171402, + -0.0017654936527833343, + -0.01974302902817726, + -0.028318282216787338, + 0.041832227259874344, + 0.04504648223519325, + -0.02475210279226303, + 0.008399291895329952, + 0.04661841690540314, + 0.007425630930811167, + -0.028529439121484756, + -0.045351482927799225, + 0.0060472553595900536, + -0.04553917795419693, + -0.033996015787124634, + 0.0383833572268486, + -0.029022134840488434, + -0.014241257682442665, + 0.11149004101753235, + -0.004557436797767878, + 0.011836431920528412, + 0.0060883136466145515, + -0.023274015635252, + 0.010522576980292797, + 0.016141656786203384, + 0.02050553448498249, + 0.009173528291285038, + -0.017995130270719528, + 0.02292208932340145, + -0.07864364981651306, + 0.09023373574018478, + 0.004783255979418755, + 0.02357901819050312, + 0.007935923524200916, + 0.06639663875102997, + 0.010405267588794231, + 0.06925896555185318, + 0.023403054103255272, + -0.030922532081604004, + 0.056918106973171234, + -0.023391323164105415, + 0.03596679866313934, + 0.04453032463788986, + 0.01885148324072361, + -0.019461488351225853, + 0.02693404257297516, + 0.05307038500905037, + -0.022206507623195648, + -0.1400194764137268, + -0.03139176592230797, + 0.015167995356023312, + -0.007067840080708265, + 0.08357060700654984, + -0.046594955027103424, + -0.006199756637215614, + 0.04668880254030228, + 0.07254360616207123, + 0.0013747095363214612, + 0.06250199675559998, + -0.06203275918960571, + 0.0014582918956875801, + 0.06958743184804916, + -0.03779681399464607, + -0.05020805820822716, + 0.00017138045222964138, + -0.0675228014588356, + 0.05236653611063957, + 0.06728818267583847, + 0.025150952860713005, + 0.03645949438214302, + -0.1768074333667755, + 0.007713037077337503, + 0.049598053097724915, + 0.0014707559021189809, + 0.08704294264316559, + 0.03793758526444435, + 0.024540947750210762, + 0.02098649926483631, + 0.025221336632966995, + 0.008522465825080872, + -0.04936343431472778, + 0.005786243826150894, + 0.013302789069712162, + -0.11402390897274017, + -0.03793758526444435, + 0.04021336883306503, + -0.09760071337223053, + -0.007883134298026562, + 0.03315139561891556, + 0.01139065995812416, + -0.06456662714481354, + -0.079253651201725, + 0.06085967272520065, + 0.0249632578343153, + 0.04591456428170204, + -0.06925896555185318, + 0.02178419753909111, + 0.06358122825622559, + 0.040893759578466415, + 0.015543382614850998, + 0.08469676971435547, + -0.034089863300323486, + -0.02613634429872036, + 0.017877822741866112, + 0.017525896430015564, + -0.04225453734397888, + 0.04636033624410629, + -0.015179726295173168, + 0.021936697885394096, + 0.006023793946951628, + 0.053258080035448074, + 0.04075298830866814, + -0.11749623715877533, + -0.04682957008481026, + -0.025807879865169525, + -0.00768957519903779, + 0.04511686787009239, + -0.07043205201625824, + -0.035262949764728546, + 0.0022977811750024557, + 0.08952987939119339, + -0.020071491599082947, + -0.04875343292951584, + -0.04950420558452606, + -0.06968127936124802, + -0.03315139561891556, + 0.0055398959666490555, + 0.08117751032114029, + 0.04912881925702095, + -0.007179283071309328, + 0.05705887824296951, + 0.10961310565471649, + -0.0025279992260038853, + 0.03096945583820343, + -0.043591856956481934, + -0.01080998219549656, + 0.06578662991523743, + 0.0634404644370079, + 0.03871181979775429, + -0.026370961219072342, + -0.07099512964487076, + 0.04307569935917854, + 0.051944226026535034, + -0.02475210279226303, + -0.0241655595600605, + 0.0011664868798106909, + 0.07263745367527008, + -0.061891987919807434, + 0.03521602600812912, + -0.016493581235408783, + -0.004384406842291355, + 0.04131606966257095, + -0.030124833807349205, + -0.032471004873514175, + 0.040236830711364746, + 0.03767950460314751, + 0.001778690842911601, + 0.047486498951911926, + 0.03258831426501274, + -0.038688357919454575, + 0.035919878631830215, + 0.007038512732833624, + 0.04028375446796417, + 0.06390969455242157, + -0.018311863765120506, + -0.027544045820832253, + -0.058466579765081406, + -0.03401947766542435, + -0.0042758965864777565, + 0.03857104852795601, + 0.0826321393251419, + -0.0015220784116536379, + 0.019367640838027, + -0.03010137379169464, + 0.020153608173131943, + 0.09769455343484879, + 0.03249446675181389, + 0.007994577288627625, + 0.007044378202408552, + 0.024634795263409615, + -0.0707135945558548, + 0.03265869989991188, + -0.012258742935955524, + -0.0002745753154158592, + 0.022007083520293236, + -0.03753873333334923, + -0.08807525783777237, + 0.03878220543265343, + 0.05719964578747749, + 0.052601151168346405, + 0.019696105271577835, + -0.012387782335281372, + -0.08826295286417007, + -0.010241036303341389, + 0.004231906030327082, + -0.003082282142713666, + -0.014112218283116817, + -0.004226040560752153, + 0.009918437339365482, + -0.06719433516263962, + 0.013971447944641113, + 0.0008563523879274726, + 0.01559030544012785, + 0.006481297314167023, + -0.09722532331943512, + -0.016129925847053528, + -0.03176715597510338, + 0.046548031270504, + -0.032987162470817566, + -0.06339354068040848, + 0.03179061412811279, + 0.026183268055319786, + -0.05748118832707405, + -0.09389375895261765, + 0.05119344964623451, + 0.020904382690787315, + 0.02068149670958519, + 0.029702523723244667, + -0.019731298089027405, + 0.11505622416734695, + -0.041550688445568085, + -0.026324037462472916, + -0.02928021363914013, + -0.027544045820832253, + -0.00669831782579422, + -0.06531739979982376, + 0.08211598545312881, + 0.039274901151657104, + -0.07348207384347916, + -0.036858346313238144, + 0.005091190803796053, + -0.01200066413730383, + -0.05766887962818146, + 0.04936343431472778, + 0.0017977535026147962, + -0.012892208993434906, + 0.013689907267689705, + -0.06179814040660858, + 0.04009605944156647, + -0.029444444924592972, + -0.009021027013659477, + 0.06217353045940399, + 0.006446104496717453, + 0.10135458409786224, + -0.012211819179356098, + 0.07240283489227295, + -0.11439929157495499, + -0.0630650743842125, + 0.011103253811597824, + 0.02050553448498249, + -0.04973882436752319, + -0.033503320068120956, + 0.05536963418126106, + 0.030711377039551735, + 0.055228862911462784, + 0.014604914002120495, + 0.019602257758378983, + 0.05818503722548485, + -0.01851128786802292, + -0.0013285193126648664, + 0.01681031472980976, + 0.06456662714481354, + 0.007642651908099651, + -0.03577910736203194, + -0.031438689678907394, + 0.004586764145642519, + 0.08535369485616684, + -0.015789730474352837, + 0.04248915612697601, + -0.015144533477723598, + -0.004847775679081678, + 0.0950668454170227, + -0.030875610187649727, + 0.0031262726988643408, + -0.034512173384428024, + -0.010915560647845268, + -0.04537494480609894, + -0.012376051396131516, + 0.03835989534854889, + 0.027614431455731392, + 0.008792275562882423, + 0.054571934044361115, + 0.0014641572488471866, + -0.043005313724279404, + 0.0034254095517098904, + 0.036787960678339005, + 0.03200177103281021, + -0.047627270221710205, + 0.00267170206643641, + 0.0039826249703764915, + -0.0216786190867424, + 0.008827468380331993, + 0.006727645173668861, + 0.047697655856609344, + -0.028365205973386765, + -0.006311199627816677, + 0.011631142348051071, + 0.04453032463788986, + 0.0616573728621006, + 0.03634218871593475, + 0.004123395308852196, + 0.09769455343484879, + 0.006416777614504099, + -0.07803364843130112, + -0.015484727919101715, + 0.012950863689184189, + -0.006305334158241749, + -0.01598915457725525, + -0.03904028236865997, + -0.010827578604221344, + 0.00609417911618948, + 0.00132045429199934, + -0.03472333028912544, + 0.041761841624975204, + 0.019003983587026596, + 0.04185568913817406, + 0.02002456970512867, + 0.013678176328539848, + -0.0566834881901741, + 0.0012801295379176736, + -0.06512970477342606, + -0.06921204179525375, + -0.01090969517827034, + 0.05921735242009163, + 0.007431496400386095, + -0.02458787150681019, + 0.03514564037322998, + 0.0723089873790741, + 0.062267377972602844, + -0.011942010372877121, + -0.020282648503780365, + 0.03610756993293762, + 0.03805489093065262, + -0.06512970477342606, + -0.00142016657628119, + -0.0029547091107815504, + 0.027332890778779984, + 0.013502214103937149, + 0.04413147643208504, + -0.008111885748803616, + 0.024705179035663605, + -0.0011606214102357626, + 0.04314608499407768, + 0.025432493537664413, + -0.03538025915622711, + 0.0881221815943718, + -0.008446215651929379, + -0.0700097382068634, + 0.022980744019150734, + -0.06860204041004181, + 0.03211908042430878, + -0.07737671583890915, + -0.019168216735124588, + -0.028717132285237312, + 0.06287737935781479, + 0.0008079626131802797, + -0.010387672111392021, + -0.018687251955270767, + 0.013736831024289131, + 0.03139176592230797, + 0.019965915009379387, + 0.04366224259138107, + -0.021279770880937576, + 0.009619301185011864, + 0.03134484216570854, + 0.008792275562882423, + -0.03887605294585228, + 0.029186366125941277, + -0.0008497537928633392, + -0.053539618849754333, + -0.033714476972818375, + -0.012387782335281372, + 0.05776272714138031, + 0.011431718245148659, + 0.024400178343057632, + -0.015930499881505966, + -0.05949889495968819, + 0.056495796889066696, + 0.027637893334031105, + 0.09164143353700638, + -0.0020704958587884903, + -0.010035745799541473, + 0.0691181942820549, + 0.003029493149369955, + -0.014241257682442665, + -0.0515219122171402, + -0.012211819179356098, + -0.008522465825080872, + -0.005032536573708057, + 0.02475210279226303, + -0.020998230203986168, + 0.029327137395739555, + -0.04546879231929779, + 0.09084373712539673, + 0.027051350101828575, + -0.05466578155755997, + 0.008897853083908558, + 0.017490703612565994, + 0.01698627695441246, + -0.0575750358402729, + 0.06010890007019043, + 0.032822929322719574, + 0.0009392015635967255, + -0.020599380135536194, + 0.07643824815750122, + -0.04612572118639946, + -0.03265869989991188, + -0.049598053097724915, + 0.0019091966096311808, + 0.005748118739575148, + -0.030359452590346336, + -0.05288269370794296, + -0.02878751792013645, + -0.03859451040625572, + -0.03200177103281021, + 0.010381806641817093, + 0.046172644942998886, + -0.061610449105501175, + 0.03249446675181389, + -0.10041611641645432, + 0.03969721123576164, + 0.03214254230260849, + 0.06705356389284134, + 0.04138645529747009, + -0.07573439925909042, + 0.004586764145642519, + 0.04232492297887802, + -0.00832304172217846, + -0.05424347147345543, + -0.010856905952095985, + 0.023731518536806107, + -0.02665250189602375, + -0.009777667000889778, + 0.019860336557030678, + 0.02519787661731243, + -0.03132138028740883, + -0.10895618051290512, + 0.05382116138935089, + -0.031157149001955986, + -0.004305223468691111, + -0.06738203018903732, + 0.06949358433485031, + 0.025432493537664413, + 0.022147852927446365, + 0.02020053192973137, + 0.024986719712615013, + -0.11393006145954132, + -0.00034514375147409737, + -0.0168807003647089, + 0.022417662665247917, + 0.05710580199956894, + 0.01343182846903801, + 0.00042964256135746837, + -0.02009495347738266, + 0.03139176592230797, + -0.042277999222278595, + -0.0867144763469696, + 0.004020750522613525, + -0.0024444167502224445, + 0.002812472404912114, + 0.0008739486802369356, + -0.013279327191412449, + -0.08202213793992996, + -0.0054196547716856, + -0.02102169208228588, + -0.011226427741348743, + -0.00880400650203228, + -0.03387870639562607, + 0.027544045820832253, + 0.0006609603296965361, + -0.04016644507646561, + -0.017150510102510452, + -0.020693227648735046 + ] + }, + { + "id": "6a0fff1e-b3e4-4400-a378-32184c24e4d2", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "wliu", + "reviewDate": "2022-09-28T21:13:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a18b85a0-6fe6-43b1-9474-2e9b1768b7da", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "villarrealryan", + "reviewDate": "2022-08-02T17:43:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "866dea3c-6d8b-413e-ab60-279488c9e0b2", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "ilawson", + "reviewDate": "2021-11-18T04:18:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8046a578-d40c-4b46-a447-da40c08f45d7", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "hsmith", + "reviewDate": "2021-09-01T23:44:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5c9687f0-7dd3-401c-a66d-e941451ffce3", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "jimeneztiffany", + "reviewDate": "2022-02-03T13:52:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a62a3603-fd1f-45fb-90e4-90d16b854081", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "danielleross", + "reviewDate": "2021-11-23T16:49:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d70e4ab2-233e-4eaf-9298-d81357ff0426", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "leslienelson", + "reviewDate": "2021-05-14T03:52:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "49ae1cd7-70a4-4833-b8fd-645726b2f48a", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "plam", + "reviewDate": "2021-09-29T06:33:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "548694c7-b717-4fa9-9a81-eea321f675e7", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "kcampbell", + "reviewDate": "2022-04-04T06:32:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "88211cab-bc91-4413-ad09-5208e9912230", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacobsmark", + "reviewDate": "2021-08-25T22:42:43", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6f1054af-d4e0-4563-a645-b47ede844acf", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "matthew06", + "reviewDate": "2021-12-20T17:18:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e410db85-e0c2-4bea-8f9d-8d02e7526559", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "david44", + "reviewDate": "2021-07-26T06:11:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "688a81cb-031c-48f7-82e8-2502664500d4", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica83", + "reviewDate": "2022-03-21T13:56:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "82adc6c4-127b-45a3-b8f5-68f067169829", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelle79", + "reviewDate": "2022-04-23T23:27:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5fe6733d-6e8c-41f7-9aa6-148476572357", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "pricedaniel", + "reviewDate": "2021-01-27T10:35:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f7936797-c81e-4204-9769-5aeb45623daa", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "phillipayers", + "reviewDate": "2021-09-20T02:58:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2b4e7113-b58d-456d-8a14-d9e58c752f35", + "productId": "089e86c1-c3f7-4c97-9854-0985b7295bdc", + "category": "Electronics", + "docType": "customerRating", + "userName": "ifrench", + "reviewDate": "2022-09-19T01:49:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Super (Silver)", + "description": "This Amazing Computer Super (Silver) is a computer with super special features that are hard to describe, but easy to understand, how the computer works. It is quite unique. This computer is a step ahead of other super computers in my opinion. It can run on any", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-08-05T18:00:52", + "price": 909.18, + "stock": 34, + "priceHistory": [ + { + "priceDate": "2021-04-28T20:16:14", + "newPrice": 932.24 + }, + { + "priceDate": "2021-11-05T20:16:14", + "newPrice": 931.8 + }, + { + "priceDate": "2022-05-15T20:16:14", + "newPrice": 976.16 + }, + { + "priceDate": "2022-11-22T20:16:14", + "newPrice": 848.47 + }, + { + "priceDate": "2025-08-10T20:16:14", + "newPrice": 909.18 + } + ], + "descriptionVector": [ + 0.017101021483540535, + 0.04457060247659683, + -0.030253469944000244, + 0.0064519429579377174, + 0.0057595218531787395, + -0.007478146348148584, + -0.06522250175476074, + -0.0173850916326046, + 0.07204018533229828, + 0.12271829694509506, + 0.06300675868988037, + -0.06704055517911911, + 0.05976835638284683, + -0.03619053587317467, + 0.0021837891545146704, + 0.017555534839630127, + 0.000579680607188493, + 0.02025420032441616, + -0.03334983438253403, + -0.04218441620469093, + 0.0256799403578043, + -0.02663157507777214, + -0.002105669816955924, + 0.050905369222164154, + -0.0463886521756649, + -0.019970130175352097, + -0.03846309706568718, + -0.0020328769460320473, + -0.07374460995197296, + 0.00023369207337964326, + 0.0881185531616211, + 0.041389018297195435, + 0.032099924981594086, + 0.014643815346062183, + 0.058972958475351334, + 0.009814622811973095, + 0.005521613173186779, + -0.03406000882387161, + 0.05752420052886009, + -0.0461898036301136, + 0.03295213729143143, + -0.011774706654250622, + 0.0247851200401783, + 0.0501667857170105, + 0.02521122433245182, + 0.008983718231320381, + -0.05400173366069794, + -0.004275255370885134, + -0.022938663139939308, + 0.0037461749743670225, + -0.007485248148441315, + -0.0024394523352384567, + 0.03354868292808533, + 0.06323400884866714, + 0.0015011330833658576, + 0.013258973136544228, + -0.0060862028039991856, + 0.03354868292808533, + -0.025964010506868362, + -0.027966704219579697, + 0.006849640980362892, + 0.040195923298597336, + -0.0119948610663414, + -0.01781119778752327, + -0.035309918224811554, + -0.027313344180583954, + -0.021802382543683052, + 0.056359514594078064, + 0.01499890349805355, + 0.03661664202809334, + -0.07016532123088837, + 0.02197282575070858, + 0.016461864113807678, + 0.03749725595116615, + 0.013258973136544228, + 0.04394565150141716, + 0.06965399533510208, + -0.027611616998910904, + 0.024273792281746864, + -0.018947478383779526, + 0.05814915522933006, + 0.011668181046843529, + 0.012570103630423546, + -0.018677610903978348, + 0.06300675868988037, + -0.03116249293088913, + 0.018620796501636505, + -0.12692253291606903, + 0.01843615248799324, + 0.06306356936693192, + -0.0011229647789150476, + 0.045820511877536774, + 0.02994099259376526, + 0.022384727373719215, + 0.032923728227615356, + 0.0793691948056221, + -0.03934371471405029, + 0.04147423803806305, + -0.0341736376285553, + 0.0014975821832194924, + 0.05712650343775749, + -0.03934371471405029, + -0.031077273190021515, + -0.0757899135351181, + -0.04252529889345169, + -0.04903050512075424, + 0.015567043796181679, + -0.030253469944000244, + 0.0015694875037297606, + -0.07811928540468216, + -0.06823364645242691, + -0.03542354702949524, + 0.004051550291478634, + -0.026574760675430298, + 0.061870474368333817, + -0.010304643772542477, + -0.06721099466085434, + -0.02204384282231331, + 0.011163956485688686, + -0.045451220124959946, + 0.04195715859532356, + 0.006746665574610233, + 0.022810831665992737, + 0.010297542437911034, + -0.03295213729143143, + -0.002661382080987096, + 0.007272195536643267, + -0.019970130175352097, + 0.019018495455384254, + -0.022583575919270515, + -0.05047926306724548, + 0.03136134147644043, + 0.04249689355492592, + 0.028563251718878746, + -0.06863134354352951, + -0.0008792858570814133, + 0.018691815435886383, + 0.13771720230579376, + -0.042212821543216705, + 0.028705287724733353, + -0.042241230607032776, + 0.006341865751892328, + -0.05993879958987236, + -3.584166188375093e-05, + -0.05661517754197121, + 0.00835876353085041, + -0.044854674488306046, + 0.03403160348534584, + -0.05439943075180054, + 0.04309343919157982, + 0.04820670187473297, + -0.007485248148441315, + -0.02590719610452652, + -0.08340299129486084, + -0.00020239996956661344, + 0.05530845373868942, + -0.054569873958826065, + 0.027242325246334076, + 0.017995843663811684, + 0.0753922164440155, + -0.042013972997665405, + -0.02488454431295395, + -0.04670112952589989, + 0.006025837734341621, + 0.035736024379730225, + -0.0005637016729451716, + 0.05042244866490364, + 0.06891541182994843, + -0.08328936249017715, + 0.03840628266334534, + -0.004910862538963556, + -0.02042464353144169, + 0.046246618032455444, + -0.04596254602074623, + 0.10067445784807205, + 0.043008219450712204, + 0.0451955571770668, + 0.037724513560533524, + -0.03295213729143143, + -0.06959718465805054, + -0.030281877145171165, + 0.0319862961769104, + -0.040366366505622864, + 0.03440089151263237, + 0.044627416878938675, + 0.032866913825273514, + 0.015751689672470093, + 0.02035362459719181, + 0.024160165339708328, + -0.03275328502058983, + 0.07272195816040039, + -0.06624515354633331, + 0.04326388239860535, + -0.023023884743452072, + 0.02376246638596058, + 0.05260979011654854, + 0.00019008286471944302, + -0.002730624284595251, + -0.052126869559288025, + 0.015567043796181679, + 0.01062422338873148, + -0.018990088254213333, + 0.07067664712667465, + -0.030707981437444687, + 0.03141815587878227, + -0.010482188314199448, + -0.013756096363067627, + -0.002984511898830533, + 0.02005535177886486, + -0.003433697856962681, + 0.05667199194431305, + -0.021759772673249245, + -0.03880397975444794, + -0.025069190189242363, + 0.07272195816040039, + -0.018223099410533905, + -0.005869599059224129, + -0.04346273094415665, + -0.017527127638459206, + -0.04820670187473297, + 0.07561946660280228, + -0.051729172468185425, + 0.016561288386583328, + -0.02401812933385372, + -0.019544025883078575, + -0.0651656910777092, + 0.04840555042028427, + -0.01428872812539339, + -0.005791479721665382, + -0.024600474163889885, + -0.05028041452169418, + 0.03780973330140114, + 0.05891614779829979, + 0.028293386101722717, + -0.0884026288986206, + 0.050734926015138626, + 0.04013910889625549, + -0.04192875325679779, + -0.10573090612888336, + 0.12067299336194992, + 0.028591658920049667, + -0.009338805451989174, + -0.07147204875946045, + -0.08368705958127975, + 0.0120445741340518, + -0.05266660451889038, + 0.019998537376523018, + -0.04047999531030655, + 0.02630489505827427, + -0.007577570620924234, + -0.006082651671022177, + 0.0006085314671508968, + -0.03869035094976425, + 0.050109971314668655, + 0.018379338085651398, + 0.010666833259165287, + 0.06812001764774323, + -0.07476726174354553, + 0.00434627290815115, + -0.00896951463073492, + -0.07334690541028976, + -0.07755114883184433, + -0.003158504841849208, + 0.053746070712804794, + -0.09419765323400497, + 0.048888470977544785, + 0.021205835044384003, + -0.018720222637057304, + 0.007833234034478664, + -0.014544391073286533, + -0.004452799446880817, + -0.00845818780362606, + -0.03519628942012787, + 0.03920167684555054, + -0.016845358535647392, + -0.019387787207961082, + -0.007783521898090839, + 0.04891687631607056, + 0.04417290538549423, + -0.05587659403681755, + 0.057581014931201935, + 0.025069190189242363, + 0.05789349228143692, + -0.043008219450712204, + 0.048291921615600586, + -0.04954183101654053, + -0.054967571049928665, + -0.037951771169900894, + 0.015368194319307804, + -0.015680670738220215, + -0.02692984789609909, + 0.04451379179954529, + 0.056160666048526764, + 0.10277657210826874, + 0.0037639292422682047, + 0.00976491067558527, + 0.0477805957198143, + -0.03485540673136711, + -0.007400027010589838, + -0.0260776374489069, + 0.07863061130046844, + -0.04065043479204178, + 0.005219788756221533, + 0.02052406780421734, + 0.03423045203089714, + 0.060222867876291275, + 0.016334032639861107, + 0.010354356840252876, + -0.05891614779829979, + -0.004126118496060371, + 0.06641560047864914, + 0.009104447439312935, + -0.001067926175892353, + -0.0058305393904447556, + 0.11277583986520767, + -0.016831155866384506, + 0.03826424852013588, + 0.051501914858818054, + -0.008230932056903839, + -0.022910255938768387, + 0.025452684611082077, + -0.0813576877117157, + -0.06249542906880379, + 0.05948428437113762, + 0.07209700345993042, + -0.010815970599651337, + -0.04488307982683182, + 0.05488235130906105, + -0.02269720286130905, + -0.03698593005537987, + 0.02719971537590027, + -0.048121482133865356, + -0.01518354844301939, + 0.047894224524497986, + 0.012016166932880878, + -0.12033210694789886, + 0.030679574236273766, + 0.11385530978441238, + -0.020097961649298668, + 0.04530918598175049, + 0.0615864060819149, + 0.0032863363157957792, + -0.012406762689352036, + 0.032298773527145386, + -0.0033520276192575693, + -0.014089878648519516, + 0.029600108042359352, + -0.07118797302246094, + 0.026120249181985855, + -0.017882214859128, + 0.0015268769348040223, + -0.06454073637723923, + 0.0707334652543068, + -0.003162055741995573, + 0.061870474368333817, + -0.011213668622076511, + 0.009637079201638699, + -0.05468350276350975, + 0.0749945119023323, + -0.017868012189865112, + -0.01708681881427765, + -0.032526031136512756, + 0.11340079456567764, + 0.010347254574298859, + -0.054768722504377365, + 0.01870601810514927, + 0.012712138704955578, + 0.040394771844148636, + 0.001745255896821618, + -0.00991404801607132, + -0.04184352979063988, + 0.0337759405374527, + -0.011355703696608543, + 0.02107800357043743, + -0.04636024683713913, + -0.0499679371714592, + 0.033293019980192184, + -0.001156698097474873, + 0.03161700442433357, + 0.05425739660859108, + 0.013017513789236546, + 0.05084855481982231, + 0.04414450004696846, + -0.012222117744386196, + 0.03763929381966591, + -0.13055863976478577, + 0.00135465944185853, + -0.006803479511290789, + -0.06664285063743591, + 0.07851698249578476, + -0.0515587292611599, + 0.05851844698190689, + -0.008401374332606792, + -0.0343724861741066, + 0.041389018297195435, + -0.02075132355093956, + -0.01916053146123886, + -0.01401175931096077, + 0.013592756353318691, + 0.050876960158348083, + 0.004921515006572008, + 0.06601789593696594, + 0.054371025413274765, + -0.049513425678014755, + -0.023549413308501244, + -0.10726488381624222, + -0.05309270694851875, + 0.03033868968486786, + -0.0999358743429184, + -0.020438846200704575, + -0.02832179330289364, + -0.059825170785188675, + 0.030594352632761, + -0.011213668622076511, + 0.020992783829569817, + 0.022001231089234352, + 0.04883165657520294, + 0.028307588770985603, + 0.08311892300844193, + -0.058632075786590576, + -0.011092938482761383, + 0.0321851447224617, + 0.0675518810749054, + 0.026148656383156776, + -0.04593414068222046, + -0.008834580890834332, + 0.024472642689943314, + -0.0011975332163274288, + -0.017598144710063934, + -0.016958987340331078, + -0.028662675991654396, + 0.01883384957909584, + 0.028691083192825317, + -0.01506992056965828, + -0.04209919273853302, + 0.011405415832996368, + -0.017370888963341713, + 0.016362439841032028, + -0.014558594673871994, + 0.061643220484256744, + -0.03303735703229904, + -0.001954757608473301, + -0.050337228924036026, + -0.03539513796567917, + -0.0837438777089119, + -0.033974789083004, + -0.06527931988239288, + 0.04863280802965164, + 0.021702958270907402, + -0.0499679371714592, + -0.06743825227022171, + -0.009225177578628063, + 0.04388883709907532, + -0.017882214859128, + 0.02957170084118843, + 0.032497622072696686, + -0.05914340168237686, + 0.0333782397210598, + -0.061472777277231216, + 0.009736503474414349, + 0.010453781113028526, + 0.028804711997509003, + 0.06170003488659859, + -0.10533320903778076, + 0.016944782808423042, + 0.04670112952589989, + -0.08618687838315964, + -0.052922267466783524, + -0.036758676171302795, + 0.031134087592363358, + -0.004495409782975912, + -0.0675518810749054, + -0.01764075458049774, + 0.06067737936973572, + -0.021532516926527023, + -0.05491075664758682, + 0.04530918598175049, + 0.035309918224811554, + 0.019643450155854225, + 0.010063184425234795, + 0.010808868333697319, + 0.014338440261781216, + -0.02842121757566929, + -0.01190964039415121, + 0.046644315123558044, + -0.001605883939191699, + 0.019515618681907654, + 0.03394638001918793, + -0.0037816837430000305, + 0.03346346318721771, + 0.04104813560843468, + 0.07408548891544342, + 0.02680201642215252, + -0.05621748045086861, + -0.009615774266421795, + -0.049513425678014755, + -0.03400319442152977, + 0.023634634912014008, + 0.03599168732762337, + 0.12169564515352249, + -0.07567628473043442, + -0.01038986537605524, + -0.04965545982122421, + 0.06573382765054703, + -0.02583617903292179, + 0.027384361252188683, + 0.011142650619149208, + 0.057211726903915405, + -0.06897222995758057, + -0.0233931764960289, + 0.024245385080575943, + -0.040423180907964706 + ] + }, + { + "id": "a6ce2e63-d103-496b-a7cf-40f827929360", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "mwalker", + "reviewDate": "2022-11-06T12:01:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6bdd5038-8876-452d-a856-92b141e30bea", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "natashawilson", + "reviewDate": "2021-05-07T00:21:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ba6fcdee-fca3-486f-8cd7-cfeffe9877c5", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert63", + "reviewDate": "2021-07-31T08:32:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d250b55e-1010-4deb-9b23-15dbd676ef8f", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "krystalsmith", + "reviewDate": "2022-11-23T10:23:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b8156795-aeb0-4953-ac04-d6cc0f8e8b22", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "margaretpena", + "reviewDate": "2021-04-28T20:16:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "58ce97d2-1854-46aa-b01c-d26448e12945", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "ndiaz", + "reviewDate": "2021-11-28T02:58:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a0d962df-b86c-4be9-a431-0aef8202b9f6", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsbethany", + "reviewDate": "2022-08-11T18:05:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "caf64431-b3c0-46bd-94e3-9e19ab75d35a", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "phyllis95", + "reviewDate": "2022-04-22T23:53:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "86731cfd-3516-47c8-9713-fad31f9079d1", + "productId": "463c1549-d46c-4d71-b7a6-bfa0c6da3f3f", + "category": "Electronics", + "docType": "customerRating", + "userName": "darren31", + "reviewDate": "2022-04-25T02:39:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Mini (Gold)", + "description": "This Luxe Keyboard Mini (Gold) is the most expensive and least known of its kind yet. As with all Luxe keyboards, it doesn't have a mechanical keyring. We've put together our list of the top price, weight, and value of this model.\n\nModel Date Price: $249.95 ($249.25 / £279) New and Old\n\nLuxury Keyboard\n\n", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-08-14T12:37:45", + "price": 856.91, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-03-26T02:41:52", + "newPrice": 942.51 + }, + { + "priceDate": "2022-02-10T02:41:52", + "newPrice": 911.21 + }, + { + "priceDate": "2022-12-28T02:41:52", + "newPrice": 932.49 + }, + { + "priceDate": "2023-12-07T02:41:52", + "newPrice": 856.91 + } + ], + "descriptionVector": [ + -0.0369214303791523, + 0.03102409839630127, + -0.04038640111684799, + -0.04580184817314148, + 0.017290426418185234, + -0.07916652411222458, + -0.012838744558393955, + 0.029188351705670357, + -0.042704027146101, + 0.0074290321208536625, + -0.004503312986344099, + 0.00413903221487999, + 0.01455975603312254, + -0.060166556388139725, + 0.0767800509929657, + -0.035200417041778564, + -0.026090532541275024, + -0.06204819679260254, + -0.026893669739365578, + -0.005251952912658453, + 0.012781377881765366, + -0.08618824928998947, + -0.025287393480539322, + -0.048876721411943436, + -0.001729616429656744, + -0.005338003393262625, + -0.007004516199231148, + 0.035361047834157944, + 0.014341761358082294, + 0.006740627810359001, + 0.037265632301568985, + -0.013527149334549904, + -0.09142012149095535, + 0.046972136944532394, + 0.029739076271653175, + -0.04034050554037094, + 0.007996966131031513, + 0.004084533546119928, + 0.022281359881162643, + 0.028109852224588394, + -0.002657528268173337, + 0.016418447718024254, + -0.03451201319694519, + -0.04125837981700897, + -0.00015749045996926725, + -0.009138570167124271, + 0.013699250295758247, + 0.04745401814579964, + -0.017921464517712593, + 0.026319999247789383, + 0.023795850574970245, + 0.05103372409939766, + -0.06769311428070068, + 0.008421482518315315, + -0.004523391369730234, + -0.0318501815199852, + -0.01545468159019947, + 0.14061810076236725, + 0.05039121210575104, + -0.03010622411966324, + 0.035085685551166534, + -0.06471002846956253, + -0.0268707238137722, + -0.08499501645565033, + 0.043094124644994736, + -0.0030576635617762804, + -0.028775310143828392, + 0.002284642541781068, + 0.03903253749012947, + 0.0507124662399292, + -0.06172693893313408, + 0.02916540578007698, + 0.018036197870969772, + 0.02524149976670742, + 0.048922616988420486, + -0.03648544102907181, + 0.018885230645537376, + 0.023520488291978836, + 0.0443103052675724, + 0.016544654965400696, + 0.07521966844797134, + -0.054934680461883545, + -0.023486068472266197, + -0.1045457050204277, + 0.002069516107439995, + 0.02622821182012558, + -0.011565196327865124, + -0.07746845483779907, + -0.07622932642698288, + 0.053787339478731155, + -0.07292498648166656, + 0.0883452519774437, + -0.05075836181640625, + -0.0007213905919343233, + 0.00030171481193974614, + -0.031873129308223724, + -0.012643696740269661, + 0.0477752760052681, + -0.027191979810595512, + -0.02338280715048313, + 0.04192383587360382, + 0.024989085271954536, + 0.005082719959318638, + 0.006448055617511272, + -0.011117733083665371, + 0.0813235193490982, + 0.05938636511564255, + 0.02781154401600361, + 0.01224212720990181, + -0.1072993203997612, + 0.10270995646715164, + 0.05158444494009018, + -0.030450427904725075, + 0.004500444512814283, + 0.003955457825213671, + 0.059937089681625366, + -0.023118918761610985, + -0.0267789363861084, + -0.007658500224351883, + -0.012735484167933464, + 0.06457234174013138, + 0.04984048753976822, + -0.013664829544723034, + 0.02131759375333786, + -0.016693810001015663, + 0.018196826800704002, + -0.050941936671733856, + 0.014341761358082294, + -0.007228247821331024, + -0.04584774374961853, + -0.07751435041427612, + 0.07191532850265503, + -0.010108073242008686, + 0.07439358532428741, + -0.0679684728384018, + 0.048050638288259506, + 0.028362266719341278, + 0.029371926560997963, + 0.0011286966037005186, + 0.027077244594693184, + -0.03373182192444801, + -0.05732114985585213, + -0.024667829275131226, + 0.03744920715689659, + -0.10041527450084686, + -0.014433548785746098, + -0.060441918671131134, + 0.0622776634991169, + -0.00784207507967949, + 0.015339947305619717, + 0.07264962792396545, + -0.06374625861644745, + -0.015121952630579472, + -0.010842371731996536, + 0.0019748604390770197, + 0.06728006899356842, + -0.07723899185657501, + -0.021604428067803383, + 0.01778378337621689, + 0.042176250368356705, + 0.00024900882272049785, + -0.004818831570446491, + -0.00978681817650795, + -0.03031274676322937, + -0.013194420374929905, + 0.024576041847467422, + 0.03719679266214371, + -0.015248160809278488, + -0.05819312855601311, + -0.001120808650739491, + 0.022602615877985954, + -0.05043710395693779, + -0.031873129308223724, + -0.05401680991053581, + 0.013722197152674198, + 0.03708205744624138, + 0.07609164714813232, + -0.0031408455688506365, + 0.057596512138843536, + -0.02840816043317318, + 0.06319553405046463, + 0.08770273625850677, + -0.06507717818021774, + -0.052364639937877655, + 0.03758688643574715, + -0.017565788701176643, + 0.03588882461190224, + 0.03685259073972702, + 0.04575595632195473, + 0.013102632947266102, + -0.007647027261555195, + 0.044631559401750565, + -0.08926311880350113, + 0.0199752040207386, + -0.03494800254702568, + 0.026251159608364105, + 0.049152083694934845, + 0.012689590454101562, + 0.003244106424972415, + 0.032079651951789856, + 0.036829642951488495, + 0.06884045153856277, + 0.005931752268224955, + -0.008192013949155807, + 0.019424481317400932, + -0.06553611159324646, + 0.04148784652352333, + -0.002838234417140484, + 0.029096564278006554, + 0.007589660119265318, + -0.05805544927716255, + -0.00830101128667593, + -0.026411786675453186, + 0.023520488291978836, + 0.030565161257982254, + 0.033341724425554276, + 0.025746328756213188, + 0.019722789525985718, + -0.0004833173588849604, + -0.1506229192018509, + -0.01926385425031185, + -0.04366779327392578, + 0.037380367517471313, + 0.03839002549648285, + -0.05479700118303299, + -0.011639772914350033, + 0.013550096191465855, + 0.03019801154732704, + 0.07636701315641403, + 0.005312188528478146, + -0.005280636250972748, + -0.047362230718135834, + -0.035085685551166534, + 0.02551686204969883, + -0.0354987271130085, + -0.03570524975657463, + -0.007566713262349367, + -0.07994671165943146, + -0.025608649477362633, + 0.04385136812925339, + -0.0038493287283927202, + -0.04536585882306099, + 0.008008439093828201, + -0.029532553628087044, + -0.053833235055208206, + -0.0073659284971654415, + 0.07898294925689697, + -0.0738428607583046, + -0.09922204166650772, + 0.047362230718135834, + -0.004976591095328331, + -0.056586854159832, + -0.027765650302171707, + 0.0579177662730217, + -0.04417262598872185, + 0.046260785311460495, + 0.040592920035123825, + 0.030634000897407532, + 0.09399016201496124, + -0.04084533452987671, + 0.004024298395961523, + -0.010377698577940464, + -0.005561735015362501, + 0.03329583257436752, + -0.04139605909585953, + 0.0955505520105362, + 0.04731633886694908, + -0.12290315330028534, + -0.02017025277018547, + 0.02813279815018177, + -0.0027435789816081524, + -0.027719756588339806, + 0.10408676415681839, + 0.041304271668195724, + -0.03198786452412605, + 0.032905735075473785, + -0.046696774661540985, + 0.03662312030792236, + -0.07072209566831589, + -0.06264480948448181, + -2.8212933102622628e-05, + 0.08205781877040863, + 0.04079944267868996, + -0.03331878036260605, + 0.07875347882509232, + -0.04474629461765289, + 0.0267789363861084, + -0.030656948685646057, + 0.03758688643574715, + -0.006585736759006977, + -0.0268707238137722, + 0.07388875633478165, + 0.017841150984168053, + 0.03958326205611229, + -0.030450427904725075, + -0.021179912611842155, + 0.024851404130458832, + 0.07283320277929306, + -0.002971612848341465, + 0.006574263330549002, + -0.010251490399241447, + 0.043094124644994736, + -0.03588882461190224, + -0.07416411489248276, + -0.03669195994734764, + 0.01422702707350254, + -0.01684296503663063, + -0.0022961159702390432, + -0.011048892512917519, + -0.03253858909010887, + 0.04878493398427963, + -0.05420038476586342, + -0.05488878861069679, + 0.012689590454101562, + 0.056082021445035934, + -0.02622821182012558, + 0.034970950335264206, + 0.058376703411340714, + 0.053190723061561584, + 0.01311410591006279, + 0.017932938411831856, + -0.03146008774638176, + -0.07879937440156937, + 0.03802287578582764, + 0.01545468159019947, + -0.05860617384314537, + 0.009723713621497154, + 0.0005023201811127365, + -0.01944742724299431, + -0.08118584007024765, + -0.06599504500627518, + -0.02361227571964264, + -0.08669307827949524, + -0.018575448542833328, + 0.0536496601998806, + -0.02404826506972313, + -0.010630113072693348, + 0.006987305823713541, + 0.06154336407780647, + -0.024690775200724602, + 0.037976983934640884, + -0.009981865994632244, + -0.040042195469141006, + -0.014536809176206589, + -0.0007701525464653969, + -0.04947333782911301, + -0.05475110560655594, + -0.009631927125155926, + 0.026595361530780792, + 0.10766647011041641, + 0.0014033413026481867, + -0.008582109585404396, + 0.07783560454845428, + -0.044631559401750565, + 0.02120286040008068, + 0.0038837490137666464, + 0.07297088205814362, + -0.05401680991053581, + -0.05644917115569115, + 0.0826544389128685, + -0.04869314655661583, + -0.022774716839194298, + 0.07650469243526459, + 0.05938636511564255, + -0.06402162462472916, + -0.016728229820728302, + 0.0246448814868927, + 0.03625597059726715, + -0.04782116785645485, + 0.050804253667593, + 0.046536147594451904, + -0.03561346232891083, + -0.035636406391859055, + 0.02416299842298031, + 0.02781154401600361, + 0.044034942984580994, + -0.031115885823965073, + 0.029050670564174652, + -0.05185980722308159, + 0.02365816943347454, + -0.005094193387776613, + -0.01917206682264805, + 0.03311225771903992, + 0.026641255244612694, + 0.02238462120294571, + -0.048050638288259506, + -0.11390800029039383, + 0.012861691415309906, + -0.02721492573618889, + -0.03474148362874985, + -0.023543434217572212, + -0.03035864047706127, + -0.006075169891119003, + 0.034649696201086044, + -0.040707655251026154, + -0.04683445394039154, + 0.019344167783856392, + 0.07572449743747711, + 0.011932345107197762, + 0.048050638288259506, + 0.011668456718325615, + 0.06035013124346733, + -0.011691403575241566, + -0.06099264323711395, + -0.029142457991838455, + -0.07072209566831589, + 0.02080129086971283, + 0.03474148362874985, + 0.043208856135606766, + -0.06755543500185013, + -0.0339842364192009, + 0.04988638311624527, + -0.04651319980621338, + -0.0260675847530365, + 0.0024510070215910673, + -0.07168585807085037, + 0.08871239423751831, + 0.04330064356327057, + 0.04984048753976822, + -0.021466748788952827, + 0.0653066411614418, + -0.045228179544210434, + -0.04247456043958664, + -0.0018586922669783235, + -0.026205265894532204, + -0.010555536486208439, + -0.048050638288259506, + -0.02939487434923649, + 0.037380367517471313, + -0.034259598702192307, + 0.060120660811662674, + -0.035682301968336105, + -0.011656983755528927, + 0.010022022761404514, + -0.015007219277322292, + -0.07503609359264374, + -0.019757209345698357, + 0.032194387167692184, + 0.010211333632469177, + 0.07916652411222458, + 0.030725788325071335, + -0.051492657512426376, + -0.012173286639153957, + 0.06351678818464279, + -0.07278730720281601, + 0.00492209242656827, + -0.07792739570140839, + 0.050253529101610184, + 0.053833235055208206, + -0.03660017251968384, + 0.013182946480810642, + -0.03774751350283623, + -0.013182946480810642, + 0.034970950335264206, + 0.11381621658802032, + 0.002733539557084441, + 0.019068805500864983, + 0.021960103884339333, + 0.01153077557682991, + 0.0014714646385982633, + 0.027467340230941772, + 0.08595877885818481, + 0.016303714364767075, + -0.04444798454642296, + -0.010836634784936905, + -0.004772938322275877, + 0.033341724425554276, + 0.015087532810866833, + -0.005604760255664587, + 0.061084430664777756, + -0.01426144689321518, + -0.04334653913974762, + -0.03428254649043083, + -0.015225213952362537, + 0.040156930685043335, + -0.06792257726192474, + 0.03272216394543648, + 0.004689755849540234, + 0.0012183325598016381, + -0.011192310601472855, + -0.00224305153824389, + 0.01719864085316658, + 0.024277733638882637, + 0.048876721411943436, + 0.06567379087209702, + -0.04389726370573044, + 0.021466748788952827, + 0.024461308494210243, + 0.06296607106924057, + 0.05975351482629776, + -0.06952885538339615, + 0.030129171907901764, + -0.023359861224889755, + -0.02194863185286522, + 0.021845370531082153, + 0.01960805617272854, + -0.03974388912320137, + 0.010090863332152367, + -0.034213706851005554, + 0.015936564654111862, + 0.03598061203956604, + -0.06489360332489014, + 0.00553878815844655, + -0.005019616335630417, + 0.021856844425201416, + 0.036278918385505676, + -0.04818831756711006, + -0.005019616335630417, + 0.04883082956075668, + -0.01147340890020132, + 0.054383959621191025, + -0.07875347882509232 + ] + }, + { + "id": "4d73ff40-f151-4eed-a1df-62284d568284", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "steventorres", + "reviewDate": "2022-12-29T03:24:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b7fbdd03-044e-48c0-8b10-29056f4b472e", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "julia86", + "reviewDate": "2022-04-08T07:40:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7835bcec-41f8-4a60-b13e-412c34476954", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tamara26", + "reviewDate": "2021-06-30T11:39:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ddb8ec94-b1e5-4f26-8548-0bc40501c364", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fpruitt", + "reviewDate": "2021-03-26T02:41:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "be436c93-390c-4f8d-90cd-8adf7eb4701e", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicolebarnett", + "reviewDate": "2021-05-19T20:29:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a3d4a388-0c02-4e1f-9bdf-0db739b5714a", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "juarezelizabeth", + "reviewDate": "2021-12-06T04:31:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4007ae79-4ff3-4c0b-9146-635e36458ac3", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa34", + "reviewDate": "2022-09-13T16:22:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "61ae9378-1e7c-4d85-b9aa-c868a13899cd", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fernandezdavid", + "reviewDate": "2021-05-23T23:24:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "273ea444-4bb3-4c5a-bc0e-c4af00f46541", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chambersbrian", + "reviewDate": "2022-03-07T16:51:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "da9e09a0-6b74-44e3-8c25-b7899827a4d6", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williampierce", + "reviewDate": "2022-01-08T20:05:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0c2f167e-61c7-4b67-a293-dc5102071695", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "poncedaniel", + "reviewDate": "2021-05-14T22:08:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b9e409fd-b007-45df-a2a6-5e970e7d9717", + "productId": "d22160e8-4a94-4af7-951a-8db21cb7ab02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frederickmitchell", + "reviewDate": "2022-09-01T20:00:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand Mini (Steel)", + "description": "This Luxe Stand Mini (Steel) is a sleek, modern, and stylish case for your home or office that will suit any occasion (including those around you), which is perfect for the outdoors. It's built to stand up to everyday wear, and has a rugged steel finish. The Luxe Stand Mini can accommodate a full height desk, a full width chair,", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-04-09T02:51:29", + "price": 893.96, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-02-10T22:15:45", + "newPrice": 935.85 + }, + { + "priceDate": "2023-02-18T22:15:45", + "newPrice": 893.96 + } + ], + "descriptionVector": [ + -0.02264411188662052, + 0.022593455389142036, + -0.05324152484536171, + -0.021124374121427536, + 0.032851692289114, + -0.03898130729794502, + -0.033054325729608536, + -0.008067281916737556, + -0.0076113599352538586, + -0.015070745721459389, + 0.0005038093659095466, + 0.008193926885724068, + -0.013740974478423595, + -0.047010596841573715, + 0.027557935565710068, + -0.023834574967622757, + -0.006465223617851734, + 0.02003522776067257, + 0.03444742038846016, + -0.07441655546426773, + 0.025164347141981125, + -0.1186409667134285, + -0.05795271694660187, + 0.04143821820616722, + -0.020199865102767944, + -0.05830732360482216, + 0.01665380783379078, + 0.0089031383395195, + 0.050505995750427246, + 0.06681786477565765, + 0.015741964802145958, + 0.009985952638089657, + -0.05729416385293007, + 0.05314021185040474, + -0.05536916106939316, + 0.0014738303143531084, + 0.05088593065738678, + 0.03984249383211136, + -0.0013155241031199694, + 0.12360544502735138, + -0.030445439741015434, + 0.029305635020136833, + 0.003998813685029745, + -0.03396616876125336, + 0.049239546060562134, + -0.035612553358078, + -0.02849510870873928, + -0.016362523660063744, + 0.020073220133781433, + -0.049467507749795914, + -0.011011776514351368, + 0.013880283571779728, + 0.002010488184168935, + 0.004150787368416786, + -0.007111112587153912, + -0.08773960173130035, + 0.016742458567023277, + 0.16099102795124054, + 0.0223908219486475, + -0.025734249502420425, + -0.04873296618461609, + -0.03591649979352951, + 0.02398654818534851, + -0.02104838564991951, + -0.0050373016856610775, + 0.00425210315734148, + 0.02274542860686779, + -0.036651041358709335, + -0.008801822550594807, + 0.057344820350408554, + -0.030014846473932266, + 0.03660038486123085, + -0.015374694019556046, + 0.0181355532258749, + 0.044857632368803024, + -0.05329218506813049, + -0.009416050277650356, + 0.03396616876125336, + 0.03401682525873184, + -0.04432572424411774, + 0.08966460824012756, + -0.014526172541081905, + -0.019085390493273735, + -0.06149877607822418, + 0.041387561708688736, + -0.04842901974916458, + 0.003047393402084708, + -0.09883370250463486, + 0.0028447615914046764, + 0.0817113071680069, + -0.04556684568524361, + 0.004381914623081684, + 0.05339350178837776, + -0.01643851213157177, + 0.020630458369851112, + 0.0393865704536438, + -0.055673107504844666, + 0.044300395995378494, + 0.03817078098654747, + -0.06924944370985031, + 0.0258988868445158, + 0.017856935039162636, + -0.031813204288482666, + 0.017502328380942345, + 0.02114970237016678, + 0.07674682140350342, + 0.034498076885938644, + 0.024936385452747345, + 0.03915861248970032, + -0.22147664427757263, + 0.09807383269071579, + 0.013702981173992157, + -0.024379147216677666, + 0.012588505633175373, + -0.0393865704536438, + 0.02184624969959259, + -0.0007191057084128261, + -0.05298823490738869, + 0.005442565772682428, + -0.04133690521121025, + -0.0019170875893905759, + -0.02700069732964039, + 0.050505995750427246, + -0.02118769660592079, + -0.03277570754289627, + 0.029457610100507736, + 0.014956765808165073, + -0.015741964802145958, + 0.014830120839178562, + -0.0199339110404253, + -0.03411814197897911, + 0.06848957389593124, + 0.038348082453012466, + 0.011860297061502934, + -0.011929951608181, + 0.06271456927061081, + 0.016527162864804268, + -0.02250480279326439, + -0.008966460824012756, + 0.02240348793566227, + -0.02768458053469658, + -0.027963198721408844, + -0.05222836509346962, + -0.054204028099775314, + -0.02938162162899971, + -0.03475136682391167, + -0.05390008166432381, + -0.0133990328758955, + -0.05896587669849396, + 0.06337311863899231, + 0.05032869428396225, + -0.0338141955435276, + -0.022099539637565613, + -0.02465776726603508, + 0.08545999228954315, + 0.03568853810429573, + -0.0787731409072876, + -0.005388741381466389, + -0.04883428290486336, + 0.050607312470674515, + 0.08176196366548538, + -0.026975369080901146, + -0.015551996417343616, + -0.006819829344749451, + -0.019845260307192802, + 0.039462558925151825, + 0.05222836509346962, + 0.04265401139855385, + -0.08110340684652328, + 0.015741964802145958, + 0.02611418254673481, + 0.03487801179289818, + -0.015286042355000973, + -0.055673107504844666, + -0.01176531333476305, + -0.012981104664504528, + 0.09037382155656815, + -0.045541513711214066, + 0.07775998115539551, + 0.01856614649295807, + 0.0246704313904047, + 0.10415278375148773, + -0.07401129603385925, + -0.005496389698237181, + 0.012252896092832088, + -0.00816226564347744, + 0.007073118817061186, + 0.017844269052147865, + 0.020681116729974747, + -0.024809740483760834, + -0.0676283910870552, + -0.016159892082214355, + -0.0229607243090868, + -0.037993475794792175, + 0.007231425028294325, + -0.09432514011859894, + 0.05688890069723129, + 0.039234597235918045, + -0.03614446148276329, + 0.0026658757124096155, + -0.02996418997645378, + 0.07735472172498703, + 0.037436239421367645, + 0.0211623664945364, + 0.06311982870101929, + -0.07532840222120285, + -0.011455032974481583, + 0.014424856752157211, + 0.02137766405940056, + 0.0074023958295583725, + -0.028343133628368378, + -0.01086613442748785, + -0.04533888399600983, + 0.05952311307191849, + 0.017046406865119934, + 0.047694478183984756, + 0.06048561632633209, + -0.019959239289164543, + -0.04787177965044975, + -0.05496389791369438, + 0.030698729678988457, + -0.03614446148276329, + -0.024353818967938423, + -0.04409776255488396, + -0.060637589544057846, + -0.042400721460580826, + 0.06327180564403534, + 0.08176196366548538, + 0.06099219620227814, + 0.036980319768190384, + 0.006002969574183226, + -0.022542797029018402, + -0.0032706051133573055, + 0.05526784434914589, + 0.031331952661275864, + 0.01643851213157177, + -0.053748104721307755, + -0.09716198593378067, + 0.025075694546103477, + -0.03781617432832718, + 0.0002558623382356018, + -0.011974277906119823, + -0.052532315254211426, + 0.001248244079761207, + -0.03589117154479027, + 0.03026813641190529, + 0.05932048335671425, + -0.012069261632859707, + 0.006623529363423586, + 0.01688176766037941, + -0.04179282486438751, + -0.00011061642726417631, + -0.0038658364210277796, + 0.08768894523382187, + 0.035511236637830734, + -0.001196794561110437, + 0.013500348664820194, + -0.0018252700101584196, + 0.017071735113859177, + 0.00512595335021615, + 0.0011065599974244833, + -0.05840864032506943, + -0.02846977859735489, + 0.0875876322388649, + -0.038094792515039444, + 0.016033247113227844, + 0.0317118875682354, + -0.05141783878207207, + 0.030774716287851334, + 0.06286653876304626, + -0.028520436957478523, + -0.026038195937871933, + 0.05683824047446251, + 0.04062769189476967, + -0.04143821820616722, + 0.019997233524918556, + -0.05339350178837776, + 0.06185338273644447, + -0.028343133628368378, + -0.0522790253162384, + 0.051975078880786896, + -0.057243507355451584, + 0.03520729020237923, + -0.000488770252559334, + 0.027380632236599922, + -0.054558634757995605, + 0.028849713504314423, + -0.03386485204100609, + -0.0007282083388417959, + -0.0878915786743164, + -0.033940840512514114, + 0.0074023958295583725, + 0.0459214486181736, + -0.015817951411008835, + 0.006120115984231234, + 0.014589495025575161, + -0.006940141785889864, + 0.020554471760988235, + -0.0223908219486475, + -0.023923225700855255, + 0.005547047592699528, + 0.0375882126390934, + 0.008390226401388645, + -0.04506026580929756, + -0.03300366550683975, + 0.10861068964004517, + -0.046883951872587204, + 0.07416326552629471, + -0.05673692747950554, + -0.0084535488858819, + 0.08221788704395294, + -0.005141783971339464, + -0.08525736629962921, + -0.008086278103291988, + 0.029558924958109856, + -0.029989518225193024, + 0.023036710917949677, + -0.00447056582197547, + 0.045085594058036804, + 0.061650749295949936, + -0.023809246718883514, + -0.023606613278388977, + -0.05238034203648567, + 0.048023756593465805, + 0.04308460280299187, + -0.06281588226556778, + 0.02872306853532791, + 0.012233899906277657, + -0.003770852694287896, + -0.01564064808189869, + -0.03029346652328968, + 0.02836846373975277, + 0.020187200978398323, + -0.03761354088783264, + 0.010600180365145206, + -0.030014846473932266, + -0.01564064808189869, + -0.040931638330221176, + 0.012962108477950096, + 0.029128333553671837, + 0.053089551627635956, + 0.004964481107890606, + 0.0009783320128917694, + -0.015817951411008835, + 0.04323657602071762, + -0.05709153041243553, + 0.015400023199617863, + 0.013373703695833683, + 0.039690520614385605, + 0.0761389285326004, + 0.0015387358143925667, + -0.06256259232759476, + 0.03680301457643509, + -0.0344727486371994, + 0.04098229855298996, + 0.06058693304657936, + 0.023783916607499123, + -0.08181262016296387, + 0.017489664256572723, + 0.03497932851314545, + 0.024505792185664177, + -0.0036885333247482777, + 0.026367472484707832, + 0.03183853253722191, + 0.027963198721408844, + 0.011701990850269794, + -0.057800743728876114, + -0.021251019090414047, + -0.07892511785030365, + 0.08768894523382187, + -0.03229445591568947, + -0.08216723054647446, + 0.018946081399917603, + 0.0128291305154562, + 0.005376077257096767, + -0.005192441865801811, + 0.11610806733369827, + -0.0041444553062319756, + -0.00985297467559576, + 0.048226386308670044, + -0.055217187851667404, + 0.030774716287851334, + 0.0346500501036644, + 0.0312053095549345, + 0.026392802596092224, + -0.043287236243486404, + -0.05633166432380676, + 0.0663619413971901, + 0.0013891365379095078, + -0.03566320985555649, + -0.0292549766600132, + -0.09012053161859512, + 0.004973979201167822, + 0.0181355532258749, + 0.023961219936609268, + -0.008117939345538616, + -0.0018363513518124819, + 0.02489839307963848, + -0.035181958228349686, + -0.040703680366277695, + 0.04072900861501694, + 0.06170140579342842, + -0.0027751068118959665, + -0.0013345208717510104, + -0.014120909385383129, + -0.05159514397382736, + 0.03837341070175171, + 0.060282982885837555, + 0.0029223316814750433, + -0.06149877607822418, + -0.02511368878185749, + -0.08424420654773712, + -0.0005410112789832056, + 0.09564224630594254, + 0.057142190635204315, + 0.01735035516321659, + 0.04797309637069702, + -0.0033592565450817347, + 0.04197012633085251, + -0.05384942144155502, + 0.07902643084526062, + -0.08621986210346222, + -0.06291719526052475, + -0.046655990183353424, + -0.01612189970910549, + 0.04191946983337402, + -0.053596131503582, + -0.03150925785303116, + 0.017185715958476067, + -0.05987771973013878, + 0.006933809723705053, + -0.10369686782360077, + -0.05078461393713951, + 0.05759811028838158, + 0.05486258119344711, + -0.009973287582397461, + 0.06002969294786453, + -0.011562681756913662, + 0.019667956978082657, + 0.031357284635305405, + 0.016033247113227844, + -0.043185919523239136, + 0.10830674320459366, + 0.035181958228349686, + -0.053545475006103516, + 0.00011853173054987565, + -0.04399644583463669, + 0.0423247329890728, + 0.013702981173992157, + 0.017527658492326736, + -0.04199545830488205, + -0.01799624413251877, + -0.05800337716937065, + -0.0021038888953626156, + 0.04911290109157562, + -0.03262373432517052, + 0.022808751091361046, + 0.07076918333768845, + 0.017527658492326736, + 0.009371723979711533, + 0.04399644583463669, + 0.06914813071489334, + 0.01132205594331026, + 0.0018901755101978779, + -0.018160881474614143, + -0.04670664668083191, + -0.02204888127744198, + 0.02340398170053959, + 0.021681610494852066, + 0.05693955719470978, + -0.03107866458594799, + -0.01385495439171791, + -0.0905257910490036, + 0.003172455355525017, + 0.0032737713772803545, + -0.050809942185878754, + -0.015691306442022324, + -0.10273436456918716, + -0.05856061354279518, + -0.025632932782173157, + -0.0392092689871788, + 0.027988528832793236, + -0.01575462892651558, + 0.030698729678988457, + 0.04761849343776703, + -0.02971090003848076, + -0.0057021877728402615, + 0.00019778375281021, + 0.009719997644424438, + -0.021592959761619568, + -0.026190171018242836, + 0.06737510114908218, + -0.04503493383526802, + -0.08034353703260422, + 0.0130697563290596, + -0.00714910589158535, + 0.0011263482738286257, + 0.06919878721237183, + -0.023859903216362, + 0.02253013290464878, + 0.05415337160229683, + -0.012860791757702827, + -0.05053132399916649, + 0.041818153113126755, + 0.033712878823280334, + 0.031103992834687233, + -0.008187594823539257, + 0.005097458139061928, + 0.03188919275999069, + -0.04141288995742798, + 0.06271456927061081, + 0.03885466232895851 + ] + }, + { + "id": "bd015061-148c-4732-9888-0f5667ee3071", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "paulabrown", + "reviewDate": "2022-08-27T22:02:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "da0374e9-fb18-4231-bcd9-99313292e149", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "erin64", + "reviewDate": "2021-02-20T17:36:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9b05272f-c6d9-47c6-9e0c-aea3959da136", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "rubengrant", + "reviewDate": "2022-11-28T01:13:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bde88405-52c0-4cd3-b0ba-5ec3dffba68a", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "mdickerson", + "reviewDate": "2022-10-23T19:35:50", + "stars": 4, + "verifiedUser": true + }, + { + "id": "82affc3f-4185-4672-b23c-e57f2b029841", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "xsherman", + "reviewDate": "2022-09-16T21:12:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5185cd98-61cf-49db-a4f9-ede286500a28", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "douglaslester", + "reviewDate": "2021-02-10T22:15:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "862bd7e3-6f38-4bce-9a63-b73fc36509f6", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "stevenlambert", + "reviewDate": "2022-10-19T21:52:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ea353d39-aa08-4eaa-aa79-21670dec57b2", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "hobrien", + "reviewDate": "2021-12-13T03:31:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "27346712-345a-4774-ba06-d491a875d323", + "productId": "0e4feda0-069d-4b32-a22f-b7763ff81e29", + "category": "Accessory", + "docType": "customerRating", + "userName": "todd05", + "reviewDate": "2022-01-28T07:24:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "product", + "name": "Awesome TV + (Gold)", + "description": "This Awesome TV + (Gold) is just too much trouble. (2017-03-18 01:55:58)\n\nWish to say I'm not going to tell you about my experience at The O2 or any other event, this is a VERY special episode of the", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-09-23T15:35:40", + "price": 866.31, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-03-11T22:03:08", + "newPrice": 944.54 + }, + { + "priceDate": "2021-10-14T22:03:08", + "newPrice": 895.87 + }, + { + "priceDate": "2022-05-19T22:03:08", + "newPrice": 894.98 + }, + { + "priceDate": "2022-12-22T22:03:08", + "newPrice": 939.55 + }, + { + "priceDate": "2025-02-17T22:03:08", + "newPrice": 866.31 + } + ], + "descriptionVector": [ + 0.0250515379011631, + 0.006102498155087233, + -0.016492392867803574, + -0.020169539377093315, + -0.022297589108347893, + 0.04913293197751045, + -0.06453000754117966, + 0.024597762152552605, + -0.0015745226992294192, + 0.023001722991466522, + 0.03461211919784546, + -0.011430448852479458, + -0.002085020300000906, + 0.026272036135196686, + 0.05823973938822746, + -0.040839795023202896, + -0.025583550333976746, + -0.0014024010160937905, + 0.0652184933423996, + 0.01509194727987051, + 0.11441401392221451, + -0.04653545841574669, + 0.02816537581384182, + -0.014160925522446632, + -0.062276776880025864, + -0.015686549246311188, + -0.04744300991296768, + 0.08174218237400055, + -0.02065460942685604, + 0.01830749399960041, + 0.039556704461574554, + 0.025380132719874382, + 0.019074218347668648, + -0.006630599033087492, + -0.033078670501708984, + 0.06421706080436707, + 0.041528280824422836, + 0.0596793033182621, + -0.016680162400007248, + 0.036521103233098984, + 0.061838649213314056, + -0.0059342882595956326, + -0.03248406574130058, + 0.07498248666524887, + 0.013691502623260021, + -0.053733278065919876, + -0.013355082832276821, + -0.030997561290860176, + -0.026052972301840782, + -0.005069767590612173, + -0.002442955272272229, + -0.035770028829574585, + 0.0069357240572571754, + 0.006544537842273712, + -0.04612862691283226, + -0.029370227828621864, + -0.020795436576008797, + -0.12192478030920029, + 0.01793195679783821, + 0.007346468977630138, + -0.014090511947870255, + 0.002746124053373933, + 0.010264715179800987, + 0.003334858687594533, + -0.049414586275815964, + 0.001594081986695528, + -0.010045650415122509, + 0.053107380867004395, + 0.00828531477600336, + 0.02548966556787491, + 0.012001579627394676, + -0.03223370760679245, + 0.08887740969657898, + 0.08437094837427139, + 0.061244044452905655, + -0.039807066321372986, + 0.07185300439596176, + 0.06277749687433243, + 0.05911599472165108, + -0.07617169618606567, + 0.014372165314853191, + 0.049070343375205994, + -0.047286536544561386, + -0.007420794107019901, + 0.0065093315206468105, + 0.0169774629175663, + -0.0345495268702507, + -0.16486133635044098, + 0.02642851136624813, + 0.010522897355258465, + 0.004213070962578058, + 0.019496699795126915, + -0.03520672023296356, + -0.07085156440734863, + 0.0008483841666020453, + -0.016022969037294388, + 0.017055699601769447, + 0.04349985718727112, + -0.08699971437454224, + 0.06703359633684158, + 0.04847574234008789, + -0.07122710347175598, + -0.007956719025969505, + -0.02472294121980667, + 0.0018630222184583545, + 0.07047603279352188, + 0.08806373924016953, + -0.0008415384218096733, + 0.05179299786686897, + -0.08236807584762573, + 0.09463566541671753, + -0.0010092592565342784, + 0.030934970825910568, + -0.021468276157975197, + 0.005151916760951281, + 0.030402958393096924, + -0.053389035165309906, + -0.059178583323955536, + -0.06064944341778755, + -0.04919552430510521, + -0.0033250791020691395, + -0.037491243332624435, + -0.04675452411174774, + -0.021124031394720078, + 0.04306172952055931, + 0.01970011554658413, + 0.003790590213611722, + 0.09964284300804138, + 0.026303332298994064, + -0.05777031555771828, + -0.08712489902973175, + 0.04515848681330681, + 0.012267585843801498, + 0.0029417171608656645, + -0.06274619698524475, + 0.014286104589700699, + -0.055798739194869995, + 0.04368762671947479, + 0.006607127841562033, + -0.009122452698647976, + 0.009912647306919098, + -0.007213465869426727, + 0.02846267633140087, + 0.0034306992311030626, + -0.006759690120816231, + 0.046629343181848526, + -0.06878610700368881, + 0.03561355173587799, + -0.035519666969776154, + 0.0031040592584758997, + 0.0550476610660553, + -0.0916939452290535, + -0.06453000754117966, + -0.0176503024995327, + -0.004768554586917162, + 0.0435311533510685, + 0.03805455192923546, + -0.046629343181848526, + -0.07110192626714706, + -0.021890755742788315, + -0.07197818160057068, + -0.04124663025140762, + -0.07930117845535278, + 0.0339549258351326, + 0.010749785229563713, + -0.04046425595879555, + 0.08449612557888031, + -0.0200443584471941, + 0.004842879716306925, + 0.016867930069565773, + 0.026021678000688553, + -0.07648464292287827, + 0.014098335057497025, + -0.047004882246255875, + 0.0007007115054875612, + 0.024159634485840797, + 0.06064944341778755, + 0.048413150012493134, + -0.02311125583946705, + -0.04612862691283226, + -0.02345549874007702, + 0.03351679816842079, + 0.018401378765702248, + -0.059178583323955536, + -0.05423399806022644, + 0.0037475598510354757, + -0.014403460547327995, + -0.042905256152153015, + -0.034111399203538895, + -0.0441257543861866, + 0.06603215634822845, + -0.028572209179401398, + 0.061619583517313004, + -0.11347517371177673, + -0.03720959275960922, + 0.016820987686514854, + 0.025239305570721626, + -0.033767156302928925, + -0.0035187159664928913, + 0.03314125910401344, + 0.008692148141562939, + 0.031686048954725266, + 0.07573356479406357, + -0.055861327797174454, + -0.0027891546487808228, + -0.03893080726265907, + 0.03190511092543602, + 0.03968188539147377, + 0.048694804310798645, + 0.06822279840707779, + -0.01509194727987051, + 0.020779788494110107, + -0.013973155990242958, + -0.03055943362414837, + 0.0577390193939209, + 0.0015774565981701016, + -0.05536061152815819, + 0.040902383625507355, + -0.03695923089981079, + -0.01927763596177101, + 0.06903646886348724, + -0.05589262396097183, + -0.005793461576104164, + -0.008731266483664513, + 0.04309302568435669, + -0.017227821052074432, + 0.035425782203674316, + -0.014356518164277077, + 0.003168604802340269, + -0.026694517582654953, + -0.08474648743867874, + -0.03429916873574257, + -0.04478294774889946, + -0.02852526679635048, + -0.04112144932150841, + 0.016054265201091766, + 0.0037240886595100164, + 0.012275409884750843, + 0.023846685886383057, + -0.043593741953372955, + -0.013018663041293621, + 0.08581051230430603, + -0.06609474867582321, + -0.09807810187339783, + -0.0015843024011701345, + 0.045940857380628586, + 0.08380763977766037, + 0.048350561410188675, + 0.006302002817392349, + -0.028603503480553627, + 0.0024214398581534624, + -0.04409446194767952, + -0.01768159680068493, + 0.05767643079161644, + 0.01598385162651539, + 0.07260408252477646, + 0.044720359146595, + 0.002218023408204317, + 0.030262131243944168, + -0.021781224757432938, + -0.04012001305818558, + 0.014645995572209358, + 0.05198076739907265, + 0.04062072932720184, + -0.001251794514246285, + 0.04753689467906952, + 0.03257795050740242, + -0.07667241245508194, + -0.010546368546783924, + 0.03742865473031998, + -0.09225725382566452, + -0.040902383625507355, + -0.03364197537302971, + -0.008653029799461365, + 0.021624749526381493, + 0.01699311099946499, + 0.055141545832157135, + -0.0003048804064746946, + -0.004975883290171623, + 0.014872883446514606, + 0.10452484339475632, + -0.020216481760144234, + -0.00348155340179801, + -0.07698535919189453, + 0.040902383625507355, + -0.038868218660354614, + 0.015702197328209877, + 0.03564484789967537, + 0.022798307240009308, + -0.003084499854594469, + -0.0836198702454567, + 0.003876651171594858, + 0.04434482008218765, + 0.05113580450415611, + 0.050040483474731445, + 0.014818117022514343, + 0.06140051782131195, + -0.026538042351603508, + 0.051104508340358734, + -0.013128194957971573, + -0.00796063058078289, + 0.04672322794795036, + -0.05367068946361542, + -0.09200689196586609, + -0.023643268272280693, + 0.0495084710419178, + 0.047004882246255875, + -0.01186075247824192, + -0.01724346913397312, + -0.006845751311630011, + 0.05946023762226105, + 0.033391617238521576, + -0.03486247733235359, + 0.009756173007190228, + -0.07667241245508194, + -0.0207171980291605, + -0.008707795292139053, + 0.020482487976551056, + -0.0529509074985981, + -0.053733278065919876, + 0.06747172027826309, + 0.019512346014380455, + -0.03595779836177826, + 0.002579870168119669, + 0.0013730620266869664, + -0.0017534903017804027, + -0.0013202519621700048, + -0.04406316578388214, + -0.03705311566591263, + -0.030449900776147842, + -0.01661757193505764, + 0.03908728435635567, + 0.028900805860757828, + 0.07160264253616333, + 0.03423658013343811, + -0.08894000202417374, + 0.007999748922884464, + -0.09269538521766663, + 0.04772466421127319, + -0.02580261416733265, + 0.07460695505142212, + 0.020482487976551056, + 0.017728539183735847, + -0.013488085940480232, + -0.05708182975649834, + -0.0393376424908638, + 0.05122968927025795, + -0.05198076739907265, + 0.04747430607676506, + -0.03498765453696251, + 0.0019393034745007753, + -0.029010336846113205, + 0.0629652664065361, + 0.009466695599257946, + 0.10896871238946915, + 0.011821634136140347, + 0.010413365438580513, + -0.037991963326931, + -0.0012958028819411993, + 0.004545578733086586, + 0.053764574229717255, + -0.06246454641222954, + 0.027320414781570435, + 0.03958800062537193, + -0.044250935316085815, + 0.037115707993507385, + -0.010374247096478939, + 0.03940023109316826, + -0.07391846179962158, + 0.03051249124109745, + 0.02921375446021557, + -0.027351709082722664, + -0.08449612557888031, + 0.04130921885371208, + -0.04713006317615509, + 0.05132357403635979, + 0.055423200130462646, + -0.035801321268081665, + 0.020592018961906433, + 0.08180476725101471, + -0.06590697914361954, + 0.03843009099364281, + 0.011618217453360558, + -0.0007437419844791293, + -0.024253517389297485, + 0.07842492312192917, + -0.042842667549848557, + -0.008911211974918842, + -0.004557314328849316, + 0.013175137341022491, + -0.04509589821100235, + 0.0004048772680107504, + 0.0035715261474251747, + -0.09156876802444458, + 0.01932457834482193, + -0.011422624811530113, + 0.012337999418377876, + 0.06309044361114502, + 0.032765720039606094, + 0.013574146665632725, + -0.0022551859728991985, + 0.04174734652042389, + 0.03774160519242287, + 0.020106948912143707, + -0.041528280824422836, + -0.05029084533452988, + -0.05805196985602379, + 0.03498765453696251, + 0.03163910657167435, + 0.015146713703870773, + -0.02135874330997467, + -0.010734138078987598, + -0.00012774660717695951, + 0.006388063542544842, + 0.054421763867139816, + 0.031138388440012932, + 0.11585357785224915, + 0.0441257543861866, + 0.07435659319162369, + -0.016022969037294388, + 0.03774160519242287, + 0.11191042512655258, + 0.017384296283125877, + 0.02780548483133316, + -0.07686018198728561, + 0.022188058122992516, + -0.008371375501155853, + -0.02209417335689068, + -0.06822279840707779, + -0.05895952135324478, + 0.019246339797973633, + 0.04400057718157768, + -0.010092592798173428, + -0.0016204870771616697, + -0.06240195408463478, + 0.047317832708358765, + -0.04180993512272835, + 0.00040194339817389846, + -0.01358979381620884, + 0.024957653135061264, + -0.07660982012748718, + -0.03727218136191368, + -0.0387430377304554, + 0.08368246257305145, + 0.00069924455601722, + 0.004823320545256138, + -0.02583390846848488, + -0.029260696843266487, + 0.042592305690050125, + 0.027649011462926865, + -0.0230330191552639, + -0.03561355173587799, + 0.00373386824503541, + -0.037804193794727325, + -0.0037808106280863285, + 0.03429916873574257, + 0.02855656109750271, + 0.07973930984735489, + -0.05532931536436081, + 0.02541142888367176, + 0.09757737815380096, + 0.03774160519242287, + 0.010882788337767124, + 0.02073284611105919, + -0.009897000156342983, + -0.00746773649007082, + -0.022172410041093826, + 0.03151392564177513, + 0.025865202769637108, + -0.0019627746660262346, + -0.02574002370238304, + 0.004475165158510208, + -0.14746138453483582, + -0.023252082988619804, + -0.049414586275815964, + 0.002362762112170458, + 0.00076232326682657, + -0.06390410661697388, + 0.0002238316083094105, + -0.041152745485305786, + -0.025520959869027138, + 0.0033544180914759636, + -0.00331334350630641, + 0.08324433118104935, + -0.0009011942311190069, + 0.009795292280614376, + -0.02580261416733265, + -0.025990383699536324, + -0.005981230642646551, + 0.03520672023296356, + 0.031154034659266472, + -0.021796870976686478, + 0.020592018961906433, + 0.03131050989031792, + -0.029996125027537346, + -0.07923859357833862, + -0.011094029061496258, + -0.011297444812953472, + 0.06115015968680382, + 0.016867930069565773, + 0.007475560065358877, + 0.01252576895058155, + -0.08699971437454224, + 0.027273472398519516, + 0.05589262396097183, + -0.029667530208826065, + 0.03226500377058983, + 0.02882256731390953, + -0.0019246339797973633, + -0.00493285246193409, + -0.0029397611506283283, + 0.06290267407894135 + ] + }, + { + "id": "1c255a1d-3be9-4a40-94ed-9d2fc901180f", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "jeffrey85", + "reviewDate": "2021-08-30T07:37:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "73bdc911-5f12-42af-8a6e-30bdee02a8ac", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "joseph40", + "reviewDate": "2021-12-11T07:21:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "17cf2478-d985-4e3c-a718-998ddda54d0d", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "jamesroach", + "reviewDate": "2021-06-04T09:46:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fbf06276-3d7f-4563-b993-54961efd7f77", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "davispaul", + "reviewDate": "2022-06-11T20:34:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "30502396-d406-42b0-876c-223094205b6d", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "connie03", + "reviewDate": "2022-09-08T00:33:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1588b3fa-b2c2-455b-84e7-b952a7a3f37c", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "michellegraham", + "reviewDate": "2021-04-26T23:15:26", + "stars": 3, + "verifiedUser": true + }, + { + "id": "37a76e54-0223-48a9-b5fd-88c0d5b1483f", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "nharris", + "reviewDate": "2022-12-12T23:50:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "485bdf88-3dfc-4dfe-860a-1d670cead8de", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "zcampbell", + "reviewDate": "2021-04-24T22:11:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d23a1baf-d902-48f2-96d6-d7aa3ae195e1", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "mario26", + "reviewDate": "2022-09-27T08:24:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d1e807a8-9f03-4fc0-8e7a-59eb804fcd88", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "ryanevans", + "reviewDate": "2022-08-28T20:39:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a75d3e22-33bc-48bf-8f0a-33142ae4cf1e", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "alice00", + "reviewDate": "2021-07-07T17:51:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e74b125e-03aa-4c8d-8b30-8b3968c0a31c", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "hallgregory", + "reviewDate": "2022-10-07T03:28:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7a8abd5c-8d00-4d07-9fed-855aa163236e", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "katiepratt", + "reviewDate": "2022-04-10T06:09:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7a8f334a-d494-4b19-9fc3-082842194188", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "robert90", + "reviewDate": "2022-04-13T06:20:22", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2fff1c88-61ab-42ae-aa8b-6accc95f0388", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "ryandonald", + "reviewDate": "2022-12-02T19:14:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "21acca99-957c-43fc-922c-f222b2b008c7", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "susan03", + "reviewDate": "2022-12-23T03:35:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2d72d89a-2aec-42a3-b534-d9bf169d3405", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "walkerthomas", + "reviewDate": "2022-12-01T17:00:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a2d36370-9c7e-4b7e-b4af-41f7b8fa8068", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "ocabrera", + "reviewDate": "2022-04-12T09:06:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2ddd0a23-c97d-4d9e-8a2f-ae1e33126e5e", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "brian30", + "reviewDate": "2021-03-11T22:03:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f09a2e95-d05e-4ff7-8abc-a1387f83a0e1", + "productId": "882c956f-8110-4909-a319-1e2bd5f1e3d5", + "category": "Media", + "docType": "customerRating", + "userName": "christinabrown", + "reviewDate": "2021-10-17T22:08:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "65554573-b420-456a-9f4c-2edfbcffa972", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Gold)", + "description": "This Basic Speaker Mini (Gold) is a compact speaker with wide acoustic range.\n\nThe Mini is also popular with musicians for its versatility as it includes preamp, volume control, volume rock filter with 24-bit FIFO with a mono frequency response of up to 381 kHz on standard or AM/FM systems and", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-12-02T11:40:50", + "price": 247.43, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-13T02:59:39", + "newPrice": 252.32 + }, + { + "priceDate": "2021-08-16T02:59:39", + "newPrice": 247.43 + } + ], + "descriptionVector": [ + -0.03517953306436539, + 0.0219403263181448, + -0.05980770289897919, + -0.07085912674665451, + -0.05755741521716118, + -0.007188425865024328, + -0.08966154605150223, + 0.032579194754362106, + -0.04403067007660866, + 0.029728829860687256, + -0.055357132107019424, + -0.0043318080715835094, + 0.02632839046418667, + -0.018102331086993217, + 0.020027579739689827, + 0.008182303979992867, + -0.001751788193359971, + -0.0417303740978241, + -0.02230287343263626, + 0.06040778011083603, + 0.01946500688791275, + -0.08481092751026154, + -0.0663585439324379, + 0.006488335784524679, + -0.05260677635669708, + 0.01737723872065544, + -0.04638097435235977, + 0.04053021967411041, + -0.020327618345618248, + 0.021065212786197662, + 0.058907587081193924, + 0.004653724376112223, + -0.09796261787414551, + 0.015176954679191113, + -0.097862608730793, + 0.05975769832730293, + -0.01916496828198433, + -0.030903980135917664, + 0.02347802370786667, + -0.009144928306341171, + 0.03955509513616562, + 0.023740557953715324, + 0.0028675568755716085, + -0.019177470356225967, + 0.019527515396475792, + 0.028603684157133102, + -0.02530325949192047, + 0.057357389479875565, + 0.01546449214220047, + -0.06210799887776375, + -0.006438329350203276, + -0.012089056894183159, + -0.01946500688791275, + 0.03245418146252632, + -0.009557480923831463, + -0.026453407481312752, + 0.0112389475107193, + 0.11681504547595978, + 0.02915375493466854, + -0.0771099328994751, + 0.06435828655958176, + -0.031729087233543396, + 0.0016689649783074856, + 0.019515013322234154, + -0.0324791818857193, + 0.010788889601826668, + -0.0324791818857193, + 0.024728184565901756, + -0.016039565205574036, + 0.10451345890760422, + 0.0187649168074131, + -0.01830235682427883, + -0.037579841911792755, + 0.07385951280593872, + 0.06750869750976562, + -0.026128364726901054, + 0.02407810091972351, + 0.0771099328994751, + -0.015239463187754154, + -0.006919641513377428, + 0.00835107546299696, + 0.014676890335977077, + -0.01753976009786129, + -0.05915762111544609, + -0.00841983500868082, + 0.004872502759099007, + 0.018127335235476494, + -0.09396210312843323, + -0.04695604741573334, + 0.03252919018268585, + -0.02847866900265217, + 0.05440700799226761, + 0.009313699789345264, + 0.08766128867864609, + 0.1157149076461792, + 0.004559962544590235, + -0.043655622750520706, + 0.004622470587491989, + -0.07045907527208328, + -0.018352363258600235, + 0.028903722763061523, + -0.029178759083151817, + -0.02022760547697544, + 0.021190229803323746, + 0.005691357888281345, + 0.04608093574643135, + 0.02577831968665123, + -0.017102202400565147, + 0.03145405277609825, + -0.04218043386936188, + 0.038204919546842575, + -0.006825879216194153, + 0.05045649781823158, + 0.028678694739937782, + 0.017114704474806786, + 0.04303054139018059, + -0.006844631861895323, + -0.02070266753435135, + -0.04955638200044632, + -0.012682884000241756, + -0.0009485596674494445, + -0.021402757614850998, + 0.017864800989627838, + 0.001154836267232895, + -0.039205048233270645, + -0.021177727729082108, + 0.015752028673887253, + 0.03470446914434433, + -0.007144670467823744, + -0.019965071231126785, + -0.04378063976764679, + 0.08366077393293381, + 0.021515270695090294, + 0.0037254798226058483, + -0.0424804724752903, + -0.025378268212080002, + 0.06130789592862129, + 0.06330815702676773, + -0.010438844561576843, + -0.0066446056589484215, + -0.03132903575897217, + 0.04485577717423439, + 0.041130296885967255, + 0.0023159233387559652, + -0.03862997516989708, + 0.005728862714022398, + -0.05045649781823158, + 0.07050908356904984, + -0.03567959740757942, + 0.0112389475107193, + -0.016439616680145264, + -0.08096043020486832, + 0.03070395439863205, + -0.09586235135793686, + 0.025440776720643044, + 0.08386079967021942, + -0.05225672945380211, + -0.011889031156897545, + -0.0032222899608314037, + 0.03592962771654129, + 0.002186219207942486, + -0.02955380640923977, + 0.021752802655100822, + -0.005588219966739416, + -0.011263950727880001, + 0.02147776633501053, + 0.004288052208721638, + 0.056207239627838135, + -0.054507020860910416, + 0.03455445170402527, + 0.010213815607130527, + -0.003550457302480936, + -0.049806416034698486, + -0.009132426232099533, + -0.03275422006845474, + 0.0072821881622076035, + 0.019902562722563744, + 0.01431434415280819, + -0.003759859362617135, + -0.08401082456111908, + 0.00505690136924386, + 0.10481350123882294, + -0.02577831968665123, + 0.01698968932032585, + 0.02862868830561638, + 0.022515399381518364, + 0.08881144225597382, + -0.017352234572172165, + -0.0543069951236248, + -0.017877303063869476, + 0.028353651985526085, + 0.007882265374064445, + -0.026203375309705734, + -0.0018236724426969886, + 0.01807732880115509, + -0.038129910826683044, + 0.011345211416482925, + 0.019440004602074623, + -0.012701636180281639, + -0.025803323835134506, + -0.014101816341280937, + 0.07270936667919159, + 0.09126175194978714, + -0.021515270695090294, + -0.022977959364652634, + -0.0375298336148262, + 0.00281911320053041, + 0.0592576339840889, + -0.010245069861412048, + 0.013451732695102692, + 0.046055931597948074, + -0.051056575030088425, + -0.06210799887776375, + 0.026678435504436493, + 0.059907715767621994, + 0.03267920762300491, + 0.03382935747504234, + -0.024253124371170998, + -0.026603426784276962, + -0.04740610718727112, + 0.07130918651819229, + -0.007194676902145147, + 0.007550972513854504, + 0.040130168199539185, + -0.07295940071344376, + -0.04845624044537544, + -0.001402524416334927, + -0.03615465760231018, + 0.061907973140478134, + 0.06210799887776375, + -0.0972125232219696, + 0.09661244601011276, + -0.03360432758927345, + 0.05185667797923088, + -0.044355712831020355, + 0.011501481756567955, + 0.04700605571269989, + -0.01069512777030468, + -0.08196055889129639, + 0.07565974444150925, + -0.05975769832730293, + 0.0685088261961937, + -0.06575846672058105, + -0.0024831322953104973, + -0.014626883901655674, + -0.006713364738970995, + 0.06970898061990738, + -0.025490783154964447, + -0.03867998346686363, + -0.009626239538192749, + -0.12941667437553406, + -0.040355198085308075, + 0.0017924184212461114, + -0.027103491127490997, + -0.09401211142539978, + 0.03422940894961357, + 0.07771001011133194, + -0.05270678922533989, + -0.026353394612669945, + -0.09276194870471954, + 0.05130660906434059, + -0.08466090261936188, + -0.020115090534090996, + -0.0041661616414785385, + -0.07801004499197006, + -0.031504057347774506, + 0.061207883059978485, + -0.09516225755214691, + 0.038054902106523514, + 0.0464559830725193, + -0.01698968932032585, + 0.04983142018318176, + -0.006819628644734621, + 0.03262920305132866, + -0.006091409828513861, + 0.03147905319929123, + -0.07826007902622223, + 0.037579841911792755, + -0.026378396898508072, + -0.05285680666565895, + 0.13261708617210388, + 0.10031291842460632, + 0.03500450775027275, + -0.041130296885967255, + -0.005035023670643568, + -0.01740224100649357, + 0.03162907436490059, + 0.015789533033967018, + -0.07185925543308258, + -0.019502511247992516, + 0.00033148800139315426, + -0.02800360694527626, + -0.051206596195697784, + 0.10791390389204025, + -0.02362804301083088, + 0.0779600441455841, + -0.026428403332829475, + -0.006010149139910936, + 0.03595463186502457, + 0.01253911480307579, + -0.0285536777228117, + 0.013264208100736141, + -0.011870278976857662, + -0.06680860370397568, + 0.005588219966739416, + 0.03915504366159439, + -0.08591106534004211, + 0.07941022515296936, + -0.04375563561916351, + -0.018577393144369125, + 0.05830750986933708, + -0.011782768182456493, + -0.06295810639858246, + -0.03815491497516632, + 0.05700734257698059, + -0.01676465943455696, + 0.010095050558447838, + 0.030028868466615677, + 0.019740043208003044, + 0.019727541133761406, + -0.02377806231379509, + -0.033129267394542694, + -0.06170794740319252, + 0.00823231041431427, + -0.0005949985352344811, + 0.034904494881629944, + 0.03630467504262924, + -0.03963010385632515, + 0.03422940894961357, + 0.06265807151794434, + -0.0251657422631979, + -0.06260806322097778, + 0.022977959364652634, + -0.002417498966678977, + 0.05845753103494644, + 0.004263048991560936, + -0.0002074485964840278, + -0.04825621470808983, + 0.024728184565901756, + 0.010526356287300587, + 0.005463203880935907, + -0.04085526242852211, + 0.03107900358736515, + -0.03607964888215065, + 0.031504057347774506, + -0.09036163985729218, + -0.0318291001021862, + 0.03500450775027275, + -0.0037004766054451466, + -0.0005301464116200805, + 0.001438466482795775, + -0.024440648034214973, + 0.08491093665361404, + -0.05575718358159065, + 0.02970382571220398, + -0.057657428085803986, + 0.03447944298386574, + -0.08226059377193451, + 0.044430721551179886, + 0.03480448201298714, + 0.04185539111495018, + -0.02246539294719696, + 0.01730222813785076, + 0.013714266940951347, + 0.02055264823138714, + 0.04685603454709053, + -0.033904366195201874, + -0.009463719092309475, + -0.06250805407762527, + 0.03325428441166878, + -0.04985642060637474, + -0.009720002301037312, + -0.050981566309928894, + 0.02400309219956398, + 0.015451990067958832, + 0.03452944755554199, + 0.05725737661123276, + -0.053956951946020126, + -0.002151839667931199, + 0.02622837759554386, + 0.01977754756808281, + 0.011645250022411346, + 0.008319821208715439, + -0.07025904953479767, + 0.07500965893268585, + -0.0010165371932089329, + -0.0672086551785469, + -0.02315298281610012, + 0.012532864697277546, + 0.005110033322125673, + 0.0050412742421031, + -0.07846010476350784, + -0.07225930690765381, + 0.05370691791176796, + 0.005653853062540293, + -0.018439875915646553, + 0.016489623114466667, + 0.05068152770400047, + 0.0025831451639533043, + -0.010163809172809124, + 0.02770356833934784, + 0.03780486807227135, + -0.010832644999027252, + 0.028903722763061523, + -0.04800618439912796, + -0.05660729110240936, + -0.09741254895925522, + 0.08801133930683136, + 0.04815620183944702, + -0.05510709807276726, + 0.06325814872980118, + -0.10501352697610855, + -0.03722979500889778, + -0.017364736646413803, + -0.01923997886478901, + 0.013326716609299183, + -0.015889545902609825, + 0.018114833161234856, + 0.05740739405155182, + 0.03160407021641731, + 0.030278900638222694, + -0.028678694739937782, + -0.047431111335754395, + -0.024590667337179184, + -0.016602138057351112, + -0.00252063712105155, + 0.01038258709013462, + -0.04038020223379135, + -0.008988657966256142, + -0.04715607315301895, + -0.07515968382358551, + -0.06085783988237381, + -0.023678049445152283, + -0.002484695054590702, + -0.03777986764907837, + -0.0167771615087986, + -0.03332929313182831, + 0.048281218856573105, + -0.0963624119758606, + -0.006019525229930878, + -0.04090527072548866, + -0.017664775252342224, + -0.00633206544443965, + 0.03862997516989708, + -0.06675859540700912, + -0.06155792996287346, + -0.013864286243915558, + -0.04648098722100258, + 0.04245546832680702, + 0.01376427337527275, + -0.007088412996381521, + -0.02530325949192047, + -0.05885758250951767, + 0.04745611175894737, + 0.0271534975618124, + 0.04503079876303673, + 0.09486222267150879, + 0.11971542239189148, + -0.029753832146525383, + 0.0011532735079526901, + -0.006750869564712048, + 0.005935139488428831, + -0.006035152357071638, + 0.0062164259143173695, + 0.004503705073148012, + -0.021290242671966553, + -0.01607707142829895, + -0.012226575054228306, + -0.029103748500347137, + 0.02231537364423275, + -0.015439488925039768, + -0.04153034836053848, + 0.0037817370612174273, + 0.032504186034202576, + 0.013639257289469242, + -0.08366077393293381, + -0.017027193680405617, + -0.08921149373054504, + 0.019139965996146202, + 0.029503799974918365, + -0.020740171894431114, + -0.02494071237742901, + -0.016652144491672516, + 0.0506565235555172, + 0.08116045594215393, + -0.02461567148566246, + 0.01388928946107626, + 0.06240803748369217, + 0.07515968382358551, + 0.07125917822122574, + 0.008757377974689007, + 0.065608449280262, + 0.048581257462501526, + 0.028128623962402344, + 0.012645378708839417, + -0.013126690872013569, + 0.005110033322125673, + 0.012295333668589592, + 0.011070176027715206, + 0.09511224925518036, + 0.02146526426076889, + 0.008638612926006317, + 0.02492821030318737, + 0.03800489380955696, + -0.032279156148433685, + -0.023065470159053802, + 0.023127978667616844, + -0.04940636456012726, + -0.00853860005736351, + 0.013089185580611229, + -0.04653099179267883, + 0.0034848239738494158 + ] + }, + { + "id": "75793ef1-66ec-4b9c-a847-455c0d67e6d6", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "garyramos", + "reviewDate": "2021-02-09T09:00:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2d66a618-31b9-42e3-b021-c7a0587e13fa", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "ejones", + "reviewDate": "2022-06-24T18:37:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "635d25c2-e2ff-4893-a55c-bfb72c7b6d8d", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "david08", + "reviewDate": "2022-08-27T19:25:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "48e220c8-5aeb-4000-be87-307743b9d695", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "howardshannon", + "reviewDate": "2021-01-13T02:59:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "803b0507-d8b7-4e7f-9b92-46a56b3b6360", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "valdezbrian", + "reviewDate": "2022-07-23T20:05:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "62cc9c7b-d43b-4186-a371-dddb555b6e54", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "hawkinstiffany", + "reviewDate": "2021-11-25T00:37:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf86043d-f86a-46f7-b066-8808359cb3e6", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "jasonwolf", + "reviewDate": "2022-10-08T21:37:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dedc588e-e13e-40b6-95bf-57d8015407a1", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "christina04", + "reviewDate": "2021-11-18T01:36:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0d8180fb-7fd6-4bf9-aa33-1a81edbc22a2", + "productId": "65554573-b420-456a-9f4c-2edfbcffa972", + "category": "Media", + "docType": "customerRating", + "userName": "rogerwood", + "reviewDate": "2021-11-20T15:15:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "product", + "name": "Luxe Filter + (Gold)", + "description": "This Luxe Filter + (Gold) is actually similar to the Silver Filter; it makes use of the fact that a gold filter needs a metal (e.g. a stainless steel) surface to capture sound (e.g. a copper plate). Gold has two advantages over Silver in achieving this, 1). There is no metal filter in platinum, and 2).", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-11-17T18:39:58", + "price": 777.9, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-06-12T12:25:22", + "newPrice": 711.28 + }, + { + "priceDate": "2021-11-20T12:25:22", + "newPrice": 813.18 + }, + { + "priceDate": "2022-04-30T12:25:22", + "newPrice": 744.04 + }, + { + "priceDate": "2022-10-08T12:25:22", + "newPrice": 843.72 + }, + { + "priceDate": "2023-04-01T12:25:22", + "newPrice": 777.9 + } + ], + "descriptionVector": [ + 0.010926657356321812, + -0.01083478145301342, + -0.04399538412690163, + -0.019398918375372887, + -0.024110835045576096, + -0.04575414955615997, + -0.06893309950828552, + -0.031211521476507187, + -0.04142286255955696, + 0.017561402171850204, + -0.07686066627502441, + 0.06651807576417923, + 0.015907637774944305, + 0.0010926657123491168, + 0.03488655388355255, + 0.004180348943918943, + -0.03706532344222069, + -0.03218277916312218, + 0.009423832409083843, + 0.0025347876362502575, + 0.08321322500705719, + -0.08856827020645142, + -0.04832667112350464, + -0.062003038823604584, + -0.07024560868740082, + -0.025948351249098778, + 0.006975998170673847, + 0.015868263319134712, + -0.042315367609262466, + 0.024963967502117157, + 0.11676101386547089, + 0.0037570639979094267, + -0.048142921179533005, + 0.016852647066116333, + -0.05580798536539078, + -0.0466991551220417, + 0.05811800807714462, + 0.029400255531072617, + 0.036724068224430084, + 0.025055842474102974, + 0.020068299025297165, + -0.01708889938890934, + -0.07045561075210571, + 0.0234545785933733, + -0.0051614511758089066, + -0.06672807782888412, + -0.003671750659123063, + 0.04207911714911461, + -0.02596147544682026, + -0.05029543861746788, + 0.011011971160769463, + -0.03682906925678253, + -0.07024560868740082, + 0.019097041338682175, + 0.0024609589017927647, + -0.04291912540793419, + 0.0038128457963466644, + 0.1563463658094406, + 0.04420538619160652, + -0.01568451151251793, + 0.016839521005749702, + -0.01832265965640545, + -0.03627781569957733, + -0.0038161270786076784, + -0.026722732931375504, + -0.018808288499712944, + -0.0436016283929348, + -0.06961560994386673, + 0.0466991551220417, + 0.04221036657691002, + -0.029951510950922966, + 0.024950841441750526, + 0.011582913808524609, + 0.045491646975278854, + 0.051870450377464294, + 0.06935310363769531, + 0.028428997844457626, + -0.037564076483249664, + 0.033521540462970734, + -0.019503919407725334, + 0.05402297154068947, + 0.010723218321800232, + -0.07911819219589233, + 0.011602601036429405, + -0.009226955473423004, + -0.0118126031011343, + 0.051476698368787766, + -0.02222081832587719, + -0.050505440682172775, + 0.003734095022082329, + -0.003648781683295965, + 0.0657830759882927, + -0.014070122502744198, + -0.04294537380337715, + -0.013597618788480759, + 0.02113143354654312, + -0.0012140730395913124, + 0.04331287741661072, + -0.10683842748403549, + 0.0338890440762043, + -0.06709558516740799, + -0.08032570034265518, + -0.0015536854043602943, + 0.07764817774295807, + 0.029925260692834854, + 0.03942784294486046, + 0.007947256788611412, + -0.08730825781822205, + 0.022128943353891373, + -0.027431488037109375, + 0.06163553521037102, + -0.03567406162619591, + 0.004314881283789873, + 0.014647627249360085, + 0.040635354816913605, + 0.039401594549417496, + -0.023835208266973495, + -0.01403074711561203, + 0.007067874073982239, + 0.013013551011681557, + -0.015632010996341705, + 0.10074837505817413, + 0.025803973898291588, + -0.041344109922647476, + -0.030476516112685204, + 0.028586499392986298, + 0.01221948117017746, + -0.007816005498170853, + 0.030870268121361732, + -0.02294269949197769, + -0.13681618869304657, + 0.04399538412690163, + 0.03404654562473297, + -0.009738834574818611, + -0.039664097130298615, + -0.0027923681773245335, + 0.006857872009277344, + 0.0958133339881897, + -0.013531993143260479, + 0.04137036204338074, + -0.03677656874060631, + -0.05822300538420677, + 0.01680014654994011, + 0.020882057026028633, + 0.03236653283238411, + -0.08526074141263962, + -0.05528298020362854, + 0.035621561110019684, + -0.0463579036295414, + -0.04698790982365608, + 0.061058033257722855, + -0.10626092553138733, + -0.02513459324836731, + -0.02832399681210518, + 0.020068299025297165, + 0.03585781157016754, + -0.058538008481264114, + -0.0009581333724781871, + 0.025607097893953323, + -0.049691684544086456, + -0.008045694790780544, + -0.09287331253290176, + -0.03360029309988022, + 0.0006652792217209935, + 0.00392769044265151, + 0.072870634496212, + 0.03790533170104027, + 0.019950173795223236, + -0.1033208966255188, + 0.02429458685219288, + 0.04289287328720093, + 0.016038889065384865, + -0.0007259828853420913, + -0.0732906386256218, + -0.04809042066335678, + 0.03176277503371239, + 0.014608251862227917, + -0.040084097534418106, + 0.038272831588983536, + -0.024202710017561913, + 0.011438537389039993, + 0.011044783517718315, + -0.022181443870067596, + -0.038272831588983536, + 0.01466075237840414, + 0.00043435924453660846, + 0.0015799356624484062, + 0.029689008370041847, + -0.006483806297183037, + 0.03866658732295036, + -0.026315854862332344, + 0.029925260692834854, + 0.07313313335180283, + 0.006168803665786982, + -0.026315854862332344, + -0.04627915471792221, + -0.05874801054596901, + -0.040897857397794724, + -0.00733037618920207, + -0.01083478145301342, + 0.0021886127069592476, + 0.02597460150718689, + 0.0413966104388237, + -0.006057240068912506, + -0.031474024057388306, + -0.0034223736729472876, + 0.06636057794094086, + 0.06153053417801857, + -0.016708269715309143, + 0.018545785918831825, + -0.016472019255161285, + 0.005305827595293522, + -0.030082762241363525, + 0.03538530692458153, + 0.04709291085600853, + 0.015579510480165482, + 0.006365680601447821, + -0.006864434573799372, + -0.024530839174985886, + 0.020068299025297165, + 0.006660995539277792, + 0.013184177689254284, + -0.005673330742865801, + 0.037721578031778336, + 0.037170324474573135, + -0.019136415794491768, + -0.008531324565410614, + 0.010847906582057476, + 0.11046095937490463, + -0.007153187412768602, + -0.005322233773767948, + 0.03709157183766365, + -0.027273988351225853, + 0.04638415575027466, + -0.024478338658809662, + -0.021564563736319542, + -0.04777541756629944, + -0.008518199436366558, + 0.0836857259273529, + -0.014214498922228813, + 0.0188739150762558, + 0.03373154252767563, + -0.07696566730737686, + -0.018270159140229225, + -0.011956979520618916, + -0.062003038823604584, + 0.0469091571867466, + -0.06095303222537041, + -0.014883879572153091, + 0.001182080595754087, + -0.02626335434615612, + -0.02942650578916073, + -0.08888327330350876, + 0.06347305327653885, + -0.0131382392719388, + 0.09129829704761505, + 0.015802636742591858, + -0.034519050270318985, + -0.07082311809062958, + -0.10389840602874756, + -0.009994774125516415, + -0.028822751715779305, + 0.06672807782888412, + -0.0796956941485405, + -0.11928103864192963, + -0.006336148828268051, + -0.007842255756258965, + -0.07696566730737686, + 0.011005408130586147, + 0.08116570860147476, + -0.011760102584958076, + -0.014713252894580364, + 0.012698547914624214, + 0.012678860686719418, + -0.037432827055454254, + -0.0027644771616905928, + -0.08930327743291855, + -0.007697879336774349, + 0.0050859819166362286, + -0.04420538619160652, + 0.12484608590602875, + 0.037852831184864044, + 0.03514905646443367, + -0.03283903747797012, + 0.10825594514608383, + -0.040792856365442276, + -0.0017899374943226576, + -0.023795831948518753, + -0.05932551622390747, + -0.04221036657691002, + 0.004134410992264748, + 0.0009105547796934843, + 0.00225916039198637, + 0.016143890097737312, + 0.016143890097737312, + -0.05402297154068947, + 0.016970772296190262, + 0.018860789015889168, + 0.0184932854026556, + 0.044389136135578156, + -0.023402078077197075, + -0.029111502692103386, + 0.029794009402394295, + -0.03420404717326164, + -0.05095169320702553, + 0.09182330220937729, + 0.0038423773366957903, + 0.03916534036397934, + -0.0312377717345953, + -0.06599307805299759, + 0.08452573418617249, + 0.012810111977159977, + -0.03176277503371239, + 0.014083247631788254, + 0.013413866981863976, + -0.08216321468353271, + -0.0642605572938919, + -0.021210184320807457, + 0.001957282656803727, + 0.021183934062719345, + -0.035096555948257446, + -0.014043872244656086, + -0.034939054399728775, + 0.019766421988606453, + 0.055860485881567, + -0.002738226903602481, + -0.018782038241624832, + -0.040924105793237686, + 0.022470194846391678, + -0.05108294636011124, + 0.008019444532692432, + 0.01599951460957527, + -0.053287964314222336, + -0.013492617756128311, + -0.01779765449464321, + -0.02653898112475872, + 0.0004306678019929677, + -0.02459646388888359, + -0.0013896215241402388, + -0.007186000235378742, + 0.022273318842053413, + 0.013820745050907135, + -0.01492325495928526, + -0.013026676140725613, + 0.06541556864976883, + -0.06478556245565414, + 0.008262259885668755, + -0.02501646801829338, + 0.035490307956933975, + 0.030187763273715973, + 0.0015430212952196598, + 0.014109497889876366, + -0.0041540986858308315, + -0.05612298846244812, + 0.041869115084409714, + 0.007205687928944826, + 0.041317861527204514, + -0.07670316845178604, + 0.0158420130610466, + 0.026486480608582497, + 0.03685532137751579, + -0.022535821422934532, + 0.06783059239387512, + 0.015028255991637707, + -0.04583289846777916, + 0.07917068898677826, + -0.0382990837097168, + 0.027273988351225853, + -0.05885301157832146, + 0.008774138987064362, + -0.025318345054984093, + -0.007048186380416155, + 0.00917445495724678, + 0.049402929842472076, + -0.03932284191250801, + -0.0012985659996047616, + 0.08893577754497528, + 0.06683307886123657, + -0.0172201506793499, + 0.07413064688444138, + 0.011038221418857574, + 0.0624755434691906, + 0.10484341531991959, + -0.04407413303852081, + 0.1245310828089714, + 0.024255210533738136, + -0.07434064894914627, + 0.013105426914989948, + -0.013571368530392647, + -0.032865285873413086, + -0.0047381664626300335, + -0.049402929842472076, + 0.005988333374261856, + 0.009030078537762165, + 0.012790423817932606, + 0.0010705171152949333, + -0.0020622836891561747, + 0.024333961308002472, + 0.027273988351225853, + -0.01610451564192772, + 0.04914042726159096, + 0.02459646388888359, + -0.048011668026447296, + -0.03181527554988861, + 0.005102388095110655, + 0.03987409919500351, + 0.027746491134166718, + 0.009522270411252975, + 0.01779765449464321, + -0.0872032567858696, + 0.036067813634872437, + -0.042446620762348175, + 0.026210853829979897, + -0.05087294429540634, + 0.005551923532038927, + 0.036067813634872437, + 0.02127581089735031, + 0.03512280434370041, + 0.10867594927549362, + -0.023231452330946922, + -0.01736452616751194, + 0.07255563139915466, + -0.03268153592944145, + -0.007717567030340433, + 0.0424991212785244, + -0.0010820016032084823, + 0.008045694790780544, + -0.002958072582259774, + 0.04336537793278694, + -0.01389949582517147, + 0.03661906719207764, + -0.006306617520749569, + 0.03178902715444565, + -0.035752810537815094, + -0.037564076483249664, + 0.028849001973867416, + 0.06420806050300598, + 0.03690782189369202, + -0.09723084419965744, + 0.03832533210515976, + 0.001954001374542713, + -0.08153320848941803, + 0.05100419372320175, + 0.011983229778707027, + -0.04832667112350464, + -0.1267361044883728, + -0.04142286255955696, + 0.044651638716459274, + -0.018270159140229225, + -0.02585647441446781, + 0.009633833542466164, + -0.053287964314222336, + -0.04774916544556618, + 0.02905900403857231, + 0.009187580086290836, + 0.02861274965107441, + 0.07124312222003937, + 0.06940560787916183, + 0.07161062210798264, + 0.014372000470757484, + -0.13398116827011108, + 0.07518065720796585, + 0.007041623815894127, + -0.04706665873527527, + 0.02249644510447979, + 0.04068785533308983, + -0.06373555213212967, + 0.011596038937568665, + 0.019097041338682175, + -0.006014583632349968, + -0.02790399268269539, + -0.043417878448963165, + -0.06940560787916183, + -0.0009704381227493286, + -0.0450453907251358, + -0.024675214663147926, + -0.025607097893953323, + -0.05601798743009567, + 0.06053302809596062, + -0.053130462765693665, + -0.02623710408806801, + 0.02487209253013134, + -0.05596548691391945, + 0.02071143127977848, + 0.07014060765504837, + 0.020225800573825836, + 0.10657592862844467, + 0.036435317248106, + 0.05068919062614441, + 0.06100553274154663, + -0.008623200468719006, + -0.03711782395839691, + 0.006647870410233736, + -0.042709123343229294, + -0.011149784550070763, + -0.035910312086343765, + -0.018834538757801056, + -0.028402747586369514, + 0.03136902302503586, + 0.030214013531804085, + 0.0450453907251358, + -0.06714808195829391, + -0.0010655951919034123, + -0.034519050270318985, + 0.0145163768902421, + 0.0029547912999987602, + 0.015356384217739105, + -0.01653764396905899, + -0.0012624718947336078, + 0.004344413056969643, + -0.0015298961661756039, + 0.039112839847803116 + ] + }, + { + "id": "12bb9aeb-dbef-4f9f-82cf-94f33b49a7f4", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "nwallace", + "reviewDate": "2022-07-25T15:12:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cba3388c-9f57-41b8-95b5-d9694d500306", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "feliciawells", + "reviewDate": "2021-10-10T15:09:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fa4ba966-0e07-47fe-912a-1628d8958a4b", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "bleblanc", + "reviewDate": "2021-11-09T02:36:33", + "stars": 4, + "verifiedUser": true + }, + { + "id": "40557551-8657-49f9-9a0d-6cabfcca1cfe", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "kvang", + "reviewDate": "2022-09-11T13:25:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9f04baeb-f4e8-497b-b669-ac6a332b84fb", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "rhorn", + "reviewDate": "2021-06-12T12:25:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c7eae153-c405-4b2c-b7fd-addf016c72ca", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "eric63", + "reviewDate": "2021-07-13T15:46:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "431c01a0-87fa-41b8-a24b-69d0fdf8a344", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "wwright", + "reviewDate": "2021-11-22T10:02:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d0c238e6-0c82-4b87-8dce-ee247e06744a", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "petersangela", + "reviewDate": "2022-08-07T06:38:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d09eff79-cd9b-409f-8027-eebccda0a676", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "hornsandra", + "reviewDate": "2022-02-19T13:00:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "903a66ff-da33-476f-92e9-59a2c9ccc9e1", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "melissa09", + "reviewDate": "2021-12-25T14:47:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0d284488-5bee-40fd-9184-9e871a85d296", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "lbuckley", + "reviewDate": "2022-04-23T00:09:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2f004023-f2e9-4e0f-aac7-34b24340fa0a", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "leon43", + "reviewDate": "2022-07-13T16:42:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "12662b94-c3b2-432e-8788-edc57fe3747b", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "jameswatson", + "reviewDate": "2022-02-18T21:46:06", + "stars": 4, + "verifiedUser": true + }, + { + "id": "240c07cd-2ee1-442e-9447-be07188728fb", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "josephperkins", + "reviewDate": "2022-02-12T20:26:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9b106fb2-30b7-486c-aeed-90c538e7116a", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "mhines", + "reviewDate": "2022-06-21T13:18:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "40fde5ce-6138-4e7c-b4c7-e64d861af183", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "lisa85", + "reviewDate": "2022-07-08T08:07:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e3eaa96d-cde9-4e83-9819-a669948fcb39", + "productId": "7966dfd6-bdd5-4011-9c0b-2e0553259a8d", + "category": "Other", + "docType": "customerRating", + "userName": "erin24", + "reviewDate": "2022-10-11T09:36:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Mini (Black)", + "description": "This Amazing Filter Mini (Black) is rated 4.4 out of 5 by 31.\n\nRated 5 out of 5 by David from Great for removing the lid of a bottle It works really well here as it has an extra hole for the lid opener so", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-10-27T16:50:36", + "price": 787.98, + "stock": 84, + "priceHistory": [ + { + "priceDate": "2021-03-07T15:51:10", + "newPrice": 831.45 + }, + { + "priceDate": "2021-09-30T15:51:10", + "newPrice": 865.39 + }, + { + "priceDate": "2022-04-25T15:51:10", + "newPrice": 814.89 + }, + { + "priceDate": "2022-11-18T15:51:10", + "newPrice": 723.3 + }, + { + "priceDate": "2025-01-19T15:51:10", + "newPrice": 787.98 + } + ], + "descriptionVector": [ + -0.02719348855316639, + 0.04279116913676262, + -0.01920178532600403, + 0.02753099612891674, + -0.01253600511699915, + 0.011288431473076344, + -0.09445397555828094, + 0.009980588220059872, + 0.007340795360505581, + 0.10067376494407654, + -0.023227769881486893, + -0.03678835183382034, + -0.060124609619379044, + 0.013994520530104637, + -0.011505400761961937, + 0.001829171902500093, + -0.028374765068292618, + -0.018779899924993515, + -0.016887445002794266, + -0.037800878286361694, + -0.004839621018618345, + -0.09348966926336288, + -0.09440576285123825, + 0.0233603622764349, + 0.03413650766015053, + 0.000646764412522316, + -0.015850814059376717, + 0.012728866189718246, + -0.011149812489748001, + 0.0015775477513670921, + 0.06542830169200897, + 0.00023260165471583605, + 0.04223669320344925, + 0.06581402570009232, + -0.024023324251174927, + 0.04163400083780289, + 0.011589777655899525, + 0.053808391094207764, + -0.051494050770998, + 0.09011458605527878, + -0.008311130106449127, + -0.013705228455364704, + -0.024119755253195763, + 0.004511153791099787, + -0.02385457046329975, + -0.03061678074300289, + -0.04214026406407356, + -0.01786380633711815, + -0.01225876621901989, + 0.06509079784154892, + 0.06484971940517426, + -0.02876048907637596, + 0.0047311363741755486, + -0.019177677109837532, + -0.006340325810015202, + -0.0080640260130167, + -0.01709236018359661, + 0.16460739076137543, + 0.06653725355863571, + -0.05568879097700119, + -0.0026533538475632668, + -0.005303694400936365, + 0.09310394525527954, + -0.025096118450164795, + -0.034425798803567886, + -0.03191859647631645, + -0.065958671271801, + 0.004794419277459383, + 0.011011192575097084, + 0.047347526997327805, + 0.003284674370661378, + 0.0449608638882637, + -0.011469239369034767, + -0.03256950527429581, + 0.03919912502169609, + -0.01249984372407198, + 0.11513838171958923, + -0.01994912326335907, + -0.027434565126895905, + 0.03541421517729759, + 0.025650594383478165, + 0.01720084622502327, + 0.0018171180272474885, + -0.013548528775572777, + 0.047130558639764786, + -0.03235253691673279, + -0.03331684321165085, + -0.10375954955816269, + -0.010589308105409145, + 0.0008897248771972954, + -0.019491076469421387, + 0.044671572744846344, + -0.03898215293884277, + -0.01348825916647911, + 0.021455854177474976, + 0.011192000471055508, + -0.009022307582199574, + 0.00361314183101058, + -0.01686333678662777, + 0.00541519233956933, + -0.04334564879536629, + -0.04011521488428116, + -0.05376017466187477, + 0.032159674912691116, + 0.004658813588321209, + 0.005324788857251406, + -0.04262241721153259, + -0.07376956939697266, + 0.006051033269613981, + -0.13828177750110626, + 0.022974640130996704, + -0.03228021413087845, + -0.035607077181339264, + 0.0013711255742236972, + -0.03418472036719322, + -0.018526768311858177, + -0.00624992186203599, + -0.014597213827073574, + 0.027723856270313263, + -0.07237131893634796, + -0.015320444479584694, + 0.0007529890281148255, + 0.04105541482567787, + 0.07632498443126678, + -0.0014276279835030437, + 0.0047492170706391335, + 0.016971822828054428, + 0.051397621631622314, + 0.052024420350790024, + -0.056074514985084534, + -0.04999937489628792, + 0.025939887389540672, + 0.06296931952238083, + -0.03558296710252762, + -0.05457983538508415, + -0.006509079597890377, + 0.039175014942884445, + 0.09074138849973679, + -0.01998528465628624, + 0.05342266708612442, + 0.018490606918931007, + -0.0776268020272255, + 0.008702880702912807, + 0.039030369371175766, + 0.017996398732066154, + -0.027097057551145554, + -0.0625353753566742, + 0.027097057551145554, + 0.000113004854938481, + 0.05573700740933418, + 0.015766436234116554, + -0.0542423278093338, + -0.040404509752988815, + -0.09811834990978241, + 0.041778646409511566, + 0.0796036347746849, + -0.04025986045598984, + 0.05004758760333061, + -0.06576581299304962, + 0.004951119422912598, + -0.021190669387578964, + -0.02389073185622692, + 0.04999937489628792, + -0.0374392606317997, + 0.019708046689629555, + 0.05583343654870987, + -0.05520663782954216, + 0.03309987485408783, + -0.08254477381706238, + 0.0408625565469265, + 0.057231683284044266, + 0.036089230328798294, + 0.03404007479548454, + -0.047492172569036484, + -0.029435504227876663, + 0.018996868282556534, + 0.0463591106235981, + -0.018550876528024673, + -0.040886662900447845, + -0.02248043194413185, + -0.011354727670550346, + 0.038210708647966385, + -0.04922792688012123, + -0.06610331684350967, + -0.010360284708440304, + -0.0720820277929306, + 0.028061365708708763, + -0.018358014523983, + 0.016067782416939735, + 0.03353381156921387, + -0.033943645656108856, + -0.019756261259317398, + -0.056074514985084534, + 0.005270546302199364, + 0.020045554265379906, + 0.011662100441753864, + -0.04725109413266182, + -0.05877457559108734, + -0.045153725892305374, + -0.0010818331502377987, + -0.010004696436226368, + 0.03765622898936272, + 0.04112773761153221, + -0.012017689645290375, + 0.046383216977119446, + -0.0563155934214592, + 0.03199091926217079, + 0.054965559393167496, + -0.004384588450193405, + -0.03276236727833748, + 0.061137132346630096, + -0.019334377720952034, + -0.027892611920833588, + 0.01802050694823265, + 0.06195679306983948, + 0.07589104771614075, + -0.005767767783254385, + -1.0853173989744391e-05, + -0.036836568266153336, + -0.027844395488500595, + -0.02121477760374546, + -0.018225422129034996, + -0.02842297963798046, + -0.030182842165231705, + 0.004086255561560392, + -0.0501440204679966, + -0.034859735518693924, + 0.08707702159881592, + 0.07743393629789352, + 0.08765560388565063, + -0.017429867759346962, + -0.006213760003447533, + -0.10279524326324463, + 0.019225891679525375, + -0.018623199313879013, + 0.02399921789765358, + -0.07743393629789352, + -0.0055146366357803345, + 0.006665779743343592, + 0.029748903587460518, + 0.01879195310175419, + 0.035462427884340286, + -0.04107952490448952, + 0.0016634314088150859, + 0.06475328654050827, + -0.025795241817831993, + 0.010788196697831154, + -0.04966186732053757, + -0.04358672350645065, + 0.006997260265052319, + -0.07656606286764145, + 0.030520349740982056, + -0.02794082649052143, + 0.0913199782371521, + -0.02155228517949581, + 0.0163088608533144, + 0.059160299599170685, + 0.028736380860209465, + -0.07246775180101395, + -0.04218847677111626, + 0.007654195185750723, + 0.022022385150194168, + 0.01994912326335907, + 0.07728929072618484, + -0.021347369998693466, + -0.03849999979138374, + -0.02005760744214058, + -0.03799373656511307, + -0.011505400761961937, + 0.04334564879536629, + -0.05597808212041855, + 0.05390482023358345, + 0.03934377059340477, + 0.01757451519370079, + -0.09392360597848892, + 0.01218644343316555, + -0.03905447572469711, + 0.03857232257723808, + -0.0043815746903419495, + 0.002522268332540989, + 0.12526361644268036, + 0.03240074962377548, + 0.054145898669958115, + 0.04633500427007675, + 0.09932373464107513, + 0.0295319352298975, + 0.015730274841189384, + -0.007057529874145985, + -0.07593926042318344, + -0.03625798225402832, + -0.032714150846004486, + 0.04447871074080467, + 0.027772072702646255, + -0.002388169290497899, + -0.00129804911557585, + 0.01060738880187273, + 0.001137582235969603, + -0.020154038444161415, + -0.014850344508886337, + 0.030664997175335884, + -0.024095648899674416, + -0.023396525532007217, + -0.06036568433046341, + -0.0425742007791996, + 0.052844081073999405, + 0.028206011280417442, + -0.008057999424636364, + 0.009094630368053913, + -0.04811897128820419, + -0.038837507367134094, + 0.01794818416237831, + -0.042598310858011246, + -0.049276143312454224, + -0.012861458584666252, + 0.0398259237408638, + -0.05969066917896271, + -0.014778021723031998, + 0.008039918728172779, + 0.01157169695943594, + 0.014428460039198399, + -0.031629305332899094, + 0.010185504332184792, + 0.015923136845231056, + 0.0864984318614006, + -0.012704758904874325, + -0.03948841616511345, + -0.015465090982615948, + -0.04365905001759529, + 0.0032937147188931704, + -0.0021907873451709747, + 0.014633375220000744, + -0.049613650888204575, + 0.01786380633711815, + 0.021407639607787132, + -0.03674013912677765, + -0.04778146371245384, + 0.001321403426118195, + -0.026132749393582344, + -0.008642611093819141, + 0.040139324963092804, + -0.03254539892077446, + -0.017960237339138985, + 0.06769442558288574, + 0.01761067658662796, + 0.09291107952594757, + -0.0632103979587555, + 0.015440982766449451, + -0.025047902017831802, + 0.036836568266153336, + -0.011625939048826694, + 0.0012234658934175968, + -0.07753036916255951, + -0.01541687548160553, + 0.017996398732066154, + -0.016706638038158417, + -0.0381142757833004, + 0.04626268148422241, + -0.023131340742111206, + 0.07854289561510086, + 0.013379774987697601, + 0.014886505901813507, + -0.04681715741753578, + 0.03391953557729721, + -0.046045709401369095, + -0.0312676876783371, + 0.11031684279441833, + -0.07719285786151886, + 0.0023248863872140646, + -0.039584845304489136, + -0.05457983538508415, + -0.08365372568368912, + -0.052361927926540375, + -0.012475735507905483, + 0.021311208605766296, + 0.03905447572469711, + -0.06099248677492142, + 0.027579210698604584, + 0.00784103013575077, + 0.005846117623150349, + 0.04650375619530678, + -0.02094959281384945, + -0.006659752689301968, + -0.052699435502290726, + -0.06552473455667496, + 0.032665934413671494, + 0.0035317782312631607, + -0.012656543403863907, + 0.027989041060209274, + -0.025747025385499, + 0.0029125118162482977, + -0.09117532521486282, + -0.0028808703646063805, + -0.030881965532898903, + -0.010360284708440304, + 0.04544301703572273, + -0.06639260798692703, + -0.016176268458366394, + 0.12169568240642548, + 0.07266061007976532, + -0.056122731417417526, + -0.0017673958791419864, + 0.023468848317861557, + 0.012102066539227962, + -0.031629305332899094, + -0.08461803197860718, + -0.05409768223762512, + 0.02871227264404297, + 0.01882811449468136, + -0.05052974447607994, + -0.07878396660089493, + 0.054965559393167496, + -0.06282467395067215, + 0.005267533008009195, + -0.04035629332065582, + 0.03444990515708923, + 0.0422125868499279, + 0.06277645379304886, + -0.04038039967417717, + 0.05920851603150368, + 0.02155228517949581, + 0.05134940519928932, + 0.047685034573078156, + -0.0012859952403232455, + -0.006581402849406004, + -0.04937257245182991, + 0.04025986045598984, + 0.01912946067750454, + 0.050577957183122635, + 0.004137484356760979, + -0.0043333591893315315, + 0.034980274736881256, + -0.012367251329123974, + -0.06441578269004822, + 0.0003640639770310372, + 0.014259705320000648, + -0.02098575420677662, + -0.011517454870045185, + -0.014621321111917496, + -0.021576393395662308, + -0.0005857418291270733, + 0.027289917692542076, + 0.009299545548856258, + -0.04235723242163658, + 0.06533186882734299, + -0.09180212765932083, + 0.010631496086716652, + -0.04414120316505432, + 0.06412648409605026, + 0.06899624317884445, + -0.031002504751086235, + -0.01957545429468155, + 0.03399185836315155, + -0.05115654319524765, + -0.03763212263584137, + 0.06026925519108772, + -0.057231683284044266, + 0.09903443604707718, + 0.13963180780410767, + 0.036089230328798294, + -0.04194740206003189, + -0.08693237602710724, + 0.058822792023420334, + -0.05944959446787834, + -0.0066476985812187195, + -0.0005989257479086518, + -0.11185973882675171, + -0.08119474351406097, + -0.007449280004948378, + -0.01656199060380459, + 0.005418206099420786, + -0.006376487202942371, + -0.05896743759512901, + -0.05694239214062691, + 0.026614902541041374, + -0.0074914684519171715, + 0.035607077181339264, + -0.031894490122795105, + 0.03543832153081894, + 0.06118534877896309, + 0.008588369004428387, + -0.038475893437862396, + -0.006623591296374798, + 0.02110629342496395, + 0.03905447572469711, + 0.11214902997016907, + 0.0059124138206243515, + 0.032448966056108475, + -0.054965559393167496, + 0.05453162267804146, + 0.035944584757089615, + 0.03748747706413269, + 0.01912946067750454, + -0.029194427654147148, + -0.038837507367134094, + 0.00541519233956933, + 0.027627427130937576, + -0.05742454528808594, + -0.017851753160357475, + -0.05824420601129532, + -0.027627427130937576, + 0.08939135819673538, + 0.02622918039560318, + -0.02240810915827751, + 0.019756261259317398, + 0.040958985686302185, + -0.03502849116921425, + -0.021202724426984787, + -0.0343293659389019, + 0.02069646120071411, + -0.01916562393307686, + 0.008859580382704735, + 0.022938478738069534 + ] + }, + { + "id": "b0581f3e-8244-4082-a2f7-8635bb87959f", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "vbray", + "reviewDate": "2021-10-01T20:19:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7f0513d6-00ec-4367-a787-e49b16740fb1", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "michellejenkins", + "reviewDate": "2022-07-01T18:58:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c4eef01d-9488-423c-9754-ec359f0162f0", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "bhamilton", + "reviewDate": "2021-03-28T21:04:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1861686f-db61-4ba6-858e-70702b5b3f25", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "kathleen60", + "reviewDate": "2022-07-03T04:15:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "44d61cdc-8bbb-444c-a2f2-861f29550634", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "dreynolds", + "reviewDate": "2022-05-06T18:03:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ef295aef-898c-4c80-9fa9-19966fb123c2", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "michael06", + "reviewDate": "2022-04-16T19:29:31", + "stars": 5, + "verifiedUser": true + }, + { + "id": "082d57bf-1656-4a92-93a4-f015a17e5687", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "iduncan", + "reviewDate": "2022-06-12T07:58:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "505de2a4-bcea-4843-8af0-abbfd8250d2b", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "rowemanuel", + "reviewDate": "2021-03-07T15:51:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c1dc216f-4e8d-4b0b-bdfc-f40d74069c33", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "ybutler", + "reviewDate": "2022-01-03T11:07:58", + "stars": 5, + "verifiedUser": true + }, + { + "id": "bfcba6f3-537d-43cf-918f-fc86ac0b4979", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "whiteteresa", + "reviewDate": "2022-07-31T18:09:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2e42fc0a-7b8e-4736-a9e5-4ea3a4c5bfa9", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "katrinawebb", + "reviewDate": "2022-09-30T23:04:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6f8477d5-4698-40ee-bad3-328058767d56", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "adamstonya", + "reviewDate": "2022-11-18T20:39:42", + "stars": 5, + "verifiedUser": true + }, + { + "id": "05c3bce3-6153-4f98-80cd-3912d62c98a7", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "johnstraci", + "reviewDate": "2021-08-27T20:44:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f21e59a8-6cce-4289-a229-11a9eb3e15ec", + "productId": "18d26424-e0d8-4dcc-a0a9-10eb9f1fadc1", + "category": "Other", + "docType": "customerRating", + "userName": "jimenezamanda", + "reviewDate": "2022-10-30T15:20:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "product", + "name": "Awesome Filter Micro (Steel)", + "description": "This Awesome Filter Micro (Steel) is rated 4.9 out of 5 by 25.\n\nRated 4 out of 5 by Michael K from Fantastic filter for the price and performance of this product. After all I have used this filter I would love for a wider variety of objects with a high power filter.\n\nRated 5 out of 5 by Anonymous from Great Value! Great value for a great price\n\nRated 5 out of 5 by jedn from A great filter for", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-02-08T07:21:06", + "price": 883.47, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-04-06T19:21:15", + "newPrice": 943.04 + }, + { + "priceDate": "2021-09-02T19:21:15", + "newPrice": 890.36 + }, + { + "priceDate": "2022-01-29T19:21:15", + "newPrice": 939.8 + }, + { + "priceDate": "2022-06-27T19:21:15", + "newPrice": 910.27 + }, + { + "priceDate": "2022-11-23T19:21:15", + "newPrice": 928.26 + }, + { + "priceDate": "2023-09-30T19:21:15", + "newPrice": 883.47 + } + ], + "descriptionVector": [ + 0.023645509034395218, + 0.01735512539744377, + -0.031927093863487244, + 0.030637340620160103, + 0.007902578450739384, + 0.027062229812145233, + -0.03907731547951698, + 0.006341295782476664, + 0.02194846421480179, + 0.06548335403203964, + -0.04000503569841385, + -0.005102451890707016, + 0.004084224347025156, + -0.013022000901401043, + -0.005566311534494162, + -0.03611314296722412, + -0.023600254207849503, + -0.01716279424726963, + -0.052042748779058456, + 0.007829039357602596, + 0.03554746136069298, + -0.08028159290552139, + -0.07806412130594254, + -0.006935262121260166, + -0.017309870570898056, + 0.004208674654364586, + 0.003309240099042654, + 0.013033314608037472, + -0.01718541979789734, + -0.02708485722541809, + 0.05073036625981331, + 0.024098055437207222, + 0.01598617434501648, + 0.10363294929265976, + 0.017208047211170197, + -0.021269645541906357, + 0.020364554598927498, + -0.05000629276037216, + 0.01895034871995449, + 0.1022753119468689, + 0.004426462110131979, + -0.017253302037715912, + 0.016936520114541054, + -0.008802012540400028, + 0.008869894780218601, + -0.034506604075431824, + -0.04810560122132301, + -0.04290132597088814, + 0.027175365015864372, + 0.017208047211170197, + 0.056930240243673325, + 0.008581397123634815, + -0.06014331430196762, + -0.051952239125967026, + 0.02749214693903923, + 0.006805154960602522, + 0.036294158548116684, + 0.13712133467197418, + 0.06819862872362137, + -0.08476179838180542, + 0.03118039481341839, + -0.020771844312548637, + 0.04267505556344986, + -0.06810811907052994, + -0.0635826587677002, + -0.02350974641740322, + -0.0548032782971859, + 0.0032017603516578674, + 0.04219987988471985, + 0.02184664085507393, + 0.018214961513876915, + -0.012942804954946041, + 0.03249277547001839, + -0.02848774753510952, + 0.015375237911939621, + 0.029641740024089813, + 0.12019611895084381, + -0.023645509034395218, + -0.0010606538271531463, + 0.012863609939813614, + 0.028170965611934662, + 0.04057071730494499, + 0.009130108170211315, + 0.06412571668624878, + 0.06032433360815048, + 0.025568827986717224, + 0.025862982496619225, + -0.10797739028930664, + -0.04575236514210701, + 0.01755877025425434, + -0.026768075302243233, + 0.0480603463947773, + -0.01220741868019104, + -0.0260892566293478, + 0.04129479080438614, + 0.005133564583957195, + -0.05982653424143791, + 0.01804525777697563, + -0.02690383791923523, + 0.05113765597343445, + -0.03095412254333496, + -0.04310497269034386, + -0.013395351357758045, + 0.0351627953350544, + -0.012049027718603611, + -0.007031427696347237, + -0.008598366752266884, + -0.05688498541712761, + 0.009033942595124245, + -0.11214081197977066, + 0.007031427696347237, + -0.028759274631738663, + -0.027763675898313522, + 0.007274670992046595, + 0.03007165715098381, + 0.010889379307627678, + -0.03620365262031555, + 0.053445640951395035, + -0.0028878068551421165, + -0.019798871129751205, + -0.039348844438791275, + 0.08014583587646484, + 0.0621345154941082, + -0.024776874110102654, + 0.015273415483534336, + 0.04326336458325386, + -0.026926465332508087, + -0.030840985476970673, + 0.044802017509937286, + 0.023962290957570076, + -0.07729479670524597, + 0.02332872711122036, + 0.045277189463377, + -0.0565682053565979, + -0.07408171892166138, + 0.01786423847079277, + 0.028148338198661804, + 0.11214081197977066, + 0.0363394133746624, + 0.04674796387553215, + -0.03027530387043953, + -0.01924450322985649, + -0.02192583680152893, + 0.0005020428216084838, + 0.017943434417247772, + -0.02122439071536064, + -0.02470899187028408, + 0.020794471725821495, + 0.0313614122569561, + -0.04631804674863815, + 0.03998240828514099, + -0.10055564343929291, + -0.025161538273096085, + -0.04647643864154816, + 0.04226776212453842, + 0.02769579365849495, + -0.01637083850800991, + 0.05769956856966019, + -0.1119597926735878, + -0.0013986488338559866, + -0.026473920792341232, + -0.05439598485827446, + -0.030886240303516388, + -0.004703646060079336, + 0.02787681110203266, + 0.044915154576301575, + -0.012286613695323467, + -0.014730360358953476, + -0.0902828574180603, + 0.050956640392541885, + 0.044688880443573, + 0.011522943153977394, + 0.016144566237926483, + -0.006420491263270378, + -0.0386926531791687, + 0.005221245344728231, + 0.0062960414215922356, + -0.046793218702077866, + -0.03930358961224556, + -0.037968579679727554, + -0.001991200726479292, + 0.00913576502352953, + -0.03027530387043953, + -0.043082345277071, + 0.03267379477620125, + -0.05082087591290474, + 0.049282219260931015, + 0.025252046063542366, + 0.05240478366613388, + 0.1257171779870987, + -0.025455692782998085, + -0.05498429387807846, + 0.029460720717906952, + 0.002812854014337063, + -0.02133752778172493, + -0.011183533817529678, + -0.07697801291942596, + 0.003982401452958584, + -0.02382652834057808, + -0.048286620527505875, + -0.03423507884144783, + 0.003807040164247155, + 0.10146073251962662, + -0.028646139428019524, + 0.0665242075920105, + 0.006148963700979948, + 0.08005532622337341, + 0.07018982619047165, + -0.019233189523220062, + -0.03525330498814583, + 0.008745444938540459, + -0.06638844311237335, + -0.048286620527505875, + 0.0024791015312075615, + 0.025546200573444366, + 0.08037210255861282, + -0.015409179031848907, + -0.07213577628135681, + -0.046793218702077866, + -0.035683222115039825, + 0.018079198896884918, + -0.042245134711265564, + 0.009395978413522243, + -0.01818102039396763, + -0.04111377149820328, + -0.039642997086048126, + 0.015375237911939621, + -0.0030320556834340096, + 0.0767969936132431, + 0.050368331372737885, + 0.007574482820928097, + -0.02599874697625637, + -0.0811866894364357, + 0.001677247229963541, + -0.010979888960719109, + -0.031519804149866104, + -0.07453426718711853, + 0.01865619421005249, + 0.044213708490133286, + 0.016450034454464912, + 0.06027907878160477, + 0.012716532684862614, + -0.03844375163316727, + 0.002170804888010025, + 0.08023634552955627, + -0.015160279348492622, + -0.0019996860064566135, + -0.05991704389452934, + -0.08811063319444656, + -0.006850409787148237, + -0.013813955709338188, + -0.0002775377652142197, + -0.017988689243793488, + 0.12472157925367355, + 0.007483973633497953, + 0.04554871842265129, + 0.016404779627919197, + 0.029913267120718956, + -0.07539410144090652, + -0.089377760887146, + 0.030886240303516388, + 0.038466379046440125, + 0.05874042585492134, + 0.07602766901254654, + -0.026360783725976944, + -0.021778758615255356, + 0.030592085793614388, + -0.010510372929275036, + -0.03973350673913956, + 0.05512005835771561, + -0.0571565143764019, + 0.020964177325367928, + 0.022955376654863358, + 0.025455692782998085, + -0.08593841642141342, + 0.007817725650966167, + -0.05738278850913048, + 0.06883218884468079, + -0.008406035602092743, + 0.024369582533836365, + 0.1295185685157776, + -0.02133752778172493, + -0.007534884847700596, + 0.05190698429942131, + 0.09105218201875687, + 0.010538656264543533, + 0.04507354646921158, + -0.09331490844488144, + -0.019368954002857208, + -0.03604526072740555, + -0.055527351796627045, + -0.043919555842876434, + -0.012626023031771183, + -0.016314269974827766, + -0.044100571423769, + 0.011822754517197609, + -0.008236330933868885, + -0.03233438730239868, + -0.007336896378546953, + 0.01295411866158247, + -0.029800130054354668, + 0.06064111739397049, + -0.027560029178857803, + 0.006929605267941952, + -0.03247014805674553, + 0.02966436743736267, + 0.04665745422244072, + 0.002808611374348402, + 0.003210245631635189, + -0.1275273561477661, + 0.011387179605662823, + 0.03118039481341839, + -0.009560026228427887, + 0.0486486554145813, + 0.09132371097803116, + -0.01668762043118477, + -0.0319497212767601, + 0.015307356603443623, + -0.0010408549569547176, + 0.04656694456934929, + 0.00172533025033772, + 0.002462131204083562, + 0.011822754517197609, + 0.07172848284244537, + 0.015635451301932335, + -0.015397865325212479, + -0.015069769695401192, + -0.014153365045785904, + -0.02828410267829895, + 0.010176620446145535, + 0.015194219537079334, + -0.028804529458284378, + -0.0335562601685524, + 0.08372094482183456, + 0.020590826869010925, + -0.07439850270748138, + -0.008915148675441742, + -0.009209304116666317, + 0.0053654941730201244, + 0.04697423800826073, + -0.018622253090143204, + -0.018226275220513344, + 0.005563483107835054, + 0.013214332982897758, + 0.11132622510194778, + -0.040729109197854996, + 0.00265304883942008, + -0.07104966789484024, + -0.007240730337798595, + -0.007778128143399954, + 0.0011221717577427626, + -0.0035439981147646904, + -0.027333756908774376, + 0.023306099697947502, + 0.04240352660417557, + 0.01924450322985649, + 0.03364676982164383, + -0.03771967813372612, + 0.0694657564163208, + -0.017343811690807343, + 0.02889503911137581, + 0.008247644640505314, + 0.03396354988217354, + 0.0019586740527302027, + -0.04186047241091728, + 0.08657198399305344, + -0.03493652492761612, + 0.037470780313014984, + -0.01418730616569519, + -0.004975173622369766, + 0.0038834072183817625, + -0.0706423744559288, + 0.058921441435813904, + 0.07186424732208252, + -0.04955374822020531, + -0.056703969836235046, + -0.009181019850075245, + 0.011822754517197609, + -0.013293527998030186, + 0.024052800610661507, + -0.005784098990261555, + 0.03394092246890068, + 0.027922065928578377, + -0.04036707058548927, + 0.03382778540253639, + 0.06919422745704651, + -0.025749847292900085, + 0.004709302913397551, + -0.05733753368258476, + 0.0008796355687081814, + -0.03611314296722412, + -0.026179764419794083, + -0.05733753368258476, + -0.008423006162047386, + 0.027175365015864372, + -0.0353211872279644, + 0.000525023671798408, + 0.0767969936132431, + 0.08082465082406998, + -0.05797109752893448, + 0.010368951596319675, + 0.02631552889943123, + -0.02432432770729065, + -0.06530233472585678, + 0.0022598998621106148, + -0.01617850735783577, + 0.051544949412345886, + -0.023045886307954788, + -0.010651793330907822, + -0.08507858216762543, + -0.01394971925765276, + -0.048196110874414444, + -0.0015754244523122907, + -0.05163545906543732, + 0.026270274072885513, + 0.0794217586517334, + 0.07842615991830826, + -0.030026402324438095, + 0.04115902632474899, + -0.022706476971507072, + 0.06466877460479736, + 0.008281584829092026, + 0.03731238842010498, + -0.0035100572276860476, + 0.017049657180905342, + 0.05566311255097389, + -0.04217725247144699, + -0.003889064071699977, + 0.026270274072885513, + -0.05607040598988533, + -0.013429291546344757, + -0.02719799242913723, + -0.028510374948382378, + 0.038964178413152695, + -0.00048365816473960876, + 0.014526715502142906, + 0.007715903222560883, + 0.06480453908443451, + -0.027831556275486946, + -0.04009554535150528, + 0.027265874668955803, + -0.005764300003647804, + -0.018610939383506775, + 0.01637083850800991, + -0.167622908949852, + -0.01884852536022663, + -0.08064363151788712, + 0.011155250482261181, + -0.007240730337798595, + -0.048603400588035583, + 0.013915778137743473, + 0.0317913293838501, + -0.06738404929637909, + -0.03115776740014553, + 0.051273420453071594, + 0.039552487432956696, + 0.07833565026521683, + 0.10209430009126663, + 0.013112509623169899, + -0.0036373354960232973, + -0.10010309517383575, + 0.07611817866563797, + -0.020522944629192352, + 0.015590197406709194, + 0.020002517849206924, + -0.06693150103092194, + -0.10806789994239807, + -0.029800130054354668, + 0.02529730089008808, + -0.005289127118885517, + -0.0033601513132452965, + -0.013293527998030186, + -0.05806160718202591, + 0.04751729220151901, + 0.0359094962477684, + 0.03305846080183983, + -0.006329982075840235, + 0.008089253678917885, + 0.06869643181562424, + 0.058695171028375626, + 0.023645509034395218, + -0.028125710785388947, + 0.0010882308706641197, + 0.09322439879179001, + 0.024301700294017792, + -0.020692650228738785, + 0.006092395633459091, + 0.022106854245066643, + 0.03222125023603439, + 0.04455311968922615, + -0.018011316657066345, + 0.016619738191366196, + -0.042629800736904144, + -0.07245256006717682, + -0.015963546931743622, + 0.055436842143535614, + -0.06457826495170593, + 0.01924450322985649, + -0.05263105779886246, + -0.05168071389198303, + 0.044304218143224716, + 0.03308108448982239, + -0.019414208829402924, + 0.02400754578411579, + -0.007851666770875454, + 0.013010687194764614, + 0.012999373488128185, + -0.041724707931280136, + -0.0035553115885704756, + 0.005441861227154732, + 0.06055060774087906, + 0.030886240303516388 + ] + }, + { + "id": "7c09d54a-f7ed-4387-9573-60c9751e879a", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "limichael", + "reviewDate": "2022-01-08T17:33:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "654a0e53-efb6-410a-93d3-95e37ebfb3ce", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "yolanda38", + "reviewDate": "2021-09-19T11:52:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "92896f14-c428-439a-bf54-e6dc175eeeeb", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "sarah98", + "reviewDate": "2022-06-27T04:48:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e109e5f6-f0bd-49ce-a0d1-629bae510a2c", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "julie97", + "reviewDate": "2022-11-23T19:54:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f31b8a68-48bf-4d3e-8c93-07681170c186", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "fherrera", + "reviewDate": "2021-04-06T19:21:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "29fde2df-7796-4e95-9463-de0de7ba4a37", + "productId": "76515e2c-3633-4cf8-925a-ff1b5b8359c3", + "category": "Other", + "docType": "customerRating", + "userName": "chenpeter", + "reviewDate": "2021-11-27T04:50:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Micro (Black)", + "description": "This Amazing Phone Micro (Black) is powered by the Qualcomm Snapdragon 825 chipset. It features a quad-core 434MHz (4 MB/s) SoC", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-01-08T07:22:58", + "price": 951.45, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-08-01T02:27:49", + "newPrice": 913.12 + }, + { + "priceDate": "2021-11-28T02:27:49", + "newPrice": 1040.18 + }, + { + "priceDate": "2022-03-27T02:27:49", + "newPrice": 888.96 + }, + { + "priceDate": "2022-07-24T02:27:49", + "newPrice": 1042.24 + }, + { + "priceDate": "2022-11-20T02:27:49", + "newPrice": 981.55 + }, + { + "priceDate": "2024-11-11T02:27:49", + "newPrice": 951.45 + } + ], + "descriptionVector": [ + 0.006171066779643297, + 0.08106467127799988, + -0.030529560521245003, + 0.028990672901272774, + 0.029214059934020042, + 0.0323166586458683, + -0.03961396589875221, + 0.05415894463658333, + 0.08305033296346664, + 0.07351915538311005, + 0.031174901872873306, + 0.0015993891283869743, + 0.05753457173705101, + -0.01334116980433464, + 0.02906513586640358, + 0.055102135986089706, + -0.07490912079811096, + -0.05584675818681717, + 0.0430392362177372, + 0.028246048837900162, + 0.043486010283231735, + -0.07158313691616058, + -0.0646333172917366, + 0.014458104968070984, + -0.04537238925695419, + -0.01411061454564333, + 0.016865720972418785, + 0.0018894820241257548, + -0.04606737196445465, + -0.03877006098628044, + -0.030777769163250923, + -0.004746974445879459, + -0.02186710759997368, + 0.04105357080698013, + 0.04219532757997513, + 0.006065578665584326, + 0.03633762523531914, + -0.04353564977645874, + 0.014805596321821213, + -0.010555037297308445, + 0.025093810632824898, + 0.01775926910340786, + -0.030430277809500694, + 0.03397965058684349, + 0.01878933236002922, + 0.066916823387146, + 0.013179834932088852, + -0.015103445388376713, + -0.026856085285544395, + 0.0051441071555018425, + 0.05043582618236542, + 0.019062360748648643, + -0.05594604089856148, + -0.04991459101438522, + 0.048748016357421875, + -0.015475757420063019, + 0.024001695215702057, + 0.1711641103029251, + 0.032589685171842575, + -0.048028212040662766, + 0.030529560521245003, + 0.01691536232829094, + 0.051130808889865875, + 0.03000832535326481, + 0.0657750740647316, + -0.01154166366904974, + -0.007526902016252279, + 0.056641023606061935, + 0.00975456740707159, + 0.10653079301118851, + -0.018925845623016357, + -0.008718299679458141, + -0.012577931396663189, + -0.02088668756186962, + 0.01574878580868244, + 0.03673475608229637, + 0.028866568580269814, + 0.042741384357213974, + 0.04842534288764, + -0.03278825059533119, + 0.09064549207687378, + 0.023480460047721863, + -0.0028094023000448942, + 0.05093224346637726, + 0.05132937431335449, + 0.01948431320488453, + 0.014309180900454521, + -0.13452863693237305, + -0.0280971247702837, + 0.051130808889865875, + -0.06671825796365738, + 0.05410930514335632, + -0.02446088008582592, + 0.03636244311928749, + 0.04594326764345169, + 0.0019484313670545816, + 0.014607029967010021, + 0.03182024136185646, + 0.013142603449523449, + -0.03261450678110123, + 0.04678717255592346, + -0.04388314113020897, + -0.0011999296257272363, + -0.07912865281105042, + 0.0010114468168467283, + 0.027551067993044853, + -0.016865720972418785, + 0.008699683472514153, + 0.019149232655763626, + -0.02160649001598358, + -0.023877590894699097, + -0.034128572791814804, + -0.01262136735022068, + 0.01609627716243267, + 0.025565404444932938, + -0.020402682945132256, + 0.005705676972866058, + 0.001341097871772945, + -0.09054621309041977, + -0.09014907479286194, + -0.051130808889865875, + -0.03934093937277794, + -0.03852185234427452, + 0.0275014266371727, + 0.03298681974411011, + 0.0454220287501812, + 0.030082786455750465, + 0.019831804558634758, + -0.04405688866972923, + -0.04887211695313454, + -0.059967007488012314, + 0.03564264252781868, + 0.00691258767619729, + 0.006689200643450022, + 0.008898249827325344, + -0.0042815846391022205, + 0.061555538326501846, + 0.11199136823415756, + 0.055548910051584244, + 0.03249040246009827, + 0.04710984230041504, + 0.05678994953632355, + 0.0134652741253376, + -0.02705465257167816, + 0.0075827487744390965, + -0.0005654484266415238, + -0.010406112298369408, + -0.026409311220049858, + 0.009965543635189533, + 0.03261450678110123, + -0.0682075098156929, + -0.08523456007242203, + 0.008513527922332287, + -0.09382255375385284, + 0.009475333616137505, + -0.040234487503767014, + -0.05947059392929077, + -0.03544407710433006, + -0.08935481309890747, + 0.06771109253168106, + -0.011920180171728134, + 0.0005057234084233642, + 0.014185076579451561, + -0.046588607132434845, + 0.021805057302117348, + -0.04385831952095032, + -0.020601248368620872, + 0.050882600247859955, + -0.04569505900144577, + 0.03599013388156891, + 0.09436861425638199, + 0.04236907511949539, + 0.012509673833847046, + -0.0884612649679184, + -0.04487597197294235, + 0.02326948195695877, + 0.008041933178901672, + 0.01607145555317402, + -0.016369305551052094, + -0.03286271542310715, + 0.04415617138147354, + -0.0018413916695863008, + -0.03780205175280571, + 0.021221768110990524, + 0.009531180374324322, + 0.007415208499878645, + -0.07937686145305634, + -0.009636668488383293, + 0.023815540596842766, + 0.02799784205853939, + 0.019869035109877586, + -0.012429006397724152, + -0.00616175914183259, + -0.026161104440689087, + 0.046241115778684616, + -0.024014106020331383, + 0.0013597133802250028, + 0.01447051577270031, + -0.02705465257167816, + 0.014520157128572464, + -0.0657750740647316, + 0.06324335187673569, + 0.04522346332669258, + -0.048971403390169144, + 0.02101079188287258, + -0.036536190658807755, + -0.026508593931794167, + 0.06359083950519562, + -0.007570338435471058, + 0.0646333172917366, + 0.04030894860625267, + 0.00317085487768054, + -0.036188699305057526, + -0.008538348600268364, + 0.07029245048761368, + 0.01352732628583908, + 0.07525660842657089, + -0.05321575701236725, + -0.00036979085416533053, + -0.07317166030406952, + -0.032366298139095306, + -0.009884876199066639, + -0.009847644716501236, + -0.006316889077425003, + -0.055102135986089706, + -0.07202991098165512, + -0.010809450410306454, + 0.07550481706857681, + 0.051478300243616104, + 0.020439913496375084, + -0.04388314113020897, + 0.0015396641101688147, + 0.006059373263269663, + 0.005386109463870525, + -0.06259801238775253, + 0.023890001699328423, + 0.016183149069547653, + -0.033433593809604645, + -0.0550524927675724, + 0.11258706450462341, + 0.007309719920158386, + -0.019347799941897392, + -0.02277306653559208, + -0.007067717611789703, + 0.05490356683731079, + -0.053265396505594254, + -0.023616973310709, + 0.05286826565861702, + -0.1385992467403412, + -0.026111461222171783, + -0.023890001699328423, + -0.0064534032717347145, + -0.03956432640552521, + 0.02881692722439766, + -0.03571710363030434, + 0.028444616124033928, + -0.008736914955079556, + -0.058428119868040085, + 0.09139011800289154, + -0.0538114532828331, + -0.01753588207066059, + -0.09009943902492523, + 0.027476605027914047, + 0.029685653746128082, + -0.09640391170978546, + -0.007644800469279289, + 0.01991867646574974, + -0.024138210341334343, + -0.017027055844664574, + 0.017622753977775574, + 0.04087982699275017, + 0.010362676344811916, + 0.02242557518184185, + -0.005711882375180721, + -0.0692996233701706, + -0.023691436275839806, + -0.12708240747451782, + 0.08523456007242203, + -0.011951206251978874, + 0.0027675172314047813, + 0.05718708038330078, + 0.06800894439220428, + 0.06656933575868607, + -0.0269305482506752, + 0.060115933418273926, + 0.033061280846595764, + -0.04150034487247467, + -0.02596253715455532, + -0.01710151880979538, + 0.014867648482322693, + -0.04867355152964592, + -0.0004824539355468005, + 0.017213212326169014, + 0.022040853276848793, + 0.008377013728022575, + -0.05882525071501732, + 0.04773036390542984, + -0.07878115773200989, + 0.01056744810193777, + 0.04701055958867073, + 0.012031873688101768, + 0.011802281253039837, + 0.0010269598569720984, + -0.04805303364992142, + 0.025763971731066704, + 0.09362398833036423, + 0.042865488678216934, + 0.03998627886176109, + -0.02014206349849701, + -0.011367917992174625, + 0.09129083156585693, + -0.052322208881378174, + -0.058775611221790314, + 0.03693332150578499, + 0.026731980964541435, + -0.031522393226623535, + -0.036536190658807755, + 0.030082786455750465, + 0.02505657821893692, + -0.007812340743839741, + 0.08692237734794617, + -0.00691258767619729, + -0.07788760960102081, + 0.06091019883751869, + 0.029089955613017082, + 0.012211824767291546, + -0.018901025876402855, + 0.034252677112817764, + -0.024659445509314537, + 0.011175557039678097, + -0.0110576581209898, + 0.009562206454575062, + 0.029983503744006157, + -0.040979109704494476, + -0.01063570473343134, + -0.015388884581625462, + 0.033086102455854416, + 0.14137917757034302, + 0.02336876653134823, + 0.05011315643787384, + 0.0035028327256441116, + 0.014867648482322693, + -0.0281219445168972, + 0.004204019904136658, + -0.009320203214883804, + -0.0353199727833271, + -0.02261173166334629, + -0.005162722431123257, + 0.04102875292301178, + -0.05055993050336838, + 0.0014031497994437814, + -0.03571710363030434, + 0.06120804697275162, + 0.03752902150154114, + 0.053761813789606094, + 0.028419794514775276, + -0.03368179872632027, + 0.007961265742778778, + -0.01866522803902626, + -0.022189779207110405, + -0.009531180374324322, + -0.0574352890253067, + 0.09114190936088562, + -0.008705888874828815, + 0.006205195561051369, + 0.050311725586652756, + -0.007464849855750799, + 0.011945000849664211, + -0.020899098366498947, + 0.01603422500193119, + 0.04058197885751724, + 0.012298697605729103, + -0.04016002267599106, + 0.023356355726718903, + -0.040358591824769974, + -0.045173823833465576, + 0.014383642934262753, + -0.025813613086938858, + 0.005690163932740688, + 0.03648654744029045, + -0.047531794756650925, + 0.04222014918923378, + 4.396962685859762e-05, + -0.012968858703970909, + 0.05177614837884903, + -0.09312757104635239, + 0.055548910051584244, + 0.007588953711092472, + -0.03740491718053818, + 0.10841717571020126, + -0.041698914021253586, + 0.030306173488497734, + -0.0072476682253181934, + 0.045273106545209885, + 0.10593509674072266, + -0.08791520446538925, + -0.019099591299891472, + 0.01891343481838703, + 0.0634419173002243, + -0.06870391964912415, + 0.04343636706471443, + 0.039415400475263596, + 0.062250521034002304, + -0.00614624610170722, + 0.0019422261975705624, + -0.0020461631938815117, + 0.035096585750579834, + -0.0037820665165781975, + -0.0448511503636837, + -0.08875911682844162, + 0.026161104440689087, + -0.022785477340221405, + -0.03340877220034599, + -0.025230323895812035, + 0.04830124229192734, + 0.020278578624129295, + 0.016654744744300842, + -0.022475218400359154, + 0.015810837969183922, + 0.004477048292756081, + -0.0764976516366005, + 0.002868351526558399, + -0.04964156448841095, + 0.006856740918010473, + -0.05609496682882309, + 0.024411238729953766, + 0.009717335924506187, + 0.0400855615735054, + -0.027898557484149933, + -0.06845571845769882, + 0.006589917466044426, + 0.0052713132463395596, + 0.03517104685306549, + 0.01375071331858635, + -0.03157203271985054, + -0.01066673081368208, + -0.02236352488398552, + 0.03393000736832619, + -0.04338672757148743, + 0.03993663564324379, + 0.031621675938367844, + 0.0023253969848155975, + -0.04979048669338226, + 0.07193062454462051, + -0.16351930797100067, + 0.031621675938367844, + -0.0005704901413992047, + 0.0014341757632791996, + 0.025639867410063744, + -0.0646333172917366, + -0.07461126893758774, + -0.00287765939719975, + 0.022462807595729828, + -0.056889232248067856, + 0.09129083156585693, + -0.00017607241170480847, + -0.04137624427676201, + 0.07351915538311005, + -0.017796499654650688, + -0.0586266852915287, + -0.043709397315979004, + -0.025788791477680206, + 0.027203576639294624, + -0.01798265613615513, + -0.003329087281599641, + -0.02725321799516678, + -0.06910105794668198, + -0.03373144194483757, + -0.03189470246434212, + -0.009810414165258408, + 0.010406112298369408, + -0.05922238528728485, + 0.055102135986089706, + 0.05311647057533264, + -0.03393000736832619, + -0.07431341707706451, + -0.012255260720849037, + -0.017548292875289917, + -0.09546072781085968, + -0.0022431781981140375, + 0.028866568580269814, + 0.013378401286900043, + 0.00634170975536108, + 0.011374123394489288, + 0.009009943343698978, + -0.0634419173002243, + -0.04271656647324562, + -0.06711539626121521, + 0.005054131615906954, + 0.027302859351038933, + 0.0316961370408535, + 0.044205810874700546, + -0.021469976752996445, + -0.009320203214883804, + -0.05733600631356239, + -0.056641023606061935, + -0.019112002104520798, + 0.02160649001598358, + -0.006167964078485966, + 0.025317197665572166, + -0.0538610965013504, + -0.030306173488497734, + -0.007384182419627905, + -0.009847644716501236, + -0.03877006098628044, + -0.007632390130311251, + 0.019335389137268066, + 0.08811377733945847, + 0.006478223949670792, + 0.001790198846720159, + 0.026756802573800087, + -0.002041509374976158 + ] + }, + { + "id": "f2772c3b-b22b-46e5-b926-42493c8de10e", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "travis35", + "reviewDate": "2022-01-05T17:23:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fddb4eaa-7c8b-480f-bad5-1f9ea2f42519", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelelliott", + "reviewDate": "2022-11-21T15:49:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e72d4a58-838e-404b-95ea-feaecc71bd39", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "christensenjennifer", + "reviewDate": "2022-11-11T05:34:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "15b57055-ce3e-465e-af70-4f9cafdeeee5", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "zfoley", + "reviewDate": "2021-08-10T00:47:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0da8b01c-c76d-406c-b79d-2a0e75524a10", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "scottphillips", + "reviewDate": "2021-08-10T03:24:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0c5b8a9d-3def-41ba-a3c1-85fc311222c8", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "david89", + "reviewDate": "2022-04-04T04:35:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fe180cfd-38a2-43fc-8698-c2df2c3372c7", + "productId": "128624b0-505d-4864-95e1-6b6ac6e109bd", + "category": "Electronics", + "docType": "customerRating", + "userName": "larryking", + "reviewDate": "2021-08-01T02:27:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Pro (Silver)", + "description": "This Awesome Speaker Pro (Silver) is rated 4.4 out of 5 by 5.\n\nRated 5 out of 5 by Anonymous from Can't get one. It took me many tries to get it working correctly.\n\nRated 5 out of 5 by Anonymous from Worked perfect", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-11-08T19:17:38", + "price": 241.67, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-04-21T21:26:04", + "newPrice": 227.95 + }, + { + "priceDate": "2021-07-28T21:26:04", + "newPrice": 234.86 + }, + { + "priceDate": "2021-11-03T21:26:04", + "newPrice": 223.71 + }, + { + "priceDate": "2022-02-09T21:26:04", + "newPrice": 247.58 + }, + { + "priceDate": "2022-05-18T21:26:04", + "newPrice": 221.1 + }, + { + "priceDate": "2025-02-22T21:26:04", + "newPrice": 241.67 + } + ], + "descriptionVector": [ + -0.01799076609313488, + 0.030318865552544594, + -0.01467574667185545, + 0.031781721860170364, + -0.009473171085119247, + 0.02079850621521473, + -0.05186059698462486, + 0.06323312222957611, + -0.03758595511317253, + 0.17139007151126862, + -0.01989012025296688, + -0.011407915502786636, + -0.06837671250104904, + -0.043696917593479156, + 0.002498062327504158, + 0.030908728018403053, + -0.027983015403151512, + 0.005577137693762779, + -0.04034650698304176, + 0.022520901635289192, + 0.01504146121442318, + -0.054031286388635635, + -0.07460564374923706, + 0.016008833423256874, + -0.008824323303997517, + 0.0027295828331261873, + -0.0034123470541089773, + 0.035179320722818375, + 0.028973981738090515, + -0.020999059081077576, + 0.035155728459358215, + 0.05115276575088501, + -0.04263516888022423, + 0.04390926659107208, + 0.019052516669034958, + 0.03407038375735283, + -0.006093266420066357, + -0.05539976432919502, + 0.004825064446777105, + 0.1331670731306076, + 0.00629971781745553, + -0.017035191878676414, + 0.03645342215895653, + -0.02845490537583828, + 0.04336659610271454, + 0.007845154032111168, + -0.02270965650677681, + 0.054786309599876404, + 0.013106715865433216, + 0.027605503797531128, + 0.015548741444945335, + 0.022166984155774117, + -0.0696508139371872, + 0.02713361568748951, + 0.03140421211719513, + -0.0014223027974367142, + -0.04169138893485069, + 0.0028711494524031878, + 0.030130110681056976, + -0.08503439277410507, + 0.022072605788707733, + -0.008948194794356823, + -0.01364938821643591, + -0.011561280116438866, + -0.030719971284270287, + 0.022072605788707733, + -0.04855737462639809, + 0.05733450874686241, + 0.023110762238502502, + 0.05573008581995964, + 0.07606849819421768, + -0.03350411728024483, + -0.006730316206812859, + 0.06497911363840103, + 0.050350554287433624, + 0.004928290378302336, + 0.04112512245774269, + 0.02887960523366928, + -0.04393286257982254, + 0.05459755286574364, + -0.009390590712428093, + 0.045655257999897, + 0.018167724832892418, + 0.010717778466641903, + 0.016563301905989647, + -0.03548604995012283, + -0.061864644289016724, + -0.13477149605751038, + -0.012623029761016369, + 0.08281651139259338, + -0.02046818472445011, + -0.009998147375881672, + -0.0175542701035738, + 0.011266348883509636, + 0.04211609065532684, + -0.011685150675475597, + -0.0730484127998352, + 0.027015643194317818, + -0.07592693716287613, + -0.06252528727054596, + -0.03440070524811745, + -0.06587570160627365, + -0.09768101572990417, + -0.008281650952994823, + 0.005574188195168972, + 0.03503775596618652, + 0.03902521729469299, + -0.04478226229548454, + 0.0536537766456604, + -0.04006337374448776, + 0.038718488067388535, + -0.013472430408000946, + 0.03593434393405914, + -0.10296617448329926, + 0.006529763340950012, + 0.0018521641613915563, + 0.005701008718460798, + -0.00810469314455986, + -0.026472970843315125, + -0.02772347629070282, + -0.02110523357987404, + 0.024844953790307045, + 0.0020011041779071093, + 0.0536537766456604, + 0.03893084079027176, + 0.012634826824069023, + 0.054031286388635635, + 0.08191992342472076, + 0.024679793044924736, + -0.051388707011938095, + -0.05228529870510101, + 0.0643184632062912, + -0.004825064446777105, + -0.04041729122400284, + 0.001560182892717421, + 0.04669341444969177, + -0.03199407085776329, + 0.06748012453317642, + 0.016563301905989647, + 0.0021618413738906384, + -0.00405529560521245, + 0.02151813730597496, + 0.0013249757466837764, + -0.008895106613636017, + -0.03864770755171776, + 0.022674264386296272, + -0.06974519044160843, + 0.009184138849377632, + 0.044805858284235, + 0.06106243282556534, + -0.008800729177892208, + -0.10032359510660172, + -0.05096400901675224, + -0.030861537903547287, + 0.020385602489113808, + 0.00612275954335928, + -0.05304031819105148, + 0.02181306667625904, + 0.0374915786087513, + 0.06219496577978134, + -0.0640353336930275, + -0.0634690672159195, + -0.013602199032902718, + -0.001297694630920887, + -0.03274909406900406, + 0.07257652282714844, + 0.07262371480464935, + 0.07842794805765152, + -0.11136579513549805, + 0.00752073060721159, + 0.018627816811203957, + -0.032796282321214676, + -0.009119254536926746, + -0.024231499060988426, + -0.004247000906616449, + -0.04353175684809685, + 0.011985979974269867, + 0.011974182911217213, + -0.06535661965608597, + -0.0024479241110384464, + -0.01062340009957552, + 0.052568431943655014, + -0.04468788579106331, + -0.04098355770111084, + 0.07215182483196259, + -0.011242754757404327, + 0.03583996742963791, + -0.084279365837574, + -0.008842019364237785, + 0.046504657715559006, + -0.049453962594270706, + 0.02105804532766342, + 0.002959628589451313, + -0.004479995928704739, + -0.047236084938049316, + 0.02800660952925682, + 0.025741543620824814, + 0.017471689730882645, + -0.012469666078686714, + 0.02018504962325096, + -0.013531415723264217, + 0.06530943512916565, + 0.0648847296833992, + -0.06899016350507736, + -0.011767731048166752, + -0.04733046144247055, + 0.07295403629541397, + 0.06648915261030197, + -0.012446071021258831, + -0.030318865552544594, + 0.05190778523683548, + -0.01784919947385788, + 0.03685452789068222, + 0.019276663661003113, + 0.023818595334887505, + 0.05530538782477379, + -0.03239517658948898, + 0.04169138893485069, + -0.03305582329630852, + -0.041219502687454224, + 0.03727922961115837, + -0.034731026738882065, + 0.019783945754170418, + 0.03697250038385391, + -0.0845625028014183, + -0.05804234370589256, + -0.04530134052038193, + -0.04360254108905792, + 0.03440070524811745, + -0.025694353505969048, + -0.02403094619512558, + 0.009897870942950249, + 0.013767360709607601, + 0.0318760983645916, + -0.04733046144247055, + 0.011614367365837097, + -0.01638634502887726, + -0.03527370095252991, + -0.05681543052196503, + 0.07370905578136444, + -0.047566406428813934, + 0.04751921817660332, + -0.07536067068576813, + -0.0383409783244133, + -0.008258056826889515, + -0.047094520181417465, + 0.06247809901833534, + 0.006382298190146685, + -0.08748821169137955, + -0.017507079988718033, + -0.12967509031295776, + 0.021754080429673195, + -0.07257652282714844, + 0.08262775838375092, + 0.0348254069685936, + 0.02774707041680813, + 0.09881354868412018, + -0.06512067466974258, + 0.03303222730755806, + -0.0010086626280099154, + -0.06162869930267334, + 0.044593505561351776, + -0.020149659365415573, + 0.015348188579082489, + -0.03211204335093498, + -0.004987276624888182, + 0.039308350533246994, + -0.019854728132486343, + -0.03430632874369621, + 0.02194283716380596, + -0.02272145450115204, + -0.03730282187461853, + -0.008653263561427593, + 0.01638634502887726, + 0.00035963099799118936, + 0.03123904950916767, + -0.07460564374923706, + 0.04449912905693054, + -0.015725700184702873, + 0.048887696117162704, + 0.1075906828045845, + 0.03701968863606453, + 0.06044897809624672, + 0.027935827150940895, + 0.040912773460149765, + -0.02505730465054512, + 0.023971959948539734, + -0.0025791681837290525, + -0.008352434262633324, + 0.01740090548992157, + -0.027463937178254128, + -0.0297761932015419, + 0.03558042645454407, + 0.00026875550975091755, + 0.03466024622321129, + 0.04249360039830208, + 0.05237967520952225, + -0.024892142042517662, + -0.015442566014826298, + 0.017743024975061417, + 0.1044762134552002, + 0.04520696401596069, + -0.030295271426439285, + -0.06158151105046272, + 0.029422277584671974, + -0.0009231328149326146, + -0.05629635229706764, + 0.056107599288225174, + -0.08451531082391739, + -0.050208985805511475, + 0.07682352513074875, + -0.015737496316432953, + -0.012941555120050907, + -0.0368073396384716, + 0.11608468741178513, + -0.003264881670475006, + -0.0134842274710536, + 0.00921953096985817, + -0.001877233269624412, + 0.016728464514017105, + -0.07182150334119797, + -0.04308346286416054, + -0.05030336230993271, + 0.05974114313721657, + -0.04645746946334839, + 0.03829379007220268, + 0.07418094575405121, + -0.06814076751470566, + -0.014475193805992603, + 0.06559256464242935, + 0.00479557178914547, + -0.006553357932716608, + 0.036477018147706985, + 0.030153704807162285, + 0.05473912134766579, + -0.038860056549310684, + -0.047991108149290085, + 0.02887960523366928, + 0.0533706434071064, + 0.032347988337278366, + 0.041620608419179916, + -0.005960547365248203, + 0.05733450874686241, + -0.02109343744814396, + 0.022072605788707733, + -0.09853041917085648, + 0.037821900099515915, + -0.06917892396450043, + 0.006689026020467281, + -0.08517596125602722, + 0.0012637776089832187, + -0.015536944381892681, + 0.019654175266623497, + -0.007538426201790571, + 0.01099501270800829, + -0.014899893663823605, + -0.014498788863420486, + 0.008228563703596592, + 0.08862074464559555, + -0.02096366696059704, + -0.019064314663410187, + -0.02283942513167858, + -0.003197047859430313, + 0.014286438003182411, + 0.00929031427949667, + 0.026638131588697433, + -0.006187643855810165, + 0.04421599581837654, + -0.061723075807094574, + -0.04912364110350609, + -0.053889721632003784, + -0.03348052129149437, + -0.028100987896323204, + 0.05002022907137871, + -0.006140455137938261, + 0.05053930729627609, + 0.018014362081885338, + -0.005338244140148163, + -0.019359244033694267, + 0.041620608419179916, + 0.0007793541299179196, + 0.06394095718860626, + 0.00405234657227993, + -0.009372894652187824, + 0.022957397624850273, + -0.0034300428815186024, + 0.02062154747545719, + 0.03126264363527298, + -0.008570683188736439, + -0.012398882769048214, + -0.006612344179302454, + -0.05936363339424133, + -0.0463394969701767, + 0.09518000483512878, + 0.06143994256854057, + -0.06799919903278351, + -0.007196306716650724, + 0.03838816657662392, + 0.02597748674452305, + 0.012351693585515022, + 0.01386173814535141, + 0.059174876660108566, + 0.012410679832100868, + -0.06483754515647888, + -0.038128629326820374, + -0.0783807560801506, + -0.015359985642135143, + 0.08564784377813339, + -0.0601186528801918, + -0.06559256464242935, + 0.018840167671442032, + -0.011608468368649483, + 0.02432587556540966, + -0.003020089352503419, + 0.03690171614289284, + 0.11278146505355835, + 0.028502093628048897, + -0.0031705040019005537, + 0.07337873429059982, + -0.03303222730755806, + 0.04841580614447594, + 0.03857692331075668, + 0.0864972472190857, + -0.012693813070654869, + -8.635936683276668e-05, + 0.026189837604761124, + -0.0014901368413120508, + -0.01422745268791914, + 0.016303764656186104, + -0.07399219274520874, + 0.0014975101221352816, + -0.029988544061779976, + 0.045348528772592545, + 0.0353916734457016, + -0.0087063517421484, + 0.015265608206391335, + -0.00826395582407713, + -0.018368277698755264, + -0.01150229386985302, + -0.004314834717661142, + -0.05473912134766579, + -0.0044947424903512, + 0.021577123552560806, + 0.022025417536497116, + -0.10881759226322174, + -0.047684378921985626, + -0.05101119726896286, + 0.048274241387844086, + 0.07007551193237305, + -0.002309306524693966, + 0.030861537903547287, + 0.026213431730866432, + -0.07097209990024567, + 0.016716666519641876, + 0.04926520958542824, + 0.02755831554532051, + -0.03845895081758499, + 0.06398814171552658, + -0.049925852566957474, + -0.043696917593479156, + -0.0763988271355629, + 0.037515174597501755, + 0.0038281993474811316, + 0.055352576076984406, + -0.01635095290839672, + -0.0009821188868954778, + -0.09348120540380478, + -0.07748416811227798, + -0.002397785894572735, + -0.040440883487463, + -0.013767360709607601, + -0.023960161954164505, + 0.0011089390609413385, + 0.025458410382270813, + -0.055211007595062256, + -0.006553357932716608, + 0.021258598193526268, + 0.049312397837638855, + 0.06106243282556534, + 0.012033168226480484, + -0.03572199493646622, + 0.019972700625658035, + -0.05497506633400917, + 0.0009223954402841628, + 0.07875826954841614, + -0.010800358839333057, + -0.013319065794348717, + -0.02182486467063427, + 0.03937913477420807, + 0.009750405326485634, + 0.045466501265764236, + 0.0724821463227272, + 0.011177869513630867, + -0.0039491206407547, + -0.019783945754170418, + 0.021199611946940422, + -0.04574963450431824, + 0.003432992147281766, + -0.022084403783082962, + 0.03940272703766823, + 0.03775111585855484, + -0.03277269005775452, + 0.023051775991916656, + 0.03548604995012283, + -0.0005061746342107654, + -0.05705137550830841, + -0.02327592298388481, + -0.07012270390987396, + -0.07234057784080505, + 0.05483349785208702, + 0.0210698414593935, + -0.02286302112042904 + ] + }, + { + "id": "6377fece-2477-4869-90fd-dfc6d2e69950", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "ybarton", + "reviewDate": "2021-10-02T15:24:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3cd2c851-c53c-4c0d-9aff-dd5f170951cf", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "kenneth50", + "reviewDate": "2022-04-26T09:30:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "69e741b9-0160-4e85-b614-77baac577ed0", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "codyfarmer", + "reviewDate": "2021-05-13T19:00:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "89e5541b-8ae6-4e4b-be01-c4ae3484bcf6", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "jenniferwagner", + "reviewDate": "2021-04-21T21:26:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a03f678d-0272-4f9e-a7ad-e1968ee667a9", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "pramsey", + "reviewDate": "2021-08-10T15:29:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9a88e081-b0de-41fc-9b0e-11d4b1be900c", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "troy75", + "reviewDate": "2022-05-19T14:16:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d96977e4-efbd-4128-a6d0-44014f07b087", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "caitlinfisher", + "reviewDate": "2021-08-05T14:20:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5527bc0c-6d27-468c-8007-838e97001a18", + "productId": "f3498ab4-d0ec-4f38-b8ca-c0c1d31c4594", + "category": "Media", + "docType": "customerRating", + "userName": "wbaker", + "reviewDate": "2021-09-05T22:05:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "product", + "name": "Basic TV Mini (Silver)", + "description": "This Basic TV Mini (Silver) is now available!\n\n\nClick here to buy this TV Mini (Silver)\n\nClick here to buy this TV Mini (Silver)\n\nClick here to buy this TV Mini (Silver)\n\nClick here to buy this TV Mini (Silver)", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-12-28T16:38:23", + "price": 416.36, + "stock": 49, + "priceHistory": [ + { + "priceDate": "2021-02-07T03:23:26", + "newPrice": 395.33 + }, + { + "priceDate": "2021-07-19T03:23:26", + "newPrice": 397.22 + }, + { + "priceDate": "2021-12-28T03:23:26", + "newPrice": 418.98 + }, + { + "priceDate": "2022-06-08T03:23:26", + "newPrice": 431.68 + }, + { + "priceDate": "2022-11-17T03:23:26", + "newPrice": 408.6 + }, + { + "priceDate": "2025-05-18T03:23:26", + "newPrice": 416.36 + } + ], + "descriptionVector": [ + -0.003793447045609355, + 0.02866159938275814, + -0.04465118423104286, + 0.05563722178339958, + -0.041496776044368744, + -0.09185852110385895, + 0.027206765487790108, + 0.06700396537780762, + -0.007899615913629532, + 0.03524234518408775, + -0.014752293936908245, + -0.05128631740808487, + 0.10436738282442093, + -0.047207340598106384, + 0.048376645892858505, + -0.010700511746108532, + -0.0013622078113257885, + 0.0043339114636182785, + -0.01797468401491642, + 0.03034757636487484, + 0.07510752975940704, + -0.0695057362318039, + -0.03478006273508072, + 0.023046210408210754, + -0.016710203140974045, + -0.016886956989765167, + -0.038641493767499924, + 0.014670714735984802, + 0.027981771156191826, + -0.04318275302648544, + 0.017729945480823517, + 0.04791436344385147, + -0.007654876913875341, + -0.005438633728772402, + -0.03635726496577263, + 0.008484268561005592, + 0.013100309297442436, + 0.040245890617370605, + -0.014466766268014908, + 0.01244767289608717, + 0.040980104357004166, + -0.0017089206958189607, + -0.022012870758771896, + -0.007491718046367168, + -0.02269269898533821, + 0.06531798839569092, + -0.02258392609655857, + -0.02299182489514351, + 0.0061660511419177055, + -0.03820640221238136, + -0.022638313472270966, + -0.00019247665477450937, + -0.025792719796299934, + 0.061293404549360275, + 0.008497864939272404, + -0.011332753114402294, + -0.021183477714657784, + 0.1085551306605339, + 0.002459282288327813, + -0.03317566588521004, + -0.042883627116680145, + 0.0069512538611888885, + 0.0316256545484066, + 0.0710829421877861, + -0.061402175575494766, + -0.006771099288016558, + -0.06515483558177948, + 0.022461557760834694, + -0.004408692475408316, + 0.05732319876551628, + -0.020177330821752548, + -0.0120465736836195, + 0.03605814278125763, + 0.02174093946814537, + 0.03342040628194809, + 0.0434274896979332, + 0.025085698813199997, + -0.005476024467498064, + 0.022964630275964737, + -0.012977940030395985, + -0.005520213395357132, + 0.032305486500263214, + -0.03788008540868759, + 0.011149199679493904, + -0.021863307803869247, + 0.055909156799316406, + -0.0005595844122581184, + -0.15075892210006714, + -0.0336107574403286, + 0.09582872688770294, + -0.0027261152863502502, + 0.060967084020376205, + 0.10115858912467957, + -0.010720906779170036, + 0.07478121668100357, + -0.01786591112613678, + 0.026227811351418495, + 0.004337310325354338, + -0.0778268501162529, + -0.05922672152519226, + 0.08098125457763672, + 0.008552251383662224, + 0.020585229620337486, + -0.054821427911520004, + 0.04038185626268387, + 0.023739635944366455, + 0.0021091701928526163, + 0.06297937780618668, + -0.023807618767023087, + -0.15598002076148987, + 0.01647906005382538, + -0.0030337378848344088, + -0.016057565808296204, + 0.013147897087037563, + -0.013440223410725594, + 0.022896647453308105, + -0.033066894859075546, + -0.04443363845348358, + -0.035160768777132034, + -0.023590074852108955, + 0.003371953032910824, + -0.0495731458067894, + -0.024827362969517708, + 0.0534345768392086, + -0.049328409135341644, + 0.020435666665434837, + -0.0537337027490139, + 0.0462011955678463, + 0.027981771156191826, + -0.04772401228547096, + -0.060531992465257645, + -0.007396542001515627, + -0.03858710825443268, + 0.026622112840414047, + -0.010462571866810322, + 0.014847470447421074, + 0.02182251773774624, + 0.029558975249528885, + -0.03067389503121376, + 0.011006435379385948, + -0.11089374125003815, + -0.002702321158722043, + 0.06026006117463112, + 0.027220362797379494, + -0.07956720888614655, + 0.007457726635038853, + -0.007199391257017851, + 0.042149413377046585, + -0.019783031195402145, + 0.07815317064523697, + 0.020177330821752548, + -0.07189873605966568, + -0.012590437196195126, + -0.011176392436027527, + 0.007525709457695484, + 0.08669181913137436, + -0.040980104357004166, + -0.015540895983576775, + -0.03119056485593319, + 0.05047051981091499, + 0.02013654075562954, + -0.03206074610352516, + -0.042774856090545654, + -0.04538539797067642, + -0.04908366873860359, + -0.023127790540456772, + 0.04799594357609749, + 0.07004960626363754, + -0.10442177206277847, + 0.011842625215649605, + 0.004435885697603226, + -0.03067389503121376, + 0.005448831245303154, + -0.04949156567454338, + 0.020381279289722443, + 0.06575307995080948, + 0.02394358441233635, + -0.034535326063632965, + 0.0003932387044187635, + -0.07739175856113434, + -0.07075662910938263, + 0.022067256271839142, + -0.038315173238515854, + -0.02210804633796215, + -0.009619583375751972, + -0.011101610958576202, + 0.03616691380739212, + -0.022719891741871834, + -0.07124610245227814, + -0.011223980225622654, + -0.021944887936115265, + 0.0026598318945616484, + 0.015554492361843586, + -0.045004695653915405, + 0.060858312994241714, + -0.008613436482846737, + 0.039158161729574203, + -0.009979893453419209, + -0.03948448225855827, + 0.025833509862422943, + 0.02061242237687111, + -0.0003445884503889829, + 0.07532507926225662, + -0.025792719796299934, + -0.05365212261676788, + -0.026037458330392838, + -0.0067609017714858055, + 0.0020462858956307173, + 0.01698213443160057, + -0.02407955192029476, + -0.015513703227043152, + 0.030537929385900497, + 0.059281107038259506, + 0.01717248558998108, + 0.07864264398813248, + 0.09136904776096344, + 0.047533657401800156, + -0.022447960451245308, + -0.0343993604183197, + -0.016166338697075844, + 0.07091978192329407, + -0.02024531364440918, + -0.006135458592325449, + -0.0038274384569376707, + -0.06439342349767685, + -0.08816025406122208, + 0.049002088606357574, + 0.04761523753404617, + 0.03339321166276932, + 0.04269327595829964, + -0.19394168257713318, + -0.03573182225227356, + -0.07091978192329407, + 0.014045272022485733, + -0.026989219710230827, + 0.025670351460576057, + 0.0038682282902300358, + 0.011897011660039425, + -0.06395833194255829, + 0.03828798234462738, + -0.048893317580223083, + 0.031680040061473846, + -0.021210672333836555, + 0.00028170424047857523, + 0.059172336012125015, + -0.005513415206223726, + 0.0383695624768734, + 0.007987993769347668, + -0.024922538548707962, + 0.02541201561689377, + -0.08816025406122208, + -0.02115628495812416, + -0.05310826003551483, + 0.025792719796299934, + -0.009558399207890034, + 0.023562880232930183, + 0.05332580581307411, + 0.03279495984315872, + 0.007260575890541077, + 0.018681706860661507, + -0.045956455171108246, + -0.024065954610705376, + 0.006856077816337347, + 0.05803022161126137, + 0.00893295556306839, + 0.01925276406109333, + 0.026255004107952118, + -0.13074475526809692, + 0.009436029940843582, + 0.034725677222013474, + -0.028607213869690895, + -0.0075597008690238, + 0.025887897238135338, + 0.02621421404182911, + -0.10034279525279999, + -0.049002088606357574, + -0.09196729958057404, + 0.048050329089164734, + -0.05449511110782623, + -0.012529253028333187, + 0.07875141501426697, + 0.06868994235992432, + 0.054087214171886444, + -0.02803615666925907, + -0.0021006723400205374, + -0.007818035781383514, + -0.07222505658864975, + -0.010197438299655914, + -0.010333403944969177, + -0.016601430252194405, + -0.04334590956568718, + -0.008450277149677277, + 0.030102837830781937, + 0.010224631056189537, + 0.10670599341392517, + 0.055474065244197845, + 0.03573182225227356, + 0.007811237592250109, + -0.020190928131341934, + 0.013684961944818497, + -0.06977767497301102, + -0.02024531364440918, + -0.08076371252536774, + -0.056507404893636703, + -0.05623547360301018, + 0.10366035997867584, + -0.0036438845563679934, + 0.014874663203954697, + -0.010238228365778923, + -0.01314109843224287, + 0.044161707162857056, + -0.03437216579914093, + -0.06004251539707184, + -0.022080853581428528, + -0.01998697966337204, + -0.010605336166918278, + -0.015513703227043152, + 0.019157586619257927, + -0.06863556057214737, + 0.02624140866100788, + -0.001617143745534122, + 0.010000287555158138, + -0.11334113031625748, + 0.09060763567686081, + 0.057486359030008316, + -0.013732550665736198, + 0.010041077621281147, + -0.04163274168968201, + -0.038532719016075134, + 0.0271659754216671, + -0.055582836270332336, + -0.040762558579444885, + 0.019116798415780067, + 0.044569604098796844, + 0.06945135444402695, + -0.08054616302251816, + 0.020775580778717995, + -0.0052822730503976345, + 0.04095291346311569, + -0.009769146330654621, + 0.07695666700601578, + 0.03986518457531929, + 0.010075069032609463, + -0.05128631740808487, + -0.09066202491521835, + -0.04940998926758766, + -0.03225109726190567, + 0.033148471266031265, + 0.05338019132614136, + -0.0020666809286922216, + 0.0015466114273294806, + -0.05318984016776085, + 0.06548114866018295, + 0.004585448186844587, + 0.11551658064126968, + -0.01940232515335083, + -0.02269269898533821, + -0.011060821823775768, + 0.03613972291350365, + 0.004078975412994623, + 0.04239415004849434, + -0.05416879430413246, + -0.007879220880568027, + 0.022053660824894905, + 0.001512620016001165, + 0.04883893206715584, + 0.003456931561231613, + 0.04185028746724129, + -0.055909156799316406, + 0.06004251539707184, + 0.03594936802983284, + -0.002219642512500286, + -0.09969015419483185, + 0.04962753504514694, + 0.038641493767499924, + 0.03203355148434639, + 0.06254428625106812, + -0.01345382072031498, + 0.007750052958726883, + 0.0047316113486886024, + -0.038124822080135345, + -0.011088014580309391, + -0.030701087787747383, + -0.04386258125305176, + 0.00972155760973692, + -0.04579329490661621, + -0.0529450997710228, + -0.062217969447374344, + -0.09338134527206421, + -9.204250090988353e-05, + -0.033773913979530334, + 0.004384898580610752, + 0.006043681874871254, + 0.0029096691869199276, + 0.07043030858039856, + -0.03692832216620445, + 0.04772401228547096, + 0.01335864420980215, + 0.05900917574763298, + -0.015948792919516563, + 0.03986518457531929, + -0.0038614298682659864, + 0.00983033049851656, + 0.01052375603467226, + -0.11149199306964874, + -0.03497041389346123, + -0.037798505276441574, + 0.048267874866724014, + 0.010618932545185089, + -0.08941113948822021, + -0.009925507009029388, + -0.08875850588083267, + -0.019279956817626953, + -0.016818974167108536, + -0.01433079969137907, + 0.00545562943443656, + 0.04320994392037392, + -0.02386200614273548, + 0.06928819417953491, + 0.007083820644766092, + 0.0637407898902893, + 0.02576552703976631, + -0.013168292120099068, + -0.016424674540758133, + 0.0014157443074509501, + -0.02027250826358795, + -0.006781296338886023, + -0.00022774278477299958, + -0.03339321166276932, + -0.030510734766721725, + -0.04019150510430336, + -0.04579329490661621, + 0.006713313516229391, + 0.014344397000968456, + 0.002515368163585663, + 0.05289071425795555, + 0.013752944767475128, + 0.033909883350133896, + -0.025248857215046883, + 0.02928704209625721, + -0.020299701020121574, + -0.008681419305503368, + -0.03744499385356903, + 0.08315671235322952, + -0.057160042226314545, + 0.020884353667497635, + 0.016886956989765167, + -0.007688868325203657, + 0.04010992497205734, + -0.013909305445849895, + -0.05971619859337807, + 0.004106168635189533, + -0.059607427567243576, + 0.000980653683654964, + -0.03540550544857979, + -0.028525633737444878, + 0.024949733167886734, + 0.07994791865348816, + 0.002950458787381649, + 0.012284514494240284, + 0.07472682744264603, + 0.04030027613043785, + -0.03714586794376373, + 0.005231285933405161, + -0.06270744651556015, + -0.055582836270332336, + -0.04356345534324646, + 0.03497041389346123, + -0.023087000474333763, + 0.0366835854947567, + -0.014086061157286167, + -0.03195197507739067, + 0.0059417071752250195, + 0.026227811351418495, + 0.02002776972949505, + -0.03556866571307182, + 0.0003524489584378898, + -0.03679235652089119, + 0.020517246797680855, + 0.025602368637919426, + -0.016152743250131607, + 0.01734924130141735, + 0.006822086405009031, + 0.04146958142518997, + 0.059824973344802856, + -0.06363201886415482, + -0.0442160926759243, + 0.019089603796601295, + 0.05596354231238365, + 0.09370765835046768, + -0.011155997402966022, + 0.01607116311788559, + 0.016601430252194405, + 0.03129933774471283, + -0.01728125847876072, + 0.021251462399959564, + 0.018722496926784515, + -0.0506608746945858, + 0.01120358519256115, + 0.07592333108186722, + -0.03458971157670021, + 0.09582872688770294, + -0.0486757718026638, + 0.01944311521947384, + 0.041197650134563446, + -0.031680040061473846, + 0.05041613429784775, + -0.022094449028372765, + 0.003237686585634947, + 0.02518087439239025, + -0.020326893776655197, + 0.013773339800536633 + ] + }, + { + "id": "0ea953a8-b5f3-444c-8cb3-44c115b69d6a", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "dianaquinn", + "reviewDate": "2021-10-22T08:33:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1153eca0-ad25-49de-aefb-7f6421ed5f45", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "irichards", + "reviewDate": "2022-03-30T05:35:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9267cbbf-7d63-450e-85df-939e846ff664", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "kimberly89", + "reviewDate": "2021-12-12T01:04:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0dc5312c-281c-42e1-a60f-4216226099c3", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "uhill", + "reviewDate": "2022-04-17T17:53:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fbaa4a3f-f2b3-46a1-88e2-3bf53ed3cde4", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "christopher05", + "reviewDate": "2022-05-05T09:39:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c4a39d5f-e29d-4ca0-9455-72a73f14ce4e", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "briana16", + "reviewDate": "2022-10-23T20:14:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e69ac91c-1d4d-45fe-b9c3-25801969aec1", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "hannahcoleman", + "reviewDate": "2021-03-02T11:38:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8da9a731-801c-420b-a380-0dd0954c405f", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "ymason", + "reviewDate": "2022-11-20T00:30:38", + "stars": 5, + "verifiedUser": false + }, + { + "id": "e0276b38-bed5-4e0f-bb4f-b51cb09ee867", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "richardsanders", + "reviewDate": "2021-05-15T10:54:18", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ad11cd67-3ace-4e37-884e-31ac42ec9b91", + "productId": "350e4d3e-9435-4149-b446-a3b4d84ddca6", + "category": "Media", + "docType": "customerRating", + "userName": "traceysimpson", + "reviewDate": "2021-02-07T03:23:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Micro (Black)", + "description": "This Luxe Keyboard Micro (Black) is available in White, Blue and Black. The keyboard's top section displays a new Cherry MX strip for improved responsiveness and smooth movement of keys", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-02-13T06:05:16", + "price": 707.47, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-03-14T22:34:26", + "newPrice": 662.29 + }, + { + "priceDate": "2021-10-16T22:34:26", + "newPrice": 750.78 + }, + { + "priceDate": "2022-05-20T22:34:26", + "newPrice": 732.63 + }, + { + "priceDate": "2022-12-22T22:34:26", + "newPrice": 748.33 + }, + { + "priceDate": "2025-07-30T22:34:26", + "newPrice": 707.47 + } + ], + "descriptionVector": [ + -0.011419973336160183, + 0.0037687618751078844, + -0.03685769438743591, + 0.008935888297855854, + -0.005502506159245968, + -0.04649845138192177, + 0.033719900995492935, + -0.00042952800868079066, + 0.008555032312870026, + -0.009180317632853985, + 0.07307873666286469, + -0.010305830277502537, + 0.022203294560313225, + -0.02662576176226139, + 0.032037317752838135, + 0.009487275034189224, + -0.007924063131213188, + -0.0572078712284565, + -0.00198385794647038, + -0.017621662467718124, + 0.0065711745992302895, + -0.06830383837223053, + -0.09640754014253616, + 0.012187369167804718, + -0.00739541370421648, + -0.024988653138279915, + 0.02639838680624962, + 0.0033111670054495335, + 0.029854506254196167, + 0.01086290180683136, + 0.033628951758146286, + -0.010101191699504852, + -0.004473628476262093, + 0.014802196063101292, + -0.024806752800941467, + -0.0809459537267685, + -0.0091632641851902, + -0.03756256029009819, + 0.05243296921253204, + 0.030377471819519997, + 0.05598004162311554, + 0.016916794702410698, + -0.007804690860211849, + -0.044452063739299774, + -0.03367442637681961, + 0.07135067880153656, + 0.03535701334476471, + 3.6904235457768664e-05, + 0.019224664196372032, + -0.042155563831329346, + 0.07389729470014572, + 0.02958165481686592, + -0.07789911329746246, + -0.04915875196456909, + 0.024351999163627625, + -0.02355618216097355, + 0.00044480484211817384, + 0.18617570400238037, + 0.018281053751707077, + -0.08967720717191696, + -0.025693519040942192, + -0.04706688970327377, + -0.018644854426383972, + -0.014017747715115547, + -0.014165542088449001, + -0.0008562137954868376, + -0.021362001076340675, + -0.07139614969491959, + 0.06607554852962494, + 0.05311509966850281, + -0.03672127053141594, + 0.05115966498851776, + 0.01592770777642727, + 0.031014125794172287, + 0.027103252708911896, + 0.017564818263053894, + 0.04715784266591072, + -0.01515462901443243, + 0.024261049926280975, + 0.010663948021829128, + 0.06080041825771332, + -0.013562995009124279, + -0.07207828015089035, + -0.06680314987897873, + 0.02969534322619438, + 0.0329013466835022, + 0.014643032103776932, + -0.08235569298267365, + -0.10131887346506119, + 0.12460220605134964, + -0.0888131782412529, + 0.05147799104452133, + 0.00980560202151537, + -0.026648500934243202, + -0.02871762402355671, + -0.08149165660142899, + -0.026034584268927574, + 0.040791306644678116, + -0.009885183535516262, + 0.018201472237706184, + 0.05916330963373184, + -0.04217829927802086, + -0.0285129863768816, + 0.009845392778515816, + 0.007247618865221739, + 0.06325608491897583, + 0.07362443953752518, + 0.01415417343378067, + -0.05893593281507492, + -0.11005011945962906, + 0.044997766613960266, + 0.015416111797094345, + -0.06198277324438095, + 0.006053893361240625, + -0.030059143900871277, + 0.05302415043115616, + -0.031105075031518936, + -0.023851772770285606, + 0.008361762389540672, + -0.027125990018248558, + 0.051296088844537735, + 0.02178264781832695, + -0.02755800448358059, + 0.008299234323203564, + -0.04806734621524811, + -0.0252387672662735, + -0.030445683747529984, + -0.023306068032979965, + 0.04420194774866104, + -0.03917693346738815, + -0.05284224823117256, + 0.08103691041469574, + -0.014870408922433853, + 0.0704866498708725, + 0.011056171730160713, + 0.0688040629029274, + 0.02442021295428276, + 0.10122792422771454, + -0.02705777809023857, + 0.04358803480863571, + 0.001567475264891982, + -0.06143707036972046, + 0.011721246875822544, + 0.019599836319684982, + -0.046566661447286606, + 0.02860393561422825, + -0.04006370157003403, + -0.006565490271896124, + 0.032560285180807114, + 0.07839934527873993, + 0.05443388223648071, + -0.058981407433748245, + 0.02862667478621006, + -0.05334247648715973, + 0.07398824393749237, + 0.037107810378074646, + -0.0501137338578701, + -0.016643943265080452, + -0.014131436124444008, + 0.04590727016329765, + 0.028467509895563126, + 0.01477945875376463, + 0.0016157927457243204, + 0.016871320083737373, + -0.008475450798869133, + 0.07717151194810867, + 0.029922718182206154, + -0.0041012996807694435, + -0.060027338564395905, + 0.027626218274235725, + -0.021362001076340675, + -0.02537519298493862, + -0.028694886714220047, + -0.04597548395395279, + 0.012528433464467525, + -0.003365169046446681, + 0.056252893060445786, + -0.022908160462975502, + 0.0379491001367569, + -0.009981818497180939, + 0.023442493751645088, + 0.07307873666286469, + -0.07885409146547318, + -0.021646222099661827, + 0.10231932997703552, + -0.024261049926280975, + 0.0051728105172514915, + 0.059072356671094894, + 0.012369269505143166, + -0.0009350849431939423, + -0.03040020912885666, + 0.055616237223148346, + -0.015677595511078835, + -0.017189646139740944, + -0.027603480964899063, + 0.04893137514591217, + 0.039495259523391724, + 0.04631654918193817, + 0.06230110302567482, + 0.07803554087877274, + 0.0155639061704278, + 0.07071402668952942, + -0.0016385302878916264, + -0.03367442637681961, + 0.029740817844867706, + 0.008429975248873234, + 0.020145539194345474, + 0.054251980036497116, + 0.05461578443646431, + 0.007378360256552696, + -0.019599836319684982, + 0.04336065798997879, + -0.024238310754299164, + 0.02505686692893505, + 0.039290621876716614, + -0.004052982199937105, + 0.017439760267734528, + 0.009242845699191093, + -0.04031381383538246, + -0.07089592516422272, + 0.033310625702142715, + -0.016803108155727386, + 0.04647571220993996, + 0.017871776595711708, + -0.04156438261270523, + -0.048567574471235275, + 0.05211464315652847, + 0.028353821486234665, + 0.036880433559417725, + 0.026375649496912956, + -0.058981407433748245, + -0.06302870810031891, + 0.023715347051620483, + -0.018497060984373093, + 0.02082766778767109, + -0.023829033598303795, + -0.014870408922433853, + -0.02610279805958271, + -0.05084133520722389, + 0.05716239660978317, + -0.01961120404303074, + -0.0243065245449543, + 0.004078561905771494, + 0.00290757417678833, + 0.013483413495123386, + -0.10259217768907547, + 0.12587550282478333, + -0.010698053985834122, + -0.11650760471820831, + 0.05493411049246788, + -0.03758529946208, + 0.050977762788534164, + 0.003103686263784766, + 0.06612101942300797, + -0.010220563970506191, + 0.04806734621524811, + 0.0275807436555624, + -0.016496149823069572, + 0.005843570455908775, + -0.06625744700431824, + 0.0243974756449461, + -0.03217374533414841, + -0.00398761173710227, + 0.023181011900305748, + -0.0738518163561821, + 0.008253758773207664, + 0.04311054199934006, + -0.0469304658472538, + -0.047385215759277344, + 0.005175652448087931, + 0.016052765771746635, + -0.006599596701562405, + 0.0758982002735138, + 0.009009785018861294, + -0.06439296156167984, + 0.02241930179297924, + -0.05861760675907135, + 0.04902232810854912, + -0.021828122437000275, + -0.0461801216006279, + 0.03831290453672409, + 0.10313788056373596, + 0.05111418664455414, + -0.033719900995492935, + 0.0758982002735138, + -0.008600507862865925, + -0.013540257699787617, + 0.039085984230041504, + -0.02320374920964241, + 0.00886199064552784, + -0.05375175178050995, + 0.007702371571213007, + 0.013528889045119286, + 0.011527977883815765, + -0.005559349898248911, + 0.006019786931574345, + 0.06302870810031891, + 0.0036550736986100674, + 0.016291510313749313, + 0.04874947667121887, + 0.05252392217516899, + -0.0051642837934195995, + -0.0758982002735138, + -0.03228743374347687, + -0.015802651643753052, + 0.11168722808361053, + -0.014495237730443478, + 0.03367442637681961, + -0.03569807484745979, + -0.015075047500431538, + 0.07016832381486893, + 0.003117897314950824, + -0.05816285312175751, + 0.011653034016489983, + 0.05816285312175751, + -0.04142795875668526, + 0.007855850271880627, + 0.025511618703603745, + -0.03769898787140846, + 0.013483413495123386, + -0.049295179545879364, + -0.0067985509522259235, + -0.12578456103801727, + 0.08763081580400467, + 0.028581198304891586, + -0.034583933651447296, + 0.004402573220431805, + 0.00034337371471337974, + 0.0057355668395757675, + -0.0572078712284565, + -0.08217378705739975, + 0.06607554852962494, + 0.007509101647883654, + -0.028490247204899788, + 0.009703283198177814, + -0.0050108046270906925, + -0.010368358343839645, + 0.016541624441742897, + 0.056980494409799576, + -0.04135974496603012, + 0.054024603217840195, + -0.010175088420510292, + -0.054888635873794556, + -0.05661669373512268, + -0.022316982969641685, + -0.05084133520722389, + -0.059618059545755386, + -0.03394727781414986, + 0.025602569803595543, + 0.049704454839229584, + 0.001264070044271648, + -0.013756264932453632, + 0.12551170587539673, + -0.023328807204961777, + -0.010169404558837414, + 0.036357466131448746, + 0.041609860956668854, + -0.02279447205364704, + -0.01731470413506031, + 0.10595734417438507, + -0.017803562805056572, + 0.006718968972563744, + 0.03663031756877899, + -8.770862768869847e-05, + 0.016371091827750206, + -0.0292633268982172, + -0.02471580170094967, + -0.029740817844867706, + -0.01632561720907688, + 0.05798095092177391, + 0.04415647312998772, + -0.041405219584703445, + -0.07057759910821915, + 0.04436111077666283, + 0.019963636994361877, + 0.02387451007962227, + -0.0041666701436042786, + 0.016541624441742897, + -0.027853595092892647, + 0.05034111067652702, + 0.013892690651118755, + 0.04147343337535858, + -0.012016836553812027, + 0.014415656216442585, + 0.03449298068881035, + -0.059936389327049255, + -0.01205094251781702, + -8.908531890483573e-05, + 0.03317419812083244, + -0.01876991242170334, + -0.027216941118240356, + 0.007173721678555012, + -0.002150126965716481, + 0.05238749459385872, + 0.01080605760216713, + 0.01873580552637577, + 0.05857212841510773, + 0.10013651102781296, + 0.039631687104701996, + 0.021020937711000443, + 0.02366987057030201, + 0.028149183839559555, + -0.007122561801224947, + -0.04815829545259476, + -0.04122332111001015, + -0.07112330198287964, + 0.032764922827482224, + 0.048431146889925, + 0.024556638672947884, + -0.10704874992370605, + -0.027808118611574173, + -0.009021153673529625, + 0.0008000803063623607, + -0.05638931691646576, + 0.025829944759607315, + -0.0004934775643050671, + 0.09108693897724152, + 0.04611191153526306, + 0.003336746944114566, + -0.08371994644403458, + 0.06657577306032181, + -0.03706233575940132, + -0.10513879358768463, + 9.636846516514197e-05, + -0.010891323909163475, + -0.051614414900541306, + 0.0024286629632115364, + -0.026921352371573448, + 0.057617150247097015, + -0.02198728732764721, + 0.02277173474431038, + -0.06493866443634033, + -0.039631687104701996, + -0.015393374487757683, + 0.01621192879974842, + -0.04495229199528694, + 0.012755809351801872, + 0.006360851693898439, + 0.011664403602480888, + 0.06512057036161423, + 0.01940656639635563, + -0.020338809117674828, + 0.0008235284476540983, + 0.03306050971150398, + -0.09577088803052902, + 0.023249225690960884, + -0.0385175421833992, + 0.04733974114060402, + 0.02726241573691368, + -0.03051389753818512, + -0.02989998087286949, + -0.013699420727789402, + -0.01998637430369854, + -0.019531622529029846, + 0.09222382307052612, + -0.04174628481268883, + 0.02366987057030201, + 0.08767629414796829, + 0.023021848872303963, + -0.0036010718904435635, + -0.027125990018248558, + 0.07230565696954727, + 0.02735336683690548, + -0.014927253127098083, + -0.06571174412965775, + -0.08253759145736694, + -0.015018203295767307, + 0.06093684211373329, + -0.004305938258767128, + -0.013744896277785301, + 0.04756711795926094, + -0.06784908473491669, + 0.024488424882292747, + -0.014415656216442585, + 0.036471154540777206, + -0.05620741844177246, + 0.0037914994172751904, + -0.0105161527171731, + 0.000261305074673146, + 0.0012221474898979068, + -0.0260800588876009, + -0.006821288261562586, + -0.0022567096166312695, + 0.026148272678256035, + 0.05943616107106209, + -0.03733518719673157, + -0.006292638834565878, + 0.012903603725135326, + 0.09695324301719666, + -0.025102341547608376, + -0.014938621781766415, + -0.01920192688703537, + -0.020145539194345474, + -0.08763081580400467, + -0.04483860358595848, + 0.030559372156858444, + -0.03128697723150253, + 0.038040053099393845, + -0.014859040267765522, + 0.04811282083392143, + 0.044861339032649994, + -0.018633486703038216, + 0.007810375187546015, + -0.006292638834565878, + 0.031514354050159454, + 0.035402487963438034, + -0.06325608491897583, + 0.044338375329971313, + 0.03997274860739708, + -0.028376560658216476, + 0.018121888861060143, + -0.0733061134815216 + ] + }, + { + "id": "87527470-5cbd-4ef4-a4c3-6e90a5316b1d", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hanseneric", + "reviewDate": "2022-10-22T03:13:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8175ab28-8421-4e6e-ba22-33aa71bb9a1f", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paulgarcia", + "reviewDate": "2022-10-11T00:40:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "30d2853b-36f8-4e99-a62f-805ce594968e", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cory51", + "reviewDate": "2021-08-16T03:54:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e44ff10c-fb48-4de8-aa40-ab6b664a2fc1", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simmonschristopher", + "reviewDate": "2021-07-22T13:50:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "113f8061-0dc4-4c75-8ddb-0deeae6af14d", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karenharris", + "reviewDate": "2021-03-14T22:34:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "76af5207-0503-4a30-9f40-dc80ba576b52", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithhunter", + "reviewDate": "2021-05-24T03:09:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fd129079-f4cd-435c-9c6e-6dadbc662a00", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daniel64", + "reviewDate": "2021-05-20T09:22:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d1ea11fe-d8c2-4c42-9c4c-b8a84810a373", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "olsonandrew", + "reviewDate": "2022-10-25T17:41:51", + "stars": 4, + "verifiedUser": true + }, + { + "id": "04f560d7-d193-44df-8bc7-81f3f80e1c74", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lrice", + "reviewDate": "2022-04-30T11:13:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7eb6b0c6-df55-4c77-9e8f-0cfe843f7953", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tammyhutchinson", + "reviewDate": "2022-08-16T12:53:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bbc35aeb-567e-413d-8c35-2b2bba34bea5", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelagonzalez", + "reviewDate": "2021-12-01T20:13:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4138647a-07ce-4f4b-a823-8891b32678f8", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wongjohn", + "reviewDate": "2022-11-27T14:01:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a9699829-1d74-4910-9cd4-863fa3dca48c", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "allen17", + "reviewDate": "2022-08-23T04:15:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7318637e-6bb1-4c5f-8ff1-5973f279fe82", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dharrington", + "reviewDate": "2022-12-23T05:10:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3f4e5be1-d9e0-487f-8b18-0b90d9c5df9d", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "olewis", + "reviewDate": "2021-11-08T05:11:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "60e98c81-59a5-463b-9555-8c3f721928d7", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "russellbenjamin", + "reviewDate": "2022-04-29T06:17:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "376200eb-1c29-49dd-a210-dd90caac437f", + "productId": "2cf99fec-c4bb-45ed-ac10-66a7126137a4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chandlerstephen", + "reviewDate": "2021-12-10T03:41:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Black)", + "description": "This Awesome Phone Super (Black) is an HTC Desire 6 Plus that supports Android 8.0 Nougat on your phone. The handset comes with a micro-SIM slot and allows you to connect directly to the Internet of Things (IoT) network so you don't miss out on anything.\n\nWhat you'll need:\n\n• An Android 8.0 Nougat Phone (0.5.4)\n\n• 2GB of", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-06-27T07:23:31", + "price": 654.16, + "stock": 2, + "priceHistory": [ + { + "priceDate": "2021-01-16T03:26:44", + "newPrice": 710.74 + }, + { + "priceDate": "2021-07-07T03:26:44", + "newPrice": 606.59 + }, + { + "priceDate": "2021-12-26T03:26:44", + "newPrice": 653.87 + }, + { + "priceDate": "2022-06-16T03:26:44", + "newPrice": 678.38 + }, + { + "priceDate": "2022-12-05T03:26:44", + "newPrice": 677.29 + }, + { + "priceDate": "2023-04-20T03:26:44", + "newPrice": 654.16 + } + ], + "descriptionVector": [ + -0.09616328030824661, + 0.021173225715756416, + -0.012069851160049438, + 0.02622859552502632, + 0.058538470417261124, + 0.012792930006980896, + 0.005623945035040379, + 0.02375653199851513, + 0.0030128275975584984, + 0.046054545789957047, + 0.012125472538173199, + -0.05389098823070526, + -0.03535051271319389, + 0.03554827719926834, + -0.0019328448688611388, + 0.040616005659103394, + -0.03213682770729065, + -0.011637239716947079, + 0.014214366674423218, + 0.007459452375769615, + 0.05280328169465065, + -0.031444650143384933, + -0.029590602964162827, + -0.05265495926141739, + 0.022335095331072807, + -0.006835256237536669, + 0.0034021777100861073, + 0.02371945232152939, + -0.07356861978769302, + 0.011136647313833237, + -0.024819519370794296, + 0.020209120586514473, + 0.012106931768357754, + 0.06684460490942001, + 0.028354570269584656, + 0.02326212078332901, + 0.03713039681315422, + -0.013818836770951748, + -0.008633682504296303, + 0.04378024861216545, + 0.09013144671916962, + -0.04761194810271263, + 0.015623442828655243, + -0.016785312443971634, + 0.04556013643741608, + -0.028502894565463066, + 0.05359434336423874, + -0.039108049124479294, + 0.022990193217992783, + -0.01132823247462511, + 0.009362941607832909, + -0.010759657248854637, + -0.0364629402756691, + 0.003519600722938776, + 0.025486977770924568, + 0.06254321336746216, + 0.03446056693792343, + 0.0623948872089386, + 0.0069773998111486435, + -0.007978585548698902, + -0.019739428535103798, + 0.053989872336387634, + 0.002227947348728776, + 0.0056733861565589905, + -0.05201222002506256, + 0.038959722965955734, + 0.03280428424477577, + -0.0020641733426600695, + 0.03525162860751152, + 0.05122116208076477, + -0.026401640847325325, + 0.038910284638404846, + -0.01852811686694622, + 0.04254421591758728, + 0.012792930006980896, + 0.007663397584110498, + 0.0072987680323421955, + -0.007768460549414158, + 0.015475119464099407, + -0.06793231517076492, + 0.013892997987568378, + -0.00836175587028265, + -0.0020935290958732367, + 0.03441112861037254, + -0.010790558531880379, + -0.01509194914251566, + 0.02281714789569378, + -0.12231771647930145, + -0.011822644621133804, + 0.012817650102078915, + -0.03134576976299286, + 0.0327054038643837, + -0.08424793183803558, + 0.057599086314439774, + 0.0695144310593605, + 0.06976164132356644, + 0.06471862643957138, + 0.04014631360769272, + -0.04553541541099548, + 0.009851174429059029, + 0.08138033747673035, + -0.01834271289408207, + 0.07688118517398834, + -0.027785995975136757, + -0.014857103116810322, + -0.0005998617270961404, + -0.0010907981777563691, + -0.06961331516504288, + 0.02379361353814602, + -0.14328081905841827, + 0.0484771691262722, + 0.009659589268267155, + 0.0036864650901407003, + 0.07787001132965088, + 0.01166814099997282, + 0.005280946381390095, + -0.053989872336387634, + -0.029961412772536278, + -0.0029371208511292934, + -0.00859042163938284, + -0.05107283592224121, + 0.07969933748245239, + 0.003158061532303691, + -0.03483137860894203, + 0.003751356853172183, + -0.06214768439531326, + 0.03648766130208969, + 0.019813591614365578, + 0.05735187977552414, + -0.09527333825826645, + -0.005287126172333956, + -0.022298015654087067, + 0.04892214015126228, + 0.03806978091597557, + -0.0099562369287014, + 0.01127261109650135, + 0.0031766018364578485, + 0.10011858493089676, + -0.010530991479754448, + 0.032260432839393616, + 0.034930258989334106, + 0.04709281399846077, + 0.039256371557712555, + 0.009480364620685577, + 0.021210307255387306, + 0.09779483824968338, + -0.0008992131915874779, + 0.031889621168375015, + -0.04926823079586029, + -0.016290899366140366, + -0.06753677874803543, + -0.11757135391235352, + -0.010982142761349678, + -0.05502814054489136, + -0.06318595260381699, + 0.030653590336441994, + 0.02112378552556038, + -0.03428752347826958, + -0.056461937725543976, + 0.08573117107152939, + 0.017267365008592606, + -0.05685746669769287, + 0.027341024950146675, + -0.05829126387834549, + -0.015499839559197426, + -0.05690690875053406, + 0.05250663310289383, + 0.05473149195313454, + -0.06966275721788406, + 0.023694731295108795, + 0.019516943022608757, + -0.009498905390501022, + -0.04187675938010216, + -0.009084834717214108, + -0.033620066940784454, + 0.003037548391148448, + 0.09107083082199097, + 0.005654845852404833, + 0.054929256439208984, + -0.021902484819293022, + 0.00754597457125783, + -0.01928209699690342, + -0.04266782104969025, + -0.006158528849482536, + -0.012706407345831394, + 0.005009019281715155, + -0.012545723468065262, + 0.01056189276278019, + 0.025462256744503975, + 0.005376738496124744, + -0.05384154990315437, + -0.03139520809054375, + -0.048007477074861526, + -0.00410671578720212, + 0.053989872336387634, + -0.06724013388156891, + -0.01788538135588169, + -0.013497468084096909, + -0.0654108077287674, + 0.021667638793587685, + -0.05814293771982193, + -0.01968998834490776, + 0.03710567578673363, + -0.06298818439245224, + -0.016785312443971634, + 0.0016902736388146877, + -0.004913226701319218, + 0.049218788743019104, + 0.06630074977874756, + 0.009795553050935268, + 0.057895731180906296, + -0.017860660329461098, + -0.009838813915848732, + -0.03441112861037254, + 0.08548396080732346, + 0.021210307255387306, + 0.023534046486020088, + -0.018478676676750183, + -0.019257375970482826, + -0.06847616285085678, + -0.00011877493670908734, + -0.013460387475788593, + 0.013287343084812164, + -0.04459603130817413, + -0.02803320251405239, + -0.054632607847452164, + 0.05685746669769287, + 0.09092250466346741, + 0.015561641193926334, + -0.03235931321978569, + 0.005738277919590473, + -0.06847616285085678, + 0.03033222258090973, + 0.0027501708827912807, + -0.06382868438959122, + 0.032754845917224884, + 0.0432116761803627, + -0.02543753571808338, + -0.03863835707306862, + 0.07411246746778488, + -0.01229233667254448, + -0.013027776032686234, + -0.052111104130744934, + -0.08765938133001328, + 0.055522553622722626, + -0.040789052844047546, + -0.018775323405861855, + 0.1131216362118721, + -0.09453171491622925, + 0.02551169879734516, + 0.0012924257898703218, + -0.024930762127041817, + -0.015833567827939987, + 0.03732816129922867, + -0.005911322310566902, + 0.021939566358923912, + 0.011043944396078587, + -0.0687728151679039, + 0.05735187977552414, + 0.02600611001253128, + -0.0484771691262722, + -0.04625231400132179, + 0.003918221220374107, + 0.07821609824895859, + -0.04724113643169403, + 0.05843958631157875, + 0.0856817290186882, + -0.032754845917224884, + -0.03898444399237633, + -0.022644104436039925, + 0.1146048754453659, + 0.01627853885293007, + 0.06882225722074509, + 0.02108670398592949, + -0.0334470234811306, + -0.012965974397957325, + -0.04160483181476593, + 0.024362187832593918, + -0.008726385422050953, + -0.018552837893366814, + 0.0575002022087574, + 0.041135139763355255, + 0.06580633670091629, + -0.059329528361558914, + 0.017230283468961716, + 0.03164241462945938, + -0.0901808887720108, + -0.0011495096841827035, + -0.015190831385552883, + 0.05641249567270279, + -0.03631461784243584, + -0.04036880284547806, + 0.022223852574825287, + 0.0017489851452410221, + 0.050973955541849136, + 0.012792930006980896, + -0.014276168309152126, + -0.051913339644670486, + 0.05245719105005264, + 0.028947865590453148, + 0.0006377152167260647, + -0.023608209565281868, + -0.045461252331733704, + -0.005580683704465628, + 0.008664583787322044, + 0.08790658414363861, + 0.037822574377059937, + -0.020023716613650322, + -0.056016962975263596, + 0.05809349939227104, + 0.059922825545072556, + -0.023818334564566612, + -0.12300989031791687, + -0.0713931992650032, + 0.0197270680218935, + -0.024930762127041817, + -0.0432116761803627, + 0.010938881896436214, + -0.016105495393276215, + -0.03725400194525719, + 0.024794800207018852, + -0.002513779792934656, + -0.06224656477570534, + 0.09023032337427139, + 0.02961532399058342, + 0.046548958867788315, + -0.0567585825920105, + 0.036660704761743546, + 0.03025805950164795, + -0.0015180016634985805, + -0.02022148109972477, + 0.01808314584195614, + 0.04111041873693466, + 0.0006164708756841719, + -0.0035906725097447634, + -0.011729942634701729, + 0.08543452620506287, + 0.07895771414041519, + 0.06679516285657883, + 0.04578262194991112, + 0.06570745259523392, + -0.018182028084993362, + -0.006853796541690826, + -0.023323921486735344, + -0.01799662411212921, + -0.042000364512205124, + 0.021024901419878006, + -0.019974274560809135, + 0.038316987454891205, + 0.0005932953208684921, + 0.0013573175529018044, + -0.018812404945492744, + 0.06788287311792374, + 0.017613453790545464, + 0.05408875644207001, + 0.020134959369897842, + -0.06194991618394852, + -0.009196077473461628, + -0.01788538135588169, + 0.02585778757929802, + -0.019603464752435684, + -0.050158172845840454, + 0.018429234623908997, + 5.612840254798357e-07, + -0.032829005271196365, + 0.024794800207018852, + -0.04911990836262703, + 0.023855414241552353, + -0.0845445767045021, + -0.009183716960251331, + 0.03490554168820381, + 0.03841587156057358, + -0.020542848855257034, + 0.007094822824001312, + -0.008108369074761868, + 0.01072875689715147, + -0.02386777475476265, + -0.008683123625814915, + 0.029714206233620644, + 0.05028177797794342, + 0.002955661155283451, + 0.02383069507777691, + -0.05606640502810478, + 0.01875060424208641, + 0.0894392654299736, + -0.030876075848937035, + 0.018725883215665817, + 0.013967160135507584, + 0.008126909844577312, + 0.04029463976621628, + -0.04664784297347069, + -0.07015717029571533, + -0.016698790714144707, + 0.12093336135149002, + 0.08879652619361877, + -0.0379461795091629, + -0.04499156028032303, + -0.030876075848937035, + 0.027785995975136757, + -0.046623121947050095, + 0.03537523373961449, + 0.04687032848596573, + 0.045263487845659256, + 0.009430923499166965, + 0.007892063818871975, + -0.052259426563978195, + -0.024028459563851357, + -0.0011726852972060442, + -0.11292387545108795, + -0.05893399938941002, + -0.026821890845894814, + 0.006112177390605211, + -0.06402645260095596, + 0.02495548315346241, + 0.03453473001718521, + 0.05364378169178963, + 0.009171356447041035, + 0.008985951542854309, + 0.08894485235214233, + -0.04476907476782799, + -0.05606640502810478, + 0.05220998451113701, + 0.03371895104646683, + 0.009999497793614864, + 0.0016068414552137256, + 0.01232941821217537, + -0.03656182438135147, + 0.1330959051847458, + -0.028132084757089615, + -0.0218036025762558, + 0.07075046747922897, + -0.033694230020046234, + 0.03713039681315422, + -0.04071488976478577, + -0.07238202542066574, + -0.04217340797185898, + -0.02206316962838173, + 0.008683123625814915, + -0.0450904443860054, + 0.03836642950773239, + -0.018182028084993362, + 0.023583488538861275, + -0.09112027287483215, + 0.09121914952993393, + -0.08592893928289413, + -0.011791744269430637, + -0.037229280918836594, + -0.01661226898431778, + 0.011878265999257565, + -0.05656081810593605, + -0.0507267490029335, + 0.03700679540634155, + 0.05730243772268295, + -0.039627183228731155, + 0.06447142362594604, + -0.050973955541849136, + 0.013052496127784252, + 0.033620066940784454, + -0.01563580334186554, + -0.043804969638586044, + -0.013101938180625439, + 0.019665267318487167, + 0.022310376167297363, + -0.023348642513155937, + 0.012218175455927849, + -0.0038780500181019306, + -0.04326111450791359, + -0.003924401011317968, + -0.03537523373961449, + 0.049663759768009186, + 0.022038448601961136, + -0.07144264131784439, + 0.050677306950092316, + 0.010704035870730877, + -0.030109737068414688, + -0.011563078500330448, + -0.024893682450056076, + 0.02645108290016651, + 0.0263027586042881, + -0.03295261040329933, + 0.08034206926822662, + 0.046400636434555054, + 0.10021746158599854, + 0.04281614348292351, + 0.04462075233459473, + -0.02672300860285759, + -0.03784729540348053, + -0.0004503791278693825, + -0.005982394330203533, + -0.006322302855551243, + 0.07055269926786423, + 0.019479861482977867, + -0.0387125201523304, + -0.005942223127931356, + -0.06471862643957138, + -0.05280328169465065, + 0.022557580843567848, + -0.028280409052968025, + 0.016253819689154625, + 0.04617815092206001, + -0.10461773723363876, + -0.09250462800264359, + -0.036215733736753464, + 0.013522189110517502, + -0.007063922006636858, + 0.027316303923726082, + -0.01215637382119894, + 0.07564514875411987, + -0.009257879108190536, + 0.03364478796720505, + 0.04148123040795326, + -0.018404515460133553 + ] + }, + { + "id": "e70a595a-d053-4a6c-9561-322e05bfdf8a", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "lsantos", + "reviewDate": "2022-03-22T15:34:41", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fd2c9758-28c2-42d4-93f0-77b234825abb", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "andersonsteven", + "reviewDate": "2021-08-06T16:41:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "8fe77e88-c2a0-436f-bf7e-e82c812121d7", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristenramos", + "reviewDate": "2021-10-10T08:58:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5f32f932-6a23-49af-b20e-6f456692b8cd", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica62", + "reviewDate": "2021-01-16T03:26:44", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0cb7881f-a046-4eaa-8ac3-ad1a6506b4f1", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "joanna14", + "reviewDate": "2021-08-05T21:47:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6cf2fe17-4dda-41f1-b69c-a4ba4be3e8b0", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "ehill", + "reviewDate": "2021-10-27T13:03:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c4eaa39a-4d7e-4eb1-98df-d6120ef6a6ba", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "cassandrajohnson", + "reviewDate": "2022-01-11T19:25:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f970dae9-4c4b-4bce-9e0a-bd1e121f421a", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevin84", + "reviewDate": "2021-02-15T21:22:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "10d002bb-facc-41a5-9b0e-60d6f598846b", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberly37", + "reviewDate": "2022-07-18T07:22:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "61bfe02d-10e8-4274-87f6-ee016525eb13", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "brockjose", + "reviewDate": "2022-02-03T17:34:40", + "stars": 5, + "verifiedUser": false + }, + { + "id": "27e8ffe5-037d-44fa-a02b-02e28318e03b", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "brian88", + "reviewDate": "2021-03-19T18:29:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "517fe3f1-6803-4ebe-8df7-ecc3188e8c52", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "qduarte", + "reviewDate": "2022-09-22T19:23:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "012bb4e2-008b-4ce2-ba5b-30470c90eb9e", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "twade", + "reviewDate": "2022-07-23T10:38:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "be0e4ce1-6bc0-41cd-a266-0c9ec5d6c2bc", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "daniellegonzalez", + "reviewDate": "2021-08-27T07:57:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "58b05431-a2d1-436f-a787-1fc4cb01d945", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidwoods", + "reviewDate": "2021-10-29T22:28:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ad1429a6-8548-4acd-b329-d0b8000a5185", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "mercerhannah", + "reviewDate": "2022-12-08T21:24:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "57fe8ecf-37e2-4292-bb92-2b103fc8f205", + "productId": "21f4bf81-7f34-41b8-aec1-900f1d6162dd", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathangallagher", + "reviewDate": "2022-11-14T17:43:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "28f95f5c-7aee-4352-9dce-38825bede227", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Super (Steel)", + "description": "This Amazing Computer Super (Steel) is one of the oldest Supercomputer in the world. It was built by BH and is considered one of the World's Most Powerful Computers. The BH Supercomputer uses modern components and all modern software to provide powerful computation and power. The computer itself, however, is based on the original IBM computer", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-01-05T02:35:29", + "price": 493.62, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-01-12T09:52:30", + "newPrice": 536.61 + }, + { + "priceDate": "2023-11-01T09:52:30", + "newPrice": 493.62 + } + ], + "descriptionVector": [ + 0.0584464855492115, + -0.0010729206260293722, + -0.037004124373197556, + 0.013083692640066147, + 0.04576082527637482, + -0.01689709536731243, + -0.025974789634346962, + -0.010291050188243389, + 0.07251884043216705, + 0.15808285772800446, + 0.03307516500353813, + -0.01755192130804062, + 0.05269428342580795, + -0.029505716636776924, + 0.011960215866565704, + 0.06322287023067474, + 0.01972183771431446, + 0.008339409716427326, + -0.0323561392724514, + -0.12336420267820358, + 0.012345408089458942, + -0.030738331377506256, + -0.026167385280132294, + -0.003662535222247243, + -0.06234976649284363, + 0.002678690245375037, + -0.022276945412158966, + -0.02162211760878563, + -0.05608397349715233, + -0.05284836143255234, + 0.03913551941514015, + 0.06866692006587982, + 0.001917935791425407, + -0.0355147160589695, + 0.06332558393478394, + -0.03797994554042816, + -0.011934536509215832, + -0.04031677544116974, + 0.028350140899419785, + -0.03292108699679375, + 0.03474432975053787, + -0.018425023183226585, + 0.050074975937604904, + 0.0658421739935875, + 0.0584464855492115, + -0.016781536862254143, + -0.028041986748576164, + 0.01032956875860691, + 0.040881723165512085, + 0.06625304371118546, + 0.008397188037633896, + 0.002165100770071149, + 0.04581218585371971, + 0.10086897760629654, + -0.04606897756457329, + 0.0004184952122159302, + -0.017166730016469955, + 0.1628078669309616, + -0.002357696881517768, + 0.012338987551629543, + 0.022931771352887154, + -0.008281630463898182, + -0.0018810215406119823, + 0.013353327289223671, + 0.02434414252638817, + -0.03191958740353584, + -0.03749203309416771, + 0.050999436527490616, + -0.016794376075267792, + 0.03749203309416771, + -0.06332558393478394, + -0.017705997452139854, + 0.029274601489305496, + -0.010021415539085865, + 0.024677975103259087, + -0.008519166149199009, + 0.049741145223379135, + -0.0022052249405533075, + 0.0101819122210145, + 0.018245266750454903, + 0.0751895010471344, + 0.032535895705223083, + -0.04216570034623146, + -0.01931096613407135, + 0.07816832512617111, + 0.007973477244377136, + -0.046197377145290375, + -0.08469091355800629, + -0.0007350749801844358, + 0.0012061328161507845, + -0.010464386083185673, + 0.011883176863193512, + 0.04501612111926079, + -0.02118556760251522, + -0.008288051001727581, + 0.08017132431268692, + -0.06543130427598953, + 0.003729943884536624, + 0.01755192130804062, + 0.05515951290726662, + 0.023856231942772865, + -0.019477881491184235, + -0.013064432889223099, + -0.07041312009096146, + -0.030224742367863655, + -0.051307592540979385, + -0.054954078048467636, + 0.04049653187394142, + 0.03641349449753761, + 0.04008566215634346, + -0.09054583311080933, + 0.006124554667621851, + 0.016974132508039474, + 0.03068697266280651, + 0.020826054736971855, + 0.0365418940782547, + -0.016332145780324936, + -0.05040881037712097, + -0.013147891499102116, + -0.048919402062892914, + 0.05993589386343956, + 0.052052296698093414, + 0.006715182680636644, + -0.006150234490633011, + -0.025435520336031914, + -0.03166279196739197, + -0.018514901399612427, + -0.029274601489305496, + 0.04550402984023094, + 0.0018874414963647723, + -0.08802924305200577, + 0.01575435884296894, + 0.012409606948494911, + -0.02589775063097477, + -0.060911715030670166, + 0.02566663548350334, + 0.029505716636776924, + 0.08428003638982773, + -0.003611176274716854, + 0.0689237117767334, + -0.025705154985189438, + -0.003237218828871846, + -0.09018632024526596, + -0.029094845056533813, + -0.06404460966587067, + 0.001362617127597332, + -0.06507179141044617, + 0.026449859142303467, + -0.027117526158690453, + 0.020235426723957062, + 0.03364011272788048, + 0.021313965320587158, + -0.020530739799141884, + -0.02108285017311573, + 0.017783036455512047, + 0.04845717176795006, + -0.07652483880519867, + 0.08505041897296906, + -0.06245248392224312, + 0.07806560397148132, + -0.0396747887134552, + -0.011363168247044086, + -0.05125623196363449, + -0.046608246862888336, + -0.007132474333047867, + -0.006657403893768787, + 0.058497846126556396, + 0.022379662841558456, + -0.07292971014976501, + 0.006371719762682915, + 0.050460170954465866, + 0.01723092794418335, + -0.044939082115888596, + -0.015215089544653893, + 0.056546203792095184, + 0.02945435792207718, + 0.07025904208421707, + 0.009109794162213802, + -0.019760357216000557, + -0.09455183148384094, + -0.004795642103999853, + 0.01702549308538437, + 0.003794142510741949, + 0.00396747887134552, + 0.030609935522079468, + 0.03120056353509426, + 0.0022020149044692516, + 0.018399344757199287, + -0.05084536224603653, + -0.0250631682574749, + 0.03936663642525673, + -0.0688723549246788, + 0.1034369245171547, + 0.011684161610901356, + 0.024048829451203346, + -0.01382839772850275, + -0.008390768431127071, + 0.042859043926000595, + -0.037723150104284286, + -0.026051828637719154, + 0.04319287836551666, + -0.022315464913845062, + -0.00474749319255352, + -0.03384554758667946, + 0.038570571690797806, + -0.023509560152888298, + -0.019131209701299667, + -0.0017670688685029745, + 0.020402343943715096, + 0.03818538039922714, + 0.027913589030504227, + -0.016550421714782715, + -0.07631940394639969, + -0.007665323559194803, + 0.057367946952581406, + -0.0005834056064486504, + 0.04090740531682968, + -0.01648622378706932, + -0.037517715245485306, + -0.05808697268366814, + 0.017076851800084114, + -0.014380506239831448, + 0.028427179902791977, + -0.0700022503733635, + -0.04784086346626282, + -0.021121367812156677, + 0.01588275469839573, + -0.020492222160100937, + 0.025859231129288673, + -0.018617618829011917, + -0.009713261388242245, + 0.03913551941514015, + 0.021480880677700043, + 0.024511059746146202, + -0.018848735839128494, + 0.022366823628544807, + 0.03625942021608353, + -0.011395267210900784, + -0.08376644551753998, + 0.06620168685913086, + 0.06902643293142319, + -0.022199906408786774, + -0.028529897332191467, + -0.07215932756662369, + -0.041908904910087585, + 0.01619090884923935, + -0.002417080570012331, + -0.06496907025575638, + -0.026552578434348106, + -0.051538705825805664, + 0.04920187592506409, + -0.01205651368945837, + 0.0333833172917366, + 0.09157300740480423, + 0.056340768933296204, + 0.00040344861918129027, + 0.010689081624150276, + -0.030044985935091972, + 0.04678800329566002, + 0.027528397738933563, + -0.04018837958574295, + -0.05613533407449722, + -0.009989315643906593, + 0.06034676730632782, + -0.06548266112804413, + 0.02401030994951725, + 0.01578003726899624, + 0.05962774157524109, + 0.0012767513981088996, + 0.04894508048892021, + 0.0224310215562582, + 0.00987375807017088, + 0.015086691826581955, + 0.025319961830973625, + -0.0022565838880836964, + -0.025846391916275024, + -0.019798874855041504, + 0.04527291655540466, + -0.0007727917400188744, + 0.004105505999177694, + -0.02288041263818741, + 0.011260449886322021, + 0.04986954107880592, + 0.004079826641827822, + 0.043680787086486816, + -0.03849353268742561, + -0.001243849634192884, + -0.05587853863835335, + 0.11514677107334137, + -0.07760337740182877, + -0.04645417258143425, + 0.04822605475783348, + -0.004015627782791853, + 0.0845881924033165, + -0.048713963478803635, + 0.026231583207845688, + 0.0007033768924884498, + -0.030738331377506256, + -0.028247423470020294, + -0.02285473234951496, + 0.05025473237037659, + -0.041703466325998306, + -0.025923430919647217, + -0.018848735839128494, + -0.025499718263745308, + -0.014688660390675068, + 0.05146167054772377, + -0.026578256860375404, + -0.024035988375544548, + -0.03954639285802841, + -0.006044306326657534, + -0.007145314011722803, + -0.010188331827521324, + 0.034179382026195526, + 0.09866054356098175, + 0.016986973583698273, + 0.03402530401945114, + -0.008788800798356533, + -0.013700000010430813, + 0.0240231491625309, + -0.014239269308745861, + -0.044836364686489105, + -0.12192615121603012, + 0.09768472611904144, + 0.0657394602894783, + -0.03017338365316391, + -0.023984629660844803, + 0.0459662601351738, + -0.019593439996242523, + -0.08402324467897415, + 0.09116213768720627, + -0.052052296698093414, + -0.009559184312820435, + 0.011896017007529736, + 0.057367946952581406, + -0.10282061994075775, + -0.013802718371152878, + 0.1012284904718399, + -0.05608397349715233, + 0.07657619565725327, + 0.04375782608985901, + 0.023316964507102966, + -0.022097188979387283, + 0.031149202957749367, + -0.021262604743242264, + 0.017295125871896744, + 0.03934095799922943, + -0.07554901391267776, + 0.0344361774623394, + -0.04339831322431564, + 0.0015038542915135622, + -0.028478538617491722, + 0.02942867949604988, + 0.0020383084192872047, + 0.08207160234451294, + -0.018733177334070206, + -0.006220852956175804, + -0.05469728261232376, + 0.02660393714904785, + -0.05418369174003601, + 0.013456044718623161, + -0.037004124373197556, + 0.0928569808602333, + 0.04460524767637253, + 0.03389690816402435, + -0.03880168870091438, + 0.031149202957749367, + 0.006464807782322168, + 0.04185754433274269, + 0.016216589137911797, + 0.006606045179069042, + 0.02263645827770233, + 0.020119868218898773, + 0.0007832240080460906, + 0.01111279334872961, + -0.06301743537187576, + -0.003177835140377283, + 0.013789878226816654, + 0.052155014127492905, + -0.011966635473072529, + -0.04612033814191818, + 0.05097375810146332, + 0.03592558577656746, + 0.020813215523958206, + 0.06240112707018852, + -0.11915276944637299, + -0.03869897127151489, + -0.030044985935091972, + -0.031174883246421814, + 0.04737863317131996, + -0.03916120156645775, + -0.027733832597732544, + 0.01471433974802494, + 0.0031810449436306953, + 0.05803561583161354, + -0.07113214582204819, + 0.03818538039922714, + 0.016011152416467667, + -0.010207591578364372, + 0.018553420901298523, + 0.043269917368888855, + 0.08576944470405579, + 0.08053083717823029, + -0.05962774157524109, + 0.004371930845081806, + -0.04424573481082916, + -0.02234114333987236, + -0.04663392901420593, + -0.03102080710232258, + 0.017603280022740364, + -0.028247423470020294, + -0.047558389604091644, + -0.003845501458272338, + -0.027297282591462135, + 0.02465229667723179, + -0.035566072911024094, + 0.03600262477993965, + 0.01466298010200262, + 0.07708978652954102, + -0.03977750614285469, + -0.06358238309621811, + 0.04039381444454193, + 0.039828866720199585, + 0.025435520336031914, + -0.008506326004862785, + -0.004805271979421377, + 0.010271790437400341, + -0.027939269319176674, + -0.08299606293439865, + 0.012178490869700909, + -0.020363824442029, + 0.02507600747048855, + -0.028273101896047592, + 0.06214433163404465, + -0.025717994198203087, + -0.0397004671394825, + 0.07400824874639511, + 0.005521087441593409, + 0.017808716744184494, + 0.01963195949792862, + 0.016370665282011032, + 0.025538237765431404, + -0.008461386896669865, + -0.013077273033559322, + -0.04365510866045952, + -0.007434207946062088, + -0.06312014907598495, + 0.02078753523528576, + 0.04319287836551666, + -0.012692080810666084, + -0.10384780168533325, + -0.018514901399612427, + 0.03985454514622688, + 0.004590206313878298, + 0.004930459428578615, + -0.004246743395924568, + -0.06502043455839157, + 0.02986522950232029, + 0.034179382026195526, + 0.01670449785888195, + -0.04637713357806206, + 0.019978631287813187, + 0.05659756436944008, + -0.1044641062617302, + -0.003469939110800624, + 0.028478538617491722, + -0.03561743348836899, + -0.13137619197368622, + -0.010977976024150848, + 0.01701265200972557, + -0.022110028192400932, + -0.0002898972015827894, + 0.031688474118709564, + 0.12439137697219849, + 0.013725679367780685, + -0.07482998818159103, + 0.06841012090444565, + 0.0678451731801033, + -0.013430365361273289, + -0.005681584123522043, + 0.010528584942221642, + -0.034102343022823334, + -0.005289971828460693, + -0.06738294661045074, + 0.04866260662674904, + 0.0036272259894758463, + -0.05962774157524109, + 0.011343908496201038, + -0.03903280198574066, + 0.10569672286510468, + -0.026706654578447342, + 0.0344618558883667, + -0.05469728261232376, + 0.0015086692292243242, + 0.001863366924226284, + 0.054748643189668655, + -0.029402999207377434, + 0.007646063808351755, + -0.028452858328819275, + 0.03415370360016823, + -0.08058219403028488, + 0.020928772166371346, + -0.043988943099975586, + 0.03998294472694397, + -0.0038840207271277905, + 0.04249953106045723, + 0.03215070441365242, + 0.03685004636645317, + -0.04884236305952072, + -0.0049336692318320274, + 0.08936457335948944, + -0.018810216337442398 + ] + }, + { + "id": "7c6bf43f-fd6a-4e65-824c-5c1616f03729", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "martinsabrina", + "reviewDate": "2022-01-20T13:22:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a04576d8-e07f-4718-b6c8-7ddca61dd56a", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "lindsaysimon", + "reviewDate": "2022-08-10T12:03:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dd20c7f4-c255-4cc5-9652-cafd2481449f", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelly68", + "reviewDate": "2022-03-14T04:10:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1fd09af6-2574-465c-a1d5-0cfe6458280e", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "fpatrick", + "reviewDate": "2022-12-07T11:21:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c9be030e-92b4-474a-b87d-cbab830bdabe", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "ytapia", + "reviewDate": "2022-01-26T05:12:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4e7f7efc-61db-4370-903d-1f349485067c", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "uwood", + "reviewDate": "2022-04-14T17:16:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bcc230eb-b14b-4015-a0fe-7eaa7bf7c547", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "ygarcia", + "reviewDate": "2022-08-12T07:55:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "721a745f-3c06-4b36-b454-97b70988fb89", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "dannymills", + "reviewDate": "2021-08-20T04:09:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "75261fcc-3c4f-49aa-b604-2495200ea307", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda57", + "reviewDate": "2022-07-27T22:53:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4047e3aa-e891-433d-8bee-fef3ffefaf37", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "norriswillie", + "reviewDate": "2021-01-21T07:48:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f08c9037-b122-43a2-ab2a-bbdbca3d2911", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaronflores", + "reviewDate": "2021-09-17T12:08:43", + "stars": 4, + "verifiedUser": true + }, + { + "id": "746c0b1b-1b03-4e26-9ce5-23aa02c60055", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "james43", + "reviewDate": "2022-06-25T13:00:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b6a655fb-1fe5-49e5-be99-bc02b0ea770a", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "jerry17", + "reviewDate": "2022-05-23T23:41:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0da8b69b-249d-4f9b-a8c9-03bb21d94231", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "zmartin", + "reviewDate": "2021-01-12T09:52:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "47993109-5cac-4909-a528-f8987b89d3e3", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashley47", + "reviewDate": "2021-04-24T02:32:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e5777390-a119-4867-a8f9-fede2ebccdf1", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcclainryan", + "reviewDate": "2022-05-06T22:21:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bf141540-2159-4ab2-965d-31e65c17f69a", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "denise70", + "reviewDate": "2022-11-01T05:32:21", + "stars": 4, + "verifiedUser": true + }, + { + "id": "b17252ec-7309-40bd-bc84-86f85e465e67", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "wdouglas", + "reviewDate": "2022-08-10T16:26:33", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f7e65505-45d3-46c6-9178-82a0ea7733f5", + "productId": "28f95f5c-7aee-4352-9dce-38825bede227", + "category": "Electronics", + "docType": "customerRating", + "userName": "freyclifford", + "reviewDate": "2022-12-28T02:54:42", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aca86620-8f01-4988-b161-06a3ea591156", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "product", + "name": "Premium TV Ultra (Black)", + "description": "This Premium TV Ultra (Black) is rated 4.1 out of 5 by 6.\n\nRated 5 out of 5 by Dan from I had", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-01-28T16:52:40", + "price": 847.09, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2022-02-09T11:50:44", + "newPrice": 781.13 + }, + { + "priceDate": "2022-07-30T11:50:44", + "newPrice": 810.65 + }, + { + "priceDate": "2023-10-23T11:50:44", + "newPrice": 847.09 + } + ], + "descriptionVector": [ + -0.011959809809923172, + 0.03778212517499924, + -0.0038280452135950327, + 0.009281310252845287, + 0.022447293624281883, + 0.04541556537151337, + -0.08453410863876343, + 0.05110100656747818, + -0.0033750219736248255, + 0.09137476235628128, + 0.02575436234474182, + -0.044894587248563766, + -0.0508744940161705, + 0.04969663545489311, + 0.051780540496110916, + 0.03730645030736923, + 0.005832672584801912, + -0.00681233499199152, + 0.047250308096408844, + 0.014995064586400986, + 0.030239291489124298, + -0.03384082391858101, + -0.05128221586346626, + 0.0349733829498291, + -0.01685245893895626, + -0.007112462539225817, + -0.010113740339875221, + 0.021212806925177574, + 0.12367530912160873, + -0.024236734956502914, + 0.011891855858266354, + 0.024236734956502914, + -0.01638811081647873, + 0.04120245203375816, + -0.010351577773690224, + -0.004462277516722679, + 0.011172682046890259, + 0.022390667349100113, + 0.018845761194825172, + 0.05187114328145981, + 0.010176030918955803, + 0.01929878443479538, + 0.006699079181998968, + 0.02500687539577484, + 0.05372853949666023, + -0.06863299757242203, + 0.06233597919344902, + -0.005390974693000317, + 0.057307422161102295, + -0.010697008110582829, + -0.030035430565476418, + -0.00733897415921092, + -0.07714983075857162, + 0.030782919377088547, + -0.01420227438211441, + 0.0009619662305340171, + 0.012265600264072418, + 0.08865661919116974, + 0.05862119048833847, + -0.014564692974090576, + 0.002392528345808387, + 0.003711957950145006, + 0.0012111288961023092, + 0.012741274200379848, + -0.001018594135530293, + -0.016116296872496605, + -0.01473457645624876, + -0.013783227652311325, + 0.0201595276594162, + 0.05332081764936447, + 0.0508744940161705, + -0.007486206479370594, + 0.05005905404686928, + -0.01133690308779478, + 0.029854221269488335, + 0.05499700456857681, + 0.07085281610488892, + -0.005671282764524221, + -0.04260682314634323, + 0.04833756387233734, + -0.015821831300854683, + 0.019774457439780235, + 0.012378856539726257, + 0.04910770431160927, + 0.09074052423238754, + 0.05309430882334709, + -0.02333069033920765, + -0.10646042972803116, + -0.0487905889749527, + 0.07959616184234619, + 0.005563689861446619, + 0.07923374325037003, + 0.027702363207936287, + -0.07175885885953903, + 0.0667756050825119, + 0.04792984202504158, + -0.07429578900337219, + 0.03171161562204361, + -0.03375022113323212, + 0.03574352338910103, + 0.03331984952092171, + -0.09001568704843521, + 0.004184800665825605, + -0.06722863018512726, + 0.059436630457639694, + -0.008788648061454296, + -0.004198957700282335, + -0.01468927413225174, + -0.008137427270412445, + -0.10002750158309937, + -0.049560725688934326, + -0.051916446536779404, + 0.01733945868909359, + -0.04697849601507187, + -0.010617729276418686, + -0.015878459438681602, + -0.033772870898246765, + -0.07243839651346207, + 0.023489248007535934, + -0.024349991232156754, + -0.014122994616627693, + 0.02831394411623478, + -0.04142896085977554, + 0.04620835557579994, + 0.0689954161643982, + 0.03311598673462868, + -0.06401216238737106, + 0.11253093928098679, + 0.07375215739011765, + -0.052958399057388306, + -0.042244404554367065, + 0.045528821647167206, + 0.011789926327764988, + 0.011155693791806698, + -0.02183571271598339, + 0.03411263972520828, + -0.08113643527030945, + -0.018449366092681885, + 0.051463425159454346, + -0.0688595101237297, + -0.007259695325046778, + -0.056673187762498856, + 0.07656090706586838, + -0.01288850698620081, + 0.012741274200379848, + 0.04928891360759735, + 0.009955182671546936, + -0.01473457645624876, + 0.00625171884894371, + -0.011036775074899197, + 0.06659439206123352, + -0.07592666894197464, + -0.056129563599824905, + -0.028812268748879433, + 0.05268658697605133, + 0.04652547091245651, + -0.028019478544592857, + 0.03703463822603226, + -0.09273383021354675, + 0.04052291437983513, + -0.05789635330438614, + -0.05658258497714996, + -0.040024589747190475, + -0.0038846731185913086, + 0.0679081603884697, + 0.053502026945352554, + -0.022911643609404564, + 0.05875709652900696, + -0.030805571004748344, + 0.014723250642418861, + 0.005620317999273539, + -0.07588136941194534, + 0.009881566278636456, + -0.0270228274166584, + 0.01467794831842184, + 0.0044849286787211895, + -0.011687995865941048, + 0.06709272414445877, + 0.013194297440350056, + -0.005232416559010744, + -0.03119063936173916, + 0.028766967356204987, + -0.04910770431160927, + -0.032934777438640594, + 0.04446421563625336, + 0.014224925078451633, + 0.05880239978432655, + 0.014893134124577045, + -0.019661203026771545, + 0.04541556537151337, + 0.0001278551499126479, + 0.01604834385216236, + 0.002964469837024808, + -0.03495073318481445, + -0.0079505555331707, + 0.016320157796144485, + 0.04965133219957352, + -0.009989159181714058, + -0.07782936841249466, + -0.031734269112348557, + 0.014542041346430779, + 0.05363793298602104, + 0.10800070315599442, + -0.03932240605354309, + -0.030397849157452583, + -0.07719513773918152, + 0.05594835430383682, + 0.0932321548461914, + -0.0020924003329128027, + 0.03671752288937569, + -0.04462277516722679, + -0.035154592245817184, + -0.009626740589737892, + 0.026660408824682236, + 0.030148686841130257, + 0.06342323124408722, + -0.014338181354105473, + -0.0026997344102710485, + -0.0699014663696289, + -0.09250731766223907, + 0.10383289307355881, + -0.005289044696837664, + 0.016025692224502563, + 0.0033297198824584484, + -0.019899040460586548, + -0.031122686341404915, + 0.0180303193628788, + -0.012537414208054543, + 0.02103159762918949, + 0.0593913272023201, + -0.056446678936481476, + -0.05776044353842735, + -0.04111184552311897, + -0.0011757365427911282, + 0.003544905688613653, + 0.03166631609201431, + -0.021824387833476067, + -0.008533822372555733, + -0.030896175652742386, + 0.07017327845096588, + -0.08861131966114044, + 0.036332450807094574, + -0.010091089643537998, + 0.006750043947249651, + 0.045551471412181854, + -0.07855420559644699, + 0.11678935587406158, + -0.011144367977976799, + -0.0784182995557785, + -0.04326370730996132, + -0.06106751412153244, + -0.05472518876194954, + -0.033229243010282516, + 0.07837299257516861, + -0.001232364447787404, + 0.013216949068009853, + 0.07266490161418915, + 0.020555922761559486, + 0.014168296940624714, + 0.01825683005154133, + -0.03159835934638977, + 0.01531218085438013, + 0.025709060952067375, + -0.006563172210007906, + 0.01065736822783947, + 0.06020677089691162, + 0.024938922375440598, + -0.06523532420396805, + -0.0028993478044867516, + -0.02166583016514778, + -0.029605058953166008, + 0.007695729844272137, + 0.013681297190487385, + 0.004371672868728638, + 0.014542041346430779, + 0.006381962914019823, + -0.02797417715191841, + 0.015300855040550232, + -0.00251286244019866, + 0.02448589913547039, + 0.10292685031890869, + 0.01303573977202177, + 0.015425436198711395, + -0.012310902588069439, + 0.06274370104074478, + -0.06401216238737106, + 0.025301339104771614, + 0.012922483496367931, + 0.044781334698200226, + -0.004411312285810709, + -0.006778358016163111, + 0.09413819760084152, + 0.06414806842803955, + -0.06704741716384888, + 0.0424482636153698, + 0.04462277516722679, + 0.009202031418681145, + -0.03372757136821747, + 0.04550617188215256, + 0.00853948574513197, + 0.03628715127706528, + 0.041406311094760895, + -0.029333245009183884, + -0.05078388750553131, + -0.021914992481470108, + 0.04675198346376419, + -0.009224683046340942, + -0.049877844750881195, + -0.013454785570502281, + -0.026252688840031624, + -0.016003040596842766, + -0.04217645153403282, + -0.03973012417554855, + -0.06278900057077408, + 0.0036213533021509647, + -0.016807157546281815, + -0.06500881165266037, + 0.04729561135172844, + -0.010895205661654472, + -0.0014652465470135212, + -0.04527965933084488, + -0.03857491537928581, + -0.04009254276752472, + 0.08811299502849579, + 0.03712524101138115, + -0.00953613594174385, + -0.09386638551950455, + -0.039798080921173096, + 0.010459170676767826, + 0.018641900271177292, + 0.026977526023983955, + 0.00620075361803174, + 0.006042195484042168, + 0.05925542116165161, + 0.10646042972803116, + -0.00832429900765419, + -0.01060074009001255, + -0.05060267820954323, + 0.03911854326725006, + 0.0201368760317564, + 0.06840648502111435, + 0.0036921382416039705, + 0.06161114200949669, + -0.07497531920671463, + -0.04577798396348953, + -0.07497531920671463, + -0.022447293624281883, + -0.04217645153403282, + -0.022401992231607437, + 0.014711924828588963, + 0.0009329444146715105, + -0.015742553398013115, + 0.012231623753905296, + 0.07438639551401138, + 0.03277622163295746, + -0.003972446080297232, + -0.024010224267840385, + 0.022447293624281883, + -0.008414903655648232, + -0.002115051494911313, + -0.009830601513385773, + -0.010374228470027447, + -0.016841134056448936, + 0.06378564983606339, + -0.04439626261591911, + 0.03798598796129227, + -0.02500687539577484, + 0.04611775279045105, + -0.056763794273138046, + -0.0006922759348526597, + 0.05458928272128105, + -0.05694500356912613, + -0.0657336488366127, + 0.04419240355491638, + -0.048835888504981995, + 0.05119160935282707, + -0.015470738522708416, + 0.0072427066043019295, + 0.0403190553188324, + 0.017769830301404, + -0.11497726291418076, + 0.03775947540998459, + -0.016920411959290504, + 0.030669663101434708, + 0.053184911608695984, + 0.04482663422822952, + -0.053502026945352554, + -0.03010338544845581, + -0.06410276889801025, + -0.007027520798146725, + -0.04253887012600899, + -0.012865856289863586, + -0.012661995366215706, + 0.014247576706111431, + 0.06224537268280983, + -0.007803322747349739, + -0.0055693527683615685, + 0.12575921416282654, + 0.031439803540706635, + -0.011404856108129025, + 0.039503615349531174, + 0.0033636963926255703, + 0.01256006583571434, + -0.03914119675755501, + -0.03311598673462868, + -0.062200069427490234, + 0.0042357658967375755, + 0.06727392971515656, + -0.0291520357131958, + -0.056763794273138046, + -0.049153007566928864, + -0.05853058397769928, + -0.00016068163677118719, + 0.0019154383335262537, + 0.07239308953285217, + 0.07574546337127686, + 0.07832769304513931, + -0.024735061451792717, + -0.0006381255225278437, + -0.03234585002064705, + 0.05259598046541214, + 0.07379746437072754, + 0.030171338468790054, + -0.042561519891023636, + 0.04317310079932213, + 0.07479411363601685, + 0.00944553129374981, + -0.005957253742963076, + -0.07166825234889984, + -0.017362110316753387, + 0.04149691388010979, + -0.07397866994142532, + 0.022481271997094154, + 0.005399468820542097, + -0.011699321679770947, + 0.023240085691213608, + -0.031349197030067444, + 0.04305984452366829, + -0.09255261719226837, + 0.01754331961274147, + -0.008301648311316967, + -0.06528063118457794, + 0.04888119176030159, + 0.03764621913433075, + -0.06804406642913818, + 0.008182729594409466, + 0.01356804184615612, + 0.06310611963272095, + 0.040772080421447754, + 0.01647871546447277, + 0.03481482341885567, + -0.025935571640729904, + -0.018845761194825172, + -0.024938922375440598, + -0.03796333447098732, + 0.022458620369434357, + 0.06763634830713272, + 0.08208778500556946, + -0.03456566110253334, + -0.03053375706076622, + -0.06093160808086395, + 0.06210946664214134, + -0.03390878066420555, + 0.021326063200831413, + -0.04174607992172241, + -0.03517724201083183, + -0.08258610963821411, + -0.005515556316822767, + -0.007004869636148214, + 0.02071448042988777, + -0.016659924760460854, + -0.11262153834104538, + 0.021156178787350655, + -0.024010224267840385, + -0.002879528095945716, + 0.031847525388002396, + 0.03309333696961403, + -0.0036071965005248785, + 0.03696668520569801, + 0.004824696108698845, + -0.028064781799912453, + 0.028336593881249428, + 0.06419337540864944, + 0.03010338544845581, + 0.0562201663851738, + 0.01414564624428749, + -0.00038011468132026494, + 0.03984338045120239, + 0.0014291462721303105, + 0.04283333569765091, + 0.01569725014269352, + 0.001955077750608325, + -0.04217645153403282, + -0.055631235241889954, + -0.0450531467795372, + -6.011182904330781e-06, + -0.029627710580825806, + 0.019853737205266953, + -0.02364780567586422, + 0.005008736625313759, + 0.06292490661144257, + 0.06410276889801025, + -0.05526881664991379, + 0.006693416275084019, + 0.05780574679374695, + -0.06958434730768204, + 0.0029729639645665884, + -0.043626125901937485, + 0.016727877780795097, + 0.03664956986904144, + 0.061656445264816284, + 0.026479199528694153 + ] + }, + { + "id": "d70d4770-8fd1-49f9-bb7b-e1499c7b6d7f", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "customerRating", + "userName": "burtonbill", + "reviewDate": "2022-03-01T16:30:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b4db11c1-60bf-463b-85b1-bc0f234c1407", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "customerRating", + "userName": "kirbysteven", + "reviewDate": "2022-02-09T11:50:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "83ad4b98-a945-4fe2-aec9-0acbf3f464b5", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "customerRating", + "userName": "teresa13", + "reviewDate": "2022-07-30T17:00:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9f6100b5-5e0b-4573-a61c-91a36b995d72", + "productId": "aca86620-8f01-4988-b161-06a3ea591156", + "category": "Media", + "docType": "customerRating", + "userName": "katierodriguez", + "reviewDate": "2022-04-02T09:29:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand 3000 (Silver)", + "description": "This Luxe Stand 3000 (Silver) is a set featuring a single-coated stainless steel blade, two large, single-coated diamond-coated stainless steel studs, a single-coated stainless steel shaft under tension at 100 mm, a single-coated stainless steel handguard with a silver ring, polished nickel-plated steel shaft with nickel plating and nickel rings, and", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-02-01T04:40:17", + "price": 424.89, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-02-08T08:57:45", + "newPrice": 393.57 + }, + { + "priceDate": "2021-09-05T08:57:45", + "newPrice": 463.78 + }, + { + "priceDate": "2022-04-02T08:57:45", + "newPrice": 449.76 + }, + { + "priceDate": "2022-10-28T08:57:45", + "newPrice": 393.12 + }, + { + "priceDate": "2024-08-16T08:57:45", + "newPrice": 424.89 + } + ], + "descriptionVector": [ + 0.019918367266654968, + -0.0059503307566046715, + -0.04977604001760483, + 0.06207427382469177, + 0.04638342186808586, + -0.03201781585812569, + -0.023801323026418686, + 0.03784887492656708, + 0.016234198585152626, + 0.02146889828145504, + 0.04102944955229759, + 0.02729995734989643, + -0.013729493133723736, + -0.05650826171040535, + 0.06477776169776917, + 0.037716347724199295, + -0.031885288655757904, + -0.027989082038402557, + 0.01932200975716114, + -0.043308865278959274, + 0.083278127014637, + -0.035728488117456436, + -0.026849376037716866, + 0.013305416330695152, + -0.03742479532957077, + -0.059900879859924316, + 0.027830053120851517, + -0.01480293832719326, + 0.003660977352410555, + 0.017731720581650734, + -0.0046350290067493916, + 0.040260810405015945, + 0.01884492300450802, + 0.04900740087032318, + -0.03389965742826462, + -0.034429751336574554, + 0.06027194485068321, + 0.04739060625433922, + 0.04916642978787422, + -0.02014365792274475, + -0.03800790384411812, + -0.03026849776506424, + -0.05650826171040535, + -0.01283495593816042, + 0.058098550885915756, + -0.033767133951187134, + -0.03246839717030525, + 0.0015066330088302493, + 0.009793528355658054, + 0.026107240468263626, + 0.020117152482271194, + 0.039677705615758896, + -0.0424342043697834, + -0.02788306400179863, + 0.010091708041727543, + -0.047019537538290024, + 0.03726576641201973, + 0.2675926089286804, + 0.04603886231780052, + 0.03397917002439499, + -0.0018006707541644573, + -0.04566779360175133, + 0.01726788654923439, + 0.03784887492656708, + -0.0001922634255606681, + 0.03594052791595459, + 0.011900661513209343, + -0.0394921712577343, + 0.0036013415083289146, + 0.019772591069340706, + -0.07103289663791656, + 0.004237457178533077, + -0.0035185138694941998, + 0.030162477865815163, + 0.023297730833292007, + -0.02279413864016533, + 0.02936733327805996, + -0.0039227125234901905, + 0.050968755036592484, + -0.015743859112262726, + 0.04924594238400459, + 0.012430757284164429, + -0.04712555930018425, + -0.0506506972014904, + 0.04333537071943283, + 0.019706329330801964, + -0.00789180863648653, + -0.1040048897266388, + -0.014007793739438057, + 0.057197388261556625, + -0.02105807512998581, + 0.0668981522321701, + -0.04177158698439598, + -0.03506586700677872, + -0.03914760798215866, + 0.03477431461215019, + 0.016313713043928146, + 0.023629041388630867, + 0.021919481456279755, + -0.01981234736740589, + 0.02055448293685913, + 0.05229399725794792, + -0.019123222678899765, + 0.015280025079846382, + 0.013769250363111496, + 0.05033263936638832, + 0.01810278743505478, + 0.0582575798034668, + -0.015651091933250427, + -0.1364467740058899, + 0.022555595263838768, + -0.01758594438433647, + 0.004996157251298428, + -0.06037796661257744, + -0.010800711810588837, + 0.017970263957977295, + -0.0217074416577816, + -0.036470621824264526, + 0.03530441224575043, + -0.05428185686469078, + 0.0218002088367939, + 0.03954518213868141, + 0.04201012849807739, + -0.05361923575401306, + -0.005019349046051502, + 0.013795755803585052, + -0.004426303785294294, + -0.04020780324935913, + -0.0031822342425584793, + -0.026438551023602486, + -0.05059769004583359, + 0.020912297070026398, + 0.0065831332467496395, + 0.009820033796131611, + -0.08396724611520767, + 0.08508045226335526, + -0.04057886824011803, + -0.034509267657995224, + -0.01339818350970745, + 0.10077130049467087, + -0.03718625381588936, + -0.08746588230133057, + 0.013298789970576763, + 0.030003448948264122, + 0.026769861578941345, + -0.03856450319290161, + -0.08571656793355942, + -0.0006762868724763393, + -0.0567203015089035, + 0.0412679947912693, + 0.0633465051651001, + -0.055554088205099106, + -0.048715848475694656, + -0.05157836526632309, + 0.0340321809053421, + -0.01744016632437706, + -0.09329694509506226, + -0.01914972811937332, + -0.006950887385755777, + 0.015730606392025948, + 0.04553527012467384, + 0.030957622453570366, + -0.022436324506998062, + 0.0527975894510746, + -0.00549312261864543, + 0.04776167497038841, + 0.004333537071943283, + 0.030321506783366203, + -0.0498555526137352, + 0.036391109228134155, + -0.009926052764058113, + -0.012072942219674587, + -0.002708460669964552, + -0.07532668113708496, + 0.021270113065838814, + -0.025153066962957382, + 0.05502399429678917, + 0.04214265197515488, + 0.0527975894510746, + 0.024808505550026894, + 0.036894701421260834, + 0.042646244168281555, + -0.07712900638580322, + -0.06573193520307541, + 0.05107477679848671, + 0.024410933256149292, + 0.02608073689043522, + 0.05486496537923813, + -0.024039866402745247, + -0.005496435798704624, + -0.03331654891371727, + -0.03620557487010956, + 0.015412548556923866, + 0.04646293818950653, + -0.036815185099840164, + -0.02649156004190445, + 0.020050890743732452, + -0.02434467151761055, + 0.037212759256362915, + 0.03201781585812569, + -0.023390498012304306, + 0.026173504069447517, + 0.03745130077004433, + -0.005353972315788269, + -0.03514538332819939, + -0.024702485650777817, + -0.04566779360175133, + -0.007858676835894585, + -0.027405977249145508, + 0.03241538628935814, + -0.04927244782447815, + 0.011132021434605122, + -0.05059769004583359, + 0.07750007510185242, + 0.008660447783768177, + 0.050279632210731506, + -0.022343557327985764, + 0.004870259668678045, + 0.02574942633509636, + -0.052347008138895035, + -0.01859312690794468, + -0.08184686303138733, + -0.04686050862073898, + 0.002947004046291113, + -0.06202126294374466, + -0.015240267850458622, + 0.04686050862073898, + 0.07113891839981079, + 0.05937078222632408, + 0.0026869254652410746, + 0.006656021345406771, + -0.05017361044883728, + 0.025139816105365753, + 0.08767792582511902, + -0.019295504316687584, + 0.006964139640331268, + -0.04731109365820885, + -0.09499324858188629, + 0.031461212784051895, + -0.02113758958876133, + -0.030003448948264122, + -0.06594397872686386, + 0.024530204012989998, + 0.004336850252002478, + -0.04137401282787323, + -0.008753214962780476, + 0.10994196683168411, + -0.10358081012964249, + -0.044369056820869446, + -0.027167433872818947, + 0.019467785954475403, + 0.028810732066631317, + -0.021945985034108162, + 0.060908060520887375, + 0.053089141845703125, + -0.03199131041765213, + -0.038935571908950806, + 0.04055236279964447, + 0.024477194994688034, + -0.0018155797151848674, + -0.00730207609012723, + -0.06695115566253662, + -0.015995655208826065, + 0.06085504963994026, + -0.028969760984182358, + 0.009839911945164204, + -0.02426515705883503, + -0.08068065345287323, + -0.052930112928152084, + -0.02048822119832039, + -0.058840684592723846, + -0.03268043324351311, + 0.08428530395030975, + 0.055077001452445984, + -0.023165207356214523, + -0.015757111832499504, + -0.022727876901626587, + 0.09144160896539688, + -0.049139924347400665, + -0.09239578247070312, + 0.032865967601537704, + -0.031143154948949814, + 0.023960351943969727, + -0.023138701915740967, + 0.0907524824142456, + -0.07416046410799026, + 0.034509267657995224, + 0.0012697462225332856, + 0.030613059177994728, + 0.004519070498645306, + -0.004552201833575964, + 0.040101781487464905, + 0.05666729062795639, + -0.051207300275564194, + 0.023549526929855347, + -0.0037338656838983297, + 0.02237006276845932, + 0.04646293818950653, + -0.03686819598078728, + 0.006006653420627117, + 0.0004692180373240262, + 0.013285537250339985, + -0.015333034098148346, + -0.045031677931547165, + -0.020289434120059013, + 0.09001034498214722, + 0.015333034098148346, + -0.025934960693120956, + -0.034906838089227676, + -0.01948103867471218, + 0.06658009439706802, + -0.009515227749943733, + -0.061332136392593384, + -0.01078083273023367, + 0.021005064249038696, + -0.05428185686469078, + 0.0602189376950264, + 0.013782503083348274, + 0.024874767288565636, + 0.014630656689405441, + 0.004572080448269844, + 0.013689735904335976, + -0.03888256102800369, + -0.013702988624572754, + 0.07400143891572952, + -0.03954518213868141, + 0.006798484828323126, + -0.016989585012197495, + -0.07267619669437408, + 0.012178962118923664, + -0.013444566167891026, + 0.011536220088601112, + -0.03726576641201973, + -0.041745081543922424, + 0.006566567346453667, + 0.01908346638083458, + -0.017970263957977295, + -0.0393066368997097, + 0.038113921880722046, + -0.030957622453570366, + 0.0350128598511219, + 0.10745051503181458, + -0.08550452440977097, + 0.001055222935974598, + 0.07765910029411316, + -0.028598694130778313, + -0.005300962831825018, + 0.004817249719053507, + 0.03922712430357933, + 0.07803016901016235, + 0.0013832199620082974, + -0.03567547723650932, + 0.007958070375025272, + -0.030401021242141724, + 0.08020356297492981, + -0.02772403508424759, + 0.05873466655611992, + -0.03495984897017479, + -0.10002916306257248, + 0.0019481037743389606, + -0.02071351185441017, + 0.007765910122543573, + 0.020607491955161095, + 0.07967346906661987, + 0.01685706153512001, + -0.026292774826288223, + -0.01734740100800991, + 0.023377245292067528, + -0.04508468881249428, + 0.06366456300020218, + -0.06615601480007172, + -0.08810199797153473, + 0.012437383644282818, + 0.03371412307024002, + 0.04587983340024948, + -0.039598193019628525, + 0.07458454370498657, + 0.03495984897017479, + -0.014498133212327957, + 0.03148771822452545, + -0.041082460433244705, + 0.06620902568101883, + 0.04381245747208595, + 0.007427974138408899, + 0.03594052791595459, + 0.002259535249322653, + -0.0527975894510746, + 0.05661427974700928, + -0.06143815815448761, + -0.03209732845425606, + 0.011854277923703194, + -0.013451192528009415, + 0.022065257653594017, + 0.06673911958932877, + 0.01990511454641819, + -0.048318274319171906, + -0.018208807334303856, + -0.016300460323691368, + -0.01687031425535679, + -0.004538949113339186, + -0.0371597483754158, + 0.0602189376950264, + -0.05963582918047905, + 0.046834006905555725, + 0.039094600826501846, + -0.011768137104809284, + 0.03132868930697441, + 0.0453762412071228, + 0.017254633828997612, + -0.10135440528392792, + 0.018977446481585503, + -0.07511463761329651, + 0.00917729176580906, + 0.020103901624679565, + 0.05057118460536003, + 0.018526865169405937, + 0.06212728098034859, + 0.005731665994971991, + 0.005291023291647434, + -0.09711363911628723, + 0.05772748216986656, + -0.011807894334197044, + -0.03686819598078728, + 0.027618015184998512, + -0.07405444979667664, + 0.018195554614067078, + -0.08725384622812271, + -0.03543693572282791, + 0.10093032568693161, + -0.04285828396677971, + -0.02279413864016533, + -0.080574631690979, + 0.02878422662615776, + 0.02309894561767578, + -0.01636672206223011, + -0.08285404741764069, + 0.04063187912106514, + 0.026531318202614784, + 0.02237006276845932, + 0.049723029136657715, + -0.012516898103058338, + -0.048159245401620865, + 0.028095101937651634, + 0.04640992730855942, + 0.03790188208222389, + -0.04121498391032219, + -0.04768215864896774, + -0.011761510744690895, + 0.0299239344894886, + 0.028254130855202675, + 0.017135361209511757, + 0.021773703396320343, + -0.05576612800359726, + -0.007010523229837418, + 0.021773703396320343, + -0.036232080310583115, + -0.021018316969275475, + 0.030719079077243805, + 0.05385778099298477, + 0.01611492596566677, + -0.04818575084209442, + 0.07887832820415497, + 0.08820801973342896, + -0.0289432555437088, + 0.024556709453463554, + 0.028095101937651634, + -0.0038332585245370865, + -0.006367781199514866, + 0.005678656045347452, + 0.05889369547367096, + 0.006811737082898617, + -0.017069099470973015, + -0.05444088578224182, + 0.02968539111316204, + -0.0488748773932457, + -0.036656156182289124, + 0.03904158994555473, + -0.04662196710705757, + -0.06557291001081467, + 0.01653900370001793, + -0.025471124798059464, + 0.030878107994794846, + 0.040764402598142624, + 0.06573193520307541, + 0.027273453772068024, + -0.03933314234018326, + 0.014100560918450356, + -0.016088422387838364, + -0.01908346638083458, + 0.032362375408411026, + 0.0072954497300088406, + -0.006904503796249628, + -0.06313446909189224, + -0.015836626291275024, + -0.06785232573747635, + 0.0031242549885064363, + 0.040923431515693665, + 0.03511887788772583, + -0.04357391223311424, + 0.04426303878426552, + 0.027830053120851517, + -0.06191524490714073, + -0.01783773861825466, + 0.05666729062795639, + 0.07590978592634201, + 0.061067089438438416, + -0.05862864851951599, + -0.006079541519284248, + 0.006606324575841427, + -0.04619789123535156, + 0.05356622859835625, + -0.013702988624572754 + ] + }, + { + "id": "79f7be44-1a6f-4f91-9cc8-b890691800bd", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "susan13", + "reviewDate": "2022-03-06T06:19:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7f2f7f86-8d8c-4534-9fb6-81cd27593582", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "perezalan", + "reviewDate": "2021-12-09T18:39:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b65364d0-7634-4fdf-aacf-3c555db67c40", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "crawfordedwin", + "reviewDate": "2021-05-10T03:43:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "79219e3f-8a28-457e-be2b-55f4f23d35ce", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "mendezedward", + "reviewDate": "2021-09-04T21:50:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "554869b8-ed83-4c40-a858-e3206f696601", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "tracygarcia", + "reviewDate": "2022-10-28T19:27:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8f02533c-79d6-43d0-8814-b7efaf9afa68", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "mitchellanthony", + "reviewDate": "2022-06-16T08:20:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9b29e167-1f9a-44c2-a860-f68dde423749", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "ryan03", + "reviewDate": "2021-11-02T04:13:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9a943b5a-e233-4e88-af38-5087288be33e", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "kennedynicholas", + "reviewDate": "2021-02-08T08:57:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "758ebe2f-130a-4171-9564-d28acd2b6296", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "carrillomelvin", + "reviewDate": "2021-06-19T22:26:36", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6c4bb86c-94a1-4417-be42-6d3884c46a1b", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "alvaradojennifer", + "reviewDate": "2021-03-31T09:29:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4b278fc0-70ea-4aa8-8f9a-260de3d69088", + "productId": "6b8eaa1c-0f86-4216-b5ec-1261a451251c", + "category": "Accessory", + "docType": "customerRating", + "userName": "joannerogers", + "reviewDate": "2022-04-27T06:16:25", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "product", + "name": "Awesome TV Ultra (Steel)", + "description": "This Awesome TV Ultra (Steel) is designed to be used at home for special occasions, and is available on Blu-ray with disc and DVD release in 2013. It is the only new digital Ultra package for the show.\n\nPrice\n", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-11-20T10:14:55", + "price": 728.91, + "stock": 30, + "priceHistory": [ + { + "priceDate": "2021-01-14T02:41:35", + "newPrice": 714.52 + }, + { + "priceDate": "2022-01-14T02:41:35", + "newPrice": 695.94 + }, + { + "priceDate": "2022-08-26T02:41:35", + "newPrice": 728.91 + } + ], + "descriptionVector": [ + -0.039762161672115326, + -0.005566330160945654, + -0.03613613173365593, + 0.00592024065554142, + 0.012082630768418312, + -0.045648254454135895, + -0.032808128744363785, + 0.07112981379032135, + 0.012455168180167675, + 0.12576863169670105, + 0.0438104011118412, + -0.05677470564842224, + 0.05150951072573662, + 0.018068065866827965, + 0.04400908946990967, + -0.07217291742563248, + -0.023494694381952286, + 0.010797376744449139, + -0.006137554068118334, + -0.041749026626348495, + 0.07515321671962738, + -0.005721554160118103, + 0.003061015857383609, + -0.00026717918808571994, + -0.05448981001973152, + -0.006174807902425528, + -0.045176371932029724, + 0.00822065956890583, + 0.03705505654215813, + -0.04351237043738365, + 0.023407768458127975, + -0.017993558198213577, + -0.0029958218801766634, + 0.027170397341251373, + -0.006370390299707651, + -0.0008102689171209931, + -2.5636201826273464e-05, + 0.05210556834936142, + -0.007258270867168903, + -0.04646783694624901, + 0.007059584371745586, + -0.013274750672280788, + -0.002542567905038595, + 0.04748610407114029, + 0.014913915656507015, + -0.05096312239766121, + -0.010449674911797047, + 0.024885499849915504, + 0.0020815529860556126, + 0.03986150398850441, + -0.005317972041666508, + -0.02067582681775093, + -0.024376366287469864, + 0.004728120751678944, + 0.005091344937682152, + -0.02635081484913826, + 0.02355678379535675, + 0.1639164686203003, + 0.02473648637533188, + 0.024848246946930885, + -0.030448725447058678, + -0.06705673784017563, + 0.02580442652106285, + 0.05737076327204704, + -0.030995113775134087, + -0.01834126003086567, + -0.009437615051865578, + 0.061741869896650314, + -0.04542472958564758, + 0.04905076324939728, + 0.02888406813144684, + 0.04631882160902023, + 0.06939130276441574, + 0.08414378762245178, + -0.035018518567085266, + 0.021619588136672974, + 0.02689720317721367, + 0.03131797909736633, + 0.01944645307958126, + -0.013485855422914028, + 0.0016096722101792693, + 0.07003703713417053, + -0.04661685228347778, + 0.005997852887958288, + 0.08379608392715454, + 0.0654175728559494, + -0.012740780599415302, + -0.12219227850437164, + 0.005113076418638229, + 0.05091344937682152, + 0.003272120375186205, + 0.06457315385341644, + 0.05083893984556198, + -0.07132849842309952, + 0.009058868512511253, + 0.05359571799635887, + -0.08627966791391373, + 0.02478615753352642, + -0.061741869896650314, + 0.02109803631901741, + 0.07520288974046707, + -0.11265531927347183, + -0.0034925383515655994, + -0.10530391335487366, + 0.012001913972198963, + -0.0030439412221312523, + 0.012355824932456017, + 0.09373041987419128, + -0.028561202809214592, + -0.12507323920726776, + -0.021830692887306213, + -0.009332062676548958, + 0.04689004644751549, + 0.004827464465051889, + 0.10028707981109619, + 0.0426182821393013, + -0.04152550548315048, + -0.05826485529541969, + -0.006016479339450598, + -0.054291121661663055, + -0.023743052035570145, + -0.04269279167056084, + -0.00798471923917532, + 0.02541946992278099, + -0.0037502101622521877, + 0.007841913029551506, + -0.047461267560720444, + 0.09447549283504486, + 0.029703650623559952, + 0.019595468416810036, + -0.06879524886608124, + 0.01719881221652031, + 0.029927173629403114, + 0.016577916219830513, + -0.036011952906847, + 0.00563462870195508, + -0.01630472205579281, + -0.02875988930463791, + 0.06228825822472572, + 0.044754162430763245, + -0.03966281935572624, + 0.022439170628786087, + 0.03938962519168854, + 0.02232741005718708, + -0.07977268099784851, + 0.04160001501441002, + -0.010449674911797047, + -0.007295524701476097, + 0.01716155745089054, + -0.0018766573630273342, + 0.07927596569061279, + -0.11533758789300919, + -0.07291799038648605, + 0.0015848362818360329, + 0.03159117326140404, + 0.08021973073482513, + -0.042047057300806046, + 0.016490990296006203, + -0.0690436065196991, + 0.07723943144083023, + -0.012877377681434155, + 0.015137437731027603, + -0.05816551297903061, + 0.02063857391476631, + -0.0013357019051909447, + -0.019421618431806564, + 0.0918428972363472, + 0.05059058219194412, + -0.04892658442258835, + 0.016503408551216125, + 0.08007071167230606, + -0.03919093683362007, + 0.04728741943836212, + -0.027890635654330254, + 0.006094091571867466, + 0.06348037719726562, + 0.08498820662498474, + 0.011008481495082378, + -0.027443591505289078, + -0.07068277150392532, + -0.0816105306148529, + 0.05553291365504265, + -0.040358223021030426, + 0.000320149352774024, + 0.010878092609345913, + 0.044083595275878906, + 0.01160454098135233, + 0.009276182390749454, + -0.035564906895160675, + 0.04147583246231079, + 0.006786390207707882, + -0.035614579916000366, + -0.005435942206531763, + -0.07430879771709442, + -0.014814571477472782, + -0.011132660321891308, + -0.020241200923919678, + -9.730600140755996e-05, + -0.03404992073774338, + -0.019086334854364395, + -0.01702496036887169, + 0.014516541734337807, + 0.09368074685335159, + -0.015683826059103012, + -0.04008502885699272, + -0.0408301018178463, + 0.018018394708633423, + 0.05131082236766815, + 0.039166100323200226, + 0.023060066625475883, + -0.05434079468250275, + -0.01957063376903534, + -0.03402508422732353, + 0.032261740416288376, + 0.0402340441942215, + 0.019334692507982254, + -0.014653138816356659, + -0.038321685045957565, + -0.05617864429950714, + -0.023954156786203384, + 0.018751051276922226, + -0.03919093683362007, + 0.03275845944881439, + -0.03377672657370567, + 0.012765616178512573, + -0.01677660271525383, + 0.05294998735189438, + -0.008021973073482513, + 0.02965397946536541, + -0.05190688371658325, + -0.06581494957208633, + -0.05751977860927582, + -0.029256606474518776, + -0.005488718394190073, + 0.028114158660173416, + -0.005156538914889097, + 0.0068422709591686726, + -0.034223772585392, + -0.05091344937682152, + 0.013212661258876324, + -0.05816551297903061, + 0.0037191654555499554, + -0.02224048413336277, + -0.03042389079928398, + 0.03941446170210838, + -0.020228782668709755, + 0.10172755271196365, + 0.05563225597143173, + -0.02905791997909546, + -0.002801791997626424, + 0.010015048086643219, + -0.011554869823157787, + -0.007456957828253508, + 0.05503619834780693, + 0.015224362723529339, + 0.04346270114183426, + 0.012511048465967178, + 0.053446702659130096, + 0.060053035616874695, + -0.010617316700518131, + -0.09765447676181793, + 0.009710809215903282, + -0.01609361730515957, + 0.02469923160970211, + -0.018788304179906845, + 0.08429280668497086, + -0.0032255533151328564, + -0.06591428816318512, + 0.03993601351976395, + 0.0618412122130394, + -0.020141856744885445, + 0.04400908946990967, + -0.038321685045957565, + 0.02164442464709282, + -0.06382808089256287, + -0.03787463903427124, + -0.012492422014474869, + 0.02427702210843563, + 0.0028825083281844854, + -0.05290031433105469, + 0.0447293296456337, + -0.043735895305871964, + -0.022302573546767235, + -0.026400486007332802, + 0.056277986615896225, + -0.03263428062200546, + 0.002798687433823943, + -0.016751766204833984, + 0.08086545765399933, + -0.046368490904569626, + -0.0038805983494967222, + -0.015733497217297554, + 0.06521888822317123, + 0.01990591734647751, + 0.03750210255384445, + 0.010586271993815899, + 0.038098160177469254, + -0.07540157437324524, + 0.003672598162665963, + -0.03983667120337486, + -0.004250031430274248, + 0.01071665994822979, + -0.014218511991202831, + -0.04219607263803482, + -0.05434079468250275, + 0.01719881221652031, + 0.0588112436234951, + 0.04902592673897743, + -0.0029709860682487488, + -0.042220909148454666, + 0.0014117616228759289, + -0.049249447882175446, + -0.028362516313791275, + -0.037129562348127365, + 0.06919261813163757, + -0.02299797721207142, + -0.004467344842851162, + 0.030647411942481995, + 0.007630808278918266, + 0.047212909907102585, + -0.005339703056961298, + 0.028536368161439896, + -0.05578127130866051, + 0.027095889672636986, + 0.02928144298493862, + -0.01783212460577488, + 0.026301143690943718, + -0.09502188116312027, + 0.004638091195374727, + -0.025096604600548744, + -0.03283296525478363, + 0.056327659636735916, + 0.022389499470591545, + 0.07117948681116104, + 0.0894089862704277, + -0.07639501243829727, + 0.023283589631319046, + 0.0028794039972126484, + 0.025059351697564125, + 0.011387227103114128, + 0.11255597323179245, + 0.001544478116557002, + 0.019806573167443275, + 0.026996545493602753, + -0.03241075575351715, + -0.01105815265327692, + 0.009226510301232338, + -0.020303290337324142, + -0.008357256650924683, + 0.05096312239766121, + 0.0015561198815703392, + -0.03680669888854027, + -0.029132427647709846, + 0.015696244314312935, + 0.05210556834936142, + 0.018403349444270134, + 0.01914842426776886, + 0.005668777972459793, + -0.01779487170279026, + -0.030746756121516228, + 0.011759764514863491, + -0.010412421077489853, + -0.029703650623559952, + 0.005224837455898523, + -0.07773614674806595, + 0.11613233387470245, + 0.059208616614341736, + 0.0816105306148529, + -0.04701422527432442, + 0.00823928602039814, + 0.06223858892917633, + -0.03429827839136124, + -0.07872957736253738, + 0.07838187366724014, + 0.0029663292225450277, + 0.02274961955845356, + 0.054837509989738464, + -0.008121316321194172, + 0.03787463903427124, + 0.032808128744363785, + -0.06894426047801971, + 0.025531232357025146, + -0.03757660835981369, + 0.03387606889009476, + 0.040556907653808594, + 0.05851321294903755, + -0.08806785196065903, + -0.03822233900427818, + -0.06164252758026123, + -0.03680669888854027, + -0.038197506219148636, + -0.02508418634533882, + -0.020613737404346466, + 0.026797858998179436, + -0.014131586998701096, + 0.03169051930308342, + 0.05419177934527397, + 0.11205925792455673, + 0.04130198433995247, + 0.031963713467121124, + 0.03914126753807068, + 0.02898341231048107, + 0.06050007790327072, + -0.04842986539006233, + -0.039762161672115326, + -0.03504335507750511, + -0.009089913219213486, + 0.000862268905621022, + 0.01126925740391016, + -0.0510127916932106, + -0.008947107009589672, + -0.04902592673897743, + 0.008512480184435844, + -0.008878808468580246, + -0.008375883102416992, + 0.03735308721661568, + 0.08096480369567871, + 0.013038810342550278, + 0.04428228363394737, + -0.045474402606487274, + 0.03996085003018379, + 0.09527023881673813, + -0.03655834123492241, + -0.01635439321398735, + 0.03762628138065338, + 0.012852541171014309, + 0.006674629170447588, + -0.029604308307170868, + 0.0002889105526264757, + -0.028437023982405663, + 0.09576695412397385, + -0.06268563121557236, + -0.003551523433998227, + -0.016764184460043907, + 0.023358097299933434, + 0.022215649485588074, + 0.039041921496391296, + 0.0444064624607563, + -0.03474532440304756, + -0.009195465594530106, + -0.024264605715870857, + 0.0288095623254776, + -0.03407475724816322, + 0.03876872733235359, + -0.010406211949884892, + -0.0309206061065197, + 0.016168124973773956, + -0.00305015011690557, + 0.04612013325095177, + 0.025481561198830605, + -0.028586039319634438, + 0.022190812975168228, + 0.001589493011124432, + -0.0036136130802333355, + 0.03414926305413246, + 0.05036706104874611, + 0.020650992169976234, + 0.014938751235604286, + 0.003945792093873024, + 0.04885207489132881, + 0.033578041940927505, + 0.11325138062238693, + 0.005864359904080629, + -0.0416993573307991, + -0.0798720270395279, + -0.008214450441300869, + -0.04977099969983101, + 0.05029255524277687, + -0.008251704275608063, + 0.0630333349108696, + -0.03377672657370567, + -0.056427001953125, + -0.07709041237831116, + 0.022190812975168228, + 0.014044661074876785, + -0.02152024582028389, + 0.022016962990164757, + -0.06506986916065216, + 0.019508544355630875, + 0.009623883292078972, + 0.0678514838218689, + -0.01673934794962406, + 0.04919977858662605, + 0.0035204787272959948, + 0.004302807152271271, + -0.023705799132585526, + -0.040730759501457214, + 0.07470617443323135, + -0.07733877003192902, + 0.03635965287685394, + 0.02826317399740219, + 0.0021157022565603256, + -0.034720487892627716, + -0.006792599335312843, + -0.07063309848308563, + 0.02736908383667469, + -0.022811708971858025, + 0.025233201682567596, + -0.04947297275066376, + -0.007450748700648546, + -0.056029628962278366, + 0.03842102736234665, + -0.12894763052463531, + 0.011169914156198502, + -0.003467702539637685, + -0.0166524238884449, + 0.05049123987555504, + 0.03606162220239639, + 0.01046209316700697, + 0.041103295981884, + 0.024376366287469864, + 0.07401076704263687 + ] + }, + { + "id": "d0506a00-fa71-49fd-b563-6681dae3b198", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "matthew48", + "reviewDate": "2021-01-19T15:26:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cf90fd76-3bea-4764-bcab-1a4c50e5a2d9", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "georgetanya", + "reviewDate": "2021-09-26T10:30:39", + "stars": 5, + "verifiedUser": true + }, + { + "id": "6c478e43-6e87-4d66-9cc4-c0b882d27fb1", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "trichardson", + "reviewDate": "2021-01-14T02:41:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a9d6b63f-9574-4e57-a172-bd0832866967", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "ashley41", + "reviewDate": "2021-03-06T06:15:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3a8d48d9-2f56-4a96-bf58-28122c841bb9", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "jaredshaw", + "reviewDate": "2021-12-15T23:23:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "d312162e-1e8d-4137-b312-b32948beb08b", + "productId": "0644cd3b-0864-4a2a-bebd-613999a2cff1", + "category": "Media", + "docType": "customerRating", + "userName": "jerryjordan", + "reviewDate": "2022-01-14T20:30:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Pro (Steel)", + "description": "This Premium Stand Pro (Steel) is the latest piece in the $50 billion and a decade-old trend that's changing the game for teams and manufacturers.\n\nThe $", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-01-04T05:55:11", + "price": 527.07, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-02-23T20:17:30", + "newPrice": 512.69 + }, + { + "priceDate": "2021-09-23T20:17:30", + "newPrice": 573.77 + }, + { + "priceDate": "2022-04-23T20:17:30", + "newPrice": 549.37 + }, + { + "priceDate": "2023-10-18T20:17:30", + "newPrice": 527.07 + } + ], + "descriptionVector": [ + 0.037405673414468765, + -0.01601439341902733, + -0.03970174491405487, + 0.009445876814424992, + -0.012998979538679123, + -0.031331244856119156, + -0.03452831134200096, + 0.07498572766780853, + -0.006750168744474649, + 0.059320107102394104, + 0.015578430145978928, + -0.007549435365945101, + 0.07335813343524933, + -0.06946352124214172, + 0.013362282887101173, + -0.012766465544700623, + 0.018426725640892982, + -0.030255869030952454, + 0.0006725646089762449, + -0.07260245829820633, + 0.0573728010058403, + -0.06562704592943192, + -0.0008024454000405967, + -0.013551199808716774, + 0.0064994897693395615, + -0.024283168837428093, + 0.04362541809678078, + -0.00432330509647727, + -0.004025396890938282, + 0.030139612033963203, + 0.018557514995336533, + 0.052809715270996094, + 0.013042575679719448, + 0.0010853675194084644, + 0.024297701194882393, + 0.06946352124214172, + -0.030837154015898705, + 0.024399425834417343, + 0.029994292184710503, + 0.06208120658993721, + -0.00583101250231266, + 0.004693874157965183, + -0.005296957213431597, + 0.03516772389411926, + 0.06213933601975441, + 0.00808712374418974, + 0.0031062401831150055, + 0.04554365947842598, + -0.042579106986522675, + -0.04545646533370018, + -0.019255056977272034, + 0.04307319596409798, + 0.029703648760914803, + 0.0582737922668457, + -0.010928153060376644, + -0.08696019649505615, + 0.053274743258953094, + 0.1772918403148651, + -0.008043527603149414, + 0.025213224813342094, + -0.0286137405782938, + -0.024428490549325943, + -0.005155269056558609, + -0.019167862832546234, + 0.0015022576553747058, + -0.006459526252001524, + -0.0005272434209473431, + 0.005485874600708485, + 0.05025206506252289, + 0.08335623145103455, + -0.041968755424022675, + 0.004900956992059946, + 0.07266058772802353, + 0.029936162754893303, + 0.0144013287499547, + 0.0019055239390581846, + 0.08114735037088394, + 0.0292822178453207, + 0.019487570971250534, + -0.01755479909479618, + 0.02352749928832054, + 0.06859159469604492, + -0.021638324484229088, + -0.014721035957336426, + 0.0564427450299263, + -0.026186875998973846, + 0.06469698995351791, + -0.12985900044441223, + -0.019255056977272034, + 0.03505146875977516, + -0.015098870731890202, + 0.03769631311297417, + -0.0011216978309676051, + -0.05071709305047989, + -0.012664740905165672, + 0.07922910898923874, + -0.08556511253118515, + 0.042055949568748474, + -0.002959102625027299, + 0.0030789924785494804, + -0.00549677386879921, + -0.037115029990673065, + -0.015592962503433228, + -0.004014497622847557, + 0.01740947738289833, + 0.020286837592720985, + -0.0005631195963360369, + 0.05086241289973259, + -0.0145539166405797, + -0.07742712646722794, + 0.053478192538022995, + -0.007956334389746189, + 0.030895283445715904, + 0.04365448281168938, + -0.030226806178689003, + 0.041852500289678574, + 0.010274207219481468, + -0.042579106986522675, + 0.1103278398513794, + -0.0024995242711156607, + -0.05219936743378639, + 0.012860924005508423, + -0.06237185001373291, + -0.03351106494665146, + 0.027073336765170097, + -0.029253153130412102, + -0.04554365947842598, + -0.0026012491434812546, + 0.009772849269211292, + -0.03970174491405487, + -0.08184488862752914, + 0.03859730437397957, + -0.02310606837272644, + 0.05228656157851219, + -0.0021289552096277475, + 0.06818469613790512, + 0.015767348930239677, + -0.0145539166405797, + 0.011727419681847095, + 0.03275539353489876, + -0.0568787083029747, + -0.043451033532619476, + 0.009082573466002941, + 0.0281632449477911, + -0.026724565774202347, + -0.015941733494400978, + 0.013071640394628048, + 0.060162968933582306, + 0.014038026332855225, + -0.00874833483248949, + 0.0549604706466198, + -0.06708025932312012, + 0.006924554239958525, + -0.037056900560855865, + 0.06277874857187271, + 0.018063422292470932, + -0.08329810202121735, + 0.0059291040524840355, + -0.03420860692858696, + 0.055338304489851, + 0.04586336389183998, + 0.036184974014759064, + -0.07510198652744293, + -0.006953618489205837, + -0.03824853524565697, + -0.010441326536238194, + 0.06667336076498032, + -0.0034931579139083624, + 0.005576700437813997, + 0.03551649674773216, + 0.012701070867478848, + -0.04722938314080238, + -0.04045741632580757, + -0.08411189913749695, + 0.037812571972608566, + -0.025910766795277596, + 0.04438108950853348, + 0.004610314499586821, + 0.09068041294813156, + 0.009053509682416916, + -0.004599415231496096, + 0.0578668937087059, + -0.0038292130921036005, + -0.021449405699968338, + 0.019778212532401085, + 0.1099209412932396, + 0.06522014737129211, + 0.06033735349774361, + 0.018150614574551582, + -0.024690069258213043, + 0.03365638479590416, + 0.02349843457341194, + 0.03775444254279137, + -0.0137473838403821, + -0.009525802917778492, + -0.04499143734574318, + 0.03330761566758156, + 0.015026209875941277, + -0.026433922350406647, + -0.08457692712545395, + -0.014968081377446651, + 0.06091864034533501, + 0.04054461047053337, + -0.013427676633000374, + 0.036330293864011765, + -0.005849177483469248, + 0.020780928432941437, + 0.036533743143081665, + 0.018325001001358032, + 0.01082642748951912, + -0.0578959584236145, + -0.06789405643939972, + 0.018150614574551582, + 0.004708406049758196, + 0.024166911840438843, + 0.06632458418607712, + 0.011698354966938496, + 0.0018419459229335189, + 0.01684272475540638, + -0.025038840249180794, + 0.03455737605690956, + 0.01781637594103813, + 0.01623237505555153, + -0.031912531703710556, + -0.012279639951884747, + -0.0017829092685133219, + 0.004141653422266245, + -0.00564572773873806, + 0.02845388650894165, + 0.06696400046348572, + -0.07655519992113113, + -0.042375657707452774, + -0.024748196825385094, + 0.0575471855700016, + 0.0563846193253994, + -0.03502240404486656, + -0.018310468643903732, + -0.031476568430662155, + -0.037521928548812866, + -0.0558614619076252, + -0.025358546525239944, + 0.029907098039984703, + -0.047810669988393784, + -0.03513866290450096, + -0.0576343797147274, + 0.03397609293460846, + 0.06144179403781891, + -0.0279597956687212, + -0.06853346526622772, + -0.05298410356044769, + -0.0008428628207184374, + -0.07731086760759354, + -0.03455737605690956, + 0.019342249259352684, + 0.07138176262378693, + 0.0570530965924263, + 0.03359825536608696, + 0.002501340815797448, + 0.08010103553533554, + 0.027160529047250748, + -0.05028112977743149, + 0.0572565458714962, + -0.042782556265592575, + 0.03199972212314606, + -0.014859090559184551, + 0.09690016508102417, + -0.0588550791144371, + 0.00215801945887506, + -0.05019393563270569, + 0.059756070375442505, + -0.04368354752659798, + -0.02304793894290924, + 0.04307319596409798, + -0.009038977324962616, + 0.115791916847229, + 0.06876598298549652, + -0.020592011511325836, + -0.01631956920027733, + -0.0014949915930628777, + -0.0051262048073112965, + 0.06190682202577591, + -0.021405810490250587, + 0.06399944424629211, + 0.06062799692153931, + 0.018223276361823082, + -0.04124215245246887, + 0.04063180088996887, + -0.037173159420490265, + 0.004592149518430233, + -0.02237946167588234, + -0.06429009139537811, + 0.07306748628616333, + 0.027145996689796448, + 0.037783507257699966, + 0.09474940598011017, + 0.02852654829621315, + 0.02280089259147644, + 0.03478989005088806, + 0.01109527237713337, + -0.06591768562793732, + 0.058767884969711304, + 0.03583620488643646, + -0.013805512338876724, + -0.006107122637331486, + -0.03255194425582886, + 0.0578087642788887, + -0.02775634452700615, + 0.020126983523368835, + -0.015287788584828377, + -0.04333477467298508, + 0.06754528731107712, + -0.07260245829820633, + -0.08475131541490555, + 0.06277874857187271, + 0.026027023792266846, + 0.0552801787853241, + 0.04722938314080238, + -0.05094960704445839, + 0.03292977809906006, + -0.0288607869297266, + -0.036359358578920364, + 0.0071607013233006, + -0.10422435402870178, + -0.018266871571540833, + 0.04086431488394737, + -0.04193969443440437, + -0.01140771247446537, + 0.06591768562793732, + 0.0274511706084013, + -0.0022488452959805727, + -0.04420670121908188, + -0.031650952994823456, + 0.01633410155773163, + -0.06423196196556091, + 0.041997820138931274, + -0.013696521520614624, + 0.024937113747000694, + -0.0559195913374424, + -0.05286784470081329, + -0.0006362342974171042, + 0.048915110528469086, + 0.021493002772331238, + -0.07423005998134613, + -0.026855353266000748, + 0.07033544778823853, + -0.08742522448301315, + 0.07242807745933533, + -0.1099209412932396, + -0.0019981663208454847, + 0.018470322713255882, + 0.001540404511615634, + -0.08225178718566895, + 0.030197741463780403, + -0.06103489547967911, + 0.1133505180478096, + -0.0038110478781163692, + 0.08062419295310974, + -0.07033544778823853, + 0.019400376826524734, + -0.042055949568748474, + 0.008966316469013691, + -0.06684774160385132, + 0.001180734601803124, + 0.08010103553533554, + 0.035894330590963364, + 0.04191062971949577, + 0.008799197152256966, + 0.04635745659470558, + -0.018702836707234383, + 0.010317803360521793, + -0.012919052504003048, + -0.024413958191871643, + 0.08969223499298096, + 0.01729322038590908, + 0.0034531946294009686, + 0.05289690941572189, + -0.018426725640892982, + 0.0569659024477005, + -0.04624119773507118, + 0.03999238833785057, + -0.042201269418001175, + 0.048944175243377686, + 0.02259744331240654, + 0.03941110521554947, + 0.05234468728303909, + -0.0018873588414862752, + 0.03324948623776436, + 0.004715672228485346, + -0.04423576593399048, + 0.017947165295481682, + -0.021609259769320488, + -0.052838779985904694, + -0.10271301120519638, + 0.005522205028682947, + 0.07004480808973312, + -0.053507257252931595, + -0.0071933981962502, + -0.00215801945887506, + -0.020679203793406487, + -0.007927270606160164, + 0.014953549019992352, + 0.059349171817302704, + -0.037144094705581665, + -0.02753836289048195, + 0.002428680192679167, + -0.03211598098278046, + -0.0033605522476136684, + 0.012236043810844421, + 0.02893344685435295, + -0.021507535129785538, + -0.06475511938333511, + -0.1157337874174118, + -0.06789405643939972, + 0.06899849325418472, + 0.047868795692920685, + 0.04098057374358177, + 0.07236994802951813, + 0.004345103166997433, + 0.07527637481689453, + -0.08091483265161514, + 0.048304758965969086, + 0.0042288461700081825, + -0.047432832419872284, + -0.006078058388084173, + -0.010426795110106468, + 0.04438108950853348, + -0.021115167066454887, + 0.02351296693086624, + -0.024762729182839394, + 0.024021591991186142, + 0.04141653701663017, + -0.03371451422572136, + -0.003651194740086794, + 0.010078024119138718, + 0.005827379412949085, + -0.024326765909790993, + 0.1125948503613472, + 0.037638187408447266, + 0.04528208076953888, + 0.010535785928368568, + -0.07318374514579773, + 0.007818279787898064, + 0.09579572081565857, + 0.048624467104673386, + -0.06452260166406631, + -0.021623792126774788, + -0.041503727436065674, + -0.03403421863913536, + 0.013064374215900898, + -0.004603048320859671, + -0.0570240318775177, + -0.0288607869297266, + -0.07271871715784073, + 0.019051605835556984, + 0.00409805728122592, + 0.003416864201426506, + 0.01605799049139023, + -0.021158764138817787, + 0.04478798806667328, + 0.049118559807538986, + -0.018252341076731682, + 0.07120738178491592, + 0.09207549691200256, + -0.007927270606160164, + -0.031767211854457855, + 0.014350466430187225, + -0.036562807857990265, + 0.04519488662481308, + 0.005028112791478634, + 0.06341816484928131, + -0.0278871338814497, + 0.01764199137687683, + -0.048827916383743286, + 0.02224867232143879, + -0.009416812099516392, + 0.0009791014017537236, + 0.024254104122519493, + -0.07132363319396973, + -0.042491912841796875, + -0.03307510167360306, + 0.005453177262097597, + 0.006009030621498823, + 0.010230611078441143, + 0.029572859406471252, + -0.07946161925792694, + 0.018048889935016632, + -0.04365448281168938, + -0.03827759996056557, + -0.03473176062107086, + 0.08469318598508835, + 0.01770011894404888, + 0.030110549181699753, + 0.009431344456970692, + -0.019967129454016685, + 0.02272823266685009, + -0.013631126843392849, + 0.04676435515284538, + 0.0015703770332038403, + 0.010325069539248943, + -0.009751050733029842, + -0.015069806016981602, + -0.0577796995639801, + 0.015505770221352577, + 0.0068082972429692745, + -0.007563967257738113, + -0.03577807545661926, + -0.02189990133047104, + -0.030081484466791153, + -0.0038873415905982256, + 0.05237375199794769, + 0.03848104923963547, + 0.03502240404486656 + ] + }, + { + "id": "78d04a61-da52-4f4a-b8dc-8c033ed7d81b", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "schen", + "reviewDate": "2022-04-24T18:00:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ac06b3a4-632a-45a9-b3db-38b767cc1617", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "vasquezmichael", + "reviewDate": "2021-08-06T09:33:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ed36c095-9fbb-4112-bafb-60922048b4dd", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "cramirez", + "reviewDate": "2021-06-28T05:10:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ecd18046-78ac-4ccd-8801-0eeee28b8fa4", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholas52", + "reviewDate": "2022-01-10T16:45:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1f329c03-dfbe-475a-99bd-eb3864da4b52", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamduran", + "reviewDate": "2021-12-11T11:23:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4bc78595-c14f-4bca-a44c-776195fc48e7", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "utaylor", + "reviewDate": "2021-02-23T20:17:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e51021a2-b756-4a03-bbe4-aff3f8544570", + "productId": "0109e433-7ae4-43f2-add8-c656cbb096f0", + "category": "Accessory", + "docType": "customerRating", + "userName": "bushandre", + "reviewDate": "2021-08-12T08:13:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse + (Black)", + "description": "This Premium Mouse + (Black) is not available.\n\nClick here to return to the shopping cart", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-06-27T18:34:00", + "price": 211.53, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-01-01T16:44:56", + "newPrice": 204.39 + }, + { + "priceDate": "2022-12-19T16:44:56", + "newPrice": 221.74 + }, + { + "priceDate": "2023-03-09T16:44:56", + "newPrice": 211.53 + } + ], + "descriptionVector": [ + -0.09421169012784958, + 0.00014172297960612923, + -0.024511096999049187, + 0.03615159913897514, + 0.02197323366999626, + -0.027191391214728355, + -0.0014081256231293082, + 0.0756179615855217, + -0.0012082364410161972, + 0.029185425490140915, + 0.015706265345215797, + 0.06261789053678513, + 0.03594442829489708, + -0.06898844242095947, + 0.018736163154244423, + -0.013582746498286724, + -0.06474140286445618, + -0.016690334305167198, + 0.012385031208395958, + -0.007115080486983061, + 0.04534488171339035, + -0.03954404965043068, + -0.0792434811592102, + 0.011090203188359737, + -0.0455002598464489, + -0.03133483976125717, + -0.038741257041692734, + 0.044179536402225494, + 0.05754216015338898, + 0.019823817536234856, + -0.008901943452656269, + 0.024368664249777794, + 0.06494858115911484, + 0.022801922634243965, + -0.026246165856719017, + -0.0317491851747036, + -0.03309580683708191, + 0.028460321947932243, + 0.05350229889154434, + 0.04612177610397339, + 0.031024081632494926, + 0.023695355281233788, + -0.005010984838008881, + -0.013776971027255058, + -0.04904808849096298, + 0.0260260459035635, + 0.048763226717710495, + -0.005189023446291685, + -0.023022044450044632, + -0.016275988891720772, + 0.03257787600159645, + 0.00913501251488924, + -0.10710818320512772, + 0.01158871129155159, + 0.02082083560526371, + -0.022763079032301903, + 0.019603697583079338, + 0.17765042185783386, + 0.057801127433776855, + -0.008733615279197693, + -0.015771007165312767, + -0.011905944906175137, + 0.02118338830769062, + 0.06904023140668869, + -0.004357096739113331, + 0.015084747225046158, + -0.015317816287279129, + -0.05313974618911743, + 0.07375340908765793, + 0.057438574731349945, + -0.03734284266829491, + -0.025585804134607315, + 0.05376126244664192, + -0.015822799876332283, + 0.05914774909615517, + 0.013789919205009937, + 0.011634030379354954, + 0.02615552768111229, + 0.013239617459475994, + -0.06241071596741676, + -0.006043610163033009, + 0.004651669878512621, + -0.0828172042965889, + 0.00864297803491354, + 0.10897273570299149, + 0.05060188099741936, + 0.041952431201934814, + -0.10855838656425476, + -0.05275129899382591, + 0.0733390673995018, + 0.010889504104852676, + 0.014074781909584999, + 0.04301419109106064, + -0.02609078586101532, + -0.012158435769379139, + -0.031412530690431595, + 0.049384742975234985, + 0.020056886598467827, + -0.02975515089929104, + 0.04148629307746887, + 0.06821154803037643, + -0.06158202514052391, + -0.040579911321401596, + 0.0641716793179512, + 0.043454430997371674, + -0.003405397990718484, + 0.016806868836283684, + -0.05104212462902069, + -0.02985873632133007, + -0.006791373249143362, + 0.011601659469306469, + -0.006147196516394615, + -0.008325744420289993, + 0.009795374237000942, + -0.03379501402378082, + 0.0396217405796051, + -0.08670169115066528, + 0.00356077728793025, + -0.0279941838234663, + 0.012113116681575775, + 0.0018289446597918868, + -0.031542014330625534, + 0.010015495121479034, + 0.04588870704174042, + 0.0289782527834177, + 0.03558187559247017, + 0.025326838716864586, + 0.06867768615484238, + 0.03294042870402336, + -0.09447065740823746, + -0.056972436606884, + 0.04619946703314781, + -0.04314367100596428, + 0.022517060860991478, + -0.03866356611251831, + 0.0128511693328619, + -0.012695789337158203, + 0.006862589158117771, + -0.09384914487600327, + 0.011316797696053982, + -0.04006198048591614, + -0.022180406376719475, + 0.0671238899230957, + 0.024433406069874763, + -0.03643646463751793, + 0.018088748678565025, + 0.0013021115446463227, + 0.04524129256606102, + -0.07033506035804749, + 0.045655637979507446, + 0.05277719348669052, + -0.06292864680290222, + -0.02501607872545719, + -0.05464174598455429, + 0.022568853572010994, + 0.021960284560918808, + -0.039466362446546555, + -0.058785196393728256, + -0.047390710562467575, + 0.0864427238702774, + -0.01852899044752121, + -0.02294435352087021, + 0.00914796069264412, + 0.015071799047291279, + 0.017441334202885628, + 0.054952505975961685, + 0.012572781182825565, + -0.023164475336670876, + -0.027424460276961327, + -0.004816760774701834, + 0.008759512566030025, + -0.06992071866989136, + -0.019979197531938553, + -0.06582906097173691, + 0.049151673913002014, + -0.002803302835673094, + 0.03508984297513962, + 0.018257075920701027, + 0.054330985993146896, + -0.018619628623127937, + 0.009426348842680454, + 0.03726515173912048, + -0.058785196393728256, + -0.022309888154268265, + 0.0664505809545517, + -0.05578119680285454, + 0.021286973729729652, + 0.06111588701605797, + 0.011103151366114616, + -0.009944279678165913, + -0.037990257143974304, + 0.01692340336740017, + 0.0168586615473032, + -0.07665382325649261, + 0.05119750276207924, + 0.0844745859503746, + -0.002230341313406825, + 0.07520361989736557, + -0.01050753053277731, + -0.011433332227170467, + -0.018541937693953514, + 0.04684688150882721, + 0.07970961928367615, + 0.010002546943724155, + -0.08209209889173508, + 0.04700225964188576, + 0.013958247378468513, + 0.027812907472252846, + -0.028538011014461517, + -0.015537937171757221, + -0.014074781909584999, + 0.0442054308950901, + 0.007749546319246292, + -0.017622610554099083, + 0.037860773503780365, + 0.04819350317120552, + 0.024381613358855247, + -0.007891977205872536, + -0.0788809284567833, + -0.047390710562467575, + 0.02304794080555439, + 0.003002382582053542, + -0.05114571005105972, + -0.0379643589258194, + -0.049488332122564316, + -0.03941456601023674, + 0.04298829287290573, + 0.01649611070752144, + 0.07468568533658981, + 0.03035077080130577, + -0.12005646526813507, + -0.04283291473984718, + 0.003945988602936268, + -0.06805616617202759, + -0.044542085379362106, + 0.07406416535377502, + -0.10006431490182877, + 0.006619808729737997, + 0.06960996240377426, + 0.03262966871261597, + -0.008707718923687935, + 0.02835673652589321, + -0.06411989033222198, + 0.04544846713542938, + -0.00728340819478035, + -0.0007611161563545465, + 0.05624733492732048, + -0.04581101983785629, + -0.08421561866998672, + -0.018684370443224907, + -0.044412605464458466, + 0.08628734201192856, + -0.09270969033241272, + 0.041693463921546936, + -0.05676526576280594, + 0.08307617157697678, + 0.04886681213974953, + -0.0013846567599102855, + -0.03384680673480034, + -0.0040625231340527534, + -0.015473196282982826, + 0.03312170132994652, + -0.07919168472290039, + 0.034882668405771255, + 0.014773989096283913, + 0.06878127157688141, + 0.013336729258298874, + -0.09674955904483795, + -0.006525933742523193, + 0.06075333431363106, + -0.013336729258298874, + -0.032267116010189056, + 0.025093769654631615, + -0.05114571005105972, + 0.01977202482521534, + -0.020315853878855705, + -0.06603623181581497, + 0.043065983802080154, + 0.09188099950551987, + 0.03296632319688797, + 0.005519204773008823, + 0.07209602743387222, + 0.02465352788567543, + -0.04733891412615776, + 0.010565797798335552, + -0.0063478946685791016, + -0.009510512463748455, + 0.07142271846532822, + -0.04619946703314781, + -0.02107980102300644, + -0.024200337007641792, + -0.026479234918951988, + 0.030532047152519226, + 0.004716411232948303, + 0.11902060359716415, + 0.023099733516573906, + 0.06085691973567009, + 0.06391271203756332, + 0.03441653028130531, + 0.038352809846401215, + 0.013958247378468513, + -0.020846731960773468, + -0.07551437616348267, + -0.008157417178153992, + 0.05427919328212738, + 0.09892486780881882, + 0.02225809544324875, + -0.04697636514902115, + 0.03716156631708145, + -0.013323781080543995, + 0.09400451928377151, + 0.0016784209292382002, + -0.0484524667263031, + -0.009976650588214397, + 0.033277083188295364, + -0.014916419982910156, + 0.016146507114171982, + 0.04153808578848839, + -0.035866737365722656, + -0.008655926212668419, + -0.1028093546628952, + -0.04327315464615822, + -0.04920346662402153, + 0.009439297020435333, + -0.016547903418540955, + -0.0270101148635149, + -0.07763789594173431, + 0.07805223762989044, + -0.09685314446687698, + -0.010630538687109947, + -0.05676526576280594, + 0.02467942424118519, + 0.04498232901096344, + -0.03617749735713005, + 0.040450431406497955, + -0.05987285077571869, + 0.04161577671766281, + 0.0033762643579393625, + 0.06914382427930832, + -0.008254528976976871, + 0.026828838512301445, + 0.0301177017390728, + 0.0005705336225219071, + 0.0004673520161304623, + -0.06857409328222275, + -0.07447851449251175, + 0.014631557278335094, + -0.05329512432217598, + 0.059303127229213715, + 0.07608409970998764, + 0.0013288173358887434, + -0.05474533140659332, + 0.013828764669597149, + -0.05951030179858208, + 0.05329512432217598, + -0.02713959664106369, + 0.04394646733999252, + -0.014618609100580215, + -0.062151748687028885, + -0.013595695607364178, + -0.015382558107376099, + 0.010844185017049313, + 0.03182687610387802, + 0.006496800109744072, + 0.019124610349535942, + 0.05156005546450615, + 0.009918383322656155, + -0.013000073842704296, + -0.016845714300870895, + -0.0124432984739542, + 0.02210271544754505, + -0.06075333431363106, + -0.05313974618911743, + 0.07515182346105576, + -0.08587300032377243, + 0.014786937274038792, + 0.0340539775788784, + 0.039336878806352615, + -0.009471667930483818, + -0.0019584274850785732, + 0.004726122599095106, + 0.022348733618855476, + -0.03022128902375698, + 0.03288863226771355, + 0.07774148136377335, + -0.027812907472252846, + -0.011854151263833046, + -0.05676526576280594, + -0.01925409398972988, + -0.0024132358375936747, + 0.029392598196864128, + -0.03755001351237297, + -0.06147843971848488, + -0.0026090785395354033, + 0.030195390805602074, + -0.09390093386173248, + 0.01560267899185419, + 0.04663970693945885, + -0.07427134364843369, + 0.008668874390423298, + 0.030324874445796013, + 0.011854151263833046, + -0.019305886700749397, + 0.009860116057097912, + -0.06313581764698029, + -0.06639878451824188, + 0.00521492026746273, + -0.06665775179862976, + -0.011815306730568409, + -0.05339870974421501, + -0.040838878601789474, + 0.023850733414292336, + 0.01790747232735157, + 0.04309187829494476, + 0.020898526534438133, + -0.06660595536231995, + 0.09933920949697495, + -0.024744166061282158, + 0.03198225423693657, + -0.07753431051969528, + 0.04868553578853607, + 0.041589878499507904, + -0.047390710562467575, + 0.07074940949678421, + -0.05179312452673912, + -0.039595842361450195, + -0.07929527014493942, + 0.017635559663176537, + -0.014683350920677185, + -0.05329512432217598, + 0.007134502753615379, + -0.06572547554969788, + 0.004188769031316042, + -0.009012003429234028, + 0.023086784407496452, + 0.06298043578863144, + 0.018438352271914482, + 0.005706954747438431, + 0.03594442829489708, + 0.041460394859313965, + 0.011944789439439774, + -0.04907398670911789, + -0.012255548499524593, + 0.022957302629947662, + -0.0006316333310678601, + 0.062151748687028885, + -0.008254528976976871, + 0.005124282091856003, + 0.05005805566906929, + -0.024498147889971733, + -0.04736481234431267, + 0.0047811525873839855, + 0.010649961419403553, + -0.04089067131280899, + 0.014968212693929672, + -0.024821855127811432, + -0.004939769394695759, + 0.06489678472280502, + -0.012223177589476109, + 0.004907398484647274, + -0.0007704227464273572, + 0.024873647838830948, + 0.02988463267683983, + 0.0006781662232242525, + -0.0069402786903083324, + -0.03837870433926582, + 0.0010569033911451697, + 0.07447851449251175, + 0.0036449411418288946, + 0.02225809544324875, + 0.012631048448383808, + -0.039466362446546555, + 0.03187866881489754, + 0.057438574731349945, + 0.029185425490140915, + 0.01662559248507023, + -0.04684688150882721, + 0.03980301693081856, + -0.04969550296664238, + 0.04775325953960419, + -0.016832765191793442, + 0.05914774909615517, + -0.016457265242934227, + 0.05365767702460289, + -0.007134502753615379, + -0.0289782527834177, + 0.03286273777484894, + 0.023811889812350273, + 0.04278112202882767, + 0.05515967682003975, + 0.008144469000399113, + 0.07354623824357986, + -0.004101368132978678, + 0.01643136888742447, + -0.044930536299943924, + -0.037860773503780365, + 0.057438574731349945, + -0.05438278242945671, + 0.034028083086013794, + 0.04327315464615822, + 0.04798632860183716, + 0.008720667101442814, + -0.02563759684562683, + 0.012326763942837715, + 0.018062852323055267, + -0.011517495848238468, + -0.05339870974421501, + 0.02278897538781166, + 0.002499018330127001, + -0.024381613358855247, + 0.02036764658987522, + 0.04213370755314827 + ] + }, + { + "id": "745af19c-086d-4dbf-b897-c88948e49bf0", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidwilliams", + "reviewDate": "2021-12-25T23:31:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0fcdea2d-8f10-4291-aa50-2b7b3f182956", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "krista30", + "reviewDate": "2022-05-13T13:27:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e06db0e3-98b3-4ee7-8099-defcdfb834a4", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sandraryan", + "reviewDate": "2022-01-06T12:53:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "19bae218-58db-4251-9a05-8e520a8c0353", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harrisnancy", + "reviewDate": "2021-09-28T19:13:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ae6e4d32-d176-43fa-a2b8-a8adc3b7cbe1", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "teresa47", + "reviewDate": "2022-05-19T15:20:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "75a45b0a-a4a3-42eb-98ad-b1f4a84b3ee6", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "townsenddawn", + "reviewDate": "2021-06-22T07:41:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1d7ff3b6-bf4a-439c-ae8f-db52b8910523", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kaitlynmays", + "reviewDate": "2021-01-01T16:44:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "12a78d1a-9440-4629-a110-a2e21c583d21", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "goldenangela", + "reviewDate": "2022-12-19T18:18:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "41e9d3ec-453f-4d6e-a958-b34361fedbed", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sarah87", + "reviewDate": "2021-06-14T22:40:10", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0911da05-839d-440a-bcc9-fb9e126ea161", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "catherine14", + "reviewDate": "2021-11-14T19:04:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "268e7f60-a20e-4b11-a632-6318bcbfdab9", + "productId": "848663ca-25d7-4cef-9da7-633eb84d0a7b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zroth", + "reviewDate": "2022-11-25T21:34:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "459c63e0-e036-4f31-90ec-6c353226a0d1", + "productId": "459c63e0-e036-4f31-90ec-6c353226a0d1", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Mini (Steel)", + "description": "This Amazing Speaker Mini (Steel) is rated 4.7 out of 5 by 22.\n\nRated 1 out of 5 by Steve from We purchased these speaker inserts in two different versions. First edition we got them in both silver and black. The second edition had the gold insert. Although the white insert was fine, the blue was not, and it was noticeable for", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-11-18T05:20:37", + "price": 811.6, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-12-02T08:03:17", + "newPrice": 878.29 + }, + { + "priceDate": "2022-10-14T08:03:17", + "newPrice": 811.6 + } + ], + "descriptionVector": [ + -0.0106655303388834, + -0.02778749354183674, + -0.03794395923614502, + -0.050136685371398926, + -0.012167892418801785, + 0.009014173410832882, + -0.05617096647620201, + 0.015992088243365288, + 0.01560718473047018, + 0.04084935411810875, + -0.02932710573077202, + 0.02741500735282898, + -0.06853751838207245, + -0.01856224425137043, + -0.04017888009548187, + 0.0367768369615078, + -0.012801120057702065, + 0.0022240548860281706, + -0.0033182341139763594, + -0.019332049414515495, + 0.0004302995221223682, + -0.1278373748064041, + -0.00842440314590931, + 0.04263728857040405, + -0.030345235019922256, + -0.058405887335538864, + -0.011665035970509052, + 0.016724644228816032, + 0.022274693474173546, + -0.011683660559356213, + 0.0421903058886528, + 0.010994560085237026, + -0.014576639048755169, + 0.059051528573036194, + -0.03593253344297409, + 0.052495766431093216, + -0.019394131377339363, + -0.06208108738064766, + 0.016588065773248672, + 0.09739280492067337, + -0.009336994960904121, + -0.025800898671150208, + 0.023305239155888557, + -0.018028346821665764, + 0.008902427740395069, + 0.04109767824411392, + -0.05165146291255951, + 0.03282848000526428, + 0.031164705753326416, + 0.03496406599879265, + -0.018512580543756485, + -0.008505108766257763, + -0.01712196320295334, + 0.055872976779937744, + 0.014762882143259048, + -0.05155213549733162, + -0.018984396010637283, + 0.15028589963912964, + 0.04608899727463722, + -0.0635710284113884, + 0.024286121129989624, + -0.012813536450266838, + 0.003111814381554723, + 0.04571651294827461, + -0.07062344253063202, + -0.002363737439736724, + -0.06560729444026947, + 0.02184012532234192, + -0.04546818882226944, + 0.055674318224191666, + 0.056965604424476624, + -0.04348159208893776, + 0.018984396010637283, + 0.07479529082775116, + 0.056766945868730545, + -0.04638698697090149, + 0.07926513254642487, + 0.00575181283056736, + -0.03948356956243515, + 0.00486405286937952, + 0.0272411797195673, + 0.02833380736410618, + -0.03248082473874092, + 0.0161038339138031, + 0.04827425256371498, + -0.025353915989398956, + -0.004817492328584194, + -0.12197691947221756, + -0.00029876522603444755, + 0.04372991621494293, + -0.025999559089541435, + -0.0006394351948983967, + 0.08249334990978241, + 0.026794197037816048, + 0.04228963702917099, + 0.03819228336215019, + -0.04844807833433151, + 0.011683660559356213, + -0.030519062653183937, + -0.04211580753326416, + 0.029426435008645058, + -0.018760904669761658, + -0.014452476985752583, + 0.018673989921808243, + 0.038341280072927475, + 0.06421667337417603, + 0.0395084023475647, + 0.025478078052401543, + 0.04961520433425903, + -0.06297505646944046, + -0.004147016443312168, + -0.027464672923088074, + -0.043059442192316055, + -0.044052738696336746, + 0.06794153898954391, + -0.011429128237068653, + 0.003805570537224412, + -0.01352126058191061, + -0.0562702976167202, + -0.04504603520035744, + -0.03339962288737297, + -0.020896494388580322, + -0.007344192359596491, + 0.01620316319167614, + 0.003588286694139242, + 0.05090649053454399, + -0.0034827489871531725, + 0.04047686979174614, + 0.002391673857346177, + -0.061584439128637314, + -0.020660584792494774, + 0.028209645301103592, + 0.042239971458911896, + -0.04618832841515541, + 0.009672232903540134, + 0.019853530451655388, + -0.027166683226823807, + 0.04427623003721237, + 0.03618085756897926, + -0.00862927082926035, + 0.011304966174066067, + 0.018649158999323845, + 0.012000273913145065, + 0.05393604934215546, + -0.055128004401922226, + -0.04467355087399483, + -0.08249334990978241, + 0.009877100586891174, + -0.028880121186375618, + -0.009970222599804401, + 0.008467860519886017, + -0.02612372115254402, + -0.022026369348168373, + -0.05334006994962692, + 0.054780349135398865, + 0.05597230792045593, + -0.08651620149612427, + 0.046883635222911835, + -0.03791912645101547, + 0.046958133578300476, + 0.009957806207239628, + -0.05934951826930046, + 0.020325347781181335, + -0.04291044548153877, + -0.05110514909029007, + 0.041718490421772, + 0.05636962503194809, + 0.07226238399744034, + -0.14810064435005188, + 0.04045203700661659, + 0.06486231833696365, + -0.05403537675738335, + 0.024906931445002556, + -0.020673001185059547, + -0.000979329110123217, + -0.009113503620028496, + 0.034442584961652756, + -0.05656828731298447, + -0.009107295423746109, + -0.0009630328277125955, + 0.011702285148203373, + 0.07022612541913986, + 0.0408245213329792, + -0.026297548785805702, + 0.03402043506503105, + 0.033076804131269455, + 0.03392110392451286, + -0.03210833668708801, + -0.0046560815535485744, + 0.06108778715133667, + 0.003917316440492868, + -0.0039949179627001286, + -0.022200196981430054, + 0.028731126338243484, + -0.07300736010074615, + -0.009548070840537548, + 0.025353915989398956, + 0.022845840081572533, + -0.03794395923614502, + 1.1143069968966302e-05, + 0.03930974379181862, + 0.044599052518606186, + 0.028159979730844498, + -0.11154729872941971, + 0.04417690262198448, + -0.07514294981956482, + 0.03729831799864769, + 0.12018898129463196, + -0.002992308232933283, + -0.0026058536022901535, + 0.03039490059018135, + 0.013347433879971504, + -0.02550291083753109, + 0.05016151815652847, + 0.04571651294827461, + 0.08959542214870453, + 0.0017584468005225062, + 0.025577407330274582, + -0.027564002200961113, + -0.02830897457897663, + 0.030891548842191696, + -0.026173386722803116, + 0.04775277152657509, + 0.01411723904311657, + -0.07231204956769943, + 0.001685501541942358, + -0.011869903653860092, + -0.07653356343507767, + 0.09118469804525375, + -0.007722887210547924, + 0.002137141302227974, + -0.004870261065661907, + -0.056965604424476624, + -0.007654597982764244, + -0.03128886595368385, + -0.024770352989435196, + -0.0467594750225544, + 0.015632016584277153, + -0.0494910404086113, + 0.042339298874139786, + -0.00546003133058548, + 0.006412976421415806, + -0.056319959461688995, + -0.015296779572963715, + -0.02922777459025383, + -0.04584067314863205, + 0.10230962932109833, + -0.06769321858882904, + -0.05681661143898964, + -0.014377979561686516, + -0.09585319459438324, + -0.03573387488722801, + -0.07340467721223831, + 0.06024348735809326, + -0.0050782328471541405, + 0.03804329037666321, + 0.10310427099466324, + 0.050335343927145004, + 0.06863684952259064, + -0.05383671820163727, + -0.022920336574316025, + 0.017047466710209846, + 0.008585814386606216, + 0.06372002512216568, + -0.05373738706111908, + -0.01606658473610878, + 0.012540379539132118, + -0.040526531636714935, + 0.014291065745055676, + 0.04874606803059578, + -0.03873859718441963, + -0.023255575448274612, + -0.02515525557100773, + -0.02560224011540413, + -0.0453936904668808, + 0.01025579497218132, + -0.09957806020975113, + 0.012472090311348438, + -0.08641687035560608, + -0.02328040637075901, + 0.13777033984661102, + 0.033722445368766785, + 0.03424392640590668, + -0.008089165203273296, + 0.03387144207954407, + -0.03791912645101547, + -0.025068342685699463, + 0.02614855393767357, + -0.015520271845161915, + -0.05497901141643524, + -0.006977913901209831, + 0.027737829834222794, + 0.007077243644744158, + 0.061137452721595764, + 0.025726402178406715, + -0.00012978826998732984, + -0.006406768225133419, + -0.012472090311348438, + -0.03429359197616577, + 0.033076804131269455, + 0.03203384205698967, + 0.022535433992743492, + -0.07852015644311905, + -0.06178309768438339, + 0.019977694377303123, + 0.04184265062212944, + -0.03727348521351814, + 0.03836611285805702, + -0.05562465265393257, + -0.04847291111946106, + 0.0322076678276062, + -0.01753169856965542, + -0.011677452363073826, + -0.03374727815389633, + 0.06064080446958542, + -0.03863926976919174, + -0.0035106854047626257, + 0.020437093451619148, + 0.015917589887976646, + 0.06972947716712952, + -0.03265465050935745, + -0.057313259690999985, + -0.08060608059167862, + 0.08005976676940918, + -0.06764355301856995, + -0.01059724111109972, + 0.017184045165777206, + -0.058306556195020676, + 0.01938171498477459, + 0.058852870017290115, + 0.03158685564994812, + -0.016948135569691658, + 0.03595736622810364, + 0.036801666021347046, + 0.02950093150138855, + -0.011727117002010345, + 0.0005983064766041934, + -0.0363050177693367, + 0.055128004401922226, + 0.02577606774866581, + -0.033623117953538895, + -0.07280869781970978, + 0.056866273283958435, + 0.016227995976805687, + 0.002387017710134387, + -0.09202900528907776, + 0.021206898614764214, + -0.05319107323884964, + 0.026918359100818634, + -0.004705746192485094, + 0.0014426092384383082, + 0.002920915139839053, + 0.003656575921922922, + -0.02696802467107773, + 0.034616414457559586, + -0.01801593042910099, + -0.09103570133447647, + -0.05199911817908287, + 0.1326051950454712, + 0.006105674896389246, + 0.04422656446695328, + -0.040625862777233124, + 0.042165473103523254, + -0.022572683170437813, + 0.04030304029583931, + 0.007077243644744158, + -0.04348159208893776, + 0.04395340755581856, + -0.08159937709569931, + -0.017991099506616592, + -0.038713764399290085, + 0.005934951826930046, + -0.03022107295691967, + 0.041519831866025925, + 0.036007028073072433, + -0.05140313878655434, + 0.04526952654123306, + -0.02023843489587307, + 0.01784210465848446, + 0.024025380611419678, + 0.02263476327061653, + 0.03491440415382385, + -0.0031878638546913862, + -0.019307218492031097, + -0.0006316750659607351, + 0.022982418537139893, + -0.007958794943988323, + 0.06843818724155426, + 0.01297494675964117, + 0.0010165778221562505, + -0.009560487233102322, + -0.042339298874139786, + -0.027067353948950768, + 0.07409998774528503, + 0.09932973980903625, + -0.055128004401922226, + 0.010876606218516827, + 0.07772552222013474, + -0.007052411325275898, + -0.020437093451619148, + 0.0011252196272835135, + 0.07146774977445602, + 0.037621136754751205, + -0.05751191824674606, + -0.01393099594861269, + -0.06963014602661133, + 0.00045513195800594985, + 0.0544823594391346, + -0.04154466092586517, + -0.05880320444703102, + 0.01116217952221632, + -0.06784220784902573, + 0.018376002088189125, + -0.02803581766784191, + -0.023404570296406746, + 0.04889506474137306, + 0.09550554305315018, + -0.013223270885646343, + 0.06108778715133667, + 0.0026368941180408, + 0.02594989351928234, + -0.04738028347492218, + 0.025974726304411888, + -0.04164399206638336, + 0.0267693642526865, + 0.039433907717466354, + 0.010814525187015533, + 0.0022007746156305075, + 0.02577606774866581, + -0.08403296023607254, + -0.03645401448011398, + -0.0753416046500206, + -0.06242873892188072, + 0.022572683170437813, + -0.014104822650551796, + 0.04027820751070976, + -0.009957806207239628, + -0.0335734523832798, + -0.028110316023230553, + 0.008952092379331589, + 0.013272936455905437, + 0.057859573513269424, + 0.04407757148146629, + 0.07181540131568909, + -0.10017403960227966, + -0.048795733600854874, + -0.07976178079843521, + -0.013037027791142464, + 0.03049422986805439, + 0.031115040183067322, + -0.021653883159160614, + 0.002113861031830311, + -0.08368530124425888, + -0.013943412341177464, + 0.040253374725580215, + -0.018748488277196884, + 0.026992855593562126, + 0.043779581785202026, + -0.014887044206261635, + 0.005236539524048567, + -0.07290802896022797, + 0.0726100355386734, + 0.027067353948950768, + 0.06734555959701538, + -0.007840841077268124, + -0.055326662957668304, + -0.0671965703368187, + 0.012825952842831612, + -0.012875617481768131, + 0.015706514939665794, + -0.009312163107097149, + -0.0054134707897901535, + -0.03930974379181862, + -0.00019332437659613788, + -0.023752223700284958, + -0.056965604424476624, + -0.023466650396585464, + -0.06451466679573059, + 0.07767585664987564, + 0.006118090823292732, + -0.03883792832493782, + 0.03049422986805439, + -0.02331765554845333, + 0.05463135614991188, + 0.10966002941131592, + 0.0029240192379802465, + 0.015532687306404114, + 0.004628145135939121, + 0.02345423400402069, + 0.07703021168708801, + -0.026372045278549194, + 0.04857224225997925, + -0.004749203100800514, + -0.03250565752387047, + 0.012310679070651531, + 0.01162157952785492, + 0.027365343645215034, + -0.04603933170437813, + -0.02174079604446888, + 0.03496406599879265, + 0.03886276111006737, + -0.03739764541387558, + -0.014365563169121742, + 0.06069047003984451, + 0.01575618050992489, + -0.02858213149011135, + -0.023429401218891144, + -0.01910855807363987, + 0.03429359197616577, + 0.08145038783550262, + 0.029625093564391136, + -0.006270189769566059 + ] + }, + { + "id": "1194a337-5d3e-4cc9-96cd-79f1afb6b7a4", + "productId": "459c63e0-e036-4f31-90ec-6c353226a0d1", + "category": "Media", + "docType": "customerRating", + "userName": "jeffreysnyder", + "reviewDate": "2021-12-02T08:03:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e12bb072-8cac-44de-9424-a2a8eba89bf3", + "productId": "459c63e0-e036-4f31-90ec-6c353226a0d1", + "category": "Media", + "docType": "customerRating", + "userName": "baldwinchris", + "reviewDate": "2022-12-25T14:02:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9c5ecd6e-c383-4875-b493-97a471507165", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer 3000 (Silver)", + "description": "This Awesome Computer 3000 (Silver) is our first ever Kickstarter special, so we're looking forward to your feedback about this fantastic product as well as our future plans.\n\nPlease join our conversation on social media using #Patreon for all the latest in geek-related news and other cool things.\n\nAbout P.E.N.M.\n\nP.E.N.", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-03-17T18:51:54", + "price": 840.72, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-02-01T06:20:48", + "newPrice": 902.98 + }, + { + "priceDate": "2021-07-14T06:20:48", + "newPrice": 920.01 + }, + { + "priceDate": "2021-12-24T06:20:48", + "newPrice": 784.48 + }, + { + "priceDate": "2022-06-05T06:20:48", + "newPrice": 882.88 + }, + { + "priceDate": "2022-11-15T06:20:48", + "newPrice": 821.24 + }, + { + "priceDate": "2023-10-03T06:20:48", + "newPrice": 840.72 + } + ], + "descriptionVector": [ + -0.049288198351860046, + 0.004139848984777927, + -0.06941746175289154, + 0.00935215875506401, + 0.0013508881675079465, + 0.0047323270700871944, + -0.07013744115829468, + 0.05198810249567032, + 0.07613722234964371, + 0.12923528254032135, + 0.09239662438631058, + -0.07955709099769592, + 0.02497408725321293, + 0.021464215591549873, + -0.03146884962916374, + 0.00817470159381628, + -0.037048645317554474, + -0.004072351381182671, + 0.037858616560697556, + 0.005692292004823685, + 0.0232191514223814, + 0.0027823983691632748, + -0.04556833580136299, + -0.005253558047115803, + 0.03941855952143669, + -0.02332414872944355, + 0.010514616034924984, + 0.0139419911429286, + -0.03131885454058647, + 0.03926856443285942, + 0.07085741311311722, + 0.024689098820090294, + 0.0670175552368164, + -0.0012637038016691804, + 0.011407083831727505, + -0.02096923440694809, + 0.029488923028111458, + 0.018674317747354507, + 0.11309587210416794, + -0.021194225177168846, + 0.04181847348809242, + -0.04778825491666794, + -0.029233932495117188, + -0.024134118109941483, + -0.0008577811531722546, + 0.021299222484230995, + 0.026984013617038727, + -0.06815750896930695, + 0.019769277423620224, + 0.056007955223321915, + 0.03050888516008854, + 0.01232954952865839, + -0.014309477061033249, + 0.022214189171791077, + -0.042778436094522476, + -0.03500872105360031, + 0.08747680485248566, + -0.02531907521188259, + 0.006131025962531567, + 0.002664277795702219, + 0.0045110853388905525, + 0.03950855880975723, + 0.032728806138038635, + -0.010057132691144943, + 0.00045209284871816635, + -0.036418668925762177, + -0.09401656687259674, + 0.04838823154568672, + 0.04004853591322899, + 0.012119557708501816, + 0.019034305587410927, + 0.02885894663631916, + 0.04280843585729599, + 0.09665647149085999, + 0.04538834095001221, + -0.03845859691500664, + 0.10541614890098572, + 0.07451727986335754, + 0.09233662486076355, + -0.062757708132267, + 0.04331841692328453, + 0.019454289227724075, + 0.06431765109300613, + 0.007135989144444466, + -0.004136099014431238, + -0.017519360408186913, + -0.022064194083213806, + -0.17627355456352234, + -0.017669355496764183, + 0.01844932697713375, + -0.040108535438776016, + 0.018269332125782967, + 0.004038602579385042, + -0.07433728128671646, + 0.012337049469351768, + 0.038788583129644394, + -0.026684025302529335, + 0.003914856817573309, + 0.010252125561237335, + -0.04871822148561478, + 0.058827850967645645, + -0.027853982523083687, + 0.06407766044139862, + -0.05960782244801521, + -0.021209225058555603, + -0.001238392316736281, + 0.02839396335184574, + 0.09155665338039398, + -0.004837323445826769, + -0.10523615777492523, + -0.02194419875741005, + -0.011279587633907795, + -0.02599405124783516, + -0.0349787212908268, + 0.06761752814054489, + 0.07709718495607376, + -0.005696041975170374, + -0.03956855461001396, + 0.011887066066265106, + 0.016724389046430588, + 0.062217727303504944, + -0.00527980737388134, + -0.01468446385115385, + 0.029143935069441795, + 0.017204372212290764, + 0.007544724270701408, + -0.07403729856014252, + -0.002851770957931876, + 0.03239881619811058, + 0.017819348722696304, + -0.09119667112827301, + -0.030118899419903755, + 0.034738730639219284, + 0.05042815953493118, + 0.0030017653480172157, + 0.0012430795468389988, + 0.03911857306957245, + 0.13331513106822968, + 0.01427947822958231, + 0.030478887259960175, + -0.013117020949721336, + -0.02128422260284424, + 0.011999561451375484, + -0.0699574425816536, + -0.10541614890098572, + 0.006693505682051182, + -0.07205736637115479, + 0.04781825467944145, + 0.012734535150229931, + 0.08447691798210144, + -0.02003926783800125, + 0.0034648734144866467, + -0.047698259353637695, + -0.06419765204191208, + 0.002718650735914707, + -0.018929308280348778, + -0.07895711809396744, + -0.014181981794536114, + 0.030988868325948715, + 0.04391839727759361, + -0.02152421325445175, + 0.03383876383304596, + -0.050728145986795425, + 0.019394291564822197, + -0.014129484072327614, + 0.015959417447447777, + 0.08687682449817657, + -0.015374438837170601, + -0.060927774757146835, + 0.02932392805814743, + 0.03116886131465435, + -0.06455764174461365, + 0.04901820793747902, + -0.002999890362843871, + -0.017699353396892548, + 0.007094740867614746, + 0.05525798350572586, + 0.002002426888793707, + -0.03034389205276966, + -0.09317659586668015, + -0.011114593595266342, + 0.12071558833122253, + -0.0030448888428509235, + 0.014436972327530384, + 0.03851859271526337, + 0.018569322302937508, + 0.1091960147023201, + -0.0313788540661335, + 0.06197773665189743, + -0.021314222365617752, + 0.020489251241087914, + -0.03500872105360031, + -0.002726150443777442, + 0.03398875892162323, + 0.029758913442492485, + 0.01235954836010933, + -0.028738949447870255, + 0.0699574425816536, + -0.0037442382890731096, + 0.009329658932983875, + -0.010649611242115498, + 0.03188883513212204, + 0.05930783227086067, + -0.0434684120118618, + -0.017654355615377426, + -0.013866993598639965, + -0.01666439138352871, + 0.06947746127843857, + 0.009247162379324436, + 0.016799386590719223, + -0.019874274730682373, + -0.023849129676818848, + -0.033238787204027176, + -0.01706937700510025, + 0.05540797486901283, + 0.002902393927797675, + 0.0023380396887660027, + 0.041908469051122665, + 0.03398875892162323, + 0.006476013455539942, + -0.013417010195553303, + -0.0015458810376003385, + -0.0398685447871685, + -0.022634172812104225, + -0.003401125781238079, + -0.02690901793539524, + 0.033448778092861176, + 0.0003501434694044292, + 0.002827396849170327, + -0.0056397938169538975, + -0.032788801938295364, + 0.004934819880872965, + -0.03515871614217758, + 0.025964051485061646, + -0.057027917355298996, + 0.039088573306798935, + -0.022874165326356888, + -0.01988927274942398, + -0.08321695774793625, + 0.08939673751592636, + -0.03332878276705742, + 0.011339586228132248, + -0.047548264265060425, + -0.04931819811463356, + 0.08363694697618484, + 0.01948428899049759, + 0.036478668451309204, + 0.02270917035639286, + -0.05009816959500313, + 0.030388889834284782, + -0.059547826647758484, + -0.006772252731025219, + -0.005729790776968002, + 0.09479653835296631, + 0.006659756880253553, + 0.10343622416257858, + 0.01789434626698494, + 0.0317988395690918, + 0.021254222840070724, + 0.0462283119559288, + -0.04832823574542999, + -0.03527871146798134, + -0.03803861141204834, + 0.03167884424328804, + -0.03635867312550545, + -0.003944856114685535, + 0.04289843142032623, + -0.022019196301698685, + 0.020939234644174576, + 0.03896857798099518, + -0.0012805782025679946, + -0.05693792179226875, + 0.034018758684396744, + -0.05171811208128929, + -0.011849567294120789, + -0.0015758799854665995, + 0.013267015106976032, + 0.058977846056222916, + -0.041248492896556854, + -0.032278820872306824, + 0.0036186177749186754, + -0.03362877294421196, + 0.04274844005703926, + -0.025769058614969254, + 0.02635403722524643, + -0.01081460528075695, + -0.07097740471363068, + -0.03521871194243431, + -0.006258521229028702, + 0.004387339577078819, + -0.0599978081882, + -0.006633507553488016, + 0.04757826402783394, + 0.04454837366938591, + 0.03722864016890526, + 0.030133899301290512, + -0.01525444258004427, + -0.055707965046167374, + -0.022889163345098495, + 0.0006534136482514441, + -0.013612003065645695, + -0.03692864999175072, + -0.04037852585315704, + 0.03827860206365585, + -0.020234260708093643, + 0.10019633919000626, + -0.024389108642935753, + 0.009224663488566875, + -0.045748330652713776, + -0.013529505580663681, + 0.07457727938890457, + -0.07301733642816544, + -0.010417119599878788, + 0.014871956780552864, + 0.0349787212908268, + -0.04256844520568848, + 0.11099594831466675, + -0.0005938845570199192, + -0.029698915779590607, + -0.05288806930184364, + 0.09545651078224182, + -0.011264588683843613, + -0.12035560607910156, + 0.012644537724554539, + -0.017879346385598183, + 0.011459581553936005, + 0.012749534100294113, + 0.05654793605208397, + -0.009854639880359173, + -0.008384693413972855, + -0.02906893752515316, + -0.0470682792365551, + 0.06497762352228165, + -0.02864895388484001, + 0.019979270175099373, + -0.03956855461001396, + 0.007612221874296665, + 0.04889821261167526, + 0.07151738554239273, + 0.009172164835035801, + 0.015291941352188587, + -2.3802842406439595e-05, + -0.008984671905636787, + -0.002068049507215619, + -0.009539651684463024, + -0.05141812190413475, + -0.00034967472311109304, + -0.025814056396484375, + 0.027703987434506416, + -0.009359657764434814, + 0.0020418004132807255, + -0.01540443766862154, + 0.03341877833008766, + -0.02342914417386055, + 0.16823385655879974, + 0.026894018054008484, + 0.05399802699685097, + -0.0822569951415062, + -0.028618954122066498, + 0.035098716616630554, + -0.03422874957323074, + -0.10187628120183945, + 0.05213809758424759, + 0.02777898497879505, + -0.06245771795511246, + 0.0188693106174469, + 0.0065210117027163506, + 0.05078814551234245, + 0.004856072831898928, + -0.03152884915471077, + 0.04268844053149223, + -0.020414253696799278, + -0.09131666272878647, + 0.009164664894342422, + -0.008332195691764355, + 0.011999561451375484, + 0.054568007588386536, + 0.0468582883477211, + -0.02164420858025551, + 0.041698478162288666, + -0.035398706793785095, + -0.008759680204093456, + 0.038368597626686096, + 0.010057132691144943, + -0.014639465138316154, + -0.04394839331507683, + -0.004271094221621752, + -0.011414582841098309, + -0.035608697682619095, + 0.04157848283648491, + -0.053698040544986725, + 0.027448996901512146, + -0.0778171569108963, + 0.024314111098647118, + -0.006389766465872526, + 0.03266880661249161, + -0.048778217285871506, + 0.053338050842285156, + 0.04376840218901634, + -0.012059559114277363, + -0.05921783670783043, + 0.00748472660779953, + 0.044518373906612396, + -0.007424728944897652, + -0.0021430468186736107, + -0.07625721395015717, + -0.06725754588842392, + -0.09251662343740463, + -0.04004853591322899, + -0.06659756600856781, + -0.0038848582189530134, + -0.028618954122066498, + -0.01687438413500786, + 0.05372803658246994, + 0.08447691798210144, + 0.026879018172621727, + -0.015321940183639526, + 0.07901711761951447, + 0.0593678317964077, + -0.012202054262161255, + 0.005358554422855377, + 0.034378744661808014, + 0.03287879750132561, + 0.021509215235710144, + -0.028903944417834282, + -0.014931954443454742, + 0.010507116094231606, + -0.029293930158019066, + 0.03581869229674339, + -0.05012816935777664, + 0.007927210070192814, + -0.06839749962091446, + -0.010679610073566437, + 0.016079412773251534, + -0.02972891367971897, + -0.020414253696799278, + 0.07133739441633224, + 0.023414144292473793, + -0.013477007858455181, + 0.06581759452819824, + 0.004473586566746235, + -0.06227772682905197, + -0.010987098328769207, + 0.012404547072947025, + -0.026219042018055916, + 0.012014561332762241, + -0.0566079318523407, + 0.00529480678960681, + 0.017054377123713493, + -0.029923906549811363, + -0.02911393716931343, + -0.027299003675580025, + -0.05069814994931221, + 0.05798788368701935, + 0.0010471493005752563, + -0.04310842603445053, + -0.04526834562420845, + 0.06851749867200851, + 0.009494652971625328, + 0.03635867312550545, + 0.0670175552368164, + 0.034738730639219284, + 0.07955709099769592, + -0.08003707975149155, + -0.008399693295359612, + -0.013784496113657951, + -0.006918497383594513, + 0.003851109417155385, + 0.03004390187561512, + 0.04238845035433769, + 0.04712827876210213, + 0.00653601111844182, + -0.005002317484468222, + 0.013244516216218472, + 0.01895930804312229, + -0.09959635883569717, + 0.014211980625987053, + 0.023189153522253036, + 0.011737070977687836, + 0.011002098210155964, + -0.017459362745285034, + -0.027209006249904633, + 0.005973531864583492, + -0.046168312430381775, + -0.012637038715183735, + -0.0006506012286990881, + -0.04832823574542999, + -0.014774460345506668, + 0.005261057987809181, + 0.08675683289766312, + -0.01861432008445263, + 0.04823823645710945, + 0.016424400731921196, + -0.02692401595413685, + -0.03803861141204834, + 0.013686999678611755, + -0.010004634968936443, + 0.024284113198518753, + 0.045088354498147964, + 0.0004314686229918152, + -0.01199206244200468, + -0.026309039443731308, + -0.08945672959089279, + 0.08855676651000977, + 0.03527871146798134, + 0.04814824089407921, + -0.016679391264915466, + 0.05753789842128754, + -0.046318307518959045, + 0.059127841144800186, + -0.030028903856873512, + -0.00038389224209822714 + ] + }, + { + "id": "7e0de85d-66ab-4e47-a98c-cb72ef9c23a2", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "moyertommy", + "reviewDate": "2022-04-30T20:57:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8990bbd8-34ec-478d-98c3-6902bfc7af2b", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "vaughngregory", + "reviewDate": "2021-08-19T17:37:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "17d1d061-4404-4765-a08b-e5fcb478c403", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "katie08", + "reviewDate": "2021-12-21T08:00:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0e556d82-fb98-4053-a7ee-e44ec08b4407", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "fcortez", + "reviewDate": "2021-10-24T06:15:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "804c185b-0405-42f6-8d56-31d65f3f9e66", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "urodgers", + "reviewDate": "2021-07-26T08:42:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3efd0688-7707-4d0b-a00b-dadfc7c732df", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "amandaoconnor", + "reviewDate": "2021-08-15T01:22:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "24a36982-49a9-46e4-a08e-de0b988d4196", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "edward98", + "reviewDate": "2021-03-20T15:39:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4f626d24-9ccf-4734-8d56-34cbc6dc1a8d", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "zoe36", + "reviewDate": "2022-08-12T22:40:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1dcd5bd4-434c-4f62-a9a0-61d906a60402", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "dgordon", + "reviewDate": "2021-02-01T06:20:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f4f56938-f997-40f6-bcec-0055513ca3d3", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "haletravis", + "reviewDate": "2022-11-19T05:33:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8d3a4211-b656-40ec-9a7f-70f6b83e7549", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "antonio43", + "reviewDate": "2021-08-09T10:20:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d1670cae-2600-4873-895b-333fcca2bbc8", + "productId": "9c5ecd6e-c383-4875-b493-97a471507165", + "category": "Electronics", + "docType": "customerRating", + "userName": "ejones", + "reviewDate": "2021-11-15T20:47:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker 3000 (Silver)", + "description": "This Awesome Speaker 3000 (Silver) is one of those speakers you won't want to miss. It comes with an aluminum body, a speaker jack,", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-10-06T05:08:12", + "price": 634.59, + "stock": 84, + "priceHistory": [ + { + "priceDate": "2022-04-22T01:22:11", + "newPrice": 694.52 + }, + { + "priceDate": "2022-06-15T01:22:11", + "newPrice": 612.32 + }, + { + "priceDate": "2022-08-08T01:22:11", + "newPrice": 691.25 + }, + { + "priceDate": "2022-10-01T01:22:11", + "newPrice": 683.32 + }, + { + "priceDate": "2022-11-24T01:22:11", + "newPrice": 604.64 + }, + { + "priceDate": "2025-05-09T01:22:11", + "newPrice": 634.59 + } + ], + "descriptionVector": [ + 0.018539899960160255, + 0.005671327468007803, + -0.035833634436130524, + 0.003620875533670187, + -0.01137444470077753, + -0.076651930809021, + -0.08977482467889786, + -0.02957737073302269, + 0.011120124720036983, + 0.09308097511529922, + -0.08433238416910172, + 0.039444971829652786, + 0.05427180603146553, + -0.012366291135549545, + 0.02483431063592434, + -0.04470938816666603, + -0.03265463933348656, + -0.04852418228983879, + -0.014674241654574871, + -0.01335177943110466, + 0.04119977727532387, + -0.05625549703836441, + -0.04498913884162903, + -0.02970452979207039, + -0.02585158869624138, + -0.02287604846060276, + 0.02274888940155506, + 0.015615223906934261, + -0.05905301496386528, + -0.011749565601348877, + 0.04954145848751068, + 0.017509905621409416, + 0.019633473828434944, + 0.04033508896827698, + -0.07090430706739426, + 0.038758307695388794, + -0.011991169303655624, + 0.03507067263126373, + 0.02655096724629402, + -0.040385954082012177, + -0.007171812932938337, + 0.028000589460134506, + -0.013631531037390232, + -0.028305772691965103, + 0.04895652458071709, + 0.0479138158261776, + -0.008799458853900433, + 0.05244070291519165, + -0.02381703071296215, + 0.040665704756975174, + 0.021324699744582176, + -0.005442439578473568, + -0.05605204030871391, + -0.006138639524579048, + 0.049973804503679276, + -0.011355370283126831, + 0.05022812262177467, + 0.0859600305557251, + 0.015882259234786034, + -0.0021235686726868153, + 0.06251175701618195, + -0.047150854021310806, + -0.013478939421474934, + -0.0007963382522575557, + -0.060680657625198364, + 0.012499808333814144, + -0.0039991759695112705, + 0.06322385370731354, + -0.014597945846617222, + 0.08260300755500793, + 0.02370258793234825, + -0.050024665892124176, + 0.009308097884058952, + 0.052949342876672745, + 0.009161863476037979, + -0.004367939196527004, + 0.04961775615811348, + 0.057781416922807693, + 0.013631531037390232, + -0.05844264477491379, + 0.060426339507102966, + 0.04384469985961914, + -0.04196273535490036, + -0.049261707812547684, + 0.018667059019207954, + 0.0032187325414270163, + -0.012576105073094368, + -0.07044652849435806, + -0.030162306502461433, + 0.05996856465935707, + 0.013224619440734386, + 0.08321337401866913, + 0.01473782118409872, + 0.005401112604886293, + 0.03903805837035179, + 0.029882553964853287, + 0.008246312849223614, + 0.04659135267138481, + -0.04262396693229675, + -0.05183033645153046, + 0.04478568211197853, + -0.03499437868595123, + -0.05462785065174103, + 0.0038402259815484285, + -0.025533689185976982, + 0.07990722358226776, + 0.013618814758956432, + -0.007419774774461985, + 0.02465628646314144, + -0.17934618890285492, + 0.06108757108449936, + 0.00865958258509636, + 0.005159508902579546, + -0.09124987572431564, + 0.08494275063276291, + 0.026474671438336372, + 0.0066886055283248425, + 0.009308097884058952, + -0.0475832000374794, + 0.0037257822696119547, + 0.03354475647211075, + -0.021337416023015976, + 0.01625102385878563, + 0.02180790714919567, + 0.016022134572267532, + -0.0768553838133812, + 0.0023413298185914755, + 0.01622559130191803, + -0.0037639301735907793, + 0.03168822452425957, + -0.1152576431632042, + 0.020599888637661934, + 0.030264033004641533, + 0.022341977804899216, + -0.03041662462055683, + 0.029195891693234444, + -0.027186766266822815, + 0.05630636215209961, + -0.001360609894618392, + 0.04481111466884613, + -0.050100963562726974, + 0.08362028747797012, + 0.0477866530418396, + 0.008468843065202236, + -0.04854961484670639, + -0.045421481132507324, + -0.07227763533592224, + 0.03041662462055683, + -0.022214816883206367, + 0.04404815658926964, + 0.013911282643675804, + -0.08168745785951614, + -0.02955193817615509, + -0.06871715933084488, + -0.022125806659460068, + 0.06861542910337448, + -0.11739393323659897, + 0.004612721968442202, + 0.08850322663784027, + 0.059663381427526474, + -0.03339216485619545, + -0.06454631686210632, + -0.06490236520767212, + 0.03812250867486, + -0.05345798283815384, + 0.00432979129254818, + 0.09186024218797684, + 0.032934390008449554, + -0.1140369102358818, + 0.04674394428730011, + 0.010338092222809792, + -0.056662410497665405, + 0.006354811135679483, + -0.026474671438336372, + -0.06276608258485794, + -0.020460013300180435, + 0.07024307548999786, + 0.0037257822696119547, + -0.062410030514001846, + -0.0286109559237957, + 0.0060146586038172245, + 0.07029394060373306, + -0.018590763211250305, + -0.012728696689009666, + -0.004628616850823164, + 0.017484473064541817, + 0.033926237374544144, + -0.053864892572164536, + -0.002597239101305604, + 0.014597945846617222, + 0.015373620204627514, + -0.038478557020425797, + -0.00184222764801234, + 0.029933417215943336, + -0.052084654569625854, + 0.05640808865427971, + 0.05180490389466286, + -0.04496370628476143, + 0.014534365385770798, + 0.06022288277745247, + -0.01232814323157072, + 0.005350248888134956, + 0.07360009104013443, + 0.003665381344035268, + -0.08509533852338791, + -0.06581791490316391, + -0.026372943073511124, + 0.024211226031184196, + 0.003417419735342264, + 0.010096488520503044, + -0.006249904166907072, + -0.002945339074358344, + -0.024541841819882393, + -0.004746239632368088, + 0.07934771478176117, + 0.011991169303655624, + 0.00018060665752273053, + 0.006186324637383223, + 0.010204574093222618, + -0.04567580297589302, + 0.07360009104013443, + -0.013224619440734386, + -0.014585229568183422, + 0.017344597727060318, + -0.05325452610850334, + 0.024427399039268494, + 5.275144940242171e-05, + -0.010834014974534512, + 0.05564513057470322, + 0.037588439881801605, + -0.01377140637487173, + 0.0238933265209198, + 0.03428228199481964, + 0.026220351457595825, + -0.030187737196683884, + 0.050177257508039474, + -0.04130150377750397, + -0.038732875138521194, + -0.011170988902449608, + 0.04999923333525658, + -0.04847331717610359, + 0.04465852305293083, + -0.06973443925380707, + -0.02774626947939396, + -0.012557030655443668, + -0.012779559940099716, + 0.0864178016781807, + -0.09216542541980743, + -0.05890041962265968, + 0.051118239760398865, + -0.07990722358226776, + -8.474008791381493e-05, + -0.024249374866485596, + 0.02672899141907692, + -0.02485974133014679, + 0.02198592945933342, + 0.05849350988864899, + -0.04959232360124588, + 0.006650457624346018, + -0.03654572740197182, + -0.026449238881468773, + 0.01714114099740982, + 0.009193654172122478, + 0.02101951651275158, + -0.08331510424613953, + -0.03507067263126373, + 0.08036499470472336, + -0.09959156066179276, + 0.03738498315215111, + 0.007527860347181559, + -0.007413416635245085, + -0.014775969088077545, + -0.016416329890489578, + -0.0046159010380506516, + -0.05027898773550987, + 0.037613868713378906, + -0.05132169649004936, + 0.01533547230064869, + -0.0767536610364914, + 0.02014211378991604, + 0.08829976618289948, + 0.008100079372525215, + 0.06805592775344849, + -0.036596592515707016, + 0.06948011368513107, + -0.032807230949401855, + 0.04125063866376877, + 0.03690177574753761, + -0.025584552437067032, + -0.005788950249552727, + 0.01630188710987568, + -0.051982928067445755, + 0.004889294505119324, + 0.03730868548154831, + 0.03715609386563301, + 0.048066407442092896, + 0.046159010380506516, + -0.006192682310938835, + -0.002036146353930235, + 0.059765107929706573, + 0.03438401222229004, + -0.039699289947748184, + -0.0475069023668766, + -0.09923551231622696, + -0.009880316443741322, + 0.12593907117843628, + -0.028153181076049805, + 0.0673438310623169, + -0.047227151691913605, + -0.051932062953710556, + 0.06780160963535309, + 0.010846731252968311, + -0.044378772377967834, + -0.0858583003282547, + 0.05544167384505272, + -0.02866181917488575, + 0.04175927862524986, + 0.05119453743100166, + 0.0573745034635067, + 0.009142789989709854, + -0.005556883290410042, + -0.009142789989709854, + -0.022723456844687462, + -0.005216730758547783, + -0.018565330654382706, + 0.014076590538024902, + 0.05813746154308319, + -0.01473782118409872, + 0.02672899141907692, + 0.018514467403292656, + 0.010802225209772587, + -0.06480063498020172, + 0.05381402745842934, + -0.04496370628476143, + -0.009225443936884403, + -0.042573101818561554, + -0.03903805837035179, + 0.03318870812654495, + 0.04984664171934128, + 0.034663762897253036, + 0.040589410811662674, + -0.01729373261332512, + 0.010789508931338787, + -0.03555388003587723, + 0.010598769411444664, + -0.04226791858673096, + 0.03357018902897835, + -0.03812250867486, + 0.03735955059528351, + -0.038656581193208694, + 0.001427368842996657, + -0.02779713273048401, + 0.05366143584251404, + -0.06078238785266876, + 0.06983616203069687, + -0.02005310170352459, + -0.015971271321177483, + -0.06474976986646652, + 0.0014448532601818442, + -0.001632413943298161, + -0.02960280328989029, + 0.010681423358619213, + 0.03939410671591759, + 0.050889354199171066, + -0.025940600782632828, + 0.04834615811705589, + -0.045294322073459625, + 0.015755100175738335, + -0.027161333709955215, + 0.029933417215943336, + -0.015856826677918434, + -0.04028422757983208, + -0.06108757108449936, + 0.013033879920840263, + 0.007470638491213322, + 0.05381402745842934, + 0.05986683443188667, + -0.015627939254045486, + -0.04313260689377785, + 0.043488651514053345, + 0.028916139155626297, + 0.01701398193836212, + 0.0662756934762001, + -0.028916139155626297, + 0.015055720694363117, + -0.04315803572535515, + -0.04585382714867592, + -0.014788685366511345, + -0.04127607122063637, + 0.03903805837035179, + -0.0013184882700443268, + -0.0013574309414252639, + -0.03329043835401535, + 0.055695995688438416, + 0.018527183681726456, + 0.014076590538024902, + 0.06439372152090073, + 0.05076219514012337, + -0.02754281274974346, + 0.01189580000936985, + -0.0379444845020771, + 0.045396048575639725, + -0.0067203957587480545, + 0.019608041271567345, + -0.011724133975803852, + -0.09465775638818741, + -0.03410425782203674, + 0.045243456959724426, + -0.0863160714507103, + -0.05142342671751976, + 0.05045701190829277, + -0.05060960352420807, + -0.0014551850035786629, + 0.03898719698190689, + -0.03880917280912399, + 0.06007029116153717, + 0.08255214244127274, + -0.006555087864398956, + 0.08651953190565109, + -0.0663265511393547, + 0.041632119566202164, + 0.06205398589372635, + -0.0014837959315627813, + 0.02751738205552101, + -0.02560998499393463, + -0.006087775807827711, + 0.04193730279803276, + -0.04928714036941528, + -0.004466488026082516, + -0.07131122052669525, + -0.044480498880147934, + 0.009219085797667503, + 0.03593536093831062, + 0.04226791858673096, + -0.043514084070920944, + -0.07212503999471664, + -0.014051157981157303, + -0.0239314753562212, + -0.054983898997306824, + 0.020574456080794334, + -0.07873734831809998, + -0.01006469875574112, + -0.00806828960776329, + 0.09140246361494064, + -0.05183033645153046, + -0.06220657750964165, + -0.01431819424033165, + -0.013110175728797913, + 0.023575427010655403, + -0.02494875341653824, + 0.012518882751464844, + 0.0007097106426954269, + -0.07243022322654724, + 0.026881583034992218, + 0.07278627157211304, + 0.0012040444416925311, + -0.018692491576075554, + 0.08977482467889786, + -0.055950313806533813, + -0.006113207433372736, + -0.014915845356881618, + 0.06342730671167374, + 0.042369645088911057, + 0.001397963147610426, + -0.010846731252968311, + 0.07527860254049301, + -0.02665269561111927, + 0.07965289801359177, + -0.008996556513011456, + 0.016505341976881027, + -0.017815088853240013, + -0.011298148892819881, + 0.04943973198533058, + 0.01895952597260475, + -0.048168133944272995, + -0.04465852305293083, + 0.04125063866376877, + -0.048193566501140594, + 0.029831690713763237, + 0.02188420295715332, + -0.05157601833343506, + 0.01091031078249216, + -0.017751509323716164, + 0.02670355886220932, + 0.047278016805648804, + 0.01805669255554676, + -0.011196420527994633, + -0.012970300391316414, + -0.018705207854509354, + 0.060528066009283066, + 0.05890041962265968, + 0.05823919177055359, + -0.015221028588712215, + -0.00960056483745575, + -0.06012115627527237, + 0.023537280037999153, + 0.045294322073459625, + -0.06932752579450607, + -0.03453660383820534, + 0.07695711404085159, + 0.03746127709746361, + -0.021591734141111374, + -0.04671851173043251, + 0.009123715572059155, + -0.035731904208660126, + -0.01612386293709278, + -0.07456650584936142, + -0.004832072649151087, + -0.03173908591270447, + 0.012709622271358967, + -0.06342730671167374, + -0.027288494631648064 + ] + }, + { + "id": "6fb24f97-776c-48e2-986b-952edcfacddf", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "customerRating", + "userName": "leslietucker", + "reviewDate": "2022-04-22T01:22:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6bda3893-1294-4f5a-a465-da73e31bb822", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "customerRating", + "userName": "joshuaschmidt", + "reviewDate": "2022-11-25T05:31:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "53d8ad68-2cb7-4aa5-9b94-eaf87230b985", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "customerRating", + "userName": "davidgarcia", + "reviewDate": "2022-07-07T07:57:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fe69db7e-4204-404f-90cd-88dc68cc28d1", + "productId": "6bda2cc1-06a6-45cc-88c1-7b50869e939f", + "category": "Media", + "docType": "customerRating", + "userName": "caitlin80", + "reviewDate": "2022-06-24T02:28:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Gold)", + "description": "This Awesome Phone Super (Gold) is one of the best phones in terms of being an excellent value and also the most stylish design. It has great value while being very well executed. It has an amazing design that combines all the classic features and makes it an extremely smart device even in the same breath that Apple", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-05-30T05:35:46", + "price": 1045.66, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-02-25T01:49:09", + "newPrice": 1056.3 + }, + { + "priceDate": "2021-07-04T01:49:09", + "newPrice": 1111.92 + }, + { + "priceDate": "2021-11-10T01:49:09", + "newPrice": 987.24 + }, + { + "priceDate": "2022-03-19T01:49:09", + "newPrice": 997.31 + }, + { + "priceDate": "2022-07-26T01:49:09", + "newPrice": 1062.74 + }, + { + "priceDate": "2023-08-15T01:49:09", + "newPrice": 1045.66 + } + ], + "descriptionVector": [ + -0.043607283383607864, + 0.06082068383693695, + -0.016089748591184616, + -0.001827429630793631, + 0.0006518529844470322, + -0.04738466814160347, + -0.04982323572039604, + -0.0228436179459095, + 0.03361394628882408, + 0.06565000116825104, + 0.05111423879861832, + -0.03468978404998779, + 0.06780167669057846, + -0.04286615177989006, + 0.03366176411509514, + 0.023668427020311356, + 0.051401130855083466, + -0.05106642469763756, + -0.024744264781475067, + 0.003529344918206334, + 0.10108091682195663, + -0.10280226171016693, + -0.039662547409534454, + -0.06885360181331635, + -0.05379188060760498, + -0.02945404313504696, + -0.0012596264714375138, + 0.04786282032728195, + 0.06765823066234589, + -0.0409296415746212, + 0.014081518165767193, + -0.01839682273566723, + -0.06330706179141998, + 0.008941405452787876, + -0.05613481625914574, + 0.11265214532613754, + -0.007967174984514713, + 0.02433783747255802, + 0.01628100872039795, + -0.005857337731868029, + 0.02030942216515541, + -0.09534312039613724, + 0.016878696158528328, + 0.025031154975295067, + 0.04549597576260567, + -0.04635664448142052, + -0.0026014349423348904, + 0.034068189561367035, + -0.0319882370531559, + -0.0045842635445296764, + 0.023764057084918022, + 0.012886143289506435, + 0.013890258967876434, + 0.011810305528342724, + -0.0234173983335495, + -0.007608562242239714, + -0.05355280265212059, + 0.017034094780683517, + 0.0010198043892160058, + -0.007530862931162119, + -0.029477950185537338, + -0.020739758387207985, + 0.009563000872731209, + -0.022210069000720978, + -0.03610032796859741, + -0.021911226212978363, + -0.048030171543359756, + 0.004996668081730604, + -0.07100527733564377, + 0.08673641830682755, + 0.016006072983145714, + 0.042746614664793015, + -0.048914749175310135, + 0.05407876893877983, + -0.02663295716047287, + 0.043009594082832336, + 0.005534586496651173, + 0.02295120246708393, + 0.06134665012359619, + 0.03507230430841446, + 0.0991683155298233, + 0.031223196536302567, + 0.023477166891098022, + -0.006502840667963028, + 0.061824798583984375, + 0.013770720921456814, + 0.04879521206021309, + -0.10787064582109451, + -0.06249421089887619, + 0.0004964542458765209, + -0.03361394628882408, + 0.019245538860559464, + -0.036315497010946274, + 0.026537327095866203, + 0.07492610812187195, + 0.05187927931547165, + 0.014093472622334957, + 0.0390409491956234, + -0.031294919550418854, + -0.03755868598818779, + 0.041885942220687866, + -0.047265131026506424, + -0.03258592635393143, + 0.025581026449799538, + -0.03217949718236923, + 0.024027040228247643, + 0.020942971110343933, + -0.036315497010946274, + 0.03896922990679741, + -0.09543874859809875, + 0.0012797984527423978, + 0.048866935074329376, + -0.009820006787776947, + 0.02130158431828022, + -0.012372132390737534, + 0.03251420333981514, + -0.0064610023982822895, + -0.039901621639728546, + 0.009598862379789352, + -0.0005950726917944849, + 0.009646677412092686, + 0.09170917421579361, + -0.07043150067329407, + -0.010118850506842136, + 0.013447970151901245, + -0.0333031490445137, + 0.04262707754969597, + -0.01416519470512867, + 0.014487946406006813, + 0.010931705124676228, + -0.06617596745491028, + 0.07468703389167786, + 0.03956691548228264, + 0.08190710097551346, + -0.020823433995246887, + 0.07626493275165558, + 0.050301384180784225, + 0.07081402093172073, + -0.017058001831173897, + 0.048914749175310135, + 0.06062942370772362, + -0.009288064204156399, + 0.040212418884038925, + -0.052835579961538315, + -0.02007034793496132, + 0.001134859281592071, + 0.027684887871146202, + 0.018839111551642418, + -0.04910600930452347, + 0.027278460562229156, + 0.03234684839844704, + -0.14832213521003723, + -0.04719340801239014, + -0.0637373998761177, + 0.016053887084126472, + 0.013125218451023102, + -0.059290602803230286, + -0.06689319014549255, + 0.010602977126836777, + 0.06244639307260513, + -0.046117570251226425, + -0.06483714282512665, + -0.03139055147767067, + -0.05890808627009392, + -0.05374406278133392, + -0.05666077882051468, + 0.06674974411725998, + 0.03865842893719673, + -0.08491944521665573, + 0.05919497460126877, + 0.06904486566781998, + 0.019616104662418365, + -0.0374869629740715, + -0.08860120177268982, + -0.018121886998414993, + 0.01186409778892994, + 0.04131216183304787, + -0.02799568511545658, + -0.006072505377233028, + -0.03887359797954559, + 0.01526493951678276, + 0.0616813562810421, + -0.11150459200143814, + -0.02632215991616249, + 0.003284292994067073, + 0.03311188891530037, + 0.023823825642466545, + 0.05307465419173241, + 0.004892072640359402, + -0.010836075060069561, + -0.020512636750936508, + -0.020895157009363174, + -0.006293649785220623, + -0.022198116406798363, + 0.0344507098197937, + -0.0002480403345543891, + 0.07282225042581558, + 0.014368408359587193, + -0.05862119421362877, + 0.08611482381820679, + -0.01826533116400242, + 0.04535252973437309, + 0.1181986927986145, + 0.009945521131157875, + 0.0002319774794159457, + -0.05661296471953392, + 0.03086458519101143, + 0.00880991481244564, + 0.0011931337649002671, + 0.07583459466695786, + 0.006747892592102289, + 0.024839894846081734, + -0.03440289571881294, + -0.007746030576527119, + 0.10739249736070633, + 0.00539114186540246, + 0.022568682208657265, + 0.0038999111857265234, + 0.0039178417064249516, + -0.09314362704753876, + 0.0044527724385261536, + 0.0033888884354382753, + 0.017739366739988327, + 0.03523965924978256, + -0.05967312306165695, + -0.015336662530899048, + 0.010453554801642895, + 0.0037325588054955006, + 0.03650675714015961, + 0.06722789257764816, + -0.031533993780612946, + -0.03115147538483143, + -0.037128351628780365, + 0.0001834153663367033, + -0.013424062170088291, + 0.010620907880365849, + 0.013364293612539768, + -0.04198157414793968, + -0.04097745940089226, + 0.02770879492163658, + 0.020189885050058365, + -0.03700881451368332, + -0.04681088775396347, + -0.08056828379631042, + 0.0951518565416336, + -0.02660905010998249, + -0.004440818447619677, + 0.029214967042207718, + -0.03301626071333885, + 0.036889273673295975, + -0.007781892083585262, + -0.06560218334197998, + -0.04774327948689461, + 0.05833430588245392, + 0.030386434867978096, + 0.0034337148535996675, + 0.0192335844039917, + -0.022628450766205788, + 0.05522632971405983, + -0.050349198281764984, + -0.0035502640530467033, + -0.017715459689497948, + -0.0008898073574528098, + 0.07205720990896225, + -0.05240524560213089, + 0.07755593955516815, + 0.0428183376789093, + -0.07067057490348816, + -0.03504839912056923, + 0.038299817591905594, + -0.01813383959233761, + -0.061490096151828766, + 0.011260433122515678, + 0.0008621643064543605, + 0.01709386333823204, + 0.03648284822702408, + -0.025604935362935066, + 0.0611075758934021, + -0.02911933697760105, + 0.012670976109802723, + 0.06220731884241104, + -0.01832509972155094, + 0.1319694072008133, + 0.016615713015198708, + 0.0729178786277771, + -0.0853019654750824, + -0.020524591207504272, + -0.07191376388072968, + 0.020739758387207985, + -0.0037325588054955006, + -0.015599644742906094, + 0.02057240530848503, + 0.018181655555963516, + 0.0007994070765562356, + -0.002847981173545122, + -0.01975955069065094, + 0.030649418011307716, + -0.024744264781475067, + -0.014392316341400146, + 0.05077953264117241, + 0.060964129865169525, + -0.00955104734748602, + -0.025581026449799538, + -0.036889273673295975, + 0.007584655191749334, + 0.09156573563814163, + -0.04676307365298271, + 0.05962530896067619, + -0.03024299070239067, + -0.00736351078376174, + 0.07296569645404816, + -0.011559276841580868, + 0.008582793176174164, + -0.04762374237179756, + 0.026441697031259537, + 0.009700468741357327, + -0.05890808627009392, + 0.052022725343704224, + 0.04826924577355385, + 0.02890416979789734, + 0.05403095483779907, + 0.014224963262677193, + -0.08028139173984528, + 0.03619595617055893, + -0.017261216416954994, + 0.0319882370531559, + 0.04205329716205597, + -0.06655848771333694, + -0.03251420333981514, + -0.019114047288894653, + -0.024301975965499878, + -0.010686653666198254, + 0.04745639115571976, + -0.02033333107829094, + 0.026776401326060295, + -0.03643503412604332, + 0.061251018196344376, + 0.059864383190870285, + 0.04054712504148483, + 0.01625710166990757, + 0.07588241249322891, + 0.014201056212186813, + -0.06837545335292816, + 0.019388984888792038, + -0.006604447495192289, + -0.06086849793791771, + -0.08319810777902603, + -0.0544612891972065, + 0.08095080405473709, + -0.024481281638145447, + 0.0012230181600898504, + -0.02020183950662613, + 0.06641504168510437, + 0.01385439746081829, + 0.039064858108758926, + 0.044420138001441956, + 0.0397820845246315, + -0.105479896068573, + 0.08439347892999649, + -0.056230444461107254, + 0.016866741701960564, + -0.015671366825699806, + 0.027852239087224007, + 0.019066233187913895, + 0.0076384469866752625, + 0.042985688894987106, + 0.030410341918468475, + 0.11379970610141754, + -0.04630883038043976, + -0.013017634861171246, + 0.04714559391140938, + -0.0016809962689876556, + -0.04147951677441597, + 0.03423554450273514, + -0.0067837536334991455, + 0.01797844097018242, + -0.005863314960151911, + -0.04996667802333832, + 0.01916186325252056, + 0.058429934084415436, + -0.018863018602132797, + 4.711459041573107e-05, + 0.018253378570079803, + 0.019855180755257607, + 0.04817361757159233, + -0.05862119421362877, + -0.04967978969216347, + 0.02579619362950325, + -0.04958415776491165, + 0.06531529873609543, + -0.0769343376159668, + -0.052261799573898315, + -0.014715067110955715, + 0.07081402093172073, + 0.07258317619562149, + -0.02326199971139431, + 0.05302684009075165, + 0.0028420041780918837, + 0.01597021147608757, + -0.009963450953364372, + -0.00012065817281836644, + 0.03526356443762779, + 0.03136664256453514, + 0.05192709341645241, + 0.012694883160293102, + -0.016555944457650185, + 0.004679893609136343, + 0.027684887871146202, + -0.030051730573177338, + -0.04033195599913597, + 0.004551390651613474, + 0.021600427106022835, + 0.01190593559294939, + 0.025102876126766205, + 0.01402174960821867, + -0.006419164128601551, + 0.07200939208269119, + 0.07803408801555634, + 0.13789847493171692, + -0.030099544674158096, + 0.0005084079457446933, + 0.0492972694337368, + 0.07511737197637558, + 0.01852831430733204, + -0.046667445451021194, + 0.0416707769036293, + -0.014045657590031624, + -0.03971036151051521, + -0.019377030432224274, + -0.03452243283390999, + 0.02746971882879734, + -0.051162052899599075, + 0.0873580127954483, + 0.016950419172644615, + -0.06034253537654877, + -0.05269213393330574, + -0.03253810852766037, + 0.015025865286588669, + -0.020978832617402077, + -0.011786398477852345, + -0.01277855969965458, + -0.039375655353069305, + 0.0014157723635435104, + 0.07707778364419937, + -0.09577345103025436, + -0.012539484538137913, + -0.010268271900713444, + -0.027923962101340294, + -0.004428864922374487, + -0.07602585852146149, + -0.024050947278738022, + 0.016077794134616852, + -0.00547481793910265, + -0.029812654480338097, + 0.020739758387207985, + 0.0255093052983284, + -0.02260454371571541, + 0.11150459200143814, + -0.02072780393064022, + -0.004073240794241428, + -0.0017631782684475183, + 0.046141479164361954, + 0.008881636895239353, + -0.03029080480337143, + -0.021134231239557266, + 0.029501857236027718, + 0.00556148262694478, + -0.00011701601761160418, + -0.007477071136236191, + 0.030147360637784004, + -0.006269742269068956, + -0.021110324189066887, + 0.0011131931096315384, + 0.0016780077712610364, + -0.0679929330945015, + -0.032896723598241806, + 0.06765823066234589, + -0.003087056102231145, + 0.039064858108758926, + 0.03299235180020332, + 0.06411992013454437, + 0.0333031490445137, + 0.03899313509464264, + -0.007309718523174524, + 0.077269047498703, + -0.0744001492857933, + 0.034881044179201126, + -0.02022574655711651, + -0.002248799428343773, + 0.024301975965499878, + 0.011559276841580868, + 0.007345580030232668, + -0.027135014533996582, + -0.017703505232930183, + -0.03249029442667961, + -0.06019908934831619, + -0.007674308028072119, + -0.015157355926930904, + -0.0127546526491642, + 0.018289238214492798, + -0.021229861304163933, + -0.05627825856208801, + -0.03081676922738552, + 0.03249029442667961, + 0.008642561733722687, + -0.057617079466581345, + -0.010304133407771587, + 0.05374406278133392, + 0.005660100840032101, + 0.0056272284127771854, + 0.014189102686941624, + -0.02998000755906105 + ] + }, + { + "id": "5f190412-d836-4ab2-b9b9-78f120d1a76a", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "pharris", + "reviewDate": "2021-03-04T20:28:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a3db2d9d-500a-49d0-a85c-719c252a671a", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "cranebryce", + "reviewDate": "2022-05-04T02:37:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a1750dc1-98b5-47c8-be7f-9326cb25d599", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "amber59", + "reviewDate": "2021-08-09T16:20:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b83ebd2e-bd48-4f49-95ae-20c910aa15f1", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "ronald43", + "reviewDate": "2021-08-20T02:41:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "05984529-a97b-4e39-8bc6-42b9e83dcec6", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "nhall", + "reviewDate": "2021-12-04T07:10:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "528c4450-3659-4cd6-8efb-2a8500b6cab3", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "tgreen", + "reviewDate": "2021-02-25T01:49:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "59ee60d1-9cfc-498f-b38f-a7f85143115c", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "klewis", + "reviewDate": "2022-07-26T16:57:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9e03c85b-49fd-4848-9d69-14f724210cfb", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertsjoshua", + "reviewDate": "2021-11-24T23:46:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c195a1db-537f-4479-89b3-f52dc4f81bc5", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonesdavid", + "reviewDate": "2021-05-05T10:05:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8ec6f324-280b-413b-b437-7c044e59bf43", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "svillanueva", + "reviewDate": "2021-09-23T19:45:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "25fac1e0-f1c2-4ac7-bb04-21584d982e8c", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "rogerbenson", + "reviewDate": "2022-04-09T03:33:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9357e577-4d73-49b6-9627-70825d288c7a", + "productId": "19d5ca30-5c0b-40f6-b133-11f2530d9bb6", + "category": "Electronics", + "docType": "customerRating", + "userName": "gbush", + "reviewDate": "2022-04-17T07:39:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Super (Gold)", + "description": "This Amazing Stand Super (Gold) is a cool looking steel case featuring a super cool metal outer layer that you can place on the handle. It weighs just.27 lbs. and is made from durable, 3-ply reinforced aluminum. There is an integrated lock mechanism you can pull out when you want to push the case away from your face. It actually weighs less than 1 lb and can hold up to 8 ounces. I think these cool looking case's are definitely worth the extra extra", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-10-10T12:52:11", + "price": 200.23, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-02-10T04:41:14", + "newPrice": 204.37 + }, + { + "priceDate": "2022-07-21T04:41:14", + "newPrice": 200.23 + } + ], + "descriptionVector": [ + -0.019483491778373718, + 0.023125017061829567, + -0.036601319909095764, + 0.02870691753923893, + 0.03274714946746826, + -0.12620411813259125, + -0.032906632870435715, + 0.00148850679397583, + -0.00282583711668849, + 0.03505965322256088, + 0.005877608433365822, + 0.05874285846948624, + 0.07437217980623245, + -0.03787718340754509, + 0.03402301296591759, + -0.023935722187161446, + 0.03149786964058876, + -0.01674570143222809, + -0.010167033411562443, + -0.025676744058728218, + 0.09345696866512299, + -0.05656326189637184, + -0.01977587677538395, + -0.022885791957378387, + -0.010020840913057327, + -0.03277372941374779, + -0.015669193118810654, + -0.0032959794625639915, + -0.024706555530428886, + 0.0028574015013873577, + -0.029025884345173836, + 0.010392967611551285, + -0.020174583420157433, + 0.06528165936470032, + -0.019483491778373718, + 0.04688796401023865, + -0.028733497485518456, + 0.01709124818444252, + 0.02348385378718376, + 0.018898721784353256, + -0.024759717285633087, + -0.033012956380844116, + -0.028387952595949173, + 0.017875373363494873, + -0.009130395017564297, + 0.008220013231039047, + -0.06554745882749557, + -0.0012343310518190265, + 0.0055619655176997185, + -0.011921345256268978, + 0.026460867375135422, + -0.08112362027168274, + -0.02183586359024048, + -0.01449965126812458, + 0.03173709288239479, + -0.04460204392671585, + 0.013941461220383644, + 0.1283305585384369, + 0.06001872196793556, + -0.054277338087558746, + -0.02539764903485775, + -0.02870691753923893, + 0.00873833242803812, + 0.029025884345173836, + -0.049811817705631256, + 0.004658229183405638, + 0.01968284510076046, + 0.0053194183856248856, + -0.04425649717450142, + 0.01240643858909607, + -0.03700002655386925, + 0.034873589873313904, + 0.010399612598121166, + 0.020134713500738144, + 0.014180685393512249, + 0.019191106781363487, + 0.04938653111457825, + 0.031843412667512894, + 0.05169903114438057, + -0.007661823183298111, + 0.09563656151294708, + 0.04388437047600746, + -0.019217686727643013, + -0.03513939306139946, + 0.07075723260641098, + -0.044761527329683304, + -0.03370404615998268, + -0.07724287360906601, + -0.02918536588549614, + -0.02299211546778679, + -0.04837647080421448, + -0.010897996835410595, + 0.0198821984231472, + 0.01824750006198883, + 0.01310417614877224, + 0.09234058856964111, + -0.011343219317495823, + 0.03418249636888504, + 0.027537377551198006, + -0.0072033097967505455, + 0.01461926382035017, + 0.01123025268316269, + -0.05900866538286209, + 0.004824357107281685, + -0.04566526412963867, + 0.04162503033876419, + 0.02006826177239418, + 0.049572594463825226, + 0.022407343611121178, + -0.18957197666168213, + -0.012173859402537346, + 0.002392243128269911, + -0.013589270412921906, + 0.0038375568110495806, + 0.05026368796825409, + -0.01823420822620392, + -0.05060923472046852, + 0.031949736177921295, + 0.04776512086391449, + -0.06044400855898857, + 0.0032361734192818403, + 0.0643247589468956, + 0.017450084909796715, + 0.06565378606319427, + 0.026035578921437263, + 0.06809918582439423, + -0.024015463888645172, + -0.014074363745748997, + -0.025650162249803543, + -0.01771588996052742, + -0.042555347084999084, + 0.00814027152955532, + 0.048987824469804764, + 0.0012235327158123255, + -0.10749145597219467, + 0.04882834106683731, + -0.002719515236094594, + 0.022500375285744667, + 0.006229799706488848, + 0.10685352981090546, + -0.024998940527439117, + -0.03739873319864273, + -0.00814027152955532, + 0.06677016615867615, + -0.014433200471103191, + -0.019324008375406265, + -0.060709815472364426, + -0.0544368214905262, + -0.0644310787320137, + 0.002756063360720873, + 0.09563656151294708, + -0.06857763975858688, + -0.09510495513677597, + -0.06389947235584259, + 0.07926298677921295, + 0.08877880126237869, + -0.10100582242012024, + 0.005359289236366749, + -0.0161343514919281, + 0.07995408028364182, + 0.02471984550356865, + -0.047499317675828934, + -0.05265593156218529, + -0.028494274243712425, + 0.010718578472733498, + 0.017875373363494873, + 0.06315521895885468, + 0.05262934789061546, + -0.08069833368062973, + 0.020294196903705597, + 0.010711933486163616, + 0.04611713066697121, + 0.03952517360448837, + -0.09212794154882431, + 0.023789528757333755, + 0.011609024368226528, + 0.08011356741189957, + -0.0015508048236370087, + 0.08080466091632843, + -0.0058111571706831455, + -0.0025666775181889534, + 0.049997881054878235, + -0.06304889917373657, + -0.033252179622650146, + -0.031657349318265915, + 0.03202947601675987, + -0.007954208180308342, + 0.01857975497841835, + 0.00018575186550151557, + -0.011675475165247917, + -0.01135651022195816, + -0.060125045478343964, + -0.006425831001251936, + 0.013861720450222492, + 0.006721538957208395, + -0.0217029619961977, + 0.0016089496202766895, + -0.03997704014182091, + -0.04547920078039169, + 0.09770984202623367, + -0.0409073568880558, + 0.06698280572891235, + 0.036893706768751144, + -0.034501463174819946, + -0.010931221768260002, + -0.09675294160842896, + -0.059221308678388596, + -0.057254351675510406, + 0.005369256716221571, + 0.03128522261977196, + 0.005242999643087387, + -0.04316669702529907, + -0.06522849947214127, + 0.05874285846948624, + 0.012831726111471653, + 0.01911136507987976, + 0.028866400942206383, + -0.0385151132941246, + 0.033863529562950134, + 0.0347672663629055, + -0.02006826177239418, + -0.015416678041219711, + 0.006930860225111246, + -0.04643609747290611, + -0.01815446838736534, + -0.0065288301557302475, + 0.007469114847481251, + 0.03702660650014877, + 0.04441598057746887, + -0.07373425364494324, + -0.007867821492254734, + -0.028361370787024498, + -0.005083516705781221, + 0.047260090708732605, + -0.03774427995085716, + -0.0002558371052145958, + -0.0446552038192749, + -0.08707764744758606, + 0.006568701006472111, + -0.018513303250074387, + -0.01602802984416485, + -0.039099887013435364, + -0.034501463174819946, + -0.0842069610953331, + -0.021450446918606758, + 0.029079044237732887, + 0.057094868272542953, + -0.07564804702997208, + -0.01713111810386181, + -0.01823420822620392, + -9.931339445756748e-05, + 0.025078682228922844, + -0.0004834324645344168, + 0.02491919882595539, + 0.08447276055812836, + 0.016626089811325073, + 0.012539341114461422, + 0.018181048333644867, + 0.0471537709236145, + -0.0037877182476222515, + 0.008552269078791142, + -0.06501585245132446, + -0.009097169153392315, + 0.07835925370454788, + -0.01174192689359188, + 0.00936297420412302, + 0.003950523678213358, + -0.005090161692351103, + 0.02899930253624916, + 0.012778565287590027, + -0.017782341688871384, + -0.05239012464880943, + 0.0038242663722485304, + 0.026088740676641464, + -0.006558733526617289, + 0.0346609465777874, + -0.00446552038192749, + 0.09999576210975647, + 0.02756395749747753, + -0.02063974179327488, + 0.04723351076245308, + -0.002490258775651455, + 0.09999576210975647, + 0.03497990965843201, + 0.11620985716581345, + -0.061666712164878845, + -0.00926994252949953, + 0.015243904665112495, + 0.0019802458118647337, + -0.04909414425492287, + -0.014845198020339012, + 0.011894764378666878, + 0.05985923856496811, + 0.059646595269441605, + 0.024613523855805397, + -0.020094841718673706, + -0.03208263963460922, + 0.023643337190151215, + -0.004442262463271618, + -0.06570694595575333, + 0.012366567738354206, + 0.01891201175749302, + -0.05757331848144531, + -0.015323646366596222, + -0.012619082815945148, + 0.07288367301225662, + -0.02380281873047352, + 0.004302714951336384, + -0.050529491156339645, + -0.02111819013953209, + 0.1280115842819214, + 0.041120000183582306, + -0.01094451267272234, + 0.008552269078791142, + 0.02304527536034584, + -0.013821849599480629, + -0.04789802432060242, + 0.03633551672101021, + 0.028334790840744972, + 0.024839458987116814, + 0.06299573928117752, + 0.007209955248981714, + 0.030089102685451508, + 0.05459630489349365, + 0.016971636563539505, + -0.062198322266340256, + 0.008818074129521847, + -0.016014738008379936, + -0.056722741574048996, + -0.03774427995085716, + -0.0011911377077922225, + 0.011057479307055473, + 0.010911286808550358, + -0.012572566978633404, + -0.04042891040444374, + 0.00427281204611063, + 0.011755216866731644, + 0.029982781037688255, + -0.027643699198961258, + 0.09079891443252563, + 0.06384631246328354, + 0.04890808090567589, + -0.03649500012397766, + -0.04864227771759033, + 0.060071881860494614, + -0.061613552272319794, + 0.09414805471897125, + -0.08261212706565857, + 0.013117467053234577, + 0.03038148768246174, + 0.001648820354603231, + -0.03678738325834274, + -0.059699755162000656, + 0.001028332277201116, + 0.08436644077301025, + 0.017264021560549736, + 0.05138006806373596, + -0.08925724774599075, + 0.05236354470252991, + -0.005498836748301983, + 0.01814117655158043, + 0.0063494122587144375, + 0.06033768877387047, + 0.02501223050057888, + -0.011336574330925941, + 0.05294831469655037, + -0.04885492101311684, + 0.04422991722822189, + -0.08830035477876663, + -0.015164163894951344, + -0.03014226444065571, + -0.04787144437432289, + -0.011223607696592808, + 0.031178902834653854, + -0.011609024368226528, + -0.03293321281671524, + 0.0817083939909935, + 0.019669555127620697, + -0.06315521895885468, + 0.04935995116829872, + 0.010446128435432911, + 0.016400156542658806, + 0.0036282355431467295, + -0.02030748687684536, + 0.021251093596220016, + -0.00905065331608057, + -0.016878604888916016, + 0.0795287936925888, + -0.038966983556747437, + -0.003880749922245741, + -0.06905608624219894, + -0.012838372029364109, + 0.015562870539724827, + 0.022168120369315147, + 0.005694867577403784, + -0.05757331848144531, + -0.03527229651808739, + 0.06724861264228821, + 0.029451170936226845, + 0.041704773902893066, + 0.016107769683003426, + 0.08883196115493774, + 0.026195062324404716, + 0.03774427995085716, + -0.021729541942477226, + -0.03662789985537529, + 0.0004277795960661024, + -0.004791131243109703, + -0.04622345417737961, + -0.07602017372846603, + 0.007183374371379614, + -0.05837073177099228, + 0.014340168796479702, + 0.0284145325422287, + 0.043140117079019547, + 0.019403750076889992, + 0.043326180428266525, + 0.08229316771030426, + 0.14768114686012268, + -0.03782402351498604, + 0.019403750076889992, + -0.03782402351498604, + 0.003807653672993183, + 0.004103361628949642, + 0.014007912948727608, + 0.04367172718048096, + -0.0396580770611763, + -0.010778384283185005, + -0.0034720750991255045, + -0.11142536997795105, + 0.03928595036268234, + -0.06278309226036072, + -0.07639230042695999, + 0.023683207109570503, + -0.034873589873313904, + -0.011662185192108154, + 0.03644183650612831, + -0.0019088106928393245, + -0.01569577306509018, + 0.04614371061325073, + 0.006339444313198328, + -0.00027847205637954175, + 0.01632041484117508, + -0.026726672425866127, + -0.026327965781092644, + -0.0481904074549675, + -0.0050270333886146545, + -0.010771739296615124, + 0.0320560596883297, + -0.0037079767789691687, + -0.0571480318903923, + 0.0693218931555748, + 0.028334790840744972, + 0.021543478593230247, + -0.013808558695018291, + 0.018686076626181602, + 0.037850603461265564, + 0.04492101073265076, + -0.024081913754343987, + 0.03676080331206322, + 0.06177303567528725, + 0.08447276055812836, + 0.04244902729988098, + -0.06528165936470032, + -0.013044370338320732, + 0.044867850840091705, + -0.057254351675510406, + -0.016453316435217857, + 0.011841603554785252, + 0.06613223254680634, + -0.04537287726998329, + -0.03702660650014877, + -0.08845983445644379, + -0.02745763584971428, + 0.014659134671092033, + -0.09478598833084106, + 0.03596339002251625, + -0.03806324675679207, + -0.05039658769965172, + -0.03038148768246174, + -0.014738875441253185, + 0.07293683290481567, + -0.028387952595949173, + -0.023244628682732582, + -0.007582081947475672, + -0.07011930644512177, + -0.04720693081617355, + 0.009695230051875114, + 0.0003013146633747965, + -0.012386503629386425, + -0.0046615516766905785, + 0.06586642563343048, + 0.02707221917808056, + -0.017543116584420204, + 0.01863291673362255, + -0.04125290364027023, + 0.010014195926487446, + 0.007017246447503567, + 0.022739600390195847, + 0.0372658334672451, + 0.003015223192051053, + -0.06283625215291977, + -0.027205120772123337, + 0.04085419699549675, + 0.04513365402817726, + 0.05661642178893089, + -0.05191167816519737, + 0.04018968343734741, + -0.006591958925127983, + -0.04909414425492287, + 0.021915605291724205, + 0.042900893837213516 + ] + }, + { + "id": "62ac717c-28cc-4946-b50b-070212f281cd", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "doughertymichelle", + "reviewDate": "2021-12-27T21:05:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "72102a01-38ff-4d5c-8880-c61849ddb4c2", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessica50", + "reviewDate": "2022-09-19T09:16:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c07ef666-51ab-4111-ad24-2865229e777b", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "mmejia", + "reviewDate": "2021-05-09T11:27:05", + "stars": 2, + "verifiedUser": true + }, + { + "id": "82701cac-2ada-4956-af9c-26c113112be1", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "xbell", + "reviewDate": "2021-02-24T13:48:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ff60bc01-2595-4e58-bf76-2bf603a2c9cf", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "daniel84", + "reviewDate": "2021-09-05T22:11:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5cf1d51c-c886-4212-bb59-3175771b6119", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "alexanderkelly", + "reviewDate": "2022-05-16T18:01:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9c49f0b8-635d-4ba9-9d63-aaac3f54cca2", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "davisdavid", + "reviewDate": "2022-11-26T10:21:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3bfe59a9-2d4c-4dee-9872-195c643be656", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "andersondaniel", + "reviewDate": "2021-09-24T04:35:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "365bf8fb-72bb-45d3-b839-1ff62174e95f", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "connorjones", + "reviewDate": "2021-02-10T04:41:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9d254882-84c8-4b53-86c6-bfc871a34782", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "mbarton", + "reviewDate": "2022-05-27T12:34:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "924a8405-347a-4f8e-a72f-45492212dc22", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "ronald29", + "reviewDate": "2022-11-22T08:21:32", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7b0fa3ca-1f3c-47cc-89a3-d546cf9cf9d3", + "productId": "9a5451b5-bee0-4365-b29f-8e14a8dd20ba", + "category": "Accessory", + "docType": "customerRating", + "userName": "coreyhodges", + "reviewDate": "2021-03-29T21:26:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Pro (Red)", + "description": "This Basic Phone Pro (Red) is no longer offered for purchase. Instead it was rebranded to a new version called \"Red\". You'll need to replace the blue/purple parts with red stickers to get the version you're trying to use. The Red version of this package also includes an IR blaster, some USB charging port", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-12-23T06:13:58", + "price": 202.82, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-01-17T09:13:36", + "newPrice": 188.29 + }, + { + "priceDate": "2021-08-18T09:13:36", + "newPrice": 219.54 + }, + { + "priceDate": "2022-03-19T09:13:36", + "newPrice": 183.51 + }, + { + "priceDate": "2022-10-18T09:13:36", + "newPrice": 199.86 + }, + { + "priceDate": "2024-07-13T09:13:36", + "newPrice": 202.82 + } + ], + "descriptionVector": [ + -0.07950591295957565, + -0.016788361594080925, + -0.01736411079764366, + 0.13660989701747894, + -0.027479000389575958, + -0.00977467279881239, + -0.006473921705037355, + 0.01725943014025688, + 0.0292847640812397, + 0.02105414867401123, + 0.04836304113268852, + -0.05385884270071983, + 0.03247756138443947, + -0.08186125010251999, + 0.0823323205113411, + 0.023488003760576248, + -0.10337338596582413, + -0.007838058285415173, + -0.052340954542160034, + 0.004275601822882891, + 0.122163787484169, + -0.06751982867717743, + -0.06317552924156189, + -0.021786922588944435, + 0.044463641941547394, + -0.007805344648659229, + -0.05767973139882088, + 0.004691057838499546, + -0.0184371005743742, + 0.01731177046895027, + -0.030279241502285004, + -0.00487098004668951, + -0.013065611012279987, + 0.00862971507012844, + -0.024861954152584076, + 0.056475888937711716, + -0.025084402412176132, + 0.003304022829979658, + 0.009238178841769695, + 0.02202245593070984, + -0.004844809416681528, + 0.02115883119404316, + 0.014707808382809162, + -0.046321745961904526, + 0.01943157985806465, + 0.05268117040395737, + -0.029310934245586395, + -0.006555704399943352, + -0.01562377531081438, + -0.01948392018675804, + 0.006588417571038008, + 0.0398838073015213, + -0.063646599650383, + 0.0066603864543139935, + 0.04668813198804855, + -0.03896784037351608, + -0.03101201541721821, + 0.13472561538219452, + -0.016736019402742386, + -0.04519641399383545, + -0.04362618550658226, + -0.0126272551715374, + 0.021145746111869812, + 0.04187276214361191, + -0.026340585201978683, + 0.08013400435447693, + -0.06385596096515656, + -0.055115025490522385, + -4.0814698877511546e-05, + 0.0005675722495652735, + 0.018214652314782143, + 0.015597604215145111, + 0.011724373325705528, + 0.06793855875730515, + -0.03321033716201782, + 0.053701817989349365, + 0.05699929967522621, + 0.014145143330097198, + 0.04401874169707298, + -0.03242522105574608, + -0.010906546376645565, + 0.05281202122569084, + -0.004625631961971521, + -0.02949412725865841, + -0.03276543691754341, + 0.010213028639554977, + 0.0858391672372818, + -0.08981707692146301, + 0.019326897338032722, + 0.03661249577999115, + 0.00401389691978693, + 0.03710973635315895, + 0.04168957099318504, + -0.008492319844663143, + 0.05773207172751427, + 0.03014838881790638, + 0.012359008193016052, + 0.03998848795890808, + -0.07987229526042938, + -0.05432990938425064, + 0.04904347285628319, + -0.027400489896535873, + -0.006712727248668671, + 0.028368797153234482, + 0.09374264627695084, + 0.014354506507515907, + -0.040825944393873215, + 0.008413808420300484, + -0.021328939124941826, + -0.011351444758474827, + 0.019523175433278084, + 0.05226244404911995, + -0.040878284722566605, + 0.011482296511530876, + -0.005430373828858137, + 0.0277668759226799, + -0.022755229845643044, + -0.0181753970682621, + 0.030776480212807655, + 0.014956427738070488, + 0.031169038265943527, + 0.021289683878421783, + -0.018921254202723503, + -0.02388055995106697, + 0.009388658218085766, + -0.06301850825548172, + 0.030331583693623543, + 0.08343148231506348, + 0.011194421909749508, + -0.0651644915342331, + -0.08730471134185791, + 0.03590589389204979, + 0.0808144360780716, + 0.047839630395174026, + 0.002180327894166112, + 0.10075633972883224, + 0.017848266288638115, + 0.0343356654047966, + -0.037894852459430695, + 0.08976473659276962, + 0.00848577730357647, + 0.036376964300870895, + 0.09081155806779861, + -0.0174164529889822, + -0.023226298391819, + 0.033707574009895325, + -0.012810448184609413, + 0.030828822404146194, + 0.04108764976263046, + 0.02923242375254631, + -0.0807620957493782, + -0.04454215243458748, + 0.02944178692996502, + -0.012182356789708138, + 0.0049331351183354855, + 0.025424618273973465, + -0.05699929967522621, + -0.007295020390301943, + -0.047944314777851105, + 0.0883515328168869, + -0.032843947410583496, + -0.0058196596801280975, + 0.01776975393295288, + 0.015545263886451721, + -0.03970061242580414, + -0.014694723300635815, + 0.10949727892875671, + 0.056423548609018326, + -0.08515873551368713, + 0.0005066440789960325, + 0.024011412635445595, + -0.03059328719973564, + -0.004906964488327503, + -0.05480097979307175, + -0.010396221652626991, + -0.008754024282097816, + 0.06856665015220642, + -0.0004780201124958694, + 0.022899167612195015, + -0.08793280273675919, + 0.03690037131309509, + -0.012987099587917328, + -0.05726100504398346, + -0.029310934245586395, + 0.022388843819499016, + 0.029782002791762352, + -0.030619457364082336, + 0.010448562912642956, + -0.07317265123128891, + -0.009990579448640347, + 0.015231217257678509, + 0.02418152056634426, + 0.00868205539882183, + 0.015990162268280983, + 0.05045668035745621, + -0.009388658218085766, + 0.023867474868893623, + 0.043757036328315735, + -0.0600874163210392, + 0.04912198707461357, + -0.02393290214240551, + 0.05548141151666641, + 0.08191359043121338, + -0.04438512772321701, + -0.012332837097346783, + 0.015872394666075706, + -0.039962317794561386, + 0.04776111990213394, + 0.030436264351010323, + 0.02382821962237358, + -0.036376964300870895, + -0.06532151252031326, + 0.013144122436642647, + -0.027793046087026596, + 0.1080317273736, + 0.04475151747465134, + 0.02419460564851761, + -0.04145403578877449, + -0.02560781128704548, + -0.05179137364029884, + 0.03242522105574608, + -0.007779174484312534, + 0.028394967317581177, + 0.012175814248621464, + -0.11054409295320511, + 0.02792389877140522, + 0.03619376942515373, + 0.016997724771499634, + 0.02479652687907219, + 0.034466519951820374, + -0.07448117434978485, + -0.04187276214361191, + 0.05296904593706131, + -0.044201936572790146, + -0.0026203191373497248, + 0.09154433012008667, + -0.009813928976655006, + -0.020727017894387245, + -0.10525766015052795, + 0.0069678896106779575, + -0.024116095155477524, + 0.056318867951631546, + -0.04100913926959038, + -0.048493895679712296, + 0.09426605701446533, + -0.04831070080399513, + 0.062390416860580444, + -0.04802282527089119, + -0.11912801116704941, + -0.03493758663535118, + -0.034309495240449905, + -0.0012709037400782108, + -0.02999136596918106, + 0.009807386435568333, + -0.04095679521560669, + -0.0061958604492247105, + 0.05262883007526398, + -0.018855828791856766, + 0.024403970688581467, + -0.03548716753721237, + 0.023396406322717667, + 0.011429956182837486, + -0.011632776819169521, + 0.059406984597444534, + -0.020740102976560593, + 0.06526917219161987, + 0.004942948929965496, + -0.05563843622803688, + -0.0020118553657084703, + 0.04268404841423035, + 0.04616472125053406, + -0.0479704849421978, + 0.010435477830469608, + 0.03907252103090286, + 0.0064150383695960045, + 0.056528229266405106, + -0.07401011139154434, + 0.0888749435544014, + -0.01686687208712101, + 0.001360864844173193, + 0.015872394666075706, + 0.020766273140907288, + 0.05987805128097534, + -0.06396064907312393, + -0.01964094303548336, + 0.016526656225323677, + -0.07249221950769424, + 0.0044915080070495605, + -0.012398263439536095, + -0.007838058285415173, + -0.044306617230176926, + -0.0056070247665047646, + 0.050927747040987015, + -0.05542907118797302, + 0.05333543196320534, + -0.05344011262059212, + 0.041977446526288986, + -0.037083566188812256, + 0.023265553638339043, + 0.0843212753534317, + 0.03404778987169266, + -0.059406984597444534, + -0.08672896027565002, + -0.03792102262377739, + 0.02520217001438141, + 0.04318128898739815, + 0.029049228876829147, + 0.034414175897836685, + -0.02868284285068512, + -0.035173121839761734, + 0.06134359911084175, + -0.0964643806219101, + -0.034257154911756516, + -0.053754158318042755, + 0.06940410286188126, + 0.007105284370481968, + -0.010965430177748203, + -0.023998327553272247, + -0.03731910139322281, + 0.006876292638480663, + -0.025228340178728104, + -0.05485332012176514, + -0.06647301465272903, + 0.03818272799253464, + 0.07762163877487183, + -0.01686687208712101, + 0.010095261968672276, + 0.024155350401997566, + -0.0031911625992506742, + -0.021485961973667145, + -0.06736280769109726, + 0.03352438285946846, + 0.03321033716201782, + -0.03959593176841736, + 0.04786580428481102, + 0.025830261409282684, + 0.06265212595462799, + 0.035984404385089874, + 0.011861768551170826, + -0.0560571625828743, + 0.055219706147909164, + 0.06417001038789749, + -0.03933422639966011, + -0.05108477175235748, + -0.008642800152301788, + -0.05610950291156769, + -0.018397845327854156, + -0.007641779258847237, + 0.028551990166306496, + -0.06197169050574303, + 0.0019006308866664767, + -0.050325825810432434, + 0.011462668888270855, + -0.08050038665533066, + 0.07610374689102173, + 0.0509800910949707, + -0.012666511349380016, + -0.020792443305253983, + 0.0037489207461476326, + 0.004602732602506876, + 0.05537673085927963, + -0.028709013015031815, + 0.07332967966794968, + -0.009630735963582993, + 0.027845388278365135, + 0.0651121437549591, + 0.020766273140907288, + 0.06396064907312393, + -0.03828740864992142, + 0.03695271536707878, + 0.06045380234718323, + 0.03187564015388489, + -0.09321924299001694, + -0.019654028117656708, + 0.018908169120550156, + 0.013674073852598667, + 0.038653794676065445, + -0.003909214865416288, + -0.013517051003873348, + 0.05307372659444809, + -0.04255319759249687, + 0.006199131719768047, + -0.07971527427434921, + 0.013006727211177349, + 0.1151501014828682, + -0.012758107855916023, + -0.05074455589056015, + -0.026903251186013222, + -0.006467379163950682, + -0.02923242375254631, + -0.02414226531982422, + -0.07552799582481384, + -0.020478397607803345, + 0.11399859935045242, + -0.04700217768549919, + -0.0681479200720787, + -0.011619691736996174, + -0.014001205563545227, + 0.057941436767578125, + -0.01884274370968342, + -0.018188482150435448, + -0.005463086999952793, + -0.01670984923839569, + -0.030436264351010323, + -0.08275105059146881, + -0.04079977422952652, + -0.00790348369628191, + -0.0059177991934120655, + -0.03150925412774086, + -0.0833268016576767, + 0.05773207172751427, + 0.026850908994674683, + 0.028054751455783844, + 0.021499047055840492, + -0.02711261436343193, + -0.006055193953216076, + 0.04014551267027855, + 0.03226820006966591, + 0.029101571068167686, + 0.039360396564006805, + 0.027845388278365135, + 0.04367852583527565, + -0.020674677565693855, + -0.02121117152273655, + -0.0013886709930375218, + -0.04619089141488075, + 0.004321400076150894, + -0.044515982270240784, + -0.06804323941469193, + 0.006218759808689356, + 0.01695846952497959, + -0.025463873520493507, + 0.026196647435426712, + 0.0025058232713490725, + 0.0025270867627114058, + 0.07202115654945374, + -0.07762163877487183, + -0.0048349956050515175, + 0.01332731544971466, + 0.056789934635162354, + -0.03292246162891388, + 0.0393865667283535, + -0.07641779631376266, + 0.05563843622803688, + -0.043757036328315735, + 0.03726676106452942, + -0.02732197754085064, + -0.003892858512699604, + 0.044201936572790146, + -0.01216927170753479, + -0.07662715762853622, + 0.015466751530766487, + -0.035879723727703094, + -0.01670984923839569, + 0.01863338053226471, + -0.023344065994024277, + -0.006778153590857983, + 0.009244721382856369, + 0.07113135606050491, + -0.005011646542698145, + -0.0585695281624794, + 0.00623511616140604, + 0.034257154911756516, + 0.008727854117751122, + -0.015780797228217125, + -0.0046158176846802235, + -0.002971984911710024, + -0.040982965379953384, + -0.008093220181763172, + -0.004462066572159529, + -0.042291492223739624, + -0.01625186577439308, + 0.047185368835926056, + 0.04134935513138771, + -0.007118369918316603, + 0.03797336295247078, + -0.03902018070220947, + -0.06982283294200897, + -0.016395803540945053, + -0.029624979943037033, + 0.01858103834092617, + 0.005842559039592743, + -0.06600194424390793, + -0.029101571068167686, + 0.035016097128391266, + 0.014864831231534481, + -0.06202403083443642, + -0.0043704695999622345, + -0.020661592483520508, + 0.055167365819215775, + 0.04124467074871063, + 0.014864831231534481, + -0.005688807461410761, + 0.04530109465122223, + -0.0071576256304979324, + -0.062128711491823196, + 0.08165188878774643, + -0.002474745735526085, + -0.03467588126659393, + -0.012601085007190704, + -0.0016160269733518362, + -0.02130276896059513, + -0.008858706802129745, + -0.08552511781454086, + -0.013948864303529263, + -0.007452043239027262, + 0.01822773739695549, + 0.09531287848949432, + 0.05090157687664032, + -0.029153911396861076, + 0.023762792348861694, + -0.03276543691754341 + ] + }, + { + "id": "41dd3fc7-b96a-4490-b50b-1c8ad042f5fa", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "customerRating", + "userName": "marystanley", + "reviewDate": "2022-10-20T01:11:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d511b86f-9eae-4c07-9c89-94e7db3ba2bf", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrisnatalie", + "reviewDate": "2021-01-17T09:13:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5d4f7a0c-d5bd-47a6-99ca-2db6ba5d64d3", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimallison", + "reviewDate": "2022-08-25T14:01:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "60cbae61-8756-4c38-8926-2fd2832b93ee", + "productId": "139d660c-ed66-4155-9e17-f3e9f7268f57", + "category": "Electronics", + "docType": "customerRating", + "userName": "amanda57", + "reviewDate": "2021-12-19T01:17:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone + (Black)", + "description": "This Amazing Phone + (Black) is rated 3.3 out of 5 by 2.\n\nRated 4 out of 5 by JB from Amazing! Bought this phone from Zara, and the back light is amazing, it works with my LG G4 as well as other cameras such as the LG E3X/35, Sony TSS, Canon", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-05-25T22:12:33", + "price": 176.29, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-03-23T13:12:35", + "newPrice": 190.24 + }, + { + "priceDate": "2023-09-21T13:12:35", + "newPrice": 176.29 + } + ], + "descriptionVector": [ + -0.02531232126057148, + 0.04569056257605553, + -0.017168575897812843, + 0.037962187081575394, + -0.0037288786843419075, + 0.03929640352725983, + -0.045212261378765106, + 0.01215268298983574, + -0.0008346709655597806, + 0.06691212952136993, + 0.025538885965943336, + 0.0006167597020976245, + 0.0016976625192910433, + -0.007652854546904564, + -0.011529630050063133, + -0.004515561740845442, + -0.01906920224428177, + -0.029327552765607834, + 0.04649612680077553, + -0.004886876326054335, + 0.06686178594827652, + -0.13452912867069244, + -0.052965812385082245, + 0.028899597004055977, + 0.046596821397542953, + -0.026407383382320404, + 0.008722743950784206, + 0.030183464288711548, + 0.04367665573954582, + -0.04511156678199768, + -0.0351930633187294, + -0.001233519404195249, + -0.01481481920927763, + 0.07325594872236252, + -0.016853902488946915, + 0.02746468596160412, + 0.029780682176351547, + -0.0025268266908824444, + -0.03348124027252197, + 0.0903741717338562, + 0.048812124878168106, + 0.022266283631324768, + 0.008666102774441242, + -0.038364969193935394, + 0.018062246963381767, + -0.013669407926499844, + 0.006029140669852495, + -0.008710157126188278, + -0.02650807984173298, + -0.004056138917803764, + -0.022694239392876625, + 0.016375599429011345, + -0.048560384660959244, + -0.030208637937903404, + 0.033002935349941254, + 0.023487215861678123, + -0.009924796409904957, + 0.14187990128993988, + 0.059913795441389084, + -0.04294661432504654, + -0.04010196775197983, + 0.00464772479608655, + 0.043651480227708817, + -0.014172885566949844, + -0.0017983579309657216, + 0.05190850794315338, + -0.031492505222558975, + -0.014852579683065414, + 0.007319300901144743, + 0.02691086009144783, + 0.023210303857922554, + -0.00827590748667717, + -0.00046060304157435894, + 0.028572335839271545, + 0.03823909908533096, + 0.06303535401821136, + 0.07612576335668564, + 0.10502535849809647, + -0.008546526543796062, + 0.03506719321012497, + 0.07350768148899078, + 0.03350641205906868, + -0.015053970739245415, + 0.05578528344631195, + 0.004153687506914139, + 0.01875452883541584, + -0.0033953250385820866, + -0.16896697878837585, + -0.06177666410803795, + 0.058604754507541656, + -0.023248063400387764, + -0.03778596967458725, + -0.0667610913515091, + -0.029302377253770828, + 0.05027220770716667, + -0.0014451371971517801, + -8.840353257255629e-05, + 0.05482867732644081, + -0.028798900544643402, + 0.041008226573467255, + 0.0035778353922069073, + -0.02595425397157669, + -0.018930746242403984, + -0.005626358557492495, + -0.01708046719431877, + 0.0037414655089378357, + -0.0032977762166410685, + -0.049491818994283676, + 0.02347462810575962, + -0.08720226585865021, + -0.03514271602034569, + -0.016325250267982483, + -0.052915461361408234, + -0.0021964197512716055, + -0.03174424171447754, + 0.05583563074469566, + -0.008823439478874207, + -0.01253658439964056, + 0.05578528344631195, + -0.021649522706866264, + -0.032927416265010834, + -0.02643255703151226, + -0.016123859211802483, + 0.032650500535964966, + 0.03990057483315468, + -0.007703202310949564, + 0.02786746807396412, + -0.001198905287310481, + 0.03270085155963898, + -0.0871519148349762, + -0.07083925604820251, + 0.029805855825543404, + 0.12385541200637817, + -0.010138774290680885, + -0.036728668957948685, + 0.057043977081775665, + 0.034614063799381256, + 0.040404051542282104, + -0.04886247217655182, + 0.022694239392876625, + 0.05281476676464081, + 0.007961235009133816, + 0.056238412857055664, + 0.026810165494680405, + -0.00047751673264428973, + 0.054526589810848236, + -0.005525663029402494, + -0.030661767348647118, + -0.008257027715444565, + 0.023600498214364052, + -0.03111489675939083, + -0.14016807079315186, + -0.04694925621151924, + -0.09188460558652878, + 0.021485893055796623, + -0.008452124893665314, + 0.002345889573916793, + -0.04259417951107025, + -0.09485512226819992, + 0.03811322897672653, + -0.03934675082564354, + -0.024091389030218124, + 0.022883042693138123, + 0.01891815848648548, + -0.009949970059096813, + 0.00620850408449769, + 0.0343874990940094, + 0.047276515513658524, + -0.09787598252296448, + 0.05336859077215195, + 0.06026623025536537, + 0.009723405353724957, + -0.008439538069069386, + -0.05367067828774452, + -0.0467730388045311, + 0.013606473803520203, + 0.08105984330177307, + 0.01888039894402027, + -0.03562101721763611, + -0.046168867498636246, + 0.046647172421216965, + 0.020453764125704765, + -0.042040351778268814, + -0.028698205947875977, + 0.04075648635625839, + -0.02371378056704998, + -0.003104252042248845, + -0.016161620616912842, + 0.015519686974585056, + 0.036048974841833115, + -0.015884708613157272, + -0.0033544173929840326, + -0.020126504823565483, + -0.021611763164401054, + -0.010988391935825348, + 0.027011556550860405, + 0.018062246963381767, + -0.043122828006744385, + -0.02635703608393669, + 0.023361345753073692, + 0.04571573808789253, + 0.04498569667339325, + 0.06263257563114166, + -0.033808499574661255, + 0.0161993820220232, + -0.042845916002988815, + 0.00867868959903717, + 0.022694239392876625, + 0.0037509058602154255, + -0.00927656888961792, + 0.0471758209168911, + 0.013895973563194275, + -0.038364969193935394, + 0.011630325578153133, + 0.04085718095302582, + 0.07043647021055222, + 0.03486580401659012, + 0.014072190038859844, + -0.019925113767385483, + -0.08332549035549164, + 0.03506719321012497, + -0.032247718423604965, + 0.025488536804914474, + 0.0021177513990551233, + 0.004915196914225817, + -0.0061864773742854595, + 0.017244096845388412, + 0.05170711874961853, + -0.0029956898652017117, + 0.04266969859600067, + -0.02663394808769226, + -0.006538911256939173, + -0.00646968325600028, + 0.0028320597484707832, + -0.055885978043079376, + 0.04783034324645996, + -0.037408363074064255, + 0.003980617504566908, + -0.06202840059995651, + 0.09742285311222076, + -0.045640215277671814, + -0.04601782560348511, + -0.017571358010172844, + -0.03745871037244797, + 0.05095190182328224, + -0.08659809082746506, + 0.04020266234874725, + -0.006170743610709906, + -0.12164011597633362, + -0.016501467674970627, + -0.02022719942033291, + -0.04017748683691025, + -0.057195018976926804, + 0.022379565984010696, + 0.05538250133395195, + 0.015582622028887272, + 0.051002249121665955, + -0.001950974459759891, + 0.02779194712638855, + -0.06887569278478622, + 0.004644577857106924, + -0.011542216874659061, + -0.029679985716938972, + 0.04309765622019768, + -0.013002300634980202, + 0.023373933508992195, + -0.001908493577502668, + -0.042292091995477676, + -0.009251395240426064, + 0.00551936961710453, + 0.0034267923329025507, + -0.028094032779335976, + 0.06489822268486023, + -0.02766607701778412, + -0.043651480227708817, + 0.07189655303955078, + -0.07849211245775223, + 0.050523944199085236, + 0.0009998744353652, + 0.009723405353724957, + 0.08951826393604279, + 0.07501811534166336, + 0.07003369182348251, + -0.008987069129943848, + 0.06313604861497879, + -0.058000583201646805, + -0.021624349057674408, + -0.012624693103134632, + -0.005953618790954351, + -0.0010541555238887668, + -0.019736310467123985, + -0.013468017801642418, + 0.009528307244181633, + -0.06545204669237137, + 0.027087077498435974, + 0.002039083046838641, + 0.042569003999233246, + -0.07652854919433594, + 0.0069039324298501015, + 0.06026623025536537, + 0.0827716663479805, + 0.01631266437470913, + -0.08387931436300278, + -0.053721025586128235, + 0.03647692874073982, + 0.0755719393491745, + -0.016942011192440987, + 0.030661767348647118, + -0.030938679352402687, + 0.04455773904919624, + 0.05097707360982895, + -0.05966205894947052, + -0.03738318756222725, + -0.043727003037929535, + 0.02287045493721962, + -0.041008226573467255, + -0.019283179193735123, + 0.03501684591174126, + 0.021825740113854408, + -0.0033984717447310686, + 0.05301615968346596, + -0.044129785150289536, + 0.006639606785029173, + 0.07808932662010193, + 0.0339847169816494, + -0.018288811668753624, + -0.012265965342521667, + -0.10744205117225647, + 0.015771426260471344, + -0.0017149695195257664, + -0.04445704445242882, + -0.039447445422410965, + 0.03708110377192497, + 0.031895287334918976, + 0.0008220840245485306, + -0.005500489380210638, + 0.04851003736257553, + 0.0559866726398468, + 0.07033577561378479, + 0.01755877025425434, + -0.01325403992086649, + 0.059359971433877945, + -0.02266906574368477, + 0.017974138259887695, + 0.036602798849344254, + -0.07667958736419678, + -0.04674786701798439, + -0.0021020176354795694, + 0.07708237320184708, + -0.09702007472515106, + 0.001375909079797566, + -0.017533596605062485, + 0.05286511406302452, + 0.02419208362698555, + -0.007407409604638815, + 0.0030790783930569887, + 0.03144215792417526, + -0.08161366730928421, + -0.004034111741930246, + -0.0029075813945382833, + 0.009673057124018669, + -0.03635105863213539, + 0.0475786030292511, + -0.012221910990774632, + 0.02415432222187519, + 0.02479625679552555, + 0.019258005544543266, + 0.08453383296728134, + -0.006847291253507137, + -0.06630796194076538, + -0.029679985716938972, + -0.00101246137637645, + -0.11187265068292618, + 0.033607110381126404, + -0.033405717462301254, + -0.02411656267940998, + 0.05613771826028824, + 0.010503794997930527, + 0.052160248160362244, + 0.05739641189575195, + -0.07693132758140564, + 0.07093995064496994, + -0.010906577110290527, + 0.002778565278276801, + 0.058000583201646805, + 0.010598196648061275, + -0.012096041813492775, + 0.06525065749883652, + -0.02139778435230255, + 0.019245419651269913, + -0.02723812125623226, + -0.0363762341439724, + -0.013266626745462418, + 0.1295950561761856, + 0.0903741717338562, + -0.07793828099966049, + 0.03783631697297096, + 0.05890684202313423, + 0.029176509007811546, + -0.022945977747440338, + 0.019862178713083267, + 0.011303065344691277, + 0.04166274517774582, + 0.014940688386559486, + -0.014550494030117989, + -0.07295385748147964, + 0.04702477902173996, + 0.016060926020145416, + -0.06540170311927795, + -0.06107179448008537, + -0.03192045912146568, + -0.02402845397591591, + -0.008143745362758636, + -0.08624565601348877, + 0.03338054567575455, + 0.04042922705411911, + 0.03743353486061096, + -0.029604464769363403, + 0.0679694339632988, + -0.0007158817606978118, + -0.005160642322152853, + 0.03494132310152054, + -0.010843642055988312, + -0.0004802701296284795, + -0.08619531244039536, + 0.0359986275434494, + -0.0029311818070709705, + 0.03390919417142868, + -0.06504926830530167, + -0.039170533418655396, + 0.09893328696489334, + -0.04825829714536667, + 0.014160298742353916, + 0.022920804098248482, + -0.036728668957948685, + -0.007973821833729744, + -0.04913938418030739, + 0.003936563152819872, + -0.01143522746860981, + -0.017093053087592125, + -0.01157368440181017, + 0.033053282648324966, + -0.044608086347579956, + 0.026105297729372978, + -0.13533470034599304, + 0.016413358971476555, + -0.047276515513658524, + 0.07642785459756851, + 0.03209667652845383, + -0.022127827629446983, + -0.026180818676948547, + -0.00704868184402585, + 0.014940688386559486, + -0.03181976452469826, + 0.00999402441084385, + -0.014349102973937988, + -0.05402311310172081, + 0.11992829293012619, + -0.0547783300280571, + -0.03179458901286125, + -0.062078747898340225, + 0.03524341061711311, + -0.014588254503905773, + 0.004956104326993227, + -0.03695523366332054, + -0.06706317514181137, + -0.08377861976623535, + -0.02167469635605812, + -0.0479813851416111, + -0.011145728640258312, + -0.02518645115196705, + -0.06348848342895508, + 0.008773092180490494, + 0.0023820768110454082, + -0.042971786111593246, + -0.009798926301300526, + -0.043047308921813965, + -0.011668086051940918, + 0.012675040401518345, + -0.017609117552638054, + 0.0067214216105639935, + -0.02894994430243969, + 0.049365948885679245, + 0.06927847117185593, + 0.06379057466983795, + -0.034689586609601974, + 0.02151106670498848, + -0.06263257563114166, + -0.011007272638380527, + 0.031643547117710114, + -0.02215300127863884, + 0.07486706972122192, + -0.05210990086197853, + -0.046999603509902954, + -0.03385884687304497, + -0.030133115127682686, + -0.04455773904919624, + 0.0010211148764938116, + -0.05850405991077423, + -0.00468863220885396, + -0.011208662763237953, + -0.01943422295153141, + -0.025538885965943336, + 0.043852873146533966, + 0.030485549941658974, + -0.010409393347799778, + -0.04347526282072067, + 0.024695560336112976, + -0.008250733837485313, + -0.024443821981549263, + 0.06902673840522766, + -0.08523870259523392 + ] + }, + { + "id": "c94201cf-18e3-42e8-9b31-38a7e5396591", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "wgentry", + "reviewDate": "2021-11-12T18:23:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "53abe7eb-9539-49c5-b0e3-c63529023a57", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarahtorres", + "reviewDate": "2022-02-09T03:24:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fed3e50b-13bc-4c14-9eda-febd9d4d1019", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "edward60", + "reviewDate": "2022-12-30T08:26:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aabb208d-46b8-43e1-a3bf-9df5178619b6", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathan71", + "reviewDate": "2021-08-16T21:52:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "34acf808-d8f9-4818-b7e9-e800bad7a1ca", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "amandasparks", + "reviewDate": "2022-12-06T16:44:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6159340e-1bd0-44e3-a05c-679215aaaee8", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "mark13", + "reviewDate": "2021-04-21T07:39:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d3b6641b-2161-4390-a52e-eca42d9d9f6d", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "baileypaul", + "reviewDate": "2022-06-27T17:15:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "da2f5f6e-655b-4b23-9670-53e29790683c", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "angela16", + "reviewDate": "2021-03-27T00:42:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ed40d85c-1ead-4c9b-93a0-25b4c9e544d7", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "hcochran", + "reviewDate": "2021-05-08T01:22:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "36e006ef-ce24-4eb2-bde9-7fd888c4d936", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "pennyjames", + "reviewDate": "2022-04-17T21:36:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ee69850d-bf3b-4938-b10f-2943763185ee", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "charlessanchez", + "reviewDate": "2022-04-25T16:47:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "24ebf8a8-bdf0-4a18-92ca-423ee2e07fdf", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "jenniferbaker", + "reviewDate": "2022-10-22T00:40:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e08cf8ce-1dc3-4c2a-8134-39f3c181b162", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "lewisstephanie", + "reviewDate": "2021-03-23T13:12:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "18c8f33d-4c87-4848-b21e-0e3b168b6e44", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "sean08", + "reviewDate": "2022-06-25T17:29:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f29914a7-44f5-4065-bad1-5958a8562adb", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "swoods", + "reviewDate": "2022-11-20T15:40:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bbd79089-7d61-40cd-834c-c6f51840a14a", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "igonzalez", + "reviewDate": "2021-12-17T01:43:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "85a3e37c-ec7c-4952-93c6-dd8f3c0c4f48", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "jaredsanford", + "reviewDate": "2022-07-11T07:58:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a2df898c-9ed0-43a9-b3b9-1b99851abf53", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrisanthony", + "reviewDate": "2022-05-29T00:21:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "201a0792-417d-4770-8109-5e99ce768c71", + "productId": "b053e284-e21c-42e5-8eb6-d60a7c216d98", + "category": "Electronics", + "docType": "customerRating", + "userName": "hberry", + "reviewDate": "2022-04-17T17:19:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "product", + "name": "Basic TV 3000 (Silver)", + "description": "This Basic TV 3000 (Silver) is powered by the Sony V10D 2160 (Acer) and V6V 6800G (Blacktop). It utilizes an aluminum body and comes pre-installed so it's compatible with the best TV sets on the market. The 5.7\" AMOLED display features HD color, OLED HD and 4K displays. You will not lose any of your money with this system. The 4k UHD screen is capable of up to 1080p", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-09-20T05:20:30", + "price": 483.19, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-01-06T09:48:12", + "newPrice": 482.48 + }, + { + "priceDate": "2021-07-03T09:48:12", + "newPrice": 486.69 + }, + { + "priceDate": "2021-12-28T09:48:12", + "newPrice": 457.11 + }, + { + "priceDate": "2022-06-24T09:48:12", + "newPrice": 442.95 + }, + { + "priceDate": "2022-12-19T09:48:12", + "newPrice": 503.96 + }, + { + "priceDate": "2024-03-23T09:48:12", + "newPrice": 483.19 + } + ], + "descriptionVector": [ + 0.06076745688915253, + 0.05855683609843254, + -0.03102235123515129, + 0.0363769605755806, + -0.04308250546455383, + 0.014086554758250713, + -0.0685783103108406, + 0.042050883173942566, + 0.03458390384912491, + 0.022597437724471092, + 0.04291056841611862, + -0.046963367611169815, + 0.06017795577645302, + 0.03234872221946716, + 0.06577818840742111, + 0.049075737595558167, + -0.05551109462976456, + 0.015904175117611885, + 0.004709846340119839, + 0.002904507564380765, + 0.05315310135483742, + -0.08302101492881775, + -0.01249613706022501, + -0.020411379635334015, + -0.029597729444503784, + -0.00503529841080308, + -0.0114153902977705, + -0.015597144141793251, + -0.031169725582003593, + -0.06661331653594971, + -0.013263712637126446, + 0.02400977723300457, + -0.025913365185260773, + 0.02635548822581768, + 0.005151969846338034, + -0.021528970450162888, + -0.031538162380456924, + 0.011974185705184937, + 0.04745461791753769, + -0.01914641447365284, + 0.07933665066957474, + 0.06808705627918243, + 0.009075818583369255, + 0.011980325914919376, + 0.004777392838150263, + 0.009775848127901554, + -0.007890680804848671, + -0.028369607403874397, + 0.01934291422367096, + -0.06194645166397095, + -0.002708008047193289, + -0.022523749619722366, + -0.027387110516428947, + 0.04082275927066803, + 0.036229584366083145, + 0.007166089490056038, + 0.049468737095594406, + 0.24601730704307556, + 0.04467906430363655, + -0.011667154729366302, + 0.04669318348169327, + -0.058458585292100906, + 0.023506246507167816, + 0.016481392085552216, + -0.02969598025083542, + -0.005059860646724701, + -0.008160867728292942, + 0.04210000857710838, + -0.05855683609843254, + 0.03374877944588661, + -0.009837253950536251, + -0.0570339672267437, + 0.06071833148598671, + 0.09073362499475479, + -0.018642885610461235, + 0.04448256269097328, + 0.0398893877863884, + 0.022990435361862183, + 0.032692596316337585, + -0.021614938974380493, + 0.0043721129186451435, + 0.0280994214117527, + -0.02517649158835411, + 0.01395146083086729, + 0.03598396107554436, + 0.03902970254421234, + -0.0037918253801763058, + -0.1081729456782341, + -0.05364435166120529, + 0.046938806772232056, + -0.054577723145484924, + 0.09549873322248459, + 0.042271945625543594, + -0.06233945116400719, + 0.09598997980356216, + 0.07201705127954483, + -0.07707691192626953, + 0.01714457757771015, + -0.04602999612689018, + -0.018863948062062263, + 0.10532370209693909, + -0.018274448812007904, + 0.012575964443385601, + -0.07476804405450821, + 0.033847030252218246, + 0.011949623003602028, + -0.02618355117738247, + 0.08523163944482803, + 0.024722086265683174, + -0.08390526473522186, + -0.04291056841611862, + -0.037015583366155624, + 0.0092723174020648, + -0.01714457757771015, + -0.00746083864942193, + 0.03907882794737816, + -0.02360449731349945, + -0.05919545888900757, + 0.010322362184524536, + -0.061602577567100525, + -0.0022121539805084467, + 0.032889094203710556, + -0.06430444866418839, + -0.008633694611489773, + -0.032913658767938614, + 0.03669627383351326, + -0.019834162667393684, + 0.06194645166397095, + 0.03195572271943092, + -0.005968670826405287, + -0.0452439971268177, + 0.024304525926709175, + 0.03598396107554436, + 0.04863361269235611, + -0.0036444508004933596, + 0.05050035938620567, + -0.016088392585515976, + 0.0394718274474144, + 0.02773098461329937, + 0.07349079102277756, + -0.022990435361862183, + 0.02111141011118889, + 0.03866126760840416, + 0.02203250117599964, + -0.009720582515001297, + 0.010825891979038715, + 0.006367810536175966, + 0.05664096772670746, + -0.021909689530730247, + 0.02344484068453312, + -0.01522870734333992, + -0.08984937518835068, + -0.028074858710169792, + -0.052023228257894516, + 0.018041105940937996, + -0.011710138991475105, + -0.07629091292619705, + 0.0148234274238348, + -0.04003676399588585, + 0.08842474967241287, + -0.031562723219394684, + -0.020779816433787346, + -0.06612206250429153, + -0.034092653542757034, + 0.0342891551554203, + -0.031341660767793655, + 0.05772171542048454, + 0.05246535316109657, + -0.06229032576084137, + -0.00473133847117424, + 0.01377952378243208, + -0.011304859071969986, + 0.00473440857604146, + -0.0024055831599980593, + -0.01737792044878006, + -0.03421546518802643, + 0.06047270447015762, + 0.023702746257185936, + -0.020779816433787346, + -0.10954844206571579, + -0.026060739532113075, + -0.04472818598151207, + -0.049861736595630646, + -0.02871348150074482, + 0.032545220106840134, + 0.11731017380952835, + 0.02068156749010086, + -0.032496098428964615, + -0.05610059201717377, + 0.009978488087654114, + 0.07717516273260117, + 0.023972932249307632, + 0.005400664638727903, + -0.015069051645696163, + 0.00458396365866065, + -0.03959463909268379, + 0.03527165204286575, + -0.04234563186764717, + -0.07476804405450821, + 0.04983717203140259, + 0.002374880015850067, + 0.019809599965810776, + 0.0727539211511612, + 0.010224112309515476, + 0.014381303451955318, + -0.028345046564936638, + -0.026822175830602646, + 0.02205706387758255, + 0.0331592820584774, + 0.0366717092692852, + -0.0339944064617157, + -0.024292243644595146, + 0.017611263319849968, + 0.023383434861898422, + 0.061602577567100525, + 0.00021165907674003392, + -0.0005737630417570472, + -0.020386818796396255, + -0.0001376839354634285, + -0.004212456755340099, + 0.09618648141622543, + -0.03576289862394333, + -0.021639501675963402, + -0.018470948562026024, + -0.011562764644622803, + -0.07634003460407257, + 0.048731863498687744, + 0.0042063165456056595, + 0.004924767650663853, + 0.0033343499526381493, + -0.09879010170698166, + 0.017316514626145363, + -0.021614938974380493, + 0.008363507688045502, + -0.0043721129186451435, + 0.017709512263536453, + 0.018655166029930115, + -0.0418543815612793, + -0.08449476212263107, + 0.0441141277551651, + -0.063223697245121, + -0.05993233248591423, + 0.007423995062708855, + -0.01993241347372532, + 0.06926605850458145, + 0.02378871478140354, + 0.06400969624519348, + 0.012711058370769024, + -0.05777083709836006, + -0.027976609766483307, + 0.008259117603302002, + -0.04487556219100952, + -0.05207235366106033, + 0.012311918660998344, + -0.01054342370480299, + 0.043843939900398254, + 0.05064773187041283, + 0.0029014372266829014, + 0.003368123434484005, + -0.026994112879037857, + -0.05172847956418991, + 0.009818831458687782, + -0.014835708774626255, + -0.03829282894730568, + -0.029597729444503784, + 0.04826517775654793, + 0.037015583366155624, + -0.04490012302994728, + -0.020423661917448044, + 0.019551696255803108, + 0.016530515626072884, + 0.006846777629107237, + -0.024132588878273964, + 0.009996909648180008, + -0.01621120423078537, + -0.006343247834593058, + -0.0730486735701561, + 0.0817437693476677, + -0.030997788533568382, + -0.02323606051504612, + 0.09363199025392532, + 0.012661932967603207, + 0.07044505327939987, + -0.05354610085487366, + 0.03885776549577713, + -0.022744812071323395, + 0.050451233983039856, + 0.0037089271936565638, + 0.07904190570116043, + 0.019269227981567383, + -0.016923515126109123, + 0.09147049486637115, + 0.04551418498158455, + -0.033110156655311584, + 0.03721208497881889, + -0.02418171428143978, + -0.017623543739318848, + -0.05099160596728325, + 0.06793968379497528, + -0.04210000857710838, + -0.047135304659605026, + -0.04160875827074051, + -0.04504749923944473, + -0.06705543398857117, + -0.05757433921098709, + 0.03785070776939392, + -0.020362256094813347, + 0.002921394072473049, + 0.017034046351909637, + -0.03627870976924896, + 0.00919249001890421, + 0.011034672148525715, + -0.034878652542829514, + -0.03372421860694885, + 0.0028999019414186478, + 0.005437508225440979, + -0.01424621045589447, + 0.02477121166884899, + -0.047331806272268295, + 0.08139989525079727, + 0.05050035938620567, + -0.004605455789715052, + -0.07899277657270432, + 0.06317457556724548, + 0.07118192315101624, + -0.03087497688829899, + -0.07815765589475632, + 0.0261344276368618, + -0.04374568909406662, + 0.03180835023522377, + -0.04222282022237778, + 0.037015583366155624, + 0.059441082179546356, + 0.05256360396742821, + 0.09058624505996704, + -0.017463888972997665, + 0.06076745688915253, + -0.012422449886798859, + -0.014086554758250713, + 0.03335577994585037, + 0.09353373944759369, + 0.09088099747896194, + -0.0013839395251125097, + -0.08704925328493118, + -0.0472089946269989, + -0.10109896957874298, + -0.010119721293449402, + 0.027460798621177673, + -0.012526839971542358, + -0.02070613019168377, + 0.0015750658931210637, + -0.05821296200156212, + 0.0648939460515976, + 0.023162372410297394, + 0.07722428441047668, + -0.007602072320878506, + -0.007853837683796883, + -0.0177709199488163, + -0.0049309078603982925, + -0.004019028041511774, + -0.02049734815955162, + -0.0335768423974514, + 0.048486240208148956, + 0.08144902437925339, + -0.04273863136768341, + 0.04372112825512886, + -0.008983708918094635, + 0.06066920608282089, + -0.003923848271369934, + 0.021995658054947853, + 0.07599616050720215, + -0.02418171428143978, + -0.06877480447292328, + 0.03907882794737816, + 0.0010991687886416912, + 0.02306412346661091, + -0.007233635988086462, + -0.03207853436470032, + -0.030334603041410446, + 0.0062879822216928005, + -0.06528694182634354, + -0.0015489683719351888, + 0.009407411329448223, + -0.0072643388994038105, + 0.0620938278734684, + 0.013251431286334991, + -0.04885467514395714, + -0.03455933928489685, + -0.0635184496641159, + 0.028394170105457306, + -0.004221668001264334, + 0.004507205914705992, + 0.03180835023522377, + 0.08302101492881775, + 0.06145520135760307, + 0.0014115722151473165, + 0.016849827021360397, + 0.012784745544195175, + 0.044015876948833466, + -0.07766640931367874, + 0.027190610766410828, + -0.0022889114916324615, + 0.05128635838627815, + -0.028345046564936638, + -0.028246795758605003, + -0.012453152798116207, + -0.057525213807821274, + 0.015572581440210342, + -0.04630018398165703, + -0.06032533198595047, + 0.024108026176691055, + -0.059637583792209625, + -0.039717450737953186, + 0.020018381997942924, + 0.01660420373082161, + 0.0033558420836925507, + 0.005219516810029745, + -0.00595946004614234, + 0.08616501092910767, + -0.014540959149599075, + -0.016886672005057335, + 0.10109896957874298, + -0.010770626366138458, + -0.03003985434770584, + 0.06459919363260269, + 0.023137809708714485, + 0.029524043202400208, + 0.01424621045589447, + -0.04020870104432106, + 0.02010435052216053, + 0.08557551354169846, + -0.07609441131353378, + 0.012207528576254845, + -0.016505952924489975, + -0.029352106153964996, + -0.014221647754311562, + 0.03188203647732735, + 0.051237232983112335, + -0.05403734743595123, + 0.02499227412045002, + -0.023972932249307632, + -0.00926617719233036, + -0.023923808708786964, + 0.08734400570392609, + -0.07270479947328568, + -0.036229584366083145, + 0.03517340123653412, + -0.044605374336242676, + 0.05639534071087837, + 0.023678183555603027, + -0.03374877944588661, + 0.0020816661417484283, + -0.004924767650663853, + -0.019269227981567383, + -0.041314009577035904, + 0.0398893877863884, + -0.005830507259815931, + 0.006754668429493904, + 0.04671774432063103, + 0.0162234865128994, + 0.00889774039387703, + 0.08257889747619629, + 0.0421491339802742, + 0.012625089846551418, + -0.05462684854865074, + 0.033896155655384064, + -0.05487247183918953, + -0.06145520135760307, + -0.024132588878273964, + 0.023297466337680817, + -0.019367476925253868, + -0.05526547133922577, + 0.06145520135760307, + 0.03139078617095947, + 0.0036782240495085716, + -0.05993233248591423, + 0.06174995377659798, + 0.0542338490486145, + 0.031194288283586502, + 0.03045741468667984, + 0.05781996250152588, + 0.019576257094740868, + 0.0109241409227252, + 0.002232111059129238, + 0.024918586015701294, + 0.01838498003780842, + 0.01375496108084917, + 0.011329421773552895, + -0.0033404906280338764, + 0.02167634479701519, + -0.008038056083023548, + 0.016272610053420067, + -0.0383419543504715, + 0.005016876384615898, + -0.07378554344177246, + -0.018667448312044144, + 0.025446679443120956, + 0.014983083121478558, + -0.054970722645521164, + 0.0831683948636055, + -0.06872568279504776, + 0.02399749495089054, + -0.07358904182910919, + 0.00040835043182596564, + -0.022302687168121338, + 0.010334642603993416, + 0.03576289862394333, + 0.014295334927737713, + -0.005416016094386578, + 0.03323296830058098, + 0.07575053721666336, + -0.04553874582052231 + ] + }, + { + "id": "dd72f23e-215e-4ad2-a48f-f29805098e2f", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "fmorales", + "reviewDate": "2021-06-24T00:08:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cccfa7e8-1287-462f-9aac-c4f26573f96e", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "caseydarren", + "reviewDate": "2021-01-06T09:48:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "88a4a42d-897e-4c7a-ae48-9767052174d3", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "fsuarez", + "reviewDate": "2021-05-11T16:58:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7160aaa1-a249-4161-b3e5-3f51cc6fc8a5", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "danielmontgomery", + "reviewDate": "2022-05-30T21:20:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "31be9fd7-7f95-4786-b4f0-8a5a6dc2413b", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "zunigalisa", + "reviewDate": "2021-10-13T05:07:47", + "stars": 4, + "verifiedUser": true + }, + { + "id": "49c27213-8367-4292-8a71-32f38e6b7d69", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "smithjacob", + "reviewDate": "2022-09-15T21:14:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "60433a50-2720-4300-950d-47d618a93f75", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "richardsonxavier", + "reviewDate": "2021-01-15T14:01:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d015492c-97eb-4fe0-a928-e284b710eb1b", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "alynch", + "reviewDate": "2022-10-02T11:13:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "25216548-a25c-4403-9de1-750c41087bad", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "christopher80", + "reviewDate": "2022-09-23T10:57:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2e85ee71-bf6e-4034-9686-84f307fa2185", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "ann89", + "reviewDate": "2021-06-20T01:34:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ed9ef3b9-03d9-40f2-a264-00f28e39bfef", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "palmergabriella", + "reviewDate": "2022-09-02T23:23:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "82c9130b-a289-4d7b-a434-776d64a1f468", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "nathan58", + "reviewDate": "2022-06-22T20:04:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c72fe88d-d408-44a7-b3de-08da14154c7e", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "laurabailey", + "reviewDate": "2021-05-19T02:51:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "71896664-0134-46ee-aef8-4f10a0cb265e", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "aaustin", + "reviewDate": "2022-12-19T12:57:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f8d7dff9-70c4-4e1e-ace6-7934bc62df1c", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "joycejeffrey", + "reviewDate": "2021-02-16T03:35:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e12804bb-ac38-42b1-899b-d243992fb589", + "productId": "8c2440c0-829a-4277-885d-0e0d064a7c44", + "category": "Media", + "docType": "customerRating", + "userName": "whitemolly", + "reviewDate": "2022-12-17T06:02:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Mini (Steel)", + "description": "This Luxe Phone Mini (Steel) is rated 4.5 out of 5 by 8.\n\nRated 5 out of 5 by Anonymous from Nice design This phone", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-08-15T10:35:07", + "price": 970.48, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-13T21:30:13", + "newPrice": 888.76 + }, + { + "priceDate": "2022-11-02T21:30:13", + "newPrice": 888.39 + }, + { + "priceDate": "2023-04-26T21:30:13", + "newPrice": 970.48 + } + ], + "descriptionVector": [ + -0.04847061634063721, + 0.09702228754758835, + -0.016717499122023582, + 0.019057950004935265, + 0.008703231811523438, + 0.01297885924577713, + -0.0239313542842865, + 0.025532182306051254, + -0.02186446264386177, + 0.04915958270430565, + 0.02091207168996334, + 0.0018110624514520168, + -0.0239313542842865, + -0.025714553892612457, + 0.03274603560566902, + 0.02628193609416485, + -0.012857276946306229, + -0.03011176362633705, + 0.04299943521618843, + -0.041905198246240616, + 0.04583634436130524, + -0.1227976381778717, + -0.081500343978405, + 0.02180367335677147, + 0.027680126950144768, + -0.02332344464957714, + 0.01818661391735077, + 0.04725480079650879, + 0.03167206421494484, + -0.05414443463087082, + 0.016930267214775085, + 0.021236291155219078, + -0.09604963660240173, + 0.05848085507750511, + -0.008049729280173779, + 0.02611982636153698, + 0.06054774671792984, + 0.027051953598856926, + 0.0015906954649835825, + 0.1286335587501526, + 0.008130784146487713, + -0.06164197996258736, + 0.01599813997745514, + -0.049362216144800186, + 0.03805510699748993, + -0.06476258486509323, + -0.010015302337706089, + 0.0693826898932457, + 0.028875682502985, + 0.02757880836725235, + 0.02624140866100788, + 0.004799949005246162, + -0.040446218103170395, + -0.024417681619524956, + -0.0030420783441513777, + -0.024600055068731308, + -0.06407361477613449, + 0.147924542427063, + 0.047295328229665756, + -0.06695105135440826, + -0.007249315734952688, + -0.044701579958200455, + 0.024600055068731308, + 0.012999122962355614, + -0.02079049125313759, + 0.0010150815360248089, + -0.036352962255477905, + 0.006464099977165461, + -0.017406463623046875, + 0.08478305488824844, + 0.011438822373747826, + -0.022837117314338684, + -0.034326598048210144, + 0.03011176362633705, + 0.067640021443367, + 0.011925149708986282, + -0.010466167703270912, + 0.0055218408815562725, + -0.010587750002741814, + -0.02713300846517086, + 0.09507697820663452, + 0.014914036728441715, + 0.014346654526889324, + -0.006504627410322428, + -0.00016590852465014905, + -0.01227976381778717, + 0.010298993438482285, + -0.11355742067098618, + -0.05649501830339432, + 0.07315173000097275, + -0.021216027438640594, + -0.004311088472604752, + -0.03412396460771561, + -0.027821972966194153, + 0.02942279912531376, + 0.02399214543402195, + 0.011134868487715721, + 0.05284756422042847, + -0.02707221731543541, + -0.02897699922323227, + -0.013971777632832527, + 0.003609460312873125, + -0.04239152744412422, + 0.029909126460552216, + 0.017659759148955345, + 0.08599887043237686, + 0.034893982112407684, + -0.029402535408735275, + 0.037751153111457825, + -0.14687083661556244, + 0.0192605871707201, + 0.03446844592690468, + -0.10601934790611267, + -0.014610081911087036, + -0.02466084621846676, + 0.02376924455165863, + 0.0007757173152640462, + -0.012674904428422451, + -0.0008890670142136514, + -0.04607950896024704, + 0.038987237960100174, + 0.0215199813246727, + -0.02595771849155426, + 0.011479349806904793, + 0.004635307006537914, + -0.018328458070755005, + 0.04429630935192108, + -0.010982890613377094, + 0.04149992763996124, + -0.03655559942126274, + -0.03979778289794922, + 0.08194614201784134, + 0.036028746515512466, + -0.010729595087468624, + -0.007816697470843792, + 0.0597371980547905, + -0.0013880591141059995, + -0.01979757286608219, + -0.01387045904994011, + 0.05248281732201576, + 0.0525638721883297, + -0.0027862500865012407, + -0.0006611011340282857, + -0.06784265488386154, + -0.0264643095433712, + 0.025147171691060066, + -0.038825128227472305, + -0.03177338093519211, + -0.023890826851129532, + 0.06391150504350662, + 0.03217865526676178, + -0.0718548521399498, + -0.02237105369567871, + -0.02960517257452011, + 0.011175394989550114, + 0.05588711053133011, + -0.05159121751785278, + -0.003774102311581373, + -0.05560341849923134, + 0.009589766152203083, + 0.003044611308723688, + -0.0482274554669857, + 0.015309177339076996, + -0.08154087513685226, + -0.06083143502473831, + 0.045714762061834335, + 0.000884634384419769, + 0.06346570700407028, + -0.08729574829339981, + 0.016271699219942093, + 0.03566399961709976, + 0.023445026949048042, + -0.00671232957392931, + -0.05078067258000374, + -0.033880800008773804, + -0.017538176849484444, + 0.03627190738916397, + -0.028835155069828033, + 0.011631326749920845, + 0.019594935700297356, + 0.06087196245789528, + 0.07627232372760773, + -0.09272640198469162, + -0.05690028890967369, + 0.06841003894805908, + -0.015045749954879284, + 0.015390231274068356, + -0.014275731518864632, + 0.011053813621401787, + 0.03266498073935509, + -0.03548162803053856, + 0.011145000346004963, + -0.027031689882278442, + -0.019047817215323448, + -0.005339468363672495, + -0.02986859902739525, + 0.08964632451534271, + 0.04137834534049034, + -0.05592763423919678, + 0.013536108657717705, + -0.003252313705161214, + 0.014863377436995506, + 0.013556372374296188, + -0.04214836284518242, + -0.02174288220703602, + -0.03576531633734703, + 0.011945413425564766, + 0.07031481713056564, + 0.010608013719320297, + -0.016129855066537857, + 0.002758387476205826, + 0.037751153111457825, + 0.004523856565356255, + 0.033110782504081726, + 0.06310096383094788, + 0.081500343978405, + 0.04149992763996124, + -0.029240427538752556, + -0.027821972966194153, + -0.10464141517877579, + -0.02774091809988022, + 0.017031585797667503, + 0.032036807388067245, + -0.0066008795984089375, + -0.06674841791391373, + -0.06695105135440826, + 0.00018253103189636022, + 0.06524890661239624, + 0.0912674143910408, + 0.04883536323904991, + 0.017213959246873856, + -0.01843990944325924, + -0.037143245339393616, + -0.007132799830287695, + -0.005248281639069319, + -0.018683072179555893, + -0.011165263131260872, + -0.020993126556277275, + -0.0070720091462135315, + 0.027538280934095383, + 0.02119576372206211, + -0.027842236682772636, + 0.004544120281934738, + -0.028125926852226257, + 0.015501681715250015, + -0.02595771849155426, + 0.08202719688415527, + 0.016069063916802406, + -0.04843008890748024, + 0.040344901382923126, + -0.015815768390893936, + -0.05892665311694145, + 0.0036018614191561937, + 0.10520879924297333, + 0.049200110137462616, + -0.029848335310816765, + 0.010922100394964218, + 0.03396185487508774, + 0.0624525286257267, + -0.01075999066233635, + -0.015045749954879284, + -0.03479266166687012, + 0.0002868571027647704, + 0.06958532333374023, + -0.007208788767457008, + 0.030294137075543404, + 0.06099354475736618, + -0.10853203386068344, + 0.0021720086224377155, + 0.03687981888651848, + -0.040892016142606735, + -0.055238671600818634, + 0.09329377859830856, + 0.005800466053187847, + -0.05467129126191139, + 0.014660741202533245, + -0.08016294240951538, + 0.06589734554290771, + -0.10002131015062332, + -0.028713572770357132, + 0.07700181752443314, + -0.002107418142259121, + 0.0337592177093029, + -0.013039649464190006, + 0.05690028890967369, + -0.06407361477613449, + -0.047173745930194855, + -0.034448180347681046, + 0.011165263131260872, + -0.08640414476394653, + -0.016636446118354797, + 0.03150995448231697, + 0.026079298928380013, + -0.0697474330663681, + -0.022290000692009926, + 0.03762957081198692, + 0.03475213795900345, + -0.05179385468363762, + 0.012036600150167942, + 0.02411372773349285, + 0.016666840761899948, + 0.0432831272482872, + -0.05548183619976044, + -0.047011636197566986, + 0.037649836391210556, + 0.06265516579151154, + 0.02528901770710945, + 0.07153063267469406, + -0.05001065507531166, + -0.007771104574203491, + 0.03884539008140564, + -0.03302972763776779, + -0.07452965527772903, + -0.023850299417972565, + 0.025755081325769424, + -0.017406463623046875, + -0.03675823658704758, + 0.04222941771149635, + 0.046890053898096085, + 0.05114541947841644, + 0.057427145540714264, + -0.01577524095773697, + -0.07542125135660172, + 0.03171259164810181, + 0.012492531910538673, + -0.010202741250395775, + 0.018227141350507736, + -0.07712339609861374, + 0.0035537350922822952, + 0.005830861162394285, + -0.007375963497906923, + 0.024640582501888275, + -0.007842027582228184, + -0.014285863377153873, + -0.02125655487179756, + 0.027376173064112663, + -0.00817131157964468, + 0.03173285350203514, + 0.0691395252943039, + 0.01869320496916771, + 0.01691000536084175, + 0.03132758289575577, + -0.01720382645726204, + 0.00665660435333848, + -0.016737762838602066, + -0.01625143550336361, + -0.0644383653998375, + 0.003624657867476344, + 0.05106436461210251, + 0.023728717118501663, + 0.0009992505656555295, + -0.005172293167561293, + 0.01698092743754387, + 0.01939230039715767, + 0.03011176362633705, + 0.04077043756842613, + 0.02881489135324955, + -0.07554283738136292, + 0.06780212372541428, + 0.02332344464957714, + 0.05702187120914459, + -0.015066013671457767, + 0.04988907277584076, + 0.0008915999787859619, + -0.01707211323082447, + 0.009017318487167358, + -0.03165179863572121, + 0.07554283738136292, + -0.08737680315971375, + 0.016818817704916, + 0.03740667179226875, + -0.05633290857076645, + -0.051429107785224915, + 0.05531972646713257, + -0.006357715930789709, + 0.015461154282093048, + 0.03479266166687012, + -0.015380100347101688, + -0.03033466264605522, + 0.03908855468034744, + -0.029949653893709183, + 0.04859219864010811, + 0.0007402559858746827, + -0.015197726897895336, + 0.01032938901335001, + -0.010942363180220127, + -0.03088178113102913, + 0.07258434593677521, + -0.04802481830120087, + 0.01286740880459547, + -0.0035056089982390404, + -0.09540119767189026, + -0.006793383974581957, + 0.08048716187477112, + 0.07987925410270691, + -0.02091207168996334, + 0.02360713668167591, + 0.039716728031635284, + 0.045147381722927094, + -0.07829868793487549, + 0.019250454381108284, + 0.057143453508615494, + 0.01577524095773697, + 0.004934195429086685, + 0.05442812666296959, + -0.06083143502473831, + 0.018419645726680756, + 0.04928116500377655, + -0.04008147120475769, + -0.10180450975894928, + 0.01678842306137085, + -0.05495498329401016, + 0.030861517414450645, + 0.014194677583873272, + 0.022614218294620514, + 0.006914965808391571, + 0.052280180156230927, + -0.0479842908680439, + 0.0227560643106699, + 0.02455952763557434, + 0.0431615449488163, + -0.0070213498547673225, + -0.01929098181426525, + -0.047497961670160294, + 0.006246265955269337, + 0.03475213795900345, + -0.09686017781496048, + -0.01933150924742222, + 0.060790907591581345, + -0.08093295991420746, + 0.02449873648583889, + -0.06439783424139023, + -0.04214836284518242, + 0.04405314475297928, + 0.014478367753326893, + 0.006702197715640068, + -0.07813657820224762, + 0.001483044819906354, + -0.020891809836030006, + 0.010131818242371082, + 0.023566609248518944, + -0.021823937073349953, + 0.009493513964116573, + 0.0456337071955204, + -0.10918047279119492, + 0.05860243737697601, + -0.025998245924711227, + 0.054914455860853195, + 0.0031130011193454266, + -0.02691010944545269, + 0.012755959294736385, + 0.008394211530685425, + -0.044701579958200455, + -0.06301990896463394, + 0.02332344464957714, + -0.029969917610287666, + -0.0004578315420076251, + 0.10715410858392715, + -0.022452108561992645, + -0.04887589067220688, + -0.04924063757061958, + 0.029017526656389236, + -0.020993126556277275, + 0.0385211743414402, + -0.042958907783031464, + -0.06289833039045334, + -0.028227245435118675, + -0.007223986089229584, + -0.00926554761826992, + 0.011732645332813263, + 0.001779400510713458, + -0.016291962936520576, + -0.0015691653825342655, + 0.0276395995169878, + -0.007988938130438328, + -0.05633290857076645, + 0.012766091153025627, + -0.047862708568573, + -0.06646472960710526, + 0.0027127943467348814, + 0.026099562644958496, + 0.004850607831031084, + 0.05592763423919678, + 0.04782218113541603, + 0.11963650584220886, + -0.049970127642154694, + 0.044377364218235016, + -0.024600055068731308, + 0.06861267238855362, + 0.05981825292110443, + -0.05475234612822533, + -0.0009416258544661105, + -0.09515803307294846, + -0.08859261870384216, + -0.010537090711295605, + 0.01567392237484455, + -0.007619127165526152, + 0.00825236551463604, + -0.0739622712135315, + -0.03538030758500099, + 0.05779188871383667, + -0.02320186421275139, + -0.030192818492650986, + 0.05074014514684677, + 0.021763145923614502, + -0.004936728160828352, + -0.03452923521399498, + 0.03412396460771561, + 0.056657128036022186, + 0.035177674144506454, + 0.08381039649248123, + -0.024701371788978577 + ] + }, + { + "id": "e5776647-1b3e-4098-8b9e-9cc79f115f42", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "james83", + "reviewDate": "2021-07-17T10:32:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "ae7dd37e-5bdc-45f0-8139-e28f31e1639c", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbuck", + "reviewDate": "2022-05-28T12:39:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2fe5727c-d272-4d3c-9b51-3093f78d0a38", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "wheelerjames", + "reviewDate": "2021-09-27T11:43:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2f163bbf-4b57-49ce-966c-a06c2ade99b4", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "hbradford", + "reviewDate": "2021-10-30T22:50:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4797a68c-1709-4438-8d8d-a0327938af43", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "ann52", + "reviewDate": "2021-11-17T05:20:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ae797340-6572-498d-96f2-dc65e75b1dc2", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "phillip09", + "reviewDate": "2022-09-12T09:58:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b11b7fe6-0aa8-413a-9fea-15a7a52b2601", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "olsonrhonda", + "reviewDate": "2021-04-16T06:36:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e1c7500c-83f0-4229-af30-dcdcccfc9b12", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniejones", + "reviewDate": "2022-02-02T13:41:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1054ae51-431b-4bc7-ac85-261d1f72cc52", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "schultzdaniel", + "reviewDate": "2021-01-13T21:30:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "35c81066-1d39-45c9-be8c-e2cb462b60db", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacksonjoann", + "reviewDate": "2022-05-03T15:02:27", + "stars": 5, + "verifiedUser": true + }, + { + "id": "8d89a279-09ac-48fd-9396-8827b1462a7a", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "delacruzbrandi", + "reviewDate": "2022-05-03T07:48:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d92c6207-bee4-4312-b525-c8b45e7f7f93", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "websterphillip", + "reviewDate": "2021-09-17T17:03:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "14666608-ec66-4a8b-b368-49afa10d58c7", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbanks", + "reviewDate": "2022-05-18T04:15:53", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6311cfe0-0a2e-4648-9318-92cbc78d9ccd", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "stevendavis", + "reviewDate": "2021-04-15T14:31:38", + "stars": 5, + "verifiedUser": false + }, + { + "id": "cabc63c2-3dd7-425e-8bf2-329258047c02", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "omarschmitt", + "reviewDate": "2021-01-19T21:26:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4fe9df75-cc96-4f0c-ac67-463fd4b3e773", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "gharris", + "reviewDate": "2021-12-22T23:41:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ebc47534-69ed-43fa-9378-2bd5f52247ce", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "bonnie72", + "reviewDate": "2022-11-03T17:24:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0a019f9d-56c5-4389-be3a-7207625b5a98", + "productId": "caf5cc60-0a8a-4e5d-a795-73fe22576a37", + "category": "Electronics", + "docType": "customerRating", + "userName": "sheryl42", + "reviewDate": "2022-04-03T16:05:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Ultra (Gold)", + "description": "This Luxe Computer Ultra (Gold) is one of the most expensive models in the entire collection—a total worth about $3,300.\n\nCatch up with the latest news,", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-04-12T21:33:40", + "price": 283.69, + "stock": 89, + "priceHistory": [ + { + "priceDate": "2021-01-09T12:46:01", + "newPrice": 273.09 + }, + { + "priceDate": "2021-08-09T12:46:01", + "newPrice": 291.74 + }, + { + "priceDate": "2022-03-09T12:46:01", + "newPrice": 302.26 + }, + { + "priceDate": "2022-10-07T12:46:01", + "newPrice": 264.67 + }, + { + "priceDate": "2025-02-07T12:46:01", + "newPrice": 283.69 + } + ], + "descriptionVector": [ + -0.021077072247862816, + 0.02281966619193554, + -0.045113787055015564, + -0.01637483946979046, + 0.005366079043596983, + -0.050313904881477356, + -0.04978836327791214, + 0.049262817949056625, + 0.049235157668590546, + 0.07789112627506256, + 0.0008903127163648605, + -0.060022637248039246, + 0.04102007672190666, + -0.0897296890616417, + 0.05106073245406151, + -0.015503542497754097, + -0.040605176240205765, + -0.043813757598400116, + 0.006859729997813702, + -0.04453292489051819, + 0.026664434000849724, + -0.08347848802804947, + -0.0371476486325264, + -0.00034207888529635966, + -0.04685638099908829, + 0.011838565580546856, + 0.007530489470809698, + 0.031975191086530685, + 0.057920459657907486, + -0.023580322042107582, + 0.07678471505641937, + 0.03371778503060341, + -0.012875823304057121, + -0.0015705807600170374, + -0.014493945054709911, + -0.042928632348775864, + 0.026456981897354126, + -0.0007511473377235234, + 0.05930346995592117, + -0.03770085424184799, + 0.0055735306814312935, + 0.024396296590566635, + -0.05440761521458626, + -0.01937597058713436, + 0.017730189487338066, + -0.07567831128835678, + 0.012799757532775402, + 0.0017296269070357084, + -0.030896443873643875, + 0.0003788151079788804, + -0.026456981897354126, + 0.024216506630182266, + -0.010123633779585361, + 0.010690667666494846, + -0.06289929896593094, + -0.069095179438591, + 0.04132433980703354, + 0.11727925390005112, + 0.013781694695353508, + -0.017868489027023315, + 0.06256737560033798, + -0.06428230553865433, + -0.02039939910173416, + -0.031947530806064606, + 0.012267298996448517, + 0.031090065836906433, + -0.004135199822485447, + 0.03128368780016899, + 0.053522489964962006, + 0.06588660180568695, + -0.03996898978948593, + 0.04801810905337334, + 0.0430116131901741, + 0.052692681550979614, + 0.04953942075371742, + 0.009943841956555843, + 0.01136142760515213, + 0.03122836723923683, + 0.031090065836906433, + -0.03557102009654045, + 0.09055949747562408, + 0.021284524351358414, + 0.05623319000005722, + -0.03175390884280205, + 0.030924104154109955, + -0.009404468350112438, + -0.07307825237512589, + -0.13077743351459503, + -0.04796278849244118, + 0.018781276419758797, + -0.07136331498622894, + 0.0778358057141304, + 0.05064582824707031, + -0.03615188226103783, + -0.032943300902843475, + 0.016803571954369545, + -0.03142198920249939, + 0.059026867151260376, + -0.021229203790426254, + -0.013601903803646564, + 0.0477968268096447, + -0.0218515582382679, + 0.030951764434576035, + 0.004539730492979288, + 0.0501202829182148, + 0.059192828834056854, + 0.06715896725654602, + 0.03122836723923683, + 0.0454733707010746, + -0.1142919510602951, + -0.00484399264678359, + 0.01843552477657795, + -0.010988014750182629, + -0.01291731372475624, + 0.021353675052523613, + 0.09957672655582428, + -0.024576088413596153, + -0.038558319211006165, + 0.004771384876221418, + -0.010697582736611366, + 0.07999330013990402, + 0.005563158076256514, + 0.01725996471941471, + -0.00970873050391674, + -0.0009240235667675734, + 0.0027176146395504475, + -0.01735677570104599, + -0.04411802068352699, + 0.007295378018170595, + -0.05819706246256828, + -0.08524873852729797, + 0.05418633297085762, + -0.0348241925239563, + 0.07158459722995758, + -0.0518905371427536, + 0.04226478561758995, + 0.048294711858034134, + 0.022999456152319908, + -0.041683923453092575, + 0.012039102613925934, + -0.0699249878525734, + -0.0473819226026535, + -0.0009387180907651782, + -0.021077072247862816, + -0.10964503884315491, + 0.003958866465836763, + -0.0349624939262867, + 0.004674573894590139, + -0.03335820138454437, + 0.03554335981607437, + 0.09028289467096329, + -0.01305561512708664, + -0.003087569959461689, + 0.009217762388288975, + 0.008256570436060429, + 0.04873727262020111, + -0.003398747183382511, + -0.018006790429353714, + 0.012018357403576374, + 0.0699249878525734, + 0.010441726073622704, + -0.01633334904909134, + -0.06195884943008423, + -0.026332510635256767, + 0.007634215522557497, + 0.013899250887334347, + 0.05197351798415184, + -0.03568165749311447, + -0.10344915091991425, + 0.012066762894392014, + 0.039388127624988556, + -0.0389179028570652, + -0.030896443873643875, + -0.03164327144622803, + 0.069095179438591, + 0.011257701553404331, + 0.07036755234003067, + 0.013380622491240501, + 0.006787121761590242, + -0.034022048115730286, + 0.028987890109419823, + 0.06975902616977692, + -0.04254138842225075, + -0.028877248987555504, + -0.0006029059295542538, + 0.0044982400722801685, + 0.06140564754605293, + 0.019749384373426437, + 0.046164873987436295, + 0.003103128867223859, + -0.011589623987674713, + 0.00489239813759923, + -0.00463654100894928, + -0.038475338369607925, + -0.062180131673812866, + 0.01731528528034687, + 0.055652324110269547, + 0.028794270008802414, + -0.0228058360517025, + 0.006168224848806858, + 0.034353967756032944, + 0.0454733707010746, + 0.059192828834056854, + 0.04339885339140892, + 0.028600648045539856, + -0.05880558863282204, + 0.039443448185920715, + -0.039498768746852875, + 0.00490277074277401, + 0.04005197063088417, + -0.10178954154253006, + 0.021948369219899178, + -0.039637066423892975, + 0.03216881304979324, + 0.05935879051685333, + 0.0326390378177166, + 0.028849588707089424, + 0.05504380166530609, + -0.021035583689808846, + -0.15821634232997894, + 0.026885714381933212, + -0.05388206988573074, + -0.007025691214948893, + 0.016526969149708748, + -0.03595826029777527, + -0.04431164264678955, + 0.0714186355471611, + 0.029596414417028427, + 0.015448221936821938, + -0.039554085582494736, + -0.030951764434576035, + -0.04522442817687988, + -0.036290183663368225, + 0.036234863102436066, + -0.028932569548487663, + -0.05205649882555008, + -0.04359247535467148, + -0.020233437418937683, + 0.006023008842021227, + 0.08403169363737106, + 0.005922740325331688, + -0.012626881711184978, + -0.02157495729625225, + -0.05413101240992546, + -0.03775617480278015, + -0.04021793231368065, + 0.10804074257612228, + -0.022556893527507782, + -0.04367545619606972, + 0.0781124085187912, + 0.01460458617657423, + -0.11473451554775238, + -0.043979719281196594, + 0.07966137677431107, + -0.004062592051923275, + 0.02153346687555313, + -0.018988728523254395, + 0.003412577323615551, + 0.05875026807188988, + 0.005514752585440874, + -0.023027116432785988, + -0.05067348852753639, + -0.02500482089817524, + 0.013940741308033466, + -0.03026025928556919, + 0.061073724180459976, + 0.02384309284389019, + -0.026816565543413162, + -0.04447760432958603, + 0.017038684338331223, + -0.026221871376037598, + -0.036345504224300385, + 0.05424165353178978, + 0.023677131161093712, + -0.003564708400517702, + 0.02829638496041298, + -0.03369012475013733, + 0.04657977819442749, + -0.08923181146383286, + -0.03327522054314613, + 0.016042916104197502, + 0.029983658343553543, + 0.004304618574678898, + -0.10444492101669312, + 0.08187419176101685, + -0.04303927347064018, + 0.024576088413596153, + 0.02059301920235157, + 0.06583128124475479, + -0.06915049999952316, + -0.022031350061297417, + 0.07202716171741486, + 0.011797076091170311, + -0.006998030934482813, + 0.02494950033724308, + -0.02071749046444893, + 0.034215670078992844, + 0.07202716171741486, + -0.03565399721264839, + -0.03684338927268982, + 0.02510163187980652, + 0.000323278596624732, + -0.012454005889594555, + 0.006832069717347622, + -0.030702823773026466, + 0.10726626217365265, + 0.04879259318113327, + 0.016499310731887817, + -0.013913081027567387, + -0.0034350513014942408, + 0.05117136985063553, + -0.027743181213736534, + -0.032915640622377396, + -0.007295378018170595, + 0.03355182334780693, + -0.04345417395234108, + 0.03814341872930527, + 0.06638447940349579, + 0.0368710495531559, + -0.0033399693202227354, + 0.01843552477657795, + 0.02813042514026165, + -0.0822061151266098, + 0.024161186069250107, + 0.06859730184078217, + 0.015600353479385376, + -0.014867357909679413, + 0.05078412964940071, + -0.044892504811286926, + -0.03239009529352188, + -0.0472436249256134, + -0.04337119683623314, + 0.005846675019711256, + 0.009508194401860237, + 0.04906919598579407, + 0.013442857190966606, + 0.0057360343635082245, + 0.060354556888341904, + -0.005777524318546057, + -0.05291396379470825, + 0.033219899982213974, + 0.04345417395234108, + -0.06793345510959625, + 0.002937167650088668, + 0.02167176827788353, + -0.00647594453766942, + -0.0031912957783788443, + -0.01955576241016388, + 0.013518922962248325, + 0.05758854001760483, + 0.0017737103626132011, + -0.02824106439948082, + 0.05095009133219719, + 0.004494782537221909, + 0.06383974105119705, + -0.005953858140856028, + 0.06455890834331512, + -0.06892921775579453, + -0.03142198920249939, + 0.02073132060468197, + -0.02706550620496273, + -0.0453350692987442, + 0.06489083170890808, + 0.1087045893073082, + -0.048267051577568054, + -0.0055700731463730335, + 0.03922216594219208, + 0.08552534133195877, + -0.008685302920639515, + 0.07506978511810303, + 0.034326307475566864, + -0.015628013759851456, + -0.10400235652923584, + 0.03147730976343155, + 0.00812518410384655, + -0.019873853772878647, + 0.03723062947392464, + 0.04129667952656746, + -0.026581453159451485, + 0.028517667204141617, + -0.038475338369607925, + -0.0008302382193505764, + 0.0822061151266098, + 0.012848163023591042, + 0.03894556313753128, + -0.038585979491472244, + -0.06671640276908875, + -0.07274632900953293, + -0.032141152769327164, + 0.033026281744241714, + 0.02037173882126808, + -0.03601358085870743, + -0.0005730848060920835, + 0.036179542541503906, + -0.006908135022968054, + -0.04464356601238251, + 0.02270902507007122, + 0.06693768501281738, + 0.010365660302340984, + 0.029015550389885902, + -0.002116005402058363, + 0.05296928435564041, + 0.004553560633212328, + -0.037009347230196, + -0.008844349533319473, + -0.058086421340703964, + 0.041794564574956894, + -0.02510163187980652, + 0.018850427120923996, + -0.02712082676589489, + -0.011990697123110294, + -0.030951764434576035, + -0.006199342664331198, + 0.040715817362070084, + 0.0015031590592116117, + -0.09891287982463837, + 0.07490382343530655, + 0.03803277760744095, + 0.014044467359781265, + -0.03828171640634537, + 0.026208041235804558, + 0.0729122906923294, + 0.00647594453766942, + 0.017661038786172867, + -0.0475202240049839, + -0.05095009133219719, + -0.02507397159934044, + -0.009369892999529839, + 0.0023303718771785498, + 0.005933112930506468, + 0.03374544531106949, + -0.054684218019247055, + 0.03709232807159424, + 0.03479653224349022, + -0.026291020214557648, + -0.030647503212094307, + 0.015199280343949795, + 0.011105570942163467, + -0.011188550852239132, + 0.09006161242723465, + 0.012122083455324173, + -0.08652111142873764, + 0.06151628866791725, + 0.05863962695002556, + -0.037396591156721115, + 0.019099369645118713, + -0.09332551807165146, + 0.05177989602088928, + 0.027521900832653046, + -0.0688185766339302, + -0.05520975962281227, + -0.011969951912760735, + -0.007399103604257107, + 0.022404761984944344, + 0.06821005791425705, + 0.02070366032421589, + -0.04218180477619171, + 0.02803361415863037, + 0.0010208343155682087, + 0.0348241925239563, + 0.00817358959466219, + 0.06489083170890808, + 0.039360467344522476, + -0.08104439079761505, + -0.02923683263361454, + 0.029015550389885902, + -0.012004527263343334, + -0.000992309651337564, + 0.021146222949028015, + 0.07822304964065552, + -0.03565399721264839, + -0.06256737560033798, + -0.0228058360517025, + -0.027701690793037415, + -0.016499310731887817, + -0.07003562897443771, + 0.022031350061297417, + 0.025405894964933395, + 0.01627802848815918, + -0.020897282287478447, + 0.02157495729625225, + 0.0364561453461647, + 0.07993797957897186, + 0.051392652094364166, + 0.0060610417276620865, + -0.0072677177377045155, + 0.015005659312009811, + 0.04140732064843178, + 0.008249655365943909, + 0.06334186345338821, + -0.08735091239213943, + 0.061184365302324295, + -0.023234568536281586, + -0.027286788448691368, + -0.0606311596930027, + -0.005874335300177336, + -0.020357908681035042, + 0.062235452234745026, + -0.05985667556524277, + 0.06179288774728775, + 0.0024064374156296253, + -0.04140732064843178, + -0.028517667204141617, + 0.006569297518581152, + -0.003557793330401182, + 0.03045388124883175, + -0.003118687542155385, + 0.04771384596824646, + -0.03711998835206032, + -0.016540799289941788, + 0.05487783998250961, + -0.07910817116498947 + ] + }, + { + "id": "69ba6325-b9ac-4e74-b984-7d9799967246", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "kyleriley", + "reviewDate": "2022-04-10T15:38:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5b216d83-9611-4a82-bea2-62ff6ae5bdf4", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "beasleyjason", + "reviewDate": "2022-07-29T15:04:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "82aca9dc-05df-4c46-9138-38a8810be264", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "dschmidt", + "reviewDate": "2022-10-09T08:12:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7bf81bb1-7098-43d6-ad2f-979c6c96508d", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "dhale", + "reviewDate": "2022-04-18T05:19:19", + "stars": 5, + "verifiedUser": false + }, + { + "id": "aa0a5e26-8a24-4540-a8a8-956768133d0e", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebeccasawyer", + "reviewDate": "2021-01-09T12:46:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9079cc3e-5d0d-4424-a28e-f7908e7aa2b4", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "harrisonyvonne", + "reviewDate": "2021-01-17T11:59:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ec460b8a-2e09-4755-84e0-ca6b675cc159", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "jherring", + "reviewDate": "2022-07-20T10:55:05", + "stars": 5, + "verifiedUser": true + }, + { + "id": "3faa932c-fdf8-4d0d-b8c8-e9c11925804d", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "kclay", + "reviewDate": "2021-08-01T12:46:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c3f933b8-2a47-4491-971e-fe6fe968e728", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "brenda27", + "reviewDate": "2022-09-02T07:35:31", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d228f12d-0828-47c1-892a-a4bb5a10fdd0", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "zacharyrichards", + "reviewDate": "2021-11-15T09:30:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "29238b24-1f6e-4755-b06c-58888ae5a410", + "productId": "f47c260a-48b1-4b8c-8380-749431a8bda3", + "category": "Electronics", + "docType": "customerRating", + "userName": "wdunn", + "reviewDate": "2021-08-25T19:06:53", + "stars": 5, + "verifiedUser": true + }, + { + "id": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker + (Red)", + "description": "This Awesome Speaker + (Red) is Awesome, the same as the rest of our speaker lineups! I've been searching for one which gives great soundstage, but which", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-06-20T07:15:30", + "price": 1076.66, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-02-06T13:05:05", + "newPrice": 978.83 + }, + { + "priceDate": "2021-09-13T13:05:05", + "newPrice": 1036.73 + }, + { + "priceDate": "2022-04-20T13:05:05", + "newPrice": 1172.16 + }, + { + "priceDate": "2022-11-25T13:05:05", + "newPrice": 970.82 + }, + { + "priceDate": "2024-08-15T13:05:05", + "newPrice": 1076.66 + } + ], + "descriptionVector": [ + 0.02069740556180477, + -0.007592061534523964, + -0.030342422425746918, + 0.014551451429724693, + -0.016191232949495316, + -0.026171952486038208, + -0.04857369884848595, + -0.026649685576558113, + -0.0372372530400753, + 0.031168770045042038, + -0.046791888773441315, + 0.008941330946981907, + -0.0026953108608722687, + -0.010129204019904137, + 0.012679259292781353, + -0.04211786389350891, + 0.00813435111194849, + -0.014654744416475296, + -0.04423537850379944, + 0.0140995429828763, + 0.049425870180130005, + -0.07194381952285767, + -0.023034418001770973, + -0.01752113550901413, + -0.07292510569095612, + 0.0015114722773432732, + -0.023124799132347107, + 0.04297003522515297, + 0.016720611602067947, + -0.012750273570418358, + 0.04056846350431442, + 0.048986874520778656, + -0.01363472267985344, + 0.08779934793710709, + -0.05048462748527527, + -0.03592026233673096, + 0.02445470169186592, + -0.028715552762150764, + 0.028276555240154266, + 0.06956807523965836, + -0.009302857331931591, + 0.03646255284547806, + 0.007863206788897514, + -0.049012694507837296, + 0.022853653877973557, + 0.026094483211636543, + -0.011497841216623783, + 0.026223599910736084, + 0.00754687050357461, + -0.02280200831592083, + 0.006255703512579203, + 0.0012161178747192025, + -0.04090416803956032, + 0.011420371010899544, + 0.005351887084543705, + 0.0031100984197109938, + -0.02490660920739174, + -0.03638508543372154, + 0.01974194124341011, + -0.03638508543372154, + 0.02961936965584755, + -0.01681099273264408, + -0.05340266227722168, + -0.031633589416742325, + -0.025474723428487778, + 0.0049161179922521114, + 0.009122094139456749, + -0.00694647803902626, + -0.0006863359012641013, + 0.05732781067490578, + 0.006662421394139528, + -0.014254482463002205, + 0.007566238287836313, + 0.08738617599010468, + 0.055107004940509796, + -0.04715341702103615, + 0.04043934866786003, + 0.07473274320363998, + -0.06543634086847305, + 0.025242313742637634, + 0.05515865236520767, + 0.023395944386720657, + -0.05557182431221008, + 0.038580067455768585, + 0.019096357747912407, + -0.044157907366752625, + -0.060529906302690506, + -0.08165339380502701, + 0.002926107030361891, + 0.032898932695388794, + -0.0350680947303772, + 0.032718170434236526, + 0.057895924896001816, + 0.06099472567439079, + 0.0477989986538887, + -0.006336401682347059, + -0.011730251833796501, + 0.06213095039129257, + -0.02420938014984131, + -0.03726307675242424, + 0.0431249737739563, + -0.0984385684132576, + -0.06280235946178436, + -0.0032601964194327593, + -0.0076501639559865, + 0.0325632281601429, + -0.012511407025158405, + 0.045268312096595764, + -0.02627524733543396, + -0.08774770051240921, + 0.07452615350484848, + -0.02726944535970688, + 0.014796772971749306, + -0.0325632281601429, + 0.03659167140722275, + 0.014680568128824234, + -0.056191585958004, + -0.05074286088347435, + 0.030419891700148582, + -0.030342422425746918, + 0.037624605000019073, + -0.003876728704199195, + -0.005209858529269695, + -0.011988485231995583, + 0.04472602158784866, + -0.01320218201726675, + 0.0002426990249659866, + 0.04878028482198715, + 0.04201457276940346, + 0.04392549768090248, + -0.08563019335269928, + 0.06295730173587799, + -0.00840549636632204, + 0.026365628466010094, + 0.019148005172610283, + 0.03457745164632797, + 0.05867062509059906, + 0.07468109577894211, + -0.05174997076392174, + -0.02530687116086483, + -0.011284798383712769, + -0.013053697533905506, + 0.05022639408707619, + 0.052318084985017776, + -0.027321092784404755, + 0.03522303327918053, + -0.0622858926653862, + 0.02879302203655243, + -0.01382839772850275, + -0.01752113550901413, + 0.017327459529042244, + -0.0873345285654068, + 0.022040219977498055, + -0.020903991535305977, + 0.01712087355554104, + 0.06548798829317093, + -0.09652763605117798, + 0.034680742770433426, + 0.027217797935009003, + 0.030626479536294937, + -0.02974848635494709, + -0.05004562810063362, + -0.022027308121323586, + 0.04090416803956032, + -0.09022674709558487, + 0.05032968521118164, + 0.03950970619916916, + 0.029102902859449387, + -0.07509426772594452, + 0.03367363288998604, + 0.06466163694858551, + 0.023537972941994667, + 0.015248681418597698, + 0.06352541595697403, + -0.005613347981125116, + -0.017572781071066856, + 0.03672078624367714, + -0.012795464135706425, + -0.06290565431118011, + -0.021485017612576485, + -0.00819890946149826, + 0.03654002398252487, + -0.02152375318109989, + -0.01285356655716896, + 0.01536488626152277, + 0.06089143082499504, + 0.02726944535970688, + 0.0050064995884895325, + 0.0034377318806946278, + 0.054848771542310715, + -0.003876728704199195, + -0.024674199521541595, + 0.023873675614595413, + 0.04423537850379944, + -0.04188545420765877, + -0.005897405091673136, + 0.0017785824602469802, + -0.009935528971254826, + 0.02334429696202278, + 0.0397421158850193, + 0.017688985913991928, + 0.04147228226065636, + 0.10081431269645691, + -0.009264122694730759, + -0.02863808162510395, + -0.035946086049079895, + 0.047902293503284454, + 0.05340266227722168, + 0.0531444288790226, + 0.026236511766910553, + -0.03129788488149643, + -0.011639869771897793, + -0.042453568428754807, + 0.009870970621705055, + 0.07364816218614578, + -0.0007989095174707472, + 0.010380982421338558, + -0.021652869880199432, + 0.0017914940835908055, + 0.012104690074920654, + 0.04676606506109238, + 0.006643053609877825, + 0.050562094897031784, + 0.0005810250877402723, + -0.05092362314462662, + -0.0029890513978898525, + 0.030084189027547836, + -0.029516074806451797, + 0.09972973167896271, + 0.06652092188596725, + -0.08878063410520554, + -0.0013081134529784322, + 0.022311363369226456, + -0.018592802807688713, + -0.033880218863487244, + 0.00011055616778321564, + -0.0056875902228057384, + -0.05438395217061043, + -0.03638508543372154, + 0.01509374100714922, + -0.03486150503158569, + 0.052318084985017776, + -0.1202334612607956, + -0.024248113855719566, + -0.0013807415962219238, + -0.0053454311564564705, + 0.04015529155731201, + -0.020387524738907814, + -0.07184052467346191, + 0.0038735007401555777, + -0.10375817120075226, + -0.009076903574168682, + -0.03320881351828575, + 0.00482573639601469, + -0.012337099760770798, + 0.04056846350431442, + 0.1284969300031662, + -0.01851533353328705, + -0.021601222455501556, + -0.08470054715871811, + -0.03839930519461632, + -0.008153718896210194, + -0.0050355507992208, + 0.01077478751540184, + -0.1550433188676834, + -0.02949025295674801, + 0.06182107329368591, + -0.010807067155838013, + -0.031349532306194305, + 0.0655396357178688, + 0.016217056661844254, + 0.010451995767652988, + 0.027760088443756104, + 0.012214438989758492, + 0.053609251976013184, + 0.05629487708210945, + -0.0027614831924438477, + 0.0005773936863988638, + -0.024932432919740677, + 0.04823799431324005, + 0.06698574125766754, + 0.025216490030288696, + 0.05043298006057739, + -0.09441012144088745, + -0.034422509372234344, + 0.00417692493647337, + 0.07545579224824905, + -0.012905213050544262, + -0.02737273834645748, + -0.05521029606461525, + -0.025216490030288696, + -0.027501855045557022, + -0.018709009513258934, + 0.05381583794951439, + 0.01987105794250965, + 0.03783119097352028, + 0.07958752661943436, + -0.05293784290552139, + 0.05954861640930176, + 0.0041026826947927475, + 0.00511302100494504, + 0.0018947874195873737, + -0.013944602571427822, + -0.09389365464448929, + -0.021355900913476944, + 0.007747001480311155, + -0.07297675311565399, + 0.14512716233730316, + -0.018127983435988426, + -0.049141813069581985, + 0.12209274619817734, + 0.0377795435488224, + -0.04382220655679703, + -0.03909653425216675, + 0.015816794708371162, + -0.017469488084316254, + -0.01523576956242323, + -0.018696097657084465, + 0.026236511766910553, + 0.004199520219117403, + -0.03434503823518753, + -0.044287025928497314, + -0.044829316437244415, + 0.052473023533821106, + -0.05851568281650543, + 0.005845758132636547, + 0.04307333007454872, + -0.02918037213385105, + 0.024506347253918648, + 0.029438605532050133, + -0.0015784515999257565, + -0.04854787513613701, + 0.03592026233673096, + -0.016475290060043335, + 0.06626268476247787, + -0.030549008399248123, + 0.04462272673845291, + -0.0011806107359007, + 0.07008454203605652, + -0.009967808611690998, + 0.062337540090084076, + -0.014719302766025066, + -0.03597190976142883, + -0.04766988381743431, + -0.006907742936164141, + -0.12322896718978882, + 0.0005576226976700127, + -0.03140117973089218, + 0.044416140764951706, + -0.044441964477300644, + 0.001349269412457943, + 0.009716031141579151, + 0.04754076525568962, + 0.009638560935854912, + 0.01349269412457943, + -0.004251167178153992, + -0.020206762477755547, + -0.053609251976013184, + 0.09611446410417557, + -0.027992498129606247, + -0.020749052986502647, + 0.014448157511651516, + -0.0009877426782622933, + 0.030936358496546745, + 0.04139481112360954, + 0.0265722144395113, + -0.004389967303723097, + 0.0264043640345335, + -0.08490713685750961, + 0.004699847660958767, + 0.018799390643835068, + 0.0325632281601429, + -0.05464218556880951, + 0.03235664218664169, + -0.05562347173690796, + 0.031633589416742325, + 0.03938059136271477, + -0.08304785937070847, + -0.00898006558418274, + 0.04560401663184166, + 0.017701897770166397, + 0.060839783400297165, + 0.03744383901357651, + 0.00958691444247961, + 0.052214790135622025, + 0.02069740556180477, + -0.038425128906965256, + 0.011491385288536549, + -0.02961936965584755, + 0.006701156497001648, + -0.057637691497802734, + -0.09120803326368332, + -0.016630230471491814, + 0.046378716826438904, + 0.027191976085305214, + -0.023305563256144524, + -0.00403166888281703, + 0.04960663244128227, + -0.04201457276940346, + -0.012614700943231583, + -0.013725104741752148, + 0.04322826862335205, + 0.10556580871343613, + -0.035377971827983856, + -0.0651264563202858, + -0.08480384200811386, + -0.05043298006057739, + 0.0427892729640007, + -0.009780589491128922, + -0.01833456940948963, + -0.02876719832420349, + 0.03878665342926979, + -0.10566910356283188, + 0.020387524738907814, + 0.03736637160181999, + 0.02961936965584755, + 0.07659202069044113, + -0.0024112542159855366, + 0.04392549768090248, + -0.04852205142378807, + 0.03240828961133957, + 0.013931690715253353, + 0.06672750413417816, + 0.00538416625931859, + -0.10034949332475662, + 0.004431930370628834, + 0.06755385547876358, + -0.04945169389247894, + -0.0140995429828763, + -0.10763167589902878, + -0.05043298006057739, + -0.007734089624136686, + 0.03318298980593681, + 0.02139463648200035, + -0.036230143159627914, + -0.0176373403519392, + -0.07462944835424423, + 0.0486769936978817, + -0.056088291108608246, + 0.06331882625818253, + -0.06244083121418953, + 0.021020198240876198, + -0.030549008399248123, + 0.06213095039129257, + -0.060323316603899, + -0.05216314271092415, + 0.025100285187363625, + 0.057637691497802734, + 0.030600655823946, + 0.04056846350431442, + 0.06156283989548683, + 0.007094962056726217, + -0.06662420928478241, + 0.02863808162510395, + 0.012472672387957573, + -0.0020820065401494503, + 0.011697972193360329, + 0.10794155299663544, + -0.09657928347587585, + 0.046636950224637985, + -0.0038638170808553696, + 0.06269906461238861, + 0.03336375206708908, + -0.020464995875954628, + -0.01167214848101139, + 0.048986874520778656, + 0.00511302100494504, + 0.004738582763820887, + 0.010038822889328003, + 0.011000742204487324, + -0.04051681607961655, + 0.0004829771351069212, + -0.03227917104959488, + 0.040800873190164566, + -0.1167214885354042, + -0.0054358127526938915, + -0.01341522391885519, + -0.016488201916217804, + 0.0725119337439537, + 0.09151791036128998, + -0.07302840054035187, + -0.017133785411715508, + -0.04854787513613701, + 0.04100746288895607, + 0.02685627155005932, + -0.015661854296922684, + -0.01903180032968521, + 0.031788527965545654, + -0.03248576074838638, + 0.024700023233890533, + 0.08098199218511581, + 0.08940039575099945, + 0.00569727411493659, + 0.00093044713139534, + -0.0316852368414402, + -0.03057483211159706, + 0.009761221706867218, + -0.028328202664852142, + -0.042608506977558136, + 0.05908379703760147, + 0.0622858926653862, + -0.01347978226840496, + 0.011626957915723324, + 0.03713396191596985, + -0.008444231934845448, + -0.05464218556880951, + -0.02209186553955078, + -0.012634068727493286, + -0.049554985016584396, + 0.04098163917660713, + 0.019548267126083374, + 0.007372563239187002 + ] + }, + { + "id": "8ab44ca8-e409-42c1-a76c-21f0f7d46d82", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "alexander30", + "reviewDate": "2022-04-24T06:33:51", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e96b7f98-625f-4ec5-bec9-43324cf27603", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "mariaholland", + "reviewDate": "2022-11-25T22:48:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3079caf9-61ef-4fae-8f8b-2ff728095376", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "uarmstrong", + "reviewDate": "2022-10-22T09:37:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d89b9118-5944-4fbb-ab1b-3fd244e7da09", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "janicerangel", + "reviewDate": "2022-10-02T10:33:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b9e2b1e5-123e-4fdc-9c91-6f3a9906cdd5", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "rangeljohn", + "reviewDate": "2021-11-22T20:28:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cf8ea3cb-f409-4cbe-8540-61a83e631809", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "randall95", + "reviewDate": "2021-12-27T13:01:29", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2df58e16-1d8b-465b-9624-1276687d34b0", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "ulawrence", + "reviewDate": "2022-08-15T03:41:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4c94f2eb-ca86-40c4-b41c-dfe69638f1e1", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "brendajohnson", + "reviewDate": "2021-02-06T13:05:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d4db3620-faf5-4b92-a719-aeb8051ab199", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "lewisbailey", + "reviewDate": "2022-01-20T15:09:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "91409e12-4d59-465c-8910-47d06b772956", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "buchanankevin", + "reviewDate": "2022-08-11T12:23:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "da658b0b-3afd-4aca-abe2-bf300f204196", + "productId": "67ecfe28-8d4f-4fa4-8fc9-4736c88bdb25", + "category": "Media", + "docType": "customerRating", + "userName": "garciaemily", + "reviewDate": "2021-06-06T03:06:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker 3000 (Silver)", + "description": "This Amazing Speaker 3000 (Silver) is rated 4.7 out of 5 by 4.\n\nRated 5 out of 5 by Anonymous from Great Speaker!!! My house had a speaker in the kitchen with the microphone to play a little and it works great", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-01-24T06:09:49", + "price": 868.83, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-05-25T04:40:49", + "newPrice": 895.14 + }, + { + "priceDate": "2021-10-12T04:40:49", + "newPrice": 943.59 + }, + { + "priceDate": "2022-03-01T04:40:49", + "newPrice": 841.27 + }, + { + "priceDate": "2022-07-19T04:40:49", + "newPrice": 918.41 + }, + { + "priceDate": "2022-12-06T04:40:49", + "newPrice": 840.86 + }, + { + "priceDate": "2024-06-27T04:40:49", + "newPrice": 868.83 + } + ], + "descriptionVector": [ + -0.015696795657277107, + 0.017753295600414276, + -0.020216450095176697, + 0.015441184863448143, + -0.006303117144852877, + -0.01509262528270483, + -0.04619574919342995, + 0.026049012318253517, + 0.0243991632014513, + 0.1817156821489334, + -0.01197882741689682, + -0.005466574337333441, + -0.06060287356376648, + -0.02653699554502964, + -0.051586803048849106, + -0.010067559778690338, + -0.04064203426241875, + -0.028651589527726173, + -0.028488928452134132, + 0.01677732914686203, + -0.01868278905749321, + -0.05098263546824455, + -0.012304149568080902, + 0.030812658369541168, + -0.013163929805159569, + -0.03824859485030174, + -0.005504335276782513, + 0.040363188832998276, + 0.01594078727066517, + -0.03973577916622162, + -0.008679131045937538, + 0.04094412177801132, + 0.0012976579600945115, + -0.015650320798158646, + -0.013419539667665958, + 0.026072248816490173, + 0.01649848185479641, + -0.016242871060967445, + 0.005402672104537487, + 0.04949544742703438, + 0.011101619340479374, + 0.027791809290647507, + 0.08611743152141571, + -0.0487983264029026, + 0.05061083659529686, + 0.03601781278848648, + 0.013907522894442081, + 0.04540568217635155, + 0.06041697785258293, + 0.0904395654797554, + 0.0018967444775626063, + -0.00894636008888483, + -0.047729410231113434, + 0.05228392407298088, + 0.044917698949575424, + -0.020007314160466194, + 0.006256642751395702, + 0.08639627695083618, + 0.028419217094779015, + -0.03183509781956673, + 0.046869631856679916, + 0.009689953178167343, + -0.02241237461566925, + 0.01598726212978363, + -0.06999074667692184, + 0.0070699481293559074, + -0.0015641606878489256, + 0.07352281361818314, + 0.00013279753329697996, + 0.05088968575000763, + 0.058046773076057434, + 0.01666114293038845, + -0.04422057792544365, + 0.02384146861732006, + 0.08230651170015335, + -0.018613075837492943, + 0.055630091577768326, + 0.04147857800126076, + -0.04512683302164078, + 0.008022677153348923, + 0.011119047179818153, + 0.039689306169748306, + -0.01290831994265318, + -0.003906771074980497, + 0.0757535919547081, + 0.013198785483837128, + -0.11395571380853653, + -0.14769627153873444, + -0.0029598509427160025, + 0.08077285438776016, + 0.02412031590938568, + 0.016963228583335876, + 0.01840393990278244, + 0.010538115166127682, + -0.00167308549862355, + -0.025212468579411507, + -0.06125352159142494, + 0.014116658829152584, + -0.07463820278644562, + -0.01523204892873764, + -0.010108225047588348, + -0.0237949937582016, + -0.048891276121139526, + -0.024050604552030563, + -0.023097874596714973, + -0.006245024036616087, + 0.008493232540786266, + -0.03954988345503807, + 0.05223744735121727, + -0.11730188131332397, + 0.015847837552428246, + -0.012548141181468964, + -0.003340361639857292, + -0.07119908183813095, + 0.04438323900103569, + 0.02331862971186638, + -0.002188662998378277, + -0.06092819571495056, + -0.04700905457139015, + -0.04389525577425957, + -0.021006518974900246, + -0.03994491696357727, + -0.010398691520094872, + 0.006605202332139015, + 0.05061083659529686, + -0.008487422950565815, + 0.024166790768504143, + 0.007308130618184805, + 0.004249521065503359, + 0.009521483443677425, + -0.0345073901116848, + 0.05567656829953194, + 0.025653978809714317, + 0.004342470318078995, + -0.026444045826792717, + 0.06580802798271179, + -0.021482883021235466, + 0.05539771914482117, + 0.011043526232242584, + 0.017439592629671097, + -0.015441184863448143, + 0.1023370623588562, + 0.03320610150694847, + 0.020007314160466194, + 0.008150482550263405, + 0.03843449056148529, + -0.07501000165939331, + 0.024980096146464348, + 0.008185338228940964, + -0.0025778878480196, + -0.016056973487138748, + -0.07008369266986847, + -0.01657981239259243, + -0.043291088193655014, + -0.010514877736568451, + 0.011275899596512318, + -0.09095078706741333, + 0.049123648554086685, + -0.04526625946164131, + 0.07319749146699905, + -0.06729521602392197, + -0.039526645094156265, + -0.050796736031770706, + -0.0024718677159398794, + -0.0018342942930758, + 0.09583061933517456, + 0.04556834325194359, + 0.05958043411374092, + -0.11479225754737854, + 0.03478623554110527, + -0.001506067463196814, + -0.06738816946744919, + -0.006250833161175251, + -0.002853830810636282, + -0.0144768375903368, + -0.07050196826457977, + 0.01005594152957201, + 0.005074445158243179, + -0.03418206796050072, + -0.008992834948003292, + 0.01225767470896244, + 0.07477762550115585, + -0.03225336968898773, + -0.019054584205150604, + 0.04731114208698273, + 0.031207691878080368, + 0.018148330971598625, + -0.06320545077323914, + 0.004891451448202133, + 0.07542826980352402, + 0.01681218482553959, + 0.005301008932292461, + -0.027698859572410583, + 0.023028163239359856, + -0.09722486138343811, + 0.013256878592073917, + 0.041153255850076675, + 0.00016801655874587595, + -0.031277403235435486, + -0.037900034338235855, + -0.03260193020105362, + 0.044917698949575424, + 0.08616390079259872, + -0.053492262959480286, + -0.0090218810364604, + -0.05042493715882301, + -0.0072326092049479485, + 0.08630333095788956, + -0.003645351156592369, + -0.018218042328953743, + 0.023818232119083405, + 0.018984872847795486, + -0.013314972631633282, + 0.00046220439253374934, + 0.04659078270196915, + 0.04814768210053444, + -0.03987520560622215, + 0.03299696370959282, + -0.0269785039126873, + -0.06478559225797653, + 0.08030810207128525, + -0.07054843753576279, + -0.00653549050912261, + 0.02491038478910923, + -0.09666716307401657, + 0.015650320798158646, + -0.0022133528254926205, + -0.0015438280533999205, + 0.053166940808296204, + -0.029186047613620758, + -0.04022376611828804, + -0.0005838371580466628, + -0.026513757184147835, + 0.0694330483675003, + -0.0456148162484169, + 0.03176538646221161, + -0.03985196724534035, + -0.041548289358615875, + -0.07068786025047302, + 0.11590764671564102, + -0.042105983942747116, + 0.02553779073059559, + -0.03889923915266991, + -0.016800567507743835, + -0.007679927162826061, + -0.09025366604328156, + 0.0797039344906807, + -0.011328183114528656, + -0.05744260177016258, + -0.030045827850699425, + -0.10205821692943573, + 0.010880865156650543, + -0.06617982685565948, + 0.041548289358615875, + 0.021982485428452492, + 0.018450414761900902, + 0.0705949142575264, + -0.05493297427892685, + -0.0012816822854802012, + -0.025677215307950974, + -0.060788773000240326, + 0.01773005910217762, + 0.008992834948003292, + 0.05191212520003319, + -0.0563272126019001, + -0.019135914742946625, + 0.03945693373680115, + -0.05497944727540016, + 0.009463390335440636, + -0.004656173754483461, + -0.03780708461999893, + 0.025282181799411774, + 0.0006531859398819506, + -0.004539987072348595, + -0.05800029635429382, + -0.000915694807190448, + -0.04847300425171852, + -0.008336381055414677, + -0.017323406413197517, + -0.012617853470146656, + 0.10187231749296188, + 0.030162014067173004, + 0.003273554379120469, + 0.018264517188072205, + 0.08277125656604767, + -0.025096282362937927, + 0.03982872888445854, + -0.012304149568080902, + -0.018310992047190666, + 0.007662499323487282, + 0.01156055647879839, + -0.006849193945527077, + 0.010305741801857948, + 0.062415383756160736, + 0.018276136368513107, + 0.0789138674736023, + 0.04893775284290314, + -0.03362436965107918, + -0.032067473977804184, + 0.030278200283646584, + 0.05172622576355934, + 0.0036163046024739742, + -0.04689287021756172, + -0.08955655246973038, + 0.007052520290017128, + 0.005510144401341677, + -0.02288873866200447, + 0.032578691840171814, + -0.06153236702084541, + -0.06441379338502884, + 0.04768293723464012, + -0.03460033982992172, + -0.05061083659529686, + -0.009056737646460533, + 0.0932280421257019, + -0.010067559778690338, + -0.0041885231621563435, + 0.04140886664390564, + 0.04645135998725891, + 0.028372742235660553, + -0.0010260719573125243, + -0.024701248854398727, + -0.03771413490176201, + 0.04027023911476135, + -0.056745484471321106, + 0.01960066147148609, + 0.04954192042350769, + -0.051029108464717865, + 0.03592486307024956, + 0.0630660280585289, + 0.042384833097457886, + -0.021587450057268143, + 0.03536716848611832, + -0.0041391439735889435, + 0.043058715760707855, + -0.050471413880586624, + -0.045916903764009476, + 0.016881898045539856, + 0.052423346787691116, + 0.02236589975655079, + 0.04605632647871971, + -0.028860725462436676, + 0.054514702409505844, + -0.023702044039964676, + 0.027954470366239548, + -0.027675623074173927, + 0.039131611585617065, + -0.03074294701218605, + 0.043686121702194214, + -0.03741205111145973, + 0.001160412561148405, + -0.052423346787691116, + 0.024027366191148758, + 0.019298575818538666, + 0.021831441670656204, + -0.00533586461097002, + -0.042779866605997086, + -0.041548289358615875, + 0.05135443061590195, + -0.011775501072406769, + -0.027861520648002625, + 0.007581168785691261, + 0.0013470371486619115, + -0.01773005910217762, + 0.004304709378629923, + 0.030719708651304245, + -1.372906808683183e-05, + 0.042036272585392, + 0.018415559083223343, + -0.09741075336933136, + -0.059441011399030685, + -0.07152440398931503, + -0.03764442354440689, + -0.015046151354908943, + 0.018299372866749763, + -0.001324526034295559, + 0.050750259310007095, + -0.0037731563206762075, + -0.007528884802013636, + 0.0176487285643816, + 0.01999569498002529, + 0.05098263546824455, + 0.09485465288162231, + -0.0074591729789972305, + 0.040084339678287506, + 0.0475899875164032, + -0.006529680918902159, + 0.017718439921736717, + -0.01753254234790802, + 0.026281384751200676, + -0.018543364480137825, + 0.012524903751909733, + -0.02256341651082039, + 0.07236094772815704, + 0.047218192368745804, + -0.05279514193534851, + 0.04082793369889259, + 0.04986724257469177, + 0.02026292495429516, + -0.06771349161863327, + -0.04419734328985214, + 0.04542892053723335, + 0.059162162244319916, + -0.056466635316610336, + -0.03641284629702568, + -0.08267831057310104, + -0.02218000218272209, + 0.012222819030284882, + -0.061904165893793106, + -0.06116057187318802, + 0.022226477041840553, + -0.05363168567419052, + 0.026351096108555794, + -0.0103115513920784, + -0.02086709439754486, + 0.08337543159723282, + 0.05800029635429382, + -0.02486390992999077, + 0.0904395654797554, + -0.053213413804769516, + 0.06143941730260849, + 0.0456148162484169, + 0.09420400857925415, + 0.02586311288177967, + -0.020169975236058235, + 0.017857864499092102, + 0.0495883971452713, + -0.0483800545334816, + 0.0020274543203413486, + -0.06538975983858109, + -0.07710135728120804, + -0.021982485428452492, + 0.004049099516123533, + 0.018252898007631302, + -0.04870537668466568, + -0.0269785039126873, + -0.052376870065927505, + 0.02649052068591118, + 0.007215181365609169, + -0.004618413280695677, + 0.002224971307441592, + -0.005893560126423836, + -0.0116999801248312, + 0.050517886877059937, + -0.08992834389209747, + -0.04352346062660217, + -0.01792757585644722, + 0.05437527969479561, + 0.03634313493967056, + -0.021355077624320984, + 0.06111409515142441, + 0.04621898755431175, + -0.03102179430425167, + 0.03787679597735405, + 0.030231725424528122, + 0.035599540919065475, + -0.0329272523522377, + 0.08713986724615097, + -0.06659809499979019, + 0.008040104992687702, + -0.09871204197406769, + 0.031556252390146255, + 0.0016890611732378602, + 0.06432083994150162, + -0.012071777135133743, + 0.00747660081833601, + -0.08783698827028275, + -0.05228392407298088, + -0.028186842799186707, + -0.02221485786139965, + -0.018229661509394646, + -0.04677668213844299, + -0.025328656658530235, + 0.028907200321555138, + -0.04605632647871971, + -0.06390257179737091, + 0.03497213497757912, + 0.018113475292921066, + 0.08314305543899536, + 0.05391053482890129, + -0.03348494693636894, + -0.01047421246767044, + 0.0014189275680109859, + 0.004232093226164579, + 0.09443638473749161, + 0.016800567507743835, + 0.01970522850751877, + -0.03473976254463196, + 0.01360543817281723, + 0.01455816812813282, + 0.029418420046567917, + 0.11851022392511368, + 0.010090797208249569, + -0.03232308104634285, + -0.01562708429992199, + -0.006152074784040451, + -0.042384833097457886, + 0.0045080361887812614, + -0.057535551488399506, + 0.03827182948589325, + 0.02451534941792488, + -0.042663682252168655, + -0.012002064846456051, + 0.03460033982992172, + -0.011525699868798256, + -0.016881898045539856, + -0.08188824355602264, + -0.018310992047190666, + -0.05576951801776886, + 0.027350300922989845, + 0.07370871305465698, + -0.022551799193024635 + ] + }, + { + "id": "e24d2c62-8bb1-45d7-b009-fbec30e92241", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "fullerjay", + "reviewDate": "2022-12-07T13:02:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "83d7e4bb-b8c6-4d36-83ce-f0bd0c10d6cc", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "julie14", + "reviewDate": "2022-03-31T08:22:19", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1b6f2296-b675-4b6f-97f9-1aadaf9463d7", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "kerry76", + "reviewDate": "2022-08-24T09:40:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "023f7d31-c6c8-4bde-a6bb-858530cd1627", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "jorgeruiz", + "reviewDate": "2022-01-22T16:14:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b67d6d74-add8-4bd0-8c56-d4cfe219520d", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "jackiemorgan", + "reviewDate": "2021-12-23T05:18:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a7003d18-23b6-400b-bae5-409f58b4c442", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "kellyprice", + "reviewDate": "2021-12-20T09:51:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6342168a-b3dd-4fed-860a-f575aa5d79df", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "kingnicole", + "reviewDate": "2022-06-07T01:43:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b68234fa-5a9e-4e82-9627-8b9e96d6389b", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "mannwilliam", + "reviewDate": "2021-05-25T04:40:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "519ec41e-8ced-4b02-8167-b60b02672271", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "jennifer53", + "reviewDate": "2021-07-27T17:51:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ad952670-ae2d-465e-8460-bb7ca977a2ec", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "jacksonmichael", + "reviewDate": "2022-06-04T23:41:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "45ff0775-1d02-45f2-a9ca-baa596057173", + "productId": "9efadd31-8bec-4268-8d7d-ab398f04bdda", + "category": "Media", + "docType": "customerRating", + "userName": "benjaminhood", + "reviewDate": "2021-12-11T08:47:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2cc75af3-154d-4bea-991c-51dda524a815", + "productId": "2cc75af3-154d-4bea-991c-51dda524a815", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Pro (Red)", + "description": "This Basic Mouse Pro (Red) is a very compact mouse, so if you have any doubt how big a difference this mouse really makes, check out my guide on how to get it for real.\n\nFirst, take this mouse out right now and use the standard size keys to get that small and comfortable click. Once you press the mouse on the top half, you're all done!\n\nI chose the Red thumbstick because", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-11-13T15:12:29", + "price": 279.19, + "stock": 34, + "priceHistory": [ + { + "priceDate": "2021-03-10T10:56:16", + "newPrice": 293.88 + }, + { + "priceDate": "2021-09-08T10:56:16", + "newPrice": 275.95 + }, + { + "priceDate": "2022-03-09T10:56:16", + "newPrice": 302.87 + }, + { + "priceDate": "2023-12-07T10:56:16", + "newPrice": 279.19 + } + ], + "descriptionVector": [ + -0.009700831957161427, + -0.014607075601816177, + -0.037489742040634155, + 0.05422482639551163, + -0.031315889209508896, + -0.03649141639471054, + 0.0470263734459877, + 0.031736236065626144, + -0.00606548273935914, + 0.05059932917356491, + -0.013083315454423428, + -0.050205253064632416, + 0.03859315440058708, + -0.06783357262611389, + 0.054382454603910446, + -0.019743196666240692, + -0.044635649770498276, + 0.017956718802452087, + -0.0026304556522518396, + 0.01693212240934372, + 0.08853568881750107, + -0.07256248593330383, + -0.044793277978897095, + 0.03134215995669365, + 0.032682016491889954, + 0.010318216867744923, + -0.03494138643145561, + 0.03520410135388374, + -0.016091426834464073, + 0.03846179321408272, + 0.015079965814948082, + 0.0766608715057373, + -0.027033597230911255, + 0.029135335236787796, + -0.042691539973020554, + -0.015001150779426098, + -0.026363668963313103, + -0.08044400066137314, + 0.028714988380670547, + 0.08096943795681, + -0.013070180080831051, + 0.025667468085885048, + 0.0011436407221481204, + -0.0940002053976059, + -0.029844671487808228, + 0.07813208550214767, + -0.03804144635796547, + -0.021739846095442772, + -0.009424978867173195, + -0.04263899847865105, + -0.0002621014427859336, + 0.05109849199652672, + -0.058480843901634216, + -0.008603987284004688, + 0.06163344904780388, + 0.007415192201733589, + -0.0023858004715293646, + 0.037673644721508026, + 0.01768086664378643, + -0.11485995352268219, + 0.03118452988564968, + -0.06998785585165024, + -0.000181131181307137, + 0.019086403772234917, + -0.0679386630654335, + -0.06673016399145126, + -0.05348921939730644, + -0.030632823705673218, + 0.10135629028081894, + 0.04434666037559509, + -0.006436571013182402, + 0.017746545374393463, + 0.01036419253796339, + -0.002131293062120676, + -0.018232572823762894, + 0.023394964635372162, + 0.08758990466594696, + -0.021805526688694954, + 0.0027585304342210293, + -0.0028866049833595753, + 0.01990082673728466, + -0.03481002524495125, + -0.02942432463169098, + -0.0028701850678771734, + 0.01247249823063612, + -0.007461167871952057, + 0.041220325976610184, + -0.0557485856115818, + 0.0004831533005926758, + 0.061685994267463684, + -0.054540086537599564, + 0.03817280754446983, + 0.05149256810545921, + 0.04258645325899124, + 0.03654395788908005, + 0.011053825728595257, + -0.02103050984442234, + 0.02091228775680065, + -0.033575255423784256, + 0.010640045627951622, + 0.06079275533556938, + 0.04500345140695572, + -0.08322880417108536, + -0.03541427478194237, + 0.05377820506691933, + 0.00029453058959916234, + 0.04424157366156578, + 0.02149026468396187, + -0.04873403534293175, + -0.14470462501049042, + 0.029476867988705635, + -0.014593939296901226, + -0.021227547898888588, + 0.007461167871952057, + -0.09011199325323105, + -0.051151033490896225, + -0.05335785821080208, + -0.017247382551431656, + -0.011257431469857693, + 0.024708550423383713, + 0.04303307458758354, + 0.09079505503177643, + 0.02976585552096367, + 0.121900774538517, + -0.0318150520324707, + -0.02389412745833397, + 0.014646482653915882, + -0.008091689087450504, + 0.01802239939570427, + -0.049601003527641296, + -0.04752553626894951, + 0.11559555679559708, + 0.03864569589495659, + 0.04807724431157112, + -0.06462842971086502, + 0.02272503636777401, + 0.06935733556747437, + -0.009076878428459167, + -0.058743562549352646, + 0.07965584844350815, + 0.006068767048418522, + -0.08380678296089172, + -0.01057436689734459, + 0.04424157366156578, + -0.07650323957204819, + 0.007815835997462273, + -0.08138978481292725, + 0.026455620303750038, + -0.007986602373421192, + 0.033654071390628815, + -0.04634331166744232, + -0.11559555679559708, + 0.02652129903435707, + -0.029135335236787796, + 0.055590953677892685, + 0.03675413504242897, + -0.06636235862970352, + 0.008209912106394768, + -0.037647370249032974, + 0.07629306614398956, + 0.023303013294935226, + -0.015001150779426098, + -0.0046369582414627075, + 0.010226266458630562, + -0.020478803664445877, + 0.0836491510272026, + 0.009004631079733372, + 0.03854060918092728, + -0.0045088836923241615, + 0.01245279423892498, + -0.08606614917516708, + 0.012656399980187416, + -0.015565993264317513, + -0.0352303721010685, + 0.02306656911969185, + -0.02038685232400894, + 0.050284069031476974, + -0.01689271442592144, + -0.01188795268535614, + -0.0422186516225338, + 0.05033661052584648, + 0.027270043268799782, + -0.05007389560341835, + 0.058113038539886475, + 0.03115825727581978, + -0.0015401794807985425, + 0.03325999528169632, + 0.02264622040092945, + -0.040983881801366806, + 0.01260385662317276, + -0.0017437852220609784, + -0.025142034515738487, + 0.026100952178239822, + -0.014699026010930538, + 0.02256740629673004, + 0.07955076545476913, + -0.02298775315284729, + 0.03985419496893883, + 0.0461331382393837, + 0.016341008245944977, + -0.05469771847128868, + 0.041220325976610184, + 0.06751831620931625, + 0.04261272773146629, + 0.022173330187797546, + -0.0047913044691085815, + 0.04006436839699745, + 0.0011945421574637294, + 0.03092181123793125, + -0.0007992348982952535, + 0.03168369084596634, + -0.02558865398168564, + 0.022580541670322418, + -0.04552888870239258, + 0.04413648694753647, + 0.04382122680544853, + 0.023986078798770905, + 0.019086403772234917, + -0.06378772854804993, + -0.04928574338555336, + -0.018298251554369926, + 0.04537125676870346, + -0.02204197086393833, + -0.020741520449519157, + -0.08406949788331985, + 0.01510623749345541, + 0.10083085298538208, + -0.004564710892736912, + 0.04458310455083847, + 0.027322586625814438, + -0.0818101316690445, + -0.015040558762848377, + 0.04135168343782425, + 0.049154385924339294, + -0.0775541141629219, + 0.03336508199572563, + -0.023381829261779785, + -0.023079704493284225, + -0.008321566507220268, + 0.07424387335777283, + -0.08948147296905518, + 0.016275329515337944, + -0.02734885923564434, + 0.010114611126482487, + 0.0800761952996254, + 0.011750025674700737, + 0.0036681885831058025, + -0.05685199797153473, + -0.10130374133586884, + 0.008998063392937183, + -0.09305442124605179, + 0.04973236098885536, + 0.009595745243132114, + 0.012137534096837044, + -0.009720535948872566, + 0.016866443678736687, + 0.05706217139959335, + -0.019572429358959198, + -0.031210800632834435, + -0.05816558375954628, + 0.07156416028738022, + 0.04474073648452759, + 0.0019276873208582401, + 0.034363407641649246, + 0.017956718802452087, + 0.0013497094623744488, + 0.05275360867381096, + -0.07256248593330383, + -0.0391974039375782, + 0.03714820742607117, + 0.003070506965741515, + 0.005930840503424406, + 0.09562905132770538, + -0.02908279187977314, + -0.03205149620771408, + 0.03977538272738457, + 0.012577584944665432, + 0.08202030509710312, + -0.02313224785029888, + 0.03157860413193703, + 0.025365343317389488, + 0.08727464824914932, + 0.08780007809400558, + 0.036780405789613724, + -0.06925224512815475, + -0.01527700386941433, + -0.018114348873496056, + 0.008774753659963608, + -0.10424617677927017, + -0.003169025992974639, + -0.05580112710595131, + -0.009825622662901878, + 0.06278940290212631, + -0.028925161808729172, + 0.06583692878484726, + 0.03814653307199478, + -0.0068306466564536095, + -0.019808875396847725, + 0.014646482653915882, + 0.013201538473367691, + -0.015526585280895233, + -0.02302716113626957, + -0.06667762249708176, + -0.06536403298377991, + 0.06983022391796112, + 0.061948709189891815, + 0.015263868495821953, + 0.001483531086705625, + -0.08212538808584213, + -0.04169321805238724, + 0.0731404647231102, + 0.002287281444296241, + -0.04781452566385269, + -0.04545007273554802, + 0.08780007809400558, + -0.07235231250524521, + 0.06757085770368576, + 0.02769039012491703, + 0.01727365516126156, + -0.004476043861359358, + -0.001041016774252057, + -0.11118190735578537, + -0.07676596194505692, + 0.06504877656698227, + 0.08664412796497345, + -0.023303013294935226, + -0.04518735408782959, + -0.011868248693645, + -0.017707137390971184, + -0.08585597574710846, + -0.06641490012407303, + -0.02411743625998497, + -0.05501297861337662, + -0.03614988550543785, + -0.002236380008980632, + -0.046527210623025894, + -0.020399989560246468, + 0.04006436839699745, + 0.00623624911531806, + 0.0539621077477932, + 0.03336508199572563, + 0.05309514328837395, + -0.0300285741686821, + -0.005484221037477255, + 0.010613773949444294, + -0.10855473577976227, + 0.007953763008117676, + -0.04150931537151337, + -0.0163278728723526, + 0.014160456135869026, + 0.001972020836547017, + -0.0697251409292221, + 0.05091458931565285, + -0.05070441588759422, + 0.04024827107787132, + -0.014160456135869026, + 0.01628846488893032, + -0.0024104302283376455, + -0.0077501568011939526, + 0.0652589499950409, + 0.010416735894978046, + -0.012833734042942524, + -0.021083053201436996, + 0.07161670178174973, + 0.011329677887260914, + -0.0010631835320964456, + -0.05475025996565819, + 0.01410791277885437, + -0.004837280139327049, + 0.06651999056339264, + -0.03291846439242363, + -0.03932876139879227, + 0.030317561700940132, + 0.041561856865882874, + -0.027559032663702965, + 0.040432173758745193, + 0.01997964084148407, + 0.007218154612928629, + -0.06305212527513504, + 0.0365702323615551, + -0.016879579052329063, + 0.07440150529146194, + -0.026429347693920135, + 0.0054513816721737385, + 0.09442055225372314, + 0.00022310434724204242, + -0.008288727141916752, + -0.006935733370482922, + 0.05083577334880829, + 0.01201931107789278, + -0.022554269060492516, + -0.03943384811282158, + -0.0391974039375782, + 0.034258320927619934, + 0.009510361589491367, + -0.08165249973535538, + -0.0011994681553915143, + 0.05947916954755783, + -0.035571906715631485, + 0.019887691363692284, + -0.015933796763420105, + -0.020794063806533813, + -0.0500476211309433, + -0.00803257804363966, + -0.014055369421839714, + -0.045844148844480515, + 0.017194839194417, + 0.05548586696386337, + -0.03307609260082245, + -0.10314276814460754, + 0.011053825728595257, + 0.015119373798370361, + -0.0370168499648571, + -0.006607336923480034, + -0.025680603459477425, + -0.008282159455120564, + 0.021687302738428116, + 0.003178877755999565, + 0.0001906752004288137, + -0.03620242699980736, + 0.024931861087679863, + -0.03898723050951958, + -0.0270073264837265, + -0.01745755597949028, + -0.05884864926338196, + -0.0017027356661856174, + -0.046106863766908646, + 0.018193164840340614, + 0.04416275769472122, + -0.04242882505059242, + -0.023000888526439667, + -0.03901350125670433, + -0.07718630880117416, + 0.014488852582871914, + -0.01919149048626423, + 0.03202522546052933, + -0.004453056026250124, + 0.010600638575851917, + -0.004479327704757452, + 0.03777873143553734, + 0.0287412591278553, + -0.0492069274187088, + 0.008544876240193844, + -0.011835409328341484, + -0.05627401918172836, + 0.045239899307489395, + -0.04442547634243965, + 0.010245970450341702, + 0.05327904224395752, + -0.021608488634228706, + -0.03751601278781891, + -0.004811008460819721, + -0.030448921024799347, + 0.0018028966151177883, + 0.005431677680462599, + -0.03255065903067589, + -0.0400380976498127, + 0.08191521465778351, + -0.03415323421359062, + -0.014948607422411442, + -0.026770880445837975, + 0.027480216696858406, + 0.06914716213941574, + 0.04161440208554268, + 0.03168369084596634, + -0.05538078024983406, + 0.045844148844480515, + 0.01038389652967453, + -0.012971661053597927, + 0.014896064065396786, + -0.004131227731704712, + -0.02603527158498764, + -0.012479065917432308, + -0.048103515058755875, + 0.017063479870557785, + -0.0237102247774601, + -0.03646514564752579, + 0.019953370094299316, + 0.011007850058376789, + 0.005178812425583601, + -0.023946670815348625, + 0.001498308964073658, + -0.07172179222106934, + 0.031920138746500015, + 0.014029097743332386, + -0.027900563552975655, + 0.028110738843679428, + 0.032865919172763824, + 0.07293029129505157, + -0.05259598046541214, + 0.005806049797683954, + 0.030343834310770035, + 0.006975140888243914, + -0.014318086206912994, + -0.02508949115872383, + -0.0013382156612351537, + 0.028767531737685204, + -0.01674821972846985, + -0.030054844915866852, + 0.0731404647231102, + 0.003077074885368347, + 0.0082755908370018, + -0.040721163153648376, + 0.05390956625342369, + 0.05067814514040947, + 0.06825391948223114, + 0.020084727555513382, + 0.043479692190885544, + 0.04555515944957733, + -0.11359890550374985, + 0.027900563552975655, + -0.038803327828645706 + ] + }, + { + "id": "abca0241-a18e-48be-9a69-f6b5b0d11dbf", + "productId": "2cc75af3-154d-4bea-991c-51dda524a815", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jakescott", + "reviewDate": "2021-12-23T10:12:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "428d5a67-9b22-46bf-8063-dd704f75f04e", + "productId": "2cc75af3-154d-4bea-991c-51dda524a815", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shawrebecca", + "reviewDate": "2021-03-10T10:56:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "332b6845-a8e4-409f-894e-5ecc882feb55", + "productId": "2cc75af3-154d-4bea-991c-51dda524a815", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jmoreno", + "reviewDate": "2022-03-10T22:31:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "product", + "name": "Luxe TV Mini (Black)", + "description": "This Luxe TV Mini (Black) is rated 4.6 out of 5 by 17.\n\nRated 5 out of 5 by kerry from The Best TV I've owned I bought a few of these and they are very well made. One problem they have with the back are just about broken, though, so I'm not sure why.", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-03-31T05:46:39", + "price": 612.48, + "stock": 48, + "priceHistory": [ + { + "priceDate": "2021-01-03T03:03:43", + "newPrice": 613.21 + }, + { + "priceDate": "2021-08-23T03:03:43", + "newPrice": 583.43 + }, + { + "priceDate": "2022-04-12T03:03:43", + "newPrice": 658.48 + }, + { + "priceDate": "2022-11-30T03:03:43", + "newPrice": 634.84 + }, + { + "priceDate": "2023-04-27T03:03:43", + "newPrice": 612.48 + } + ], + "descriptionVector": [ + -0.005564326886087656, + 0.08004666119813919, + -0.03750113025307655, + -0.009590997360646725, + -0.045222602784633636, + 0.03347446024417877, + -0.046594325453042984, + 0.018496133387088776, + 0.010249203070998192, + 0.041572049260139465, + 0.03630640357732773, + -0.007616380229592323, + -0.04347476363182068, + -0.012887557037174702, + 0.08301135152578354, + -0.008368615061044693, + 0.01800939254462719, + -0.005616873037070036, + 0.024027273058891296, + -0.01704697497189045, + 0.04427124559879303, + -0.14301316440105438, + -0.03504530340433121, + 0.0532759428024292, + 0.002909379778429866, + 0.005293301306664944, + -0.0170137882232666, + 0.03325321525335312, + 0.05115198343992233, + -0.0836750864982605, + 0.010088799521327019, + 0.022600239142775536, + -0.055399902164936066, + 0.03807637095451355, + 3.1091058190213516e-05, + -0.06588694453239441, + 0.03508955240249634, + 0.03130625560879707, + 0.004223025403916836, + 0.10593239963054657, + 0.02836368791759014, + -0.0026660095900297165, + -0.031483251601457596, + -0.017246095463633537, + 0.018407635390758514, + -0.049691762775182724, + -0.03573116660118103, + -0.006078723352402449, + 0.04000120609998703, + -0.0340939499437809, + -0.03347446024417877, + 0.0056694187223911285, + -0.041240181773900986, + 0.015409756451845169, + -0.03657190129160881, + -4.3212032323936e-05, + -0.029846033081412315, + 0.11894164234399796, + 0.04929352179169655, + -0.044204872101545334, + -0.034912556409835815, + -0.00429493049159646, + 0.01817532628774643, + -0.00827458593994379, + -0.038386113941669464, + 0.0019040950573980808, + -0.03902772441506386, + -0.009237004444003105, + 0.002845771610736847, + 0.031217755749821663, + 0.005351378116756678, + -0.016814665868878365, + 0.041815418750047684, + -0.0062612509354949, + 0.08172813057899475, + 0.005824290681630373, + 0.023098042234778404, + -0.007461508270353079, + -0.010785723105072975, + 0.031815119087696075, + 0.07314380258321762, + -0.012555688619613647, + 0.014723895117640495, + 0.0022636190988123417, + 0.035664793103933334, + 0.046771321445703506, + -0.05982481315732002, + -0.1213310956954956, + -0.057833604514598846, + 0.05898407846689224, + -0.057833604514598846, + 0.09301165491342545, + 0.029536288231611252, + -0.06535595655441284, + 0.04214728996157646, + -0.010758067481219769, + -0.023363536223769188, + 0.04862978681921959, + -0.0005379033973440528, + -0.013540231622755527, + 0.03190361708402634, + 0.002381155965849757, + 0.006045536138117313, + -0.03391695395112038, + -0.009618652984499931, + 0.029890282079577446, + 0.04033307358622551, + 0.0022926577366888523, + 0.031239880248904228, + -0.15841186046600342, + 0.02747870422899723, + -0.01113971695303917, + -0.030421271920204163, + -0.08818849921226501, + -0.032700102776288986, + 0.01695847697556019, + -0.010249203070998192, + -0.05247945711016655, + -0.028872551396489143, + -0.05982481315732002, + 0.08602029085159302, + 0.053718432784080505, + -0.02358478121459484, + 0.033363837748765945, + -0.008855355903506279, + 0.03586391359567642, + -0.02696984075009823, + 0.044249121099710464, + 0.06624093651771545, + -0.02077496238052845, + -0.030000904574990273, + 0.06270100921392441, + 0.019237305968999863, + 0.03362933173775673, + -0.04469161480665207, + 0.06504620611667633, + -0.017788147553801537, + -0.017069099470973015, + -0.009142975322902203, + -0.04230216145515442, + 0.010531291365623474, + -0.01604030653834343, + 0.026151230558753014, + -0.02958053909242153, + -0.012843308039009571, + 0.0097348066046834, + -0.011327775195240974, + -0.02433701790869236, + -0.021228516474366188, + 0.08982571959495544, + 0.06208151951432228, + -0.053010448813438416, + -0.05801060050725937, + -0.06292225420475006, + 0.04351901262998581, + 0.07947142422199249, + -0.041284430772066116, + 0.0570371188223362, + -0.08248036354780197, + 0.05128473415970802, + -5.621885429718532e-05, + -0.062479760497808456, + -0.016029244288802147, + -0.04871828481554985, + 0.042324285954236984, + 0.04385088011622429, + 0.0069139255210757256, + 0.02178163081407547, + -0.13805726170539856, + 0.006969236768782139, + -0.00039927917532622814, + -0.0282309390604496, + -0.023606907576322556, + -0.006786709185689688, + -0.04378450661897659, + 0.00201056944206357, + 0.05247945711016655, + 0.024270644411444664, + -0.008551143109798431, + -0.002443381119519472, + 0.006604181602597237, + 0.05973631516098976, + -0.04486861079931259, + -0.0356869176030159, + 0.040819816291332245, + -0.0311292577534914, + 0.08358658850193024, + -0.03376207873225212, + -0.011847702786326408, + 0.04783330112695694, + -0.010885284282267094, + 0.0522582121193409, + -0.018241699784994125, + -0.04562084376811981, + -0.04947051778435707, + -0.055134404450654984, + 0.06924987584352493, + 0.01413759496062994, + -0.06995785981416702, + 0.044381868094205856, + 0.0011255870340391994, + 0.04615183547139168, + 0.08606453984975815, + -0.02949203923344612, + 0.018662067130208015, + -0.09327714890241623, + 0.04924927279353142, + 0.03916047140955925, + 0.028673430904746056, + 0.03281072527170181, + -0.026792842894792557, + -0.013838913291692734, + 0.005398392677307129, + 0.05898407846689224, + 0.011681768111884594, + 0.04557659476995468, + 0.008457113057374954, + 0.015542504377663136, + -0.06615243852138519, + -0.05438217148184776, + 0.1006225049495697, + -0.04163842275738716, + -0.012356567196547985, + -0.008916198275983334, + -0.02035459689795971, + -0.04261190444231033, + 0.01425927970558405, + 0.04230216145515442, + 0.06203727051615715, + 0.052036967128515244, + -0.012588875368237495, + -0.03621790558099747, + -0.05637338012456894, + 0.001577757764607668, + -0.015896497294306755, + 0.026106981560587883, + -0.02420426905155182, + -0.03283284977078438, + -0.048939529806375504, + 0.02035459689795971, + -0.05986906215548515, + -0.016538109630346298, + -0.0008690804243087769, + 0.01985679380595684, + 0.028916802257299423, + -0.034447941929101944, + 0.0783209428191185, + -0.01888331212103367, + -0.05000150948762894, + -0.018673129379749298, + -0.03825336694717407, + -0.034624937921762466, + -0.01591862179338932, + 0.07230306416749954, + 0.0067313979379832745, + 0.016704043373465538, + 0.08385208994150162, + 0.03531080111861229, + 0.01981254480779171, + 0.026416726410388947, + -0.04862978681921959, + -0.009524623863399029, + -0.0014201202429831028, + -0.018617818132042885, + 0.017367780208587646, + 0.03845248743891716, + 0.0303327739238739, + -0.09071069955825806, + 0.02873980440199375, + -0.00814737007021904, + -0.07168357819318771, + -0.007898468524217606, + 0.03057614341378212, + 0.03400545194745064, + -0.11186178028583527, + -0.030554018914699554, + -0.06646218150854111, + -0.0022981888614594936, + -0.06469221413135529, + -0.014170781709253788, + 0.09115318953990936, + 0.008114182390272617, + -0.026239728555083275, + -0.0004988397122360766, + 0.07694922387599945, + -0.0479217991232872, + 0.0056694187223911285, + -0.020210785791277885, + 0.030509769916534424, + -0.03234610706567764, + -0.022876795381307602, + 0.06194877251982689, + 0.07907318323850632, + -0.054426420480012894, + -0.01547613088041544, + 0.02865130640566349, + 0.02011122554540634, + -0.034492190927267075, + 0.03986845910549164, + -0.05548840016126633, + -0.02911592274904251, + 0.0479217991232872, + 0.0032550760079175234, + -0.08610878884792328, + -0.059116825461387634, + 0.03590816259384155, + -0.026991965249180794, + 0.03230185806751251, + -0.027257459238171577, + -0.008257992565631866, + 0.027921196073293686, + -0.001467134919948876, + -0.05801060050725937, + -0.03283284977078438, + 0.04708106443285942, + -0.02677071839570999, + -0.035709042102098465, + 0.0351780503988266, + -0.004568722099065781, + 0.04020032659173012, + -0.004267274867743254, + 0.0030697828624397516, + -0.09141868352890015, + 0.09947202354669571, + 0.019712984561920166, + -0.05416092649102211, + -0.006001287139952183, + -0.059205327183008194, + -0.04093043878674507, + 0.006023411639034748, + -0.010780191980302334, + 0.016847852617502213, + 0.00038337716250680387, + 0.05548840016126633, + 0.03933747112751007, + 0.0034652594476938248, + -0.017113348469138145, + -0.056815873831510544, + 0.06694892048835754, + 0.02546536922454834, + 0.036837395280599594, + -0.014369902200996876, + 0.012245944701135159, + -0.021339138969779015, + -0.003382292343303561, + -0.06186027452349663, + -0.05274495482444763, + 0.039138346910476685, + 0.07141808420419693, + 0.009397407062351704, + 0.0012237647315487266, + -0.028430061414837837, + 0.02053159289062023, + 0.029558412730693817, + -0.003639490343630314, + 0.051417481154203415, + 0.01814213953912258, + -0.017478402704000473, + -0.0141154695302248, + 0.020918771624565125, + 0.03400545194745064, + -0.026239728555083275, + 0.017190784215927124, + 0.05088648945093155, + -0.019159870222210884, + 0.01044832356274128, + -0.04840853810310364, + -0.0056860120967030525, + -0.10186147689819336, + 0.028496434912085533, + 0.0383639894425869, + -0.05774510279297829, + -0.09964901953935623, + 0.06473646312952042, + 0.025620242580771446, + 0.03628427907824516, + 0.04528897628188133, + -0.0037998934276401997, + 0.01315305195748806, + 0.022390056401491165, + -0.057568106800317764, + 0.003423775779083371, + 0.010874222032725811, + -0.02085239812731743, + -0.00032823861693032086, + -0.013341110199689865, + -0.08849824219942093, + -0.0049863229505717754, + -0.03792149946093559, + -0.0266379714012146, + -0.03980208560824394, + -0.08075464516878128, + 0.04190392047166824, + 0.02111789397895336, + 0.060798294842243195, + -0.04427124559879303, + -0.031151382252573967, + 0.018584631383419037, + 0.023186540231108665, + -0.04407212510704994, + 0.024845881387591362, + 0.016305802389979362, + 0.04721381515264511, + -0.06509045511484146, + -0.046638574451208115, + -0.004579784348607063, + 0.046594325453042984, + 0.08075464516878128, + -0.02227943390607834, + -0.07544475048780441, + -0.013440670445561409, + -0.03701439127326012, + -0.04281102493405342, + 0.003893922781571746, + 0.01988998055458069, + 0.0183523241430521, + 0.06420547515153885, + -0.03451431542634964, + 0.03382845222949982, + -0.00034707903978414834, + 0.04637308046221733, + 0.06579844653606415, + 0.015442943200469017, + -0.08177237957715988, + 0.013872100040316582, + 0.05022275447845459, + -0.03526655212044716, + -0.03812061995267868, + -0.025111377239227295, + -0.0628337562084198, + 0.07898468524217606, + -0.08796725422143936, + -0.0002952245995402336, + 0.005044399760663509, + 0.026040608063340187, + 0.03911622241139412, + -0.024602511897683144, + 0.024779507890343666, + -0.010857628658413887, + 0.04885103181004524, + 0.016903163865208626, + -0.030509769916534424, + 0.027412330731749535, + 0.08964872360229492, + -0.06712591648101807, + 0.0038496735505759716, + -0.01595180854201317, + 0.055444151163101196, + 0.029270794242620468, + -0.02245642989873886, + 0.04920502379536629, + -0.028717679902911186, + -0.0074393837712705135, + -0.03747900575399399, + -0.019823607057332993, + 0.02911592274904251, + 0.07203757017850876, + 0.07885193824768066, + -0.008977040648460388, + -0.046019088476896286, + -0.024160020053386688, + 0.09566660225391388, + -0.03586391359567642, + 0.0741172805428505, + -0.0938081368803978, + -0.0542936734855175, + -0.08641853928565979, + 0.005232458934187889, + -0.018031517043709755, + -0.0020631153602153063, + -0.01359554287046194, + -0.02809819206595421, + -0.0319921150803566, + -0.01296499278396368, + -0.01855144463479519, + 0.01547613088041544, + 0.016527047380805016, + -0.053762681782245636, + -0.0018999467138200998, + -0.0005050622276030481, + -0.026792842894792557, + 0.032478854060173035, + 0.04685981944203377, + 0.08044490218162537, + 0.10920683294534683, + 0.019093496724963188, + 0.017732836306095123, + -0.0009506647475063801, + 0.07429427653551102, + 0.03739050775766373, + -0.05778935179114342, + 0.004369600676000118, + -0.04681557044386864, + -0.08234761655330658, + -0.022378994151949883, + 0.042788900434970856, + -0.03451431542634964, + 0.008534549735486507, + -0.07814394682645798, + 0.014226092956960201, + 0.055311404168605804, + 0.062347013503313065, + -0.07522350549697876, + 0.059913311153650284, + 0.047479309141635895, + -0.00496419845148921, + 0.012002574279904366, + 0.004588081035763025, + -0.02471313439309597, + 0.016704043373465538, + 0.06057704985141754, + -0.02898317575454712 + ] + }, + { + "id": "948b4c1c-cda4-4a95-97fe-a82d460a5af6", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "michelle02", + "reviewDate": "2022-10-16T18:08:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "966d05c6-52f4-4d15-95b9-0b2d9c501378", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "pagetyler", + "reviewDate": "2021-08-21T07:26:32", + "stars": 5, + "verifiedUser": true + }, + { + "id": "59645a31-8ec9-4fe7-89f5-974daa4701f9", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "christinahiggins", + "reviewDate": "2021-09-23T15:33:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7c5fbb85-709d-4bc9-943e-43ef9d52b974", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "carla37", + "reviewDate": "2021-06-01T09:54:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0c66ed33-8f79-4839-ace2-b0c0cf29e2c8", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "rsullivan", + "reviewDate": "2021-12-06T02:18:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c73d38dd-0c7f-4f25-a857-4d9b15f1d71e", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "marissa98", + "reviewDate": "2022-07-31T10:37:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d1e37f0d-f207-4154-9e18-a78a4509006c", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "hardypatrick", + "reviewDate": "2021-11-18T09:55:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c829563b-ba1a-40de-a633-24e3eeb42380", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "brian36", + "reviewDate": "2022-12-01T11:24:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "767e9dd7-d933-4840-9b94-79c292a6f81c", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "ryanmartin", + "reviewDate": "2022-05-03T02:56:58", + "stars": 4, + "verifiedUser": false + }, + { + "id": "18560180-8e6b-4334-9461-176feea2c6b0", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "jamesbaldwin", + "reviewDate": "2022-02-02T14:13:45", + "stars": 5, + "verifiedUser": false + }, + { + "id": "95fce3c9-ad6c-4861-a3f8-48d9bddc84cf", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "shannon47", + "reviewDate": "2022-02-04T06:33:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "669473dc-5ef4-4fa2-b0b5-aa61a2160270", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "scallahan", + "reviewDate": "2022-01-20T16:43:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aa038f67-7e5e-4dcc-b504-27dd5abe294f", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "bradleyberry", + "reviewDate": "2022-02-08T01:40:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f5831b43-f189-459c-b92e-2de8f921bc78", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "grossjesse", + "reviewDate": "2022-09-29T04:38:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6d569107-dc5c-4f96-8a78-ca34e948d328", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "mackenzie25", + "reviewDate": "2021-01-03T03:03:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "69bd1c9d-65ac-408f-ab2d-cf883368ac66", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "guerraamanda", + "reviewDate": "2022-08-07T07:10:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9c9cc3da-6046-47f4-ab82-52a2f038573b", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "lydia38", + "reviewDate": "2022-05-10T21:19:50", + "stars": 5, + "verifiedUser": false + }, + { + "id": "51317639-0642-4c58-8a57-6712773fcbd6", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "lrodriguez", + "reviewDate": "2021-01-10T09:39:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cc940094-6415-4d7c-8c2f-ebe8e627bff1", + "productId": "587755ef-b354-4e2b-b3cc-0b982e9e4edd", + "category": "Media", + "docType": "customerRating", + "userName": "tracy35", + "reviewDate": "2022-11-09T17:33:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "product", + "name": "Awesome TV Mini (Silver)", + "description": "This Awesome TV Mini (Silver) is rated 4.4 out of 5 by 4.\n\nRated 5 out of 5 by Lissa from Best ever TV... Perfect TV! I ordered this TV by myself and it was pretty awesome!! Beautiful design & color. I do like it the most but my TV is not great. So if you need", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-08-03T05:34:51", + "price": 740.22, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-02-10T06:31:48", + "newPrice": 780.81 + }, + { + "priceDate": "2021-07-03T06:31:48", + "newPrice": 675.44 + }, + { + "priceDate": "2021-11-23T06:31:48", + "newPrice": 785.9 + }, + { + "priceDate": "2022-04-15T06:31:48", + "newPrice": 783.09 + }, + { + "priceDate": "2022-09-05T06:31:48", + "newPrice": 811.07 + }, + { + "priceDate": "2024-04-22T06:31:48", + "newPrice": 740.22 + } + ], + "descriptionVector": [ + 0.02236410416662693, + 0.044895417988300323, + -0.02332555130124092, + 0.021695271134376526, + -0.05254519358277321, + 0.00943159032613039, + -0.06366454064846039, + 0.0006890809163451195, + 0.018570566549897194, + 0.07365524023771286, + 0.00842311605811119, + -0.051082123070955276, + 0.0020927158184349537, + 0.03906402736902237, + 0.011694127693772316, + 0.05927532538771629, + 0.02380627579987049, + 0.017828579992055893, + -0.014181350357830524, + 0.011798632331192493, + 0.05914992094039917, + -0.05450989305973053, + 0.016135597601532936, + 0.0408824197947979, + -0.010784932412207127, + 0.009995918720960617, + 0.006009046919643879, + 0.062159668654203415, + 0.023095641285181046, + -0.0886203795671463, + 0.01706569269299507, + 0.008778433315455914, + -0.027171341702342033, + 0.025875477120280266, + -0.0329609289765358, + 0.023994384333491325, + -0.024015285074710846, + 0.03126794472336769, + 0.012080796994268894, + 0.1230652779340744, + 0.014860633760690689, + -0.014839733019471169, + 0.009698078967630863, + 0.011234304867684841, + 0.026398003101348877, + -0.03689032047986984, + -0.009008345194160938, + -0.0009568753885105252, + 0.049535445868968964, + -0.004512010142207146, + -0.010795382782816887, + -0.017912184819579124, + -0.014944237656891346, + 0.029951179400086403, + -0.013575220480561256, + -0.013094496913254261, + -0.06659068912267685, + 0.05931713059544563, + 0.018257051706314087, + -0.04614947736263275, + -0.006876439321786165, + -0.021653469651937485, + 0.021778875961899757, + 0.012133048847317696, + -0.07311180979013443, + -0.04368315637111664, + -0.034173186868429184, + 0.01300044171512127, + -0.0567254014313221, + 0.017535965889692307, + 0.04982805997133255, + -0.060822002589702606, + 0.010079522617161274, + 0.02374357171356678, + 0.051082123070955276, + 0.03475841507315636, + 0.029282346367836, + -0.023576363921165466, + -0.012101697735488415, + -0.002304338850080967, + 0.0466093011200428, + -0.0004885616363026202, + 0.021799776703119278, + 0.0464002899825573, + 0.021611666306853294, + 0.040757011622190475, + -0.016637220978736877, + -0.12599141895771027, + -0.015968387946486473, + 0.051959965378046036, + -0.04648389667272568, + 0.06780295073986053, + 0.03862510621547699, + -0.0350092276930809, + 0.06713411211967468, + -0.015675773844122887, + -0.031915877014398575, + 0.0670505091547966, + -0.011223854497075081, + 0.003785699373111129, + 0.051416538655757904, + -0.024788623675704002, + 0.01866462081670761, + -0.04882480949163437, + 0.003229209454730153, + 0.0006430333014577627, + 0.029219642281532288, + 0.03381786867976189, + 0.04878300800919533, + -0.1901157945394516, + -0.026920529082417488, + 0.020451659336686134, + -0.005392466206103563, + -0.05258699506521225, + 0.018591467291116714, + 0.004083539359271526, + -0.025938181206583977, + -0.057937659323215485, + -0.04065250605344772, + -0.04832318797707558, + 0.015498115681111813, + 0.04945184290409088, + -0.0950578972697258, + 0.015111446380615234, + -0.022719422355294228, + 0.04161395505070686, + -0.008694829419255257, + 0.09079408645629883, + 0.07486749440431595, + 3.0310579859360587e-06, + 0.00048137689009308815, + 0.029115138575434685, + -0.0012625529197975993, + 0.05070590227842331, + -0.033838771283626556, + 0.04656749963760376, + -0.038917720317840576, + -0.0007896671304479241, + 0.03210398554801941, + -0.0493682362139225, + -0.010100423358380795, + 0.03018108941614628, + 0.012718277983367443, + -0.047236330807209015, + -0.05434268340468407, + 0.033713363111019135, + -0.049201030284166336, + 0.021695271134376526, + -0.004449306987226009, + 0.026314400136470795, + 0.0727773904800415, + -0.06324652582406998, + -0.10935419797897339, + -0.05952613800764084, + 0.010393038392066956, + 0.09372022747993469, + -0.006886890158057213, + -0.00676670903339982, + -0.060403984040021896, + 0.0256037637591362, + -0.02614719048142433, + -0.05668359994888306, + -0.03319083899259567, + -0.07913130521774292, + 0.0438503660261631, + 0.02094283327460289, + 0.02468411810696125, + 0.036493200808763504, + -0.12164400517940521, + 0.016198299825191498, + 0.04840679094195366, + -0.002471547108143568, + 0.029700366780161858, + 0.00711680157110095, + -0.008815010078251362, + -0.017274703830480576, + 0.030369199812412262, + -0.025415655225515366, + -0.05689261108636856, + -0.09104489535093307, + -0.043056126683950424, + 0.03346255049109459, + -0.051876362413167953, + 0.0017635246040299535, + 0.0622432716190815, + 0.002462402917444706, + 0.054175473749637604, + 0.007785634603351355, + -0.056181974709033966, + 0.06270309537649155, + 0.0016655509825795889, + 0.010993942618370056, + 0.030452804639935493, + -0.047278136014938354, + 0.02842540293931961, + 0.008365637622773647, + 0.05869009718298912, + -0.004849039483815432, + -0.06307931244373322, + 0.03354615718126297, + 0.015895234420895576, + 0.038875918835401535, + 0.09815124422311783, + -0.023095641285181046, + 0.019918683916330338, + -0.07725021243095398, + 0.018748225644230843, + -0.008538071997463703, + 0.03852060064673424, + 0.04472820833325386, + -0.008073023520410061, + 0.005909767001867294, + -0.004423181060701609, + 0.04623308405280113, + 0.06596365571022034, + 0.06646528095006943, + -0.021674370393157005, + -3.7352430808823556e-05, + -0.05367384850978851, + -0.04945184290409088, + 0.09179732948541641, + -0.01278098113834858, + 0.0025159616488963366, + 0.020253099501132965, + -0.03674401342868805, + -0.06763573735952377, + 0.018215250223875046, + -0.005554449278861284, + 0.048699405044317245, + 0.007195180281996727, + -0.10826734453439713, + -0.04573145881295204, + -0.06792835146188736, + 0.02194608375430107, + -0.020117243751883507, + 0.0587737038731575, + -0.0031769569031894207, + -0.019490212202072144, + -0.06880620121955872, + 0.026168091222643852, + -0.045480646193027496, + 0.019793277606368065, + -0.025227544829249382, + -0.015184599906206131, + 0.0307663194835186, + -0.052461590617895126, + 0.10458876192569733, + -0.00011291456030448899, + -0.006709231063723564, + -0.022635817527770996, + -0.04740354046225548, + -0.04079881310462952, + -0.022029688581824303, + 0.07854607701301575, + 0.024057088419795036, + 0.008804559707641602, + 0.07323721796274185, + 0.01960516721010208, + 0.04648389667272568, + 0.0396074540913105, + -0.05200176686048508, + 0.003555788192898035, + 0.0174001082777977, + 0.021987885236740112, + -0.015968387946486473, + 0.016898484900593758, + 0.06496040523052216, + -0.08264268189668655, + -0.00489606661722064, + 0.028111888095736504, + -0.07332082092761993, + -0.05881550535559654, + -0.023450957611203194, + 0.025290248915553093, + -0.11595892906188965, + -0.022740323096513748, + -0.003814438357949257, + 0.017755426466464996, + -0.04042259603738785, + 0.02600088343024254, + 0.10224784910678864, + 0.0022128967102617025, + 0.037914473563432693, + 0.006834637373685837, + 0.06374815106391907, + -0.0396074540913105, + 0.006505446042865515, + -0.018413810059428215, + 0.02564556710422039, + -0.008783658966422081, + -0.044017571955919266, + 0.01560262031853199, + 0.05313042178750038, + -0.054677098989486694, + 0.03553175553679466, + 0.0005721657653339207, + 0.024955831468105316, + -0.027840174734592438, + -0.009253932163119316, + -0.03266831487417221, + 0.006980944890528917, + -0.007775183767080307, + -0.03202038258314133, + -0.07244297862052917, + -0.05032968521118164, + 0.008940416388213634, + -0.06249408423900604, + 0.034298595041036606, + -0.002177626360207796, + 0.004666155204176903, + 0.008156627416610718, + 0.012457014992833138, + 0.009389788843691349, + -0.027652066200971603, + 0.021799776703119278, + -0.04173935949802399, + -0.044519197195768356, + 0.06278669834136963, + -0.025812774896621704, + 0.058063067495822906, + 0.028132788836956024, + 0.008668703027069569, + -0.03858330473303795, + 0.05041328817605972, + -0.012728728353977203, + 0.016449112445116043, + 0.01834065653383732, + -0.12323248386383057, + -0.03252200409770012, + 0.043097928166389465, + -0.02800738252699375, + 0.014641173183918, + -0.024036187678575516, + 0.08255907893180847, + 0.07273559272289276, + -0.03118433989584446, + -0.011307458393275738, + -0.006442743353545666, + 0.06257768720388412, + 0.0799255445599556, + 0.04173935949802399, + -0.027568461373448372, + 0.08293529599905014, + -0.012989991344511509, + -0.04991166293621063, + -0.06721772253513336, + -0.04527163505554199, + -0.014254503883421421, + 0.05463529750704765, + -0.056181974709033966, + 0.0009960648603737354, + -0.025938181206583977, + -0.014411261305212975, + 0.060780201107263565, + 0.07148153334856033, + -0.008715730160474777, + -0.026460707187652588, + -0.02746395580470562, + 0.01868552342057228, + 0.016950737684965134, + 0.06801196187734604, + -0.03179046884179115, + -0.024600515142083168, + 0.009217355400323868, + -0.04882480949163437, + 0.0032710114028304815, + -0.02378537505865097, + 0.05450989305973053, + -0.07344622910022736, + 0.024997634813189507, + 0.03024379350244999, + -0.03808167949318886, + -0.07934031635522842, + 0.03912673145532608, + 0.015121896751224995, + -0.0006923467153683305, + -0.011067096143960953, + -0.03548995405435562, + 0.006803285796195269, + 0.04163485765457153, + -0.0741986632347107, + 0.019939584657549858, + -0.033316243439912796, + -0.0046818312257528305, + -0.0004803971678484231, + -0.024516910314559937, + -0.07963293045759201, + 0.010528895072638988, + -0.06395715475082397, + -0.028989732265472412, + -0.06052938848733902, + -0.025729170069098473, + 0.04803057014942169, + -0.03626329079270363, + 0.06734312325716019, + -0.057519640773534775, + 0.01279143150895834, + 0.026377102360129356, + 0.06993485242128372, + -0.028111888095736504, + 0.022155094891786575, + 0.007576623931527138, + 0.08552702516317368, + -0.05731062963604927, + -0.04895021766424179, + -0.057895857840776443, + -0.005794811062514782, + 0.06617266684770584, + -0.04861580207943916, + -0.08347871899604797, + -0.027714768424630165, + -0.025979982689023018, + 0.011338809505105019, + -0.022092390805482864, + 0.0269832331687212, + 0.019270751625299454, + 0.12431933730840683, + -0.0659218579530716, + 0.06349733471870422, + -0.003851015120744705, + 0.05864829570055008, + 0.09756601601839066, + 0.06232687830924988, + -0.008877713233232498, + 0.020148595795035362, + 0.06688330322504044, + -0.051876362413167953, + 0.017807679250836372, + -0.04890841618180275, + -0.05685080587863922, + 0.012707827612757683, + -0.058940909802913666, + 0.009891413152217865, + 0.039273038506507874, + -0.021987885236740112, + 0.044979020953178406, + -0.01259287167340517, + 0.03582436963915825, + -0.04945184290409088, + 0.01892588473856449, + 0.015550367534160614, + -0.027735669165849686, + -0.05630737915635109, + 0.015289104543626308, + -0.08051077276468277, + -0.014118647202849388, + -0.010251956060528755, + 0.028195492923259735, + 0.04276351258158684, + 0.015289104543626308, + -0.015937037765979767, + -0.01258242130279541, + -0.04949364438652992, + -0.06583824753761292, + 0.00012067080388078466, + 0.047236330807209015, + 0.03206218406558037, + 0.08038537204265594, + -0.050580497831106186, + -0.03312813490629196, + 0.02422429621219635, + 0.031497854739427567, + -0.04627488553524017, + 0.05442628636956215, + -0.027359450235962868, + -0.05024608224630356, + -0.0401717834174633, + -0.023868978023529053, + -0.009280058555305004, + -0.00023219740251079202, + -0.021047338843345642, + -0.011349260807037354, + -0.06884799897670746, + 0.037517353892326355, + 0.030996231362223625, + -0.006813736632466316, + 0.0344449020922184, + -0.005144266411662102, + 0.04924283176660538, + 0.0436413548886776, + 0.026168091222643852, + 0.02184157818555832, + 0.013961889781057835, + 0.055805753916502, + 0.12055715173482895, + -0.005154717247933149, + 0.016490913927555084, + 0.006265084259212017, + 0.059818752110004425, + 0.013376660645008087, + -0.013408011756837368, + -0.014379910193383694, + 0.02424519695341587, + -0.08498359471559525, + -0.004033899400383234, + 0.07950752228498459, + -0.0307663194835186, + -0.03153965622186661, + -0.047236330807209015, + 0.011453765444457531, + 0.034194089472293854, + 0.07879689335823059, + -0.10049216449260712, + 0.025352951139211655, + 0.022928431630134583, + -0.01726425252854824, + 0.02742215432226658, + -0.015299555845558643, + -0.05547133833169937, + 0.05405006930232048, + 0.07026927173137665, + 0.004436244256794453 + ] + }, + { + "id": "82d067c7-005e-4125-976f-80eee4b2f7f2", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "terribridges", + "reviewDate": "2021-12-05T01:58:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d3780466-de4c-448c-b8ad-a0efe937c5ac", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "kleinjennifer", + "reviewDate": "2022-09-07T09:45:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bb758873-4301-4bbe-bea3-1be9e16566cc", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "bsalinas", + "reviewDate": "2021-10-10T04:35:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fa14ba32-b51e-4d19-82ec-c79166e20f34", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "tammy84", + "reviewDate": "2021-12-05T09:54:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dde5f8a5-93f8-4aa0-899a-4e8bfe794833", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "fieldsdestiny", + "reviewDate": "2021-06-06T01:35:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4217e7b4-bd34-4212-8ca4-43d63308b385", + "productId": "ce3c2a1c-b614-4067-9706-9d7b0fdea9d2", + "category": "Media", + "docType": "customerRating", + "userName": "vanessa42", + "reviewDate": "2021-02-10T06:31:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "product", + "name": "Premium Filter Micro (Silver)", + "description": "This Premium Filter Micro (Silver) is rated 4.0 out of 5 by 47.\n\nRated 5 out of 5 by G.P. from The best price for a lens I bought for my first camera lens purchase. I purchased for myself to build my collection of Canon lenses and I couldn't ask for", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-02-26T07:56:51", + "price": 769.64, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-01-18T09:14:53", + "newPrice": 830.43 + }, + { + "priceDate": "2021-01-31T09:14:53", + "newPrice": 769.64 + } + ], + "descriptionVector": [ + 0.006523695774376392, + 0.02092728577554226, + -0.004060558043420315, + 0.07174456864595413, + 0.009895432740449905, + -0.01058693416416645, + -0.06707023829221725, + 0.0341140516102314, + -0.012232598848640919, + 0.0794636532664299, + -0.011803761124610901, + -0.028367623686790466, + 0.008383779786527157, + -0.05051709711551666, + -0.03672996163368225, + 0.020787913352251053, + -0.02796022780239582, + -0.026802364736795425, + -0.006668428424745798, + -0.024722501635551453, + 0.03162679076194763, + -0.055062778294086456, + -0.051031701266765594, + 0.00922001339495182, + 0.008330174721777439, + 0.02332877740263939, + 0.018386421725153923, + 0.04627160355448723, + 0.040289316326379776, + -0.0164888147264719, + 0.062052834779024124, + 0.025301432237029076, + 0.014730580151081085, + 0.0711870789527893, + -0.036858610808849335, + -0.004569803364574909, + 0.046443138271570206, + -0.04618583619594574, + -0.011793040670454502, + 0.08452393859624863, + -0.031004976481199265, + 0.006797079928219318, + 0.003181440755724907, + -0.027166876941919327, + -0.014601928181946278, + -0.09365818649530411, + 0.011610784567892551, + -0.006646986585110426, + -0.007268801331520081, + 0.014977161772549152, + -0.023114359006285667, + -0.004358064383268356, + 0.02020898275077343, + -0.011053294874727726, + 0.004768140614032745, + 0.0016336041735485196, + -0.016113581135869026, + 0.16553141176700592, + 0.05656370893120766, + -0.052232448011636734, + 0.023435987532138824, + -0.009798944927752018, + 0.009825746528804302, + -0.014794905669987202, + -0.09794656187295914, + 0.024186454713344574, + -0.05309012532234192, + 0.020369797945022583, + 0.037909265607595444, + -0.0021696514450013638, + 0.015427441336214542, + -0.020219704136252403, + -0.0009454534156247973, + -0.022513985633850098, + 0.06814233213663101, + 0.04359136521816254, + 0.1476917564868927, + -0.04841579124331474, + -0.01162150502204895, + 0.042540714144706726, + 0.025923246517777443, + -0.02984711341559887, + 0.01684260554611683, + 0.03612958639860153, + 0.013154600746929646, + -0.0035352318082004786, + 0.08413798362016678, + -0.09554506838321686, + -0.03419981896877289, + 0.0374804250895977, + 0.004438471514731646, + 0.05369049683213234, + 0.006968614645302296, + -0.06715600192546844, + 0.03501461073756218, + 0.006464730482548475, + -0.0348430760204792, + -4.25068756157998e-05, + -0.009445153176784515, + 0.04687197506427765, + -0.030640464276075363, + -0.06518334895372391, + 0.008147918619215488, + 0.045928534120321274, + 0.020144658163189888, + 0.016499536111950874, + -0.0015129934763535857, + -0.0869683101773262, + 0.02027330920100212, + -0.10961095243692398, + -0.01637088507413864, + -0.004366105422377586, + -0.04144717752933502, + -0.026266317814588547, + -0.02482970990240574, + -0.010913923382759094, + -0.04837290942668915, + -0.015566813759505749, + 0.03681572899222374, + -0.0055105662904679775, + -0.02879646047949791, + 0.05566314980387688, + 0.037158798426389694, + -0.021581264212727547, + 0.0824655145406723, + 0.00094210309907794, + -0.039774708449840546, + 0.02092728577554226, + 0.04978807270526886, + -0.035958051681518555, + -0.03237725794315338, + -0.003109074430540204, + 0.026287758722901344, + -0.01462337002158165, + -0.07131573557853699, + 0.025515850633382797, + -0.027038225904107094, + 0.1057514101266861, + 0.0059608458541333675, + 0.03559353947639465, + -0.03799503296613693, + -0.016135023906826973, + 0.05827906355261803, + -0.0017059704987332225, + 0.008785814978182316, + -0.05879366770386696, + -0.039710383862257004, + 0.04341983050107956, + 0.013840741477906704, + -0.02984711341559887, + 0.044427599757909775, + -0.07689062505960464, + -0.04777253419160843, + -0.07757676392793655, + 0.01922265626490116, + -0.002035639714449644, + -0.021570542827248573, + 0.03664419427514076, + -0.10703792423009872, + 0.01247918140143156, + -0.06741330772638321, + 0.010838876478374004, + 0.010318910703063011, + 0.010066968388855457, + 0.04318397119641304, + 0.09837540239095688, + -0.01346550788730383, + 0.029375391080975533, + -0.07148727029561996, + 0.03128372132778168, + 0.05720696598291397, + -0.014923556707799435, + 0.03471442312002182, + -0.04399876296520233, + 0.012189715169370174, + -0.008533872663974762, + -0.03709447383880615, + -0.04618583619594574, + -0.01495571993291378, + -0.04071815311908722, + 0.05086016654968262, + 0.010179538279771805, + -0.07084400951862335, + -0.055234313011169434, + 0.002688277279958129, + -0.05000249296426773, + 0.05008826032280922, + 0.016960537061095238, + 0.0502169094979763, + 0.0787346288561821, + -0.02339310385286808, + -0.008255128748714924, + 0.019437074661254883, + 0.009530920535326004, + -0.015309510752558708, + 0.013551275245845318, + 0.0012362591223791242, + -0.007676197215914726, + 0.007354568690061569, + -0.06415414065122604, + -0.007644034456461668, + 0.002235317137092352, + 0.08936980366706848, + -0.021613426506519318, + 0.04065382853150368, + 0.0002395461342530325, + 0.07153014838695526, + 0.07534680515527725, + -0.08834059536457062, + 0.026266317814588547, + 0.014912835322320461, + -0.018783098086714745, + -0.005633857101202011, + 0.032591674476861954, + 0.027552831918001175, + 0.08825482428073883, + -0.0584934800863266, + -0.036858610808849335, + -0.04918770119547844, + -0.05557738244533539, + 0.03653698414564133, + -0.06303916126489639, + 0.029032321646809578, + -0.003398539964109659, + 0.01735721156001091, + -0.042412061244249344, + -0.002452416345477104, + -0.0028624925762414932, + 0.09605967253446579, + 0.04183313250541687, + -0.007542185485363007, + -0.004478675313293934, + -0.029182415455579758, + 0.016596024855971336, + 0.0011136382818222046, + 0.014012276194989681, + -0.08876943588256836, + -0.029825670644640923, + -0.004216012079268694, + 0.062181487679481506, + -0.006432567723095417, + 0.05527719855308533, + -0.07131573557853699, + 0.002475198358297348, + 0.03883126750588417, + -0.06646986305713654, + 0.07744811475276947, + -0.06857117265462875, + -0.10369298607110977, + -0.026973899453878403, + -0.07504662126302719, + -0.011632226407527924, + -0.05832194536924362, + 0.08302300423383713, + -0.032956186681985855, + 0.05386203154921532, + 0.041876014322042465, + 0.006705951876938343, + -0.0386168472468853, + -0.008780454285442829, + 0.03608670458197594, + 0.07097265869379044, + 0.05017402768135071, + 0.027681482955813408, + -0.08388067781925201, + -0.013369019143283367, + 0.04065382853150368, + -0.04627160355448723, + -0.0885121300816536, + 0.04305531829595566, + -0.03546489030122757, + 0.05116035416722298, + 0.05982287973165512, + -0.02197793871164322, + -0.08066439628601074, + 0.006598742213100195, + -0.07894904911518097, + 0.06835675239562988, + 0.06930019706487656, + 0.05120323598384857, + 0.1335401087999344, + -0.0004563102556858212, + -0.006486172322183847, + 0.047643885016441345, + 0.09666004776954651, + 0.0047976234927773476, + 0.016081418842077255, + -0.04901616647839546, + -0.03582940250635147, + -0.0035834761802107096, + -0.03222716227173805, + -0.0008040709653869271, + -0.025022687390446663, + -0.05673524737358093, + 0.011803761124610901, + -0.006893568206578493, + -0.004784222226589918, + -0.01162150502204895, + -0.024186454713344574, + 0.047729652374982834, + -0.048029836267232895, + 0.030726231634616852, + -0.04206899181008339, + -0.01211466919630766, + 0.017400095239281654, + 0.03342790901660919, + -0.054848358035087585, + -0.03244158253073692, + -0.030533254146575928, + -0.09280050545930862, + 0.035872284322977066, + 0.013068833388388157, + -0.005028123501688242, + 0.018247049301862717, + 0.06689870357513428, + -0.014987882226705551, + -0.03885270655155182, + 0.002782085444778204, + 0.01211466919630766, + 0.04176880419254303, + -0.03216283768415451, + 0.004454553127288818, + 0.0734599232673645, + 0.08370914310216904, + 0.01654241979122162, + 0.010125933215022087, + -0.028882227838039398, + -0.0037416100967675447, + -0.058750782161951065, + 0.047343697398900986, + -0.03254879266023636, + -0.07311685383319855, + 0.01657458208501339, + 0.053047239780426025, + 0.016231512650847435, + -0.03216283768415451, + -0.050045374780893326, + -0.0048271059058606625, + -0.0018279212526977062, + 0.025451526045799255, + -0.004580524284392595, + 0.0228570569306612, + 0.0371159166097641, + -0.017410816624760628, + 0.07148727029561996, + -0.019286980852484703, + -0.010474364273250103, + -0.06496892869472504, + -0.02669515460729599, + -0.030533254146575928, + 0.0009327222942374647, + -0.020401960238814354, + -0.02420789562165737, + 0.011707273311913013, + 0.054333753883838654, + -0.010608376003801823, + 0.06659851968288422, + 0.020016005262732506, + 0.04408453032374382, + -0.025237105786800385, + 0.01723928190767765, + -0.018161281943321228, + 0.01241485495120287, + -0.021002333611249924, + -0.04129708185791969, + 0.10009074956178665, + -0.012500623241066933, + 0.08868366479873657, + 0.0041543664410710335, + -0.07470355182886124, + -0.04181168973445892, + -0.013058112002909184, + 0.033770978450775146, + 0.03186265006661415, + -0.025987572968006134, + 0.011910971254110336, + 0.010474364273250103, + 0.03516470268368721, + 0.013776415959000587, + 0.04170447960495949, + -0.029825670644640923, + 0.020198261365294456, + -0.0036880054976791143, + -0.034457121044397354, + 0.046228718012571335, + 0.01687476970255375, + -0.010388596914708614, + 0.032870419323444366, + -0.05270417034626007, + -0.018997516483068466, + -0.011943133547902107, + -0.016563860699534416, + 0.004323221277445555, + -0.037759169936180115, + 0.005526647437363863, + -0.0057249851524829865, + -0.001724732224829495, + 0.042090434581041336, + 0.07380299270153046, + -0.03267744183540344, + 0.032505907118320465, + 0.024122128263115883, + -0.08808328956365585, + -0.028882227838039398, + 0.026051899418234825, + -0.06042325124144554, + 0.08482412248849869, + 0.04601430147886276, + -0.024872595444321632, + -0.06990056484937668, + -0.036258239299058914, + -0.025151338428258896, + -0.002918777521699667, + -0.039538849145174026, + 0.031219394877552986, + 0.04657178744673729, + 0.03284897655248642, + -0.06925731152296066, + 0.07032940536737442, + 0.020316192880272865, + 0.06303916126489639, + -0.006904289126396179, + -0.0021642909850925207, + 0.019962402060627937, + 0.019705098122358322, + 0.057764455676078796, + -0.04408453032374382, + 0.06419702619314194, + 0.033492233604192734, + -0.022063706070184708, + -0.012393413111567497, + -0.037737730890512466, + -0.006116299424320459, + -0.04785830155014992, + -0.0021267675328999758, + 0.010704864747822285, + -0.004958437290042639, + 0.050945933908224106, + -0.037458986043930054, + 0.05261840298771858, + 0.03396395593881607, + -0.037737730890512466, + 0.012061064131557941, + 0.02444375678896904, + -0.1237626001238823, + -0.022535428404808044, + -0.061452463269233704, + 0.057249851524829865, + 0.006775637622922659, + -0.03156246617436409, + -0.0006821202114224434, + 0.05737850442528725, + -0.027316970750689507, + -0.054333753883838654, + 0.012704321183264256, + 0.04361280798912048, + 0.021270357072353363, + 0.13028094172477722, + -0.03578651696443558, + -0.00642720703035593, + -0.08418086916208267, + 0.07281666249036789, + -0.007488580886274576, + 0.026137666776776314, + 0.008957350626587868, + -0.05390491709113121, + -0.09846116602420807, + -0.011728715151548386, + -0.0018172003328800201, + -0.007274162024259567, + -0.0157383494079113, + -0.014902114868164062, + 0.01027066633105278, + -0.014441113919019699, + -0.009991921484470367, + 0.07521815598011017, + -0.012061064131557941, + 0.061152275651693344, + 0.05038844421505928, + 0.036837171763181686, + -0.008362337946891785, + -0.013787136413156986, + -0.028817903250455856, + 0.08709696680307388, + 0.05973711237311363, + 0.011342761106789112, + 0.022363893687725067, + -0.018847422674298286, + 0.06809944659471512, + 0.06634121388196945, + -0.024550966918468475, + 0.04670044034719467, + -0.01672467589378357, + -0.040375083684921265, + -0.021334681659936905, + 0.010442201048135757, + -0.052532635629177094, + -0.015352394431829453, + -0.03471442312002182, + -0.015159417875111103, + 0.07221629470586777, + 0.0442560650408268, + -0.016381604596972466, + 0.01533095259219408, + -0.016660349443554878, + -0.05300435796380043, + 0.0008951989584602416, + -0.11278434842824936, + -0.02489403635263443, + 0.01720711775124073, + 0.087697334587574, + 0.032505907118320465 + ] + }, + { + "id": "ed2b4de2-5dc9-417c-afc3-4bed07b5ca8c", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "perezsheryl", + "reviewDate": "2022-02-05T04:25:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "07ebc2d2-cd10-4538-a066-c8f1373210e6", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "danielmullins", + "reviewDate": "2022-09-08T20:37:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "81c3bb89-6ece-4fb6-a2c4-419617851604", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "john59", + "reviewDate": "2021-09-01T17:58:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f1158f9d-cc09-451e-a834-23f52217d202", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "floresholly", + "reviewDate": "2021-10-04T13:49:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "80b75123-6240-4cdf-ad35-02ee5ca62e2d", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "bryan53", + "reviewDate": "2022-07-27T12:16:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e6faff0d-ba25-493b-bee1-94f8c734a652", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "aprilwatson", + "reviewDate": "2022-07-30T05:19:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1dd3551d-6a5f-468a-924d-b95f7229e34b", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "marissastewart", + "reviewDate": "2022-06-22T14:10:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b215b064-2dd1-44f4-9981-086765216f4b", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "tcunningham", + "reviewDate": "2022-05-06T14:19:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c6ef1027-8e5b-4fd7-b45e-1d3aa74376fb", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "odawson", + "reviewDate": "2021-06-14T13:09:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "73b7e0ca-4cc5-4215-9080-41523d623b3a", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "mortonbarry", + "reviewDate": "2021-01-18T09:14:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "144bb92b-1403-43ed-aa06-232967e45372", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "zpierce", + "reviewDate": "2022-02-13T11:07:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4554af6d-4ed2-4769-b3f1-a80db679dd16", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "snydertammy", + "reviewDate": "2021-06-13T16:11:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fb836b40-feff-467e-b851-0c5f23a06f42", + "productId": "35292a19-ca2a-432e-9fd4-c3165d344eab", + "category": "Other", + "docType": "customerRating", + "userName": "qchapman", + "reviewDate": "2022-04-10T18:09:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "28bf6af7-37bc-4890-af12-650ec64706e6", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Mini (Silver)", + "description": "This Luxe Computer Mini (Silver) is a true gem to be used at a price you can afford. A truly superb computer that only costs $200. This computer is actually designed to work with a full", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-01-17T12:58:37", + "price": 734.29, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-04-27T15:13:33", + "newPrice": 722.57 + }, + { + "priceDate": "2022-12-21T15:13:33", + "newPrice": 741.06 + }, + { + "priceDate": "2025-06-18T15:13:33", + "newPrice": 734.29 + } + ], + "descriptionVector": [ + -0.04775368049740791, + 0.06500083208084106, + -0.01086670346558094, + -0.026668285951018333, + 0.029659122228622437, + -0.043815746903419495, + -0.01012522540986538, + 0.0474545955657959, + 0.04112399369478226, + 0.07821036130189896, + 0.01137140765786171, + -0.09421133249998093, + 0.06968647986650467, + -0.07536906749010086, + 0.03412045165896416, + -0.007103235460817814, + -0.03716113418340683, + -0.01592620089650154, + -0.03008282370865345, + -0.0019892174750566483, + -0.03152839466929436, + -0.08209844678640366, + -0.0268427524715662, + -0.0031933404970914125, + -0.05513107404112816, + -0.04919924959540367, + 0.00034308937028981745, + 0.04977249354124069, + 0.015141107141971588, + -0.018755033612251282, + 0.05642710253596306, + 0.034918010234832764, + -0.01753377541899681, + -0.03127915784716606, + -0.014194008894264698, + -0.013458761386573315, + 0.021895410493016243, + -0.027889544144272804, + 0.030456678941845894, + 0.04967280104756355, + -0.0035048858262598515, + -0.01443078275769949, + 0.0022992051672190428, + -0.03908025473356247, + 0.08035378903150558, + -0.050819285213947296, + -0.011676722206175327, + 0.028338169679045677, + 0.014281241223216057, + 0.00566701078787446, + -0.026618439704179764, + 0.04775368049740791, + -0.013209525495767593, + 0.012860594317317009, + -0.03476846590638161, + -0.023739760741591454, + 0.05443321168422699, + 0.08698347955942154, + -0.023976534605026245, + -0.023328520357608795, + -0.020624306052923203, + -0.009178128093481064, + 0.03519216924905777, + -0.04047597944736481, + -0.031004998832941055, + -0.017807936295866966, + -0.021932795643806458, + 0.052788253873586655, + 0.0217832550406456, + 0.05567939579486847, + -0.03691190108656883, + -0.04301818832755089, + 0.035590946674346924, + -0.009788756258785725, + 0.050769440829753876, + -0.00431801937520504, + -0.02679290436208248, + 0.0017945015570148826, + -0.009620522148907185, + -0.052638713270425797, + 0.05323687940835953, + -0.0744219645857811, + 0.012935365550220013, + -0.044488683342933655, + 0.009252898395061493, + 0.017110073938965797, + -0.017359310761094093, + -0.09530796855688095, + -0.017234692350029945, + 0.08164981752634048, + -0.04164738953113556, + 0.07656539976596832, + 0.0536855049431324, + -0.010287228971719742, + 0.011122170835733414, + 0.07965593039989471, + -0.027814773842692375, + 0.07168036699295044, + 0.007670247927308083, + -0.029684046283364296, + 0.02211972326040268, + -0.03015759587287903, + -0.027989238500595093, + -0.02484886161983013, + -0.005844591651111841, + 0.011863648891448975, + 0.04112399369478226, + -0.0018022902077063918, + 0.04929894581437111, + -0.16070757806301117, + 0.019515203312039375, + -0.006536222528666258, + -0.04967280104756355, + -0.0027680809143930674, + 0.03641342744231224, + 0.04099937528371811, + -0.0466819629073143, + -0.025920577347278595, + 0.014405859634280205, + 0.006467682775110006, + 0.09132018685340881, + -0.02036260813474655, + 0.011028707027435303, + 0.0360395722091198, + 0.00638044998049736, + -0.006386680994182825, + -0.05966717749834061, + -0.035590946674346924, + 0.057324353605508804, + -0.05682588368654251, + -0.06943724304437637, + 0.05293779447674751, + -0.0003230336296837777, + 0.05413413047790527, + -0.026767980307340622, + -0.003641965799033642, + 0.004495600238442421, + 0.043117884546518326, + -0.04929894581437111, + 0.0006020615110173821, + -0.040625520050525665, + 0.038831017911434174, + -0.08952568471431732, + -0.050819285213947296, + -0.05812191218137741, + 0.002973700873553753, + -0.06659594923257828, + 0.025422105565667152, + -0.04912447929382324, + 0.09924590587615967, + 0.042021244764328, + -0.018680263310670853, + -0.019016731530427933, + -0.05961732938885689, + 0.042021244764328, + 0.036214038729667664, + 0.009433594532310963, + 0.0036700048949569464, + 0.019203659147024155, + 0.07088281214237213, + 0.02881171926856041, + 0.041971396654844284, + -0.04992203414440155, + -0.039254721254110336, + -0.018730109557509422, + 0.010536465793848038, + 0.08314523845911026, + 0.06669563800096512, + -0.11365176737308502, + 0.044538531452417374, + 0.03511739894747734, + -0.049548182636499405, + -0.026568591594696045, + -0.016636524349451065, + 0.029235420748591423, + 0.08822965621948242, + 0.055280618369579315, + 0.06594793498516083, + -0.03312350809574127, + -0.08140058070421219, + -0.0026278854347765446, + 0.09994376450777054, + -0.047030895948410034, + 0.048974938690662384, + 0.0010070705320686102, + 0.011601950973272324, + 0.02173340693116188, + -0.04242002218961716, + 0.004520523827522993, + -0.00843041855841875, + 0.0427938774228096, + -0.010486618615686893, + 0.011502256616950035, + -0.020923389121890068, + -0.027989238500595093, + -0.006959924474358559, + 0.007863406091928482, + 0.04917432740330696, + 0.009022355079650879, + -0.002582711400464177, + -0.02487378567457199, + 0.03434476628899574, + 0.07482074201107025, + 0.03332289680838585, + -0.020312760025262833, + -0.06200999766588211, + 0.035491254180669785, + 0.01636236533522606, + -0.015440190210938454, + -0.057972367852926254, + 0.024961017072200775, + -0.01124055776745081, + -0.05101867392659187, + 0.052788253873586655, + 0.04491238668560982, + 0.043267425149679184, + 0.042021244764328, + 0.010368230752646923, + -0.06325618177652359, + -0.06370480358600616, + 0.030257290229201317, + -0.06968647986650467, + -0.02619473822414875, + 0.021434323862195015, + -0.039977505803108215, + -0.11175756901502609, + 0.04468807205557823, + 0.04533608630299568, + -0.006224677432328463, + 0.05712496489286423, + -0.030880380421876907, + -0.025746112689375877, + 0.05767328664660454, + 0.0500466525554657, + -0.03130408376455307, + -0.04010212421417236, + -0.024786552414298058, + -0.04079998657107353, + -0.04306803643703461, + 0.09660399705171585, + -0.01201942190527916, + 0.014842023141682148, + -0.0268427524715662, + -0.01698545552790165, + -0.06081366166472435, + -0.04847646504640579, + 0.088179811835289, + -0.021558942273259163, + 0.006866460666060448, + 0.054732296615839005, + -0.0404510572552681, + -0.036787282675504684, + -0.026493821293115616, + 0.12800776958465576, + -0.031628090888261795, + 0.010654852725565434, + 0.04939863830804825, + -0.028662176802754402, + 0.01530311070382595, + -0.03068099170923233, + -0.03561587259173393, + -0.024113614112138748, + -0.0019113310845568776, + 0.034967854619026184, + -0.0370863638818264, + 0.0796060785651207, + 0.07083296030759811, + -0.1268114447593689, + 0.01866780035197735, + 0.007745018694549799, + -0.07696417719125748, + -0.02938496321439743, + 0.05483199283480644, + 0.007720095105469227, + -0.03723590821027756, + -0.03726083040237427, + -0.03648819774389267, + 0.029808664694428444, + -0.03845716640353203, + -0.038681477308273315, + 0.03917995095252991, + 0.024674396961927414, + 0.021172625944018364, + -0.06654609739780426, + 0.046906277537345886, + -0.06126228719949722, + -0.0020889118313789368, + -0.09346362203359604, + 0.0052152699790894985, + -0.023826992139220238, + -0.00295656593516469, + 0.04010212421417236, + 0.03279950097203255, + 0.059916410595178604, + 0.004576602019369602, + 0.03835747018456459, + 0.023615142330527306, + 0.034967854619026184, + -0.08937614411115646, + -0.014779713936150074, + -0.006610993295907974, + 0.00012403402070049196, + 0.03003297746181488, + -0.03344751521945, + -0.034145377576351166, + 0.01890457607805729, + 0.0015662945806980133, + 0.02233157493174076, + -0.0821981430053711, + 0.013035059906542301, + 0.09550736099481583, + 0.027366148307919502, + -0.056626491248607635, + -0.027341224253177643, + 0.05687572807073593, + -0.08902721852064133, + 0.009097125381231308, + -0.006604762747883797, + 0.038183003664016724, + 0.026020271703600883, + 0.0061685992404818535, + -0.056676339358091354, + -0.09221743792295456, + 0.07985531538724899, + 0.06754304468631744, + -0.035590946674346924, + -0.08100180327892303, + 0.04359143227338791, + -0.03584018349647522, + -0.014680019579827785, + -0.03895563632249832, + -0.011190710589289665, + 0.059118855744600296, + 0.008598653599619865, + -0.02365252748131752, + -0.07970577478408813, + -0.01926596835255623, + 0.052090391516685486, + 0.07531921565532684, + 0.022319111973047256, + 0.07796112447977066, + 0.0011192269157618284, + -0.035541098564863205, + -0.013558455742895603, + -0.02015075646340847, + 0.0010927454568445683, + -0.06789197772741318, + 0.021297244355082512, + 0.0034830777440220118, + 0.02754061296582222, + 0.0014190892688930035, + -0.05114329233765602, + 0.027116911485791206, + 0.004467560909688473, + 0.013807692565023899, + 0.010966397821903229, + 0.034195221960544586, + -0.023926686495542526, + -0.04351666197180748, + 0.03329797461628914, + -0.05488183721899986, + 0.022157108411192894, + 0.018331332132220268, + 0.08708316832780838, + -0.07711371779441833, + 0.05508122593164444, + 0.017097610980272293, + 0.031628090888261795, + -0.02549687586724758, + 0.01983921229839325, + 0.01434355042874813, + -0.0625084713101387, + -0.06709441542625427, + 0.0017742511117830873, + 0.02569626457989216, + 0.009994376450777054, + 0.06450235843658447, + 0.0030157596338540316, + -0.027889544144272804, + 0.01717238314449787, + -0.022680506110191345, + -0.012455585412681103, + 0.03279950097203255, + -0.04075013846158981, + 0.10527742654085159, + -0.08055318146944046, + -0.0536855049431324, + -0.015751736238598824, + -0.01607574336230755, + 0.028462788090109825, + 0.02518532983958721, + -0.050146348774433136, + -0.025484414771199226, + -0.011078554205596447, + 0.024886246770620346, + 0.005452044773846865, + -0.01087916549295187, + 0.0038912021555006504, + 0.01576419733464718, + 0.01758362352848053, + 0.015539884567260742, + 0.028512636199593544, + -0.03152839466929436, + -0.06943724304437637, + -0.053286727517843246, + -0.07591738551855087, + 0.038008540868759155, + 0.04531116411089897, + -0.04144800081849098, + -0.06998556107282639, + -0.0005783061496913433, + -0.033547207713127136, + -0.002741599455475807, + -0.008399263955652714, + 0.01991398259997368, + -0.010536465793848038, + 0.036886975169181824, + -0.04154769703745842, + 0.03342258930206299, + -0.0217832550406456, + 0.06385434418916702, + -0.02614489011466503, + -0.009994376450777054, + -0.009358824230730534, + 0.014680019579827785, + -0.028437864035367966, + -0.024076228961348534, + -0.0038257776759564877, + 0.01592620089650154, + -0.08055318146944046, + 0.034942932426929474, + -0.04802783951163292, + 0.007826020941138268, + 0.0028163704555481672, + 0.017134997993707657, + 0.012162732891738415, + 0.03825777396559715, + 0.08763149380683899, + -0.01623774692416191, + 0.10079117119312286, + 0.0076141697354614735, + -0.0944107174873352, + -0.03589003160595894, + 0.034319840371608734, + -0.09087156504392624, + -0.001496975659392774, + -0.04104922339320183, + 0.03521709144115448, + 0.0510934479534626, + -0.01226865779608488, + -0.022917279973626137, + 0.003589003114029765, + -0.04157261922955513, + -0.036787282675504684, + 0.08553790301084518, + -0.00042720662895590067, + -0.05333657190203667, + 0.06749320030212402, + -0.0931146889925003, + -0.0013201736146584153, + 0.021147701889276505, + 0.035441406071186066, + 0.010897858068346977, + -0.04042613133788109, + -0.04359143227338791, + -0.036712512373924255, + -0.012050576508045197, + -0.027191683650016785, + -0.003635734785348177, + 0.04167231172323227, + -0.015166030265390873, + 0.001521120429970324, + 0.029833588749170303, + 0.04229540377855301, + -0.019540127366781235, + -0.03132900595664978, + 0.01880487985908985, + -0.03506755083799362, + -0.052090391516685486, + 0.016611600294709206, + -0.0026341164484620094, + 0.0201009102165699, + -0.012549049220979214, + 0.0047417208552360535, + 0.0972520112991333, + 0.016499444842338562, + 0.027839697897434235, + 0.054632604122161865, + 0.08125104010105133, + 0.015552346594631672, + -0.04344189167022705, + 0.020636767148971558, + -0.02686767652630806, + -0.09097126126289368, + -0.06564884632825851, + -0.02463700994849205, + -0.021621251478791237, + 0.04775368049740791, + -0.046158567070961, + 0.09665384888648987, + 0.03519216924905777, + 0.016761142760515213, + -0.028662176802754402, + 0.034918010234832764, + -0.03180255368351936, + 0.0033709213603287935, + 0.023041898384690285, + 0.040002431720495224, + -0.006673302501440048, + -0.022368960082530975, + 0.07531921565532684, + -0.044488683342933655 + ] + }, + { + "id": "5a97dc63-3b05-421c-a14f-262d1f3b330e", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnfields", + "reviewDate": "2022-07-17T10:52:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fb6c89d8-13b8-42ec-a719-beb5a28384ba", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "tyrone34", + "reviewDate": "2021-08-20T10:41:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c89e8ea3-0eb0-4115-88aa-c32b77a02951", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica47", + "reviewDate": "2022-12-22T12:33:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "54b2015f-e597-4cec-83f5-a9c4fcfbf161", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "susan34", + "reviewDate": "2022-07-27T15:06:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c9660b32-b398-4e31-9fa7-674a1d46eeb9", + "productId": "28bf6af7-37bc-4890-af12-650ec64706e6", + "category": "Electronics", + "docType": "customerRating", + "userName": "robert16", + "reviewDate": "2021-04-27T15:13:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2c576138-fe38-4386-9015-00ee329bb03a", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Super (Gold)", + "description": "This Awesome Stand Super (Gold) is a really neat metal stand that I really love! The metal frame sits comfortably on the side and also helps hold the side panels in place.\n\nI've had two and a half years to try this stand, but this is still pretty good! I'm so really impressed by what I have to offer. I can't wait to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-05-07T01:59:06", + "price": 514.05, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2021-01-14T06:21:28", + "newPrice": 516.43 + }, + { + "priceDate": "2021-09-03T06:21:28", + "newPrice": 541.3 + }, + { + "priceDate": "2022-04-23T06:21:28", + "newPrice": 474.3 + }, + { + "priceDate": "2022-12-11T06:21:28", + "newPrice": 480.72 + }, + { + "priceDate": "2025-04-12T06:21:28", + "newPrice": 514.05 + } + ], + "descriptionVector": [ + 0.04637154936790466, + -0.028695804998278618, + -0.05362733080983162, + -0.03016878478229046, + -0.005939649883657694, + -0.07594022899866104, + -0.07272149622440338, + 0.016161847859621048, + -0.00756947323679924, + 0.0903426855802536, + 0.06808434426784515, + 0.013297723606228828, + 0.061592329293489456, + -0.020758086815476418, + 0.05297267436981201, + -0.02741376869380474, + 0.057009726762771606, + 0.045580506324768066, + -0.0315326526761055, + -0.002439620904624462, + 0.08346878737211227, + -0.057391609996557236, + -0.03338751569390297, + -0.023022109642624855, + -0.01309314277023077, + -0.06655681133270264, + -0.006631813477724791, + 0.004081378225237131, + 0.0006708531291224062, + 0.0060487594455480576, + -0.03657896816730499, + 0.043971139937639236, + -0.02831392176449299, + 0.08892426639795303, + 0.04481673985719681, + 0.010276753455400467, + 0.0152616947889328, + 0.037670064717531204, + 0.03526965528726578, + 0.013918284326791763, + 0.000779962632805109, + 0.03908848762512207, + 0.017921239137649536, + 0.0003083622723352164, + 0.06846623122692108, + -0.049208395183086395, + -0.004783771000802517, + -0.04159800708293915, + 0.0038597495295107365, + -0.04004319757223129, + 0.012929478660225868, + 0.04757175222039223, + 0.00221628719009459, + -0.028177535161376, + 0.025286132469773293, + -0.002668068977072835, + -0.005254305433481932, + 0.002896517049521208, + 0.06966643035411835, + -0.038897547870874405, + -0.03884299099445343, + -0.028450308367609978, + 0.01713019609451294, + -0.03436950221657753, + -0.04669887572526932, + -0.02283116802573204, + -0.0024157532025128603, + -0.01614820957183838, + -0.03436950221657753, + 0.015193501487374306, + -0.07430358976125717, + 0.020812641829252243, + -0.027727458626031876, + 0.013072685338556767, + 0.054145604372024536, + -0.027072802186012268, + 0.07081208378076553, + -0.008237768895924091, + 0.04899017885327339, + 0.011183726601302624, + 0.0650838315486908, + 0.05264534801244736, + -0.04500767961144447, + -0.014729785732924938, + 0.04481673985719681, + -0.020826280117034912, + 0.017798490822315216, + -0.10349038243293762, + -0.08052282780408859, + 0.00021161281620152295, + -0.05886458978056908, + -0.0012709555448964238, + -0.03338751569390297, + -0.05750072002410889, + -0.03237825259566307, + 0.012404389679431915, + 0.021740073338150978, + 0.057773493230342865, + 0.02595442906022072, + -0.054036494344472885, + 0.0014525206061080098, + -0.01204296387732029, + -0.05458204075694084, + 0.019421495497226715, + -0.07348526269197464, + 0.033305682241916656, + 0.04814457893371582, + 0.015329888090491295, + 0.013604594394564629, + -0.21429111063480377, + 0.049563001841306686, + -0.021985569968819618, + 0.02370404452085495, + 0.030987106263637543, + -0.030496113002300262, + -0.01079502422362566, + -0.029841454699635506, + -0.04680798575282097, + -0.00986077357083559, + -0.09448885172605515, + 0.02529977075755596, + 0.08657840639352798, + 0.043234650045633316, + 0.02393590286374092, + 0.06131955236196518, + 0.02010343037545681, + -0.0305233895778656, + -0.005970336962491274, + 0.03633347153663635, + -0.024617837741971016, + -0.07163040339946747, + 0.025763487443327904, + -0.026336312294006348, + -0.03562426194548607, + -0.055782247334718704, + 0.08194125443696976, + 0.02307666465640068, + 0.0816139280796051, + -0.021167248487472534, + 0.030687054619193077, + 0.016802867874503136, + -0.025272494181990623, + -0.022135594859719276, + 0.02036256529390812, + 0.005267944186925888, + 0.04020686075091362, + -0.06972099095582962, + -0.03881571441888809, + 0.020417120307683945, + 0.038297444581985474, + 0.027741096913814545, + -0.131913423538208, + -0.09454340487718582, + -0.07157585024833679, + 0.05886458978056908, + 0.042498160153627396, + -0.07544923573732376, + -0.012254363857209682, + -0.005847588647156954, + 0.05349094420671463, + 0.02891402505338192, + -0.025668015703558922, + -0.06639314442873001, + 0.07495824247598648, + -0.006134001072496176, + -0.004538274370133877, + 0.03316929563879967, + 0.06230153888463974, + -0.008790136314928532, + 0.028750360012054443, + 0.038652051240205765, + -0.045225899666547775, + -0.026281757280230522, + -0.04980849847197533, + 0.032705578953027725, + 0.026840943843126297, + 0.09694381803274155, + -0.0486355721950531, + 0.04751719906926155, + -0.03286924585700035, + -0.024672390893101692, + 0.03546059504151344, + -0.05398193746805191, + 0.04173439368605614, + 0.027850206941366196, + 0.032951075583696365, + 0.011551971547305584, + 0.01614820957183838, + 0.0019332844531163573, + 0.008271865546703339, + 0.0016068082768470049, + -0.03502415865659714, + 0.016434622928500175, + 0.006270388141274452, + 0.018698645755648613, + -0.001127749215811491, + -0.050463154911994934, + 0.020785365253686905, + -0.050190381705760956, + 0.049563001841306686, + -0.039524927735328674, + 0.09023357927799225, + 0.10048987716436386, + -0.06650225818157196, + 0.04110701382160187, + -0.05275445431470871, + 0.01066545583307743, + 0.04506223276257515, + 0.056355070322752, + 0.03087799623608589, + 0.04012502729892731, + -0.04991760849952698, + -0.1308223158121109, + -0.022762974724173546, + -0.0003043132892344147, + 0.02073081023991108, + 0.04577144607901573, + 0.004398477729409933, + 0.006430642679333687, + -0.060501232743263245, + 0.0386793278157711, + 0.002270841971039772, + -0.02135819010436535, + -0.020308010280132294, + -0.0305233895778656, + -0.028941301628947258, + -0.01018128264695406, + -0.01564357802271843, + 0.02544979751110077, + 0.003869978478178382, + -0.012793092057108879, + -0.04345287010073662, + -0.02097630687057972, + 0.0185077041387558, + -0.054909370839595795, + 0.05668240040540695, + -0.018344039097428322, + -0.027372851967811584, + 0.022135594859719276, + -0.05463659390807152, + -0.03461499884724617, + 0.03772461786866188, + -0.07768598198890686, + -0.06917543709278107, + 0.0032698761206120253, + -0.015466275624930859, + 0.06939365714788437, + 0.0021566180512309074, + -0.028995856642723083, + -0.023253967985510826, + 0.04555322602391243, + -0.031178047880530357, + 0.0031232601031661034, + 0.06857533752918243, + 0.06770246475934982, + 0.139114648103714, + 0.08690574020147324, + 0.00918565783649683, + 0.028013870120048523, + 0.02369040623307228, + -0.003205092390999198, + -0.05275445431470871, + 0.016189126297831535, + 0.05185430124402046, + -0.008776497095823288, + 0.07964995503425598, + 0.042143553495407104, + 0.04443485289812088, + 0.029950564727187157, + 0.05283628776669502, + -0.04961755871772766, + -0.0008242883486673236, + 0.08881515264511108, + -0.01924419216811657, + 0.015820881351828575, + -0.016039099544286728, + 0.0006550833932124078, + 0.07337615638971329, + -0.009499347768723965, + -0.030496113002300262, + 0.07441269606351852, + 0.017443886026740074, + 0.0486355721950531, + 0.007576292846351862, + 0.03657896816730499, + -0.07032109051942825, + 0.015302611514925957, + -0.043725643306970596, + 0.024999720975756645, + -0.014634314924478531, + -0.023731322959065437, + 0.00015950875240378082, + 0.029568681493401527, + -0.002316872589290142, + 0.023158496245741844, + -0.0029135653749108315, + 0.008401433937251568, + 0.005141786299645901, + -0.020267095416784286, + -0.06901177763938904, + 0.06650225818157196, + 0.06208331882953644, + -0.00728988042101264, + -0.060392122715711594, + -0.013120420277118683, + 0.09356141835451126, + -0.016093654558062553, + 0.020553506910800934, + -0.054772984236478806, + -0.00199977308511734, + 0.07855886220932007, + 0.03426039218902588, + -0.010597262531518936, + -0.0013041998026892543, + 0.07823152840137482, + -0.04457124322652817, + -0.03027789294719696, + -0.003005626378580928, + 0.004507587291300297, + 0.027877483516931534, + 0.06131955236196518, + -0.07124852389097214, + -0.007699041161686182, + 0.06017390266060829, + 0.05891914293169975, + -0.006867080926895142, + 0.018562259152531624, + -0.034424055367708206, + -0.016161847859621048, + 0.013379556126892567, + 0.003849520580843091, + 0.01613457128405571, + 0.009226574562489986, + 0.03336023911833763, + -0.06873900443315506, + -0.06862989068031311, + 0.009322045370936394, + 0.02891402505338192, + 0.020703531801700592, + -0.004449622705578804, + 0.02408592775464058, + -0.030196061357855797, + -0.02866852842271328, + -0.059519246220588684, + 0.06251975893974304, + -0.0921429917216301, + 0.10681822896003723, + -0.06333807855844498, + 0.04331648349761963, + -0.02517702244222164, + 0.0015548107912763953, + 0.003494914621114731, + -0.020417120307683945, + -0.014443373307585716, + 0.10087175667285919, + 0.029814178124070168, + 0.028259366750717163, + -0.04124340042471886, + 0.026227202266454697, + 0.004909928888082504, + 0.03941581770777702, + -0.004718986805528402, + 0.03265102580189705, + 0.04713531583547592, + 0.09356141835451126, + 0.010856397449970245, + -0.042880043387413025, + 0.038652051240205765, + -0.06813889741897583, + 0.01550719141960144, + -0.026963692158460617, + -0.012206627987325191, + 0.011033700779080391, + 0.008449168875813484, + -0.01775757595896721, + 0.001139683066867292, + 0.058155376464128494, + 0.050954148173332214, + 0.022981194779276848, + 0.04465307295322418, + -0.044107526540756226, + 0.00868784636259079, + -0.05190885812044144, + 0.0101199084892869, + 0.07157585024833679, + -0.005209980066865683, + -0.038161057978868484, + 0.07774053514003754, + -0.01638006791472435, + 0.016434622928500175, + -0.06993920356035233, + -0.0042995973490178585, + 0.026622723788022995, + -0.0008579589193686843, + 0.05935558304190636, + -0.06699325144290924, + -0.009833496063947678, + 0.05793716013431549, + -0.00515201548114419, + -0.0022913001012057066, + -0.0007650452898815274, + 0.06781157106161118, + 0.04222538694739342, + -0.004609877709299326, + 0.006672729272395372, + -0.027277382090687752, + -0.01153833232820034, + 0.0612649992108345, + -0.03797011449933052, + -0.06257431209087372, + -0.024372341111302376, + -0.023172136396169662, + -0.015957267954945564, + 0.04167984053492546, + 0.06404729187488556, + 0.09192477911710739, + 0.09225210547447205, + 0.015111669898033142, + 0.10321760922670364, + -0.03810650110244751, + -0.0119065772742033, + 0.029595959931612015, + 0.023785876110196114, + -0.016666479408740997, + -0.0471898689866066, + 0.060010239481925964, + -0.058755479753017426, + -0.01809854246675968, + -0.03169631585478783, + -0.07910440862178802, + 0.017321137711405754, + -0.06541115790605545, + -0.030086951330304146, + 0.04107973724603653, + -0.016693757846951485, + 0.010529069229960442, + 0.03164176270365715, + 0.03900665417313576, + -0.03862477093935013, + 0.07555834949016571, + -0.03638802841305733, + -0.043371036648750305, + 0.04724442586302757, + -0.006853442173451185, + -0.041270677000284195, + -0.04345287010073662, + -0.027018247172236443, + 0.04173439368605614, + 0.01586179807782173, + 0.0006201342330314219, + -0.047599032521247864, + 0.048581015318632126, + -0.06017390266060829, + 0.013631871901452541, + -0.03526965528726578, + 0.04541683942079544, + 0.05190885812044144, + 0.08215947449207306, + -0.0072353254072368145, + 0.05076320841908455, + -0.008660568855702877, + 0.05103598162531853, + 0.036551691591739655, + -0.01924419216811657, + 0.024358700960874557, + -0.003225550288334489, + -0.04866284877061844, + 0.02097630687057972, + 0.02793203853070736, + 0.04967211186885834, + 0.0032852196600288153, + 0.00468830019235611, + -0.09328864514827728, + 0.04132523387670517, + -0.011326932348310947, + -0.03248736262321472, + 0.033060185611248016, + -0.02431778609752655, + 0.0029834636952728033, + 0.00177643948700279, + -0.07577656954526901, + 0.027222827076911926, + -0.06055578589439392, + -0.012984033674001694, + -0.006911406759172678, + -0.04217083379626274, + -0.05810082331299782, + -0.004395068157464266, + -0.028750360012054443, + 0.014538844116032124, + 0.016216402873396873, + 0.04593510925769806, + 0.025095190852880478, + -0.03696085140109062, + -0.012056603096425533, + -0.019762463867664337, + -0.03180542588233948, + 0.023485826328396797, + -0.024849694222211838, + -0.0015121898613870144, + 0.006116952747106552, + 0.007801331114023924, + 0.007405809126794338, + 0.06290163844823837, + 0.04967211186885834, + -0.041379787027835846, + -0.037888284772634506, + -0.010263115167617798, + -0.0785043016076088, + -0.06781157106161118, + -0.026990968734025955, + 0.0029101555701345205 + ] + }, + { + "id": "37cf2119-9b48-4799-8725-684ebc3634d4", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "schultzchristopher", + "reviewDate": "2022-10-27T00:29:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1e708de8-946f-4fd9-bdfc-73a1fa32731c", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholsbryce", + "reviewDate": "2021-05-18T20:31:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "797bc015-e6ad-4af7-bf9a-042b961d65df", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "marywilliams", + "reviewDate": "2022-01-08T20:30:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "938cdd0c-613b-4e0b-9aae-eda3f282f0df", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "hfrench", + "reviewDate": "2021-01-14T06:21:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "63980f34-6bc4-41a9-a27f-434f9b26a0bd", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "wbailey", + "reviewDate": "2022-06-15T22:02:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "96a262d2-fd36-48cb-8471-6bd94c9e8a64", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "wbrooks", + "reviewDate": "2022-01-29T22:53:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea5f897b-0d84-434c-9d93-a4c80f5f617f", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "kramercrystal", + "reviewDate": "2022-05-13T05:58:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "baca4060-17e6-4793-8272-72ecd3c635b8", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthonygonzalez", + "reviewDate": "2022-12-11T20:41:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cd8faf0b-5bec-4cd2-87c2-b94cbeee2643", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "petersonchristy", + "reviewDate": "2022-03-08T18:12:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e304a6a1-da50-4336-bb9c-a752840616a0", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "skirk", + "reviewDate": "2022-09-07T22:32:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c7b8452e-90c6-4cde-afec-1a16c9740897", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "morrisclifford", + "reviewDate": "2022-03-23T16:29:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "168058ec-786b-474a-8b67-6cc99c32a0e8", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "clementsdavid", + "reviewDate": "2022-07-17T17:56:12", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5c8ed253-3127-47a6-a156-c1533b56076b", + "productId": "2c576138-fe38-4386-9015-00ee329bb03a", + "category": "Accessory", + "docType": "customerRating", + "userName": "colemansally", + "reviewDate": "2021-04-16T22:42:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse 3000 (Gold)", + "description": "This Awesome Mouse 3000 (Gold) is the mouse that will last forever. However, this mouse is just as awesome. It will look so awesome in real life and be so awesome in this world. This little mouse was used in all of the prototypes I designed, including the 3D mouse.\n\nThe original Mouse 5000 (Black) is the coolest mouse in this world… and the one that", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-06-05T10:38:26", + "price": 512.93, + "stock": 1, + "priceHistory": [ + { + "priceDate": "2021-02-17T06:59:53", + "newPrice": 513.71 + }, + { + "priceDate": "2022-12-21T06:59:53", + "newPrice": 489.09 + }, + { + "priceDate": "2024-09-04T06:59:53", + "newPrice": 512.93 + } + ], + "descriptionVector": [ + -0.06104465201497078, + -0.060992784798145294, + -0.02821435034275055, + 0.007889904081821442, + 0.006564115174114704, + -0.016272522509098053, + -0.04919358715415001, + 0.009296732023358345, + 0.05279817804694176, + 0.07110638916492462, + -0.04763764888048172, + 0.034100983291864395, + 0.04333288595080376, + -0.05373173952102661, + 0.08054574579000473, + 0.04333288595080376, + -0.029666559770703316, + 0.022327715530991554, + -0.02389662154018879, + 0.015857605263590813, + 0.026256460696458817, + -0.04271050915122032, + -0.03684980794787407, + -0.004868790507316589, + -0.0029611452482640743, + -0.05388733372092247, + -0.017361680045723915, + 0.01749134063720703, + -0.005854218266904354, + -0.03949490189552307, + 0.008622491732239723, + 0.04146575927734375, + 0.0605778694152832, + 0.05539140850305557, + -0.013141196221113205, + -0.0321819931268692, + -0.030833512544631958, + 0.018904652446508408, + 0.05331682413816452, + 0.04403305798768997, + 0.03897625580430031, + -0.020317962393164635, + 0.00707303686067462, + -0.021225593984127045, + 0.0038023244123905897, + 0.07655216753482819, + -0.06659416109323502, + 0.014327599667012691, + 0.05388733372092247, + 0.014975907281041145, + 0.05191648006439209, + 0.030574189499020576, + -0.025893408805131912, + 0.014431328512728214, + -0.0249987430870533, + -0.015585316345095634, + 0.007591682951897383, + 0.027332652360200882, + 0.04143982753157616, + -0.0662829801440239, + 0.024142976850271225, + -0.06374160945415497, + -0.02772163599729538, + -0.02265186980366707, + -0.05440597981214523, + -0.08386508375406265, + -0.04475916177034378, + -0.0006515491986647248, + 0.043229155242443085, + 0.02502467669546604, + -0.0390021912753582, + -0.03490488603711128, + 0.012771661393344402, + 0.029070116579532623, + 0.021977629512548447, + 0.003821773687377572, + 0.08858475834131241, + 0.052927836775779724, + 0.01594836823642254, + -0.051527492702007294, + 0.06804637610912323, + -0.014625821262598038, + -0.002115103881806135, + 0.003863913705572486, + 0.05814023315906525, + -0.008155710995197296, + -0.018995415419340134, + -0.09952819347381592, + 0.0009489603689871728, + 0.005380953662097454, + -0.06467517465353012, + 0.10533703118562698, + -0.062237538397312164, + 0.006560873705893755, + -0.0730772390961647, + -0.007170282769948244, + -0.009108723141252995, + 0.06840942800045013, + -0.03677201271057129, + -0.0006981463520787656, + 0.04613357409834862, + 0.007637064438313246, + -0.060422275215387344, + 0.0031313260551542044, + -0.05637683346867561, + 0.012376193888485432, + 0.024596793577075005, + 0.05798463895916939, + 0.006337207742035389, + -0.08531729131937027, + 0.03342674300074577, + -0.023572467267513275, + -0.014573956839740276, + 0.010178430937230587, + 0.018723126500844955, + 0.010431270115077496, + -0.07898980379104614, + -0.012492888607084751, + -0.048493415117263794, + 0.0034814123064279556, + 0.08599153161048889, + 0.008356685750186443, + 0.043721869587898254, + 0.04654848948121071, + 0.005828286055475473, + -0.016415150836110115, + -0.01715422049164772, + 0.03404911980032921, + -0.01859346404671669, + -0.022094326093792915, + -0.10357363522052765, + 0.027514178305864334, + 0.0213941540569067, + 0.06234126538038254, + 0.016272522509098053, + 0.07655216753482819, + -0.035838447511196136, + 0.04058406129479408, + -0.0028979352209717035, + 0.09252647310495377, + 0.00785748939961195, + -0.032130129635334015, + -0.02575078047811985, + -0.04540747031569481, + -0.030470460653305054, + 0.0048396168276667595, + -0.10544075816869736, + 0.030548257753252983, + 0.004009782802313566, + 0.040428467094898224, + 0.04688560962677002, + -0.09143731743097305, + 0.0008557661203667521, + -0.018113715574145317, + 0.0034814123064279556, + 0.07183249294757843, + -0.04732646048069, + -0.009484740905463696, + -0.016531845554709435, + 0.10310684889554977, + -0.030340800061821938, + -0.007332359906286001, + -0.04387746378779411, + -0.014262768439948559, + -0.028732996433973312, + 0.009030926041305065, + 0.08262033015489578, + 0.011961276642978191, + -0.027358584105968475, + 0.005273982882499695, + 0.016674473881721497, + 0.0017552929930388927, + 0.05176088586449623, + -0.02987401746213436, + 0.025621119886636734, + -0.00391901982948184, + 0.058866336941719055, + 0.013964546844363213, + 0.006295067723840475, + -0.05108664557337761, + 0.02590637467801571, + 0.08194608986377716, + -0.05819209665060043, + -0.0011774888262152672, + 0.09008883684873581, + 0.008013082668185234, + 0.029303506016731262, + 0.04714493453502655, + -0.10502584278583527, + -0.03544946387410164, + 0.06830569356679916, + -0.025880442932248116, + 0.08879221975803375, + 0.005737523082643747, + -0.006434453651309013, + 0.11119773238897324, + -0.03646082431077957, + 0.01345886755734682, + -0.046444762498140335, + 0.03902812302112579, + -0.02969249151647091, + 0.06571246683597565, + 0.08744373917579651, + 0.0208236426115036, + 0.020732879638671875, + -0.03643489256501198, + -0.008661390282213688, + 0.0003778418176807463, + 0.07815997302532196, + 0.038379814475774765, + 0.03817235678434372, + -0.014664719812572002, + -0.04491475597023964, + -0.058036502450704575, + 0.04683374613523483, + -0.00035393546568229795, + -0.010405338369309902, + -0.021744240075349808, + -0.018113715574145317, + -0.09024442732334137, + 0.019980842247605324, + -0.0069239260628819466, + -0.012881873175501823, + 0.008868848904967308, + -0.05059393122792244, + 0.006226995028555393, + 0.05751785635948181, + 0.02506357431411743, + 0.077278271317482, + 0.013847852125763893, + -0.043566275388002396, + -0.039105918258428574, + 0.0008087638416327536, + 0.0564287006855011, + -0.115139439702034, + 0.09397868067026138, + -0.054665304720401764, + -0.06809823960065842, + 0.05715480446815491, + 0.06156329810619354, + 0.0068526118993759155, + 0.030211137607693672, + -0.04260678216814995, + -0.048830535262823105, + 0.08417626470327377, + -0.002620783867314458, + 0.03135215863585472, + -0.08734001219272614, + -0.057206667959690094, + -0.03555319458246231, + 0.007559267338365316, + 0.04688560962677002, + 0.01319954451173544, + 0.08542101830244064, + 0.021044066175818443, + 0.07484063506126404, + 0.056065648794174194, + 0.04714493453502655, + -0.009964489378035069, + -0.009413427673280239, + -0.08816984295845032, + 0.07515182346105576, + -0.061667025089263916, + 0.08770306408405304, + -0.03350454196333885, + 0.038302015513181686, + 0.021368220448493958, + -0.06472703814506531, + 0.04426644742488861, + 0.03093724139034748, + -0.005364745855331421, + -0.004486288875341415, + 0.04579645395278931, + -0.00773431034758687, + 0.020655082538723946, + -0.031144700944423676, + -0.009225417859852314, + 0.04532967135310173, + 0.062393128871917725, + -0.029329439625144005, + 0.02730671875178814, + 0.010107116773724556, + 0.01435353234410286, + 0.00260295532643795, + -0.012479922734200954, + -0.026762140914797783, + 0.035501327365636826, + 0.041932541877031326, + -0.03609777241945267, + -0.04753391817212105, + -0.029510965570807457, + 0.00012459662684705108, + 0.03194860368967056, + -0.04369593784213066, + 0.03713506460189819, + -0.0017941915430128574, + 0.04641883075237274, + -0.009802412241697311, + -0.02355950139462948, + 0.020577285438776016, + 0.09268206357955933, + -0.03923558071255684, + -0.04071372374892235, + -0.05891820043325424, + 0.031974535435438156, + 0.03959863260388374, + -0.023922553285956383, + -0.024104079231619835, + 0.017595069482922554, + -0.0477154441177845, + 0.002696960000321269, + 0.06960231065750122, + -0.01414607372134924, + -0.03194860368967056, + 0.1291428953409195, + -0.1048702523112297, + 0.011611190624535084, + 0.004165377002209425, + 0.02196466363966465, + -0.02798095904290676, + -0.02987401746213436, + -0.05051613226532936, + -0.0886366218328476, + 0.020045673474669456, + 0.05251292139291763, + -0.016868965700268745, + -0.030340800061821938, + -0.0008776464965194464, + -0.06783891469240189, + -0.10616686195135117, + -0.02567298337817192, + -0.10818958282470703, + -0.012246532365679741, + 0.015196331776678562, + -0.009056857787072659, + -0.10435160249471664, + -0.030470460653305054, + 0.08495423942804337, + 0.06062973290681839, + 0.041673216968774796, + 0.027929093688726425, + -0.0039060537237674, + -0.0005826665437780321, + 0.04698934033513069, + -0.01472955010831356, + -0.057051073759794235, + -0.003546243067830801, + -0.07681149244308472, + 0.036979470402002335, + 0.03519013896584511, + 0.0015502657042816281, + -0.09263020008802414, + 0.008531728759407997, + -0.07209181040525436, + 0.017582103610038757, + 0.049401044845581055, + 0.02355950139462948, + -0.031974535435438156, + 0.0009619265329092741, + 0.016843033954501152, + -0.028810793533921242, + -0.01399047952145338, + 0.07084706425666809, + 0.016726337373256683, + -0.00925783347338438, + 0.021938731893897057, + 0.03428250923752785, + 0.017711766064167023, + 0.0014611234655603766, + -0.05238325893878937, + 0.03931337594985962, + -0.020304996520280838, + -0.04367000609636307, + 0.08448745310306549, + -0.06669789552688599, + -0.004262622911483049, + 0.038716934621334076, + -0.010366439819335938, + -0.04195847362279892, + 0.03404911980032921, + 0.03524200618267059, + 0.041828811168670654, + 0.042243726551532745, + 0.04452577233314514, + 0.06607551872730255, + -0.07038027793169022, + -0.037057265639305115, + -0.06545314192771912, + 0.020797710865736008, + -0.008979061618447304, + -0.04522594437003136, + -0.05725853517651558, + 0.005290190689265728, + 0.05279817804694176, + -0.027410447597503662, + -0.056636158376932144, + 0.01981228217482567, + 0.04094711318612099, + -0.022198054939508438, + -0.0052674999460577965, + -0.01034050714224577, + 0.06617924571037292, + 0.0019919252954423428, + -0.018774989992380142, + -0.010768390260636806, + 0.040609993040561676, + 0.039857957512140274, + 0.014924042858183384, + -0.06457144767045975, + -0.017504306510090828, + -0.03093724139034748, + 0.029822152107954025, + 0.05497648939490318, + -0.0023760476615279913, + -0.015261163003742695, + -0.0270733293145895, + 0.04229559376835823, + -0.020927371457219124, + 0.10113599896430969, + -0.07624097913503647, + 0.02805875614285469, + 0.05440597981214523, + 0.04081745073199272, + 0.038950324058532715, + -0.03586437925696373, + -0.028836725279688835, + -0.05461343750357628, + -0.01344590075314045, + 0.0321819931268692, + -0.047430191189050674, + -0.0018217446049675345, + -0.04994562268257141, + -0.007954735308885574, + 0.0065965307876467705, + -0.071210116147995, + 0.010632245801389217, + 0.03423064574599266, + 0.02699553221464157, + 0.02151084877550602, + 0.051294103264808655, + 0.0640009343624115, + -0.054665304720401764, + -0.015611249022185802, + 0.056480564177036285, + -0.035423532128334045, + -0.0022123500239104033, + -0.04112863913178444, + -0.0371091328561306, + 0.05316122993826866, + -0.04789697006344795, + -0.03547539561986923, + -0.02722892165184021, + -0.013484799303114414, + 0.0077083781361579895, + 0.03692760691046715, + 0.017789563164114952, + 0.0308594461530447, + 0.043488480150699615, + -0.03819828853011131, + 0.0033258183393627405, + 0.013160645961761475, + 0.06529755145311356, + 0.05487276241183281, + -0.008778085932135582, + 0.02127745747566223, + -0.007423122879117727, + 0.026178663596510887, + 0.0151444673538208, + -0.0038477061316370964, + 0.0016693922225385904, + -0.026839938014745712, + 0.03988388925790787, + -0.018269309774041176, + 0.05684361606836319, + 0.005555996671319008, + -0.0745813176035881, + 0.024376368150115013, + 0.007150833494961262, + 0.06524568796157837, + 0.056791752576828, + 0.01723201759159565, + 0.014444295316934586, + -0.05272037908434868, + 0.000685585371684283, + 0.008680840022861958, + -0.04198440536856651, + 0.056065648794174194, + -0.005821803119033575, + 0.04141389578580856, + 0.06451957672834396, + -0.005439301487058401, + 0.013471833430230618, + 0.0021313114557415247, + 0.016376251354813576, + -0.04286610335111618, + 0.030159272253513336, + -0.048908330500125885, + 0.042503051459789276, + -0.04802663251757622, + 0.02166644297540188, + 0.00897257775068283, + -0.018048886209726334, + -0.04029880464076996, + 0.07509995996952057, + 0.06114837899804115, + 0.002401979872956872, + -0.012265981175005436, + 0.013264374807476997, + -0.01896948181092739, + -0.11036790162324905, + -0.037057265639305115, + -0.024142976850271225 + ] + }, + { + "id": "94194c5d-f909-4278-851c-de8d8fc4fbfa", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amywashington", + "reviewDate": "2021-09-12T09:09:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "46c66347-c9ef-40f7-995e-7be7b3c0e59d", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brian46", + "reviewDate": "2021-10-19T00:13:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "615e6457-5329-4fb5-bc47-ad1bdb1cc490", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ralph79", + "reviewDate": "2022-02-28T12:18:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "937b766b-6864-4308-afe4-6f9454384309", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinacarr", + "reviewDate": "2022-12-22T06:50:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9e894c7d-06f7-4806-9407-d4c9c809d2bc", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothy11", + "reviewDate": "2021-02-17T06:59:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1637b9c3-5f06-474f-8a6f-19d127cf6ee5", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kaitlyn92", + "reviewDate": "2021-03-06T15:38:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "95629c36-b06b-45ca-8718-ae119db92c69", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cardenasmarvin", + "reviewDate": "2022-09-13T05:13:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9a886b29-924c-471d-b961-dda5badc224d", + "productId": "25ff81bc-bffb-47e9-9d2c-2114f595e4cd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamescolon", + "reviewDate": "2022-06-22T06:32:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Red)", + "description": "This Luxe Filter 3000 (Red) is available in the following colors, while this product is available in one of our other colors.\n\nThis Luxe Filter 3000 (Black) is available in the following colors, while this product is available in one of our other colors.\n\nThese Luxe Filter 3000 (Green) is available in the following colors, while this product is available in one of our other colors", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-01-06T05:21:07", + "price": 901.33, + "stock": 17, + "priceHistory": [ + { + "priceDate": "2021-05-12T17:03:21", + "newPrice": 987.38 + }, + { + "priceDate": "2021-10-29T17:03:21", + "newPrice": 842.51 + }, + { + "priceDate": "2022-04-17T17:03:21", + "newPrice": 974.19 + }, + { + "priceDate": "2022-10-04T17:03:21", + "newPrice": 904.44 + }, + { + "priceDate": "2024-11-22T17:03:21", + "newPrice": 901.33 + } + ], + "descriptionVector": [ + -0.015169587917625904, + 0.01900068297982216, + -0.05002352222800255, + 0.033847786486148834, + 0.0042503224685788155, + -0.007165566086769104, + -0.049765534698963165, + -0.003998785745352507, + 0.020832384005188942, + -0.0029071818571537733, + -0.02672736905515194, + 0.01782684586942196, + 0.017349570989608765, + -0.0009924406185746193, + 0.07543516159057617, + 0.006036876700818539, + -0.0781182199716568, + -0.006997875403612852, + 0.02141285315155983, + -0.026985354721546173, + 0.04068442061543465, + -0.026495181024074554, + -0.08673495799303055, + 0.0327642448246479, + 0.0167820006608963, + -0.02107747085392475, + -0.009493891149759293, + 0.0062368158251047134, + 0.008707033470273018, + -0.039781469851732254, + 0.04308369383215904, + 0.017039988189935684, + 0.05015251412987709, + 0.033847786486148834, + -0.11547461897134781, + -0.03299643471837044, + 0.04527657479047775, + 0.08167842775583267, + 0.07368085533380508, + 0.040065255016088486, + 0.03454434871673584, + -0.022109415382146835, + -0.0797177329659462, + -0.05716973915696144, + -0.014963198453187943, + -0.04406404122710228, + 0.0031135708559304476, + -0.01344108022749424, + -0.005566051695495844, + -0.05097806826233864, + 0.023192957043647766, + 0.00554670300334692, + -0.0641353651881218, + -0.07796342670917511, + 0.008352302946150303, + -0.03965247794985771, + 0.010764473117887974, + 0.2668609023094177, + 0.02732073701918125, + -0.004256771877408028, + -0.006543174386024475, + -0.027140146121382713, + 0.012970255687832832, + 0.0041084298864007, + -0.027294937521219254, + -0.016885194927453995, + 0.00951969064772129, + -0.0906047448515892, + 0.03748539090156555, + 0.04623112455010414, + -0.01351847592741251, + 0.04912056773900986, + 0.0039568631909787655, + 0.01622733101248741, + 0.02342514507472515, + 0.04313528910279274, + 0.0375111922621727, + -0.055260639637708664, + -0.04176796227693558, + -0.04563775658607483, + 0.039910461753606796, + 0.01959405094385147, + -0.02843007817864418, + -0.014086045324802399, + -0.013570073060691357, + -0.0037827224005013704, + -0.00698497612029314, + -0.09762196987867355, + -0.02101297490298748, + 0.03219667449593544, + -0.02685636095702648, + 0.1045875996351242, + 0.02481827139854431, + -0.039317093789577484, + -0.05887244641780853, + 0.020277714356780052, + 0.018084831535816193, + 0.047082480043172836, + -0.09937627613544464, + 0.021438652649521828, + 0.011099855415523052, + -0.024766674265265465, + -0.042903102934360504, + 0.05386751517653465, + 0.06062675267457962, + 0.012899309396743774, + -0.025592230260372162, + -0.02752712555229664, + 0.0006199730560183525, + -0.14715531468391418, + 0.06914030015468597, + -0.028868654742836952, + -0.08482585847377777, + -0.02610820159316063, + -0.037279002368450165, + 0.09689961373806, + -0.018213825300335884, + -0.010358145460486412, + 0.06155550479888916, + 0.005301616154611111, + 0.042129144072532654, + 0.016214432194828987, + 0.04236133024096489, + -0.031629107892513275, + -0.007642840500921011, + -0.02400561422109604, + 0.036014869809150696, + -0.03002959117293358, + 0.02311556227505207, + -0.028688063845038414, + -0.0546414740383625, + 0.02752712555229664, + 0.03606646880507469, + 0.05386751517653465, + -0.0469018891453743, + 0.10107898712158203, + 0.03565369173884392, + 0.08549661934375763, + -0.05892404541373253, + 0.1061871126294136, + -0.08828287571668625, + -0.06232946366071701, + 0.04230973497033119, + 0.06129751726984978, + 0.023837924003601074, + -0.051648832857608795, + -0.041019804775714874, + 0.020742088556289673, + 0.005437058862298727, + 0.003602132201194763, + 0.0413551852107048, + -0.10226572304964066, + 0.06083314120769501, + 0.0023605735041201115, + 0.05644737556576729, + 0.02085818350315094, + -0.06263904273509979, + -0.014047347940504551, + 0.011544881388545036, + -0.00899081863462925, + 0.02348964288830757, + 0.005537028424441814, + -0.01461491733789444, + 0.011209500022232533, + 0.007475149817764759, + 0.003392518265172839, + -0.002489566570147872, + -0.03204188495874405, + -0.06676682084798813, + 0.01999392919242382, + 0.054435085505247116, + -0.012731618247926235, + 0.03426056355237961, + -0.0026508080773055553, + -0.06176189333200455, + 0.02227710746228695, + 0.06764397770166397, + 0.008023370057344437, + -0.005933682434260845, + -0.00047969305887818336, + 0.050075117498636246, + 0.032428864389657974, + -0.027088548988103867, + -0.06815995275974274, + 0.01039684284478426, + -0.030674558132886887, + 0.021980423480272293, + 0.026301691308617592, + 0.014098945073783398, + -0.011177251115441322, + -0.014318233355879784, + 0.02966841123998165, + 0.007242962252348661, + -0.002046152949333191, + -0.0719781443476677, + 0.01946505717933178, + -0.041793763637542725, + -0.0640837699174881, + 0.030597161501646042, + 0.010358145460486412, + -0.025295544415712357, + -0.008223309181630611, + 0.06537369638681412, + 0.05262918025255203, + 0.019207071512937546, + 0.013073449954390526, + 0.011099855415523052, + 0.05536383390426636, + -0.018716897815465927, + -0.009397146292030811, + 0.01671750470995903, + 0.005262918304651976, + -0.020509902387857437, + 0.0007417103042826056, + 0.020987175405025482, + 0.024392593652009964, + 0.021025873720645905, + -0.01968434639275074, + -0.00349248806014657, + -0.016988391056656837, + 0.04997192323207855, + -0.008971469476819038, + 0.005443508271127939, + 0.0046566505916416645, + 0.006223916541785002, + -0.015646861866116524, + 0.04767584800720215, + 0.07424842566251755, + 0.035860080271959305, + 0.053196750581264496, + -0.010441990569233894, + -0.05686015635728836, + 0.010577433742582798, + -0.03810456022620201, + 0.020664693787693977, + 0.046798694878816605, + -0.06361939013004303, + -0.045869942754507065, + 0.028997646644711494, + -0.017813945189118385, + 0.022934971377253532, + -0.012596175074577332, + -0.028662264347076416, + 0.025656726211309433, + 0.02196752279996872, + -0.032738447189331055, + 0.05531223863363266, + -0.08823127299547195, + 0.0013205667492002249, + 0.02521814964711666, + -0.04672129824757576, + 0.030210182070732117, + -0.08111085742712021, + 0.06052355840802193, + -0.035860080271959305, + 0.08255557715892792, + 0.008203960955142975, + 0.004608278162777424, + -0.0953516960144043, + -0.08322634547948837, + 0.010061461478471756, + 0.033383410423994064, + -0.0068043856881558895, + -0.0121124517172575, + -0.022238409146666527, + -0.03557629510760307, + 0.008726382628083229, + -0.04808862507343292, + -0.017104484140872955, + 0.029462022706866264, + -0.025759920477867126, + -0.040555428713560104, + -0.03645344823598862, + 0.014318233355879784, + -0.005875635426491499, + 0.006388382986187935, + -0.03485393524169922, + -0.006991425529122353, + -0.00026624981546774507, + -0.06392897665500641, + 0.02357993647456169, + 0.03794976696372032, + 0.0033344714902341366, + -0.07589953392744064, + 0.058820851147174835, + -0.015234083868563175, + 0.05283556878566742, + 0.001162550295703113, + -0.033976782113313675, + -0.034776538610458374, + 0.010390393435955048, + 0.05371272191405296, + -0.011486834846436977, + -0.12703239917755127, + 0.01724637672305107, + -0.006772137247025967, + 0.04045223444700241, + -0.008971469476819038, + 0.015479170717298985, + 0.06439334899187088, + -0.07321647554636002, + -0.015814553946256638, + -0.02685636095702648, + -0.04205174744129181, + -0.03748539090156555, + 0.15603004395961761, + 0.03129372373223305, + 0.014821305871009827, + 0.0019236095249652863, + -0.053506333380937576, + -0.010893466882407665, + 0.00237186043523252, + -0.01940056122839451, + -0.03627285733819008, + 0.03472493961453438, + -0.050849076360464096, + -0.011390089988708496, + 0.010048561729490757, + -0.01977464184165001, + 0.022625388577580452, + -0.06429015845060349, + -0.017388269305229187, + -0.0577889047563076, + 0.07553835213184357, + 0.0383109487593174, + 0.011086956597864628, + -0.054486680775880814, + 0.027269139885902405, + -0.057582516223192215, + -0.06516730785369873, + -0.06341300159692764, + 0.01007436029613018, + 0.022509293630719185, + -0.023321950808167458, + 0.023089762777090073, + -0.02546323649585247, + 0.015092192217707634, + -0.03942028805613518, + 0.020716290920972824, + -0.04886258393526077, + 0.0530935563147068, + 0.03567948937416077, + -0.02920403517782688, + -0.013582972809672356, + 0.06970787048339844, + -0.06217467039823532, + -0.04963654279708862, + 0.003576333401724696, + 0.07476439327001572, + 0.07930495589971542, + 0.00138667575083673, + -0.022999469190835953, + 0.045844145119190216, + -0.04326428472995758, + 0.07574474066495895, + 0.003831094829365611, + 0.040245845913887024, + -0.026443583890795708, + 0.019581152126193047, + 0.011041808873414993, + -0.004540557041764259, + 0.03480233624577522, + 0.06155550479888916, + -0.003902041120454669, + 0.04620532691478729, + 0.04715987294912338, + -0.011893163435161114, + 0.07048182189464569, + 0.005398361012339592, + 0.01335078477859497, + -0.021774033084511757, + 0.01367326732724905, + -0.10345245897769928, + 0.05732452869415283, + -0.03371879458427429, + -0.056963350623846054, + 0.08513543754816055, + 0.020161619409918785, + -0.053351543843746185, + 0.035885877907276154, + 0.005124250426888466, + 0.04316108673810959, + 0.004537331871688366, + -0.008713483810424805, + 0.08817967772483826, + -0.020122922956943512, + -0.07522877305746078, + -0.011564230546355247, + -0.02283177711069584, + -0.02468927763402462, + 0.015956444665789604, + -0.04001365602016449, + -0.0010440378682687879, + -0.005627323407679796, + -0.0335640013217926, + 0.029952196404337883, + 0.0014769708504900336, + 0.07301008701324463, + 0.030339175835251808, + -0.05270657688379288, + -0.04406404122710228, + 0.013711965642869473, + -0.04207754507660866, + -0.03423476591706276, + -0.06000758707523346, + 0.004566355608403683, + -0.005691820289939642, + -0.0312421265989542, + 0.0367630310356617, + -0.07362926006317139, + 0.03699521720409393, + -0.048037026077508926, + -0.014008649624884129, + 0.009455193765461445, + -0.03717580810189247, + -0.019826238974928856, + 0.022509293630719185, + 0.043057892471551895, + 0.05608619749546051, + -0.03407997637987137, + 0.04986872896552086, + 0.11227558553218842, + -0.037562787532806396, + -0.01689809560775757, + -0.010003414005041122, + -0.03880112245678902, + 0.033847786486148834, + 0.005853061564266682, + 0.03095834143459797, + -0.012331739999353886, + 0.006675392389297485, + -0.03702101856470108, + -0.04968813806772232, + -0.04419303312897682, + -0.013505577109754086, + 0.058975640684366226, + 0.00317161763086915, + 0.05041050165891647, + -0.018961984664201736, + 0.058046892285346985, + 0.0020993626676499844, + -0.011725472286343575, + -0.019090978428721428, + 0.09731239080429077, + -0.019387662410736084, + -0.047572653740644455, + -0.03322862088680267, + 0.009300402365624905, + -0.02517945133149624, + 0.003943963907659054, + -0.058666057884693146, + 0.010171105153858662, + -0.06645724177360535, + 0.023167159408330917, + 0.024482889100909233, + -0.08028530329465866, + -0.007101069670170546, + 0.11753850430250168, + 0.05141664668917656, + 0.0028636467177420855, + -0.06320661306381226, + 0.06970787048339844, + 0.015530767850577831, + -0.04267091304063797, + -0.03782077506184578, + 0.011770620010793209, + -0.07048182189464569, + 0.011402989737689495, + 0.013234691694378853, + -0.014731011353433132, + -0.0414067842066288, + -0.012009256519377232, + -0.059904392808675766, + 0.004688899032771587, + -0.042903102934360504, + -0.009926018305122852, + 0.011777069419622421, + -0.028017299249768257, + 0.02966841123998165, + 0.021270960569381714, + -0.024947263300418854, + 0.01616283506155014, + -0.003908490762114525, + 0.010203353129327297, + 0.03560209274291992, + 0.009119811467826366, + 0.08162682503461838, + -0.009971166029572487, + 0.0609363354742527, + 0.013634569942951202, + 0.016524014994502068, + -0.018162228167057037, + -0.10102739185094833, + -0.027862507849931717, + -0.0625874474644661, + -0.019426358863711357, + -0.005569276865571737, + -0.0766734927892685, + -0.02719174325466156, + 0.0203035119920969, + 0.0844646766781807, + 0.043032094836235046, + 0.013189543969929218, + -0.042722512036561966, + 0.012215645983815193, + 0.016059640794992447, + 0.004501858726143837, + 0.032557856291532516, + -0.025127854198217392, + -0.08405189961194992, + -0.0035344106145203114, + 0.024199103936553 + ] + }, + { + "id": "367bcbb1-8a6b-4ba6-a238-37763ebc00f2", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "bondaustin", + "reviewDate": "2022-02-27T19:07:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fddc39b5-c0a5-4a21-b08f-2e163ed3cb80", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "tracy87", + "reviewDate": "2021-05-12T17:03:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6413d69b-7e8e-47f4-8b62-8d9f0720d294", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "samuel47", + "reviewDate": "2021-10-17T10:42:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e15a8926-3cec-41ab-8746-4e55fae74d80", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "uwalker", + "reviewDate": "2022-08-01T11:27:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e03a2226-6bb9-456d-afd5-4e1bc740084d", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "hhartman", + "reviewDate": "2022-03-23T13:17:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bdd51816-7629-486a-896e-5dad22e9fabf", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "davidgates", + "reviewDate": "2021-06-22T22:40:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e52db71b-1b43-4d8a-9f89-76391371f27d", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "jamesrobertson", + "reviewDate": "2022-03-08T19:47:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "657d7183-948d-47f2-bc12-769db7061ac2", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "ryanwilliams", + "reviewDate": "2021-07-26T21:32:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e92d526e-6ce3-4685-ac98-dffcc3b389e3", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "vstephens", + "reviewDate": "2022-05-25T16:09:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "22bbcca3-0687-43f3-9364-665b82322b34", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "robertsmith", + "reviewDate": "2022-10-05T06:10:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "153bf785-090b-4f0d-ad5b-491c04b36c33", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "dchapman", + "reviewDate": "2022-01-28T11:04:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a28bbc68-a6d2-4da9-b59b-2188ffe94564", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "matthew44", + "reviewDate": "2021-10-31T08:58:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fc086ffd-5e1b-4c7c-90c5-842da4a97671", + "productId": "3b702cb6-8eb7-4ffa-9477-0611a533b941", + "category": "Other", + "docType": "customerRating", + "userName": "clintonkelly", + "reviewDate": "2021-12-03T09:01:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker + (Silver)", + "description": "This Amazing Speaker + (Silver) is a unique type of speaker that is very well known, and has several advantages:\n\nSpeaker 1: The speaker is very efficient, and only takes two uses of the system.\n\nSpeaker 2: The speaker is very quiet and offers excellent sound quality", + "countryOfOrigin": "South Africa", + "rareItem": true, + "firstAvailable": "2019-10-28T13:37:40", + "price": 635.42, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-02-01T03:19:25", + "newPrice": 669.78 + }, + { + "priceDate": "2021-09-21T03:19:25", + "newPrice": 655.66 + }, + { + "priceDate": "2022-05-11T03:19:25", + "newPrice": 606.82 + }, + { + "priceDate": "2022-12-29T03:19:25", + "newPrice": 690.7 + }, + { + "priceDate": "2023-09-21T03:19:25", + "newPrice": 635.42 + } + ], + "descriptionVector": [ + 0.012248825281858444, + 0.02576889656484127, + -0.05087973549962044, + -0.09278597682714462, + -0.024378003552556038, + -0.038077544420957565, + -0.05073017627000809, + 0.011059836484491825, + -0.021730821579694748, + 0.1051694005727768, + -0.03598373010754585, + 0.046841662377119064, + 0.016421502456068993, + -0.020728781819343567, + -0.04555546119809151, + 0.029986441135406494, + 0.00022725852613803, + 0.03371044248342514, + 0.04456837475299835, + -0.008734204806387424, + -0.010012928396463394, + -0.06903611123561859, + -0.005503745749592781, + -0.039872244000434875, + -0.06341271847486496, + -0.030928658321499825, + -0.034308675676584244, + 0.009489474818110466, + -0.05267443507909775, + -0.01464923657476902, + 0.014918440952897072, + 0.016630884259939194, + -0.04666219279170036, + 0.05680224299430847, + -0.0531231090426445, + -0.024213489145040512, + 0.05147796869277954, + -0.04053030163049698, + 0.01025222148746252, + 0.08578664809465408, + 0.011800150386989117, + 0.007242361083626747, + -0.018395671620965004, + -0.029806969687342644, + 0.041337914764881134, + 0.04097897559404373, + -0.0718478113412857, + 0.05512719228863716, + 0.005189673043787479, + -0.001804047031328082, + 0.026890583336353302, + -0.0012899404391646385, + -0.048606447875499725, + 0.03744940087199211, + -0.017991865053772926, + 0.0019666918087750673, + 0.017333807423710823, + 0.04402996599674225, + 0.03143715485930443, + -0.008158405311405659, + 0.025290310382843018, + -0.003955817315727472, + -0.039543215185403824, + 0.00471482565626502, + -0.059255000203847885, + -0.005159761756658554, + 0.041427649557590485, + 0.03957312926650047, + -0.007339573930948973, + -0.009519386105239391, + -0.03236441686749458, + 0.006434746086597443, + -0.014454809948801994, + 0.09380296617746353, + 0.0441197007894516, + 0.04944397509098053, + 0.07561668008565903, + 0.05608436465263367, + -0.0536615215241909, + 0.01862000860273838, + 0.025155706331133842, + 0.06706194579601288, + -0.03508637845516205, + -0.015254947356879711, + 0.04208570718765259, + -0.037748515605926514, + -0.010379346087574959, + -0.09715307503938675, + 0.08734205365180969, + 0.014522111974656582, + -0.023495610803365707, + 0.0038735601119697094, + 0.05064044147729874, + 0.01873965561389923, + -0.015307292342185974, + 0.023450741544365883, + -0.04740998148918152, + 0.046991221606731415, + -0.0891367495059967, + -0.012757323682308197, + 0.00982598029077053, + -0.07412109524011612, + -0.06688247621059418, + -0.0011048619635403156, + 0.012847058475017548, + 0.0718478113412857, + 0.03870568796992302, + -0.01133651938289404, + 0.024198533967137337, + -0.02029506303369999, + 0.04005171358585358, + -0.054020460695028305, + -0.005933725740760565, + -0.027743065729737282, + 0.1073230430483818, + -0.007919112220406532, + -0.024901457130908966, + -0.04205579683184624, + -0.02300206758081913, + -0.06069076061248779, + 0.008345353417098522, + 0.02232905477285385, + 0.0008426675922237337, + 0.04630324989557266, + -0.03323185443878174, + -0.04029100760817528, + 0.05973358824849129, + 0.04971317946910858, + -0.02065400220453739, + 0.027339259162545204, + -0.07621490955352783, + 0.013116263784468174, + -0.013475202955305576, + 0.014664191752672195, + 0.0026677462738007307, + 0.010394302196800709, + 0.014417421072721481, + 0.06514760106801987, + -0.07412109524011612, + 0.024542517960071564, + -0.06454936414957047, + 0.03024069033563137, + 0.023375963792204857, + 0.050490885972976685, + -0.04462819918990135, + -0.04199597239494324, + -0.06837806105613708, + 0.010955145582556725, + -0.00715636508539319, + 0.02044462040066719, + 0.022508524358272552, + -0.07681314647197723, + -0.03568461164832115, + -0.07513809204101562, + -0.003101465292274952, + 0.05159761756658554, + -0.059135355055332184, + -0.003877299139276147, + -0.00614684633910656, + 0.0885385200381279, + -0.029163869097828865, + -0.02859554812312126, + -0.05449904501438141, + 0.028027227148413658, + -0.0047110868617892265, + 0.05641339346766472, + 0.09517890959978104, + 0.0880599319934845, + -0.07250586897134781, + 0.027070052921772003, + -0.012024488300085068, + -0.017692748457193375, + 0.05841747298836708, + -0.020250193774700165, + 0.08129989355802536, + -0.0004755486734211445, + 0.06640388816595078, + 0.011097226291894913, + -0.06317342817783356, + -0.04986273869872093, + -0.03885524719953537, + 0.11408307403326035, + -0.009526863694190979, + 0.03170635923743248, + 0.05087973549962044, + 0.09081180393695831, + 0.03200547769665718, + -0.043102703988552094, + 0.020728781819343567, + 0.06263501942157745, + -0.01923319883644581, + -0.011231828480958939, + 0.023106757551431656, + -0.030524849891662598, + -0.06365201622247696, + 0.029014311730861664, + 0.01709451526403427, + 0.003869821084663272, + 0.02808704972267151, + -0.016286900267004967, + -0.016137341037392616, + 0.036043550819158554, + 0.10235770791769028, + -0.006483352743089199, + -0.08327406644821167, + -0.04803812876343727, + 0.05898579582571983, + 0.09751201421022415, + 0.04005171358585358, + 0.006905854679644108, + 0.0351761132478714, + -0.019083639606833458, + -0.04432908073067665, + 0.0054738339968025684, + 0.06664317846298218, + -0.009848414920270443, + -0.036462314426898956, + 0.034308675676584244, + 0.005526179447770119, + -0.0020582962315529585, + 0.02197011560201645, + -0.03508637845516205, + 0.05904562026262283, + -0.0038156062364578247, + -0.06263501942157745, + -0.03365061804652214, + -0.010970101691782475, + -0.034518055617809296, + 0.05315302312374115, + -0.010386824607849121, + -0.04824750870466232, + 0.09266632795333862, + 0.08626522868871689, + 0.05611427500844002, + -0.026277394965291023, + 0.009930671192705631, + 0.050131943076848984, + 0.0017339416081085801, + -0.028431033715605736, + 0.05958402901887894, + -0.04797830432653427, + 0.025245442986488342, + -0.04752963036298752, + -0.026202615350484848, + 0.011762760579586029, + -0.05979341268539429, + 0.059135355055332184, + -0.02532022073864937, + -0.04020127281546593, + -0.045465726405382156, + -0.09733254462480545, + 0.009250180795788765, + -0.04414961114525795, + 0.00868933741003275, + -0.007664863020181656, + 0.03858604282140732, + 0.1228771060705185, + -0.10409258306026459, + 0.019307976588606834, + -0.07699261605739594, + -0.045405901968479156, + -0.0527641698718071, + 0.020833471789956093, + 0.06897629052400589, + -0.1251503974199295, + -0.0436411127448082, + 0.0067226458340883255, + -0.041427649557590485, + 0.05979341268539429, + -0.016227075830101967, + 0.009938149712979794, + -0.0018844346050173044, + -0.013220954686403275, + -0.02491641417145729, + 0.03945348039269447, + -0.009653988294303417, + -0.06580565124750137, + 0.01049899309873581, + 0.0031425938941538334, + -0.02985183708369732, + 0.09960582852363586, + 0.05129849910736084, + 0.052046291530132294, + -0.00944460742175579, + 0.020100636407732964, + -0.04286340996623039, + 0.013048962689936161, + 0.05778932943940163, + -0.0706513449549675, + -0.04094906523823738, + 0.005103677045553923, + -0.06933522969484329, + 0.017842305824160576, + 0.08447053283452988, + 0.06353236734867096, + 0.02211967296898365, + 0.04208570718765259, + -0.06305377930402756, + -0.018365759402513504, + -0.030614584684371948, + 0.003516489639878273, + 0.02638208493590355, + -0.039961978793144226, + -0.0705915242433548, + -0.017902128398418427, + 0.0437607616186142, + -0.05159761756658554, + 0.03903471678495407, + -0.07316392660140991, + 0.0013787406496703625, + 0.09799060225486755, + 0.01867983303964138, + -0.016989823430776596, + -0.0358939953148365, + 0.026068013161420822, + -0.04567510634660721, + -0.05620400980114937, + -0.011134616099298, + 0.06939505785703659, + 0.02532022073864937, + -0.05838756263256073, + -0.0354154072701931, + -0.06466901302337646, + 0.029163869097828865, + -0.059344734996557236, + -0.029866794124245644, + 0.050610531121492386, + -0.04648272320628166, + 0.05090964585542679, + 0.014679147861897945, + 0.03568461164832115, + -0.09607625752687454, + 0.04740998148918152, + 0.008053714409470558, + 0.050760090351104736, + -0.06652353703975677, + -0.03855613246560097, + 0.007500349078327417, + -0.008435088209807873, + -0.009691378101706505, + 0.03305238485336304, + -0.04088924080133438, + -0.0019078031182289124, + 0.01472401525825262, + 0.025365088135004044, + -0.0527641698718071, + -0.0002890681498683989, + -0.021835513412952423, + 0.023585345596075058, + -0.01369206327944994, + 0.0017984386067837477, + 0.041876327246427536, + 0.09009392559528351, + -0.027055097743868828, + 0.04253438115119934, + -0.04944397509098053, + -0.025873586535453796, + -0.060780495405197144, + 0.11264731734991074, + -0.03320194408297539, + 0.017513277009129524, + 0.03356088325381279, + -0.03403947129845619, + 0.01941266842186451, + 0.006786208134144545, + 0.0110000129789114, + 0.00024069540086202323, + 0.04229509085416794, + -0.039752598851919174, + -0.034727439284324646, + -0.05108911916613579, + 0.0021985070779919624, + -0.006550653837621212, + -0.015023131854832172, + -0.03685116767883301, + -0.030524849891662598, + 0.08279547840356827, + -0.026232527568936348, + 0.04085933044552803, + 0.053631607443094254, + 0.03173627331852913, + 0.0438205823302269, + 0.07298445701599121, + -0.012286215089261532, + 0.05171726271510124, + 0.019891254603862762, + -0.014409942552447319, + 0.06466901302337646, + -0.02123728021979332, + 0.00534670939669013, + 0.0026415735483169556, + 0.017154337838292122, + 0.039543215185403824, + 0.009953104890882969, + 0.1054086908698082, + -0.005395316053181887, + 0.00418389355763793, + -0.034757349640131, + -0.025051016360521317, + 0.025140751153230667, + -0.024407915771007538, + 0.07878731936216354, + -0.03371044248342514, + -0.02309180237352848, + -0.005507484544068575, + -0.024168621748685837, + -0.07286480814218521, + 0.02808704972267151, + -0.04549563676118851, + -0.01679539866745472, + -0.026008188724517822, + -0.06137872859835625, + -0.03403947129845619, + -0.06628423929214478, + 0.005204629153013229, + 0.059135355055332184, + 0.04295314475893974, + 0.04758945479989052, + 0.05458878353238106, + -0.021670999005436897, + 0.029612544924020767, + 0.034547969698905945, + 0.0446581095457077, + 0.03341132402420044, + -0.024602340534329414, + 0.009212791919708252, + 0.023540478199720383, + -0.03592390567064285, + -0.005698171444237232, + 0.012607765384018421, + -0.06568600982427597, + -0.010169965215027332, + 0.0110000129789114, + -0.028610503301024437, + -0.03741948679089546, + -0.0437009371817112, + -0.039782509207725525, + 0.041397739201784134, + -0.034547969698905945, + -0.02847590111196041, + -0.04121826961636543, + -0.0180068202316761, + 0.030479982495307922, + -0.02300206758081913, + -0.09464049339294434, + -0.09075198322534561, + 0.012136656790971756, + 0.023749858140945435, + 0.01025222148746252, + 0.00514106685295701, + 0.009362350217998028, + 0.005731821991503239, + -0.019696829840540886, + 0.052465055137872696, + 0.011822584085166454, + 0.013579893857240677, + 0.0218803808093071, + 0.045226432383060455, + -0.03344123810529709, + 0.006023460999131203, + -0.003895993810147047, + 0.05799870938062668, + 0.024871546775102615, + 0.005447661504149437, + -0.012787234969437122, + 0.03885524719953537, + -0.03930392116308212, + 0.005204629153013229, + 0.006711428984999657, + 0.028670327737927437, + -0.01652619242668152, + -0.05375125631690025, + 0.015120345167815685, + -0.0355948768556118, + -0.09135021269321442, + -0.050610531121492386, + 0.003955817315727472, + -0.02923864871263504, + 0.05315302312374115, + 0.03024069033563137, + -0.09051268547773361, + -0.000923055165912956, + -0.03721010684967041, + -0.011186961084604263, + 0.01133651938289404, + -0.006965678185224533, + 0.045375991612672806, + -0.017752571031451225, + 0.01600273884832859, + 0.019966034218668938, + 0.016810353845357895, + 0.10086212307214737, + 0.048905566334724426, + 0.026950405910611153, + 0.009601643308997154, + -0.05874650180339813, + -0.015524152666330338, + -0.03365061804652214, + 0.044927313923835754, + 0.11312590539455414, + -0.01788717322051525, + -0.06263501942157745, + -0.007814421318471432, + 0.009908237494528294, + -0.018919125199317932, + 0.011822584085166454, + -0.02388446219265461, + -0.041517384350299835, + -0.08094095438718796, + 0.06335289776325226, + -0.04642289876937866, + 0.015404505655169487 + ] + }, + { + "id": "889bc0f8-b2b5-4c34-a575-daef82a1a589", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "pricejoseph", + "reviewDate": "2022-08-02T10:26:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "65186ec3-efc5-47bc-9cfa-2bca99458808", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "jasontorres", + "reviewDate": "2022-12-23T14:08:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "902a3cf8-b15d-42e8-bfac-84d58174c51a", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "troy54", + "reviewDate": "2021-03-20T02:42:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f9f9b680-b84f-448e-bbff-78f0ce65de2d", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "jamesrobinson", + "reviewDate": "2022-04-27T18:11:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8018a560-5a04-4518-8b40-e931b38dc1db", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "sblake", + "reviewDate": "2022-12-18T11:11:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "598ca5aa-a3d7-4423-8328-cb4ffe5ae45f", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "travis83", + "reviewDate": "2022-07-05T20:00:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c72f50aa-9faf-434c-be30-5c056aa90bef", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "josephbrown", + "reviewDate": "2021-02-13T17:50:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "35927415-84de-4b9c-9189-a08fe2cbab7f", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "john84", + "reviewDate": "2021-02-09T20:55:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "030cf057-400d-4448-ade4-72f11aad6d9b", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "hollanddalton", + "reviewDate": "2021-06-16T16:18:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d6bdbf09-3233-45b9-84ca-b5c976040825", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "mitchellsara", + "reviewDate": "2021-03-15T02:00:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "54822329-08bf-461d-bd7e-6277674f627f", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "tamaranorris", + "reviewDate": "2022-12-30T13:47:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9f9abc1e-5564-47d9-a146-c03d93843b0a", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "bonniemullins", + "reviewDate": "2021-06-10T03:49:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e3ccb5c6-bbff-475f-a4e7-841d3f5cdb58", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "vaughnerik", + "reviewDate": "2021-09-11T13:24:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "92018486-44e2-4933-9b21-fec7890513a3", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "mannphillip", + "reviewDate": "2021-12-13T07:47:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3f723959-17aa-414d-9641-52a6e5c80a58", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "sandra86", + "reviewDate": "2021-02-23T18:32:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8a0bcfe0-304f-4eea-a220-57a5306410f8", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "williamsandrew", + "reviewDate": "2021-06-12T14:04:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a086c141-6bf6-4feb-a710-8a50d1efe2be", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "ckelley", + "reviewDate": "2022-10-02T18:09:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b665e2ba-c1fd-48e1-b462-d553d8ecf244", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "cheryl90", + "reviewDate": "2021-12-27T15:02:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "48214dd8-d87c-45fe-981b-58a9c07fcd9d", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "danielscott", + "reviewDate": "2021-02-12T19:10:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0f7d801f-e938-4a87-b722-5593e430f734", + "productId": "d3b4c408-f091-4d8e-9067-e94ec7fabffc", + "category": "Media", + "docType": "customerRating", + "userName": "kfernandez", + "reviewDate": "2021-02-01T03:19:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Micro (Red)", + "description": "This Awesome Speaker Micro (Red) is rated 4.6 out of 5 by 697.\n\nRated 5 out of 5 by Michael from Fantastic sound quality this micro has a nice acoustic quality that I just wish someone would buy it that cheaper. However, it doesn't have the bass to go with it's sound. I think I may be the only one who would buy this product.\n\nRated 5 out of 5 by Tom from I liked this Micro The sound was", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-10-01T20:59:42", + "price": 635.95, + "stock": 66, + "priceHistory": [ + { + "priceDate": "2021-03-13T00:16:43", + "newPrice": 599.87 + }, + { + "priceDate": "2022-10-03T00:16:43", + "newPrice": 618.77 + }, + { + "priceDate": "2024-09-10T00:16:43", + "newPrice": 635.95 + } + ], + "descriptionVector": [ + -0.016760213300585747, + 0.00560269970446825, + -0.034201476722955704, + 0.044310808181762695, + -0.05116387456655502, + 0.012865458615124226, + 0.015440678223967552, + 0.011631055735051632, + 0.004966875538229942, + 0.08436505496501923, + -0.03177523612976074, + -0.03000876121222973, + 0.004738085437566042, + -0.02956182323396206, + -0.0026430590078234673, + -0.00410492205992341, + -0.009619830176234245, + -0.046949878334999084, + -0.028242288157343864, + 0.11075574159622192, + 0.026050159707665443, + -0.06099653244018555, + -0.022197971120476723, + 0.001935405540280044, + 0.010008241049945354, + 0.007182948291301727, + -0.025071149691939354, + 0.05571839585900307, + -0.01127988938242197, + -0.0353507474064827, + 0.012056712061166763, + 0.0353507474064827, + -0.0640612542629242, + 0.030817508697509766, + 0.039500895887613297, + 0.02828485332429409, + 0.03573383763432503, + -0.054952215403318405, + 0.050567954778671265, + 0.038734715431928635, + 0.0020897057838737965, + 0.055931225419044495, + 0.06010265648365021, + -0.09355922788381577, + 0.004171430598944426, + 0.06997787952423096, + -0.030753660947084427, + 0.038734715431928635, + 0.0320306271314621, + -0.005485644098371267, + 0.019941993057727814, + 0.06819012016057968, + -0.08040645718574524, + -0.006219901144504547, + 0.03213704377412796, + 0.0032615906093269587, + -0.013248548842966557, + 0.024092139676213264, + 0.040160663425922394, + -0.11339481174945831, + 0.057676415890455246, + -0.0015882296720519662, + -0.031711384654045105, + -0.012258898466825485, + -0.04720527306199074, + 0.021591410040855408, + -0.007922525517642498, + 0.02745482511818409, + 0.013354962691664696, + 0.050567954778671265, + 0.04903559386730194, + 0.02146371267735958, + 0.0037697176449000835, + 0.02063368447124958, + 0.09126068651676178, + -0.022283101454377174, + 0.06997787952423096, + 0.041905853897333145, + -0.01331239752471447, + 0.02632683515548706, + 0.024688059464097023, + 0.013546508736908436, + 0.008683386258780956, + 0.014046654105186462, + 0.042735882103443146, + -0.014844759367406368, + -0.03445686772465706, + -0.0992630273103714, + -0.023347241804003716, + 0.05401577055454254, + -0.041224803775548935, + 0.06316737830638885, + 0.030753660947084427, + 0.030115175992250443, + 0.06516796350479126, + -0.0660618394613266, + -0.018069105222821236, + 0.04275716468691826, + -0.046651918441057205, + -0.00458910595625639, + 0.02043149806559086, + -0.06018778681755066, + -0.025603219866752625, + -0.026582229882478714, + -0.0169304758310318, + 0.03349914401769638, + -0.004812575411051512, + -0.007800149731338024, + -0.009210135787725449, + -0.042969994246959686, + 0.05009973421692848, + 0.0074064177460968494, + -0.022070273756980896, + -0.06840295344591141, + 0.03650001809000969, + 0.024028291925787926, + 0.007246796507388353, + 0.02131473459303379, + -0.0677219033241272, + -0.04013938084244728, + -0.00044461118523031473, + -0.0010960646905004978, + 0.0014046654105186462, + 0.009768810123205185, + 0.06555105745792389, + -0.013067645020782948, + -0.01135437935590744, + 0.02707173489034176, + 0.023113131523132324, + 0.0068104988895356655, + -0.0479714535176754, + 0.11075574159622192, + 0.009790092706680298, + -0.00423261895775795, + -0.022836454212665558, + 0.0481417141854763, + 0.047035008668899536, + 0.027561238035559654, + 0.015568375587463379, + -0.012897382490336895, + 0.0421612448990345, + 0.07440470159053802, + 0.035180483013391495, + 0.03960730880498886, + -0.006443370599299669, + 0.01829257421195507, + -0.10088051855564117, + 0.04443850740790367, + 0.05107874423265457, + -0.006140090525150299, + -0.0019367357017472386, + -0.12752659618854523, + -0.001669370336458087, + -0.03733005002140999, + 0.020080331712961197, + 0.04088427871465683, + -0.06648749858140945, + 0.0010322162415832281, + -0.08019362390041351, + 0.06819012016057968, + -0.00884832814335823, + -0.0026084743440151215, + 0.005570775363594294, + -0.03679797798395157, + 0.011013854295015335, + 0.07815048098564148, + 0.013110211119055748, + 0.03724491596221924, + -0.08972832560539246, + 0.050567954778671265, + 0.01865438185632229, + -0.019878143444657326, + -0.014429745264351368, + -0.013716771267354488, + 0.012769686058163643, + -0.016196217387914658, + 0.028753075748682022, + -0.02600759267807007, + -0.05920877680182457, + -0.02624170482158661, + 0.016260067000985146, + 0.05988982692360878, + -0.0027508032508194447, + 0.00283859483897686, + 0.03628719225525856, + 0.01384446769952774, + 0.05282393470406532, + 0.00180105771869421, + -0.012939948588609695, + 0.07031840085983276, + -0.026156572625041008, + -0.005376569926738739, + -0.02353878691792488, + -0.02413470670580864, + -0.022793889045715332, + -0.02324082888662815, + 0.009348474442958832, + 0.044991858303546906, + -0.021900011226534843, + 0.0049695358611643314, + -0.0514618344604969, + 0.01882464438676834, + 0.13357090950012207, + -0.017622167244553566, + -0.01080634631216526, + -0.061422187834978104, + 0.05210031941533089, + 0.07614989578723907, + 0.034286607056856155, + -0.0198355782777071, + 0.016313273459672928, + -0.047332968562841415, + -0.021719107404351234, + 0.02700788527727127, + 0.06682801991701126, + 0.05410090088844299, + 0.00022047660604584962, + -0.04269331693649292, + -0.029476691037416458, + -0.0511213093996048, + 0.05708049610257149, + -0.05052538961172104, + 0.07099945098161697, + 0.039394479244947433, + -0.11492717266082764, + -0.03483995795249939, + -0.0012164455838501453, + -0.051717229187488556, + 0.07389391213655472, + 0.015249133110046387, + -0.04231022670865059, + 0.001912792562507093, + 0.006102845538407564, + 0.005975148640573025, + -0.028753075748682022, + 0.028710510581731796, + -0.023666484281420708, + 0.0034371737856417894, + -0.06065600737929344, + 0.09807118773460388, + -0.011045778170228004, + 0.07393647730350494, + -0.06435921788215637, + -0.002577880397439003, + 0.026475815102458, + -0.07334056496620178, + 0.0630822479724884, + -0.05099361389875412, + -0.15212953090667725, + 0.012716478668153286, + -0.11467178165912628, + -0.03192421421408653, + 0.007448983378708363, + 0.061975542455911636, + -0.020889077335596085, + 0.0446513332426548, + 0.11194758117198944, + -0.06708341836929321, + -0.004879083950072527, + -0.08389683812856674, + 0.016675081104040146, + -0.013620997779071331, + -0.010503066703677177, + 0.031094184145331383, + -0.10683970153331757, + 0.024411382153630257, + 0.0863230749964714, + -0.0390113890171051, + -0.018760796636343002, + 0.022432081401348114, + -0.05597379058599472, + 0.029838498681783676, + 0.025539372116327286, + 0.007480907719582319, + -0.07346826046705246, + 0.013812543824315071, + -0.020686890929937363, + 0.043927717953920364, + -0.01960146799683571, + 0.03309476748108864, + 0.1191837340593338, + 0.054569125175476074, + 0.07397904992103577, + -0.00727872084826231, + 0.03690439090132713, + -0.038287773728370667, + 0.024347534403204918, + -0.030987771227955818, + -0.0597621314227581, + -0.05639944598078728, + -0.027050450444221497, + -0.034499432891607285, + 0.003266911255195737, + 0.01478091161698103, + -0.028412550687789917, + 0.0398414209485054, + 0.03162625432014465, + -0.027050450444221497, + 0.011524641886353493, + 0.037606723606586456, + 0.012365312315523624, + 0.051036179065704346, + -0.05022742971777916, + -0.09415514767169952, + 0.0032083834521472454, + -0.00022513221483677626, + -0.013397528789937496, + 0.09807118773460388, + -0.017803071066737175, + -0.050567954778671265, + 0.07002044469118118, + 0.006720046978443861, + -0.07040353119373322, + 0.005693151615560055, + 0.1392747014760971, + -0.04320410266518593, + -0.019292866811156273, + 0.021687183529138565, + 0.031179316341876984, + 0.03935191407799721, + 0.0006903611356392503, + -0.057676415890455246, + -0.030455701053142548, + 0.060826271772384644, + -0.01837770640850067, + 0.01084891241043806, + 0.027348410338163376, + -0.013078286312520504, + 0.027731500566005707, + 0.05435629561543465, + -0.00960386823862791, + -0.0365213006734848, + 0.048311978578567505, + 0.006028356030583382, + 0.0695522204041481, + -0.012865458615124226, + -0.008630179800093174, + 0.02617785520851612, + 0.08734465390443802, + 0.04294871166348457, + 0.022432081401348114, + -0.04171430692076683, + 0.003306816564872861, + -0.015696072950959206, + 0.04639652371406555, + -0.05746358633041382, + -0.0024900888092815876, + -0.027412258088588715, + 0.014546800404787064, + -0.0612519271671772, + 0.0011925024446099997, + -0.021591410040855408, + 0.018398988991975784, + 0.04013938084244728, + -0.009407001547515392, + 0.0290510356426239, + 0.025624502450227737, + 0.0046476335264742374, + 0.07410674542188644, + 0.010864874348044395, + -0.016643157228827477, + -0.018686307594180107, + 0.0281358752399683, + -0.010183824226260185, + -0.02745482511818409, + 0.019218377768993378, + -0.04473646730184555, + 0.04082042723894119, + -0.009673036634922028, + -0.009135645814239979, + -0.002569899195805192, + -0.0415014773607254, + -0.02911488339304924, + 0.05933647230267525, + -0.03515920042991638, + 0.037010807543992996, + -0.012461084872484207, + -0.021708466112613678, + -0.03207319602370262, + 0.04699244350194931, + 0.000836015387903899, + 0.06086883693933487, + 0.04520468786358833, + 0.005110534839332104, + 0.01965467445552349, + 0.05422860011458397, + 0.010370048694312572, + 0.024347534403204918, + 0.007848036475479603, + 0.03501022234559059, + -0.06172014772891998, + -0.030711093917489052, + -0.05473938584327698, + 0.06384842842817307, + 0.025603219866752625, + -0.0712122842669487, + -0.009747526608407497, + 0.0723615512251854, + -0.0013481329660862684, + -0.06167758256196976, + 0.00023161682474892586, + 0.06661519408226013, + 0.048311978578567505, + -0.017036888748407364, + -0.05137670412659645, + -0.0741918757557869, + 0.013067645020782948, + 0.027731500566005707, + -0.04546008259057999, + -0.08955806493759155, + 0.020112255588173866, + 0.007119100075215101, + -0.029583105817437172, + -0.07512831687927246, + 0.005900659132748842, + 0.05324959009885788, + 0.061805278062820435, + -0.02783791534602642, + 0.03422275930643082, + -0.007012685760855675, + 0.08649333566427231, + -0.016079163178801537, + 0.025283977389335632, + 0.0061666942201554775, + -0.03475482761859894, + 0.0411609522998333, + -0.010918081738054752, + -0.038053665310144424, + -0.007422379683703184, + -0.11841755360364914, + -0.06431665271520615, + -0.04767349362373352, + -0.027561238035559654, + -0.009837978519499302, + -0.004740745760500431, + 0.020654967054724693, + -0.05891081690788269, + 0.07219129055738449, + 0.0048684426583349705, + -0.003868150757625699, + 0.03275424242019653, + 0.005459040869027376, + -0.01628134958446026, + 0.04503442719578743, + -0.16319657862186432, + -0.03945833072066307, + -0.02419855445623398, + 0.025837330147624016, + 0.040075529366731644, + 0.006837102584540844, + 0.041075821965932846, + 0.029455408453941345, + -0.03896882385015488, + 0.021623333916068077, + 0.03317990154027939, + 0.013940240256488323, + -0.0012064692564308643, + 0.06793472915887833, + -0.05708049610257149, + 0.014908608049154282, + -0.09841170907020569, + 0.056229181587696075, + -0.013131493702530861, + 0.044608768075704575, + -0.01636647991836071, + -0.058187201619148254, + -0.05567583069205284, + -0.030604681000113487, + -0.023411091417074203, + -0.04367232695221901, + -0.012418519705533981, + -0.03935191407799721, + 0.00978477206081152, + -0.0041847326792776585, + -0.05712306126952171, + -0.003501022234559059, + 0.014738345518708229, + -0.015855692327022552, + 0.03928806632757187, + 0.06069857254624367, + -0.004799273796379566, + 0.004740745760500431, + -0.00799169484525919, + 0.07853356748819351, + 0.08385427296161652, + -0.011641697026789188, + -0.03426532447338104, + 0.012258898466825485, + 0.00023660498845856637, + -0.02028251811861992, + -0.007262758910655975, + 0.08811083436012268, + 0.022134121507406235, + -0.0612519271671772, + -0.0348612405359745, + 0.029668236151337624, + -0.0306259635835886, + 0.006294391117990017, + -0.02798689529299736, + -0.031051618978381157, + 0.04584317281842232, + -0.03860701620578766, + -0.0019659996032714844, + 0.041373781859874725, + -0.016589950770139694, + -0.005086591467261314, + -0.04011809453368187, + 0.02158076874911785, + -0.007757584098726511, + 0.03622334077954292, + 0.06495513767004013, + -0.026795057579874992 + ] + }, + { + "id": "d5e3beb2-75d2-4ffc-bb9a-e9b03712d347", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "lauriecolon", + "reviewDate": "2022-04-13T07:36:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "df330a1b-c8cb-4258-89d6-fdd923b7598c", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "watsonpatrick", + "reviewDate": "2022-10-03T16:33:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1ab66d12-6cd5-4c02-b153-b398cd84da1c", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "ingramshannon", + "reviewDate": "2021-03-13T00:16:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1ea7cc1a-28cc-4cf8-aaed-d757eabba802", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "meltonlatasha", + "reviewDate": "2021-07-22T11:22:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "729faae1-7bd0-4ca9-b648-e0bddd542567", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "tracykelley", + "reviewDate": "2021-06-12T20:29:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1cf130a7-91b1-40e7-bda3-8fe8e83d8c2e", + "productId": "7c120e2e-66c9-4bd2-bd93-cb12f172036a", + "category": "Media", + "docType": "customerRating", + "userName": "bennettkimberly", + "reviewDate": "2021-06-23T18:44:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1edbaa83-92ea-409e-8254-e54d3c367146", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "product", + "name": "Premium Filter Micro (Gold)", + "description": "This Premium Filter Micro (Gold) is rated 4.8 out of 5 by 46.\n\nRated 5 out of 5 by Anonymous from Amazing!! I have purchased the 6x64mm lens and was completely amazed with how fast and powerful it is. There were some minor changes but I had always wanted faster", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-02-09T05:15:30", + "price": 1022.35, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-05-09T03:19:36", + "newPrice": 1116.79 + }, + { + "priceDate": "2022-02-07T03:19:36", + "newPrice": 941.15 + }, + { + "priceDate": "2022-11-08T03:19:36", + "newPrice": 1082.29 + }, + { + "priceDate": "2024-02-03T03:19:36", + "newPrice": 1022.35 + } + ], + "descriptionVector": [ + 0.02330874837934971, + 0.03364260867238045, + -0.02330874837934971, + 0.03800369054079056, + -0.006988561246544123, + 0.01783708482980728, + -0.08142486959695816, + 0.04529021307826042, + 0.033588435500860214, + 0.08570468425750732, + 0.00792307872325182, + 0.01993636228144169, + -0.02294306829571724, + -0.06598502397537231, + 0.03031085431575775, + 0.032017361372709274, + -0.056233540177345276, + -0.005505523644387722, + -0.0037922426126897335, + 0.041118744760751724, + 0.023200398311018944, + -0.08261671662330627, + -0.06370967626571655, + -0.013198358938097954, + -0.0063079893589019775, + -0.005830572918057442, + -0.017186986282467842, + 0.02180539444088936, + -0.00035234843380749226, + -0.012399279512465, + 0.08911770582199097, + 0.04163340851664543, + 0.03992689773440361, + 0.07725340127944946, + -0.008261671289801598, + -0.010205196216702461, + 0.05103275179862976, + -0.022496124729514122, + -0.006836194545030594, + 0.07026483863592148, + -0.002353222109377384, + 0.003907364327460527, + -0.014505328610539436, + 0.005576628260314465, + -0.0293086189776659, + -0.058671411126852036, + -0.024622490629553795, + -0.038030777126550674, + 0.009419660083949566, + 0.0078892195597291, + 0.034157272428274155, + -0.0098936902359128, + -0.05525839328765869, + -0.022631563246250153, + 0.036893103271722794, + -0.03675766661763191, + -0.000154059860506095, + 0.19275428354740143, + 0.07893282175064087, + -0.06457647681236267, + 0.0374077633023262, + -0.0394122377038002, + 0.0157784391194582, + -0.022523213177919388, + -0.07812020182609558, + 0.0015668395208194852, + -0.07026483863592148, + -0.0025529919657856226, + 0.042825255542993546, + 0.049786727875471115, + -0.007902762852609158, + -0.011485077440738678, + -0.010435439646244049, + -0.04166049510240555, + 0.05203498527407646, + 0.04453176259994507, + 0.16989247500896454, + -0.026125842705368996, + -0.027155166491866112, + 0.05111401528120041, + 0.02343064174056053, + -0.007537082303315401, + -0.037597376853227615, + 0.017078636214137077, + 0.0526038222014904, + -0.011336096562445164, + 0.015168970450758934, + -0.11734282225370407, + -0.05639606714248657, + -0.03586377948522568, + -0.025638269260525703, + 0.07411125302314758, + -0.002908514579758048, + -0.07833690196275711, + -0.002842488931491971, + 0.04409836605191231, + -0.021019859239459038, + 0.02601749263703823, + -0.04501933604478836, + 0.05791296437382698, + -0.045127686113119125, + -0.06528075039386749, + 0.011166799813508987, + 0.05937568470835686, + 0.0006856510299257934, + 0.0011215896811336279, + -0.010435439646244049, + -0.05420198291540146, + 0.018107958137989044, + -0.07443630695343018, + -0.005708679556846619, + -0.06625589728355408, + -0.013990666717290878, + 0.02995871752500534, + 0.0038498034700751305, + 0.010550560429692268, + -0.010530245490372181, + 0.02659987285733223, + -0.01613057591021061, + -0.020667722448706627, + -0.004110520239919424, + 0.10249890387058258, + 0.03426562249660492, + -0.0424189418554306, + 0.035376206040382385, + 0.04098330810666084, + -0.03431979566812515, + -0.010367720387876034, + 0.06414307653903961, + -0.04380040243268013, + -0.04385457932949066, + 0.031123477965593338, + 0.01843300834298134, + -0.02464957721531391, + -0.059971608221530914, + 0.011667918413877487, + -0.007611572742462158, + 0.10444919764995575, + 0.007449048105627298, + 0.061325982213020325, + 0.0026427190750837326, + -0.05368732288479805, + 0.013130640611052513, + -0.014396978542208672, + 0.006765089929103851, + 0.013286393135786057, + -0.042689818888902664, + 0.018094414845108986, + -0.03369678556919098, + -0.037028539925813675, + 0.019096650183200836, + -0.1032031774520874, + -0.041606318205595016, + -0.06257200241088867, + 0.056666940450668335, + 0.05490625649690628, + -0.02752084657549858, + 0.043692052364349365, + -0.10683289170265198, + 0.012974887154996395, + -0.05639606714248657, + -0.04152505844831467, + -0.017796453088521957, + 0.0017877715872600675, + 0.03402183577418327, + 0.0669601708650589, + -0.03713688999414444, + 0.0034705791622400284, + -0.048486530780792236, + 0.04366496577858925, + 0.08007049560546875, + -0.007719922345131636, + -0.0023616869002580643, + -0.049705468118190765, + -0.00017702070181258023, + 0.015453388914465904, + 0.01243313867598772, + -0.008593493141233921, + -0.01841946505010128, + -0.08234584331512451, + 0.04594030976295471, + 0.00828198716044426, + -0.03031085431575775, + -0.039466410875320435, + 0.029498230665922165, + -0.0332362987101078, + 0.03553873300552368, + 0.019177913665771484, + 0.045913223177194595, + 0.07421960681676865, + 0.005156772676855326, + -0.009020119905471802, + 0.03096095286309719, + -0.005901677533984184, + -0.02005825564265251, + 0.03180066496133804, + -0.0435837022960186, + -0.004726759623736143, + -0.05298304930329323, + -0.04298777878284454, + -0.03543038293719292, + 0.01993636228144169, + 0.053876932710409164, + -0.03291124850511551, + 0.04615700989961624, + 0.012954572215676308, + 0.05942986160516739, + 0.023105593398213387, + -0.05585431680083275, + 0.056666940450668335, + 0.001972304889932275, + -0.03177357465028763, + -0.04436923936009407, + -0.016144119203090668, + 0.013706248253583908, + 0.04984090477228165, + -0.06370967626571655, + -0.04572361335158348, + -0.054662469774484634, + -0.03678475320339203, + 0.0019519891357049346, + -0.04309612885117531, + 0.007503223139792681, + -0.012067457661032677, + -0.02149388939142227, + -0.049136631190776825, + -0.034942805767059326, + -0.016726499423384666, + 0.07774097472429276, + 0.015426301397383213, + -0.042120981961488724, + -0.010279686190187931, + -0.055231306701898575, + 0.050761878490448, + -0.054093632847070694, + -0.006196253467351198, + -0.06490152329206467, + -0.015615913085639477, + 0.020843790844082832, + 0.03353425860404968, + 0.018825776875019073, + 0.06473899632692337, + -0.072486013174057, + 0.014126104302704334, + 0.08250836282968521, + -0.06305957585573196, + 0.025773705914616585, + -0.023200398311018944, + -0.09063459932804108, + -0.02565181255340576, + -0.024852734059095383, + -0.050436828285455704, + -0.0536060594022274, + 0.10596609860658646, + -0.055583443492650986, + 0.0686395913362503, + 0.07703670114278793, + -0.007598028983920813, + -0.07557398080825806, + -0.05184537544846535, + 0.0101848803460598, + 0.010394807904958725, + 0.03713688999414444, + 0.004245957359671593, + -0.13435374200344086, + -0.010381264612078667, + 0.03125891461968422, + -0.019191456958651543, + -0.031123477965593338, + 0.044829726219177246, + -0.06127180531620979, + 0.023633798584342003, + 0.051141101866960526, + 0.012595662847161293, + -0.031231826171278954, + 0.0017539121909067035, + -0.05672111362218857, + 0.05417489632964134, + 0.058454710990190506, + 0.01590033248066902, + 0.10184880346059799, + 0.016401449218392372, + 0.042473118752241135, + 0.03377804532647133, + 0.12947799265384674, + 0.00956864096224308, + 0.0007499837083742023, + -0.07031901180744171, + -0.0706440657377243, + -0.03543038293719292, + -0.04306904226541519, + 0.010719857178628445, + -0.017092179507017136, + -0.0607842318713665, + -0.010448982939124107, + -0.053443532437086105, + -0.01820276491343975, + 0.023322291672229767, + -0.019828012213110924, + 0.014464696869254112, + 0.03529494255781174, + 0.048784494400024414, + -0.0315568782389164, + -0.03995398432016373, + -0.004367850720882416, + 0.0075235385447740555, + 0.015263776294887066, + -0.011403815820813179, + -0.007076595909893513, + -0.07920369505882263, + 0.04380040243268013, + 0.0033249841071665287, + 0.003568771295249462, + 0.04466719925403595, + 0.075465627014637, + -0.02868560701608658, + -0.05384984612464905, + 0.020803159102797508, + -0.02608521282672882, + -0.010042671114206314, + 0.033588435500860214, + -0.02314622327685356, + -0.024852734059095383, + 0.06538909673690796, + 0.023633798584342003, + 0.03060881607234478, + -0.048486530780792236, + -0.026410261169075966, + -0.022265881299972534, + -0.010631822980940342, + 0.01523668970912695, + -0.0893343985080719, + -0.024378702044487, + 0.029416967183351517, + -0.024040110409259796, + -0.05390401929616928, + -0.049272067844867706, + 0.013936491683125496, + -0.029633667320013046, + 0.029904542490839958, + -0.006074360106140375, + -0.030121242627501488, + -0.015114795416593552, + -0.009676991030573845, + 0.07048153877258301, + -0.04480263963341713, + -0.007435504347085953, + -0.06934386491775513, + 0.04006233438849449, + -0.011566339991986752, + 0.0016091637080535293, + -0.04683419689536095, + -0.005789942108094692, + 0.022604474797844887, + 0.011952335946261883, + 0.0003225099353585392, + 0.04637371003627777, + -0.0026037809439003468, + 0.018338201567530632, + 0.025408025830984116, + 0.03334464877843857, + -0.02005825564265251, + 0.061109282076358795, + 0.01913728192448616, + 0.0030524167232215405, + 0.0686395913362503, + -0.014247997663915157, + 0.08852177858352661, + -0.03196318820118904, + -0.03402183577418327, + -0.02215753123164177, + -0.032640375196933746, + -0.003771926974877715, + 0.04361078888177872, + -0.030527552589774132, + -0.029119005426764488, + 0.030581727623939514, + 0.038166213780641556, + -0.011424130760133266, + 0.043177392333745956, + -0.024283897131681442, + 0.059809084981679916, + -0.009690534323453903, + -0.05146615207195282, + 0.07161921262741089, + 0.04019777104258537, + -0.015791982412338257, + -0.01240605115890503, + -0.030988039448857307, + -0.004154537338763475, + -0.04837818071246147, + -0.06820619106292725, + -0.015155427157878876, + -0.027724003419280052, + 0.00889145489782095, + -0.0586172379553318, + 0.012643066234886646, + 0.06766444444656372, + 0.07665747404098511, + -0.03277581185102463, + 0.03253202512860298, + -0.02215753123164177, + -0.044477589428424835, + -0.0063655502162873745, + 0.03366969898343086, + -0.021520977839827538, + 0.057100340723991394, + 0.02803550846874714, + -0.01111262571066618, + -0.12059331685304642, + -0.03786825016140938, + -0.04618409648537636, + 0.004472814965993166, + -0.07752427458763123, + 0.024717295542359352, + 0.0546082928776741, + 0.04361078888177872, + -0.03675766661763191, + 0.07855359464883804, + 0.0030913548544049263, + 0.025827880948781967, + 0.05420198291540146, + -0.02523195743560791, + -0.0016413300763815641, + 0.022035637870430946, + 0.072486013174057, + -0.019462330266833305, + 0.06723104417324066, + 0.040549907833337784, + -0.05959238484501839, + 0.02172413282096386, + -0.054229069501161575, + 0.013171271421015263, + -0.022834718227386475, + -0.013415058143436909, + 0.005163544788956642, + 0.03060881607234478, + 0.029931629076600075, + -0.09052625298500061, + -0.005085668060928583, + 0.020112430676817894, + -0.04623827338218689, + 0.0587797611951828, + 0.00013575467164628208, + -0.08305011689662933, + -0.022834718227386475, + -0.05769626423716545, + 0.02515069581568241, + -0.0017454474000260234, + -0.08711323142051697, + -0.024040110409259796, + 0.05964655801653862, + -0.017295334488153458, + -0.06013413518667221, + -0.0003409209311939776, + 0.045127686113119125, + 0.043692052364349365, + 0.09865248203277588, + 0.015737807378172874, + -0.008911769837141037, + -0.10266142338514328, + 0.05249547213315964, + 0.01275818794965744, + -0.002136522438377142, + 0.0035857008770108223, + -0.06403472274541855, + -0.11290048062801361, + -0.03678475320339203, + 0.016956742852926254, + 0.03876213729381561, + -0.004615023732185364, + -0.020870879292488098, + -0.03678475320339203, + -0.00272567430511117, + 0.0058136433362960815, + 0.026477979496121407, + 0.0001462298969272524, + 0.03543038293719292, + 0.0569378137588501, + -0.012521172873675823, + -0.033723872154951096, + 0.02315976843237877, + -0.023064961656928062, + 0.10276977717876434, + 0.026058124378323555, + 0.015196057967841625, + 0.02164287120103836, + 0.041687581688165665, + 0.04382748901844025, + 0.0688021183013916, + -0.04537147656083107, + 0.03375095874071121, + -0.028198033571243286, + -0.04092913493514061, + -0.007489679381251335, + 0.04464011266827583, + -0.042039718478918076, + 0.005542769096791744, + -0.010340632870793343, + -0.03719106689095497, + 0.04285234212875366, + 0.03618882969021797, + -0.007638660259544849, + 0.010300002060830593, + -0.03686601668596268, + 0.021046947687864304, + 0.02227942645549774, + -0.026830116286873817, + -0.030771341174840927, + -0.04195845499634743, + 0.04940750449895859, + 0.009846286848187447 + ] + }, + { + "id": "b2097f35-c2d3-412c-b3b5-e29041478300", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "nanderson", + "reviewDate": "2022-07-25T15:17:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3d196985-a5ee-4d0c-bf44-ab10a6224c0d", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "stonejulie", + "reviewDate": "2021-10-20T19:05:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f3d50f6c-63b2-4dd1-8a7b-d81595c78140", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "timothyholt", + "reviewDate": "2021-11-15T20:10:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "94fad88b-204e-4dd1-940d-c672b50fd9cf", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "delacruzbrandi", + "reviewDate": "2021-12-06T01:55:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0f4e26fb-d812-4b8c-a483-6aca8ead58d5", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "qgolden", + "reviewDate": "2021-08-25T17:44:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b052f711-e670-4f08-9ecf-b84bf6ccd145", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "tom55", + "reviewDate": "2021-10-14T06:33:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "11bcbd82-a150-45a8-a5d5-1bca2b2f0ada", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "dawnmata", + "reviewDate": "2021-05-15T19:39:41", + "stars": 3, + "verifiedUser": false + }, + { + "id": "296b4e9f-5e94-4c64-a46e-1c15578415eb", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "spencer01", + "reviewDate": "2022-09-15T02:55:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ab5c7598-f6a4-49d4-be0d-03230a7f00c1", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "charles34", + "reviewDate": "2022-01-18T05:41:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ea26564e-0551-4f09-873d-759e0d1a04d5", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "amberwilliams", + "reviewDate": "2022-11-08T13:28:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d7e62915-8f81-415f-b9e9-67de02181ed8", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "urichardson", + "reviewDate": "2022-01-23T23:46:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6fed1558-cff2-4f93-8833-3cdd5af7de61", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "martinezdavid", + "reviewDate": "2022-04-13T07:05:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ba53b09f-ca4a-46f2-bccb-46fd8626670b", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "bstevens", + "reviewDate": "2022-02-07T15:28:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d5929eeb-e421-4279-9398-357df49329b8", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "daniel69", + "reviewDate": "2022-08-02T19:09:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d5eed2f8-a19e-4b55-bb8d-194048e9d00e", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "richardgarcia", + "reviewDate": "2021-05-09T03:19:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6ab5fd02-5781-464e-8ba4-67f00aa867d3", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "oortiz", + "reviewDate": "2021-12-14T10:57:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "053c9224-539d-4831-b9fb-61936de30bf3", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "shelia52", + "reviewDate": "2022-06-04T04:41:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f8d502e6-e596-40d9-b23b-d2315d41a732", + "productId": "1edbaa83-92ea-409e-8254-e54d3c367146", + "category": "Other", + "docType": "customerRating", + "userName": "cooperkristen", + "reviewDate": "2022-05-28T02:15:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c8a1a10-506f-4128-8550-d7aded21a356", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Pro (Red)", + "description": "This Amazing Mouse Pro (Red) is a high-quality mouse with a 5-axis accelerometer. The product supports the PS4 and Xbox One Pro", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-03-06T07:58:22", + "price": 418.59, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-01-20T23:30:53", + "newPrice": 415.69 + }, + { + "priceDate": "2022-10-15T23:30:53", + "newPrice": 443.31 + }, + { + "priceDate": "2023-04-15T23:30:53", + "newPrice": 418.59 + } + ], + "descriptionVector": [ + -0.07226715236902237, + 0.0320480614900589, + -0.03586446866393089, + 0.022922925651073456, + 0.0018256385810673237, + -0.04379086196422577, + -0.04440246522426605, + 0.018764017149806023, + 0.09692703187465668, + 0.033613767474889755, + 0.01745518296957016, + -0.019351156428456306, + 0.06732539087533951, + -0.06527040153741837, + 0.00710684061050415, + -0.02030525915324688, + -0.06566182523965836, + -0.014299306087195873, + 0.000427358434535563, + 0.00694170780479908, + 0.01190181728452444, + -0.05387009680271149, + 0.010782581754028797, + -0.005149707198143005, + 0.03980319947004318, + -0.030482353642582893, + -0.009999728761613369, + 0.02960164286196232, + -0.04105087369680405, + 0.07153322547674179, + 0.009620534256100655, + 0.004428014159202576, + -0.003718553576618433, + 0.025809697806835175, + 0.010666376911103725, + 0.05866507440805435, + 0.017614200711250305, + -0.011167892254889011, + 0.04440246522426605, + 0.03809070959687233, + -0.003421925473958254, + -0.019302228465676308, + 0.006629789713770151, + -0.0709460899233818, + -0.021149273961782455, + 0.03762589022517204, + -0.03447001427412033, + 0.012721367180347443, + -0.05455509573221207, + 0.0355219729244709, + 0.059252213686704636, + 0.07603463530540466, + -0.0711418017745018, + -0.010085353627800941, + -0.022592658177018166, + -0.04119765758514404, + 0.02632344514131546, + 0.1137094497680664, + 0.026152195408940315, + -0.06507468968629837, + -0.005813297815620899, + -0.0497845821082592, + 0.02417059801518917, + 0.00044685331522487104, + -0.03415197879076004, + -0.14022861421108246, + 0.035791076719760895, + -0.017553040757775307, + 0.033320195972919464, + 0.07706212997436523, + -0.04386425390839577, + -0.001843986683525145, + 0.054652951657772064, + -0.027668973430991173, + 0.016794651746749878, + 0.04354621842503548, + 0.0426655076444149, + 0.0639004036784172, + 0.05587615817785263, + -0.031925737857818604, + -0.003663509152829647, + 0.04839012399315834, + -0.048585835844278336, + -0.0142136812210083, + 0.08254209905862808, + 0.02947932295501232, + 0.0142259132117033, + -0.12594152987003326, + 0.04320371896028519, + 0.00784688163548708, + -0.043252646923065186, + 0.07774712890386581, + 0.02165078930556774, + -0.04579692333936691, + -0.02425622195005417, + -0.028035936877131462, + -0.040806230157613754, + 0.046066027134656906, + -0.027253083884716034, + 0.006642021704465151, + -0.011339141987264156, + 0.014103592373430729, + -0.10040094703435898, + -0.02708183415234089, + -0.021883198991417885, + -0.010067004710435867, + -0.0427144356071949, + 0.005455509293824434, + -0.058567218482494354, + -0.04545442387461662, + 0.00369714736007154, + -0.01951017417013645, + -0.008146568201482296, + -0.011375837959349155, + -0.0319991298019886, + 0.024048276245594025, + -0.09291490912437439, + 0.00711295660585165, + -0.010996643453836441, + -0.048218876123428345, + 0.057099368423223495, + -0.0070089842192828655, + 0.02277613990008831, + 0.05837150290608406, + 0.01817687600851059, + -0.0462372787296772, + 0.03429876267910004, + 0.03520393744111061, + 0.020806774497032166, + -0.05240224674344063, + -0.07246286422014236, + 0.10167308151721954, + 0.04528317600488663, + 0.05798007920384407, + -0.011412533931434155, + 0.06253041326999664, + -0.025907553732395172, + 0.0392405241727829, + 0.023228727281093597, + 0.024390775710344315, + 0.00945540051907301, + -0.0746157094836235, + -0.06801038980484009, + 0.04134444519877434, + -0.015008767135441303, + -0.001515249372459948, + -0.0029678093269467354, + 0.03495929762721062, + 0.00023584987502545118, + -0.01316172257065773, + -0.035742148756980896, + -0.04555227980017662, + -0.027546653524041176, + -0.07872569561004639, + 0.03632928803563118, + 0.05367438495159149, + -0.06018185243010521, + -0.01816464401781559, + -0.029087895527482033, + 0.11830871552228928, + -0.023057477548718452, + 0.032145917415618896, + 0.008458485826849937, + 0.06610218435525894, + 0.012384984642267227, + -0.005571714136749506, + 0.01855607144534588, + 0.02456202358007431, + 0.04667763039469719, + 0.009192410856485367, + -0.022494802251458168, + -0.05435938015580177, + 0.018617231398820877, + -0.03451894223690033, + 0.08753279596567154, + -0.012733599171042442, + 0.11459016054868698, + 0.04719138145446777, + 0.001298129907809198, + 0.009736739099025726, + 0.043228182941675186, + 0.03317341208457947, + -0.07632820308208466, + 0.02136944979429245, + 0.09687810391187668, + 0.027668973430991173, + 0.016244206577539444, + 0.03733231872320175, + -0.03769928216934204, + -0.038628920912742615, + 0.021528467535972595, + -0.08699458092451096, + 0.036084648221731186, + -0.031925737857818604, + -0.018017860129475594, + 0.11263302713632584, + 0.05245117470622063, + 0.04599263519048691, + 0.023289887234568596, + -0.034347690641880035, + -0.05264689028263092, + 0.05886078625917435, + 0.11165446043014526, + 0.011070036329329014, + 0.003146703587844968, + -0.052157606929540634, + 0.015192247927188873, + -0.015290104784071445, + 0.07168000936508179, + -0.006317871157079935, + 0.017271703109145164, + 0.011883469298481941, + 0.025014610961079597, + -0.016843579709529877, + 0.08063389360904694, + 0.006085461936891079, + 0.02457425743341446, + 0.006495236419141293, + 0.002788915066048503, + -0.041809264570474625, + 0.04518531635403633, + -0.007534963544458151, + -0.048903871327638626, + -0.01461734063923359, + -0.1068594828248024, + 0.03769928216934204, + 0.07642605900764465, + -0.056414369493722916, + 0.013443060219287872, + 0.004336273763328791, + -0.0606222078204155, + -0.05225546285510063, + 0.033295731991529465, + 0.03977873548865318, + -0.04379086196422577, + 0.07050573080778122, + -0.020011689513921738, + 0.05201081931591034, + -0.023571224883198738, + 0.03495929762721062, + -0.09061527997255325, + -0.04095301777124405, + -0.026152195408940315, + 0.050004757940769196, + 0.07906819134950638, + -0.02424398995935917, + 0.02532041445374489, + 0.007180233485996723, + -0.0889517143368721, + -0.013687701895833015, + -0.06566182523965836, + 0.0011643414618447423, + -0.002533570397645235, + 0.028720933943986893, + 0.0019984166137874126, + 0.03603572025895119, + 0.07236500829458237, + -0.049319762736558914, + -0.004522813018411398, + -0.08024246990680695, + 0.0133207393810153, + -0.025051306933164597, + -0.027130762115120888, + 0.04154015704989433, + 0.0021941300947219133, + 0.007223045453429222, + -0.02240917831659317, + -0.049980293959379196, + -0.014336002059280872, + 0.013699933886528015, + 0.010415619239211082, + 0.005547250155359507, + 0.0426655076444149, + -0.05827364698052406, + 0.042885687202215195, + 0.007094608619809151, + -0.04246979579329491, + 0.04520978033542633, + 0.07432214170694351, + -0.03459233418107033, + 0.05088546872138977, + 0.07373499870300293, + 0.09418704360723495, + 0.04494067654013634, + -0.0076144724152982235, + -0.004953993950039148, + -0.05088546872138977, + 0.004235358908772469, + -0.033246804028749466, + 0.0012606692034751177, + -0.05161939561367035, + 0.011436998844146729, + 0.08126996457576752, + -0.04127104952931404, + 0.05191296339035034, + 0.0072046974673867226, + 0.0029402871150523424, + 0.04232301190495491, + 0.03730785474181175, + 0.00595396663993597, + 0.03177895396947861, + -0.007125189062207937, + -0.06825502961874008, + -0.03092270903289318, + 0.004064110107719898, + 0.08630958199501038, + -0.0676189586520195, + 0.01101499143987894, + -0.00924745574593544, + -0.044696033000946045, + 0.06918466836214066, + 0.023913724347949028, + -0.0996180921792984, + -0.012146458961069584, + 0.05416366830468178, + -0.013504221104085445, + -0.04379086196422577, + -0.018311429768800735, + 0.015228944830596447, + -0.006183318328112364, + -0.06732539087533951, + -0.0819060355424881, + -0.11899371445178986, + 0.05543580278754234, + 0.042225152254104614, + -0.06150291860103607, + -0.035008225589990616, + -0.015938404947519302, + -0.051766179502010345, + -0.05558259040117264, + -0.0355709008872509, + -0.03410305082798004, + -0.02169971726834774, + -0.06527040153741837, + 0.03765035420656204, + -0.010476780124008656, + 0.00943093653768301, + 0.06918466836214066, + -0.00695393979549408, + 0.04902619123458862, + 0.04369300231337547, + 0.0357176847755909, + 0.002895945915952325, + 0.010525708086788654, + 0.02282506786286831, + -0.047484949231147766, + -0.022959621623158455, + -0.015767157077789307, + 0.045381031930446625, + 0.019143210723996162, + 0.0014013381442055106, + -0.054310452193021774, + 0.011920166201889515, + -0.04454924911260605, + 0.014446090906858444, + -0.04171140491962433, + -0.035424113273620605, + -0.0048010931350290775, + 0.009834595024585724, + 0.05612080171704292, + -0.029675034806132317, + -0.012195387855172157, + 0.010660260915756226, + 0.062138985842466354, + -0.009846827946603298, + 0.06561289727687836, + -0.0709950178861618, + -0.024415239691734314, + 0.02035418711602688, + -0.09218098223209381, + -0.024488631635904312, + -0.03177895396947861, + 0.007975318469107151, + 0.054604023694992065, + -0.07985104620456696, + -0.03760142624378204, + -0.01779768243432045, + 0.003397461259737611, + -0.02634790912270546, + 0.026837192475795746, + 0.029332537204027176, + 0.0925724133849144, + -0.04239640384912491, + 0.047827448695898056, + 0.05793115124106407, + -0.014629572629928589, + 0.04799869656562805, + -0.06972287595272064, + 0.04308139905333519, + 0.03317341208457947, + 0.008776520378887653, + 0.0428122952580452, + -0.02244587428867817, + 0.03740571439266205, + -0.00786522962152958, + -0.04878155142068863, + 0.059643641114234924, + 0.08865814656019211, + -0.03603572025895119, + -0.001351645216345787, + 0.016831347718834877, + -0.01670902594923973, + 0.01261127833276987, + -0.008996698074042797, + -0.03102056495845318, + -0.004504465032368898, + -0.03593786433339119, + 0.024366311728954315, + -0.02889218181371689, + -0.06370469182729721, + -0.007749025244265795, + -0.007168001029640436, + 0.02710629813373089, + -0.00710684061050415, + -0.004877543542534113, + 0.03261073678731918, + 0.0427633635699749, + 0.05812686309218407, + 0.032928768545389175, + -0.08503744751214981, + 0.05113011226058006, + 0.000744628079701215, + 0.01958356611430645, + 0.002369966357946396, + -0.12007013708353043, + 0.0463106706738472, + -0.011522622779011726, + -0.04166247695684433, + -0.007216929458081722, + -0.04383978992700577, + 0.03339358791708946, + -0.09996058791875839, + -0.02456202358007431, + 0.05157046392560005, + -0.07055465877056122, + 0.0115837836638093, + 0.0461883470416069, + -0.012831456027925014, + 0.0606222078204155, + 0.006372915580868721, + -0.01177949644625187, + -0.021968822926282883, + 0.020182939246296883, + 0.07065251469612122, + 0.01573045924305916, + 0.0003314130299258977, + -0.020831238478422165, + -0.0021620208863168955, + 0.04374193027615547, + -0.058567218482494354, + -0.01674572378396988, + -0.062481485307216644, + -0.03028663992881775, + -0.012238199822604656, + 0.005547250155359507, + 0.04520978033542633, + -0.052157606929540634, + 0.08498851954936981, + -0.010213790461421013, + 0.03378501534461975, + 0.014397162944078445, + 0.05078761279582977, + 0.05303831771016121, + 0.028990039601922035, + 0.005920328665524721, + -0.050738684833049774, + -0.03390733525156975, + -0.002793502062559128, + -0.00854411069303751, + 0.007767373230308294, + 0.05763757973909378, + -0.05220653489232063, + 0.04085516184568405, + 0.05479973554611206, + -0.01316172257065773, + -0.03632928803563118, + -0.0038469904102385044, + 0.036867499351501465, + -0.013516453094780445, + 0.03322234004735947, + 0.0019250242039561272, + -0.000909761234652251, + -0.0890006422996521, + -0.006501352414488792, + 0.0032843146473169327, + -0.030506817623972893, + 0.04763173311948776, + 0.007742909248918295, + 0.03126520663499832, + 0.03843320906162262, + 0.07613249123096466, + 0.04746048524975777, + -0.014176985248923302, + -0.056071873754262924, + -0.06008399650454521, + -0.017895538359880447, + 0.01262351032346487, + 0.04298354312777519, + 0.03239055722951889, + 0.02166302129626274, + 0.02248257026076317, + -0.036182504147291183, + 0.013528685085475445, + 0.008109871298074722, + -0.003388287266716361, + 0.005238390062004328, + -0.019387852400541306, + -0.030408959835767746, + -0.040023379027843475, + -0.10010737180709839, + -0.03170556202530861, + -0.016513314098119736 + ] + }, + { + "id": "037dee5d-5344-4ead-a8fa-ba5f4a443ddc", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeffery27", + "reviewDate": "2022-05-09T02:18:04", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4a02825c-4403-43c7-b02a-ff55b13feb56", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "phorton", + "reviewDate": "2021-01-25T10:23:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "10e2f445-d3cc-490b-85dd-5b4e6ff941d9", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholas64", + "reviewDate": "2022-10-16T05:31:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dfd974ec-8ade-4ab3-8704-ec53c7aec889", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pearsonmichael", + "reviewDate": "2021-09-27T15:25:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c1aa7dc3-219a-441f-b8d5-83e9b1141c86", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garciamichael", + "reviewDate": "2022-10-03T13:05:31", + "stars": 4, + "verifiedUser": false + }, + { + "id": "41e5416c-14ec-415e-838d-ac45dac1823f", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniearcher", + "reviewDate": "2021-01-20T23:30:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3ac3eb39-b191-4f3b-a7b0-837ad8d37c46", + "productId": "8c8a1a10-506f-4128-8550-d7aded21a356", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "natasha32", + "reviewDate": "2022-08-13T22:53:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Pro (Black)", + "description": "This Premium Stand Pro (Black) is the perfect way to give yourself time to recharge a new and improved device. You can adjust the wattage output at just the right moment, while using a compact and powerful USB-C", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-17T03:24:56", + "price": 521.24, + "stock": 58, + "priceHistory": [ + { + "priceDate": "2021-01-13T19:46:39", + "newPrice": 503.19 + }, + { + "priceDate": "2021-06-28T19:46:39", + "newPrice": 509.03 + }, + { + "priceDate": "2021-12-11T19:46:39", + "newPrice": 529.21 + }, + { + "priceDate": "2022-05-26T19:46:39", + "newPrice": 498.83 + }, + { + "priceDate": "2022-11-08T19:46:39", + "newPrice": 536.22 + }, + { + "priceDate": "2023-03-14T19:46:39", + "newPrice": 521.24 + } + ], + "descriptionVector": [ + -0.04795416444540024, + 0.022128742188215256, + -0.02081950195133686, + 0.03660740703344345, + -0.013682853430509567, + 0.015749400481581688, + -0.06233014538884163, + 0.04936609044671059, + 0.01731535606086254, + 0.05591229721903801, + 0.07388227432966232, + -0.02024189382791519, + -0.012476298026740551, + -0.01876579038798809, + 0.06027643382549286, + -0.08589648455381393, + -0.01551835797727108, + -0.030394932255148888, + 0.058120038360357285, + -0.022462470456957817, + -0.05208725854754448, + -0.11962869763374329, + -0.0556042417883873, + 0.0060456134378910065, + -0.04749207943677902, + -0.0036581738386303186, + -0.005464798305183649, + 0.059044208377599716, + 0.028495248407125473, + 0.056066326797008514, + 0.0004877565079368651, + 0.01730252057313919, + -0.014812394976615906, + -0.0028463159687817097, + -0.057863324880599976, + 0.0674130842089653, + 0.016519542783498764, + 0.01935623213648796, + 0.047261036932468414, + -0.011237652972340584, + -0.03429698199033737, + -0.007727089803665876, + 0.02751973457634449, + -0.02338664047420025, + 0.01693028397858143, + -0.02867494709789753, + -0.010294229723513126, + -0.029984189197421074, + -0.03044627420604229, + -0.037095166742801666, + -0.010506018064916134, + -0.02370753325521946, + -0.03724919259548187, + -0.019189367070794106, + 0.07968401163816452, + -0.017790276557207108, + 0.0880015417933464, + 0.11100310832262039, + 0.03334714099764824, + -0.04926340654492378, + 0.048159535974264145, + 0.007983803749084473, + -0.025915272533893585, + 0.011982123367488384, + 0.02223142795264721, + 0.01435030996799469, + -0.01698162779211998, + -0.008099325001239777, + 0.010743478313088417, + 0.0909280776977539, + -0.061970748007297516, + 0.027108993381261826, + 0.023900069296360016, + -0.025568708777427673, + 0.05776063725352287, + -0.04620851203799248, + 0.039123207330703735, + 0.04744073748588562, + 0.0907227098941803, + -0.010467511601746082, + 0.0307029876857996, + 0.036992479115724564, + -0.01125690620392561, + -0.025055281817913055, + 0.042306456714868546, + -0.033218786120414734, + 0.015043437480926514, + -0.07290676236152649, + -0.00491286301985383, + 0.056066326797008514, + -0.029111361131072044, + 0.033218786120414734, + 0.0016429692041128874, + -0.021012036129832268, + -0.016789091750979424, + 0.013284946791827679, + -0.01363151054829359, + 0.051394131034612656, + 0.015980442985892296, + -0.03137044608592987, + 0.035862937569618225, + -0.0556042417883873, + 0.021178901195526123, + -0.001995950937271118, + 0.029470760375261307, + 0.07285542041063309, + -0.012630325742065907, + -0.029419418424367905, + -0.002040875842794776, + -0.16224321722984314, + 0.011141384951770306, + 0.0102557223290205, + 0.04068915918469429, + -0.012078391388058662, + -0.06874799728393555, + 0.024477675557136536, + -0.01405508816242218, + 0.0087667815387249, + 0.02695496380329132, + -0.09159553796052933, + -0.03973931819200516, + 0.052241288125514984, + 0.055501554161310196, + 0.10473929345607758, + 0.024387825280427933, + -0.03437399864196777, + 0.04561806842684746, + 0.037043821066617966, + 0.09785936027765274, + -0.07193125039339066, + -0.007868282496929169, + 0.08430486172437668, + -0.0673617422580719, + 0.02228276990354061, + -0.015056272968649864, + 0.08096757531166077, + -0.022398291155695915, + 0.040535133332014084, + -0.025389010086655617, + -0.0007067655678838491, + 0.03319311514496803, + -0.01958727464079857, + 0.05909555032849312, + -0.01839355379343033, + -0.05360187217593193, + -0.0037191433366388083, + 0.0732661634683609, + 0.0352211520075798, + -0.04240914434194565, + 0.09811607003211975, + 0.01578790694475174, + -0.09765398502349854, + -0.06972350925207138, + -0.07342018932104111, + 0.09765398502349854, + -0.01361867506057024, + -0.0673617422580719, + -0.026249000802636147, + -0.049314748495817184, + 0.0615086629986763, + -0.016031786799430847, + -0.0043352567590773106, + 0.020678307861089706, + 0.0204857736825943, + 0.00920961331576109, + 0.0041427211835980415, + 0.0791192352771759, + 0.04274287074804306, + -0.021140392869710922, + 0.03781396523118019, + 0.03280804306268692, + 0.014863737858831882, + -0.015325822867453098, + -0.1113111674785614, + 0.0048454757779836655, + -0.019086681306362152, + 0.05924957990646362, + 0.028007492423057556, + 0.07295810431241989, + 0.012450626119971275, + 0.00041756127029657364, + 0.0671563670039177, + -0.05601498484611511, + 0.029522104188799858, + 0.01813684031367302, + 0.03945693373680115, + -0.037942320108413696, + 0.032987743616104126, + 0.026800936087965965, + -0.0322689414024353, + -0.048801321536302567, + -0.002132330322638154, + 0.0002611262316349894, + -0.04040677472949028, + 0.027314363047480583, + 0.003613248700276017, + 0.03894350677728653, + 0.06037912145256996, + 0.029932845383882523, + 0.02514513023197651, + -0.06474325805902481, + 0.12938383221626282, + 0.022038891911506653, + 0.016750585287809372, + -0.03542652353644371, + -0.026749594137072563, + 0.011789588257670403, + 0.11511053144931793, + 0.015723729506134987, + 0.01931772381067276, + -0.027776449918746948, + -0.01930488832294941, + -0.041998401284217834, + -0.05380724370479584, + 0.09904024004936218, + 0.025632888078689575, + 0.040843188762664795, + 0.0013565727276727557, + -0.005949345882982016, + 0.024233795702457428, + 0.0009394126245751977, + 0.0078041041269898415, + 0.04361569881439209, + -0.04936609044671059, + -0.02513229474425316, + -0.04777446389198303, + 0.03157581388950348, + 0.043179284781217575, + 0.015967607498168945, + 0.0642811730504036, + -0.007605150807648897, + -0.01992100290954113, + 0.05909555032849312, + 0.02429797500371933, + -0.014658366329967976, + 0.03167850151658058, + 0.0013918709009885788, + -0.04782580956816673, + -0.04574642702937126, + 0.02493976056575775, + -0.04667059704661369, + 0.008003056980669498, + -0.05303710326552391, + 0.0322689414024353, + -0.006648891139775515, + -0.02898300439119339, + 0.06417848914861679, + 0.10299363732337952, + -0.028777632862329483, + 0.0307029876857996, + -0.043204955756664276, + 0.03042060323059559, + 0.0004460404743440449, + 0.03948260471224785, + -0.014311802573502064, + 0.022423963993787766, + 0.026197658851742744, + -0.04135661572217941, + 0.040843188762664795, + 0.05806869640946388, + -0.028187191113829613, + 0.018380718305706978, + -0.03858410567045212, + 0.019227875396609306, + -0.045258667320013046, + -0.004733163397759199, + 0.08368874341249466, + -0.026441536843776703, + -0.04857027903199196, + -0.019985180348157883, + -0.007598733063787222, + 0.02081950195133686, + 0.03167850151658058, + -0.022950226441025734, + -0.008580663241446018, + 0.047594767063856125, + -0.03242297098040581, + 0.05924957990646362, + -0.022038891911506653, + -0.042871229350566864, + 0.053704556077718735, + -0.015941936522722244, + 0.07439570128917694, + 0.025337666273117065, + 0.03624800965189934, + -0.06535936892032623, + 0.04217810183763504, + 0.017122820019721985, + -0.03984200581908226, + -0.052523672580718994, + -9.696968481875956e-05, + 0.01155212800949812, + 0.07511450350284576, + -0.006141880992799997, + 0.050546977669000626, + -0.03537518158555031, + 0.009440655820071697, + 0.01994667388498783, + -0.021525464951992035, + -0.01157779898494482, + -0.02221859246492386, + 0.021872028708457947, + 0.057863324880599976, + 0.025016773492097855, + 0.0036036220844835043, + 0.12774085998535156, + -0.05642572417855263, + 0.010660046711564064, + -0.056374382227659225, + 0.019163696095347404, + 0.11387830972671509, + -0.02903434820473194, + -0.09400864690542221, + -0.03404026851058006, + 0.0526777021586895, + 0.0008623984176665545, + 0.018342211842536926, + -0.008285442367196083, + 0.031113730743527412, + 0.0037127253599464893, + -0.08517768979072571, + 0.004376973025500774, + -0.03955961763858795, + 0.025620052590966225, + -0.04415480047464371, + -0.018059825524687767, + -0.019150860607624054, + 0.007502465043216944, + -0.03386056795716286, + -0.016044622287154198, + -0.0351698100566864, + 0.006177179515361786, + 0.055501554161310196, + -0.038789477199316025, + 0.007547390181571245, + 0.020665472373366356, + -0.054936785250902176, + 0.005625244230031967, + -0.0019077055621892214, + 0.022077400237321854, + 0.02579975128173828, + 0.02252664975821972, + -0.020729651674628258, + -0.12763817608356476, + 0.022449634969234467, + -0.06618085503578186, + 0.03724919259548187, + -0.03242297098040581, + -0.018894147127866745, + -0.005326814483851194, + 0.0014889409067109227, + -0.07665478438138962, + 0.047877151519060135, + -0.02221859246492386, + 0.05817138031125069, + -0.015120451338589191, + 0.04566941037774086, + -0.0029939264059066772, + -0.02134576439857483, + -0.04749207943677902, + 0.02903434820473194, + -0.06381908804178238, + 0.03447668254375458, + 0.05596363916993141, + 0.046131495386362076, + -0.016288500279188156, + 0.055193498730659485, + -0.02372036874294281, + -0.07501181215047836, + -0.014594187960028648, + -0.026492878794670105, + 0.007412615232169628, + -0.008952898904681206, + 0.022924555465579033, + -0.027725106105208397, + 0.09000390768051147, + 0.02079382911324501, + 0.02692929282784462, + -0.009171105921268463, + 0.038481421768665314, + -0.04774879291653633, + 0.015710894018411636, + 0.02307858318090439, + 0.0037159344647079706, + 0.08451022952795029, + -0.0468759685754776, + -0.023553505539894104, + -0.01461985893547535, + -0.00993482954800129, + -0.012867786921560764, + -0.07501181215047836, + -0.09164687991142273, + -0.05806869640946388, + 0.002522214548662305, + 0.05437201261520386, + -0.02514513023197651, + -0.01817534677684307, + 0.076141357421875, + -0.013207932934165001, + 0.02224426344037056, + 0.04561806842684746, + 0.007919625379145145, + -0.008099325001239777, + -0.019407574087381363, + -0.02988150343298912, + -0.03717217966914177, + -0.03578592464327812, + 0.02253948524594307, + -0.02111472189426422, + -0.03447668254375458, + -0.01986965909600258, + 0.00861275289207697, + -0.006472400389611721, + 0.023322461172938347, + 0.11336488276720047, + 0.03391191363334656, + 0.06207343190908432, + -0.014555680565536022, + 0.02455468848347664, + -0.04631119593977928, + 0.014234788715839386, + 0.004765252582728863, + -0.05878749489784241, + -0.03103671595454216, + -0.04325630143284798, + 0.057503923773765564, + -0.006299118511378765, + -0.012052719481289387, + -0.02662123553454876, + 0.019856823608279228, + 0.011359591968357563, + -0.07496047019958496, + -0.055758267641067505, + 0.036710094660520554, + -0.05095771700143814, + -0.058376751840114594, + 0.09714055806398392, + 0.028828976675868034, + 0.015621043741703033, + 0.05883883684873581, + -0.05416664108633995, + -0.05601498484611511, + 0.07829775661230087, + -0.0005663751508109272, + -0.0704936534166336, + 0.02228276990354061, + -0.03424564003944397, + 0.03139611706137657, + -0.005236964672803879, + 0.003398250788450241, + -0.04577209800481796, + -0.03742889314889908, + 0.008028728887438774, + 0.06125194951891899, + 0.044334497302770615, + -0.04212675988674164, + -0.04043244570493698, + 0.07526852935552597, + -0.05221561715006828, + 0.039944689720869064, + 0.001192115363664925, + 0.07059633731842041, + 0.01813684031367302, + 0.00680933753028512, + 0.004851893521845341, + -0.0439494289457798, + -0.04590045288205147, + 0.017751770094037056, + 0.019433245062828064, + 0.08307263255119324, + 0.011211981996893883, + -0.009690951555967331, + 0.04615716636180878, + -0.027725106105208397, + -0.019433245062828064, + -0.0007420637411996722, + 0.022051727399230003, + -0.10345572233200073, + -0.027391377836465836, + -0.07285542041063309, + -0.014298967085778713, + 0.05945495143532753, + -0.09688384085893631, + 0.00738694379106164, + -0.05188188701868057, + -0.021795013919472694, + -0.09056868404150009, + -0.03419429808855057, + -0.01693028397858143, + 0.022462470456957817, + 0.008394545875489712, + 0.006642473395913839, + 0.002032853662967682, + -0.022616498172283173, + -0.03629935160279274, + -0.054063957184553146, + -0.006299118511378765, + 0.032371629029512405, + 0.03963663429021835, + 0.006260611582547426, + 0.0063825505785644054, + -0.030959701165556908, + -0.04192138835787773, + -0.005108607467263937, + 0.01785445585846901, + 0.008304696530103683, + -0.05360187217593193, + -0.03013821691274643, + -0.02813584916293621, + -0.10627957433462143, + 0.0070724692195653915, + 0.03691546618938446 + ] + }, + { + "id": "ae4921d1-59e0-407f-9d46-daa9efe1c48c", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "mayreginald", + "reviewDate": "2022-10-24T17:55:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ac1f7097-08f2-4676-bed8-1750592911bc", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonescharles", + "reviewDate": "2021-12-14T01:31:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4b7e6966-b216-4ed8-afe1-1d24cb6187b0", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "wroy", + "reviewDate": "2022-05-21T19:11:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "79f8dc36-b80a-4205-aa1b-aa12dbdcec98", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "valvarez", + "reviewDate": "2021-04-18T03:51:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1e8363f2-f0df-4642-8f69-3a658fc1cf4e", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "coopercolleen", + "reviewDate": "2021-02-09T17:52:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "01e8e523-71d2-4aea-b3a0-3e8e15da439b", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "whitesandra", + "reviewDate": "2021-11-10T00:21:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "024f01d0-0978-44b0-87e9-ce40aa28c213", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "pstark", + "reviewDate": "2021-03-16T08:23:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c6f6fdb3-19cb-4fb4-9b2b-c2acb44e6fc2", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "lopezjustin", + "reviewDate": "2022-03-28T08:30:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "31e88586-5309-40b0-a6d8-e42d1f6c0310", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "david38", + "reviewDate": "2021-04-25T00:25:12", + "stars": 4, + "verifiedUser": true + }, + { + "id": "50cb5b38-d597-4c3e-839f-c8d8ffd5b95e", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "mooreteresa", + "reviewDate": "2021-05-28T23:27:35", + "stars": 5, + "verifiedUser": false + }, + { + "id": "acd13a2b-803a-44b6-bd3a-eb0ac5dd1c86", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "karilee", + "reviewDate": "2022-11-05T16:55:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6d27fd24-be62-4ccc-9409-e93582df62e4", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "cclark", + "reviewDate": "2022-01-05T02:52:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6e16dbf2-a469-4d1d-ac2f-52028538c907", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "ericacarter", + "reviewDate": "2021-08-28T02:18:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2183e4af-e717-4e47-8ded-fbaefc21a353", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "bhubbard", + "reviewDate": "2021-01-13T19:46:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b7a87ff0-5304-464c-94cc-f4dbcc234d44", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "tammyjames", + "reviewDate": "2021-06-16T13:30:56", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d480ffc6-dfb3-48e1-814e-a3f3b748d8a7", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "mbuckley", + "reviewDate": "2022-07-29T04:52:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b32d20a0-90ae-47c5-859c-816516da516f", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "amberscott", + "reviewDate": "2021-09-20T17:58:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f2114b9e-5288-42f4-950a-8af74902f337", + "productId": "a71cf14c-c211-4084-8aa6-e5a3c7657538", + "category": "Accessory", + "docType": "customerRating", + "userName": "lewisalexandria", + "reviewDate": "2022-11-09T09:21:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "92048b4e-7f6e-4c0f-bf4b-f2b4c5a66323", + "productId": "92048b4e-7f6e-4c0f-bf4b-f2b4c5a66323", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Ultra (Red)", + "description": "This Premium Speaker Ultra (Red) is rated 4.5 out of 5 by 7.\n\nRated 5 out of 5 by Michael M. from Perfect for beginners I am very interested in this speaker. Easy to install and works great for me and my needs.\n\nRated 5 out of 5 by Steve from Great Speaker Great Speaker. I've been using this speaker for the past", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-04-16T20:32:19", + "price": 291.16, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-08-27T22:49:16", + "newPrice": 277.17 + }, + { + "priceDate": "2024-09-16T22:49:16", + "newPrice": 291.16 + } + ], + "descriptionVector": [ + -0.015018435195088387, + 0.013782741501927376, + -0.015250788070261478, + 0.010751593858003616, + -0.026805054396390915, + 0.07376142591238022, + -0.04287963733077049, + 0.06142561137676239, + -0.0060570128262043, + 0.12504801154136658, + -0.0008931058109737933, + -0.03026922233402729, + -0.04558337852358818, + -0.04579460993409157, + -0.04002803564071655, + -0.0055183772929012775, + -0.03728204965591431, + -0.03451494127511978, + -0.014712152071297169, + 0.019887281581759453, + 0.00244630454108119, + -0.05745449289679527, + -0.04146439954638481, + -0.00835413672029972, + -0.05504647269845009, + 0.014184077270328999, + 0.031050773337483406, + 0.05394807830452919, + 0.06184807047247887, + -0.034979645162820816, + 0.030015747994184494, + 0.031093019992113113, + -0.02511521801352501, + 0.031621094793081284, + -0.00043236088822595775, + 0.014986750669777393, + 0.013476458378136158, + -0.06750902533531189, + 0.012219641357660294, + 0.08516783267259598, + 0.006500595714896917, + -0.007144846487790346, + 0.08820953965187073, + -0.0437668040394783, + 0.05479299649596214, + 0.013307474553585052, + -0.0006132263806648552, + 0.0545395202934742, + 0.023974576964974403, + -0.0001601550611667335, + -0.023446502164006233, + 0.02350987121462822, + -0.01978166587650776, + 0.011628197506070137, + 0.05542668700218201, + 0.005544780753552914, + -0.017046241089701653, + 0.10384054481983185, + 0.04414701834321022, + -0.04007028415799141, + 0.068987637758255, + -0.0337967611849308, + -0.038190338760614395, + 0.00283047859556973, + -0.04064060375094414, + 0.056356098502874374, + -0.006421384401619434, + -0.010260485112667084, + 0.03183232247829437, + 0.0672978013753891, + 0.05559566989541054, + 0.011522582732141018, + 0.024798372760415077, + 0.01659209653735161, + 0.049216531217098236, + 0.028030186891555786, + 0.04524541273713112, + 0.03290959447622299, + -0.04917428642511368, + 0.07304324954748154, + 0.02777671255171299, + 0.03827483206987381, + -0.009082878939807415, + 0.020151318982243538, + 0.05018818750977516, + -0.012568170204758644, + -0.012335817329585552, + -0.10029188543558121, + 0.0448651984333992, + 0.06488978117704391, + 0.011005070060491562, + 0.003614668967202306, + 0.033395424485206604, + 0.0017334041185677052, + 0.10130579024553299, + -0.014089024625718594, + -0.05284968391060829, + 0.018450917676091194, + -0.09243413805961609, + -0.0069072130136191845, + 0.034979645162820816, + -0.0395844541490078, + -0.06362240016460419, + 0.011913358233869076, + 0.067002072930336, + 0.018936747685074806, + 0.06763576716184616, + -0.010910016484558582, + 0.001315565314143896, + -0.08761809766292572, + -0.003168446244671941, + -0.038929641246795654, + -0.0058510638773441315, + -0.08102773129940033, + 0.029614411294460297, + 0.00836997851729393, + 0.02008794993162155, + -0.0184931643307209, + -0.010302730835974216, + 0.008317171595990658, + 0.02317190356552601, + 0.009827463887631893, + 0.013497580774128437, + 0.006030609365552664, + 0.047822415828704834, + -0.0017334041185677052, + 0.03128312528133392, + 0.06953683495521545, + 0.05183577910065651, + -0.011638759635388851, + -0.009035352617502213, + 0.10654428601264954, + -0.013592634350061417, + 0.011343037709593773, + -0.024164684116840363, + 0.04989246651530266, + -0.00871322676539421, + 0.03732429817318916, + -0.0065269991755485535, + -0.04385129734873772, + -0.011512021534144878, + 0.02583339810371399, + 0.09175820648670197, + 0.07105768471956253, + -0.05149781331419945, + 0.012694908306002617, + -0.0445694774389267, + -0.01514517329633236, + 0.016845572739839554, + -0.036247026175260544, + 0.02830478549003601, + -0.028748368844389915, + 0.029846763238310814, + -0.024777250364422798, + 0.017172979190945625, + 0.03297296538949013, + -0.11372609436511993, + 0.04116867855191231, + -0.0897303968667984, + 0.07426837831735611, + -0.01601121574640274, + -0.018440356478095055, + 0.0045493608340620995, + 0.028262540698051453, + 0.005222655367106199, + 0.09454643726348877, + 0.002801434602588415, + 0.06058069318532944, + -0.09344804286956787, + 0.03360665217041969, + -0.004306446295231581, + -0.057581230998039246, + -0.010012290440499783, + 0.006294646300375462, + 0.03683846816420555, + -0.03787349537014961, + 0.01851428672671318, + -0.02832590974867344, + 0.003342710668221116, + -0.021967893466353416, + -0.008723788894712925, + 0.054581768810749054, + -0.032318152487277985, + -0.02298179641366005, + 0.0416756309568882, + 0.02830478549003601, + 0.05855288729071617, + -0.03079729713499546, + -0.027523236349225044, + 0.07769030332565308, + -0.009035352617502213, + 0.00943140871822834, + -0.03554996848106384, + 0.017415892332792282, + -0.08466088026762009, + 0.011596512980759144, + 0.08377371728420258, + 0.06235502287745476, + -0.05090637132525444, + -0.04110530763864517, + 0.010814962908625603, + 0.07701436430215836, + 0.09167370945215225, + -0.017025118693709373, + -0.014870574697852135, + -0.05627160519361496, + 0.059566788375377655, + 0.10975497961044312, + -0.0019776385743170977, + 0.016275251284241676, + -0.020700516179203987, + -0.035866811871528625, + -0.03026922233402729, + 0.04947000741958618, + 0.03867616876959801, + 0.06180582568049431, + -0.008544242940843105, + -0.002196789486333728, + -0.05694754049181938, + -0.06476303935050964, + 0.057961441576480865, + -0.03626814857125282, + 0.061214379966259, + -0.00472626555711031, + -0.08651970326900482, + -0.0254743080586195, + 0.008929737843573093, + -0.05284968391060829, + 0.058848608285188675, + 0.04099969565868378, + 0.02511521801352501, + -0.004932214505970478, + 0.0035354578867554665, + 0.0027195829898118973, + -0.034810662269592285, + 0.01362431887537241, + 0.0022165921982377768, + -0.035359859466552734, + -0.06628389656543732, + 0.09767263382673264, + -0.05268070101737976, + 0.06125662848353386, + -0.07870420813560486, + 0.017035679891705513, + -0.026213612407445908, + -0.06269299238920212, + 0.11178278177976608, + -0.025241954252123833, + -0.09572932124137878, + -0.0224325992166996, + -0.07494431734085083, + -0.0384860597550869, + -0.020721638575196266, + 0.057074278593063354, + -0.0130856828764081, + 0.03726092725992203, + 0.1107688769698143, + -0.046217069029808044, + 0.011902796104550362, + -0.009933078661561012, + -0.0004680059209931642, + 0.051371075212955475, + 0.025072971358895302, + 0.012747715227305889, + -0.07971810549497604, + 0.0034773696679621935, + 0.07853522151708603, + 0.0075409021228551865, + -0.004942776169627905, + -0.014817766845226288, + -0.01888393983244896, + 0.06767801195383072, + 0.02494623325765133, + -0.00282519799657166, + -0.009463092312216759, + 0.02849489264190197, + -0.05162455141544342, + 0.027164146304130554, + -0.050483908504247665, + 0.04862508922815323, + 0.13358169794082642, + 0.035190876573324203, + 0.07718335092067719, + -0.014437553472816944, + 0.04214033484458923, + -0.04908979311585426, + 0.036078039556741714, + -0.020415354520082474, + -0.005708483979105949, + -0.05284968391060829, + -0.01783835142850876, + 0.00024753485922701657, + 0.020066825672984123, + 0.017553191632032394, + 0.02262270636856556, + 0.050864122807979584, + 0.0193908903747797, + -0.054243799299001694, + 0.002042327541857958, + -0.0013809144729748368, + 0.014405868947505951, + 0.09277210384607315, + -0.028917351737618446, + -0.04148552194237709, + 0.043386589735746384, + 0.014638221822679043, + -0.04824487492442131, + 0.042119212448596954, + -0.03542323037981987, + -0.09716568142175674, + 0.06717105954885483, + -0.048498351126909256, + -0.023911207914352417, + -0.012863892130553722, + 0.11989400535821915, + 0.013856671750545502, + 0.0015314157353714108, + 0.039415471255779266, + 0.028178049251437187, + 0.030226977542042732, + -0.05538443848490715, + -0.04268953204154968, + -0.041760120540857315, + 0.0459635928273201, + -0.021989017724990845, + 0.0028463208582252264, + 0.006178470328450203, + -0.03261387348175049, + 0.02955104224383831, + 0.046048086136579514, + 0.017489822581410408, + -0.0430697463452816, + 0.034282587468624115, + -0.006722386926412582, + 0.07224057614803314, + 0.010297450236976147, + -0.05061064660549164, + 0.006738229189068079, + 0.07659190893173218, + -0.0013743136078119278, + 0.013677125796675682, + -0.04201359674334526, + 0.005687361117452383, + -0.037493281066417694, + 0.033205315470695496, + -0.04254167154431343, + 0.05534219369292259, + -0.04304862394928932, + -0.03151547908782959, + 0.013413089327514172, + 0.0009762775152921677, + -0.0003110688121523708, + 0.031409863382577896, + -0.013856671750545502, + 0.02919195219874382, + -0.01818688213825226, + -0.017859475687146187, + -0.018292495980858803, + 0.08770259469747543, + 0.002390856621786952, + 0.0623127743601799, + 0.03343766927719116, + -0.0021822673734277487, + 0.03383900597691536, + 0.015155734494328499, + 0.023573240265250206, + -0.05115984380245209, + 0.05846839398145676, + -0.009600392542779446, + -0.02792457304894924, + -0.02974114939570427, + -0.034831784665584564, + -0.029128583148121834, + 0.032656118273735046, + -0.021313082426786423, + 0.07443736493587494, + 0.00444374606013298, + 0.005909152328968048, + 0.0184931643307209, + 0.029783394187688828, + -0.012589292600750923, + 0.058299411088228226, + 0.008850526064634323, + 0.034599434584379196, + 0.07967586070299149, + 0.04490744322538376, + -0.038549430668354034, + 0.019010677933692932, + 0.047104235738515854, + 0.008882210589945316, + 0.009869709610939026, + -0.046935249119997025, + -0.03930985555052757, + 0.05327214300632477, + 0.025178585201501846, + -0.02264382876455784, + -0.009732410311698914, + 0.06683309376239777, + -0.046893004328012466, + 0.010202396661043167, + -0.010910016484558582, + 0.041570015251636505, + 0.03557109087705612, + -0.03728204965591431, + -0.029149705544114113, + -0.1079806461930275, + -0.007187092211097479, + 0.04452723264694214, + -0.04731546342372894, + -0.06725554913282394, + 0.019485944882035255, + -0.015314157120883465, + -0.014627659693360329, + 0.016602657735347748, + -0.03204355388879776, + 0.061172135174274445, + 0.04769567772746086, + -0.002373694209381938, + 0.025368692353367805, + 0.00560286920517683, + 0.0855480507016182, + 0.05407481640577316, + 0.03546547517180443, + -0.050314925611019135, + -0.022559337317943573, + 0.061214379966259, + -0.002132100285962224, + -0.05132883042097092, + -0.0010158830555155873, + -0.053145404905080795, + -0.02691067010164261, + -0.06945233792066574, + 0.04714648053050041, + 0.00032757112057879567, + -0.028769491240382195, + 0.007245180197060108, + -0.0362892709672451, + 0.012589292600750923, + -0.05918657407164574, + 0.009283547289669514, + -0.014828328043222427, + -0.03679622337222099, + 0.015250788070261478, + 0.023573240265250206, + -0.10333359241485596, + -0.06573469936847687, + -0.022707197815179825, + 0.06455180794000626, + 0.031050773337483406, + 0.012050657533109188, + 0.052427224814891815, + 0.03601467236876488, + -0.06218603998422623, + 0.011923919431865215, + -0.0011861870298162103, + -0.023805592209100723, + -0.00423515634611249, + 0.12082341313362122, + -0.07980260252952576, + -0.006695983000099659, + -0.08073201030492783, + 0.0697903111577034, + 0.02384783886373043, + 0.062228284776210785, + -0.04554113373160362, + -0.00800560787320137, + -0.07097319513559341, + -0.007657078560441732, + -0.014733275398612022, + -0.011057876981794834, + 0.01460653729736805, + -0.07701436430215836, + 0.06615715473890305, + 0.02264382876455784, + -0.03966894745826721, + 0.018123513087630272, + 0.0067857555113732815, + -0.010107343085110188, + 0.08854751288890839, + 0.05787695199251175, + -0.04680851101875305, + -0.02545318566262722, + 0.034979645162820816, + 0.027206391096115112, + 0.06653737276792526, + 0.005666237790137529, + -0.0009320512763224542, + 0.03491627797484398, + 0.01994008757174015, + 0.03225478157401085, + 0.011966165155172348, + 0.08521007746458054, + -0.01602177694439888, + -0.04541439563035965, + -0.029297566041350365, + -0.0402815118432045, + 0.01441643014550209, + -0.03700745105743408, + -0.033057454973459244, + 0.046893004328012466, + 0.05238497629761696, + -0.02528420090675354, + 0.010920577682554722, + 0.003891908098012209, + -0.014733275398612022, + -0.016296375542879105, + -0.033754512667655945, + 0.0017835712060332298, + -0.026129119098186493, + 0.07739458233118057, + 0.08529457449913025, + -0.021672172471880913 + ] + }, + { + "id": "008b935f-2b5b-432b-9f7d-c3613923bcaf", + "productId": "92048b4e-7f6e-4c0f-bf4b-f2b4c5a66323", + "category": "Media", + "docType": "customerRating", + "userName": "denise24", + "reviewDate": "2021-08-27T22:49:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "product", + "name": "Basic Filter + (Silver)", + "description": "This Basic Filter + (Silver) is the simplest, least expensive way to create a filter with silver filters and requires no complex setup. You simply make a simple filter with all of the necessary components:\n\nAdd the filter to the list of filters you want to apply after you put the silver components in the filter\n\nMake a simple filter by choosing the set of filters below:\n\nClick on the filter you want to apply filter", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-12-18T04:38:26", + "price": 1024.86, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-01-09T09:12:26", + "newPrice": 1099.04 + }, + { + "priceDate": "2021-12-05T09:12:26", + "newPrice": 1076.73 + }, + { + "priceDate": "2022-10-31T09:12:26", + "newPrice": 1104.35 + }, + { + "priceDate": "2025-03-13T09:12:26", + "newPrice": 1024.86 + } + ], + "descriptionVector": [ + 0.03681740537285805, + -0.015952447429299355, + -0.015001639723777771, + 0.02145921252667904, + 0.009745784103870392, + -0.029818400740623474, + -0.04640471935272217, + 0.032433122396469116, + -0.0135490158572793, + 0.05197751149535179, + -0.047038592398166656, + -0.046880125999450684, + 0.03047868423163891, + -0.026332104578614235, + -0.015358192846179008, + 0.04056781530380249, + -0.08647072315216064, + -0.0139848031103611, + -0.02654339373111725, + -0.008088472299277782, + 0.0775965079665184, + 0.0029300078749656677, + -0.09138322621583939, + 0.025236032903194427, + -0.02157806232571602, + 0.017537128180265427, + -0.0003264276310801506, + 0.0371079295873642, + -0.03145590424537659, + 0.03964341804385185, + 0.08953443169593811, + 0.046642422676086426, + -0.0009937265422195196, + 0.07315940409898758, + -0.050366420298814774, + -0.04067346081137657, + 0.04072628170251846, + -0.007976223714649677, + -0.020046206191182137, + 0.09196427464485168, + 0.014697909355163574, + 0.014777143485844135, + -0.044767215847969055, + 0.0273885577917099, + -0.0479365773499012, + -0.007659288123250008, + -0.05947833135724068, + -0.006371735129505396, + -0.03827003017067909, + -0.03679099306464195, + 0.04217890650033951, + -0.03333110734820366, + 0.01797291450202465, + 0.005780781619250774, + -0.007065033074468374, + 0.054064009338617325, + -0.029527876526117325, + 0.1580454409122467, + -3.830159766948782e-05, + -0.006196760106831789, + 0.013278299942612648, + -0.02477383427321911, + 0.02807525172829628, + 0.04645754396915436, + -0.05282267555594444, + -0.03047868423163891, + -0.027414968237280846, + -0.02892041578888893, + -0.0034004596527665854, + 0.004281938076019287, + -0.018976546823978424, + -0.020402759313583374, + 0.00753383431583643, + 0.04553314670920372, + 0.009692961350083351, + 0.11441391706466675, + 0.07611747831106186, + -0.04489927366375923, + 0.01723339781165123, + 0.016388235613703728, + -0.051951102912425995, + -0.049204323440790176, + -0.06032349541783333, + 0.013271696865558624, + -0.01072960626333952, + -0.008808181621134281, + 0.04775169864296913, + -0.05773518607020378, + -0.004017824772745371, + -0.006054799072444439, + 0.05482993647456169, + 0.013892363756895065, + 0.08404088020324707, + 0.03343675285577774, + 0.025209622457623482, + 0.07458561658859253, + -0.012188832275569439, + -0.005186526570469141, + -0.09550339728593826, + -0.009270379319787025, + 0.0025932632852345705, + -0.021525239571928978, + -0.016797611489892006, + 0.011825676076114178, + -0.007989429868757725, + 0.0393793061375618, + 0.06111583486199379, + -0.045902904123067856, + -0.04611419513821602, + -0.0547771155834198, + -0.023717381060123444, + -0.05810494348406792, + 0.005331788677722216, + 0.029527876526117325, + 0.06782431900501251, + -0.02692635916173458, + -0.09941227734088898, + -0.014314944855868816, + 0.06983157992362976, + 0.02836577594280243, + 0.030003279447555542, + 0.010425875894725323, + 0.024694601073861122, + -0.02697918191552162, + -0.05184545740485191, + 0.0017348947003483772, + 0.0022020454052835703, + -0.018527554348111153, + 0.042310964316129684, + 0.02230437472462654, + -0.04986460506916046, + -0.07780779898166656, + -0.010828648693859577, + -0.015992065891623497, + -0.04389564320445061, + 0.02892041578888893, + -0.010538123548030853, + 0.07881142944097519, + -0.11261794716119766, + 0.07199730724096298, + -0.11219536513090134, + -0.03544401377439499, + 0.055199697613716125, + 0.045955728739500046, + 0.06602834165096283, + -0.06671503931283951, + -0.016903256997466087, + 0.05905575305223465, + -0.04534826800227165, + -0.03861337527632713, + 0.007322543300688267, + -0.06185535341501236, + 0.020231084898114204, + -0.02905247174203396, + -0.005678437650203705, + 0.02054802142083645, + 0.007606465369462967, + 0.004328157752752304, + 0.031086144968867302, + -0.028550656512379646, + 0.0008290684199891984, + -0.058210588991642, + -0.0742158591747284, + -0.014513029716908932, + -0.0135490158572793, + 0.0930207297205925, + 0.008537464775145054, + 0.049151498824357986, + -0.08013200014829636, + 0.028286542743444443, + -0.003895672271028161, + -0.033806513994932175, + 0.0162693839520216, + -0.010069322772324085, + -0.04724988341331482, + 0.017669184133410454, + -0.02544732391834259, + -0.023941878229379654, + -0.009283585473895073, + -0.10411349684000015, + -0.021921411156654358, + -0.0064278594218194485, + -0.04648395627737045, + -0.03314622864127159, + 0.006833933759480715, + -0.021776147186756134, + -0.004083853214979172, + -0.017074929550290108, + 0.0185539647936821, + 0.0485176257789135, + 0.00849784817546606, + -0.018329467624425888, + 0.037979502230882645, + 0.03642123565077782, + 0.05889728292822838, + -0.0342290922999382, + -0.06053478643298149, + -0.05963680148124695, + -0.03177284076809883, + -0.04273354634642601, + 0.008695933036506176, + 0.015041257254779339, + 0.009389230981469154, + -0.013654661364853382, + -0.01809176616370678, + 0.010478698648512363, + 0.07543078064918518, + -0.009032677859067917, + -0.020812133327126503, + -0.03132384642958641, + 0.01401121448725462, + 0.030161747708916664, + 0.015569483861327171, + -0.0013808177318423986, + 0.06058760732412338, + -0.007236706558614969, + -0.0530867874622345, + -0.05810494348406792, + -0.05044565349817276, + 0.015675129368901253, + 0.02573784813284874, + 0.004380980506539345, + -0.02202705666422844, + 0.010848456993699074, + -0.0014220854500308633, + -0.04320894926786423, + -0.017444688826799393, + 0.06486624479293823, + 0.07231424003839493, + 0.03330469876527786, + -0.0713634341955185, + 0.02534167841076851, + -0.04038293659687042, + 0.037292808294296265, + -0.06254205107688904, + -0.026490570977330208, + -0.015358192846179008, + -0.06285898387432098, + -0.0010605802526697516, + -0.008900620974600315, + 0.01967644691467285, + 0.005642122123390436, + -0.07352916151285172, + -0.048808153718709946, + 0.057154133915901184, + 0.002230107318609953, + 0.013430165126919746, + -0.03895672410726547, + 0.006619341671466827, + -0.010049514472484589, + -0.023836232721805573, + 0.06576423346996307, + -0.04643113166093826, + -0.01751071773469448, + -0.027943195775151253, + 0.06264769285917282, + 0.008894017897546291, + -0.0422053188085556, + -0.048808153718709946, + -0.012855718843638897, + -0.018567170947790146, + 0.035523250699043274, + 0.03718716278672218, + -0.01543742697685957, + -0.03370086848735809, + -0.10527559369802475, + 0.023928672075271606, + -0.11346310377120972, + -0.0690392404794693, + 0.10068002343177795, + 0.05034001171588898, + 0.04518979787826538, + 0.006592930294573307, + 0.007896989583969116, + 0.038719020783901215, + -0.020983807742595673, + -0.06951463967561722, + 0.018738843500614166, + 0.028339365497231483, + 0.02196102775633335, + 0.07791344821453094, + 0.04648395627737045, + 0.024971919134259224, + 0.03177284076809883, + 0.07094085216522217, + 0.0007853246061131358, + -0.03893031179904938, + -0.006563217379152775, + -0.08235055208206177, + 0.010280612856149673, + -0.004456913098692894, + -0.01792009361088276, + 0.01549024973064661, + -0.007137664128094912, + 0.09576751291751862, + 0.04495209828019142, + 0.0439484678208828, + 0.012254861183464527, + -0.027414968237280846, + 0.07854732125997543, + -0.0644436627626419, + -0.03438756242394447, + -0.03866619989275932, + -0.018223823979496956, + -0.05609768256545067, + 0.08472757041454315, + 0.01494881696999073, + -0.03063715249300003, + -0.0696202889084816, + -0.04125450924038887, + 0.06956746429204941, + -0.04331459477543831, + 0.042812779545784, + 0.0011191804660484195, + 0.005807192996144295, + -0.018237028270959854, + 0.02362494170665741, + -0.016018476337194443, + -0.029026059433817863, + 0.05010230839252472, + -0.046140607446432114, + -0.015278958715498447, + 0.0004787055077031255, + 0.0747440829873085, + 0.024034317582845688, + -0.012109598144888878, + -0.061591241508722305, + -0.045665204524993896, + -0.012347300536930561, + -0.006470777560025454, + -0.004522941540926695, + -0.013733895495533943, + -0.06465495377779007, + -0.000895509438123554, + -0.004133374430239201, + -0.09592597931623459, + 0.021327154710888863, + 0.02960710972547531, + -0.07453279197216034, + -0.03922083601355553, + -0.027520613744854927, + -5.153306119609624e-05, + 0.04878174141049385, + -0.034097038209438324, + 0.06396826356649399, + -0.00962032936513424, + -0.008821386843919754, + -0.05498840659856796, + 0.023875849321484566, + -0.018501142039895058, + 0.0017315932782366872, + -0.035232726484537125, + -0.009924059733748436, + -0.07527231425046921, + 0.1289929747581482, + -0.053615015000104904, + -0.030901264399290085, + 0.01889731176197529, + 0.058633171021938324, + 0.015226135961711407, + 0.04854403808712959, + -0.048649683594703674, + 0.02892041578888893, + -0.013060406781733036, + -0.08092433959245682, + 0.10448325425386429, + -0.04381641000509262, + 0.04434463754296303, + 0.003621654585003853, + 0.012175627052783966, + -0.10258163511753082, + 0.04857045039534569, + -0.007811153307557106, + -0.06180252879858017, + 0.033172640949487686, + -0.07400456815958023, + 0.06296462565660477, + -0.010888073593378067, + 0.014803554862737656, + 0.02960710972547531, + 0.013654661364853382, + 0.04561237990856171, + 0.01201055571436882, + -0.04928355664014816, + 0.08721023797988892, + -0.05699566751718521, + -0.11547037214040756, + 0.04046216979622841, + -0.038243617862463, + -0.04149221256375313, + -0.033119816333055496, + 0.03465167433023453, + -0.020587638020515442, + 0.021921411156654358, + -0.004899302963167429, + 0.020785722881555557, + 0.04215249419212341, + 0.03121820092201233, + 0.09439412504434586, + 0.011561563238501549, + 0.03998676687479019, + -0.047619640827178955, + -0.04067346081137657, + -0.04936278983950615, + -0.039062369614839554, + -0.01838229037821293, + 0.03863978758454323, + 0.03068997524678707, + 0.06465495377779007, + -0.07786062359809875, + 0.05895010754466057, + -0.09962356835603714, + -0.010102336294949055, + -0.02841859869658947, + 0.017154164612293243, + 0.06027067452669144, + -0.027177266776561737, + 0.02190820500254631, + 0.09603162109851837, + 0.012122804298996925, + 0.008326174691319466, + 0.026120813563466072, + 0.01712775230407715, + 0.03330469876527786, + 0.026318898424506187, + 0.0027335735503584146, + -0.019412333145737648, + 0.020812133327126503, + 0.04822710156440735, + 0.003898973809555173, + -0.045269034802913666, + 0.03172001615166664, + -0.04199402779340744, + 0.003453282406553626, + 0.002251566620543599, + 0.007870578207075596, + 0.07949812710285187, + 0.04896662011742592, + -0.09397154301404953, + -0.02960710972547531, + -0.01620335504412651, + -0.03407062590122223, + -0.0216837078332901, + 0.01133046392351389, + -0.05747107043862343, + -0.04886097460985184, + -0.03866619989275932, + 0.04405411332845688, + -0.03988112136721611, + -0.0064443666487932205, + -0.026952769607305527, + -0.048993032425642014, + -0.054407354444265366, + -0.0256718210875988, + 0.010201379656791687, + 0.00025689153699204326, + 0.0015681731747463346, + 0.05984809249639511, + 0.06037632003426552, + 0.038877490907907486, + -0.08198079466819763, + 0.05168698728084564, + 0.013535810634493828, + -0.008035649545490742, + 0.04862327128648758, + -0.012538782320916653, + -0.04769887775182724, + 0.027230089530348778, + 0.010822045616805553, + 0.024338047951459885, + -0.0439484678208828, + -0.047619640827178955, + 0.02499833144247532, + 0.034493207931518555, + -0.024721011519432068, + 0.03206336498260498, + -0.04033011198043823, + -0.019544389098882675, + 0.09576751291751862, + -0.009250571019947529, + -0.01951797865331173, + 0.0013354233233258128, + -0.07294811308383942, + 0.0924396812915802, + 0.03742486611008644, + 0.024721011519432068, + 0.05049847811460495, + 0.006985798943787813, + 0.043393827974796295, + 0.08515015244483948, + -0.01249916572123766, + 0.034730907529592514, + 0.019782092422246933, + 0.04421257972717285, + 0.02493230253458023, + -0.057893652468919754, + 0.010234393179416656, + -0.0525057390332222, + 0.03760974481701851, + 0.05313961207866669, + -0.023928672075271606, + 0.001782765262760222, + -0.03771539032459259, + -0.027071621268987656, + -0.0033459863625466824, + 0.016573114320635796, + -0.0012083187466487288, + -0.0810299813747406, + 0.01257839985191822, + 0.0650247111916542, + -0.013786718249320984, + 0.0256718210875988 + ] + }, + { + "id": "654968fe-83d7-4c4a-8679-819ea34d9ec4", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "davidball", + "reviewDate": "2021-05-06T17:40:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "63923ea4-53f1-481b-a033-88212bea6045", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "craigavila", + "reviewDate": "2021-02-02T04:07:27", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4f0015d4-8c95-4916-8119-a9249b2bcad7", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "sherry37", + "reviewDate": "2021-09-13T18:45:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c9d24e8e-e487-48c3-bed4-181f5e488f6d", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "brownryan", + "reviewDate": "2021-10-29T02:08:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5d2ad5a6-48c5-44cf-9b77-cb88cdc92051", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "jonesnancy", + "reviewDate": "2021-11-26T21:51:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5089ceb9-a846-45cf-bd0d-a01c1c85df1c", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "davisdavid", + "reviewDate": "2021-05-26T00:36:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "750d7970-3f70-4cff-b571-9107893c8b5b", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "rsullivan", + "reviewDate": "2021-09-11T05:26:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0539ef74-0eda-4196-b7b5-83d4cdc0cfdf", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "cochrantina", + "reviewDate": "2022-02-10T05:45:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "94d0a4cb-0229-45bc-a2ec-811bd0505794", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "webernorma", + "reviewDate": "2022-10-31T20:09:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a52b23f2-9942-4e89-8f96-b07333df6bb4", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "mark10", + "reviewDate": "2021-01-09T09:12:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "98c6207b-fdbc-49e4-8692-348cd7984631", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "kathycollins", + "reviewDate": "2022-10-22T23:11:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b8968f3b-5eb8-4910-a5fc-f947e77596bd", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "kristin81", + "reviewDate": "2021-05-10T14:42:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b9ff2965-a7d2-427d-9e09-066d62ff3639", + "productId": "088fd9fc-042e-4371-9cd8-5b3ae91fd2bf", + "category": "Other", + "docType": "customerRating", + "userName": "john53", + "reviewDate": "2022-01-16T08:45:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5a4724fa-61e2-459c-a419-3b112bffab63", + "productId": "5a4724fa-61e2-459c-a419-3b112bffab63", + "category": "Media", + "docType": "product", + "name": "Basic Speaker 3000 (Steel)", + "description": "This Basic Speaker 3000 (Steel) is a basic speaker that is fitted with a speaker box to allow full sound performance, a built-in headphone jack and headphone jack to provide music playback and remote control when you need it most. It plugs directly into your Bluetooth-enabled smart speaker by plugging into your PC's USB port and using a standard Ethernet cable.\n\nWe had seen a similar system before on the M5 and we were quick to note that the basic", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-07-30T21:39:17", + "price": 861.6, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-01-02T23:39:02", + "newPrice": 897.53 + }, + { + "priceDate": "2021-10-26T23:39:02", + "newPrice": 888.36 + }, + { + "priceDate": "2022-08-19T23:39:02", + "newPrice": 921.53 + }, + { + "priceDate": "2023-08-17T23:39:02", + "newPrice": 861.6 + } + ], + "descriptionVector": [ + 0.005559143144637346, + 0.0176782738417387, + -0.03221198171377182, + 0.016581639647483826, + -0.022910408675670624, + 0.015736041590571404, + -0.03255550563335419, + 0.026649534702301025, + 0.013133186846971512, + 0.03533012047410011, + -0.008257788605988026, + -0.04365397244691849, + -0.015630342066287994, + -0.052849844098091125, + -0.018365321680903435, + 0.010140564292669296, + -0.032000582665205, + 0.01675340160727501, + 0.025275439023971558, + -0.0018282743403688073, + 0.03818401321768761, + -0.0823400616645813, + -0.03686276823282242, + 0.01948838122189045, + -0.08223436027765274, + -0.0008546810713596642, + 0.013001061975955963, + 0.013496529310941696, + -0.018180346116423607, + -0.00827100034803152, + 0.03858038783073425, + 0.04669283702969551, + -0.04756486043334007, + 0.057394932955503464, + -0.05898042768239975, + 0.010173595510423183, + -0.0016391710378229618, + -0.05100009962916374, + 0.022831132635474205, + -0.008845742791891098, + 0.021932685747742653, + 0.04124930500984192, + 0.05665503442287445, + -0.05776488035917282, + 0.01794252172112465, + 0.06537526100873947, + -0.024588391184806824, + 0.040747229009866714, + 0.0062296753749251366, + 0.010748337022960186, + -0.003801885759457946, + -0.023055745288729668, + -0.044948793947696686, + 0.06320841610431671, + 0.030573636293411255, + -0.00046945526264607906, + 0.05263844504952431, + 0.13223031163215637, + -0.012954818084836006, + -0.03133995831012726, + 0.07980326563119888, + -0.03990163281559944, + -0.013582410290837288, + -0.025539686903357506, + -0.0704488456249237, + 0.06870479881763458, + -0.014969718642532825, + 0.055228088051080704, + -0.026411710307002068, + 0.06627370417118073, + -0.029173115268349648, + -0.027561195194721222, + 0.03326897695660591, + 0.057236380875110626, + 0.04973170533776283, + -0.06616800278425217, + 0.024786576628684998, + 0.12240023910999298, + 0.0033493589144200087, + 0.01312658004462719, + -0.018418170511722565, + 0.038342561572790146, + -0.04753843694925308, + 0.007491465657949448, + 0.01721583679318428, + -0.016330601647496223, + -0.039584532380104065, + -0.07721362262964249, + -0.008647555485367775, + 0.10797223448753357, + 0.0040628318674862385, + 0.08017321676015854, + 0.07858771830797195, + 0.02764046937227249, + 0.07906337082386017, + 0.06009027361869812, + -0.14005209505558014, + 0.013648472726345062, + -0.12049764394760132, + -0.030547210946679115, + 0.10649243742227554, + -0.009546003304421902, + -0.06727785617113113, + -0.04323117434978485, + 0.0037985825911164284, + 0.04217417538166046, + 0.06616800278425217, + 0.010807793587446213, + -0.0001278924901271239, + 0.004079347476363182, + 0.002550004981458187, + -0.01113810483366251, + 0.04526589438319206, + -0.01116453018039465, + 0.035039447247982025, + 0.03155135735869408, + -0.037338417023420334, + -0.05861048027873039, + 0.005212315823882818, + 0.06088302284479141, + 0.020228277891874313, + -0.017929309979081154, + 0.006758173927664757, + -0.024561965838074684, + 0.02441662922501564, + -0.022963257506489754, + 0.025460412725806236, + 0.02349175699055195, + 0.024324141442775726, + 0.021232426166534424, + -0.09227582812309265, + 0.0893162414431572, + -0.015088630840182304, + -0.010021652095019817, + 0.01984511688351631, + 0.08524680137634277, + -0.03324255347251892, + 0.034088149666786194, + -0.004548389930278063, + -0.014718681573867798, + -0.005374168511480093, + 0.038157589733600616, + 0.02449590340256691, + 0.08662089705467224, + -0.006576502695679665, + 0.004118985030800104, + -0.06933899968862534, + 0.05892757698893547, + -0.019343042746186256, + 0.032608356326818466, + -0.06875764578580856, + -0.09000328928232193, + 0.03567364439368248, + -0.05771202966570854, + -0.004974491894245148, + -0.001782030682079494, + -0.10622818768024445, + 0.04212132841348648, + -0.031921304762363434, + 0.05919182673096657, + 0.012756631709635258, + -0.050524450838565826, + -0.03141923248767853, + -0.002084265695884824, + 0.013522953726351261, + 0.055069539695978165, + 0.09153593331575394, + 0.08757219463586807, + -0.07060739398002625, + 0.01892024464905262, + -0.020149003714323044, + -0.04024515673518181, + -0.013622047379612923, + 0.032899029552936554, + -0.0456886924803257, + -0.06521671265363693, + 0.056179385632276535, + 0.032978303730487823, + 0.01440158300101757, + 0.0025830361992120743, + -0.025975698605179787, + 0.03480162471532822, + -0.019171280786395073, + 0.0043700216338038445, + 0.05004880204796791, + 0.0911131352186203, + 0.026134248822927475, + 0.008574887178838253, + -0.05224207043647766, + -0.02111351303756237, + 0.021747712045907974, + 0.04101147875189781, + 0.007940689101815224, + 0.008152089081704617, + -0.0042577157728374004, + -0.05697213485836983, + -0.006024882197380066, + 0.037364840507507324, + -0.029675187543034554, + -0.03799903765320778, + 0.04452599585056305, + 0.09692661464214325, + 0.09623956680297852, + -0.03295188024640083, + -0.04153997823596001, + -0.032872602343559265, + 0.007709471043199301, + 0.08249861001968384, + -0.028750315308570862, + 0.02387491799890995, + 0.016819464042782784, + -0.03585861995816231, + -0.04983740299940109, + -0.012670750729739666, + 0.0797504186630249, + 0.01794252172112465, + -0.009790433570742607, + -0.027191245928406715, + -0.006084338296204805, + -0.029331663623452187, + 0.06215141713619232, + -0.04085293039679527, + 0.010787975043058395, + 0.005010826047509909, + -0.07663227617740631, + 0.013080337084829807, + 0.0771607756614685, + -0.05253274738788605, + 0.06590376049280167, + 0.036070019006729126, + -0.02901456505060196, + 0.08582814782857895, + 0.012809481471776962, + 0.013740959577262402, + 0.009176054038107395, + -0.02912026457488537, + 0.054858140647411346, + -0.016766613349318504, + -0.10723233968019485, + 0.04325759783387184, + -0.05596798658370972, + 0.03205342963337898, + -0.05697213485836983, + -0.03326897695660591, + 0.0013683155411854386, + 0.0006461719167418778, + 0.09206443279981613, + -0.05234777182340622, + -0.07155869156122208, + -0.0513700507581234, + -0.07113589346408844, + 0.05919182673096657, + -0.02782544307410717, + 0.03308400139212608, + -0.0013311554212123156, + 0.018087860196828842, + 0.027111969888210297, + -0.08799499273300171, + 0.010259476490318775, + -0.09106028079986572, + -0.026054974645376205, + 0.004528570920228958, + -0.04793481156229973, + -0.0005660713650286198, + -0.05824052914977074, + -0.045160192996263504, + 0.02687414549291134, + -0.035039447247982025, + 0.0025169739965349436, + 0.038395412266254425, + 0.041698526591062546, + -0.008145482279360294, + 0.007821776904165745, + 0.008515431545674801, + -0.02178734913468361, + -0.00640143733471632, + -0.07113589346408844, + -0.04323117434978485, + -0.05152859911322594, + -0.0524006225168705, + 0.08117736130952835, + 0.00955260917544365, + 0.060777321457862854, + -0.048463307321071625, + -0.010761549696326256, + -0.057553481310606, + 0.03332182765007019, + 0.04597936570644379, + 0.018722057342529297, + -0.0018134103156626225, + -0.02070392668247223, + 0.04460527002811432, + -0.03776121512055397, + 0.07034314423799515, + 0.04706278815865517, + 0.05237419530749321, + -0.03747054189443588, + -0.037444114685058594, + 0.02436377853155136, + 0.04756486043334007, + -0.0043237777426838875, + -0.019990453496575356, + -0.032819755375385284, + -0.07673797756433487, + 0.0005400593508966267, + 0.005654933396726847, + 0.006910117343068123, + 0.052929118275642395, + -0.023016108199954033, + -0.06347266584634781, + 0.05311409384012222, + 0.030547210946679115, + -0.048516158014535904, + -0.06828200072050095, + 0.08551105111837387, + 0.009929164312779903, + 0.048384033143520355, + 0.0191052183508873, + 0.02152309939265251, + 0.050683002918958664, + -0.04254412651062012, + -0.03667779266834259, + -0.06569235771894455, + 0.02682129666209221, + 0.02224978432059288, + -0.029331663623452187, + 0.0021850108169019222, + 0.004974491894245148, + 0.01555106695741415, + -0.010900280438363552, + 0.03984878212213516, + -0.004720151890069246, + 0.02565860003232956, + -0.04095863178372383, + 0.04891253262758255, + -0.029595913365483284, + -0.0010264430893585086, + -0.0013435421278700233, + -0.014163758605718613, + 0.006375012453645468, + 0.06135867163538933, + 0.08138876408338547, + 0.009902739897370338, + -0.06595660746097565, + 0.009869708679616451, + -0.04368039593100548, + 0.010543543845415115, + -0.016779825091362, + -0.006870479788631201, + -0.10057325661182404, + 0.0016961497021839023, + -0.03131353482604027, + 0.0021751015447080135, + -0.056232236325740814, + 0.028248243033885956, + -0.06960324943065643, + -0.07335558533668518, + -0.020426465198397636, + 0.03902960941195488, + 0.05591513589024544, + -0.02782544307410717, + -0.04257054999470711, + 0.010127351619303226, + 0.06912759691476822, + 0.01450728252530098, + 0.05255917087197304, + -0.015392517670989037, + -0.015960652381181717, + -0.049520306289196014, + 7.777804421493784e-05, + -0.06336696445941925, + 0.01615883968770504, + -0.05559803545475006, + 0.016991226002573967, + -0.02173449844121933, + 0.02785186842083931, + 0.007233822718262672, + -0.03213270753622055, + -0.02113993838429451, + 0.006632655393332243, + 0.034035298973321915, + 0.01441479567438364, + 0.05432964116334915, + -0.0049777948297560215, + 0.008845742791891098, + 0.02227620966732502, + -0.05855762958526611, + 0.032899029552936554, + 0.02893529087305069, + 0.05528093874454498, + 0.046349313110113144, + 0.0069563607685267925, + -0.09676806628704071, + 0.11574116349220276, + 0.02988658845424652, + -0.0019257162930443883, + -0.03207985684275627, + 0.023319995030760765, + -0.0738312304019928, + -0.02612103521823883, + -0.029490213841199875, + 0.028063267469406128, + 0.010378388687968254, + -0.020096153020858765, + -0.059561774134635925, + -0.04008660838007927, + -0.050683002918958664, + -0.02452232874929905, + -0.011389141902327538, + -0.03337467834353447, + 0.029516639187932014, + -0.10982197523117065, + 0.0036136081907898188, + -0.011408960446715355, + -0.01878811977803707, + 0.02325393259525299, + -0.04571511596441269, + 0.04368039593100548, + 0.03194773197174072, + -0.046032216399908066, + -0.015656767413020134, + -0.007868020795285702, + -0.008006751537322998, + 0.03017726168036461, + 0.01835210807621479, + -0.014758319593966007, + 0.018035009503364563, + -0.05438249185681343, + 0.02449590340256691, + -0.028248243033885956, + -0.07779496908187866, + -0.05639078468084335, + -0.03860681131482124, + 0.0037259140517562628, + 0.014639407396316528, + -0.03807831183075905, + 0.013833447359502316, + 0.01889381930232048, + -0.1133100688457489, + 0.0174272358417511, + -0.02630601078271866, + 0.046085063368082047, + -0.004125590901821852, + 0.05464674159884453, + -0.09460122138261795, + -0.059561774134635925, + 0.0018464414170011878, + 0.011970490217208862, + 0.05102652683854103, + 0.05570373684167862, + -0.004703636281192303, + 0.00012190559937153012, + -0.0851939469575882, + 0.050498027354478836, + 0.037285566329956055, + -0.0366513691842556, + -0.016964800655841827, + -0.02211765944957733, + 0.015471791848540306, + -0.001803500927053392, + -0.08059601485729218, + 0.04915035516023636, + 0.07879912108182907, + 0.06796490401029587, + -0.02557932585477829, + -0.0005945607554167509, + -0.034986596554517746, + -0.007583952974528074, + -0.00304547231644392, + 0.030732184648513794, + -0.0028604979161173105, + -0.07155869156122208, + 0.023623879998922348, + 0.034960173070430756, + -0.013952359557151794, + -0.06643225252628326, + 0.007709471043199301, + -0.0374176912009716, + -0.0166477020829916, + -0.003101625246927142, + -0.029569488018751144, + 0.018061434850096703, + -0.008687193505465984, + -0.011957277543842793, + 0.018233196809887886, + -0.01781039871275425, + -0.038553960621356964, + 0.010946524329483509, + -0.03686276823282242, + 0.01453370787203312, + 0.023650305345654488, + 0.05192497372627258, + -0.028010418638586998, + 0.040535829961299896, + -0.028671041131019592, + -0.04204205051064491, + 0.07340843230485916, + 0.01948838122189045, + 0.0002320438507013023, + 0.11172457039356232, + -0.012730206362903118, + -0.06833484768867493, + 0.032846178859472275, + -0.03884463757276535, + -0.0277461688965559, + 0.022130873054265976, + -0.0343259759247303, + -0.019818691536784172, + -0.017876459285616875, + 0.03223840519785881, + 0.052902694791555405, + -0.021721286699175835 + ] + }, + { + "id": "5b5e3d23-e47f-40cf-9aa4-1ca0ee3415cc", + "productId": "5a4724fa-61e2-459c-a419-3b112bffab63", + "category": "Media", + "docType": "customerRating", + "userName": "christina93", + "reviewDate": "2021-06-26T11:28:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "aef760e9-6214-4264-b7b8-328211e7ff78", + "productId": "5a4724fa-61e2-459c-a419-3b112bffab63", + "category": "Media", + "docType": "customerRating", + "userName": "rknight", + "reviewDate": "2022-08-20T00:34:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7a09befc-06ee-4c9a-9222-566af307f6fc", + "productId": "5a4724fa-61e2-459c-a419-3b112bffab63", + "category": "Media", + "docType": "customerRating", + "userName": "samuelcopeland", + "reviewDate": "2021-01-02T23:39:02", + "stars": 5, + "verifiedUser": true + }, + { + "id": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "productId": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Pro (Black)", + "description": "This Premium Speaker Pro (Black) is designed to create the most attractive speaker appearance, to provide better performance-wise while helping to give you the edge over the competitors.\n\nEach Pro Speaker Pro is built with a Premium Speaker Pro. These Premium Speaker Pro series speakers are perfect for your classroom. A Black premium speaker is a piece of design", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-04-25T14:46:49", + "price": 523.09, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-05-20T21:41:36", + "newPrice": 486.19 + }, + { + "priceDate": "2023-05-29T21:41:36", + "newPrice": 523.09 + } + ], + "descriptionVector": [ + -0.009813771583139896, + 0.0007873896975070238, + -0.04636877402663231, + -0.005870738532394171, + -0.006282891146838665, + 0.03146637976169586, + -0.05857108160853386, + 0.022600233554840088, + -0.008372860960662365, + 0.08245645463466644, + -0.0020347998943179846, + 0.016680816188454628, + 0.0042416006326675415, + -0.0426042303442955, + -0.014759601093828678, + -0.028143197298049927, + 0.024884920567274094, + -0.04595337435603142, + 0.04839383810758591, + -0.017459686845541, + -0.01607070118188858, + -0.11901145428419113, + -0.0551440492272377, + -0.016122624278068542, + -0.05259973928332329, + -0.017174100503325462, + 0.0029791807755827904, + 0.05727296322584152, + 0.02057516947388649, + 0.04569375142455101, + 0.03935893625020981, + 0.04052724316716194, + -0.00034258145024068654, + 0.041124377399683, + -0.05825953558087349, + 0.04089071601629257, + -0.025936396792531013, + -0.02302861213684082, + 0.04436967149376869, + 0.03034999780356884, + 0.022132910788059235, + -0.02720855176448822, + -0.012461932376027107, + -0.03764542192220688, + 0.03954067453742027, + 0.018965503200888634, + -0.019432825967669487, + 0.08437766879796982, + 0.00023548671742901206, + -0.04738130420446396, + 0.010741925798356533, + 0.013149934820830822, + -0.05535174906253815, + 0.04231864586472511, + 0.02408008836209774, + 0.0289220679551363, + -0.009735885076224804, + 0.11122274398803711, + 0.001013343338854611, + -0.05327476188540459, + 0.06651556491851807, + -0.027078740298748016, + -0.030557697638869286, + 0.014616807922720909, + -0.0032095967326313257, + 0.030194222927093506, + -0.05436518043279648, + -0.0029710675589740276, + -0.0320894755423069, + 0.13614660501480103, + 0.043123479932546616, + -0.06563284248113632, + 0.0845334380865097, + 0.06516551971435547, + 0.03863199055194855, + 0.034036651253700256, + 0.09548955410718918, + 0.07757552713155746, + -0.01186479814350605, + -0.011046984232962132, + 0.024002201855182648, + 0.053534384816884995, + 0.016512060537934303, + 0.021418945863842964, + 0.05117180943489075, + -0.0002713877765927464, + -0.005033452529460192, + -0.07814670354127884, + 0.04335714131593704, + 0.016265418380498886, + -0.07035799324512482, + 0.056026771664619446, + 0.05200260505080223, + 0.04013780876994133, + 0.04268211871385574, + 0.014006692916154861, + -0.10634182393550873, + 0.03170004114508629, + -0.09767039865255356, + -0.026338813826441765, + 0.048679422587156296, + -0.08603926002979279, + -0.03935893625020981, + 0.01167657133191824, + 0.019251089543104172, + 0.04857557266950607, + 0.003345899051055312, + -0.0354645811021328, + 0.043097514659166336, + -0.097618468105793, + 0.0059161726385355, + 0.012857858091592789, + 0.045823562890291214, + -0.033335670828819275, + -0.012598235160112381, + 0.002925633452832699, + -0.010884718969464302, + -0.03845025226473808, + 0.05794798582792282, + -8.493545465171337e-05, + -0.04787459224462509, + -0.031232718378305435, + 0.03380299359560013, + 3.803079948738741e-07, + -0.02339208498597145, + -0.011176795698702335, + -0.008684408850967884, + 0.07497929036617279, + 0.03938489779829979, + -0.02336612343788147, + -0.049614068120718, + 0.10608220100402832, + 0.01010584831237793, + 0.0389695018529892, + 0.02196415513753891, + 0.0501592792570591, + 0.05794798582792282, + 0.06828100234270096, + -0.01394178718328476, + 0.006247192621231079, + 0.024274805560708046, + -0.015460585243999958, + 0.013721106573939323, + 0.04878327250480652, + 0.028480708599090576, + -0.011910232715308666, + 0.03593190386891365, + 0.08344302326440811, + -0.007568027824163437, + 0.028714369982481003, + 0.0040988074615597725, + -0.04478507116436958, + 0.018965503200888634, + -0.06059614568948746, + 0.0725388303399086, + -0.019718412309885025, + -0.07020221650600433, + 0.02337910421192646, + -0.02475510910153389, + 0.07851017266511917, + -0.005909682251513004, + -0.04356483742594719, + -0.04146188870072365, + 0.06880025565624237, + -0.017264969646930695, + 0.051431432366371155, + 0.06812523305416107, + -0.018069801852107048, + -0.1352119743824005, + 0.0031317095272243023, + 0.021211247891187668, + -0.04403216019272804, + -0.016135606914758682, + -0.05929802730679512, + 0.001031192485243082, + -0.03845025226473808, + 0.030635584145784378, + -0.018251538276672363, + -0.0010206452570855618, + 0.04353887587785721, + 0.003233936382457614, + 0.050704486668109894, + -0.019290033727884293, + -0.06205003708600998, + 0.03284238278865814, + 0.06340008229017258, + 0.082248754799366, + 0.02540416829288006, + -0.02017275243997574, + 0.024936845526099205, + 0.026286888867616653, + 0.020704980939626694, + 0.010741925798356533, + -0.02545609325170517, + 0.01987418532371521, + -0.03489341214299202, + 0.035412658005952835, + 0.0390993133187294, + -0.015084130689501762, + -0.02026362158358097, + -0.04229268431663513, + 0.07518699020147324, + 0.09341257065534592, + -0.010501774027943611, + -0.05272955074906349, + -0.04296770319342613, + -0.013461483642458916, + 0.08894704282283783, + -0.029726902022957802, + 0.021808382123708725, + -0.05060063675045967, + -0.030064411461353302, + -0.021496834233403206, + -0.0018903842428699136, + 0.04753708094358444, + -0.01307204831391573, + 0.004725149367004633, + -0.003842429257929325, + 0.030116336420178413, + -0.04769285395741463, + 0.049743879586458206, + 0.02204204350709915, + 0.0754985436797142, + -0.029752863571047783, + -0.05831145867705345, + -0.004504469223320484, + 0.0035373715218156576, + -0.05478057637810707, + 0.05080833658576012, + -0.0024404616560786963, + -0.07030607014894485, + 0.007152630016207695, + 0.042708080261945724, + 0.04527835547924042, + 0.03767138347029686, + 0.05124969780445099, + 0.016317343339323997, + -0.018017876893281937, + -0.032998159527778625, + 0.0671386644244194, + -0.0752389207482338, + 0.005383944138884544, + -0.07004644721746445, + 0.0362694151699543, + 0.006750213447958231, + -0.03941086307168007, + 0.10182437300682068, + -0.06854062527418137, + -0.099228136241436, + -0.006409457419067621, + -0.08801239728927612, + 0.046576473861932755, + -0.09512608498334885, + 0.02197713777422905, + -0.045823562890291214, + 0.007788707967847586, + 0.1003185585141182, + -0.10364174097776413, + 0.024962808936834335, + -0.01257876306772232, + -0.03286834806203842, + -0.00437465775758028, + 0.003560088574886322, + -0.002409631386399269, + -0.07918519526720047, + -0.03489341214299202, + 0.0011050229659304023, + -0.04252634570002556, + -0.029467277228832245, + 0.05732489004731178, + 0.0025621603708714247, + -0.00991762150079012, + -0.06423087418079376, + 0.04465525969862938, + 0.07046183943748474, + 0.0761735588312149, + -0.05623447149991989, + 0.03759349510073662, + 0.003566579194739461, + 0.029025917872786522, + 0.0481342151761055, + -0.027442213147878647, + 0.04283789172768593, + 0.010339509695768356, + 0.048627499490976334, + -0.04335714131593704, + -0.011287136003375053, + 0.02437865547835827, + -0.02267812006175518, + -0.050444863736629486, + -0.014798544347286224, + 0.025001751258969307, + 0.0765889585018158, + 0.010248641483485699, + 0.08546808362007141, + 0.006808628793805838, + 0.0071136862970888615, + -0.03185581415891647, + 0.06459435075521469, + 0.06064807251095772, + 0.03253083676099777, + -0.011111889965832233, + -0.0006125494255684316, + -0.029467277228832245, + 0.008736333809792995, + 0.0761735588312149, + -0.09554148465394974, + 0.017952971160411835, + -0.017680367454886436, + -0.046602435410022736, + 0.018199613317847252, + -0.047303419560194016, + -0.060128822922706604, + -0.023976238444447517, + 0.03873584046959877, + 0.013422539457678795, + 0.027338365092873573, + -0.04034550487995148, + -0.014629789628088474, + 0.010917171835899353, + -0.1264886111021042, + -0.012500875629484653, + -0.1508932262659073, + 0.052547816187143326, + -2.4960882001323625e-05, + 0.009223127737641335, + -0.020432377234101295, + -0.08899896591901779, + 0.013422539457678795, + 0.00874282419681549, + -0.04037147015333176, + -0.01816067099571228, + 0.026364775374531746, + -0.05654601752758026, + 0.04089071601629257, + 0.02959708869457245, + -0.033361632376909256, + -0.03600979223847389, + 0.010099357925355434, + -0.022561289370059967, + 0.11589597165584564, + -0.014694695360958576, + -0.004858206491917372, + -0.05275551229715347, + 0.010586151853203773, + -0.09050478786230087, + -0.006484099198132753, + -0.04161766171455383, + -0.025572923943400383, + -0.035386696457862854, + 0.001528533874079585, + -0.025533979758620262, + 0.07212343066930771, + -0.019705431535840034, + 0.0377492718398571, + 0.01324080303311348, + 0.014876431785523891, + 0.0017621951410546899, + 0.06132309138774872, + 0.007470668759196997, + -0.005909682251513004, + 0.0021921966690570116, + 0.04743323102593422, + 0.041306111961603165, + 0.05278147757053375, + 0.054936353117227554, + -0.02128913439810276, + 0.047926515340805054, + -0.0335693322122097, + 0.005335264839231968, + 0.000717615825124085, + 0.03279045969247818, + 0.004579111002385616, + 0.003634730353951454, + -0.002505367621779442, + 0.09107595682144165, + 0.0335693322122097, + -0.013091519474983215, + -0.02298966981470585, + 0.026416700333356857, + 0.0037288437597453594, + 0.04662839695811272, + 0.03445205092430115, + 0.02827300876379013, + 0.07923711836338043, + 0.009132259525358677, + -0.040267620235681534, + -0.04712168127298355, + -0.06449049711227417, + 0.01252683810889721, + -0.02439163625240326, + -0.04870538413524628, + -0.06604824215173721, + 0.045252393931150436, + 0.012332120910286903, + -0.03136252984404564, + -0.0036120133008807898, + 0.06947527080774307, + -0.006672326475381851, + -0.03455590084195137, + 0.021717512980103493, + 0.025897452607750893, + -0.030194222927093506, + -0.07015029340982437, + -0.035698242485523224, + -0.04883519932627678, + 0.023599784821271896, + 0.05685756728053093, + 0.00583828566595912, + -0.01879674755036831, + 0.038865651935338974, + -0.052833400666713715, + -0.04122822731733322, + 0.0632443055510521, + 0.03346548229455948, + 0.03185581415891647, + 0.04255230724811554, + 0.0327644981443882, + 0.061946190893650055, + -0.03268660977482796, + 0.034374162554740906, + -0.02679315395653248, + 0.0044687711633741856, + -0.01817365176975727, + -0.029934599995613098, + 0.0018530633533373475, + 0.06007689982652664, + -0.024988770484924316, + -0.03068750910460949, + 0.015278848819434643, + -0.02236657217144966, + -0.03941086307168007, + -0.02405412495136261, + -0.008463729172945023, + -0.07741975784301758, + 0.016810627654194832, + 0.009313995949923992, + 0.029129767790436745, + -0.012117931619286537, + 0.019121278077363968, + -0.04956214502453804, + -0.07596586644649506, + 0.06402317434549332, + 0.06023267284035683, + -0.056338321417570114, + -0.07866594940423965, + -0.01782315969467163, + -0.014694695360958576, + 0.03920316323637962, + 0.015278848819434643, + -0.03245294839143753, + -0.03245294839143753, + -0.06589246541261673, + 0.045148544013500214, + 0.038865651935338974, + 0.00046610546996816993, + -0.0019244598224759102, + 0.031258679926395416, + -0.028350897133350372, + 0.0404493547976017, + -0.03665884956717491, + 0.0781986266374588, + 0.06630786508321762, + 0.08193720877170563, + -0.059505727142095566, + 0.03839832916855812, + -0.0551440492272377, + 0.030479809269309044, + 0.04320136457681656, + 0.0279095359146595, + 0.007632933557033539, + -0.03912527486681938, + 0.03315393254160881, + -0.018277501687407494, + -0.004579111002385616, + -0.010728945024311543, + 0.009820261970162392, + -0.04024165868759155, + -0.01604473777115345, + -0.02378152124583721, + -0.0459793396294117, + -0.047978438436985016, + -0.0689041018486023, + 0.026611417531967163, + -0.009515204466879368, + 0.01343552116304636, + -0.018420293927192688, + 0.009177694097161293, + 0.000993871595710516, + 0.029493240639567375, + 0.04673224687576294, + 0.07227920740842819, + -0.004686205647885799, + -0.024300768971443176, + 0.026974890381097794, + 0.00030302940285764635, + 0.0467841699719429, + -0.03172600269317627, + 0.05174298211932182, + 0.0328943096101284, + 0.03099905699491501, + -0.06989067047834396, + 0.007912028580904007, + -0.0015204206574708223, + 0.02167857065796852, + 0.005406661424785852, + -0.040968604385852814, + -0.0384242907166481, + 0.0008656824356876314, + 0.05753258988261223, + -0.0013678917894139886, + 0.031128868460655212 + ] + }, + { + "id": "cb8cb999-b492-4f69-a439-0523bf37b8a1", + "productId": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "category": "Media", + "docType": "customerRating", + "userName": "wagnerharold", + "reviewDate": "2021-05-20T21:41:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7479545a-27f0-4fd6-8c7e-ffaddece7ae5", + "productId": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "category": "Media", + "docType": "customerRating", + "userName": "sotomarcus", + "reviewDate": "2022-08-18T19:38:02", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9eadf7f1-e0d4-4cd7-97b9-2b0d28632191", + "productId": "e319ada8-68e4-437c-b1c0-aeb7e18546da", + "category": "Media", + "docType": "customerRating", + "userName": "erobbins", + "reviewDate": "2022-10-04T04:31:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7db16aab-29ad-4c10-a8b0-50136187925a", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand + (Black)", + "description": "This Luxe Stand + (Black) is made from our highly sought after premium aluminum frame. An ultra-long, low profile frame creates a strong build quality and provides excellent comfort from the low frame to the top of the frame. Featuring an 8-foot wide, 5-foot thick cast-block that gives a great stability grip and a quick release, this top shelf kit features black front-facing stand, 3-point sling bar and the all stainless steel interior that we have used for over", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-10-27T06:07:03", + "price": 218.33, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-01-11T15:27:05", + "newPrice": 205.76 + }, + { + "priceDate": "2021-08-20T15:27:05", + "newPrice": 213.83 + }, + { + "priceDate": "2022-03-29T15:27:05", + "newPrice": 215.31 + }, + { + "priceDate": "2022-11-05T15:27:05", + "newPrice": 211.07 + }, + { + "priceDate": "2024-11-08T15:27:05", + "newPrice": 218.33 + } + ], + "descriptionVector": [ + 0.023450996726751328, + 0.002561802975833416, + -0.04190269857645035, + -0.008674852550029755, + -0.005775395780801773, + -0.03623145446181297, + -0.061496708542108536, + 0.024042310193181038, + -0.022254928946495056, + 0.020696008577942848, + 0.01065710000693798, + 0.03956431895494461, + 0.024136383086442947, + -0.05346020683646202, + 0.07359178364276886, + -0.010683977976441383, + -0.005590610206127167, + 0.005728359334170818, + 0.03421560674905777, + -0.029511969536542892, + 0.07638708502054214, + -0.06047534942626953, + -0.05531478673219681, + 0.013855574652552605, + -0.03787100687623024, + -0.060421593487262726, + 0.02730797976255417, + 0.010186736471951008, + 0.01568327471613884, + 0.012955163605511189, + 0.04225211217999458, + 0.03813978657126427, + -0.050449881702661514, + 0.09686806797981262, + -0.022738730534911156, + -0.03612394258379936, + 0.05837887153029442, + 0.056551169604063034, + 0.010395040735602379, + 0.09423403441905975, + 0.019096771255135536, + 0.021972710266709328, + -0.024405162781476974, + 0.02444547973573208, + 0.05681994929909706, + -0.061980511993169785, + -0.0059904190711677074, + -0.014164670370519161, + -0.02092447131872177, + -0.08246149867773056, + -0.0064305453561246395, + 0.01815604418516159, + -0.05837887153029442, + -0.015616078861057758, + 0.00754597969353199, + -0.04902534931898117, + 0.04655257984995842, + 0.22512955963611603, + 0.05450844764709473, + 0.015132276341319084, + 0.008056660182774067, + -0.046713847666978836, + 0.033301759511232376, + 0.010966196656227112, + 0.0027986648492515087, + 0.025023356080055237, + 0.025426523759961128, + -0.02517118491232395, + -0.005980339832603931, + 0.0621417798101902, + 0.010072505101561546, + 0.04012875258922577, + 0.04752018675208092, + 0.035075701773166656, + 0.037924762815237045, + -0.0029750512912869453, + 0.0335705392062664, + 0.0034672534093260765, + 0.02533245086669922, + 0.03582828491926193, + 0.07074271887540817, + -0.027173589915037155, + -0.0384892001748085, + -0.018317312002182007, + 0.03198473900556564, + -0.008110416121780872, + 0.005634286440908909, + -0.09735187143087387, + -0.057142484933137894, + 0.0562286339700222, + -0.04031689837574959, + 0.05297640711069107, + 0.027294540777802467, + -0.05681994929909706, + -0.025103989988565445, + 0.030613966286182404, + -0.05956149846315384, + 0.05751877650618553, + 0.03311361372470856, + -0.000811377598438412, + 0.014178109355270863, + 0.004290389828383923, + -0.034860678017139435, + -0.00690762884914875, + 0.02229524590075016, + 0.039779338985681534, + 0.08901971578598022, + 0.008674852550029755, + 0.0019083332736045122, + -0.21932393312454224, + 0.07568825781345367, + -0.06246431544423103, + 0.01658368483185768, + -0.006044175010174513, + -0.051524996757507324, + 0.07423684746026993, + 0.027764905244112015, + -0.047009505331516266, + 0.05020797997713089, + -0.008983949199318886, + 0.04684823751449585, + 0.026743542402982712, + 0.019378989934921265, + -0.005889627151191235, + -0.001108714728616178, + 0.0145409619435668, + -0.02296719327569008, + -0.03029143065214157, + 0.03225351870059967, + 0.0054394216276705265, + -0.05257323756814003, + 0.019567135721445084, + -0.031232157722115517, + -0.0018629767000675201, + -0.005187441129237413, + 0.03908051550388336, + 0.011402962729334831, + 0.0005035412614233792, + -0.017806630581617355, + -0.008789083920419216, + -0.005076569505035877, + -0.073000468313694, + -0.005093368235975504, + 0.04752018675208092, + 0.020440667867660522, + -0.026985444128513336, + 0.0005396584747359157, + 0.0006144127692095935, + -0.0453430712223053, + 0.025977522134780884, + 0.025668425485491753, + -0.05001983419060707, + -0.05768004432320595, + -0.04061255604028702, + 0.07584952563047409, + -0.01804853230714798, + -0.08901971578598022, + 0.0364733561873436, + -0.01765880174934864, + 0.11116713285446167, + 0.05397088825702667, + 0.01658368483185768, + -0.013788379728794098, + 0.040773823857307434, + 0.03736032545566559, + 0.026259740814566612, + 0.08606313914060593, + 0.010529430583119392, + -0.04203708842396736, + 0.02996889501810074, + 0.06133544445037842, + -0.022133978083729744, + -0.05058426782488823, + -0.028571242466568947, + -0.003243830520659685, + 0.015468250028789043, + 0.07504318654537201, + -0.015508566983044147, + 0.06934506446123123, + -0.0019184125121682882, + 0.006356630939990282, + 0.013586794957518578, + -0.042278990149497986, + -0.017497533932328224, + 0.024485796689987183, + -0.016193954274058342, + 0.026676347479224205, + 0.04061255604028702, + 0.08213896304368973, + -0.026152228936553, + -0.0315815694630146, + -0.011826290749013424, + -0.02189207635819912, + 0.004841387737542391, + -0.014957569539546967, + -0.06837745755910873, + 0.006823635194450617, + 0.009165375493466854, + -0.03187722712755203, + 0.0025836413260549307, + -0.007290639448910952, + 0.076978400349617, + 0.03391995280981064, + -0.020655691623687744, + -0.026273179799318314, + -0.09391149878501892, + 0.0064103868789970875, + 0.02988826110959053, + -0.008815961889922619, + 0.04824588820338249, + -0.060905396938323975, + 0.027455808594822884, + -0.06558215618133545, + 0.06590469181537628, + -0.010663819499313831, + 0.04499366134405136, + 0.014272182248532772, + 0.023894481360912323, + 0.018021654337644577, + -0.06832370162010193, + 0.04292405769228935, + -0.02673010341823101, + -0.026864493265748024, + -0.05117558315396309, + 0.0062188818119466305, + 0.016798708587884903, + 0.03491443395614624, + 0.04746643081307411, + 0.06353943049907684, + 0.032898589968681335, + -0.04467112571001053, + -0.05090680345892906, + 0.009541666135191917, + 0.06762488186359406, + 0.025493718683719635, + -0.012209300883114338, + -0.018088849261403084, + -0.028840022161602974, + 0.0828377902507782, + 0.004854826722294092, + -0.024297650903463364, + -0.0012691423762589693, + -0.03370492905378342, + 0.05187441036105156, + -0.034860678017139435, + 0.06757112592458725, + 0.058916427195072174, + -0.046794481575489044, + -0.02041378989815712, + -0.04015563055872917, + 0.0345381423830986, + 0.009514788165688515, + -0.03203849494457245, + 0.042063966393470764, + 0.04899847134947777, + -0.021072300150990486, + 0.03026455268263817, + -0.021650174632668495, + -0.0006244919495657086, + -0.0098709212616086, + -0.03246854245662689, + -0.06456079334020615, + -0.019473062828183174, + 0.008748766966164112, + -0.03182347118854523, + 0.04676760360598564, + -0.013667428866028786, + -0.013472563587129116, + 0.030130162835121155, + 0.016314905136823654, + -0.04115011543035507, + 0.030425820499658585, + 0.051928166300058365, + -0.012363849207758904, + -0.005563732236623764, + 0.022268367931246758, + -0.056766193360090256, + 0.032495420426130295, + -0.031124645844101906, + -0.017416900023818016, + 0.05305704101920128, + -0.03558638319373131, + 0.013674148358404636, + 0.004179518669843674, + 0.05778755620121956, + -0.06160422042012215, + 0.05542229861021042, + -0.07939741015434265, + 0.03246854245662689, + -0.02358538657426834, + -0.06434576958417892, + 0.0310708899050951, + 0.03211912885308266, + -0.019768720492720604, + 0.02052130177617073, + -0.019983742386102676, + -0.011665022931993008, + 0.00903098564594984, + 0.007606455124914646, + -0.02091103233397007, + 0.006524618249386549, + 0.06886126101016998, + 0.02349131368100643, + -0.028275584802031517, + -0.010166577994823456, + 0.12836900353431702, + -0.061120420694351196, + -0.0202122051268816, + -0.01605956442654133, + -0.0021804722491651773, + 0.08891220390796661, + -0.013949647545814514, + -0.10003966838121414, + 0.0052479165606200695, + 0.04386478662490845, + 0.0023434197064489126, + 0.03961807116866112, + -0.002679393859580159, + -0.014016841538250446, + 0.04899847134947777, + -0.03983309492468834, + 0.013257540762424469, + -0.03690339997410774, + 0.06783990561962128, + 0.08095633238554001, + -0.036661501973867416, + -0.021341077983379364, + -0.01943274587392807, + -0.015737028792500496, + 0.018330750986933708, + -0.07321549206972122, + 0.032683566212654114, + 0.003877141745761037, + -0.0818701833486557, + -0.032898589968681335, + -0.006242400035262108, + -0.01444688905030489, + -0.07810727506875992, + -0.0039040197152644396, + -0.015145715326070786, + 0.04843403398990631, + -0.013936208561062813, + -0.02248339168727398, + -0.04292405769228935, + 0.035156335681676865, + -0.0868157222867012, + 0.03521009162068367, + -0.03394683077931404, + 0.05730375275015831, + 0.05563732236623764, + 0.0016891100676730275, + -0.030130162835121155, + 0.06740985810756683, + -0.03096337802708149, + 0.08009623736143112, + 0.014514083974063396, + 0.056658681482076645, + -0.07047393918037415, + -0.00616848561912775, + -0.006097930949181318, + 0.04163391888141632, + 0.01912364922463894, + 0.0025634828489273787, + 0.03894612565636635, + 0.05464283749461174, + 0.005436061881482601, + -0.021260444074869156, + -0.06923755258321762, + -0.10030844807624817, + 0.051524996757507324, + -0.00574851781129837, + -0.05155187472701073, + 0.019997181370854378, + -0.004142561461776495, + 0.021367955952882767, + 0.01189348567277193, + 0.07477440685033798, + 0.04391854256391525, + -0.002696192590519786, + 0.04889095947146416, + -0.07461313903331757, + 0.04133826121687889, + 0.02178456448018551, + 0.01776631362736225, + 0.11116713285446167, + -0.020279400050640106, + -0.03784412890672684, + 0.07208661735057831, + 0.0014295700239017606, + -0.011355926282703876, + -0.00838591530919075, + -0.01405715849250555, + 0.0027247504331171513, + 0.03617769852280617, + 0.06434576958417892, + -0.028060561046004295, + 0.013976525515317917, + 0.05308391898870468, + -0.03719905763864517, + -0.03217288479208946, + 0.050530511885881424, + 0.045504339039325714, + -0.04668696969747543, + -0.06300187110900879, + 0.030345186591148376, + 0.008070099167525768, + 0.07181783765554428, + 0.061873000115156174, + 0.04491302743554115, + -0.09358896315097809, + -0.026474764570593834, + -0.05171314254403114, + -0.04706326127052307, + 0.07880610227584839, + 0.10874811559915543, + 0.04222523421049118, + 0.005587250459939241, + -0.023450996726751328, + 0.03281795606017113, + -0.05730375275015831, + 0.06047534942626953, + 2.719290932873264e-05, + -0.09611548483371735, + -0.030425820499658585, + -0.04757394269108772, + 0.09041736274957657, + -0.03394683077931404, + -0.0335167832672596, + -0.0355326272547245, + -0.067087322473526, + 0.05117558315396309, + -0.09122370183467865, + 0.016422417014837265, + -0.004737235605716705, + 0.011953960172832012, + -0.009615580551326275, + 0.07950492203235626, + -0.003803227562457323, + -0.028840022161602974, + 0.014097475446760654, + -0.04811149835586548, + -0.05190128833055496, + 0.06886126101016998, + 0.013257540762424469, + -0.058432627469301224, + -0.025117428973317146, + -0.051336850970983505, + 0.04066631197929382, + 0.02210710011422634, + -0.004233274608850479, + -0.013533039018511772, + 0.0005778755294159055, + -0.0005140404682606459, + -0.0052176788449287415, + -0.011671742424368858, + -0.051041193306446075, + 0.05117558315396309, + 0.06633473932743073, + 0.046713847666978836, + -0.030210796743631363, + 0.002464370569214225, + 0.03327488154172897, + 0.07638708502054214, + -0.02091103233397007, + -0.022160856053233147, + -0.004599486477673054, + -0.0699901357293129, + 0.06880750507116318, + 0.0009449273347854614, + 0.031689081341028214, + -0.0015799184329807758, + -0.029431335628032684, + -0.04421420022845268, + -0.03295234590768814, + -0.03620457649230957, + -0.02476801536977291, + -0.007068896200507879, + -0.08149389177560806, + -0.03088274411857128, + -0.022429635748267174, + -0.020548179745674133, + 0.0670335665345192, + 0.006353271193802357, + 0.03730656951665878, + -0.02681073732674122, + 0.010327845811843872, + 0.004347505513578653, + 0.025695303454995155, + 0.031420301645994186, + 0.017779752612113953, + 0.019056454300880432, + 0.03564013913273811, + -0.033597417175769806, + -0.05687370523810387, + -0.021045422181487083, + -0.044939905405044556, + 0.029565725475549698, + 0.03461877629160881, + -0.04270903393626213, + 0.07273168861865997, + 0.02564154751598835, + -0.040074996650218964, + -0.01647617295384407, + 0.031124645844101906, + 0.056551169604063034, + 0.052304457873106, + -0.03440375253558159, + 0.03641960024833679, + -0.01542793307453394, + -0.012276495806872845, + 0.07563450187444687, + 0.01159110851585865 + ] + }, + { + "id": "52af6aa5-bc8a-467a-8702-e3d7b9be7254", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "kjones", + "reviewDate": "2021-10-16T00:42:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c0afe1ea-8c5d-4ce3-8db2-45572a3ccf95", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "thompsonkirsten", + "reviewDate": "2021-08-15T00:29:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "74a9c993-d938-4f99-9451-183fc7a8d05b", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "castillobrian", + "reviewDate": "2022-11-07T13:32:49", + "stars": 3, + "verifiedUser": false + }, + { + "id": "433a6600-f500-4672-8cdb-37a96d0bc828", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "katelyn90", + "reviewDate": "2022-07-27T01:01:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7863c3e5-bfec-4c92-9292-8449a0431a81", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "erussell", + "reviewDate": "2021-06-05T16:16:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7d9b3f29-e202-49f4-9cab-1e124e5c38f8", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "christopher52", + "reviewDate": "2021-01-11T15:27:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "678bb0e3-a01f-4c7d-a5c6-4d418766f614", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "brent80", + "reviewDate": "2021-03-27T17:33:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ec785a57-f89d-4e90-8513-0db186d974cd", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrewmoss", + "reviewDate": "2022-08-27T17:12:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "461da981-8631-4e9f-a166-b1a80d7a7a31", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "joseph60", + "reviewDate": "2021-01-29T13:33:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6d67c86b-3ce9-4de0-86bb-5e0acde06d5d", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "lmiller", + "reviewDate": "2021-07-24T18:30:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "330000ef-5b81-4470-8a5c-e362e01dea46", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacksonjessica", + "reviewDate": "2021-06-13T01:48:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f7d3fbd7-2c0b-4f1b-b883-eea6a5994dee", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "melissa35", + "reviewDate": "2022-10-15T07:24:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "10897b20-cd6a-497a-a7e2-80b21cfc23c2", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "figueroapatricia", + "reviewDate": "2021-11-26T19:18:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bccea677-4b55-4729-b022-36906f007561", + "productId": "7db16aab-29ad-4c10-a8b0-50136187925a", + "category": "Accessory", + "docType": "customerRating", + "userName": "teresa93", + "reviewDate": "2022-06-02T17:15:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Ultra (Steel)", + "description": "This Awesome Keyboard Ultra (Steel) is now available. I didn't think it was going to be pretty and then thought it would be great with some kind of big-screen background that would look cool with the same level of brightness of high-resolution LCD monitors.\n\nThe PowerEdge 2 is a great keyboard for desktop work. Although, it's a big keyboard that you need more space to write", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-10-06T19:44:22", + "price": 799.51, + "stock": 51, + "priceHistory": [ + { + "priceDate": "2021-04-30T00:05:29", + "newPrice": 754.72 + }, + { + "priceDate": "2022-06-03T00:05:29", + "newPrice": 799.51 + } + ], + "descriptionVector": [ + 0.018466882407665253, + 0.03958427533507347, + -0.029626278206706047, + 0.005582794547080994, + 0.03609154373407364, + -0.034902531653642654, + -0.004944937769323587, + 0.03581906110048294, + -0.0162127073854208, + 0.044637586921453476, + 0.09417985379695892, + -0.021365104243159294, + 0.04686698690056801, + -0.042408183217048645, + -0.0037528269458562136, + 0.017996229231357574, + -0.02791707031428814, + 0.02561335451900959, + -0.01724071055650711, + -0.006533387117087841, + 0.03131071478128433, + -0.01473882608115673, + -0.07510608434677124, + -0.034530963748693466, + -0.036537423729896545, + -0.01255896594375372, + 0.00545274605974555, + 0.006824447773396969, + 0.06237372010946274, + 0.014689283445477486, + 0.01120893843472004, + -0.020151318982243538, + -0.004050080664455891, + 0.04988906532526016, + 0.0008979536360129714, + -0.024535810574889183, + -0.11077652126550674, + -0.04015401005744934, + 0.007728594355285168, + -0.0036103930324316025, + 0.022033924236893654, + 0.044538501650094986, + 0.012980074621737003, + 0.004542407114058733, + 0.038172319531440735, + 0.0020142029970884323, + -0.00870705395936966, + -0.021588044241070747, + 0.0344071090221405, + -0.020560042932629585, + 0.040401723235845566, + 0.015135163441300392, + -0.04681744426488876, + -0.005006865598261356, + 0.006384760141372681, + 0.028140010312199593, + 0.000645984779112041, + 0.04139256849884987, + 0.07713731378316879, + -0.007765750866383314, + -0.00045439551468007267, + -0.06613893061876297, + -0.05786537379026413, + -0.0328712984919548, + 0.02511793188750744, + -0.021835755556821823, + -0.007710015866905451, + 0.025861065834760666, + 0.04359719902276993, + 0.0093696815893054, + -0.04763489216566086, + -0.007443726062774658, + -0.002421378390863538, + 0.04555411636829376, + 0.012695207260549068, + 0.0150608504191041, + 0.11176736652851105, + 0.0205476563423872, + 0.033564887940883636, + -0.016559503972530365, + 0.06054065376520157, + 0.041343025863170624, + -0.024028001353144646, + -0.036438342183828354, + 0.1366375833749771, + 0.01627463661134243, + 0.006527194287627935, + -0.09081098437309265, + -0.04156596586108208, + 0.08531179279088974, + -0.08783844858407974, + -0.006607700604945421, + 0.06034248694777489, + -0.08714485168457031, + 0.061085619032382965, + -0.01290576159954071, + -0.10374151915311813, + 0.033465802669525146, + 0.004530021455138922, + 0.00838502962142229, + 0.05236618220806122, + -0.04050080478191376, + -0.033862143754959106, + -0.0689132958650589, + -0.026802368462085724, + 0.03192999213933945, + 0.07223263382911682, + 0.03993107005953789, + -0.03517501428723335, + -0.1317824423313141, + 0.022331178188323975, + 0.012806677259504795, + -0.024994075298309326, + 0.010924071073532104, + -0.010509153828024864, + 0.05514054745435715, + -0.04305223375558853, + -0.021191706880927086, + 0.002316101221367717, + -0.013425955548882484, + 0.06044157221913338, + 0.007047388236969709, + -0.01270759291946888, + 0.028263865038752556, + -0.03349057585000992, + 0.03931179270148277, + -0.006276386324316263, + 0.04052557796239853, + 0.026430802419781685, + 0.004697226453572512, + -0.13098976016044617, + 0.0893247127532959, + 0.0362153984606266, + 0.06876467168331146, + -0.022591276094317436, + 0.054446954280138016, + 0.013487882912158966, + 0.1020570769906044, + 0.02101830765604973, + 0.05045880377292633, + -0.001610123785212636, + -0.014255788177251816, + -0.018900375813245773, + -0.02504361793398857, + -0.07188583165407181, + 0.09115777909755707, + -0.05875713378190994, + 0.031905222684144974, + 0.0423586405813694, + 0.0756015032529831, + 0.05543779954314232, + -0.05910392850637436, + -0.04458804428577423, + -0.023260096088051796, + 0.03299515321850777, + 0.025006461888551712, + -0.06970597803592682, + 0.01304200291633606, + 0.02314862608909607, + 0.05593322217464447, + -0.045009154826402664, + -0.01864027976989746, + -0.031038232147693634, + -0.023433493450284004, + 0.012521808966994286, + 0.03485298901796341, + 0.053109314292669296, + 0.047411952167749405, + -0.042309097945690155, + 0.013747979886829853, + 0.008428378961980343, + 0.03254927322268486, + 0.019259557127952576, + -0.03571997582912445, + 0.029799675568938255, + -0.01247226633131504, + 0.07376844435930252, + -0.05162304639816284, + 0.04015401005744934, + -0.056180935353040695, + -0.0177485179156065, + 0.03574474900960922, + -0.046842217445373535, + -0.0007315225666388869, + 0.1071103885769844, + 0.0374787263572216, + 0.011413300409913063, + 0.051177166402339935, + 0.029106084257364273, + -0.013091545552015305, + -0.024028001353144646, + 0.016485190019011497, + 0.0006421142606996, + 0.008329294621944427, + -0.015964996069669724, + 0.04079806059598923, + 0.02078298293054104, + 0.004923263099044561, + 0.031731825321912766, + 0.0006579832988791168, + 0.012695207260549068, + 0.04562843218445778, + 0.022554118186235428, + -0.03834571689367294, + 0.03869251534342766, + 0.04493483901023865, + 0.016720516607165337, + -0.002054456155747175, + 0.05732040852308273, + 0.008948572911322117, + -0.03889068216085434, + 0.007226978894323111, + -0.06499946117401123, + -0.03908885270357132, + 0.03792461007833481, + -0.011778675019741058, + 0.004136779811233282, + 0.02994830347597599, + -0.015147549100220203, + -0.10879483073949814, + 0.054744210094213486, + 0.015048464760184288, + 0.010979806073009968, + -0.019494883716106415, + -0.01950726844370365, + -0.030369412153959274, + 0.06390953063964844, + -0.010341948829591274, + 0.015432417392730713, + 0.02141464687883854, + -0.09754873067140579, + -0.08129886537790298, + 0.047709207981824875, + 0.00724555691704154, + 0.009382067248225212, + -0.037974148988723755, + -0.0423586405813694, + -0.02277705818414688, + -0.06286913901567459, + 0.05920301377773285, + 0.053307484835386276, + 0.0017587506445124745, + -0.07005277276039124, + -0.023854603990912437, + 0.06465266644954681, + -0.05776628851890564, + 0.1224684938788414, + -0.010112816467881203, + -0.06306730955839157, + 0.05499191954731941, + -0.03022078610956669, + 0.02051050029695034, + 0.01257135160267353, + 0.070994071662426, + 0.018801292404532433, + 0.08650080859661102, + 0.0321529321372509, + 0.015122777782380581, + -0.020386643707752228, + -0.04399353638291359, + -0.009741249494254589, + 0.0005585117032751441, + -0.03098869137465954, + 0.04986429587006569, + -0.012645664624869823, + 0.05192029848694801, + 0.06970597803592682, + -0.009933224879205227, + -0.034803446382284164, + 0.03401076793670654, + 0.010267635807394981, + -0.05167258903384209, + 0.07797953486442566, + -0.027495959773659706, + -0.023966073989868164, + 0.024696821346879005, + -0.05573505535721779, + 0.05885621905326843, + 0.020572427660226822, + -0.020498113706707954, + 0.027966611087322235, + 0.0500376932322979, + 0.042309097945690155, + 0.05553688481450081, + 0.024201398715376854, + -0.028734516352415085, + 0.061382874846458435, + 0.027570273727178574, + 0.07000322639942169, + -0.06772428750991821, + -0.040376950055360794, + -0.04998815059661865, + 0.010961227118968964, + 0.08952288329601288, + 0.020721055567264557, + 0.007115508895367384, + 0.06703069061040878, + 0.012843833304941654, + -0.03445664793252945, + -0.01324017159640789, + 0.06861604750156403, + -0.009159127250313759, + -0.08323101699352264, + -0.06316639482975006, + -0.019358642399311066, + 0.0408228300511837, + -0.019631125032901764, + 0.08947334438562393, + -0.01535810437053442, + -0.029873989522457123, + 0.007053581066429615, + -0.003864297177642584, + -0.007109316065907478, + -0.022504577413201332, + 0.028932686895132065, + -0.020089391618967056, + 0.04007969796657562, + 0.013946149498224258, + 0.020101776346564293, + 0.010533925145864487, + -0.030542809516191483, + -0.056081850081682205, + -0.06930963695049286, + 0.1397092044353485, + 0.010812601074576378, + -0.06306730955839157, + -0.010546310804784298, + 0.018962305039167404, + -0.012602315284311771, + -0.042903605848550797, + -0.050681743770837784, + 0.04763489216566086, + -0.02610877715051174, + 0.03061712346971035, + 0.04899730533361435, + -0.07079590857028961, + -0.014131932519376278, + 0.06153149902820587, + 0.03809800744056702, + 0.05989660695195198, + 0.09784598648548126, + 0.010633009485900402, + -0.01182202436029911, + -0.0541001595556736, + -0.03004738688468933, + -0.0811997801065445, + -0.029923532158136368, + -0.040401723235845566, + -0.008942379616200924, + 0.010416262783110142, + 0.0016379912849515676, + -0.0033750671427696943, + 0.028957458212971687, + 0.029155626893043518, + -0.007722401525825262, + 0.02695099450647831, + 0.01790953055024147, + -0.021067850291728973, + -0.00792057067155838, + 0.02224447950720787, + -0.02261604741215706, + -0.01039149146527052, + 0.016002153977751732, + 0.03131071478128433, + -0.04592568427324295, + 0.01162385568022728, + 0.014813139103353024, + 0.06341410428285599, + 0.021996768191456795, + 0.01319062989205122, + 0.07139041274785995, + -0.062225092202425, + -0.04151642322540283, + 0.06752611696720123, + -0.024362411350011826, + 0.060689281672239304, + -0.008199245668947697, + -0.040773287415504456, + 0.017030155286192894, + 0.022789444774389267, + -0.05231663957238197, + 0.035769518464803696, + -0.029502421617507935, + 0.050879910588264465, + 0.030493268743157387, + -0.03401076793670654, + -0.05147441849112511, + -0.04691652953624725, + 0.020721055567264557, + 0.027694130316376686, + -0.06286913901567459, + 0.0009080169256776571, + -0.010496769100427628, + 0.052415721118450165, + 0.01641087792813778, + -0.023297252133488655, + 0.07436294853687286, + 0.08714485168457031, + 0.030096929520368576, + 0.05786537379026413, + -0.01674528792500496, + 0.0704491063952446, + 0.04919547587633133, + -0.02675282582640648, + -0.04498438164591789, + -0.08397415280342102, + 0.0009056946146301925, + 0.028759287670254707, + -0.03780075162649155, + -0.07233171910047531, + -0.009660743176937103, + -0.006115374155342579, + -0.017067313194274902, + -0.019371027126908302, + 0.05246526375412941, + 0.015717284753918648, + 0.17072266340255737, + 0.024696821346879005, + 0.012744748964905739, + -0.052812062203884125, + 0.021290790289640427, + -0.012992460280656815, + 0.006533387117087841, + 0.0246101226657629, + -0.0060503496788442135, + 0.029626278206706047, + -0.018058158457279205, + -0.011153203435242176, + 0.025303715839982033, + -0.06267097592353821, + 0.09204953908920288, + -0.033837370574474335, + -0.02870974689722061, + 0.008168281987309456, + -0.023990845307707787, + -0.014850296080112457, + 0.026207860559225082, + 0.053208399564027786, + -0.009109585545957088, + 0.09328809380531311, + -0.0003568591782823205, + -0.0653957948088646, + -0.03002261556684971, + -0.015618201345205307, + -0.11721701174974442, + 0.04312654584646225, + -0.027867527678608894, + 0.104038767516613, + 0.011834410019218922, + -0.01120893843472004, + -0.01627463661134243, + -0.030369412153959274, + -0.07257942855358124, + 0.00365993520244956, + 0.05707269534468651, + -0.0339612253010273, + -0.000980782089754939, + 0.05221755430102348, + -0.04196230322122574, + 0.010663974098861217, + 0.01757512055337429, + 0.07644372433423996, + 0.043572425842285156, + -0.011400914750993252, + -0.014701669104397297, + -0.010806407779455185, + -0.03252450004220009, + 0.06717932224273682, + 0.012181205675005913, + 0.030369412153959274, + -0.025365643203258514, + -0.0673774853348732, + 0.007171243894845247, + 0.05013677850365639, + 0.02387937530875206, + -0.07609692960977554, + -0.0029369278345257044, + -0.004641491454094648, + -0.024634893983602524, + 0.06450403481721878, + 0.0021473478991538286, + -0.028040925040841103, + 0.01382229384034872, + -0.03282175585627556, + 0.0326978974044323, + -0.005183360073715448, + -0.02511793188750744, + 0.0479569174349308, + 0.04342380166053772, + 0.044439416378736496, + 0.03559612110257149, + 0.04753581061959267, + -0.06415724009275436, + -0.04233387112617493, + -0.029502421617507935, + 0.031162088736891747, + -0.010385298170149326, + 0.052911143749952316, + -0.0827355906367302, + 0.06861604750156403, + 0.0065086157992482185, + 0.020770596340298653, + -0.025439955294132233, + 0.004359719809144735, + 0.07570058852434158, + 0.01520947739481926, + -0.006824447773396969, + 0.011883952654898167, + -0.006799676921218634, + -0.01644803397357464, + 0.040550347417593, + -0.04986429587006569 + ] + }, + { + "id": "60df9c20-3b66-4104-b50a-60e4c4de6bf6", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bashley", + "reviewDate": "2022-07-01T21:26:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d4ea08f7-25dd-4aea-a7f5-a3ae2de7dbcd", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "esanders", + "reviewDate": "2022-01-25T06:40:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "27faca76-5d5a-46fd-adc6-c9901d8db9ff", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberly00", + "reviewDate": "2022-10-18T14:35:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b3cd9387-d057-48d7-acf6-ca37ec0fb8b0", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlene21", + "reviewDate": "2022-05-19T05:03:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "10ddd54f-ba9b-489b-a043-b1dea108a069", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnmoses", + "reviewDate": "2021-08-06T17:07:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bc34cacd-04e3-44b6-8012-c5d7b4eb87f5", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mgarrett", + "reviewDate": "2021-04-30T00:05:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "93a34e31-7b53-4c7d-9347-c2cbb3d08b94", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "noahbarron", + "reviewDate": "2022-04-05T19:37:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dd618579-098c-42ec-8954-7b24c69f046d", + "productId": "e31d3764-6215-44cb-a28c-f629dc9f3682", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shaneguzman", + "reviewDate": "2021-05-11T14:56:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "63daebf3-7995-4d41-abc1-940d6e59fff2", + "productId": "63daebf3-7995-4d41-abc1-940d6e59fff2", + "category": "Media", + "docType": "product", + "name": "Premium TV Pro (Gold)", + "description": "This Premium TV Pro (Gold) is available on DIRECTV (HD and POD) for $500.\n\nCNBC Premium Channel 2 (Nex", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-04-08T06:13:36", + "price": 527.92, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2020-04-08T06:13:36", + "newPrice": 493.15 + }, + { + "priceDate": "2020-12-03T06:13:36", + "newPrice": 527.92 + } + ], + "descriptionVector": [ + -0.049088627099990845, + 0.016190996393561363, + -0.034676577895879745, + 0.048547208309173584, + -0.027406098321080208, + -0.012297938577830791, + 0.017815252766013145, + 0.07316886633634567, + 0.044834621250629425, + 0.1006523072719574, + 0.02587207779288292, + -0.07358137518167496, + 0.029004571959376335, + -0.0772423967719078, + 0.08410036563873291, + -0.013316321186721325, + -0.03194370120763779, + -3.819439007202163e-05, + 0.005365845747292042, + 0.018201980739831924, + 0.028798317536711693, + -0.03160853683948517, + 0.01102173700928688, + -0.03503752499818802, + -0.010299845598638058, + 0.022932948544621468, + -0.028617843985557556, + 0.006973988376557827, + 0.012768457643687725, + 2.5605599148548208e-05, + -0.027535006403923035, + 0.02445407770574093, + -0.027328751981258392, + -0.0293139535933733, + -0.024815022945404053, + 0.03428984805941582, + -0.000829853059258312, + 0.024363839998841286, + 0.01903988979756832, + 0.016951560974121094, + 0.052569177001714706, + 0.012845803052186966, + -0.030267883092164993, + -0.018317999318242073, + 0.03093820996582508, + -0.04681982472538948, + -0.00799237098544836, + -0.02313920296728611, + -0.039807163178920746, + -0.01903988979756832, + -0.03991029039025307, + -0.002125390572473407, + -0.05615285038948059, + 0.03245933726429939, + -0.024247821420431137, + 0.006451905705034733, + 0.018962545320391655, + 0.16252873837947845, + -0.029752245172858238, + -0.0050177909433841705, + 0.016938669607043266, + -0.02057391032576561, + 0.009726200252771378, + 0.04315880313515663, + -0.010222500190138817, + -0.00017493382620159537, + -0.06239205598831177, + 0.04431898519396782, + -0.01927192695438862, + 0.06435147672891617, + -0.012839357368648052, + -0.07316886633634567, + 0.026890460401773453, + -0.002695813775062561, + 0.04295254871249199, + 0.07440639287233353, + 0.03253668546676636, + -0.02756078913807869, + 0.029829591512680054, + -0.02810220792889595, + 0.014824558980762959, + 0.006716169882565737, + 0.044602587819099426, + 0.017815252766013145, + 0.019684435799717903, + -0.00621986947953701, + -0.006741951685398817, + -0.12210280448198318, + 0.005839587189257145, + 0.05537939816713333, + 0.03011319227516651, + 0.10204453021287918, + -0.03805399686098099, + -0.033310141414403915, + 0.05249182879924774, + 0.0767267644405365, + 0.003951067104935646, + 0.05409030616283417, + -0.08920517563819885, + 0.012807129882276058, + 0.05507001280784607, + -0.07703614234924316, + 0.02843737229704857, + -0.03978138044476509, + -0.02276536636054516, + 0.021630965173244476, + 0.009017199277877808, + 0.026052551344037056, + 0.05904041975736618, + -0.03300075605511665, + 0.023654839023947716, + 0.01096372865140438, + 0.05904041975736618, + 0.056565362960100174, + -0.0054979776032269, + 0.06151547655463219, + 0.017918379977345467, + -0.007019106298685074, + -0.0028166661504656076, + -0.04689716920256615, + -0.08105810731649399, + -0.03431563079357147, + -0.051434773951768875, + 0.027406098321080208, + 0.0601232536137104, + -0.023951331153512, + -0.06667184084653854, + 0.09993042051792145, + 0.013393666595220566, + -0.04137985780835152, + -0.09889914840459824, + 0.00897208135575056, + 0.06378427892923355, + 0.039600908756256104, + -0.056616924703121185, + 0.017866816371679306, + -0.049475353211164474, + 0.060277946293354034, + 0.027096716687083244, + 0.006439014803618193, + -0.03001006320118904, + -0.05004255473613739, + 0.036043014377355576, + -0.01741563342511654, + 0.021708311513066292, + -0.035604722797870636, + 0.06249518319964409, + 0.10183827579021454, + 0.00521115493029356, + -0.028024861589074135, + 0.08363629877567291, + -0.026387715712189674, + -0.01473432220518589, + -0.04217909276485443, + -0.001762833446264267, + 0.07951120287179947, + -0.00551086850464344, + 0.030371010303497314, + -0.03542425110936165, + 0.03805399686098099, + 0.006600151304155588, + -0.029932718724012375, + -0.05599816143512726, + -0.04645887762308121, + 0.03356795758008957, + 0.006152192130684853, + 0.08363629877567291, + -0.0038157126400619745, + -0.039807163178920746, + 0.02805064432322979, + 0.012865139171481133, + -0.05594659596681595, + 0.028617843985557556, + -0.036868032068014145, + 0.01470854040235281, + 0.08141905814409256, + 0.019619980826973915, + -0.0010353020625188947, + 0.0027135389391332865, + -0.02678733319044113, + 0.01140846498310566, + -0.019993819296360016, + -0.041508764028549194, + -0.1192152351140976, + -0.026709988713264465, + 0.06651715189218521, + 0.049965210258960724, + 0.032768722623586655, + -0.05414186790585518, + -0.04661357030272484, + 0.0801815316081047, + 0.015946069732308388, + -0.0109379468485713, + -0.05277543142437935, + -0.022198166698217392, + -0.030422573909163475, + 0.055637214332818985, + 0.02668420597910881, + -0.006184419151395559, + -0.037847742438316345, + -0.03361952304840088, + -0.005101582035422325, + 0.09843507409095764, + 0.026452170684933662, + -0.009900227189064026, + -0.040838439017534256, + 0.056616924703121185, + 0.03142806515097618, + -0.0368938148021698, + 0.09260837733745575, + -0.06589838862419128, + -0.040683746337890625, + 0.030035845935344696, + -0.009242790751159191, + 0.010029136203229427, + 0.04604636877775192, + -0.020367655903100967, + 0.011537373997271061, + -0.021863002330064774, + -0.04973317310214043, + 0.08291440457105637, + 0.02614278718829155, + 0.014463613741099834, + 0.007167351897805929, + -0.021257128566503525, + -0.0586279071867466, + -0.002449274994432926, + -0.0689406469464302, + 0.032768722623586655, + -0.031789012253284454, + -0.03416094183921814, + -0.0513058640062809, + -0.05122851952910423, + 0.06239205598831177, + 0.00013757029955741018, + -0.05976231023669243, + 0.01751876249909401, + -0.050609756261110306, + -0.032381992787122726, + 0.02373218536376953, + -0.05610128864645958, + 0.040297020226716995, + -0.021695420145988464, + 0.008449998684227467, + -0.035501595586538315, + -0.03155697509646416, + 0.06868282705545425, + 0.06631089746952057, + -0.011827419511973858, + -0.01866605319082737, + -0.054760631173849106, + -0.0743032693862915, + 0.00813417136669159, + 0.011182873509824276, + -3.207623740308918e-05, + -0.01932349056005478, + 0.036481305956840515, + -0.016771087422966957, + 0.007496070582419634, + 0.029984282329678535, + -0.03202104941010475, + -0.00895274430513382, + 0.0010071032447740436, + -0.013458121567964554, + -0.020380545407533646, + 0.03993607312440872, + -0.015520668588578701, + -0.07940807193517685, + -0.10013667494058609, + 0.029288172721862793, + -0.01736406981945038, + -0.0007231000927276909, + 0.04602058604359627, + 0.046252623200416565, + 0.06099983677268028, + 0.032665595412254333, + -0.03965247422456741, + -0.01647459715604782, + 0.002671643393114209, + 0.057441942393779755, + 0.14571897685527802, + -0.042050182819366455, + 0.013587030582129955, + -0.061154529452323914, + 0.019929364323616028, + 0.004163767676800489, + -0.04656200483441353, + 0.023203657940030098, + 0.026838896796107292, + 0.005601105280220509, + -0.04955270141363144, + 0.029210826382040977, + 0.052955903112888336, + 0.035063304007053375, + 0.04973317310214043, + 0.005272386595606804, + -0.005111250095069408, + 0.03645552322268486, + 0.048212043941020966, + -0.011137755587697029, + 0.005517314188182354, + 0.07218915969133377, + -0.07693301886320114, + 0.005739682354032993, + -0.04759328067302704, + 0.02761235274374485, + -0.0762111246585846, + 0.02985537238419056, + 0.017828144133090973, + 0.012020783498883247, + 0.07481890171766281, + -0.04393225908279419, + -0.03356795758008957, + 0.0063681150786578655, + -0.016874214634299278, + -0.015185505151748657, + -0.011808083392679691, + -0.013999540358781815, + -0.0027377093210816383, + -0.02455720491707325, + 0.022017693147063255, + 0.014321813359856606, + -0.13592186570167542, + 0.031453847885131836, + 0.019439509138464928, + 0.04501509666442871, + -0.032227303832769394, + 0.0011319839395582676, + -0.0011013681069016457, + -0.021914565935730934, + -0.0581638365983963, + -0.017982834950089455, + -0.022713802754878998, + -0.03204682841897011, + 0.03171166405081749, + -0.019452400505542755, + 0.04344240203499794, + -0.006422901526093483, + 0.020419219508767128, + -0.011002400889992714, + 0.0786861851811409, + 0.05336841195821762, + -0.014128449372947216, + -0.019852017983794212, + -0.03212417662143707, + -0.03248511999845505, + -0.035991452634334564, + -0.003325857687741518, + 0.02887566201388836, + 0.023435695096850395, + 0.001631507184356451, + -0.01536597777158022, + 0.04145720228552818, + -0.041276730597019196, + 0.03209839388728142, + 0.050171464681625366, + -0.036919597536325455, + -0.041276730597019196, + 0.007973034866154194, + -0.004701963625848293, + -0.015804268419742584, + -0.012826466001570225, + -0.004701963625848293, + 0.0801815316081047, + -0.01653905212879181, + 0.088431715965271, + 0.011672728694975376, + 0.07492203265428543, + -0.03410937637090683, + -0.015095268376171589, + 0.044731494039297104, + -0.02631036937236786, + 0.0060297283343970776, + 0.0525176115334034, + -0.009726200252771378, + 0.07517985254526138, + -0.0034354303497821093, + 0.0032291756942868233, + -0.01293603889644146, + 0.009861554950475693, + -0.10353987663984299, + 0.023010293021798134, + 0.053935613483190536, + -0.006281101144850254, + 0.08028465509414673, + 0.0542449951171875, + -0.031067119911313057, + -0.09394903481006622, + -0.060381073504686356, + -0.01697734370827675, + -0.05991699919104576, + 0.03312966600060463, + 0.006390674039721489, + 0.046252623200416565, + 0.0698687881231308, + -0.04310724139213562, + -0.043906476348638535, + 0.019014108926057816, + 0.11911211162805557, + -0.015946069732308388, + -0.04251425713300705, + 0.002984248101711273, + 0.016139432787895203, + -0.03343904763460159, + -0.07760334759950638, + -0.001891742693260312, + 0.012491302564740181, + 0.04094156622886658, + 0.027406098321080208, + 0.047619063407182693, + -0.032717157155275345, + -0.12529975175857544, + -0.0684250071644783, + 0.07899556308984756, + -0.00045883620623499155, + 0.01566246896982193, + 0.07775803655385971, + -0.005439968779683113, + 0.12457785755395889, + 0.027535006403923035, + 0.028179552406072617, + 0.07677832245826721, + 0.03514065220952034, + -0.06620776653289795, + 0.04305567592382431, + -0.051924630999565125, + 0.04339084029197693, + 0.061206091195344925, + 0.017273833975195885, + 0.053677793592214584, + 0.035553161054849625, + -0.07884087413549423, + 0.02668420597910881, + 0.050609756261110306, + -0.07909869402647018, + 0.03333592042326927, + 0.03341326862573624, + 0.026993587613105774, + -0.02722562476992607, + 0.03001006320118904, + -0.056616924703121185, + -0.06997191905975342, + 0.01517261378467083, + 0.043416623026132584, + -0.00919767189770937, + -0.026503734290599823, + -0.014695649966597557, + -0.03524377942085266, + -0.0008354927995242178, + -0.05821539834141731, + -0.06765155494213104, + -0.04828938841819763, + -0.04045170918107033, + 0.020883291959762573, + -0.03694538027048111, + 0.0386211983859539, + -0.02134736441075802, + 0.005955605302006006, + 0.07961432635784149, + 0.02946864441037178, + -0.022198166698217392, + 0.008662698790431023, + 0.03150540962815285, + -0.05305903032422066, + -0.019903581589460373, + 0.04779953509569168, + -0.03640396147966385, + -0.020200073719024658, + 0.03292341157793999, + 0.05806070938706398, + 0.025665823370218277, + -0.006471242289990187, + 0.052362922579050064, + -0.03867276385426521, + 0.027921734377741814, + -0.0016645401483401656, + 0.050558190792798996, + -0.034032031893730164, + -0.030577264726161957, + -0.008965635672211647, + 0.062082674354314804, + 0.02096063829958439, + 0.04975895583629608, + 0.09142240881919861, + -0.019800454378128052, + -0.011221546679735184, + -0.011131309904158115, + 0.09982728958129883, + -0.006007169373333454, + 0.07487046718597412, + 0.05166681110858917, + -0.01124088279902935, + 0.017828144133090973, + 0.027895953506231308, + 0.005842810031026602, + -0.011762965470552444, + 0.04140563681721687, + -0.03807977959513664, + 0.014592522755265236, + -0.05496688559651375, + 0.055637214332818985, + 0.02406734973192215, + -0.05769976228475571, + -0.017750797793269157, + -0.028720971196889877, + -0.013342102989554405, + 0.06337177008390427, + -0.026323260739445686, + 0.012323720380663872, + 0.016874214634299278, + -0.04550494998693466, + 0.04604636877775192 + ] + }, + { + "id": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Mini (Silver)", + "description": "This Premium Computer Mini (Silver) is your best bet to make you happy. It also comes with a built in PC monitor (1920×1080), a 3rd party drive", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-06-16T08:41:39", + "price": 572.57, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-06-01T16:01:30", + "newPrice": 610.97 + }, + { + "priceDate": "2022-02-06T16:01:30", + "newPrice": 575.46 + }, + { + "priceDate": "2022-10-14T16:01:30", + "newPrice": 534.47 + }, + { + "priceDate": "2023-08-31T16:01:30", + "newPrice": 572.57 + } + ], + "descriptionVector": [ + -0.015168027020990849, + 0.05686724931001663, + -0.026711152866482735, + -0.029384838417172432, + -0.027122490108013153, + 0.0330868661403656, + -0.049694571644067764, + 0.038434237241744995, + 0.061597615480422974, + 0.08818022906780243, + 0.0327269472181797, + -0.0869976356625557, + 0.04486136883497238, + -0.016890497878193855, + -0.019538475200533867, + 0.012468632310628891, + -0.008316706866025925, + -0.01695477031171322, + -0.021903660148382187, + -0.021942222490906715, + 0.027302449569106102, + -0.059798020869493484, + -0.030284637585282326, + 0.048357728868722916, + 0.03221277520060539, + -0.008535228669643402, + 0.009814227931201458, + 0.020052645355463028, + -0.019988374784588814, + 0.02279060333967209, + 0.02191651426255703, + 0.008046766743063927, + -0.028613584116101265, + -0.002368397545069456, + -0.005071005783975124, + -0.03822857141494751, + 0.003917335998266935, + -0.06221462041139603, + 0.034218039363622665, + 0.012307954020798206, + 0.0023651840165257454, + 0.04717513546347618, + 0.05110853910446167, + -0.01239793375134468, + 0.007718983571976423, + -0.020566817373037338, + -0.02771378494799137, + 0.060672108083963394, + 0.0010178966913372278, + -0.047149427235126495, + -0.00607042433694005, + 0.032546985894441605, + 0.02228928729891777, + 0.02270062454044819, + -0.002705821767449379, + -0.018651532009243965, + 0.02520720474421978, + 0.07799965143203735, + 0.09578994661569595, + 0.03555488586425781, + 0.029590507969260216, + 0.020052645355463028, + -0.017867421731352806, + 0.028742127120494843, + -0.07069843262434006, + -0.006864175200462341, + -0.04115934297442436, + 0.05553040653467178, + 0.01668483018875122, + 0.06396280229091644, + -0.03547775745391846, + -0.07362920045852661, + 0.049874529242515564, + -0.0022462820634245872, + 0.0371745228767395, + 0.025335747748613358, + 0.006456052418798208, + 0.006922019179910421, + 0.03792006894946098, + -0.019307099282741547, + 0.025142934173345566, + -0.034680794924497604, + -0.013676933012902737, + -0.054244980216026306, + 0.05948951840400696, + 0.10077740252017975, + 0.0855579599738121, + -0.11126647889614105, + -0.08375836163759232, + 0.06792191416025162, + 0.004984239581972361, + 0.065813809633255, + 0.13862034678459167, + -0.016517724841833115, + 0.02719961479306221, + 0.056507330387830734, + -0.017443232238292694, + 0.04990023747086525, + -0.024204572662711143, + -0.022032203152775764, + 0.04488707706332207, + -0.05501623451709747, + 0.01903715915977955, + -0.05856401100754738, + -0.005408430006355047, + 0.03385812044143677, + 0.03007896989583969, + 0.011041809804737568, + 0.06200895085930824, + -0.21307222545146942, + -0.08689480274915695, + -0.003001469885930419, + 0.009627841413021088, + -0.030181802809238434, + -0.003197497222572565, + 0.01862582378089428, + -0.04151926189661026, + -0.02604273147881031, + -0.040850840508937836, + -0.03159577026963234, + 0.03136439621448517, + 0.05139133334159851, + 0.013728350400924683, + 0.035709135234355927, + 0.030104678124189377, + 0.01987268589437008, + -0.07501746714115143, + 0.03995104134082794, + 0.06056927517056465, + -0.04591541737318039, + -0.0307730995118618, + 0.029127754271030426, + -0.0005880824173800647, + 0.05195692181587219, + -0.023638984188437462, + -0.03406378999352455, + 0.02548999898135662, + 0.02840791456401348, + 0.008560937829315662, + -0.014833816327154636, + -0.0839640274643898, + -0.011993024498224258, + -0.006941300816833973, + -0.053216639906167984, + -0.050671495497226715, + 0.01949991285800934, + -0.04424436390399933, + 0.08427253365516663, + -0.08499237149953842, + 0.09172800183296204, + -0.0033678163308650255, + 0.012738572433590889, + -0.05486198514699936, + -0.06925875693559647, + 0.05830692499876022, + 0.05018303170800209, + -0.01802167296409607, + -0.062111787497997284, + -0.013342722319066525, + 0.06355146318674088, + -0.03624901548027992, + -0.005591603461652994, + -0.033343952149152756, + -0.03154435381293297, + -0.014653856866061687, + 0.022726332768797874, + 0.020862463861703873, + 0.05115995556116104, + -0.06103202700614929, + 0.014062561094760895, + 0.007796108722686768, + -0.037277355790138245, + -0.010026322677731514, + -0.043627358973026276, + 0.035143546760082245, + 0.011993024498224258, + 0.04262472689151764, + -0.006947727873921394, + -0.01026412658393383, + -0.07671422511339188, + 0.002406960353255272, + 0.008560937829315662, + -0.035374924540519714, + 0.03336966037750244, + 0.03792006894946098, + 0.04133930057287216, + 0.05661016330122948, + 0.0037020270247012377, + 0.04067087918519974, + -0.009364328347146511, + 0.01588786579668522, + -0.019859831780195236, + 0.008560937829315662, + -0.006754913832992315, + 0.08314135670661926, + 0.05285671725869179, + 0.018612969666719437, + 0.03645468130707741, + -0.009280775673687458, + 0.011967316269874573, + -0.008335988037288189, + 0.03905124217271805, + 0.07157251983880997, + 0.017918838188052177, + -0.012475059367716312, + -0.030413180589675903, + -0.0062857335433363914, + 0.04331885650753975, + -0.036634642630815506, + 0.025592831894755363, + 0.05306238681077957, + -0.016556287184357643, + 0.013959727250039577, + -0.04653242230415344, + 0.05856401100754738, + 0.018201632425189018, + 0.02460305392742157, + 0.025001537054777145, + -0.058769676834344864, + -0.06643081456422806, + 0.08370694518089294, + -0.018831491470336914, + 0.009884926490485668, + -0.01368978712707758, + -0.018934326246380806, + -0.05501623451709747, + 0.07599438726902008, + 0.028613584116101265, + -0.0037791526410728693, + 0.036994561553001404, + -0.10216566175222397, + -0.03493788093328476, + -0.005733000114560127, + 0.03738018870353699, + -0.021325217559933662, + 0.0661737322807312, + -0.031955692917108536, + -0.042007721960544586, + -0.06051785871386528, + 0.0734749510884285, + -0.04360165074467659, + 0.0015513485996052623, + -0.06817899644374847, + -0.061186280101537704, + -0.03781723231077194, + -0.012667873874306679, + 0.05630166083574295, + 0.04064517095685005, + -0.04948890209197998, + 0.06416846811771393, + -0.06308870762586594, + -0.046172503381967545, + -0.02279060333967209, + 0.026004169136285782, + -0.05722716823220253, + 0.02984759211540222, + 0.059335265308618546, + -0.007076270412653685, + -0.000948001688811928, + -0.05475914850831032, + -0.052805300801992416, + -0.028767835348844528, + 0.005446992814540863, + 0.05331947281956673, + -0.04434719681739807, + 0.04912898316979408, + 0.07244661450386047, + -0.06488830596208572, + -0.0076290033757686615, + 0.007609722204506397, + -0.0026045944541692734, + -0.04774072393774986, + 0.012038014829158783, + -0.016517724841833115, + -0.021055279299616814, + -0.05527332052588463, + -0.07455471158027649, + 0.03177573159337044, + -0.02474445104598999, + 0.0010010255500674248, + 0.014049706980586052, + 0.043164607137441635, + 0.02479586750268936, + -0.0177003163844347, + -0.026209836825728416, + -0.04462999105453491, + -0.034912172704935074, + -0.041210759431123734, + -0.01202516071498394, + -0.03702026978135109, + 0.007191958837211132, + -0.005402002949267626, + 0.08961990475654602, + 0.08540370315313339, + 0.09141950309276581, + 0.01764889992773533, + -0.005119209177792072, + 0.06113486364483833, + -0.0017369319684803486, + 0.012044441886246204, + -0.0032746228389441967, + -0.017134729772806168, + -0.03275265544652939, + -0.03151864558458328, + -0.03516925498843193, + 0.15383978188037872, + -0.05254821479320526, + 0.028793543577194214, + -0.06272879242897034, + 0.030798807740211487, + 0.048074934631586075, + 0.03720023110508919, + -0.10154865682125092, + 0.01339413970708847, + 0.030593140050768852, + -0.044141530990600586, + 0.011877336539328098, + -0.03545204922556877, + -0.009152233600616455, + 0.002206112490966916, + 0.015964992344379425, + -0.0233947541564703, + -0.06447696685791016, + 0.05110853910446167, + 0.041210759431123734, + 0.007410481106489897, + -0.059335265308618546, + 0.03393524885177612, + -0.043216023594141006, + 0.021582303568720818, + -0.02604273147881031, + -0.033755287528038025, + 0.0378943607211113, + -0.011215342208743095, + 0.023330481722950935, + -0.03452654182910919, + -0.09152233600616455, + 0.07599438726902008, + 0.05285671725869179, + 0.11270615458488464, + 0.04699517786502838, + 0.01397258136421442, + 0.025605686008930206, + -0.009949197992682457, + -0.054090727120637894, + 0.006481760647147894, + -0.05717575177550316, + -0.08391261100769043, + -0.021582303568720818, + -0.02887066826224327, + 0.001530460431240499, + -0.07260086387395859, + 0.02163372002542019, + -0.004952103830873966, + 0.10293691605329514, + 0.03331824392080307, + 0.01784171350300312, + -0.0006310638273134828, + -0.023381900042295456, + 0.058358341455459595, + -0.0026833268348127604, + -0.035194963216781616, + 0.04231622442603111, + 0.08746039122343063, + -0.034680794924497604, + 0.022829165682196617, + -0.005524118430912495, + 0.03632614016532898, + 0.013934018090367317, + 0.0006270469166338444, + 0.022366413846611977, + -0.00038864053203724325, + -0.06632798165082932, + 0.10360533744096756, + -0.011864482425153255, + 0.03221277520060539, + 0.016646267846226692, + 0.01807308942079544, + -0.05126279219985008, + 0.011478854343295097, + 0.0018638677429407835, + -0.0029596935492008924, + -0.0019201051909476519, + -0.036994561553001404, + 0.06632798165082932, + -0.09141950309276581, + -0.021672282367944717, + -0.011825919151306152, + -0.04884618893265724, + 0.011157497763633728, + -0.05804983898997307, + -0.0014027211582288146, + 0.0015039484715089202, + -0.044270072132349014, + 0.03128727152943611, + -0.03275265544652939, + 0.07301219552755356, + 0.03203281760215759, + 0.010848996229469776, + -0.019024305045604706, + 0.03437229245901108, + -0.04090225696563721, + -0.008027485571801662, + -0.07640572637319565, + -0.027688076719641685, + -0.10756444931030273, + -0.023896070197224617, + 0.06432271748781204, + -0.08391261100769043, + -0.01613209769129753, + 0.002357149962335825, + -0.0223278496414423, + 0.0199241042137146, + 0.04383302852511406, + 0.030156094580888748, + -0.03475791960954666, + 0.07995349913835526, + -0.016286347061395645, + 0.08416970074176788, + 0.005508050788193941, + 0.018317321315407753, + -0.050722911953926086, + 0.005402002949267626, + -0.019911250099539757, + 0.004325458779931068, + 0.011298894882202148, + -0.01830446720123291, + 0.019564183428883553, + 0.02835649810731411, + -0.06463122367858887, + -0.0018799356184899807, + -0.06853891909122467, + -0.00022715888917446136, + -0.05804983898997307, + -0.062111787497997284, + 0.0037373763043433428, + 0.0200140830129385, + 0.05121137201786041, + -0.022302141413092613, + 0.09501869231462479, + 0.012378652580082417, + -0.09877213835716248, + -0.0007431369158439338, + -0.00017634438700042665, + -0.04439861699938774, + 0.05897534638643265, + -0.03547775745391846, + -0.00042258380562998354, + 0.021376635879278183, + -0.009274348616600037, + -0.07964500039815903, + 0.010707599110901356, + -0.010129157453775406, + -0.025425726547837257, + -0.007146968971937895, + 0.027636660262942314, + -0.008901575580239296, + 0.08242151886224747, + -0.03786865249276161, + 0.03303544968366623, + 0.005215615965425968, + 0.02586277201771736, + -0.004498991183936596, + -0.010463368147611618, + -0.07450329512357712, + -0.0336267463862896, + -0.02234070375561714, + -0.04398727789521217, + 0.004209770355373621, + 0.033292535692453384, + -0.030464597046375275, + 0.009049399755895138, + 0.0939389318227768, + -0.015219444409012794, + 0.03447512537240982, + -0.031852856278419495, + 0.019448496401309967, + -0.008091757073998451, + -0.013496973551809788, + 0.04347310960292816, + 0.0177003163844347, + -0.05722716823220253, + 0.024718742817640305, + -0.00574585422873497, + 0.06961867213249207, + 0.010636900551617146, + -0.0122758187353611, + -0.003309972118586302, + 0.05331947281956673, + 0.0549648180603981, + -0.0050549376755952835, + 0.022867729887366295, + -3.399349225219339e-05, + -0.07229235768318176, + -0.057021498680114746, + 0.0055626812390983105, + 0.04982311278581619, + 0.015155172906816006, + -0.003914122469723225, + 0.08082758635282516, + 0.04578687623143196, + 0.0014477110235020518, + -0.0615461990237236, + 0.017905984073877335, + -0.007005571853369474, + 0.05470773205161095, + 0.019487058743834496, + -0.005042083561420441, + -0.036120470613241196, + -0.026634028181433678, + 0.01336843054741621, + -0.031081601977348328 + ] + }, + { + "id": "51baa777-fb48-45c3-a172-49082e85acca", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "cruznancy", + "reviewDate": "2021-06-01T16:01:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "52f9417d-c921-44eb-bf53-c8b921bcb088", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopherray", + "reviewDate": "2022-03-18T22:45:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1b014c7d-1959-45d7-9411-0f2d63b3a41a", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "beckstephanie", + "reviewDate": "2022-10-15T19:35:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a45baa4a-0e53-4ebe-a66b-2a987e6fa15d", + "productId": "b7170cd5-9b05-403c-9aa1-b8b6e29b83f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "ujimenez", + "reviewDate": "2022-08-04T08:53:09", + "stars": 5, + "verifiedUser": false + }, + { + "id": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard + (Gold)", + "description": "This Premium Keyboard + (Gold) is a custom mouse style keyboard with 2 button presses for up to 4 keys for easy layout. The price is at only 1500$, you save 5000$ plus one shipping fee for this combo unit (we have a small gift code for you in our store).\n\nLIMITED RELEASE - Please note that most users have the opportunity during checkout", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-05-23T09:45:44", + "price": 113.56, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-01-09T23:46:05", + "newPrice": 122.45 + }, + { + "priceDate": "2021-12-08T23:46:05", + "newPrice": 119.8 + }, + { + "priceDate": "2022-11-06T23:46:05", + "newPrice": 121.67 + }, + { + "priceDate": "2023-02-21T23:46:05", + "newPrice": 113.56 + } + ], + "descriptionVector": [ + -0.07761964201927185, + 0.006610389798879623, + -0.028985578566789627, + -0.026089726015925407, + -0.025264272466301918, + -0.09412869811058044, + 0.0004006745293736458, + 0.0988919734954834, + 0.0071787345223128796, + 0.08714617788791656, + 0.04668545350432396, + -0.01066322810947895, + 0.03734836354851723, + -0.09337090700864792, + 0.05123221129179001, + 0.01020313985645771, + -0.03897220641374588, + -0.0032899712678045034, + -0.010142246261239052, + -0.00912057887762785, + -0.007841803133487701, + 0.016536124050617218, + -0.03001401014626026, + -0.04508867487311363, + -0.021488841623067856, + -0.009079982526600361, + -0.011082720942795277, + 0.026644539088010788, + 0.02811952866613865, + 0.010534673929214478, + 0.02752411924302578, + -0.01806524023413658, + -0.004871525801718235, + 0.011684895493090153, + -0.007138138171285391, + -0.02531840093433857, + -0.04687490314245224, + -0.015318241901695728, + 0.028336040675640106, + 0.015088197775185108, + -0.03212500363588333, + 0.01889069378376007, + -0.019878530874848366, + -0.01843060553073883, + 0.025264272466301918, + 0.0349126011133194, + 0.02554844506084919, + 0.020514536648988724, + -0.06609036773443222, + 0.0014098668470978737, + 0.03212500363588333, + 0.08736269176006317, + -0.07881046086549759, + 0.024438820779323578, + 0.06203075870871544, + 0.0056428504176437855, + -0.0027825208380818367, + 0.11475149542093277, + 0.07908110320568085, + -0.04760563001036644, + -0.0033051948994398117, + -0.07177381217479706, + -0.06852612644433975, + -0.030663548037409782, + -0.02422230876982212, + -0.0342901274561882, + -0.02830897644162178, + 0.019459038972854614, + 0.01672557182610035, + 0.0684719979763031, + -0.03629286587238312, + -0.04768682271242142, + 0.020054446533322334, + 0.038999270647764206, + 0.015426497906446457, + 0.05134046822786331, + 0.08178750425577164, + 0.041895121335983276, + 0.07967650890350342, + 0.01562947779893875, + 0.004908738657832146, + 0.019188398495316505, + -0.030852995812892914, + -0.05640144273638725, + 0.06327570229768753, + 0.02977043390274048, + -0.008105677552521229, + -0.13218073546886444, + -0.03234151750802994, + -0.011427787132561207, + -0.060406919568777084, + 0.058945462107658386, + -0.059270229190588, + -0.04893177002668381, + -0.01585952192544937, + 0.0402442142367363, + -0.043870795518159866, + 0.03336995095014572, + -0.06056930124759674, + 0.026685135439038277, + 0.014005635865032673, + -0.025101888924837112, + -0.07799854129552841, + 0.028092464432120323, + -0.005253805313259363, + 0.05115101858973503, + 0.0759958028793335, + -0.01240885816514492, + -0.011427787132561207, + -0.15458974242210388, + 0.041516225785017014, + 0.003887071507051587, + -0.01979733817279339, + 0.04127264767885208, + -0.027009902521967888, + 0.036698825657367706, + -0.06414175778627396, + 0.009485943242907524, + -0.005104952957481146, + -0.062409657984972, + 0.014506320469081402, + 0.0038397095631808043, + -0.04622536525130272, + 0.0032240026630461216, + -0.0003122935595456511, + 0.0028603298123925924, + -0.04360015317797661, + 0.05031203478574753, + -0.005832298658788204, + -0.05128633975982666, + -0.05558951944112778, + 0.031096572056412697, + 0.0038498584181070328, + 0.08552233874797821, + -0.014046232216060162, + 0.0653325691819191, + -0.023085618391633034, + 0.06154360622167587, + -0.009844541549682617, + 0.0501767136156559, + -0.04489922896027565, + -0.021218201145529747, + -0.01576479896903038, + 0.03694240376353264, + -0.06002802029252052, + 0.012990735471248627, + -0.02067692019045353, + 0.12687617540359497, + 0.023559238761663437, + 0.046441879123449326, + -0.0062585570849478245, + -0.09921673685312271, + -0.04227401688694954, + -0.051584042608737946, + 0.03629286587238312, + 0.016333142295479774, + -0.12070558220148087, + -0.02779475972056389, + -0.0007861255435273051, + 0.09228834509849548, + -0.02370809204876423, + 0.03450664132833481, + -0.03799790143966675, + 0.019039547070860863, + -0.02733467146754265, + 0.06576559692621231, + 0.03304518386721611, + 0.015453562140464783, + -0.01755102351307869, + 0.032233260571956635, + -0.01686089113354683, + -0.03493966534733772, + 0.035047922283411026, + -0.05220651626586914, + 0.060461048036813736, + 0.06581972539424896, + 0.052774861454963684, + 0.04649600759148598, + 0.05385742336511612, + -0.05753812938928604, + 0.0425446592271328, + 0.06457477807998657, + -0.040974944829940796, + 0.0038397095631808043, + 0.08021778613328934, + 0.016157226637005806, + 0.011698427610099316, + 0.04511573910713196, + 0.035318560898303986, + -0.03247683867812157, + 0.04303181171417236, + 0.02504776045680046, + -0.0762123093008995, + 0.008484574034810066, + -0.019729679450392723, + 0.1050625666975975, + -0.011082720942795277, + 0.07074537873268127, + 0.0205415990203619, + -0.004523076117038727, + 0.010507610626518726, + 0.05280192568898201, + 0.07291050255298615, + -0.0036705592647194862, + -0.006390494294464588, + -0.023829879239201546, + -0.023640431463718414, + 0.012300602160394192, + 0.0035115580540150404, + 0.015088197775185108, + -0.02876906469464302, + -3.3830040138127515e-06, + 0.036238737404346466, + -0.0262927059084177, + 0.062409657984972, + -0.0014952877536416054, + -0.024736525490880013, + 0.008951428346335888, + -0.005754489917308092, + -0.07540038973093033, + -0.00974305160343647, + 0.03640112280845642, + -0.034587834030389786, + 0.0014487714506685734, + 0.021840672940015793, + 0.018417073413729668, + 0.024371160194277763, + 0.00047531205927953124, + 0.06636100262403488, + 0.006613772828131914, + -0.07480498403310776, + -0.05910784378647804, + -0.03483140841126442, + 0.02372162416577339, + -0.06181424856185913, + 0.005602254532277584, + -0.026400962844491005, + -0.040460728108882904, + -0.030230524018406868, + 0.07734899967908859, + -0.019269591197371483, + 0.044141434133052826, + -0.03093418851494789, + 0.0015553360572084785, + -0.0010791782988235354, + -0.007273458410054445, + 0.09975802153348923, + -0.03602222725749016, + -0.0728563740849495, + -0.004130647983402014, + -0.011596937663853168, + 0.010561738163232803, + -0.05569777637720108, + 0.03437132015824318, + -0.04462858662009239, + 0.06868851184844971, + 0.05954086780548096, + 0.016698507592082024, + 0.020257428288459778, + -0.04392492398619652, + 0.0006905556656420231, + 0.0056800637394189835, + -0.06738943606615067, + 0.06354634463787079, + -0.046577196568250656, + 0.09131404012441635, + 0.0281736571341753, + -0.11150380969047546, + -0.05569777637720108, + 0.057646386325359344, + 0.016793232411146164, + -0.02155650034546852, + 0.08909479528665543, + -0.04281529784202576, + 0.0074561405926942825, + 0.02779475972056389, + -0.026225047186017036, + 0.07193619757890701, + -0.009763349778950214, + -0.02031155489385128, + 0.01893129013478756, + 0.07350590825080872, + 0.05640144273638725, + 0.004837695509195328, + -0.0007066249381750822, + -0.04990607500076294, + -0.012158515863120556, + 0.029256217181682587, + -0.09710574150085449, + -0.0056090205907821655, + -0.03318050131201744, + 0.04747031256556511, + 0.018159965053200722, + 0.05596841871738434, + 0.045846469700336456, + 0.01805170811712742, + 0.02339685522019863, + 0.0895819440484047, + -0.02604912966489792, + -0.006011597812175751, + -0.009364155121147633, + 0.026590410619974136, + -0.06749769300222397, + -0.03935110196471214, + 0.028714938089251518, + 0.04360015317797661, + -0.004499395377933979, + -0.01856592483818531, + 0.00020393170416355133, + 0.013978572562336922, + 0.11388544738292694, + -0.06517019122838974, + -0.05215238779783249, + -0.0045839701779186726, + 0.02366749569773674, + -0.059757381677627563, + 0.043275386095047, + 0.057050976902246475, + 0.05510236695408821, + -0.01709093526005745, + 0.0060724918730556965, + -0.056455571204423904, + -0.05661795288324356, + 0.024005796760320663, + 0.028850257396697998, + -0.019864998757839203, + -0.0350208580493927, + 0.002445911755785346, + -0.01989206299185753, + -0.051854684948921204, + -0.03824147582054138, + -0.06771420687437057, + -0.059757381677627563, + -0.03583277761936188, + 0.03493966534733772, + -0.04833636060357094, + 0.007226096466183662, + 0.06506193429231644, + 0.019499635323882103, + -0.006678049918264151, + 0.04462858662009239, + 0.010223438031971455, + -0.012672732584178448, + -0.012868947349488735, + 0.02100168913602829, + -0.051854684948921204, + -0.02188126929104328, + -0.06755182147026062, + 0.026306238025426865, + 0.023884007707238197, + 0.0018200561171397567, + -0.02577848918735981, + 0.021082879975438118, + -0.03450664132833481, + 0.04849874600768089, + -0.06933804601430893, + -0.005500764586031437, + -0.006180748343467712, + -0.0487152561545372, + 0.0762123093008995, + -0.035913970321416855, + -0.005111719015985727, + 0.02376222051680088, + 0.06089407205581665, + -0.07069125026464462, + 0.02554844506084919, + -0.01081884652376175, + 0.0358598418533802, + 0.0051996768452227116, + -0.024547075852751732, + 0.011204509064555168, + -0.08308658003807068, + -0.002527103992179036, + 0.03147546947002411, + -0.012693030759692192, + 0.08698379993438721, + -0.014452192932367325, + 0.01682029478251934, + -0.05726749077439308, + 0.039729997515678406, + 0.01571067050099373, + 0.022733787074685097, + -0.03190849348902702, + 0.007483204826712608, + 0.10154424607753754, + -0.03905339911580086, + -0.04403318092226982, + -0.00422875490039587, + -0.029256217181682587, + -0.003535239025950432, + -0.025859681889414787, + 0.07615818828344345, + -0.03312637284398079, + 0.051773492246866226, + -0.005554892588406801, + -0.020595727488398552, + 0.01261860504746437, + 0.060406919568777084, + -0.020920496433973312, + 0.06998758763074875, + 0.063979372382164, + 0.016157226637005806, + -0.05456108599901199, + -0.005693595856428146, + -0.03851211816072464, + -0.10414239019155502, + 0.0047125243581831455, + 0.028823193162679672, + -0.007726781070232391, + -0.061327096074819565, + -0.061651863157749176, + 0.026590410619974136, + 0.004638098180294037, + 0.009641561657190323, + -0.01979733817279339, + -0.008863470517098904, + 0.09992040693759918, + -0.0017456300556659698, + 0.06820135563611984, + -0.018227625638246536, + 0.07377655059099197, + 0.03469608724117279, + -0.045061610639095306, + 0.03864743560552597, + -0.042436402291059494, + -0.014452192932367325, + 0.0074696727097034454, + -0.0023596452083438635, + 0.047903336584568024, + 0.004404671024531126, + 0.013193715363740921, + -0.05959499627351761, + -0.01875537447631359, + -0.004357309080660343, + -0.02568376623094082, + -0.0006875955732539296, + 0.0046211834996938705, + 0.037483684718608856, + -0.041380904614925385, + 0.032422710210084915, + 0.010514376685023308, + -0.07691597938537598, + -0.013247843831777573, + 0.03759193792939186, + -0.01376205962151289, + 0.025927342474460602, + -0.0775655135512352, + 0.03553507477045059, + 0.07393893599510193, + -0.06186837702989578, + -0.08698379993438721, + -0.03734836354851723, + -0.044006116688251495, + -0.01580539532005787, + 0.05209825932979584, + -0.002508497331291437, + -0.005521062295883894, + 0.010649695992469788, + -0.02178654447197914, + 0.043167129158973694, + 0.008971726521849632, + 0.06636100262403488, + 0.06581972539424896, + 0.019499635323882103, + 0.0047497376799583435, + -0.0562390573322773, + -0.014871685765683651, + -0.004756503738462925, + 0.040650174021720886, + 0.03456076979637146, + -0.02376222051680088, + -0.07242334634065628, + 0.03916165232658386, + -0.014993473887443542, + 0.05136753246188164, + -0.092829629778862, + 0.03358646482229233, + 0.001293999026529491, + -0.03556213900446892, + 0.014303340576589108, + 0.04300474748015404, + -0.010304629802703857, + -0.013734996318817139, + 0.03296399116516113, + -0.06208488717675209, + -0.024574140086770058, + 0.022138377651572227, + 0.034669023007154465, + 0.10305982828140259, + 0.09326265007257462, + -0.017862260341644287, + 0.0201762355864048, + 0.021705353632569313, + -0.013748528435826302, + -0.022814977914094925, + -0.016698507592082024, + -0.057050976902246475, + 0.015061133541166782, + 0.022165441885590553, + 0.018281754106283188, + 0.021975994110107422, + -0.07707836478948593, + 0.03134014829993248, + 0.008010953664779663, + 0.007977123372256756, + -0.02903970517218113, + -0.022774383425712585, + 0.020338619127869606, + 0.06208488717675209, + -0.011664597317576408, + -0.006146918050944805, + -0.044141434133052826 + ] + }, + { + "id": "a536d214-2bf0-47e3-bfd0-738cc7f229ae", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryancurry", + "reviewDate": "2022-11-08T22:44:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e107d976-c7fb-4b64-b43a-6aaacc6c7ea3", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "solomonannette", + "reviewDate": "2021-01-09T23:46:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5d9cb3ff-2c1a-4ddb-9b63-8937e0aa213c", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnhiggins", + "reviewDate": "2021-02-05T00:42:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1eef7504-f4d7-4aa1-adc0-8f065793f15c", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "esmith", + "reviewDate": "2021-03-12T08:09:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e4058894-7e14-491f-a6c3-ff74019a0b50", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "njohnson", + "reviewDate": "2021-10-11T10:20:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ddf3365f-b278-452f-805f-24888a1557b5", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jon32", + "reviewDate": "2021-10-15T11:17:50", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e4708c7e-5533-4ba3-ad89-013200ae5a66", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristinaespinoza", + "reviewDate": "2022-10-23T04:33:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ed07c172-7a3d-4b59-a098-54efcb65c5d1", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tbaldwin", + "reviewDate": "2021-08-18T16:17:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d9befa96-650f-4efa-a86a-b49cf97528e3", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john35", + "reviewDate": "2021-01-13T09:15:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "42498162-91ac-4785-9a40-76420dc05976", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidwright", + "reviewDate": "2022-06-15T22:29:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "64bddfdf-e185-486c-ad62-54280b0537db", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "catherinemoore", + "reviewDate": "2021-06-19T03:26:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5ce60c69-d71b-4349-bf89-ff225d8da664", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dadkins", + "reviewDate": "2021-03-13T10:21:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c5a86a5d-ad71-4141-97bc-3e69bd3154a8", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "galvarez", + "reviewDate": "2021-10-30T08:33:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cb3cca73-c075-4f3a-84ad-a92f742f479c", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "santosnancy", + "reviewDate": "2021-06-14T05:27:35", + "stars": 3, + "verifiedUser": true + }, + { + "id": "98299ae4-5971-422b-9804-5bc71f93f8e4", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinejohnson", + "reviewDate": "2022-04-26T22:27:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "28ceaccf-6dbd-4c79-9bbf-ab9132f73229", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelicahines", + "reviewDate": "2022-09-03T00:43:58", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7df91269-975a-49cf-b19b-46ee625d175c", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qrollins", + "reviewDate": "2022-09-19T22:30:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "88f13e6e-a7a3-4f5e-ba4c-883aa0f0be29", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasminedavis", + "reviewDate": "2021-04-13T03:00:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "45093402-947a-466f-aff1-4bedbafaeae3", + "productId": "64d0b70b-8000-4644-ae1e-36a6a467c480", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthonyshaffer", + "reviewDate": "2021-03-08T23:26:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Super (Silver)", + "description": "This Amazing Stand Super (Silver) is rated 4.9 out of 5 by 24.\n\nRated 5 out of 5 by JK from Amazing stand I am currently using this stand for my first house. It's sturdy, but it is one of the easiest and most affordable in my experience. I use a very wide open panel", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-05-06T22:21:49", + "price": 623.19, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-01-06T09:26:33", + "newPrice": 598.72 + }, + { + "priceDate": "2022-12-23T09:26:33", + "newPrice": 596.8 + }, + { + "priceDate": "2024-10-20T09:26:33", + "newPrice": 623.19 + } + ], + "descriptionVector": [ + 0.058986444026231766, + 0.03619391843676567, + -0.03568629175424576, + 0.04043261706829071, + -0.005114358384162188, + -0.06375814974308014, + -0.08056066185235977, + 0.024886492639780045, + -0.019378721714019775, + 0.10081504285335541, + 0.0340111181139946, + -0.010736345313489437, + -0.003873840905725956, + -0.058123476803302765, + -0.02384585328400135, + 0.006523027550429106, + 0.038529012352228165, + -0.0015688897110521793, + -0.024163121357560158, + 0.0004596418293658644, + 0.033351197838783264, + -0.09934291988611221, + -0.033884208649396896, + 0.03028004616498947, + -0.029873942956328392, + -0.05017908662557602, + 0.016726363450288773, + 0.017145156860351562, + -0.044468265026807785, + 0.04982374608516693, + 0.005241265520453453, + 0.021066587418317795, + -0.019759442657232285, + 0.05949407443404198, + 0.010298515670001507, + 0.05233651027083397, + 0.02050819620490074, + 0.028655635192990303, + -0.03703150525689125, + 0.1210186630487442, + -0.031422208994627, + 0.04246313124895096, + 0.056803639978170395, + 0.04632110893726349, + 0.014619704335927963, + -0.022716380655765533, + -0.030000850558280945, + -0.01618066243827343, + 0.04906230419874191, + 0.05583914741873741, + 0.03319891169667244, + 0.0017529050819575787, + -0.01021602563560009, + 0.015495363622903824, + 0.04733636602759361, + -0.048681583255529404, + -0.03281819075345993, + 0.15655265748500824, + 0.04398601874709129, + -0.024988017976284027, + -0.03941735997796059, + 0.0121386693790555, + 0.052133459597826004, + -0.0019162979442626238, + -0.04550890624523163, + 0.015368456020951271, + -0.007519248872995377, + -0.011186865158379078, + -0.07863166928291321, + -0.00382942333817482, + -0.01789390854537487, + 0.05781889706850052, + 0.002738021779805422, + -0.0002589698997326195, + 0.040991008281707764, + -0.01790659874677658, + 0.08868271857500076, + -0.00850277952849865, + -0.003486773930490017, + 0.10558675229549408, + 0.08370795845985413, + -0.033275056630373, + -0.017563950270414352, + 0.0005690992693416774, + 0.018376154825091362, + 0.007252743933349848, + -0.009276912547647953, + -0.13035902380943298, + -0.042793091386556625, + 0.049163829535245895, + -0.014949662610888481, + -0.011808710172772408, + -0.007899969816207886, + -0.014683157205581665, + 0.024594606831669807, + 0.009511690586805344, + -0.03279280662536621, + 0.03614315763115883, + 0.04972222074866295, + 0.008026877418160439, + 0.0032345459330826998, + -0.003445529146119952, + -0.06517951190471649, + 0.001126301009207964, + -0.054214734584093094, + -0.00831876415759325, + 0.06081390753388405, + 0.021586906164884567, + 0.02429002895951271, + -0.1746242344379425, + 0.0003285705461166799, + -0.016091827303171158, + 0.037259940057992935, + -0.007525593973696232, + 0.0052127111703157425, + 0.03705688938498497, + -0.014632394537329674, + -0.04340224713087082, + 0.003069566795602441, + -0.08563694357872009, + -0.010990159586071968, + 0.02091429941356182, + -0.02941707707941532, + 0.023579347878694534, + 0.014264363795518875, + 0.017348207533359528, + 0.007919006049633026, + -0.01832539215683937, + 0.0417778342962265, + -0.0009835304226726294, + -0.03611777722835541, + -0.00789362471550703, + 0.02336360700428486, + -0.009930484928190708, + -0.052488796412944794, + 0.03781833127140999, + 0.0052127111703157425, + 0.056346774101257324, + -0.02852872759103775, + -0.008547197096049786, + -0.0613722987473011, + -0.0123226847499609, + 0.008788320235908031, + 0.061879925429821014, + -0.02382047288119793, + -0.0006158962496556342, + 0.010342933237552643, + 0.01908683590590954, + -0.021409235894680023, + -0.013934405520558357, + 0.05776813626289368, + -0.04088948294520378, + -0.08198201656341553, + -0.08208354562520981, + 0.02172650396823883, + -0.006266040727496147, + -0.06954512000083923, + 0.030432334169745445, + -0.06035704165697098, + 0.07675344496965408, + -0.008477398194372654, + 0.027386562898755074, + -0.06990046054124832, + -0.009435546584427357, + 0.01662483625113964, + 0.05028061196208, + 0.07188021391630173, + 0.060204751789569855, + -0.058529578149318695, + 0.016789816319942474, + 0.02687893435359001, + -0.03880820795893669, + -0.011104376055300236, + -0.06517951190471649, + 0.012931838631629944, + 0.02857949025928974, + 0.039011258631944656, + -0.03238670527935028, + 0.04053414613008499, + -0.04088948294520378, + -0.03840210288763046, + 0.007189290132373571, + -0.02974703721702099, + 0.008382217027246952, + 0.05154968425631523, + 0.03857977315783501, + -0.008287036791443825, + -0.012728787027299404, + 0.03281819075345993, + 0.0134013956412673, + -0.016751743853092194, + -0.027386562898755074, + 0.007982459850609303, + 0.025343358516693115, + -0.04431597888469696, + -0.017767000943422318, + 0.017145156860351562, + 0.02812262438237667, + -0.01751318760216236, + -0.004733636975288391, + -0.04342762753367424, + 0.07949464023113251, + 0.07954540103673935, + -0.03223441541194916, + 0.06061085686087608, + -0.04984913021326065, + 0.06172763928771019, + 0.05233651027083397, + 0.026472831144928932, + -0.007589047774672508, + -0.006713388487696648, + -0.016942104324698448, + -0.013325250707566738, + 0.011231282725930214, + -0.008807356469333172, + 0.08492626249790192, + 0.019822897389531136, + 0.009943175129592419, + -0.014188219793140888, + -0.05675287917256355, + 0.06015399098396301, + -0.04162554442882538, + -0.028630252927541733, + -0.05568685755133629, + -0.050509046763181686, + -0.01535576581954956, + -0.013972477056086063, + -0.040661051869392395, + 0.027462707832455635, + 0.011136102490127087, + -0.044468265026807785, + -0.05325024202466011, + -0.007988804951310158, + 0.08660144358873367, + -0.059747885912656784, + 0.05482389032840729, + -0.03396035358309746, + -0.004444922786206007, + -0.0348740853369236, + -0.004543276038020849, + -0.0075953928753733635, + -0.01085690688341856, + -0.04911306872963905, + -0.023655492812395096, + -0.03195521980524063, + -0.03022928349673748, + 0.05406244844198227, + -0.031701408326625824, + -0.0027840256225317717, + -0.09832765907049179, + -0.03989960998296738, + -0.028198769316077232, + 0.028274914249777794, + 0.04291999712586403, + 0.11573932319879532, + 0.02725965529680252, + 0.06502722203731537, + 0.037183795124292374, + -0.009308639913797379, + 0.004191108513623476, + -0.02557179145514965, + 0.000492954975925386, + 0.01701824925839901, + 0.06766689568758011, + -0.0425138957798481, + 0.04312305152416229, + 0.005019177682697773, + 0.043173812329769135, + 0.0032964132260531187, + 0.017995433881878853, + -0.035559382289648056, + 0.02769114077091217, + 0.06426578015089035, + -0.03195521980524063, + -0.016332950443029404, + 0.014378580264747143, + -0.007100454997271299, + 0.06695621460676193, + 0.03568629175424576, + -0.025622554123401642, + 0.1048760712146759, + -0.002116176765412092, + 0.036422353237867355, + 0.041473258286714554, + 0.0783778578042984, + -0.10822641849517822, + 0.04543276131153107, + -0.08446940034627914, + 0.03416340425610542, + 0.015952229499816895, + -0.024112358689308167, + -0.012709750793874264, + 0.04378296807408333, + 0.0433768630027771, + 0.0028363747987896204, + 0.01579993963241577, + -0.009911448694765568, + -0.01742435246706009, + -0.03784371167421341, + -0.08289574831724167, + 0.048554677516222, + 0.0850277915596962, + -0.038554392755031586, + -0.02934093400835991, + -0.02385854534804821, + 0.03233594074845314, + -0.052488796412944794, + -0.02814800664782524, + -0.07142334431409836, + -0.023680875077843666, + 0.06335204839706421, + -0.003765969770029187, + -0.004628938157111406, + 0.0031917148735374212, + 0.06375814974308014, + -0.008375871926546097, + -0.007214671466499567, + 0.06000170111656189, + 0.06330128759145737, + 0.05578838288784027, + 0.04071181267499924, + -0.06426578015089035, + 0.03535633161664009, + 0.07472293078899384, + 0.02389661595225334, + -0.00809667631983757, + 0.014429342932999134, + -0.040661051869392395, + -0.009803577326238155, + -0.004413196351379156, + 0.00981626845896244, + 0.041498638689517975, + 0.007849207147955894, + 0.010729999281466007, + -0.0005702890339307487, + -0.03071153163909912, + 0.007614429108798504, + -0.016053754836320877, + -0.012728787027299404, + 0.06797146797180176, + 0.016510620713233948, + -0.03159987926483154, + 0.029924705624580383, + -0.05154968425631523, + 0.03949350491166115, + -0.042361605912446976, + 0.08710906654596329, + -0.04850391298532486, + 0.06218450516462326, + -0.024924565106630325, + 0.0014800546923652291, + -0.018541134893894196, + -0.008217237889766693, + 0.0017069012392312288, + 0.08279422670602798, + 0.01878225803375244, + 0.021536143496632576, + -0.09208382666110992, + 0.05888491868972778, + -0.05264108628034592, + 0.051778119057416916, + 0.01362982764840126, + 0.023972760885953903, + -0.030432334169745445, + 0.023160554468631744, + 0.04223470017313957, + -0.008636031299829483, + 0.0025413157418370247, + -0.01191658154129982, + -0.04934149980545044, + -0.1164500042796135, + -0.04903692379593849, + 0.0452297106385231, + -0.005634677596390247, + 0.010044701397418976, + -0.021371163427829742, + 0.032945096492767334, + 0.05289490148425102, + 0.047463275492191315, + 0.010596747510135174, + -0.02852872759103775, + 0.036396972835063934, + -0.012176740914583206, + 0.029493222013115883, + 0.06604248285293579, + 0.010146226733922958, + 0.007252743933349848, + 0.13350632786750793, + -0.01963253691792488, + 0.01618066243827343, + -0.04896077886223793, + 0.019416794180870056, + 0.03870668262243271, + 0.0012206882238388062, + 0.06705773621797562, + -0.09731240570545197, + 0.0364731140434742, + 0.05746355652809143, + 0.01581263169646263, + -0.006434192415326834, + -0.01020333543419838, + 0.026980459690093994, + 0.06132153421640396, + -0.005485561676323414, + -0.022411802783608437, + -0.04652416333556175, + 0.02300826646387577, + 0.0925406962633133, + -0.05010294169187546, + -0.10589132457971573, + -0.049138449132442474, + -0.10035817325115204, + 0.013769426383078098, + 0.044899750500917435, + 0.02637130580842495, + 0.13563837110996246, + 0.06411349028348923, + -0.05670211464166641, + 0.11949577182531357, + -0.04672721400856972, + 0.033909592777490616, + 0.033884208649396896, + 0.05746355652809143, + 0.01382018905133009, + -0.03497561067342758, + 0.1048760712146759, + -0.04680335894227028, + -0.0005092149367555976, + -0.06604248285293579, + -0.04901154339313507, + 0.03233594074845314, + -0.040254946798086166, + -0.0005794104654341936, + 0.0570574551820755, + -0.038529012352228165, + -0.004467131569981575, + 0.05436702445149422, + -0.005980499554425478, + -0.011999071575701237, + 0.020165545865893364, + -0.005561706144362688, + 0.026244398206472397, + 0.033782683312892914, + 0.004949378781020641, + -0.09386052936315536, + -0.027970336377620697, + -0.029924705624580383, + 0.09457121044397354, + 0.0134013956412673, + -0.01997518539428711, + 0.011631040833890438, + -0.0058313836343586445, + -0.05167659372091293, + 0.023059029132127762, + -0.009867031127214432, + 0.046651069074869156, + -0.009283258579671383, + 0.10812489688396454, + -0.0032297871075570583, + -0.00023497652728110552, + -0.02559717185795307, + 0.03951888531446457, + 0.018147721886634827, + -0.006827604956924915, + 0.033427342772483826, + -0.01744973286986351, + -0.09604333341121674, + -0.013337941840291023, + 0.002956936601549387, + 0.050940532237291336, + -0.019378721714019775, + -0.05492541566491127, + -0.05817423760890961, + 0.034264929592609406, + -0.03477256000041962, + -0.039772700518369675, + 0.027411945164203644, + 0.02340167947113514, + 0.0028681016992777586, + 0.0053237550891935825, + -0.024505771696567535, + 0.0384528674185276, + -0.011180520057678223, + 0.005606123246252537, + 0.059798650443553925, + -0.014467415399849415, + -0.04860543832182884, + -0.029239408671855927, + -0.01868073269724846, + -0.011402607895433903, + 0.003264686558395624, + 0.08020532131195068, + 0.03657463937997818, + -0.059443309903144836, + -0.008363181725144386, + -0.016497930511832237, + -0.06690545380115509, + -0.018833020702004433, + -0.03649849817156792, + 0.039366599172353745, + -0.021472690626978874, + -0.010526948608458042, + -0.003994402475655079, + 0.052539560943841934, + 0.031422208994627, + 0.03030542843043804, + -0.044848985970020294, + -0.01830001175403595, + -0.021104659885168076, + -0.0322851799428463, + 0.062438320368528366, + -0.008769284002482891 + ] + }, + { + "id": "5d5935ea-0fd3-49a8-a8f5-cd240d6b0f4b", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "molinachad", + "reviewDate": "2021-10-30T03:17:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cd24c1fd-d3fc-4b5b-8b7e-ca82cb4d889c", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "anorton", + "reviewDate": "2021-08-27T22:14:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "90888c6a-df3b-49f1-b871-eb424a214aba", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "xnoble", + "reviewDate": "2021-01-06T09:26:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0d1240cd-8fb1-41da-b9a5-60e43f1768a2", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "colonchad", + "reviewDate": "2022-12-21T22:21:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "db8d12a8-79b3-4d87-bacc-d71995dc1449", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "whorn", + "reviewDate": "2021-02-13T06:27:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c04f2186-171f-4b53-b0c0-38dae1caac3c", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "bortiz", + "reviewDate": "2021-05-07T01:10:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "49730dca-e163-4725-bf58-afc5f28c77a1", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "frobles", + "reviewDate": "2021-06-10T03:49:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eadac108-086f-453c-a3a9-5fb63465bda8", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "baileytara", + "reviewDate": "2021-10-23T12:14:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3507fcd1-4b19-4621-b8df-5ce61a9d5698", + "productId": "87d4eb21-4e2f-46fc-91e2-282672aabaea", + "category": "Accessory", + "docType": "customerRating", + "userName": "paularnold", + "reviewDate": "2022-12-24T04:01:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "product", + "name": "Basic TV Super (Silver)", + "description": "This Basic TV Super (Silver) is the latest entry in \"Super Series\" series of the Super Nintendo Entertainment System. This series shows each player a simple, quick action TV game that can be played", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-10-25T02:56:49", + "price": 532.05, + "stock": 38, + "priceHistory": [ + { + "priceDate": "2021-01-11T11:36:44", + "newPrice": 529.2 + }, + { + "priceDate": "2023-04-04T11:36:44", + "newPrice": 532.05 + } + ], + "descriptionVector": [ + 0.08168841153383255, + 0.010106456466019154, + -0.039484474807977676, + 0.0683525949716568, + -0.03917068988084793, + -0.06186772882938385, + -0.01634291186928749, + 0.02167723886668682, + 0.045760154724121094, + 0.05289873853325844, + 0.021311156451702118, + -0.026880821213126183, + 0.10349639505147934, + -0.053761642426252365, + 0.04722447693347931, + 0.02310233935713768, + -0.06646989285945892, + 0.02344227209687233, + 0.022579366341233253, + -0.03503920137882233, + 0.044191233813762665, + 0.004445272032171488, + 0.01288475189357996, + 0.007746540009975433, + -0.04450501874089241, + 0.004173979628831148, + -0.03958906978368759, + 0.0492379255592823, + -0.05506907403469086, + 0.01592453382909298, + 0.0028142493683844805, + 0.02418750897049904, + 0.014983181841671467, + -0.008714040741324425, + -0.007903432473540306, + 0.037497177720069885, + 0.00743275647982955, + 0.06265218555927277, + 0.01771571673452854, + -0.07457597553730011, + -0.005978237371891737, + -0.007694242987781763, + -0.019245412200689316, + 0.028894267976284027, + -0.014604026451706886, + 0.025403421372175217, + -0.02248784713447094, + -0.02070973813533783, + -0.033601026982069016, + -0.0519573837518692, + 0.0141856474801898, + 0.01935000717639923, + 0.04615238308906555, + 0.05522596836090088, + -0.01949382573366165, + 0.013361964374780655, + -0.009034361690282822, + 0.05064995214343071, + 0.0376017726957798, + -0.004291648510843515, + -0.030724674463272095, + -0.05119907483458519, + 0.046309273689985275, + 0.053421709686517715, + -0.006465255748480558, + -0.0403212308883667, + -0.022644739598035812, + 0.05002238601446152, + 0.019519973546266556, + 0.009675003588199615, + -0.014342539012432098, + 0.03765406832098961, + -0.012499058619141579, + 0.09533800929784775, + 0.00466426694765687, + 0.05046691372990608, + 0.07033989578485489, + -0.0464661680161953, + 0.004690415691584349, + -0.008968990296125412, + 0.00019580851949285716, + 0.04725062847137451, + 0.025128861889243126, + 0.038307785987854004, + 0.04793049022555351, + 0.03464697301387787, + 0.0069620804861187935, + -0.10992896556854248, + -0.08059016615152359, + 0.059305157512426376, + -0.002513539744541049, + 0.06144934892654419, + 0.007079749368131161, + 0.03156143054366112, + 0.027246901765465736, + 0.08806868642568588, + -0.05015312880277634, + 0.029025010764598846, + -0.04068731516599655, + 0.03663427010178566, + 0.12258491665124893, + -0.011466187424957752, + -0.0025609342847019434, + -0.08634287118911743, + -0.0021605328656733036, + -0.02829284965991974, + -0.019101595506072044, + -0.012584041804075241, + -0.02952183596789837, + -0.11693680286407471, + -0.062442999333143234, + -0.022736258804798126, + 0.021311156451702118, + 0.005667721852660179, + -0.03558832406997681, + 0.01912774331867695, + -0.07196111232042313, + 0.016708992421627045, + 0.03802014887332916, + 0.012257183901965618, + -0.05010082945227623, + 0.0023958708625286818, + -0.048636507242918015, + -0.0021621673367917538, + -0.0423608273267746, + -0.04123643413186073, + -0.026148658245801926, + 0.07614489644765854, + 0.025664908811450005, + -0.02591332048177719, + -0.06918935477733612, + -0.033182647079229355, + 0.0010606549913063645, + 0.0779230073094368, + -0.061344753950834274, + 0.04134102910757065, + -0.04670150578022003, + 0.004703490063548088, + -0.040713462978601456, + 0.08759801089763641, + -0.06950313597917557, + 0.0314306877553463, + 0.09899882227182388, + 0.04895028844475746, + -0.028868120163679123, + 0.004468152299523354, + 0.0030642959754914045, + 0.024370551109313965, + -0.008766338229179382, + -0.009361219592392445, + 0.08242057263851166, + -0.015702269971370697, + -0.035169947892427444, + -0.013178924098610878, + 0.003762138308957219, + 0.08995138853788376, + -0.03158757835626602, + 0.009675003588199615, + 0.009433128871023655, + 0.05967123806476593, + 0.03096001222729683, + -0.029914066195487976, + -0.10558828711509705, + -0.03519609570503235, + -0.010622892528772354, + 0.020474400371313095, + 0.03611129894852638, + 0.06212921440601349, + 0.010217588394880295, + -0.006618879269808531, + 0.011721136048436165, + -0.021638015285134315, + 0.003566023427993059, + 0.03328724205493927, + 0.0444265715777874, + 0.004350482951849699, + 0.003860195865854621, + -0.04777359962463379, + -0.022069469094276428, + -0.049656301736831665, + -0.035091500729322433, + -0.0036738866474479437, + -0.10401936620473862, + -0.062024619430303574, + 0.012669024989008904, + 0.0043276031501591206, + 0.022893151268363, + 0.031221499666571617, + -0.1073140949010849, + 0.01045292615890503, + 0.01805564947426319, + -0.012224498204886913, + 0.022370178252458572, + -0.05318637192249298, + -0.001429187599569559, + 0.006223381031304598, + 0.0090605104342103, + -0.04591704532504082, + -0.006667907815426588, + 0.08346652239561081, + -0.01949382573366165, + 0.01621216908097267, + 0.03245048597455025, + -0.047669004648923874, + 0.018696291372179985, + 0.02967872843146324, + -0.028789673000574112, + -0.009420054033398628, + 0.038177043199539185, + 0.01912774331867695, + 0.03226744383573532, + 0.007517739664763212, + 0.050676099956035614, + 0.0015035478863865137, + 0.09800517559051514, + -0.016303688287734985, + -0.00151171931065619, + 0.01312662661075592, + -0.003919030074030161, + -0.06599921733140945, + 0.07285016030073166, + 0.01818639226257801, + 0.012904363684356213, + -0.03786325827240944, + 0.0018287717830389738, + -0.01694433018565178, + 0.046387720853090286, + 0.004778667353093624, + -0.032293595373630524, + 0.04066116362810135, + -0.10877842456102371, + 0.03456852585077286, + 0.01059020683169365, + 0.0072497157379984856, + -0.031953662633895874, + 0.022893151268363, + 0.06171083450317383, + -0.03239819034934044, + -0.14538654685020447, + 0.014407911337912083, + -0.018552472814917564, + -0.01155116967856884, + -0.055539753288030624, + -0.0035889034625142813, + 0.09340301156044006, + 0.02284085378050804, + 0.07321624457836151, + 0.0015566623769700527, + -0.05216657370328903, + -0.06850948929786682, + -0.07619719207286835, + -0.03135224059224129, + 0.04667535796761513, + 0.03822933882474899, + -0.019180040806531906, + 0.06688827276229858, + 0.037758663296699524, + -0.0056415731087327, + 0.06913705170154572, + 0.0021343843545764685, + -0.094344362616539, + -0.007753077428787947, + 0.013276981189846992, + 0.058416105806827545, + -0.050623804330825806, + 0.008982064202427864, + 0.004432197660207748, + -0.09591328352689743, + -0.062024619430303574, + 0.016695918515324593, + 0.013276981189846992, + 0.03184906765818596, + -0.03396710753440857, + 0.08383259922266006, + 0.023834502324461937, + -0.01384571474045515, + -0.01626446656882763, + 0.04290995001792908, + 0.03234589099884033, + -0.031195349991321564, + 0.09821436554193497, + 0.08759801089763641, + 0.03224129602313042, + -0.03341798484325409, + 0.06605151295661926, + -0.017310412600636482, + -0.0297310259193182, + 0.06500556319952011, + 0.02748224139213562, + 0.0013842446496710181, + -0.04547251760959625, + 0.033182647079229355, + 0.019323859363794327, + -0.009341608732938766, + 0.1210159957408905, + 0.043511368334293365, + -0.0023729908280074596, + -0.04764285683631897, + 0.014237944968044758, + -0.026501666754484177, + 0.020932001993060112, + -0.025259604677557945, + -0.03289501368999481, + -0.08676125109195709, + -0.05951434746384621, + 0.06312286108732224, + -0.016460580751299858, + 0.047459814697504044, + -0.11589085310697556, + -0.07635408639907837, + 0.012767083011567593, + -0.010217588394880295, + -0.009210865013301373, + -0.04858420789241791, + 0.048767250031232834, + 0.0010189805179834366, + 0.011021659709513187, + 0.06782962381839752, + -0.03388866037130356, + 0.03383636474609375, + 0.011165477335453033, + 0.0035202631261199713, + -0.019990649074316025, + 0.08351881802082062, + 0.08733651787042618, + -0.0114465756341815, + -0.03574521839618683, + -0.02863278239965439, + -0.07855056971311569, + 0.020317507907748222, + 0.0321367010474205, + 0.0389876514673233, + -0.0635935366153717, + 0.07368692010641098, + 0.001859823358245194, + -0.002185047371312976, + 0.07604029774665833, + 0.07128124684095383, + -0.034620825201272964, + -0.047459814697504044, + 0.06401191651821136, + 0.04929022118449211, + 0.040844205766916275, + -0.02331152930855751, + -0.04670150578022003, + 0.008446017280220985, + -0.02685467340052128, + -0.037209540605545044, + 0.01921926438808441, + 0.03315649926662445, + 0.0014054904459044337, + -0.03234589099884033, + 0.09010827541351318, + -0.01886625774204731, + 0.12195734679698944, + -0.010204514488577843, + 0.0027472435031086206, + 0.01648673042654991, + 0.10720950365066528, + -0.00039304702659137547, + 0.052114278078079224, + -0.03391481190919876, + 0.0779230073094368, + 0.052401911467313766, + -0.023873725906014442, + 0.05347400903701782, + 0.02672392874956131, + 0.0321367010474205, + -0.013231221586465836, + -0.023010820150375366, + 0.017035851255059242, + -0.01234216708689928, + -0.05227116867899895, + -0.019180040806531906, + 0.05271569639444351, + -0.0008216399000957608, + -0.04484495148062706, + -0.009714227169752121, + 0.013453485444188118, + 0.03935373201966286, + -0.02748224139213562, + 0.0594620518386364, + -0.023834502324461937, + -0.026880821213126183, + 0.00505976565182209, + 0.01062942948192358, + -0.037026502192020416, + -0.04128873348236084, + -0.024658186361193657, + -0.017245041206479073, + 0.05023157224059105, + 0.05899137631058693, + 0.025521092116832733, + 0.0547029934823513, + -0.0075700366869568825, + 0.01070133876055479, + 0.06584232300519943, + -0.017075074836611748, + 0.059305157512426376, + -0.014211796224117279, + 0.02501119300723076, + 0.08304814249277115, + 0.02658011205494404, + -0.07672016322612762, + -0.05825921148061752, + -0.022853927686810493, + -0.04701529070734978, + 0.10381017625331879, + -0.028737375512719154, + -0.05721326544880867, + 0.01524466834962368, + -0.0984758511185646, + -0.02639707177877426, + -0.01387186348438263, + 0.011766896583139896, + -0.000869442883413285, + 0.05653339996933937, + 0.026906970888376236, + 0.06725434958934784, + -0.030044808983802795, + -0.01791183091700077, + 0.05227116867899895, + 0.09167719632387161, + 0.005148017313331366, + 0.038386233150959015, + -0.07300705462694168, + 0.022095616906881332, + -0.011126254685223103, + 0.01155770756304264, + 0.012793231755495071, + -0.05106833204627037, + -0.06380272656679153, + -0.038386233150959015, + -0.004961708094924688, + -0.06239069998264313, + 0.011616542004048824, + -0.0011399181094020605, + 0.027848321944475174, + -0.007086286786943674, + 0.005530441179871559, + -0.0019562465604394674, + 0.006641759537160397, + 0.02323308400809765, + 0.011296221055090427, + 0.0017813773592934012, + -0.024645110592246056, + 0.026344774290919304, + 0.014695546589791775, + 0.05428461730480194, + 0.055121373385190964, + -0.03613744676113129, + 0.009289311245083809, + 0.0164082832634449, + 0.020971223711967468, + -0.016016053035855293, + 0.0888531431555748, + 0.013505782000720501, + 0.015545377507805824, + 0.01340118795633316, + 0.05004853382706642, + 0.027377646416425705, + 0.017323486506938934, + 0.036189742386341095, + -0.05883448198437691, + -0.023625314235687256, + 0.021651089191436768, + -0.051774345338344574, + -0.018029499799013138, + -0.01626446656882763, + 0.004481226205825806, + 0.02350764535367489, + -0.08074706047773361, + -0.05580123886466026, + 0.0004996845382265747, + 0.04000744968652725, + -0.02200409583747387, + 0.04534177482128143, + 0.04277920722961426, + 0.012034920044243336, + 0.03375791758298874, + 0.04327603057026863, + 0.008602908812463284, + -0.05506907403469086, + 0.007308550179004669, + 0.03297346085309982, + 0.028946565464138985, + -0.018304061144590378, + 0.0635412409901619, + 0.048165831714868546, + 0.0376017726957798, + 0.09465814381837845, + 0.0014095761580392718, + -0.010596743784844875, + -0.01894470304250717, + -0.03566677123308182, + -0.01797720231115818, + 0.020461326465010643, + -0.021951798349618912, + 0.0038275099359452724, + 0.08618597686290741, + -0.06579002737998962, + -0.0002680237521417439, + -0.016186019405722618, + 0.005510829854756594, + 0.014054903760552406, + 0.027011564001441002, + 0.0314306877553463, + -0.004085727967321873, + 0.02250092104077339, + 0.06610380858182907, + -0.010263348929584026, + 0.054389212280511856 + ] + }, + { + "id": "07295599-52f7-4938-8a86-ec02b481c537", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "heathermendoza", + "reviewDate": "2021-04-23T16:38:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4e9fe539-ef36-4eec-8682-ff1bba774a02", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "yfaulkner", + "reviewDate": "2021-09-03T13:29:39", + "stars": 2, + "verifiedUser": false + }, + { + "id": "037442a4-3989-4216-a5f6-8545e79f0033", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "maria93", + "reviewDate": "2022-01-14T15:34:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2e7fbd94-b6bf-4977-b375-9b1c4a45f1cc", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "gsnyder", + "reviewDate": "2021-06-01T22:01:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5d94b64f-5605-4b5b-a865-35fc717fe7a6", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "patrick98", + "reviewDate": "2022-08-16T15:20:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dff51f8c-0961-4d47-a398-31a20ff48505", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "margaretfisher", + "reviewDate": "2021-03-06T16:53:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e36cc1d4-78ad-4070-ae80-f4094b3de361", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "whitejames", + "reviewDate": "2021-01-11T11:36:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ac8eb3e6-cb94-4c5e-a2b3-031f671318ac", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "anthony16", + "reviewDate": "2021-09-09T13:15:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8a97ece7-8fca-4239-80cb-744d82d90ea1", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "amberlarsen", + "reviewDate": "2021-12-10T08:48:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "be92e5c9-2cb8-47a7-88fc-622a795af4b0", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "omar48", + "reviewDate": "2021-02-06T07:45:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a0886e56-95cd-46e5-ba02-40e45d60a9b4", + "productId": "af5dc006-de83-4b7f-afe8-cd7b751e3aff", + "category": "Media", + "docType": "customerRating", + "userName": "ywest", + "reviewDate": "2022-12-05T12:16:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Micro (Silver)", + "description": "This Basic Stand Micro (Silver) is a very strong unit that can break down anything you need it for; and this will give you some of the strongest options to increase your DPS or clear out enemies. For more build secrets, check out the section in the next chapter on how to get started with this unit.", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-09-27T16:04:59", + "price": 475.97, + "stock": 13, + "priceHistory": [ + { + "priceDate": "2021-01-03T20:47:37", + "newPrice": 470.44 + }, + { + "priceDate": "2021-07-01T20:47:37", + "newPrice": 458.19 + }, + { + "priceDate": "2021-12-27T20:47:37", + "newPrice": 517.37 + }, + { + "priceDate": "2022-06-24T20:47:37", + "newPrice": 496.21 + }, + { + "priceDate": "2022-12-20T20:47:37", + "newPrice": 472.96 + }, + { + "priceDate": "2024-06-12T20:47:37", + "newPrice": 475.97 + } + ], + "descriptionVector": [ + 0.007905138656497002, + -0.060134731233119965, + -0.04483729973435402, + 0.01373691763728857, + 0.018345195800065994, + -0.06945385783910751, + -0.03167916461825371, + 0.021568791940808296, + 0.030213892459869385, + 0.1370321661233902, + -0.036485254764556885, + 0.02609647996723652, + 0.045775074511766434, + -0.07091912627220154, + 0.021495528519153595, + -0.0053006187081336975, + -0.010894292034208775, + 0.012835776433348656, + -0.022799620404839516, + -0.028968412429094315, + 0.03317373991012573, + -0.08633378148078918, + -0.06564415246248245, + 0.03229457885026932, + -0.003762083826586604, + -0.023561561480164528, + 0.007069933693856001, + -0.04841256141662598, + -0.060779452323913574, + 0.06986413151025772, + 0.03821427375078201, + 0.009758706204593182, + -0.008454615250229836, + 0.02423558570444584, + 0.01213244628161192, + -0.015619791112840176, + 0.0063959090039134026, + 0.017803044989705086, + 0.00935575645416975, + 0.014330352656543255, + 0.00811027642339468, + 0.010791722685098648, + 0.001939652836881578, + -0.015531875193119049, + 0.04419258236885071, + 0.050815608352422714, + -0.02558363601565361, + -0.05866945907473564, + -0.02237469144165516, + -0.006377593148499727, + 0.037159278988838196, + -0.02936403639614582, + -0.0311516672372818, + -0.0038426737301051617, + 0.03669039160013199, + -0.03411151468753815, + 0.003003806108608842, + 0.11950752139091492, + -0.029745006933808327, + 0.01988373138010502, + 0.023312466219067574, + -0.05740932747721672, + -0.000725767167750746, + 0.06728525459766388, + -0.03929857537150383, + -0.010059086605906487, + 0.04041218012571335, + 0.008220171555876732, + 0.005626641679555178, + -0.024704473093152046, + -0.03976746276021004, + 0.08838516473770142, + -0.02679981105029583, + 0.01630846969783306, + 0.0026777831371873617, + -0.0042053284123539925, + 0.1494576632976532, + 0.026682589203119278, + 0.07730770856142044, + 0.04243425652384758, + 0.010388772934675217, + -0.042610086500644684, + -0.04120342805981636, + -0.02184719406068325, + 0.07185690104961395, + -0.020733587443828583, + -0.04293244704604149, + -0.10168982297182083, + -0.004857374355196953, + 0.03346679359674454, + -0.039650239050388336, + 0.0689263567328453, + 0.05940209701657295, + -0.034052904695272446, + -0.01370028592646122, + 0.07156384736299515, + -0.04551132395863533, + 0.024470029398798943, + 0.024543292820453644, + -0.02688772790133953, + 0.01608867757022381, + 0.06365138292312622, + -0.021715320646762848, + 0.013971361331641674, + -0.040265653282403946, + 0.004593625199049711, + 0.041437871754169464, + 0.07420133799314499, + 0.021378306671977043, + -0.09184320271015167, + -0.008293434977531433, + -0.04052940383553505, + 0.09231209009885788, + 0.043342724442481995, + 0.0071065654046833515, + 0.007619410287588835, + -0.03440456837415695, + -0.01920970529317856, + -0.09184320271015167, + -0.08979181945323944, + 0.011634253896772861, + 0.0872129425406456, + 0.023502951487898827, + 0.018901998177170753, + -0.034580402076244354, + -0.008842911571264267, + -0.02419162727892399, + -0.016103330999612808, + 0.016454996541142464, + 0.020088868215680122, + -0.021598098799586296, + 0.015707707032561302, + 0.029598478227853775, + 0.0038573264610022306, + -0.03176708146929741, + 0.087447389960289, + 0.0499950535595417, + 0.052017129957675934, + -0.0625963881611824, + 0.09852483868598938, + -0.06581998616456985, + -0.04600951820611954, + -0.023297812789678574, + 0.007553473114967346, + -0.024147670716047287, + 0.008872217498719692, + -0.02112921141088009, + 0.09424624592065811, + 0.05670599639415741, + -0.0059526641853153706, + 0.005564367398619652, + -0.047035206109285355, + -0.034551095217466354, + -0.040910374373197556, + 0.042023979127407074, + -0.00419433880597353, + -0.09577012807130814, + -0.062068890780210495, + -0.04184814542531967, + 0.09852483868598938, + 0.010418078862130642, + 0.021055947989225388, + -0.07021579891443253, + 0.014198478311300278, + -0.016704091802239418, + 0.04621465504169464, + 0.08445823192596436, + 0.1247238889336586, + -0.03249971568584442, + 0.047709230333566666, + 0.030096670612692833, + -0.0002231104444945231, + -0.05354101210832596, + -0.03247040882706642, + 0.062068890780210495, + -0.0437823049724102, + 0.027825500816106796, + -0.01525347400456667, + 0.01305556669831276, + -0.022140247747302055, + -0.05442017316818237, + 0.019634634256362915, + -0.041437871754169464, + -0.015956804156303406, + 0.0623619444668293, + 0.02244795486330986, + -0.012066508643329144, + 0.010088392533361912, + 0.02123177982866764, + -0.03000875562429428, + -0.005758516024798155, + -0.05427364632487297, + -0.023371076211333275, + 0.003937916364520788, + 0.008542531169950962, + -0.050844911485910416, + -0.055270031094551086, + -0.014733302406966686, + -0.010322836227715015, + -0.02234538644552231, + -0.05362892895936966, + 0.01685061864554882, + 0.060251954942941666, + 0.03543026000261307, + 0.01750999130308628, + -0.040294960141181946, + 0.004058801103383303, + 0.008923501707613468, + 0.04571646451950073, + -0.017597908154129982, + 0.009531589224934578, + -0.019239012151956558, + -0.008667079731822014, + 0.03062416799366474, + -0.016557564958930016, + 0.04176022857427597, + 0.005472788121551275, + -0.02250656671822071, + -0.0685746967792511, + -0.0625377744436264, + 0.03566470369696617, + -0.10514786094427109, + -0.027869459241628647, + 0.012572026811540127, + -0.03261693939566612, + -0.04811950773000717, + 0.0497899167239666, + 0.036455947905778885, + 0.011707517318427563, + 0.041379258036613464, + -0.0559440553188324, + 0.030770696699619293, + 0.07261884212493896, + 0.03293929621577263, + 0.025744816288352013, + 0.037716083228588104, + 0.03062416799366474, + -0.04929172620177269, + -0.10784396529197693, + 0.02808924950659275, + -0.006520457100123167, + 0.007568126078695059, + -0.04729895666241646, + 0.0248803049325943, + 0.046537015587091446, + 0.006355613935738802, + 0.06552693247795105, + -0.08012103289365768, + -0.014799239113926888, + -0.020689629018306732, + -0.003644862212240696, + 0.0046705519780516624, + -0.000707909173797816, + 0.020455187186598778, + 0.06283082813024521, + 0.03566470369696617, + 0.07853853702545166, + -0.015429305844008923, + -0.0438409149646759, + 0.014432922005653381, + -0.016454996541142464, + -0.0139860138297081, + -0.010344814509153366, + 0.0014066604198887944, + -0.08457545936107635, + -0.002551403595134616, + 0.01860894449055195, + 0.05796613171696663, + -0.05351170524954796, + 0.018594292923808098, + -0.042111895978450775, + 0.0057914843782782555, + 0.01805214211344719, + -8.282216731458902e-05, + -0.02858744189143181, + 0.027913417667150497, + 0.0027620363980531693, + 0.07607688009738922, + 0.004736489150673151, + -0.012901713140308857, + 0.06499943137168884, + -0.005403187591582537, + 0.08522017300128937, + 0.08305157721042633, + 0.052779071033000946, + -0.013011608272790909, + 0.01862359791994095, + -0.08416517823934555, + 0.024220934137701988, + -0.05371684208512306, + -0.042111895978450775, + 0.007663368713110685, + 0.020704282447695732, + 0.08791627734899521, + 0.10514786094427109, + -0.0038023788947612047, + 0.008344720117747784, + -0.004300571046769619, + 0.02376670017838478, + 0.006249381694942713, + -0.0685746967792511, + 0.05562169477343559, + -0.00010760585428215563, + -0.06523387879133224, + -0.01938553899526596, + 0.08211380243301392, + 0.018359849229454994, + -0.025085443630814552, + -0.08609934151172638, + -0.025832731276750565, + 0.09155014902353287, + -0.016557564958930016, + -0.06007612124085426, + 0.04571646451950073, + 0.02874862216413021, + -0.03296860307455063, + 0.08686128258705139, + 0.017026452347636223, + -0.08832655102014542, + 0.07168106734752655, + 0.032734159380197525, + -0.05099143832921982, + 0.005000238306820393, + 0.07267745584249496, + 0.12015224248170853, + -0.0003601362113840878, + 0.014462227001786232, + 0.027605710551142693, + -0.0497899167239666, + -0.029481258243322372, + 0.02621370181441307, + -0.01799353025853634, + 0.019004568457603455, + -0.015868887305259705, + -0.021964415907859802, + -0.07543216645717621, + -0.027737583965063095, + -0.005949001293629408, + -0.0750804990530014, + 0.019180400297045708, + -0.01608867757022381, + 0.02553967759013176, + 0.008256803266704082, + -0.010051760822534561, + 0.0027308992575854063, + -0.03285137936472893, + -0.022594481706619263, + -0.06394443660974503, + 0.01184671837836504, + -0.02121712826192379, + 0.0018938630819320679, + -0.05990028753876686, + 0.06066222861409187, + -0.031415414065122604, + 0.11733891814947128, + -0.027224740013480186, + 0.08393073827028275, + -0.028851190581917763, + 0.030096670612692833, + -0.043987441807985306, + 0.03677830845117569, + -0.05743863433599472, + 0.01928296871483326, + 0.01569305546581745, + -0.017583254724740982, + 0.0560612790286541, + 0.030360419303178787, + -0.02247726172208786, + -0.005447146017104387, + 0.06494081765413284, + -0.009722074493765831, + 0.012352236546576023, + 0.10221732407808304, + -0.031415414065122604, + 0.018257278949022293, + -0.06587859243154526, + 0.10028316080570221, + -0.017656518146395683, + -0.06101389601826668, + 0.031474027782678604, + -0.010022454895079136, + 0.04436841234564781, + 0.006187107879668474, + -0.06617164611816406, + 0.10438591986894608, + -0.05131379887461662, + -0.05239810049533844, + 0.053951285779476166, + -0.06048639863729477, + -0.01276983879506588, + -0.05424433946609497, + 0.004996574949473143, + -0.00907002855092287, + 0.060779452323913574, + -0.008908849209547043, + -0.08352045714855194, + 0.010286204516887665, + -0.02999410219490528, + 0.024763083085417747, + -0.008234824053943157, + 0.00014572580403182656, + 0.023810656741261482, + 0.024030448868870735, + 0.025949953123927116, + 0.04510105028748512, + -0.06189305707812309, + 0.028997717425227165, + 0.03877107799053192, + -0.016704091802239418, + -0.0934843048453331, + 0.018330542370676994, + -0.0814104676246643, + -0.030682779848575592, + -0.04841256141662598, + 0.07156384736299515, + 0.020132826641201973, + 0.0156637504696846, + -0.038976214826107025, + -0.020250048488378525, + -0.045188963413238525, + 0.02054310217499733, + 0.03698344528675079, + 0.004992911592125893, + 0.039093438535928726, + -0.03663178160786629, + 0.08457545936107635, + -0.041408564895391464, + -0.029056329280138016, + -0.01468201819807291, + -0.04814881458878517, + 0.03419943153858185, + -0.0249096117913723, + -0.0019048525718972087, + 0.0053555662743747234, + 0.049057282507419586, + -0.06412027031183243, + 0.061365559697151184, + 0.021451570093631744, + -0.03856593742966652, + 0.03200152516365051, + -0.003708967939019203, + -0.01755394972860813, + 0.03572331368923187, + -0.04879353195428848, + -0.035811230540275574, + -0.024601904675364494, + -0.0621861107647419, + 0.01673339679837227, + 0.0020642008166760206, + 0.04507174342870712, + -0.08955737948417664, + -0.04510105028748512, + -0.08475128561258316, + 0.01799353025853634, + 0.02249191328883171, + -0.00516508100554347, + -0.018989915028214455, + 0.033935680985450745, + 0.030800001695752144, + 0.027884110808372498, + -0.005487440619617701, + 0.00013771260273642838, + -0.01630846969783306, + -0.016572218388319016, + 0.037423025816679, + 0.03440456837415695, + -0.010557278990745544, + 0.0026191724464297295, + -0.03841941058635712, + 0.009289819747209549, + -0.028162512928247452, + -0.10426869988441467, + -0.015590486116707325, + 0.030770696699619293, + -0.021598098799586296, + 0.017129020765423775, + -0.032763466238975525, + -0.0497899167239666, + -0.025993911549448967, + -0.03290999308228493, + -0.022697051987051964, + -0.020836157724261284, + -0.042639393359422684, + 0.03786261007189751, + -0.04501313343644142, + -0.03472692891955376, + 0.0017702308250591159, + -0.014103235676884651, + 0.019488107413053513, + 0.05113796517252922, + 0.03877107799053192, + 0.013854139484465122, + 0.012594006024301052, + -0.0026741200126707554, + 0.015927499160170555, + -0.009458325803279877, + -0.003780399914830923, + 0.05439087003469467, + -0.04917450249195099, + 0.0435771681368351, + -0.035195816308259964, + -0.03677830845117569, + 0.03173777461051941, + 0.010769743472337723, + 0.0186529029160738, + 0.07601827383041382, + 0.0023132970090955496, + 0.04255147650837898, + -0.011473073624074459, + -0.04556993395090103, + 0.01862359791994095, + -0.020044909790158272 + ] + }, + { + "id": "afeecf71-e879-4985-aa26-826fe8691cab", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "harrisjared", + "reviewDate": "2021-10-03T19:37:13", + "stars": 4, + "verifiedUser": false + }, + { + "id": "30b40513-9a75-465f-88fb-7243fbe8d4a7", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "chad81", + "reviewDate": "2022-04-04T04:38:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6bef4c51-85ba-4094-b698-9f6e0e74802f", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "belljay", + "reviewDate": "2022-12-06T17:22:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c867a8e0-1bc0-4ae6-8e0b-f80845f75abe", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "lthomas", + "reviewDate": "2021-06-24T00:20:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f7e2ba63-055a-429e-b14f-090cbbcbef9d", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "emily38", + "reviewDate": "2022-05-09T20:01:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c2beeafd-50d5-412e-b954-39856061a7cd", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "ariana72", + "reviewDate": "2022-02-15T10:51:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c6523cf4-5483-439e-9cec-0897ef2b2ba7", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "nhall", + "reviewDate": "2022-12-21T11:49:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "11e6498c-3f6d-4763-8e88-28b3ed68d40f", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "leeandrew", + "reviewDate": "2021-10-09T11:46:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "981f8558-3d80-484c-bffa-d24635be195f", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "ujohnson", + "reviewDate": "2022-03-08T22:01:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "05340dfa-b78e-4e50-aa84-8f8a4279e338", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "michelle22", + "reviewDate": "2021-01-03T20:47:37", + "stars": 4, + "verifiedUser": true + }, + { + "id": "06657d85-b265-42ca-86fa-565f000b15a1", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "jared78", + "reviewDate": "2022-10-29T09:17:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c8a03d4f-a7d0-4444-b86f-f0b549631561", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "teresa11", + "reviewDate": "2022-02-10T00:01:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ce040543-b4cf-49db-80d4-d9e79465b1a6", + "productId": "f9013e6f-14ae-4341-b9c3-9fc0b31acaae", + "category": "Accessory", + "docType": "customerRating", + "userName": "zwilliams", + "reviewDate": "2022-08-29T15:22:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Super (Black)", + "description": "This Basic Stand Super (Black) is a 2-way reversible electric motor for motors using the MOS COSFET for low resistance. To create an even more aggressive motor, you will need an even higher capacity M", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-07-31T15:21:20", + "price": 964.31, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-02-02T06:20:44", + "newPrice": 1010.47 + }, + { + "priceDate": "2021-07-18T06:20:44", + "newPrice": 878.1 + }, + { + "priceDate": "2021-12-31T06:20:44", + "newPrice": 907.43 + }, + { + "priceDate": "2022-06-15T06:20:44", + "newPrice": 895.68 + }, + { + "priceDate": "2022-11-28T06:20:44", + "newPrice": 1010.68 + }, + { + "priceDate": "2024-02-28T06:20:44", + "newPrice": 964.31 + } + ], + "descriptionVector": [ + -0.01674736849963665, + -0.01643921621143818, + -0.02672879956662655, + 0.019922668114304543, + 0.0035805872175842524, + 0.06597123295068741, + -0.009639784693717957, + 0.010256088338792324, + -0.02441096305847168, + 0.009010083973407745, + 0.056431930512189865, + 0.021878762170672417, + 0.037594493478536606, + -0.049572210758924484, + 0.04721418023109436, + 0.00348010309971869, + -0.043194811791181564, + 0.05803968012332916, + 0.029314592480659485, + 0.009746967814862728, + 0.02098110318183899, + -0.02872508578002453, + -0.05249295011162758, + 0.05846841260790825, + -0.07765419781208038, + -0.013096441514790058, + 0.007060690317302942, + -0.006993700750172138, + -0.04019368439912796, + 0.018408706411719322, + 0.032101355493068695, + 0.034191425889730453, + -0.016533002257347107, + 0.04252491518855095, + -0.030654381960630417, + -0.015461170114576817, + -0.009271343238651752, + -0.01291557028889656, + -0.046785447746515274, + -0.016171257942914963, + 0.04418625682592392, + -0.000518749700859189, + 0.024759309366345406, + 0.03183339536190033, + 0.04276607930660248, + 0.0607728473842144, + -0.026782391592860222, + -0.014014197513461113, + 0.010068518109619617, + -0.0381036102771759, + 0.03518287092447281, + -0.010751809924840927, + -0.034727342426776886, + 0.020150432363152504, + 0.014469726011157036, + 0.026380453258752823, + -0.007295153569430113, + 0.20504137873649597, + -0.011910728178918362, + -0.015340588986873627, + 0.00516153872013092, + -0.06849003583192825, + 0.006072595715522766, + 0.07760060578584671, + -0.047401752322912216, + 0.022508462890982628, + -0.010765207931399345, + -0.046865835785865784, + 0.03917544335126877, + 0.04568681865930557, + -0.08397800475358963, + 0.030279241502285004, + 0.03381628543138504, + -0.009659881703555584, + 0.021717986091971397, + -0.000444642617367208, + 0.09142722934484482, + 0.03462015837430954, + 0.060987215489149094, + -0.009894344955682755, + -0.0037179156206548214, + -0.007141077890992165, + -0.05664629861712456, + -0.04975977912545204, + 0.052841294556856155, + 0.008701932616531849, + 0.05458302050828934, + -0.07293813675642014, + -0.014215165749192238, + 0.029716528952121735, + -0.0019058504840359092, + 0.021865364164114, + 0.028108783066272736, + 0.03901466727256775, + 0.048205625265836716, + 0.0669894739985466, + 0.017578037455677986, + 0.03456656634807587, + 0.003470054594799876, + 0.014094584621489048, + 0.06012975051999092, + 0.06650714576244354, + -0.057075031101703644, + 0.0010333126410841942, + 0.04531167820096016, + -0.022039536386728287, + -0.012091599404811859, + 0.03295882046222687, + 0.027398694306612015, + -0.041667450219392776, + -0.022843409329652786, + -0.047910869121551514, + 0.08906920254230499, + 0.02696996182203293, + -0.040006112307310104, + -0.02178497612476349, + -0.041587065905332565, + 0.03938981145620346, + 0.08467469364404678, + -0.04659787565469742, + 0.06731101870536804, + 0.11725836992263794, + 0.02950216270983219, + 0.011488694697618484, + -0.08178074657917023, + -0.046463899314403534, + -0.07084806263446808, + -0.0017584736924618483, + 0.06757897883653641, + -0.06581045687198639, + -0.054502636194229126, + 0.05254654213786125, + 0.009579494595527649, + -0.041211921721696854, + -0.03979174792766571, + 0.023111367598176003, + 0.050215307623147964, + 0.018757052719593048, + -0.036737024784088135, + 0.015461170114576817, + -0.05479738861322403, + -0.09700075536966324, + 0.060665667057037354, + 0.05458302050828934, + 0.048527173697948456, + 0.01207820139825344, + -0.018623072654008865, + 0.037996429949998856, + 0.0786188468337059, + 0.045660022646188736, + 0.01563534326851368, + -0.12004513293504715, + -0.017591435462236404, + -0.08178074657917023, + 0.014952050521969795, + 0.06704306602478027, + -0.06934750080108643, + -0.008989986963570118, + -0.0010852294508367777, + 0.03228892385959625, + 0.07165194302797318, + 0.009030180983245373, + -0.044936537742614746, + 0.04281967133283615, + -0.008755523711442947, + -0.0028185821138322353, + 0.07749342173337936, + 0.055145733058452606, + -0.05393992364406586, + 0.04011329635977745, + 0.039443399757146835, + -0.014617103151977062, + -0.059057917445898056, + -0.05809326842427254, + 0.027706846594810486, + 0.004072960000485182, + 0.030734769999980927, + 0.03949699178338051, + 0.06591764092445374, + -0.01921258121728897, + -0.015769321471452713, + -0.06141594797372818, + 0.015286997891962528, + 0.057075031101703644, + 0.01103986520320177, + -0.007228164002299309, + -0.03470054641366005, + 0.05034928768873215, + -0.024839695543050766, + -0.01603727973997593, + 0.021436631679534912, + -0.05000094324350357, + 0.02656802535057068, + 0.035691991448402405, + 0.03491491451859474, + 0.005754395853728056, + -0.011997814290225506, + 0.011294425465166569, + 0.01856948249042034, + -0.019989658147096634, + -0.011676264926791191, + 0.0882653295993805, + -0.005590271670371294, + -0.012761494144797325, + -1.8605278455652297e-05, + -0.04137269780039787, + -0.010463755577802658, + 0.08188793063163757, + -0.01785939373075962, + -0.004109804052859545, + -0.04831280559301376, + -0.04793766513466835, + -0.0691867247223854, + -0.07309891283512115, + 0.0233659278601408, + 0.09233828634023666, + 0.019976260140538216, + -0.03636188432574272, + 0.04306083172559738, + -0.047910869121551514, + 0.047428544610738754, + -0.0607728473842144, + -0.041828226298093796, + -0.03695139288902283, + -0.07041933387517929, + -0.060665667057037354, + 0.035209666937589645, + 0.06634636968374252, + 0.028189169242978096, + -0.010550841689109802, + -0.010845595970749855, + 0.018931224942207336, + 0.030654381960630417, + 0.004967269487679005, + -0.05402031168341637, + 0.047589320689439774, + 0.0014235263224691153, + -0.011220736429095268, + -0.1083085760474205, + 0.004156696610152721, + -0.06366679072380066, + 0.016452614217996597, + -0.01937335543334484, + 0.00498401653021574, + 0.04281967133283615, + 0.004039464984089136, + 0.004123202059417963, + -0.050215307623147964, + -0.042551711201667786, + -0.055467281490564346, + -0.062166228890419006, + 0.037701673805713654, + -0.003547092666849494, + 0.01929296739399433, + 0.035933151841163635, + 0.02128925360739231, + 0.061523132026195526, + 0.0389074869453907, + -0.06522095203399658, + -0.03325357288122177, + 0.006702296901494265, + 0.01392041239887476, + -0.049170274287462234, + 0.10064498335123062, + -0.05297527462244034, + 0.027237920090556145, + -0.007462627254426479, + 0.07502821087837219, + -0.00396577687934041, + -0.009231149218976498, + 0.04429343715310097, + 0.020780134946107864, + 0.009150762110948563, + 0.0028905957005918026, + 0.043194811791181564, + 0.002388174645602703, + -0.045258086174726486, + 0.0342986099421978, + -0.006685549393296242, + -0.050912000238895416, + 0.0478304848074913, + 0.06302369385957718, + 0.053752351552248, + 0.0018824042053893209, + 0.07615362852811813, + -0.07325968891382217, + 0.05573524162173271, + -0.04761611670255661, + 0.01658659242093563, + -0.010631228797137737, + -0.014469726011157036, + 0.008862706832587719, + 0.007529616821557283, + -0.009505806490778923, + 0.034888118505477905, + -0.07427792996168137, + 0.08917638659477234, + -0.09485708922147751, + 0.03247649595141411, + 0.00610274076461792, + 0.02800159901380539, + 0.01856948249042034, + -0.006772635504603386, + -0.06613200902938843, + 0.017028722912073135, + 0.048527173697948456, + 0.019279569387435913, + -0.07068729400634766, + -0.07234863191843033, + -0.008588050492107868, + 0.04938463866710663, + 0.018542686477303505, + 0.0033946915064007044, + -0.028805473819375038, + 0.05367196351289749, + 0.007837768644094467, + 0.04273928329348564, + -0.016814356669783592, + -0.07449229061603546, + -0.006621909327805042, + -0.06173749640583992, + -0.052600134164094925, + -0.005462991539388895, + 0.04552604630589485, + 0.08971229940652847, + -0.051555097103118896, + -0.03030603751540184, + 0.025871334597468376, + 0.027572866529226303, + -0.0070740883238613605, + -0.011877233162522316, + 0.006065896712243557, + 0.021316049620509148, + -0.0591651014983654, + -0.08054814487695694, + -0.03813040629029274, + -0.013652454130351543, + -0.005858229473233223, + -0.08531779050827026, + -0.029234206303954124, + 0.06843644380569458, + 0.030573995783925056, + -0.08001222461462021, + -0.08092328161001205, + 0.01706891693174839, + -0.0008214584086090326, + 0.02591152861714363, + 0.019011612981557846, + -0.019105397164821625, + 0.026782391592860222, + 0.0014997267862781882, + -0.08028018474578857, + 0.08274539560079575, + -0.04694622382521629, + 0.0534575991332531, + -0.042551711201667786, + 0.022146718576550484, + 0.007395637687295675, + -0.0287786778062582, + -0.042390938848257065, + 0.050536856055259705, + -0.035290054976940155, + 0.015072631649672985, + -0.019721699878573418, + 0.045418862253427505, + 0.005533330608159304, + 0.06270214915275574, + -0.02735850028693676, + -0.0047663007862865925, + -0.0010123783722519875, + -0.05664629861712456, + 0.0241698008030653, + 0.0405152328312397, + -0.04196220636367798, + 0.017256487160921097, + -0.05190344154834747, + 0.07685032486915588, + 0.03652266040444374, + 0.01938675343990326, + 0.06661432981491089, + 0.00283197988756001, + 0.011991115286946297, + -0.019185785204172134, + 0.002195579931139946, + 0.07486743479967117, + -0.07325968891382217, + -0.030198853462934494, + -0.062487781047821045, + -0.040086500346660614, + 0.020538972690701485, + -0.011703060939908028, + -0.042712487280368805, + -0.03550441935658455, + 0.024759309366345406, + -0.018288126215338707, + 0.021074887365102768, + -0.0009319910313934088, + -0.007395637687295675, + -0.09592892229557037, + -0.0494382306933403, + 0.06447067111730576, + -0.04153347387909889, + 0.006524774711579084, + -0.03523646295070648, + -0.057396579533815384, + -0.023258745670318604, + -0.045418862253427505, + 0.021182071417570114, + -0.04137269780039787, + -0.029957691207528114, + -0.01684115268290043, + -0.14587627351284027, + -0.01930636540055275, + -0.021490221843123436, + 0.009137364104390144, + 0.03022564947605133, + -0.0057945894077420235, + 0.0253756120800972, + 0.007770778611302376, + -0.07283095270395279, + -0.03534364700317383, + 0.02489328756928444, + 0.021115081384778023, + -0.013270614668726921, + 0.02864469774067402, + 0.03708537295460701, + 0.04699981212615967, + 0.018757052719593048, + -0.04137269780039787, + -0.0037648084107786417, + -0.0389074869453907, + -0.02193235233426094, + -0.022267300635576248, + 0.04405227676033974, + -0.07218785583972931, + 0.01819434016942978, + 0.06441707909107208, + -0.009318235330283642, + -0.04314121976494789, + 0.019962862133979797, + 0.040166888386011124, + 0.010858993045985699, + -0.05115316063165665, + 0.03979174792766571, + -0.028617901727557182, + -0.025978516787290573, + -0.028269557282328606, + -0.016640184447169304, + 0.01602388173341751, + 0.05943305790424347, + -0.04346276819705963, + -0.02059256285429001, + -0.053966719657182693, + -0.018609674647450447, + -0.003969126380980015, + -0.014134778641164303, + 0.052037421613931656, + 0.05519932508468628, + 0.04799125716090202, + -0.01859627664089203, + -0.03507568687200546, + 0.056110382080078125, + 0.07138398289680481, + -0.07899398356676102, + 0.050617244094610214, + -0.03644227236509323, + -0.06591764092445374, + 0.003634178778156638, + -0.05728939548134804, + 0.03403065353631973, + 0.03719255328178406, + -0.03127068653702736, + 0.03938981145620346, + 0.06870440393686295, + -0.012647612020373344, + 0.04911668226122856, + 0.043677136301994324, + -0.10498590022325516, + -0.005305566359311342, + -0.0153941810131073, + 0.0033913420047611, + -0.01905180513858795, + -0.02864469774067402, + -0.005077802110463381, + -0.01618465594947338, + 0.032985616475343704, + 0.04046164080500603, + -0.02990410104393959, + -0.0599689744412899, + 0.020605960860848427, + 0.019493935629725456, + 0.10053779929876328, + 0.02505406178534031, + 0.013652454130351543, + -0.041989002376794815, + -0.0577717199921608, + 0.043034035712480545, + 0.035691991448402405, + 0.02056576870381832, + 0.011059962213039398, + -0.010309679433703423, + -0.06682869791984558, + 0.06806130707263947, + -0.02751927450299263, + 0.0832277238368988, + 0.08772940933704376, + -0.009921140968799591, + -0.01930636540055275, + -0.03735332936048508, + -0.01873025670647621, + 0.019641313701868057, + 0.03555801138281822 + ] + }, + { + "id": "600736ad-f43f-439f-8a5e-8416b5b0aa37", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "downssteven", + "reviewDate": "2022-01-23T07:20:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a3ef8667-d541-4cb3-ba4a-2c40bbedc925", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "ernest31", + "reviewDate": "2022-07-17T10:56:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "63b2c521-4c84-4dc2-a9fc-ead6c1033a93", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "xchavez", + "reviewDate": "2022-05-03T07:28:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "22cd052e-4f1a-4a06-9003-39ca5b75c83b", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "dunlapmarvin", + "reviewDate": "2022-02-19T19:50:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cff7c43d-d171-4f50-83a3-327b1c22370f", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "alanhall", + "reviewDate": "2022-05-16T06:07:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2c217073-3551-4324-bc94-c491c74021c5", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "lloydjohn", + "reviewDate": "2021-07-21T19:57:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b5a0fb1a-d843-47b6-a60b-3a512b107820", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "vbishop", + "reviewDate": "2021-11-08T12:49:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "aaabb0d4-2853-449c-8c6f-1e5f5ff9fb78", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "vbrown", + "reviewDate": "2021-06-06T15:49:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a950564d-f9cf-4e0c-bae5-27ec91b19054", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer57", + "reviewDate": "2021-02-03T23:50:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2a46fd90-ee4e-44de-ab19-d17bd13743d8", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "angela47", + "reviewDate": "2021-05-18T11:51:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0dd0994b-7e39-463e-926a-4526fee9cd6b", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "barnestamara", + "reviewDate": "2021-05-13T21:32:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "371c1aff-7085-426d-a411-fda39182bf5a", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "tammy97", + "reviewDate": "2022-03-29T07:33:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5942e317-c1bf-4f20-ac98-ed30854a3a1f", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "hernandezdebra", + "reviewDate": "2022-10-29T21:04:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8d8067eb-ae98-4c36-8132-fa1a892821e1", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "sandovalmarcus", + "reviewDate": "2022-11-30T21:44:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e6dd578b-bf64-4648-ae86-8d4f7d4b7211", + "productId": "238036cb-9d28-48fc-a267-134f04b6d8fc", + "category": "Accessory", + "docType": "customerRating", + "userName": "paul71", + "reviewDate": "2021-02-02T06:20:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "product", + "name": "Awesome TV Ultra (Silver)", + "description": "This Awesome TV Ultra (Silver) is available now.\n\n$49.99 – All other promotional images available\n\nHow you can purchase this new TV on Amazon: https://goo.gl/cEIpGK\n\nIf you've ever bought a TV on Amazon you can now get an additional promo as a part of this purchase. This is important for most people as Amazon will only credit you for the content of your purchase so that you get the best value and you", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-07-04T10:38:08", + "price": 270.78, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-02-25T06:53:13", + "newPrice": 259.41 + }, + { + "priceDate": "2021-08-10T06:53:13", + "newPrice": 279.85 + }, + { + "priceDate": "2022-01-23T06:53:13", + "newPrice": 295.64 + }, + { + "priceDate": "2022-07-08T06:53:13", + "newPrice": 270.4 + }, + { + "priceDate": "2022-12-19T06:53:13", + "newPrice": 270.78 + } + ], + "descriptionVector": [ + -0.0023466949351131916, + 0.021973159164190292, + -0.03775271400809288, + 0.014700171537697315, + -0.03947458788752556, + -0.09077098965644836, + -0.0035015707835555077, + 0.07180468738079071, + -0.01806681975722313, + 0.08043975383043289, + 0.02085522562265396, + -0.0854254737496376, + 0.06615077704191208, + -0.02634209208190441, + 0.07386065274477005, + 0.012881925329566002, + -0.03279269114136696, + 0.02868075482547283, + 0.00383566552773118, + 0.035953741520643234, + 0.08110794425010681, + 0.0076006571762263775, + 0.002317782724276185, + -0.008249572478234768, + -0.002790012862533331, + 0.017591377720236778, + -0.04574529081583023, + 0.0365191325545311, + 0.05612792819738388, + -0.015972301363945007, + 0.016100799664855003, + -0.010780982673168182, + -0.0025169546715915203, + 0.026599086821079254, + -0.0020639991853386164, + 0.01689748838543892, + -0.01751427911221981, + 0.01270845253020525, + 0.05540833994746208, + 0.022230155766010284, + 0.026856083422899246, + -0.037598516792058945, + -0.020816676318645477, + -0.01489291898906231, + 0.012117361649870872, + 0.020611079409718513, + -0.007883353158831596, + -0.016434894874691963, + -0.026984581723809242, + -0.002566747600212693, + -0.021227870136499405, + 0.005785622633993626, + -0.0763792172074318, + 0.018105369061231613, + 0.007041690871119499, + 0.013813535682857037, + 0.01268275361508131, + 0.018747858703136444, + 0.034540265798568726, + 0.007054540794342756, + -0.045308396220207214, + 0.039603084325790405, + 0.08095374703407288, + 0.04618218541145325, + -0.023784980177879333, + -0.05157909914851189, + -0.002341876272112131, + 0.030299829319119453, + -0.0037521417252719402, + 0.00015309332229662687, + 0.015856653451919556, + 0.034565962851047516, + 0.07021131366491318, + 0.03597944229841232, + -0.009765848517417908, + 0.07977156341075897, + 0.01368503738194704, + 0.00943817850202322, + 0.013260994106531143, + -0.08285551518201828, + 0.03806110844016075, + 0.014931468293070793, + 0.02734437584877014, + 0.049317535012960434, + 0.06486579030752182, + 0.06918332725763321, + -0.020945174619555473, + -0.11390063166618347, + -0.030813822522759438, + 0.03220159932971001, + 0.01656339317560196, + 0.08532267808914185, + 0.003379497677087784, + 0.004031625110656023, + 0.05052541568875313, + 0.042301543056964874, + -0.03998858109116554, + 0.02393917925655842, + -0.04682467505335808, + 0.03202170506119728, + 0.0646601989865303, + -0.06995431333780289, + 0.001855190028436482, + -0.07057110220193863, + 0.054945748299360275, + -0.007337236311286688, + 0.0012528555234894156, + 0.04034837335348129, + -0.006090805400162935, + -0.15316961705684662, + -0.008776414208114147, + -0.006771844811737537, + 0.013582238927483559, + 0.0005778394988738, + 0.09102798998355865, + 0.062295835465192795, + -0.011815391480922699, + -0.05219589173793793, + -0.005567176267504692, + -0.05623072758316994, + -0.0417618528008461, + -0.015008566901087761, + -0.012496431358158588, + 0.03371787816286087, + 0.027575671672821045, + 0.05617932975292206, + -0.026856083422899246, + 0.13332952558994293, + 0.0916447788476944, + -0.052247289568185806, + -0.1083495169878006, + -0.012894774787127972, + -0.007780554238706827, + 0.04456310719251633, + -0.04037407413125038, + 0.01832381635904312, + -0.011847516521811485, + 0.001627909136004746, + -0.001966019393876195, + -0.02801256626844406, + -0.11719018220901489, + 0.03307538852095604, + 0.07391205430030823, + 0.03112221695482731, + -0.07833238691091537, + 0.02486436441540718, + -0.016242148354649544, + -0.0012424150481820107, + 0.013595089316368103, + 0.02489006333053112, + 0.07776699215173721, + -0.049625929445028305, + -0.0773044005036354, + -0.03705882653594017, + 0.04052827134728432, + 0.055254142731428146, + -0.025622501969337463, + -0.04515419900417328, + -0.005878783762454987, + 0.08593946695327759, + -0.049291834235191345, + -0.016781840473413467, + -0.09873786568641663, + -0.005612150300294161, + 0.02706168033182621, + -0.014854369685053825, + 0.07370645552873611, + 0.02844945900142193, + -0.0708795040845871, + 0.0384209044277668, + 0.02703598141670227, + -0.03384637460112572, + 0.01675613969564438, + -0.048212453722953796, + -0.0009147452074103057, + 0.027909766882658005, + 0.0980696752667427, + -0.03513135388493538, + -0.018979156389832497, + -0.02868075482547283, + -0.0706225037574768, + 0.029477443546056747, + -0.034643061459064484, + -0.02909194864332676, + -0.029991434887051582, + 0.052581384778022766, + 0.05181039497256279, + -0.0033120361622422934, + -0.04214734584093094, + 0.03333238139748573, + -0.012072388082742691, + 0.012567104771733284, + 0.004847587086260319, + -0.02374643087387085, + 0.042250145226716995, + 0.010703884065151215, + 0.029811536893248558, + 0.00397380068898201, + -0.03831810504198074, + 0.024183325469493866, + 0.014751571230590343, + -0.009804397821426392, + 0.10701314359903336, + -0.045899488031864166, + -0.021818961948156357, + -0.02837236039340496, + 0.020251285284757614, + 0.016049401834607124, + 0.004018775187432766, + 0.009463878348469734, + -0.08372930437326431, + -0.006119717378169298, + 0.06008566915988922, + -0.008345945738255978, + 0.0663563683629036, + 0.04489720240235329, + -0.03176470845937729, + -0.07545402646064758, + -0.043946318328380585, + -0.01631924696266651, + 0.01675613969564438, + 0.0067332955077290535, + -0.03536264970898628, + -0.025018561631441116, + 0.026599086821079254, + -0.07961736619472504, + 0.06887493282556534, + 0.019313249737024307, + 0.014147630892693996, + 0.005650700069963932, + -0.15255282819271088, + -0.10804112255573273, + -0.010009994730353355, + -0.013248144648969173, + 0.01003569457679987, + 0.019968589767813683, + -0.030916620045900345, + -0.025982296094298363, + -0.026521988213062286, + 0.0103826392441988, + -0.0797201618552208, + -0.005576813593506813, + -0.04111936315894127, + 0.02873215451836586, + 0.011327099055051804, + -0.021947460249066353, + 0.1114334687590599, + 0.054277557879686356, + -0.025172758847475052, + 0.062295835465192795, + -0.04687607288360596, + -0.036904629319906235, + -0.08007995784282684, + 0.029991434887051582, + 0.016306396573781967, + 0.05540833994746208, + 0.0976070836186409, + -0.014584523625671864, + 0.035902343690395355, + -0.007086664903908968, + -0.02639348991215229, + -0.0015853442018851638, + -0.01584380492568016, + 0.05204169452190399, + -0.014327527955174446, + 0.047929756343364716, + 0.007170188706368208, + -0.09200457483530045, + -0.001154875848442316, + -0.005580025725066662, + -0.026496289297938347, + 0.00800542626529932, + -0.015291262418031693, + -0.006874643266201019, + -0.09529412537813187, + 0.02257709950208664, + -0.0391404926776886, + 0.03451456502079964, + -0.006913192570209503, + 0.022641349583864212, + 0.04517989978194237, + -0.018773559480905533, + 0.009695174172520638, + -0.005628212820738554, + 0.0019933253061026335, + -0.03333238139748573, + -0.01305539719760418, + -0.013273844495415688, + 0.008680040016770363, + -0.007857653312385082, + -0.056590523570775986, + -0.024016277864575386, + 0.08753284066915512, + -0.007247287780046463, + 0.10927470773458481, + -0.0011058859527111053, + 0.030839521437883377, + -0.022821245715022087, + -0.01003569457679987, + 0.02238435298204422, + -0.017642775550484657, + -0.0035401200875639915, + -0.02603369578719139, + -0.0310194194316864, + -0.06358081102371216, + 0.06306682527065277, + -0.01488006953150034, + 0.0403226763010025, + 0.020276986062526703, + 0.0009581132908351719, + 0.09118218719959259, + -0.023964878171682358, + -0.021998858079314232, + -0.07149629294872284, + -0.007941177114844322, + -0.004841162357479334, + 0.01320959534496069, + 0.048289552330970764, + -0.004208309575915337, + 0.008204597979784012, + -0.03253569453954697, + -0.021125072613358498, + -0.07432324439287186, + 0.05715591460466385, + 0.022487150505185127, + 0.022795546799898148, + -0.013569389469921589, + -0.004799400456249714, + -0.015689605847001076, + -0.016165049746632576, + -0.07077670097351074, + 0.0001478730991948396, + 0.06908053159713745, + 0.059314679354429245, + 0.05173329636454582, + -0.008037550374865532, + 0.055922333151102066, + 0.017334381118416786, + 0.018722159788012505, + 0.04345802590250969, + 0.0976070836186409, + -0.005657124798744917, + 0.03831810504198074, + -0.025069961324334145, + -0.009065533988177776, + -0.05235008895397186, + -0.006932467687875032, + -0.020970875397324562, + 0.029503142461180687, + -0.016100799664855003, + 0.001637546462006867, + -0.013183895498514175, + -0.003636493580415845, + 0.07195888459682465, + 0.09945745766162872, + -0.029631640762090683, + -0.019454598426818848, + 0.010517561808228493, + -0.0746830403804779, + -0.04204454645514488, + 0.044280413538217545, + -0.041916050016880035, + -0.06404341012239456, + 0.04404911771416664, + -0.0704169049859047, + 0.09241576492786407, + -0.049625929445028305, + 0.03749571740627289, + 0.001028787111863494, + -0.023155340924859047, + 0.030274130403995514, + -0.006318889558315277, + -0.07786979526281357, + 0.019004855304956436, + -0.01792547106742859, + 0.06080525740981102, + 0.03510565683245659, + 0.021587664261460304, + -0.0034694462083280087, + 0.02976013906300068, + -0.03073672391474247, + 0.002123429672792554, + -0.05838949605822563, + 0.042944032698869705, + 0.0534551702439785, + 0.030659625306725502, + -0.02811536379158497, + -0.04016847535967827, + -0.051604799926280975, + -0.012027413584291935, + -0.04109366238117218, + 0.04086236655712128, + 0.004908623639494181, + -0.015124215744435787, + 0.05715591460466385, + -0.013980583287775517, + -0.0019836879801005125, + 0.06974871456623077, + 0.05705311521887779, + 0.04304683208465576, + -0.017141634598374367, + 0.023450886830687523, + 0.0019451385596767068, + 0.0005400931695476174, + -0.05314677581191063, + -0.01787407323718071, + -0.024427471682429314, + 0.008371645584702492, + -0.0013677006354555488, + -0.05916048213839531, + -0.06209023669362068, + -0.022808395326137543, + -0.06008566915988922, + 0.023964878171682358, + 0.0021908909548074007, + 0.05438035726547241, + 0.10470017790794373, + 0.001401431392878294, + 0.07715020328760147, + -0.0276784710586071, + 0.012271559797227383, + 0.13014277815818787, + 0.01489291898906231, + -0.007305111736059189, + 0.0415305569767952, + -0.0326898917555809, + 0.011082952842116356, + -0.02126641944050789, + -0.04978012666106224, + -0.0034276843070983887, + 0.0548943467438221, + -0.03847230225801468, + 0.0498829260468483, + 0.0021764349658042192, + -0.000131409295136109, + 0.03649343550205231, + 0.017501428723335266, + 0.0023065393324941397, + -0.02023843675851822, + -0.03870359808206558, + -0.0763792172074318, + 0.008673615753650665, + -0.0360308401286602, + 0.05520274490118027, + -0.06707596033811569, + -0.04649057984352112, + -0.053300973027944565, + -0.025738149881362915, + 0.02205025777220726, + 0.012663478963077068, + -0.07864078134298325, + 0.004009137861430645, + 0.002287264447659254, + 0.041941750794649124, + -0.016743291169404984, + 0.006402413360774517, + 0.006893917918205261, + 0.07745859771966934, + -0.002913692267611623, + 0.02486436441540718, + 0.02837236039340496, + 0.05091090872883797, + -0.0491633377969265, + 0.012110937386751175, + -0.023823531344532967, + -0.024568818509578705, + -0.055613938719034195, + 0.03664763271808624, + 0.02102227322757244, + 0.03513135388493538, + -0.049651630222797394, + -0.06527698785066605, + -0.043637923896312714, + 0.018285267055034637, + 0.07740719616413116, + -0.012502855621278286, + 0.01667904108762741, + -0.018478013575077057, + 0.06517419219017029, + 0.01753997802734375, + 0.07951456308364868, + 0.03369217738509178, + 0.013954883441329002, + 0.015818104147911072, + 0.030145632103085518, + -0.030968019738793373, + -0.06908053159713745, + 0.028937751427292824, + -0.023733582347631454, + 0.05355796962976456, + 0.0026454527396708727, + 0.02909194864332676, + 0.043586522340774536, + 0.01935179904103279, + -0.06496859341859818, + -0.00031180845689959824, + 0.013890634290874004, + -0.05438035726547241, + -0.015008566901087761, + 0.03867790102958679, + -0.04523129761219025, + 0.08850942552089691, + -0.09077098965644836, + -0.01074885856360197, + -0.00829454604536295, + -0.09801828116178513, + 0.015663906931877136, + -0.030479727312922478, + 0.02706168033182621, + 0.04900914058089256, + 0.0232709888368845, + 0.0883038267493248 + ] + }, + { + "id": "9473ed01-0bd1-427a-bbab-a4e9b36c6ff6", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "marshallalyssa", + "reviewDate": "2021-02-25T06:53:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bb414413-f89d-440f-8828-71c947c0fab2", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "wcobb", + "reviewDate": "2021-11-05T08:27:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a31cf5dd-54b8-4387-b273-fe17830f2b18", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "swang", + "reviewDate": "2021-09-17T18:46:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e5b04bab-29e4-4451-b8c4-a55ae7816ac7", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "gravesmatthew", + "reviewDate": "2021-12-14T17:34:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e69c0cc0-be15-4768-a5fb-5f03d6f37524", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "kylejones", + "reviewDate": "2021-03-07T08:13:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7d2f6350-09d2-4d7d-b87b-d0d2bdaee0f5", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "nathan62", + "reviewDate": "2021-03-22T00:09:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3ed076bb-c3b6-438f-90db-6ece5090b963", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "chelseawhite", + "reviewDate": "2022-07-11T03:09:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d0c40575-a0d9-4a6c-aed2-0f1562406ad4", + "productId": "4999d6df-56d5-4ca0-ac0d-d591cb2b4c23", + "category": "Media", + "docType": "customerRating", + "userName": "leelauren", + "reviewDate": "2021-03-09T15:01:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Super (Gold)", + "description": "This Amazing Stand Super (Gold) is made by MCA and features 18 holes and is made by an exclusive Team Nuts distributor.\nWOW!!! I am going to wear your super high quality black plastic that includes 6 holes to hold my stand", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-08-02T16:32:46", + "price": 376.9, + "stock": 46, + "priceHistory": [ + { + "priceDate": "2021-06-09T02:28:08", + "newPrice": 355.1 + }, + { + "priceDate": "2021-10-11T02:28:08", + "newPrice": 407.24 + }, + { + "priceDate": "2022-02-12T02:28:08", + "newPrice": 378.79 + }, + { + "priceDate": "2022-06-16T02:28:08", + "newPrice": 377.88 + }, + { + "priceDate": "2022-10-18T02:28:08", + "newPrice": 352.36 + }, + { + "priceDate": "2023-12-13T02:28:08", + "newPrice": 376.9 + } + ], + "descriptionVector": [ + 0.03682650625705719, + 0.004407509230077267, + -0.04763795807957649, + -0.008346624672412872, + 0.003939115442335606, + -0.021899331361055374, + -0.06640442460775375, + 0.018873969092965126, + 0.00013809460506308824, + 0.07672444730997086, + -0.006261888425797224, + 0.05531654506921768, + 0.03458435833454132, + -0.06102941557765007, + 0.050801537930965424, + -0.0038853653240948915, + -0.0006267647258937359, + 0.046593669801950455, + -0.026613984256982803, + -0.007436712272465229, + 0.11001880466938019, + -0.059677984565496445, + -0.019211826846003532, + -0.005167689640074968, + -0.020701471716165543, + -0.04668581485748291, + 0.005924030672758818, + -0.009590555913746357, + -0.024771124124526978, + 0.03092935122549534, + 0.02369612269103527, + 0.024341123178601265, + 0.01954968459904194, + 0.03630436211824417, + -0.0003947273944504559, + 0.0607529878616333, + 0.042662233114242554, + 0.03268006816506386, + -0.02171504683792591, + 0.015050032176077366, + 0.029485777020454407, + 0.021822545677423477, + -0.0012324133422225714, + 0.0984087809920311, + 0.016877535730600357, + -0.0435529500246048, + -0.03777865320444107, + -0.049818675965070724, + -0.010511986911296844, + -0.050064392387866974, + 0.04167937487363815, + 0.009582877159118652, + -0.049542248249053955, + 0.006081441417336464, + 0.07813730835914612, + 0.009698056615889072, + 0.024064693599939346, + 0.12863169610500336, + 0.09945306926965714, + -0.0007045104284770787, + 0.00680322851985693, + 0.02443326637148857, + 0.02814970351755619, + 0.0429079495370388, + -0.010519665665924549, + 0.007233229465782642, + -0.026752199977636337, + 0.04594866931438446, + 0.04318437725305557, + 0.06886157393455505, + -0.021085401996970177, + 0.0325879268348217, + 0.012216633185744286, + 0.0015078827273100615, + 0.00046047530486248434, + 0.021945403888821602, + 0.12605169415473938, + 0.03240364044904709, + 0.023788264021277428, + 0.01750718057155609, + 0.09558305889368057, + -0.04914296045899391, + -0.006196620408445597, + -0.01680075004696846, + 0.016616463661193848, + 0.03762508183717728, + 0.00841573253273964, + -0.14988602697849274, + -0.07236301153898239, + 0.00555545836687088, + -0.01802932471036911, + 0.027074700221419334, + -0.012139847502112389, + -0.016938963904976845, + -0.008123945444822311, + 0.033724356442689896, + 0.04794510081410408, + 0.02867184579372406, + -0.02523184008896351, + -0.01494253147393465, + 0.027305057272315025, + -0.010565736331045628, + -0.029547205194830894, + -0.008484839461743832, + -0.04478152468800545, + 0.020102541893720627, + 0.032741498202085495, + -0.0007784168119542301, + -0.008193053305149078, + -0.17089465260505676, + 0.09521448612213135, + -0.030760422348976135, + 0.08225303143262863, + 0.05135439336299896, + -0.030530065298080444, + 0.053719401359558105, + -0.06720300018787384, + -0.009705735370516777, + -0.045887239277362823, + -0.07291586697101593, + -0.006284924224019051, + 0.02398790791630745, + 0.016616463661193848, + -0.0038258563727140427, + -0.005436439998447895, + 0.013998065143823624, + -0.06394727528095245, + -0.03605864942073822, + 0.04644009843468666, + -0.04054294154047966, + -0.06364013254642487, + -0.0015539542073383927, + 0.04723867028951645, + 0.0053519755601882935, + -0.11886453628540039, + 0.04723867028951645, + -0.005551618989557028, + 0.025323983281850815, + -0.032495781779289246, + 0.03624293580651283, + -0.010688594542443752, + -0.02345040626823902, + 0.004054294433444738, + 0.05801941081881523, + -0.07193300873041153, + 0.008500196970999241, + 0.010550379753112793, + 0.03234221041202545, + -0.06671156734228134, + 0.04247794672846794, + 0.011932525783777237, + -0.04794510081410408, + -0.05676012113690376, + -0.07273158431053162, + 0.009275734424591064, + 0.07095015048980713, + -0.11861882358789444, + 0.04346080496907234, + -0.026629341766238213, + 0.070090152323246, + 0.03040720708668232, + 0.029301490634679794, + -0.09011590480804443, + -0.03974436968564987, + 0.010757701471447945, + -0.012708062306046486, + -0.02320469170808792, + 0.041372232139110565, + -0.013345385901629925, + 0.024371838197112083, + 0.0340622141957283, + 0.00826216023415327, + 0.018920039758086205, + -0.08833447098731995, + 0.03363221511244774, + 0.060906559228897095, + 0.058879412710666656, + 0.016478249803185463, + 0.10129593312740326, + -0.06622014194726944, + -0.03360150009393692, + 0.04032794386148453, + 0.002643353771418333, + 0.013253242708742619, + -0.026030411943793297, + 0.0484672449529171, + 0.038669366389513016, + 0.049572963267564774, + -0.013260921463370323, + -0.054702259600162506, + 0.051262252032756805, + -0.03335578367114067, + 0.010035914368927479, + 0.00941394828259945, + -0.017676109448075294, + -0.024801839143037796, + -0.05439511686563492, + 0.04475080966949463, + -0.05783512443304062, + 0.006350192241370678, + -0.03774793818593025, + 0.033970072865486145, + 0.0628722757101059, + -0.05881798267364502, + 0.07181015610694885, + -0.014573959633708, + -0.02572326920926571, + 0.026875056326389313, + 0.02572326920926571, + 0.0656672790646553, + -0.03642721846699715, + 0.013660207390785217, + -0.042846519500017166, + -0.023327549919486046, + -0.02716684341430664, + 0.040911514312028885, + 0.00014781281061004847, + -0.021146830171346664, + 0.047822244465351105, + -0.011464131064713001, + 0.013514314778149128, + -0.030192207545042038, + -0.02223719097673893, + -0.060691557824611664, + -0.06830871850252151, + 0.006446174345910549, + -0.009536805562675, + -0.010189485736191273, + 0.007644033990800381, + -0.03188149631023407, + -0.010343058034777641, + -0.02647577039897442, + 0.014727531000971794, + 0.07426729798316956, + -0.035198647528886795, + 0.02322004921734333, + -0.013061277568340302, + -0.011456453241407871, + 0.00031338236294686794, + -0.02345040626823902, + -0.0335707850754261, + 0.014405030757188797, + -0.054702259600162506, + 0.0056207263842225075, + -0.025800054892897606, + 0.035045076161623, + 0.02839541807770729, + -0.05562369152903557, + -0.025646483525633812, + -0.02942434884607792, + -0.02544683963060379, + 0.01775289513170719, + 0.026859700679779053, + 0.03393935784697533, + 0.07561872899532318, + 0.06953728944063187, + 0.05900226905941963, + -0.01530342549085617, + 0.048805102705955505, + -0.04057365655899048, + -0.06093727424740791, + -0.042140088975429535, + -0.041157230734825134, + 0.07297729700803757, + -0.07506587356328964, + 0.049941536039114, + -0.04432080686092377, + 0.009214305318892002, + -0.0056975120678544044, + 0.011087880469858646, + -0.0016240213299170136, + -0.004730009939521551, + 0.023511836305260658, + 0.008868768811225891, + 0.033724356442689896, + -0.003923758398741484, + 0.005198403727263212, + 0.04825224727392197, + -0.013936636969447136, + -0.04938867688179016, + 0.07758445292711258, + 0.024110766127705574, + 0.056237976998090744, + -0.026506485417485237, + 0.05414940044283867, + -0.049327246844768524, + 0.014996281825006008, + -0.00284491665661335, + -0.004395991563796997, + -0.005044832359999418, + -0.02469433844089508, + 0.04432080686092377, + 0.06063012778759003, + 0.0013504716334864497, + 0.010043593123555183, + 0.002493621315807104, + -0.0047799209132790565, + 0.0011537078535184264, + 0.02986970543861389, + -0.014051815494894981, + 0.05734369158744812, + 0.022436833009123802, + -0.06474585086107254, + -0.0025569696445018053, + 0.0010836407309398055, + 0.054978687316179276, + -0.036212220788002014, + 0.012961456552147865, + -0.05482511594891548, + -0.031067566946148872, + 0.04935796186327934, + 0.06855443120002747, + 0.008008766919374466, + 0.026997914537787437, + 0.011533238925039768, + -0.03329435735940933, + 0.018474681302905083, + 0.000955024326685816, + 0.007716980762779713, + 0.001272725872695446, + 0.04134151712059975, + 0.015925390645861626, + -0.022344689816236496, + 0.058910124003887177, + 0.04152580350637436, + 0.015364853665232658, + -0.0007995329215191305, + -0.023542549461126328, + 0.013775386847555637, + -0.00419250875711441, + -0.0006387625471688807, + -0.023097192868590355, + 0.018643610179424286, + -0.00977484229952097, + -0.07869016379117966, + -0.04859010502696037, + 0.009298769757151604, + 0.000302584347082302, + -0.009820913895964622, + 0.021638261154294014, + 0.1013573557138443, + 0.01048895064741373, + -0.02002575621008873, + -0.01508074626326561, + 0.047300100326538086, + -0.08059445768594742, + 0.10006735473871231, + -0.036457933485507965, + 0.05405725911259651, + 0.04321509227156639, + 0.0019302050350233912, + -0.05304368585348129, + -0.006542156916111708, + -0.05408797040581703, + 0.08127017319202423, + 0.07789159566164017, + -0.0010241316631436348, + -0.06394727528095245, + 0.038423653692007065, + -0.056237976998090744, + 0.052705828100442886, + -0.040635086596012115, + 0.06996729224920273, + 0.03109828010201454, + 0.07666301727294922, + 0.0612444169819355, + 0.014673781581223011, + 0.08569303900003433, + -0.015126817859709263, + -0.010435200296342373, + -0.08292874693870544, + -0.06170513108372688, + 0.01878182590007782, + -0.027781130746006966, + -0.013314670883119106, + -0.004465098958462477, + 0.015134496614336967, + 0.009321805089712143, + 0.02325076423585415, + 0.0012016990222036839, + -0.00729849748313427, + 0.08593875169754028, + -0.02323540672659874, + -0.0034515252336859703, + 0.05215296894311905, + -0.0049142963252961636, + -0.027366487309336662, + 0.04195580258965492, + -0.03854651004076004, + 0.019150398671627045, + -0.05230654031038284, + -0.052245110273361206, + 0.011241452768445015, + 0.02272862009704113, + 0.02097790129482746, + -0.04346080496907234, + -0.0015414764638990164, + 0.11751310527324677, + -0.04075794294476509, + 0.007121890317648649, + -0.01707717962563038, + 0.10111164301633835, + -0.005378850735723972, + 0.005824208725243807, + -0.01806003786623478, + -0.05556226149201393, + -0.018612897023558617, + 0.06505299359560013, + -0.012178240343928337, + -0.06136727333068848, + 0.006369388662278652, + -0.1205231100320816, + -0.02246754802763462, + 0.04647081345319748, + 0.032987214624881744, + 0.060660842806100845, + 0.061674416065216064, + -0.008669125847518444, + 0.08747447282075882, + -0.12015454471111298, + 0.034000787883996964, + 0.0543644018471241, + -0.000769778445828706, + -0.009329483844339848, + -0.0189968254417181, + 0.03900722414255142, + -0.0007630596519447863, + 0.030775779858231544, + -0.027243629097938538, + -0.07291586697101593, + 0.0032403641380369663, + -0.08065588772296906, + -0.002681746846064925, + 0.07463587075471878, + -0.024632910266518593, + -0.01184038259088993, + 0.008361982181668282, + -0.018336467444896698, + -0.020425044000148773, + 0.04204794764518738, + 0.028825419023633003, + 0.004622509703040123, + 0.03925294056534767, + 0.030100064352154732, + -0.023849694058299065, + -0.04171008989214897, + -0.04204794764518738, + -0.007221711799502373, + -0.013775386847555637, + -0.01778361015021801, + -0.08096303045749664, + 0.0016336195403710008, + -0.005206082481890917, + 0.0293936338275671, + -0.03535221889615059, + 0.019933613017201424, + 0.04472009465098381, + 0.055715832859277725, + -0.0029197828844189644, + 0.06523728370666504, + -0.006542156916111708, + 0.09828592091798782, + 0.12439312040805817, + -0.056422263383865356, + 0.019964328035712242, + 0.005851083900779486, + -0.08323588967323303, + -0.0012343330308794975, + -0.00679171085357666, + 0.04029722884297371, + 0.012815563008189201, + 0.00026851060101762414, + -0.005862601567059755, + -0.0002478744136169553, + -0.05838797986507416, + -0.06775585561990738, + 0.011095559224486351, + -0.023834336549043655, + 0.020962543785572052, + 0.007716980762779713, + -0.01976468414068222, + 0.08999305218458176, + -0.0686158612370491, + 0.01583324745297432, + 0.016493607312440872, + -0.04244723170995712, + -0.09023876488208771, + 0.030483992770314217, + -0.004407509230077267, + 0.02986970543861389, + 0.016017533838748932, + 0.07789159566164017, + -0.011679131537675858, + -0.06106013059616089, + -0.020378971472382545, + -0.02053254283964634, + 0.020148614421486855, + -0.00789358839392662, + -0.030760422348976135, + 0.04475080966949463, + -0.006607424933463335, + -0.051262252032756805, + -0.020655401051044464, + 0.06892300397157669, + 0.09914592653512955, + 0.015910033136606216, + -0.03228078410029411, + 0.06800157576799393, + -0.006964479107409716, + 0.005989298224449158, + -0.009367876686155796, + 0.09030019491910934 + ] + }, + { + "id": "6ff76f34-b717-4cb4-a668-c0482501481f", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "customerRating", + "userName": "hesparza", + "reviewDate": "2022-04-15T02:57:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "16d1b209-947e-417f-8f3b-3944ee912f01", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "customerRating", + "userName": "teresa35", + "reviewDate": "2022-10-19T08:27:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ae0ce367-9485-42f4-b79b-b1fa55726771", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifer38", + "reviewDate": "2022-07-08T02:19:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "21725777-d74b-487c-a76e-1282a2b7aa83", + "productId": "76e1ff02-8344-4feb-b8b4-85a2a71c25a2", + "category": "Accessory", + "docType": "customerRating", + "userName": "ireynolds", + "reviewDate": "2021-06-09T02:28:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "product", + "name": "Premium Filter Mini (Steel)", + "description": "This Premium Filter Mini (Steel) is a small, stainless steel filter. It has a 2mm thick cover, with a 2mm thick surface for an adequate seal. There will be two filters on the filter, but this does not have to be 1mm thick. The only filters we can find are 2mm thick, and then 3mm thick. The 4-sided cover with the two main filters is also 5-5mm thick.\n\nThe filter fits", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-09-28T15:32:54", + "price": 758.97, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-01-22T15:42:32", + "newPrice": 722.42 + }, + { + "priceDate": "2021-07-15T15:42:32", + "newPrice": 788.99 + }, + { + "priceDate": "2022-01-05T15:42:32", + "newPrice": 772.46 + }, + { + "priceDate": "2022-06-28T15:42:32", + "newPrice": 771.22 + }, + { + "priceDate": "2022-12-19T15:42:32", + "newPrice": 771.8 + }, + { + "priceDate": "2024-02-19T15:42:32", + "newPrice": 758.97 + } + ], + "descriptionVector": [ + 0.007727398071438074, + 0.05729938670992851, + -0.02702159248292446, + 0.008438172750175, + 0.0397304892539978, + 0.009446622803807259, + -0.04369138926267624, + 0.0016189870657399297, + -0.027726292610168457, + 0.002316093072295189, + -0.011603247374296188, + -0.015843596309423447, + -0.019257744774222374, + -0.017483845353126526, + 0.03907439112663269, + 0.01222289726138115, + -0.004377036355435848, + -0.02517479471862316, + -0.018237145617604256, + -0.05316838622093201, + 0.02852819301187992, + -0.001521787140518427, + -0.068234384059906, + 0.0030253492295742035, + 0.01928204484283924, + -0.0018953995313495398, + -0.014531396329402924, + -0.04016789048910141, + -0.017933394759893417, + 0.07445517927408218, + 0.051856186240911484, + 0.004504611250013113, + -0.026559893041849136, + 0.06862318515777588, + -0.035186391323804855, + -0.045829787850379944, + 0.011366322636604309, + 0.044639088213443756, + -0.01647539623081684, + 0.05054398626089096, + 0.06152758374810219, + -0.012453746981918812, + -0.0693521797657013, + 0.02112884446978569, + -0.004061136394739151, + -0.023121444508433342, + -0.04668029025197029, + -0.029087092727422714, + -0.032999392598867416, + 0.005312586203217506, + 0.033339593559503555, + 0.009240073151886463, + 0.008031148463487625, + 0.061478983610868454, + -0.037446290254592896, + -0.015867896378040314, + 0.028309492394328117, + 0.2785751223564148, + 0.08155077695846558, + 0.022270943969488144, + 0.04060529172420502, + -0.07970397919416428, + 0.055938586592674255, + -0.012623846530914307, + -0.07567018270492554, + -0.0027808304876089096, + -0.07601038366556168, + 0.0011064091231673956, + 0.01745954528450966, + 0.056959185749292374, + -0.0036206990480422974, + -0.04969348758459091, + 0.03214889392256737, + 0.0207157451659441, + 0.005917048547416925, + 0.031832993030548096, + 0.04777378961443901, + -0.052342187613248825, + 0.0031438118312507868, + -0.044323187321424484, + -0.0015794995706528425, + 0.04009499028325081, + -0.042063288390636444, + 0.007229248061776161, + 0.012216822244226933, + -0.0037999115884304047, + 0.07664217799901962, + -0.061041586101055145, + -0.026754293590784073, + 0.040386591106653214, + 0.004993648733943701, + 0.04636438935995102, + 0.055355384945869446, + -0.03457889333367348, + 0.01236262172460556, + 0.06721378117799759, + -0.028333792462944984, + 0.03095819242298603, + -0.07605898380279541, + -0.010017672553658485, + -0.02030264586210251, + -0.050592586398124695, + 0.03749489039182663, + 0.06405478715896606, + 0.028552493080496788, + 0.0453437902033329, + -0.008583973161876202, + -0.0601181834936142, + 0.014786546118557453, + -0.14006516337394714, + 0.018407246097922325, + -0.031419891864061356, + -0.04293809086084366, + 0.005185011308640242, + -0.04468768835067749, + -0.052001986652612686, + -0.04762798920273781, + -0.0006393935764208436, + 0.04420169070363045, + 0.011013972572982311, + -0.04629148915410042, + 0.06143038347363472, + 0.04660739004611969, + -0.05632738769054413, + -0.029087092727422714, + 0.04274369031190872, + -0.01781189627945423, + -0.016074446961283684, + 0.024129893630743027, + -0.05020378902554512, + -0.08407797664403915, + -0.008504997938871384, + 0.006737173534929752, + -0.037689290940761566, + -0.07411497831344604, + -0.006718948483467102, + 0.03030209243297577, + 0.10653117299079895, + 0.02393549494445324, + 0.04762798920273781, + 0.02438504435122013, + -0.027580494061112404, + 0.01313414704054594, + 0.02602529339492321, + 4.411493137013167e-05, + -0.07489258050918579, + -0.06959518045186996, + 0.023570993915200233, + -0.03156569227576256, + -0.01501739677041769, + -0.013255646452307701, + -0.09564477950334549, + -0.05540398508310318, + -0.038369689136743546, + 0.043302588164806366, + 0.045392390340566635, + -0.023036394268274307, + 0.03640139102935791, + -0.023862594738602638, + -0.06507538259029388, + 0.03873419016599655, + -0.08845198154449463, + 0.01962224580347538, + -0.033339593559503555, + -0.026414092630147934, + 0.04879438877105713, + -0.019427845254540443, + 0.023546693846583366, + -0.02979179285466671, + 0.0034384492319077253, + 0.01564919576048851, + 0.03078809194266796, + 0.03618269041180611, + -0.022574694827198982, + 0.007435798179358244, + 0.005434086080640554, + -0.024397194385528564, + -0.043132487684488297, + 0.025903793051838875, + 0.028941292315721512, + 0.07669077813625336, + -0.025879492983222008, + -0.0032015242613852024, + -0.04048379138112068, + -0.03263489156961441, + 0.025393493473529816, + -0.027167392894625664, + 0.03353399038314819, + -0.016596896573901176, + 0.03202739357948303, + -0.011074722744524479, + -0.006980173289775848, + -0.014300546608865261, + 0.004869111347943544, + 0.059777986258268356, + -0.05341138690710068, + -0.03623129054903984, + 0.008577898144721985, + -0.0058775609359145164, + -0.06813718378543854, + 0.002732230583205819, + 0.018808195367455482, + 0.03047219291329384, + -0.001820980804041028, + 0.012708896771073341, + 0.009956922382116318, + 0.020691445097327232, + 0.012490197084844112, + -0.00464737368747592, + 0.008146572858095169, + 0.01578284613788128, + -0.04369138926267624, + -0.023716794326901436, + -0.018176395446062088, + 0.03530789166688919, + 0.06838018447160721, + -0.039463188499212265, + -0.023656044155359268, + -0.022659745067358017, + 0.007818522863090038, + 0.04886728897690773, + -0.06697078049182892, + 0.0302048921585083, + -0.011961672455072403, + 0.011840172111988068, + -0.009920472279191017, + -0.018856795504689217, + 0.050252389162778854, + 0.1014767736196518, + 0.08383497595787048, + 0.033436790108680725, + -0.0033078365959227085, + -0.0717821791768074, + 0.012964046560227871, + 0.00950129795819521, + 0.03798089176416397, + -0.05030098930001259, + -0.002594024408608675, + 0.06940077990293503, + 0.011463521979749203, + 0.03302369266748428, + 0.03445739299058914, + -0.014203346334397793, + -0.04427459090948105, + 0.028090793639421463, + -0.002601618180051446, + -0.002188518177717924, + -0.08811178058385849, + -0.048818688839673996, + 0.006245098542422056, + -0.035866789519786835, + 0.01595294661819935, + -0.0510299876332283, + 0.09802617877721786, + -0.06857458502054214, + 0.07775998115539551, + 0.0022933119907975197, + 0.032075993716716766, + -0.07445517927408218, + -0.04203898832201958, + 0.07810018211603165, + -0.022319544106721878, + 0.0312011931091547, + 0.028430992737412453, + -0.04962058737874031, + -0.018067045137286186, + 0.0017799745546653867, + -0.08519577980041504, + -0.010582647286355495, + 0.06201358512043953, + 0.010740597732365131, + 0.05817418545484543, + -0.018990445882081985, + 0.03696029260754585, + -0.03858838975429535, + -0.06084718555212021, + -0.05700778588652611, + 0.00705307349562645, + 0.0025818743743002415, + 0.026997294276952744, + 0.11109957098960876, + -0.033436790108680725, + -0.04408019036054611, + 0.03671729192137718, + 0.07868338376283646, + 0.04111558943986893, + -0.017277296632528305, + -0.01875959523022175, + -0.0776141807436943, + -0.10555917769670486, + -0.039803389459848404, + -0.01010272279381752, + 0.00891809817403555, + -0.0043709613382816315, + -0.006035510916262865, + -0.0016113934107124805, + -0.02472524344921112, + 0.0085110729560256, + -0.009616722352802753, + 0.041212789714336395, + -0.07605898380279541, + 0.03975478932261467, + -0.05064118653535843, + -0.031176893040537834, + -0.00218699942342937, + 0.0338984914124012, + 0.0321974903345108, + -0.018237145617604256, + -0.018881095573306084, + -0.07984977960586548, + 0.021383995190262794, + -0.012939746491611004, + -0.04660739004611969, + 0.01258739735931158, + -0.0067067984491586685, + -0.009981222450733185, + -0.022453194484114647, + -0.04641298949718475, + 0.024542994797229767, + -0.0038606615271419287, + 0.012526647187769413, + 0.02417849376797676, + -0.008553598076105118, + 0.044298890978097916, + -0.002840061904862523, + -0.1094471737742424, + -0.09107637405395508, + 0.04070248827338219, + 0.023607444018125534, + -0.008365272544324398, + 0.006172198336571455, + -0.00439222389832139, + -0.047312088310718536, + 0.006087148562073708, + -0.001423068344593048, + -0.06575578451156616, + -0.033679790794849396, + -0.05365438759326935, + -0.020837245509028435, + 0.015151046216487885, + -0.012314021587371826, + -0.019707296043634415, + 0.008031148463487625, + 0.011323797516524792, + 0.05263378843665123, + -0.006773623172193766, + -0.004200861323624849, + -0.041382890194654465, + -0.033947091549634933, + -0.01259954646229744, + 0.001361559028737247, + -0.04284089058637619, + 0.01664549671113491, + 0.035939689725637436, + 0.09656817466020584, + -0.011226597242057323, + 0.03525929152965546, + -0.02284199371933937, + 0.08121058344841003, + 0.07221958041191101, + 0.04235488921403885, + -0.008122272789478302, + 0.035866789519786835, + 0.0010486965766176581, + -0.026219693943858147, + 0.07571878284215927, + -0.08718837797641754, + 0.05316838622093201, + -0.06872038543224335, + 0.009015297517180443, + -0.023036394268274307, + -0.008079747669398785, + 0.020424144342541695, + 0.07989837974309921, + -0.02877119369804859, + -0.04777378961443901, + 0.08150217682123184, + -0.0019075495656579733, + -0.013012646697461605, + 0.016754845157265663, + -0.02568509429693222, + -0.021189594641327858, + -0.06313138455152512, + -0.041795991361141205, + 0.026243994012475014, + -0.01451924629509449, + -0.0029995304066687822, + 0.036863092333078384, + -0.056035786867141724, + -0.023133594542741776, + -0.045465290546417236, + 0.019597945734858513, + -0.013450047001242638, + -0.05068978667259216, + 0.0434240885078907, + -0.02041199430823326, + -0.033922791481018066, + 0.03214889392256737, + 0.07785718142986298, + 0.00012377809616737068, + 0.05039818584918976, + 0.056035786867141724, + -0.09258297830820084, + -0.04796818643808365, + -0.010363947600126266, + -0.06876898556947708, + 0.05127298831939697, + -0.004729386419057846, + -0.014045396819710732, + -0.06585298478603363, + 0.014312696643173695, + -0.05214778706431389, + 0.035016290843486786, + 0.014008946716785431, + -0.01176119688898325, + -0.00460484903305769, + 0.05647318437695503, + -0.04750648885965347, + 0.029232893139123917, + -0.004404373932629824, + 0.0005839592195115983, + -0.0378836914896965, + -0.033679790794849396, + -0.08145357668399811, + 0.05229358747601509, + 0.055112387984991074, + -0.0415043905377388, + 0.06488098204135895, + 0.05180758610367775, + -0.03601258993148804, + -0.008085822686553001, + -0.04643728956580162, + -0.07124758511781693, + 0.009288672357797623, + 0.011420996859669685, + 0.04750648885965347, + 0.0008148091728799045, + -0.03800519183278084, + -0.05457778647542, + -0.011688296683132648, + 0.033436790108680725, + 0.025150494650006294, + -0.02143259532749653, + 0.055112387984991074, + -0.11362677067518234, + -0.0508841872215271, + -0.04658308997750282, + -0.014567846432328224, + -0.01560059655457735, + 0.006773623172193766, + -0.02372894436120987, + -0.012198597192764282, + -0.07552438229322433, + 0.013498647138476372, + 0.06366598606109619, + -0.06604738533496857, + 0.13044236600399017, + 0.06283978372812271, + 0.03790799155831337, + -0.008754072710871696, + -0.0737747848033905, + 0.06575578451156616, + 0.001009209081530571, + 0.008899873122572899, + -0.015515546314418316, + -0.06692218035459518, + -0.013802397064864635, + -0.008517147973179817, + 0.00767879793420434, + 0.06152758374810219, + -0.02911139279603958, + 0.02903849259018898, + -0.02818799391388893, + -0.032683491706848145, + 0.07387198507785797, + 0.05637598782777786, + -0.00654884846881032, + -0.042476389557123184, + 0.028601093217730522, + -0.012793947011232376, + -0.02218589372932911, + 0.032926492393016815, + -0.026584193110466003, + 0.08704257756471634, + -0.0007920279167592525, + -0.0017161871073767543, + 0.056861985474824905, + -0.005859335884451866, + 0.05763958767056465, + 0.05554978549480438, + 0.005172861274331808, + -0.014725795947015285, + -0.02852819301187992, + -0.09486717730760574, + 0.013632296584546566, + -0.0068586734123528, + 0.08679957687854767, + -0.030180592089891434, + -0.0029418179765343666, + -0.044298890978097916, + 0.06526978313922882, + -0.030107691884040833, + -0.015661345794796944, + 0.024506544694304466, + 0.0006872342200949788, + 0.07187937945127487, + 0.04410449042916298, + -0.03482189029455185, + 0.049742087721824646, + 0.043982990086078644, + 0.042889490723609924, + 0.06133318319916725 + ] + }, + { + "id": "9a889f13-20c2-498a-ab9f-dda10e20ad38", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "james56", + "reviewDate": "2022-03-29T09:10:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9f192e1a-2f99-4b3b-9e27-b5c67ed016d7", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "romerojames", + "reviewDate": "2022-02-17T20:15:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ae1c3843-6712-436b-adc7-41321ab76334", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "vsharp", + "reviewDate": "2022-10-28T11:36:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b76c1473-85ee-4f84-8394-4f40d3f59c42", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "zdyer", + "reviewDate": "2022-02-01T23:07:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7a1c3f27-dbad-4c8d-af60-25ac5eb9f7d7", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "mccormickbrandon", + "reviewDate": "2021-11-17T22:14:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1570875a-767b-4c43-a8e7-1dbd2db7bb27", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "younglisa", + "reviewDate": "2022-04-25T18:21:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a46af6e5-5eac-4230-a6a8-1eeb8ece697e", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "scottdaniel", + "reviewDate": "2022-12-20T17:10:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3edcb7b6-aead-4f9d-9f7d-2b528fd60f1f", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "aviladavid", + "reviewDate": "2021-09-13T07:56:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "63448ce6-4d79-43ff-8a97-add7e6a4cf17", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "roberthammond", + "reviewDate": "2021-01-22T15:42:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a2659540-2824-4486-8c56-f8a899219654", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "newtonnancy", + "reviewDate": "2022-08-29T10:09:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3fa7d401-2082-4df8-8b40-e13393243ec2", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "forbeskendra", + "reviewDate": "2022-10-22T16:21:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6b8116f2-4c09-4dae-8d78-48aaadded168", + "productId": "b4ff827f-90cb-44c1-b1ec-7cf9ef58dd63", + "category": "Other", + "docType": "customerRating", + "userName": "karenrodriguez", + "reviewDate": "2022-03-01T18:57:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d22e8a04-a76f-4483-9204-de99af306edb", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Mini (Silver)", + "description": "This Awesome Stand Mini (Silver) is a great example of how our friends and family would be able to find a place for their favorite products, and take advantage of it. We hope you'll try it out and share it with your friends!", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-01-26T09:55:39", + "price": 1088.87, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-01-20T00:08:32", + "newPrice": 1075.26 + }, + { + "priceDate": "2021-09-12T00:08:32", + "newPrice": 1042.29 + }, + { + "priceDate": "2022-05-05T00:08:32", + "newPrice": 1023.8 + }, + { + "priceDate": "2022-12-26T00:08:32", + "newPrice": 1015.28 + }, + { + "priceDate": "2023-12-21T00:08:32", + "newPrice": 1088.87 + } + ], + "descriptionVector": [ + -0.05877387151122093, + -0.019248586148023605, + -0.06065874919295311, + -0.021233418956398964, + 0.00011099976109107956, + -0.04643649980425835, + -0.05491844564676285, + -0.002955828793346882, + -0.009659991599619389, + 0.05928793177008629, + -0.11891856789588928, + 0.033556513488292694, + 0.02861585095524788, + -0.01832042820751667, + 0.0016528366832062602, + -0.04215269163250923, + 0.009681410156190395, + 0.024146409705281258, + -0.030043788254261017, + 0.01984831877052784, + 0.05366186052560806, + -0.09058830142021179, + -0.04720758646726608, + -0.013686773367226124, + 0.021276256069540977, + -0.05517547205090523, + -0.017449386417865753, + 0.008367708884179592, + -0.04480865225195885, + 0.046265147626399994, + 0.013436883687973022, + 0.02972964197397232, + -0.035355713218450546, + 0.022447165101766586, + -0.04243827611207962, + 0.04635082557797432, + -0.013165576383471489, + 0.05231960117816925, + 0.006022322922945023, + 0.07293900847434998, + -0.0009098633890971541, + -0.019191468134522438, + 0.024146409705281258, + -0.03090054914355278, + -0.014793423935770988, + 0.01949133537709713, + -0.062372274696826935, + -0.03672653064131737, + -0.03824014216661453, + 0.0018384684808552265, + 0.048549845814704895, + 0.01020260713994503, + -0.01512184925377369, + 0.050206251442432404, + -0.012208858504891396, + -0.00024386480799876153, + 0.0244462750852108, + 0.014907659031450748, + 0.053404830396175385, + 0.00524052744731307, + -0.05480420961976051, + -0.010895156301558018, + 0.07796534150838852, + 0.005608221050351858, + -0.010973692871630192, + -0.02180459350347519, + -0.01113076601177454, + 0.0034270479809492826, + -0.017820648849010468, + 0.009331566281616688, + -0.023817984387278557, + 0.03232848644256592, + -0.0002156407426809892, + 0.06768419593572617, + 0.022147297859191895, + -0.026930885389447212, + 0.05854540318250656, + 0.017249474301934242, + 0.05717458575963974, + -0.01152344886213541, + 0.056631967425346375, + 0.004030351061373949, + -0.0020865723490715027, + -0.05303356796503067, + -0.02454623207449913, + 0.0020365947857499123, + 0.020162465050816536, + -0.14062319695949554, + -0.04703623428940773, + 0.03235704451799393, + -0.052205365151166916, + 0.007121833972632885, + 0.008332010358572006, + 0.0034377574920654297, + 0.021975945681333542, + 0.0329282209277153, + -0.025345874950289726, + 0.0514913946390152, + 0.041867103427648544, + -0.006122278515249491, + 0.005879529286175966, + 0.046265147626399994, + -0.037240587174892426, + -0.04775020107626915, + -0.04874975606799126, + 0.03164307773113251, + 0.010509613901376724, + 0.023846542462706566, + -0.005319064017385244, + -0.26091259717941284, + 0.08064986020326614, + -0.05437582731246948, + 0.028273146599531174, + 0.015136128291487694, + 0.0012592616258189082, + 0.006086579989641905, + -0.023346764966845512, + -0.061001453548669815, + 0.0007175381761044264, + -0.07602334767580032, + 0.03804023191332817, + 0.034013450145721436, + 0.018991557881236076, + 0.0635717436671257, + 0.01714951917529106, + 0.027816206216812134, + -0.013672493398189545, + 0.05197689309716225, + 0.05251951143145561, + -0.020647963508963585, + -0.044637300074100494, + -0.07996445149183273, + 0.009909880347549915, + 0.015835817903280258, + -0.012744334526360035, + 0.010809480212628841, + 0.09110236167907715, + 0.05674620345234871, + -0.02431776188313961, + -0.04223836585879326, + -0.03135748952627182, + -0.010573871433734894, + 0.01613568514585495, + -0.020233862102031708, + -0.011759058572351933, + 0.00360197015106678, + -0.032642632722854614, + 0.003385994816198945, + -0.033756423741579056, + 0.056660525500774384, + -0.0137724494561553, + -0.032642632722854614, + -0.0733388289809227, + -0.017120961099863052, + 0.045065682381391525, + 0.09115947782993317, + -0.030957667157053947, + -0.03481309488415718, + 0.011352096684277058, + 0.072996124625206, + 0.024917494505643845, + -0.03090054914355278, + -0.02356095425784588, + 0.03024369850754738, + -0.058459728956222534, + -0.025445831939578056, + 0.05951640009880066, + 0.07282476872205734, + -0.06739860773086548, + 0.04475153610110283, + -0.006675603799521923, + -0.04358062520623207, + 0.011494889855384827, + -0.0018232966540381312, + -0.012644379399716854, + 0.0275448989123106, + 0.019248586148023605, + -0.07168242335319519, + 0.006100859493017197, + -0.07665164023637772, + -0.03972519934177399, + 0.07162529975175858, + -0.05369041860103607, + 0.07231071591377258, + -0.003955384716391563, + 0.07168242335319519, + 0.06505679339170456, + -0.007960746996104717, + 0.04409468546509743, + 0.014500697143375874, + 0.018948718905448914, + -0.0361839160323143, + 0.03467030078172684, + 0.04218124970793724, + 0.058459728956222534, + -0.055461060255765915, + -0.03418480232357979, + 0.013294090516865253, + -0.02871580608189106, + -0.014122293330729008, + -0.041809987276792526, + 0.04355206713080406, + 0.057317376136779785, + -0.02340388111770153, + 0.021176300942897797, + 0.014058036729693413, + 0.015364598482847214, + 0.03741193935275078, + 0.04435171186923981, + -0.02324680984020233, + 0.022190134972333908, + -0.012280255556106567, + -0.07653740793466568, + 0.015093290247023106, + 0.046693529933691025, + 0.08464808762073517, + 0.0612870417535305, + 0.0037233447656035423, + -0.015193246304988861, + 0.0259170513600111, + 0.012215998023748398, + -0.009602874517440796, + 0.007725137285888195, + -0.010866598226130009, + -0.014207969419658184, + -0.07476676255464554, + 0.014493557624518871, + 0.0720251277089119, + 0.015478833578526974, + 0.07076854258775711, + -0.08579043298959732, + -0.03592688590288162, + -0.031728751957416534, + 0.013865265063941479, + -0.013108458369970322, + 0.031071901321411133, + -0.07516658306121826, + -0.0844196155667305, + -0.030843431130051613, + -0.030757755041122437, + -0.0632290318608284, + 0.021590402349829674, + -0.06408579647541046, + 0.008681855164468288, + 0.04078187048435211, + 0.05254806950688362, + 0.010602429509162903, + -0.02154756337404251, + 0.002163324039429426, + 0.02744494192302227, + -0.05620358884334564, + -0.05029192939400673, + -0.0288443211466074, + 0.06083010137081146, + 0.03626959025859833, + 0.1033254936337471, + 0.06340038776397705, + 0.019991112872958183, + -0.028901437297463417, + 0.03175731003284454, + -0.02141905017197132, + -0.031014785170555115, + -0.03626959025859833, + 0.06037316098809242, + -0.017520783469080925, + -0.026031285524368286, + 0.04612235352396965, + -0.034241922199726105, + 0.016992446035146713, + 0.09978421777486801, + -0.008389128372073174, + -0.04680776223540306, + -0.0023061176761984825, + -0.046921998262405396, + -0.06654185056686401, + -0.0002053774514934048, + -0.05537538230419159, + 0.051091574132442474, + -0.012601541355252266, + -0.023775145411491394, + 0.017977721989154816, + 0.020747920498251915, + 0.0863616093993187, + 0.007339594420045614, + 0.0013645719736814499, + -0.02868724800646305, + 0.035641297698020935, + -0.04469441622495651, + -0.04200989753007889, + -0.00989560130983591, + -0.06665608286857605, + -0.045808207243680954, + 0.06277209520339966, + 0.05323347821831703, + 0.05623214691877365, + 0.02030525915324688, + -0.017463665455579758, + 0.015321760438382626, + -0.012687217444181442, + -0.0211905799806118, + 0.03318524733185768, + -0.025103125721216202, + -0.03544138744473457, + -0.0338992178440094, + -0.0241178497672081, + 0.06808402389287949, + -0.0824776217341423, + 0.01733515039086342, + -0.10589578002691269, + -0.013879544101655483, + 0.1042964905500412, + 0.0014332914724946022, + -0.08561908453702927, + 0.012344512157142162, + 0.0006332006887532771, + -0.0368407666683197, + -0.012758614495396614, + 0.02467474527657032, + 0.007453829515725374, + 0.011630544438958168, + 0.017749253660440445, + -0.030357932671904564, + -0.0733388289809227, + 0.03532715141773224, + 0.010352540761232376, + 0.022075900807976723, + 0.04363774508237839, + 0.02079075761139393, + -0.02845877781510353, + 0.037212029099464417, + -0.01936282031238079, + -0.06431426852941513, + 0.011209302581846714, + 0.019876878708600998, + -0.018848763778805733, + -0.06785555183887482, + 0.012258836068212986, + -0.038183026015758514, + 0.014172271825373173, + 0.05968775227665901, + -0.002929055131971836, + 0.03429903835058212, + 0.017477944493293762, + 0.02673097513616085, + 0.04917813837528229, + -0.1026972085237503, + -0.008253473788499832, + 0.026716694235801697, + 0.026773812249302864, + 0.010502474382519722, + 0.0017706414218991995, + -0.05171986669301987, + 0.017806369811296463, + 0.036498062312603, + 0.15764421224594116, + -0.008510502986609936, + 0.018463220447301865, + -0.057545848190784454, + 0.02793044038116932, + 0.01129497867077589, + 0.028216028586030006, + -0.017849208787083626, + -0.05351906642317772, + 0.011759058572351933, + 0.05974486842751503, + 0.04686488211154938, + -0.009681410156190395, + 0.025988446548581123, + -0.07373864948749542, + 0.04426603764295578, + -0.07213936001062393, + -0.07545217126607895, + -0.021718917414546013, + 0.012265975587069988, + -0.0102668646723032, + 0.0329282209277153, + 0.061458393931388855, + 0.026473945006728172, + -0.0056296405382454395, + 0.03367074579000473, + -0.0008139238925650716, + -0.012944245710968971, + -0.022218694910407066, + -0.004622945096343756, + 0.01567874476313591, + -0.015521671622991562, + -0.06774131208658218, + 0.059116579592227936, + -0.03578409180045128, + -0.01435790304094553, + -0.0867043137550354, + 0.031500283628702164, + -0.009902740828692913, + 0.008210635744035244, + 0.06208668649196625, + -0.026616739109158516, + -0.025288758799433708, + -0.005101303569972515, + 0.0027773368638008833, + -0.00519054988399148, + -0.018434662371873856, + 0.0492066964507103, + 0.02083359658718109, + -0.0002311472489964217, + -0.020348098129034042, + -0.04883543401956558, + -0.00470148166641593, + 0.07231071591377258, + -0.019448498263955116, + -0.08076409995555878, + -0.03138604760169983, + -0.05520403012633324, + -0.02848733589053154, + 0.06071586534380913, + 0.09338705986738205, + 0.06465697288513184, + 0.06905502080917358, + 0.03706923499703407, + 0.0759662315249443, + -0.05080598592758179, + 0.059859104454517365, + 0.013222693465650082, + -0.009410102851688862, + 0.05766008421778679, + -0.062372274696826935, + 0.07356729358434677, + -0.03566985949873924, + -0.04546550288796425, + -0.014693467877805233, + -0.0815066248178482, + 0.030757755041122437, + -0.0247747004032135, + -0.04129592701792717, + 0.06785555183887482, + -0.0033110282383859158, + 0.006361457984894514, + 0.05397600680589676, + 0.05603223294019699, + -0.030814873054623604, + 0.05534682422876358, + -0.05303356796503067, + -0.007896489463746548, + 0.038411498069763184, + 0.05191977694630623, + -0.0870470181107521, + -0.002386439125984907, + 0.027402104809880257, + 0.022375768050551414, + 0.027987558394670486, + -0.027287868782877922, + -0.10835183411836624, + -0.01733515039086342, + -0.07665164023637772, + 0.002857658313587308, + -0.06517103314399719, + -0.007646600715816021, + 0.031071901321411133, + 0.11069364845752716, + -9.105885510507505e-06, + 0.02891571819782257, + 0.06791266798973083, + 0.05534682422876358, + -0.02810179442167282, + -0.0007469893898814917, + 0.0560607947409153, + -0.04929237440228462, + 0.0020937121007591486, + 0.06711302697658539, + -0.00470148166641593, + 0.05229103937745094, + -0.03384209796786308, + 0.02947261370718479, + -0.03207145631313324, + 0.010766642168164253, + -0.008596179075539112, + -0.03595544397830963, + -0.010945134796202183, + -0.029444053769111633, + -0.004430173430591822, + 0.0426953062415123, + -0.04246683791279793, + 0.03475597873330116, + -0.04475153610110283, + -0.02744494192302227, + 0.07522370666265488, + -0.03881131857633591, + -0.05217680707573891, + -0.02401789464056492, + 0.02056228742003441, + 0.04338071495294571, + 0.041410163044929504, + 0.032842542976140976, + -0.014150852337479591, + -0.012794312089681625, + -0.050663191825151443, + -0.024974612519145012, + -0.014386462047696114, + 0.046664971858263016, + -0.03575553372502327, + 0.04655073583126068, + 0.011794757097959518, + 0.04612235352396965, + -0.030986225232481956, + 0.034213364124298096, + 0.0295011717826128, + -0.03132893145084381, + -0.013394045643508434, + -0.024389158934354782, + -0.008053562603890896, + -0.040924664586782455, + 0.0012173160212114453, + 0.05486132577061653 + ] + }, + { + "id": "4d1c2d8f-3913-4107-9ced-505e0b75ecca", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "ayersalison", + "reviewDate": "2021-06-21T12:03:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "91b26c0c-f510-4276-9170-d1b874f139df", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "penningtonkristi", + "reviewDate": "2021-03-22T08:51:38", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1bb9e697-99f0-4530-9619-112a49997142", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "adam52", + "reviewDate": "2022-06-15T16:32:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9bf700a8-275e-4ac4-a1a2-e5b91d643e6a", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "april76", + "reviewDate": "2021-05-11T04:53:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f82e9836-cebe-41b4-9630-f2ec6e71803c", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "adamsshannon", + "reviewDate": "2021-12-26T16:03:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7abfc868-6e87-42a3-84f6-7a8d9e3eb2c0", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "gomezkevin", + "reviewDate": "2022-12-28T03:05:59", + "stars": 4, + "verifiedUser": true + }, + { + "id": "47c24bad-5e8b-4d82-968f-5af6d665bffd", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "kyle50", + "reviewDate": "2021-07-28T22:48:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "586a5d51-f2e1-4d9e-9ad7-c23f6a828e9c", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "daykimberly", + "reviewDate": "2022-08-16T16:27:50", + "stars": 5, + "verifiedUser": false + }, + { + "id": "a4ab684b-7cde-476f-8e53-97ac30869a1f", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "rwright", + "reviewDate": "2022-03-05T16:05:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "10f793ba-ba92-47f0-8b3c-2abb3c404148", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "john50", + "reviewDate": "2022-06-30T07:56:14", + "stars": 5, + "verifiedUser": false + }, + { + "id": "5b92b331-ec08-4947-af73-19d83b6e7290", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholasjohnson", + "reviewDate": "2022-02-11T09:07:12", + "stars": 5, + "verifiedUser": false + }, + { + "id": "05539159-a8fa-426e-a2d8-f2201ccebae6", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "fred39", + "reviewDate": "2022-02-01T16:28:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ec612e7f-a8d6-4d7b-b0dd-c1faf5b61ce7", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "marc71", + "reviewDate": "2021-01-20T00:08:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "66436a2f-ff5f-4a9a-95b1-a7cd2c145104", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "perezkelly", + "reviewDate": "2022-09-22T18:30:28", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b9a4503d-bccb-434c-beb1-43981514846c", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "edwardsherman", + "reviewDate": "2021-09-23T05:57:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f37d8784-ae91-49ef-a30b-8782288e1fd0", + "productId": "d22e8a04-a76f-4483-9204-de99af306edb", + "category": "Accessory", + "docType": "customerRating", + "userName": "stephenhatfield", + "reviewDate": "2021-10-05T06:13:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a8932262-425b-43e0-8299-e5c137180f2d", + "productId": "a8932262-425b-43e0-8299-e5c137180f2d", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Ultra (Red)", + "description": "This Awesome Stand Ultra (Red) is powered by Super Nintendo Entertainment System's UltraBoost, a system powered by the Nintendo DS XL's powerful Super Turbo Boost. It uses a different processor chip than the Super Turbo Boost, but the speed boost is greater, offering up an eight percent extra frame rate.\n\nWhile Super Turbo Boost isn't designed for game processing", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-06-10T11:07:53", + "price": 701.49, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-04-26T05:09:12", + "newPrice": 760.73 + }, + { + "priceDate": "2021-12-02T05:09:12", + "newPrice": 666.61 + }, + { + "priceDate": "2022-07-10T05:09:12", + "newPrice": 730.01 + }, + { + "priceDate": "2024-07-16T05:09:12", + "newPrice": 701.49 + } + ], + "descriptionVector": [ + 0.05608271062374115, + 0.03590242937207222, + -0.04051883518695831, + 0.045715585350990295, + -0.0034721950069069862, + -0.0825149193406105, + -0.035796914249658585, + 0.014113005250692368, + 0.010848548263311386, + 0.04874922335147858, + 0.015999136492609978, + 0.01868983916938305, + 0.07365142554044724, + -0.09248635172843933, + 0.0577709935605526, + 0.006222252734005451, + -0.11606957763433456, + 0.019731828942894936, + 0.003183669876307249, + 0.00848099309951067, + 0.038329340517520905, + -0.031813617795705795, + 0.0067531391978263855, + -0.028621703386306763, + -0.08499458432197571, + -0.010380313731729984, + -0.024295473471283913, + -0.010644108057022095, + -0.05740168318152428, + 0.0497516430914402, + -0.0055231973528862, + -0.012602781876921654, + -0.0038645893801003695, + 0.011963080614805222, + 0.02144649252295494, + 0.01370412390679121, + 0.028911877423524857, + 0.030441883951425552, + -0.04241815581917763, + -0.08425596356391907, + -0.042259879410266876, + -0.013005068525671959, + 0.023767884820699692, + 0.019072342664003372, + -0.019045962020754814, + 0.018742598593235016, + -0.06753139197826385, + 0.015603444539010525, + 0.010683677159249783, + 0.00784788653254509, + 0.016579484567046165, + 0.05360304191708565, + -0.00047318136785179377, + 0.036192603409290314, + 0.0006862778682261705, + -0.0034721950069069862, + -0.007946808822453022, + 0.07560350000858307, + 0.047852322459220886, + -0.01850518397986889, + 0.08109042793512344, + -0.09512429684400558, + 0.03197189420461655, + 0.03793364763259888, + 0.0032743492629379034, + -0.03970107063651085, + -0.016790520399808884, + 0.07771385461091995, + 0.05428890511393547, + 0.021499251946806908, + -0.013519467785954475, + 0.05919548496603966, + -0.016196981072425842, + 0.025377029553055763, + 0.06415481865406036, + -0.011217860504984856, + 0.06389102339744568, + 0.0013502980582416058, + 0.023319432511925697, + 0.034557078033685684, + 0.0880546048283577, + 0.01045945193618536, + -0.015062665566802025, + -0.0020147303584963083, + 0.02922843024134636, + -0.0005461370456032455, + 0.02126183547079563, + -0.07950766384601593, + -0.035453978925943375, + -0.020246228203177452, + -0.06267756968736649, + 0.006812492851167917, + 0.018175439909100533, + 0.025508927181363106, + -0.02777756005525589, + 0.07760833948850632, + -0.0445021316409111, + 0.019824156537652016, + -0.01640801690518856, + 0.016460776329040527, + 0.03661467507481575, + -0.03964831307530403, + -0.012543427757918835, + -0.030230848118662834, + 0.06083101034164429, + -0.0044020707719028, + 0.029307568445801735, + -0.010624323040246964, + 0.01872940920293331, + -0.02048364281654358, + -0.030943093821406364, + -0.061569634824991226, + 0.02740824781358242, + -0.006096950266510248, + -0.03194551169872284, + 0.07945489883422852, + -0.03331724554300308, + 0.001093922764994204, + 0.00923940259963274, + -0.01152781955897808, + 0.07565625756978989, + 0.07206865400075912, + 0.018584322184324265, + 0.032895173877477646, + 0.023781074211001396, + 0.028094112873077393, + -0.05397235229611397, + 0.012371961958706379, + 0.030521022155880928, + -0.039753831923007965, + -0.035612255334854126, + 0.030890334397554398, + 0.010611133649945259, + -0.001473951735533774, + -0.030046192929148674, + 0.06837553530931473, + -0.004527373239398003, + 0.04241815581917763, + -0.03875141218304634, + 0.05750719830393791, + -0.0488283596932888, + 0.024124005809426308, + 0.007537927478551865, + 0.03695761039853096, + -0.0963905081152916, + 0.02883273735642433, + -0.0019586740527302027, + 0.013420544564723969, + -0.021301405504345894, + -0.0037326919846236706, + 0.05225769057869911, + -0.0917477235198021, + -0.052204929292201996, + 0.018096301704645157, + -0.020470453426241875, + 0.050965096801519394, + -0.11849648505449295, + -0.025100046768784523, + 0.01141570694744587, + 0.0899011641740799, + 0.0008301283232867718, + 0.06352171301841736, + -0.056504782289266586, + -0.022145546972751617, + 0.041415736079216, + -0.03355465829372406, + -0.020523210987448692, + 0.09275014698505402, + -0.00037343407166190445, + 0.010756220668554306, + 0.031074991449713707, + 0.04684990271925926, + -0.02453288808465004, + -0.009107504971325397, + 0.055818915367126465, + 0.01504947617650032, + 0.1124819740653038, + -0.028568943962454796, + 0.03571777418255806, + 0.010439666919410229, + -0.0661069005727768, + -0.053101830184459686, + -0.05267976224422455, + 0.018452424556016922, + 0.021340973675251007, + -0.02298969030380249, + -0.023161156103014946, + 0.04692903906106949, + -0.015260511077940464, + 0.014680163934826851, + -0.05476373806595802, + -0.0602506622672081, + -0.007162020541727543, + -0.03714226558804512, + -0.036878470331430435, + 0.022818224504590034, + -0.0661069005727768, + 0.027856698259711266, + -0.04597938060760498, + 0.009760396555066109, + -0.03558587655425072, + 0.08082663267850876, + 0.0018548050429672003, + -0.007610470987856388, + 0.013730503618717194, + -0.012965499423444271, + -0.026933418586850166, + 0.01396791823208332, + 0.006304688286036253, + 0.037247784435749054, + 0.09617947041988373, + -0.020167089998722076, + -0.03234120458364487, + -0.028278769925236702, + 0.08172353357076645, + -0.02478349208831787, + 0.02045726217329502, + 0.0075709018856287, + -0.030732057988643646, + -0.009720827452838421, + 0.020747436210513115, + 0.02462521567940712, + -0.022409342229366302, + -0.0936470478773117, + -0.05639926344156265, + -0.015893617644906044, + 0.020892523229122162, + -0.019942862913012505, + 0.013572226278483868, + -0.004085517022758722, + -0.04811611399054527, + 0.028806358575820923, + 0.05945928022265434, + -0.0007823155610822141, + -0.06183343008160591, + -0.019797775894403458, + -0.0016948796110227704, + -0.025930998846888542, + -0.11701923608779907, + 0.022422531619668007, + -0.011877346783876419, + 0.02255442924797535, + -0.06505171954631805, + -0.0012085085036233068, + 0.03476811572909355, + 0.02184218354523182, + 0.06114756315946579, + 0.016394827514886856, + -0.05893168970942497, + -0.042312636971473694, + -0.019204238429665565, + 0.06536827236413956, + 0.05138716846704483, + 0.1121654212474823, + 0.007439004722982645, + 0.03318534791469574, + -0.025377029553055763, + -0.019613120704889297, + 0.03120688907802105, + -0.04117831960320473, + -0.04112556204199791, + 0.01561663392931223, + -0.013473303988575935, + 0.08235663920640945, + -0.12894274294376373, + 0.06373275071382523, + 0.06842829287052155, + 0.05676857382059097, + 0.052020274102687836, + 0.04041331633925438, + -0.012497263960540295, + -0.01921742968261242, + -0.02391296997666359, + -0.023253485560417175, + 0.02126183547079563, + 0.029544983059167862, + 0.006469559855759144, + 0.04181142896413803, + 0.030811196193099022, + 0.026801520958542824, + 0.0760255753993988, + 0.061569634824991226, + 0.0292020495980978, + 0.010710056871175766, + 0.09195876121520996, + -0.04368436709046364, + 0.03592881187796593, + 0.0029940675012767315, + 0.039199862629175186, + -0.055080290883779526, + -0.011547603644430637, + 0.007603876292705536, + 0.01967906951904297, + 0.04811611399054527, + 0.04756214842200279, + 0.0210112314671278, + -0.0005481979460455477, + -0.05703236907720566, + 0.030916715040802956, + -0.04439661279320717, + 0.028067734092473984, + -0.009681258350610733, + 0.017173022031784058, + -0.07001105695962906, + -0.045029718428850174, + 0.05304907262325287, + -0.0288854967802763, + 0.07201589643955231, + -0.07127727568149567, + -0.00020948992460034788, + 0.0954936072230339, + 0.038883309811353683, + -0.08320078253746033, + -0.07428453117609024, + 0.0655265524983406, + -0.02004838176071644, + -0.02320072613656521, + 0.08130146563053131, + -0.030046192929148674, + -0.0041250865906476974, + -0.026656433939933777, + -0.06710931658744812, + -0.09042875468730927, + 0.06352171301841736, + 0.15342287719249725, + 0.00217465590685606, + 0.010142898187041283, + 0.06399654597043991, + -0.053471144288778305, + 0.0027137859724462032, + 0.05062216520309448, + -0.012952310033142567, + 0.010400097817182541, + -0.027276350185275078, + -0.01524732168763876, + 0.010967256501317024, + 0.05539684370160103, + 0.06568483263254166, + -0.03711588680744171, + 0.034530699253082275, + 0.1028798520565033, + 0.038144685328006744, + -0.029835157096385956, + -0.029096532613039017, + -0.02446693927049637, + -0.03711588680744171, + -0.0012118059676140547, + -0.01094087678939104, + 0.01999562233686447, + 0.01891406439244747, + 0.0014764248626306653, + -0.050595782697200775, + 0.04658610746264458, + 0.027645662426948547, + 0.0846780315041542, + -0.02536384016275406, + -0.020747436210513115, + -0.02724997140467167, + 0.01783250831067562, + -0.04080900922417641, + 0.018069922924041748, + 0.045029718428850174, + 0.07154106348752975, + 0.08963736891746521, + -0.008269957266747952, + 0.07101348042488098, + 0.016553103923797607, + -0.025812290608882904, + -0.05713788792490959, + 0.01487800944596529, + -0.04706093668937683, + -0.08061559498310089, + -0.031444303691387177, + 0.02577272243797779, + -0.0012620917987078428, + 0.008876685053110123, + -0.0176082830876112, + 0.02188175357878208, + -0.012932525016367435, + 0.058720655739307404, + -0.04033417999744415, + 0.0725962445139885, + -0.03352827951312065, + 0.039938487112522125, + 0.08072111755609512, + 0.033106207847595215, + 0.06236101686954498, + -0.014825250953435898, + 0.031259648501873016, + 0.027883078902959824, + 0.009048150852322578, + -0.05339200422167778, + 0.07249072939157486, + 0.04513523727655411, + -0.025904620066285133, + -0.026036515831947327, + 0.019362516701221466, + 0.023372191935777664, + -0.010499021038413048, + 0.03154982253909111, + -0.010973851196467876, + 0.07781937718391418, + 0.04655972868204117, + -0.0852583795785904, + 0.005269295070320368, + 0.0031210186425596476, + -0.06600138545036316, + 0.015643013641238213, + -0.015906808897852898, + -0.0797186940908432, + 0.0352165661752224, + -0.059037208557128906, + -0.06589586287736893, + 0.01498352736234665, + 0.018254578113555908, + 0.04352609068155289, + 0.016975175589323044, + 0.025930998846888542, + 0.05734892189502716, + -0.08768528699874878, + -0.04112556204199791, + 0.07344038784503937, + 0.01028798520565033, + 0.009430653415620327, + 0.039252620190382004, + 0.054183389991521835, + -0.025838671252131462, + 0.03286879509687424, + 0.006571780424565077, + -0.017964405938982964, + 0.0038942662067711353, + -0.09628499299287796, + -0.055080290883779526, + 0.020510021597146988, + -0.05228406935930252, + -0.021644338965415955, + 0.0321301706135273, + 0.003191913478076458, + -0.029703259468078613, + 0.03329086676239967, + 0.018122682347893715, + -0.005803478881716728, + 0.01569577306509018, + -0.025416599586606026, + -0.0008350744610652328, + 0.020628729835152626, + 0.02314796671271324, + 0.04028141871094704, + 0.013183129951357841, + 0.03766985237598419, + -0.081565260887146, + 0.005727638024836779, + 0.008349095471203327, + 0.051492683589458466, + 0.06130583956837654, + 0.03154982253909111, + -0.04592662304639816, + 0.020523210987448692, + -0.0014879658119753003, + 0.04270832985639572, + 0.03228844702243805, + 0.05740168318152428, + 0.08367561548948288, + -0.060145143419504166, + 0.04452851042151451, + 0.03695761039853096, + -0.08204008638858795, + -0.027144452556967735, + -0.03046826459467411, + -0.006436585448682308, + 0.006321175489574671, + -0.058720655739307404, + 0.022066408768296242, + -0.006367339752614498, + -0.04125745967030525, + -0.03123326785862446, + 0.03648277744650841, + -0.05661029741168022, + 0.0008631026139482856, + 0.005998027510941029, + 0.030046192929148674, + 0.005879319738596678, + -0.021828994154930115, + -0.08473078906536102, + -0.0481952540576458, + -0.023622797802090645, + 0.0028193036559969187, + 0.06995829939842224, + -0.05608271062374115, + 0.01967906951904297, + 0.06911415606737137, + 0.03300069272518158, + -0.00237085297703743, + -0.04125745967030525, + -0.061253082007169724, + 0.00640361150726676, + -0.03949003666639328, + 0.07866352051496506, + -0.016882847994565964, + 0.06061997637152672, + -0.030916715040802956, + -0.0014327338431030512, + -0.005902401637285948, + 0.003050123807042837, + 0.018360096961259842, + 0.027724800631403923, + -0.00605738116428256, + 0.09290841966867447, + -0.015260511077940464, + -0.07111899554729462, + 0.03339638188481331, + 0.054552700370550156 + ] + }, + { + "id": "e001f0a0-af85-46f2-be56-87d1df1936f9", + "productId": "a8932262-425b-43e0-8299-e5c137180f2d", + "category": "Accessory", + "docType": "customerRating", + "userName": "moorederek", + "reviewDate": "2021-04-26T05:09:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f56ab535-bbff-4fb2-9292-3338778eda3c", + "productId": "a8932262-425b-43e0-8299-e5c137180f2d", + "category": "Accessory", + "docType": "customerRating", + "userName": "ggraves", + "reviewDate": "2022-07-11T11:22:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Mini (Steel)", + "description": "This Luxe Keyboard Mini (Steel) is the world's most versatile, versatile and fun mouse.\n\n\"The Luxe Mouse has been my best player for the past 20-plus years,\" Gabor says.", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-09-13T23:24:42", + "price": 156.65, + "stock": 75, + "priceHistory": [ + { + "priceDate": "2021-01-08T22:08:16", + "newPrice": 161.45 + }, + { + "priceDate": "2021-08-18T22:08:16", + "newPrice": 142.0 + }, + { + "priceDate": "2022-03-28T22:08:16", + "newPrice": 154.19 + }, + { + "priceDate": "2023-02-16T22:08:16", + "newPrice": 156.65 + } + ], + "descriptionVector": [ + 0.0026317762676626444, + 0.02533556893467903, + -0.054751019924879074, + -0.05535544455051422, + 0.044400203973054886, + -0.004548943135887384, + 0.006875358056277037, + 0.003173242090269923, + 0.006585736759006977, + 0.04105067253112793, + 0.011137828230857849, + 0.04553350806236267, + 0.004630792886018753, + -0.037726324051618576, + 0.002175307832658291, + 0.023396365344524384, + -0.03029690682888031, + -0.024038568139076233, + -0.025134092196822166, + -0.05288736894726753, + 0.044274281710386276, + -0.11756106466054916, + -0.040723275393247604, + 0.00864456593990326, + 0.05142667144536972, + 0.01154077984392643, + 0.01528696808964014, + 0.02415189892053604, + -0.007221644278615713, + -0.017226170748472214, + 0.049260806292295456, + 0.03697079047560692, + -0.04170546680688858, + 0.033394597470760345, + -0.002126513049006462, + -0.09600316733121872, + 0.0032928683795034885, + -0.04026995226740837, + 0.05878053233027458, + 0.09434099495410919, + -0.004643385298550129, + 0.004328579176217318, + -0.024617811664938927, + -0.047170497477054596, + -0.027702907100319862, + 0.05059558153152466, + -0.03470418602228165, + 0.027979936450719833, + 0.031833160668611526, + -0.03263906016945839, + 0.022754160687327385, + 0.07807183265686035, + -0.08774266391992569, + 0.03470418602228165, + -0.005279292818158865, + -0.061198242008686066, + 0.04654088616371155, + 0.08492200076580048, + 0.056866515427827835, + -0.054499175399541855, + -0.009658240713179111, + -0.11333007365465164, + -0.019757209345698357, + -0.06391816586256027, + -0.022754160687327385, + -0.06840099394321442, + -0.0022965080570429564, + 0.000646532338578254, + 0.07761850953102112, + 0.06205451115965843, + -0.06472406536340714, + -0.03684486821293831, + 0.0012552880216389894, + 0.03268942981958389, + 0.02923915907740593, + -0.022250471636652946, + 0.033369410783052444, + 0.02661997638642788, + 0.006447222083806992, + -0.020374229177832603, + 0.024353373795747757, + -0.061550822108983994, + -0.03603896498680115, + -0.02005942352116108, + 0.06467369943857193, + -0.004136547911912203, + 0.051124457269907, + -0.1021985411643982, + -0.050318554043769836, + 0.12813854217529297, + -0.03747447952628136, + 0.06709140539169312, + -0.002575111109763384, + -0.017503200098872185, + -0.009853420779109001, + -0.044677235186100006, + -0.046893466264009476, + 0.03896035999059677, + 0.01994609273970127, + 0.00793310534209013, + 0.008040139451622963, + 0.05258515477180481, + -0.013272210955619812, + -0.010608954355120659, + 0.004281358327716589, + 0.08854856342077255, + 0.01174855139106512, + 0.0275518000125885, + -0.014972162432968616, + -0.10919982194900513, + 0.06200414523482323, + 0.010281556285917759, + -0.03027172200381756, + 0.011049682274460793, + -0.0642707422375679, + 0.03120354749262333, + -0.11171826720237732, + -0.036920420825481415, + -0.030599121004343033, + 0.010596361942589283, + 0.06935800611972809, + 0.035988595336675644, + -0.030397644266486168, + -0.0001376291475025937, + -0.03558564558625221, + -0.001537826145067811, + 0.025159277021884918, + 0.0057829818688333035, + 0.013486279174685478, + -0.05079706013202667, + -0.04878230020403862, + 0.1036592423915863, + 0.028811024501919746, + 0.03137983754277229, + 0.009053814224898815, + 0.05313921347260475, + -0.041529178619384766, + 0.004240433685481548, + -0.04366985708475113, + 0.06447222083806992, + 0.02112976275384426, + -0.0419573113322258, + -0.054096221923828125, + -0.019643880426883698, + -0.08834709227085114, + -0.033772364258766174, + -0.06789730489253998, + 0.0082101346924901, + -0.015123269520699978, + 0.06331373751163483, + 0.05087261274456978, + -0.03956478834152222, + -0.01940462738275528, + -0.05616134777665138, + 0.08169839531183243, + 0.07560375332832336, + -0.08200060576200485, + -0.008783080615103245, + -0.05465028062462807, + 0.04880748689174652, + 0.02742587774991989, + -0.013398133218288422, + 0.0016078704502433538, + 0.005647615529596806, + -0.009418988600373268, + 0.07031501829624176, + 0.014342551119625568, + 0.014078114181756973, + -0.004281358327716589, + 0.006305559538304806, + -0.039262574166059494, + 0.012969997711479664, + -0.013587016612291336, + -0.005247812252491713, + 0.033772364258766174, + -0.044576495885849, + 0.07797109335660934, + -0.008732711896300316, + 0.010860798880457878, + 0.03044801391661167, + 0.06386779248714447, + 0.06522775441408157, + -0.0905129536986351, + 0.012705560773611069, + 0.08159765601158142, + -0.007662372197955847, + 0.06009012460708618, + 0.02964211069047451, + -0.01993350125849247, + 0.0019754061941057444, + -0.031178362667560577, + 0.016306938603520393, + -0.014669949188828468, + -0.04875711724162102, + 0.026443684473633766, + 0.036769311875104904, + 0.03853222727775574, + 0.07792071998119354, + 0.01650841534137726, + 0.0014284311328083277, + 0.026796266436576843, + 0.08280651271343231, + 0.008166061714291573, + 0.011521890759468079, + 0.029944324865937233, + -0.018699463456869125, + 0.013549240306019783, + -0.011754847131669521, + 0.03268942981958389, + -0.03661820665001869, + 0.041000302881002426, + 0.0053044771775603294, + -0.018548356369137764, + -0.0039350721053779125, + 0.019203152507543564, + -0.021431976929306984, + 0.009261585772037506, + -0.02242676354944706, + -0.06935800611972809, + -0.11766180396080017, + -0.0054902127012610435, + 0.0018793904455378652, + 0.014027745462954044, + -0.023786723613739014, + -0.05268589407205582, + -0.009280473925173283, + 0.06230635941028595, + 0.04039587453007698, + 0.07288382947444916, + 0.03684486821293831, + -0.01298259012401104, + -0.0037871133536100388, + 0.03266424685716629, + -0.0006709297886118293, + -0.035610828548669815, + 0.02586444281041622, + -0.015425482764840126, + -0.0524844191968441, + 0.036668576300144196, + 0.022791936993598938, + 0.014795871451497078, + -0.023270443081855774, + -0.002041515428572893, + -0.062255989760160446, + 0.004857453051954508, + 0.02192307449877262, + 0.07817257195711136, + -0.039942555129528046, + -0.08038879930973053, + -0.0011238566366955638, + -0.031253915280103683, + 0.015349929220974445, + 0.016206201165914536, + 0.0827057734131813, + -0.018006889149546623, + 0.03838111832737923, + 0.05595987290143967, + -0.0026963113341480494, + 0.035484906286001205, + -0.03175760433077812, + -0.05706799030303955, + -0.017490608617663383, + -0.0747978538274765, + 0.052534785121679306, + -0.026015548035502434, + 0.043367642909288406, + 0.03629080951213837, + -0.10184596478939056, + 0.012907036580145359, + 0.014732910320162773, + -0.03699597343802452, + -0.014040336944162846, + 0.1270304173231125, + 0.03226129338145256, + -0.022577868774533272, + 0.0034439750015735626, + -0.09902530163526535, + 0.08094286173582077, + 0.0076875570230185986, + -0.05968717485666275, + 0.01599213294684887, + 0.06321299821138382, + 0.03603896498680115, + 0.0009113627020269632, + 0.025096315890550613, + 0.0073664551600813866, + 0.09016036987304688, + -0.007272013463079929, + 0.007725333329290152, + -0.016357308253645897, + -0.05137630179524422, + 0.02964211069047451, + 0.0628604143857956, + 0.006535367574542761, + 0.004681161604821682, + 0.005956124980002642, + 0.046238671988248825, + 0.03435160592198372, + 0.02858436293900013, + -0.053995486348867416, + 0.004807083867490292, + -0.0010349239455536008, + -0.060946397483348846, + -0.07958289980888367, + 0.0062174140475690365, + 0.054499175399541855, + -0.00991008523851633, + 0.06396853178739548, + -0.03737374022603035, + -0.0028788987547159195, + 0.05208146572113037, + 0.027576984837651253, + -0.089152991771698, + 0.017603939399123192, + 0.08240355551242828, + -0.018523171544075012, + -0.0050117080099880695, + -0.023648209869861603, + 0.0295161884278059, + -0.0024665032979100943, + -0.02254009246826172, + -0.02740069478750229, + -0.10396146029233932, + 0.07545264810323715, + 0.055103600025177, + -0.06663808226585388, + -0.017012104392051697, + 0.02149493806064129, + 0.013750716112554073, + -0.05585913360118866, + -0.08875004202127457, + -0.03755003213882446, + -0.0642203763127327, + 0.023837093263864517, + 0.014606988057494164, + -0.03120354749262333, + -0.048857856541872025, + 0.037172265350818634, + 0.03815446048974991, + -0.0024602070916444063, + 0.01639508455991745, + 0.03588785603642464, + 0.024051161482930183, + 0.02871028520166874, + -0.015916580334305763, + -0.09096627682447433, + -0.03860777989029884, + -0.002433448564261198, + 0.03445234149694443, + 0.07958289980888367, + 0.0016747666522860527, + -0.050948165357112885, + 0.04288913682103157, + -0.06124861165881157, + -0.002746680285781622, + -0.007542746141552925, + 0.01508549228310585, + -0.05308884382247925, + -0.006535367574542761, + 0.12813854217529297, + -0.013599609024822712, + -0.01003600750118494, + 0.014619579538702965, + 0.054499175399541855, + -0.014644764363765717, + -0.02507113106548786, + 0.01488401647657156, + -0.03946405276656151, + -0.04314098134636879, + 0.026569606736302376, + 0.03319311887025833, + -0.08230281621217728, + -0.010703396052122116, + 0.09071443229913712, + -0.023434141650795937, + 0.037575215101242065, + 0.04762381687760353, + 0.0022209547460079193, + -0.06754472851753235, + 0.017364686354994774, + -0.002268175594508648, + 0.006239450536668301, + 0.004967635031789541, + 0.028408072888851166, + 0.029868770390748978, + -0.026040732860565186, + -0.0563628263771534, + -0.04613793268799782, + 0.031833160668611526, + -0.03515750914812088, + 0.009267881512641907, + -0.003887851256877184, + -0.013410725630819798, + 0.04671717435121536, + 0.045180924236774445, + -0.04132770001888275, + 0.029843587428331375, + 0.04968894273042679, + -0.016621744260191917, + -0.0067746201530098915, + 0.0053768823854625225, + 0.040320321917533875, + -0.033646441996097565, + -0.04712012782692909, + -0.004215249326080084, + -0.038507040590047836, + 0.03860777989029884, + 0.0459364578127861, + -0.01561436615884304, + -0.05419696122407913, + -0.03845667093992233, + 0.00019035911827813834, + -0.04168028384447098, + -0.03737374022603035, + 0.0056979842483997345, + 0.004785047844052315, + 0.09590242803096771, + 0.011811512522399426, + 0.02636813186109066, + -0.05822647362947464, + 0.09741349518299103, + -0.0012851945357397199, + -0.05036892369389534, + 0.022527500987052917, + -0.02991914004087448, + 0.027501432225108147, + -0.048328980803489685, + -0.018787607550621033, + 0.044777970761060715, + -0.0550532341003418, + 0.042435817420482635, + -0.050016339868307114, + -0.04863119497895241, + 0.016697298735380173, + 0.03755003213882446, + -0.06547959893941879, + -0.009204920381307602, + 0.016949143260717392, + 0.06371668726205826, + 0.0734378919005394, + 0.045306846499443054, + -0.04135288670659065, + 0.04054698348045349, + 0.016684705391526222, + -0.07842441648244858, + 0.03815446048974991, + -0.045986827462911606, + 0.06522775441408157, + 0.04628904163837433, + -0.04351874813437462, + -0.011395968496799469, + -0.05208146572113037, + -0.0406477190554142, + -0.03372199460864067, + 0.035207878798246384, + -0.006768323946744204, + 0.003667487297207117, + 0.06628550589084625, + 0.02572592720389366, + -0.023446733132004738, + -0.011943730525672436, + 0.07646002620458603, + 0.040345508605241776, + -0.01330998819321394, + -0.03306719660758972, + -0.07892810553312302, + -0.01599213294684887, + 0.03513232246041298, + -0.00419321283698082, + 0.0190016757696867, + 0.0016031484119594097, + -0.020777180790901184, + -0.02609110251069069, + 0.03755003213882446, + 0.01654619164764881, + -0.0839649960398674, + 0.02413930557668209, + -0.02517186850309372, + -0.03885962441563606, + 0.022124549373984337, + -0.01756616123020649, + -0.0058900159783661366, + 0.019971277564764023, + 0.049386728554964066, + 0.06381742656230927, + -0.03684486821293831, + 0.07434453070163727, + -0.03120354749262333, + 0.10597621649503708, + 0.014657356776297092, + -0.032865721732378006, + 0.0015346781583502889, + -0.05681614577770233, + -0.04432465136051178, + 0.0063685206696391106, + 0.05288736894726753, + -0.044777970761060715, + 0.050167448818683624, + -0.06704103946685791, + 0.03236203268170357, + 0.024718549102544785, + -0.021860113367438316, + -0.0009058535797521472, + 0.0616011917591095, + 0.009954158216714859, + 0.022502316161990166, + -0.03581230342388153, + 0.02218751050531864, + 0.048454903066158295, + -0.03853222727775574, + 0.06870321184396744, + -0.038632962852716446 + ] + }, + { + "id": "01c58499-3efb-4a60-9c78-884967c0b235", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ecarpenter", + "reviewDate": "2021-05-04T14:25:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ebbd3782-7dd8-4fac-8e4f-7446d5dc8e7b", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gpatel", + "reviewDate": "2021-02-08T20:16:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ccda4ced-26e2-4671-9cb0-d05a15320e0f", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david74", + "reviewDate": "2021-12-05T00:45:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3461a7ae-553c-4b06-8925-e3acacbceec4", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cory19", + "reviewDate": "2021-01-08T22:08:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f5aecd90-f707-45e2-aeca-9d24c20f5d57", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "howardjames", + "reviewDate": "2021-01-17T02:12:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6bea7ac3-6d19-4abf-b2dd-9186bf832bc5", + "productId": "5d9ede94-ed94-4bde-8b51-39544231aa29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mitchellmonique", + "reviewDate": "2022-03-30T07:06:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Micro (Gold)", + "description": "This Premium Phone Micro (Gold) is made of a highly lightweight, lightweight plastic. It comes in four different colors. It is designed to be easily carried with you wherever you are. The standard micro is available in seven distinct colors, while each color comes with a wide variety of buttons and actions.\n\nCustomers", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-01-16T08:14:57", + "price": 1046.6, + "stock": 93, + "priceHistory": [ + { + "priceDate": "2021-01-10T17:30:16", + "newPrice": 949.39 + }, + { + "priceDate": "2024-10-29T17:30:16", + "newPrice": 1046.6 + } + ], + "descriptionVector": [ + -0.04723316803574562, + 0.01070821937173605, + -0.035736456513404846, + 0.02665608935058117, + -0.00610126880928874, + 0.04878471419215202, + -0.030038971453905106, + 0.0028646395076066256, + 0.0016469291877001524, + 0.029275914654135704, + -0.021480025723576546, + 0.036575816571712494, + 0.05565221980214119, + -0.05214216187596321, + 0.06862416863441467, + 0.006816633511334658, + -0.03230270370841026, + -0.05499090254306793, + 0.01038392074406147, + 0.03772040084004402, + 0.09487329423427582, + -0.10072339326143265, + -0.05616092309355736, + -0.02808046154677868, + 0.028461989015340805, + -0.01222161389887333, + 0.005449491553008556, + -0.020233701914548874, + -0.014523499645292759, + 0.00990065187215805, + 0.0158842820674181, + -0.007681430317461491, + -0.04629206284880638, + -0.004775458946824074, + -0.03774583712220192, + 0.027953285723924637, + -0.023222338408231735, + -0.03858519718050957, + 0.09599244594573975, + 0.02645260840654373, + -0.0042953696101903915, + 0.007420719601213932, + 0.006234803237020969, + -0.04451160132884979, + -0.03215009346604347, + -0.002793102990835905, + 0.02568955160677433, + 0.05244738236069679, + -0.0029902257956564426, + -0.06628413498401642, + 0.002948893466964364, + 0.06857330352067947, + -0.03789844736456871, + 0.02252287045121193, + 0.05043800175189972, + -0.028589164838194847, + 0.037822142243385315, + 0.17499417066574097, + 0.056364402174949646, + -0.047665566205978394, + -0.007058267947286367, + 0.005865992978215218, + -0.010358485393226147, + 0.05053974315524101, + 0.01291472278535366, + 0.06470715254545212, + -0.01260950043797493, + -0.057178329676389694, + 0.036550384014844894, + 0.10189341008663177, + 0.02395995892584324, + -0.01355696190148592, + -0.04214612767100334, + 0.022726351395249367, + 0.01086718961596489, + 0.07544080168008804, + 0.07477948814630508, + 0.017308654263615608, + 0.08062958717346191, + -0.0349225290119648, + 0.025091825053095818, + 0.02774980291724205, + 0.022446563467383385, + 0.014218277297914028, + 0.027241099625825882, + -0.013493373990058899, + 0.07828954607248306, + -0.09609418362379074, + -0.030191583558917046, + 0.05585569888353348, + -0.04072175547480583, + 0.03700821474194527, + -0.01666005700826645, + 0.0380256250500679, + 0.02963200770318508, + 0.015833411365747452, + 0.010650990530848503, + 0.0634353905916214, + -0.07182900607585907, + -0.002966380212455988, + 0.039577171206474304, + -0.03255705535411835, + -0.020030220970511436, + 0.06587716937065125, + 0.024850191548466682, + 0.0634353905916214, + 0.027953285723924637, + 0.0444098599255085, + 0.013099128380417824, + -0.1014864519238472, + 0.04565618559718132, + -0.048097964376211166, + 0.0028328453190624714, + 0.01119148824363947, + 0.0348970964550972, + -0.010988006368279457, + 0.006466899532824755, + -0.009881575591862202, + -0.00927748903632164, + -0.01632939837872982, + -0.03817823529243469, + 0.0045815156772732735, + -0.039907827973365784, + -0.016596468165516853, + -0.02539704740047455, + -0.02300613932311535, + -0.049064502120018005, + 0.030496805906295776, + -0.00428265193477273, + 0.005398621316999197, + -0.05946749821305275, + 0.03517688065767288, + 0.05028539150953293, + 0.04219699651002884, + -0.039246514439582825, + 0.01916542276740074, + 0.05956923961639404, + 0.05880618467926979, + -0.004753203131258488, + 0.0777299702167511, + -0.01079088356345892, + 0.0032811409328132868, + -0.007147291209548712, + 0.02744458056986332, + -0.05402436479926109, + -0.06725066900253296, + -0.031030943617224693, + 0.02090773545205593, + -0.00761784240603447, + -0.03616885468363762, + -0.0035132369957864285, + -0.12778644263744354, + -0.008266439661383629, + -0.06938722729682922, + 0.0809348076581955, + 0.02744458056986332, + -0.06262145936489105, + -0.06567368656396866, + -0.06633500009775162, + 0.04199351742863655, + 0.0380510613322258, + -0.007090061902999878, + 0.029428526759147644, + -0.0229934211820364, + 0.027190228924155235, + 0.010237667709589005, + 0.01996663212776184, + -0.03611798584461212, + -0.009080366231501102, + 0.06918374449014664, + 0.0008330027922056615, + 0.029606573283672333, + 0.036092549562454224, + -0.09716246277093887, + 0.01014228630810976, + 0.05753442272543907, + -0.04000956937670708, + -0.030395064502954483, + -0.006015425082296133, + 0.009709888137876987, + 0.07315163314342499, + 0.05951836705207825, + -0.052091289311647415, + -0.03319293633103371, + -0.0061902920715510845, + 0.055550478398799896, + 0.008349104784429073, + 0.07096420973539352, + 0.005319136194884777, + 0.013684137724339962, + -0.02902156300842762, + 0.023820064961910248, + -0.015222967602312565, + -0.02600749209523201, + 0.09263499826192856, + -0.02281537465751171, + 0.0301152765750885, + 0.05585569888353348, + -0.017334088683128357, + 0.033701639622449875, + -0.04489312693476677, + -0.02043718285858631, + 0.05595744028687477, + 0.01872030645608902, + 0.014714263379573822, + -0.05814486742019653, + -0.0014466269640251994, + 0.04072175547480583, + -0.026147386059165, + 0.08683577179908752, + 0.02507910691201687, + -0.05204042047262192, + 0.016405703499913216, + 0.026071080937981606, + 0.028640035539865494, + 0.030700286850333214, + 0.007725941948592663, + -0.0443844236433506, + -0.034795355051755905, + -0.036219723522663116, + 0.027012182399630547, + 0.0001266792241949588, + 0.04143394157290459, + 0.007255390752106905, + -0.06536846607923508, + -0.022611893713474274, + -0.0003521185426507145, + 0.03866150602698326, + 0.07437252253293991, + -0.010250385850667953, + -0.05186237394809723, + -0.02235754020512104, + -0.041459377855062485, + -0.005681587848812342, + -0.0237946305423975, + 0.09975685179233551, + -0.02346397191286087, + -0.0037739479448646307, + -0.016354834660887718, + 0.03901759535074234, + -0.007757735904306173, + 0.05168432742357254, + -0.023425819352269173, + -0.004225422628223896, + 0.019763151183724403, + -0.06424931436777115, + 0.03436295688152313, + -0.07101508229970932, + -0.11934196203947067, + 0.02665608935058117, + -0.09955337643623352, + -0.012488683685660362, + -0.044791389256715775, + 0.019572386518120766, + 0.0035132369957864285, + 0.045910537242889404, + 0.06704718619585037, + -0.08358006924390793, + 0.028131332248449326, + -0.056669626384973526, + 0.04886101931333542, + -0.05692397803068161, + -0.008756067603826523, + 0.007204520516097546, + -0.10321604460477829, + 0.01794453337788582, + 0.088921457529068, + -0.10499650985002518, + -0.014599804766476154, + 0.05153171718120575, + -0.0012320175301283598, + -0.023260490968823433, + 0.039882395416498184, + -0.012787546962499619, + -0.023425819352269173, + 0.050488874316215515, + -0.08678490668535233, + 0.08047697693109512, + 0.004352598451077938, + -0.006139421369880438, + 0.05458394065499306, + 0.0034782637376338243, + 0.07895085960626602, + -0.010015110485255718, + 0.15454427897930145, + -0.012132590636610985, + -0.06597890704870224, + -0.00984342209994793, + -0.05529612675309181, + -0.024366922676563263, + -0.023514842614531517, + -0.019457928836345673, + 0.019915761426091194, + -0.019216293469071388, + 0.007827682420611382, + -0.02711392380297184, + 0.010841754265129566, + 0.05295608565211296, + 0.03398142755031586, + 0.07116769254207611, + 0.0008687710505910218, + 0.026096515357494354, + -0.08368180692195892, + -0.029428526759147644, + 0.021836118772625923, + 0.10448779910802841, + -0.006543205119669437, + 0.04995473474264145, + 0.014409041032195091, + 0.012514118105173111, + 0.08454660326242447, + -0.021174803376197815, + -0.07096420973539352, + -0.005929580889642239, + 0.03288771212100983, + -0.0412050262093544, + -0.06485976278781891, + 0.0012598372995853424, + 0.011248717084527016, + -0.04743664711713791, + 0.08296962082386017, + 0.03698278218507767, + -0.0649615004658699, + 0.022739069536328316, + -0.0020968143362551928, + 0.014930462464690208, + -0.05094670504331589, + -0.025257153436541557, + -0.012736676260828972, + -0.022802656516432762, + -0.08983712643384933, + -0.03675386309623718, + 0.008902319706976414, + -0.07223597168922424, + 0.025727704167366028, + -0.027063053101301193, + -0.006988321430981159, + 0.014052947983145714, + 0.04298548772931099, + 0.011674757115542889, + 0.025269871577620506, + 0.02586759813129902, + -0.018605848774313927, + 0.0025164950639009476, + 0.053515661507844925, + -0.07900173217058182, + -0.06450366973876953, + -0.029530268162488937, + 0.02950483188033104, + 0.012596783228218555, + 0.0015531369717791677, + -0.029682878404855728, + 0.04471508041024208, + -0.0025403406471014023, + 0.0793578252196312, + 0.029835490509867668, + 0.07783171534538269, + -0.011890956200659275, + 0.019394339993596077, + -0.003955173771828413, + -0.02947939746081829, + -0.01571895368397236, + 0.10341952741146088, + 0.014790568500757217, + 0.01919085904955864, + 0.01948336325585842, + -0.03230270370841026, + 0.06704718619585037, + -0.060027074068784714, + -0.012247049249708652, + 0.01699071377515793, + 0.008126546628773212, + -0.01599874161183834, + 0.048276010900735855, + -0.06781024485826492, + 0.08332571387290955, + 0.029428526759147644, + 0.02549878880381584, + -0.0349225290119648, + 0.026032928377389908, + -0.04168829321861267, + 0.120461106300354, + 0.003967891447246075, + 0.002925048116594553, + 0.09268587082624435, + 0.01386218424886465, + -0.034795355051755905, + 0.08388528972864151, + 0.001912409090436995, + 0.010733654722571373, + -0.043824851512908936, + 0.0011859162477776408, + 0.02504095435142517, + 0.05794138461351395, + -0.004219064023345709, + -0.00855258572846651, + -0.025320742279291153, + 0.007357131689786911, + 0.03690647706389427, + 0.006301570683717728, + 0.07518645375967026, + 0.07986652851104736, + -0.0037644095718860626, + 0.03471904993057251, + 0.02109849825501442, + -0.05473655089735985, + 0.043545063585042953, + 0.008444486185908318, + 0.009862499311566353, + -0.07493209838867188, + -0.031488776206970215, + -0.03151421248912811, + 0.015146661549806595, + -0.022637328132987022, + -0.007910347543656826, + 0.014167406596243382, + -0.006485976278781891, + -0.0003221129591111094, + 0.07432165741920471, + 0.0032111939508467913, + 0.06842068582773209, + -0.03593993932008743, + -0.053515661507844925, + 0.011757421307265759, + 0.01386218424886465, + 0.0077768126502633095, + -0.09904467314481735, + 0.0317685641348362, + 0.06552107632160187, + -0.036855604499578476, + -0.018605848774313927, + -0.020856864750385284, + 0.0038216388784348965, + -0.011229640804231167, + -0.036550384014844894, + 0.04878471419215202, + -0.022789940237998962, + 0.02838568389415741, + -0.0650632455945015, + 0.031641390174627304, + -0.01531199086457491, + -0.027063053101301193, + 0.014091100543737411, + 0.08546227216720581, + -0.08490269631147385, + -0.005840557627379894, + -0.0411795899271965, + -0.025778574869036674, + 0.033879686146974564, + -0.08129090070724487, + -0.04184090346097946, + -0.01513394434005022, + 0.01063191331923008, + -0.019699562340974808, + -0.007827682420611382, + 0.020564358681440353, + 0.05041256546974182, + 0.052549123764038086, + -0.017181478440761566, + 0.020042937248945236, + -0.05799225717782974, + 0.036219723522663116, + 0.03934825584292412, + 0.002297116443514824, + 0.046190325170755386, + -0.05880618467926979, + -0.008171058259904385, + 0.013111845590174198, + -0.015960589051246643, + 0.08276613801717758, + -0.031946610659360886, + 0.002050712937489152, + 0.008469921536743641, + -0.05377001315355301, + 0.025918468832969666, + -0.08647967875003815, + 0.006956527475267649, + -0.01776648685336113, + -0.03779670596122742, + -0.04949690029025078, + 0.01537557877600193, + 0.05219303071498871, + -0.03530405834317207, + 0.08108741790056229, + 0.031794000416994095, + -0.0507686585187912, + -0.03848345950245857, + 0.03029332309961319, + 0.03380338102579117, + 0.04835231602191925, + 0.04608858376741409, + 0.045122046023607254, + 0.0020761482883244753, + -0.02174709551036358, + -0.01840236783027649, + 0.0030204299837350845, + 0.0026118771638721228, + -0.021810684353113174, + 0.029708314687013626, + -0.03538036346435547, + 0.02820763736963272, + -0.02950483188033104, + -0.018605848774313927, + 0.010968930087983608, + -0.031030943617224693, + -0.0050425282679498196, + -0.055550478398799896, + 0.060484904795885086, + 0.032251834869384766, + -0.030013537034392357, + 0.009398306719958782, + 0.003897944465279579 + ] + }, + { + "id": "8c66c44d-14da-4266-9c90-c49b4711d628", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "qfrey", + "reviewDate": "2022-02-26T05:20:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c5511b16-67f0-4ee2-8013-57cfe93895d7", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "joyce00", + "reviewDate": "2022-05-26T21:11:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a2fa2e1c-4482-471d-a123-7b0d8d15c67f", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertchase", + "reviewDate": "2021-12-13T19:14:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1f72febe-ce8b-4d2c-bfa8-71b8772fb99a", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "josephgarcia", + "reviewDate": "2022-12-23T19:15:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1f716a82-e02d-4bcd-94c0-24383abfaf46", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "brandon95", + "reviewDate": "2022-10-26T20:04:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dd3d7326-4129-4c98-99a1-97d5a4c4f891", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "hollandmarie", + "reviewDate": "2021-04-21T09:18:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ec3def60-6029-4a36-981a-58a0544946d6", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "carolinewilliams", + "reviewDate": "2021-06-23T00:24:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b9f8187e-6dc4-47d4-a773-403f56d96df6", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "powerslisa", + "reviewDate": "2021-04-07T10:54:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f3091dc4-1a39-4487-a963-8cede55e602b", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "rwarren", + "reviewDate": "2022-11-14T16:20:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "471adf71-a625-45bd-a5f9-a51c927384bc", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "waynefrey", + "reviewDate": "2022-11-04T12:39:50", + "stars": 2, + "verifiedUser": false + }, + { + "id": "413ebf44-381b-4fd1-891e-81ff07f751eb", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "vdouglas", + "reviewDate": "2022-05-24T02:30:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c8945647-51a3-43f4-909c-61f8b938c0dd", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristen96", + "reviewDate": "2021-05-04T21:10:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "80490b55-a440-43d7-8d2b-ce01e8afeffd", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "kweeks", + "reviewDate": "2022-12-05T04:17:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "49ae34bf-1b64-4915-a142-4b35e6546443", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarahwyatt", + "reviewDate": "2022-03-07T20:38:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b29cf0ab-6b5a-4187-acd1-aafd6a53f11a", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael20", + "reviewDate": "2021-01-10T17:30:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6c6e8c57-1cef-415a-9484-6bbcab1e7fe7", + "productId": "c55e3c4f-f6e1-4d83-92bb-ed1d06182267", + "category": "Electronics", + "docType": "customerRating", + "userName": "mdougherty", + "reviewDate": "2021-10-16T08:00:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Ultra (Gold)", + "description": "This Awesome Computer Ultra (Gold) is available Now!\n\nThis awesome computer ultra (Gold) is available now!\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\nSonic Generations: The Complete Collection (Silver)\n\n", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-03-13T18:33:50", + "price": 847.48, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-03-05T05:52:38", + "newPrice": 910.75 + }, + { + "priceDate": "2022-11-14T05:52:38", + "newPrice": 847.48 + } + ], + "descriptionVector": [ + -0.002100039506331086, + 0.019173486158251762, + -0.054409291595220566, + 0.024339474737644196, + 0.009167097508907318, + -0.12826700508594513, + -0.03785497695207596, + 0.06436503678560257, + 0.0441351979970932, + 0.075189009308815, + 0.0011241813190281391, + -0.08028264343738556, + 0.094868965446949, + -0.01972336880862713, + 0.027638763189315796, + 0.01693055033683777, + -0.03753662109375, + 0.0011947252787649632, + -0.012162502855062485, + 0.0076115126721560955, + 0.05064694583415985, + 0.05649305135011673, + 0.0076404535211622715, + 0.00513704726472497, + -0.05165988579392433, + 0.0036284918896853924, + -0.007209954783320427, + 0.021966304630041122, + 0.0212717168033123, + 0.022617479786276817, + 0.04045967385172844, + 0.0179145485162735, + 0.00204396597109735, + 0.014615261927247047, + 0.0002518781111575663, + 0.00832056999206543, + 0.008696804754436016, + 0.01651090383529663, + 0.06673820316791534, + -0.043585315346717834, + -0.0038961973041296005, + 0.0071339840069413185, + -0.058316342532634735, + 0.05102318152785301, + 0.019361604005098343, + 0.006189780309796333, + -0.02028772048652172, + 0.03990979492664337, + -0.005477105733007193, + 0.03197992965579033, + 0.024397358298301697, + 0.05038647726178169, + -0.0020023633260279894, + 0.033484868705272675, + -0.001795253367163241, + -0.0523834154009819, + 0.02746511623263359, + 0.05070482939481735, + 0.01844995841383934, + -0.04763707146048546, + -0.02714676409959793, + -0.023008184507489204, + -0.02339888922870159, + 0.061586689203977585, + -0.04303543269634247, + -0.03232722356915474, + 0.011120622046291828, + 0.07316312938928604, + 0.002470847452059388, + 0.04040179401636124, + 0.02413688786327839, + 0.027667703106999397, + -0.02730594016611576, + 0.03632109612226486, + 0.04537966474890709, + 0.07362619042396545, + 0.043614257127046585, + -0.023731712251901627, + 0.053049057722091675, + -0.061876099556684494, + -0.012632795609533787, + 0.045553311705589294, + -0.06621726602315903, + 0.01759619638323784, + 0.05426458641886711, + 0.004185608588159084, + -0.004019197076559067, + -0.18117135763168335, + -0.016713492572307587, + -0.0054445466957986355, + 0.0034711246844381094, + 0.06615938246250153, + 0.07449442148208618, + -0.020360073074698448, + 0.009261156432330608, + -0.011945444159209728, + -0.002550435485318303, + 0.058663636445999146, + -0.06291797757148743, + 0.015367730520665646, + 0.05487234890460968, + -0.10360918194055557, + 0.030793344601988792, + -0.07362619042396545, + 0.006840955466032028, + -0.004768048413097858, + 0.04986553639173508, + 0.0220965389162302, + -0.034150511026382446, + -0.08311887830495834, + -0.03224039822816849, + -0.012914971448481083, + 0.01781325414776802, + 0.02559841424226761, + 0.06691185384988785, + 0.06228127330541611, + -0.06963231414556503, + -0.009659096598625183, + -0.04601636901497841, + -0.03160369396209717, + 0.028955582529306412, + -0.01292220689356327, + 0.0555669367313385, + 0.0220965389162302, + -0.008761921897530556, + 0.056058935821056366, + -0.019578661769628525, + 0.03360063210129738, + 0.045900605618953705, + 0.001409974880516529, + -0.10800822824239731, + 0.03591592237353325, + -0.01863807626068592, + 0.03898368030786514, + 0.022125480696558952, + -0.014506733044981956, + 0.02410794608294964, + 0.039041560143232346, + -0.023644888773560524, + 0.03386110067367554, + -0.1376439332962036, + 0.0017572682118043303, + 0.02794264443218708, + 0.027740055695176125, + -0.10661906003952026, + 0.016597727313637733, + -0.059908103197813034, + -0.017046315595507622, + 0.02241489104926586, + 0.04477190226316452, + -0.0059510162100195885, + 0.014890202321112156, + -0.052759647369384766, + -0.03299286961555481, + -0.02267536148428917, + 0.06291797757148743, + -0.03293498605489731, + -0.054727643728256226, + 0.028724053874611855, + 0.08624451607465744, + 0.02336994744837284, + 0.05906881019473076, + -0.10187271237373352, + -0.010614152997732162, + 0.016916079446673393, + -0.04448248818516731, + 0.02323971316218376, + 0.06147092208266258, + -0.0719476044178009, + 0.02403559349477291, + 0.019549721851944923, + -0.060544807463884354, + -0.01167050376534462, + -0.010397094301879406, + 0.07067419588565826, + 0.07229489833116531, + 0.09313250333070755, + -0.03166157752275467, + 0.013030735775828362, + -0.02254512719810009, + -0.05417776107788086, + 0.04905518516898155, + -0.021836068481206894, + -0.01030303630977869, + 0.0036899917759001255, + 0.028463583439588547, + 0.043990492820739746, + 0.06899560987949371, + -0.001173923839814961, + -0.002705994062125683, + -0.04439566656947136, + -0.06743279099464417, + 0.0881546288728714, + -0.06604361534118652, + 0.04173308610916138, + 0.05096529796719551, + -0.05973445624113083, + 0.0522097684442997, + -0.00905133318156004, + 0.02664029411971569, + 0.03073546104133129, + -0.0006014325190335512, + 0.12189996242523193, + 0.005361340939998627, + -0.01778431423008442, + 0.02762429229915142, + 0.024339474737644196, + -0.03334015980362892, + -0.004775283392518759, + 0.026683704927563667, + 0.04080696776509285, + 0.07119514048099518, + -0.046566251665353775, + 0.03762344643473625, + 0.042311906814575195, + 0.008501451462507248, + 0.02953440509736538, + 0.057042934000492096, + -0.04535072296857834, + -0.05264388397336006, + 0.03386110067367554, + 0.015613730065524578, + -0.05258600041270256, + 0.03467145189642906, + -0.022472774609923363, + -0.04315119981765747, + 0.03663944825530052, + -0.013573382049798965, + -0.03556862846016884, + -0.05843210592865944, + -0.11616962403059006, + -0.04705825075507164, + 0.04856318607926369, + 0.001608040533028543, + -0.07918288558721542, + 0.0522097684442997, + 0.011533033102750778, + 0.029606757685542107, + 0.02581547200679779, + 0.05249917879700661, + 0.024759121239185333, + 0.07316312938928604, + -0.05877939984202385, + -0.05125471204519272, + 0.025670766830444336, + -0.07877770811319351, + 0.08433440327644348, + 0.04436672478914261, + 0.01562820002436638, + 0.019766779616475105, + -0.01834866590797901, + -0.04986553639173508, + -0.05487234890460968, + 0.053743645548820496, + 0.03328227996826172, + 0.04931565746665001, + 0.10632964968681335, + 0.024252653121948242, + -0.004522048868238926, + -0.040343910455703735, + -0.09266944229602814, + 0.01355891115963459, + -0.0023008184507489204, + 0.06575420498847961, + -0.11038140207529068, + 0.08589722216129303, + 0.0472608357667923, + -0.00906580314040184, + -0.03525027632713318, + -0.05290435254573822, + -0.015555848367512226, + -0.010903564281761646, + -0.0003699036024045199, + -0.026886293664574623, + -0.006099339574575424, + -0.03533709794282913, + -0.04155943915247917, + 0.020374543964862823, + 0.03374533727765083, + 0.014116027392446995, + 0.021980775520205498, + 0.020027250051498413, + 0.025714177638292313, + -0.058287400752305984, + 0.00947821419686079, + -0.024628886952996254, + -0.011496856808662415, + -0.015396672300994396, + -0.015570318326354027, + -0.06071845442056656, + 0.02632194198668003, + 0.0002358248457312584, + 0.022849008440971375, + 0.03985191136598587, + 0.03487404063344002, + -0.0004449695989023894, + 0.0816718190908432, + 0.02416582964360714, + -0.0588083416223526, + -0.008971745148301125, + -0.010664800181984901, + 0.01831972412765026, + -0.08468169718980789, + -0.02222677506506443, + 0.006743279285728931, + 0.11200210452079773, + -0.0034439924638718367, + -0.0022230392787605524, + -0.05154412239789963, + 0.005788222420960665, + 0.042340848594903946, + -0.016742434352636337, + -0.03863638639450073, + 0.010397094301879406, + 0.026784999296069145, + -0.036089565604925156, + 0.02435394562780857, + 0.03646580129861832, + -0.043585315346717834, + 0.02804393880069256, + 0.01314650010317564, + -0.07426289469003677, + -0.09857343137264252, + 0.028998995199799538, + 0.006446633022278547, + 0.04795542359352112, + -0.006544309202581644, + 0.009593978524208069, + -0.06569632887840271, + -0.038752149790525436, + 0.02562735602259636, + -0.02823205478489399, + -0.0019083046354353428, + 0.005162370856851339, + 0.071773961186409, + -0.09376920759677887, + -0.006200633477419615, + 0.09301673620939255, + 0.02248724363744259, + -0.04352743178606033, + 0.07131090015172958, + -0.013602322898805141, + -0.029158171266317368, + -0.01895642839372158, + -0.03785497695207596, + -0.03244298696517944, + -0.02257406711578369, + -0.07327889651060104, + 0.020302189514040947, + 0.0014958936953917146, + 0.0017581726424396038, + -0.059271398931741714, + -0.019506309181451797, + -0.015107261016964912, + 0.1207423210144043, + -0.06586997210979462, + 0.015396672300994396, + 0.018203958868980408, + 0.05194929614663124, + 0.005705016665160656, + -0.021604539826512337, + -0.03299286961555481, + 0.0029664640314877033, + 0.04115426167845726, + -0.01847890019416809, + -0.005285370629280806, + 0.037102505564689636, + 0.06610149890184402, + 0.020779719576239586, + 0.0188261941075325, + 0.004058991093188524, + -0.06170245260000229, + -0.09295885264873505, + 0.020750777795910835, + -0.0195641927421093, + -1.8441480278852396e-05, + 0.042659200727939606, + 0.03568439185619354, + 0.009593978524208069, + 0.020273249596357346, + -0.0013566146371886134, + 0.06286009401082993, + -0.027667703106999397, + 0.014390967786312103, + 0.05267282575368881, + -0.02504853345453739, + 0.0025196855422109365, + -0.07212125509977341, + 0.007481277454644442, + 0.01677137427031994, + 0.028014997020363808, + 0.07084784656763077, + -0.008458039723336697, + 0.0571008138358593, + -0.03177734091877937, + 0.003340889699757099, + 0.10418800264596939, + 0.08358193188905716, + 0.0038274622056633234, + 0.08861768990755081, + 0.032848164439201355, + 0.029259465634822845, + 0.029809346422553062, + 0.009883389808237553, + -0.06436503678560257, + -0.057911165058612823, + -0.009926801547408104, + 0.010758858174085617, + 0.024817004799842834, + -0.04477190226316452, + -0.008696804754436016, + -0.02708888053894043, + 0.003641153685748577, + -0.0038455503527075052, + 0.003494639415293932, + -0.014007498510181904, + 0.09174332767724991, + 0.059329282492399216, + 0.08855980634689331, + -0.04810012876987457, + -0.0020909954328089952, + 0.05973445624113083, + -0.007495748344808817, + 0.02876746654510498, + 0.013739793561398983, + -0.028347820043563843, + 0.01562820002436638, + 0.015382201410830021, + -0.011301504448056221, + -0.03993873670697212, + -0.018247371539473534, + -0.040025558322668076, + 0.042688142508268356, + 0.0327613390982151, + -0.02273324318230152, + 0.02302265539765358, + 0.042948611080646515, + 0.014116027392446995, + -0.05058906599879265, + 0.022139951586723328, + -0.0057158698327839375, + -0.042890727519989014, + -0.004536519292742014, + 0.01517961360514164, + 0.056319404393434525, + 0.025540532544255257, + -0.03391898423433304, + 0.038028620183467865, + 0.027740055695176125, + 0.022631950676441193, + -0.071658194065094, + 0.05478552728891373, + -0.0102089773863554, + 0.04181990772485733, + -0.023934299126267433, + 0.04251449555158615, + -0.0036013596691191196, + 0.07796736061573029, + -0.02762429229915142, + 0.012654501013457775, + -0.010020860470831394, + 0.045524369925260544, + -0.019347133114933968, + -0.08572357892990112, + -0.033166516572237015, + -0.004645048640668392, + -0.036726273596286774, + 0.016366198658943176, + -0.0009767625015228987, + 0.020403483882546425, + -0.029476523399353027, + -0.04711613059043884, + 0.004927224479615688, + 0.021937362849712372, + -0.005393899977207184, + -0.04708718881011009, + 0.014759967103600502, + -0.003284816164523363, + 0.03785497695207596, + 0.03255875036120415, + 0.011540268547832966, + -0.007777924183756113, + 0.06008175015449524, + 0.011026564054191113, + 0.026336412876844406, + -0.058953046798706055, + 0.04601636901497841, + 0.028362290933728218, + 0.005310694221407175, + 0.15095683932304382, + 0.02536688558757305, + 0.04702930897474289, + 0.03397686779499054, + 0.01578737609088421, + -0.048505306243896484, + 0.0011838723439723253, + 0.01235061977058649, + -0.007354660425335169, + 0.012372325174510479, + 0.02254512719810009, + -0.024556534364819527, + 0.0017310403054580092, + 0.00379490340128541, + 0.008928333409130573, + 0.023673830553889275, + -0.02070736512541771, + -0.008812569081783295, + 0.006916925776749849, + -0.10227788984775543, + 0.017350196838378906, + -0.01011491846293211, + 0.03548180311918259 + ] + }, + { + "id": "ea9b8c68-fb9d-476a-b49d-69058ef5c8c3", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "george23", + "reviewDate": "2021-07-08T23:45:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d74c1301-7af1-4b50-b16b-69bb15899637", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "wyatt29", + "reviewDate": "2021-03-05T05:52:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ef5b0320-9e10-42a9-94ed-2b353e39f3b6", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtneyschultz", + "reviewDate": "2022-02-13T14:02:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cf61d4c6-c2e6-4010-86bf-491ed56579a6", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "crystal52", + "reviewDate": "2022-04-09T06:04:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9963d735-4cd8-44b3-a1e3-3f717f1a7795", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "richardscathy", + "reviewDate": "2021-04-17T10:43:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "887d15cd-fc12-470c-bd95-3d1205841a1e", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "elopez", + "reviewDate": "2021-10-16T23:06:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "465c2cf8-a4cc-4eec-8690-28aab66f34ae", + "productId": "275ebca1-a81c-4f09-8239-c1f1562588c8", + "category": "Electronics", + "docType": "customerRating", + "userName": "kaitlyncooper", + "reviewDate": "2022-07-24T16:54:11", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Pro (Black)", + "description": "This Awesome Phone Pro (Black) is the first phone built like a phone. It provides a 4.5\" by 5.5\" sized touchscreen, with a 24\" by 24\" touchscreen on the back on the top and rear sides. The black background includes 2GB of", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-06-29T05:14:33", + "price": 1038.37, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-03-10T07:11:05", + "newPrice": 1120.95 + }, + { + "priceDate": "2022-02-03T07:11:05", + "newPrice": 1112.88 + }, + { + "priceDate": "2022-12-30T07:11:05", + "newPrice": 1026.65 + }, + { + "priceDate": "2024-06-23T07:11:05", + "newPrice": 1038.37 + } + ], + "descriptionVector": [ + -0.016782954335212708, + 0.020561572164297104, + -0.005588184110820293, + 0.03572512045502663, + -0.013507334515452385, + -0.016868831589818, + -0.02613135427236557, + 0.0392829105257988, + 0.012930726632475853, + 0.08479808270931244, + 0.007115580141544342, + -0.00958763062953949, + 0.020954156294465065, + 0.03422839567065239, + 0.025959599763154984, + 0.01507766917347908, + -0.005217069759964943, + -0.02086827903985977, + -0.009642837569117546, + 0.033124253153800964, + 0.12817858159542084, + -0.05633576586842537, + -0.10099216550588608, + -0.010630431585013866, + -0.0018663062946870923, + -0.015335301868617535, + 0.014034868218004704, + 0.0018187668174505234, + 0.03601955622434616, + -0.01987455226480961, + -0.01943289488554001, + 0.022377273067831993, + -0.03393395617604256, + 0.07056692242622375, + -0.031676601618528366, + 0.012268241494894028, + -0.05623761937022209, + -0.005450166296213865, + 0.018598655238747597, + 0.0334186889231205, + 0.06718089431524277, + 0.009728715755045414, + -0.034522831439971924, + 0.014182087033987045, + 0.03054792247712612, + -0.047600775957107544, + 6.709194713039324e-05, + 0.020328477025032043, + -0.004505511838942766, + -0.022328199818730354, + 0.05545245110988617, + 0.019702795892953873, + -0.04222728684544563, + -0.01759265922009945, + 0.02299068495631218, + 0.03498902544379234, + -0.02659754827618599, + 0.14398008584976196, + 0.058838486671447754, + -0.05456914007663727, + -0.009188912808895111, + -0.03194650262594223, + 0.02571423538029194, + 0.004750876687467098, + 0.030940504744648933, + 0.008796329610049725, + -0.06801512837409973, + -0.01528622955083847, + -0.006434692535549402, + 0.10383839905261993, + 0.006729130633175373, + -0.022377273067831993, + 0.022978415712714195, + 0.059231068938970566, + -0.03459644317626953, + 0.03211825713515282, + 0.055746890604496, + 0.01506540086120367, + 0.057906102389097214, + -0.020426621660590172, + 0.025076286867260933, + 0.0486803837120533, + -0.01842689886689186, + 0.008201319724321365, + 0.021162716671824455, + 0.027407251298427582, + 0.03437561169266701, + -0.12670640647411346, + 0.010710175149142742, + 0.03381127491593361, + -0.05893663316965103, + 0.07665197551250458, + -0.06654294580221176, + -0.012108754366636276, + 0.026842912659049034, + 0.031259480863809586, + -0.021923348307609558, + 0.07292243093252182, + -0.030008118599653244, + -0.0033216264564543962, + 0.04134397581219673, + -0.018488239496946335, + -0.03108772449195385, + -0.025113090872764587, + -0.024610092863440514, + 0.03236361965537071, + 0.012151692993938923, + -0.010434139519929886, + 0.06266617774963379, + -0.12454719096422195, + 0.019089384004473686, + -0.009287059307098389, + -0.044386498630046844, + 0.00035961283720098436, + -0.03913569077849388, + 0.04423927888274193, + 0.0015795361250638962, + 0.028977585956454277, + 0.0075940415263175964, + -0.024021217599511147, + -0.024401532486081123, + 0.05005442723631859, + -0.044411033391952515, + 0.03736906498670578, + -0.011415598914027214, + -0.010250115767121315, + 0.04953915998339653, + 0.030327092856168747, + -0.036951944231987, + -0.04269348084926605, + -0.05010350048542023, + 0.06987990438938141, + 0.06703367084264755, + 0.021911079064011574, + 0.047993361949920654, + 0.0053029474802315235, + 0.111493781208992, + 0.11070860922336578, + 0.02054930478334427, + 0.08960723876953125, + 0.05496172234416008, + 0.018279680982232094, + 0.046153124421834946, + -0.03523439168930054, + 0.002565596019849181, + 0.06173379346728325, + -0.007023568265140057, + 0.04826326295733452, + 0.008845401927828789, + 0.05005442723631859, + -0.09009796380996704, + -0.10962900519371033, + -0.02576330676674843, + -0.09790056943893433, + 0.013556406833231449, + -0.03999446704983711, + -0.03881671652197838, + -0.01039120089262724, + 0.010072226636111736, + 0.06943824887275696, + -0.003827691311016679, + -0.043454110622406006, + 0.011427867226302624, + -0.03408117592334747, + -0.03108772449195385, + 0.010961674153804779, + 0.066837377846241, + 0.021628910675644875, + -0.026401255279779434, + 0.028707684949040413, + 0.10207176953554153, + 0.026425791904330254, + -0.04588322341442108, + 0.009274790994822979, + -0.044828154146671295, + -0.004615925718098879, + 0.06605221331119537, + 0.019727332517504692, + 0.003990245517343283, + -0.004496310371905565, + 0.038056086748838425, + -0.028045199811458588, + -0.017948437482118607, + -0.0161450058221817, + 0.03682926297187805, + 0.04534342139959335, + -0.0027388848830014467, + 0.08028337359428406, + 0.017482243478298187, + -0.003028722247108817, + 0.01717553846538067, + -0.003114599734544754, + -0.047085512429475784, + 0.0044503044337034225, + 0.08381662517786026, + -0.06497260928153992, + 0.02089281566441059, + 0.029909973964095116, + -0.038522277027368546, + 0.030400702729821205, + -0.03795794025063515, + 0.05658113211393356, + 0.09186459332704544, + 0.01689336821436882, + -0.022328199818730354, + -0.004720205906778574, + -0.02929656021296978, + 0.04895028471946716, + 0.024205241352319717, + -0.038031548261642456, + 0.02410709485411644, + -0.013777235522866249, + -0.06992897391319275, + -0.0020871346350759268, + 0.042129140347242355, + 0.007722858339548111, + 0.019580112770199776, + -0.009360668249428272, + 0.028069736436009407, + -0.09368029236793518, + 0.0595255084335804, + -0.0032480170484632254, + 0.02273305132985115, + 0.0047048707492649555, + -0.02784890867769718, + -0.021518494933843613, + 0.04595683142542839, + 0.07493442296981812, + 0.038424134254455566, + -0.000679737247992307, + -0.07395295798778534, + -0.01865999586880207, + 0.02203376218676567, + 0.017580389976501465, + 0.035798728466033936, + 0.06870215386152267, + 0.02359182946383953, + 0.01663573645055294, + -0.054716356098651886, + 0.05937828868627548, + -0.01258721575140953, + 0.0044257682748138905, + -0.06943824887275696, + -0.026867449283599854, + 0.11247523874044418, + 0.012163961306214333, + -0.024745043367147446, + -0.0071401167660951614, + -0.10079587250947952, + -0.020463427528738976, + 0.023088831454515457, + -0.0010312991216778755, + -0.05496172234416008, + 0.04046066105365753, + 0.06781884282827377, + -0.04001900553703308, + 0.06227359548211098, + -0.06168472021818161, + 0.03513624519109726, + -0.015507057309150696, + -0.05437284708023071, + -0.018537312746047974, + -0.05707186087965965, + -0.00032012443989515305, + -0.0036436677910387516, + 0.020046306774020195, + 0.07086136192083359, + -0.026744766160845757, + 0.023739047348499298, + 0.03417932242155075, + 0.04288977384567261, + -0.06855493783950806, + 0.035332534462213516, + -0.0189176294952631, + 0.0027572873514145613, + 0.07081229239702225, + -0.09951997548341751, + 0.05810239166021347, + -0.013556406833231449, + 0.04740448668599129, + 0.03393395617604256, + -0.01998496614396572, + 0.06340227276086807, + 0.0069192880764603615, + 0.02613135427236557, + -0.03773711249232292, + -0.03977363929152489, + 0.014820035547018051, + 0.04149119183421135, + -0.030032655224204063, + -0.04875399172306061, + -0.014353842474520206, + 0.04647209867835045, + -0.01959238201379776, + 0.0252235047519207, + -0.006704594008624554, + 0.0486803837120533, + -0.11139563471078873, + 0.03589687496423721, + 0.029051195830106735, + 0.05442192032933235, + -0.010636565275490284, + -0.00650830240920186, + -0.041147682815790176, + -0.0057660737074911594, + 0.12945447862148285, + -0.060506969690322876, + -0.0024582489859312773, + -0.024045754224061966, + 0.0053704227320849895, + 0.048484090715646744, + -0.05682649463415146, + -0.05206641927361488, + -0.0009569228277541697, + 0.009023291990160942, + -0.020745595917105675, + 0.025885989889502525, + -0.002102470025420189, + -0.05844590440392494, + -0.010661101900041103, + 0.008520293980836868, + -0.01374043058604002, + -0.10226806253194809, + 0.062420815229415894, + 0.04632487893104553, + 0.03604409471154213, + -0.07611217349767685, + -0.0378352589905262, + 0.012697630561888218, + -0.0938275158405304, + -0.07905654609203339, + 0.044779080897569656, + 0.014022599905729294, + -0.04818965494632721, + 0.020561572164297104, + -0.04227636009454727, + 0.037221845239400864, + 0.028511393815279007, + 0.030817823484539986, + 0.05348953232169151, + 0.08028337359428406, + 0.020438890904188156, + -0.021788397803902626, + 0.02392307110130787, + -0.011384928598999977, + -0.1106104701757431, + -0.04681561142206192, + -0.034400150179862976, + -0.033124253153800964, + -0.05187012627720833, + 0.0013786436757072806, + -0.02613135427236557, + 0.03241269290447235, + 0.022303663194179535, + 0.01511447411030531, + 0.0785658210515976, + 0.007692187558859587, + -0.0011424800613895059, + -0.04993174225091934, + -0.0036835395731031895, + -0.05182105302810669, + -0.0008227389771491289, + 0.046692926436662674, + 0.04853316396474838, + -0.015433448366820812, + 0.03101411461830139, + 0.032633524388074875, + 0.06173379346728325, + -0.0694873183965683, + 0.020696524530649185, + 0.07395295798778534, + 0.03866949677467346, + -0.084994375705719, + 0.0449017658829689, + -0.03513624519109726, + 0.03908661752939224, + 0.005005442537367344, + -0.09166830033063889, + -0.013347846455872059, + 0.028928514569997787, + -0.061979155987501144, + 0.07522885501384735, + -0.05569781735539436, + 0.01824287511408329, + 0.08489622920751572, + -0.04158933833241463, + -0.005223203916102648, + 0.007692187558859587, + -0.03641214221715927, + 0.04443557187914848, + -0.025517942383885384, + -0.037123698741197586, + -0.015224887989461422, + 0.10344581305980682, + 0.0372709184885025, + -0.03292796015739441, + -0.040706027299165726, + 0.01878267712891102, + 0.03135762736201286, + -0.0774371400475502, + 0.0559922531247139, + 0.05501079559326172, + 0.030744213610887527, + 0.0015013260999694467, + 0.018819482997059822, + -0.02200922556221485, + 0.03501356020569801, + 0.007348676677793264, + -0.00675980094820261, + -0.051134031265974045, + 0.059280142188072205, + 0.015605203807353973, + -0.08926372975111008, + 0.019580112770199776, + 0.04784614220261574, + 0.011979937553405762, + -0.003612997243180871, + 0.03643667697906494, + 0.09132479131221771, + -0.020647451281547546, + -0.028143346309661865, + 0.05152661353349686, + 0.02431565523147583, + -0.02348141372203827, + -0.03859588876366615, + 0.02454875223338604, + 0.03295249864459038, + 0.029149342328310013, + -0.07493442296981812, + -0.0586421936750412, + 0.10776423662900925, + 0.002841631416231394, + 0.04774799570441246, + 0.05103588476777077, + -0.0665920153260231, + -0.02259810082614422, + 0.011630292981863022, + 0.010348262265324593, + -0.005830481648445129, + 0.022647174075245857, + -0.04600590467453003, + 0.03744267299771309, + -0.014451988972723484, + 0.04647209867835045, + -0.11600849032402039, + 0.0014614543179050088, + -0.05039793625473976, + -0.018623190000653267, + 0.05824961140751839, + -0.05456914007663727, + -0.03145577013492584, + -0.021089106798171997, + -0.08239351212978363, + -0.03236361965537071, + 0.0023509017191827297, + -0.01280804444104433, + -0.023861730471253395, + 0.012648557312786579, + -0.06639572232961655, + -0.0007705989410169423, + -0.04411659762263298, + 0.021763861179351807, + 0.04784614220261574, + -0.03366405516862869, + -0.021260863170027733, + -0.009986348450183868, + -0.04021529480814934, + -0.017016051337122917, + -0.010201042518019676, + -0.004766211844980717, + 0.02576330676674843, + -0.01735956221818924, + 0.005738470237702131, + 0.011323587037622929, + -0.006692325696349144, + -0.10099216550588608, + -0.009740984067320824, + 5.7651152019388974e-05, + -0.03999446704983711, + -0.007998893968760967, + 0.06389300525188446, + -0.026916522532701492, + -0.02662208490073681, + -0.00033622648334130645, + 0.010906467214226723, + -0.06806420534849167, + -0.030474312603473663, + -0.03911115601658821, + 0.020389817655086517, + -0.014157550409436226, + 0.08072502911090851, + 0.0363876037299633, + -0.059231068938970566, + -0.009722581133246422, + -0.030523385852575302, + -0.02438926510512829, + 0.03648575022816658, + 0.0319710373878479, + -0.03930744528770447, + 0.008532562293112278, + -0.025002676993608475, + -0.05314602330327034, + -0.027260033413767815, + -0.0051710638217628, + 0.03520985320210457, + 0.013630016706883907, + 0.010151970200240612, + 0.021579837426543236, + -0.01398579590022564, + -0.026450328528881073, + 0.009471082128584385, + 0.02652393840253353 + ] + }, + { + "id": "dcc35552-1e68-4bbb-9b34-f2d499f98c3b", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidkelly", + "reviewDate": "2021-03-10T07:11:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "dedc5999-3cd3-4254-9b0b-c344b1fde0b0", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephensderrick", + "reviewDate": "2022-04-25T07:20:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "568c2320-3903-4d55-9f05-fe5fd4e7698e", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "pvilla", + "reviewDate": "2022-02-05T15:37:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "81cc7300-cd9f-4587-bfa2-f4601a8316d1", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "crystal12", + "reviewDate": "2022-02-28T00:17:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "65b6d5f0-0db7-4735-bd8f-bba1b19dfae0", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "tedwards", + "reviewDate": "2022-12-31T18:56:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "750cce97-9ad2-4381-bd41-6a2d3f568489", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "joseph01", + "reviewDate": "2022-06-30T07:03:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7a5628db-f44b-4021-819b-ed42bbdbe70c", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "sweeneylauren", + "reviewDate": "2022-08-02T11:23:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7a8e6daa-7258-4e77-ac34-b43db6600a66", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "anthonyshepherd", + "reviewDate": "2021-03-21T20:38:59", + "stars": 5, + "verifiedUser": true + }, + { + "id": "2955c94e-dee0-49ac-826a-8302278b478f", + "productId": "4482d260-dab1-464e-aca0-85a8d16a30d7", + "category": "Electronics", + "docType": "customerRating", + "userName": "alexandra74", + "reviewDate": "2021-10-28T09:29:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3d531a34-7977-4a44-88e1-d7429bf137b9", + "productId": "3d531a34-7977-4a44-88e1-d7429bf137b9", + "category": "Media", + "docType": "product", + "name": "Basic TV Pro (Silver)", + "description": "This Basic TV Pro (Silver) is the best TV box that you can get as a bundle. The silver version is priced at $699. It also comes with a large 1 1/2\" DVD recorder. You'll also need your own HDMI or a decent Blu-ray player.\n\nIf you want to check out my $150 version of the Black TV Pro with HDMI to DVD, go now.\n\nWhat's more", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-10-07T17:13:12", + "price": 798.34, + "stock": 15, + "priceHistory": [ + { + "priceDate": "2021-12-05T19:50:03", + "newPrice": 852.04 + }, + { + "priceDate": "2021-12-21T19:50:03", + "newPrice": 761.66 + }, + { + "priceDate": "2022-01-06T19:50:03", + "newPrice": 812.43 + }, + { + "priceDate": "2022-01-22T19:50:03", + "newPrice": 766.47 + }, + { + "priceDate": "2024-08-09T19:50:03", + "newPrice": 798.34 + } + ], + "descriptionVector": [ + 0.02895227260887623, + 0.00880994088947773, + -0.048063259571790695, + 0.07187122106552124, + -0.019831685349345207, + -0.014153064228594303, + -0.011288901790976524, + 0.04898277297616005, + 0.02788364887237549, + 0.10964585840702057, + 0.004370799288153648, + -0.08245806396007538, + 0.05979327857494354, + -0.010586840100586414, + 0.06193052604794502, + 0.01688675582408905, + 0.007884213700890541, + -0.009779158048331738, + -0.002143462188541889, + 0.038967523723840714, + 0.061831120401620865, + -0.0719706267118454, + -0.024802032858133316, + -0.007542502135038376, + 0.006442812737077475, + 0.02713809721171856, + -0.01938435435295105, + 0.00018318448564969003, + 0.018054787069559097, + -0.00933803990483284, + 0.026541654020547867, + 0.07783564180135727, + -0.02041570097208023, + 0.0049858796410262585, + -0.04267043247818947, + 0.021571306511759758, + -0.020279016345739365, + -0.005625811871141195, + 0.03379836305975914, + 0.04823721945285797, + 0.02218017540872097, + -0.012587404809892178, + -0.0119847496971488, + 0.00808302778750658, + 0.0055481502786278725, + 0.03591075912117958, + -0.0380728617310524, + 0.019558316096663475, + -0.002455662237480283, + -0.020912736654281616, + -0.022428691387176514, + -0.013991527259349823, + -0.06540977209806442, + 0.06888901442289352, + 0.0007436105515807867, + 0.02922564186155796, + 0.009816436097025871, + 0.1163061261177063, + 0.00528720673173666, + 0.002118610544130206, + 0.036432646214962006, + -0.01942163147032261, + 0.021049421280622482, + 0.059693872928619385, + -0.047765038907527924, + 0.012798644602298737, + -0.07107596844434738, + 0.07549957931041718, + -0.03481728211045265, + 0.06158260256052017, + -0.011543631553649902, + -0.05382886156439781, + 0.09473481774330139, + 0.0782332643866539, + -0.004414289724081755, + 0.026988985016942024, + 0.01798023097217083, + 0.03993673995137215, + 0.04431064799427986, + 0.024379553273320198, + 0.018850041553378105, + 0.015482631511986256, + 0.00167283252812922, + 0.01793052814900875, + 0.03424569219350815, + 0.06630443036556244, + -0.057258401066064835, + -0.0982140600681305, + -0.033599548041820526, + 0.040011294186115265, + 0.017855972051620483, + 0.10716068744659424, + 0.014240045100450516, + -0.06928664445877075, + 0.05397797003388405, + 0.10775712877511978, + -0.08424738794565201, + 0.03417113795876503, + -0.01934707723557949, + -0.041750919073820114, + 0.08360124379396439, + -0.07788534462451935, + 0.02964812144637108, + -0.021024569869041443, + -0.012438294477760792, + 0.015358373522758484, + 0.043913017958402634, + 0.04478282853960991, + 0.02855464443564415, + -0.1959310919046402, + -0.03899237513542175, + -0.005147416144609451, + 0.06396836787462234, + -0.015171985141932964, + -0.005262355320155621, + 0.030120303854346275, + -0.042123693972826004, + -0.022664783522486687, + 0.026591358706355095, + -0.022639932110905647, + 0.01800508238375187, + -0.012506636790931225, + -0.05348093807697296, + 0.042769838124513626, + -0.02895227260887623, + -0.008045749738812447, + -0.06704998761415482, + 0.07554928213357925, + 0.07788534462451935, + -0.03461847081780434, + -0.08921773731708527, + 0.027958203107118607, + 0.037824343889951706, + 0.01794295385479927, + -0.049852583557367325, + 0.029399603605270386, + -0.01461282093077898, + 0.016066648066043854, + 0.0035755436401814222, + 0.031213780865073204, + -0.07788534462451935, + -0.00792770367115736, + -0.0008566082688048482, + 0.03026941604912281, + -0.031835075467824936, + 0.023509742692112923, + 0.005172267556190491, + 0.08633493632078171, + -0.020254164934158325, + 0.0026793277356773615, + 0.026243433356285095, + -0.0557175949215889, + -0.023087263107299805, + -0.015097429975867271, + 0.02611917443573475, + 0.020266590639948845, + -0.04826207086443901, + 0.03702908754348755, + -0.02046540565788746, + 0.10755831748247147, + -0.05189042538404465, + -0.03454391285777092, + -0.08792544156312943, + 0.007542502135038376, + -0.02778424136340618, + 0.03884326294064522, + 0.13221123814582825, + 0.05034961923956871, + -0.11690256744623184, + 0.019098559394478798, + 0.02109912410378456, + -0.02567184343934059, + 0.022267155349254608, + -0.02318667061626911, + -0.042446766048669815, + -0.01586783304810524, + 0.07882970571517944, + 0.006194295361638069, + 0.0005863456754013896, + -0.05646314471960068, + -0.013879694975912571, + 0.02185710147023201, + -0.033599548041820526, + -0.04865970090031624, + 0.030045749619603157, + 0.07694097608327866, + 0.07415758073329926, + -0.010431515984237194, + -0.0416763611137867, + 0.030393673107028008, + 0.05492233857512474, + 0.03571194410324097, + -0.012456933036446571, + -0.06163230538368225, + 0.02711324393749237, + -0.04152725264430046, + 0.020974865183234215, + 0.021260660141706467, + -0.08653374761343002, + 0.07674216479063034, + 0.01054956205189228, + -0.0022288900800049305, + 0.06938605010509491, + -0.02674046903848648, + 0.022838745266199112, + -0.09513244777917862, + 0.026939282193779945, + 0.02850494161248207, + -0.0030893816146999598, + -0.0052654617466032505, + -0.01530866976827383, + -0.006946060340851545, + 0.032257553189992905, + 0.008294266648590565, + 0.04023496061563492, + 0.030045749619603157, + -0.03354984521865845, + -0.010263767093420029, + -0.06744761019945145, + -0.027635131031274796, + 0.053729455918073654, + -0.01655125617980957, + -0.05611522123217583, + -0.01860152557492256, + 0.011562270112335682, + -0.039638519287109375, + 0.045627787709236145, + -0.016364868730306625, + 0.06451510637998581, + 0.006778310984373093, + -0.08872070163488388, + 0.04684552177786827, + -0.034593615680933, + 0.039315447211265564, + -0.02785879746079445, + 0.007878000847995281, + 0.037799492478370667, + -0.03382321447134018, + -0.13678395748138428, + 0.03101496770977974, + -0.09041061997413635, + 0.01320869754999876, + 0.00669754296541214, + -0.023708555847406387, + 0.030095452442765236, + -0.004181304480880499, + 0.08638463914394379, + -0.04575204849243164, + -0.01689918152987957, + -0.0015742022078484297, + -0.06655295193195343, + -0.03909178078174591, + -0.03765038028359413, + 0.00659813592210412, + -0.02778424136340618, + 0.04580175131559372, + 0.06655295193195343, + 0.019284946843981743, + 0.05139338970184326, + 0.023000281304121017, + -0.0963253304362297, + -0.03340073302388191, + -0.018787913024425507, + -0.0035165208391845226, + -0.021906806156039238, + 0.061135273426771164, + -0.009251059032976627, + -0.09055972844362259, + -0.04749166965484619, + 0.04590115696191788, + -0.014973171055316925, + -0.0394645594060421, + -0.041353289037942886, + 0.035761650651693344, + -0.030070601031184196, + 0.005308952182531357, + -0.06680146604776382, + 0.02992149069905281, + -0.0309901162981987, + 0.001767579815350473, + 0.06207963824272156, + 0.0005280994228087366, + 0.0479389987885952, + 0.0724179595708847, + 0.023497316986322403, + -0.03444450721144676, + -0.024131035432219505, + -0.00659813592210412, + 0.0536300465464592, + 0.0002075508382404223, + -0.024503812193870544, + 0.050275061279535294, + 0.10407907515764236, + 0.016079073771834373, + 0.1065642461180687, + -0.0003376341483090073, + -0.0002857949584722519, + -0.013519344851374626, + 0.05705958604812622, + 0.040980514138936996, + -0.007834509946405888, + -0.021894380450248718, + -0.02107427269220352, + -0.028728608042001724, + -0.09314430505037308, + 0.05929624289274216, + -0.04513075202703476, + 0.016128776594996452, + -0.017893251031637192, + -0.04831177741289139, + 0.006492516025900841, + -0.016389720141887665, + -0.023025134578347206, + -0.0014336345484480262, + 0.014538265764713287, + 0.01693645864725113, + 0.025547584518790245, + 0.037178199738264084, + 0.002113950904458761, + 0.054822929203510284, + -0.015992091968655586, + 0.04122903198003769, + -0.05273538455367088, + 0.08862129598855972, + 0.05979327857494354, + -0.04778989031910896, + -0.036830272525548935, + -0.020353572443127632, + -0.035388872027397156, + 0.024441683664917946, + -0.03280429169535637, + 0.029325049370527267, + -0.005302739329636097, + 0.003510307753458619, + 0.09557978063821793, + -0.0067907371558249, + 0.031884778290987015, + -0.025224512442946434, + 0.0023049984592944384, + 0.012985032051801682, + 0.10646484047174454, + 0.09915842860937119, + 0.0492064394056797, + -0.05149279907345772, + -0.017781417816877365, + -0.02922564186155796, + -0.03919119015336037, + -0.03277944028377533, + 0.01688675582408905, + -0.03993673995137215, + 0.0017939847894012928, + -0.06878960877656937, + -0.008020898327231407, + 0.021931657567620277, + 0.06550917774438858, + -0.018179045990109444, + -0.041055068373680115, + -0.004945495631545782, + -0.008741598576307297, + -0.04483253136277199, + -0.026218581944704056, + -0.06794464588165283, + -0.02920079044997692, + 0.05348093807697296, + -0.08305450528860092, + 0.07371024787425995, + 0.028281277045607567, + 0.033972322940826416, + -0.009915842674672604, + 0.02676532045006752, + 0.03615927696228027, + -0.013954250141978264, + -0.03551313281059265, + 0.0365569032728672, + 0.03809771314263344, + 0.0640677735209465, + 0.03354984521865845, + -0.03712849318981171, + -0.010686246678233147, + 0.011052809655666351, + -0.017371363937854767, + 0.015283818356692791, + -0.024429257959127426, + -0.03799830377101898, + 0.05671166256070137, + -0.020266590639948845, + -0.06973396986722946, + -0.08320361375808716, + -0.07748771458864212, + -0.04550353065133095, + -0.024826884269714355, + 0.06481333076953888, + -0.0014926574658602476, + 0.02708839252591133, + 0.01722225360572338, + -0.04299350455403328, + -0.006362044718116522, + 0.046000562608242035, + 0.0675470232963562, + -0.012910476885735989, + 0.07420728355646133, + -0.03866930305957794, + -0.046994633972644806, + -0.04761592671275139, + -0.07907822728157043, + -0.049156736582517624, + 0.015942389145493507, + 0.08524145931005478, + -0.0017768992111086845, + -0.05810336023569107, + 0.00334566505625844, + -0.06809376180171967, + -0.07291499525308609, + -0.004485738463699818, + 0.00012416161189321429, + 0.004349053837358952, + 0.023745834827423096, + -0.01164925191551447, + 0.04095566272735596, + -0.05740751326084137, + -0.015606890432536602, + 0.05606551840901375, + 0.01973227970302105, + -0.01588025875389576, + 0.04147754982113838, + 0.009623834863305092, + 0.012985032051801682, + 0.015234114602208138, + 0.002663795603439212, + 0.05010110139846802, + 0.04093081131577492, + -0.015780853107571602, + 0.0001710498472675681, + -0.018402710556983948, + -0.014028805308043957, + 0.020701495930552483, + 0.019595595076680183, + 0.06645354628562927, + -0.01621575839817524, + 0.0515425018966198, + 0.00794012937694788, + -0.05248686671257019, + 0.020713921636343002, + 0.04575204849243164, + -0.052288055419921875, + -0.013072013854980469, + -0.022639932110905647, + -0.015171985141932964, + 0.04592600837349892, + -0.04060773923993111, + -0.0007991386810317636, + -0.04955436289310455, + -0.019595595076680183, + 0.022627506405115128, + 0.01217113807797432, + 0.028355831280350685, + -0.024478960782289505, + -0.013059587217867374, + 0.06536006927490234, + 0.008573848754167557, + 0.0057593900710344315, + 0.09065913408994675, + 0.03166111186146736, + 0.009226207621395588, + -0.03024456277489662, + 0.019284946843981743, + -0.02788364887237549, + -0.013618751429021358, + 0.009654900059103966, + 0.007113809697329998, + -0.01938435435295105, + -0.02225472964346409, + -0.050523579120635986, + 0.012425867840647697, + 0.027336910367012024, + -0.027958203107118607, + 0.06297430396080017, + -0.013482066802680492, + -0.01940920576453209, + -0.03240666538476944, + 0.051641907542943954, + 0.016103925183415413, + -0.027933351695537567, + 0.04358994588255882, + -0.000582850887440145, + 0.0664038434624672, + -0.0465473011136055, + 0.0612843818962574, + 0.06650324910879135, + 0.01796780526638031, + -0.011711380444467068, + -0.043888166546821594, + 0.0006873058155179024, + 0.03335103020071983, + -0.02679017186164856, + 0.01902400515973568, + 0.029101382941007614, + 0.007828297093510628, + -0.023559445515275, + 0.029325049370527267, + -0.05730810388922691, + 0.03317706659436226, + -0.07455521076917648, + -0.016638237982988358, + -0.031909629702568054, + 0.0252990685403347, + 0.036805421113967896, + 0.004299350548535585, + -0.015147133730351925, + 0.015606890432536602, + -0.0536300465464592, + 0.058699801564216614 + ] + }, + { + "id": "ff6a5d39-c135-4a52-b69a-83c9a7f7227c", + "productId": "3d531a34-7977-4a44-88e1-d7429bf137b9", + "category": "Media", + "docType": "customerRating", + "userName": "harrisjohn", + "reviewDate": "2022-01-23T09:27:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "99ef7f2b-44fb-40f9-969e-6c0cb2154afd", + "productId": "3d531a34-7977-4a44-88e1-d7429bf137b9", + "category": "Media", + "docType": "customerRating", + "userName": "christinaromero", + "reviewDate": "2021-12-05T19:50:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Silver)", + "description": "This Premium Computer Ultra (Silver) is designed for high performance gaming. It contains all the same materials as an Intel® Xeon or AMD™ Core™ i7-5820X and dual-core i3-7320X (AMD™ Celeron) processors. Each processor and motherboard measures 2.8 inches x 1.5 inches in size making it ideal for any demanding system setup. The computer is equipped with", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-09-06T14:10:39", + "price": 479.33, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-02-05T05:55:04", + "newPrice": 434.4 + }, + { + "priceDate": "2021-11-17T05:55:04", + "newPrice": 504.54 + }, + { + "priceDate": "2022-08-29T05:55:04", + "newPrice": 521.24 + }, + { + "priceDate": "2023-06-13T05:55:04", + "newPrice": 479.33 + } + ], + "descriptionVector": [ + 0.02073274739086628, + 0.043142132461071014, + -0.046620529145002365, + -0.03958866000175476, + 0.05760625749826431, + 0.03575992211699486, + -0.03170596435666084, + 0.04531925544142723, + 0.04516911134123802, + 0.0862342119216919, + 0.053101856261491776, + -0.07462287694215775, + 0.03188113495707512, + -0.06015874817967415, + -0.009215249679982662, + 0.0605090893805027, + -0.03686099871993065, + -0.006512609776109457, + 0.0007409579702652991, + -0.04309208318591118, + 0.03723636269569397, + 0.04306705668568611, + -0.022034017369151115, + 0.014714369550347328, + 0.007300879806280136, + -0.0170041061937809, + 0.016203323379158974, + -0.03233157470822334, + -0.004429325461387634, + 0.015540176071226597, + 0.10580332577228546, + 0.01906862109899521, + -0.024373803287744522, + 0.024136070162057877, + 0.025599999353289604, + -0.07702521979808807, + -0.055354055017232895, + -0.06456305086612701, + 0.0780261978507042, + -0.04599491506814957, + 0.004629521165043116, + 0.03923831880092621, + -0.048747606575489044, + 0.0075323558412492275, + 0.03756168112158775, + -0.020182209089398384, + -0.03415835648775101, + -0.018017595633864403, + -0.029278593137860298, + -0.06341192871332169, + -0.003565982449799776, + 0.017492081969976425, + 0.053452201187610626, + 0.0592578686773777, + -0.010310068726539612, + -0.06281133741140366, + 0.012343304231762886, + 0.20039570331573486, + 0.02652590349316597, + 0.04046451672911644, + 0.08648445457220078, + -0.03000430017709732, + -0.01772981509566307, + 0.013725903816521168, + -0.03308230638504028, + 0.026075463742017746, + -0.012850048951804638, + 0.03125552460551262, + 0.01011612918227911, + 0.037061192095279694, + -0.034433625638484955, + -0.05220097675919533, + 0.05700566992163658, + 0.025975367054343224, + 0.05280156433582306, + 0.05114994943141937, + 0.0377618782222271, + 0.007726295385509729, + 0.040039099752902985, + 0.0018220918718725443, + 0.036410558968782425, + 0.013463147915899754, + 0.009421700611710548, + 0.03175600990653038, + 0.08408211171627045, + 0.019519060850143433, + 0.011117106303572655, + -0.09999765455722809, + 0.007069403771311045, + 0.03601016476750374, + -0.030905181542038918, + 0.033307526260614395, + 0.07787605375051498, + -0.02135835774242878, + -0.02085786871612072, + 0.10460215061903, + -0.05240117385983467, + 0.018117692321538925, + -0.009152688086032867, + -0.0036566960625350475, + 0.022659627720713615, + -0.04919804632663727, + -0.00669403700158, + -0.02123323641717434, + 0.010816813446581364, + 0.047271162271499634, + 0.06226080283522606, + 0.050098925828933716, + 0.00990967731922865, + -0.09339120239019394, + -0.12502209842205048, + -0.05265141651034355, + -0.015540176071226597, + -0.051099903881549835, + 0.014213880524039268, + -0.01697908155620098, + -0.05400273576378822, + 0.002173998160287738, + -0.04311710596084595, + 0.006281133741140366, + 0.03185610845685005, + 0.031205473467707634, + 0.04211612790822983, + -0.03833743929862976, + -0.032681915909051895, + 0.05089970678091049, + -0.041515544056892395, + 0.015890518203377724, + 0.03360782191157341, + -0.021095601841807365, + -0.07402228564023972, + 0.06311163306236267, + -0.021571066230535507, + 0.020757772028446198, + -0.07912727445363998, + 0.015890518203377724, + 0.03308230638504028, + 0.14193861186504364, + 0.01950654946267605, + -0.006181036122143269, + -0.08323127776384354, + 0.016741348430514336, + -0.10104867815971375, + -0.06306158006191254, + -0.07332160323858261, + 0.014914564788341522, + -0.06431280821561813, + 0.003095210064202547, + -0.009165200404822826, + 0.0038725316990166903, + -0.0051925708539783955, + 0.0025446724612265825, + -0.04977360740303993, + -0.057205863296985626, + 0.022446921095252037, + -0.004857868887484074, + -0.002436754759401083, + 0.02233431115746498, + -0.016741348430514336, + 0.07357184588909149, + -0.0001118279542424716, + 0.005033039953559637, + -0.044393353164196014, + -0.00909638311713934, + 0.023385336622595787, + 0.0001060606082319282, + 0.045519452542066574, + 0.046270184218883514, + -0.056455131620168686, + 0.020032063126564026, + -0.00468895398080349, + -0.006468817126005888, + -0.0046514174900949, + -0.03325747698545456, + 0.11291026324033737, + 0.01906862109899521, + 0.013851026073098183, + -0.012468426488339901, + -0.0011597262928262353, + -0.032932158559560776, + -0.0028621701058000326, + 0.021470967680215836, + -0.0801282525062561, + 0.005633626598864794, + 0.053001757711172104, + 0.032081328332424164, + 0.02245943248271942, + 0.03233157470822334, + 0.04632023349404335, + 0.06421270966529846, + 0.005686803720891476, + -0.04329227656126022, + 0.026175562292337418, + 0.00884613860398531, + 0.004638905171304941, + 0.004069599322974682, + 0.016803910955786705, + 0.04634525999426842, + -0.01060410588979721, + -0.03983890637755394, + -0.005646138917654753, + 0.06135992333292961, + 0.022321797907352448, + -0.03993900120258331, + 0.03796207159757614, + 0.0014349950943142176, + 0.014351515099406242, + 0.004172825254499912, + -0.020932942628860474, + 0.04119022563099861, + 0.0051519060507416725, + 0.02875307947397232, + -0.03488406538963318, + -0.0016547410050407052, + 0.03858768194913864, + -0.023510459810495377, + 0.012205669656395912, + 0.03676090016961098, + -0.06736578792333603, + -0.054353080689907074, + 0.05117497593164444, + -0.011217203922569752, + -0.007169501390308142, + -0.023135092109441757, + -0.028828153386712074, + -0.06306158006191254, + 0.0990467220544815, + -0.03858768194913864, + -0.05395268648862839, + -0.018618181347846985, + -0.0813794732093811, + 0.023135092109441757, + 0.0037880742456763983, + 0.06571417301893234, + -0.008908700197935104, + 0.04519413411617279, + 0.00041564027196727693, + -0.014952101744711399, + -0.03575992211699486, + 0.0995972603559494, + 0.04384281486272812, + 0.007920234464108944, + -0.061460018157958984, + -0.04942326620221138, + -0.02527468279004097, + 0.002302248263731599, + 0.07932747155427933, + -0.033682893961668015, + -0.05445317551493645, + 0.026951320469379425, + -0.01810518093407154, + -0.022822286933660507, + -0.05290166288614273, + 0.09929697215557098, + 0.00848954077810049, + 0.026500878855586052, + 0.018468035385012627, + 0.013025219552218914, + -0.030880156904459, + -0.00850205309689045, + -0.05170048773288727, + -0.035409580916166306, + 0.006600195541977882, + 0.025199608877301216, + -0.08473274856805801, + -0.032431673258543015, + 0.08853646367788315, + -0.031680937856435776, + -0.019268816336989403, + -0.01307526882737875, + 0.04043949022889137, + 0.01800508238375187, + -0.016603713855147362, + -0.015064711682498455, + 0.08418221026659012, + -0.023910850286483765, + -0.0705188661813736, + 0.06486334651708603, + -0.005655522923916578, + 0.03786197304725647, + 0.043992962688207626, + 0.04156558960676193, + 0.05525396019220352, + -0.01998201385140419, + 0.06035894528031349, + -0.00373489735648036, + 0.008189246989786625, + -0.01443910039961338, + 0.06791632622480392, + -0.046495404094457626, + 0.02064516209065914, + 0.018092669546604156, + 0.03002932481467724, + 0.06376226991415024, + 0.018155230209231377, + 0.00665650051087141, + 0.01226197462528944, + -0.0018893451197072864, + 0.05640508234500885, + 0.005083088763058186, + -0.012643597088754177, + 0.0026009774301201105, + 0.0006463343161158264, + 0.01587800495326519, + -0.016391007229685783, + 0.08383186906576157, + -0.04206607863306999, + 0.01088563073426485, + -0.03976383060216904, + -0.013913587667047977, + 0.022071553394198418, + -0.034283481538295746, + -0.02198396809399128, + 0.054603323340415955, + 0.0787268802523613, + -0.027952296659350395, + 0.07001838088035583, + -0.01854310929775238, + -0.04474369436502457, + -0.02702639251947403, + 0.013538220897316933, + -0.040914956480264664, + -0.08528328686952591, + 0.12452160567045212, + 0.04106510430574417, + -0.01910615898668766, + -0.11701427400112152, + 0.049723558127880096, + -0.03140566870570183, + -0.04194095730781555, + -0.01731691136956215, + -0.03798709809780121, + 0.017930010333657265, + -0.07962775975465775, + 0.025562463328242302, + -0.037912022322416306, + -0.02827761508524418, + 0.059958554804325104, + -0.030980253592133522, + 0.06911749392747879, + 0.06296148896217346, + 0.03128054738044739, + -0.04759648069739342, + -0.022997457534074783, + -0.03425845503807068, + -0.048747606575489044, + -0.0644129067659378, + -0.04584477096796036, + -0.0662146657705307, + -0.012530987150967121, + 0.0015577712329104543, + -0.07832649350166321, + 0.0340082123875618, + 0.024261193349957466, + 0.1135108470916748, + -0.038162268698215485, + 0.026200586929917336, + -0.0032312804833054543, + 0.062060605734586716, + 0.01960664801299572, + 0.018205279484391212, + 0.0028668621089309454, + 0.03946353867650032, + 0.03883792832493782, + -0.08713509142398834, + 0.027977321296930313, + -0.006512609776109457, + -0.004660801496356726, + 0.005058064591139555, + 0.02498690038919449, + 0.02840273641049862, + -0.03388308733701706, + -0.019556598737835884, + 0.04879765212535858, + -0.05530400946736336, + 0.014576734974980354, + 0.005383382085710764, + 0.05940801650285721, + -0.06831671297550201, + 0.05405278503894806, + -0.010209971107542515, + 0.0479217991232872, + -5.957966641290113e-05, + -0.0039257085882127285, + 0.08698494732379913, + -0.11200938373804092, + 0.06931769102811813, + -0.02640078216791153, + -0.006887976545840502, + 0.050749558955430984, + 0.02765200473368168, + 0.07327155768871307, + -0.029578885063529015, + 0.048397261649370193, + 0.009715737774968147, + 0.0176297165453434, + 0.007551124319434166, + 0.02064516209065914, + -0.01232453528791666, + 0.0223593357950449, + 0.05760625749826431, + 0.03848758712410927, + -0.01282502431422472, + -0.015227370895445347, + 0.021683676168322563, + -0.11881603300571442, + 0.027101466432213783, + 0.05540410429239273, + -0.04544438049197197, + -0.03943851590156555, + -0.04106510430574417, + -0.04481877014040947, + -0.02389833889901638, + -0.0052488758228719234, + 0.041515544056892395, + -0.023823264986276627, + 0.057956598699092865, + 0.06881720572710037, + 0.01042893435806036, + -0.013338025659322739, + 0.018455522134900093, + 0.019469013437628746, + -0.01672883704304695, + -0.02439882606267929, + 0.0035315738059580326, + -0.03881290182471275, + -0.0004046920803375542, + 0.022346822544932365, + 0.043517496436834335, + -0.023623069748282433, + 0.003831867128610611, + -0.04081485792994499, + 0.05580449476838112, + -0.032932158559560776, + -0.025825219228863716, + 0.025036949664354324, + 0.060709286481142044, + 0.05047428980469704, + -0.02762698009610176, + 0.05780645087361336, + -0.0170416422188282, + -0.09078866243362427, + 0.05082463473081589, + -0.0229849461466074, + 0.008902443572878838, + -0.0011002932442352176, + -0.04844731092453003, + 0.051750537008047104, + -0.01963167078793049, + -0.008233039639890194, + -0.024749169126152992, + -0.03183108568191528, + -0.008858650922775269, + -0.04647038131952286, + 0.04919804632663727, + 0.025299707427620888, + -0.03961368650197983, + 0.02690127119421959, + -0.03673587366938591, + 0.04224125295877457, + -0.046770673245191574, + 0.008101661689579487, + 0.0769251212477684, + 0.00017390029097441584, + -0.007876441814005375, + 0.04879765212535858, + -0.05960820987820625, + -0.042791787534952164, + -0.008433235809206963, + 0.04954838752746582, + -0.038162268698215485, + -0.033182404935359955, + 0.07357184588909149, + 0.00345337251201272, + -0.010998240672051907, + -0.037536658346652985, + 0.07006842643022537, + 0.00884613860398531, + -0.019844379276037216, + -0.007156989071518183, + 0.03363284468650818, + 0.026475856080651283, + 0.0054052784107625484, + -0.010372629389166832, + 0.002602541586384177, + 0.019218768924474716, + 0.031680937856435776, + 0.08092903345823288, + 0.007695014588534832, + 0.09469247609376907, + 0.03413333371281624, + 0.0440930612385273, + 0.013926099985837936, + -0.05500371381640434, + -0.03358279541134834, + -0.02183382213115692, + 0.014739394187927246, + 0.04184085875749588, + -0.003997654188424349, + 0.0548035204410553, + -0.0637122169137001, + -0.05965825915336609, + -0.02389833889901638, + 0.0453442819416523, + -0.0026666666381061077, + 0.0024336266797035933, + 0.0012105571804568172, + 0.08828621357679367, + -0.05195073410868645, + -0.006500097922980785, + 0.06015874817967415, + -0.02802737057209015 + ] + }, + { + "id": "a5baebec-6e88-4680-8e98-ad6650ef5c0d", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "matthew39", + "reviewDate": "2022-01-16T15:48:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b30d42bf-2d0f-4f31-bfef-5cf1f6ee9c46", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "craigsullivan", + "reviewDate": "2021-11-17T14:33:31", + "stars": 5, + "verifiedUser": true + }, + { + "id": "befbb170-604d-4e81-95f6-ed4d23eb1aa3", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "psanchez", + "reviewDate": "2021-03-23T16:10:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "254049ec-f9c3-4360-adf4-4adbb1765eed", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "deborah22", + "reviewDate": "2022-05-23T23:41:17", + "stars": 5, + "verifiedUser": false + }, + { + "id": "af402ae3-d3a5-47ae-a39e-b8807229cb06", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "ryanronald", + "reviewDate": "2022-02-04T06:25:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7c39dfae-de34-4d4e-a376-ab2cfcfddf60", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "christina66", + "reviewDate": "2021-07-21T17:40:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "478e4627-8338-49ab-84be-7f6849b4adf4", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "feliciasoto", + "reviewDate": "2022-08-01T20:51:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9b1f9dc5-898b-4080-9c7a-a140df27620a", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "ibates", + "reviewDate": "2021-03-26T19:14:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d393b0bc-b2cf-47fb-8adf-b26c942ef7d2", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "birdalexander", + "reviewDate": "2022-06-17T14:12:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "576fc685-e66b-4fbc-8ff2-15d577ccf49a", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "sheilahunt", + "reviewDate": "2022-08-30T07:21:22", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7e60c4c1-35cd-4a3a-81db-516d38191b18", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "rbrown", + "reviewDate": "2021-06-12T10:19:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b2049c45-97f4-4fa4-9a4a-e3661fa93338", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "markcasey", + "reviewDate": "2022-04-24T12:49:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c708acbd-1313-4ce3-ba85-bae87edb2252", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "harold85", + "reviewDate": "2021-02-05T05:55:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "97dbb6df-3b59-4635-a918-e1f6ade285ae", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "bakerlisa", + "reviewDate": "2022-04-25T19:28:00", + "stars": 5, + "verifiedUser": false + }, + { + "id": "90518b82-ca70-41b0-8875-a0a2af514c85", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "angelatorres", + "reviewDate": "2021-04-12T20:09:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "370909f8-6fae-443d-a654-6e4c7d3c0a4d", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanieroberts", + "reviewDate": "2021-02-24T18:28:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d989a552-25f3-4536-a0ff-a959f7db963c", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "scottbarr", + "reviewDate": "2022-03-09T06:10:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "63efb4ea-0515-46a6-90f2-8ed5a32fb953", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "hillheidi", + "reviewDate": "2022-08-21T06:45:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7fd96d02-186e-4d9b-9124-3cb6a59a81ea", + "productId": "cb171750-9f3f-43e0-b367-69e7712b02a4", + "category": "Electronics", + "docType": "customerRating", + "userName": "miaclark", + "reviewDate": "2022-06-29T01:54:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard 3000 (Silver)", + "description": "This Basic Keyboard 3000 (Silver) is based on the classic M60-A1 Cherry Keyboard. It comes with a 13 in. touch screen keyboard with built", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-10-27T21:11:49", + "price": 543.81, + "stock": 57, + "priceHistory": [ + { + "priceDate": "2021-01-21T22:28:28", + "newPrice": 493.45 + }, + { + "priceDate": "2021-08-18T22:28:28", + "newPrice": 528.44 + }, + { + "priceDate": "2022-03-15T22:28:28", + "newPrice": 558.79 + }, + { + "priceDate": "2022-10-10T22:28:28", + "newPrice": 549.97 + }, + { + "priceDate": "2022-11-25T22:28:28", + "newPrice": 543.81 + } + ], + "descriptionVector": [ + -0.011450717225670815, + -0.04624669626355171, + -0.007866820320487022, + 0.03279875963926315, + -0.014435448683798313, + -0.035506099462509155, + -0.025364670902490616, + 0.07070152461528778, + 0.0475337915122509, + 0.10128115117549896, + 0.05308162048459053, + -0.053924888372421265, + 0.07221052795648575, + -0.04171966761350632, + -0.004840480163693428, + 0.03683757781982422, + -0.05769741162657738, + -0.0010568612487986684, + -0.05423556640744209, + -0.0010797460563480854, + 0.043117720633745193, + -0.00759497657418251, + -0.030712775886058807, + 0.03945615515112877, + -0.03428557887673378, + -0.04149775579571724, + 0.007439637556672096, + -0.0013717005494982004, + -0.004690688569098711, + 0.018174685537815094, + -0.003952827304601669, + 0.05237149819731712, + -0.03290971741080284, + 0.008066542446613312, + 0.009103985503315926, + -0.06280141323804855, + -0.09897325187921524, + -0.00679054157808423, + 0.020682303234934807, + -0.07092343270778656, + 0.04529246687889099, + 0.03146728128194809, + 0.034729402512311935, + -0.005517315119504929, + 0.06617449223995209, + 0.06364468485116959, + 0.011289830319583416, + 0.00034084467915818095, + 0.002381405094638467, + 0.009142820723354816, + 0.09364733844995499, + 0.00667403731495142, + -0.033642031252384186, + 0.03244369849562645, + 0.07944490015506744, + 0.008610229007899761, + -0.0052260542288422585, + 0.18747220933437347, + 0.06115925684571266, + -0.06373345106840134, + -0.005104001611471176, + -0.08326180279254913, + -0.007866820320487022, + -0.030224567279219627, + -0.061603084206581116, + -0.011705917306244373, + 0.006751706823706627, + 0.011472908779978752, + 0.004857123363763094, + 0.02813858352601528, + -0.0795336663722992, + -0.04615793004631996, + -0.01406929176300764, + 0.06852677464485168, + 0.006524245720356703, + -0.011827969923615456, + 0.07616058737039566, + 0.002521487884223461, + 0.047400642186403275, + 0.015999935567378998, + -0.03011361137032509, + 0.03508446365594864, + -0.08272921293973923, + -0.07926736772060394, + 0.0477113202214241, + 0.02563096582889557, + -0.012981917709112167, + -0.08019940555095673, + -0.07269874215126038, + 0.09648782759904861, + -0.02465454861521721, + 0.030624011531472206, + -0.008637968450784683, + -0.03555048257112503, + 0.009531168267130852, + 0.00701245479285717, + -0.07656002789735794, + 0.05072934180498123, + -0.023212112486362457, + -0.07616058737039566, + 0.08552531898021698, + 0.019428493455052376, + -0.0726543590426445, + -0.020216286182403564, + -0.019450685009360313, + 0.03426338732242584, + 0.048465825617313385, + 0.041431181132793427, + -0.03419681265950203, + -0.0744740441441536, + -0.036881960928440094, + 0.017275936901569366, + -0.006973620038479567, + -0.012804387137293816, + -0.04127584025263786, + 0.02560877427458763, + -0.04274046793580055, + -0.007040193770080805, + 0.011472908779978752, + -0.008355028927326202, + 0.025076182559132576, + 0.07292065024375916, + -0.026274513453245163, + -0.008016611449420452, + -0.05472377687692642, + -0.02505399100482464, + -0.05135069787502289, + -0.014868179336190224, + 0.043006762862205505, + -0.029780741780996323, + -0.03561705723404884, + 0.04722311347723007, + -0.017875101417303085, + 0.05396927148103714, + -0.009736438281834126, + 0.07021331042051315, + -0.029359105974435806, + 0.10021596401929855, + -0.031223176047205925, + 0.06701776385307312, + -0.03109002858400345, + 0.004332853946834803, + 0.053525444120168686, + -0.007667098194360733, + -0.047089964151382446, + 0.005614402238279581, + -0.06067104637622833, + 0.10616324096918106, + 0.050906870514154434, + 0.06533122062683105, + -0.018574127927422523, + -0.02153666876256466, + -0.011705917306244373, + -0.0547681599855423, + -0.036194030195474625, + -0.016610197722911835, + -0.04358373582363129, + 0.02152557298541069, + 0.04238540679216385, + 0.04200815409421921, + -0.0448264516890049, + -0.009386925026774406, + -0.06923689693212509, + -0.0016421570908278227, + -0.002775300992652774, + 0.039789024740457535, + 0.0525934100151062, + 0.03614964708685875, + -0.014857083559036255, + 0.03899013623595238, + -0.10332275182008743, + 0.007101220078766346, + -0.001221909187734127, + -0.00667403731495142, + 0.006041585002094507, + -0.03539514169096947, + -0.03399708867073059, + -0.011528386734426022, + -0.016343900933861732, + -0.06905936449766159, + 0.02281266823410988, + -0.012604665011167526, + -0.10687336325645447, + -0.010108143091201782, + 0.1297747939825058, + 0.0014909787569195032, + 0.011927830055356026, + 0.0009889003122225404, + -0.02698463574051857, + -0.055567044764757156, + 0.06173622980713844, + 0.01724264957010746, + -0.03739236295223236, + 0.05010798200964928, + -0.021680912002921104, + 0.06386660039424896, + -0.003597766626626253, + -0.014124770648777485, + -0.021081747487187386, + 0.01557830162346363, + 0.02376689575612545, + 0.06382221728563309, + 0.059073273092508316, + 0.005886245518922806, + -0.008538107387721539, + -0.0054895756766200066, + -0.08051007986068726, + 0.011395239271223545, + 0.01451311819255352, + 0.006030489224940538, + -0.03273218497633934, + -0.001308593899011612, + 0.02073778212070465, + -0.04851020872592926, + 0.10074856132268906, + 0.0600053071975708, + -0.02114832028746605, + -0.010130333714187145, + 0.022679520770907402, + -0.0198834165930748, + 0.07513978332281113, + 0.0017558876425027847, + 0.012049882672727108, + -0.011661534197628498, + -0.019694790244102478, + -0.008504820056259632, + 0.10208003968000412, + -0.0043800100684165955, + 0.052549026906490326, + 0.03517322987318039, + -0.06626325845718384, + -0.007633811328560114, + -0.03397490084171295, + 0.04677928611636162, + 0.02211364358663559, + -0.025786304846405983, + -0.008615776896476746, + -0.054102420806884766, + -0.09648782759904861, + 0.11486223340034485, + -0.0300026535987854, + -0.01598883979022503, + -0.02718435786664486, + -0.0412980318069458, + 0.049531009048223495, + -0.027716949582099915, + 0.09515634924173355, + -0.052060820162296295, + -0.02407757379114628, + 0.02776133082807064, + -0.017031831666827202, + 0.02269061654806137, + -0.034329961985349655, + 0.0596502460539341, + 0.019017955288290977, + 0.0630677118897438, + -0.025875071063637733, + -0.021281467750668526, + -0.07527293264865875, + -0.015545014292001724, + 0.018629606813192368, + 0.027517227455973625, + -0.04287361726164818, + 0.004707332234829664, + 0.03741455078125, + 0.0275616105645895, + 0.029248150065541267, + -0.10199127346277237, + -0.04975292086601257, + -0.010274577885866165, + 0.027517227455973625, + -0.06067104637622833, + 0.08934222161769867, + -0.04009970277547836, + -0.015944458544254303, + -0.02112612873315811, + -0.05192767083644867, + 0.04682366922497749, + -0.06439919024705887, + -0.006324524059891701, + 0.012105360627174377, + 0.08193032443523407, + 0.03856850042939186, + -0.005545054096728563, + 0.004657401703298092, + -0.003952827304601669, + 0.05019674822688103, + 0.011772491037845612, + 0.016499239951372147, + 0.03166700154542923, + -0.029736358672380447, + 0.04507055506110191, + -0.021747486665844917, + 0.050818104296922684, + 0.021192703396081924, + 0.004934792872518301, + 0.0668846145272255, + 0.014790509827435017, + -0.013547795824706554, + 0.009725342504680157, + 0.006296785082668066, + -0.07740329951047897, + -0.12649047374725342, + -0.10136991739273071, + 0.02425510436296463, + 0.08166402578353882, + -0.020205190405249596, + -0.024721121415495872, + -0.021758582442998886, + -0.041364606469869614, + -0.009170560166239738, + -0.012493709102272987, + -0.0621800571680069, + -0.005081810522824526, + 0.08623544126749039, + -0.045936018228530884, + 0.08348371833562851, + 0.0654199868440628, + -0.006224662996828556, + 0.012249604798853397, + 0.009031863883137703, + -0.030734967440366745, + -0.008510367944836617, + 0.06581943482160568, + 0.07886792719364166, + -0.033863943070173264, + -0.04520370438694954, + 0.046424224972724915, + 0.007761411368846893, + -0.06284579634666443, + 0.01890699751675129, + -0.0025478401221334934, + -0.038235630840063095, + -0.02649642713367939, + 0.015345292165875435, + -0.0675947368144989, + -0.003561705583706498, + 0.046113546937704086, + 0.023145539686083794, + 0.05680976063013077, + 0.054990071803331375, + 0.05814123898744583, + -0.07234367728233337, + -0.04103173688054085, + -0.059383951127529144, + -0.014102579094469547, + -0.03049086406826973, + -0.008748925291001797, + -0.02971416711807251, + -0.013137256726622581, + 0.0009098438313230872, + -0.011067916639149189, + 0.09923955053091049, + -0.04473768547177315, + 0.047400642186403275, + 0.012183030135929585, + -0.006568628363311291, + 0.011045726016163826, + -0.01734250970184803, + 0.05609963834285736, + -0.05738673359155655, + -0.0037364622112363577, + 0.04431604966521263, + 0.04083201289176941, + -0.04171966761350632, + 0.027628183364868164, + -0.013059587217867374, + 0.030557436868548393, + 0.04424947500228882, + -0.004568636417388916, + 0.04396098852157593, + -0.04580286890268326, + -0.01869618147611618, + 0.07948928326368332, + 0.054413098841905594, + 0.06621887534856796, + -0.02465454861521721, + 0.0001687753392616287, + -0.05663222819566727, + -0.01919548586010933, + 0.03397490084171295, + 0.01949506811797619, + -0.04260731860995293, + -0.07309818267822266, + 0.0804213136434555, + -0.10136991739273071, + -0.07824656367301941, + 0.000442092539742589, + -0.00905405543744564, + 0.02103736437857151, + 0.0067461589351296425, + 0.04948662593960762, + -0.022923626005649567, + 0.032110828906297684, + -0.025409052148461342, + 0.018862616270780563, + 0.01928425021469593, + 0.020116424188017845, + -0.005586662795394659, + 0.03226616978645325, + -0.0052260542288422585, + 0.013869570568203926, + -0.007001359015703201, + -0.036571282893419266, + -0.041142694652080536, + -0.07824656367301941, + -0.0477113202214241, + 0.03808029368519783, + -0.04367250204086304, + -0.04833268001675606, + 0.04140898957848549, + -0.035506099462509155, + 0.036571282893419266, + 0.012582474388182163, + 0.008787759579718113, + -0.04198596253991127, + 0.04163090139627457, + 0.05756426602602005, + 0.03739236295223236, + -0.049042798578739166, + 0.05689852312207222, + -0.0249430350959301, + -0.04132022336125374, + 0.030335523188114166, + 0.012649048119783401, + -0.006551985163241625, + -0.00925377756357193, + -0.00915946438908577, + 0.03756989166140556, + -0.042030345648527145, + 0.029203766956925392, + -0.05525636672973633, + -0.02474331296980381, + 0.0003606088284868747, + -0.029936080798506737, + -0.06621887534856796, + -0.008011063560843468, + 0.07052399218082428, + -0.02884870581328869, + 0.05707605555653572, + -0.010807168669998646, + -0.027605991810560226, + -0.03761427477002144, + 0.022080356255173683, + -0.07851286232471466, + -0.002833553124219179, + -0.0059861065819859505, + 0.01383628323674202, + 0.069414421916008, + -0.029092811048030853, + -0.012748909182846546, + 0.023167729377746582, + -0.036660049110651016, + -0.006324524059891701, + 0.07593867182731628, + -0.016998544335365295, + -0.005886245518922806, + 0.06630764156579971, + 0.04793323576450348, + 0.048865269869565964, + -0.009581099264323711, + 0.013214926235377789, + 0.024499209597706795, + 0.012149743735790253, + -0.023300878703594208, + -0.025009609758853912, + 0.01586678810417652, + -0.034929126501083374, + 0.0019778006244450808, + 0.010246838442981243, + 0.02287924289703369, + -0.06484301388263702, + 0.050019219517707825, + 0.014735030941665173, + 0.040676675736904144, + -0.08392754197120667, + 0.031334131956100464, + 0.050818104296922684, + -0.012859865091741085, + 0.051794521510601044, + -0.029647592455148697, + -0.032954100519418716, + -0.06985825300216675, + -0.005220506340265274, + -0.00891536008566618, + 0.012970821931958199, + 0.008044350892305374, + -0.02882651425898075, + 0.03788056969642639, + 0.03049086406826973, + 0.022235695272684097, + 0.01028012577444315, + -0.018241258338093758, + -0.02689587138593197, + -0.03508446365594864, + -0.017653189599514008, + -0.005101228132843971, + 0.050507426261901855, + -0.01986122503876686, + 0.05698728933930397, + -0.011029082350432873, + -0.03313162922859192, + 0.0205602515488863, + 0.017464563250541687, + 0.0064576719887554646, + 0.014845987781882286, + -0.0021816834341734648, + -0.035816777497529984, + 0.04023284837603569, + 0.06311209499835968, + 0.07101219892501831, + -0.07851286232471466 + ] + }, + { + "id": "814d560c-34a9-4f49-b3df-d456ca259169", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qrowe", + "reviewDate": "2022-10-12T13:54:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "09e4a275-f80e-4ab0-9aa3-0528f86d1523", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "acostaandrea", + "reviewDate": "2022-01-10T00:45:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2328e2f9-71fc-4c59-a3ef-38c9b8e6d284", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andersondustin", + "reviewDate": "2022-07-31T11:08:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "04477361-936f-4daf-8280-68bfbcf2e739", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gutierrezmichael", + "reviewDate": "2021-07-25T12:05:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8121696a-4376-4c4c-9711-fe2db6637401", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "amber15", + "reviewDate": "2022-06-12T17:40:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3a153ef4-44b7-45b4-ad97-4241c449e79a", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thull", + "reviewDate": "2021-12-10T16:15:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a1c6250-ea19-4ffc-aeab-d93f381743a3", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tturner", + "reviewDate": "2021-02-06T18:33:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5d328331-215e-4a3f-b145-4c4e2c7db5b3", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "samanthaward", + "reviewDate": "2022-01-19T04:45:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "692e515c-efa0-4d23-9757-6272e8ac19e8", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karen65", + "reviewDate": "2021-12-26T02:29:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "135aa361-699e-4082-b400-4f6f2b1c09e0", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaronmccall", + "reviewDate": "2022-06-22T03:26:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "104910d0-6ac9-4f5d-932a-6a96416f25cc", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertbranch", + "reviewDate": "2021-01-21T22:28:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ad798255-15f0-4c33-bc97-994512fd5b88", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vharris", + "reviewDate": "2022-08-07T16:53:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1c7aae93-f84b-4015-92e5-230c32e43de9", + "productId": "d51ce027-2118-4547-a4de-82c2bd607fcc", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charris", + "reviewDate": "2021-08-13T13:23:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer Micro (Silver)", + "description": "This Basic Computer Micro (Silver) is a very attractive product from Samsung. But when it came to building your own computer, Samsung decided to invest in its next-gen computer with higher-quality", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-12-30T18:40:07", + "price": 449.73, + "stock": 65, + "priceHistory": [ + { + "priceDate": "2021-01-18T22:25:19", + "newPrice": 450.72 + }, + { + "priceDate": "2024-10-17T22:25:19", + "newPrice": 449.73 + } + ], + "descriptionVector": [ + -0.021580182015895844, + 0.01856398396193981, + -0.02324387989938259, + -0.02242998406291008, + 0.028629949316382408, + 0.024991359561681747, + 0.007648217957466841, + 0.010000134818255901, + 0.06247840076684952, + 0.043375808745622635, + 0.055201221257448196, + -0.10178473591804504, + 0.07339416444301605, + -0.0495518334209919, + -0.01953347586095333, + 0.03150251880288124, + -0.0033962156157940626, + -0.035380490124225616, + -0.007265208754688501, + 0.03013804741203785, + -0.013800305314362049, + -0.08900179713964462, + -0.038276996463537216, + 0.06965982168912888, + -0.041580453515052795, + -0.024117620661854744, + 0.017917655408382416, + 0.020670535042881966, + 0.030497118830680847, + 0.026954282075166702, + 0.005682302638888359, + 0.008665586821734905, + 0.01761843077838421, + -0.01761843077838421, + 0.014231191016733646, + 0.015428095124661922, + -0.05079661309719086, + -0.050317853689193726, + 0.11796687543392181, + -0.007474666927009821, + -0.01045495830476284, + -0.021699873730540276, + 0.012316144071519375, + -0.04474027827382088, + 0.04246615990996361, + 0.011412481777369976, + 0.005742148030549288, + 0.007480651140213013, + -0.00045594570110552013, + -0.047158025205135345, + 0.019856641069054604, + 0.006702663376927376, + 0.06295716017484665, + -0.008043196052312851, + -0.00780980009585619, + -0.02599675953388214, + -0.0379658006131649, + 0.05074873939156532, + -0.004760686308145523, + 0.0073549761436879635, + 0.031215261667966843, + 0.03466234728693962, + 0.021221112459897995, + -0.0019614268094301224, + 0.0033962156157940626, + 0.02896508201956749, + -0.057547155767679214, + 0.025470120832324028, + -3.223693056497723e-05, + 0.06051547825336456, + -0.06439344584941864, + -0.09599171578884125, + 0.034016016870737076, + 0.026930345222353935, + 0.022094851359725, + 0.04272948205471039, + 0.06582973152399063, + 0.03363300859928131, + 0.06046760082244873, + -0.04148469865322113, + 0.04256191477179527, + -0.01822885125875473, + -0.006343592423945665, + -0.028534196317195892, + 0.08076709508895874, + 0.070425845682621, + 0.06094636395573616, + -0.09177861362695694, + -0.031670086085796356, + 0.003940807189792395, + 0.008970797061920166, + -0.0065949419513344765, + 0.14247947931289673, + 0.0008258639136329293, + 0.05965370684862137, + 0.05070086196064949, + -0.06089848652482033, + 0.03837274760007858, + 0.07813390344381332, + 0.0061879949644207954, + 0.04615262523293495, + -0.02551799826323986, + 0.004646980669349432, + -0.03887544944882393, + -0.037391286343336105, + 0.056924764066934586, + 0.021005669608712196, + 0.09125197678804398, + -0.028031496331095695, + -0.06348379701375961, + -0.044261518865823746, + -0.014099531807005405, + -0.07162274420261383, + -0.01864776760339737, + -0.0011819428764283657, + -0.0031658115331083536, + -0.06252627819776535, + 0.008803230710327625, + -0.019796796143054962, + -0.010502834804356098, + 0.031885527074337006, + 0.018540045246481895, + -0.01018565520644188, + -0.035260796546936035, + -0.002154427580535412, + -0.009162302128970623, + -0.09599171578884125, + -0.00828856136649847, + 0.08890604227781296, + -0.01879139617085457, + -0.09115622192621231, + 0.06798415631055832, + 0.014913426712155342, + 0.019006839022040367, + -0.008659602142870426, + -0.005442922003567219, + 0.09153923392295837, + 0.030640747398138046, + -0.08067134022712708, + 0.003605674020946026, + -0.005101804155856371, + 0.04696652293205261, + -0.03198128193616867, + -0.071862131357193, + -0.08952843397855759, + 0.011723676696419716, + -0.05371706187725067, + -0.009856506250798702, + -0.023962022736668587, + 0.009323883801698685, + -0.03310637176036835, + -0.0357874371111393, + -0.03590712696313858, + -0.013058224692940712, + -0.005724194459617138, + 0.06353167444467545, + -0.013465172611176968, + -0.01272309198975563, + 0.025422245264053345, + 0.07076098024845123, + -0.003925845958292484, + -0.02104157581925392, + -0.03906695172190666, + -0.0755007192492485, + -0.021616090089082718, + 0.0019509538542479277, + 0.006379499565809965, + 0.03667314350605011, + -0.1352023035287857, + 0.01775008998811245, + -0.017319204285740852, + 0.0057271867990493774, + -0.024464722722768784, + 0.010065964423120022, + 0.048737939447164536, + 0.015595661476254463, + 0.01740298792719841, + 0.006128149572759867, + 0.008234701119363308, + -0.09388516843318939, + -0.036218322813510895, + 0.04047929868102074, + -0.050605110824108124, + 0.058169543743133545, + 0.06769689917564392, + 0.05773865804076195, + 0.047158025205135345, + 0.024656226858496666, + 0.016840443015098572, + 0.035955000668764114, + 0.0005419731605798006, + -0.036625269800424576, + 0.08047983795404434, + 0.04514722526073456, + 0.08373542129993439, + -0.0002880050742533058, + -0.013477141037583351, + 0.029970481991767883, + -0.03475809842348099, + -0.018180975690484047, + 0.04493178427219391, + 0.04751709848642349, + 0.044333331286907196, + -0.0019270157208666205, + 0.02441684529185295, + -0.001401126035489142, + -0.027696363627910614, + 0.02599675953388214, + -0.008492035791277885, + 0.0021903347223997116, + -0.03102375753223896, + 0.009317899122834206, + -0.011430434882640839, + -0.06199963763356209, + 0.1346277892589569, + 0.01567944511771202, + 0.049360331147909164, + -0.001495382166467607, + -0.07497408241033554, + -0.05869618058204651, + 0.04945608228445053, + -0.06932469457387924, + 0.040215980261564255, + 0.015069023706018925, + 0.03399207815527916, + -0.10580632835626602, + 0.08459719270467758, + 0.037319473922252655, + -0.047995857894420624, + 0.05429157614707947, + -0.09307127445936203, + -0.027433045208454132, + 0.0013218311360105872, + 0.02160412073135376, + -0.004512328654527664, + 0.021556245163083076, + 0.0020885977428406477, + -0.014291035942733288, + -0.11241324245929718, + 0.06822354346513748, + 0.006804400589317083, + -0.01114916242659092, + -0.0496954619884491, + -0.05572785809636116, + 0.05869618058204651, + -0.055201221257448196, + 0.08545896410942078, + -0.057403527200222015, + -0.07626673579216003, + 0.07205363363027573, + -0.06913318485021591, + 0.008833153173327446, + -0.05429157614707947, + 0.028366629034280777, + -0.011807460337877274, + 0.04533873125910759, + 0.032986678183078766, + -0.02406974323093891, + -0.0027379184029996395, + -0.009054580703377724, + -0.003767255926504731, + -0.03928239643573761, + 0.0034799990244209766, + 0.021651996299624443, + -0.04524298012256622, + 0.01314200833439827, + 0.014781766571104527, + -0.06161662936210632, + -0.019246218726038933, + 0.04299280047416687, + 0.011645877733826637, + -0.07444743812084198, + 0.04813948646187782, + 0.00025583826936781406, + -0.03490172699093819, + -0.026307955384254456, + -0.06726601719856262, + 0.08459719270467758, + -0.016194114461541176, + 0.022860869765281677, + 0.06721813976764679, + 0.0872303768992424, + 0.004126327112317085, + 0.011119239963591099, + 0.020407216623425484, + -0.03406389430165291, + 0.0055656046606600285, + 0.007690109312534332, + 0.004868407733738422, + -0.007253239396959543, + -0.031406767666339874, + 0.018216881901025772, + 0.032436102628707886, + 0.0324600413441658, + 0.038348812609910965, + 0.0014684518100693822, + 0.02922840043902397, + 0.014997209422290325, + -0.003836077870801091, + 0.014925395138561726, + 0.03892332315444946, + -0.018049314618110657, + -0.0024386923760175705, + -0.011328698135912418, + 0.022406047210097313, + 0.06841504573822021, + -0.002289079362526536, + 0.0029009964782744646, + -0.035811372101306915, + -0.016050485894083977, + 0.04768466204404831, + -0.017008008435368538, + -0.030018357560038567, + 0.03451871871948242, + 0.0649200826883316, + -0.03382451459765434, + 0.003976714331656694, + -0.004323816392570734, + 0.0019330002833157778, + 0.01906668394804001, + 0.0037403255701065063, + -0.010036041960120201, + -0.08718249946832657, + 0.12294600158929825, + 0.04205921292304993, + 0.04308855161070824, + -0.019976330921053886, + 0.00548481335863471, + -0.06640424579381943, + 0.030999818816781044, + 0.032723359763622284, + 0.006708648055791855, + -0.01520068384706974, + 0.006684709805995226, + 0.06961195170879364, + -0.06530309468507767, + 0.041005939245224, + 0.09900791943073273, + 0.021496400237083435, + 0.01740298792719841, + 0.05352555587887764, + 0.06434556841850281, + -0.0654945969581604, + -0.017917655408382416, + -0.027050035074353218, + 0.019174406304955482, + -0.0356438085436821, + -0.046200502663850784, + -0.018109161406755447, + -0.051227498799562454, + 0.0017025962006300688, + -0.044620588421821594, + 0.043447621166706085, + -0.041580453515052795, + 0.11423254013061523, + -0.0007480651256628335, + 0.0702822133898735, + -0.013153977692127228, + 0.021616090089082718, + 0.02456047385931015, + -0.006642818450927734, + -0.04208315163850784, + 0.12936140596866608, + 0.0021245048847049475, + -0.06836716830730438, + 0.0273851677775383, + 0.0271697249263525, + 0.03755885362625122, + 0.03655345365405083, + 0.05232865363359451, + 0.055488478392362595, + 0.027816053479909897, + -0.02558981254696846, + 0.0054967827163636684, + 0.03255579620599747, + -0.046272315084934235, + 0.019162436947226524, + -0.003453068668022752, + -0.050174225121736526, + 0.03329787403345108, + 0.004144280683249235, + 0.028606010600924492, + 0.021508367732167244, + -0.03672102093696594, + 0.007935474626719952, + -0.13730885088443756, + -0.02248983085155487, + 0.02318403497338295, + -0.04866612330079079, + 0.08033621311187744, + 0.02793574333190918, + 0.024608351290225983, + -0.01268718484789133, + 0.005185587331652641, + -0.00536512304097414, + -0.050940241664648056, + 0.0973801240324974, + 0.036840710788965225, + 0.05735564976930618, + 0.023267818614840508, + 0.010269437916576862, + 0.034159645438194275, + 0.026092512533068657, + -0.05151475593447685, + -0.01995239220559597, + -0.05199351906776428, + 0.019353941082954407, + 0.1036040261387825, + -0.06851079314947128, + -0.07698487490415573, + -0.017295265570282936, + -0.06348379701375961, + 0.04845068231225014, + 0.0028770584613084793, + 0.06094636395573616, + -0.06080273538827896, + 0.03758279234170914, + -0.033202122896909714, + 0.0412931963801384, + 0.014255128800868988, + 0.017019977793097496, + -0.04153257608413696, + 0.03624225780367851, + 0.03447084128856659, + 0.011651862412691116, + -0.03696040064096451, + -0.0604197233915329, + 0.021304894238710403, + -0.05496184155344963, + -0.06851079314947128, + -0.023854300379753113, + -0.018611859530210495, + -0.021029606461524963, + -0.06927681714296341, + 0.008779291994869709, + 0.007642233278602362, + 0.021640028804540634, + 0.07387293130159378, + -0.02269330434501171, + 0.06415406614542007, + 0.031957343220710754, + -0.060228221118450165, + -0.006977951619774103, + -0.016828473657369614, + -0.10427429527044296, + -0.02456047385931015, + -0.07473469525575638, + 0.03719978407025337, + -0.012495679780840874, + -0.012166530825197697, + -0.0021918308921158314, + 0.013776367530226707, + -0.06295716017484665, + -0.05079661309719086, + 0.03054499626159668, + -0.004171211272478104, + -0.051227498799562454, + 0.05615874379873276, + -0.03705615550279617, + 0.027145788073539734, + -0.01988057978451252, + -0.013560924679040909, + 0.011316729709506035, + -0.004928253125399351, + 0.02077825739979744, + -0.01530840527266264, + -0.08368754386901855, + -0.06654787063598633, + 7.41519543225877e-05, + 0.04409395158290863, + -0.027073973789811134, + -0.011849351227283478, + -0.004225071985274553, + 0.015799134969711304, + -0.005601511802524328, + -0.05946220085024834, + 0.04112562909722328, + 0.006576988846063614, + -0.0330345556139946, + 0.08445356041193008, + 0.0007712551741860807, + 0.01516477670520544, + -0.045099351555109024, + 0.0013943933881819248, + 0.03775035962462425, + 0.015344311483204365, + -0.029252339154481888, + -0.005239448044449091, + 0.06702663749456406, + 0.015559754334390163, + -0.026930345222353935, + 0.0433279313147068, + -0.004832500591874123, + -0.012854751199483871, + -0.037534914910793304, + 0.005990505684167147, + 0.012375989928841591, + 0.03444690257310867, + -0.0016128284623846412, + 0.07688912749290466, + -0.021029606461524963, + 0.0012866720790043473, + -0.053621307015419006, + 0.012651277706027031, + -0.03159826993942261, + 0.04519510269165039, + -0.034853849560022354, + 0.018970930948853493, + -0.007935474626719952, + 0.02118520438671112, + 0.042274657636880875, + -0.07698487490415573 + ] + }, + { + "id": "583d6070-e4dd-46bf-a405-3bc6a8760990", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "yallen", + "reviewDate": "2022-06-08T04:24:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ca451b56-905b-4f39-9ea5-e47204687cb0", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "kara32", + "reviewDate": "2021-09-09T02:56:49", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c8cba8f6-6d04-4cdf-9ba4-d99b5de97aaa", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "harperroberta", + "reviewDate": "2022-01-02T18:26:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "482674a3-0bd6-4426-87e9-061ed472e6ec", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "tayloralan", + "reviewDate": "2022-04-04T09:06:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "406b4f6a-7aa6-42d7-8600-0d0569b46984", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "candacebaxter", + "reviewDate": "2021-02-20T02:01:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ccffd9e8-69c8-49f0-ac97-8ab388927dcf", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "wilsontami", + "reviewDate": "2021-03-12T22:44:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "65122d00-a330-4a35-adac-117f4b315058", + "productId": "468fc7c7-bb55-4f96-b636-c75f395671ca", + "category": "Electronics", + "docType": "customerRating", + "userName": "phillipsjoseph", + "reviewDate": "2021-01-18T22:25:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5c462721-0167-4e47-8a06-ad4db51699a4", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand + (Steel)", + "description": "This Basic Stand + (Steel) is used for one of 3 basic weapons:\n\nDirk, Blade\n\n\nSturgeon\n\nThis Basic Stand + (Steel) is used for a single spear and one sword.\n\nSword\n\nYou can choose from 3 different sword types - the Steel-type, the Blade-type, or Dragon-type.\n\n", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-06-01T23:16:04", + "price": 131.16, + "stock": 6, + "priceHistory": [ + { + "priceDate": "2021-01-29T19:28:18", + "newPrice": 141.96 + }, + { + "priceDate": "2022-12-13T19:28:18", + "newPrice": 118.71 + }, + { + "priceDate": "2023-06-23T19:28:18", + "newPrice": 131.16 + } + ], + "descriptionVector": [ + 0.053359270095825195, + -0.047501787543296814, + -0.061356477439403534, + 0.02630518563091755, + 0.0311864223331213, + -0.07248301804065704, + 0.0028016960714012384, + -0.013520357199013233, + 0.038354482501745224, + -0.005058431997895241, + 0.047047097235918045, + 0.04875887185335159, + 0.043570052832365036, + 0.02265428751707077, + 0.05980517715215683, + 0.015579837374389172, + -0.005035029258579016, + 0.022413568571209908, + -0.005493063014000654, + -0.11757762730121613, + 0.04132334515452385, + 0.001354877487756312, + -0.07676246017217636, + -0.0237241480499506, + -0.016756683588027954, + -0.038434725254774094, + 0.015325745567679405, + -0.04434569925069809, + -0.07563910633325577, + 0.05440238490700722, + 0.004720757715404034, + 0.03287145122885704, + -0.020648298785090446, + 0.03757883608341217, + -0.016114767640829086, + -0.059484221041202545, + -0.019417960196733475, + 0.07585307955741882, + -0.007809978444129229, + 0.005001595709472895, + -0.0008642463362775743, + -0.03474370762705803, + 0.0006226919940672815, + -0.012009179219603539, + -0.02159780077636242, + 0.028271052986383438, + -0.04648542031645775, + 0.02479400672018528, + 0.02240019477903843, + -0.0493740439414978, + 0.03011656180024147, + -0.009989818558096886, + -0.017719557508826256, + 0.016114767640829086, + 0.04720757529139519, + -0.03225628286600113, + 0.049534521996974945, + 0.15523670613765717, + 0.023670654743909836, + -0.0026846800465136766, + -0.03953133150935173, + -0.049534521996974945, + -0.024499796330928802, + 0.0351983979344368, + -0.014643710106611252, + -0.057451486587524414, + 0.05135328322649002, + 0.04169779643416405, + -0.03634849563241005, + -2.2332284061121754e-05, + -0.009943012148141861, + 0.06547543406486511, + -0.04346306622028351, + 0.0596981942653656, + -0.0022333329543471336, + -0.022440316155552864, + 0.04407823458313942, + 0.012263271026313305, + 0.07542513310909271, + 0.027548898011446, + -0.023322949185967445, + 0.04699360579252243, + -0.02451317012310028, + -0.04290138930082321, + 0.014563470147550106, + -0.0826466903090477, + -0.02655927650630474, + -0.07943711429834366, + -0.02068842016160488, + 0.027762869372963905, + 0.050256676971912384, + -0.007422154303640127, + 0.04506785795092583, + -0.07858122140169144, + -0.05322553962469101, + 0.0189365241676569, + -0.023777641355991364, + 0.013306384906172752, + -0.0006063933833502233, + 0.04774250462651253, + 0.05905627831816673, + 0.06103551760315895, + -0.050069451332092285, + 0.002688023494556546, + 0.04635168984532356, + -5.0201932026539e-05, + 0.002310229232534766, + 0.1358722299337387, + -0.04060119017958641, + -0.08746106177568436, + -0.013520357199013233, + -0.021878639236092567, + 0.01309909950941801, + 0.051834721118211746, + 0.014643710106611252, + 0.027950095012784004, + -0.013934927992522717, + -0.10067383199930191, + 0.032924942672252655, + -0.07478322088718414, + -0.0453353226184845, + 0.07772533595561981, + 0.07596006989479065, + -0.07965108007192612, + -0.06900597363710403, + -0.004065468441694975, + -0.007970457896590233, + -0.008599000051617622, + 0.002240019617602229, + 0.011895506642758846, + -0.017973650246858597, + -0.005108581855893135, + 0.0376858226954937, + 0.0369369201362133, + -0.018709179013967514, + 0.0520486943423748, + -0.045549292117357254, + -0.02789660170674324, + -0.08938681334257126, + 0.07216206192970276, + -0.06643830984830856, + -0.08409100025892258, + 0.012958680279552937, + 0.06617084890604019, + -0.04902634024620056, + -0.04359680041670799, + 0.0010598301887512207, + -0.0031009225640445948, + 0.04825069010257721, + -0.053439512848854065, + -0.0009837697725743055, + -0.07184110581874847, + 0.0050417156890034676, + -0.012784828431904316, + 0.053894203156232834, + -0.010725347325205803, + -0.07740437984466553, + -0.05097883194684982, + -0.02462015487253666, + 0.061784420162439346, + 0.004633831325918436, + -0.003935079090297222, + -0.09425467252731323, + 0.03616126999258995, + 0.023135723546147346, + 0.04324909299612045, + 0.014643710106611252, + 0.10259958356618881, + -0.021838519722223282, + -0.0023704087361693382, + -0.007495707366615534, + 0.043061867356300354, + 0.004633831325918436, + -0.02522195130586624, + 0.028565265238285065, + -0.04359680041670799, + 0.040280234068632126, + 0.0131993992254138, + 0.0378730483353138, + 0.006452593486756086, + -0.019952891394495964, + 0.042339712381362915, + -0.0212367232888937, + 0.013145905919373035, + 0.03527863696217537, + 0.023590415716171265, + 0.00358737469650805, + 0.07440876960754395, + -0.008859778754413128, + -0.038354482501745224, + 0.005436226725578308, + -0.1174706369638443, + 0.020313968881964684, + -0.016836922615766525, + -0.021825145930051804, + 0.025435922667384148, + 5.7515426306053996e-05, + -0.019150495529174805, + 0.027682630345225334, + 0.08655168116092682, + -0.025716761127114296, + 0.04664589837193489, + 0.08136285841464996, + -0.0029437867924571037, + 0.03910338506102562, + -0.03137364611029625, + 0.0003840630524791777, + 0.02603771910071373, + 0.018187621608376503, + -0.018976643681526184, + 0.009655487723648548, + -0.053359270095825195, + -0.017091015353798866, + 0.028190813958644867, + -0.0010815616697072983, + 0.03955807536840439, + 0.00897345133125782, + 0.011868759989738464, + -0.04014649987220764, + -0.009394709020853043, + -0.01928422786295414, + -0.026973847299814224, + -0.03597404435276985, + -0.014055286534130573, + -0.07933012396097183, + -0.052476637065410614, + -0.058253880590200424, + 0.056274641305208206, + 0.026010973379015923, + 0.047127336263656616, + -0.013045606203377247, + 0.03535887598991394, + 0.01013023778796196, + 0.03428901731967926, + -0.048651888966560364, + -0.023336322978138924, + 0.0021062870509922504, + -0.013674149289727211, + -0.013687522150576115, + -0.022186223417520523, + 0.009087123908102512, + -0.06408461928367615, + 0.019177241250872612, + -0.04653891548514366, + -0.012651095166802406, + 0.04220598191022873, + 0.0899217426776886, + -0.08039998263120651, + 0.0024723797105252743, + -0.08671215921640396, + 0.05234290659427643, + 0.07023631781339645, + 0.01777305081486702, + 0.06076805293560028, + 0.06269380450248718, + 0.0296618714928627, + -0.0047408174723386765, + 0.031400393694639206, + 0.058521345257759094, + -0.040467455983161926, + 0.025797002017498016, + -0.06183791160583496, + -0.06905946880578995, + 0.07836724817752838, + -0.05493731424212456, + -0.054429132491350174, + -0.00963542703539133, + -0.09093810617923737, + -0.059216756373643875, + 0.024232331663370132, + 0.0035238517448306084, + -0.01882953755557537, + -0.01830798014998436, + -0.0020728539675474167, + 0.02470039390027523, + -0.0023403188679367304, + 0.04921356588602066, + 0.08639120310544968, + -0.009581934660673141, + -0.026973847299814224, + 0.01876267045736313, + 0.06670577824115753, + 0.009200796484947205, + 0.03351336717605591, + -0.014563470147550106, + -0.03477045148611069, + -0.03995927423238754, + -0.003988571930676699, + 0.0833955928683281, + -0.05132653936743736, + 0.007676246110349894, + 0.04041396453976631, + 0.02896646223962307, + -0.018080634996294975, + 0.05927024781703949, + -0.012918560765683651, + -0.008257982321083546, + -0.01900338940322399, + 0.03297843784093857, + 0.021102990955114365, + -0.024860873818397522, + -0.023496802896261215, + -0.013934927992522717, + -0.03883592039346695, + 0.053011566400527954, + 0.0428478978574276, + 0.062319349497556686, + -0.0024723797105252743, + -0.07863471657037735, + -0.0015237147454172373, + -0.013600596226751804, + 0.01234351098537445, + -0.03725787624716759, + 0.003985228948295116, + -0.061891406774520874, + 0.0021012721117585897, + 0.037792809307575226, + 0.05964469909667969, + -0.031239913776516914, + 0.07392733544111252, + -0.023028738796710968, + -0.0346367210149765, + -0.055739711970090866, + 0.007943711243569851, + 0.08489339798688889, + -0.054241906851530075, + 0.026880234479904175, + 0.005904290359467268, + 0.0017184627940878272, + -0.050336915999650955, + 0.029073446989059448, + 0.0344494953751564, + -0.04415847361087799, + 0.01936446689069271, + -0.05100557953119278, + -0.06301476061344147, + -0.0070543899200856686, + -0.026158079504966736, + -0.043489813804626465, + -0.03921037167310715, + -0.01564670354127884, + 0.1128702387213707, + -0.06970138102769852, + -0.017398599535226822, + 0.008946704678237438, + -0.012824947945773602, + 0.024018358439207077, + -0.018628938123583794, + -0.03057125210762024, + 0.06114250421524048, + 0.0015571479452773929, + 0.027134327217936516, + 0.01947145350277424, + -0.06601037085056305, + 0.12100117653608322, + -0.025542909279465675, + 0.0026395453605800867, + -0.04878561943769455, + -0.00973572675138712, + -0.02896646223962307, + -0.0020193608943372965, + -0.01830798014998436, + -0.00897345133125782, + 0.013707581907510757, + 0.0394243448972702, + -0.019484827294945717, + -0.03485069051384926, + 0.030143307521939278, + -0.025997599586844444, + 0.017211373895406723, + -0.04070817679166794, + -0.08756804466247559, + 0.13940276205539703, + 0.0072416155599057674, + -0.018695805221796036, + -0.030785223469138145, + 0.09291734546422958, + 0.027522150427103043, + -0.0175991989672184, + 0.0005708706448785961, + 0.00024447974283248186, + 0.04196526110172272, + -0.014697203412652016, + -0.045896999537944794, + 0.052021946758031845, + -0.016328739002346992, + -0.0018354787025600672, + 0.0730714425444603, + -0.03741835802793503, + -0.009408081881701946, + 0.006629789248108864, + 0.011668161489069462, + 0.013774449005723, + 0.12923909723758698, + 0.013018859550356865, + -0.07103870809078217, + 0.0002925398584920913, + -0.016823550686240196, + 0.0028869505040347576, + 0.05937723442912102, + -0.013326444663107395, + 0.05135328322649002, + -0.015660077333450317, + 0.01955169253051281, + 0.06076805293560028, + -0.0023988268803805113, + 0.0031076092272996902, + -0.03688342496752739, + 0.029795603826642036, + -0.04504111036658287, + -0.013607283122837543, + -0.06488701701164246, + 0.013206085190176964, + -0.032657478004693985, + 0.019123749807476997, + 0.051219552755355835, + 5.022804907639511e-05, + 0.06526146829128265, + -4.458620969671756e-05, + -0.06638482213020325, + 0.02720119245350361, + -0.08393052220344543, + -0.05164749547839165, + 0.0008237086585722864, + -0.03899639844894409, + 0.07772533595561981, + -0.05697004869580269, + 0.011842014268040657, + 0.030410772189497948, + -0.0604470930993557, + -0.07312493771314621, + -0.10730696469545364, + 0.018094008788466454, + 0.06617084890604019, + 0.03364710137248039, + -0.056809570640325546, + 0.07472972571849823, + 0.02575688250362873, + -0.01564670354127884, + -0.019524946808815002, + -0.028297798708081245, + 0.020996004343032837, + 0.045549292117357254, + -0.049748495221138, + 0.003226296743378043, + -0.010163670405745506, + -0.03811376541852951, + -0.08820996433496475, + 0.025823747739195824, + 0.08050697296857834, + -0.008859778754413128, + -0.012965367175638676, + -0.0707712471485138, + 0.024593409150838852, + 0.04897284507751465, + -0.0187492985278368, + 0.018013769760727882, + 0.03597404435276985, + 0.038595203310251236, + 0.023068858310580254, + -0.05392094701528549, + 0.04086865484714508, + 0.045094601809978485, + -0.026318557560443878, + 0.04185827448964119, + -0.005426196847110987, + -0.041724544018507004, + -0.005255687516182661, + -0.033112168312072754, + 0.027161072939634323, + -0.05996565893292427, + -0.08521435409784317, + 0.029875842854380608, + 0.04806346446275711, + -0.034797199070453644, + -0.038327738642692566, + -0.027762869372963905, + -0.06092853099107742, + -0.030250294134020805, + 0.03773931413888931, + -0.01385468803346157, + -0.05905627831816673, + 0.04263392463326454, + 0.012510675936937332, + -0.03351336717605591, + -0.059484221041202545, + 0.04950777441263199, + -0.004978192504495382, + -0.07585307955741882, + 0.04041396453976631, + 0.014135526493191719, + 0.011755087412893772, + -0.008505387231707573, + 0.06879200041294098, + -0.0011826968984678388, + 0.00286521902307868, + 0.03955807536840439, + -0.02896646223962307, + -0.030277039855718613, + 0.03011656180024147, + -0.029635123908519745, + -0.053974442183971405, + -0.015392611734569073, + 0.020193608477711678, + 0.04506785795092583, + 0.08275368064641953, + 0.054589610546827316, + 0.0596981942653656, + 0.05525827407836914, + 0.026318557560443878, + -0.009388022124767303, + -0.005212224554270506 + ] + }, + { + "id": "1dcd2797-a81b-41ab-88d9-689855b50c53", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "laura23", + "reviewDate": "2022-11-08T03:43:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8a6da827-f33c-4eb6-91c2-c4aa64f51243", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "hbutler", + "reviewDate": "2022-07-11T11:23:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5f906123-4eec-4a47-b099-b5ec49acbcd7", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "sharonsmith", + "reviewDate": "2022-12-14T01:14:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9a5f2fe7-2775-4a0f-9eea-f738971540e9", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "dixonpamela", + "reviewDate": "2021-06-15T03:37:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d4b35f59-a6e1-4b80-a5d4-0160b988ac0d", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "christyklein", + "reviewDate": "2021-10-20T14:31:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c006c4d6-7736-4d46-a8d1-41d5724c36e9", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "scarlson", + "reviewDate": "2022-03-12T15:28:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3c042e75-f1bd-43cc-95a2-3b79f174e0fa", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "david97", + "reviewDate": "2022-03-31T23:48:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8b2f2ffe-5c3f-417d-83eb-b557dfe8aac0", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "edwardsvictoria", + "reviewDate": "2021-03-26T15:09:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "af9b5c86-25d0-4850-8c13-45b4118d5c03", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "evan27", + "reviewDate": "2022-03-04T08:27:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "44e37035-4b4f-46b7-92b7-673c28edbe29", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacobjuarez", + "reviewDate": "2022-06-12T22:51:41", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4459496c-4751-446f-b41d-c96b13e48e3b", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "rebecca90", + "reviewDate": "2021-07-19T19:50:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c58832ec-c6d1-431a-9050-2ea7607a52b7", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "gavin39", + "reviewDate": "2021-03-16T14:10:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "34fed5d3-71d0-465b-8247-f2feae963820", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "rperez", + "reviewDate": "2021-01-29T19:28:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bc2fd305-2626-4464-9d63-4c79de372326", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "brooke30", + "reviewDate": "2021-03-27T15:34:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5149058d-a854-4fbb-9e4d-cd3420c3bd41", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "martincheryl", + "reviewDate": "2021-04-27T16:20:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9640f94a-fe31-4f2b-8d22-04a3a4d0b4eb", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "woodstanley", + "reviewDate": "2021-08-30T17:04:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3f4ffbd5-3671-4cd0-a2ab-f10d09e18945", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "rogersjohn", + "reviewDate": "2022-11-28T22:03:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8f7dac95-dc99-438d-bbfb-5b608fce6a43", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "ujohnson", + "reviewDate": "2022-09-06T12:22:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e475e22d-7e2d-4453-ba73-2f0a5e9d6689", + "productId": "5c462721-0167-4e47-8a06-ad4db51699a4", + "category": "Accessory", + "docType": "customerRating", + "userName": "alvarezjon", + "reviewDate": "2022-09-20T15:12:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Micro (Steel)", + "description": "This Awesome Mouse Micro (Steel) is in stock now!!\n\nAs a backer I intend to do my best to sell it and make enough money off it for the artist who made it!!\n\nPicking up one of my other items for my new collection includes:", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-07-16T05:10:32", + "price": 176.44, + "stock": 84, + "priceHistory": [ + { + "priceDate": "2021-02-07T03:40:54", + "newPrice": 166.92 + }, + { + "priceDate": "2021-07-05T03:40:54", + "newPrice": 186.54 + }, + { + "priceDate": "2021-11-30T03:40:54", + "newPrice": 166.9 + }, + { + "priceDate": "2022-04-27T03:40:54", + "newPrice": 188.01 + }, + { + "priceDate": "2022-09-22T03:40:54", + "newPrice": 193.62 + }, + { + "priceDate": "2025-03-03T03:40:54", + "newPrice": 176.44 + } + ], + "descriptionVector": [ + -0.06852064281702042, + 0.0018900693394243717, + -0.051251888275146484, + -0.06818801909685135, + 0.042437341064214706, + -0.08426486700773239, + -0.026166459545493126, + 0.05202801153063774, + 0.014538462273776531, + 0.03140529617667198, + -0.04479343071579933, + 0.00876604113727808, + 0.10050803422927856, + -0.051307328045368195, + 0.03661641106009483, + -0.06469546258449554, + 0.01804487779736519, + 0.021329544484615326, + -0.03650553897023201, + -0.03498100861907005, + 0.04127315431833267, + -0.014524602331221104, + -0.006399556528776884, + 0.012293246574699879, + -0.017989441752433777, + -0.03381682187318802, + 0.011586419306695461, + 0.00792062096297741, + -0.03129442036151886, + -0.0069851139560341835, + -0.018128033727407455, + 0.03633922338485718, + 0.017878565937280655, + 0.04404502734541893, + 0.033151574432849884, + -0.00683612609282136, + 0.00625056866556406, + -0.016631225124001503, + 0.10377883911132812, + -0.027233630418777466, + 0.018114175647497177, + -0.03888934478163719, + -0.04191068559885025, + -0.029991641640663147, + 0.007497910410165787, + 0.0466228649020195, + -0.04775933176279068, + 0.012133863754570484, + -0.03387226164340973, + 0.020775170996785164, + 0.021856199949979782, + 0.0362006314098835, + -0.08687042444944382, + -0.05460585281252861, + 0.00574816670268774, + -0.04127315431833267, + 0.019832734018564224, + 0.025168586522340775, + 0.012009129859507084, + -0.06574877351522446, + -0.016825255006551743, + -0.05898540839552879, + 0.030379703268408775, + 0.020317811518907547, + -0.024614211171865463, + -0.0882563665509224, + -0.0038494353648275137, + 0.04066334292292595, + 0.057599473744630814, + 0.021163232624530792, + 0.03913881257176399, + -0.02437860332429409, + 0.031460732221603394, + 0.008655166253447533, + 0.02199479378759861, + 0.023713354021310806, + 0.08487468212842941, + 0.0006769428146071732, + 0.08165930956602097, + -0.09014123678207397, + 0.044211339205503464, + 0.0354522280395031, + 0.017074722796678543, + -0.006971254944801331, + 0.040441595017910004, + 0.0389447845518589, + -0.040635623037815094, + -0.14957013726234436, + -0.047981083393096924, + -0.020220797508955002, + -0.034592945128679276, + 0.02010992169380188, + -0.027732565999031067, + -0.03556310012936592, + 0.04354608803987503, + -0.023463886231184006, + 0.023851947858929634, + 0.05798753350973129, + -0.034343477338552475, + -0.02030395343899727, + 0.0002514173393137753, + -0.047731611877679825, + -0.001373808365315199, + -0.03714306652545929, + -0.09108366817235947, + 0.04717724025249481, + -0.00986786000430584, + 0.040497031062841415, + -0.0873139277100563, + -0.1135358214378357, + 0.029520422220230103, + -0.04240962117910385, + -0.002423654543235898, + 0.03065689094364643, + 0.03423260152339935, + 0.04997682943940163, + -0.05915172025561333, + 0.0051210313104093075, + -0.03035198338329792, + -0.031183546409010887, + 0.0684652030467987, + 0.020387109369039536, + 0.026873286813497543, + -0.03961003199219704, + 0.05358026176691055, + 0.004327583126723766, + -0.013997946865856647, + -0.029076924547553062, + 0.07922006398439407, + -0.028577987104654312, + -0.10982152074575424, + -0.009264977648854256, + -0.06835433095693588, + -0.031266700476408005, + -0.03292982280254364, + 0.017518222332000732, + 0.06907501816749573, + 0.017421208322048187, + -0.004001888446509838, + 0.03567397594451904, + -0.04299171641469002, + -0.05163995176553726, + 0.04800879955291748, + -0.0020459871739149094, + -0.06120290607213974, + 0.03927740827202797, + -0.023214416578412056, + 0.024087555706501007, + -0.02514086663722992, + 0.05114101618528366, + -0.0043691610917449, + -0.04224330931901932, + -0.017435066401958466, + -0.07445244491100311, + 0.03190423175692558, + 0.05166767165064812, + -0.10788121074438095, + -0.052637822926044464, + -0.0238103698939085, + 0.11226076632738113, + 0.014621618203818798, + -0.010983537882566452, + -0.06968483328819275, + -0.004057325888425112, + -0.01367225218564272, + 0.035036444664001465, + 0.026000147685408592, + 0.012175441719591618, + -0.061036594212055206, + 0.0287720188498497, + 0.03708763048052788, + -0.0019299149280413985, + 0.04407274350523949, + -0.019694142043590546, + 0.06319865584373474, + 0.04021984338760376, + 0.07317738980054855, + -0.01703314483165741, + -0.05133504420518875, + -0.014995820820331573, + 0.021648310124874115, + 0.08210281282663345, + -0.05327535420656204, + 0.03223685547709465, + -0.027801863849163055, + 0.06353127956390381, + 0.019818875938653946, + -0.012286316603422165, + 0.04473799467086792, + 0.014185048639774323, + 0.003984563983976841, + -0.08919879794120789, + 0.005412077531218529, + -0.022701621055603027, + 0.03922197222709656, + 0.07556119561195374, + -0.01803101971745491, + 0.03536907210946083, + 0.04046931117773056, + 0.011856677010655403, + 0.002990155480802059, + -0.00012570866965688765, + 0.08980861306190491, + 0.0026159530971199274, + -0.025404194369912148, + -0.020220797508955002, + 0.03317929059267044, + -0.00021417032985482365, + 0.048729486763477325, + 0.0047884066589176655, + 0.00016804465849418193, + -0.00813544075936079, + -0.042437341064214706, + 0.018335925415158272, + 0.019638704136013985, + 0.020816748961806297, + 0.02080288901925087, + -0.021260248497128487, + -0.006444599479436874, + -0.02940954826772213, + -0.054633572697639465, + -0.054799884557724, + -0.05649072676897049, + -0.0023942033294588327, + -0.035285912454128265, + -0.004798801150172949, + -0.00961146131157875, + 0.07666994631290436, + 0.05122417211532593, + 0.01071328017860651, + -0.08221368491649628, + -0.06985114514827728, + 0.0354522280395031, + 0.006960860453546047, + -0.07245670258998871, + 0.05793209746479988, + -0.07179144769906998, + -0.008405697531998158, + -0.012265527620911598, + 0.05613038316369057, + -0.03863987699151039, + -0.007172215264290571, + -0.039998095482587814, + 0.02324213646352291, + 0.03079548291862011, + 0.04556955397129059, + 0.06330952793359756, + 0.04479343071579933, + -0.1295018047094345, + -0.003312385408207774, + 0.0016509954584762454, + 0.0061951312236487865, + 0.01973572000861168, + 0.06009415537118912, + 0.0287720188498497, + 0.107604019343853, + 0.0947425439953804, + 0.04981051757931709, + -0.001080163405276835, + -0.03877847269177437, + -0.025792257860302925, + -0.003272539936006069, + -0.04692777246236801, + 0.11397932469844818, + -0.05491076037287712, + 0.02803747169673443, + 0.04642883315682411, + -0.04850773885846138, + -0.04135631024837494, + 0.07384263724088669, + 0.035923443734645844, + 0.013263401575386524, + 0.07999619096517563, + -0.048978954553604126, + -0.07600469142198563, + -0.03561853989958763, + -0.04789792746305466, + 0.12307105958461761, + 0.0262773334980011, + -0.014538462273776531, + -0.007872113026678562, + 0.03323473036289215, + 0.06037134304642677, + -0.015564054250717163, + 0.004130087327212095, + 0.03362279012799263, + -0.0004517282941378653, + 0.01056082732975483, + -0.04529236629605293, + -0.04443308711051941, + -0.03215369954705238, + -0.04410046339035034, + 0.0035029517021030188, + -0.007996846921741962, + 0.07545032352209091, + 0.01200219988822937, + 0.042631372809410095, + 0.03805778548121452, + -0.03456522896885872, + -0.007581066340208054, + 0.07195776700973511, + -0.0018467588815838099, + -0.1061626449227333, + 0.01313866674900055, + 0.015688788145780563, + 0.04318574443459511, + 0.07755694538354874, + 0.00864130724221468, + -0.023228276520967484, + -0.07672537863254547, + 0.044571682810783386, + 0.026360491290688515, + -0.06153552979230881, + -0.01438600942492485, + 0.022632325068116188, + -0.04706636443734169, + 0.03500872850418091, + -0.013997946865856647, + -0.020719733089208603, + 0.005373964551836252, + 0.02168988808989525, + -0.05748859792947769, + -0.09440991282463074, + 0.08720305562019348, + -0.003669263795018196, + 0.03054601512849331, + -0.023325292393565178, + -0.014018735848367214, + -0.004868098068982363, + -0.009646110236644745, + -0.00222962349653244, + -0.013776197098195553, + -0.004417669028043747, + 0.020331671461462975, + -0.03406628966331482, + 0.026471365243196487, + -0.03750341013073921, + 0.03406628966331482, + 0.01589667797088623, + -0.010609335266053677, + 0.029769891873002052, + 0.0023370333947241306, + -0.051307328045368195, + 0.024406321346759796, + -0.012487277388572693, + -0.056158099323511124, + -0.008267104625701904, + -0.007802816107869148, + 0.0034890922252088785, + -0.002463500015437603, + 0.0015574448043480515, + -0.057710349559783936, + -0.013984087854623795, + -0.025986287742853165, + 0.08337786793708801, + 0.0009788168827071786, + 0.04933929815888405, + -0.0005093312356621027, + 0.02588927187025547, + 0.017296472564339638, + -0.0188487209379673, + -0.020082203671336174, + 0.0058659715577960014, + -0.019389236345887184, + 0.04016440734267235, + 0.07301107794046402, + -0.004154341295361519, + 0.04448852315545082, + 0.035285912454128265, + 0.024544915184378624, + 0.02394896373152733, + -0.044904306530952454, + 0.0009069214574992657, + 0.0033799498341977596, + -0.0337059460580349, + -0.023962821811437607, + 0.046844616532325745, + 0.014372149482369423, + -0.059595219790935516, + 0.04842458292841911, + 0.008066143840551376, + -0.0025899666361510754, + -0.00689502852037549, + -0.015037398785352707, + -0.008274033665657043, + 0.004899281542748213, + -0.04240962117910385, + -0.03800234571099281, + -0.06425195932388306, + 0.042437341064214706, + 0.02274319902062416, + -0.022022513672709465, + -0.02633277140557766, + 0.05793209746479988, + 0.028259221464395523, + -0.02261846512556076, + 0.04035843908786774, + 0.10754858702421188, + 0.0008571143844164908, + 0.00817008875310421, + -0.07278932631015778, + 0.07594925910234451, + 0.03778059780597687, + 0.03218141943216324, + -0.025099288672208786, + -0.010325218550860882, + 0.05122417211532593, + -0.020442547276616096, + -0.06458459049463272, + -0.07594925910234451, + -0.003981099463999271, + 0.030573733150959015, + 0.0719023272395134, + -0.04374011978507042, + 0.03650553897023201, + 0.001637136097997427, + 0.06624770909547806, + 0.016312459483742714, + -0.0012542714830487967, + -0.06458459049463272, + 0.05843103304505348, + -0.03625606745481491, + 0.03010251559317112, + 0.013374276459217072, + -0.0034648384898900986, + -0.019749578088521957, + -0.05676791071891785, + -0.02224426157772541, + 0.04606848955154419, + -0.09352292120456696, + -0.08459749072790146, + -0.07938637584447861, + -0.058153849095106125, + 0.037170786410570145, + -0.022576887160539627, + -0.007678081747144461, + 0.010332148522138596, + 0.021343404427170753, + 0.023339150473475456, + 0.011233005672693253, + 0.07411982119083405, + 0.008980860933661461, + 0.04296399652957916, + -0.013013932853937149, + -0.0438787117600441, + 0.01810031570494175, + -0.03500872850418091, + -0.012120004743337631, + 0.009978734888136387, + 8.510509360348806e-05, + -0.07195776700973511, + -0.05538197606801987, + -0.052942730486392975, + 0.007331598084419966, + 0.020123781636357307, + -0.001361681497655809, + 0.012632801197469234, + 0.0240598376840353, + -0.062422528862953186, + 0.06730102002620697, + -0.012314035557210445, + 0.08598343282938004, + 0.024281587451696396, + 0.05227748304605484, + -0.040801938623189926, + -0.08448661863803864, + -0.01304165180772543, + 0.030241109430789948, + 0.002479091752320528, + 0.005373964551836252, + -0.020844466984272003, + -0.016506489366292953, + -0.015688788145780563, + 0.022077949717640877, + 0.04008125141263008, + -0.056019507348537445, + -0.02866114303469658, + 0.00033305760007351637, + -0.0012005665339529514, + 0.13460204005241394, + -0.015633350238204002, + -0.049422454088926315, + -0.01517599169164896, + 0.06502808630466461, + -0.002929520793259144, + -0.12983442842960358, + -0.02087218686938286, + 0.05743316188454628, + 0.019250642508268356, + 0.04465483874082565, + 0.0036172913387417793, + 0.08670411258935928, + -0.04906211048364639, + -0.007948338985443115, + -0.05083610862493515, + 0.015092835761606693, + 0.0033366393763571978, + -0.0018952665850520134, + -0.056268975138664246, + -0.010754858143627644, + 0.016298599541187286, + -0.024531055241823196, + -0.04432221129536629, + 0.0312389824539423, + 0.08359961956739426, + 0.0530536063015461, + -0.03863987699151039, + 0.052249763160943985, + 0.02489139884710312, + -0.03232001140713692, + -0.019001172855496407, + 0.0030265364330261946 + ] + }, + { + "id": "c58b359d-cc73-4b36-a3c3-8fb518ec6804", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas75", + "reviewDate": "2021-10-18T11:22:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8baeca93-a8ba-4d4a-aa09-f0452df2bd02", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ujackson", + "reviewDate": "2021-09-30T11:30:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "470f89ec-22c3-4834-912d-34b5a0c57ea0", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xchristensen", + "reviewDate": "2022-05-09T08:06:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6343856c-7e5d-4a1c-a8cf-9f0236a9529b", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david88", + "reviewDate": "2021-05-23T04:33:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f546669b-3c59-41dd-8ebd-06bbb0d6c7e1", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nancywright", + "reviewDate": "2021-12-28T20:27:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "421de14c-60ae-4527-a16a-3321c9eeec1a", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "philliplindsey", + "reviewDate": "2022-05-31T16:38:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4917641a-93f9-4f55-a065-83f9d7f5eaa7", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "radams", + "reviewDate": "2021-07-03T17:21:23", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c7a56756-42a7-4a34-953e-ff739c578521", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scooper", + "reviewDate": "2021-02-07T03:40:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4179e24d-c982-417a-a251-1aef3b41d1e8", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "russell72", + "reviewDate": "2021-06-24T16:58:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "355acf21-a998-4dcd-b606-a2265fb738bc", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ntorres", + "reviewDate": "2022-09-24T07:45:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "077bef3c-3d22-472b-8540-c66a82887094", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dperez", + "reviewDate": "2022-06-29T15:23:37", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea243f3e-9138-46e4-aa56-96b54fcf17df", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnsondiana", + "reviewDate": "2021-06-17T14:44:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1603275c-c28e-4d04-8f11-59b1e6529598", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fthompson", + "reviewDate": "2022-04-13T23:25:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5e0aa7a4-4e65-486e-bb32-d73a942db05b", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tfuller", + "reviewDate": "2021-02-20T22:19:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4b2b3895-7c53-4ce6-8180-c9a2507e306a", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cbooth", + "reviewDate": "2021-05-20T07:42:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "28c363e1-c4e0-46a0-acb6-07aa80f777ab", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "elizabeth85", + "reviewDate": "2022-06-04T05:20:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b4b2e1ef-26e5-44da-9114-de7917a2dbbf", + "productId": "4c4ddc70-de4d-4abe-a0ba-4005ee395c29", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tiffany00", + "reviewDate": "2022-02-28T06:47:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Mini (Black)", + "description": "This Luxe Filter Mini (Black) is a stylish and practical tool for professional photographers. It can be used in conjunction with a pair of filters and makes an excellent filter replacement. It is available in three sizes -- the Black (7.5 oz) and White (7.5 oz).\n", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-06-03T07:10:01", + "price": 227.45, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-07-31T04:01:21", + "newPrice": 220.03 + }, + { + "priceDate": "2022-06-23T04:01:21", + "newPrice": 227.45 + } + ], + "descriptionVector": [ + -0.06034719571471214, + -0.01952052116394043, + -0.04406997561454773, + -0.001952659455128014, + -0.0035894920583814383, + -0.025776319205760956, + -0.020978182554244995, + -0.0017658964497968554, + -0.028643053025007248, + 0.018888866528868675, + -0.03199567645788193, + 0.015208271332085133, + 0.0025205400306731462, + 0.011752397753298283, + 0.0761871188879013, + -0.01871880702674389, + -0.08196917921304703, + 0.010483017191290855, + -0.015196124091744423, + -0.05150404945015907, + 0.053544774651527405, + -0.10329963266849518, + -0.10359115898609161, + 0.018135741353034973, + 0.012335462495684624, + 0.033429041504859924, + -0.015013916417956352, + 0.01424864400178194, + 0.028375815600156784, + 0.019484078511595726, + 0.08828571438789368, + 0.03738902509212494, + -0.004849762190133333, + 0.06656655669212341, + -0.1023278534412384, + -0.021913515403866768, + 0.09246434271335602, + 0.009213636629283428, + 0.012110739946365356, + 0.09372764825820923, + -0.009565905667841434, + -0.018682364374399185, + -0.08167764544487, + -0.037607673555612564, + -0.0054965997114777565, + -0.0672953873872757, + -0.02563055232167244, + -0.03938116133213043, + -0.026626622304320335, + -0.00019985908875241876, + 0.047203946858644485, + -0.023553384467959404, + -0.03184990957379341, + -0.026359383016824722, + -0.015329742804169655, + -0.029906360432505608, + 0.01402999460697174, + 0.23614120483398438, + 0.043049611151218414, + -0.064671590924263, + 0.023152528330683708, + -0.06462300568819046, + 0.004600744694471359, + -0.020662356168031693, + -0.013689873740077019, + -0.020820269361138344, + -0.06306816637516022, + -0.04922037944197655, + 0.014090729877352715, + 0.04154336079955101, + -0.022338666021823883, + 0.012924601323902607, + 0.0035044618416577578, + 0.015171829611063004, + 0.038044970482587814, + -0.0014569025952368975, + 0.03998852148652077, + -0.035955656319856644, + -0.0062800925225019455, + -0.006073590833693743, + 0.05218429118394852, + -0.018998190760612488, + -0.07482663542032242, + -0.013689873740077019, + 0.008205421268939972, + -0.00172945496160537, + 0.04108176752924919, + -0.08498167991638184, + 0.01204393059015274, + 0.027063919231295586, + -0.015596981160342693, + 0.048855964094400406, + 0.02638367749750614, + -0.03644154220819473, + -0.008867442607879639, + 0.00041566137224435806, + 0.0030367954168468714, + 0.0268938597291708, + -0.0017993012443184853, + 0.024901721626520157, + -0.013944963924586773, + -0.0172004085034132, + -0.012213991023600101, + 0.024464422836899757, + 0.010647004470229149, + 0.03189849853515625, + -0.04351120442152023, + -0.06797562539577484, + -0.027574101462960243, + -0.09878087788820267, + 0.08716817200183868, + -0.020103584975004196, + -0.06768409162759781, + 0.01577918790280819, + -0.05048368498682976, + 6.438955460907891e-05, + -0.04064446687698364, + -0.01993352547287941, + 0.04744689166545868, + 0.013386193662881851, + 0.032870274037122726, + 0.055634088814258575, + 0.08736252784729004, + 0.052670177072286606, + -0.036757372319698334, + 0.022290077060461044, + -0.009578052908182144, + -0.023553384467959404, + 0.07856796681880951, + -0.03313751146197319, + -0.041762009263038635, + 0.054710905998945236, + 0.0475926548242569, + -0.02567914128303528, + -0.11000487208366394, + 0.004412463400512934, + 0.07599276304244995, + 0.049268968403339386, + -0.06413711607456207, + 0.0402800515294075, + -0.009019281715154648, + -0.06996776163578033, + -0.008472658693790436, + 0.004561266396194696, + 0.02516895905137062, + -0.11593269556760788, + -0.05884094536304474, + 0.004303139168769121, + -0.03457087650895119, + 0.043025314807891846, + 0.037486203014850616, + -0.08745970577001572, + -0.018536599352955818, + -0.05738328397274017, + 0.061902035027742386, + 0.08148328959941864, + -0.054759494960308075, + 0.04198065772652626, + -0.02903176285326481, + -0.0002562295994721353, + 0.049341849982738495, + -0.038409385830163956, + 0.0796855092048645, + 0.02891029231250286, + 0.008436216972768307, + 0.032554447650909424, + -0.011843501590192318, + 0.03240868076682091, + -0.11107382923364639, + 0.028813114389777184, + 0.0905693843960762, + -0.0038172516506165266, + -0.017030349001288414, + -0.048880256712436676, + -0.041737716645002365, + 0.036733075976371765, + 0.057286106050014496, + -0.009523389860987663, + 0.029566239565610886, + -0.014600912109017372, + 0.0047677685506641865, + 0.03483811765909195, + -0.025047488510608673, + -0.04185918718576431, + 0.003808141453191638, + -0.10572906583547592, + 0.028715936467051506, + 0.007264014333486557, + 0.021707013249397278, + 0.020856710150837898, + -0.05952118709683418, + 0.023917799815535545, + 0.024816691875457764, + -0.0023277036380022764, + 0.031145373359322548, + -0.04742259532213211, + -0.03347763046622276, + -0.0596669539809227, + 0.030027832835912704, + 0.014613059349358082, + -0.022047134116292, + 0.012851717881858349, + 0.0077013131231069565, + -0.02805998921394348, + -0.007798490580171347, + -0.001409832271747291, + 0.019216841086745262, + 0.06321392953395844, + -0.017139673233032227, + -0.08235789090394974, + 0.021002477034926414, + 0.03780202940106392, + -0.035834185779094696, + 0.05179557949304581, + 0.03809355944395065, + 0.01302177831530571, + 0.019095368683338165, + -0.028351521119475365, + 0.007907815277576447, + -0.04331684857606888, + 0.0020969072356820107, + -0.022120017558336258, + 0.015159682370722294, + -0.023662708699703217, + -0.023225409910082817, + -0.037194669246673584, + 0.05276735499501228, + 0.08809135854244232, + 0.08162906020879745, + 0.052670177072286606, + -0.005104852840304375, + 0.002537242602556944, + -0.020820269361138344, + 0.0027756309136748314, + 0.05155263841152191, + -0.009766333736479282, + -0.05806352570652962, + -0.06326252222061157, + 0.015026063658297062, + -0.00304590561427176, + 6.030885560903698e-05, + 0.013264722190797329, + -0.025363314896821976, + 0.015657717362046242, + 0.024330804124474525, + -0.026699503883719444, + 0.02462233603000641, + -0.044094268232584, + -0.05500243604183197, + 0.008934251964092255, + -0.047252535820007324, + 0.050629451870918274, + -0.03277309611439705, + 0.07540970295667648, + -0.03415787220001221, + 0.017334027215838432, + 0.004330470226705074, + -0.0004695644893217832, + -0.03850656375288963, + -0.00884314812719822, + 0.032894566655159, + 0.005988560616970062, + 0.004014643374830484, + -0.021804191172122955, + -0.052232880145311356, + -0.058209292590618134, + 0.004576450679451227, + -0.07885950058698654, + 0.007610209286212921, + 0.025339020416140556, + -0.012730246409773827, + 0.0015404144069179893, + 0.007361191790550947, + 0.02609214559197426, + -0.09445647895336151, + -0.008308672346174717, + -0.1193339079618454, + 0.07351474463939667, + 0.017564823850989342, + -0.047349713742733, + 0.09314458817243576, + 0.013349751941859722, + 0.05582844465970993, + -0.02101462334394455, + 0.09217280894517899, + -0.00986351165920496, + 0.02730686403810978, + -0.01823291927576065, + -0.016435137018561363, + -0.033380452543497086, + -0.015997838228940964, + 0.048783078789711, + 0.01081706490367651, + -0.06365122646093369, + 0.04907461255788803, + -0.028813114389777184, + -0.018961749970912933, + 0.023213263601064682, + -0.0007535048644058406, + 0.04402138665318489, + -0.08391273021697998, + 0.012730246409773827, + 0.01952052116394043, + -0.03870091959834099, + -0.013774903491139412, + 0.09377624094486237, + -0.020030701532959938, + 0.0053842379711568356, + -0.021524805575609207, + -0.04144618287682533, + 0.03896815702319145, + 0.02016432024538517, + -0.05033791810274124, + -0.003410321194678545, + 0.03491099923849106, + -0.02379632741212845, + -0.05164981633424759, + -0.011971047148108482, + -0.00799284502863884, + 0.0017795620951801538, + -0.07045365124940872, + 0.015633422881364822, + -0.014297232031822205, + 0.09115245193243027, + 0.04334114119410515, + -0.01979990489780903, + -0.04832148551940918, + 0.011715956032276154, + -0.016058573499321938, + -0.0564115084707737, + -0.06394276022911072, + -0.008994988165795803, + 0.005548225250095129, + -0.01864592358469963, + -0.0027513366658240557, + 0.011327246204018593, + -0.0031582671217620373, + -0.013981405645608902, + -0.03107248991727829, + 0.03284597769379616, + 0.04156765341758728, + -0.015864219516515732, + -0.015341890044510365, + 0.004622002597898245, + 0.05043509602546692, + -0.06374840438365936, + -0.019143957644701004, + -0.0088188536465168, + -0.007312603294849396, + 0.08745970577001572, + 0.0014963808935135603, + -0.04754406586289406, + 0.006583772134035826, + 0.023480501025915146, + 0.01722470298409462, + 0.009760260581970215, + 0.09484519064426422, + -0.003966054879128933, + -0.001724899746477604, + 0.031242551282048225, + -0.016483725979924202, + -0.014722383581101894, + 0.025703435763716698, + -0.016240781173110008, + -0.00046842568553984165, + 0.06656655669212341, + -0.01887672021985054, + 0.0016839030431583524, + -0.08172623813152313, + 0.015378331765532494, + -0.025363314896821976, + 0.01662949100136757, + -0.06059014052152634, + 0.09188128262758255, + 0.0018919234862551093, + -0.04334114119410515, + 0.08789700269699097, + -0.0204194113612175, + -0.0349595881998539, + 0.05587703362107277, + 0.020200762897729874, + 0.042150720953941345, + -0.0192654300481081, + -0.013556254096329212, + 0.08060869574546814, + -0.0077256071381270885, + -0.10747826099395752, + -0.011120744049549103, + -0.01924113556742668, + -0.04994921013712883, + -0.01993352547287941, + -0.09878087788820267, + -0.003668448654934764, + -0.004382095765322447, + -0.015536244958639145, + -0.004448905121535063, + -0.02021290920674801, + 0.03743761405348778, + 0.04037722945213318, + -0.022290077060461044, + 0.029954949393868446, + 0.0055634090676903725, + -0.06369981914758682, + -0.018342243507504463, + -0.028740230947732925, + -0.0012276244815438986, + 0.045600518584251404, + 0.0931931734085083, + 0.05135828256607056, + -0.08483591675758362, + 0.004968197084963322, + -0.03272450715303421, + -0.05587703362107277, + -0.01621648669242859, + 0.020042849704623222, + -0.01588851399719715, + 0.017297586426138878, + -0.01681169867515564, + 0.03454658389091492, + -0.014370115473866463, + 0.04608640447258949, + 0.006674875970929861, + -0.0808030515909195, + -0.013592695817351341, + 0.004278844688087702, + 0.005569482687860727, + -0.021949956193566322, + 0.040450114756822586, + 0.043875619769096375, + -0.017115378752350807, + 0.06996776163578033, + -0.017334027215838432, + -0.06399135291576385, + -0.028230048716068268, + 0.04664517566561699, + -0.020565178245306015, + 0.050629451870918274, + 0.03488670662045479, + -0.010695593431591988, + 0.03427934646606445, + 0.028764525428414345, + -0.015208271332085133, + 0.03826362267136574, + 0.08935466408729553, + -0.09285305440425873, + -0.06744115054607391, + -0.05344759672880173, + 0.038846686482429504, + -0.0077681224793195724, + -0.06919034570455551, + -0.06321392953395844, + -0.005949081853032112, + -0.07463227957487106, + -0.01406643632799387, + 0.08298954367637634, + -0.005785095039755106, + 0.05339900776743889, + 0.07545828819274902, + 0.025946378707885742, + -0.06598348915576935, + 0.000762615236453712, + 0.07837361097335815, + 0.019812053069472313, + -0.003188634989783168, + -0.026286499574780464, + -0.05738328397274017, + -0.06680949777364731, + 0.06977341324090958, + -0.02857016958296299, + 0.02106321230530739, + -0.0032979596871882677, + -0.0088188536465168, + -0.007683092262595892, + -0.0005667419172823429, + -0.014528028666973114, + 0.027379747480154037, + -0.033404748886823654, + -0.035008177161216736, + 0.01120577473193407, + -0.039672695100307465, + -0.01696961186826229, + 0.01830580271780491, + -0.039624106138944626, + 0.07502099126577377, + 0.09839216619729996, + 0.019046779721975327, + 0.053593363612890244, + 0.015244712121784687, + 0.08362119644880295, + 0.046766649931669235, + -0.0018797763623297215, + 0.0024096970446407795, + -0.06685808300971985, + -0.048783078789711, + -0.017807768657803535, + 0.01979990489780903, + 0.016240781173110008, + -0.03027077578008175, + -0.03182561323046684, + 0.012912454083561897, + 0.08274660259485245, + 0.054419372230768204, + -0.00023668023641221225, + 0.024634484201669693, + 0.02891029231250286, + 0.04577057808637619, + 0.0016459430335089564, + -0.04397279769182205, + 0.037947796285152435, + -0.07273732125759125, + 0.008357260376214981, + 0.04861301928758621 + ] + }, + { + "id": "ecf1540c-177a-48c0-94fc-7dbbe656b621", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "moralescynthia", + "reviewDate": "2021-09-27T13:14:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "18f2eac1-4c37-49f1-a9ce-8c80dae543de", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "lopezdaniel", + "reviewDate": "2021-07-31T04:01:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea5dc2db-4d96-4792-8908-2a1b519bbec9", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "mcclureheather", + "reviewDate": "2021-11-15T11:06:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "de72e47b-05d1-4194-b973-5a9941f43943", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "jesuswalker", + "reviewDate": "2022-09-24T12:15:17", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ae467ecd-c084-4463-921f-7fc33e4365f1", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "zgonzales", + "reviewDate": "2022-12-08T00:39:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e490da41-4f1e-4e3c-af9a-ac747b2afef6", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "wilsonjanet", + "reviewDate": "2022-07-12T01:45:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0e48def2-8267-417f-8378-e40395aae8e9", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "davidscott", + "reviewDate": "2021-11-18T09:18:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f5d594ec-3793-4fae-8739-72412bca9d45", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "ewright", + "reviewDate": "2022-06-05T01:02:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b3f10f4f-125f-411f-9035-7a486b3f3439", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "zwilliams", + "reviewDate": "2022-11-09T21:28:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "65eae1d9-9e0d-4627-b37c-a8481bdc0d33", + "productId": "8fe73284-7d4b-46ed-9b3f-3f2f967a5938", + "category": "Other", + "docType": "customerRating", + "userName": "rachel77", + "reviewDate": "2022-07-14T22:30:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard 3000 (Red)", + "description": "This Luxe Keyboard 3000 (Red) is a new and improved version that is designed to enhance the user's experience of playing games. It offers up an elegant and compact design, featuring a unique ergonomic keyboard feel. The 3.8mm scrollwheel makes it easy to hold and control the keys, and has an ergonomic and intuitive layout for quick input. The white plastic cover protects your keypress from scratches and dirt, making it easy to clean with ease", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-01-21T13:58:02", + "price": 332.26, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-01-14T16:58:26", + "newPrice": 333.43 + }, + { + "priceDate": "2021-07-10T16:58:26", + "newPrice": 333.93 + }, + { + "priceDate": "2022-01-03T16:58:26", + "newPrice": 332.81 + }, + { + "priceDate": "2022-06-29T16:58:26", + "newPrice": 360.7 + }, + { + "priceDate": "2022-12-23T16:58:26", + "newPrice": 317.99 + }, + { + "priceDate": "2024-05-08T16:58:26", + "newPrice": 332.26 + } + ], + "descriptionVector": [ + -0.05407200753688812, + -0.00913078524172306, + -0.041383545845746994, + 0.04930507391691208, + 0.007249715272337198, + -0.024488965049386024, + 0.009171678684651852, + 0.021439528092741966, + -0.008190250024199486, + 0.043767016381025314, + 0.05243629589676857, + 0.0017700755270197988, + 0.015153715386986732, + -0.09220749884843826, + 0.03944405913352966, + 0.0420144647359848, + -0.0635124146938324, + -0.04661782830953598, + 0.0082077756524086, + -0.050753846764564514, + 0.021089017391204834, + -0.0142657570540905, + -0.03470049053430557, + 0.02614804543554783, + 0.055520784109830856, + -0.027386514469981194, + 0.02333228290081024, + 0.006466909311711788, + -0.0013669889885932207, + 0.015025194734334946, + 0.009510505013167858, + -0.009633183479309082, + -0.021322691813111305, + 0.0506136417388916, + -0.041944362223148346, + -0.07173771411180496, + 0.0008609401993453503, + 0.0017248012591153383, + 0.04421099275350571, + -0.024512331932783127, + -0.00902563240379095, + 0.025867637246847153, + -0.051174458116292953, + -0.04610374942421913, + 0.01264172699302435, + 0.03362559154629707, + 0.010480249300599098, + 0.0011617946438491344, + -0.016485653817653656, + 0.0014560769777745008, + 0.07234526425600052, + 0.028484778478741646, + -0.0317562073469162, + 0.0013217147206887603, + 0.05224935710430145, + -0.031148655340075493, + 0.023682791739702225, + 0.15562643110752106, + 0.07879465073347092, + -0.07734587043523788, + 0.0180512648075819, + -0.10328361392021179, + -0.009037315845489502, + -0.04727211594581604, + -0.03790181502699852, + -0.0871601551771164, + -0.037411101162433624, + -0.00902563240379095, + 0.027853861451148987, + 0.027970697730779648, + -0.059493228793144226, + 0.04540272802114487, + 0.022876618430018425, + 0.03217681869864464, + 0.03703722357749939, + 0.009662392549216747, + 0.06444710493087769, + -0.002587932161986828, + 0.010649662464857101, + -0.02044641599059105, + 0.0625309869647026, + 0.015597694553434849, + -0.08342137932777405, + -0.07173771411180496, + 0.0193948857486248, + -0.01737361215054989, + 0.008850377053022385, + -0.09010443836450577, + -0.018787335604429245, + 0.09281504899263382, + -0.05365139618515968, + 0.030657941475510597, + 0.006274128798395395, + -0.04437456652522087, + -0.011187111027538776, + -0.010188157670199871, + -0.057109761983156204, + 0.034396715462207794, + -0.033228348940610886, + 0.017911061644554138, + 0.02736314758658409, + 0.021404476836323738, + -0.053137317299842834, + -0.035261306911706924, + 0.04264538362622261, + 0.03895334526896477, + 0.03250395879149437, + 0.042037833482027054, + -0.056268539279699326, + -0.12665094435214996, + 0.05037996917963028, + 0.005205073393881321, + -0.035261306911706924, + -0.008698489516973495, + -0.046337421983480453, + -0.003995813895016909, + -0.04547283053398132, + -0.031031819060444832, + 0.029419472441077232, + 0.014242389239370823, + 0.04297252744436264, + 0.027082739397883415, + 0.028835289180278778, + 0.03642967343330383, + -0.020937129855155945, + -0.046010278165340424, + 0.006017088424414396, + -0.021930241957306862, + 0.03437334671616554, + -0.027737025171518326, + -0.10001218318939209, + 0.11702360212802887, + 0.06220383942127228, + 0.14515787363052368, + 0.0030056231189519167, + 0.10328361392021179, + -0.01254825759679079, + 0.05664241686463356, + -0.007226347923278809, + 0.041944362223148346, + 0.026101311668753624, + -0.01614682748913765, + -0.016497336328029633, + 0.00856412760913372, + -0.04652436077594757, + -0.0094170356169343, + -0.0979558601975441, + 0.0064435419626533985, + 0.004839959088712931, + 0.061643023043870926, + 0.031172022223472595, + -0.05972690507769585, + 0.04799650236964226, + -0.03182630613446236, + 0.039023447781801224, + 0.025563862174749374, + -0.10066647082567215, + -0.012828665785491467, + 0.010094688273966312, + 0.04808996990323067, + 0.011648615822196007, + 0.03166273608803749, + -0.012396370060741901, + 0.04855731874704361, + 0.006940098013728857, + 0.05874547362327576, + 0.008593336679041386, + 0.014230705797672272, + -0.037971917539834976, + 0.03512110188603401, + -0.08234648406505585, + -0.003960763104259968, + -0.012034176848828793, + -0.0008346519316546619, + 0.042271506041288376, + -0.05762384459376335, + 0.07075628638267517, + -0.02175498753786087, + 0.04759925603866577, + -0.028531514108181, + 0.0516885407269001, + -0.0070686182007193565, + -0.07954239845275879, + -0.016555756330490112, + 0.12216442078351974, + -0.009241780266165733, + 0.04222477227449417, + 0.008412240073084831, + -0.02862498350441456, + 0.02862498350441456, + -0.009066524915397167, + 0.034163039177656174, + -0.054632823914289474, + 0.01757223531603813, + -0.039467424154281616, + 0.04428109526634216, + 0.04374364763498306, + 0.011385733261704445, + 0.06477424502372742, + 0.03334518522024155, + -0.0624375157058239, + 0.08304750174283981, + 0.0398646704852581, + 0.004156464245170355, + 0.021719936281442642, + 0.0014232166577130556, + -0.003125380724668503, + 0.039350587874650955, + 0.035378143191337585, + 0.024722637608647346, + 0.008225301280617714, + 0.06122241169214249, + -0.03745783492922783, + -0.00932356622070074, + 0.04794976860284805, + -0.005941144656389952, + 0.02106565050780773, + -0.007728745229542255, + -0.021988660097122192, + -0.06393302232027054, + -0.002821605419740081, + 0.001526178908534348, + 0.019827181473374367, + -0.028671717271208763, + -0.04318283125758171, + 0.02423192374408245, + 0.11206972599029541, + -0.0015101139433681965, + 0.01942993700504303, + 0.04037875309586525, + -0.02843804471194744, + -0.025143250823020935, + 0.040846098214387894, + 0.00021578271116595715, + 0.005000609438866377, + -0.00535696092993021, + -0.01187644712626934, + -0.056268539279699326, + -0.032784368842840195, + 0.07061608135700226, + 0.00993695855140686, + -0.03649977594614029, + -0.005172943230718374, + 0.03243386000394821, + 0.0387430377304554, + -0.04243507608771324, + 0.11618237942457199, + -0.026101311668753624, + -0.05963343381881714, + 0.004971399903297424, + -0.015737898647785187, + 0.03425651043653488, + -0.03626609966158867, + 0.08370178937911987, + 0.030611205846071243, + -0.003113697050139308, + 0.013529686257243156, + 0.011841395869851112, + -0.024746006354689598, + -0.034607019275426865, + -0.002012511482462287, + 0.01238468661904335, + 0.010328360833227634, + 0.011940707452595234, + -0.011742085218429565, + 0.01987391710281372, + 0.04696834087371826, + -0.05309057980775833, + 0.0028113822918385267, + 0.005035660229623318, + 0.01948835514485836, + -0.042692117393016815, + 0.11356523633003235, + -0.028905391693115234, + -0.03168610483407974, + 0.006075506564229727, + -0.02841467782855034, + 0.049492012709379196, + -0.034630388021469116, + -0.09010443836450577, + 0.036546509712934494, + 0.045052219182252884, + 0.05795098468661308, + -0.032246921211481094, + 0.031919777393341064, + -0.024932945147156715, + 0.025797536596655846, + 0.006823261268436909, + -0.004591681063175201, + -0.0006772875203751028, + -0.012419737875461578, + 0.029956921935081482, + 0.007296449970453978, + -0.014405961148440838, + 0.019359836354851723, + 0.04563640058040619, + 0.02755008637905121, + 0.02509651519358158, + 0.030400900170207024, + -0.01710488833487034, + -0.02399825118482113, + -0.03227028623223305, + -0.07042913883924484, + -0.11253707855939865, + -0.03692038729786873, + 0.068886898458004, + -0.036453038454055786, + 0.07066281884908676, + -0.044514767825603485, + -0.048183441162109375, + 0.07687852531671524, + -0.00928267277777195, + -0.0753830149769783, + 0.020376315340399742, + 0.10141422599554062, + -0.05229609087109566, + 0.03355548903346062, + 0.02722294256091118, + 0.01217438094317913, + -0.010012902319431305, + -0.016181878745555878, + -0.049024663865566254, + -0.06383955478668213, + 0.06112894415855408, + 0.05911935120820999, + -0.06472751498222351, + 0.012501522898674011, + 0.0217900387942791, + 0.012080911546945572, + -0.08982402831315994, + -0.06972812116146088, + 0.02593773975968361, + -0.08491688966751099, + -0.03748120367527008, + 0.012408053502440453, + -0.010795707814395428, + 0.005114525090903044, + 0.013179175555706024, + 0.06047465652227402, + -0.0263817198574543, + 0.05449262261390686, + 0.04907140135765076, + -0.042668748646974564, + -0.03614926338195801, + 0.006852470338344574, + -0.03142906352877617, + -0.05374486744403839, + 0.010941754095256329, + 0.053557928651571274, + 0.020014120265841484, + 0.0013772122329100966, + -0.023343965411186218, + 0.06337220966815948, + -0.03586885705590248, + 0.004395979456603527, + 0.03243386000394821, + 0.04023854807019234, + -0.04638415575027466, + -0.04234160855412483, + 0.13926930725574493, + -0.0007441035122610629, + 0.018483560532331467, + 0.04350997507572174, + 0.06061486154794693, + -0.03014385886490345, + 0.00045128160854801536, + -0.06491445004940033, + 0.02703600376844406, + -0.014347542077302933, + 0.023776261135935783, + 0.026077942922711372, + -0.05444588512182236, + -0.01874060183763504, + 0.09711463749408722, + 0.02432539314031601, + 0.08113138377666473, + -0.012408053502440453, + 0.0072789243422448635, + -0.04605701193213463, + 0.03530804067850113, + 0.0592128224670887, + 0.029886819422245026, + -0.0252834539860487, + 0.019570142030715942, + 0.0377148762345314, + -0.024302026256918907, + -0.03252732753753662, + -0.04762262478470802, + 0.047529157251119614, + -0.01733856089413166, + -0.02918579988181591, + 0.013693257234990597, + -0.013833461329340935, + 0.10057300329208374, + -0.07356036454439163, + 0.024302026256918907, + 0.0339060015976429, + 0.05720323324203491, + 0.022818200290203094, + 0.0014232166577130556, + -0.0034992580767720938, + 0.060147516429424286, + -0.007646959740668535, + -0.05963343381881714, + -0.04509895294904709, + -0.0549132339656353, + 0.03465375676751137, + 0.02068009041249752, + -0.010678871534764767, + -0.08215954154729843, + -0.005777573212981224, + 0.010965120978653431, + -0.015317287296056747, + 0.007471704855561256, + 0.010854125954210758, + -0.010474407114088535, + 0.07514934241771698, + 0.06150282174348831, + -0.0032772684935480356, + -0.07720566540956497, + 0.034957531839609146, + -0.006034613586962223, + -0.06584914773702621, + -0.008897111751139164, + -0.03944405913352966, + -0.02790059521794319, + -0.009837646968662739, + -0.06070833280682564, + 0.0710366889834404, + -0.04722537845373154, + 0.03738773241639137, + -0.06005404517054558, + -0.057436905801296234, + -0.0392804853618145, + -0.010877493768930435, + -0.05042670667171478, + 0.0007966799894347787, + 0.01691794954240322, + 0.04706180840730667, + 0.09879708290100098, + 0.00917751993983984, + -0.06837281584739685, + 0.0008185869082808495, + 0.06944771111011505, + -0.05220262333750725, + -0.008143515326082706, + -0.0223508533090353, + 0.08519729971885681, + 0.046571094542741776, + 0.0031166181433945894, + -0.007728745229542255, + 0.0030348324216902256, + -0.0414302833378315, + 0.025049781426787376, + 0.07496240735054016, + -0.042154669761657715, + -0.014779837802052498, + 0.05911935120820999, + 0.05285690724849701, + -0.004667624831199646, + -0.023180395364761353, + 0.042248137295246124, + 0.03437334671616554, + 0.01990896835923195, + -0.05136139690876007, + -0.034934163093566895, + -0.010071320459246635, + 0.035588447004556656, + 0.009679918177425861, + 0.024185189977288246, + 0.0028420519083738327, + -0.040752630680799484, + -0.020247794687747955, + -0.01244310475885868, + 0.02455906756222248, + -0.05374486744403839, + 0.014183971099555492, + -0.02079692669212818, + -0.018553663045167923, + 0.01691794954240322, + -0.011660299263894558, + -0.02521335333585739, + -0.008634229190647602, + 0.02575080096721649, + 0.04453813657164574, + -0.06603608280420303, + 0.07893484830856323, + -0.013085706159472466, + 0.08164545893669128, + -0.02572743408381939, + 0.006829102989286184, + -0.02572743408381939, + -0.012852033600211143, + -0.08529076725244522, + -0.05351119115948677, + 0.018343357369303703, + -0.0506136417388916, + 0.03325171396136284, + -0.061409350484609604, + 0.025797536596655846, + 0.03306477516889572, + -0.038602832704782486, + -0.005181706044822931, + -0.004016260150820017, + 0.014966776594519615, + 0.04341650381684303, + -0.05645547807216644, + 0.06234404444694519, + 0.026872433722019196, + -0.03196651116013527, + 0.052062418311834335, + -0.08318770676851273 + ] + }, + { + "id": "35e18e7f-91cb-4022-acf1-0ded1c1fac12", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yorkjack", + "reviewDate": "2022-06-21T08:18:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f5b7511e-5193-47f9-bfd4-747185ac9fff", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "waltersalazar", + "reviewDate": "2021-01-14T16:58:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d024d5ae-5c1d-41e9-aa1a-29b25a03b587", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emmabrown", + "reviewDate": "2021-12-08T00:15:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6e56fe41-0781-4887-a2b4-93a4d3acb1e3", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "navarrodiana", + "reviewDate": "2022-09-01T07:09:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f9dfe8c2-38f3-4326-8728-28ad8f4e035b", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patricia19", + "reviewDate": "2021-11-23T14:13:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7447ad26-29b8-42dd-9be0-c399e2e2b877", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "coxsteven", + "reviewDate": "2022-12-25T21:28:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "87a882d4-3d08-40fd-91f9-0ee4936f5f13", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "douglashumphrey", + "reviewDate": "2022-10-22T20:08:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "59543378-cc86-4595-8597-e394bc215bbe", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "peggyrodriguez", + "reviewDate": "2022-08-19T01:57:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5e553859-93e4-4259-9158-71bad9504bc4", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carollyons", + "reviewDate": "2021-08-02T09:03:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b4fa20e7-d72b-467a-8441-46904ec23088", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlesjohnson", + "reviewDate": "2021-11-15T20:01:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "be70e185-c8ca-4032-8287-68fdfd103155", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nguyenelizabeth", + "reviewDate": "2021-05-18T11:48:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "deafcca5-bd20-478c-ad1e-090bcbace702", + "productId": "655260c7-1e6f-43ab-a202-e40bfa8f17c4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenniferjimenez", + "reviewDate": "2022-08-06T00:20:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Micro (Steel)", + "description": "This Awesome Speaker Micro (Steel) is made from an aluminum alloy of the finest carbon fiber and aluminum which adds significant durability, energy density, and power to even the", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-12-06T05:12:33", + "price": 854.86, + "stock": 77, + "priceHistory": [ + { + "priceDate": "2021-03-21T07:33:50", + "newPrice": 861.34 + }, + { + "priceDate": "2021-08-09T07:33:50", + "newPrice": 802.74 + }, + { + "priceDate": "2021-12-28T07:33:50", + "newPrice": 852.87 + }, + { + "priceDate": "2022-05-18T07:33:50", + "newPrice": 909.98 + }, + { + "priceDate": "2022-10-06T07:33:50", + "newPrice": 832.56 + }, + { + "priceDate": "2024-09-28T07:33:50", + "newPrice": 854.86 + } + ], + "descriptionVector": [ + -0.002864430658519268, + 0.06761190295219421, + -0.03133542090654373, + -0.051049258559942245, + -0.03534373268485069, + -0.04373849928379059, + -0.02125161699950695, + -0.05049464851617813, + 0.03431014344096184, + 0.04451999440789223, + -0.010014478117227554, + 0.03753696009516716, + -0.016663486137986183, + -0.009503984823822975, + -0.01978946477174759, + -0.0775444507598877, + 0.02023063227534294, + -0.041772156953811646, + 0.0015102071920409799, + -0.0012620510533452034, + 0.03796552121639252, + -0.10577910393476486, + -0.007909483276307583, + -0.014873610809445381, + -0.03083123080432415, + -0.035520199686288834, + 0.029772430658340454, + 0.03436056151986122, + -0.017823124304413795, + -0.012056448496878147, + 0.04709136486053467, + 0.014797981828451157, + -0.052788712084293365, + 0.0030125363264232874, + -0.009560707025229931, + 0.021755807101726532, + -0.02205832116305828, + -0.04202425107359886, + 0.04376370832324028, + 0.0029510881286114454, + 0.003529331414029002, + 0.02941949851810932, + -0.011571165174245834, + 0.016096271574497223, + 0.05546092242002487, + 0.06700687855482101, + -0.011993424035608768, + 0.07018327713012695, + 0.048326630145311356, + -0.0039169276133179665, + 0.016713904216885567, + 0.018491175025701523, + -0.07976289093494415, + 0.0070838723331689835, + 0.03221775218844414, + 0.026570823043584824, + 0.08460311591625214, + 0.14177827537059784, + 0.0019348298665136099, + 0.020394492894411087, + 0.012825338169932365, + -0.05722558870911598, + -0.022701162844896317, + 0.03514205664396286, + -0.04023437574505806, + -0.00359235517680645, + 0.03753696009516716, + 0.03612522780895233, + 0.026898546144366264, + 0.1050732359290123, + 0.029192611575126648, + -0.009302308782935143, + -0.000718864903319627, + 0.0018592013511806726, + 0.021907063201069832, + -0.012321148067712784, + -0.02619268000125885, + 0.07436805218458176, + 0.050393808633089066, + -0.05258703604340553, + 0.06680519878864288, + 0.05044423043727875, + -0.04388975724577904, + -0.05115009471774101, + 0.0769394263625145, + 0.03115895390510559, + 0.0362260639667511, + -0.06786400079727173, + 0.002276733750477433, + 0.0667547807097435, + -0.03499079868197441, + 0.021692782640457153, + 0.023331401869654655, + -0.002190076047554612, + 0.011375791393220425, + 0.05064590647816658, + -0.02011718787252903, + 0.0341336764395237, + -0.05959527939558029, + -0.015554267913103104, + 0.012207705527544022, + -0.05636846274137497, + -0.042276348918676376, + -0.01730632781982422, + -0.0025871258694678545, + 0.045125022530555725, + -0.01058169174939394, + 0.046864479780197144, + 0.01783572882413864, + -0.08893915265798569, + 0.03738570213317871, + -0.011293860152363777, + -0.009787592105567455, + -0.00977498758584261, + 0.0865190401673317, + -0.013524902053177357, + -0.007814948447048664, + -0.007373781409114599, + -0.02077263593673706, + -0.00829392857849598, + -0.017520608380436897, + 0.018743271008133888, + 0.021982692182064056, + -0.0001531280722701922, + 0.023154934868216515, + -0.017911355942487717, + -0.013663554564118385, + -0.03214212507009506, + 0.012837942689657211, + 0.06433466821908951, + -0.12150983512401581, + 0.03708318993449211, + 0.00437069870531559, + -0.04013353958725929, + 0.0017772704595699906, + -0.02858758345246315, + 0.018869318068027496, + 0.0031275548972189426, + 0.06004905328154564, + 0.019865093752741814, + 0.010033384896814823, + 0.0625700056552887, + 0.025839747861027718, + 0.019260065630078316, + -0.06251958757638931, + -0.0395033024251461, + -0.07209920138120651, + 0.03337739035487175, + 0.022411253303289413, + -0.011129998601973057, + 0.009390542283654213, + -0.05793145298957825, + -0.027352318167686462, + -0.05339374020695686, + 0.0356210358440876, + 0.036326903849840164, + -0.08399808406829834, + 0.02493220567703247, + -0.0033182017505168915, + 0.009674149565398693, + 0.05525924637913704, + -0.01058169174939394, + -0.05883899703621864, + -0.006062887143343687, + -0.02401205711066723, + 0.018894527107477188, + 0.05667097866535187, + 0.015768548473715782, + -0.08329222351312637, + 0.07098998129367828, + 0.059645701199769974, + 0.0013006530934944749, + -0.015302172861993313, + -0.0625700056552887, + -0.008476697839796543, + -0.025940585881471634, + 0.04454520344734192, + -0.01083378680050373, + -0.030377458781003952, + -0.008451487869024277, + 0.025675885379314423, + 0.07946037501096725, + 0.002139657037332654, + 0.013323226012289524, + 0.0021412328351289034, + 0.05031818151473999, + -0.006459936965256929, + 0.04663759469985962, + -0.0034820635337382555, + 0.03567145764827728, + 0.039528511464595795, + -0.07608229666948318, + 0.03655378893017769, + -0.005051355343312025, + 0.010461946949362755, + -0.0004000040062237531, + 0.02131463959813118, + -0.0014007033314555883, + -0.020823055878281593, + 0.026318728923797607, + -0.012358962558209896, + 0.05888941511511803, + 0.026545614004135132, + -0.03388158231973648, + -0.05394835025072098, + -0.06100701540708542, + 0.03254547715187073, + 0.04981398954987526, + 0.0034379467833787203, + 0.0021065697073936462, + -0.026066632941365242, + -0.09282141178846359, + -0.018478570505976677, + 0.045604001730680466, + 0.11152686923742294, + 0.04315868020057678, + -0.00877290964126587, + -0.093376025557518, + 0.019411321729421616, + 0.008394766598939896, + -0.004002009518444538, + -0.01754581928253174, + 0.11717379838228226, + 0.0019174983026459813, + -0.08001498132944107, + -0.0026076086796820164, + -0.004758295137435198, + -0.00922037847340107, + 0.06519179046154022, + 0.049259383231401443, + -0.0017457585781812668, + 0.004383303690701723, + 0.022915445268154144, + 0.037587378174066544, + 0.014218163676559925, + 0.016272738575935364, + -0.008256114087998867, + -0.021743202582001686, + -0.0005660322494804859, + 0.05636846274137497, + -0.015276962891221046, + 0.0014558491529896855, + -0.062217071652412415, + -0.034889962524175644, + -0.037915103137493134, + -0.013045920990407467, + 0.04325952008366585, + 0.00754394568502903, + -0.08374599367380142, + -0.0007838581805117428, + -0.07835115492343903, + -0.018806293606758118, + -0.011760236695408821, + 0.0964011624455452, + 0.0019269519252702594, + 0.058082710951566696, + 0.09781289845705032, + -0.09892211854457855, + 0.01540301088243723, + -0.06483885645866394, + -0.021907063201069832, + -0.06085575744509697, + 0.043410774320364, + 0.04986441135406494, + -0.11334195733070374, + -0.007342269644141197, + 0.0169155802577734, + -0.007537643425166607, + 0.04124275967478752, + 0.03181440010666847, + -0.025814538821578026, + 0.003649076446890831, + 0.026898546144366264, + 0.01933569461107254, + -0.016423994675278664, + 0.02238604426383972, + -0.0993758887052536, + 0.04426790028810501, + -0.01462151575833559, + 0.022726373746991158, + 0.0826367735862732, + -0.05034339055418968, + 0.09756080061197281, + 0.01652483455836773, + 0.0936785414814949, + -0.01828949898481369, + 0.04025958850979805, + -0.017697075381875038, + -0.025222115218639374, + -0.09534236788749695, + -0.03625127673149109, + -0.03597396984696388, + 0.00363332056440413, + 0.060452405363321304, + -0.03310008719563484, + -0.013272807002067566, + 0.05258703604340553, + -0.09403146803379059, + 0.020558355376124382, + 0.10078761726617813, + 0.0317387729883194, + 0.04139401391148567, + -0.030301829800009727, + 0.0023665428161621094, + 0.0042383489198982716, + 0.048503097146749496, + 0.04260407015681267, + 0.03194044902920723, + -0.0060408287681639194, + -0.03478912264108658, + 0.09019962698221207, + 0.04184778779745102, + -0.03781426325440407, + -0.004758295137435198, + 0.01861722208559513, + 0.004134359769523144, + -0.029268240556120872, + 0.00529084587469697, + 0.06388089805841446, + 0.031108535826206207, + -0.0013778572902083397, + -0.034259725362062454, + -0.0871240645647049, + 0.06680519878864288, + -0.03541935980319977, + 0.013323226012289524, + 0.030226202681660652, + -0.02457927167415619, + -0.008722490631043911, + 0.04325952008366585, + 0.03546978160738945, + -0.040814194828271866, + 0.013209783472120762, + -0.030881648883223534, + -0.03829324617981911, + -0.04436873644590378, + -0.04663759469985962, + -0.05576343461871147, + 0.06262042373418808, + 0.02684812806546688, + 0.04709136486053467, + -0.08883830904960632, + 0.0025619163643568754, + -0.033125296235084534, + 0.00514904223382473, + -0.08435101807117462, + -0.008363255299627781, + -0.051830753684043884, + -0.00974347535520792, + -0.08344347774982452, + 0.0010123193496838212, + -0.014104721136391163, + 0.09841792285442352, + -0.016928186640143394, + 0.04746950790286064, + -0.030579134821891785, + 0.0077393194660544395, + -0.028688421472907066, + 0.04202425107359886, + -0.013713973574340343, + -0.008300230838358402, + 0.0314362570643425, + 0.03917557746171951, + -0.022650744765996933, + -0.02275158278644085, + 0.03181440010666847, + -0.020495330914855003, + -0.02338181994855404, + -0.04252844303846359, + 0.005817094352096319, + 0.07149416953325272, + -0.026722081005573273, + 0.05762894079089165, + 0.05162907764315605, + -0.09448524564504623, + 0.004559770226478577, + 0.07411596179008484, + -0.02373475395143032, + -0.04618382081389427, + 0.06100701540708542, + 0.014016487635672092, + 0.024654900655150414, + 0.07285548001527786, + 0.0395033024251461, + 0.07436805218458176, + -0.01019094418734312, + 0.009169959463179111, + 0.04595693573355675, + -0.02939428761601448, + 0.04172173887491226, + -0.03816719725728035, + -0.09751038253307343, + -0.019562579691410065, + 0.04396538436412811, + 0.04003269970417023, + 0.010619506239891052, + -0.011539652943611145, + 0.07537643611431122, + -0.03239421918988228, + 0.0132475970312953, + 0.03975539654493332, + 0.07764528691768646, + 0.03388158231973648, + -0.03597396984696388, + 0.02301628328859806, + -0.058385223150253296, + 0.012176193296909332, + 0.02038188837468624, + -0.021844040602445602, + -0.05767935886979103, + -0.013550111092627048, + -0.02745315618813038, + 0.007254036609083414, + -0.0329236201941967, + 0.0264951940625906, + 0.07638481259346008, + 0.028209442272782326, + 0.034562237560749054, + 0.0727546438574791, + -0.03768821805715561, + 0.06988076120615005, + -0.01598282903432846, + -0.01924746111035347, + -0.0017977531533688307, + -0.012377869337797165, + 0.0673598125576973, + -0.028032975271344185, + -0.058990251272916794, + 0.019058389589190483, + -0.1038631796836853, + -0.0760318785905838, + -0.04454520344734192, + -0.028638003394007683, + 0.032167334109544754, + -0.007304455619305372, + -0.013436668552458286, + 0.04265449196100235, + 0.0016591008752584457, + -0.030604345723986626, + 0.033932000398635864, + -0.0004911915166303515, + -0.0314362570643425, + 0.034410979598760605, + 0.0748218223452568, + -0.13693805038928986, + -0.05591469258069992, + -0.017457585781812668, + -0.05077195167541504, + 0.05510798841714859, + -0.042881377041339874, + -0.012340054847300053, + 0.0035702968016266823, + -0.030881648883223534, + -0.00947247352451086, + -0.057124748826026917, + -0.017734890803694725, + 0.047998905181884766, + 0.09806499630212784, + -0.018604617565870285, + 0.0475955531001091, + -0.02586495690047741, + 0.09962797909975052, + 0.02307930588722229, + -0.0004293494566809386, + 0.041595689952373505, + 0.0006211780710145831, + -0.02517169527709484, + 0.044318318367004395, + -0.01730632781982422, + 0.011816957965493202, + -0.0011533350916579366, + -0.04036042466759682, + -0.00015027231711428612, + 0.037436120212078094, + -0.06312461197376251, + -0.10698916018009186, + 0.013121549971401691, + -0.08863663673400879, + -0.0005160071304999292, + 0.06186413764953613, + -0.03214212507009506, + 0.02185664512217045, + -0.02667166106402874, + 0.05969611927866936, + 0.018012193962931633, + -0.06559514254331589, + -0.013373645022511482, + 0.04157048091292381, + -0.059847377240657806, + 0.02166757360100746, + 0.013550111092627048, + 0.1032581552863121, + -0.03705798089504242, + -0.0064788442105054855, + -0.022789396345615387, + 0.00977498758584261, + 0.06483885645866394, + -0.015945015475153923, + -0.02101212553679943, + 0.0622674897313118, + -0.005867513362318277, + -0.020911287516355515, + -0.03415888547897339, + -0.003649076446890831, + 0.005375927779823542, + 0.022335626184940338, + -0.04827621206641197, + 0.008142671547830105, + -0.034108467400074005, + 0.05379709228873253, + 0.01898276060819626, + 0.03448661044239998 + ] + }, + { + "id": "4fe7a169-b6b2-4899-b30c-c46b6d5ff200", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "buchanansteven", + "reviewDate": "2022-08-19T15:05:11", + "stars": 5, + "verifiedUser": false + }, + { + "id": "38e80376-5b98-457d-bacf-812ccf81a601", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "joannabyrd", + "reviewDate": "2021-05-31T17:52:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "421cfa28-e26c-42a3-b8d4-e90b5a47c5b3", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "brownvanessa", + "reviewDate": "2022-10-09T20:51:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fd52bbca-6f58-41c7-80f9-4a54a86a06f2", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "uwhite", + "reviewDate": "2022-06-30T09:10:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8ea240c8-f405-4d35-93c8-02e616a8cce1", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "pamela63", + "reviewDate": "2021-12-03T15:48:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a6a06753-ec26-471d-95fe-9e397d6e8e84", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "wendy71", + "reviewDate": "2021-05-19T03:41:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "fddfb778-17b1-419c-be45-0a859eee70ce", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "gpope", + "reviewDate": "2022-03-27T00:04:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8beabc43-b7e5-4d3b-9b5d-56a7b8bd3999", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "deborahvincent", + "reviewDate": "2021-03-21T07:33:50", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d6719245-feea-4c4f-96ce-739255a3523f", + "productId": "56f0f25f-457e-4e2a-add7-e0ab9fcb8d65", + "category": "Media", + "docType": "customerRating", + "userName": "munozvincent", + "reviewDate": "2022-07-04T04:22:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "productId": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone + (Silver)", + "description": "This Amazing Phone + (Silver) is sold separately\n\nBuy from Amazon.com and Save $5 on it\n\nYou may save 1.75$ on shipping if you add an Sender Certificate & Check in to our shipping page.\n\nSave $5 on shipping", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-03-02T03:55:56", + "price": 607.06, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-01-14T13:51:18", + "newPrice": 627.95 + }, + { + "priceDate": "2021-05-21T13:51:18", + "newPrice": 555.35 + }, + { + "priceDate": "2021-09-25T13:51:18", + "newPrice": 629.88 + }, + { + "priceDate": "2022-01-30T13:51:18", + "newPrice": 654.69 + }, + { + "priceDate": "2022-06-06T13:51:18", + "newPrice": 551.01 + }, + { + "priceDate": "2024-05-15T13:51:18", + "newPrice": 607.06 + } + ], + "descriptionVector": [ + -0.014669236727058887, + 0.016679609194397926, + -0.00036154285771772265, + 0.034759994596242905, + 0.03597918897867203, + -0.09701670706272125, + 0.04741885885596275, + 0.06734100729227066, + -0.026044055819511414, + 0.08352775126695633, + -0.026044055819511414, + -0.026121877133846283, + 0.005395581480115652, + -0.07522685825824738, + 0.043320294469594955, + 0.03232160955667496, + -0.06220482662320137, + -0.023333296179771423, + 0.006044088862836361, + 0.03522692248225212, + 0.054215215146541595, + -0.036342352628707886, + -0.06791169196367264, + 0.013865088112652302, + -0.005499342456459999, + -0.025175057351589203, + -0.02830086275935173, + 0.020389072597026825, + 0.032892294228076935, + -0.018806714564561844, + 0.003336570458486676, + -0.0007360558956861496, + -0.03722432255744934, + -0.01147858053445816, + -0.009182864800095558, + 0.06562894582748413, + 0.006523984018713236, + -0.02047986350953579, + -0.01679634116590023, + 0.02380022034049034, + 0.006478588562458754, + 0.003198762657120824, + -0.007594021502882242, + 0.0065628946758806705, + 0.0460180826485157, + 0.03172498196363449, + 0.016095953062176704, + -0.004186115227639675, + -0.04212703928351402, + -0.0064558908343315125, + -0.022555086761713028, + 0.0046303425915539265, + -0.07968858629465103, + -0.02998698130249977, + 0.07035008072853088, + 0.010985715314745903, + -0.01863810233771801, + 0.16996081173419952, + 0.034526534378528595, + -0.0013732144143432379, + -0.07501933723688126, + 0.06298303604125977, + 0.06334619969129562, + 0.06531766057014465, + -0.0029750275425612926, + 0.06531766057014465, + -0.03499345853924751, + 0.041660115122795105, + -0.03201032429933548, + -0.0008317106985487044, + 0.019169878214597702, + 0.021686086431145668, + -0.037950653582811356, + 0.011309968307614326, + -0.002965299878269434, + 0.08959777653217316, + 0.0012191939167678356, + 0.013274946250021458, + 0.03875480219721794, + -0.08518792688846588, + 0.015304774045944214, + -0.041478533297777176, + -0.018910475075244904, + -0.0005759556079283357, + -0.0020541471894830465, + -0.006932544056326151, + 0.03206220641732216, + -0.15076500177383423, + -0.005817111115902662, + 0.06998691707849503, + 0.041841696947813034, + -0.01948116160929203, + -0.001872565015219152, + -0.007704267743974924, + 0.03569384664297104, + 0.050453875213861465, + -0.013903997838497162, + 0.028871549293398857, + -0.012671833857893944, + -0.06064841151237488, + 0.022736668586730957, + -0.052399396896362305, + -0.03608294948935509, + -0.002699411939829588, + -0.031258054077625275, + 0.013878057710826397, + 0.00756808090955019, + -0.0403890386223793, + -0.03206220641732216, + -0.1283525824546814, + 0.0222438033670187, + 0.01234758086502552, + -0.03431900963187218, + 0.0697793960571289, + 0.09748362749814987, + -0.007509715389460325, + -0.009708155877888203, + -0.027652354910969734, + 0.030609548091888428, + -0.06298303604125977, + -0.08342398703098297, + -0.02132292278110981, + -0.020103728398680687, + 0.0421789214015007, + 0.06806733459234238, + 0.004108294378966093, + -0.002855053637176752, + 0.02684820629656315, + 0.05136178433895111, + -0.06702972203493118, + -0.041763875633478165, + 0.013683505356311798, + 0.03330733999609947, + 9.251363371731713e-05, + -0.07118017226457596, + 0.003463029395788908, + 0.05520094931125641, + 0.011355363763868809, + -0.057691216468811035, + -0.012101147323846817, + -0.03509721904993057, + -0.0003199978673364967, + 0.016225654631853104, + 0.05169900879263878, + 0.011420214548707008, + -0.025356639176607132, + -0.034007728099823, + -0.05546035245060921, + -0.045136112719774246, + -0.019779475405812263, + -0.0352788008749485, + -0.0935925841331482, + -0.04025933891534805, + -0.06490261852741241, + 0.022866370156407356, + -0.02490268275141716, + -0.018313847482204437, + -0.07258094847202301, + -0.02316468395292759, + 0.08804136514663696, + -0.020311251282691956, + -0.008346290327608585, + -0.036368295550346375, + -0.04430602490901947, + -0.08249013870954514, + -0.006394282914698124, + 0.07859909534454346, + 0.057535573840141296, + -0.09037598967552185, + 0.08062243461608887, + 0.0063521298579871655, + -0.020726295188069344, + -0.011024625040590763, + -0.06926058977842331, + 0.001146236783824861, + 0.07232154160737991, + 0.027963638305664062, + 0.01590140163898468, + 0.009377417154610157, + -0.023891011252999306, + 0.010603095404803753, + 0.0357976071536541, + 0.003401421243324876, + -0.025149116292595863, + -0.024202294647693634, + -0.027341071516275406, + -0.02840462327003479, + -0.031699039041996, + 0.007127095945179462, + -0.03242537006735802, + -0.017367027699947357, + 0.004199085291475058, + -0.025577131658792496, + 0.03719838336110115, + 0.0406484417617321, + 0.021465593948960304, + 0.0460180826485157, + 0.04230862110853195, + -0.05566787347197533, + 0.009435782209038734, + 0.03188062459230423, + 0.070557601749897, + 0.05156930536031723, + -0.08046679198741913, + -0.008346290327608585, + -0.029857279732823372, + -0.05743181332945824, + -0.02019451931118965, + 0.0020395556930452585, + -0.0008860232192091644, + -0.05520094931125641, + 0.050817038863897324, + 0.03154340013861656, + 0.0007522685336880386, + 0.099714495241642, + 0.04376127943396568, + -0.0052756075747311115, + -0.01592734083533287, + -0.0718546211719513, + -0.019169878214597702, + -0.05348888784646988, + -0.008878066204488277, + -0.011640707030892372, + 0.0067509617656469345, + 4.0911694668466225e-05, + -0.05180276930332184, + 0.03193250298500061, + 0.06531766057014465, + 0.0815562903881073, + 0.02392992191016674, + -0.05898823216557503, + -0.0948377177119255, + 0.00940984208136797, + -0.06412441283464432, + -0.0779765248298645, + 0.08638118207454681, + -0.010784678161144257, + 0.021076489239931107, + -0.05182870849967003, + 0.05457838252186775, + 0.007127095945179462, + -0.052321575582027435, + -0.01075225230306387, + -0.014059639535844326, + 0.0196886844933033, + -0.032632891088724136, + 0.02856026589870453, + 0.03312575817108154, + -0.07320351153612137, + 0.05691300705075264, + -0.034682173281908035, + -0.03354080021381378, + -0.043605636805295944, + 0.005152391269803047, + 0.040103696286678314, + 0.023579727858304977, + 0.03014262206852436, + 0.011154326610267162, + 0.023787250742316246, + -0.009325535967946053, + -0.029623817652463913, + -0.053903933614492416, + -0.005904659628868103, + 0.0843578428030014, + -0.034630294889211655, + -0.005560950841754675, + -0.03704274073243141, + -0.08036303520202637, + -0.029286593198776245, + 0.03914390504360199, + -0.018248997628688812, + -0.07284034788608551, + 0.05696488916873932, + -0.07865097373723984, + -0.05810626223683357, + 0.0022584269754588604, + -0.11953288316726685, + 0.06479885429143906, + -0.011141357012093067, + -0.004023988265544176, + -0.012619953602552414, + -0.001060309587046504, + 0.0820750966668129, + -0.03748372569680214, + -0.015408535487949848, + -0.043605636805295944, + -0.07590130716562271, + 0.019092056900262833, + -0.06863801926374435, + -0.04095972701907158, + -0.0011519112158566713, + -0.05815814062952995, + 0.07444864511489868, + 0.04251614212989807, + 0.08980530500411987, + 0.01937740109860897, + 0.0810374841094017, + 0.023424087092280388, + -0.06106345355510712, + 0.046874113380908966, + 0.01671851985156536, + 0.01853434182703495, + -0.06557706743478775, + -0.004098566714674234, + -0.019001265987753868, + 0.052321575582027435, + -0.01697792299091816, + 0.04477294906973839, + 0.006809327285736799, + 0.017652370035648346, + 0.10843043029308319, + -0.05520094931125641, + -0.0304279662668705, + -0.05312572419643402, + -0.03875480219721794, + -0.0966535434126854, + -0.00898831244558096, + 0.022749638184905052, + 0.04453948512673378, + 0.005723077803850174, + 0.03442277014255524, + -0.05294414237141609, + 0.010888438671827316, + 0.011582341976463795, + 0.03709462285041809, + -0.02871590666472912, + -0.032944176346063614, + -0.07258094847202301, + -0.01105705089867115, + 0.027678294107317924, + -0.05089486017823219, + -0.03514910116791725, + 0.07553813606500626, + 0.0041212644428014755, + -0.007710752543061972, + -0.0028826151974499226, + 0.06319055706262589, + 0.09520088136196136, + 0.036601755768060684, + 0.02326844446361065, + 0.029857279732823372, + 0.017016833648085594, + -0.020415011793375015, + 0.0024481152649968863, + -0.01989620551466942, + 0.00835925992578268, + 0.017470788210630417, + -0.006958484183996916, + 0.027185428887605667, + -0.0424383245408535, + 0.0015377731760963798, + -0.01577170006930828, + 0.03569384664297104, + -0.001591274980455637, + 0.0746561661362648, + -0.02490268275141716, + -0.04435790330171585, + -0.022075191140174866, + -0.025123175233602524, + -0.03203626349568367, + -0.04988318681716919, + 0.03022044338285923, + 0.012840446084737778, + 0.006264581345021725, + 0.017522668465971947, + 0.07802841067314148, + -0.014461714774370193, + 0.06070028990507126, + 0.006789872422814369, + -0.04306089133024216, + -0.033073876053094864, + -0.01569387875497341, + -0.06355372071266174, + -0.029182832688093185, + -0.06210106611251831, + -0.006264581345021725, + 0.09156924486160278, + -0.003158231033012271, + -0.002619969891384244, + 0.023735370486974716, + 0.019546013325452805, + 0.020077789202332497, + -0.07040195912122726, + -0.003221460385248065, + 0.0810374841094017, + 0.023385176435112953, + -0.022542117163538933, + 0.09105043858289719, + -0.04077814519405365, + 0.014409833587706089, + -0.1178727000951767, + 0.04606996476650238, + -0.0015329093439504504, + 0.06754852831363678, + 0.038339756429195404, + -0.03968865051865578, + 0.04425414279103279, + 0.07066136598587036, + 0.0851360484957695, + -0.0007072783773764968, + 0.08332023024559021, + -0.020285310223698616, + 0.03138775750994682, + -0.021024608984589577, + -0.018949385732412338, + -0.11590123921632767, + 0.03730214387178421, + -0.014370923861861229, + -0.045291755348443985, + -0.07766524702310562, + -0.030920831486582756, + 0.03027232363820076, + -0.0003230377333238721, + -0.01664069853723049, + 0.050842978060245514, + 0.014487654902040958, + 0.08503228425979614, + -0.047081634402275085, + 0.04456542804837227, + -0.006815812550485134, + 0.007652387022972107, + 0.04376127943396568, + -0.004902715794742107, + 0.050687335431575775, + -0.05919575318694115, + -0.007814513519406319, + -0.0038034957833588123, + 0.06552518904209137, + -0.022762609645724297, + 0.0005435302737168968, + -0.01629050448536873, + -0.03587542846798897, + 0.05862506851553917, + -0.027263250201940536, + -0.006718536373227835, + 0.014267162419855595, + -0.02679632417857647, + -0.011699073016643524, + -0.04993506893515587, + -0.003313872730359435, + -0.01616080477833748, + -0.01795068383216858, + -0.07154333591461182, + -0.03245130926370621, + -0.07434488832950592, + -0.023631608113646507, + -0.0526588000357151, + 0.006381312385201454, + 0.014150431379675865, + -0.04811924695968628, + -0.09774303436279297, + 0.009584939107298851, + -0.06910494714975357, + -0.0013399784220382571, + -0.014526565559208393, + -0.016498027369379997, + -0.05665360391139984, + 0.061374738812446594, + -0.09675730019807816, + 0.002976648975163698, + 0.00047705823089927435, + 0.02587544359266758, + -0.017224356532096863, + -0.029623817652463913, + 0.029001250863075256, + -0.05154336616396904, + -0.02822304144501686, + -0.0008925083093345165, + -0.005175088997930288, + 0.02561604231595993, + -0.023579727858304977, + -0.034759994596242905, + 0.06972751021385193, + -0.0019439008319750428, + -0.009578454308211803, + -0.03377426415681839, + 0.019623832777142525, + -0.01605704240500927, + 0.01070037204772234, + -0.017172476276755333, + 0.04440978541970253, + 0.03328139707446098, + 0.0299091599881649, + 0.0242930855602026, + -0.0013699717819690704, + -0.08601801842451096, + -0.03904014453291893, + -0.050505753606557846, + 0.07149145007133484, + 0.06293115764856339, + 6.206418038345873e-05, + 0.009850827045738697, + 0.019922146573662758, + 0.048612114042043686, + -0.03232160955667496, + -0.02313874289393425, + 0.026951966807246208, + -0.06806733459234238, + -0.034708116203546524, + 0.022749638184905052, + -0.04479888826608658, + 0.0051134806126356125, + -0.00872890930622816, + -0.01063552126288414, + 0.01503240130841732, + -0.043553754687309265, + -0.04472107067704201, + -0.02313874289393425, + 0.006170547567307949, + 0.003401421243324876, + 0.011614766903221607, + 0.008657573722302914 + ] + }, + { + "id": "457b5eb8-43de-4831-86e4-dff36d8f16fb", + "productId": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "category": "Electronics", + "docType": "customerRating", + "userName": "jasoncollins", + "reviewDate": "2021-01-27T13:33:52", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0c2dd143-9569-48ec-9b1e-c0b4c718174b", + "productId": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleymoore", + "reviewDate": "2021-01-14T13:51:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9df492d5-36ca-4709-b1db-a130163ebc9d", + "productId": "87244fc4-56dc-40f6-985b-ce6f0da2fb74", + "category": "Electronics", + "docType": "customerRating", + "userName": "jgallagher", + "reviewDate": "2022-06-10T08:13:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76783c51-7ed8-48fd-baa6-fa193b3e62b8", + "productId": "76783c51-7ed8-48fd-baa6-fa193b3e62b8", + "category": "Other", + "docType": "product", + "name": "Luxe Filter 3000 (Silver)", + "description": "This Luxe Filter 3000 (Silver) is recommended for those looking for superior filtering power when you want to be at the peak of your visual experience. In this filter, you use three main types of filters to achieve the same result. In this Filter3000, you can choose between two different filter types for each layer", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-04-26T10:58:55", + "price": 773.35, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-07-15T12:27:10", + "newPrice": 821.9 + }, + { + "priceDate": "2021-10-25T12:27:10", + "newPrice": 809.47 + }, + { + "priceDate": "2022-02-04T12:27:10", + "newPrice": 739.72 + }, + { + "priceDate": "2022-05-17T12:27:10", + "newPrice": 726.73 + }, + { + "priceDate": "2023-09-28T12:27:10", + "newPrice": 773.35 + } + ], + "descriptionVector": [ + 0.015508105978369713, + 0.021315105259418488, + -0.041619110852479935, + 0.027081115171313286, + 0.011805289424955845, + -0.02187531068921089, + -0.0668419897556305, + 0.027422703802585602, + 0.025906052440404892, + 0.05979160591959953, + 0.003641330637037754, + -0.004485053475946188, + 0.015699395909905434, + -0.037684015929698944, + 0.021151144057512283, + 0.007330483756959438, + -0.08547904342412949, + 0.0002063406427623704, + -0.03096155822277069, + -0.031125521287322044, + 0.01582236774265766, + -0.02954055182635784, + -0.055637892335653305, + -0.019894098863005638, + 0.005711355246603489, + -0.007617417722940445, + 0.027504684403538704, + -0.02098718099296093, + -0.03396753594279289, + -0.03361228108406067, + 0.10121943056583405, + 0.04692056030035019, + 0.062305696308612823, + 0.05091031268239021, + -0.10274974256753922, + -0.08449526876211166, + 0.08810243755578995, + -0.001237403368577361, + 0.05733216926455498, + 0.058479905128479004, + -0.015412461012601852, + 0.004040989093482494, + -0.05509135127067566, + -0.008976939134299755, + 0.009851404465734959, + -0.0785379707813263, + -0.01785823330283165, + -0.009140901267528534, + -0.01694277673959732, + -0.04038939252495766, + 0.02874806709587574, + -0.016614852473139763, + -0.0829649493098259, + -0.007118699140846729, + 0.005157982464879751, + -0.05984625965356827, + 0.034049514681100845, + 0.21894440054893494, + 0.054927390068769455, + 0.01936122216284275, + 0.06312550604343414, + -0.07012123614549637, + -0.0248129703104496, + -0.0045499554835259914, + -0.0861348882317543, + -0.06328947097063065, + -0.01867804490029812, + -0.03672756627202034, + -0.01725703850388527, + 0.001849700347520411, + -0.05678562819957733, + -0.01634158194065094, + 0.03954225406050682, + 0.012652428820729256, + 0.03175404295325279, + 0.063836008310318, + 0.09334923326969147, + -0.06203242391347885, + -0.009550807066261768, + -0.010582403279840946, + 0.02764132060110569, + 0.042520903050899506, + -0.03995215892791748, + -0.002806147327646613, + 0.02775062806904316, + 0.011859944090247154, + 0.011511523276567459, + -0.0728539377450943, + -0.012577278539538383, + 0.018609726801514626, + 0.03276514261960983, + 0.07148758322000504, + 0.019402211531996727, + -0.09728433191776276, + -0.002355250995606184, + 0.035361215472221375, + -0.01497522834688425, + 0.025195548310875893, + -0.05528264120221138, + 0.009899226948618889, + -0.030114419758319855, + -0.03432278707623482, + -0.012816390953958035, + 0.00572160305455327, + 0.06072072684764862, + 0.022954730316996574, + -0.03541586920619011, + -0.07432959973812103, + -0.006500424351543188, + -0.12144145369529724, + 0.019429538398981094, + -0.057058900594711304, + -0.031316809356212616, + -0.038585808128118515, + 0.021656693890690804, + 0.03328435868024826, + -0.07913916558027267, + -0.01713406667113304, + 0.06427324563264847, + -0.012297176755964756, + 0.026698537170886993, + 0.05820663645863533, + 0.05984625965356827, + -0.042411595582962036, + -0.04943465068936348, + 0.0012758320663124323, + 0.058971792459487915, + -0.004256189335137606, + 0.05118358135223389, + -0.0008356102043762803, + -0.06782576441764832, + 0.04459775984287262, + 0.03199998661875725, + 0.033038415014743805, + -0.09936118870973587, + 0.10373351722955704, + -0.024362074211239815, + 0.09116306900978088, + -0.020222023129463196, + 0.08433130383491516, + -0.01467463094741106, + -0.03609904646873474, + -0.04580014944076538, + 0.019347557798027992, + 0.040307413786649704, + -0.08651746809482574, + -0.05919041112065315, + 0.05345172807574272, + -0.03987018018960953, + -0.007576426956802607, + 0.0731818675994873, + -0.0785379707813263, + 0.001043552067130804, + -0.041427820920944214, + 0.04028008505702019, + 0.006869339384138584, + -0.05602047219872475, + 0.028474796563386917, + 0.02391117624938488, + -0.018541410565376282, + 0.0073646423406898975, + -0.015713058412075043, + -0.03825788199901581, + 0.04752175509929657, + 0.04897008836269379, + 0.07361909747123718, + 0.02038598619401455, + 0.024348409846425056, + -0.08892224729061127, + 0.03825788199901581, + 0.010145170614123344, + -0.0284474678337574, + 0.0001067463235813193, + 0.012126382440328598, + -0.03500596433877945, + -0.028611430898308754, + 0.059900913387537, + -0.030688287690281868, + -0.026493584737181664, + -0.018896661698818207, + 0.001878735376521945, + 0.012208363972604275, + -0.05096496641635895, + -0.08023224771022797, + 0.06481978297233582, + -0.02511356770992279, + 0.034650709480047226, + -0.031918004155159, + 0.010548245161771774, + 0.020208360627293587, + 0.03235523775219917, + 0.0496259406208992, + 0.045253608375787735, + 0.05386163294315338, + -0.05194874107837677, + -0.010548245161771774, + -0.038503825664520264, + -0.06645940989255905, + 0.05077367648482323, + -0.033557627350091934, + -0.04238427057862282, + 0.038667790591716766, + 0.03025105409324169, + 0.02945856936275959, + 0.04153712838888168, + -0.007542268373072147, + 0.050992291420698166, + 0.041701093316078186, + -0.02399315871298313, + -0.02309136465191841, + 0.015904348343610764, + 0.024881286546587944, + -0.04784968122839928, + 0.0015789916506037116, + 0.032245930284261703, + 0.01582236774265766, + -0.005998289678245783, + -0.00868317298591137, + -0.015016218647360802, + -0.021943628787994385, + 0.05864387005567551, + -0.03497863560914993, + 0.01735268346965313, + -0.003614003537222743, + 0.008184454403817654, + 0.024990595877170563, + 0.044433798640966415, + 0.05820663645863533, + 0.03670024126768112, + 0.022941065952181816, + -0.004170792642980814, + 0.014524332247674465, + 0.005550808738917112, + 0.028174197301268578, + -0.009899226948618889, + -0.009038425050675869, + -0.055747199803590775, + -0.07487614452838898, + 0.01996241696178913, + 0.008942780084908009, + 0.05175745114684105, + -0.030906904488801956, + -0.03467803820967674, + 0.00244577182456851, + 0.058862484991550446, + -0.02068658359348774, + 0.05640305206179619, + -0.021643031388521194, + -0.0057865045964717865, + -0.014346705749630928, + -0.0022442347835749388, + 0.051511507481336594, + -0.08433130383491516, + 0.09384112060070038, + -0.022449178621172905, + 0.0701758861541748, + -0.028310833498835564, + -0.015986328944563866, + -0.11258748173713684, + -0.05520065873861313, + -0.016122965142130852, + 0.038667790591716766, + 0.053424399346113205, + 0.014169080182909966, + -0.051292888820171356, + -0.05517333373427391, + 0.0030042685102671385, + -0.04549955204129219, + -0.010117843747138977, + 0.016901785507798195, + -0.02964985929429531, + -0.01906062290072441, + -0.017516644671559334, + 0.0016344997566193342, + -0.0038087088614702225, + 0.02389751374721527, + -0.0349239818751812, + 0.007016222458332777, + -0.008956443518400192, + -0.06930141896009445, + 0.08624419569969177, + 0.02926728129386902, + 0.0033048661425709724, + -0.008792481385171413, + 0.09597263485193253, + -0.0017677191644906998, + 0.08750124275684357, + -0.026192985475063324, + -0.016696833074092865, + -0.03194533288478851, + -0.009461994282901287, + -0.023364635184407234, + 0.018937652930617332, + -0.1035149022936821, + 0.03806659206748009, + -0.01497522834688425, + 0.03470536693930626, + -0.002059777034446597, + 0.0009137485176324844, + 0.009017929434776306, + -0.06006487458944321, + 3.6400495446287096e-05, + -0.001673782360740006, + -0.0873919352889061, + -0.05375232547521591, + 0.13816560804843903, + -0.0024662672076374292, + 0.0496259406208992, + -0.06481978297233582, + -0.050199806690216064, + 0.0415644571185112, + 0.015371470712125301, + -0.014824929647147655, + -0.0090862475335598, + 0.05495471507310867, + -0.025086240842938423, + 0.008034155704081059, + 0.03210929408669472, + 0.01200341060757637, + 0.03642696887254715, + -0.0157267227768898, + -0.00037467959919013083, + 0.013800164684653282, + 0.035661812871694565, + 0.03251919895410538, + -0.018227148801088333, + -0.03134413808584213, + -0.022121254354715347, + -0.02130144275724888, + -0.04358666017651558, + -0.029923129826784134, + -0.019224585965275764, + -0.04670194536447525, + -0.03331168368458748, + -0.016970103606581688, + -0.03246454522013664, + -0.005827495362609625, + 0.024239102378487587, + -0.04041672125458717, + -0.016614852473139763, + 0.048778802156448364, + 0.02288641221821308, + -0.01367036160081625, + -0.010657552629709244, + 0.057660095393657684, + -0.03711014613509178, + -0.00685909204185009, + -0.03700083866715431, + 0.06711525470018387, + 0.06001022085547447, + 0.0018155415309593081, + -0.022462842985987663, + 0.028802720829844475, + -0.02866608463227749, + 0.05192141234874725, + 0.002152005909010768, + 0.07061312347650528, + -0.0181724950671196, + 0.004908623173832893, + 0.04580014944076538, + -0.0010537997586652637, + -0.01155934575945139, + 0.008553369902074337, + 0.0371374748647213, + -0.06410928070545197, + 0.12395554035902023, + -0.03563448414206505, + -0.006237401161342859, + -0.0060973502695560455, + -0.014032444916665554, + -0.015344143845140934, + -0.026575565338134766, + -0.045253608375787735, + 0.07624249160289764, + -0.021438077092170715, + -0.015781376510858536, + 0.10182062536478043, + 0.009523480199277401, + -0.03746539726853371, + 0.047658391296863556, + -0.0031152847222983837, + 0.06514771282672882, + 0.0524679534137249, + -0.016683170571923256, + 0.04702986776828766, + 0.004338170867413282, + -0.05435352027416229, + 0.011327066458761692, + -0.0512109100818634, + -0.011620831675827503, + -0.00013503410445991904, + -0.03915967419743538, + 0.01937488466501236, + 0.033530302345752716, + -0.04301279038190842, + 0.011859944090247154, + -0.0003744661225937307, + 0.03976087272167206, + 0.08733727782964706, + -0.10165666043758392, + -0.03169938921928406, + -0.0021093073301017284, + -0.041919708251953125, + -0.046865906566381454, + -0.012905203737318516, + 0.015904348343610764, + 0.061376575380563736, + -0.018213484436273575, + -0.0025533721782267094, + -0.07678903639316559, + 0.0032348406966775656, + -0.07646111398935318, + -0.010076853446662426, + 0.013772837817668915, + 0.01341075450181961, + 0.025564463809132576, + 0.021834319457411766, + 0.044242508709430695, + 0.042411595582962036, + -0.05476342514157295, + 0.002034157980233431, + 0.10826981067657471, + -0.014988891780376434, + -0.0010426981607452035, + -0.0058719017542898655, + 0.007678903639316559, + 0.03823055699467659, + -0.02150639519095421, + 0.058042675256729126, + -0.0018650718266144395, + 0.06498374789953232, + -0.029786493629217148, + -0.0256054550409317, + -0.04331338778138161, + -0.006233985535800457, + -0.011914597824215889, + 0.03812124580144882, + 0.05951833352446556, + -0.03137146309018135, + 0.02693081647157669, + 0.007214343640953302, + -0.04022543132305145, + -0.0025226292200386524, + 0.06771644949913025, + -0.07678903639316559, + -0.0979948341846466, + -0.05112892761826515, + 0.03932363912463188, + -0.06640475243330002, + -0.009011098183691502, + -0.0032006818801164627, + 0.0010546536650508642, + -0.06727921962738037, + 0.019689146429300308, + 0.06766179949045181, + -0.010233983397483826, + -0.030415017157793045, + 0.07367375493049622, + 0.07979501038789749, + -0.012741241604089737, + -0.03965156152844429, + 0.09187357127666473, + 0.0350879430770874, + -0.05380697920918465, + -0.0019265576265752316, + 0.039706215262413025, + -0.13729114830493927, + -0.0007087956182658672, + 0.023733550682663918, + 0.0010563615942373872, + -0.006336461752653122, + -0.015275825746357441, + 0.00025982054648920894, + 0.035771120339632034, + -0.015303153544664383, + -0.0004931680159643292, + 0.023952167481184006, + -0.009803582914173603, + 0.04407854750752449, + -0.01559008751064539, + 0.021014507859945297, + 0.01582236774265766, + 0.010022198781371117, + 0.07241670787334442, + 0.03962423652410507, + 0.034951306879520416, + 0.07487614452838898, + 0.0349239818751812, + 0.02803756296634674, + 0.04541757330298424, + -0.0068795871920883656, + -0.01855507306754589, + -0.048368893563747406, + -0.0248129703104496, + -0.05416223034262657, + -0.018213484436273575, + -0.04842354729771614, + -0.015467115677893162, + -0.028802720829844475, + 0.00776771642267704, + 0.04760373756289482, + 0.04569084197282791, + -0.02018103376030922, + -0.022954730316996574, + -0.028092216700315475, + 0.06995727121829987, + 0.0018070017686113715, + -0.03762936219573021, + -0.0459914393723011, + -0.0630708560347557, + 0.02190263755619526, + 0.02168402075767517 + ] + }, + { + "id": "247a5211-055c-412b-872a-ac44125962fc", + "productId": "76783c51-7ed8-48fd-baa6-fa193b3e62b8", + "category": "Other", + "docType": "customerRating", + "userName": "hayesjulie", + "reviewDate": "2022-05-17T20:57:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "120fe327-5276-432e-b87e-5991dacd10e4", + "productId": "76783c51-7ed8-48fd-baa6-fa193b3e62b8", + "category": "Other", + "docType": "customerRating", + "userName": "tammy79", + "reviewDate": "2021-07-15T12:27:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "545aaaf3-5480-420a-b26a-6161815adf32", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Super (Silver)", + "description": "This Luxe Speaker Super (Silver) is a 2.3-liter turbocharged 3.4:1 that is rated at 5,300 rpm and boasts an effective power curve of 3.8:1.\n\nEngine\n\nFour-speed automatic transmission\n\nEngine displacement: 3,350 cc (", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-07-01T04:27:36", + "price": 138.81, + "stock": 79, + "priceHistory": [ + { + "priceDate": "2021-06-26T00:37:17", + "newPrice": 131.45 + }, + { + "priceDate": "2021-10-31T00:37:17", + "newPrice": 134.61 + }, + { + "priceDate": "2022-03-07T00:37:17", + "newPrice": 139.66 + }, + { + "priceDate": "2022-07-12T00:37:17", + "newPrice": 151.42 + }, + { + "priceDate": "2022-11-16T00:37:17", + "newPrice": 149.3 + }, + { + "priceDate": "2024-12-10T00:37:17", + "newPrice": 138.81 + } + ], + "descriptionVector": [ + 0.03478473052382469, + 0.00844846572726965, + -0.04331142455339432, + -0.01964789628982544, + -0.06393714994192123, + -0.0037059818860143423, + -0.04920448735356331, + 0.0488133542239666, + -0.02100382372736931, + 0.03838315233588219, + 0.045423537492752075, + 0.042633458971977234, + -0.03165566921234131, + 0.006359165068715811, + 0.0010788742220029235, + 0.033507030457258224, + -0.10190309584140778, + 0.00020677065185736865, + 0.0244066771119833, + -0.04526708647608757, + 0.056896764785051346, + -0.035775601863861084, + -0.03715760260820389, + 0.005951735191047192, + -0.12359791994094849, + 0.01912638731300831, + 0.017822612076997757, + 0.03567129746079445, + -0.00807688944041729, + -0.06654470413923264, + 0.052542153745889664, + 0.030456196516752243, + 0.0023109421599656343, + 0.054497815668582916, + 0.006098410114645958, + -0.0375487357378006, + 0.08020827174186707, + -0.01010426040738821, + 0.017053384333848953, + 0.00498694134876132, + -0.01414596475660801, + 0.017144648358225822, + -0.05913925915956497, + -0.04273776337504387, + 0.04422406479716301, + -0.017614006996154785, + -0.023898204788565636, + 0.09783531725406647, + 0.06602319329977036, + 0.04610150307416916, + -0.038617830723524094, + 0.0362449586391449, + -0.09293311834335327, + 0.04216409847140312, + -0.003754873527213931, + -0.04182511940598488, + -0.040834248065948486, + 0.25428837537765503, + 0.00402866629883647, + 0.04234663024544716, + 0.057418275624513626, + -0.14717018604278564, + -0.047639958560466766, + 0.024445790797472, + -0.058513443917036057, + 0.0020485573913902044, + 0.019608784466981888, + 0.07979106158018112, + -0.05517578125, + 0.0778614729642868, + -0.02985646016895771, + 4.10994871344883e-05, + 0.006727481726557016, + 0.10044286400079727, + 0.1077440083026886, + -0.030195441097021103, + 0.02282910980284214, + -0.0011725830845534801, + -0.04803109169006348, + 0.05029965937137604, + 0.05569728836417198, + 0.010221600532531738, + -0.11337631940841675, + 0.03744443133473396, + 0.017966026440262794, + 0.025919057428836823, + -0.03353310748934746, + -0.12599687278270721, + -0.019791312515735626, + 0.06059948727488518, + -0.00951756164431572, + -0.008878711611032486, + 0.02732713520526886, + -0.010228118859231472, + 0.00781613402068615, + 0.008194229565560818, + -0.03327235206961632, + 0.022776957601308823, + -0.048656903207302094, + 0.008259417489171028, + 0.04065172001719475, + -0.009465410374104977, + -0.001238586730323732, + -0.009928250685334206, + 0.04868297651410103, + 0.07123829424381256, + 0.028787363320589066, + -0.016388459131121635, + 0.05496717616915703, + -0.03514978662133217, + 0.05089939758181572, + -0.0739501491189003, + 0.04584074765443802, + -0.08411959558725357, + 0.011355884373188019, + 0.022229373455047607, + 0.0314209908246994, + -0.047770336270332336, + -0.0029872755985707045, + -0.013168132863938808, + 0.03994768112897873, + 0.04370255395770073, + 0.0022343453019857407, + -0.0652930811047554, + 0.024198073893785477, + 0.00622226856648922, + 0.05595804378390312, + -0.030716951936483383, + -0.023233279585838318, + -0.00855276733636856, + -0.040834248065948486, + 0.09621863067150116, + -0.04792678728699684, + 0.04049526900053024, + 0.014211153611540794, + 0.01486304122954607, + -0.04850044846534729, + 0.07452380657196045, + 0.04479772597551346, + 0.024771735072135925, + -0.014706587418913841, + 0.022372787818312645, + 0.07546252757310867, + 0.030351893976330757, + -0.034289296716451645, + -0.0244066771119833, + -0.057731181383132935, + 0.0413036085665226, + -0.029413174837827682, + 0.03366348519921303, + 0.052411776036024094, + -0.022646579891443253, + -0.02977823279798031, + -0.018617914989590645, + -0.036557864397764206, + 0.040312737226486206, + -0.15269818902015686, + 0.022711768746376038, + 0.03170781955122948, + 0.07358509302139282, + 0.02204684354364872, + -0.01610162854194641, + -0.04065172001719475, + -0.011909989640116692, + 0.012288084253668785, + 0.04839614778757095, + 0.0013551117153838277, + 0.028709137812256813, + -0.08312872797250748, + -0.0017682455945760012, + 0.060651637613773346, + 0.011844800785183907, + -0.042059797793626785, + -0.038357075303792953, + 0.05950431525707245, + -0.017692234367132187, + 0.013611416332423687, + 0.06701406091451645, + 0.05872204899787903, + -0.023950356990098953, + -0.004784855991601944, + -0.016388459131121635, + -0.019009046256542206, + -0.00551171088591218, + 0.052933286875486374, + 0.03801809251308441, + 0.05123837664723396, + 0.018956895917654037, + 0.00464795995503664, + 0.012509725987911224, + -0.01780957356095314, + 0.02043016254901886, + -0.023546185344457626, + 0.024589207023382187, + -0.055853743106126785, + 0.021238503977656364, + 0.03702722489833832, + 0.0026336265727877617, + 0.022594429552555084, + -0.022072918713092804, + -0.019348029047250748, + 0.05439351499080658, + -0.04792678728699684, + 0.013546227477490902, + -0.0826072171330452, + -0.027587890625, + -0.027952946722507477, + 0.1152537539601326, + -0.02335061877965927, + 0.01544973999261856, + 0.016036439687013626, + 0.03736620768904686, + -0.07520177215337753, + 0.057209670543670654, + 0.03491510823369026, + 0.018578801304101944, + -0.01611466519534588, + -0.004732705187052488, + 0.012887820601463318, + -0.05350694805383682, + 0.024563129991292953, + -0.02483692392706871, + -0.005234658718109131, + 0.0412253811955452, + -0.09788746386766434, + -0.05757472664117813, + 0.004458912182599306, + 0.02243797667324543, + 0.04803109169006348, + -0.07702706009149551, + 0.0362449586391449, + 0.07290712743997574, + -0.03614065796136856, + 0.06915225088596344, + -0.014497984200716019, + -0.010612732730805874, + -0.027613965794444084, + -0.0438329316675663, + 0.00723595404997468, + 0.04208587482571602, + -0.04273776337504387, + -0.018174631521105766, + 0.044197991490364075, + -0.010462798178195953, + 0.021642673760652542, + -0.011603602208197117, + 0.08907394111156464, + -0.06351993978023529, + -0.027692191302776337, + -0.0175097044557333, + -0.03666216880083084, + -0.03342880308628082, + -0.02003902941942215, + 0.014563172124326229, + -0.002086040796712041, + 0.039087191224098206, + 0.04680554196238518, + 0.02810939960181713, + -0.013102944009006023, + 0.001274440553970635, + -0.06586673855781555, + -0.07634909451007843, + -0.00564208859577775, + 0.045293159782886505, + -0.07843513786792755, + 0.0014276341535151005, + -0.0010096111800521612, + 0.023467959836125374, + -0.008063851855695248, + -0.07415875047445297, + 0.0028731953352689743, + -0.0022408640943467617, + 0.014615323394536972, + 0.02318112924695015, + -0.03585382550954819, + -0.05919140949845314, + -0.047770336270332336, + 0.027040304616093636, + -0.013207245618104935, + -0.028604835271835327, + 0.07906094938516617, + 0.08490186184644699, + 0.035123713314533234, + -0.06800492852926254, + 0.02771826833486557, + -0.019426254555583, + 0.035514846444129944, + -0.009967363439500332, + 0.021903429180383682, + -0.011584045365452766, + 0.02554096281528473, + -0.017301101237535477, + 0.032020725309848785, + 0.04863082617521286, + -0.020547501742839813, + -0.009778316132724285, + 0.07337648421525955, + -0.09371538460254669, + -0.027405360713601112, + 0.020052067935466766, + -0.03421106934547424, + 0.08964760601520538, + 0.026179812848567963, + -0.06263337284326553, + -0.014067738316953182, + 0.04946524277329445, + 0.0244066771119833, + 0.01593213714659214, + -0.11243759840726852, + -0.015658343210816383, + 0.020156368613243103, + 0.017470592632889748, + -0.03251616284251213, + 0.018813481554389, + 0.06477157026529312, + 0.030351893976330757, + 0.019087273627519608, + 0.001310294377617538, + -0.005919140763580799, + 0.043363574892282486, + -0.02239886298775673, + -0.01270529255270958, + -0.08224216103553772, + 0.007059944327920675, + 0.013083387166261673, + -0.0056094941683113575, + -0.019439293071627617, + -0.02213810756802559, + 0.0006433317321352661, + 0.04078209772706032, + 0.02474565990269184, + 0.018539687618613243, + -0.015567080117762089, + 0.002459246665239334, + -0.01771830953657627, + -0.0073924073949456215, + 0.0006975199212320149, + 0.02269873209297657, + -0.012842188589274883, + -0.08630993962287903, + 0.04852652549743652, + 0.04649263620376587, + -0.05173381417989731, + 0.027692191302776337, + 0.03316804766654968, + -0.0013437035959213972, + 0.01272484939545393, + 0.001060947310179472, + -0.006528655998408794, + 0.017444515600800514, + 0.0015694197500124574, + -0.04680554196238518, + 0.057991936802864075, + -0.0065482123754918575, + 0.007750945631414652, + -0.02221633493900299, + -0.046336181461811066, + -0.015997326001524925, + 0.016297193244099617, + 0.000732151442207396, + 0.012385867536067963, + 0.017470592632889748, + 0.038617830723524094, + 0.014172039926052094, + 0.01091260090470314, + 0.04803109169006348, + 0.04800501465797424, + -0.03658394142985344, + -0.03431537002325058, + 0.03958262503147125, + -0.01833108440041542, + -0.033767785876989365, + -0.019217651337385178, + 0.03316804766654968, + 0.006023442838340998, + 0.024563129991292953, + 0.04870905354619026, + -0.002002925146371126, + 0.0263623408973217, + 0.05102977529168129, + -0.000546363415196538, + 0.04714452102780342, + 0.052542153745889664, + -0.03955654799938202, + -0.003569085383787751, + 0.004928271286189556, + -0.027092454954981804, + -0.03003898821771145, + -0.0362449586391449, + 0.007698794361203909, + 0.027666116133332253, + -0.01585390977561474, + 0.010795261710882187, + -0.023846054449677467, + 0.01398951094597578, + -0.0002650331298355013, + -0.026336265727877617, + 0.003921105060726404, + -0.023428846150636673, + -0.117861308157444, + -0.021251540631055832, + 0.01903512328863144, + -0.005909362342208624, + -0.05189026519656181, + -0.040834248065948486, + -0.019061198458075523, + -0.025071604177355766, + 0.003963477443903685, + -0.06763987243175507, + -0.06451081484556198, + -0.012496688403189182, + -0.06404145061969757, + 0.025241093710064888, + -0.05528008192777634, + 0.04868297651410103, + -0.02509767934679985, + 0.019100312143564224, + 0.008650550618767738, + -0.021069012582302094, + -0.055905893445014954, + -0.027926871553063393, + 0.07071678340435028, + 0.017040345817804337, + -0.01398951094597578, + 0.014419756829738617, + -0.013650530017912388, + 0.06863074004650116, + 0.0003055723791476339, + 0.03741835802793503, + -0.051707737147808075, + -0.06216401606798172, + -0.04125145822763443, + -0.013454963453114033, + -0.012770481407642365, + -0.03582775220274925, + -0.013155095279216766, + -0.02790079638361931, + -0.0026108105666935444, + -0.018357159569859505, + 0.07614049315452576, + 0.001944255200214684, + 0.014276341535151005, + 0.005997367203235626, + 0.018891707062721252, + -0.033324502408504486, + -0.08709220588207245, + 0.037340130656957626, + 0.021251540631055832, + -0.02915242128074169, + -0.007640124764293432, + -0.019269801676273346, + -0.00010776519775390625, + 0.03528016433119774, + 0.0004100781516171992, + 0.0027525960467755795, + 0.009928250685334206, + -0.01650579832494259, + 0.042581308633089066, + -0.06451081484556198, + -0.04281598702073097, + -0.05726182088255882, + 0.07932170480489731, + 0.06857859343290329, + 0.0006918158615007997, + 0.01619289256632328, + 0.0964793860912323, + -0.06185111030936241, + 0.028474457561969757, + -0.011408035643398762, + 0.007763983216136694, + 0.011975178495049477, + -0.009087315760552883, + 0.0275096632540226, + 0.03355918079614639, + -0.07061248272657394, + 0.005198804661631584, + 0.08949115127325058, + -0.028787363320589066, + 0.03812239691615105, + 0.037470508366823196, + 0.012125112116336823, + 0.021903429180383682, + 0.0688914954662323, + 0.04299851506948471, + 0.031108083203434944, + -0.06346779316663742, + 0.1314205676317215, + 0.019713085144758224, + -0.007405444979667664, + 0.059347860515117645, + -0.011186393909156322, + 0.010273750871419907, + -0.07650554925203323, + -0.004211194813251495, + -0.027379285544157028, + -0.07973890751600266, + 0.009237249381840229, + -0.009211174212396145, + -0.04221625253558159, + 0.07102969288825989, + 0.005309625994414091, + -0.0741066038608551, + -0.029752157628536224, + 0.0005516600213013589, + -0.024784771725535393, + 0.03671431913971901, + -0.03661001846194267, + -0.006512358784675598, + -0.04552784189581871, + 0.06910010427236557, + 0.07582758367061615, + 0.016492759808897972 + ] + }, + { + "id": "6e87b864-0222-459c-9f7c-49032a05b2a8", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "miguelroth", + "reviewDate": "2021-06-26T00:37:17", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d621d829-889e-425b-b7d0-a019168f8991", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "fgeorge", + "reviewDate": "2021-08-20T10:57:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "da8fec2d-a731-4d6f-bc20-bc6f39f9e293", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "gmoore", + "reviewDate": "2022-09-22T05:10:02", + "stars": 5, + "verifiedUser": false + }, + { + "id": "b4e32dd9-9593-4539-8b15-19f8c6866f69", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "dschwartz", + "reviewDate": "2021-10-18T06:30:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6651901b-376d-4768-8550-62e03e30ae00", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "jeffrey62", + "reviewDate": "2021-06-30T00:24:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eea47a4a-46e0-4817-a974-ec4ffad59a7e", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "lawrencestephanie", + "reviewDate": "2022-11-18T06:57:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f2a4ad8c-4760-4523-ad90-e0032c9d11fb", + "productId": "545aaaf3-5480-420a-b26a-6161815adf32", + "category": "Media", + "docType": "customerRating", + "userName": "tyler95", + "reviewDate": "2022-06-02T09:24:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c9aecc47-87ce-4461-a150-21b11a614501", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Ultra (Gold)", + "description": "This Premium Phone Ultra (Gold) is a new premium phone from Samsung. It features an ultra-low price and a new \"Ultra Ultra\" battery which can be turned off with a special button. The battery does not", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-25T02:02:11", + "price": 1056.32, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-06-02T11:02:16", + "newPrice": 1099.59 + }, + { + "priceDate": "2021-11-16T11:02:16", + "newPrice": 1114.14 + }, + { + "priceDate": "2022-05-02T11:02:16", + "newPrice": 1052.88 + }, + { + "priceDate": "2022-10-16T11:02:16", + "newPrice": 1120.7 + }, + { + "priceDate": "2022-12-07T11:02:16", + "newPrice": 1056.32 + } + ], + "descriptionVector": [ + -0.07260911166667938, + 0.001473527867347002, + 0.003898266702890396, + 0.03458331525325775, + 0.02686038799583912, + -0.021809911355376244, + -0.086696095764637, + 0.019748954102396965, + 0.05023300275206566, + 0.030642585828900337, + 0.08148708194494247, + -0.01600072905421257, + 0.06395761668682098, + 0.0032782810740172863, + 0.0634593665599823, + -0.033564161509275436, + -0.0577973946928978, + -0.04638286307454109, + 0.0633234828710556, + -0.00808529369533062, + 0.08588077127933502, + -0.010248166508972645, + -0.02797013521194458, + -0.05109362304210663, + -0.057525619864463806, + 0.0010913448641076684, + -0.02912517637014389, + 0.023734981194138527, + 0.09992245584726334, + -0.01612529158592224, + -0.02072281204164028, + -0.03573836013674736, + -0.0359874852001667, + 0.04787762463092804, + -0.05906567722558975, + 0.07818049192428589, + 0.019896164536476135, + -0.018424052745103836, + 0.09602702409029007, + 0.007649322506040335, + -0.0548078753054142, + -0.03114083781838417, + -0.051455989480018616, + 0.01816360093653202, + 0.03512686491012573, + -0.08049057424068451, + 0.004048308823257685, + 0.07754635065793991, + -0.03655368089675903, + -0.015083489939570427, + -0.01927334815263748, + 0.0032018444035202265, + -0.008679800666868687, + 0.04959886148571968, + 0.01799374260008335, + -0.020847376435995102, + -0.028943993151187897, + 0.06318759173154831, + 0.05163717269897461, + 0.013826532289385796, + 0.01016323734074831, + -0.033337682485580444, + 0.018129630014300346, + 0.0402679368853569, + -0.0024077529087662697, + 0.05652911588549614, + 0.015094813890755177, + -0.027494529262185097, + -0.009370561689138412, + 0.10934397578239441, + -0.01885436289012432, + 0.018276840448379517, + 0.018797742202878, + 0.03976968303322792, + -0.0288307536393404, + 0.05652911588549614, + 0.028717514127492905, + -0.0035104218404740095, + 0.08533722162246704, + -0.0029215768445283175, + 0.051455989480018616, + 0.04846647009253502, + -0.01900157332420349, + -0.010033012367784977, + 0.04450308904051781, + 0.06789835542440414, + 0.06092280521988869, + -0.06028866395354271, + 0.008951575495302677, + 0.010921941138803959, + 0.010378392413258553, + 0.07695750147104263, + -0.03028021939098835, + -0.012875321321189404, + 0.062462858855724335, + 0.07700280100107193, + -0.040517061948776245, + 0.05045948177576065, + -0.047152891755104065, + 0.03807109221816063, + 0.0491006076335907, + -0.06871367245912552, + -0.02030382677912712, + 0.0692119300365448, + 0.01604602485895157, + 0.07808990031480789, + 0.01717841811478138, + 0.014041687361896038, + 0.02101723477244377, + -0.04235154017806053, + -0.023712333291769028, + -0.009925434365868568, + -0.046835821121931076, + 0.04357452690601349, + -0.01011227909475565, + 0.00963667407631874, + 0.013033856637775898, + 0.054083142429590225, + 0.023463206365704536, + 0.019941460341215134, + -0.06314229965209961, + 0.03349621966481209, + -0.054128438234329224, + -0.005945069249719381, + 0.04246477782726288, + -0.04241948574781418, + 0.04941767826676369, + 0.03711988031864166, + -0.00764366053044796, + -0.07745575904846191, + -0.07709339261054993, + 0.014132278971374035, + -0.01634044758975506, + -0.006465970538556576, + -0.02049633301794529, + -0.0005414259503595531, + 0.01986219361424446, + 0.040245287120342255, + -0.05335840955376625, + 0.07582511007785797, + -0.060107480734586716, + 0.053766071796417236, + 0.051455989480018616, + -0.03028021939098835, + -0.09181451797485352, + 0.025275036692619324, + -0.05969981849193573, + -0.010989884845912457, + -0.026135656982660294, + -0.018616558983922005, + 0.05127480626106262, + -0.11767839640378952, + -0.022987600415945053, + -0.004402182064950466, + 0.012739433906972408, + 0.021719319745898247, + -0.074919193983078, + -0.086696095764637, + -0.05385666340589523, + 0.03673486411571503, + -0.007955068722367287, + -0.05132010206580162, + 0.01544585544615984, + -0.0980200320482254, + -0.0002786751138046384, + -0.018763771280646324, + 0.01959041878581047, + -0.013815208338201046, + 0.03252235800027847, + 0.03467390686273575, + 0.04004145786166191, + -0.023214079439640045, + 0.015072165988385677, + -0.07097846269607544, + 0.04377835616469383, + 0.03859199211001396, + 0.011261659674346447, + 0.04232889413833618, + 0.0779087170958519, + -0.03177497908473015, + 0.054671987891197205, + 0.037957850843667984, + -0.04232889413833618, + -0.04160416126251221, + 0.012626194395124912, + 0.075190968811512, + 0.004597519990056753, + 0.08705846220254898, + -0.05045948177576065, + 0.013498137705028057, + 0.00042995589319616556, + 0.0018330629682168365, + -0.04733407497406006, + -0.04586196318268776, + 0.05539672076702118, + 0.039044950157403946, + 0.02858162857592106, + 0.013792560435831547, + -0.04837587848305702, + -0.015174081549048424, + 0.04565813019871712, + 0.09557406604290009, + 0.07360561937093735, + -0.012660166248679161, + -0.09475874155759811, + 0.002206753008067608, + -0.011023856699466705, + 0.03832021728157997, + -0.03662162646651268, + 0.07460212707519531, + -0.027811599895358086, + -0.05788798630237579, + -0.06721891462802887, + 0.013192391954362392, + 0.04638286307454109, + 0.03365475311875343, + -0.022976277396082878, + -0.02418793924152851, + -0.001217323704622686, + -0.09602702409029007, + 0.038252271711826324, + 0.009195039980113506, + 0.05852212756872177, + -0.007700279820710421, + -0.033315036445856094, + -0.002975365612655878, + -0.000632725190371275, + 0.013045180588960648, + 0.0027687037363648415, + 0.01799374260008335, + -0.03256765380501747, + -0.07931288331747055, + 0.047107595950365067, + -0.01769931986927986, + 0.0005247939261607826, + 0.08049057424068451, + 0.027200106531381607, + 0.001830231980420649, + -0.041400328278541565, + 0.05068596079945564, + -0.004187027458101511, + 0.05372077599167824, + -0.04445779323577881, + -0.09901653975248337, + 0.0518183559179306, + 0.0029130838811397552, + 0.08008291572332382, + -0.04448044300079346, + -0.05911097303032875, + 0.0605604387819767, + -0.01295458897948265, + -0.05680089071393013, + -0.0692119300365448, + 0.05399255082011223, + 0.021515488624572754, + -0.0016235701041296124, + 0.006148899905383587, + -0.07102376222610474, + 0.07573451846837997, + 0.006833998486399651, + -0.022964952513575554, + -0.0034339851699769497, + -0.05136539787054062, + 0.040834132581949234, + -0.05856742337346077, + 0.06309700012207031, + 0.06957429647445679, + -0.05829564854502678, + 0.017065178602933884, + 0.013667996972799301, + -0.0017863517859950662, + -0.0036434780340641737, + 0.020926643162965775, + 0.013622701168060303, + 0.05426432564854622, + 0.024731487035751343, + -0.10327434539794922, + 0.050912439823150635, + -0.0019236544612795115, + 0.005364716984331608, + 0.08814556151628494, + 0.013056504540145397, + 0.0779540091753006, + -0.016657518222928047, + 0.10001304745674133, + -0.0403585247695446, + -0.014811715111136436, + 0.027743656188249588, + -0.03743695095181465, + -0.0864696130156517, + -0.00599036505445838, + 0.01543453149497509, + 0.0317976288497448, + -0.03845610469579697, + 0.007286956068128347, + -0.014053011313080788, + 0.039384666830301285, + -0.011776898987591267, + 0.007705941796302795, + 0.049780044704675674, + 0.04015469551086426, + 0.0006206935504451394, + -0.04959886148571968, + 0.03974703326821327, + 0.04291773587465286, + 0.09937890619039536, + 0.013373574241995811, + -0.027585120871663094, + -0.018967602401971817, + 0.04357452690601349, + 0.09108978509902954, + -0.06862308084964752, + -0.001644802512601018, + -0.04556753858923912, + -0.03209204971790314, + -0.04214771091938019, + -0.02007734775543213, + -0.009568730369210243, + 0.031910866498947144, + -0.05245249718427658, + 0.049191199243068695, + -0.029827261343598366, + -0.015083489939570427, + 0.002682358492165804, + 0.05240720137953758, + -0.010519941337406635, + -0.021107826381921768, + 0.03539863973855972, + 0.04932708665728569, + -0.014358757063746452, + -0.04441249743103981, + -0.023044221103191376, + -0.035896893590688705, + -0.01835610903799534, + 0.038773175328969955, + -0.006675463169813156, + 0.05648382008075714, + 0.08216651529073715, + 0.0047815339639782906, + 0.003119745757430792, + 0.08280065655708313, + 0.014109631069004536, + -0.028694866225123405, + -0.02792483940720558, + 0.019058194011449814, + -0.037346359342336655, + -0.053811367601156235, + -0.04679052531719208, + -0.04382365196943283, + 0.018424052745103836, + 0.0009391793864779174, + -0.06536179035902023, + 0.04622432962059975, + 0.016385743394494057, + 0.06173812597990036, + -0.01011227909475565, + 0.04706230014562607, + -0.0035387317184358835, + -0.0633234828710556, + -0.0059960270300507545, + 0.026090361177921295, + 0.0018274009926244617, + 0.13072358071804047, + 0.0403132326900959, + -0.0836159810423851, + 0.07084257900714874, + 0.025320332497358322, + 0.06780776381492615, + -0.011108786799013615, + -0.019828220829367638, + 0.05014241114258766, + 0.008906279690563679, + -0.0576615072786808, + 0.05856742337346077, + -0.021560784429311752, + 0.05562319979071617, + 0.012648842297494411, + -0.011408871039748192, + 0.0010771899251267314, + 0.07469271868467331, + -0.0331791490316391, + 0.03711988031864166, + 0.019058194011449814, + 0.009472477249801159, + 0.10345552861690521, + -0.02423323504626751, + -0.025727994740009308, + -0.01717841811478138, + -0.039973512291908264, + 0.0664488896727562, + 0.014913630671799183, + -0.04955356568098068, + 0.013928447850048542, + 0.04638286307454109, + 0.027494529262185097, + -0.02423323504626751, + 0.001620739116333425, + 0.008906279690563679, + -0.004402182064950466, + 0.0036689569242298603, + 0.06232697144150734, + 0.11369237303733826, + -0.047424666583538055, + 0.020609572529792786, + -0.016204560175538063, + -0.018809067085385323, + 0.013147096149623394, + 0.027517177164554596, + -0.028128670528531075, + -0.05566849559545517, + 0.0074285054579377174, + -0.022795094177126884, + 0.018174925819039345, + 0.03610072284936905, + 0.03283942863345146, + 0.005019336938858032, + 0.06019807234406471, + 0.000888929411303252, + 0.11577597260475159, + 0.0273812897503376, + 0.03295267000794411, + 0.07152201235294342, + -0.03032551519572735, + 0.03725576773285866, + -0.00023514872009400278, + -0.013215039856731892, + 0.01499289833009243, + -0.04608844220638275, + -0.026633908972144127, + -0.0086514912545681, + 0.05625734105706215, + -0.02280641719698906, + 0.06527119874954224, + -0.014483320526778698, + -0.10535795241594315, + 0.022987600415945053, + -0.028717514127492905, + 0.03324709087610245, + -0.06273463368415833, + -0.003903928678482771, + -0.051184214651584625, + -0.04130973666906357, + -0.042600665241479874, + 0.014200222678482533, + -0.05738973245024681, + -0.05820505693554878, + 0.0054326606914401054, + 0.019477179273962975, + -0.0021373939234763384, + -0.05299604684114456, + -0.029306359589099884, + 0.006398026831448078, + 0.017019882798194885, + -0.005905435420572758, + 0.029532838612794876, + 0.004756055306643248, + 0.014120955020189285, + 0.041649457067251205, + -0.1011001467704773, + 0.019964108243584633, + -0.03485509008169174, + 0.04955356568098068, + 0.04869294911623001, + -0.06572415679693222, + 0.026113009080290794, + 0.014607883989810944, + -0.0223194882273674, + 0.003731238655745983, + -0.008793040178716183, + 0.024369122460484505, + -0.0418759360909462, + -0.07623277604579926, + 0.033541515469551086, + 0.041377682238817215, + 0.011539096012711525, + -0.035285402089357376, + -0.0033603794872760773, + -0.06721891462802887, + -0.009076138958334923, + -0.04674522951245308, + 0.0011571652721613646, + 0.02649802342057228, + 0.03687075152993202, + 0.057299140840768814, + 0.0022647881414741278, + -0.050051819533109665, + 0.050640664994716644, + -0.024618247523903847, + -0.03148055821657181, + 0.043733060359954834, + 0.034492723643779755, + 0.04015469551086426, + -0.014019039459526539, + 0.033292386680841446, + -0.014064335264265537, + -0.05652911588549614, + 0.04563548415899277, + -0.007417181506752968, + 0.03827492147684097, + 0.03311120346188545, + 0.004436153918504715, + -0.03641779348254204, + -0.04882883280515671, + -0.015208053402602673, + -0.04642815887928009, + -0.049191199243068695, + -0.025207092985510826, + 0.022738473489880562, + 0.003394351340830326, + 0.01500422228127718, + 0.035353343933820724, + -0.009568730369210243 + ] + }, + { + "id": "0b50f86d-d2cc-4935-ad6c-6834f6e635e3", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "karenjimenez", + "reviewDate": "2022-10-17T02:50:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6795019a-6a11-4524-90cf-0ebbd7f8bb41", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "taylorjacqueline", + "reviewDate": "2021-08-02T09:18:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b8691f0c-047d-45ab-b08b-ac562a7ff9ad", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "xmeyer", + "reviewDate": "2022-08-25T21:53:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7a0018ab-dc52-40c5-954e-cf0906cb1cfd", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "allisonalicia", + "reviewDate": "2021-12-10T12:13:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1b79f593-4530-4e88-933d-c0105064cac5", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "timothy51", + "reviewDate": "2021-11-20T18:15:42", + "stars": 3, + "verifiedUser": false + }, + { + "id": "49aa4bd5-dbcf-4767-9483-1b6edb1e6d00", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "grose", + "reviewDate": "2022-06-22T19:01:42", + "stars": 4, + "verifiedUser": false + }, + { + "id": "85c1c33f-d0f0-47f1-a4b8-87b6b5ada604", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "kpena", + "reviewDate": "2022-03-25T19:22:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "09b55cdd-4b2b-406b-9a95-1e06c73357c4", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "thughes", + "reviewDate": "2022-06-15T12:32:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a9ed009a-dca7-45dd-b08e-72a3991b7167", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "huntjennifer", + "reviewDate": "2022-04-08T13:14:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "27198125-78bd-4160-92d7-782d2cdc6e5f", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "singletondebra", + "reviewDate": "2022-03-26T18:54:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "61be875d-9ed1-4792-ba12-f102aafb800e", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "mmunoz", + "reviewDate": "2022-05-07T14:31:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bc115d47-c0c9-489d-b5b2-80e5c881ad30", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "riverachad", + "reviewDate": "2022-09-19T01:36:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cddff41e-fb5b-4aea-9a20-9f84875b6a7e", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacqueline38", + "reviewDate": "2021-06-02T11:02:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "90cc1cd6-4b9c-45b5-be8d-ce6c0cca5b60", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacksonjennifer", + "reviewDate": "2022-06-17T10:21:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "79ac80cd-1ca7-4ff9-99f3-083c67f7717f", + "productId": "c9aecc47-87ce-4461-a150-21b11a614501", + "category": "Electronics", + "docType": "customerRating", + "userName": "thart", + "reviewDate": "2021-10-19T11:41:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Super (Red)", + "description": "This Luxe Computer Super (Red) is an entry level model with the highest overclocking capability. This also requires no other hardware mods than the included Turbo Boost, Boost Boost and Cooler Boosters.", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-03T02:33:02", + "price": 902.41, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-03-31T15:26:40", + "newPrice": 976.81 + }, + { + "priceDate": "2022-01-18T15:26:40", + "newPrice": 950.57 + }, + { + "priceDate": "2022-11-07T15:26:40", + "newPrice": 911.96 + }, + { + "priceDate": "2025-07-26T15:26:40", + "newPrice": 902.41 + } + ], + "descriptionVector": [ + -0.015164928510785103, + 0.0055570583790540695, + -0.04882833734154701, + 0.04084967076778412, + -0.0021944744512438774, + -0.035029616206884384, + -0.029674075543880463, + 0.028362514451146126, + 0.05197061970829964, + 0.045931972563266754, + 0.05341880023479462, + -0.05803659185767174, + 0.03582201898097992, + -0.06574201583862305, + 0.049128901213407516, + 0.03478369861841202, + -0.04798128455877304, + -0.026531793177127838, + -0.024427831172943115, + -0.05645178630948067, + 0.035193562507629395, + 0.02681869827210903, + -0.04942946881055832, + 0.024646423757076263, + -0.014632106758654118, + 0.0013943878002464771, + -0.00914677418768406, + 0.016066625714302063, + 0.010594956576824188, + -0.014126609079539776, + 0.06574201583862305, + 0.0008974290103651583, + 0.020137932151556015, + 0.005611706525087357, + 0.040357835590839386, + -0.05153343081474304, + 0.050577085465192795, + -0.05511290207505226, + 0.09120815992355347, + -0.029100267216563225, + -0.008962335996329784, + -0.023908670991659164, + 0.011442006565630436, + -0.05136948823928833, + 0.027979975566267967, + -0.004853460006415844, + -0.018348196521401405, + 0.013382024131715298, + -0.0014524516882374883, + -0.06322818994522095, + 0.016913676634430885, + 0.07896692305803299, + 0.03584934398531914, + 0.016736069694161415, + -0.05781799554824829, + 0.008695924654603004, + -0.033936649560928345, + 0.1767328977584839, + -0.03533018380403519, + -0.05098694935441017, + 0.013853366486728191, + -0.04713423550128937, + 0.003132035955786705, + 0.00667051924392581, + 0.0028570862486958504, + -0.05169737711548805, + -0.02541150152683258, + 0.02347148396074772, + 0.0036819353699684143, + 0.0440739281475544, + -0.09295690804719925, + 0.023485146462917328, + 0.05136948823928833, + 0.00301761575974524, + 0.06027717515826225, + 0.029865344986319542, + 0.03139549866318703, + -0.02650447003543377, + 0.011059467680752277, + -0.03691498562693596, + 0.08339343965053558, + -0.002812684280797839, + -0.03798063099384308, + -0.022843027487397194, + 0.04453843832015991, + -0.01361428014934063, + -0.013429841957986355, + -0.09399522840976715, + -0.016189586371183395, + 0.022679081186652184, + -0.048637066036462784, + 0.046997614204883575, + 0.06590595841407776, + -0.006540729198604822, + -0.011571796610951424, + 0.06836513429880142, + -0.024031629785895348, + 0.01610761322081089, + -0.037707388401031494, + 0.025329528376460075, + 0.017446499317884445, + -0.025343190878629684, + 0.037160906940698624, + -0.014987320639193058, + 0.051314838230609894, + 0.04475703090429306, + 0.04068572446703911, + -0.01433154009282589, + -0.0031661910470575094, + -0.0845957100391388, + -0.03675104305148125, + -0.03349946439266205, + 0.021531466394662857, + -0.001319246250204742, + 0.026968980208039284, + 0.04524886608123779, + -0.06432115286588669, + 0.07344743609428406, + 0.022228233516216278, + -0.03926486894488335, + 0.0735020861029625, + 0.03380002826452255, + 0.006219669710844755, + -0.02688700705766678, + 0.0024079447612166405, + -0.04964806139469147, + 0.031941983848810196, + -0.032488469034433365, + 0.05224386230111122, + -0.08082497119903564, + -0.04921087622642517, + 0.052926965057849884, + 0.0015728489961475134, + 0.08497824519872665, + -0.034291863441467285, + 0.09339410066604614, + 0.03866373747587204, + 0.06475834548473358, + -0.04442914202809334, + 0.03289832919836044, + -0.05229850858449936, + -0.014878024347126484, + -0.008736911229789257, + 0.02739250473678112, + -0.0826830118894577, + 0.029974641278386116, + -0.03942881152033806, + 0.004494830034673214, + -0.03746147081255913, + 0.07235446572303772, + 0.059730689972639084, + 0.01576605997979641, + -0.02076638862490654, + 0.011974828317761421, + -0.03183268755674362, + 0.049156226217746735, + -0.08634445816278458, + -0.00030974537367001176, + 0.02541150152683258, + 0.062408462166786194, + 0.01934552937746048, + 0.047188885509967804, + -0.0241819117218256, + -0.0064109391532838345, + 0.023006971925497055, + 0.017145931720733643, + 0.031040284782648087, + 0.01737818866968155, + -0.0927383154630661, + 0.00840902142226696, + 0.06268170475959778, + -0.055249523371458054, + 0.01771974004805088, + -0.027665747329592705, + 0.0690755620598793, + 0.07208122313022614, + 0.07486829161643982, + 0.050221871584653854, + 0.03385467827320099, + -0.0295101311057806, + 0.02235119231045246, + 0.010875029489398003, + -0.0760159119963646, + -0.028553783893585205, + 0.07328349351882935, + 0.029455482959747314, + 0.054866984486579895, + 0.026572778820991516, + -0.024810368195176125, + 0.038062602281570435, + -0.012972161173820496, + -0.058637723326683044, + 0.011551303789019585, + 0.01806129328906536, + -0.05060441046953201, + 0.018033968284726143, + -0.013648435473442078, + 0.04136883094906807, + 0.033390164375305176, + 0.007254573982208967, + -0.005440930370241404, + 0.07426716387271881, + -0.0035760540049523115, + -0.01092284731566906, + 0.03557610139250755, + -0.031422823667526245, + 0.036805689334869385, + 0.03533018380403519, + -0.005160857457667589, + 0.06606990098953247, + 0.021244561299681664, + 0.04328152537345886, + -0.046068593859672546, + 0.02311626821756363, + 0.06279099732637405, + -0.028362514451146126, + 0.01935919187963009, + -0.022419501096010208, + -0.06590595841407776, + -0.08191793411970139, + 0.02814392000436783, + -0.06120619550347328, + 0.015793384984135628, + -0.058473777025938034, + -0.06000393256545067, + -0.035193562507629395, + 0.08891293406486511, + -0.05462106689810753, + 0.022323867306113243, + 0.01627155765891075, + -0.014304216019809246, + 0.030849015340209007, + 0.07169868797063828, + 0.01985102705657482, + 0.0017171548679471016, + 0.026900669559836388, + -0.018211575224995613, + -0.04243447631597519, + -0.027146587148308754, + 0.07667168974876404, + -0.00095634680474177, + -0.02759743668138981, + -0.04500294849276543, + -0.029646752402186394, + 0.026805035769939423, + -0.008231413550674915, + 0.09694624692201614, + -0.002361835213378072, + -0.03699696063995361, + 0.003179853083565831, + -0.048992279917001724, + 0.010089458897709846, + -0.008538810536265373, + 0.08612586557865143, + 0.019400177523493767, + 0.0315047949552536, + 0.01646282710134983, + -0.05754475295543671, + -0.01627155765891075, + 0.005331633612513542, + -0.011790390126407146, + 0.028335189446806908, + -0.027870679274201393, + 0.04891030862927437, + -0.07486829161643982, + 0.027433492243289948, + 0.06388396769762039, + 0.019632434472441673, + -0.04962073639035225, + 0.00804697535932064, + 0.07005923241376877, + -0.0021944744512438774, + 0.02005595900118351, + -0.0004243789007887244, + 0.06820119172334671, + -0.022132597863674164, + -0.026600103825330734, + 0.07951340824365616, + -0.01881270855665207, + -0.02739250473678112, + 0.03666906803846359, + 0.030001966282725334, + 0.0977659672498703, + -0.04134150594472885, + 0.08596191555261612, + -0.07858438789844513, + -0.011032143607735634, + -0.03819922357797623, + 0.02956477925181389, + -0.06841978430747986, + -0.02970140054821968, + 0.03183268755674362, + 0.047899313271045685, + 0.00868226308375597, + 0.06913021206855774, + 0.03369073197245598, + 0.021422168239951134, + -0.06781864911317825, + 0.05401993170380592, + -0.02435952052474022, + -0.003962008282542229, + 0.04388265684247017, + -0.008962335996329784, + -0.038964301347732544, + -0.051478784531354904, + 0.09071632474660873, + -0.013819211162626743, + 0.031422823667526245, + -0.07546942681074142, + -0.02579404041171074, + 0.06563271582126617, + -0.04981200769543648, + -0.06218986585736275, + -0.02539783902466297, + 0.04172404482960701, + -0.028061948716640472, + 0.007883029989898205, + 0.046970292925834656, + -0.038909655064344406, + 0.008853038772940636, + -0.03852711617946625, + -0.07585196197032928, + -0.10940607637166977, + 0.02256978489458561, + 0.10148206353187561, + -0.03702428564429283, + -0.04093164578080177, + 0.0826830118894577, + -0.050440464168787, + -0.04833650216460228, + -0.049128901213407516, + 0.0036272869911044836, + -0.08240976929664612, + -0.019741730764508247, + 0.01573873683810234, + 0.005806391593068838, + -0.01897665299475193, + 0.07284630089998245, + -0.048937633633613586, + -0.029400832951068878, + 0.049320172518491745, + 0.020821036770939827, + -0.054320499300956726, + 0.026367848739027977, + -0.007623450364917517, + -0.013573293574154377, + 0.01324540376663208, + -0.02453712746500969, + 0.03778936341404915, + 0.03076704405248165, + 0.0017589950002729893, + -0.05106892064213753, + 0.037160906940698624, + -0.052735697478055954, + 0.0831202045083046, + -0.05303626134991646, + 0.05568670853972435, + 0.004061058629304171, + 0.011059467680752277, + 0.013204417191445827, + -0.008538810536265373, + -0.019427502527832985, + 0.06628849357366562, + 0.051670052111148834, + -0.0343191884458065, + 0.08437711745500565, + -0.005666355136781931, + 0.015711411833763123, + -0.038800355046987534, + 0.10241108387708664, + 0.009119450114667416, + -0.06377466768026352, + -0.02937350980937481, + 0.034974969923496246, + 0.02240584045648575, + -0.053992610424757004, + -0.03847246617078781, + 0.037516120821237564, + -0.026108268648386, + 0.06617920100688934, + -0.03899162635207176, + 0.03737949952483177, + 0.054866984486579895, + -0.015479156747460365, + 0.10913283377885818, + -0.08180864155292511, + 0.03434651345014572, + -0.09721948206424713, + -0.03420989215373993, + 0.010014316998422146, + -0.0154928183183074, + -0.025848688557744026, + 0.031094932928681374, + 0.04456576332449913, + -0.04043980687856674, + 0.008593459613621235, + -0.03278903290629387, + 0.0009896481642499566, + -0.009870865382254124, + 0.017583118751645088, + -0.00689594354480505, + 0.07650774717330933, + -0.03694231063127518, + -0.10962466895580292, + -0.06623385101556778, + -0.05216188728809357, + 0.039128247648477554, + 0.007117952685803175, + -0.013730407692492008, + -0.0816446915268898, + 0.024482479318976402, + -0.040357835590839386, + -0.008251907303929329, + 0.005212089978158474, + 0.020356524735689163, + -0.02362176589667797, + 0.014591120183467865, + 0.013108782470226288, + -0.03273438662290573, + -0.03568539768457413, + 0.018512142822146416, + 0.028526458889245987, + -0.03986600041389465, + 0.019017640501260757, + 0.0035863006487488747, + -0.027829691767692566, + 0.0015224700327962637, + 0.01272624358534813, + 0.03563075140118599, + -0.03981135040521622, + 0.05281766876578331, + -0.06388396769762039, + 0.005239414516836405, + -0.01681804284453392, + 8.336014434462413e-05, + 0.03388200327754021, + 0.043390821665525436, + 0.01878538355231285, + -0.046888317912817, + 0.07295560091733932, + -0.029646752402186394, + -0.049156226217746735, + -0.0002711072447709739, + -0.02828054130077362, + 0.007985495962202549, + -0.0011655476409941912, + -0.04213390871882439, + 0.08618050813674927, + -0.025739392265677452, + 0.04798128455877304, + -0.06678032875061035, + -0.03240649402141571, + -0.007445842958986759, + -0.007220418658107519, + 0.028225893154740334, + 0.003719506086781621, + -0.023772049695253372, + 0.0822458267211914, + 0.002875871490687132, + 0.0035179900005459785, + 0.01897665299475193, + 0.03172339126467705, + 0.10421448200941086, + -0.0701138824224472, + -0.032515790313482285, + 0.061151549220085144, + -0.055058252066373825, + -0.05188864469528198, + -0.01378505676984787, + 0.040521781891584396, + 0.010444673709571362, + -0.03855443745851517, + 0.0039927479811012745, + 0.05115089192986488, + -0.0011390773579478264, + 0.0057654050178825855, + 0.024946989491581917, + -0.017227904871106148, + 0.01485070027410984, + 0.045112244784832, + 0.046259861439466476, + 0.008204089477658272, + 0.006653441581875086, + 0.027624761685729027, + 0.06262705475091934, + 0.014440837316215038, + 0.0690755620598793, + 0.06612455099821091, + 0.039292193949222565, + 0.04850044474005699, + -0.005683432333171368, + 0.0057824826799333096, + -0.027146587148308754, + -0.046095915138721466, + -0.04292631149291992, + -0.041423480957746506, + 0.0071247839368879795, + 0.07536012679338455, + 0.0012236116454005241, + 0.04552210867404938, + -0.03953811153769493, + -0.012131942436099052, + -0.03292565420269966, + 0.01350498292595148, + -0.0027648669201880693, + 0.07546942681074142, + 0.025192907080054283, + 0.10902354121208191, + -0.01377139426767826, + -0.049156226217746735, + 0.05552276596426964, + -0.06191662698984146 + ] + }, + { + "id": "072c8f41-c7e9-4b05-8f63-c2c0b33059bc", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "warnerstephanie", + "reviewDate": "2021-07-08T21:26:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "983a965d-86ad-41c9-b64b-7f9448168110", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "donaldgonzales", + "reviewDate": "2022-03-08T21:15:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "39c9bcd9-21ba-4542-9e19-c6b1fd9110f5", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "erikwagner", + "reviewDate": "2021-03-31T22:41:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3378fa8d-c971-4ebc-bea5-bfaf3e607a9b", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "larry83", + "reviewDate": "2021-05-01T02:11:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3916c3a4-0617-4078-8890-3be03a95311e", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristina02", + "reviewDate": "2021-06-17T03:32:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8e84adf8-cb28-4074-838e-663ac45ec910", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "bhodge", + "reviewDate": "2021-03-31T15:26:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3ee7ea16-861f-4328-8654-040bdbc34ba8", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelbarber", + "reviewDate": "2021-11-26T15:13:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "226a7dfa-b859-4b6a-b0b7-9ef23a7cfcde", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "elizabethjones", + "reviewDate": "2021-10-15T05:57:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e4cf1a5e-e635-4364-a1ab-00a00faf203c", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "nancyvelez", + "reviewDate": "2021-06-15T21:09:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1ad303b6-43e4-4720-bf56-2cb4a1256179", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifer06", + "reviewDate": "2021-06-11T21:42:37", + "stars": 2, + "verifiedUser": true + }, + { + "id": "462d7bf6-fb92-4425-8907-17050c826a79", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "hancockjustin", + "reviewDate": "2022-01-29T02:33:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "758f8305-6fc6-4c55-b157-efe81fd08007", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnnicholson", + "reviewDate": "2022-01-22T21:23:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6682884a-a16f-4110-92f7-1c99bf709fc7", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "lgallegos", + "reviewDate": "2022-11-07T15:40:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "418b7030-44bf-4d61-8358-8fd39f29348d", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "carterarthur", + "reviewDate": "2022-01-09T15:43:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5e2f7363-7fba-404b-87f2-e7436192a8bb", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "gerald84", + "reviewDate": "2022-11-07T02:19:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "07bb7355-6139-47f0-9923-c849ec182de6", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "susanfields", + "reviewDate": "2021-05-13T02:41:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8cbec95e-db98-43fb-a3aa-958ecbbcf9af", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "rangelrebecca", + "reviewDate": "2021-05-29T17:14:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6fbe8ada-0c12-48cd-8881-3bb4473fd45a", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "crystal40", + "reviewDate": "2021-05-13T08:10:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e5d91246-e7b5-42ad-8ee6-b62b2ad5f48a", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephanie85", + "reviewDate": "2022-02-07T03:04:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a46fe26f-ba44-41d7-aed1-adb62bc68d0c", + "productId": "ee780985-fc46-460e-8b18-79e6281dfbbb", + "category": "Electronics", + "docType": "customerRating", + "userName": "donaldwolfe", + "reviewDate": "2021-10-03T11:24:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7c3080e5-3c16-472b-b431-b60beab31f54", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "product", + "name": "Luxe Filter Ultra (Steel)", + "description": "This Luxe Filter Ultra (Steel) is rated 3.9 out of 5 by 4, Oct 4, 2016\n\nRated 5 out of 5 by Anonymous from I bought this for my daughter and the results were flawless. I have to admit some may have had more trouble with the formula than others because I am an inexperienced blend. I also think I", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-11-15T23:40:09", + "price": 959.3, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-03-06T19:07:08", + "newPrice": 921.34 + }, + { + "priceDate": "2021-05-22T19:07:08", + "newPrice": 959.3 + } + ], + "descriptionVector": [ + -0.02145012654364109, + 0.013754709623754025, + -0.03324148803949356, + -0.001279278309084475, + 0.032022859901189804, + -0.029066557064652443, + -0.0677918791770935, + 0.012490946799516678, + 0.008174968883395195, + 0.11743972450494766, + -0.02296212874352932, + -0.022759024053812027, + -0.07216991484165192, + -0.015289279632270336, + -0.018911315128207207, + 0.021732216700911522, + -0.03619779273867607, + -0.027735091745853424, + 0.009077657014131546, + -0.03834167867898941, + -0.02349245734512806, + -0.04484103247523308, + -0.0854845643043518, + 0.029811274260282516, + 0.03664913773536682, + 0.004211604129523039, + -0.00453318702057004, + 0.03705534711480141, + 0.04721058905124664, + -0.05519937723875046, + 0.08137733489274979, + 0.011424646712839603, + -0.030871933326125145, + 0.04161392152309418, + -0.0027475568931549788, + -0.028028465807437897, + 0.0854845643043518, + -0.024192040786147118, + 0.031413547694683075, + 0.06120225414633751, + -0.025523506104946136, + 0.004256738815456629, + 0.00044006045209243894, + 0.009196135215461254, + 0.034460119903087616, + -0.14524251222610474, + 0.019430361688137054, + 0.018538957461714745, + 0.005980308633297682, + 0.0386124849319458, + 0.008276521228253841, + -0.037303585559129715, + -0.03330919146537781, + -0.026381060481071472, + -0.00777440145611763, + -0.005655905231833458, + -0.01268276758491993, + 0.09153257310390472, + 0.0539807491004467, + -0.004282126668840647, + -0.004708082880824804, + -0.07817278802394867, + -0.012028318829834461, + -0.022804157808423042, + -0.05528964474797249, + -0.03737128898501396, + -0.024507982656359673, + -0.04657870531082153, + 0.04280998185276985, + 0.06138279289007187, + 0.045089270919561386, + 0.005063516087830067, + 0.0339636392891407, + -0.034257013350725174, + 0.06445193290710449, + -0.00741896778345108, + 0.008530402556061745, + -0.048384081572294235, + -0.008389357477426529, + 0.03904126212000847, + 0.02717091143131256, + 0.04102717339992523, + 0.015616504475474358, + 0.06075090914964676, + 0.061157118529081345, + 0.04761679843068123, + -0.010132674127817154, + -0.10895445197820663, + -0.03258704021573067, + 0.029156826436519623, + -0.0066121905110776424, + 0.02518499828875065, + 0.015074891038239002, + -0.08074545115232468, + 0.007966222241520882, + 0.022465649992227554, + -0.030871933326125145, + 0.019170839339494705, + -0.08688373118638992, + 0.0326773077249527, + -0.08173840492963791, + 0.012626349925994873, + -0.011915482580661774, + 0.04156878590583801, + 0.03242906928062439, + 0.004598067607730627, + 0.03213569521903992, + 0.0014407748822122812, + 1.193373100250028e-05, + -0.06503868103027344, + 0.0049563217908144, + -0.041049741208553314, + -0.062240343540906906, + -0.020242780447006226, + 0.02671956829726696, + 0.052175372838974, + -0.04432198777794838, + 0.0025670193135738373, + 0.059306610375642776, + -0.01644020713865757, + 0.0605703704059124, + 0.07054507732391357, + 0.04089177027344704, + -0.03179718926548958, + 0.04689464718103409, + 0.011469780467450619, + 0.02994667738676071, + -0.014239904470741749, + 0.062240343540906906, + -0.028750617057085037, + -0.02759968861937523, + 0.056869350373744965, + -0.01563907228410244, + -0.009105865843594074, + -0.0938795655965805, + 0.03567874804139137, + 0.011847781017422676, + 0.03200029209256172, + 0.006730668246746063, + 0.03209056332707405, + -0.0024217430036514997, + -0.04511183872818947, + -0.0015331592876464128, + 0.0017602418083697557, + 0.017895791679620743, + -0.03687480837106705, + -0.09378929436206818, + 0.006386518478393555, + 0.024688519537448883, + -0.0018406374147161841, + 0.04163648933172226, + -0.11653703451156616, + -0.059306610375642776, + -0.018279433250427246, + 0.021551677957177162, + 0.048023007810115814, + -0.007526162080466747, + 0.04547291249036789, + 0.005255337338894606, + -0.04253917559981346, + -0.020592572167515755, + -0.017568567767739296, + 0.041140008717775345, + -0.0027955123223364353, + 0.04136568307876587, + 0.08038437366485596, + -0.03439241647720337, + 0.06914591044187546, + -0.07492311298847198, + 0.03653630241751671, + 0.03978597745299339, + 0.049647845327854156, + 0.028186436742544174, + -0.018290717154741287, + -0.012186289764940739, + 0.021574245765805244, + 0.0353853739798069, + 0.028931153938174248, + 0.03574644774198532, + -0.017794238403439522, + 0.03348973020911217, + 0.06580596417188644, + -0.06485813856124878, + -0.04996378719806671, + 0.07803738862276077, + -0.05935174226760864, + 0.06539975106716156, + 0.008851985447108746, + 0.042313504964113235, + 0.04136568307876587, + -0.03073653019964695, + 0.026674432680010796, + -0.010397838428616524, + 0.015086174942553043, + -0.09085556119680405, + -0.02554607391357422, + -0.010753272101283073, + -0.02583944797515869, + -0.04211039841175079, + -0.02205944061279297, + 0.026877539232373238, + -0.008169326931238174, + 0.032158263027668, + -0.031503815203905106, + 0.039086394011974335, + -0.02931479550898075, + 0.06002875789999962, + 0.020220214501023293, + 0.04549548029899597, + -0.03416674584150314, + 0.03710048273205757, + 0.03904126212000847, + -0.048023007810115814, + 0.06901050359010696, + 0.006894280202686787, + 0.02135985717177391, + -0.01965603418648243, + -0.04262944683432579, + -0.08404026180505753, + -0.06354924291372299, + -0.013201813213527203, + -0.01742188073694706, + 0.013348500244319439, + -0.02708064392209053, + 0.0007080459618009627, + -0.0018180703045800328, + 0.03858991712331772, + 0.05524451285600662, + 0.04924163594841957, + 0.04689464718103409, + 0.04748139530420303, + 0.004603709559887648, + 0.004121335223317146, + 0.010127032175660133, + 0.006138279102742672, + -0.01237811055034399, + -0.05068593844771385, + -0.03468579053878784, + 0.010420406237244606, + 0.03782263025641441, + 0.05948714539408684, + -0.029450198635458946, + -0.0204684529453516, + -0.05109214782714844, + 0.04163648933172226, + -0.0659864991903305, + 0.12123101204633713, + -0.0659864991903305, + -0.048023007810115814, + -0.014273755252361298, + 0.007627714425325394, + -0.03969570994377136, + -0.06002875789999962, + 0.14325660467147827, + -0.009410523809492588, + 0.07609660923480988, + -0.0216983649879694, + 0.019960690289735794, + -0.007904162630438805, + -0.014600980095565319, + 0.0010486696846783161, + 0.018787195906043053, + -0.02009609341621399, + 0.008806850761175156, + -0.008197536692023277, + -0.010634793899953365, + -0.01884361356496811, + -0.03143611177802086, + -0.014623546972870827, + 0.01237811055034399, + -0.0037038421723991632, + 0.022454366087913513, + 0.08385972678661346, + 0.061789002269506454, + -0.04138825088739395, + -0.0015684205573052168, + -0.054296690970659256, + 0.03269987553358078, + 0.005038127768784761, + -0.01840355433523655, + 0.10371886193752289, + 0.06093144789338112, + -0.02823157049715519, + 0.004634739365428686, + 0.10263563692569733, + -0.048654887825250626, + 0.05835878476500511, + -0.08710940182209015, + 0.05163376033306122, + -0.004031066782772541, + -0.015616504475474358, + 0.02394380234181881, + -0.024598250165581703, + -0.04084663838148117, + -0.02349245734512806, + -0.005754636600613594, + 0.00683786254376173, + -0.03761952742934227, + -0.013145395554602146, + 0.010747630149126053, + -0.02717091143131256, + 0.0011847781715914607, + 0.00349509553052485, + -0.05343913659453392, + 0.001492256298661232, + 0.1013718768954277, + 0.10462155193090439, + -0.025500938296318054, + 0.0035627970937639475, + -0.023627860471606255, + 0.014228621497750282, + 0.03782263025641441, + 0.009670046158134937, + -0.0030070797074586153, + 0.07302746921777725, + -0.013698291964828968, + -0.05086647346615791, + 0.029517900198698044, + 0.025771744549274445, + 0.04477332904934883, + -0.05790744349360466, + 0.002363914391025901, + 0.015593936666846275, + 0.09514332562685013, + 0.043735239654779434, + -0.01769268698990345, + -0.023830965161323547, + -0.03324148803949356, + 0.02351502515375614, + -0.031165307387709618, + -0.004665769170969725, + 0.015255428850650787, + -0.06048010289669037, + 0.07013886421918869, + 0.020434601232409477, + 0.0037997527979314327, + -0.007689774502068758, + -0.02931479550898075, + 0.012434528209269047, + 0.0010444383369758725, + 0.01246837992221117, + 0.06851402670145035, + 0.007435893174260855, + -0.034099042415618896, + 0.03734872117638588, + -0.0932476818561554, + -0.013461336493492126, + -0.05095674470067024, + 0.007892878726124763, + 0.031842321157455444, + 0.0013476851163432002, + -0.006544488947838545, + -0.04689464718103409, + -0.01768140308558941, + 0.006352667696774006, + 0.008112909272313118, + 0.051859430968761444, + -0.04556318372488022, + 0.033015817403793335, + 0.0186630766838789, + 0.04689464718103409, + 0.013969098217785358, + 0.020084809511899948, + 0.041230279952287674, + 0.026832403615117073, + 0.04319362714886665, + -0.02726118080317974, + 0.0037151258438825607, + -0.031165307387709618, + -0.009218702092766762, + -0.07519391924142838, + -0.05948714539408684, + 0.01022294256836176, + 0.0893661230802536, + -0.04991865158081055, + -0.032835278660058975, + 0.08584564179182053, + 0.05605693161487579, + -0.012953574769198895, + 0.07253099232912064, + -0.018268151208758354, + 0.07496824860572815, + 0.01116512343287468, + -0.04278741776943207, + 0.032745011150836945, + 0.0754195898771286, + -0.05100187659263611, + 0.01571805588901043, + 0.022916994988918304, + -0.05497370660305023, + -0.008947895839810371, + -0.08205434679985046, + -0.007909804582595825, + 0.03890585899353027, + -0.015774475410580635, + -0.01769268698990345, + 0.03134584426879883, + 0.09081042557954788, + 0.01885489746928215, + -0.044186584651470184, + 0.00422006705775857, + 0.019058002158999443, + -0.018900033086538315, + -0.030082080513238907, + 0.04165905714035034, + -0.048384081572294235, + 0.047300856560468674, + -0.012626349925994873, + -0.011644676327705383, + -0.06007389351725578, + -0.03251934051513672, + -0.04626276716589928, + 0.01183649804443121, + -0.038725320249795914, + 0.028186436742544174, + -0.021766066551208496, + 0.048113275319337845, + 0.013134111650288105, + -0.01662074401974678, + -0.02563634142279625, + 0.04319362714886665, + 0.07898520678281784, + -0.0002803269599098712, + 0.013777277432382107, + 0.048384081572294235, + 0.04001165181398392, + -0.05389048159122467, + -0.03279014676809311, + 0.006922489497810602, + -0.057320695370435715, + 0.04576628655195236, + -0.03714561462402344, + 0.004425992723554373, + -0.010437331162393093, + 0.054296690970659256, + -0.005726427771151066, + 0.0019873243290930986, + -0.006877354811877012, + -0.01636122167110443, + -0.0010056509636342525, + 0.025952283293008804, + -0.03653630241751671, + 0.05253644660115242, + 0.03840937837958336, + -0.11915483325719833, + -0.016203250735998154, + -0.03457295522093773, + 0.08435620367527008, + -0.0623757466673851, + -0.014431726187467575, + 0.04447995498776436, + 0.04703005030751228, + -0.05452236160635948, + -0.0679272785782814, + 0.026200521737337112, + -0.03139097988605499, + 0.012175005860626698, + 0.1385626196861267, + 0.02805103361606598, + -0.08692886680364609, + -0.10173294693231583, + 0.09712924063205719, + 0.004789888858795166, + 0.05420641973614693, + -0.05596666410565376, + -0.05560558661818504, + -0.09992757439613342, + -0.0008935201913118362, + -0.012220140546560287, + 0.0020423317328095436, + 0.008744791150093079, + -0.021957887336611748, + -0.05912607163190842, + 0.0005934468936175108, + 0.0002914342621807009, + 0.034527819603681564, + 0.001812428468838334, + -0.0718088373541832, + 0.04815841093659401, + 0.016112983226776123, + 0.004014141391962767, + 0.01580832526087761, + 0.04504413530230522, + 0.05610206723213196, + 0.06928130984306335, + -0.019498063251376152, + 0.11337762326002121, + 0.0278930626809597, + 0.02287185937166214, + 0.04797787219285965, + -0.06991319358348846, + -0.05817824974656105, + -0.049106232821941376, + -0.10173294693231583, + -0.0198252871632576, + -0.01946421153843403, + 0.0197575856000185, + -0.007018399890512228, + -0.05253644660115242, + -0.014725099317729473, + 0.10922525823116302, + 0.05104701220989227, + 0.0032637817785143852, + 0.004662948194891214, + 0.028299272060394287, + 0.026245657354593277, + -0.013969098217785358, + -0.033376891165971756, + 0.05361967533826828, + 0.009483867324888706, + 0.07415582984685898, + -0.018290717154741287 + ] + }, + { + "id": "e6f2f0f6-e10f-4b15-bdf7-aeebae8c950d", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "gardnermatthew", + "reviewDate": "2021-05-19T12:01:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "eef22677-f7c0-481c-a87c-fb49368c6dea", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "alyssa32", + "reviewDate": "2021-03-30T10:56:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "66ce2d33-d939-4b95-9511-526ebcd493ed", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "bpearson", + "reviewDate": "2021-03-06T19:07:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "36cf529a-5bfe-4605-8ee7-3c09cc2fa1a1", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "jrhodes", + "reviewDate": "2022-12-25T18:36:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3d555089-b423-4bc2-bb0d-4ab525162c82", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "iramirez", + "reviewDate": "2021-08-13T01:06:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "df945931-0a7b-4c2f-96c5-37430eb52760", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "dukekaren", + "reviewDate": "2021-09-17T11:12:25", + "stars": 2, + "verifiedUser": false + }, + { + "id": "377ed440-407e-437d-8572-d01577775d86", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "elittle", + "reviewDate": "2021-03-12T14:40:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "84c132c7-da46-47c0-a088-fd671f6bbd9a", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "scottcolleen", + "reviewDate": "2022-07-14T02:14:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "da149a83-8125-45d7-99ff-dd2c16f9ba15", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "dennisjose", + "reviewDate": "2021-04-10T20:30:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4c3c621b-595e-464f-8432-1e5e72378163", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "andersonsteven", + "reviewDate": "2022-03-10T08:07:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7b6f7159-0b98-4e9c-98cc-7a09ae593739", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "lisa30", + "reviewDate": "2021-11-20T00:29:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "301c4319-7c30-41c7-93ff-3eb420b3a562", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "sara67", + "reviewDate": "2021-11-24T01:30:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8ebcd4c2-cf9d-447d-956b-d9aff16fc472", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "franklinshannon", + "reviewDate": "2021-09-22T08:56:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0b463fca-1716-4320-9714-e383e2632e94", + "productId": "7c3080e5-3c16-472b-b431-b60beab31f54", + "category": "Other", + "docType": "customerRating", + "userName": "smithjason", + "reviewDate": "2022-10-21T16:47:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Super (Black)", + "description": "This Luxe Phone Super (Black) is available all year round for $799.\n\nWhen you get these phones on sale, you'll get a \"Premium\" (with a 6 year battery", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-01-23T08:32:27", + "price": 432.44, + "stock": 13, + "priceHistory": [ + { + "priceDate": "2021-01-03T19:44:26", + "newPrice": 407.16 + }, + { + "priceDate": "2022-12-04T19:44:26", + "newPrice": 470.68 + }, + { + "priceDate": "2023-09-29T19:44:26", + "newPrice": 432.44 + } + ], + "descriptionVector": [ + -0.05523354932665825, + 0.05169118940830231, + -0.02361118420958519, + 0.037031274288892746, + -0.0003474236582405865, + -0.02329782024025917, + -0.009809608571231365, + 0.04297153651714325, + 0.014659915119409561, + 0.025968214496970177, + 0.06545189023017883, + 0.023815549910068512, + 0.03357066214084625, + -0.013236159458756447, + 0.09008491039276123, + -0.00938043836504221, + -0.017330309376120567, + -0.005320350173860788, + 0.02358393371105194, + -0.0036786033306270838, + 0.023256948217749596, + -0.0427262969315052, + -0.08125626295804977, + -0.02107703499495983, + -0.020654676482081413, + -0.02181275561451912, + -0.011621661484241486, + 0.02032768912613392, + 0.06959372758865356, + -0.05956612527370453, + 0.0071732765063643456, + 0.020150572061538696, + -0.037739746272563934, + 0.0739535540342331, + -0.02218061499297619, + -0.0199053306132555, + 0.024673890322446823, + -0.007834062911570072, + 0.10098447650671005, + 0.039810661226511, + -0.023910921066999435, + -0.04035564139485359, + -0.05166393890976906, + -0.004904804285615683, + 0.010020787827670574, + -0.08343617618083954, + 0.033488914370536804, + 0.03166323900222778, + -0.0032136687077581882, + -0.048693809658288956, + -0.029619568958878517, + 0.05354411527514458, + -0.06708682328462601, + -0.012452753260731697, + 0.03011004999279976, + -0.022739218547940254, + 0.022548476234078407, + 0.15499182045459747, + 0.001766070257872343, + -0.02692192606627941, + -0.05716821923851967, + -0.0366225391626358, + 0.021267777308821678, + 0.01619947887957096, + -0.004945677705109119, + 0.06632385402917862, + -0.01599511131644249, + -0.01382882334291935, + -0.03373415395617485, + 0.08011180907487869, + -0.043816253542900085, + 0.012159828096628189, + 0.02877485193312168, + 0.033407166600227356, + 0.046241406351327896, + 0.05809468403458595, + -0.041445598006248474, + 0.011403670534491539, + -0.0008625984191894531, + -0.054198089987039566, + 0.057931188493967056, + 0.005371442064642906, + -0.011267425492405891, + -0.014864282682538033, + 0.03730376437306404, + 0.013113539665937424, + 0.034170135855674744, + -0.07678744196891785, + -0.05951162800192833, + 0.035886820405721664, + 0.002833887003362179, + 0.10294639319181442, + -0.04847581684589386, + -0.04436122998595238, + 0.08300019055604935, + 0.04111861065030098, + -0.007493451237678528, + 0.05951162800192833, + -0.05155494436621666, + -0.04962027072906494, + 0.038339219987392426, + -0.05092822015285492, + -0.0008898473461158574, + 0.022453105077147484, + -0.025900091975927353, + 0.046922627836465836, + 0.007118778768926859, + -0.011321923695504665, + 0.0031131883151829243, + -0.15488281846046448, + 0.04245380684733391, + -0.00784087460488081, + -0.024278782308101654, + 0.018801750615239143, + -0.0461869090795517, + 0.07291809469461441, + 0.03670428693294525, + 0.003244323655962944, + 0.02337956801056862, + -0.03733101114630699, + -0.0035832321736961603, + 0.03763074800372124, + 0.01967371627688408, + -0.026799306273460388, + 0.05209992080926895, + -0.07433503866195679, + 0.06883075833320618, + -0.0038863762747496367, + -0.02677205763757229, + -0.05398009717464447, + -0.03858446329832077, + 0.0673593133687973, + -0.0037773805670440197, + 0.01756192557513714, + 0.0021032756194472313, + 0.041336603462696075, + 0.012868299148976803, + 0.06850376725196838, + -0.02124052867293358, + 0.03686777874827385, + -0.022480353713035583, + -0.010157032869756222, + 0.057985689491033554, + 0.009360001422464848, + 0.02372017875313759, + -0.024319656193256378, + -0.021826379001140594, + -0.011403670534491539, + -0.014864282682538033, + 0.01688070222735405, + 0.05351686477661133, + -0.13253872096538544, + 0.036677036434412, + -0.04556018486618996, + -0.008365416899323463, + 0.028366118669509888, + -0.054198089987039566, + -0.07144664973020554, + -0.04160908982157707, + 0.04768559709191322, + 0.02637694776058197, + -0.01534113846719265, + -0.014932404272258282, + -0.03923843428492546, + -0.040764372795820236, + 0.06948473304510117, + 0.08060228824615479, + 0.01867913082242012, + -0.060438089072704315, + 0.0122756352648139, + 0.049920011311769485, + -0.022398607805371284, + -0.07182813435792923, + -0.10316438972949982, + 0.06365346163511276, + 0.05517904832959175, + 0.08071128278970718, + 0.03866620734333992, + 0.03850271552801132, + 0.0030518784187734127, + 0.08915844559669495, + 0.08381766080856323, + -0.06463441997766495, + -0.10360036790370941, + 0.043816253542900085, + 0.01842026598751545, + -0.004325765185058117, + 0.014278430491685867, + -0.003971529193222523, + -0.03166323900222778, + -0.023652056232094765, + 0.014605417847633362, + -0.030491534620523453, + -0.04103686287999153, + -0.004267861135303974, + -0.012364194728434086, + 0.05754970386624336, + 0.0678497925400734, + -0.056786734610795975, + -0.004499476868659258, + 0.007261835504323244, + 0.05136420205235481, + 0.03910218924283981, + -0.053707607090473175, + -0.01100856065750122, + -0.012030395679175854, + 0.013992317020893097, + 0.10779669880867004, + -0.025082625448703766, + 0.009305504150688648, + -0.02238498255610466, + -0.023147951811552048, + -0.0339793935418129, + 0.00431214040145278, + 0.025532232597470284, + -0.003079127287492156, + 0.05455232411623001, + -0.05771319940686226, + 0.04060088098049164, + -0.1343916356563568, + 0.004720874130725861, + 0.0009775548242032528, + -0.011546727269887924, + -0.055424291640520096, + -0.0001893586595542729, + -0.03885694965720177, + 0.034578870981931686, + 0.07117415964603424, + 0.03624105453491211, + -0.023910921066999435, + 0.03294393792748451, + -0.097878098487854, + 0.019442100077867508, + -0.049974508583545685, + -0.019755462184548378, + 0.024510398507118225, + -0.009564368985593319, + -0.03907494246959686, + -0.0014177950797602534, + 0.03179948031902313, + 0.0032426207326352596, + -0.05378935486078262, + 0.010007163509726524, + -0.05139145255088806, + -0.019551094621419907, + -0.06806778907775879, + 0.10697923600673676, + 0.05972961708903313, + -0.0614190511405468, + 0.07433503866195679, + -0.01570899784564972, + -0.06512490659952164, + -0.06081957370042801, + 0.028338870033621788, + -0.061037566512823105, + 0.0114786047488451, + 0.06583337485790253, + -0.013249783776700497, + 0.05338061973452568, + -0.014005941338837147, + 0.014864282682538033, + -0.0244967732578516, + -0.008603844791650772, + 0.0306822769343853, + -0.06180053576827049, + 0.07537049800157547, + -0.014946029521524906, + -0.035287342965602875, + -0.010361399501562119, + 0.014482797123491764, + -0.008603844791650772, + 0.033488914370536804, + 0.07760490477085114, + 0.016635460779070854, + 0.0122211379930377, + 0.005804018583148718, + -0.08844996988773346, + 0.02891109697520733, + -0.04790358990430832, + -0.03539633750915527, + 0.01123336423188448, + -0.004887773655354977, + 0.05387110263109207, + -0.0521271713078022, + 0.06261800229549408, + -0.0734085738658905, + -0.04678638279438019, + 0.03452437371015549, + -0.0009026202606037259, + -0.05226341634988785, + -0.010593014769256115, + 0.033325422555208206, + 0.07902184873819351, + -0.0183112695813179, + 0.05771319940686226, + -0.0022139742504805326, + 0.05517904832959175, + -0.04539668932557106, + -0.007316333241760731, + 0.07166463881731033, + 0.03182673081755638, + 0.05092822015285492, + -0.027848388999700546, + -0.015559129416942596, + 0.03752175346016884, + 0.0980960875749588, + 0.07913084328174591, + 0.021472143009305, + -0.014292054809629917, + 0.02828437276184559, + 0.09684263914823532, + -0.06289049237966537, + -0.05043773725628853, + -0.02634969912469387, + 0.03749450668692589, + 0.019237732514739037, + -0.05090096965432167, + 0.0025069001130759716, + 0.07166463881731033, + -0.024128912016749382, + 0.025668475776910782, + 0.0018529260996729136, + -0.0461324118077755, + 0.009244194254279137, + 0.07177364081144333, + -0.021962624043226242, + -0.04844856634736061, + -0.04163634032011032, + 0.024633018299937248, + -0.0032903063111007214, + -0.018243147060275078, + -0.010749696753919125, + 0.003562795463949442, + -0.04981101304292679, + 0.053026385605335236, + 0.011396857909858227, + 0.07722342014312744, + 0.07580647617578506, + 0.027589524164795876, + -0.01120611559599638, + 0.06343547254800797, + -0.026867428794503212, + -0.06027459725737572, + -0.017439303919672966, + -0.031472496688365936, + -0.028584109619259834, + -0.05782219395041466, + -0.021744633093476295, + 0.012820613570511341, + 0.0460779145359993, + 0.0017796946922317147, + -0.03367965668439865, + 0.08801399171352386, + -0.012861487455666065, + 0.03441537916660309, + 0.047549355775117874, + 0.040273893624544144, + -0.009932229295372963, + -0.04070987552404404, + -0.05591477081179619, + -0.032889436930418015, + -0.012098517268896103, + 0.03820297494530678, + 0.04656839370727539, + 0.02332507073879242, + 0.0275486521422863, + 0.006689608097076416, + 0.06479791551828384, + -0.032834939658641815, + 0.004720874130725861, + 0.09384525567293167, + 0.01662183739244938, + -0.06261800229549408, + 0.018352143466472626, + 0.013236159458756447, + 0.0737355574965477, + 0.05825817584991455, + -0.007125590927898884, + -0.011839653365314007, + 0.0070234076119959354, + -0.05103721469640732, + 0.021949000656604767, + 0.013283845037221909, + -0.011717032641172409, + 0.05847616866230965, + -0.055206298828125, + -0.029728565365076065, + 0.014278430491685867, + -0.05267215147614479, + 0.09330028295516968, + -0.004356420133262873, + -0.019632842391729355, + -0.012493627145886421, + 0.0797848179936409, + 0.03575057536363602, + -0.032862190157175064, + -0.029319830238819122, + 0.05457957461476326, + 0.019142361357808113, + -0.022711969912052155, + 0.028720354661345482, + 0.02666306123137474, + -0.021431270986795425, + -0.020695550367236137, + -0.025327865034341812, + -0.025000877678394318, + 0.039592672139406204, + -0.02047755941748619, + -0.03441537916660309, + -0.08637905865907669, + -0.012588998302817345, + 0.027780266478657722, + -0.0491025410592556, + 0.02233048528432846, + 0.023188825696706772, + -0.01784803904592991, + 0.04989276081323624, + -0.013188473880290985, + 0.0676318034529686, + -0.00047728174831718206, + -0.018924370408058167, + 0.04117310792207718, + -0.032262712717056274, + 0.022575724869966507, + 0.013631269335746765, + -0.052971888333559036, + 0.026472318917512894, + 0.010872316546738148, + -0.010811006650328636, + 0.012977294623851776, + -0.007616071496158838, + -0.05640524998307228, + 0.05332612246274948, + -0.04340751841664314, + -0.01380157470703125, + 0.020777296274900436, + -0.062291014939546585, + 0.016322098672389984, + -0.035205595195293427, + 0.010197905823588371, + -0.033379919826984406, + 0.014482797123491764, + -0.06534289568662643, + 0.07537049800157547, + -0.07885835319757462, + -0.027180790901184082, + -0.04918428882956505, + 0.054933808743953705, + -0.028039131313562393, + -0.004346201661974192, + -0.04100961610674858, + -0.001439934829249978, + 0.06272699683904648, + -0.0015003932639956474, + 0.031554240733385086, + -0.027139917016029358, + 0.03605031222105026, + -0.014986902475357056, + -0.026826554909348488, + 0.030900267884135246, + 0.05447057634592056, + 0.09395425021648407, + 0.07030219584703445, + -0.03452437371015549, + -0.022602973505854607, + 0.0367315337061882, + -0.012350570410490036, + 0.008760525844991207, + 0.013433714397251606, + 0.06806778907775879, + -0.000535185681656003, + -0.06234551593661308, + 0.01116524264216423, + 0.042753543704748154, + -0.02817537635564804, + -0.056786734610795975, + -0.0245785191655159, + -0.06583337485790253, + -0.04046463593840599, + -0.044551972299814224, + 0.050546735525131226, + 0.05566953122615814, + 0.04553293436765671, + 0.052345164120197296, + 0.035314593464136124, + -0.014768911525607109, + -0.031581491231918335, + -0.013638081029057503, + 0.021199654787778854, + 0.05572402849793434, + -0.05199092626571655, + 0.05586027354001999, + -0.04730411246418953, + -0.01565450057387352, + -0.034578870981931686, + -0.09591617435216904, + 0.020232317969202995, + -0.03005555085837841, + -0.005531529430299997, + -0.029319830238819122, + 0.02660856395959854, + -0.06834027171134949, + -0.0034418783616274595, + 0.008522097952663898, + -0.018801750615239143, + -0.01167615968734026, + -0.05038323998451233, + -0.004608472343534231, + 0.0612555593252182, + -0.00023566052550449967, + 0.03724926337599754, + 0.004904804285615683 + ] + }, + { + "id": "33dcc55d-e69c-4bb5-b8ed-2d475a8242b4", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "bmiller", + "reviewDate": "2021-01-27T16:42:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "05be59c1-1d28-43d8-b033-61ce549f549f", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "marc71", + "reviewDate": "2021-04-27T15:52:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d9eb52be-0d1b-40f2-a6bc-5981a0211d5a", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelellis", + "reviewDate": "2021-06-16T10:20:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1b4ef7da-5d19-4cc1-8a36-7514309fbc9a", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "tuckeryvette", + "reviewDate": "2022-05-18T05:41:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "64cebbae-2ad1-49bf-a2fe-ee6f834dc73e", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "kelseymorris", + "reviewDate": "2022-11-09T16:11:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "095e61ea-5a9a-4e54-874a-00e7ccc14d70", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher24", + "reviewDate": "2022-03-12T05:36:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "85499fa7-e797-48d1-8e93-97de9c9dc11b", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "riosmatthew", + "reviewDate": "2022-08-30T12:48:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4f8d7755-761f-4fe1-9956-ac209fb315ac", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissa95", + "reviewDate": "2022-03-13T14:01:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8f458dbd-91e5-4ec6-b6fc-7c3cab2962c3", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "kirbymary", + "reviewDate": "2021-02-19T05:10:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a6e23c70-2c93-4647-9c73-07a4cf8b2c69", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "traci68", + "reviewDate": "2022-12-05T11:23:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "46bee986-4bc7-46c5-b9f7-baf966d1cb5f", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeffreyrichards", + "reviewDate": "2021-05-27T12:26:51", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b45e1673-fd7c-45a9-b7dd-2ff08ccf9591", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "ndelacruz", + "reviewDate": "2022-11-13T05:36:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ac673877-a33b-4046-8755-a84258879b82", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "wigginscathy", + "reviewDate": "2022-06-01T19:15:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ac9a280c-caab-4b69-86f3-8df240bf69b7", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "snorris", + "reviewDate": "2022-05-20T01:01:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cb6e5f31-4e77-4c07-bbb2-cbba45eb50c0", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "tjohnson", + "reviewDate": "2021-06-15T16:52:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5e1e457f-25fd-4e47-bdcd-f13fe852dc5a", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "ashleybaker", + "reviewDate": "2021-09-03T04:12:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a528af57-5a86-4b08-92ef-2d13989b2bdc", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "jason65", + "reviewDate": "2021-01-03T19:44:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4e1eafc9-d60d-4d9b-bc43-0b8a1fa5150c", + "productId": "dcf9295d-b5c2-4eb4-9d85-80a77192b8ed", + "category": "Electronics", + "docType": "customerRating", + "userName": "rose05", + "reviewDate": "2022-04-26T08:12:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Ultra (Steel)", + "description": "This Amazing Computer Ultra (Steel) is rated 4.7 out of 5 by 18.\n\nRated 5 out of 5 by EJ from Extremely compact design This high resolution display displays the user's information on a single screen. The LCD screen can", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-07-21T12:21:15", + "price": 848.15, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-01-01T08:30:08", + "newPrice": 769.96 + }, + { + "priceDate": "2024-01-07T08:30:08", + "newPrice": 848.15 + } + ], + "descriptionVector": [ + 0.012133332900702953, + 0.06529497355222702, + -0.02561684139072895, + -0.038972631096839905, + 0.04218386113643646, + 0.018330760300159454, + -0.08558409661054611, + 0.06884678453207016, + 0.017515789717435837, + 0.06806830316781998, + 0.04048093408346176, + -0.10237006098031998, + 0.0030743859242647886, + -0.04330292344093323, + -0.03666152060031891, + -0.007997660897672176, + -0.0033815205097198486, + -0.0003255701740272343, + 0.010843976400792599, + 0.00012534356210380793, + 0.06641403585672379, + -0.04933613911271095, + -0.03167438507080078, + 0.06461380422115326, + -0.005750409327447414, + 0.002517894608899951, + 0.011087251827120781, + 0.007644912227988243, + 0.04736561328172684, + -0.06801965087652206, + 0.032671812921762466, + 0.049725379794836044, + -0.016846783459186554, + -0.006586666684597731, + 0.03819415345788002, + -0.023317893967032433, + -0.0009837426478043199, + -0.030968887731432915, + 0.02196771837770939, + 0.08524350821971893, + 0.025884443894028664, + 0.013088187202811241, + 0.029436256736516953, + 0.04906853660941124, + 0.03320701792836189, + -0.079161636531353, + -0.04357052594423294, + -0.013562573119997978, + 0.04704935476183891, + 0.016652163118124008, + 0.024315321817994118, + 0.007304327562451363, + -0.024315321817994118, + 0.02624935656785965, + 0.016043975949287415, + -0.03953216224908829, + -0.0073651461862027645, + 0.20629706978797913, + 0.07317707687616348, + -0.02235695905983448, + 0.013696374371647835, + -0.0207513440400362, + 0.007687485311180353, + -0.004087017383426428, + -0.042743392288684845, + -0.01812397688627243, + -0.010552046820521355, + 0.07677754014730453, + 0.01184140332043171, + 0.0032112279441207647, + -0.030579648911952972, + -0.004743859637528658, + 0.05245005711913109, + 0.006592748686671257, + 0.019340351223945618, + 0.03306105360388756, + 0.06548959016799927, + 0.008526783436536789, + -0.01401263102889061, + 0.024570759385824203, + 0.09064421057701111, + 0.02539789490401745, + -0.00016269006300717592, + 0.030555320903658867, + 0.10509473830461502, + 0.0029421052895486355, + -0.050357893109321594, + -0.13312000036239624, + -0.0631054937839508, + 0.051671579480171204, + -0.04296233877539635, + 0.03539649024605751, + 0.07648561149835587, + -0.042062222957611084, + 0.03906993940472603, + 0.038291461765766144, + -0.08821146190166473, + 0.034447718411684036, + 0.032793451100587845, + 0.016712982207536697, + 0.03989707678556442, + 0.014389707706868649, + -0.038169823586940765, + -0.04653847962617874, + 0.01681029237806797, + -0.01149473711848259, + 0.07624233514070511, + -0.0048411693423986435, + -0.017004912719130516, + -0.04449497163295746, + -0.09195789694786072, + 0.00023491228057537228, + -0.06865216046571732, + -0.08480561524629593, + 0.006909005809575319, + 0.02527625672519207, + -0.062181051820516586, + -0.02384093590080738, + -0.04286503046751022, + -0.05804537981748581, + 0.010959532111883163, + -0.018963275477290154, + 0.031017543748021126, + 0.013903157785534859, + -0.012419180944561958, + 0.06077005714178085, + 0.02019181288778782, + 0.03590736910700798, + 0.04152701795101166, + 0.0005762572982348502, + -0.03510456159710884, + 0.05196350812911987, + 0.020495906472206116, + -0.03690479323267937, + -0.08485426753759384, + 0.01926736906170845, + -0.012966549955308437, + 0.02087298221886158, + -0.007097543682903051, + 0.020860819146037102, + -0.050698477774858475, + -0.0020708772353827953, + -0.0554666668176651, + -0.03420444577932358, + -0.10606783628463745, + 0.028390174731612206, + -0.02824421040713787, + 0.011391345411539078, + -0.05055251345038414, + 0.055272046476602554, + 0.02544654905796051, + -0.015387134626507759, + -0.06227836385369301, + -0.03690479323267937, + 0.07487999647855759, + 0.03167438507080078, + -0.014000467956066132, + 0.04395976662635803, + -0.08144842088222504, + 0.055320702493190765, + 0.01490058470517397, + -0.006744795478880405, + -0.05157426744699478, + -0.08091321587562561, + 0.08247017115354538, + 0.013003041036427021, + 0.024157192558050156, + 0.046684443950653076, + -0.09984000027179718, + 0.026735905557870865, + 0.02132304012775421, + 0.005726081784814596, + -0.01738198846578598, + -0.0480467826128006, + 0.04099181294441223, + 0.01983906328678131, + 0.044397659599781036, + 0.0072191813960671425, + -0.028317192569375038, + -0.059213098138570786, + -0.04430035129189491, + 0.0200093574821949, + -0.03284210339188576, + 0.016603508964180946, + 0.0774587094783783, + 0.01699274778366089, + 0.04203789308667183, + 0.019461987540125847, + 0.014341052621603012, + 0.03690479323267937, + -0.003950175363570452, + -0.024059882387518883, + 0.011731930077075958, + 0.00488678365945816, + -0.07692351192235947, + 0.0051635089330375195, + 0.030336374416947365, + 0.024680234491825104, + -0.03967812657356262, + -0.024558596312999725, + 0.020897310227155685, + 0.06441918015480042, + 0.05609918013215065, + -0.01218198798596859, + 0.015399297699332237, + -0.04413005709648132, + 0.008368655107915401, + 0.05225543677806854, + -0.007900350727140903, + 0.031698714941740036, + -0.024801870808005333, + 0.003916725050657988, + -0.04987134411931038, + 0.010734503157436848, + 0.031309474259614944, + 0.04483555629849434, + 0.0033754385076463223, + 0.00227309949696064, + -0.043132632970809937, + -0.07896701991558075, + 0.04495719447731972, + 0.023305730894207954, + -0.006732631474733353, + -0.04293801262974739, + -0.018196959048509598, + -0.04622222110629082, + 0.06257028877735138, + 0.00106812862213701, + 0.04614923894405365, + 0.003332865424454212, + -0.07702081650495529, + 0.0016253801295533776, + 0.01086222194135189, + 0.036345262080430984, + -0.012589473277330399, + -0.021116256713867188, + -0.06295952945947647, + -0.005625730846077204, + -0.034399062395095825, + 0.04853333160281181, + 0.019997192546725273, + -0.06402993947267532, + -0.03398549556732178, + -0.014341052621603012, + 0.003287251340225339, + -0.05084444582462311, + 0.09215251356363297, + -0.052741989493370056, + -0.01966877095401287, + 0.017223859205842018, + -0.015253333374857903, + -0.03790222108364105, + -0.012686783447861671, + 0.0537637434899807, + 0.061451226472854614, + 0.03975111246109009, + 0.03697777912020683, + -0.0207513440400362, + -0.013513918034732342, + -0.050357893109321594, + -0.047268304973840714, + 0.005020584911108017, + -0.023342221975326538, + 0.05444491282105446, + -0.014146432280540466, + 0.014462689869105816, + 0.06242432817816734, + -0.008934268727898598, + 0.02241777814924717, + 0.025592515245079994, + -0.017686082050204277, + -0.030336374416947365, + 0.0728364884853363, + -0.016858946532011032, + -0.05026058480143547, + 0.002073918003588915, + -0.03860772028565407, + 0.06286222487688065, + -0.06631672382354736, + 0.003868070198222995, + 0.06675461679697037, + 0.03162572905421257, + 0.03310970589518547, + 0.00446105282753706, + 0.05965099483728409, + -0.03478830307722092, + -0.006714385934174061, + -0.0336449109017849, + 0.06203508749604225, + -0.03323134407401085, + -0.017759064212441444, + 0.004543157760053873, + 0.053374502807855606, + 0.03291508927941322, + -0.03807251527905464, + 0.04644116759300232, + 0.008532864972949028, + -0.02527625672519207, + -0.057218246161937714, + -0.08962245285511017, + 0.036174971610307693, + 0.001149473711848259, + -0.07244724780321121, + -0.014292397536337376, + 0.012674619443714619, + 0.08261614292860031, + -0.0025285379961133003, + -0.0019279532134532928, + -0.022782690823078156, + -0.01636023446917534, + 0.05118503049015999, + 0.027636023238301277, + -0.030725613236427307, + -0.023074619472026825, + 0.08821146190166473, + -0.03563976660370827, + 0.06539227813482285, + 0.04756023362278938, + 0.05133099481463432, + 0.03515321761369705, + -0.003080467926338315, + -0.039313215762376785, + -0.07210666686296463, + 0.10528935492038727, + 0.016688654199242592, + -0.017637426033616066, + -0.03306105360388756, + -0.007158362306654453, + -0.004363742657005787, + -0.044811226427555084, + 0.054980117827653885, + 0.023877426981925964, + 0.019814737141132355, + 0.020325614139437675, + 0.02680888958275318, + -0.05867789313197136, + -0.04191625863313675, + 0.05765613913536072, + 0.013234151527285576, + 0.08772490918636322, + 0.049263156950473785, + -0.003427134593948722, + 0.0164088886231184, + -0.02671157941222191, + -0.011312280781567097, + -0.05381239578127861, + -0.009493800811469555, + -0.061110641807317734, + 0.0011722806375473738, + 0.004442806821316481, + 0.0014125145971775055, + -0.020654035732150078, + 0.006823859643191099, + 0.06704655289649963, + 0.027417076751589775, + 0.03464233875274658, + 0.04627087712287903, + -0.03658853843808174, + 0.020860819146037102, + -0.0073225731030106544, + 0.019680935889482498, + -0.011075087822973728, + 0.03666152060031891, + 0.018938947468996048, + -0.0686035081744194, + 0.03768327459692955, + 0.016214268282055855, + 0.0512336827814579, + 0.04802245646715164, + 0.033888187259435654, + -0.03870502859354019, + -0.08285941183567047, + -0.04736561328172684, + 0.09224982559680939, + -0.07264187186956406, + -0.01681029237806797, + -0.004199532326310873, + 0.013282806612551212, + -0.006446783430874348, + 0.012893566861748695, + -0.03751298040151596, + 0.037829238921403885, + -0.0034180115908384323, + 0.059553682804107666, + 0.06339742988348007, + 0.013745029456913471, + -0.016323743388056755, + 0.021237894892692566, + 0.027295438572764397, + 0.010983859188854694, + -0.050747133791446686, + 0.003123041009530425, + -0.006598830223083496, + -0.004257309716194868, + 0.0952664315700531, + -0.012735438533127308, + 0.1087925136089325, + 0.11969123035669327, + 0.03184467926621437, + -0.018780818209052086, + -0.0014436842175200582, + 0.04578432813286781, + 0.03858339041471481, + -0.074101522564888, + -0.01880514621734619, + -0.09769918024539948, + 0.019072748720645905, + 0.0656355544924736, + -0.036223623901605606, + -0.07585310190916061, + -0.015593918040394783, + -0.09925614297389984, + 0.016019649803638458, + 0.02007017470896244, + 0.05386105179786682, + 0.056001871824264526, + 0.08232420682907104, + -0.058288656175136566, + 0.05643976479768753, + -0.06383532285690308, + 0.03775625675916672, + -0.005513216368854046, + 0.016895437613129616, + -0.014560000039637089, + 0.0009039181168191135, + 0.019474152475595474, + -0.07648561149835587, + -0.004534034989774227, + -0.022965146228671074, + -0.08986572921276093, + 0.03795087710022926, + -0.07590175420045853, + -0.006282573100179434, + 0.04556538164615631, + 0.006659648846834898, + 0.018391579389572144, + 0.015618245117366314, + 0.0011464327108114958, + -0.006714385934174061, + 0.025811461731791496, + -0.023317893967032433, + -0.008046315982937813, + 0.02413286454975605, + -0.05911578983068466, + -0.09040093421936035, + 0.011938713490962982, + -0.06067274883389473, + 0.03478830307722092, + 0.012467836029827595, + 0.003363274736329913, + -0.02041075937449932, + 0.005972397513687611, + -0.03700210526585579, + -0.03301239758729935, + 0.031479764729738235, + 0.0032507602591067553, + -0.04914151877164841, + 0.08577871322631836, + -0.021079765632748604, + -0.01103251427412033, + -0.03332865610718727, + 0.0631054937839508, + -0.004752982407808304, + 0.0035153215285390615, + -0.02281918190419674, + -0.036345262080430984, + -0.11482573300600052, + -0.059213098138570786, + 0.004114386159926653, + -0.0058872513473033905, + -0.05021192878484726, + -0.05775345116853714, + 0.005394619889557362, + 0.044981520622968674, + -0.0006557017331942916, + -0.07191204279661179, + 0.004573567304760218, + 0.026030410081148148, + -0.024266665801405907, + 0.04286503046751022, + 0.03539649024605751, + -0.0037707602605223656, + 0.04069988429546356, + -0.00033868421451188624, + 0.07259321212768555, + -0.0014680116437375546, + 0.030798595398664474, + 0.03858339041471481, + -0.009311345405876637, + 0.057850759476423264, + -0.025081636384129524, + 0.06203508749604225, + -0.00892210565507412, + -0.05702362582087517, + -0.01732116937637329, + 0.022344795987010002, + -0.05352046713232994, + 0.0410647951066494, + -0.056585729122161865, + 0.053374502807855606, + -0.023926081135869026, + 0.034058477729558945, + -0.04631953313946724, + 0.07205801457166672, + -0.001602573087438941, + 0.01739415153861046, + 0.016506198793649673, + 0.022600233554840088, + -0.0694306418299675, + 0.030506666749715805, + 0.11667461693286896, + -0.02453426830470562 + ] + }, + { + "id": "0a05bfdd-cfbd-48b3-86c8-7accd066b921", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "bobbysmith", + "reviewDate": "2021-08-03T04:19:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c6354dac-a7c6-478c-8095-81fbb4db1499", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "martin64", + "reviewDate": "2022-03-17T02:28:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ae384e3a-4349-4ebc-9ee3-b5a030ef3f7f", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeremiahgarcia", + "reviewDate": "2021-11-26T02:08:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d1ba910b-132f-492b-b2c7-94456cdc9c55", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "morenomarilyn", + "reviewDate": "2021-07-17T14:21:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b1303478-18ba-4256-a629-b9ae964eb81b", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "erickane", + "reviewDate": "2021-01-01T08:30:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f032436d-1775-4a57-ab2c-ebcd50481b4b", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "silvajamie", + "reviewDate": "2021-07-09T16:50:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4160348d-2a21-4187-b812-5e020b97a536", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "tomcasey", + "reviewDate": "2021-01-07T04:22:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ebd64d61-8c81-44fe-8ec0-4c22ec87f7d1", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "natashacampbell", + "reviewDate": "2022-07-28T01:41:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "47296640-1d83-44e3-879c-b8a84d7e7c0f", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "feliciabranch", + "reviewDate": "2022-02-08T15:19:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "44c3c453-fd97-44c4-9840-4de634c05756", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "ochavez", + "reviewDate": "2021-12-15T13:36:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "bf1f1531-872c-4c55-94a2-6657548ac272", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathan06", + "reviewDate": "2022-11-16T02:17:31", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4a72f082-3847-4474-a894-6cef6d1e216b", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "cfisher", + "reviewDate": "2022-02-19T09:17:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6308461e-c5bf-4327-aea5-c808f0a0d5a8", + "productId": "fd4f270f-3c04-4a34-aca0-e443e3345ae6", + "category": "Electronics", + "docType": "customerRating", + "userName": "hendersonwayne", + "reviewDate": "2021-11-01T04:24:22", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "product", + "name": "Premium TV Ultra (Gold)", + "description": "This Premium TV Ultra (Gold) is in stock today, please use the promo code AM1C3 to get the $6.50 Premium premium", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-08-25T09:43:02", + "price": 167.05, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-06-30T20:24:45", + "newPrice": 157.0 + }, + { + "priceDate": "2022-09-19T20:24:45", + "newPrice": 153.48 + }, + { + "priceDate": "2023-11-12T20:24:45", + "newPrice": 167.05 + } + ], + "descriptionVector": [ + -0.01529279537498951, + 0.05849995091557503, + -0.013543139211833477, + 0.01955340802669525, + -0.030184905976057053, + -0.0441020168364048, + -0.0523294061422348, + 0.09995745122432709, + 0.0312533974647522, + 0.10791771858930588, + 0.03777119889855385, + -0.04378147050738335, + 0.04647941142320633, + -0.0281547699123621, + 0.10380402207374573, + -0.004137068521231413, + 0.0061271353624761105, + 0.01875203847885132, + -0.01796402595937252, + -0.023960938677191734, + 0.029303399845957756, + 0.01841813512146473, + 0.025857511907815933, + 0.029356824234128, + -0.0012279313523322344, + -0.02003422938287258, + -0.06886432319879532, + 0.06127803027629852, + 0.10444511473178864, + -0.01803080551326275, + 0.0040101851336658, + 0.001510914764367044, + 0.002402438083663583, + -0.009095540270209312, + -0.0021937480196356773, + 0.04172462224960327, + 0.015279439277946949, + 0.023773951455950737, + 0.02337326668202877, + 0.04244585335254669, + 0.031707506626844406, + 0.0015167581150308251, + -0.009603073820471764, + -0.009609752334654331, + 0.02844860590994358, + -0.030745863914489746, + 0.0521424226462841, + 0.0001592303888173774, + -0.011205811984837055, + -0.045945167541503906, + 0.010330984368920326, + 0.07351226359605789, + -0.05978213995695114, + 0.06053008511662483, + 0.016962314024567604, + -0.015559918247163296, + 0.0231595691293478, + 0.11710675060749054, + 0.02253182977437973, + -0.0391068160533905, + -0.02767394855618477, + 0.028956139460206032, + 0.04647941142320633, + 0.06859719753265381, + -0.014384577050805092, + -0.011993825435638428, + -0.021823953837156296, + 0.04810886085033417, + 0.00578321423381567, + 0.07682459056377411, + -0.007806671317666769, + 0.02866230346262455, + 0.06993281841278076, + 0.019847244024276733, + 0.025189705193042755, + 0.0923711508512497, + 0.002404107479378581, + 0.008935266174376011, + 0.00735256215557456, + -0.02794107235968113, + 0.014130809344351292, + -0.020167790353298187, + 0.009997080080211163, + 0.018511628732085228, + 0.09563005715608597, + 0.08157937973737717, + -0.035741064697504044, + -0.12191496044397354, + -0.03822530806064606, + 0.04813557490706444, + 0.025496896356344223, + 0.08312869817018509, + 0.015640055760741234, + -0.0840369164943695, + 0.03424517437815666, + 0.08654787391424179, + -0.0679561048746109, + 0.03341709449887276, + -0.10839853435754776, + 0.04484996199607849, + 0.025096211582422256, + -0.08216705173254013, + 0.0034725996665656567, + -0.026271551847457886, + 0.06629994511604309, + 0.011539716273546219, + 0.01530615147203207, + 0.06101090461015701, + 0.02385408990085125, + -0.14926835894584656, + -0.036969829350709915, + -0.011299305595457554, + 0.04965817555785179, + 0.022451693192124367, + 0.03854585811495781, + 0.033871203660964966, + 0.010718313045799732, + -0.02484244480729103, + 0.02911641262471676, + 0.01748320460319519, + -0.04135064780712128, + -0.02868901565670967, + -0.009088861756026745, + -0.00055302819237113, + 0.018484914675354958, + 0.03996160998940468, + -0.04161777347326279, + 0.12309030443429947, + 0.02339998073875904, + -0.0515013262629509, + -0.05342461168766022, + 0.026004429906606674, + -0.001515088602900505, + 0.014384577050805092, + -0.03197462856769562, + 0.06256022304296494, + -0.04503694921731949, + 0.04287325218319893, + -0.006153847556561232, + 0.02274552918970585, + -0.10359032452106476, + -0.0330965481698513, + 0.06667391210794449, + 0.029543809592723846, + -0.07661089301109314, + 0.011693311855196953, + -0.0004945950349792838, + -0.011873619630932808, + -0.008841773495078087, + 0.01718936860561371, + 0.04605201631784439, + -0.09482868760824203, + -0.020621899515390396, + -0.037691064178943634, + 0.05689721181988716, + -0.003532702336087823, + -0.033844489604234695, + -0.017429780215024948, + -0.06827665120363235, + 0.053611598908901215, + -0.021743817254900932, + -0.008588006719946861, + -0.0779465064406395, + 0.009636464528739452, + 0.009309238754212856, + 0.019807174801826477, + 0.05254310369491577, + 0.003404149552807212, + -0.035821203142404556, + 0.0444759875535965, + -0.005329105071723461, + -0.04797530174255371, + -0.006030302960425615, + -0.10839853435754776, + 0.02397429384291172, + 0.046853385865688324, + 0.03686298057436943, + -0.004170458763837814, + 0.03886640444397926, + 0.0006915982812643051, + -0.010838517919182777, + 0.07564924657344818, + -0.0015726869460195303, + -0.040362294763326645, + -0.02520306035876274, + 0.02640511468052864, + 0.008274137042462826, + 0.024561965838074684, + -0.024642102420330048, + -0.024775663390755653, + 0.007098795380443335, + 0.013416255824267864, + -0.010224134661257267, + -0.05254310369491577, + -0.013075673952698708, + 0.08173965662717819, + -0.0115797845646739, + 0.015853753313422203, + -0.03325682133436203, + 0.02818148210644722, + -0.004280646797269583, + 0.003803164465352893, + 0.08104513585567474, + -0.0251496359705925, + -0.08836431056261063, + -0.028795866295695305, + 0.022157857194542885, + 0.01637464389204979, + -0.016828753054142, + 0.1056738793849945, + -0.11272592842578888, + -0.050005435943603516, + 0.013396221213042736, + 0.022451693192124367, + 0.0693451464176178, + 0.04378147050738335, + -0.03515339270234108, + 0.0019282945431768894, + -0.07164240628480911, + -0.03996160998940468, + 0.03536709398031235, + 0.038652706891298294, + -0.02466881461441517, + -0.03563421592116356, + -0.042045168578624725, + -0.04330064728856087, + 0.04573146626353264, + -0.05019242316484451, + 0.013028927147388458, + -0.033283531665802, + -0.1030026525259018, + -0.07388623803853989, + -0.014985603280365467, + -0.006404275074601173, + -0.016989026218652725, + 0.014731836505234241, + -0.03825202211737633, + -0.029971206560730934, + 0.0007387622026726604, + 0.04995201155543327, + -0.05556159466505051, + 0.07613006979227066, + 0.0042839860543608665, + 0.014611631631851196, + 0.003357402980327606, + -0.02604449726641178, + 0.08296842128038406, + 0.004888352006673813, + -0.08307527005672455, + 0.035767778754234314, + -0.03013148158788681, + -0.02688593603670597, + -0.039908185601234436, + 0.03323010727763176, + 0.028074633330106735, + 0.03822530806064606, + 0.0830218493938446, + -0.05705748498439789, + -0.02551025152206421, + 0.016668478026986122, + -0.01949998363852501, + -0.013770193792879581, + -0.03138696029782295, + -0.0037964864168316126, + -0.014184234663844109, + 0.05908761918544769, + 0.0197403933852911, + -0.05855337530374527, + 0.02721983939409256, + 0.0281547699123621, + -0.03822530806064606, + 0.029543809592723846, + -0.004534414038062096, + 0.03873284161090851, + 0.022972583770751953, + 0.0006319129606708884, + -0.07404651492834091, + 0.03301640972495079, + -0.004834927152842283, + -0.026672236621379852, + -0.009215745143592358, + -0.005462666507810354, + 0.06987939029932022, + -0.030906137079000473, + 0.078213632106781, + -0.07890815287828445, + -0.025216417387127876, + -0.004587838426232338, + -0.021009229123592377, + -0.053878720849752426, + -0.009843484498560429, + 0.05083351954817772, + 0.03905339166522026, + -0.03352394327521324, + 0.04439585283398628, + 0.006581244524568319, + 0.005155474878847599, + 0.055294472724199295, + -0.05566844344139099, + 0.06629994511604309, + -0.03571435436606407, + 0.0007951084990054369, + -0.04415544122457504, + 0.023306487128138542, + -0.06629994511604309, + 0.07404651492834091, + 0.005646313540637493, + -0.05465337634086609, + 0.0015810346230864525, + -0.013703413307666779, + 0.06672734022140503, + -0.06336159259080887, + -0.06768897920846939, + -0.039160240441560745, + 0.008240746334195137, + -0.0796026736497879, + -0.03924037888646126, + 0.020621899515390396, + -0.03918695077300072, + -0.009623108431696892, + 0.006671398412436247, + -0.02418799325823784, + -0.07623691856861115, + -0.01565341092646122, + 0.04172462224960327, + 0.018524983897805214, + -0.018965737894177437, + 0.03015819378197193, + 0.008915232494473457, + 0.03395134210586548, + -0.020808886736631393, + -0.037236955016851425, + 0.037958186119794846, + 0.056256115436553955, + 0.0637889876961708, + 0.009823450818657875, + 0.029036276042461395, + 0.06710131466388702, + 0.007379274349659681, + 0.008260780945420265, + 0.09589717537164688, + 0.005930131766945124, + 0.0077332123182713985, + 0.013690056279301643, + 0.013503070920705795, + -0.06170542538166046, + 0.01515923347324133, + -0.04340749606490135, + 0.00028298349934630096, + 0.03998832032084465, + 0.0015693479217588902, + -0.02709963358938694, + 0.07602322101593018, + -0.008681499399244785, + 0.1030026525259018, + -0.04383489489555359, + -0.008374308235943317, + 0.008474479429423809, + -0.010164032690227032, + 0.03224175423383713, + -0.02938353642821312, + -0.02796778455376625, + -0.019005805253982544, + 0.03694311901926994, + 0.014411289244890213, + 0.09146293252706528, + -0.0027463589794933796, + 0.09274512529373169, + 0.001189532340504229, + -0.04583831503987312, + 0.040335580706596375, + -0.01059142965823412, + -0.049497902393341064, + 0.04989858716726303, + -0.0539054311811924, + 0.11507661640644073, + 0.025042787194252014, + 0.035286955535411835, + -0.002090238034725189, + 0.024748951196670532, + -0.07623691856861115, + -0.029303399845957756, + -0.0019817191641777754, + 0.015599986538290977, + 0.09012731909751892, + 0.03942736238241196, + -0.04482324793934822, + -0.038171883672475815, + 0.007319171912968159, + 0.01661505363881588, + -0.026271551847457886, + 0.016120877116918564, + -0.004861639812588692, + 0.025229772552847862, + 0.054119132459163666, + -0.01518594566732645, + -0.009235779754817486, + 0.044208865612745285, + 0.036515720188617706, + 0.04354105889797211, + 0.049070507287979126, + 0.020434914156794548, + -0.04236571863293648, + 0.010638175532221794, + -0.0490972176194191, + -0.05775200575590134, + -0.014758548699319363, + -0.0037163496017456055, + 0.01772361434996128, + -0.01745649240911007, + -0.06469720602035522, + -0.06699446588754654, + -0.019126011058688164, + 0.01150632556527853, + 0.04583831503987312, + 0.042045168578624725, + 0.06346844136714935, + -0.0037731132470071316, + 0.0427129752933979, + 0.0018848871113732457, + 0.046132151037454605, + 0.08024376630783081, + -0.029971206560730934, + 2.6503616027184762e-05, + 0.05807255208492279, + 0.003053550375625491, + -0.010357696563005447, + 0.0009366002050228417, + -0.04714721813797951, + 0.03737051412463188, + -0.002375725656747818, + -0.010851874016225338, + 0.026578744873404503, + 0.0014775244053453207, + -0.025016075000166893, + 0.026391757652163506, + 0.009175676852464676, + 0.006237323395907879, + -0.008421054109930992, + -0.06389583647251129, + -0.066941037774086, + -0.04386160522699356, + 0.043968454003334045, + 0.03320339694619179, + -0.03598147630691528, + -0.050299271941185, + -0.019807174801826477, + -0.00030280902865342796, + 0.046880096197128296, + -0.03355065733194351, + -0.10877250880002975, + 0.014251015149056911, + 0.024588678032159805, + 0.011793483048677444, + -0.03472599759697914, + -0.006945199333131313, + 0.0029550488106906414, + 0.08024376630783081, + 0.02142326906323433, + 0.07607664912939072, + 0.016120877116918564, + 0.07458075881004333, + -0.007693144027143717, + -0.0041971709579229355, + -0.05013899877667427, + 0.03232188895344734, + -0.04434242844581604, + 0.006427648477256298, + 0.027834221720695496, + 0.059621866792440414, + -0.06191912293434143, + -0.0737793892621994, + 0.024735596030950546, + -0.03461914882063866, + 0.030879424884915352, + -0.023453405126929283, + 0.03563421592116356, + -0.02183731086552143, + -0.0065779052674770355, + 0.0016044079093262553, + 0.011706667952239513, + 0.031654082238674164, + 0.030291754752397537, + 0.07538212835788727, + -0.03934722766280174, + -0.029062988236546516, + -0.046853385865688324, + 0.06507118046283722, + 0.0010484580416232347, + 0.1332409828901291, + 0.007926876656711102, + 0.028288330882787704, + 0.03293627128005028, + -0.007833383977413177, + -0.05663008987903595, + -0.03542051836848259, + 0.020795529708266258, + 0.004854961764067411, + 0.06368213891983032, + -0.008574649691581726, + 0.020234571769833565, + 0.0597287155687809, + -0.06987939029932022, + 0.036248598247766495, + -0.016628410667181015, + -0.07783965766429901, + 0.025256484746932983, + 0.007045370526611805, + 0.019994160160422325, + 0.018912311643362045, + -0.01055803894996643, + 0.06646021455526352 + ] + }, + { + "id": "6acc0a0f-de7b-4427-b279-29b276b3b45c", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "thomasdonna", + "reviewDate": "2022-07-25T16:42:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "846b52b5-2050-48c0-b886-4ecf1bda7fb7", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "susan83", + "reviewDate": "2022-01-11T03:27:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9b1f6dd2-8bbf-42d6-9811-9d8b0b1572ae", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "gmartin", + "reviewDate": "2022-01-03T14:16:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2facd1fc-9915-43e7-baee-80e7150f3544", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "michellemejia", + "reviewDate": "2021-10-04T10:39:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cab0c418-4047-44c9-aca7-6fed108e3c48", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "daniellecurtis", + "reviewDate": "2022-04-21T21:38:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "baa74bfe-3d40-4cc5-8fb3-c84f5de3e78c", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "maureen16", + "reviewDate": "2022-09-20T01:34:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "302c6aca-d491-4a12-b043-4375f4173c71", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "kimberly47", + "reviewDate": "2021-06-30T20:24:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "114111d2-8d73-4dcf-96a6-6bbb7ef2e90e", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "michaelbenson", + "reviewDate": "2022-01-03T20:41:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4aaee3de-ebb2-4a13-8e8f-65bf7193c98b", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "cindyblair", + "reviewDate": "2021-07-22T09:22:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "96ad7e29-8dab-4463-80e4-33daa5ad435b", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "seanburns", + "reviewDate": "2022-02-10T11:47:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f61d09ee-c616-4e0a-8dc3-2a6ba7071692", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "natalie41", + "reviewDate": "2022-06-30T07:28:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "eb563e93-8b2f-4163-bb00-07d563e5e50f", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "xsmith", + "reviewDate": "2021-11-04T04:09:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3a105529-67f0-4979-8a3a-c37098c7c622", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "vmartin", + "reviewDate": "2022-03-19T05:00:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7bd97e8c-86c0-415f-b950-4a19ada13339", + "productId": "9f97d1b0-6b6c-4171-855c-21acbf2c29ec", + "category": "Media", + "docType": "customerRating", + "userName": "alopez", + "reviewDate": "2022-06-22T18:40:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "product", + "name": "Luxe Filter + (Steel)", + "description": "This Luxe Filter + (Steel) is a custom tank made by Waffle on Vixx, which is available for testing by our customers through the Vixx Service. The stainless steel filter comes with two tanks, the tank that comes with the stainless valve, and the tank that comes with the stainless valve, which", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-09-20T10:06:46", + "price": 871.98, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-01-03T18:09:30", + "newPrice": 821.28 + }, + { + "priceDate": "2021-08-22T18:09:30", + "newPrice": 785.25 + }, + { + "priceDate": "2022-04-10T18:09:30", + "newPrice": 825.21 + }, + { + "priceDate": "2022-11-27T18:09:30", + "newPrice": 822.53 + }, + { + "priceDate": "2023-02-23T18:09:30", + "newPrice": 871.98 + } + ], + "descriptionVector": [ + -0.06127482280135155, + 0.04650232568383217, + -0.04965544864535332, + -0.023201508447527885, + 0.03043879009783268, + 0.0022763919550925493, + 0.002111908281221986, + -0.020371146500110626, + -0.009254533797502518, + 0.0008875911007635295, + 0.006250379607081413, + 0.050623729825019836, + -0.02693808078765869, + -0.029917407780885696, + 0.05077269673347473, + 0.00255415216088295, + -0.07989561557769775, + 0.05208856612443924, + -0.0005268132663331926, + -0.058891359716653824, + 0.021178048104047775, + -0.0016494918381795287, + -0.05784859508275986, + -0.005915204994380474, + 0.0003840538556687534, + -0.04205816239118576, + 0.003361053066328168, + -0.005409340374171734, + -0.014164216816425323, + -0.01538077462464571, + 0.08555633574724197, + 0.03801124542951584, + -0.006939348764717579, + 0.07398661971092224, + -0.01693250797688961, + -0.0692196935415268, + 0.05750100687146187, + 0.10507092624902725, + 0.022233227267861366, + 0.053528573364019394, + -0.0018838035175576806, + -0.05303201824426651, + -0.10005572438240051, + 0.06112585589289665, + 0.015591810457408428, + -0.08083906769752502, + -0.06192034110426903, + -0.019564246758818626, + -0.044714730232954025, + -0.024058064445853233, + 0.03803607448935509, + -0.01083730161190033, + -0.04511197283864021, + 0.031009826809167862, + -0.01677112653851509, + 0.008354528807103634, + 0.03490778058767319, + 0.23933926224708557, + 0.03321949392557144, + -0.023325646296143532, + -0.021264946088194847, + -0.0816832110285759, + -0.017913201823830605, + -0.00978832971304655, + -0.07036177068948746, + 0.012463517487049103, + -0.01636146940290928, + 0.014995944686233997, + 0.001737940707243979, + 0.10075090080499649, + -0.023387715220451355, + 0.07800871133804321, + 0.018260790035128593, + 0.03982366994023323, + 0.02353668212890625, + 0.013543522916734219, + 0.0066538299433887005, + -0.04044436290860176, + 0.01317110750824213, + -0.04133816063404083, + 0.040022291243076324, + 0.07314247637987137, + -0.10755369812250137, + -0.0243684109300375, + -0.020048387348651886, + 0.02599462680518627, + -0.0014244905905798078, + -0.051294077187776566, + -0.028402915224432945, + -0.010589024052023888, + 0.06192034110426903, + 0.05174097791314125, + -0.018968380987644196, + -0.09861572086811066, + 0.014561460353434086, + 0.11083095520734787, + -0.035031918436288834, + 0.010886956937611103, + -0.03287190571427345, + 0.08689703047275543, + -0.019539417698979378, + 0.013766972348093987, + -0.04046918824315071, + 0.07075901329517365, + 0.03369121998548508, + 0.025895316153764725, + -0.009955917485058308, + -0.03572709485888481, + -0.01582767441868782, + -0.08029285818338394, + 0.05303201824426651, + -0.0328967347741127, + -0.04915889352560043, + -0.008503495715558529, + 0.023871855810284615, + 0.020011145621538162, + -0.008323494344949722, + -0.00815590750426054, + 0.026590492576360703, + -0.0048848544247448444, + -0.0007463834481313825, + 0.06703485548496246, + 0.05467064678668976, + -0.05928860604763031, + 0.010750404559075832, + -0.0047731297090649605, + 0.0034696743823587894, + 0.0027713945601135492, + 0.052535463124513626, + -0.0021832878701388836, + -0.09355086088180542, + -0.023946339264512062, + -0.017242854461073875, + -0.04761957377195358, + -0.029396025463938713, + -0.03110913746058941, + -0.0013306108303368092, + 0.05764997377991676, + -0.011091785505414009, + 0.04416852071881294, + -0.013295246288180351, + -0.04302644357085228, + -0.03175465762615204, + 0.03803607448935509, + 0.026888424530625343, + -0.08640047907829285, + -0.031183620914816856, + 0.016100779175758362, + -0.061324477195739746, + -0.011513857170939445, + 0.07041142135858536, + -0.11539925634860992, + -0.020160112529993057, + 0.0376884862780571, + 0.059785157442092896, + 0.031506381928920746, + -0.056358933448791504, + 0.05625962093472481, + 0.004714163951575756, + -0.03644709661602974, + 0.02601945400238037, + -0.04585680738091469, + -0.04583197832107544, + 0.016386298462748528, + 0.005514858290553093, + 0.046551983803510666, + 0.014635942876338959, + 0.01744147576391697, + -0.04424300417304039, + -0.0015750087331980467, + 0.060083091259002686, + -0.00041314883856102824, + -0.015306292101740837, + -0.04945682734251022, + -0.0628637969493866, + -0.03590088710188866, + 0.05104580149054527, + 0.02857670933008194, + 0.015591810457408428, + 0.03515605628490448, + 0.021898051723837852, + 0.05303201824426651, + -0.023151852190494537, + -0.047247156500816345, + 0.04307610169053078, + -0.00069246074417606, + 0.017218027263879776, + -0.0012832829961553216, + 0.0486375093460083, + 0.011979376897215843, + -0.029420852661132812, + -0.0074234893545508385, + 0.04992855340242386, + 0.02986775152385235, + -0.039054010063409805, + -0.03994780778884888, + -0.030612584203481674, + 0.00045271802810020745, + 0.03163051977753639, + -0.04804164543747902, + 0.03853262588381767, + 0.02604428306221962, + -0.001548629254102707, + 0.022121502086520195, + -0.02496427670121193, + 5.411667734733783e-05, + 0.0180869959294796, + 0.06753140687942505, + 0.013816628605127335, + -0.007932458072900772, + -0.0690210685133934, + 0.009465569630265236, + -0.018298031762242317, + 0.07691628485918045, + 0.026615319773554802, + 0.011234545148909092, + -0.04364713653922081, + -0.009266948327422142, + -0.03200293704867363, + -0.023983580991625786, + 0.02275460958480835, + -0.02526220865547657, + -0.06852451711893082, + -0.02167460322380066, + 0.013344901613891125, + -0.04277816787362099, + 0.07920043915510178, + 0.015778018161654472, + 0.05427340418100357, + 0.0813356265425682, + 0.08501012623310089, + -0.03453536331653595, + 0.005825204774737358, + -0.058792050927877426, + 0.015753190964460373, + -0.03113396465778351, + -0.06455208361148834, + 0.022580815479159355, + 0.046278875321149826, + -0.03205259144306183, + 0.039724357426166534, + -0.005207614973187447, + -0.019154589623212814, + -0.029098091647028923, + -0.04297678917646408, + 0.03485812246799469, + 0.07428454607725143, + -0.0783562958240509, + -0.04302644357085228, + 0.006318655796349049, + -0.009496604092419147, + -0.025647038593888283, + -0.044739559292793274, + 0.08227907866239548, + 0.005533479154109955, + 0.10288608819246292, + -0.00880142766982317, + -0.02547324448823929, + -0.07388730347156525, + -0.10854680836200714, + -0.004599335603415966, + -0.016944920644164085, + -0.030215339735150337, + 0.013605592772364616, + -0.04305127263069153, + -0.009800744242966175, + -0.009453156031668186, + -0.06430380791425705, + -0.0029265680350363255, + 0.04337403178215027, + -0.01992424763739109, + 0.043820932507514954, + 0.03890504315495491, + 0.028030499815940857, + 0.003117430955171585, + 0.030836032703518867, + -0.11212199926376343, + 0.03413812071084976, + -0.02326357737183571, + -0.026615319773554802, + 0.056656867265701294, + -0.05402512848377228, + -0.024542205035686493, + -0.06117551028728485, + 0.06698519736528397, + -0.00815590750426054, + 0.04419334977865219, + 0.0033765705302357674, + -0.0008278494351543486, + -0.044665075838565826, + -0.0008262976771220565, + 0.07120591402053833, + 0.03994780778884888, + -0.04709819331765175, + 0.05774928629398346, + 0.004369679372757673, + 0.020780805498361588, + -0.01773940771818161, + -0.028402915224432945, + -0.025138070806860924, + -0.07105694711208344, + -0.004987269174307585, + -0.008491081185638905, + -0.008025561459362507, + -0.058196183294057846, + 0.08108734339475632, + 0.05764997377991676, + 0.012109722010791302, + 0.03103465400636196, + -0.07632042467594147, + 0.025969799607992172, + 0.02086770161986351, + -0.04645267128944397, + -0.0010575058404356241, + 0.020321492105722427, + -0.023313231766223907, + 0.03262363001704216, + -0.014362838119268417, + -0.0062255519442260265, + 0.011737306602299213, + -0.04007194563746452, + 0.028080156072974205, + -0.09871502965688705, + 0.06529691070318222, + -0.001464835717342794, + -0.05581272393465042, + -0.04617956653237343, + -0.002403633901849389, + 0.0008247459190897644, + 0.013096624054014683, + 0.030215339735150337, + 0.0212152898311615, + -0.07726387679576874, + -0.01941527985036373, + -0.05377684906125069, + -0.01932838372886181, + -0.0392029769718647, + -0.07140453159809113, + -0.05710376426577568, + -0.033740878105163574, + 0.04275333881378174, + 0.02572152204811573, + -0.011743512935936451, + 0.03679468482732773, + 0.0723976418375969, + -0.00949039775878191, + 0.014673184603452682, + -0.004605542868375778, + 0.04781819507479668, + 0.05298236384987831, + 0.0011661271564662457, + -0.019378038123250008, + 0.035007089376449585, + -0.02289116196334362, + 0.07244729995727539, + 0.01973804086446762, + 0.045658182352781296, + -0.052932705730199814, + 0.025845659896731377, + 0.039401598274707794, + -0.005458995699882507, + -0.0029715681448578835, + 0.010005572810769081, + 0.05894101783633232, + -0.006945555564016104, + 0.05238649621605873, + -0.007659352850168943, + -0.034063637256622314, + -0.09355086088180542, + 0.0180869959294796, + -0.036223649978637695, + -0.04558369889855385, + 0.031009826809167862, + 0.055763065814971924, + -0.029892578721046448, + -0.06941831856966019, + 0.07929974794387817, + -0.0003780408878810704, + 0.004686232656240463, + 0.054769959300756454, + 0.04401955381035805, + -0.001897769165225327, + -0.0041151950135827065, + -0.020495286211371422, + 0.10189297795295715, + 0.033095356076955795, + -0.052535463124513626, + 0.02073114924132824, + -0.036223649978637695, + -0.0565079003572464, + -0.01795044355094433, + -0.0038917455822229385, + -0.02259322814643383, + 0.06827624142169952, + 0.029917407780885696, + 0.0109738539904356, + -0.0376884862780571, + 0.03508157283067703, + 0.018807001411914825, + -0.0846625342965126, + 0.01535594742745161, + 0.06405552476644516, + -0.05184028670191765, + -0.08669841289520264, + -0.029271885752677917, + -0.009571087546646595, + 0.04392024502158165, + 0.043175410479307175, + 0.0282787773758173, + -0.06524726003408432, + 0.005722790490835905, + -0.0721990242600441, + -0.00721245352178812, + -0.029892578721046448, + 0.017751822248101234, + 0.06370794028043747, + 0.05268443003296852, + -0.03950090706348419, + 0.057302385568618774, + -0.04903475567698479, + 0.04843888804316521, + 0.01473525445908308, + 0.00683383084833622, + -0.015107669867575169, + 0.04429265856742859, + 0.081534244120121, + -0.06122516840696335, + 0.02696290798485279, + 0.027484290301799774, + -0.035329852253198624, + 0.05387616157531738, + -0.038433317095041275, + -0.04198368266224861, + 0.0021258739288896322, + 0.037465035915374756, + -0.02068149298429489, + 0.06206930801272392, + -0.029346369206905365, + -0.028725676238536835, + -0.008584185503423214, + 0.007293143775314093, + -0.0006742278928868473, + -0.01302214153110981, + -0.008242804557085037, + -0.03888021409511566, + -0.07006383687257767, + -0.10477299243211746, + 0.0012460413854569197, + -0.007349006365984678, + -0.009149015881121159, + -0.01903044991195202, + 0.005517961457371712, + -0.07070935517549515, + -0.00878901407122612, + -0.0375891737639904, + -0.055961690843105316, + 0.01663457415997982, + 0.08307356387376785, + 0.08262666314840317, + 0.012823519296944141, + -0.0660417452454567, + 0.06127482280135155, + 0.008906945586204529, + -0.021413911134004593, + 0.041934024542570114, + -0.019129760563373566, + -0.06400587409734726, + 0.01760285533964634, + -0.010942819528281689, + -0.027807051315903664, + -0.0109986811876297, + -0.0035441576037555933, + -0.02429392747581005, + 0.038458142429590225, + -0.04295196384191513, + -0.0028505329973995686, + -0.008565564639866352, + -0.10725576430559158, + 0.023127024993300438, + 0.016547678038477898, + 0.03652158007025719, + 0.046254049986600876, + 0.017180785536766052, + 0.06817693263292313, + 0.036546409130096436, + -0.0172800961881876, + 0.07051073759794235, + 0.013680076226592064, + 0.06142378970980644, + 0.06633967906236649, + 0.03714227303862572, + -0.023797372356057167, + -0.06867348402738571, + -0.02380978688597679, + -0.04675060510635376, + -0.03158086538314819, + 0.05149269849061966, + -0.02857670933008194, + -0.01706906035542488, + -0.016299400478601456, + 0.07706525176763535, + 0.006635209079831839, + 0.020122870802879333, + -0.022022191435098648, + -0.035950545221567154, + 0.03890504315495491, + 0.02445530705153942, + -0.022580815479159355, + 0.052585117518901825, + 0.021475981920957565, + 0.013357315212488174, + 0.02445530705153942 + ] + }, + { + "id": "efea3c91-3f86-4f12-a7d3-735f32716018", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "rachel24", + "reviewDate": "2021-05-06T11:16:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3defb601-9ccd-4815-a7ac-dec8476462b3", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "stephanieparks", + "reviewDate": "2022-09-13T19:46:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9468da69-ef8a-479d-84f1-d44491f50823", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "darrelljones", + "reviewDate": "2021-03-13T19:49:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f1e0309e-c899-4dad-9a9c-41b1d5e11bd2", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "luis72", + "reviewDate": "2022-08-31T04:55:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d4c89b77-6905-4778-a038-28d0cc031bae", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "maryrodriguez", + "reviewDate": "2021-10-30T03:10:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ed393e3b-a055-4981-80d1-db2d5487b0ec", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "robertjones", + "reviewDate": "2022-01-31T22:04:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c9cba50f-489a-415e-91c9-6fc9a666658e", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "davispatricia", + "reviewDate": "2022-04-27T19:02:41", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7d562989-6ff7-4207-aeb6-ca50d04c5bb2", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "edward65", + "reviewDate": "2022-05-07T04:57:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cc363798-121e-49e9-a3ae-8f820ace5240", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "oliveraaron", + "reviewDate": "2022-09-23T09:50:13", + "stars": 2, + "verifiedUser": false + }, + { + "id": "63c39906-d099-4298-a2e3-1c8b24d12715", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "wallkristen", + "reviewDate": "2022-03-07T16:49:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5f66488d-4677-4492-9da7-4308cd69fe22", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "joshua34", + "reviewDate": "2022-11-28T00:14:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ef89bc24-98f8-407d-8604-d338394b2847", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "higginsbeth", + "reviewDate": "2021-05-06T14:22:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "58adc840-ee0b-414f-a4fd-6259d6afdaa3", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "millspeter", + "reviewDate": "2021-12-16T05:19:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8f95db62-6771-4e99-9bf1-f6fdc50bec6f", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "samantha43", + "reviewDate": "2022-10-17T19:11:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f807daa6-e9d3-4033-8ebe-7b308dadfec5", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "kbradley", + "reviewDate": "2021-01-24T03:40:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "09a5f51e-bc24-47a9-963d-ac1a63718ae3", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "evanschad", + "reviewDate": "2021-02-01T20:21:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76087a57-ddac-4ba8-b7b4-4e4cf75e6293", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "linda33", + "reviewDate": "2021-02-08T19:36:37", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ae711c9c-2d9b-4686-ab04-c38298e90431", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "nancy46", + "reviewDate": "2021-01-03T18:09:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9ba4d9f7-7ee4-4a91-840a-798196894a5d", + "productId": "4edcba67-ecf5-4178-b130-4a153b8156f5", + "category": "Other", + "docType": "customerRating", + "userName": "jordanshane", + "reviewDate": "2021-08-19T03:25:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Micro (Steel)", + "description": "This Premium Speaker Micro (Steel) is made to stand on its own in our car. We combine the highest quality materials, with the latest technologies, to create amazing speaker design for your personal enjoyment, when you need it. The Micro can also accommodate up to 8 sub", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-01-27T12:21:38", + "price": 976.29, + "stock": 49, + "priceHistory": [ + { + "priceDate": "2021-02-11T16:14:29", + "newPrice": 1060.87 + }, + { + "priceDate": "2022-07-08T16:14:29", + "newPrice": 1073.03 + }, + { + "priceDate": "2024-10-30T16:14:29", + "newPrice": 976.29 + } + ], + "descriptionVector": [ + -0.006982305087149143, + 0.008461549878120422, + -0.04304737225174904, + -0.06139542907476425, + -1.2875269021606073e-05, + 0.029666315764188766, + -0.024658598005771637, + 0.036180417984724045, + 0.03088770993053913, + 0.030697714537382126, + -0.008841538801789284, + 0.02931346744298935, + 0.041147422045469284, + -0.06443534791469574, + -0.0410659983754158, + -0.04329165071249008, + 0.014683876186609268, + -0.03862321004271507, + 0.00983901135623455, + -0.05661842226982117, + 0.06085258722305298, + -0.10710272938013077, + -0.01570170558989048, + 0.016407400369644165, + -0.05501703545451164, + -0.004369878210127354, + 0.007233369629830122, + 0.015525281429290771, + -0.07263226062059402, + 0.01324534509330988, + 0.031593404710292816, + 0.012648218311369419, + -0.01775093376636505, + 0.015755988657474518, + -0.021211551502346992, + -0.006493747234344482, + 0.03859606757760048, + -0.07246940582990646, + 0.0710037350654602, + 0.014385312795639038, + 0.029069188982248306, + 0.030779141932725906, + 0.03563757613301277, + -0.0483672209084034, + 0.0376460924744606, + 0.07887494564056396, + -0.02947632037103176, + 0.045843008905649185, + -0.030480578541755676, + -0.032543379813432693, + -0.016909528523683548, + 0.07708356529474258, + -0.05618414655327797, + 0.07067802548408508, + 0.022867219522595406, + -0.044865891337394714, + 0.04046887159347534, + 0.19401173293590546, + 0.05173284187912941, + -0.01540314219892025, + 0.05319851636886597, + -0.05300852283835411, + -0.02682996541261673, + 0.04839436337351799, + -0.0667695626616478, + 0.02144225873053074, + 0.013543907552957535, + 0.00281260022893548, + 0.016095265746116638, + 0.11160831898450851, + 0.024115756154060364, + -0.0748579129576683, + 0.010124003514647484, + 0.026029273867607117, + 0.06899521499872208, + -0.07279511541128159, + 0.0036913256626576185, + 0.058681219816207886, + 0.051705699414014816, + -0.03365620598196983, + 0.020465143024921417, + 0.004261309746652842, + -0.008753327652812004, + 0.005628592800348997, + 0.023206494748592377, + -0.019311605021357536, + 0.059061210602521896, + -0.09982864558696747, + -0.006629458162933588, + 0.06470676511526108, + 0.027481377124786377, + 0.0363704152405262, + 0.0526285320520401, + 0.010008648969233036, + 0.071872279047966, + 0.05270995944738388, + -0.07578074187040329, + 0.047688670456409454, + -0.09537734091281891, + -0.014100320637226105, + 0.054148491472005844, + -0.0445130430161953, + 0.026083558797836304, + 0.004441126249730587, + -0.04804151877760887, + 0.1069941595196724, + 0.02635497972369194, + 0.07833210378885269, + 0.03941033035516739, + -0.12463652342557907, + 0.03436189889907837, + -0.0077354987151920795, + -0.016950242221355438, + 0.009445451200008392, + 0.048801496624946594, + -0.026287123560905457, + 0.023803621530532837, + -0.04388877749443054, + -0.03772751986980438, + -0.021672967821359634, + -0.04831293970346451, + 0.016610965132713318, + -0.004044172819703817, + -0.018592339009046555, + 0.010381853207945824, + 0.0064699980430305, + -0.02041085995733738, + 0.044187337160110474, + -0.01163717545568943, + 0.001578482799232006, + -0.05672698840498924, + 0.018320918083190918, + -0.03599042445421219, + 0.01324534509330988, + 0.029883451759815216, + 0.02725066803395748, + 0.032109104096889496, + 0.049697186797857285, + 0.02066870965063572, + 0.04532730579376221, + 0.0014071482000872493, + 0.0406588651239872, + 0.010470065288245678, + 0.06220969185233116, + -0.00846833549439907, + -0.010802555829286575, + -0.05254710465669632, + 0.056455567479133606, + -0.035447582602500916, + -0.03037201054394245, + -0.013509980402886868, + -0.08528047800064087, + -0.0406588651239872, + -0.03349335119128227, + 0.05431134253740311, + 0.007301224861294031, + -0.11128260940313339, + 0.01834806054830551, + -0.08305482566356659, + 0.027332095429301262, + 0.049181483685970306, + -0.04084886237978935, + -0.009343667887151241, + 0.020763706415891647, + 0.018253061920404434, + 0.060309745371341705, + 0.012213945388793945, + -0.0009347060695290565, + -0.042721666395664215, + 0.035963281989097595, + 0.013055349700152874, + -0.015240289270877838, + 0.00431220093742013, + -0.05352422222495079, + 0.061612568795681, + -0.05802981182932854, + 0.0500500313937664, + -0.05737840011715889, + 0.006639636121690273, + 0.04638585075736046, + 0.004050958435982466, + 0.05368707329034805, + -0.026857107877731323, + -0.010727914981544018, + 0.0018270026193931699, + 0.08783183246850967, + -0.0020068190060555935, + 0.05382278561592102, + 0.05146142095327377, + 0.027820652350783348, + 0.06144971400499344, + -0.0009033230016939342, + 0.009031534194946289, + -0.021917246282100677, + 0.025187868624925613, + -0.07198084890842438, + 0.024835022166371346, + 0.09559447318315506, + -0.017045238986611366, + -0.05683555826544762, + -0.029530605301260948, + 0.023097926750779152, + 0.06736668944358826, + 0.012926424853503704, + -0.006483569275587797, + -0.011548963375389576, + 0.004010245203971863, + 0.08468335121870041, + 0.003179018385708332, + 0.0011111297644674778, + 0.0038643565494567156, + -0.09255456179380417, + -0.049181483685970306, + 0.016529539600014687, + 0.0714380070567131, + 0.03156626224517822, + -0.016108836978673935, + -0.030941994860768318, + -0.010632917284965515, + -0.02357291430234909, + 0.046575844287872314, + -0.03683182969689369, + 0.06541246175765991, + -0.013978181406855583, + -0.08533476293087006, + -0.05629271641373634, + -0.0036947184707969427, + -0.01477887388318777, + 0.05509846284985542, + 0.006877129431813955, + -0.04432304948568344, + -0.012105376459658146, + -0.01503672357648611, + 0.008529405109584332, + 0.004736296366900206, + 0.017465941607952118, + -0.010470065288245678, + -0.06123257800936699, + 0.022745080292224884, + 0.04036030173301697, + -0.03444332629442215, + 0.005818587727844715, + -0.07632358372211456, + 0.022799363359808922, + -0.03194625303149223, + 0.004936469253152609, + 0.035067591816186905, + -0.03675040230154991, + -0.09771156311035156, + 0.0032027678098529577, + -0.12246515601873398, + 0.04312879592180252, + -0.04641298949718475, + 0.0363704152405262, + -0.025133585557341576, + 0.06215541064739227, + 0.11660246551036835, + -0.13809899985790253, + 0.0260971300303936, + -0.022351520135998726, + 0.0055471668019890785, + -0.0547727569937706, + -0.016882386058568954, + 0.04543587565422058, + -0.09374881535768509, + -0.004247738514095545, + 0.02233794890344143, + -0.008929750882089138, + -0.011779671534895897, + 0.067583829164505, + -0.0006200273637659848, + 0.018877331167459488, + 0.02452288754284382, + 0.012471795082092285, + 0.0008922965498641133, + -0.006853380240499973, + -0.09000320732593536, + 0.05471847206354141, + -0.04068600758910179, + -0.01916232332587242, + 0.11562534421682358, + -0.004651477560400963, + 0.09271741658449173, + -0.0008172316593118012, + 0.09233742207288742, + -0.027060674503445625, + 0.04253166913986206, + 0.03846035525202751, + -0.04179883375763893, + -0.05322565883398056, + -0.004173097666352987, + -0.028607772663235664, + 0.019800161942839622, + 0.0710037350654602, + 0.006948377471417189, + -0.021577969193458557, + -0.017737362533807755, + -0.006510711275041103, + 0.05070144310593605, + 0.05851836875081062, + -0.04855721816420555, + 0.06155828386545181, + -0.008034061640501022, + -0.03175625577569008, + 0.02601570263504982, + 0.057649821043014526, + 0.0048584360629320145, + 0.040197450667619705, + -0.030697714537382126, + -0.014765302650630474, + 0.04090314358472824, + -0.033601921051740646, + -0.0765950083732605, + 0.042857374995946884, + 0.0483672209084034, + 0.009872938506305218, + 0.0028923300560563803, + -0.017683077603578568, + -0.0005135794053785503, + 0.026558544486761093, + -0.019569454714655876, + -0.008067989721894264, + -0.06660671532154083, + 0.00712480116635561, + -0.04942576587200165, + 0.002030568430200219, + -0.024997875094413757, + 0.017140235751867294, + 0.03170197457075119, + 0.03691325709223747, + -0.00021066934277769178, + -0.04421447962522507, + 0.02750851772725582, + -0.03802608326077461, + 0.015213146805763245, + -0.05224854126572609, + -0.023803621530532837, + -0.04329165071249008, + 0.019908729940652847, + 0.0017930750036612153, + 0.0312405563890934, + -0.029232041910290718, + 0.018795903772115707, + -0.0363704152405262, + 0.0017286124639213085, + -0.06079830601811409, + 0.025405006483197212, + -0.04179883375763893, + -0.0038609637413173914, + -0.034769028425216675, + 0.0013808542862534523, + -0.06269825249910355, + 0.05070144310593605, + -0.012872140854597092, + 0.08126344531774521, + -0.010273285210132599, + -0.012336084619164467, + -0.00966937281191349, + 0.06910378485918045, + 0.009818654507398605, + 0.004393627401441336, + 0.004369878210127354, + 0.04055029898881912, + -0.0445130430161953, + 0.006168042309582233, + 0.026558544486761093, + -0.013537122868001461, + 0.03761895000934601, + -0.027494948357343674, + 0.009784727357327938, + -0.015606707893311977, + -0.008074774406850338, + 0.06921235471963882, + -0.008196914568543434, + -0.0389217734336853, + 0.03311336040496826, + 0.04307451471686363, + -0.005034859757870436, + -0.02643640525639057, + 0.011589677073061466, + 0.018633050844073296, + 0.015430283732712269, + 0.03881320357322693, + -0.0031484835781157017, + 0.010361496359109879, + 0.029286326840519905, + -0.036261845380067825, + 0.05401277914643288, + -0.03832464665174484, + 0.037157535552978516, + -0.05574987456202507, + -0.0543384850025177, + -0.025472860783338547, + 0.03132198378443718, + 0.05553273856639862, + 0.019393030554056168, + -0.014371741563081741, + 0.05884407460689545, + -0.04030602052807808, + -0.026151413097977638, + 0.0308062843978405, + 0.05463704839348793, + 0.009703300893306732, + -0.025255724787712097, + 0.0028567060362547636, + -0.04440447688102722, + 0.001125548966228962, + 0.01766950637102127, + -0.007816924713551998, + -0.04600585997104645, + 0.009893295355141163, + -0.0800149142742157, + -0.053117088973522186, + -0.04044172912836075, + 0.03216338902711868, + 0.06465248018503189, + 0.056672703474760056, + -0.025255724787712097, + 0.037076108157634735, + -0.03569186106324196, + 0.07084088027477264, + -0.08267483860254288, + -0.05460990592837334, + 0.023423632606863976, + -0.026246411725878716, + 0.034769028425216675, + -0.03761895000934601, + -0.015498138964176178, + 0.018538054078817368, + -0.09060032665729523, + -0.10465993732213974, + -0.07941778749227524, + -0.032407667487859726, + -0.021075841039419174, + -0.004736296366900206, + 0.010442922823131084, + -0.000642504426650703, + -0.0033571384847164154, + -0.07963491976261139, + -0.02229723520576954, + -0.022310806438326836, + 0.006846594624221325, + 0.05580415949225426, + 0.05873550474643707, + -0.08994892239570618, + -0.06307823956012726, + 0.0019253927748650312, + -0.021292977035045624, + 0.08462906628847122, + -0.015158862806856632, + -0.020125867798924446, + -0.006636243313550949, + -0.01870090700685978, + 0.001603928511030972, + -0.0059984042309224606, + -0.02537786401808262, + 0.023097926750779152, + 0.06318680942058563, + -0.05357850715517998, + 0.060689736157655716, + -0.024373605847358704, + 0.0791463628411293, + 0.033303357660770416, + 0.06693241745233536, + -0.020098725333809853, + -0.032407667487859726, + -0.07968920469284058, + 0.032543379813432693, + -0.012885712087154388, + 0.02790207974612713, + 0.00418327609077096, + -0.022704366594552994, + 0.022270092740654945, + -0.03778180480003357, + -0.04266738146543503, + -0.08207771182060242, + 0.03368334472179413, + -0.07306653261184692, + 0.015118150040507317, + 0.042423103004693985, + -0.002659925725311041, + 0.05992975831031799, + -0.013951039873063564, + 0.046195853501558304, + 0.008990820497274399, + -0.008115488104522228, + -0.05113571509718895, + 0.005218068603426218, + -0.0539042092859745, + 0.05401277914643288, + 0.05699840933084488, + 0.1022714301943779, + -0.04758010059595108, + -0.02814635820686817, + -0.01256000716239214, + 0.015186005271971226, + 0.042938802391290665, + -0.008956893347203732, + 0.008481906726956367, + 0.03829750418663025, + -0.005241818260401487, + -0.03205481916666031, + 0.007579431403428316, + 0.04429590702056885, + -0.042341675609350204, + 0.030453436076641083, + -0.040197450667619705, + 0.017384514212608337, + -0.006503925658762455, + 0.06226397678256035, + 0.05268281698226929, + 0.0372118204832077 + ] + }, + { + "id": "b1ed1894-8792-4bb9-9b84-0e9374f36e32", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "gregoryflores", + "reviewDate": "2022-06-20T16:58:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c50ae1f3-0b9d-4a59-8e27-5c5bdc20d5f2", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "oconnorsandra", + "reviewDate": "2022-01-07T10:43:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b8d21ca7-513b-4f5a-97a7-c2bcf92896e0", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "benjamintaylor", + "reviewDate": "2021-08-25T08:17:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "62266b87-1512-42fd-ac49-bb227bbb44ab", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "wangtimothy", + "reviewDate": "2021-02-11T16:14:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3df3be91-e7b2-4807-8151-80e1c56cc637", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "qshort", + "reviewDate": "2022-07-08T19:06:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "48d02cc9-2acc-4916-9d13-6bca933e6c69", + "productId": "57804a4d-ef73-4d68-8e36-48bb959a6486", + "category": "Media", + "docType": "customerRating", + "userName": "jeremiahsantos", + "reviewDate": "2022-03-26T08:06:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "productId": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard + (Red)", + "description": "This Awesome Keyboard + (Red) is by far my favorite design available on this device. Having played both of its modes (Randy and Play Mode) it was", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-12-01T02:53:46", + "price": 1071.14, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-06-08T18:37:48", + "newPrice": 1099.47 + }, + { + "priceDate": "2021-08-31T18:37:48", + "newPrice": 1069.06 + }, + { + "priceDate": "2021-11-23T18:37:48", + "newPrice": 1065.45 + }, + { + "priceDate": "2022-02-15T18:37:48", + "newPrice": 1151.46 + }, + { + "priceDate": "2022-05-10T18:37:48", + "newPrice": 1124.82 + }, + { + "priceDate": "2024-07-01T18:37:48", + "newPrice": 1071.14 + } + ], + "descriptionVector": [ + 0.03264970704913139, + 0.008922175504267216, + -0.0272730253636837, + 0.0038539383094757795, + -0.012727412395179272, + -0.03711729124188423, + -0.0410134382545948, + 0.007448133546859026, + 0.031714633107185364, + 0.12145587801933289, + 0.03241594135761261, + 0.004003290552645922, + 0.005409150384366512, + -0.016104072332382202, + 0.017584608867764473, + 0.015766406431794167, + -0.05958506837487221, + 0.001575504313223064, + -0.041247203946113586, + 0.03800041601061821, + 0.0802086740732193, + -0.043740738183259964, + -0.06961115449666977, + -0.0272730253636837, + 0.011363760568201542, + 0.00036972807720303535, + -0.029480842873454094, + 0.025701580569148064, + 0.01357157714664936, + 0.004808494355529547, + 0.029299022629857063, + 0.03098735213279724, + -0.025273004546761513, + 0.0880529135465622, + -0.05490969121456146, + -0.042364101856946945, + 0.0024967805948108435, + 0.02070152573287487, + -0.025688592344522476, + 0.00877282302826643, + 0.0029773053247481585, + 0.01889631152153015, + 0.02275349572300911, + -0.007727357558906078, + 0.009967641904950142, + 0.07631252706050873, + -0.018013184890151024, + -0.0416627936065197, + 0.008675419725477695, + -0.019298912957310677, + 0.01902618259191513, + 0.030415916815400124, + 0.024584684520959854, + -0.03000032901763916, + 0.016935249790549278, + 0.021727511659264565, + -0.04548101872205734, + 0.0017516425577923656, + 0.04174071550369263, + -0.11636491119861603, + 0.004077966790646315, + -0.02677951380610466, + -0.010798819363117218, + -0.0592733770608902, + -0.027324974536895752, + -0.016649533063173294, + -0.007266313303261995, + -0.027662640437483788, + -0.005558502394706011, + 0.03916925936937332, + -0.03444193676114082, + -0.012571566738188267, + -0.0754813477396965, + 0.040260180830955505, + 0.04150694981217384, + 0.021961279213428497, + 0.11345578730106354, + 0.06353316456079483, + 0.05272785201668739, + 0.021974267438054085, + -0.006438382435590029, + -0.02063659019768238, + -0.0802086740732193, + -0.02498728595674038, + -0.05187069997191429, + -0.023195059970021248, + 0.07459822297096252, + -0.10202708840370178, + -0.0751696527004242, + 0.04275371506810188, + -0.07049427926540375, + 0.035117268562316895, + -0.0029740585014224052, + -0.003120164154097438, + 0.046649862080812454, + -0.0022759989369660616, + 0.015376792289316654, + 0.024532737210392952, + -0.008370221592485905, + 0.010467647574841976, + 0.004668882116675377, + -0.07392288744449615, + -0.055585023015737534, + -0.038701724261045456, + 0.01692226342856884, + 0.006175392307341099, + 0.0544421561062336, + 0.04994859918951988, + -0.06254614144563675, + -0.08129959553480148, + 0.01121440902352333, + -0.04867585748434067, + 0.017428763210773468, + 0.003418868640437722, + -0.06670203059911728, + -0.000805609452072531, + -0.04628622159361839, + 0.06503967195749283, + 0.04997457191348076, + -0.049922626465559006, + 0.021182050928473473, + 0.070442333817482, + -0.03948095068335533, + -0.01518198475241661, + -0.02466260828077793, + -0.018493708223104477, + -0.017636556178331375, + 0.06135132163763046, + 0.03787054494023323, + 0.011129992082715034, + -0.0409095399081707, + 0.11335188895463943, + 0.10691026598215103, + 0.06031234934926033, + 0.00905204750597477, + 0.07418262958526611, + -0.008480612188577652, + 0.06374096125364304, + -0.051792774349451065, + 0.043039433658123016, + 0.060779888182878494, + -0.015480688773095608, + 0.02274050936102867, + 0.023779481649398804, + -0.0671176165342331, + 0.06181886047124863, + -0.00041640066774562, + 0.06197470426559448, + 0.061455219984054565, + 0.027792511507868767, + 0.043662816286087036, + -0.0880529135465622, + -0.05176680162549019, + -0.017766429111361504, + 0.04103941097855568, + 0.01500016450881958, + -0.06135132163763046, + -0.039091337472200394, + -0.002141257282346487, + 0.07116960734128952, + -0.049377165734767914, + 0.030909430235624313, + -0.015571598894894123, + 0.0228184312582016, + -0.030078250914812088, + 0.0545460507273674, + 0.006000065710395575, + 0.05714348331093788, + 0.027974331751465797, + 0.03262373432517052, + 0.022389855235815048, + 0.046831682324409485, + 0.048571959137916565, + -0.006233834661543369, + 0.008311779238283634, + -0.05013041943311691, + 0.05844219774007797, + -0.043740738183259964, + -0.0036201695911586285, + 0.023467790335416794, + 0.0244807880371809, + 0.04028615728020668, + -0.06181886047124863, + 0.018688516691327095, + 0.11491034924983978, + 0.06394875049591064, + 0.07839047163724899, + 0.04818234592676163, + 0.013896255753934383, + -0.0073052747175097466, + 0.022104138508439064, + 0.007948138751089573, + -0.06353316456079483, + -0.021584652364253998, + -0.00705202529206872, + 0.09646859019994736, + 0.030078250914812088, + -0.005344214383512735, + -0.015194972045719624, + 0.06852023303508759, + 0.028234075754880905, + 0.043039433658123016, + 0.08691004663705826, + -0.011558568105101585, + -0.007396184839308262, + 0.03649390488862991, + 0.05589671805500984, + 0.023389866575598717, + 0.042727742344141006, + -0.009461143054068089, + 0.023221034556627274, + 0.06477992981672287, + -0.044052429497241974, + -0.03709131479263306, + 0.06789685040712357, + -0.014207947999238968, + -0.0026915878988802433, + -0.033376988023519516, + 0.025026248767971992, + -0.04932521656155586, + 0.01983138546347618, + 0.029273048043251038, + -0.02250673994421959, + -0.00017674706759862602, + -0.02522105537354946, + -0.01753265969455242, + 0.06374096125364304, + 0.009227373637259007, + -0.0008490352774970233, + 0.06680592894554138, + -0.05039016157388687, + -0.0441303551197052, + 0.027974331751465797, + -0.007532550022006035, + 0.011422202922403812, + 0.022545700892806053, + 0.007272806949913502, + -0.044364120811223984, + -0.03911731019616127, + 0.0577668659389019, + 0.005389669444411993, + -0.01127934455871582, + -0.05553307756781578, + -0.04864988476037979, + 0.09958550333976746, + -0.02411714754998684, + 0.1011439636349678, + 0.04319527745246887, + -0.044727761298418045, + 0.013870282098650932, + -0.050182368606328964, + 0.0003151414275635034, + 0.0049968077801167965, + 0.06706567108631134, + -0.006068248301744461, + 0.046831682324409485, + 0.03005227819085121, + 0.010740377008914948, + 0.0521823912858963, + -0.09091008454561234, + -0.006610461976379156, + 0.02435091696679592, + -0.031948402523994446, + 0.06935141235589981, + -0.050987571477890015, + 0.013714436441659927, + 0.018428772687911987, + -0.061766911298036575, + -0.0392991304397583, + 0.0012711178278550506, + 0.025260016322135925, + -0.03174060583114624, + 0.02168854884803295, + -0.010578038170933723, + 0.00948711670935154, + -0.021584652364253998, + -0.06135132163763046, + 0.04994859918951988, + 0.0672215148806572, + -0.013818332925438881, + 0.01555861160159111, + 0.09454648941755295, + 0.09698807448148727, + -0.036234162747859955, + -0.05610451102256775, + -0.0265197716653347, + 0.05244213342666626, + 0.014026127755641937, + -0.0448836088180542, + 0.018441760912537575, + -0.03249386325478554, + -0.0353250615298748, + 0.01722096838057041, + -0.0036526373587548733, + 0.02919512428343296, + 0.009837769903242588, + 0.019104106351733208, + -0.026052232831716537, + 0.050675880163908005, + -0.03680559992790222, + 0.11117004603147507, + -0.050675880163908005, + -0.054390206933021545, + -0.062338344752788544, + -0.008733862079679966, + -0.01518198475241661, + 0.015143022872507572, + 0.07839047163724899, + -0.026324963197112083, + -0.046208299696445465, + 0.08784511685371399, + -0.013584564439952374, + -0.03724716231226921, + -0.030779557302594185, + 0.04332514852285385, + -0.053714875131845474, + -0.002907499438151717, + 0.031325019896030426, + 0.01729889027774334, + -0.022727521136403084, + 0.04228617623448372, + -0.062390293926000595, + -0.0560525618493557, + 0.06628643721342087, + -0.011876753531396389, + -0.00942218117415905, + 0.005941623356193304, + -0.023259995505213737, + -0.006509811617434025, + -0.024519748985767365, + -0.07007869333028793, + 0.010188423097133636, + 0.0018149549141526222, + -0.018571631982922554, + 0.01050660852342844, + -0.08950747549533844, + 0.020182039588689804, + 0.06285782903432846, + 0.09662443399429321, + -0.01810409501194954, + 0.022454790771007538, + 0.06477992981672287, + 0.017948249354958534, + -0.03280555456876755, + -0.06472798436880112, + -0.0787021592259407, + -0.0417666919529438, + -0.031584762036800385, + 0.0593772754073143, + -0.03584454953670502, + 0.0011923832353204489, + -0.006444875616580248, + 0.07111766189336777, + -0.04903949797153473, + 0.03942900523543358, + -0.01133778691291809, + -0.01457158848643303, + -0.014000153169035912, + 0.02932499721646309, + 0.1012478619813919, + 0.036597803235054016, + -0.009350751526653767, + 0.02932499721646309, + 0.024571698158979416, + -0.00021794070198666304, + 0.023130124434828758, + 0.008759836666285992, + 0.045844659209251404, + 0.007311768364161253, + 0.05646815150976181, + 0.05090964958071709, + -0.010597518645226955, + -0.0944945439696312, + 0.003896146547049284, + -0.03997446224093437, + 0.028727587312459946, + -0.042857613414525986, + -0.029584739357233047, + -0.003944848198443651, + 0.03893548995256424, + -0.04693558067083359, + 0.00029545777942985296, + -0.0656111091375351, + -0.004305242095142603, + 0.04698752611875534, + 0.0008392949239350855, + -0.019013196229934692, + -0.04213033244013786, + -0.016220957040786743, + 0.026701591908931732, + -0.03732508420944214, + 0.034312065690755844, + -0.0313509926199913, + 0.09615689516067505, + 0.014623536728322506, + -0.029662663117051125, + 0.009707898832857609, + 0.06820853799581528, + 0.030519815161824226, + 0.00441563269123435, + 0.011844285763800144, + -0.010104007087647915, + -0.005620191339403391, + -0.047325193881988525, + -0.022948304191231728, + -0.12322212755680084, + -0.02883148565888405, + 0.02857174165546894, + -0.015078087337315083, + -0.08602691441774368, + 0.020415809005498886, + 0.07470211386680603, + -0.035169217735528946, + -0.003909133840352297, + 0.029740585014224052, + 0.005308499559760094, + 0.06716956943273544, + 0.13652098178863525, + 0.01568848267197609, + -0.02870161272585392, + 0.026013271883130074, + 0.09548156708478928, + 0.015714457258582115, + 0.03519519045948982, + -0.06602669507265091, + 0.04761091247200966, + 0.025376901030540466, + -0.043351124972105026, + -0.022831419482827187, + -0.07158520072698593, + 0.01457158848643303, + 0.0022110631689429283, + -0.001084427465684712, + 0.042545922100543976, + -0.010311800986528397, + -0.017026159912347794, + -0.06877997517585754, + 0.07994892448186874, + -0.040260180830955505, + 0.07865021377801895, + -0.006081235595047474, + -0.07948139309883118, + -0.08109179884195328, + -0.02740289829671383, + -0.04114330932497978, + 0.04340307414531708, + -0.03711729124188423, + 0.04579271003603935, + 0.007584498729556799, + -0.015285882167518139, + 0.02032489888370037, + -0.0642084926366806, + -0.06587085127830505, + -0.027792511507868767, + 0.00018598012684378773, + -0.011415709741413593, + 0.01549367606639862, + 0.12291043996810913, + -0.06509162485599518, + 0.04158487170934677, + -0.0072533260099589825, + 0.04672778397798538, + 0.013818332925438881, + -0.046519991010427475, + -0.02368857152760029, + -0.015779392793774605, + 0.05968896672129631, + 0.01853267103433609, + 0.006425395142287016, + -0.048312216997146606, + -0.0008628341020084918, + -0.04501347988843918, + 0.017714479938149452, + 0.019597617909312248, + -0.01736382581293583, + -0.07252027839422226, + 0.011552074924111366, + -0.03358478471636772, + -0.00036120525328442454, + 0.03342893719673157, + 0.0033214648719877005, + -0.08478014916181564, + -0.003128281095996499, + -0.02137685753405094, + 0.06415654718875885, + -0.03727313503623009, + 0.013909243047237396, + 0.01877942681312561, + 0.01848072186112404, + 0.021415818482637405, + 0.07610473036766052, + -0.003948095254600048, + -0.021987253800034523, + -0.016714468598365784, + -0.05475384742021561, + -0.002128269989043474, + 0.013987165875732899, + -0.02535092644393444, + -0.07958528399467468, + -0.01518198475241661, + 0.05127329006791115, + -0.029766559600830078, + 0.03018214926123619, + -0.030961377546191216, + 0.008740355260670185, + -0.016441738232970238, + -0.04716934636235237, + 0.06659813225269318, + 0.007103973999619484, + -0.011500125750899315, + -0.0018880077404901385, + -0.03322114422917366 + ] + }, + { + "id": "d02a9bf6-e977-434f-807d-2ba9fd576420", + "productId": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patrickaustin", + "reviewDate": "2021-09-02T13:05:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6bf595af-0d09-4a8d-8c17-7f27db264210", + "productId": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vanessathompson", + "reviewDate": "2022-05-12T17:00:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0fe7cb1c-1c77-444d-9390-c8e71a652081", + "productId": "79b8037c-91cb-4ed3-8e7a-d48e282a8284", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dmendoza", + "reviewDate": "2021-06-08T18:37:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d2ec7755-86ac-4ac9-8318-010e65317738", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Mini (Red)", + "description": "This Awesome Computer Mini (Red) is a special case of a nice computer to play with and build around. It can be used to play, set it off, even run some cool circuits. There is a power of 3.2v, a full 4x USB cable that connects to any Arduino board (if you choose to do that), and a powerful board that is almost entirely made with Arduino on top. The Mini is built with the Arduino IDE.\n\nThe Mini has two built", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-11-28T03:44:36", + "price": 414.24, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-09-09T01:10:05", + "newPrice": 433.91 + }, + { + "priceDate": "2022-01-04T01:10:05", + "newPrice": 400.38 + }, + { + "priceDate": "2022-05-01T01:10:05", + "newPrice": 428.49 + }, + { + "priceDate": "2022-08-26T01:10:05", + "newPrice": 447.35 + }, + { + "priceDate": "2022-12-21T01:10:05", + "newPrice": 447.19 + }, + { + "priceDate": "2024-04-20T01:10:05", + "newPrice": 414.24 + } + ], + "descriptionVector": [ + -0.09084595739841461, + 0.08470486104488373, + -0.029858462512493134, + 0.007722700946033001, + -0.0005302325589582324, + 0.03613191470503807, + -0.016610093414783478, + 0.04992292448878288, + 0.06808152794837952, + 0.07591672986745834, + 0.024511467665433884, + -0.053522881120443344, + 0.03734954819083214, + -0.02821730636060238, + 0.04584650322794914, + 0.024564409628510475, + -0.047196488827466965, + -0.01793360710144043, + -0.06241689249873161, + 0.006948445457965136, + 0.04894352704286575, + -0.011779269203543663, + -0.08512838184833527, + 0.03589368239045143, + 0.02366442047059536, + -0.003474222728982568, + -0.05270230397582054, + 0.0029266190249472857, + -0.07745200395584106, + 0.023730594664812088, + 0.04735530912876129, + -0.004824206233024597, + -0.04049951210618019, + 0.0032988572493195534, + -0.006567935459315777, + -0.027158495038747787, + 0.002233428880572319, + -0.016768915578722954, + -0.013519689440727234, + 0.046481791883707047, + 0.024683525785803795, + 0.02972611039876938, + 0.02150709368288517, + -0.01413512323051691, + 0.013215281069278717, + 0.062258072197437286, + -0.022049734368920326, + -0.02617909573018551, + -0.015604223124682903, + -0.04756707325577736, + 0.010508696548640728, + 0.021308565512299538, + 0.03377606347203255, + 0.02972611039876938, + -0.03560250997543335, + 0.02345265820622444, + -0.06088161841034889, + 0.09815175831317902, + -0.0075704967603087425, + -0.07305794209241867, + 0.07390499114990234, + 0.0516434945166111, + 0.03075845167040825, + -0.019654173403978348, + -0.0371113158762455, + -0.0292496457695961, + -0.07104620337486267, + 0.04677296429872513, + 0.04203478619456291, + 0.03147314861416817, + -0.002843899419531226, + -0.0020249756053090096, + 0.001367354765534401, + 0.037243667989969254, + 0.07046385109424591, + 0.001602278440259397, + 0.06458745151758194, + 0.03658191114664078, + 0.01171309407800436, + -0.009787381626665592, + 0.05569344386458397, + -0.006584479473531246, + 0.0066771251149475574, + -0.08687542378902435, + -0.022910017520189285, + -0.008887392468750477, + 0.023942356929183006, + -0.11943385004997253, + 0.040075987577438354, + -0.01276528649032116, + -0.032214317470788956, + 0.09545178711414337, + 0.030467279255390167, + 0.03239960968494415, + 0.030626099556684494, + 0.05370817333459854, + -0.01196456141769886, + 0.059875745326280594, + 0.009198417887091637, + -0.0292496457695961, + 0.011481478810310364, + 0.008695483207702637, + -0.02980552241206169, + -0.07671083509922028, + -0.0011125784367322922, + 0.001635366235859692, + 0.05241113156080246, + 0.006485215853899717, + 0.010204288177192211, + -0.15140993893146515, + -0.014876291155815125, + -0.003474222728982568, + -0.06649331748485565, + -0.026284975931048393, + 0.014929231256246567, + 0.011693241074681282, + -0.026933498680591583, + 0.0010149693116545677, + -0.08057549595832825, + -0.02287031151354313, + 0.08481074124574661, + 0.03737602010369301, + 0.03689955547451973, + -0.0085697490721941, + -0.0435965321958065, + 0.007219765800982714, + -0.02467028982937336, + -0.0062304395250976086, + 0.0778755322098732, + 0.055322859436273575, + -0.07178736478090286, + 0.07326970249414444, + 0.07072855532169342, + 0.013658658601343632, + 0.007762406021356583, + 0.045131806284189224, + 0.022287966683506966, + 0.09709294140338898, + 0.0037554693408310413, + 0.004499945789575577, + 0.012579995207488537, + 0.04243183881044388, + -0.10185759514570236, + -0.05500521883368492, + -0.09555766731500626, + 0.022618845105171204, + -0.0812637209892273, + 0.029143765568733215, + -0.04317300766706467, + 0.09089890122413635, + -0.03316724672913551, + -0.008159460499882698, + -0.030599629506468773, + -0.052014078944921494, + 0.02023652009665966, + 0.0808931365609169, + -0.03682014346122742, + 0.02680114656686783, + -0.05360229313373566, + 0.06056397408246994, + 0.01606745272874832, + 0.007682995405048132, + 0.014426296576857567, + 0.0046753110364079475, + -0.03589368239045143, + -0.02620556578040123, + 0.05066409334540367, + 0.041108325123786926, + -0.11657506227493286, + 0.028349656611680984, + 0.03316724672913551, + 0.012507202103734016, + 0.024220295250415802, + 0.021904146298766136, + 0.02328060008585453, + 0.046693552285432816, + 0.010806486941874027, + 0.003484148997813463, + -0.03952011093497276, + -0.10842221975326538, + -0.019455647096037865, + 0.014280709438025951, + 0.003057315945625305, + 0.07337558269500732, + -0.02369089052081108, + 0.028958473354578018, + -0.03589368239045143, + 0.003480840241536498, + 0.02744966745376587, + -0.006829329300671816, + 0.025040874257683754, + -0.04865235462784767, + -0.03668779134750366, + 0.013162340968847275, + 0.00013576351921074092, + -0.01022414118051529, + -0.0287467110902071, + 0.017179204151034355, + -0.018251249566674232, + 0.03361723944544792, + -0.03433193638920784, + 0.027132024988532066, + 0.025477632880210876, + 0.023889416828751564, + 0.009224888868629932, + -0.020924746990203857, + 0.0038216449320316315, + -0.019402706995606422, + 0.011302804574370384, + -0.006061691325157881, + 0.08481074124574661, + -0.016239508986473083, + -0.04653473198413849, + -0.007769023533910513, + 0.09492237865924835, + 0.039811283349990845, + 0.03642309084534645, + -0.02201002836227417, + -0.027873191982507706, + -0.011170453391969204, + 0.05156408250331879, + -0.03766719251871109, + -0.03157902881503105, + -0.01819830946624279, + -0.0881989374756813, + -0.042140666395425797, + 0.022340906783938408, + 0.07088737934827805, + 0.029673170298337936, + 0.002261553658172488, + -0.06665213406085968, + 0.029884932562708855, + 0.05140526220202446, + -0.0031102565117180347, + -0.018449777737259865, + 0.039334818720817566, + 0.03991716355085373, + -0.029434937983751297, + -0.08295781910419464, + 0.13669246435165405, + -0.03647603094577789, + 0.04002304747700691, + -0.09952820837497711, + -0.07326970249414444, + 0.02248649299144745, + 0.00400362815707922, + 0.0330878347158432, + 0.03965246304869652, + -0.0248158760368824, + 0.01879389025270939, + -0.03613191470503807, + 0.04812294617295265, + -0.00307220546528697, + 0.030573159456253052, + -0.06797564774751663, + 0.026787910610437393, + 0.060458093881607056, + -0.025570278987288475, + 0.008324899710714817, + -0.0006013714009895921, + -0.03247901797294617, + -0.04322594776749611, + -0.06834623217582703, + 0.056911077350378036, + -0.048440590500831604, + 0.006438892800360918, + 0.06135808303952217, + -0.019190944731235504, + 0.015379225835204124, + 0.0447876937687397, + 0.06993445008993149, + 0.005112070590257645, + 0.00420215493068099, + 0.032452549785375595, + -0.04092303663492203, + -0.02975258231163025, + -0.008483720943331718, + 0.06262865662574768, + -0.08343428373336792, + -0.03382900357246399, + 0.054846394807100296, + -0.008900627493858337, + 0.08306369930505753, + -0.015538047067821026, + 0.0037885571364313364, + -0.02656291425228119, + -0.010541784577071667, + -0.01461158785969019, + -0.0812637209892273, + -0.08523426204919815, + 0.008821217343211174, + -0.021043863147497177, + 0.026549678295850754, + 0.05021410062909126, + -0.005327141378074884, + 0.044655341655015945, + 0.019680645316839218, + -0.07279323786497116, + -0.00303580891340971, + 0.05262289196252823, + -0.013539542444050312, + -0.044628873467445374, + 0.0060550738126039505, + 0.0020398651249706745, + -0.027634959667921066, + 0.027529079467058182, + -0.02239384688436985, + 0.05654049292206764, + -0.05286112427711487, + -0.002431955887004733, + 0.07263441383838654, + -0.03965246304869652, + -0.05225231125950813, + -0.05664637312293053, + 0.04269654303789139, + -0.047672953456640244, + -0.007550644222646952, + -0.003168160328641534, + -0.017801254987716675, + 0.017774784937500954, + 0.03462311252951622, + -0.034755460917949677, + -0.09873410314321518, + 0.1103280782699585, + 0.04865235462784767, + -0.02560998499393463, + -0.043675944209098816, + -0.017629198729991913, + -0.04812294617295265, + -0.029196705669164658, + -0.01462482288479805, + -0.0778755322098732, + 0.06458745151758194, + 0.0292496457695961, + -0.0015286579728126526, + -0.1304454803466797, + -0.030070224776864052, + 0.09015773236751556, + 0.04735530912876129, + 0.05542874336242676, + -0.017854195088148117, + -0.012871167622506618, + -0.007371969521045685, + 0.031658440828323364, + -0.03795836493372917, + -0.04904940724372864, + -0.01054840162396431, + 0.03817012533545494, + 0.02553057298064232, + -0.03412017598748207, + 0.0019025505753234029, + -0.04190243408083916, + 0.03187020123004913, + -0.06813447177410126, + 0.08878128230571747, + -0.014426296576857567, + 0.013063077814877033, + -0.022962957620620728, + 0.023148249834775925, + 0.04097597673535347, + 0.04142596945166588, + 0.014651293866336346, + 0.06977562606334686, + 0.035708390176296234, + -0.005515742115676403, + -0.0002824873954523355, + -0.03216137737035751, + -0.025332046672701836, + -0.042617131024599075, + 0.01462482288479805, + -0.014704233966767788, + -0.02564968913793564, + -0.08925774693489075, + 0.015074817463755608, + 0.020779160782694817, + -0.05225231125950813, + 0.04470828175544739, + -0.07115208357572556, + -0.07994020730257034, + 0.028349656611680984, + -0.04330535978078842, + 0.007233000826090574, + -0.044152408838272095, + -0.003333599306643009, + 0.02287031151354313, + -0.07009327411651611, + 0.06532862037420273, + -0.0665462538599968, + -0.011210158467292786, + 0.009271211922168732, + -0.01035649236291647, + -0.004251786973327398, + -0.04531709849834442, + 0.11286922544240952, + -0.012983666732907295, + -0.03965246304869652, + -0.008192547596991062, + 0.001595660811290145, + 0.011507948860526085, + -0.018145369365811348, + 0.008166077546775341, + 0.04121420904994011, + 0.010316787287592888, + -0.03634367883205414, + -0.09216947108507156, + -0.12441026419401169, + -0.04126714915037155, + 0.027608489617705345, + -0.03239960968494415, + -0.049737635999917984, + 0.01687479577958584, + -0.07395792752504349, + -0.010290317237377167, + -0.0038878207560628653, + -0.004023480694741011, + 0.0008669013041071594, + 0.05225231125950813, + 0.01925712078809738, + -0.01189176831394434, + 0.03303489461541176, + 0.03848776966333389, + 0.08682247996330261, + -0.030599629506468773, + -0.03107609413564205, + -0.036740731447935104, + -0.023240895941853523, + -0.008715336211025715, + -0.014201299287378788, + -0.04227301850914955, + -0.04372888430953026, + -0.031102566048502922, + -0.037534840404987335, + -0.022115908563137054, + 0.05288759618997574, + -0.013202046044170856, + -0.012996901758015156, + -0.016980677843093872, + 0.07268735766410828, + -0.05042586103081703, + 0.06951092183589935, + 0.039281878620386124, + -0.027423197403550148, + -0.02951434999704361, + -0.03817012533545494, + -0.060193389654159546, + 0.024379117414355278, + -0.07295206189155579, + -0.015988042578101158, + 0.042643602937459946, + 0.010144730098545551, + -0.0668109580874443, + -0.06162278354167938, + -0.0359201543033123, + -0.009992525912821293, + 0.06935210525989532, + -0.002322765998542309, + 0.03210843726992607, + 0.06426981091499329, + -0.06003456935286522, + 0.0055587561801075935, + 0.037323080003261566, + 0.00843739788979292, + 0.025239400565624237, + -0.049764104187488556, + -0.03541721776127815, + -0.027343787252902985, + -0.010978544130921364, + -0.007471233140677214, + -0.037243667989969254, + 0.018648304045200348, + -0.011752799153327942, + 0.004837441723793745, + 0.009886644780635834, + 0.030123164877295494, + -0.006597714498639107, + -0.046164147555828094, + 0.01373806968331337, + -0.07268735766410828, + -0.04124067723751068, + -0.02505410835146904, + 0.011560889892280102, + -0.02203649841248989, + -0.02517322450876236, + -0.016464507207274437, + 0.055799324065446854, + -0.00401024566963315, + 0.020289460197091103, + 0.048996467143297195, + 0.041373029351234436, + 0.06469333916902542, + 0.0034642964601516724, + 0.02508057840168476, + 0.026099683716893196, + -0.033008426427841187, + -0.011627065017819405, + -0.022565903142094612, + 0.014188064262270927, + 0.05418463796377182, + -0.056858137249946594, + 0.040817152708768845, + -0.011435155756771564, + -0.00404002470895648, + -0.03589368239045143, + 0.06156984344124794, + 0.0080204913392663, + 0.04867882281541824, + 0.0033650328405201435, + 0.09449885785579681, + -0.0006609295378439128, + -0.032929014414548874, + 0.0062205130234360695, + -0.08999891579151154 + ] + }, + { + "id": "4d5b8af1-87b2-485d-9ed1-088a671053d1", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "angelpetersen", + "reviewDate": "2022-11-22T09:06:11", + "stars": 5, + "verifiedUser": false + }, + { + "id": "08042ca7-a380-493d-9aba-82cb4f0ce277", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "strongdonna", + "reviewDate": "2022-04-20T13:24:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d92e91da-01e7-4ac0-8f5d-0c4d15dd07ef", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "joseph06", + "reviewDate": "2022-12-21T10:25:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f1341865-04bf-4106-b9b2-939fdc81b006", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "pmeyer", + "reviewDate": "2021-09-09T01:10:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f8c8c981-c270-4979-8afd-e9f40a3dd282", + "productId": "d2ec7755-86ac-4ac9-8318-010e65317738", + "category": "Electronics", + "docType": "customerRating", + "userName": "rrollins", + "reviewDate": "2022-01-25T17:17:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "68ef343c-4524-4af1-9819-d5e9844260bf", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Gold)", + "description": "This Basic Phone Ultra (Gold) is a free 4GB Ultra HD smartphone and 1GB of micro SD memory, allowing you to set up multi-account plans and extend a phone call, text messaging or video chat to 4 GB. The ultra-mini's 6.0", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-03-06T01:46:11", + "price": 144.51, + "stock": 89, + "priceHistory": [ + { + "priceDate": "2021-01-06T11:33:28", + "newPrice": 135.06 + }, + { + "priceDate": "2021-05-22T11:33:28", + "newPrice": 151.64 + }, + { + "priceDate": "2021-10-05T11:33:28", + "newPrice": 154.27 + }, + { + "priceDate": "2022-02-18T11:33:28", + "newPrice": 130.15 + }, + { + "priceDate": "2024-03-10T11:33:28", + "newPrice": 144.51 + } + ], + "descriptionVector": [ + -0.025460774078965187, + 0.06201113015413284, + -0.02152535505592823, + 0.03535589948296547, + 0.05572452023625374, + 0.002124874386936426, + -0.026630083099007607, + 0.04845719784498215, + -0.008587510325014591, + 0.08997397869825363, + -0.012937845662236214, + -0.07458434998989105, + 0.033394478261470795, + -0.033193305134773254, + 0.05265665426850319, + -0.010574079118669033, + -0.052606359124183655, + -0.010410627350211143, + 0.028742386028170586, + 0.03364594280719757, + 0.14504468441009521, + -0.045841965824365616, + -0.0498151034116745, + -0.006996998097747564, + -0.02468123473227024, + -0.000638091005384922, + -0.012937845662236214, + 0.03379682078957558, + 0.07956334948539734, + 0.003699670545756817, + 0.02615230157971382, + 0.009021286852657795, + -0.02597627602517605, + 0.01002085767686367, + -0.04033489525318146, + 0.07227087765932083, + 0.015238745138049126, + -0.05356192588806152, + 0.026931840926408768, + -0.02763594128191471, + 0.039831966161727905, + -0.01676010526716709, + -0.0013901268830522895, + -0.0036336611956357956, + 0.061457909643650055, + -0.013667091727256775, + -0.00015559361781924963, + 0.040988702327013016, + -0.021902551874518394, + -0.05265665426850319, + 0.019123870879411697, + -0.02773652784526348, + 0.006079152692109346, + 0.030552929267287254, + 0.040360040962696075, + -0.008153734728693962, + -0.010517500340938568, + 0.13579079508781433, + 0.04652092233300209, + 0.0074810669757425785, + 0.03050263598561287, + -0.04697355628013611, + 0.06573280692100525, + 0.026252886280417442, + -0.06447548419237137, + 0.02437947690486908, + -0.004708671476691961, + 0.010988995432853699, + -0.01858322136104107, + 0.10702326148748398, + 0.0769481211900711, + 0.03324360027909279, + -0.03922845050692558, + -0.0014694953570142388, + -0.011303326115012169, + 0.10732502490282059, + 0.0008541932329535484, + 0.002495784545317292, + 0.07478552311658859, + 0.010303755290806293, + 0.05411514639854431, + -0.016219455748796463, + 0.03978167474269867, + -0.008574937470257282, + 0.07599255442619324, + 0.02595113031566143, + 0.06839832663536072, + -0.12070292979478836, + -0.028993848711252213, + 0.03802142292261124, + -0.021286465227603912, + 0.04269866272807121, + -0.009951705113053322, + 0.023386193439364433, + 0.08544761687517166, + 0.054064854979515076, + -0.018432343378663063, + 0.034978702664375305, + -0.04961393401026726, + 0.003702813759446144, + 0.06724158674478531, + 0.0316845178604126, + -0.015867406502366066, + 0.004026574082672596, + 0.013767678290605545, + 0.0018906982149928808, + 0.04486125707626343, + 0.019966276362538338, + 0.02522188238799572, + -0.11517070978879929, + -0.03369623422622681, + 0.023461632430553436, + -0.03093012608587742, + 0.05240518972277641, + -0.008694383315742016, + 0.04051091894507408, + 0.003121302230283618, + -0.00944877602159977, + -0.018407197669148445, + 0.04916129633784294, + -0.012409769929945469, + 0.03809686377644539, + -0.038574643433094025, + -0.03299213573336601, + -0.023662803694605827, + -0.02891840972006321, + -0.0032564643770456314, + 0.08323472738265991, + 0.04393083602190018, + -0.06583338975906372, + -0.03661322221159935, + 0.008028002455830574, + 0.009756820276379585, + -0.03236347436904907, + 0.013503639958798885, + -0.00992655847221613, + 0.020594937726855278, + -0.009323043748736382, + 0.023159874603152275, + 0.08459263294935226, + -0.028465773910284042, + 0.052606359124183655, + 0.04375481233000755, + -0.030251171439886093, + -0.10913556814193726, + 0.027459915727376938, + 0.006079152692109346, + -0.05813857913017273, + 0.013692238368093967, + 0.05728359892964363, + -0.030854687094688416, + -0.0969143956899643, + -0.012598368339240551, + -0.08610142022371292, + 0.0022176019847393036, + 0.014459204860031605, + -0.03937933221459389, + -0.06236318126320839, + -0.019350187852978706, + 0.06382167339324951, + -0.0007653948850929737, + 0.014496924355626106, + 0.05114786699414253, + -0.08911899477243423, + 0.007531359791755676, + -0.020758388563990593, + 0.035506777465343475, + 0.04948820173740387, + 0.029471632093191147, + 0.05849062651395798, + 0.01857064850628376, + 0.02153792977333069, + -0.026630083099007607, + -0.04863322153687477, + -0.031156443059444427, + 0.014295753091573715, + 0.00016207668522838503, + 0.05833974853157997, + -0.020494351163506508, + -0.07614342868328094, + 0.043629080057144165, + 0.014635230414569378, + -0.04144133999943733, + 0.030326610431075096, + 0.018608368933200836, + 0.03258978947997093, + 0.0010852261912077665, + 0.0590941421687603, + -0.04209514707326889, + -0.020708097144961357, + 0.0392535999417305, + -0.008455491624772549, + -0.06573280692100525, + 0.034249454736709595, + 0.10551447421312332, + -0.05783681944012642, + 0.019488492980599403, + 0.058943264186382294, + -0.06346962600946426, + 0.012108013033866882, + -0.014911840669810772, + 0.03515473008155823, + 0.0997810885310173, + -0.019387908279895782, + -0.023235313594341278, + -0.019061004742980003, + -0.03346991539001465, + 0.034350041300058365, + 0.009191025048494339, + 0.05097183957695961, + -0.02038119174540043, + -0.02723359875380993, + -0.021035000681877136, + -0.006160878576338291, + 0.09022544324398041, + 0.06678895652294159, + -0.018759246915578842, + -0.06930360198020935, + -0.01176853571087122, + -0.13629372417926788, + 0.008292039856314659, + -0.03407343104481697, + 0.058390043675899506, + 0.009957991540431976, + -0.04971452057361603, + -0.07186853885650635, + 0.08338560909032822, + 0.04885954037308693, + -0.0030034284573048353, + 0.06945447623729706, + -0.051550209522247314, + 0.0017303896602243185, + 0.007644518744200468, + -0.005045005120337009, + -0.026428911834955215, + 0.014647803269326687, + 0.014848974533379078, + -0.02172652818262577, + -0.0679456889629364, + 0.07242175936698914, + -0.01995370350778103, + 0.042371757328510284, + -0.030854687094688416, + -0.05698184296488762, + 0.08972251415252686, + -0.009662521071732044, + 0.028516067191958427, + -0.002654521493241191, + -0.048809248954057693, + 0.0038411193527281284, + 0.012384623289108276, + -0.09565707296133041, + -0.04619401693344116, + 0.023348473012447357, + -0.009304184466600418, + -0.02439204975962639, + 0.03854949772357941, + -0.10199397802352905, + 0.0070535773411393166, + -0.013214455917477608, + 0.024605795741081238, + -0.10028401762247086, + -0.06603456288576126, + -0.0017303896602243185, + -0.05733389034867287, + 0.08685581386089325, + 0.09057749062776566, + -0.0529584102332592, + 0.033821966499090195, + 0.042472343891859055, + 0.014157447963953018, + -0.020066862925887108, + 0.052505772560834885, + 0.023989707231521606, + 0.012937845662236214, + 0.04898527264595032, + -0.11114728450775146, + 0.04770280420780182, + -0.04903556406497955, + 0.01112730149179697, + 0.06548134237527847, + 0.06035146489739418, + 0.061156149953603745, + 0.033067572861909866, + 0.04674723744392395, + -0.01647092029452324, + -0.08429087698459625, + -0.015100439079105854, + 0.020280607044696808, + -0.026630083099007607, + -0.016018284484744072, + 0.0025382190942764282, + -0.016496067866683006, + -0.014094581827521324, + -0.009901411831378937, + -0.007694811560213566, + 0.007066150661557913, + 0.009687667712569237, + 0.03585882857441902, + 0.09550619125366211, + -0.018822113052010536, + 0.008794968947768211, + -0.08559849113225937, + -0.05592568963766098, + 0.02216658927500248, + 0.11899296939373016, + -0.051751382648944855, + -0.016860689967870712, + -0.0002742533979471773, + 0.011686809360980988, + 0.09545589983463287, + -0.027610795572400093, + -0.03963079676032066, + 0.03231317922472954, + 0.02500813826918602, + -0.01707443594932556, + 0.0039982846938073635, + 0.032539498060941696, + -0.019035857170820236, + 0.018294038251042366, + 0.08243004232645035, + -0.0019802823662757874, + -0.03163422644138336, + 0.0963611751794815, + 0.10782795399427414, + 0.05718301236629486, + -0.08856577426195145, + -0.005711385980248451, + -0.009568221867084503, + 0.013503639958798885, + -0.02954707108438015, + -0.008204027079045773, + 0.014786109328269958, + -0.004318901803344488, + 0.03163422644138336, + -0.01335276197642088, + 0.05476895347237587, + 0.06890125572681427, + 0.05803799256682396, + 0.0202680341899395, + 0.08710727840662003, + 0.04571623355150223, + -0.021600795909762383, + 0.014333472587168217, + 0.014056862331926823, + 0.022204309701919556, + -0.04601799324154854, + 0.012554362416267395, + 0.0031055856961756945, + 0.015364477410912514, + 0.0015315755736082792, + -0.022103723138570786, + 0.01171195600181818, + 0.06683924794197083, + 0.06216200813651085, + 0.025712238624691963, + 0.030125439167022705, + 0.030024854466319084, + 0.0016706668538972735, + 0.017564790323376656, + -0.007273608818650246, + -0.01711215451359749, + 0.026529498398303986, + 0.042170584201812744, + -0.022606652230024338, + 0.037392761558294296, + 0.058943264186382294, + 0.04611857607960701, + -0.051424477249383926, + -0.026931840926408768, + 0.004960136022418737, + -0.0156285148113966, + -0.08977280557155609, + 0.039831966161727905, + -0.06467664986848831, + 0.020733242854475975, + 0.021789394319057465, + -0.06412342935800552, + -0.028943557292222977, + 0.04863322153687477, + 0.012642374262213707, + 0.03787054494023323, + -0.039303891360759735, + -0.031081004068255424, + 0.11698125302791595, + -0.017275607213377953, + -0.07704870402812958, + 0.10481037944555283, + 0.04654606804251671, + 0.004975852556526661, + -0.021236171945929527, + 0.0018435486126691103, + -0.04908585920929909, + 0.09540560841560364, + 0.01551535539329052, + 0.02563679963350296, + 0.03515473008155823, + -0.041516777127981186, + 0.01918673701584339, + -0.0016038715839385986, + 0.06960535794496536, + 0.013830544427037239, + 0.008574937470257282, + -0.04345305636525154, + 0.04222087934613228, + -0.026026569306850433, + 0.04903556406497955, + 0.0286920927464962, + -0.016408054158091545, + -0.048683516681194305, + 0.02205343171954155, + -0.03452606871724129, + 0.009216171689331532, + -0.011806255206465721, + -0.01418259460479021, + 0.033168159425258636, + -0.033092718571424484, + -0.01096384972333908, + 0.06221230328083038, + 0.0468226782977581, + -0.018080292269587517, + 0.051851965487003326, + -0.05285782366991043, + -0.005695669446140528, + 0.011554790660738945, + -0.02859150618314743, + -0.0750872790813446, + -0.027384476736187935, + -0.001925274613313377, + -0.026655230671167374, + 0.05371280387043953, + -0.010856976732611656, + 0.05240518972277641, + 0.009530502371490002, + -0.05854092165827751, + -0.04103899747133255, + -0.025800250470638275, + 0.028239456936717033, + -0.06930360198020935, + -0.012887552380561829, + 0.00461437227204442, + 0.01439633872359991, + 0.0023716238792985678, + 0.028943557292222977, + -0.08831430971622467, + -0.03520502150058746, + -0.06160878762602806, + 0.002591655356809497, + 0.04800456017255783, + -0.0004789611557498574, + -0.03988226130604744, + 0.02627803385257721, + -0.0038662657607346773, + -0.07176794856786728, + 0.027309037744998932, + -0.007323901634663343, + 0.024530354887247086, + 0.057032134383916855, + -0.07196912169456482, + 0.02605171501636505, + -0.02607686258852482, + -0.0003606943064369261, + 0.02806343138217926, + -0.03870037570595741, + -0.0022600365336984396, + -0.03258978947997093, + -0.0453893318772316, + -0.018482636660337448, + -0.028541212901473045, + 0.020594937726855278, + -0.003328760387375951, + -0.08313414454460144, + 0.022392908111214638, + -0.0388261079788208, + 0.013201883062720299, + -0.06502870470285416, + -0.04365422576665878, + -0.03412372246384621, + -0.0047212447971105576, + -0.004485496785491705, + 0.023298179730772972, + 0.018231172114610672, + 0.023889120668172836, + 0.026227740570902824, + 0.025146443396806717, + -0.017539644613862038, + -0.007820543833076954, + 0.05476895347237587, + 0.026303179562091827, + 0.03734247013926506, + 0.054416902363300323, + 0.030150586739182472, + 0.01513815950602293, + -0.009153305552899837, + -0.032464057207107544, + -0.026026569306850433, + 0.02365023083984852, + -0.006217458285391331, + -0.023826254531741142, + 0.02773652784526348, + -0.018231172114610672, + -0.035305608063936234, + -0.05768594145774841, + -0.0033633369021117687, + -0.016584079712629318, + 0.013503639958798885, + 0.020230313763022423, + 0.02321016788482666, + -0.013654518872499466, + -0.008191454224288464, + -0.026856401935219765, + -0.018231172114610672 + ] + }, + { + "id": "8b866898-254f-4736-b5cb-ab599483176a", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelpena", + "reviewDate": "2021-01-27T16:51:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7cd89f38-0144-44b6-abfc-256569090235", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "robleslarry", + "reviewDate": "2021-09-25T06:39:17", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e4c246c3-b772-49b6-b3e0-9e0cf2fbf31a", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsjohn", + "reviewDate": "2021-03-17T14:05:10", + "stars": 4, + "verifiedUser": true + }, + { + "id": "46c1bc86-1a0f-4644-9c72-61b80bb5f358", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "holly29", + "reviewDate": "2021-05-28T00:33:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5e80f0cc-0be3-409a-95ca-aa5e9e4f4ec5", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopherwong", + "reviewDate": "2021-06-08T14:51:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "af4c288d-5aab-4ab4-ac4e-0e2258f16e33", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "vincent57", + "reviewDate": "2021-02-08T00:10:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "39caa865-5471-488e-87d7-320324e58b0b", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "btaylor", + "reviewDate": "2021-01-06T11:33:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "43f8f74e-cd94-4358-8e9b-a9124acac957", + "productId": "68ef343c-4524-4af1-9819-d5e9844260bf", + "category": "Electronics", + "docType": "customerRating", + "userName": "brownjared", + "reviewDate": "2022-02-20T18:28:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Pro (Silver)", + "description": "This Basic Stand Pro (Silver) is not quite as good or as comfortable as other basic stands (see below). It's the cheapest variant as it doesn't have to be charged, just put an old, plastic wallet in there and you're good.\n\n\nPros", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-01-26T18:00:03", + "price": 407.78, + "stock": 96, + "priceHistory": [ + { + "priceDate": "2021-05-11T09:29:59", + "newPrice": 392.32 + }, + { + "priceDate": "2022-10-09T09:29:59", + "newPrice": 397.94 + }, + { + "priceDate": "2023-04-23T09:29:59", + "newPrice": 407.78 + } + ], + "descriptionVector": [ + -0.0004637418023776263, + 0.0013995362678542733, + -0.02687375433743, + 0.03619513288140297, + -0.003563664620742202, + -0.015956707298755646, + -0.02789764292538166, + -0.011136451736092567, + -0.018257133662700653, + 0.04050344228744507, + 0.012053962796926498, + -0.018376808613538742, + -0.014906223863363266, + -0.06887979060411453, + 0.02267182245850563, + -0.012486123479902744, + -0.009161809459328651, + -0.03914712369441986, + 0.006861384026706219, + -0.01741940528154373, + 0.05276351422071457, + -0.09478284418582916, + -0.05478469654917717, + -0.06377363950014114, + -0.02385527826845646, + -0.027472130954265594, + 0.0045975265093147755, + -0.028243372216820717, + 0.014573792926967144, + 0.014746657572686672, + -0.051167842000722885, + 0.02600943297147751, + -0.0875491350889206, + 0.05914619565010071, + -0.027339158579707146, + 0.05999721959233284, + 0.008530190214514732, + -0.021993661299347878, + -0.027339158579707146, + 0.06276305019855499, + -0.007798840757459402, + 0.041833169758319855, + 0.02771148271858692, + -0.02365581877529621, + -0.024267492815852165, + -0.019932586699724197, + -0.051088057458400726, + 0.04348202794790268, + -0.03888117894530296, + -0.07387955486774445, + -0.0032179360277950764, + -0.0007550348527729511, + -0.018044376745820045, + -0.03212616965174675, + 0.031408119946718216, + 0.016142869368195534, + -0.005747739225625992, + 0.1080269068479538, + 0.05457193776965141, + -0.028190182521939278, + -0.0022272903006523848, + -0.06983719021081924, + 0.018004484474658966, + 0.023443061858415604, + -0.009972942061722279, + 0.01136915385723114, + -0.01551789790391922, + 0.026381757110357285, + 0.0216878242790699, + -0.008975648321211338, + -0.04427986219525337, + 0.03638129308819771, + -0.04223208501935005, + 0.06941168010234833, + 0.01291828416287899, + -0.004534364212304354, + 0.07685814052820206, + 0.04789671674370766, + 0.07350723445415497, + 0.017924701794981956, + 0.057284578680992126, + 0.02674078196287155, + 0.003443989437073469, + -0.030583688989281654, + 0.025317976251244545, + -0.04412029683589935, + 0.015132277272641659, + -0.049997683614492416, + -0.04321608319878578, + 0.04348202794790268, + 0.0002126522158505395, + 0.04736482724547386, + 0.04334905371069908, + 0.00024994686827994883, + -0.027179591357707977, + -0.01497271005064249, + -0.02779126539826393, + 0.03699296712875366, + -0.00568457692861557, + -0.046939313411712646, + 0.027631698176264763, + -0.03709934651851654, + -0.06792238354682922, + 0.057178203016519547, + -0.02781786024570465, + 0.03930668905377388, + 0.07510290294885635, + -0.010584616102278233, + -0.017020488157868385, + -0.11105868220329285, + 0.033482491970062256, + 0.008988944813609123, + -0.026049325242638588, + -0.06494379788637161, + -0.06531612575054169, + 0.04010452330112457, + -0.0374450720846653, + -0.04130127653479576, + 0.074624203145504, + -0.08914480358362198, + -0.01775183714926243, + 0.05723138898611069, + 0.02179420366883278, + 0.0786665678024292, + -0.0040357173420488834, + -0.010591264814138412, + 0.009421106427907944, + 0.018656050786376, + -0.000298980507068336, + 0.002388519700616598, + -0.06669903546571732, + 0.03396119177341461, + 0.07526247203350067, + 0.030397526919841766, + -0.06765644252300262, + 0.09722954034805298, + 0.032711248844861984, + 0.02599613554775715, + -0.07127328962087631, + 0.07659219950437546, + -0.022365985438227654, + -0.04055663198232651, + 0.04967854917049408, + 0.07175199687480927, + -0.003560340264812112, + -0.02083680033683777, + -0.07361361384391785, + 0.002027831505984068, + -0.009667105041444302, + 0.08983626216650009, + -0.01034526526927948, + -0.10781415551900864, + -0.011229532770812511, + -0.041833169758319855, + 0.04422667250037193, + -0.018828915432095528, + -0.05268372967839241, + -0.06872022151947021, + -0.02481267973780632, + 0.06563525646924973, + 0.03829609975218773, + 0.012299962341785431, + -0.0416204109787941, + 0.007559490390121937, + -0.052231620997190475, + 0.05406664311885834, + 0.10967577248811722, + 0.11701585352420807, + -0.046992503106594086, + 0.01953366957604885, + -0.07696451991796494, + 0.002809045370668173, + -0.00039247682434506714, + -0.08116645365953445, + -0.0017037109937518835, + 0.01743270270526409, + 0.07318809628486633, + -0.021129339933395386, + 0.04837541654706001, + -0.05457193776965141, + 0.029573097825050354, + 0.03518453985452652, + -0.04630104452371597, + -0.033668652176856995, + 0.06813514232635498, + 0.04420008137822151, + 0.057178203016519547, + 0.05723138898611069, + -0.01767205260694027, + -0.01846988871693611, + -0.03539729490876198, + -0.031434714794158936, + -0.016102977097034454, + -0.049040280282497406, + 0.04725844785571098, + -0.049040280282497406, + -0.018217241391539574, + 0.032737843692302704, + -0.025663703680038452, + 0.06637990474700928, + -0.031620875000953674, + 0.11339899897575378, + 0.1132926195859909, + -0.01971983164548874, + -0.0012233476154506207, + -0.020158641040325165, + 0.0005996231338940561, + 0.03396119177341461, + 0.01647530123591423, + -0.027472130954265594, + 0.011708234436810017, + -0.01639551669359207, + -0.022259606048464775, + 0.015438114292919636, + 0.05374750867486, + 0.04151403531432152, + 0.03720572218298912, + -0.02382868342101574, + -0.040875766426324844, + -0.02682056650519371, + 0.0040290686301887035, + -0.01344352588057518, + 0.028589101508259773, + -0.038907770067453384, + -0.06302899122238159, + 0.006452493369579315, + -0.015212060883641243, + 0.04850839078426361, + 0.03308357298374176, + 0.037817396223545074, + -0.033642057329416275, + -0.015145574696362019, + -0.022060148417949677, + 0.06127375736832619, + -0.0514603815972805, + 0.03188681975007057, + -0.011063316836953163, + -0.05074232816696167, + -0.10366541147232056, + 0.00180676463060081, + -0.06217797100543976, + 0.009966293349862099, + -0.02374889887869358, + 0.0004180324904154986, + 0.030211366713047028, + 0.03433351591229439, + 0.012333204969763756, + -0.024028141051530838, + -0.02787104994058609, + -0.051247626543045044, + -0.04053003713488579, + -0.007878623902797699, + 0.045130886137485504, + 0.06233753636479378, + 0.059358950704336166, + 0.01565087027847767, + 0.08185791224241257, + -0.05786965787410736, + 0.015930112451314926, + -0.018429996445775032, + 0.02263193018734455, + 0.0328708179295063, + 0.0007172207697294652, + 0.06728411465883255, + -0.018017781898379326, + 0.018310321494936943, + 0.038827989250421524, + -0.038588639348745346, + -0.038960959762334824, + 0.03584940358996391, + -0.007080788724124432, + -0.02991882711648941, + 0.019134752452373505, + -0.049306225031614304, + -0.003103247145190835, + 0.061486512422561646, + -0.05691225826740265, + 0.04366818815469742, + 0.008909161202609539, + -0.021435176953673363, + 0.13690854609012604, + 0.05510383099317551, + 0.04938600957393646, + 0.047072287648916245, + 0.02898801863193512, + -0.05244437977671623, + 0.005082875955849886, + -0.010644453577697277, + 0.010418400168418884, + 0.01978631690144539, + 0.001540819532237947, + -0.02591635286808014, + 0.04933281987905502, + 0.04441283643245697, + 0.08249618113040924, + -0.03170065954327583, + 0.0238419808447361, + 0.04332246258854866, + 0.04156722128391266, + -0.00018470719805918634, + 0.0134701207280159, + 0.057550523430109024, + -0.04462559148669243, + -0.0390673391520977, + -0.03404097631573677, + 0.059624895453453064, + -0.10685674846172333, + 0.020929880440235138, + -0.12361129373311996, + -0.012339853681623936, + 0.08249618113040924, + 0.02909439615905285, + -0.049040280282497406, + -0.05358794331550598, + 0.055316586047410965, + -0.02156814932823181, + -0.006685195490717888, + -0.013543255627155304, + 0.06542249768972397, + 0.056433554738759995, + -0.04409370198845863, + -0.028589101508259773, + 0.01857626624405384, + -0.008217704482376575, + 0.02808380499482155, + -0.08547475934028625, + 0.03233892843127251, + -0.009554078802466393, + -0.09020858258008957, + -0.02473289705812931, + -0.09584662318229675, + -0.002355276606976986, + -0.00464739091694355, + 0.04366818815469742, + 0.06872022151947021, + 0.0053720916621387005, + -0.012027367949485779, + -0.004634093958884478, + -0.020052261650562286, + -0.01450730673968792, + 0.01449400931596756, + 0.08717681467533112, + -0.019187940284609795, + -0.042843759059906006, + 0.04470537602901459, + -0.06462466716766357, + 0.005305605009198189, + -0.07802829891443253, + 0.022405875846743584, + -0.04412029683589935, + 0.001676285406574607, + -0.038854584097862244, + 0.03712593764066696, + -0.08781508356332779, + 0.06350769847631454, + -0.005458523519337177, + 0.0824429914355278, + -0.06467785686254501, + 0.04534364491701126, + -0.026381757110357285, + 0.018815618008375168, + -0.03199319913983345, + 0.016887515783309937, + 0.04427986219525337, + -0.0134701207280159, + 0.06515655666589737, + -0.037711016833782196, + 0.027392348274588585, + -0.057337768375873566, + 0.06414596736431122, + -0.03648767247796059, + -0.042923543602228165, + -0.0009981252951547503, + -0.02479938231408596, + -0.009381214156746864, + 0.016754543408751488, + 0.0657416358590126, + 0.033588867634534836, + -0.03114217333495617, + 0.023482954129576683, + -0.014839737676084042, + 0.008111326023936272, + 0.005990413948893547, + -0.03207298368215561, + 0.0556357204914093, + -0.02991882711648941, + -0.04837541654706001, + 0.03832269087433815, + -0.035663239657878876, + -0.015185466967523098, + -0.03013158217072487, + -0.006043603178113699, + -0.02053096331655979, + 0.03539729490876198, + 0.04757758229970932, + -0.09558067470788956, + 0.009972942061722279, + 0.02678067423403263, + -0.001582373515702784, + 0.011980827897787094, + 0.01759226992726326, + 0.024453654885292053, + -0.02188728377223015, + -0.01876242831349373, + -0.020876692607998848, + -0.03826950490474701, + 0.008709702640771866, + 0.06941168010234833, + 0.0003151865385007113, + -0.11297348886728287, + 0.041859760880470276, + -0.05396026745438576, + -0.02085009776055813, + 0.04656699299812317, + 0.05574209988117218, + 0.03518453985452652, + 0.010611210018396378, + 0.03640788793563843, + 0.09988898783922195, + -0.037737611681222916, + 0.011648396030068398, + -0.023123929277062416, + 0.009128566831350327, + 0.006834789644926786, + -0.008231001906096935, + 0.023974953219294548, + -0.0801558569073677, + -0.05374750867486, + -0.049013685435056686, + 0.03396119177341461, + -0.026434944942593575, + -0.041992735117673874, + -0.04132787138223648, + 0.015398222953081131, + -0.07068821042776108, + -0.02702002413570881, + 0.05510383099317551, + 0.0668054148554802, + 0.01956026442348957, + 0.02163463644683361, + -0.04223208501935005, + 0.04361500218510628, + 0.052098650485277176, + 0.011448937468230724, + -0.021049557253718376, + 0.010072671808302402, + -0.05723138898611069, + 0.11829239130020142, + -0.023123929277062416, + 0.020078856498003006, + 0.027126403525471687, + -0.03303038328886032, + -0.07249663770198822, + 0.036886587738990784, + 0.03321654722094536, + 0.015424816869199276, + 0.02166123129427433, + 0.025637110695242882, + -0.004517742898315191, + 0.018988482654094696, + 0.008363974280655384, + 0.051194436848163605, + 0.019427292048931122, + 0.021062854677438736, + -0.041753385215997696, + 0.03725891187787056, + 0.00024433707585558295, + 0.025677001103758812, + -0.018802320584654808, + 0.03813653066754341, + -0.025504138320684433, + -0.05919938534498215, + -0.0718051865696907, + -0.017326325178146362, + -0.010624507442116737, + -0.04866795614361763, + -0.014693467877805233, + -0.023602629080414772, + -0.04733823239803314, + -0.021249014884233475, + -0.0035304215271025896, + 0.02083680033683777, + -0.06005040928721428, + -0.03401438146829605, + 0.020504368469119072, + -0.027472130954265594, + -0.04329586774110794, + -0.05095508694648743, + -0.0013172593899071217, + 0.03853544965386391, + -0.02176760882139206, + 0.08441098034381866, + 0.09754867106676102, + 0.016169464215636253, + -0.01489292737096548, + -0.08430460095405579, + 0.035769619047641754, + -0.02493235468864441, + 0.023110631853342056, + 0.13031311333179474, + -0.014640279114246368, + -0.024307385087013245, + -0.06100781261920929, + -0.020437883213162422, + 0.010152455419301987, + -0.0279508326202631, + 0.00039330791332758963, + -0.017140163108706474, + -0.031248552724719048, + -0.04965195432305336, + -0.00725365336984396, + 0.010644453577697277 + ] + }, + { + "id": "e14c464c-c433-4db5-9ac1-d848e9ce99ed", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "ddavis", + "reviewDate": "2021-08-07T11:43:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "70f0e242-87c7-42be-ad6a-7c1c945eac59", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "william61", + "reviewDate": "2022-10-10T02:14:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ce99e885-5067-4053-b980-535122a60517", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "andrea00", + "reviewDate": "2021-10-14T05:22:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e4b70880-66b5-4feb-9cbf-5549649c129a", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandaward", + "reviewDate": "2021-05-23T09:10:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7489df62-7788-4e04-88f1-3689b9ea6c01", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "hudsonnichole", + "reviewDate": "2021-09-22T20:33:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a7d5a498-f39e-4a7e-8fac-b2cca11cf313", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "ulittle", + "reviewDate": "2021-06-20T08:55:54", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c1441c32-996e-48c9-9801-8f509e00872f", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "cjones", + "reviewDate": "2021-05-11T09:29:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f799d5ee-7f0a-4c27-ae3f-1c493aedbcbe", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "laurengordon", + "reviewDate": "2022-04-22T14:32:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "34156e4f-ddd5-4d3e-ab6d-762fd4c27ba6", + "productId": "d17cc9f2-d685-4278-8d27-56cf494135e9", + "category": "Accessory", + "docType": "customerRating", + "userName": "brendaowens", + "reviewDate": "2021-09-02T19:54:28", + "stars": 3, + "verifiedUser": false + }, + { + "id": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand 3000 (Silver)", + "description": "This Luxe Stand 3000 (Silver) is a new piece that comes in 2 colors: gold and nickel. The Lumia has been in production for 5 years now, with all colors still in manufacture. It has long been one of my favorite pieces from the collection, as it brings the standard price of the Luxe Stand 3000 to over 70% more. The Lumia is lighter than most", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-11-27T20:40:20", + "price": 136.73, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-10-19T03:44:53", + "newPrice": 128.82 + }, + { + "priceDate": "2022-02-01T03:44:53", + "newPrice": 142.26 + }, + { + "priceDate": "2022-05-17T03:44:53", + "newPrice": 132.54 + }, + { + "priceDate": "2022-08-30T03:44:53", + "newPrice": 145.23 + }, + { + "priceDate": "2022-12-13T03:44:53", + "newPrice": 144.83 + }, + { + "priceDate": "2025-06-07T03:44:53", + "newPrice": 136.73 + } + ], + "descriptionVector": [ + -0.03285100683569908, + 0.002812405349686742, + -0.045288968831300735, + -0.006720724515616894, + -0.008232557214796543, + -0.0705081894993782, + -0.061107099056243896, + 0.029998989775776863, + 0.028071237727999687, + 0.002817356726154685, + 0.031081700697541237, + 0.023621564731001854, + -0.01841927506029606, + -0.03990182653069496, + 0.054769281297922134, + -0.03197955712676048, + -0.0014194065006449819, + -0.05535024777054787, + -0.005512578412890434, + -0.01633307710289955, + 0.04320277273654938, + -0.08244440704584122, + -0.00985662266612053, + 0.01225971058011055, + -0.0438629612326622, + -0.07103633880615234, + 0.0541883148252964, + -0.02245963178575039, + 0.02521922066807747, + -0.013494264334440231, + -0.03216440975666046, + 0.0031705577857792377, + -0.0048391856253147125, + 0.036600880324840546, + -0.04576430469751358, + 0.009031386114656925, + 0.06174087896943092, + 0.012061653658747673, + 0.10129940509796143, + 0.009526527486741543, + -0.0318475179374218, + -0.005878983531147242, + -0.028440944850444794, + -0.0073809134773910046, + 0.030157435685396194, + -0.09306024760007858, + -0.03776281327009201, + -0.009407693520188332, + 0.02392525039613247, + -0.031081700697541237, + 0.008159936405718327, + -0.012272913940250874, + -0.04373092204332352, + -0.029866952449083328, + 0.023727193474769592, + -0.07515592128038406, + 0.02116566151380539, + 0.19045133888721466, + 0.01781190000474453, + -0.0016281912103295326, + -0.004604818765074015, + -0.024374179542064667, + -0.015369201079010963, + 0.0027414350770413876, + -0.04283306375145912, + 0.01988489367067814, + -0.0007666445453651249, + -0.034884389489889145, + -0.03319430351257324, + -0.00014359111082740128, + -0.07711008191108704, + 0.0258133914321661, + 0.005601704120635986, + 0.0774269700050354, + 0.044945668429136276, + -0.014444936066865921, + 0.047692056745290756, + -0.011645734310150146, + 0.04489285498857498, + -0.046741385012865067, + 0.0817578136920929, + -0.0018072675447911024, + -0.031345777213573456, + -0.03736669942736626, + 0.012761454097926617, + -0.00011573939264053479, + 0.023093413561582565, + -0.09004978835582733, + -0.016504725441336632, + 0.026698045432567596, + -0.01790432631969452, + 0.06306125968694687, + -0.010998749174177647, + -0.03905678540468216, + -0.03559739142656326, + -0.003413177328184247, + -0.0036178359296172857, + 0.05413550138473511, + 0.0240836963057518, + -0.05299997702240944, + 0.05582558363676071, + 0.01290669571608305, + 0.006733928341418505, + 0.01173816155642271, + 0.006681113038212061, + 0.07446932047605515, + 0.03916241228580475, + 0.03887192904949188, + -0.01311795599758625, + -0.1471429318189621, + 0.09834176301956177, + -0.042278505861759186, + -0.056142475455999374, + -0.04182957857847214, + 0.013943192549049854, + 0.08402886241674423, + -0.01952839270234108, + -0.08820125460624695, + 0.07330739498138428, + -0.04447033256292343, + 0.039954639971256256, + -0.0005491947522386909, + -0.007037615403532982, + -0.02141653187572956, + 0.0473487563431263, + -0.01321038231253624, + 0.02572096511721611, + -0.06776180118322372, + 0.040905311703681946, + -0.006070438306778669, + -0.060948651283979416, + 0.06290281563997269, + 0.028678612783551216, + 0.05104581639170647, + -0.0022314388770610094, + 0.08709213882684708, + 0.011625928804278374, + 0.014180860482156277, + -0.07167012244462967, + 0.10388734936714172, + -0.039268042892217636, + -0.05482209846377373, + -0.00898517295718193, + -0.02108643762767315, + -0.04484004154801369, + -0.0550333596765995, + -0.10166911035776138, + 0.024981552734971046, + -0.025258833542466164, + 0.03580865263938904, + 0.017257342115044594, + -0.09189831465482712, + -0.02057149074971676, + -0.03422420099377632, + 0.009823612868785858, + 0.005713935941457748, + -0.11059486865997314, + -0.0262491162866354, + -0.03895115479826927, + 0.06211058422923088, + 0.002974151633679867, + -0.022129537537693977, + -0.03340556472539902, + -0.013012326322495937, + -0.0327189676463604, + 0.038238149136304855, + 0.05408268794417381, + 0.04621323198080063, + -0.07927550375461578, + 0.028071237727999687, + 0.028256090357899666, + -0.01695365458726883, + -0.01882859133183956, + -0.04188239201903343, + 0.014312898740172386, + -0.012193691916763783, + 0.059839535504579544, + -0.006119952537119389, + 0.03242848441004753, + 0.0035518170334398746, + 0.05125707760453224, + 0.054927729070186615, + -0.07320176064968109, + -0.05099300295114517, + 0.012966113165020943, + 0.05524462088942528, + 0.0344354622066021, + 0.009651963599026203, + -0.015976574271917343, + 0.006631598807871342, + -0.04061482846736908, + 0.025826595723628998, + 0.008899347856640816, + -0.028335314244031906, + -0.00821275170892477, + -0.029629284515976906, + 0.030553549528121948, + 0.002170371590182185, + -0.05772693082690239, + 0.017323359847068787, + -0.021297698840498924, + 0.07679318636655807, + 0.0010843605268746614, + -0.024545827880501747, + -0.011474085971713066, + -0.04093172028660774, + -0.03744592145085335, + 0.027675123885273933, + 0.019330335780978203, + 0.023938454687595367, + -0.023370692506432533, + 0.037472330033779144, + -0.02047906443476677, + 0.07040256261825562, + 0.04278025031089783, + 0.04774487018585205, + 0.049514178186655045, + -0.0006308931624516845, + 0.001407027943059802, + -0.07320176064968109, + 0.012061653658747673, + -0.0227897260338068, + -0.024902330711483955, + -0.02116566151380539, + -0.06670550256967545, + -0.004241714719682932, + 0.04774487018585205, + 0.09628196805715561, + 0.06237466260790825, + 0.014590177685022354, + -0.0011899907840415835, + -0.03834377974271774, + 0.02306700497865677, + 0.009889631532132626, + 0.02504757232964039, + 0.04608119651675224, + -0.023713991045951843, + -0.0800677239894867, + -0.024796700105071068, + -0.005522481165826321, + -0.03520128130912781, + -0.005545587744563818, + 0.007915666326880455, + -0.036072731018066406, + -0.05746285244822502, + -0.06512104719877243, + 0.12031285464763641, + -0.07795511931180954, + -0.053052790462970734, + 0.01901344396173954, + 0.02433456853032112, + -0.02727901190519333, + -0.040297940373420715, + 0.06459289789199829, + 0.013230188749730587, + 0.015171144157648087, + 0.05894167721271515, + 0.010761081241071224, + 0.04946136474609375, + 0.019488779827952385, + -0.04531537741422653, + -0.03974337875843048, + -0.0013046986423432827, + 0.007044217083603144, + -0.08698651194572449, + 0.03063277155160904, + 0.04716390371322632, + -0.06834276765584946, + 0.009731186553835869, + 0.013269799761474133, + -0.06675831973552704, + -0.05513899028301239, + 0.16214242577552795, + 0.021363716572523117, + -0.034541089087724686, + 0.03150422126054764, + -0.050966594368219376, + 0.06311406940221786, + -0.03361682593822479, + -0.08027898520231247, + 0.041750356554985046, + 0.0001488519919803366, + 0.038317371159791946, + -0.020333822816610336, + 0.05086096376180649, + -0.04251617565751076, + 0.05498054251074791, + -0.028256090357899666, + -0.008628671057522297, + -0.03881911560893059, + -0.03512205556035042, + 0.05540306493639946, + 0.008694689720869064, + 0.00606383616104722, + 0.0013657660456374288, + -0.0352540947496891, + 0.04866913706064224, + 0.015144736506044865, + 0.0037762813735753298, + -0.02356874942779541, + 0.012913297861814499, + 0.02245963178575039, + -0.0619521401822567, + -0.048220206052064896, + -0.006998003926128149, + 0.07848327606916428, + -0.002931239316239953, + 0.012801065109670162, + -0.03683855012059212, + -0.005667722783982754, + 0.05360735207796097, + -0.0031441503670066595, + -0.07906424254179001, + -0.07642348110675812, + 0.003994143567979336, + -0.010648849420249462, + 0.02735823392868042, + 0.0025219221133738756, + 0.004723652731627226, + 0.04198802262544632, + 0.02433456853032112, + 0.00239978707395494, + -0.01678200624883175, + 0.03554457798600197, + 0.06976877897977829, + -0.025839800015091896, + 0.048061762005090714, + -0.009374684654176235, + 0.021812645718455315, + 0.0009713031467981637, + -0.04061482846736908, + -0.025430481880903244, + 0.005278211552649736, + -0.08804281055927277, + 0.010536616668105125, + 0.02305380068719387, + 0.04307073354721069, + 0.00864847656339407, + 0.02804483100771904, + -0.023185839876532555, + 0.05910012498497963, + 0.06659986823797226, + -0.08059588074684143, + -0.028335314244031906, + 0.02717338129878044, + -0.05624810606241226, + -0.009051191620528698, + -0.0258001871407032, + 0.05265667662024498, + 0.07198701053857803, + 0.0016554240137338638, + -0.03749873861670494, + 0.06998004019260406, + -0.02296137437224388, + 0.062057770788669586, + 0.04407421872019768, + 0.0774269700050354, + -0.06417037546634674, + -0.016927247866988182, + -0.001021642587147653, + 0.00985662266612053, + 0.03139859065413475, + 0.08788436651229858, + 0.046926237642765045, + 0.03628398850560188, + 0.02305380068719387, + 0.05482209846377373, + 0.04497207701206207, + -0.03826455771923065, + 0.0490124337375164, + -0.02762231044471264, + 0.0120418481528759, + -0.03097607009112835, + -0.01324999425560236, + 0.0081797419115901, + 0.002205031458288431, + 0.10446831583976746, + 0.06897655129432678, + -0.0075657665729522705, + 0.03028947301208973, + -0.053475312888622284, + 0.06939907371997833, + 0.05445239320397377, + 0.00954633392393589, + 0.05263027176260948, + -0.0020300813484936953, + -0.10029591619968414, + 0.022129537537693977, + -0.021614588797092438, + 0.02374039776623249, + 0.007512951269745827, + -0.0662301629781723, + 0.0327189676463604, + 0.08899348229169846, + 0.03234926238656044, + -0.0636950358748436, + 0.006522667594254017, + 0.02692250907421112, + -0.004845787771046162, + -0.029814137145876884, + -0.0032316253054887056, + 0.0404035709798336, + 0.013837561942636967, + 0.009493518620729446, + 0.006750432774424553, + -0.036336805671453476, + 0.03113451600074768, + 0.022525649517774582, + -0.030553549528121948, + -0.10827100276947021, + -0.024281753227114677, + -0.021746627986431122, + -0.010873313993215561, + 0.0387134850025177, + 0.01831364445388317, + -0.017164915800094604, + 0.05402987077832222, + -0.0035386132076382637, + 0.037894852459430695, + -0.07637067139148712, + 0.04542100802063942, + 0.01926431618630886, + -0.048220206052064896, + 0.0016537735937163234, + -0.04579071328043938, + -0.004703846760094166, + -0.06644142419099808, + -0.05577277019619942, + 0.0003391721111256629, + 0.01756102778017521, + 0.029180355370044708, + -0.06961033493280411, + 0.02124488353729248, + 0.008470225147902966, + -0.013758339919149876, + -0.02133730985224247, + 0.03921522945165634, + 0.03388090059161186, + 0.004086570348590612, + 0.05566713958978653, + 0.02160138636827469, + -0.05292075499892235, + 0.06586045771837234, + 0.08476827293634415, + -0.07124760001897812, + -0.03242848441004753, + -0.021218474954366684, + 0.020426249131560326, + 0.0070640225894749165, + -0.007856249809265137, + 0.034884389489889145, + -0.020333822816610336, + -0.06226903200149536, + 0.030553549528121948, + 0.05830789729952812, + -0.03285100683569908, + -0.028625797480344772, + 0.032217226922512054, + -0.002700173296034336, + 0.005245201755315065, + -0.04724312946200371, + 0.08550768345594406, + 0.008503234945237637, + -0.013520671986043453, + -0.005535684991627932, + -0.02117886394262314, + -0.01659715175628662, + 0.00025066552916541696, + 0.006618394982069731, + 0.07705726474523544, + -0.04708468168973923, + 0.005271609406918287, + -0.045473821461200714, + 0.009130414575338364, + -0.03852863237261772, + -0.09628196805715561, + 0.036257583647966385, + -0.018987037241458893, + -0.04835224524140358, + -0.0825500413775444, + 0.0004749234940391034, + 0.07948675751686096, + -0.01423367578536272, + 0.021363716572523117, + 0.05693470314145088, + -0.042463358491659164, + 0.001021642587147653, + -0.008721097372472286, + -0.028071237727999687, + 0.030342288315296173, + -0.02812405303120613, + 0.0714588612318039, + -0.06353659182786942, + -0.010563024319708347, + -0.0481673926115036, + -0.03559739142656326, + 0.02203710936009884, + -0.015105125494301319, + -0.0902610495686531, + 0.06755053997039795, + 0.016900839284062386, + -0.026988528668880463, + -0.03916241228580475, + -0.0002754226152319461, + 0.0507817417383194, + -0.013408439233899117, + -0.07441651076078415, + -0.005337628535926342, + 0.029787730425596237, + -0.037974074482917786, + 0.06892373412847519, + 0.004888699855655432 + ] + }, + { + "id": "d4695867-34f3-40f1-a4fd-3b433a4baa0b", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "marianorris", + "reviewDate": "2021-10-19T03:44:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "543ba23a-4389-45bd-aa27-38b28aff435a", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "tyler82", + "reviewDate": "2021-11-14T21:31:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e546ee11-5f78-44f3-a444-cb07ae5b321f", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "lgriffin", + "reviewDate": "2022-12-16T17:59:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e6f78280-cf3a-43a5-a853-683ce7e9c950", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "bpayne", + "reviewDate": "2022-02-04T08:26:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "02260573-9ad3-4b58-a81b-3845de02988b", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "austinhenderson", + "reviewDate": "2022-06-16T14:53:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "736f4a07-7a8e-4c6e-bd87-3b1921d12747", + "productId": "13783c0e-ec30-49df-9244-41e0ff9715d9", + "category": "Accessory", + "docType": "customerRating", + "userName": "maryjackson", + "reviewDate": "2022-12-07T03:15:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "productId": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Micro (Black)", + "description": "This Amazing Stand Micro (Black) is a tiny, silver micro, or case with silver threads, making it perfect for the modern. A microcase is made of the same material as the inside (for now, we're not sure).\n\nMicro Case: The Micro Case was invented in 1977. The reason it's not a case is because of the plastic casing, not because of", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-04-16T04:18:33", + "price": 472.28, + "stock": 85, + "priceHistory": [ + { + "priceDate": "2021-02-20T12:56:52", + "newPrice": 455.5 + }, + { + "priceDate": "2024-12-29T12:56:52", + "newPrice": 472.28 + } + ], + "descriptionVector": [ + -0.005240571219474077, + 0.02540001831948757, + -0.04457962512969971, + 0.022618534043431282, + -0.02857344038784504, + 0.0012461370788514614, + -0.06023180112242699, + -0.007080144714564085, + 0.037221331149339676, + 0.03309967741370201, + -0.04548992961645126, + 0.02301046997308731, + 0.06898083537817001, + -0.04983916133642197, + -0.012270143255591393, + -0.05426425114274025, + -0.009362227283418179, + -0.020039338618516922, + 0.02027955651283264, + 0.011075369082391262, + 0.029357314109802246, + -0.07853903621435165, + 0.007946197874844074, + 0.058259475976228714, + 0.06513732671737671, + -0.027865426614880562, + -0.013338486663997173, + -0.010575965978205204, + -0.024439141154289246, + 0.05598371475934982, + -0.0006420331774279475, + -0.006422702688723803, + -0.03325139358639717, + 0.014918875880539417, + -0.037701770663261414, + -0.040028102695941925, + -0.01013977825641632, + 0.007516331970691681, + 0.026955122128129005, + -0.029230883345007896, + 0.0417475663125515, + 0.029837751761078835, + 0.02538737654685974, + -0.02021634206175804, + -0.018977316096425056, + 0.09988061338663101, + -0.044781915843486786, + -0.041873998939991, + -0.0015606345841661096, + -0.003682307433336973, + 0.034819141030311584, + -0.04720939323306084, + 0.010790899395942688, + 0.0015566835645586252, + -0.02814357541501522, + -0.05916978046298027, + -0.012029924429953098, + 0.12117161601781845, + 0.021645013242959976, + -0.08895695954561234, + 0.02054506167769432, + -0.00576526066288352, + 0.03815692290663719, + 0.06336729228496552, + 0.02360469661653042, + 0.07166117429733276, + -0.017030276358127594, + 0.018534807488322258, + 0.04591979458928108, + 0.06710965931415558, + 0.01027885265648365, + 0.034288130700588226, + -0.016461336985230446, + 0.013389059342443943, + 0.007415187079459429, + -0.04033153876662254, + 0.07095316052436829, + 0.08511345088481903, + 0.030191758647561073, + -0.02057034894824028, + 0.02832057885825634, + 0.02806771546602249, + -0.029382599517703056, + -0.01032942533493042, + 0.03304910287261009, + -0.003694950370118022, + 0.07732529193162918, + -0.07899418473243713, + -0.008211703039705753, + 0.027157410979270935, + -0.03618459776043892, + -0.008458244614303112, + 0.0664016455411911, + 0.06250756233930588, + 0.0036633426789194345, + 0.005430217832326889, + 0.0060686953365802765, + 0.06412588059902191, + -0.002723010955378413, + -0.06761538237333298, + 0.05487111955881119, + 0.0021272040903568268, + 0.015133809298276901, + -0.010443213395774364, + -0.05466883257031441, + 0.02629767917096615, + -0.032391659915447235, + 0.08015735447406769, + 0.04091311991214752, + -0.039623524993658066, + 0.016511907801032066, + 0.006242538336664438, + -0.032214656472206116, + 0.004516752902418375, + -0.012105782516300678, + -0.024578215554356575, + -0.035198431462049484, + -0.003600127063691616, + -0.03406055271625519, + -0.07752758264541626, + -0.02017841301858425, + -0.04164642095565796, + -0.006182483397424221, + 0.0768701434135437, + -0.016600411385297775, + 0.024325354024767876, + -0.017118778079748154, + 0.024388570338487625, + -0.01553838886320591, + 0.02321276068687439, + -0.0684245377779007, + 0.010569644160568714, + 0.0939636304974556, + 0.02299782633781433, + -0.03378240391612053, + 0.02113928832113743, + 0.02834586426615715, + 0.024628788232803345, + 0.00444721570238471, + 0.08288826793432236, + 0.013389059342443943, + 0.039522379636764526, + 0.00788930431008339, + 0.03846035525202751, + -0.026727546006441116, + -0.06185011938214302, + -0.06099038943648338, + 0.00444721570238471, + -0.034465134143829346, + 0.026626400649547577, + -0.01789000816643238, + -0.07545411586761475, + -0.0032682453747838736, + -0.09593596309423447, + 0.052949368953704834, + 0.04339117184281349, + 0.02326333150267601, + -0.06483389437198639, + -0.01823137328028679, + 0.12198077887296677, + 0.10013347119092941, + -0.029787179082632065, + -0.021076073870062828, + -0.014514296315610409, + -0.019179606810212135, + -6.0202961321920156e-05, + 0.03666503354907036, + 0.012447146698832512, + -0.0865800529718399, + 0.013920069672167301, + 0.013730423524975777, + 0.0352490060031414, + 0.022567961364984512, + -0.052949368953704834, + 0.019204892218112946, + -0.0016562481177970767, + -0.011050082743167877, + -0.0031813238747417927, + 0.06407530605792999, + -0.003555876202881336, + 0.006457471288740635, + 0.04804383963346481, + -0.07722415030002594, + 0.0234276931732893, + -0.040154535323381424, + 0.045414071530103683, + -0.017485428601503372, + 0.06174897402524948, + 0.015209667384624481, + 0.004393482580780983, + -0.037448909133672714, + -0.01534874178469181, + -0.01303505152463913, + -0.02070942334830761, + 0.08212967962026596, + -0.037550054490566254, + -0.03390883654356003, + -0.0014342033537104726, + -0.11358574777841568, + 0.03320082277059555, + -0.07014400511980057, + 0.029281456023454666, + 0.06038351729512215, + 0.04718410596251488, + 0.045388784259557724, + -0.06397416442632675, + -0.010974223725497723, + 0.03686732426285744, + -0.03398469462990761, + 0.0027403952553868294, + 0.0089070750400424, + -0.034465134143829346, + -0.04425090551376343, + 0.020228983834385872, + 0.05360680818557739, + 0.00578738609328866, + 0.012074175290763378, + -0.03398469462990761, + -0.014400508254766464, + 0.039977531880140305, + 0.045060064643621445, + -0.03370654582977295, + 0.025008082389831543, + -0.047689832746982574, + -0.04619794338941574, + -0.026676973327994347, + 0.0024037722032517195, + 0.04351760447025299, + 0.02872515842318535, + -0.060686953365802765, + -0.04364403337240219, + 0.02289668284356594, + -0.032164085656404495, + 0.0027435559313744307, + -0.022707035765051842, + 0.018648594617843628, + -0.044958919286727905, + -0.06812110543251038, + 0.027890712022781372, + 0.047588687390089035, + -0.01276322454214096, + 0.025235658511519432, + -0.032037653028964996, + -0.01772564835846424, + 0.021619727835059166, + -0.08865352720022202, + 0.01574067771434784, + -0.08415257930755615, + -0.10893308371305466, + 0.01840837672352791, + -0.03110206313431263, + 0.05411253497004509, + -0.008711106143891811, + -0.0025965797249227762, + 0.016309618949890137, + 0.024957509711384773, + 0.0314054973423481, + -0.0261712484061718, + 0.017346354201436043, + -0.03924423083662987, + -0.017156707122921944, + -0.09573367238044739, + -0.0020086748991161585, + 0.04935872182250023, + -0.07808388024568558, + 0.04662780836224556, + 0.040002815425395966, + -0.04627380147576332, + 0.0031244298443198204, + 0.0034863390028476715, + -0.013641921803355217, + -0.08455715328454971, + 0.019154319539666176, + 0.03846035525202751, + -0.03957295045256615, + 0.03555244207382202, + -0.07985391467809677, + 0.10352183133363724, + -0.010594930499792099, + -0.03595701977610588, + 0.05846176669001579, + -0.006903140805661678, + 0.06736251711845398, + 0.022631175816059113, + 0.11176513880491257, + -0.019520970061421394, + 0.0029047557618469, + -0.004621058702468872, + -0.04708296060562134, + -0.042253293097019196, + -0.0038782756309956312, + -0.07444266229867935, + 0.013477561064064503, + 0.04172227904200554, + 0.007712300401180983, + -0.03894079476594925, + 0.01295919343829155, + -0.002032380783930421, + 0.0014784543309360743, + 0.008919717743992805, + -0.018762383610010147, + 0.005980193614959717, + -0.008749036118388176, + -0.02062092162668705, + -0.02609539031982422, + 0.05345509201288223, + 0.019356610253453255, + 0.013882140628993511, + -0.02316218800842762, + -0.014956805855035782, + 0.06827282160520554, + -0.011498913168907166, + -0.042354434728622437, + 0.03795463219285011, + 0.07681956887245178, + -0.08137109130620956, + 0.03433870151638985, + -0.01437522191554308, + 0.04822084307670593, + -0.0015969835221767426, + 0.06584534794092178, + 0.022530032321810722, + 0.007724943570792675, + 0.0061951265670359135, + 0.02824471890926361, + -0.05330337584018707, + 0.034465134143829346, + 0.0030327672138810158, + -0.021417437121272087, + -0.05648943781852722, + -0.06660392880439758, + -0.011404089629650116, + 0.03054576739668846, + -0.03411112353205681, + -0.07019457966089249, + -0.06584534794092178, + -0.007048537023365498, + 0.057956039905548096, + -0.0057779038324952126, + 0.07641498744487762, + 0.04096369445323944, + 0.008597318083047867, + -0.0027356541249901056, + -0.034869711846113205, + 0.03269509598612785, + -0.0679188147187233, + 0.006030765827745199, + -0.052898794412612915, + -0.016549838706851006, + -0.006833604071289301, + 0.0016072560101747513, + -0.1021563708782196, + 0.019027888774871826, + -0.03383297845721245, + 0.04427618905901909, + 0.07110488414764404, + 0.05750088766217232, + -0.05729860067367554, + 0.07722415030002594, + 0.0368926115334034, + -0.018977316096425056, + -0.026247108355164528, + 0.15899981558322906, + 0.016537195071578026, + 0.04728525131940842, + 0.011081690900027752, + -0.00885018054395914, + 0.029483744874596596, + -0.06109153479337692, + 0.05426425114274025, + -0.039724670350551605, + -0.005774742923676968, + -0.03170893341302872, + -0.024413855746388435, + -0.018522163853049278, + -0.0006313655758276582, + 0.06801996380090714, + -0.012371288612484932, + 0.0025697131641209126, + 0.052949368953704834, + -0.05350566282868385, + 0.03365597128868103, + 0.03406055271625519, + 0.015601604245603085, + -0.008110558614134789, + -0.05219078063964844, + -0.024287424981594086, + 0.05623657628893852, + -0.011024796403944492, + -0.013161483220756054, + -0.08035963773727417, + -0.030419334769248962, + -0.029863039031624794, + -0.004927654284983873, + 0.0413682721555233, + -0.07848846167325974, + -0.03835921362042427, + 0.011018474586308002, + 0.027460847049951553, + -0.0017099813558161259, + 0.07105430960655212, + 0.05684344843029976, + -0.004959261976182461, + 0.05416310578584671, + -0.06023180112242699, + -0.019533613696694374, + 0.032290518283843994, + 0.032239943742752075, + -0.030141187831759453, + -0.10650560259819031, + 0.001752651878632605, + -0.0781344547867775, + -0.017536001279950142, + -0.029635462909936905, + 0.03873850405216217, + 0.006612349301576614, + -0.021910518407821655, + -0.004178549628704786, + 0.06260870397090912, + -0.058107759803533554, + 0.024641431868076324, + -0.07039686292409897, + -0.028017142787575722, + 0.045186493545770645, + -0.015475173480808735, + 0.009368548169732094, + -0.10043691098690033, + 0.040280964225530624, + 0.0020671493839472532, + -0.037221331149339676, + -0.016448693349957466, + -0.018585380166769028, + -0.04844841733574867, + -0.009950132109224796, + -0.016132615506649017, + -0.03304910287261009, + 0.010658145882189274, + 0.017144065350294113, + 0.013629278168082237, + 0.022100165486335754, + 0.014312006533145905, + 0.034363988786935806, + -0.024325354024767876, + 0.031835366040468216, + -0.1254197061061859, + -0.001836412469856441, + -0.01569010689854622, + 0.016195829957723618, + 0.1036735475063324, + -0.03552715480327606, + -0.04604622721672058, + 0.04288544878363609, + 0.0561860054731369, + 0.023895487189292908, + 0.091687873005867, + 0.0017257852014154196, + 0.04407389834523201, + 0.01797850988805294, + 0.03620988130569458, + 0.05507341027259827, + -0.032518092542886734, + 0.0763644203543663, + -0.00389724038541317, + -0.044958919286727905, + 0.040179818868637085, + -0.06574419885873795, + -0.03340310975909233, + 0.04172227904200554, + -0.02299782633781433, + 0.026879264041781425, + 0.013477561064064503, + -0.03352954238653183, + -0.08511345088481903, + -0.0010533295571804047, + -0.034844424575567245, + -0.08046078681945801, + 0.042733728885650635, + -0.04334060102701187, + -0.03421226888895035, + -0.0013646662700921297, + 0.014602798037230968, + 0.11216972023248672, + -0.06351900845766068, + 0.060889244079589844, + -0.018926743417978287, + -0.07444266229867935, + -0.11449605226516724, + -0.02548852004110813, + -0.017396926879882812, + -0.006814639084041119, + 0.02541266195476055, + 0.09057527780532837, + 0.048246126621961594, + -0.052696503698825836, + -0.014703943394124508, + -0.04897942766547203, + -0.06407530605792999, + 0.053252801299095154, + -0.029787179082632065, + 0.02844700962305069, + -0.016436049714684486, + -0.02829529158771038, + -0.052797649055719376, + 0.05982722342014313, + 0.050648320466279984, + 0.08187681436538696, + -0.0658959150314331, + 0.07651613652706146, + 0.027283843606710434, + 0.01778886280953884, + 0.003400997957214713, + 0.0308997742831707 + ] + }, + { + "id": "6b9cddfb-4d1d-4422-b746-17da78a386da", + "productId": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "category": "Accessory", + "docType": "customerRating", + "userName": "underwoodjeanette", + "reviewDate": "2021-02-20T12:56:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a1008466-357f-414e-9daf-825d67ade37d", + "productId": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "category": "Accessory", + "docType": "customerRating", + "userName": "gjohnson", + "reviewDate": "2021-11-01T00:28:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f175676d-55b6-4c59-a084-26981e540ffe", + "productId": "bd79bf0b-704d-4ec2-8f33-fef5fb699acf", + "category": "Accessory", + "docType": "customerRating", + "userName": "ashleymullen", + "reviewDate": "2021-08-22T10:24:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "product", + "name": "Awesome TV + (Black)", + "description": "This Awesome TV + (Black) is a wonderful movie that combines original TV animation with an innovative live-action script. It's visually rich, with a cast of amazing characters that make this movie a beautiful and visually exciting place to explore.\n\nIf this was our first time watching an original animation DVD, then you would have heard all about the DVD and if you watched it in a theater, you would have seen a whole new world created.", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-08-25T10:16:36", + "price": 262.75, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-03-03T19:44:14", + "newPrice": 259.54 + }, + { + "priceDate": "2024-02-01T19:44:14", + "newPrice": 262.75 + } + ], + "descriptionVector": [ + -0.0018008322222158313, + 0.00873646978288889, + -0.03628433495759964, + 0.012861348688602448, + -0.04640793055295944, + 0.013348059728741646, + -0.006582771893590689, + -0.010902334935963154, + 0.013007362373173237, + 0.08858147263526917, + 0.08205953985452652, + -0.024858783930540085, + -0.009089335799217224, + 0.012812677770853043, + 0.0005285381339490414, + 1.2536145732156001e-05, + -0.007142489776015282, + 0.037963490933179855, + -0.0012479583965614438, + 0.02406787872314453, + 0.10873132944107056, + 0.024055710062384605, + -0.036844052374362946, + 0.07801983505487442, + -0.025430670008063316, + 0.044509757310152054, + -0.0687236487865448, + 0.052613504230976105, + -0.014090294949710369, + -0.026136402040719986, + -0.0199429988861084, + 0.012764006853103638, + 0.030054429545998573, + 0.035821959376335144, + -0.03679538145661354, + 0.03621132671833038, + 0.051202040165662766, + 0.04935253784060478, + 9.035530820256099e-05, + 0.05519307404756546, + 0.037549786269664764, + -0.03355875238776207, + 0.018154336139559746, + 0.023033617064356804, + -0.006667945999652147, + -0.0050405049696564674, + -0.02179250307381153, + -0.05465769022703171, + -0.011389046907424927, + 0.05348958447575569, + 0.023727180436253548, + -0.01682804711163044, + 0.0048093171790242195, + 0.011468137614428997, + -0.029056670144200325, + 0.0596221461892128, + 0.07432083040475845, + -0.047137998044490814, + 0.007507523521780968, + -0.07909060269594193, + 0.022035859525203705, + 0.015039382502436638, + 0.03316938132047653, + 0.04407171905040741, + 0.014443160966038704, + 0.0056397682055830956, + -0.028837651014328003, + 0.0026267205830663443, + -0.012027855031192303, + 0.06400255113840103, + 0.012593657709658146, + -0.029835408553481102, + 0.009557794779539108, + 0.03973998501896858, + 0.018324684351682663, + -0.0011042264522984624, + 0.04475311189889908, + -0.0016441720072180033, + -0.0026069479063153267, + -0.05207812041044235, + 0.04818442836403847, + 0.05884340777993202, + -0.08254625648260117, + 0.03672237694263458, + -0.02849695272743702, + 0.03061414696276188, + -0.034605178982019424, + -0.0990457683801651, + 0.0323663093149662, + 0.029081005603075027, + -0.03343707323074341, + 0.028959328308701515, + 0.03141722083091736, + -0.07446684688329697, + -0.040397047996520996, + 0.0009019370772875845, + 0.0005821524537168443, + 0.007337174378335476, + 0.022559072822332382, + 0.0889221727848053, + 0.09169642627239227, + -0.10376687347888947, + -0.017874475568532944, + -0.09028496593236923, + -0.012532818131148815, + 0.02006467804312706, + 0.009855905547738075, + 0.014625677838921547, + -0.027158496901392937, + -0.09753696620464325, + -0.03153889998793602, + -0.018933072686195374, + 0.03263400122523308, + -0.00891290232539177, + 0.07972332835197449, + 0.07135189324617386, + -0.03141722083091736, + -0.030808832496404648, + 0.009223180823028088, + -0.053100213408470154, + 0.0010426270309835672, + -0.01091450359672308, + -0.10220939666032791, + 0.04611590504646301, + 0.01961446925997734, + -0.03944795951247215, + -0.05494971573352814, + 0.06784757226705551, + 0.06755553930997849, + -0.0029187474865466356, + -0.088970847427845, + 0.01808132790029049, + 0.03202560916543007, + 0.06298045814037323, + 0.03458084538578987, + 0.02808324806392193, + -0.06916169077157974, + -0.019018247723579407, + 0.017545945942401886, + 0.013469737954437733, + 0.016584690660238266, + -0.015951966866850853, + -0.007203328888863325, + 0.016329167410731316, + -0.0030556349083781242, + 0.014942039735615253, + -0.022899771109223366, + -0.021098939701914787, + -0.00201985239982605, + 0.011407298035919666, + 0.07407747209072113, + -0.09739094972610474, + -0.08780273795127869, + -0.02451808750629425, + 0.0358949676156044, + 0.10318281501531601, + -0.06117962300777435, + -0.02098942920565605, + -0.02355683222413063, + 0.06492730230093002, + 0.0006715096533298492, + -0.05193210765719414, + -0.027255838736891747, + 0.030443798750638962, + 0.09544410556554794, + -0.03596797212958336, + 0.05519307404756546, + -0.013761764392256737, + -0.0838117003440857, + 0.04416906088590622, + 0.04283060505986214, + 0.04061606526374817, + 0.04195452108979225, + 0.022449564188718796, + -0.09617417305707932, + 0.053830280900001526, + 0.0990457683801651, + 0.009782899171113968, + -0.07193594425916672, + 0.03012743592262268, + -0.05611782521009445, + -0.016292663291096687, + 0.008048989810049534, + 0.019334610551595688, + -0.01248414721339941, + 0.00611431198194623, + 0.03757411986589432, + 0.0252846572548151, + -0.0409080944955349, + 0.02371501363813877, + 0.03355875238776207, + -0.04054306074976921, + 0.062201716005802155, + -0.06823693960905075, + 0.04611590504646301, + 0.038158174604177475, + -0.057772643864154816, + -0.08502848446369171, + -0.021098939701914787, + 0.009594298899173737, + -0.027158496901392937, + 0.03455650806427002, + 0.14211973547935486, + -0.02435990609228611, + -0.004243514966219664, + -0.042295221239328384, + -0.01823950931429863, + -0.009995835833251476, + 0.0636618509888649, + 0.019444121047854424, + 0.037939153611660004, + -0.024019207805395126, + -0.05081266909837723, + 0.018482865765690804, + 0.036844052374362946, + -0.04920652136206627, + -0.04823309928178787, + -0.026866469532251358, + -0.03723342344164848, + -0.0029628556221723557, + 0.09082034975290298, + 0.004343899432569742, + 0.0059743826277554035, + -0.0036594613920897245, + 0.027061153203248978, + -0.05903809145092964, + 0.029762402176856995, + 0.03226896747946739, + 0.04640793055295944, + 0.019821321591734886, + -0.12771306931972504, + 0.012131281197071075, + -0.03750111162662506, + -0.004839736502617598, + -0.03022477775812149, + -0.01798398606479168, + 0.03908292576670647, + -0.00015941700257826596, + -0.06750687211751938, + -0.0026404093950986862, + -0.04217354208230972, + 0.04105410724878311, + -0.043219972401857376, + -0.02153697982430458, + 0.0818648561835289, + 0.05933012068271637, + 0.03669803962111473, + -0.006886966526508331, + 0.03173358365893364, + -0.04730834811925888, + 0.04541017487645149, + 0.02910534106194973, + 0.032487984746694565, + 0.05144539475440979, + -0.006196444388478994, + 0.06336982548236847, + 0.07724110037088394, + 0.04679730162024498, + 0.0011734308209270239, + -0.012544986791908741, + -0.1011386290192604, + -0.019225100055336952, + -0.01440665777772665, + -0.023885361850261688, + -0.0708165094256401, + 0.01971181109547615, + 0.002486790996044874, + -0.11204096674919128, + 0.03657636046409607, + 0.08123213052749634, + 0.01865321397781372, + -0.04618891328573227, + -0.023934032768011093, + 0.0017445561243221164, + -0.014370153658092022, + 0.010281777940690517, + 0.05475503206253052, + 0.0032244629692286253, + 0.04567786678671837, + 0.023800186812877655, + 0.056555863469839096, + -0.05222413316369057, + -0.02182900719344616, + 0.022267047315835953, + 0.003753761760890484, + -0.059378791600465775, + 0.0027757759671658278, + -0.012617993168532848, + -0.007032979745417833, + -0.06395387649536133, + -0.04606723412871361, + -0.03606531396508217, + 0.017971819266676903, + -0.03234197199344635, + 0.0464809387922287, + 0.043706685304641724, + 0.04022669792175293, + -0.08351967483758926, + 0.06702016294002533, + -0.0485251247882843, + 0.008237590081989765, + -0.022802429273724556, + 0.03343707323074341, + -0.03596797212958336, + -0.07500222325325012, + 0.05913543328642845, + -0.03981299325823784, + 0.04304962232708931, + 0.04163816198706627, + -0.07402880489826202, + -0.0017841014778241515, + 0.005901375785470009, + -0.04718666896224022, + -0.012459811754524708, + -0.030565476045012474, + -0.05490104481577873, + 0.055533770471811295, + -0.04475311189889908, + 0.04942554235458374, + 0.0061203958466649055, + 0.012690999545156956, + 0.030906174331903458, + -0.02032020129263401, + 0.02339865081012249, + 0.05782131478190422, + 0.033923786133527756, + -0.006497597321867943, + -0.11038614809513092, + 0.025844374671578407, + -0.01724175177514553, + -0.015793785452842712, + -0.006284661125391722, + 0.004106627311557531, + 0.09417865425348282, + 0.012441560626029968, + -0.06823693960905075, + 0.05845404043793678, + -0.0030069637577980757, + 0.047162335366010666, + 0.04747869819402695, + 0.02801024168729782, + 0.049985259771347046, + 0.05718858912587166, + -0.03243931382894516, + -0.05752928927540779, + -0.08532050997018814, + -0.0053781610913574696, + 0.05188343673944473, + 0.020344536751508713, + 0.04256291314959526, + 0.0015696443151682615, + -0.009764647111296654, + -0.06152031943202019, + 0.011644570156931877, + 0.009588214568793774, + 0.07461285591125488, + -0.052808187901973724, + -0.049790576100349426, + 0.016207490116357803, + 0.021111106500029564, + -0.014114630408585072, + 0.01853153668344021, + -0.016231825575232506, + 0.007020812015980482, + -0.06322380900382996, + -0.0184585303068161, + -0.005989592056721449, + 0.01592763140797615, + -0.03243931382894516, + -0.04253857582807541, + 0.06336982548236847, + -0.037038736045360565, + -0.09490872174501419, + 0.029665060341358185, + -0.06302912533283234, + -0.03173358365893364, + 0.0378904826939106, + -0.049887917935848236, + -0.003750719828531146, + 0.032293301075696945, + -0.01450399961322546, + -0.024578925222158432, + -0.01737559773027897, + 0.04183284565806389, + -0.0069782244972884655, + 0.02949471026659012, + -0.053100213408470154, + -0.07300671190023422, + -0.05592314153909683, + 0.022315718233585358, + -0.09524942189455032, + -0.003954530227929354, + -0.01753377728164196, + 0.05451167747378349, + 0.0444854237139225, + -0.015392247587442398, + -0.0006821564747951925, + 0.02637975849211216, + 0.015380079858005047, + 0.0044747027568519115, + 0.03728209435939789, + 0.0027225418016314507, + 0.038863904774188995, + -0.06813959777355194, + -0.048987504094839096, + -0.020198523998260498, + -0.026355423033237457, + 0.02320396527647972, + 0.0003756803635042161, + -0.013713093474507332, + -0.012100862339138985, + -0.005365993361920118, + -0.056555863469839096, + -0.0035377833992242813, + 0.04592122137546539, + -0.03699006512761116, + 0.08356834948062897, + -0.014698684215545654, + 0.05348958447575569, + -0.005353825632482767, + 0.03798782452940941, + 0.04054306074976921, + 0.027450522407889366, + -0.017290422692894936, + -0.038377195596694946, + 0.06536534428596497, + 0.0818161889910698, + -0.0024442037101835012, + -0.012715335004031658, + -0.05791865661740303, + 0.08429841697216034, + -0.04864680394530296, + -0.003808516776189208, + -0.02118411287665367, + -0.021853342652320862, + 0.054122306406497955, + 0.022352220490574837, + 0.0123868053779006, + -0.013165543787181377, + 0.05348958447575569, + -0.049060508608818054, + 0.0016715495148673654, + -0.1141824945807457, + 0.004480786621570587, + -0.0625910833477974, + -0.013567080721259117, + -0.013530576601624489, + -0.046748630702495575, + 0.006631442811340094, + 0.020563555881381035, + -0.08921419829130173, + -0.007781298365443945, + -0.027061153203248978, + 0.005877040326595306, + -0.05329489707946777, + 0.0328773558139801, + 0.014078127220273018, + 0.029129676520824432, + -0.0353839173913002, + 0.005490712821483612, + 0.012983026914298534, + 0.11272235959768295, + -0.014163301326334476, + -0.020441878587007523, + 0.03728209435939789, + -0.06818826496601105, + -0.06419723480939865, + 0.04881715402007103, + -0.0126301608979702, + 0.023739349097013474, + -0.0323663093149662, + 0.025138644501566887, + -0.09632018953561783, + 0.04424206539988518, + 0.053100213408470154, + -0.044120389968156815, + 0.028521288186311722, + -0.04012935608625412, + -0.002305795205757022, + 0.034726858139038086, + 0.054024964570999146, + -0.023824522271752357, + -0.010762405581772327, + 0.0011947243474423885, + 0.0033065956085920334, + 0.02769387885928154, + 0.03414280340075493, + 0.03939928859472275, + 0.004544667899608612, + 0.00129434815607965, + 0.0616663359105587, + -0.02849695272743702, + -0.02669611945748329, + -0.01344540249556303, + -0.06702016294002533, + 0.025308992713689804, + -0.0020152893848717213, + -0.013907778076827526, + 0.021561315283179283, + -0.036113984882831573, + -0.059378791600465775, + 0.09145307540893555, + -0.08566121011972427, + 0.08449310064315796, + 0.003312679473310709, + 0.040762078016996384, + 0.018665382638573647, + -0.003139288630336523, + 0.025747032836079597, + -0.007750879041850567, + -0.005615432746708393, + 0.042781930416822433 + ] + }, + { + "id": "756f98c8-7aba-46f2-a163-49ddd31d52b6", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "griffinchristina", + "reviewDate": "2021-09-16T22:41:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9f66f787-06c0-4f65-a433-3f79684f9f5b", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth26", + "reviewDate": "2021-03-03T19:44:14", + "stars": 4, + "verifiedUser": true + }, + { + "id": "21213811-a207-4111-a085-d0facaf6672f", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "kwalker", + "reviewDate": "2022-08-06T00:38:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "083d77c2-ea59-427f-b537-dad7c8bbec9a", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "jamesrice", + "reviewDate": "2021-10-18T22:06:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "90440010-dcf0-4b79-a1d9-4da5b91352f4", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "ecrane", + "reviewDate": "2022-06-27T00:30:37", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a90688ac-04d1-475f-b6ce-f45fccb47731", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "michaelarias", + "reviewDate": "2022-10-09T01:32:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b980a3b8-4f0a-4709-add5-d9835f6bdbf8", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "xwest", + "reviewDate": "2022-11-21T10:25:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a172eafc-dead-494c-8619-54ebd7ee3944", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "manningbryan", + "reviewDate": "2022-01-25T22:44:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "321e6e7d-ebde-4eb3-803e-986ba6db8adc", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "alewis", + "reviewDate": "2022-12-05T11:39:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "718c70fa-0753-4c38-a8d1-81a16b2e91ad", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "dchapman", + "reviewDate": "2021-05-22T03:13:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f0f3ebb1-3d0e-4623-a751-43fd60e9340c", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "michael52", + "reviewDate": "2021-06-01T09:48:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "acbed774-7428-4c44-acaa-169252e9353a", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "matthew56", + "reviewDate": "2021-12-25T11:43:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c025664f-af16-46ea-bc18-87554db19b08", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "floydnancy", + "reviewDate": "2022-08-27T02:23:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "850c2238-4686-47d1-9322-cba7ea014f27", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "paul01", + "reviewDate": "2021-05-25T18:37:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "224c841b-9f0e-479a-a960-e5a80b1f31fa", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "robertkoch", + "reviewDate": "2021-06-27T18:45:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d7858699-60d9-4f51-ad24-db9787e7c94c", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "judymartin", + "reviewDate": "2022-06-14T18:49:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c69a8c55-c2f8-4718-a5e0-5d892059898d", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "mariojohnson", + "reviewDate": "2022-09-10T23:13:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "da4a5eca-f79d-4c41-9c13-d2038efbe4a9", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "kayla05", + "reviewDate": "2021-09-03T16:14:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "666a03f9-1709-4b3b-81b7-277edc29454c", + "productId": "707adb59-7007-42b0-8f4a-c2d39a22fbb1", + "category": "Media", + "docType": "customerRating", + "userName": "emily80", + "reviewDate": "2021-05-04T01:56:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Silver)", + "description": "This Basic Phone Ultra (Silver) is equipped with the following functions:\n\nUser interface UI UIUI (Black) UIUI+ UIUI+ + User interface UIUI+ + Mobile UI interface UIUI+ + Mobile UI + Video UIUI+ + Video.\n\nThe following additional features are described in Appendix 1 of this review; however, these are general in nature.\n\nPricing: The following", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-03-18T07:14:53", + "price": 957.76, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-03-02T06:50:02", + "newPrice": 891.51 + }, + { + "priceDate": "2022-10-23T06:50:02", + "newPrice": 968.36 + }, + { + "priceDate": "2024-05-14T06:50:02", + "newPrice": 957.76 + } + ], + "descriptionVector": [ + -0.0038207496982067823, + 0.07363981753587723, + -0.02158902771770954, + 0.053470950573682785, + -0.006511235143989325, + 0.010110491886734962, + -0.07124248892068863, + 0.02419482357800007, + -0.004960785619914532, + 0.058838892728090286, + 0.02502867951989174, + -0.03463103994727135, + 0.03137379512190819, + -0.008788050152361393, + 0.016989795491099358, + 0.037679821252822876, + -0.0267094187438488, + -0.011739115230739117, + 0.04622683674097061, + 0.03176466375589371, + 0.06467587500810623, + -0.010677252896130085, + -0.07176364958286285, + 0.027960199862718582, + -0.05899524316191673, + 0.01160882506519556, + 0.014188564382493496, + -0.0026888565625995398, + 0.06571819633245468, + -0.04646135866641998, + -0.010905260220170021, + -0.0061203655786812305, + -0.04252660647034645, + 0.08739842474460602, + -0.03244217112660408, + 0.061705268919467926, + 0.03960811346769333, + -0.026787592098116875, + 0.02277466468513012, + -0.016546810045838356, + 0.044454894959926605, + 0.008338550105690956, + 0.029106751084327698, + 0.02730875089764595, + 0.001727969036437571, + -0.038096752017736435, + -0.0026855994947254658, + 0.019256839528679848, + 0.00022719291155226529, + 0.021849606186151505, + 0.0635814443230629, + -0.062122195959091187, + 0.005895615555346012, + 0.015543578192591667, + 0.07202422618865967, + 0.0016302516451105475, + 0.03637692332267761, + 0.15113621950149536, + 0.010240782052278519, + -0.03825309872627258, + -0.05539924278855324, + -0.06483222544193268, + 0.00200320640578866, + 0.03080051951110363, + -0.023751838132739067, + 0.03265063464641571, + -0.03718472272157669, + -0.03236399590969086, + -0.012963839806616306, + 0.06811553239822388, + 0.008403695188462734, + 0.012866121716797352, + -0.05440903827548027, + 0.0817699059844017, + -0.017758505418896675, + 0.06467587500810623, + 0.028220780193805695, + -0.0021009237971156836, + 0.05623309686779976, + -0.002498307731002569, + 0.050813037902116776, + 0.044871821999549866, + -0.028846170753240585, + -0.026357635855674744, + 0.004276764113456011, + 0.06300816684961319, + -0.008801079355180264, + -0.12695442140102386, + -0.040963128209114075, + 0.09208886325359344, + -0.04065043106675148, + 0.05055246129631996, + 0.023699723184108734, + 0.024572664871811867, + 0.06858457624912262, + 0.02650095336139202, + 0.010149578563869, + 0.023725779727101326, + -0.06827187538146973, + -6.87075371388346e-05, + 0.11757355183362961, + 0.0017328548710793257, + -0.03291121497750282, + -0.030904751271009445, + 0.026553070172667503, + 0.06936631351709366, + 0.09354811161756516, + -0.06248700991272926, + -0.008540499024093151, + 0.024546606466174126, + -0.07676677405834198, + -0.01283354964107275, + -0.015608723275363445, + -0.019217751920223236, + 0.012455709278583527, + 0.0480508953332901, + -0.033953532576560974, + -0.08453205227851868, + 0.038670025765895844, + -0.008390665985643864, + 0.03770587965846062, + -0.026996055617928505, + 0.008670789189636707, + -0.026605186983942986, + -0.05466961860656738, + 0.0316343754529953, + 0.02871588245034218, + 0.04541904106736183, + 0.08890978991985321, + -0.04995312541723251, + -0.06259123980998993, + 0.06102776154875755, + 0.009888999164104462, + 0.017367636784911156, + -0.03017512708902359, + 0.04664376378059387, + -0.019569534808397293, + 0.03749741613864899, + -0.036872025579214096, + 0.0686366930603981, + -0.05425269156694412, + 0.030044838786125183, + 0.07681889086961746, + 0.0026465123519301414, + -0.049405910074710846, + 0.010872687213122845, + 0.0007483522640541196, + 0.059829097241163254, + 0.009732651524245739, + 0.03947782143950462, + -0.023921215906739235, + -0.08223894983530045, + 0.02405150607228279, + -0.10397129505872726, + 0.01480092667043209, + -0.007191999349743128, + 0.02960185334086418, + -0.04747761785984039, + 0.00047107922728173435, + 0.06707321107387543, + -0.029523678123950958, + 0.015426317229866982, + -0.041927270591259, + -0.0805712416768074, + 0.04161457717418671, + -0.012429650872945786, + 0.030722344294190407, + 0.10428398847579956, + -0.04573173448443413, + 0.03387536108493805, + 0.018996259197592735, + -0.033745069056749344, + -0.03304150328040123, + -0.07869506627321243, + 0.0014877471840009093, + 0.008612158708274364, + -0.0039217243902385235, + 0.03595999628305435, + 0.010787999257445335, + -0.049379851669073105, + 0.00030943838646635413, + 0.019230781123042107, + -0.06347721070051193, + -0.016768302768468857, + 0.040546201169490814, + 0.003364735282957554, + 0.014709723182022572, + -0.011986665427684784, + -0.050396110862493515, + 0.011563223786652088, + 0.021419649943709373, + 0.009674021042883396, + -0.06035025417804718, + 0.042187850922346115, + 0.011113723739981651, + -0.023061301559209824, + 0.030487824231386185, + 0.03199918568134308, + -0.05753599479794502, + 0.018136346712708473, + 0.0344746932387352, + 0.02138056419789791, + 0.09928086400032043, + -0.014292796142399311, + -0.039113011211156845, + -0.026735475286841393, + -0.024129679426550865, + 0.020976664498448372, + 0.0007092653540894389, + -0.014175535179674625, + -0.010599078610539436, + -0.00656986515969038, + -0.002133496105670929, + 0.0534188374876976, + 0.06076718494296074, + 0.01577810011804104, + 0.024338142946362495, + -0.06306028366088867, + -0.03650721535086632, + -0.12017935514450073, + 0.0011270071845501661, + -0.004791409242898226, + 0.0356733575463295, + 0.021106954663991928, + -0.08458416908979416, + -0.07718370109796524, + 0.08724208176136017, + 0.002281700959429145, + 0.02728269249200821, + 0.05279344320297241, + -0.07186787575483322, + 0.030748402699828148, + -0.01620805636048317, + -0.053679414093494415, + 0.0003302033292129636, + 0.01377163641154766, + 0.014462172985076904, + -0.02015583962202072, + -0.11861587315797806, + 0.03882637247443199, + -0.04213573411107063, + 0.005631778389215469, + -0.04273506999015808, + -0.029054636135697365, + 0.07989373058080673, + -0.06947054713964462, + 0.08161355555057526, + -0.0011546937748789787, + -0.014110390096902847, + 0.012644628994166851, + 0.0746300220489502, + -0.05198564752936363, + -0.055138662457466125, + 0.05915158987045288, + 0.013159274123609066, + 0.04682616889476776, + 0.07244115322828293, + -0.010520905256271362, + -0.019856171682476997, + 0.010156093165278435, + -0.011244013905525208, + 0.03510008379817009, + 0.001978777116164565, + 0.01783667877316475, + -0.04554932937026024, + 0.036845967173576355, + 0.09208886325359344, + -0.12466132640838623, + -0.04518451914191246, + 0.027621446177363396, + 0.012996411882340908, + -0.00011125531455036253, + 0.02010372281074524, + 0.07494271546602249, + -0.027855968102812767, + 0.029680026695132256, + -0.11621854454278946, + 0.0632687509059906, + -0.04349074885249138, + 0.011941064149141312, + 0.09954144060611725, + 0.023152505978941917, + 0.08130086213350296, + -0.0013517570914700627, + 0.03749741613864899, + -0.03137379512190819, + -0.05977698042988777, + 0.03721078112721443, + 0.0710340216755867, + -0.030279358848929405, + 0.028898287564516068, + 0.024781128391623497, + 0.024077562615275383, + -0.04351680725812912, + 0.05031793937087059, + 0.02526320144534111, + 0.06311240047216415, + -0.02790808491408825, + 0.039894748479127884, + 0.031504083424806595, + 0.041406113654375076, + -0.012853093445301056, + -0.055972516536712646, + -0.033588722348213196, + 0.045497212558984756, + 0.07379616796970367, + 0.05420057475566864, + 0.05240257456898689, + -0.08666880428791046, + -0.04440277814865112, + 0.03280698135495186, + -0.025992823764681816, + -0.06947054713964462, + -0.07739216834306717, + -0.03142591193318367, + -0.04945802316069603, + 0.031921010464429855, + 0.03739318624138832, + -0.014761839061975479, + 0.021185128018260002, + 0.008638217113912106, + -0.011999694630503654, + -0.034005649387836456, + 0.027048172429203987, + 0.08750265836715698, + -0.00011461434769444168, + -0.048754461109638214, + 0.003351706312969327, + 0.010247296653687954, + 0.0013085986720398068, + -0.0252241138368845, + 0.06608300656080246, + 0.006853245664387941, + 0.0058500138111412525, + 0.023751838132739067, + -0.02957579493522644, + -0.018123317509889603, + 0.019217751920223236, + 0.04208362102508545, + 0.0041562458500266075, + 0.031504083424806595, + 0.07650619745254517, + -0.026201287284493446, + 0.02009069360792637, + -0.03947782143950462, + -0.02487233094871044, + -0.08380242437124252, + -0.023152505978941917, + 0.014305824413895607, + 0.002317530568689108, + 0.0018224292434751987, + -0.0038207496982067823, + 0.07838237285614014, + 0.020611852407455444, + 0.06821976602077484, + -0.042213909327983856, + -0.022488027811050415, + -0.04390767589211464, + -0.0026807135436683893, + -0.0031530142296105623, + 0.05628521367907524, + -0.013406825251877308, + 0.0728059634566307, + -0.043021705001592636, + -0.06582242995500565, + 0.08526167273521423, + -0.007087767589837313, + 0.05383576452732086, + 0.0016953966114670038, + -0.036872025579214096, + 0.021445708349347115, + -0.00830597709864378, + -0.07489059865474701, + 0.007569839712232351, + 0.0075372676365077496, + 0.017940912395715714, + 0.048754461109638214, + -0.06696897745132446, + -0.005071531981229782, + 0.05195958912372589, + -0.014944245107471943, + -0.014097360894083977, + 0.004091101232916117, + -0.007706644479185343, + 0.09438196569681168, + -0.04062437266111374, + -0.0973004549741745, + 0.06259123980998993, + -0.09344387799501419, + -0.0021481537260115147, + 0.011068122461438179, + 0.05201170593500137, + -0.03898272290825844, + 0.07228480279445648, + 0.018826883286237717, + 0.013393796049058437, + -0.013309107162058353, + -0.01988223008811474, + 0.0008574700332246721, + 0.008644730783998966, + 0.07285808026790619, + 0.0209636352956295, + -0.008266890421509743, + 0.011660940945148468, + 0.013602259568870068, + -0.05936005339026451, + 0.025510750710964203, + 0.006957477889955044, + 0.020181896165013313, + -0.06139257550239563, + 0.07160729914903641, + -0.10902654379606247, + -0.04763396829366684, + 0.012963839806616306, + -0.015686897560954094, + 0.045028168708086014, + -0.0316343754529953, + 0.05691060423851013, + 0.06582242995500565, + 0.027882026508450508, + 0.0142537085339427, + 0.025406518951058388, + -0.012937781400978565, + -0.00287126237526536, + 0.013888897374272346, + 0.02075517177581787, + -0.047555793076753616, + -0.038670025765895844, + 0.004494999535381794, + 0.021015752106904984, + 0.029289156198501587, + 0.010787999257445335, + 0.0644674152135849, + 0.003052039537578821, + 0.016729215160012245, + -0.03301544487476349, + -0.026540040969848633, + 0.03804463520646095, + -0.08844074606895447, + -0.027439041063189507, + -0.08171778917312622, + 0.009810824878513813, + -0.036012113094329834, + 0.023973330855369568, + -0.10230358690023422, + -0.015309056267142296, + 0.010110491886734962, + 0.026943940669298172, + -0.018527215346693993, + 0.005312568508088589, + -0.011406876146793365, + -0.025211084634065628, + -0.03517825901508331, + -0.015400259755551815, + 0.07541175931692123, + -0.04309988021850586, + -0.05076092481613159, + 0.021667201071977615, + -0.030096953734755516, + -0.00881410762667656, + -0.04554932937026024, + 0.047347329556941986, + 0.0164165198802948, + -0.027439041063189507, + -0.0393996499478817, + 0.01809725910425186, + -0.006475405301898718, + -0.009211491793394089, + -0.016781331971287727, + 0.021002722904086113, + -0.039503879845142365, + -0.09167193621397018, + 0.0626954734325409, + 0.02384304068982601, + -0.018123317509889603, + -0.04062437266111374, + 0.005830470472574234, + -0.02646186761558056, + -0.028038375079631805, + 0.031712546944618225, + 0.03945176303386688, + 0.007498180493712425, + 0.01886596903204918, + 0.016729215160012245, + 0.058838892728090286, + -0.02754327282309532, + 0.06196584925055504, + -0.0057783545926213264, + 0.019178664311766624, + 0.04416825622320175, + 0.00010107641719514504, + 0.07681889086961746, + 0.024585694074630737, + 0.02317856252193451, + -0.009869455359876156, + -0.07645408064126968, + 0.03921724483370781, + 0.014553375542163849, + -0.04906715452671051, + 0.030149070546030998, + -0.029445504769682884, + 0.04296959191560745, + -0.026214316487312317, + 0.017797593027353287, + 0.015439346432685852, + -0.032937273383140564, + -0.027439041063189507, + 0.03554306924343109, + 0.009517673403024673, + 0.0484938807785511, + 0.010143063962459564, + -0.03262457624077797 + ] + }, + { + "id": "4b9cc18f-ceaf-4cdb-939c-989ccde236ac", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kho", + "reviewDate": "2022-01-16T23:24:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "46ca8b12-9a26-42d6-b23a-809e95a452e8", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica82", + "reviewDate": "2022-05-13T10:01:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "370849e3-6df9-4403-822f-76a75e52ef43", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicholasbowen", + "reviewDate": "2022-02-26T14:00:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1ea617ec-b1c1-4af6-9d5e-06dca32390da", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "isilva", + "reviewDate": "2022-09-04T18:22:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fad03d03-33f2-445d-a2cd-e8244d486c8e", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "torresvanessa", + "reviewDate": "2021-11-09T05:28:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ea683e24-d138-4385-9de7-37117d5d2853", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "sdawson", + "reviewDate": "2021-09-22T04:21:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "69b528dd-3529-4d6b-a25b-600ab38192e9", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "nbrown", + "reviewDate": "2021-07-18T08:49:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5179df4f-11c1-4d5d-b578-f8287606a191", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "ianhumphrey", + "reviewDate": "2022-10-23T13:15:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5a594431-066a-46a0-b77d-01f3734cdb55", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarah19", + "reviewDate": "2021-03-02T06:50:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "358bde9f-5f2f-44eb-8d08-1aa502dd8119", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "groberson", + "reviewDate": "2021-05-10T22:26:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eaf57e72-29fd-41bc-800a-b4d061874620", + "productId": "cdd7fa44-fe33-46e4-bfc3-7d4befbc34b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "diazcarla", + "reviewDate": "2022-09-25T09:47:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Ultra (Steel)", + "description": "This Luxe Computer Ultra (Steel) is one of the highest-ranking machines the Hyperledger group has built, a machine capable of producing up to 300 kilowatts (yards of heat). This machine is not equipped with any of the power-efficient thermal technologies that can produce heat, or", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-11-22T11:52:14", + "price": 278.16, + "stock": 48, + "priceHistory": [ + { + "priceDate": "2021-07-15T01:48:57", + "newPrice": 278.24 + }, + { + "priceDate": "2022-03-10T01:48:57", + "newPrice": 250.43 + }, + { + "priceDate": "2022-11-03T01:48:57", + "newPrice": 283.68 + }, + { + "priceDate": "2022-11-27T01:48:57", + "newPrice": 278.16 + } + ], + "descriptionVector": [ + 0.020921017974615097, + 0.06491727381944656, + -0.0328286848962307, + -0.025321966037154198, + 0.04517248272895813, + -0.0462297685444355, + -0.04329580441117287, + 0.024925483390688896, + 0.03533973917365074, + 0.09288245439529419, + 0.06232692673802376, + -0.06391285359859467, + -0.01433942187577486, + -0.037375010550022125, + 0.028150202706456184, + 0.026101714000105858, + -0.04178917407989502, + -0.021568605676293373, + 0.01511916983872652, + -0.02809733711183071, + 0.04374514892697334, + -0.04234424605965614, + -0.04046756774187088, + -0.010982543230056763, + -0.05037961155176163, + -0.037137120962142944, + -0.01985051855444908, + -0.015383490361273289, + 0.005960441660135984, + -0.0378243550658226, + 0.03996535763144493, + 0.05751628056168556, + -0.05487307161092758, + -0.006512212101370096, + 0.07623022049665451, + -0.07400991767644882, + 0.05529598519206047, + -0.036476317793130875, + 0.06618601828813553, + 0.00012028677156195045, + 0.019401172176003456, + -0.008530965074896812, + -0.039595309644937515, + 0.023511366918683052, + 0.07358700782060623, + -0.05762201175093651, + -0.02809733711183071, + 0.042502839118242264, + 0.05994803458452225, + -0.033013712614774704, + 0.00021269592980388552, + -0.017696300521492958, + -0.027489399537444115, + 0.012251284904778004, + -0.06946359574794769, + -0.057569146156311035, + 0.03066125325858593, + 0.21198555827140808, + 0.041339825838804245, + -0.02171398140490055, + 0.019982678815722466, + -0.056247539818286896, + -0.049322325736284256, + 0.004354690667241812, + -0.001557842711918056, + -0.048925843089818954, + 0.03576265275478363, + 0.050326745957136154, + 0.09372828155755997, + 0.06988651305437088, + -0.11873305588960648, + 0.0031751578208059072, + 0.040256109088659286, + 0.05109327659010887, + 0.06729616224765778, + 0.011709426529705524, + 0.038538023829460144, + -0.03607983514666557, + 0.0514368936419487, + -0.0032494980841875076, + 0.09801027923822403, + -0.00014620264119002968, + 0.015885701403021812, + -0.0364234521985054, + 0.12275074422359467, + 0.05735768750309944, + -0.07242399454116821, + -0.08537573367357254, + -0.03618556633591652, + 0.026590706780552864, + -0.023048803210258484, + 0.11323517560958862, + 0.050802525132894516, + -0.04004465416073799, + -0.014524446800351143, + 0.0830497071146965, + -0.07358700782060623, + 0.03137492015957832, + -0.01492092851549387, + 0.0057258568704128265, + -0.041339825838804245, + 0.008246819488704205, + -0.014907713048160076, + -0.021621469408273697, + 0.01915006712079048, + 0.030529092997312546, + 0.023828551173210144, + 0.03607983514666557, + 0.02537482976913452, + -0.03478466346859932, + -0.031348489224910736, + -0.03341019153594971, + 0.022189760580658913, + -0.02727794274687767, + 0.009945083409547806, + 0.03237934038043022, + -0.020484888926148415, + 0.0001236940297530964, + 0.004605796188116074, + -0.0019543245434761047, + 0.1290944516658783, + 0.013586106710135937, + 0.020881369709968567, + -0.06761334836483002, + 0.009938474744558334, + -0.021608253940939903, + 0.027991609647870064, + -0.028070906177163124, + 0.025084076449275017, + 0.008273252286016941, + -0.08077654242515564, + 0.07448569685220718, + -0.03124275989830494, + 0.014630175195634365, + -0.038617320358753204, + 0.03489039093255997, + 0.030529092997312546, + 0.03970103710889816, + -0.011141136288642883, + 0.03533973917365074, + -0.05952512100338936, + -0.023947495967149734, + -0.05310211703181267, + -0.10615137219429016, + -0.07628308236598969, + -0.02626030519604683, + -0.10430112481117249, + 0.044220928102731705, + -0.019202930852770805, + 0.06216833367943764, + 0.054608747363090515, + 0.01157726626843214, + -0.035498328506946564, + 0.03137492015957832, + 0.02329990826547146, + 0.004460419528186321, + -0.06634461134672165, + 0.06259124726057053, + -0.005920793861150742, + 0.00637013977393508, + 0.0196126289665699, + 0.004315042868256569, + -0.003203241853043437, + -0.017643436789512634, + 0.006191723048686981, + 0.0654459148645401, + 0.03637059032917023, + 0.08796607702970505, + -0.10636282712221146, + 0.011597090400755405, + 0.07977212220430374, + 0.021647902205586433, + -0.001490110415033996, + -0.031454216688871384, + 0.04279359430074692, + -0.02611492946743965, + 0.07638881355524063, + 0.00846488494426012, + 0.04139269143342972, + -0.024185385555028915, + 0.0020683130715042353, + 0.02497834898531437, + -0.028123769909143448, + 0.06301416456699371, + 0.09478556364774704, + 0.03798294812440872, + 0.030370499938726425, + 0.014656607992947102, + 0.04104907438158989, + -0.0035055591724812984, + 0.00962789822369814, + -0.02337920479476452, + 0.013982588425278664, + 0.024846188724040985, + -0.05867929384112358, + 0.010632318444550037, + 0.03285511955618858, + 0.042317815124988556, + 0.001370340003632009, + -0.015145601704716682, + -0.009865786880254745, + 0.055930353701114655, + -0.01503987330943346, + 0.01389007642865181, + 0.0023673262912780046, + 0.003687279997393489, + 0.012436309829354286, + -0.0013116936897858977, + 0.022903427481651306, + 0.019176499918103218, + 0.018423184752464294, + 0.0024020185228437185, + -0.04755137488245964, + -0.0020038846414536238, + 0.057727739214897156, + -0.011511186137795448, + 0.0448288656771183, + 0.05497879907488823, + -0.07459142804145813, + -0.10821307450532913, + 0.02505764551460743, + -0.06370139867067337, + -0.011834979057312012, + -0.010209403932094574, + -0.036634910851716995, + -0.04800071939826012, + -0.014775551855564117, + -0.014312990009784698, + 0.026934325695037842, + -0.007427424192428589, + -0.019176499918103218, + 0.00543840741738677, + 0.04591258242726326, + 0.030793413519859314, + 0.003206545952707529, + -0.014392286539077759, + -0.03896093741059303, + -0.03560405969619751, + -0.014868064783513546, + 0.03996535763144493, + 0.019863734021782875, + -0.013638971373438835, + -0.04665268212556839, + -0.05941939353942871, + -0.033251598477363586, + -0.023405637592077255, + 0.025493774563074112, + -0.028625980019569397, + 0.014815200120210648, + -0.028255930170416832, + 0.02213689684867859, + -0.05915507301688194, + 0.006380051840096712, + 0.06105818599462509, + -0.001436420250684023, + 0.030449796468019485, + 0.04691700264811516, + -0.028493819758296013, + -0.02357744611799717, + -0.008141091093420982, + -0.04778926447033882, + -0.03711069002747536, + -0.03668777644634247, + 0.03274938836693764, + -0.06100532039999962, + 0.018528912216424942, + 0.05241488292813301, + 0.010374604724347591, + 0.014445150271058083, + -0.016995849087834358, + 0.023590661585330963, + -0.06296129524707794, + 0.024568650871515274, + -0.004143233876675367, + 0.007830513641238213, + -0.05434442684054375, + -0.06597455590963364, + 0.028070906177163124, + -0.007784257642924786, + -0.05167478322982788, + -0.011907667852938175, + -0.0099582988768816, + 0.031454216688871384, + -0.02478010766208172, + 0.09351681917905807, + -0.055348847061395645, + 0.045859720557928085, + -0.01770951598882675, + 0.05751628056168556, + -0.10900603979825974, + 0.001452940283343196, + 0.06074099987745285, + 0.018846098333597183, + 0.05688191205263138, + -0.012317365035414696, + -0.031533513218164444, + 0.10001911967992783, + -0.02933964692056179, + 0.057410553097724915, + -0.012086084112524986, + -0.034493908286094666, + 0.025810960680246353, + 0.0061884187161922455, + -0.009839355014264584, + -0.01977122202515602, + 0.06861776858568192, + 0.032009292393922806, + 0.03774505853652954, + 0.004060633480548859, + 0.0068327016197144985, + 0.07316409051418304, + -0.016520071774721146, + -0.0011745770461857319, + -0.0008090705377981067, + 0.0203130804002285, + -0.029128190129995346, + 0.09161370992660522, + 0.027462966740131378, + -0.008828326128423214, + -0.014022236689925194, + -0.0041696662083268166, + -0.019705140963196754, + -0.13575534522533417, + 0.10102353990077972, + 0.03007974661886692, + -0.07448569685220718, + -0.054106537252664566, + 0.06116391345858574, + -0.00047908208216540515, + -0.07617735117673874, + 0.00527320709079504, + -0.004443899262696505, + -0.028705276548862457, + -0.06348993629217148, + 0.05730482563376427, + -0.03600053861737251, + -0.031427785754203796, + 0.019097203388810158, + -0.04588615149259567, + 0.04308434575796127, + 0.04646765813231468, + 0.013612539507448673, + -0.07549011707305908, + 0.010830558836460114, + -0.006029826123267412, + -0.0009565121727064252, + 0.00927767250686884, + -0.019797654822468758, + 0.01638791151344776, + 0.0666617900133133, + 0.00155866879504174, + 0.003938385285437107, + 0.08209814876317978, + -0.014630175195634365, + 0.0476306714117527, + 0.012674199417233467, + 0.013559674844145775, + -0.013757915236055851, + -0.04369228705763817, + -0.0022764657624065876, + -0.03000045008957386, + -0.019361523911356926, + 0.08051221817731857, + 0.06756048649549484, + -0.06687325239181519, + 0.037533603608608246, + 0.010513373650610447, + 0.006687324959784746, + -0.012641158886253834, + 0.049084436148405075, + 0.04755137488245964, + -0.03898736834526062, + -0.04652052000164986, + 0.04588615149259567, + 0.022150112316012383, + -0.020960666239261627, + 0.030555523931980133, + 0.039516013115644455, + -0.033912401646375656, + 0.026524627581238747, + -0.01441871840506792, + 0.05207126587629318, + 0.1074729785323143, + 0.011160960420966148, + 0.05275849997997284, + -0.023749254643917084, + -0.03454677388072014, + -0.07475002110004425, + -0.010315132327377796, + 0.021780062466859818, + 0.060212358832359314, + -0.04889941215515137, + -0.013354825787246227, + -0.017022281885147095, + 0.02883743681013584, + 0.015370274893939495, + 0.06047667935490608, + 0.03274938836693764, + -0.026788948103785515, + -0.04181560501456261, + -0.015251330099999905, + 0.10995759814977646, + 0.05915507301688194, + -0.07443283498287201, + 0.014722688123583794, + -0.05513739213347435, + 0.019440820440649986, + 0.00463883625343442, + -0.03504898399114609, + -0.032352909445762634, + -0.03956887498497963, + -0.04400946944952011, + 0.012462741695344448, + -0.023286692798137665, + 0.012456133961677551, + -0.05156905576586723, + 0.021608253940939903, + 0.018740369006991386, + -0.01665223203599453, + -0.03478466346859932, + -0.007222575135529041, + 0.027991609647870064, + -0.0035419033374637365, + -0.0033667907118797302, + -0.01677117682993412, + 0.018000269308686256, + 0.03954244405031204, + -0.0196126289665699, + -0.012456133961677551, + 0.011405457742512226, + 0.02711934968829155, + -0.00022364046890288591, + -0.0018072958337143064, + 0.0014496363000944257, + 0.022031167522072792, + -0.015092737041413784, + 0.06835345178842545, + 0.0674547553062439, + 0.007969282567501068, + 0.0764416754245758, + 0.019004691392183304, + -0.015436355024576187, + 0.040837615728378296, + 0.003465911140665412, + -0.04255570471286774, + 0.015476003289222717, + -0.09319963306188583, + 0.052124131470918655, + -0.028493819758296013, + -0.02867884375154972, + -0.016176454722881317, + -0.01817207969725132, + -0.03385953977704048, + 0.01050676591694355, + 0.02968326397240162, + -0.0018485960317775607, + -0.027462966740131378, + 0.017696300521492958, + 0.02696075662970543, + -0.08215101063251495, + -0.026313170790672302, + 0.029392510652542114, + 0.11048623919487, + -0.06729616224765778, + -0.03674063831567764, + 0.05022101849317551, + -0.0756487101316452, + -0.0608467273414135, + 0.028070906177163124, + 0.01793419010937214, + -0.044432383030653, + 0.02555985562503338, + -0.06428290158510208, + 0.021899007260799408, + -0.054925933480262756, + -0.0728469043970108, + 0.06200974062085152, + -0.02299593947827816, + -0.026009200140833855, + 0.015105953440070152, + 0.013863644562661648, + -0.02097388356924057, + 0.04427379369735718, + -0.012588294222950935, + 0.06433576345443726, + 0.01338786631822586, + 0.05085538700222969, + -0.0041960980743169785, + -0.004318346735090017, + 0.07623022049665451, + -0.02575809508562088, + -0.00799571443349123, + -0.08960486948490143, + -0.03211501985788345, + -0.03428245335817337, + 0.04319007694721222, + -0.006105818320065737, + 0.03626486286520958, + -0.027595127001404762, + 0.02615457773208618, + -0.0398331955075264, + -0.043560124933719635, + -0.012092692777514458, + -0.005448319483548403, + -0.013163193129003048, + 0.026048848405480385, + 0.03808867558836937, + 0.05371005833148956, + -0.05730482563376427, + -0.026062065735459328, + 0.06882922351360321, + -0.020365944132208824 + ] + }, + { + "id": "38e81cae-eab4-46e9-a35b-d7e97194bd54", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "qhughes", + "reviewDate": "2022-07-17T09:04:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5778f58d-9650-40da-80da-2f9307a1e2bc", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "emiller", + "reviewDate": "2022-11-02T14:13:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "052b9261-ce53-4ea4-8368-afcd407f2d62", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "zedwards", + "reviewDate": "2021-12-01T07:09:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "80924674-7296-4aaf-8415-bf2600fdee4b", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "imartinez", + "reviewDate": "2022-02-02T03:25:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4ac90f89-b26d-4267-9e97-9b7e74833e9c", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "paulpaul", + "reviewDate": "2021-11-27T10:35:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f5521326-3dac-4e00-be76-a7d8933085f7", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "wmiller", + "reviewDate": "2022-11-03T05:24:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "dddeedfe-e16c-44e2-a081-37258e9bec1d", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "hansenshawn", + "reviewDate": "2021-12-12T08:58:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d12a79f7-da69-4227-8c0e-66dfc6144d6f", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "cheyennestone", + "reviewDate": "2021-07-15T01:48:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "479b4bb0-c49d-4a61-9ec3-ae77bf44b02d", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "perezgregory", + "reviewDate": "2022-06-01T13:42:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cfef72d3-24f3-49d7-9d9e-829ae665d3d5", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "bwilson", + "reviewDate": "2022-01-14T21:38:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2e6ee920-602d-4451-8c12-afa55b10b6fb", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "kennedyamy", + "reviewDate": "2021-11-02T14:13:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "76e3fe4c-2a0d-4c8f-906b-e50e1b9493d1", + "productId": "0458d2a3-ece4-43fa-b831-546bdf9f8e20", + "category": "Electronics", + "docType": "customerRating", + "userName": "jillbrown", + "reviewDate": "2022-10-20T10:43:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "79b94d91-2079-492d-b8d0-f61eff18f656", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Mini (Red)", + "description": "This Luxe Phone Mini (Red) is a high quality mobile phone that is made to meet high quality budget models for the most comfortable use. The phone has a metal rear bezel with 5mm audio jack", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-08-06T22:13:17", + "price": 446.29, + "stock": 84, + "priceHistory": [ + { + "priceDate": "2022-02-02T04:35:00", + "newPrice": 416.02 + }, + { + "priceDate": "2023-01-13T04:35:00", + "newPrice": 446.29 + } + ], + "descriptionVector": [ + -0.05342678725719452, + 0.07811397314071655, + -0.02487350068986416, + 0.022195173427462578, + -0.03132477402687073, + -0.035540226846933365, + -0.02538587525486946, + 0.02410493791103363, + 0.015231525525450706, + 0.02209036983549595, + -0.013671109452843666, + -0.030323311686515808, + 0.048396192491054535, + -0.021904051303863525, + 0.10247509926557541, + -0.005825359839946032, + -0.013799203559756279, + -0.06530458480119705, + 0.011813748627901077, + -0.01140617672353983, + 0.06856515258550644, + -0.08961912989616394, + -0.030626079067587852, + -0.04017489403486252, + -0.0031208323780447245, + -0.024454284459352493, + -0.0012794830836355686, + 0.04597405344247818, + 0.019470268860459328, + -0.02160128392279148, + 0.029810937121510506, + -0.003790413960814476, + -0.0784866064786911, + 0.012425105087459087, + -0.013461501337587833, + 0.014952047728002071, + 0.09846924990415573, + 0.011528448201715946, + 0.014893823303282261, + 0.06684170663356781, + 0.03786920756101608, + -0.008192185312509537, + -0.04453008621931076, + -0.06507168710231781, + 0.03807881474494934, + -0.0296013280749321, + -0.016780296340584755, + 0.0291588231921196, + -0.028972504660487175, + -0.02009909227490425, + -0.015522647649049759, + 0.056966837495565414, + -0.0016186407301574945, + -0.025851672515273094, + -0.021845826879143715, + -0.04301625117659569, + -0.012238786555826664, + 0.21407979726791382, + 0.04096674919128418, + -0.051004648208618164, + -0.03407296910881996, + -0.026620235294103622, + 0.05221571773290634, + -0.0018078703433275223, + 0.0002239823224954307, + -0.029531460255384445, + -0.06018082797527313, + -0.04825645312666893, + 0.002433783607557416, + 0.11104574054479599, + -0.03023015335202217, + -0.028180651366710663, + -0.010381425730884075, + 0.024594023823738098, + 0.03996528685092926, + 0.060646623373031616, + -0.05016621574759483, + 0.037426698952913284, + -0.0011994243832305074, + -0.031511090695858, + 0.09353181719779968, + -0.029578039422631264, + -0.003912685438990593, + -0.06060004606842995, + 0.004355191718786955, + 0.009973854757845402, + 0.039499491453170776, + -0.09595395624637604, + -0.04168873280286789, + 0.07233810424804688, + -0.060367148369550705, + 0.03367704153060913, + 0.002723450306802988, + -0.010119415819644928, + 0.03968580812215805, + 0.021007394418120384, + 0.017246093600988388, + 0.055802349001169205, + -0.0474180206656456, + 0.011446934193372726, + 0.045997343957424164, + 0.02699287235736847, + 0.04220110923051834, + 0.002148483647033572, + 0.04473969340324402, + 0.10471091419458389, + -0.01948191225528717, + -0.06073978543281555, + 0.002065513748675585, + -0.133403941988945, + 0.05091148987412453, + 0.028087493032217026, + -0.04308611899614334, + -0.025129688903689384, + 0.005016039591282606, + 0.043668363243341446, + -0.020448438823223114, + -0.0341661274433136, + -0.010556099005043507, + -0.011674009263515472, + 0.03071923926472664, + -0.011336307041347027, + -0.013345052488148212, + -0.0015473157400265336, + -0.021950630471110344, + -0.045787736773490906, + -0.032256364822387695, + 0.027598407119512558, + 0.012704582884907722, + -0.0640469342470169, + -0.08486801385879517, + 0.06949674338102341, + 0.04408758133649826, + 0.04446021839976311, + -0.005991299636662006, + 0.06982280313968658, + 0.05393916368484497, + -0.01636108011007309, + -0.007225658744573593, + 0.032931771129369736, + 0.03439902514219284, + 0.0020000110380351543, + 0.010829754173755646, + -0.06674855202436447, + -0.00018458982231095433, + -0.03679787367582321, + -0.03868434950709343, + -0.027365507557988167, + -0.027854593470692635, + 0.07000911980867386, + 0.0059476313181221485, + -0.06618959456682205, + -0.0014221330638974905, + -0.02822723053395748, + 0.010131060145795345, + 0.04597405344247818, + -0.052448615431785583, + -0.00963032990694046, + -0.046672746539115906, + 0.07257100194692612, + 0.012902545742690563, + -0.012203852646052837, + 0.05929581820964813, + -0.05314731225371361, + -0.037822626531124115, + -0.007196546532213688, + 0.001312962151132524, + 0.031208325177431107, + -0.06772672384977341, + 0.03861447796225548, + 0.013391631655395031, + -0.008302811533212662, + -0.06623617559671402, + -0.05542971193790436, + 0.002018934115767479, + 0.028972504660487175, + 0.10182297974824905, + 0.02203214541077614, + 0.018061235547065735, + -0.03395652025938034, + 0.0400584451854229, + 0.0792318806052208, + -0.05142386630177498, + -0.025409165769815445, + -0.0016652202466502786, + 0.007976754568517208, + -0.008122315630316734, + -0.02971777692437172, + 0.009502235800027847, + 0.03763630613684654, + -0.04213123768568039, + 0.02143825590610504, + -0.03642524033784866, + -0.0020262121688574553, + 0.003598273266106844, + -0.05086491256952286, + 0.05254177749156952, + 0.039709098637104034, + 0.008722027763724327, + 0.010690015740692616, + -0.008623046800494194, + 0.046672746539115906, + 0.04487943276762962, + 0.011225680820643902, + -0.029787646606564522, + -0.04262032359838486, + 0.04220110923051834, + 0.04269019141793251, + 0.010486230254173279, + -0.025362586602568626, + -0.020564887672662735, + -0.02471047267317772, + -0.052914414554834366, + 0.05817790701985359, + 0.06320850551128387, + 0.0647922083735466, + 0.08314456790685654, + -0.027179190889000893, + -0.005883584264665842, + -0.11272260546684265, + 0.0006630313582718372, + -0.011738056316971779, + 0.032978348433971405, + 0.013694399036467075, + -0.07285048067569733, + -0.03845145180821419, + 0.0483030341565609, + 0.030346602201461792, + 0.052634935826063156, + 0.05678051710128784, + -0.01992441900074482, + -0.0230452511459589, + 0.0052460259757936, + -0.014730795286595821, + -0.025036528706550598, + 0.040663979947566986, + 0.0059476313181221485, + -0.024291256442666054, + -0.02259110100567341, + 0.05883001908659935, + -0.01992441900074482, + -0.0021790512837469578, + -0.021414965391159058, + -0.021775957196950912, + 0.04960726201534271, + 0.01609324850142002, + 0.03647181764245033, + -0.02070462703704834, + -0.0846816897392273, + 0.010445472784340382, + -0.058131325989961624, + -0.05901633948087692, + -0.014928758144378662, + 0.06730750948190689, + 0.0020786141976714134, + -0.02115877903997898, + 0.04858251288533211, + -0.01881815306842327, + 0.0387309268116951, + -0.04357520490884781, + 0.03295505791902542, + -0.06451272964477539, + -0.0036885212175548077, + 0.012564844451844692, + 0.0038864845409989357, + 0.026224307715892792, + 0.05454469844698906, + -0.12185220420360565, + 0.0382884219288826, + 0.039546072483062744, + 0.014672570861876011, + -0.01870170421898365, + 0.06968306750059128, + -0.006602656561881304, + -0.01792149618268013, + 0.021286871284246445, + -0.08696409314870834, + 0.046230241656303406, + -0.07326969504356384, + -0.028366969898343086, + 0.106015145778656, + 0.04664945974946022, + 0.07000911980867386, + -0.050352536141872406, + 0.04590418562293053, + -0.04406429082155228, + -0.03507443144917488, + -0.05412548407912254, + -0.05729289352893829, + -0.03276874125003815, + -0.002820976311340928, + 0.013391631655395031, + 0.008052446879446507, + -0.07476024329662323, + 0.020506663247942924, + 0.0292286928743124, + 0.044157449156045914, + -0.02911224216222763, + 0.03267558291554451, + 0.01619805209338665, + -0.045508258044719696, + 0.015895284712314606, + 0.019004471600055695, + -0.07094071060419083, + -0.010724950581789017, + 0.11076626181602478, + -0.017839983105659485, + 0.10731936991214752, + -0.04161886125802994, + -0.007476023864001036, + 0.10266141593456268, + -0.030812397599220276, + -0.10294089466333389, + -0.03731025010347366, + -0.028762895613908768, + -0.05556945130228996, + -0.06050688773393631, + -0.020844366401433945, + 0.0675869807600975, + 0.011120877228677273, + 0.05454469844698906, + -0.0062649548053741455, + -0.07503971457481384, + 0.0493277832865715, + 0.0391734354197979, + -0.02738879807293415, + 0.016628913581371307, + -0.005997122265398502, + 0.005688532255589962, + -0.019400399178266525, + -0.019283950328826904, + -0.02303360588848591, + -0.0011732233688235283, + -0.09809661656618118, + -0.0226027462631464, + -0.01970316655933857, + 0.03379349038004875, + 0.013170379213988781, + 0.044949304312467575, + -0.030905557796359062, + 0.05626814439892769, + -0.007802081294357777, + -0.10638777911663055, + 0.02148483507335186, + -0.003598273266106844, + -0.04213123768568039, + -0.070381760597229, + 0.056640781462192535, + 0.0755520910024643, + 0.004090270027518272, + 0.0011382887605577707, + -0.025479035452008247, + 0.0830514058470726, + -0.004445439670234919, + 0.050632014870643616, + 0.028017623350024223, + 0.015522647649049759, + -0.022008854895830154, + -0.02037857100367546, + 0.03176727890968323, + 0.03633207827806473, + 0.0191442109644413, + 0.05174992233514786, + 0.03209333494305611, + -0.004419238306581974, + 0.017152933403849602, + -0.04725499451160431, + 0.07476024329662323, + -0.09614027291536331, + 0.04459995776414871, + 0.03915014490485191, + -0.0061485059559345245, + -0.07000911980867386, + 0.037659596651792526, + 0.008780252188444138, + 0.02080943062901497, + 0.01864347979426384, + -0.058410804718732834, + -0.015266460366547108, + 0.03204675763845444, + -0.0528678335249424, + 0.06027398630976677, + -0.018410582095384598, + -0.013904007151722908, + 0.11011414974927902, + -0.025898251682519913, + -0.031301483511924744, + 0.054731015115976334, + -0.01319366879761219, + 0.023837104439735413, + -0.034981273114681244, + -0.07140651345252991, + -0.00577295757830143, + 0.0940907672047615, + 0.022567810490727425, + 0.01865512505173683, + -0.029205402359366417, + 0.016931680962443352, + -0.02599141001701355, + -0.032535843551158905, + 0.02059982344508171, + 0.07196546345949173, + 0.023243214935064316, + 0.0011593950912356377, + -0.0026885156985372305, + -0.07350259274244308, + 0.03567996621131897, + 0.04508904367685318, + -0.008582289330661297, + -0.045508258044719696, + 0.04730157181620598, + -0.002365369815379381, + -0.03260571137070656, + -0.027365507557988167, + 0.012925836257636547, + -0.009676910005509853, + 0.016605623066425323, + -0.0034701793920248747, + 0.02999725565314293, + 0.00012227141996845603, + 0.05528997257351875, + -0.012762807309627533, + -0.06134532019495964, + -0.06577038019895554, + -0.058410804718732834, + -0.017013194039463997, + -0.034305866807699203, + -0.04348204657435417, + -0.005673976149410009, + -0.0765768438577652, + 0.013007350265979767, + -0.0637674555182457, + -0.021892406046390533, + -6.941450556041673e-05, + 0.01241346076130867, + 0.033700332045555115, + -0.03991870954632759, + 0.004518220201134682, + -0.023021962493658066, + 0.052634935826063156, + -0.014264998957514763, + -0.01892295852303505, + 0.008855944499373436, + 0.09995979815721512, + -0.11607633531093597, + -0.027412088587880135, + 0.021741023287177086, + 0.04124622419476509, + 0.020495019853115082, + -0.021834181621670723, + 0.010876334272325039, + -0.009793358854949474, + -0.04024476557970047, + -0.01307721994817257, + 0.04317927733063698, + -0.01736254245042801, + 0.008430905640125275, + 0.12492645531892776, + -0.025968121364712715, + 0.006107748486101627, + -0.021950630471110344, + 0.04825645312666893, + 0.006294067017734051, + 0.035097721964120865, + -0.04820987582206726, + -0.011883617378771305, + -0.007673987187445164, + 0.028902634978294373, + -0.0111907459795475, + 0.04243400692939758, + 0.0029476145282387733, + -0.041339386254549026, + 0.0044920193031430244, + -0.02220681868493557, + -0.03295505791902542, + -0.022858932614326477, + -0.0296711977571249, + -0.06791304051876068, + -0.06446614861488342, + -0.022241754457354546, + 0.003432333469390869, + -0.0002407218562439084, + 0.015720611438155174, + 0.063022181391716, + 0.09050413966178894, + -0.010882156901061535, + 0.05030595511198044, + 0.00514704454690218, + 0.048722248524427414, + 0.03751985728740692, + 0.013904007151722908, + -0.006125215906649828, + -0.03959264978766441, + -0.07499314099550247, + -0.0319535993039608, + -0.02939172089099884, + 0.015289749950170517, + -0.019994288682937622, + -0.05547628924250603, + 0.0008558999397791922, + 0.07867292314767838, + -0.02699287235736847, + -0.045671287924051285, + 0.03835828974843025, + 0.008355213329195976, + 0.04117635637521744, + 0.00209462596103549, + 0.03356059268116951, + -0.00023744672944303602, + -0.012180562131106853, + 0.034538764506578445, + -0.00968855433166027 + ] + }, + { + "id": "409a1826-379f-489f-9ab2-1ec56a18046e", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "customerRating", + "userName": "david72", + "reviewDate": "2022-10-09T21:00:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2145c0a7-0068-4182-9b90-33e9dc11ce71", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "customerRating", + "userName": "vsoto", + "reviewDate": "2022-04-15T22:22:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a11f81a6-24cd-4376-b00d-46e53a3dd88a", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "customerRating", + "userName": "matthewwood", + "reviewDate": "2022-02-02T04:35:00", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0441d094-f941-4ecf-960b-22edda84902a", + "productId": "79b94d91-2079-492d-b8d0-f61eff18f656", + "category": "Electronics", + "docType": "customerRating", + "userName": "florestheodore", + "reviewDate": "2022-07-07T15:44:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "dd57ea02-3c11-4a1f-86c5-246c5ba5f3f5", + "productId": "dd57ea02-3c11-4a1f-86c5-246c5ba5f3f5", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Micro (Gold)", + "description": "This Basic Phone Micro (Gold) is available for only $399 and only available for the Gold version of Android (Android One is $299 without Gold). With an 8 GB memory and 6 GB of storage on the $350 model with Android Oreo, this phone could be the ideal smartphone for the average Joe, no holds barred.", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-09-30T10:21:59", + "price": 602.06, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-01-02T19:38:50", + "newPrice": 658.87 + }, + { + "priceDate": "2021-04-08T19:38:50", + "newPrice": 555.3 + }, + { + "priceDate": "2021-07-13T19:38:50", + "newPrice": 563.39 + }, + { + "priceDate": "2021-10-17T19:38:50", + "newPrice": 592.92 + }, + { + "priceDate": "2022-01-21T19:38:50", + "newPrice": 633.32 + }, + { + "priceDate": "2023-08-23T19:38:50", + "newPrice": 602.06 + } + ], + "descriptionVector": [ + -0.04226231947541237, + 0.030319709330797195, + -0.03775567561388016, + 0.019804203882813454, + -0.031546518206596375, + -0.01223053503781557, + -0.002611663658171892, + 0.04631830006837845, + 0.01881524547934532, + 0.030920594930648804, + -0.021869748830795288, + -0.05302819609642029, + 0.07526098191738129, + -0.05783528462052345, + 0.07385891675949097, + 0.011980165727436543, + -0.0038400376215577126, + -0.07921681553125381, + -0.015773259103298187, + 0.015585482120513916, + 0.08898121118545532, + -0.0758618637919426, + -0.03590294346213341, + -0.07165566086769104, + 0.0060151200741529465, + -0.013745268806815147, + 0.006716153584420681, + 0.011623390018939972, + 0.020317459478974342, + -0.025011882185935974, + 0.041436102241277695, + 0.026238691061735153, + -0.05763499066233635, + -0.019729092717170715, + -0.010621912777423859, + 0.059888310730457306, + 0.0180891752243042, + -0.09063364565372467, + 0.07501061260700226, + 0.030845485627651215, + 0.04306350275874138, + 0.01354497391730547, + 0.02345959283411503, + -0.04148617759346962, + 0.025988321751356125, + -0.028492014855146408, + 0.012167942710220814, + 0.04917250946164131, + -0.022570783272385597, + -0.0739089846611023, + 0.001035902532748878, + 0.04564230516552925, + 0.0038118709344416857, + 0.002256452338770032, + 0.03440072759985924, + -0.00856262631714344, + 0.004653737414628267, + 0.13129360973834991, + 0.014784300699830055, + -0.059437647461891174, + 0.03820633888244629, + 0.004290702287107706, + 0.007010337430983782, + -0.006885152775794268, + -0.03590294346213341, + 0.0817205086350441, + -0.005808565299957991, + 0.035352129489183426, + -0.044340383261442184, + 0.07986777275800705, + -0.002237674780189991, + 0.015422742813825607, + -0.015685630962252617, + 0.010434136725962162, + -0.060689494013786316, + 0.029418380931019783, + 0.029618676751852036, + 0.005996342282742262, + 0.0670989453792572, + -0.03144637122750282, + 0.02533736266195774, + -0.015823332592844963, + 0.009050846099853516, + -0.029067864641547203, + 0.04704437032341957, + -0.03107081726193428, + 0.023810110986232758, + -0.10926111787557602, + -0.05843617022037506, + 0.019090650603175163, + -0.005160734988749027, + 0.11537012457847595, + 0.0012807949678972363, + 0.042412541806697845, + 0.08702833205461502, + 0.04053477197885513, + -0.016837328672409058, + 0.04281313344836235, + -0.040284402668476105, + -0.01836458034813404, + 0.042662911117076874, + -0.0024536182172596455, + -0.005285919643938541, + 0.04772036895155907, + -0.001962268492206931, + 0.043914757668972015, + 0.011698500253260136, + 0.04882199317216873, + 0.03142133355140686, + -0.1045541763305664, + 0.008919402956962585, + 0.05788535997271538, + -0.06439495831727982, + 0.03362458199262619, + 0.019566353410482407, + 0.059888310730457306, + -0.005946268327534199, + -0.022746041417121887, + 0.009826990775763988, + -0.02929319627583027, + -0.03815626725554466, + 0.013319641351699829, + -0.07601208984851837, + -0.050173986703157425, + -0.0031577814370393753, + -0.04401490464806557, + 0.03557746112346649, + 0.03377480432391167, + 0.024874180555343628, + -0.03144637122750282, + -0.034100282937288284, + 0.04539193585515022, + 0.05332864075899124, + 0.009933398105204105, + 0.02382262982428074, + 0.011147688142955303, + 0.06499584019184113, + 0.04689415171742439, + 0.013494899496436119, + 0.07951726019382477, + -0.02411055378615856, + 0.01372023206204176, + 0.014233488589525223, + -0.018039099872112274, + -0.019641462713479996, + 0.020329978317022324, + -0.001449794159270823, + 0.03978366404771805, + -0.00776770431548357, + -0.013745268806815147, + -0.047795478254556656, + -0.11827440559864044, + 0.02198241464793682, + -0.10285166651010513, + 0.018727615475654602, + -0.04909740015864372, + -0.04942287877202034, + -0.0627925917506218, + -0.07305773347616196, + 0.04679400101304054, + -0.01002102717757225, + 0.006243581883609295, + -0.0030388562008738518, + -0.0629928931593895, + -0.0355023518204689, + -0.00022983110102359205, + 0.05593247711658478, + 0.066698357462883, + -0.04719459265470505, + 0.04701933637261391, + 0.02726520597934723, + 0.039307963103055954, + -0.030069340020418167, + -0.06779997795820236, + -0.04719459265470505, + 0.051425833255052567, + 0.019991980865597725, + -0.0018089174991473556, + 0.03157155588269234, + -0.047495037317276, + 0.08552611619234085, + 0.0444655679166317, + -0.04882199317216873, + -0.024123072624206543, + -0.005285919643938541, + 0.061991412192583084, + 0.0106782466173172, + 0.05182642489671707, + -0.032673180103302, + -0.003984000068157911, + 0.031170964241027832, + 0.013357196934521198, + -0.06749953329563141, + 0.022570783272385597, + 0.04914747178554535, + -0.09514029324054718, + -0.013882972300052643, + 0.04313861206173897, + -0.05473070591688156, + 0.041886765509843826, + -0.040735069662332535, + -0.010171248577535152, + 0.10695771872997284, + -0.004265665076673031, + -0.008174554444849491, + -0.06734931468963623, + -0.01227435003966093, + 0.040835216641426086, + 0.026539135724306107, + 0.03803108260035515, + -0.018777688965201378, + 0.02073056995868683, + -0.06214163452386856, + 0.0054361410439014435, + 0.06739939004182816, + 0.03610323742032051, + 0.018927911296486855, + -0.06439495831727982, + -0.0010883236536756158, + -0.11376776546239853, + -0.0037962228525429964, + -0.04101047292351723, + -0.0051857721991837025, + 0.006603487767279148, + -0.008518812246620655, + -0.08507545292377472, + 0.017500806599855423, + 0.0838736817240715, + 0.07861592620611191, + 0.014283563010394573, + 0.0019513149745762348, + 0.0024583125486969948, + -0.03379984200000763, + 0.02481158822774887, + -0.053879451006650925, + 0.04571741446852684, + 0.052026718854904175, + -0.047444961965084076, + -0.08136998862028122, + 0.06469540297985077, + 0.015285039320588112, + 0.037029605358839035, + 0.0033987618517130613, + -0.09228608757257462, + -0.0014482293045148253, + -0.05693395435810089, + -0.0043470351956784725, + -0.01703762449324131, + -0.08652759343385696, + 0.03107081726193428, + -0.01452141348272562, + -0.09383837133646011, + -0.04128587990999222, + 0.010909837670624256, + -0.0172128826379776, + 0.0049166250973939896, + 0.03928292542695999, + -0.056783732026815414, + 0.08086924999952316, + -0.0001706618204480037, + 0.05392952635884285, + -0.03585286810994148, + -0.051425833255052567, + 0.006478303112089634, + -0.07786481827497482, + 0.08823010325431824, + 0.02949349209666252, + -0.10645698010921478, + -0.0008074406650848687, + 0.029793934896588326, + 0.019290946424007416, + -0.0037179826758801937, + 0.07065418362617493, + 0.017851322889328003, + -0.009288697503507137, + 0.04589267447590828, + -0.06544651091098785, + 0.0577351376414299, + -0.02489921636879444, + -0.005589492153376341, + 0.1222803145647049, + 0.07225655019283295, + 0.052377235144376755, + -0.02285870723426342, + 0.06449510157108307, + -0.022257821634411812, + -0.10205048322677612, + -0.024135591462254524, + -0.026864614337682724, + -0.01345734391361475, + -0.0361783504486084, + 0.04536689817905426, + -0.013519936241209507, + -0.016098739579319954, + 0.00794296246021986, + -0.015560445375740528, + 0.046118006110191345, + 0.01588592492043972, + -0.004926013760268688, + 0.06915197521448135, + 0.010077360086143017, + -0.0022110729478299618, + -0.03259807080030441, + -0.0390075221657753, + 0.03838159888982773, + 0.06384414434432983, + 0.026464024558663368, + -0.013469862751662731, + -0.003671038430184126, + -0.014584005810320377, + 0.11346732079982758, + -0.06644798815250397, + -0.0028119590133428574, + -0.010878541506826878, + -0.0055081225000321865, + -0.005908713210374117, + -0.017863841727375984, + 0.04348912835121155, + 0.006381284911185503, + 0.024511143565177917, + 0.06915197521448135, + -0.012944087386131287, + -0.030344747006893158, + 0.04481608793139458, + 0.016649551689624786, + 0.04529178887605667, + -0.023747518658638, + -0.0063374703750014305, + -0.024936772882938385, + 0.0007057281909510493, + -0.06384414434432983, + -0.02310907654464245, + 0.031296148896217346, + -0.04967324808239937, + 0.00686637545004487, + 0.0056708622723817825, + 0.0906837210059166, + 0.06324326246976852, + 0.058386094868183136, + 0.0014474468771368265, + 0.08632729947566986, + 0.02824164554476738, + -0.07756437361240387, + -0.006118397228419781, + 0.01469667162746191, + -0.01569814793765545, + -0.06544651091098785, + -0.027590684592723846, + 0.01372023206204176, + 0.0355023518204689, + 0.0015835851663723588, + -0.05693395435810089, + 0.02999422885477543, + -0.01186749991029501, + 0.0627925917506218, + 0.0429132804274559, + 0.07591193914413452, + -0.034550949931144714, + -0.01934101991355419, + -0.03810619190335274, + -0.006772486958652735, + -0.03868203982710838, + 0.045141566544771194, + 0.027064910158514977, + -0.06594724953174591, + 0.04098543897271156, + 0.03700456768274307, + 0.07330810278654099, + -0.009551584720611572, + -0.033148881047964096, + 0.09979715943336487, + 0.01536015048623085, + -0.019716573879122734, + -0.022207748144865036, + -0.02073056995868683, + 0.025224696844816208, + 0.013194456696510315, + 0.0180891752243042, + -0.03222251683473587, + 0.02603839710354805, + -0.013206975534558296, + 0.010064841248095036, + -0.03475124388933182, + -0.021494194865226746, + 0.10866022855043411, + -0.0555819608271122, + -0.019628945738077164, + 0.10129937529563904, + -0.011229058727622032, + 0.030294673517346382, + -0.040034033358097076, + -0.0351017601788044, + -0.039232853800058365, + 0.11466909199953079, + -0.025387436151504517, + -0.026063432916998863, + -0.023321891203522682, + -0.025287289172410965, + 0.05057457834482193, + -0.08041858673095703, + 0.062191709876060486, + 0.0024254515301436186, + -0.0037492786068469286, + 0.04113565757870674, + 0.04386468231678009, + -0.012581052258610725, + 0.02771586924791336, + 0.0016602607211098075, + -0.05778520926833153, + -0.037730637937784195, + -0.007567408960312605, + 0.021519232541322708, + -0.0435892753303051, + -0.036153312772512436, + -0.04746999964118004, + -0.049748361110687256, + -0.04519163817167282, + -0.003436317201703787, + 0.043113574385643005, + 0.011936351656913757, + -0.00714804045855999, + 0.038882337510585785, + 0.00094357889611274, + 0.003107707714661956, + -0.014859411865472794, + -0.0298440083861351, + -0.05307827144861221, + 0.031721778213977814, + 0.008500033989548683, + -0.00935754831880331, + 0.03202221915125847, + 0.002118749311193824, + 0.021394047886133194, + 0.014671634882688522, + -0.04634333774447441, + -0.00010063668014481664, + -0.027665795758366585, + 0.064545176923275, + -0.05084998533129692, + -0.039307963103055954, + 0.0277909804135561, + 0.03272325545549393, + -0.009150994010269642, + 0.07466009259223938, + -0.1226809099316597, + -0.04909740015864372, + -0.07676319777965546, + -0.0004275836399756372, + 0.03735508397221565, + -0.06779997795820236, + 0.009338770993053913, + 0.008500033989548683, + 0.009726842865347862, + -0.039583370089530945, + 0.09008283913135529, + 0.007799000479280949, + -0.030745336785912514, + 0.012462127022445202, + -0.06599731743335724, + 0.01581081561744213, + -0.007266966160386801, + 0.027515575289726257, + 0.04939784109592438, + -0.0033737248741090298, + 0.018840281292796135, + 0.02119375206530094, + -0.025625286623835564, + -0.061290379613637924, + 0.012474644929170609, + 0.008255924098193645, + -0.04666882008314133, + -0.017801249399781227, + -0.009244882501661777, + -0.024423515424132347, + 0.01738814078271389, + -0.05648329108953476, + 0.0019262779969722033, + -0.00754863116890192, + 0.01455896906554699, + -0.043639350682497025, + 0.10029789805412292, + 0.04464082792401314, + 0.010183767415583134, + -0.004027814604341984, + 0.025011882185935974, + -0.06554665416479111, + -0.043363943696022034, + 0.03254799544811249, + -0.012430830858647823, + 0.029142973944544792, + -0.01284393947571516, + 0.028667272999882698, + 0.00012743400293402374, + 0.02799127623438835, + -0.0522770881652832, + -0.03670412302017212, + -0.026539135724306107, + -0.053629081696271896, + -0.035352129489183426, + 0.05162612721323967, + -0.019090650603175163, + -0.07135522365570068, + -0.04098543897271156, + -0.011204021982848644, + -0.01227435003966093, + -0.015109781175851822, + -0.01792643405497074, + 0.06098993495106697, + 0.016536885872483253, + -0.016399182379245758, + 0.03632856905460358, + -0.06754960864782333 + ] + }, + { + "id": "611e625b-bb12-4fe5-8c4b-2223390c8d85", + "productId": "dd57ea02-3c11-4a1f-86c5-246c5ba5f3f5", + "category": "Electronics", + "docType": "customerRating", + "userName": "kbell", + "reviewDate": "2022-01-22T08:12:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "30923c7e-8440-4a18-aca9-6c27db11c3b0", + "productId": "dd57ea02-3c11-4a1f-86c5-246c5ba5f3f5", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicholas63", + "reviewDate": "2021-01-02T19:38:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand + (Red)", + "description": "This Awesome Stand + (Red) is rated 4.0 out of 5 by 33.\n\nRated 3 out of 5 by mrb from Bummer! One of these looked really nice, looks cheap, but was a disappointment with no difference in look or texture, no noticeable difference in quality compared to my new one. We were lucky, we came back once to see this model again and gave it 5 stars (but only because everything else was a surprise", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-03-31T05:12:09", + "price": 221.55, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-01-28T13:04:49", + "newPrice": 238.79 + }, + { + "priceDate": "2022-04-13T13:04:49", + "newPrice": 221.55 + } + ], + "descriptionVector": [ + -0.030720863491296768, + -0.026520533487200737, + -0.03645723685622215, + 0.09754553437232971, + -0.027281757444143295, + -0.06410601735115051, + -0.031101476401090622, + 0.014585613273084164, + -0.013933135196566582, + 0.05548785999417305, + 0.005406735930591822, + -0.021980369463562965, + -0.038061246275901794, + -0.04991460591554642, + 0.02011808753013611, + 0.04056241363286972, + -0.01901702955365181, + 0.007150077261030674, + -0.007109296973794699, + 0.0005802640807814896, + 0.03594069182872772, + -0.036103811115026474, + -0.05904930457472801, + 0.05105644464492798, + -0.0133078433573246, + -0.04844652861356735, + 0.004570747725665569, + -0.0016702769789844751, + 0.017875192686915398, + 0.018296584486961365, + 0.00019529752898961306, + 0.025664154440164566, + -0.029225600883364677, + 0.04466759040951729, + -0.03047618456184864, + 0.05404696986079216, + 0.045537564903497696, + 0.021817250177264214, + -0.01745380088686943, + 0.14321903884410858, + -0.020131681114435196, + 0.045265696942806244, + 0.045727867633104324, + -0.025446662679314613, + 0.045211322605609894, + -0.0362941175699234, + -0.026805993169546127, + 0.006494200322777033, + 0.05883181467652321, + -0.0340920016169548, + 0.011105728335678577, + -0.013905948027968407, + 0.00800645537674427, + -0.012492245063185692, + 0.02944309264421463, + 0.013117536902427673, + -0.039094336330890656, + 0.115488700568676, + 0.03395606949925423, + -0.06671592593193054, + -0.039719630032777786, + -0.005036318674683571, + -0.008081218227744102, + -0.010358096100389957, + -0.017535360530018806, + 0.01797034591436386, + -0.01166984997689724, + -0.04763093218207359, + -0.01705959439277649, + -0.008822053670883179, + -0.00291066593490541, + 0.03588631749153137, + -0.013001993298530579, + 0.08612716197967529, + 0.044558845460414886, + 0.010663946159183979, + 0.11385750025510788, + 0.009304615668952465, + -0.03577757254242897, + 0.058505572378635406, + 0.043117955327034, + 0.04937087371945381, + -0.031264595687389374, + 0.0025385492481291294, + 0.01014060340821743, + -0.03031306527554989, + -0.017440207302570343, + -0.11048635840415955, + -0.03599506616592407, + 0.050784576684236526, + -0.009080326184630394, + 0.009991077706217766, + 0.05173610895872116, + -0.05192641541361809, + 0.042438291013240814, + 0.01273692399263382, + -0.0626923143863678, + 0.09199947118759155, + -0.015999317169189453, + -0.029116854071617126, + 0.005685398820787668, + -0.00386049784719944, + -0.057254988700151443, + 0.010460046119987965, + 0.03923027217388153, + 0.013328232802450657, + 0.005199437960982323, + 0.0335482694208622, + -0.009379378519952297, + -0.14104411005973816, + 0.04358012601733208, + -0.011751409620046616, + -0.00516885332763195, + -0.048664022237062454, + -0.034608546644449234, + 0.09346754848957062, + -0.007829742506146431, + -0.039556510746479034, + 0.07063079625368118, + -0.0772099569439888, + 0.0313461571931839, + 0.03227049857378006, + 0.012716534547507763, + 0.042846087366342545, + 0.07411068677902222, + 0.04184018447995186, + -0.03694659471511841, + 0.008461831137537956, + 0.0680752620100975, + -0.06432350724935532, + -0.0632360428571701, + 0.06416038423776627, + 0.024413570761680603, + 0.007469519507139921, + -0.005100886803120375, + 0.05768997594714165, + 0.024631064385175705, + 0.03186270222067833, + 0.027173010632395744, + -0.04303639382123947, + 0.006528183352202177, + -0.029252786189317703, + 0.06965208053588867, + 0.05282357335090637, + -0.025188390165567398, + 0.002467184327542782, + -0.03458135947585106, + -0.009202665649354458, + 0.015863383188843727, + -0.016284776851534843, + 0.04368887469172478, + -0.10059043765068054, + -0.06905397772789001, + -0.012281549163162708, + -0.0037687430158257484, + 0.012954417616128922, + -0.07275135815143585, + 0.030720863491296768, + -0.05274201184511185, + 0.046407535672187805, + -0.008726900443434715, + 0.02206192910671234, + -0.008455034345388412, + -0.012206785380840302, + 0.002584426663815975, + 0.01382438838481903, + 0.04994179308414459, + 0.0337657630443573, + -0.08601842075586319, + 0.027866270393133163, + 0.032053008675575256, + -0.009950296953320503, + 0.019139369949698448, + -0.006052417680621147, + -0.006286902353167534, + 0.0030381029937416315, + 0.08873707801103592, + -0.05709186941385269, + 0.03691940754652023, + -0.05135549604892731, + 0.006246122531592846, + -0.022945495322346687, + -0.0410245880484581, + -0.016203217208385468, + 0.06339916586875916, + 0.009726007468998432, + -0.00959007441997528, + 0.04972429946064949, + 0.0069087957963347435, + 0.053720731288194656, + 0.01729067973792553, + 0.005508685950189829, + 0.011785393580794334, + 0.040589600801467896, + -0.05548785999417305, + -0.003605623496696353, + 0.00028269822360016406, + -0.0255146287381649, + -0.009957093745470047, + 0.049697112292051315, + -0.03852342069149017, + 0.04754937067627907, + 0.11505371332168579, + -0.022279422730207443, + 0.06095236912369728, + -0.04431416466832161, + 0.07389318943023682, + 0.012492245063185692, + 0.06579158455133438, + 0.057744350284338, + -0.015102159231901169, + -0.01567307859659195, + -0.03213456645607948, + 0.0504855252802372, + 0.029524652287364006, + 0.07443692535161972, + 0.034880414605140686, + 0.01854126527905464, + -0.011819376610219479, + -0.0193024892359972, + 0.06812962889671326, + -0.03504353389143944, + -0.04567349702119827, + -0.06057175621390343, + -0.04746781289577484, + -0.01850048452615738, + 0.004363450221717358, + -0.0007021790370345116, + 0.07008706778287888, + 0.038224365562200546, + -0.04746781289577484, + -0.08346287906169891, + -0.00626651244238019, + -0.006157766096293926, + -0.0767749696969986, + 0.053720731288194656, + -0.045265696942806244, + -0.06106111407279968, + -0.06812962889671326, + 0.020213240757584572, + -0.0433354489505291, + 0.027811896055936813, + -0.07661185413599014, + -0.007415146566927433, + 0.01140478067100048, + -0.05342167988419533, + 0.08177730441093445, + -0.12201347947120667, + -0.033330775797367096, + -0.04912619665265083, + -0.008570577017962933, + -0.05573254078626633, + -0.024060145020484924, + 0.07416506111621857, + 0.07476316392421722, + 0.02028120681643486, + 0.029361533001065254, + 0.05671125650405884, + 0.01089503150433302, + -0.036729104816913605, + 0.011017371900379658, + 0.04458603262901306, + -0.01866360381245613, + 0.021858030930161476, + -0.016910068690776825, + 0.01981903426349163, + 0.021708503365516663, + -0.00032241613371297717, + -0.049180567264556885, + 0.09178198128938675, + -0.005070301704108715, + -0.06883648037910461, + 0.041513945907354355, + -0.027268163859844208, + -0.054699450731277466, + 0.048147477209568024, + 0.030557744204998016, + 0.034880414605140686, + -0.0007773669785819948, + 0.006749074440449476, + 0.09749116748571396, + 0.05611315369606018, + 0.043879181146621704, + 0.005919883027672768, + 0.018051905557513237, + -0.0626923143863678, + 0.04920775443315506, + -0.027186604216694832, + -0.03159083425998688, + -0.028709053993225098, + -0.01878594420850277, + -0.0156187042593956, + 0.028083762153983116, + 0.012227175757288933, + -0.03648442402482033, + -0.036266930401325226, + 0.001715304795652628, + 0.014422493986785412, + 0.0263981930911541, + -0.01786159910261631, + 0.09803489595651627, + 0.03730002045631409, + -0.04034492000937462, + -0.05467226356267929, + -0.057526856660842896, + 0.04879995435476303, + -0.04956118017435074, + 0.007938488386571407, + -0.045428816229104996, + -0.02638459950685501, + 0.06938021630048752, + 0.010901828296482563, + -0.04257422313094139, + -0.03942057862877846, + 0.043117955327034, + -0.03324921801686287, + -0.014381714165210724, + 0.045483190566301346, + 0.056548137217760086, + 0.041106145828962326, + -0.04776686429977417, + -0.0485009029507637, + 0.002929356647655368, + 0.04251984879374504, + 0.03702815622091293, + -0.04580942913889885, + -0.006796651054173708, + -0.01495263259857893, + -0.03588631749153137, + 0.010432859882712364, + 0.011996089480817318, + 0.011832970194518566, + 0.01474873349070549, + 0.03319484367966652, + -0.01103096455335617, + -0.03186270222067833, + 0.03553289175033569, + -0.028382815420627594, + 0.03237924724817276, + 0.0505942702293396, + 0.00020379334455356002, + 0.07884115725755692, + 0.003134955419227481, + -0.012689347378909588, + 0.07633998990058899, + -0.09401127696037292, + 0.06492161005735397, + -0.062202952802181244, + 0.0630185529589653, + -0.01763051375746727, + 0.0017773242434486747, + -0.0013771714875474572, + -0.02903529442846775, + 0.02280956134200096, + 0.042492661625146866, + 0.03197144716978073, + -0.0018843715079128742, + -0.08438722044229507, + 0.05687437579035759, + -0.03208019211888313, + 0.08862832933664322, + 0.010099823586642742, + 0.05056708678603172, + 0.04684251919388771, + 0.03762626275420189, + 0.007279213517904282, + -0.07416506111621857, + 0.06927146762609482, + -0.09009640663862228, + 0.03550570458173752, + -0.044857896864414215, + -0.05616752430796623, + -0.047794051468372345, + 0.002400917001068592, + -0.04983304813504219, + 0.024930115789175034, + -0.003411918878555298, + 0.06193108484148979, + 0.004118770826607943, + 0.026071954518556595, + -0.08977016806602478, + 0.03917589783668518, + -0.05584128573536873, + 0.004108575638383627, + 0.028491562232375145, + -2.6403396987007e-05, + -0.02620788663625717, + 0.09928548336029053, + -0.020321987569332123, + -0.005573254078626633, + -0.0456463098526001, + -0.0676402747631073, + 0.015170125290751457, + 0.06660718470811844, + 0.0027475461829453707, + -0.12114351242780685, + 0.0049377670511603355, + 0.042329542338848114, + 0.011425171047449112, + 0.03284141793847084, + -0.05140987038612366, + 0.03947494924068451, + 0.03140052780508995, + -0.021980369463562965, + -0.02304064668715, + -0.004699884448200464, + -0.0003472664102446288, + 0.027472063899040222, + -0.024930115789175034, + -0.050621457397937775, + -0.015809010714292526, + -0.024617470800876617, + -0.0068102446384727955, + 0.0719357579946518, + 0.02944309264421463, + 0.04545600339770317, + 0.10075356066226959, + -0.05692875012755394, + 0.06367103010416031, + -0.038686539977788925, + 0.06492161005735397, + 0.02033558115363121, + 0.04140520095825195, + 0.001715304795652628, + -0.03694659471511841, + 0.07411068677902222, + -0.05051271244883537, + -0.06383414566516876, + -0.05709186941385269, + -0.07693809270858765, + 0.02467184327542782, + -0.07307759672403336, + -0.013627286069095135, + 0.038169994950294495, + 0.02771674282848835, + 0.0413508266210556, + -0.004971750546246767, + 0.0386049784719944, + -0.0218308437615633, + 0.013702048920094967, + 0.005029521882534027, + -0.010392080061137676, + 0.047386251389980316, + 0.05271482840180397, + -0.08906331658363342, + -0.0289809200912714, + -0.03042181022465229, + 0.06470412015914917, + 0.0055800508707761765, + 0.015605111606419086, + -0.017780039459466934, + 0.019601542502641678, + -0.08498532325029373, + -0.0030635904986411333, + 0.01652945578098297, + -0.025677748024463654, + -0.0008538293186575174, + 0.06062613055109978, + -0.0315636470913887, + -0.007292806636542082, + -0.03952932357788086, + 0.04567349702119827, + 0.05421008914709091, + 0.016692575067281723, + -0.015985723584890366, + -0.026547718793153763, + -0.062366072088479996, + -0.03295016661286354, + -0.023434853181242943, + 0.02282315492630005, + -0.10825706273317337, + -0.022102709859609604, + -0.11722864210605621, + -0.001209803856909275, + 0.011561104096472263, + -0.010650352574884892, + -0.01843251846730709, + -0.043063580989837646, + -0.02097446471452713, + 0.013362215831875801, + -0.0048799957148730755, + 0.026656465604901314, + -0.031047102063894272, + 0.0006359116523526609, + 0.041513945907354355, + -0.026289446279406548, + -0.0025249558966606855, + -0.022673629224300385, + 0.007068517152220011, + 0.010215367190539837, + -0.009596871212124825, + 0.04148675873875618, + 0.06644406169652939, + -0.05486257001757622, + -0.03895840421319008, + -0.02789345569908619, + 0.01512934546917677, + -0.020838532596826553, + -0.06100673973560333, + 0.013844778761267662, + 0.09243445843458176, + -0.05116518959403038, + -0.005162056535482407, + 0.034826040267944336, + 0.04602692276239395, + -0.03246080502867699, + -0.024223264306783676, + 0.009664838202297688, + -0.017413020133972168, + -0.010031857527792454, + 0.08471345901489258, + -0.0576356016099453 + ] + }, + { + "id": "0d8ed784-c046-4b87-882a-28edb4d58dbf", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "amandaking", + "reviewDate": "2022-04-02T01:30:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1528c75b-46d2-43e8-929c-3b4ab167f0f4", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "brendan35", + "reviewDate": "2021-08-12T13:08:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "62b80abc-161d-49bd-b2d9-4f0cec08abc0", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "thomasbrian", + "reviewDate": "2021-01-28T13:04:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "96f0345c-2369-4228-a763-d4b630ce0624", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "roblesjason", + "reviewDate": "2021-06-11T10:28:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "580f9ef2-4a68-4e87-8643-25bd2d2e3bdd", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "rebecca60", + "reviewDate": "2021-02-02T09:16:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "264116e7-f948-41c4-ac4a-9b8ef5cf9e9c", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "bassjeffery", + "reviewDate": "2022-03-26T00:01:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "510340a1-3fd8-4372-a9f1-3c5625b5b718", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "william25", + "reviewDate": "2022-02-19T11:50:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "360d1461-0f7a-4415-a935-6f56b879fd6c", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "oguzman", + "reviewDate": "2021-11-28T05:35:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7126100d-6590-4a9e-a284-7c2ce9cbcc4f", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "hortonkristina", + "reviewDate": "2021-02-20T03:55:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "73642a29-43f5-4f91-a7bf-95fa323a754a", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "ehubbard", + "reviewDate": "2021-02-25T11:33:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e0019e00-1ff8-40c6-ab6e-e85428ff5cfa", + "productId": "1dabfc7c-4c0a-4224-b3b5-faff40cf389b", + "category": "Accessory", + "docType": "customerRating", + "userName": "patrick51", + "reviewDate": "2021-12-15T23:44:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "46c46174-ac84-48ee-86d1-4ab25390355d", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Ultra (Silver)", + "description": "This Luxe Phone Ultra (Silver) is available in four colors: Bronze, Emerald, Platinum, and Gold.\n\nPlease note: The Luxe Phone Ultra is the same phone that we already have available for download and is compatible with the following phones:\n\nSamsung 5500: Full LTE support\n\niPhone 5: Full LTE support\n\nSamsung Galaxy Nexus One: Full support\n\nGalaxy G3\n", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-12-21T12:35:01", + "price": 732.92, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-04-24T13:41:05", + "newPrice": 760.62 + }, + { + "priceDate": "2021-10-19T13:41:05", + "newPrice": 695.41 + }, + { + "priceDate": "2022-04-15T13:41:05", + "newPrice": 780.64 + }, + { + "priceDate": "2022-10-10T13:41:05", + "newPrice": 782.01 + }, + { + "priceDate": "2025-05-22T13:41:05", + "newPrice": 732.92 + } + ], + "descriptionVector": [ + -0.06198536604642868, + 0.03612846881151199, + -0.05120530351996422, + 0.006642197258770466, + 0.026467090472579002, + -0.04614579305052757, + -0.004153756890445948, + 0.04856113716959953, + 0.00028284956351853907, + 0.04019641876220703, + 0.04474743455648422, + -0.019894812256097794, + 0.039865896105766296, + 0.02633996680378914, + 0.05679873377084732, + 0.013513216748833656, + -0.06066328287124634, + -0.05715467780828476, + -0.0024709610734134912, + 0.002088001696392894, + 0.052018892019987106, + -0.07261288166046143, + -0.04805264249444008, + -0.04510338231921196, + 0.008917706087231636, + -0.026390817016363144, + 0.02811969444155693, + -0.007322307676076889, + 0.04754415154457092, + -0.03935740143060684, + 0.04342535138130188, + -0.04093373194336891, + -0.028272243216633797, + 0.05273078382015228, + -0.041137129068374634, + 0.01188603788614273, + 0.10820743441581726, + 0.03284868597984314, + 0.07225693762302399, + 0.029467202723026276, + 0.05501900613307953, + -0.029289230704307556, + -0.009241870604455471, + -0.014161545783281326, + 0.015127683989703655, + -0.05400201678276062, + 0.013932724483311176, + 0.029619751498103142, + 0.040145568549633026, + -0.07510450482368469, + -0.027611201629042625, + 0.005339182447642088, + -0.08303700387477875, + -0.049603547900915146, + 0.00034144549863412976, + -0.08237595856189728, + -0.0005994662642478943, + 0.18793922662734985, + -0.004303127061575651, + 0.030560463666915894, + -0.0667652040719986, + -0.036153893917798996, + -0.02636539191007614, + 0.06086667999625206, + 0.014682752080261707, + 0.01705995947122574, + 0.038569238036870956, + -0.03142490237951279, + -0.007907074876129627, + 0.0677313432097435, + -0.014631902799010277, + 0.06615501642227173, + -0.015292944386601448, + 0.07490110397338867, + 0.019437167793512344, + 0.05837506428360939, + -0.03259443864226341, + -0.013004723004996777, + 0.05425626412034035, + -0.07225693762302399, + 0.0064133754931390285, + 0.016119247302412987, + -0.05140870064496994, + 0.0004485072277020663, + -0.024331416934728622, + 0.011307626031339169, + 0.024801773950457573, + -0.11125839501619339, + -0.05021373927593231, + 0.062036216259002686, + 0.013856450095772743, + 0.0342978909611702, + -0.012356393970549107, + -0.0148480124771595, + 0.012254695408046246, + 0.06269726157188416, + 0.026034871116280556, + 0.07566384226083755, + -0.09732566773891449, + -0.024204295128583908, + 0.042255815118551254, + 0.014479354955255985, + 0.030865561217069626, + 0.03917942941188812, + -0.003473646705970168, + 0.04604409262537956, + 0.030484190210700035, + 0.005173922050744295, + -0.0007583705009892583, + -0.1215299665927887, + 0.04739160090684891, + -0.020365167409181595, + -0.09107120335102081, + 0.022424567490816116, + 0.01299201138317585, + 0.05537495017051697, + 0.005237483885139227, + -0.01369118969887495, + 0.05166294798254967, + -0.005622032098472118, + -0.01891596056520939, + 0.006000224035233259, + -0.043755874037742615, + -0.022322868928313255, + -0.010576666332781315, + 0.008396499790251255, + 0.08293530344963074, + 0.05262908712029457, + 0.023784786462783813, + -0.07479940354824066, + -0.047925520688295364, + 0.025361116975545883, + 0.015712451189756393, + 7.001718040555716e-05, + -0.009400774724781513, + 0.054713908582925797, + 0.049222178757190704, + 0.055629197508096695, + -0.032060518860816956, + 0.04787467047572136, + -0.07403666526079178, + -0.0032321123871952295, + 0.07042635977268219, + -0.0435778982937336, + -0.0714941993355751, + -0.02431870624423027, + -0.007296883035451174, + -0.05267993360757828, + -0.030916409566998482, + 0.011085160076618195, + -0.013157271780073643, + -0.118784099817276, + 0.03999302163720131, + -0.015178533270955086, + -0.008167678490281105, + 0.03396737203001976, + -0.04591697081923485, + -0.07301967591047287, + 0.014809875749051571, + 0.06488378345966339, + -0.010138090699911118, + -0.020530428737401962, + -0.0030048792250454426, + -0.053696922957897186, + -0.030662162229418755, + 0.02449667826294899, + 0.030407916754484177, + 0.04660343751311302, + -0.03389109671115875, + 0.019259193912148476, + 0.03546742722392082, + -0.023975472897291183, + -0.03999302163720131, + -0.049501851201057434, + -0.016729438677430153, + 0.04957812279462814, + 0.05501900613307953, + 0.019055796787142754, + 0.054968155920505524, + -0.016386205330491066, + 0.04601866751909256, + 0.013996285386383533, + -0.07622318714857101, + -0.00656592333689332, + 0.02951805293560028, + 0.009616884402930737, + 0.04322195425629616, + 0.03305208310484886, + -0.008943131193518639, + 0.00030271257855929434, + -0.028628189116716385, + 0.022983910515904427, + -0.008002418093383312, + -0.015559903346002102, + 0.03704375773668289, + -0.06198536604642868, + 0.12915736436843872, + 0.021038921549916267, + -0.02987399697303772, + 0.049883220344781876, + 0.0685957819223404, + 0.027153557166457176, + 0.059239502996206284, + -0.011777982115745544, + 0.012089435011148453, + -0.037526827305555344, + 0.002472550142556429, + 0.013920011930167675, + 0.02700100839138031, + 0.03129778057336807, + 0.008898637257516384, + 0.051993466913700104, + -0.010150803253054619, + 0.06020563840866089, + 0.042179543524980545, + 0.025666212663054466, + 0.021585552021861076, + -0.043196529150009155, + -0.024267856031656265, + -0.07388411462306976, + 0.010290638543665409, + 0.0011878092773258686, + 0.025081446394324303, + 0.004455674905329943, + -0.03574709966778755, + -0.0685957819223404, + 0.056747883558273315, + 0.0964612290263176, + 0.007843513041734695, + -0.007093485444784164, + 0.023644952103495598, + -0.04388299584388733, + 0.031679149717092514, + -0.003896332113072276, + 4.0222636016551405e-05, + 0.0686466321349144, + 0.015076834708452225, + 0.004080661106854677, + 0.0010606858413666487, + 0.004808442201465368, + -0.04629833996295929, + -0.07627403736114502, + 0.002318412996828556, + -0.042916856706142426, + 0.0204287301748991, + -0.06015479192137718, + 0.06534142792224884, + 0.026746762916445732, + -0.03295038267970085, + 0.058680158108472824, + -0.05374777317047119, + -0.05761232227087021, + -0.07281628251075745, + 0.08944401890039444, + -0.015153109095990658, + 0.012604285031557083, + 0.0018067412311211228, + 0.009057542309165001, + 0.033916521817445755, + -0.05318842828273773, + 0.010989817790687084, + -0.0473407506942749, + -0.03684036061167717, + -0.030458765104413033, + -0.0752061977982521, + 0.02608572132885456, + 0.05486645922064781, + -0.061375174671411514, + -0.0021261388901621103, + -0.008085047826170921, + -0.015102259814739227, + -0.03645899146795273, + 0.04530677944421768, + 0.027306105941534042, + -0.031018108129501343, + 0.0007849869434721768, + -0.09798671305179596, + 0.029619751498103142, + -0.000942302169278264, + -0.0370946079492569, + 0.07429090887308121, + 0.05593429505825043, + 0.015610752627253532, + -0.10246145725250244, + 0.09686803072690964, + -0.0417473241686821, + -0.0677821934223175, + 0.03905230760574341, + 0.04612036794424057, + -0.026950160041451454, + 0.010138090699911118, + 0.0046400041319429874, + 0.0066485535353422165, + -0.02208133414387703, + 0.006098744925111532, + -0.03368769958615303, + 0.019335469231009483, + -0.028653612360358238, + 0.024242430925369263, + 0.028450215235352516, + -0.014034423045814037, + -0.01903037168085575, + -0.030585888773202896, + 0.03147575259208679, + 0.00258537195622921, + 0.1475648432970047, + 0.0026457556523382664, + 0.022221170365810394, + -0.059442900121212006, + -0.005596607457846403, + 0.07474855333566666, + -0.06173112243413925, + -0.05918865278363228, + -0.021572839468717575, + 0.0217889491468668, + -0.015153109095990658, + -0.10597006231546402, + 0.028729887679219246, + -0.007303238846361637, + 0.01475902646780014, + 0.028831586241722107, + -0.00254087895154953, + -0.09315602481365204, + 0.03495893254876137, + 0.07942669838666916, + 0.03490808606147766, + -0.009356281720101833, + -0.02951805293560028, + -0.0016073164297267795, + -0.0071951840072870255, + -0.03859466314315796, + 0.012241982854902744, + -0.009877488017082214, + -0.038925182074308395, + 0.0236576646566391, + 0.01764472760260105, + 0.036153893917798996, + 0.05267993360757828, + 0.08318954706192017, + -0.01699639856815338, + 0.06946022063493729, + 0.05649363622069359, + -0.041238829493522644, + 0.002842796966433525, + -0.040145568549633026, + -0.020060071721673012, + -0.09102035313844681, + 0.021661827340722084, + 0.03300123289227486, + 0.03053504042327404, + 0.0015540835447609425, + 0.005647456739097834, + 0.05695128068327904, + -0.03473011031746864, + 0.08847787976264954, + 0.020835524424910545, + 0.0426880344748497, + -0.06508717685937881, + -0.007455787155777216, + -0.010627515614032745, + -0.0035308522637933493, + 0.007150691002607346, + 0.07632488757371902, + -0.005234305746853352, + 0.03129778057336807, + 0.019004948437213898, + 0.01383102498948574, + 0.06518887728452682, + -0.06701945513486862, + -0.012788613326847553, + 0.007322307676076889, + 0.002796714659780264, + -0.06803644448518753, + 0.022068621590733528, + -0.06295150518417358, + 0.021267743781208992, + 0.07088400423526764, + 0.028704462572932243, + 0.03889976069331169, + 0.04027269035577774, + -0.03053504042327404, + 0.04563729837536812, + -0.006454690359532833, + 0.018712563440203667, + 0.11105500161647797, + -0.008517267182469368, + -0.03778107464313507, + 0.010977105237543583, + -0.007760883308947086, + 0.017237931489944458, + 0.025818761438131332, + -0.06229046359658241, + 0.01489886175841093, + 0.07922329753637314, + 0.04317110404372215, + 0.01931004412472248, + -0.002969920402392745, + 0.014835299924015999, + 0.018877824768424034, + 0.017314206808805466, + 0.048764534294605255, + 0.03582337126135826, + 0.028323091566562653, + 0.018064234405755997, + 0.03007739596068859, + -0.05059511214494705, + 0.022233881056308746, + -0.020352454856038094, + -0.012445379979908466, + -0.13790345191955566, + -0.013894586823880672, + 0.02023804374039173, + -0.021102484315633774, + 0.019538866356015205, + 0.02977229841053486, + 0.03602676838636398, + 0.012705983594059944, + 0.03366227447986603, + 0.09203733503818512, + 0.003152660094201565, + 0.02801799587905407, + 0.05623938888311386, + -0.03958622366189957, + -0.011174146085977554, + -0.0010193707421422005, + -0.036433566361665726, + -0.04507795721292496, + 0.012102147564291954, + 0.015534479171037674, + -0.03610304370522499, + 0.053493525832891464, + -0.049044206738471985, + 0.07500280439853668, + -0.026492515578866005, + -0.020072784274816513, + 0.041899871081113815, + -0.029390929266810417, + 0.01493699848651886, + -0.02720440737903118, + 0.025945885106921196, + -0.04896793141961098, + -0.02766204997897148, + -0.03323005512356758, + 0.05908695235848427, + -0.06600246578454971, + -0.06996871531009674, + -0.00961052905768156, + -0.0010447953827679157, + -0.04591697081923485, + -0.031602874398231506, + -0.0062131560407578945, + 0.02190336026251316, + 0.003937647212296724, + -0.026594214141368866, + 0.020199907943606377, + -0.05232398957014084, + -0.01847102865576744, + 0.08202001452445984, + 0.014390368014574051, + -0.002488440368324518, + -0.07001956552267075, + 0.05313757807016373, + 0.02487804926931858, + -0.07413836568593979, + -0.029467202723026276, + 0.011695352382957935, + -0.06844323873519897, + 0.013106422498822212, + -0.00802784226834774, + 0.03996759653091431, + -0.0436033234000206, + -0.07622318714857101, + 0.05801911652088165, + 0.012756832875311375, + -0.03684036061167717, + -0.0398913212120533, + 0.012712339870631695, + -0.05725637823343277, + -0.020060071721673012, + 0.01039233710616827, + 0.05056968703866005, + 0.08491842448711395, + 0.057561472058296204, + -0.018318481743335724, + 0.045052532106637955, + -0.0751553475856781, + 0.051917195320129395, + -0.016856562346220016, + 0.024547528475522995, + 0.06615501642227173, + 0.02218303270637989, + 0.0045097023248672485, + -0.08552861958742142, + -0.01081184484064579, + -0.03574709966778755, + -0.08344379812479019, + 0.022716950625181198, + -0.028704462572932243, + -0.030941834673285484, + 0.021013496443629265, + -0.0028412078972905874, + -0.017848124727606773, + -0.011212283745408058, + -0.04983237013220787, + 0.03582337126135826, + 8.307712414534763e-05, + -0.010996174067258835, + 0.046730559319257736, + -0.014352231286466122, + -0.01192417461425066, + 0.05435796454548836, + 0.012197489850223064 + ] + }, + { + "id": "4e1345d7-2c35-4bf3-b4db-ebe44da8fd32", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "ngamble", + "reviewDate": "2022-10-13T00:38:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "993c344c-3861-4276-bde1-58bc43ae9949", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberly47", + "reviewDate": "2021-08-06T10:56:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7c05513a-4cbd-46ce-a9ca-935503b36771", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "awilliams", + "reviewDate": "2022-03-18T21:25:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9080ac0a-389d-40d2-b81a-6ea8c0082b68", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsrobert", + "reviewDate": "2021-11-17T10:07:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "67f4aec4-e422-48e1-8316-068a4642c139", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "bryan34", + "reviewDate": "2021-10-28T15:18:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c5e0de2b-fb97-4542-96b0-f9910280f902", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "pjoseph", + "reviewDate": "2022-07-21T01:25:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5785bcc7-21d9-48ab-ba72-8eaceed84bd2", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "brian93", + "reviewDate": "2022-07-02T23:16:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c7b7e104-476a-4083-a10c-92d200162a28", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "christine38", + "reviewDate": "2021-11-12T21:40:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9540c238-c69a-431a-ada8-e27802ccd256", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "sbrown", + "reviewDate": "2021-04-24T13:41:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7961514f-98f4-450e-b416-27b15add66ba", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "gordonsheppard", + "reviewDate": "2021-05-13T19:07:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "30ddd3ea-0072-4b34-a81a-78c3ab6afbea", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "donaldstrong", + "reviewDate": "2021-10-24T20:10:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7543b27d-555c-4e5c-ac42-b12371f08015", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "rachel11", + "reviewDate": "2021-08-12T03:47:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b9a6669f-8366-40c8-b506-2a6a4b10e5b2", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "sandra31", + "reviewDate": "2022-09-05T10:24:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e3d99789-b474-4455-97f8-3a7b50a83aad", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "jpadilla", + "reviewDate": "2021-06-02T12:25:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8b4db2d1-48d0-4ae0-b3cd-92c72de64994", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnsonjames", + "reviewDate": "2021-06-14T13:12:02", + "stars": 3, + "verifiedUser": true + }, + { + "id": "bee0b80f-814f-49f6-b12b-6e5d0875ed8a", + "productId": "46c46174-ac84-48ee-86d1-4ab25390355d", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsmichelle", + "reviewDate": "2021-06-26T00:22:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "product", + "name": "Premium TV Super (Black)", + "description": "This Premium TV Super (Black) is on the menu!\n\n\nIn addition to its unique packaging, the Premium TV Super ($199.99) comes with a 4K UHD Ultra HD (800kbps) video source and an advanced viewing experience, providing over 60 hours of entertainment for two or more individuals. The Premium TV Super is available on Amazon, Barnes & Noble, Best Buy, Walmart,", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-02-08T01:58:58", + "price": 372.68, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2021-01-31T09:14:50", + "newPrice": 384.4 + }, + { + "priceDate": "2021-09-19T09:14:50", + "newPrice": 355.89 + }, + { + "priceDate": "2022-05-08T09:14:50", + "newPrice": 369.88 + }, + { + "priceDate": "2022-12-25T09:14:50", + "newPrice": 394.31 + }, + { + "priceDate": "2023-07-10T09:14:50", + "newPrice": 372.68 + } + ], + "descriptionVector": [ + 0.007465217262506485, + 0.006066335830837488, + -0.046877771615982056, + 0.03200153261423111, + -0.035009294748306274, + -0.05210748687386513, + -0.007085859775543213, + 0.031080232933163643, + 0.02048531547188759, + 0.09305102378129959, + 0.05178232491016388, + -0.042596448212862015, + 0.05581977590918541, + -0.02013305388391018, + 0.06080561876296997, + -0.03590349480509758, + -0.007783607114106417, + -0.03267895430326462, + 0.009057165123522282, + 0.00864393636584282, + 0.048178426921367645, + 0.008596516214311123, + -0.027449239045381546, + -0.013555263169109821, + -0.033600252121686935, + 0.020959513261914253, + -0.01176686305552721, + 0.026826007291674614, + 0.01190912164747715, + -0.014266558922827244, + -0.0016444477951154113, + 0.013616231270134449, + 0.0062018209137022495, + -0.004874068778008223, + -0.0183040089905262, + 0.047717779874801636, + -0.019265951588749886, + 0.028641505166888237, + 0.09164197742938995, + -0.024685347452759743, + 0.04229838401079178, + -0.008996197022497654, + 0.008047802373766899, + 0.040374498814344406, + -0.0020068699959665537, + -0.03281443938612938, + 0.05880044400691986, + -0.013914298266172409, + -0.04050998389720917, + -0.11185632646083832, + -0.03406090289354324, + -0.003918900620192289, + -0.08372966200113297, + 0.055873967707157135, + 0.006906342227011919, + 0.014212365262210369, + 0.03945320099592209, + 0.10394401103258133, + 0.05880044400691986, + 0.03070087544620037, + -0.022775009274482727, + -0.03297702223062515, + 0.061347559094429016, + 0.03305831179022789, + -0.015391083434224129, + -0.017938198521733284, + -0.03731253743171692, + 0.012891387566924095, + -0.020810479298233986, + 0.0476364865899086, + -0.0005563348531723022, + 0.00722811883315444, + 0.07906898111104965, + 0.06584565341472626, + 0.008467805571854115, + 0.028831183910369873, + 0.06389467418193817, + -0.023940179497003555, + 0.03733963519334793, + -0.007268764544278383, + 0.03755640983581543, + 0.007309409789741039, + 0.004918101709336042, + -0.001769771333783865, + 0.09343037754297256, + 0.04538743942975998, + 0.010127495974302292, + -0.11857637763023376, + -0.04471001401543617, + 0.029833773151040077, + 0.0328686349093914, + 0.10286013036966324, + 0.05048166960477829, + -0.061781108379364014, + 0.06649598479270935, + 0.08416321128606796, + -0.02564729005098343, + 0.028587311506271362, + -0.038206737488508224, + 0.05945076793432236, + 0.09039551764726639, + -0.11326536536216736, + 0.010323948226869106, + -0.09402651339769363, + 0.017518196254968643, + -0.05151135474443436, + -0.010412014089524746, + 0.03105313703417778, + 0.006428758148103952, + -0.19748277962207794, + 0.008508451282978058, + -0.01166524924337864, + 0.03958868607878685, + 0.030836360529065132, + 0.0025860678870230913, + 0.0502919927239418, + -0.019469179213047028, + -0.015391083434224129, + 0.023628564551472664, + -0.004718261305242777, + -0.046173252165317535, + 0.027340849861502647, + -0.015729796141386032, + -0.0001503035455243662, + 0.014835595153272152, + -0.011062340810894966, + -0.046173252165317535, + 0.09380973875522614, + 0.06113078072667122, + -0.07446249574422836, + -0.0758715346455574, + 0.05213458463549614, + -0.014402044005692005, + 0.0527036227285862, + -0.06801341474056244, + 0.007302635349333286, + -0.038098350167274475, + 0.05793333798646927, + 0.011990413069725037, + 0.017342066392302513, + -0.0377189926803112, + -0.0066658565774559975, + 0.08091157674789429, + 0.07164441049098969, + -0.06248563155531883, + 0.047934554517269135, + 0.008352643810212612, + 0.019591115415096283, + -0.002562358044087887, + -0.021975649520754814, + 0.050048116594552994, + -0.05365201458334923, + -0.07457088679075241, + -0.09137100726366043, + 0.04695906117558479, + 0.08150771260261536, + -0.06465338915586472, + 0.001956063089892268, + -0.06497855484485626, + 0.07164441049098969, + -0.028235051780939102, + -0.007505862973630428, + -0.05939657613635063, + -0.008664258755743504, + 0.08123674243688583, + -0.0069097294472157955, + 0.05145716294646263, + -0.045333243906497955, + -0.0032380889169871807, + 0.011475570499897003, + 0.0254711601883173, + -0.07327023148536682, + 0.020851124078035355, + -0.028993766754865646, + -0.0009814186487346888, + 0.004592937882989645, + 0.0952729731798172, + 0.015865281224250793, + -0.0366080179810524, + -0.006852148100733757, + -0.024793734773993492, + 0.0027351011522114277, + -0.012918484397232533, + -0.03864029049873352, + 0.0002699113101698458, + 0.07532960176467896, + 0.07429991662502289, + 0.013772038742899895, + -0.03235379233956337, + 0.019970472902059555, + 0.03262476250529289, + -0.008779420517385006, + -0.015336889773607254, + -0.00962620135396719, + -0.0213930644094944, + -0.01076427474617958, + 0.06346112489700317, + 0.018168523907661438, + -0.051592644304037094, + 0.04305709898471832, + -0.018100781366229057, + 0.047338418662548065, + 0.07424572110176086, + -0.03056539036333561, + -0.00882006622850895, + -0.04113321378827095, + -0.013291067443788052, + 0.06714630872011185, + 0.04408678412437439, + 0.09706137329339981, + -0.07169860601425171, + -0.059559158980846405, + 0.0019103368977084756, + -0.03519897535443306, + 0.023723404854536057, + -0.016068508848547935, + -0.02339824102818966, + -0.05804172530770302, + -0.002704617101699114, + -0.029346026480197906, + 0.051023609936237335, + -0.01493043452501297, + 0.011807507835328579, + -0.04134998843073845, + 0.00969394389539957, + -0.0301047433167696, + 0.07576315104961395, + -0.002953570568934083, + 0.021474355831742287, + 0.026189228519797325, + -0.07679283618927002, + -0.08123674243688583, + -0.030863458290696144, + -0.024617604911327362, + 0.03389832004904747, + 0.028180856257677078, + -0.017477551475167274, + -0.0033109120558947325, + -0.12843967974185944, + 0.03270605206489563, + -0.04945198446512222, + -0.018046587705612183, + -0.053977180272340775, + 0.01669173873960972, + 0.03357315436005592, + -0.008210384286940098, + 0.06118497624993324, + 0.04942488670349121, + -0.04232547804713249, + -0.02209758572280407, + -0.04964166507124901, + -0.03341057524085045, + -0.02655503898859024, + 0.04999392479658127, + -0.03408799692988396, + 0.058854635804891586, + 0.042244188487529755, + -0.006791179999709129, + 0.04346355423331261, + 0.027936983853578568, + -0.0738663598895073, + 0.006933439057320356, + -0.01773497276008129, + 0.030023451894521713, + -0.0944058746099472, + 0.04340935871005058, + -0.006889406591653824, + -0.11781766265630722, + -0.0060053677298128605, + 0.05972173810005188, + 0.003932449035346508, + 0.02220597304403782, + -0.013006549328565598, + 0.020634349435567856, + -0.022287264466285706, + 0.0009500877931714058, + -0.01006652694195509, + 0.01669173873960972, + 0.015689149498939514, + -0.02624342404305935, + 0.09521877765655518, + -0.026893749833106995, + 0.0303215179592371, + -0.03438606485724449, + 0.07516701519489288, + -0.003624220844358206, + 0.007282312959432602, + -0.000758291978854686, + 0.037393830716609955, + -0.0301047433167696, + -0.035740915685892105, + 0.04847649484872818, + 0.07793090492486954, + -0.019347243010997772, + 0.05679526552557945, + 0.031026039272546768, + 0.03901964798569679, + -0.01945563033223152, + 0.016353026032447815, + -0.026162132620811462, + -0.03471123054623604, + 0.009240069426596165, + 0.007783607114106417, + -0.0460919588804245, + -0.0472029373049736, + 0.061781108379364014, + -0.05069844424724579, + 0.06313595920801163, + -0.009422973729670048, + -0.030240226536989212, + 0.06010109558701515, + -0.04999392479658127, + 0.004918101709336042, + 0.02353372611105442, + 0.028749894350767136, + -0.0015656972536817193, + -0.01166524924337864, + 0.03118862211704254, + 0.004894391633570194, + -0.006164562422782183, + -0.069259874522686, + 0.03923642262816429, + -0.06768824905157089, + 0.04744680970907211, + 0.053164269775152206, + -0.042596448212862015, + -0.05912560597062111, + 0.027069881558418274, + -0.010195237584412098, + 0.011949767358601093, + -0.04907262697815895, + 0.036201562732458115, + 0.028885379433631897, + 0.026649877429008484, + 0.12540481984615326, + -0.008190061897039413, + 0.025267932564020157, + -0.0023760662879794836, + 0.034765422344207764, + 0.0052974591962993145, + 0.11239826679229736, + 0.021162739023566246, + -0.009246843867003918, + -0.009714266285300255, + 0.023276304826140404, + -0.0011507747694849968, + -0.04891004413366318, + 0.00041047687409445643, + 0.033491864800453186, + 0.03248927742242813, + 0.0017299726605415344, + -0.05500686541199684, + -0.013236873783171177, + 0.0573372058570385, + 0.08611419796943665, + -0.00985652580857277, + 0.023628564551472664, + -0.010445885360240936, + -0.01749109849333763, + 0.007932640612125397, + -0.01475430466234684, + -0.032895732671022415, + -0.03693317994475365, + 0.07700961083173752, + -0.04050998389720917, + 0.0888780876994133, + 0.025701483711600304, + 0.027218913659453392, + -0.006076497491449118, + -0.037989962846040726, + 0.07776832580566406, + -0.007512636948376894, + -0.11391569674015045, + 0.049235209822654724, + 0.014889789745211601, + 0.0672546997666359, + 0.014781401492655277, + 0.018710462376475334, + -0.0038172868080437183, + 0.032760247588157654, + -0.062268856912851334, + 0.005731010809540749, + -0.02280210703611374, + 0.02167758159339428, + 0.035740915685892105, + 0.02730020508170128, + -0.03956158831715584, + -0.07175279408693314, + -0.09050390869379044, + 0.0009475474362261593, + -0.04750100150704384, + 0.03766480088233948, + -0.017938198521733284, + -0.007465217262506485, + 0.03343766927719116, + 0.008982648141682148, + -0.0014344463124871254, + 0.05167393758893013, + 0.027598271146416664, + -0.00741102360188961, + 0.039399005472660065, + 0.022178877145051956, + 0.015323340892791748, + -0.05549461022019386, + -0.03622866049408913, + -0.01623108983039856, + 0.02048531547188759, + 0.00010066104005090892, + -0.022747913375496864, + -0.029833773151040077, + -0.020878221839666367, + -0.0313241071999073, + -0.035957690328359604, + 0.05129458010196686, + -0.0037800283171236515, + 0.03322089463472366, + 0.09337618947029114, + 0.015269147232174873, + 0.07148183137178421, + -0.02507825382053852, + 0.00494519853964448, + 0.11456602066755295, + -0.027029234915971756, + -0.03571381792426109, + 0.028045373037457466, + -0.01039846520870924, + 0.04536034166812897, + -0.013826233334839344, + -0.0366080179810524, + 0.004603099077939987, + 0.05519654229283333, + -0.06102239340543747, + 0.02926473692059517, + -0.014727207832038403, + -0.006276337429881096, + 0.011021696031093597, + 0.016488511115312576, + 0.07831026613712311, + -0.04416807368397713, + 0.038450609892606735, + -0.02613503485918045, + 0.008664258755743504, + 0.006547307129949331, + 0.02152854949235916, + -0.04289451614022255, + -0.028045373037457466, + -0.017585938796401024, + 0.003243169514462352, + 0.04536034166812897, + 0.00464713154360652, + -0.06909729540348053, + 0.012708482332527637, + 0.0003495086857583374, + 0.05609074607491493, + -0.03663511574268341, + 0.011360407806932926, + 0.04113321378827095, + 0.033139605075120926, + 0.003932449035346508, + 0.022368555888533592, + 0.03652672469615936, + 0.06996439397335052, + 0.04387000575661659, + -0.015431729145348072, + -0.0723489299416542, + -0.02648729644715786, + -0.05378749966621399, + 0.022084036841988564, + 0.019333694130182266, + 0.08340449631214142, + -0.03628285229206085, + -0.021244030445814133, + -0.06535790860652924, + -0.03248927742242813, + 0.0723489299416542, + -0.0253627710044384, + 0.02445502206683159, + -0.017125289887189865, + 0.006184885278344154, + -0.03831512853503227, + 0.0566868782043457, + 0.06340692937374115, + 0.06210627406835556, + 0.0015394471120089293, + 0.0015419874107465148, + -0.0001527380372863263, + -0.08134512603282928, + 0.022111134603619576, + 0.010716854594647884, + 0.0333021841943264, + 0.031134428456425667, + 0.0270156878978014, + -0.012837192974984646, + -0.018466589972376823, + -0.056849461048841476, + -0.009815880097448826, + 0.05259523540735245, + -0.028126662597060204, + 0.02452276460826397, + 0.004650518763810396, + -0.022327909246087074, + 0.07180698961019516, + -0.05522364005446434, + -0.0063034347258508205, + -0.03389832004904747, + -0.029806675389409065, + 0.02747633494436741, + 0.009456845000386238, + -0.0013616231735795736, + 0.016244638711214066, + 0.004775842186063528, + 0.10177624970674515 + ] + }, + { + "id": "05094d5d-9428-44a8-bd34-bdc99c8cbec1", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "npowers", + "reviewDate": "2021-01-31T09:14:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cd8cf250-6f55-46a7-ae52-9b3196d9d265", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "jonesolivia", + "reviewDate": "2021-10-11T09:37:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e364cf7c-c5dd-425b-a898-1e16100e9bec", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "qhaynes", + "reviewDate": "2021-03-12T13:34:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d3a9f548-c9ea-4fbe-82d1-fc20f65330c1", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "michelebarrett", + "reviewDate": "2021-08-15T13:10:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f9bc2275-a109-4b98-9e2b-9ba110bfd630", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "xgonzalez", + "reviewDate": "2022-01-10T00:11:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f6faf7fe-89d7-48b3-ac9f-7543403b223d", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "martinnorman", + "reviewDate": "2022-12-26T02:21:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2e95ca47-18a0-445d-8e87-52ea56340da4", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "christina75", + "reviewDate": "2021-06-27T13:53:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "64b7b6e9-bfa8-42c5-b182-38056c5e8c50", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "fwilliams", + "reviewDate": "2022-11-16T09:14:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "032d6c9a-0d11-42c3-86ac-dc54277f872a", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "pmercer", + "reviewDate": "2022-10-06T20:55:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "52a8ec32-aab4-4336-a6d7-3313e64f865d", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "xgonzalez", + "reviewDate": "2021-10-26T02:01:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7347663c-756f-481f-89bf-bb68995671ec", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "matthew58", + "reviewDate": "2021-07-22T21:25:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "84f7dec4-6434-49d8-88b6-4fdb6c4d7a05", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "brianna48", + "reviewDate": "2022-12-09T06:13:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "97f6ef42-8096-455f-9466-d5d0a1561dc4", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "douglashernandez", + "reviewDate": "2021-06-11T09:21:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "703292ce-5b38-4c0e-9582-a37e4a9b9734", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "josephrivera", + "reviewDate": "2021-12-19T23:33:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "53d31df7-501e-4553-bfb8-a03d7065fc21", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "brooke27", + "reviewDate": "2021-09-03T00:17:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6ba960e9-8d15-4d84-8e8b-0dbbcc0f2416", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth47", + "reviewDate": "2022-12-25T14:44:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2de275f3-4b2f-4340-bb87-f5422560b263", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "patrick50", + "reviewDate": "2022-10-12T20:04:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4f88a0df-a915-4fb1-a708-114e0074aee8", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "davilawilliam", + "reviewDate": "2022-06-30T23:06:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2f989a7d-7945-4bec-afbd-6f523cbff964", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "jonathan00", + "reviewDate": "2021-03-18T02:44:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "62956c29-86ec-47a3-b550-6ba3c3f5099e", + "productId": "a3084c18-4f6e-4d86-8ebb-bb2165bec383", + "category": "Media", + "docType": "customerRating", + "userName": "shelly86", + "reviewDate": "2022-01-02T16:10:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse + (Black)", + "description": "This Luxe Mouse + (Black) is made from a matte leather with a clear edge. This mouse also comes in a pair of velcro back and sides that allows the velcro to securely hold a mouse.\n\nThe black-colored and black-colored mouse has an achilles flex-button to protect the velcro from external damage. An optional black velcro clip lets the mouse grip onto a mouse surface. The", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-09-23T01:19:10", + "price": 850.86, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-01-25T12:55:40", + "newPrice": 792.3 + }, + { + "priceDate": "2023-03-14T12:55:40", + "newPrice": 850.86 + } + ], + "descriptionVector": [ + -0.08119306713342667, + -0.031002290546894073, + -0.04248197004199028, + 0.012291131541132927, + -0.025369850918650627, + -0.012935521081089973, + -0.008460594341158867, + 0.003424810478463769, + 0.002929585287347436, + -0.007446277886629105, + 0.03658699989318848, + 0.023353150114417076, + 0.015692075714468956, + -0.07818591594696045, + 0.04801894351840019, + 0.009081117808818817, + -0.05990435183048248, + -0.027637146413326263, + -0.012696858495473862, + -0.050357840955257416, + 0.024940257892012596, + -0.09880638122558594, + -0.05350818857550621, + -0.006282797083258629, + -0.026324501261115074, + -0.02441519871354103, + 0.03009537234902382, + 0.03319798782467842, + 0.038782697170972824, + 0.05097836256027222, + 0.012153900228440762, + 0.0031831644009798765, + -0.012935521081089973, + 0.08439114689826965, + -0.02653929777443409, + -0.07140789180994034, + 0.03260133042931557, + -0.009015485644340515, + 0.10434335470199585, + 0.0697849914431572, + 0.016766058281064034, + -0.025465315207839012, + -0.019641945138573647, + -0.0585678406059742, + -0.0081026004627347, + 0.021491581574082375, + 0.00020957572269253433, + 0.04212397709488869, + 0.013902105391025543, + -0.032052408903837204, + 0.024653861299157143, + 0.009832905605435371, + -0.10816195607185364, + -0.07198068499565125, + 0.000999400275759399, + 0.00039789555012248456, + 0.03517888858914375, + 0.19646717607975006, + 0.02136031538248062, + -0.06434347480535507, + -0.0267779603600502, + -0.05589481443166733, + -0.00599640142172575, + 0.03508342429995537, + -0.02167057804763317, + -0.026372233405709267, + 0.029116855934262276, + -0.0697849914431572, + 0.08491620421409607, + 0.052601270377635956, + -0.04773255065083504, + -4.029764750157483e-05, + 0.05947475880384445, + -0.026945024728775024, + 0.04252970218658447, + 0.05704039707779884, + 0.03231493756175041, + 0.014331698417663574, + 0.04343662038445473, + -0.02921232022345066, + 0.06806661933660507, + -0.03937935456633568, + -0.06081127002835274, + 0.01538181398063898, + 0.04591871425509453, + 0.006604991387575865, + 0.04754161834716797, + -0.07570382207632065, + -0.02747008204460144, + 0.07241027802228928, + -0.024128803983330727, + 0.05651533976197243, + 0.04789961501955986, + -0.028019007295370102, + 0.015083486214280128, + -0.057660918682813644, + 0.04804281145334244, + 0.06009528040885925, + -0.007482076995074749, + -0.05618121102452278, + 0.032052408903837204, + 0.009093050844967365, + -0.06844847649335861, + 0.0023314368445426226, + 0.01837703213095665, + 0.03875882923603058, + -0.0023970690090209246, + -0.032792262732982635, + -0.03968961536884308, + -0.11379440128803253, + 0.04436740651726723, + -0.02158704586327076, + -0.006420027930289507, + -0.011461778543889523, + -0.02995217591524124, + 0.061956848949193954, + -0.09851998090744019, + -0.01829349994659424, + -0.04651537165045738, + -0.02258943021297455, + 0.052983131259679794, + 0.016837656497955322, + 0.05875876918435097, + 0.025751709938049316, + -0.017804240807890892, + -0.004281013272702694, + -0.025966506451368332, + -0.0716465562582016, + 0.035847146064043045, + -0.07283987104892731, + -0.04785188287496567, + 0.09503550827503204, + 0.01034602988511324, + 0.05651533976197243, + -0.037851911038160324, + 0.06190911680459976, + 0.015608543530106544, + -0.028448600322008133, + -0.053985513746738434, + 0.05112156271934509, + 0.00808470044285059, + -0.03462996333837509, + -0.05059650167822838, + 0.023126419633626938, + 0.030596565455198288, + -0.022231435403227806, + 0.01410496886819601, + -0.003747005248442292, + -0.08902120590209961, + 0.10892567783594131, + 0.053412724286317825, + -0.07183748483657837, + 0.03556074947118759, + -0.04136025533080101, + 0.07632435113191605, + -0.001770579256117344, + -0.04754161834716797, + -0.0076968735083937645, + -0.035847146064043045, + 0.05579935014247894, + 0.0878278911113739, + -0.003418843960389495, + 0.0019465930527076125, + 0.06983271986246109, + -0.029546448960900307, + 0.055656153708696365, + 0.010035769082605839, + -0.004812037572264671, + -0.058138247579336166, + 0.02852019853889942, + -0.016933122649788857, + -0.030548831447958946, + 0.011885404586791992, + -0.041765980422496796, + -0.004707622807472944, + 0.012434328906238079, + 0.07809045165777206, + 0.020369865000247955, + 0.03517888858914375, + -0.008353196084499359, + 0.014069168828427792, + 0.0710260346531868, + -0.04847240447998047, + -0.019248150289058685, + 0.04584711417555809, + -0.03408104181289673, + -0.017541712149977684, + 0.026181302964687347, + -0.013961770571768284, + -0.08615725487470627, + -0.03761325031518936, + 0.0050954497419297695, + 0.03997601196169853, + -0.031169354915618896, + -0.009612142108380795, + 0.045322056859731674, + 0.016431929543614388, + 0.06181365251541138, + 0.017696842551231384, + 0.002353811403736472, + 0.012851988896727562, + 0.03844856843352318, + 0.03245813399553299, + 0.03546528518199921, + 0.007315013092011213, + -0.03563234955072403, + -0.015644343569874763, + -0.04596644639968872, + 0.03424810618162155, + -0.0174462478607893, + 0.0018078703433275223, + 0.017780374735593796, + -0.024272002279758453, + 0.03169441223144531, + 0.02498799003660679, + -0.002583524212241173, + 0.040095340460538864, + -0.04680176451802254, + -0.05145568773150444, + -0.06181365251541138, + 0.005008934531360865, + 0.029880575835704803, + -0.027947407215833664, + -0.04174211621284485, + -0.006682557053864002, + -0.013520244508981705, + 0.048925865441560745, + 0.04386621341109276, + 0.08505940437316895, + -0.009785172529518604, + -0.009164649993181229, + -0.029665779322385788, + 0.031742144376039505, + 0.00818613264709711, + -0.03276839479804039, + 0.012577527202665806, + -0.0691167339682579, + -0.04243423789739609, + 0.0684962123632431, + 0.022732626646757126, + -0.05436737462878227, + -0.0454891212284565, + 0.006127666216343641, + 0.045870982110500336, + 0.0021151485852897167, + 0.03563234955072403, + 0.06252963840961456, + -0.04004760831594467, + -0.08205225318670273, + -0.023030955344438553, + 0.007446277886629105, + 0.02641996555030346, + -0.040023744106292725, + 0.0616704560816288, + 0.01392597146332264, + 0.03252973407506943, + 0.04665856808423996, + -0.0308352280408144, + 0.009009518660604954, + -0.006115733180195093, + -0.014057235792279243, + 0.007535776123404503, + -0.04011920839548111, + 0.04224330559372902, + -0.024629995226860046, + 0.005614541005343199, + -0.02310255356132984, + -0.0573267936706543, + 0.014498761855065823, + 0.005608574487268925, + -0.027016622945666313, + 0.007863937877118587, + 0.07178975641727448, + -0.014844822697341442, + -0.00773863960057497, + 0.0267779603600502, + -0.0716465562582016, + 0.08701644092798233, + 0.01686152257025242, + -0.07613341510295868, + 0.02011927030980587, + 0.0703577771782875, + 0.028305402025580406, + -0.06529812514781952, + 0.06859167665243149, + -0.0473506897687912, + 0.03577554598450661, + 0.047064293175935745, + -0.009820972569286823, + -0.025584647431969643, + 0.0012507420033216476, + 0.0014901505783200264, + 0.06644371151924133, + -0.04283996298909187, + 0.05751772224903107, + -0.029928307980298996, + 0.03773258253931999, + 0.025059588253498077, + -0.012040535919368267, + 0.00243734335526824, + -0.02324575185775757, + 0.009695674292743206, + -0.031097756698727608, + 0.007285180501639843, + 0.014415229670703411, + 0.07995202392339706, + -0.002010733587667346, + 0.035202756524086, + 0.015083486214280128, + -0.0370643250644207, + 0.043937813490629196, + 0.07369905710220337, + -0.06954632699489594, + 0.011115717701613903, + 0.10300683975219727, + -0.07398544996976852, + 0.01671832613646984, + 0.01763717643916607, + 0.045131124556064606, + 0.040763597935438156, + -0.07269667088985443, + -0.017314981669187546, + -0.11408079415559769, + 0.0554652214050293, + 0.0573267936706543, + -0.06224324554204941, + -0.0697372555732727, + -0.012004735879600048, + -0.06028620898723602, + -0.03494022786617279, + -0.07999975234270096, + -0.010065601207315922, + 0.002819203771650791, + 0.0012723708059638739, + -0.0013573943870142102, + -0.012971320189535618, + 0.03899749368429184, + 0.0116825420409441, + 0.06673010438680649, + -0.07866324484348297, + 0.015966538339853287, + 0.041145458817481995, + -0.014737424440681934, + 0.011843639425933361, + 0.02909298986196518, + -0.08052480965852737, + -0.008770856074988842, + -0.002095757285133004, + 0.013412846252322197, + 0.05556068941950798, + 0.0014297390589490533, + -0.06381841748952866, + 0.021336449310183525, + -0.03575168177485466, + -0.011300681158900261, + 0.03107389062643051, + 0.07508330047130585, + -0.02027440071105957, + -0.049737315624952316, + 0.04570391774177551, + -0.04806667938828468, + -0.015011887066066265, + 0.06420028209686279, + 0.026634762063622475, + -0.009988036006689072, + -0.034916359931230545, + -0.08625271916389465, + -0.0010963570093736053, + -0.04073973000049591, + 0.013365114107728004, + -0.03961801528930664, + -0.049689583480358124, + -0.056038014590740204, + -0.00808470044285059, + -0.07637207955121994, + -0.008538159541785717, + 0.0803338810801506, + 0.01036989688873291, + -0.04792347922921181, + 0.04694496467709541, + -0.029188454151153564, + 0.012338864617049694, + 0.019892539829015732, + -0.010375862941145897, + 0.052792198956012726, + -0.013150317594408989, + -0.07699260115623474, + -0.014462962746620178, + 0.05131249129772186, + -0.040644265711307526, + -0.00872312393039465, + -0.00460320757701993, + 0.013914038427174091, + 0.0722670778632164, + 0.06400934606790543, + -0.03589487820863724, + -0.0035709913354367018, + 0.06553678959608078, + -0.058520104736089706, + 0.016503529623150826, + 0.016396131366491318, + 0.019713543355464935, + -0.01226726546883583, + -0.023579880595207214, + -0.0009479385917074978, + 0.01276845671236515, + 0.09560830146074295, + 0.015596610493957996, + 0.02286389097571373, + -0.05742225795984268, + 0.04570391774177551, + -0.006658690515905619, + -0.012374663725495338, + -0.0030757661443203688, + 0.015119285322725773, + -0.019439080730080605, + 0.048424672335386276, + -0.004841870628297329, + 0.010859155096113682, + -0.050357840955257416, + 0.06673010438680649, + -0.03599034249782562, + -0.05536975711584091, + -0.008156299591064453, + -0.006593058351427317, + -0.011461778543889523, + -0.08835294842720032, + -0.011688508093357086, + 0.07608568668365479, + -0.000753279309719801, + 0.0457993820309639, + -0.08014295250177383, + -0.02809060551226139, + -0.01794743910431862, + 0.03711205720901489, + -0.007959403097629547, + 0.03916455805301666, + 0.017780374735593796, + 0.0036903228610754013, + 0.055035628378391266, + 0.04677790030837059, + -0.06954632699489594, + 0.02852019853889942, + 0.044128742069005966, + -0.06210004910826683, + 0.00023903566761873662, + -0.04436740651726723, + 0.011235048994421959, + 0.039594151079654694, + -0.030811361968517303, + 0.0005175998667255044, + -0.02739848382771015, + -0.0348924957215786, + -0.045131124556064606, + 0.060143012553453445, + -0.014880622737109661, + 0.032124005258083344, + 0.04112159088253975, + 0.025871042162179947, + -0.03513115644454956, + 0.005883036646991968, + 0.10252951830625534, + 0.07861550897359848, + 0.004367528483271599, + -0.056897200644016266, + -0.0716465562582016, + -0.014630026184022427, + 0.10396149754524231, + -0.033913977444171906, + 0.028496332466602325, + 0.029427116736769676, + -0.03021470457315445, + 0.009027418680489063, + 0.014904488809406757, + 0.03742231801152229, + -0.015059619210660458, + -0.014164634048938751, + -0.02131258323788643, + 0.007177782244980335, + 8.338046427525114e-06, + 0.02921232022345066, + 0.03875882923603058, + -0.024200402200222015, + 0.019976072013378143, + 0.03570394590497017, + -0.05837690830230713, + 0.09737440198659897, + 0.010119300335645676, + 0.06873486936092377, + -0.031240953132510185, + 0.04243423789739609, + 0.01566820964217186, + -0.05651533976197243, + -0.06305469572544098, + -0.05121702700853348, + -0.01782810688018799, + 0.010847222059965134, + 0.01087108813226223, + -0.03140801936388016, + 0.062386441975831985, + 0.030692029744386673, + -0.001888419035822153, + -0.02809060551226139, + 0.021718310192227364, + 0.10147940367460251, + 0.06949859112501144, + -0.05121702700853348, + 0.02902138978242874, + 0.01573980785906315, + -0.0946536436676979, + -0.005184948444366455, + -0.014009503647685051 + ] + }, + { + "id": "5069c45a-a9a1-40cf-892d-c20122491eb5", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "millerkevin", + "reviewDate": "2021-11-22T11:34:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b614f7fb-2eef-4aa5-a509-da5fc86d0eef", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eric43", + "reviewDate": "2022-08-28T15:26:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1cdb815e-2a6a-4d7b-9251-c6cf3e3495ae", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ncampbell", + "reviewDate": "2021-08-16T09:29:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5dc0ff55-2fe2-4575-8fae-c6df08b9160d", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reedkyle", + "reviewDate": "2022-12-23T16:20:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6c341835-0cc8-4c51-87e3-404ec685f46a", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lowecarlos", + "reviewDate": "2022-07-01T13:30:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "01dca7f1-00df-4f1d-9897-687422d8cb7a", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher55", + "reviewDate": "2021-05-26T22:48:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "19fb6b67-4fc9-4f03-bfb5-dcaab26e0bb8", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bruceamanda", + "reviewDate": "2022-05-16T20:06:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "991438a7-825c-4d3e-93ce-06bbeaa8a55c", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "millerchristopher", + "reviewDate": "2021-08-27T21:43:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e2c1d635-4207-495e-916c-707ef93462bd", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "randy91", + "reviewDate": "2021-02-02T13:24:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6235a157-76d7-444f-a2c6-20e05aaec24c", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryanpowell", + "reviewDate": "2021-05-24T03:54:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c2128508-e66c-4919-bce4-9b6118b8d504", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew28", + "reviewDate": "2021-01-25T12:55:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8aa50841-e28e-4ab2-aac9-c73f5a96908b", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wrightheather", + "reviewDate": "2021-06-07T22:08:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6e29c285-3628-43a5-8f19-3d4464feea14", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashleymiller", + "reviewDate": "2021-09-08T09:51:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "146d20b3-e2c6-4229-ab0c-914c21297722", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cassandra62", + "reviewDate": "2022-10-03T11:55:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d5d953af-e832-442e-9965-0b6d80b8c7f4", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ldavis", + "reviewDate": "2022-05-21T02:28:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f242b337-5486-45d8-8cf9-e3468afbcf43", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamburke", + "reviewDate": "2021-07-08T21:18:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e8c7e31d-2a31-4a05-b5a3-2a998d85dcd6", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bettyvillanueva", + "reviewDate": "2022-11-29T06:43:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "59ccce52-db55-4b59-9ee8-32d5c38cd28e", + "productId": "f87aedf3-659a-4e48-9321-db270fe1d02a", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ishaw", + "reviewDate": "2022-04-09T22:42:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2e7fe354-2887-4c91-bfab-745de29b8647", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand 3000 (Gold)", + "description": "This Premium Stand 3000 (Gold) is now priced from ¥45,000 to ¥100,000, while the Premium Stand 3000 (Silver) is now priced at ¥35,000 to ¥40,000.\n\nWith so much to see (and lose), we want to add a few extras to the set, too. Check out the images below the screen (and here if you want more info or just to see it", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-05-07T16:21:48", + "price": 386.28, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-01-01T13:18:44", + "newPrice": 369.93 + }, + { + "priceDate": "2021-08-24T13:18:44", + "newPrice": 388.8 + }, + { + "priceDate": "2022-04-16T13:18:44", + "newPrice": 373.46 + }, + { + "priceDate": "2022-12-07T13:18:44", + "newPrice": 383.5 + }, + { + "priceDate": "2025-05-04T13:18:44", + "newPrice": 386.28 + } + ], + "descriptionVector": [ + 0.025015637278556824, + -0.00803125835955143, + -0.03289202228188515, + 0.018363483250141144, + -0.025236884132027626, + -0.10702444612979889, + -0.06265708804130554, + 0.06672803312540054, + -0.007832136005163193, + 0.021977180615067482, + -0.0003217297198716551, + 0.033600013703107834, + 0.07953084260225296, + -0.049883775413036346, + 0.10767343640327454, + -0.02739035338163376, + 0.005099738482385874, + 0.005250923801213503, + 0.0026549615431576967, + -0.008016509003937244, + 0.051535751670598984, + -0.04067990928888321, + 0.04070940986275673, + -0.013665677048265934, + -0.07935384660959244, + -0.04070940986275673, + -0.002608868293464184, + -0.02081194892525673, + 0.021298691630363464, + 0.02758209966123104, + -0.004174189642071724, + 0.019469717517495155, + 0.012684815563261509, + 0.007430204655975103, + -0.053689222782850266, + 0.030532056465744972, + 0.039293430745601654, + 0.04106340557336807, + 0.04663882404565811, + 0.0218591820448637, + -0.02370290644466877, + 0.07333593815565109, + 0.033659011125564575, + -0.0062723467126488686, + -0.02281791903078556, + -0.05298123136162758, + 0.008606499992311, + 0.016814755275845528, + -0.05129975453019142, + -0.03991292044520378, + -0.0033740135841071606, + -0.003827569540590048, + -0.01460966281592846, + 0.03026656061410904, + 0.057288169860839844, + -0.06932399421930313, + 0.013142059557139874, + 0.13003411889076233, + 0.05510520190000534, + 0.009513611905276775, + 0.07970784604549408, + -0.035399485379457474, + 0.004000879358500242, + 0.02949957177042961, + 0.01901247352361679, + -0.006530467886477709, + -0.021106943488121033, + 0.023909403011202812, + -0.02361440658569336, + 0.041269902139902115, + -0.030886052176356316, + 0.015044781379401684, + 0.020310455933213234, + 0.048969291150569916, + 0.03121054731309414, + -0.0052619860507547855, + 0.08171381801366806, + 0.014565413817763329, + 0.0014768223045393825, + -0.011674455367028713, + 0.017404748126864433, + 0.07062197476625443, + -0.03250852972269058, + -0.06430906802415848, + 0.029661819338798523, + -0.016578759998083115, + -0.043246373534202576, + -0.09534261375665665, + -0.0473468117415905, + -0.012942937202751637, + -0.019395967945456505, + 0.03873293846845627, + -0.0020188770722597837, + -0.04277437925338745, + -0.015516774728894234, + 0.068851999938488, + -0.08867571502923965, + 0.04646182432770729, + -0.04259738326072693, + -0.016711506992578506, + 0.04073891043663025, + -0.07758387178182602, + -0.023894652724266052, + -0.07115297019481659, + 0.01000035461038351, + 0.07197895646095276, + 0.010870592668652534, + 0.007692013401538134, + -0.017758741974830627, + -0.20614300668239594, + 0.0161952655762434, + 0.0048379297368228436, + 0.051801249384880066, + 0.03702196106314659, + -0.031741540879011154, + 0.06678703427314758, + -0.02756734937429428, + -0.03138754516839981, + 0.07835086435079575, + -0.05121125653386116, + -0.012013700790703297, + -0.011040214449167252, + 0.017788242548704147, + -0.0438658632338047, + 0.022567173466086388, + 0.027906594797968864, + -0.04486884921789169, + 0.03513399139046669, + 0.03410150483250618, + -0.061949100345373154, + -0.06820300966501236, + 0.019145222380757332, + 0.002638367936015129, + 0.05755366384983063, + 0.030709054321050644, + 0.10307150334119797, + 0.0007909573032520711, + 0.06253909319639206, + -0.011534332297742367, + 0.021195443347096443, + -0.08767272531986237, + -0.03327551856637001, + 0.023452159017324448, + 0.052804235368967056, + -0.08507676422595978, + 0.027021607384085655, + 0.01320843305438757, + 0.08537176251411438, + -0.03982442244887352, + 0.05781916156411171, + -0.013378055766224861, + -0.11823428422212601, + -0.01890922524034977, + -0.004764181096106768, + 0.03920493274927139, + 0.043098874390125275, + -0.1220102310180664, + 0.028039343655109406, + -0.07427991926670074, + 0.060120128095149994, + 0.004273750353604555, + -0.022006681188941002, + -0.1170542985200882, + 0.03336401656270027, + 0.07068097591400146, + -0.025236884132027626, + 0.05796666070818901, + 0.012146448716521263, + -0.04714031517505646, + 0.032597027719020844, + 0.01413766946643591, + -0.11251136660575867, + 0.004314312245696783, + -0.02094469591975212, + 0.025959623977541924, + 0.031800538301467896, + 0.07734787464141846, + -0.0531582273542881, + 0.04188939183950424, + -0.05395471677184105, + 0.006294471211731434, + 0.013178933411836624, + -0.055518195033073425, + -0.015767522156238556, + -0.059235140681266785, + 0.08602075278759003, + 0.04445585608482361, + -0.019336968660354614, + 0.033600013703107834, + 0.022109929472208023, + 0.0801798403263092, + 0.007459704298526049, + 0.03516348823904991, + -0.02284741774201393, + -0.04950028285384178, + -0.0357239805161953, + 0.016593508422374725, + 0.01140895951539278, + 0.004904303699731827, + 0.022109929472208023, + -0.10165552794933319, + 0.023452159017324448, + 0.05684567615389824, + -0.006264971569180489, + -0.0363139733672142, + -0.03619597479701042, + -0.02264092117547989, + -0.006456718780100346, + -0.013709926046431065, + 0.027950843796133995, + -0.04200739040970802, + 0.03159404173493385, + -0.026107121258974075, + -0.01622476428747177, + -0.04525234177708626, + 0.06177210435271263, + 0.03501599282026291, + 0.035664983093738556, + 0.0625980943441391, + -0.0774068757891655, + 0.022242676466703415, + -0.0610051155090332, + -0.03236103057861328, + -0.027213355526328087, + -0.038349442183971405, + 0.015870770439505577, + -0.000813542865216732, + 0.031771037727594376, + 0.028024593368172646, + 0.018451983109116554, + -0.09186166524887085, + -0.06997298449277878, + -0.0912126749753952, + 0.043098874390125275, + 0.0588221475481987, + -0.004089378286153078, + -0.01718350127339363, + -0.030738554894924164, + 0.04200739040970802, + -0.012625817209482193, + -0.060120128095149994, + -0.002570150187239051, + -0.05885164439678192, + 0.004211063962429762, + -0.042095888406038284, + 0.03244952857494354, + 0.0586746484041214, + -0.02078244835138321, + 0.017581744119524956, + -0.0610051155090332, + 0.019543467089533806, + -0.03675646707415581, + -0.10985640436410904, + 0.02939632348716259, + 0.037405457347631454, + 0.068557009100914, + 0.08371978253126144, + 0.019159972667694092, + 0.020059708505868912, + 0.006655841134488583, + -0.044249359518289566, + -0.005767166148871183, + -0.011423708871006966, + 0.017345748841762543, + -0.06944198906421661, + 0.0896196961402893, + -0.004376999102532864, + -0.027862345799803734, + -0.025841625407338142, + 0.06324708461761475, + 0.017463747411966324, + 0.007610889617353678, + -0.01227919664233923, + -0.02172643505036831, + -0.01977946236729622, + 0.05914664268493652, + 0.03796594962477684, + 0.03318701684474945, + 0.013901673257350922, + -0.04070940986275673, + 0.08342479169368744, + 0.02289166860282421, + 0.03026656061410904, + -0.012640566565096378, + 0.02371765673160553, + -0.045222844928503036, + 0.03115154802799225, + 0.009852857328951359, + -0.03610747680068016, + -0.054751206189394, + -0.03581248223781586, + 0.025177884846925735, + 0.009616860188543797, + -0.027080606669187546, + 0.07439792156219482, + 0.03289202228188515, + -0.016859006136655807, + 0.0698549896478653, + -0.030178062617778778, + -0.07587289810180664, + -0.017788242548704147, + 0.008252505213022232, + -0.051712751388549805, + -0.038319945335388184, + -0.0035639170091599226, + 0.05814365670084953, + -0.012301321141421795, + -0.0141966687515378, + -0.03477999567985535, + 0.0218591820448637, + 0.08826272189617157, + -0.03218403458595276, + -0.04941178485751152, + 0.025192635133862495, + -0.005556982010602951, + -0.014845659956336021, + -0.002041001571342349, + 0.013724676333367825, + -0.06430906802415848, + 0.02547288127243519, + 0.026284119114279747, + -0.014867784455418587, + -0.03613697737455368, + -0.013112559914588928, + 0.060090627521276474, + 0.002101844409480691, + -0.013621427118778229, + -0.0010002198396250606, + 0.018658479675650597, + 0.008724498562514782, + -0.028894830495119095, + -0.033629510551691055, + -0.014646537601947784, + -0.03129904717206955, + -0.022006681188941002, + -0.0025849000085145235, + 0.03598947823047638, + -0.029706068336963654, + 0.011217212304472923, + -0.028953829780220985, + 0.06348308175802231, + 0.015384026803076267, + -0.08956070244312286, + -0.05914664268493652, + -0.026903608813881874, + -0.052774734795093536, + 0.03997192159295082, + -0.05014927312731743, + 0.030679555609822273, + 0.08838071674108505, + 0.001963565358892083, + -0.05433821305632591, + 0.023924153298139572, + 0.025782626122236252, + 0.14183394610881805, + -0.025236884132027626, + 0.038260944187641144, + -0.023216163739562035, + -0.03339351713657379, + -0.0736309289932251, + -0.0018971912795677781, + -0.033659011125564575, + 0.016667257994413376, + 0.0962866023182869, + 0.020502202212810516, + 0.05914664268493652, + 0.012559442780911922, + 0.049942776560783386, + -0.02858508564531803, + -0.01817173697054386, + 0.020457953214645386, + -0.026121871545910835, + -0.05000177398324013, + 0.007920634932816029, + 0.05755366384983063, + 0.08826272189617157, + 0.017581744119524956, + 0.0758138969540596, + -0.040207915008068085, + -0.0040709408931434155, + -0.04858579486608505, + 0.028260590508580208, + 0.05424971133470535, + 0.022065680474042892, + 0.08354278653860092, + 0.0435708686709404, + -0.012205448001623154, + -0.027154356241226196, + -0.06076911836862564, + 0.054426711052656174, + -0.04551783949136734, + 0.02166743576526642, + -0.03262652829289436, + 0.06879299879074097, + -0.015177530236542225, + -0.020664449781179428, + -0.012234947644174099, + -0.005800353363156319, + 0.001021422678604722, + -0.01094434130936861, + 0.017271999269723892, + 0.034514497965574265, + -0.006320283282548189, + 0.0123455710709095, + 0.008053382858633995, + -0.03023706190288067, + -0.012765939347445965, + 0.017375247552990913, + -0.028673583641648293, + -0.03507499024271965, + -0.01227919664233923, + -0.033718012273311615, + -0.06495805829763412, + 0.03817244619131088, + -0.019454967230558395, + 0.020502202212810516, + 0.07292294502258301, + 0.008886746130883694, + 0.07250994443893433, + -0.06253909319639206, + 0.012522567994892597, + 0.031712040305137634, + -0.04271538183093071, + 0.02184443362057209, + -0.03206603601574898, + 0.006323970854282379, + 0.0015865238383412361, + 0.03879193589091301, + 0.007559265475720167, + -0.02547288127243519, + 0.008532751351594925, + -0.06537105143070221, + -0.002407902618870139, + -0.007172083482146263, + -0.004804742988198996, + 0.0229506678879261, + 0.03495699167251587, + 0.03118104673922062, + -0.006006850395351648, + 0.01705075241625309, + -0.022508174180984497, + -0.0454588420689106, + 0.032744523137807846, + 0.040237415581941605, + -0.037552956491708755, + -0.004428623244166374, + 0.0035657607950270176, + 0.027729596942663193, + 0.006095348857343197, + 0.027051107957959175, + -0.08489976823329926, + -0.028068842366337776, + -0.047051817178726196, + 0.04156489670276642, + 0.015531525015830994, + 0.011681830510497093, + -0.012537318281829357, + -0.0008471908513456583, + 0.06513505429029465, + 0.07427991926670074, + 0.056373681873083115, + 0.10519547015428543, + 0.04852679744362831, + -0.05333522707223892, + 0.0014233543770387769, + 0.05191924795508385, + -0.02072344906628132, + 0.02654961496591568, + 0.05047376826405525, + 0.06543005257844925, + -0.07162496447563171, + 0.0022456548176705837, + -0.014115544967353344, + -0.014469539746642113, + -0.002702898345887661, + -0.02559087797999382, + 0.013717301189899445, + -0.013186308555305004, + -0.03419000282883644, + -0.029027579352259636, + 0.03814294561743736, + 0.025030387565493584, + -0.01795049011707306, + 0.019395967945456505, + -0.052538737654685974, + 0.020590702071785927, + -0.033747509121894836, + 0.019351718947291374, + -0.04569483548402786, + 0.0918026715517044, + -0.04911678656935692, + 0.025192635133862495, + 0.07746587693691254, + 0.02567937783896923, + -0.035487983375787735, + -0.05885164439678192, + 0.006906587164849043, + -0.05799615755677223, + -0.027139605954289436, + 0.03713995963335037, + 0.004826867487281561, + 0.003809132147580385, + -0.04640282690525055, + -0.02747885137796402, + 0.03227253258228302, + -0.026313617825508118, + -0.03991292044520378, + -0.009107992984354496, + -0.0033445139415562153, + -0.03772995248436928, + 0.04478035122156143, + 0.020133458077907562 + ] + }, + { + "id": "699d2741-a4b5-40ad-a2a2-5c207633ddb9", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "ijohnson", + "reviewDate": "2021-01-01T13:18:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "268892ad-b2aa-416e-ab9b-7faf2497fb53", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "perryjesse", + "reviewDate": "2022-01-21T18:07:21", + "stars": 5, + "verifiedUser": false + }, + { + "id": "aad53778-d139-4767-925e-1453aebf856e", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthew69", + "reviewDate": "2021-11-07T06:52:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7d6c565d-b444-4c4c-a4b7-309ffc677381", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "erik98", + "reviewDate": "2022-12-07T15:00:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bc42a42f-b5f6-4062-a153-38ad5c75690d", + "productId": "2e7fe354-2887-4c91-bfab-745de29b8647", + "category": "Accessory", + "docType": "customerRating", + "userName": "scott81", + "reviewDate": "2021-01-17T09:49:24", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a43c8da5-9b6a-4c9a-905b-fa8c497c84c7", + "productId": "a43c8da5-9b6a-4c9a-905b-fa8c497c84c7", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Micro (Steel)", + "description": "This Luxe Phone Micro (Steel) is a great phone to own which is quite attractive.\"\n\n\"I recently bought a 2nd Model of my LG", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-11-09T15:26:37", + "price": 832.15, + "stock": 42, + "priceHistory": [ + { + "priceDate": "2021-01-17T01:37:55", + "newPrice": 776.64 + }, + { + "priceDate": "2022-05-27T01:37:55", + "newPrice": 853.04 + }, + { + "priceDate": "2024-10-31T01:37:55", + "newPrice": 832.15 + } + ], + "descriptionVector": [ + 0.00381613802164793, + 0.07886072248220444, + -0.02557578682899475, + 0.003954070620238781, + 0.03680657595396042, + 0.029376599937677383, + -0.024925971403717995, + 0.0022574984468519688, + 0.03729700297117233, + 0.028518352657556534, + 0.012579462490975857, + -0.0017946576699614525, + 0.02296426147222519, + -0.042593616992235184, + 0.07351506501436234, + 0.022412531077861786, + -0.017876077443361282, + -0.052034344524145126, + 0.0014674506383016706, + -0.022228620946407318, + 0.04220127686858177, + -0.11672171205282211, + -0.015056120231747627, + 0.010985572822391987, + 0.011261438950896263, + -0.02631142921745777, + -0.005679761990904808, + 0.035923805087804794, + 0.05855702981352806, + -0.06694334000349045, + -0.007252194918692112, + 0.01891823671758175, + -0.02227766439318657, + 0.07483921945095062, + -0.02699802629649639, + -0.030725274235010147, + 0.027488455176353455, + -0.035408858209848404, + 0.04551165923476219, + 0.06978781521320343, + 0.011040746234357357, + -0.008282092399895191, + -0.06292182952165604, + -0.04887108877301216, + 0.062186192721128464, + -0.04507027566432953, + -0.025943608954548836, + 0.013413188979029655, + -0.008447611704468727, + -0.0072644553147256374, + -0.023037826642394066, + 0.052671901881694794, + -0.06915026158094406, + -0.020696034654974937, + 0.0025103751104325056, + 0.0016674530925229192, + 0.003060573246330023, + 0.09102331846952438, + -0.00168124632909894, + -0.007607754785567522, + -0.04695842042565346, + -0.03180421516299248, + 0.006038386840373278, + -0.028346702456474304, + -0.018893714994192123, + 0.023172693327069283, + -0.044579848647117615, + 0.020487602800130844, + 0.06037161126732826, + 0.10161655396223068, + -0.018550414592027664, + -0.008888996206223965, + -0.027022548019886017, + -0.00834339577704668, + 0.015436201356351376, + 0.0176063422113657, + -0.004582430701702833, + 0.02712063305079937, + 0.023601816967129707, + -0.04278978705406189, + 0.05541829392313957, + 0.045609746128320694, + -0.004729559179395437, + -0.032270122319459915, + 0.027929838746786118, + 0.05012167617678642, + 0.02927851490676403, + -0.1128963828086853, + -0.05139678716659546, + 0.06130342185497284, + 0.005253703333437443, + 0.05154391750693321, + -0.015387158840894699, + 0.0012498234864324331, + 0.04026408866047859, + -0.0238102488219738, + 0.03035745397210121, + 0.05532020702958107, + -0.017692167311906815, + -0.022706788033246994, + 0.0040674819611012936, + -0.008576348423957825, + 0.05527116358280182, + 0.032270122319459915, + 0.032736025750637054, + 0.08906161040067673, + 0.007025372236967087, + 0.048061881214380264, + -0.015853064134716988, + -0.07037632912397385, + 0.03781194984912872, + 0.02945016324520111, + -0.05615393444895744, + -0.0010467559332028031, + 0.022633222863078117, + 0.02443554438650608, + 0.016257667914032936, + -0.04705650731921196, + 0.027758188545703888, + -0.04068095237016678, + 0.03719891607761383, + 0.05311328545212746, + 0.0324908122420311, + -0.02552674524486065, + 0.030283890664577484, + -0.028052445501089096, + 0.021946625784039497, + 0.02631142921745777, + 0.06017543748021126, + -0.043206650763750076, + -0.10279357433319092, + 0.07420165836811066, + 0.04276526719331741, + 0.04080355912446976, + -0.0300141554325819, + 0.08597192168235779, + 0.054780736565589905, + -0.026630206033587456, + 0.019506748765707016, + 0.015350377187132835, + 0.06733568012714386, + 0.0004034531593788415, + 0.05110253393650055, + -0.058311816304922104, + -0.006988590117543936, + -0.03410922363400459, + -0.015705937519669533, + -0.06248044595122337, + 0.008674434386193752, + 0.018758846446871758, + 0.013364145532250404, + -0.07091579586267471, + 0.03940584138035774, + 0.0010459896875545382, + 0.03126474469900131, + 0.014774125069379807, + -0.0343053936958313, + -0.03447704389691353, + -0.06409885734319687, + 0.026335950940847397, + -0.007074414752423763, + -0.063167043030262, + 0.025453180074691772, + -0.04722815752029419, + -0.007558711804449558, + 0.012309727258980274, + 0.04470245540142059, + -0.005471330601722002, + -0.08052817732095718, + 0.011984818615019321, + -0.0015816283412277699, + 0.00820852816104889, + -0.01248137652873993, + -0.060077354311943054, + -0.028297659009695053, + -0.03361879661679268, + 0.0616467222571373, + -0.01721400022506714, + 0.04028860852122307, + 0.020548906177282333, + 0.07371123135089874, + 0.013143453747034073, + -0.07209282368421555, + -0.02613977901637554, + 0.03447704389691353, + 0.0448986254632473, + -0.019519008696079254, + 0.0024444740265607834, + 0.03155900165438652, + 0.03121570311486721, + -0.018660761415958405, + 0.041343025863170624, + 0.027439411729574203, + -0.034207310527563095, + 0.05963596701622009, + -0.025330573320388794, + 0.10406868904829025, + 0.07989061623811722, + -0.023552775382995605, + 0.04129398614168167, + 0.037517692893743515, + -0.0029502271208912134, + 0.052034344524145126, + -0.00017672627291176468, + 0.016257667914032936, + -0.06566822528839111, + 0.010390929877758026, + 0.09426014125347137, + 0.005462134722620249, + -0.033864010125398636, + 0.014455347321927547, + 0.014663778245449066, + -0.08906161040067673, + 0.03658588230609894, + 0.0970555767416954, + 0.059734053909778595, + 0.041833456605672836, + -0.04119589924812317, + -0.018648501485586166, + -0.1340828388929367, + -0.0031632566824555397, + -0.010151846334338188, + 0.05777234584093094, + -0.015767240896821022, + -0.06552109867334366, + -0.060126397758722305, + 0.07003302872180939, + 0.056595318019390106, + 0.04276526719331741, + 0.03982270136475563, + -0.0034452523104846478, + -0.021039335057139397, + -0.002007686998695135, + 0.02057342790067196, + -0.041343025863170624, + 0.03641423210501671, + -0.018979540094733238, + -0.01738565042614937, + 0.0345015674829483, + 0.03857211396098137, + 0.009385554119944572, + -0.03146091476082802, + -0.003681270405650139, + -0.05066114664077759, + 0.060420650988817215, + -0.017802514135837555, + 0.08621713519096375, + 0.03771386668086052, + -0.07160239666700363, + 0.07209282368421555, + -0.010752620175480843, + -0.0582137294113636, + -0.03143639490008354, + 0.05360371246933937, + 0.011610868386924267, + 0.006700464058667421, + 0.06915026158094406, + -0.0018912105588242412, + 0.04369707778096199, + -0.055124036967754364, + -0.011531173251569271, + -0.07263229787349701, + 0.007491277996450663, + 0.059734053909778595, + -0.00936716329306364, + 0.022486094385385513, + 0.06552109867334366, + -0.09563333541154861, + -0.010642274282872677, + 0.020181085914373398, + -0.05075923353433609, + -0.04340282082557678, + 0.08763936907052994, + 0.02062247134745121, + -0.03352070972323418, + -0.021161941811442375, + -0.1371234953403473, + 0.05885128676891327, + -0.04021504521369934, + -0.04151467606425285, + 0.0777817815542221, + 0.06071490794420242, + -0.03994530811905861, + -0.045830439776182175, + 0.043672557920217514, + -0.06179384887218475, + -0.0031601914670318365, + -0.0026099930983036757, + 0.009293599054217339, + -0.0012237695045769215, + -0.008306614123284817, + -0.0066882031969726086, + 0.012567201629281044, + -0.04749789088964462, + 0.009802416898310184, + -0.002205390715971589, + 0.07474113255739212, + -0.018084509298205376, + 0.00510044489055872, + 0.005716544110327959, + 0.04095068573951721, + 0.043844208121299744, + -0.029082342982292175, + -0.08209754526615143, + -0.009177122265100479, + 0.07047441601753235, + 0.0864623486995697, + 0.0688069611787796, + -0.04063190892338753, + -0.016846179962158203, + 0.05664436146616936, + -0.05610489100217819, + -0.06836557388305664, + -0.0044261072762310505, + 0.04082807898521423, + -0.019494488835334778, + -0.07886072248220444, + -0.01248137652873993, + 0.03185325860977173, + 0.03236820548772812, + 0.03327549621462822, + -0.02501179650425911, + -0.0324908122420311, + 0.0882769301533699, + 0.06400077044963837, + 0.005318071693181992, + 0.01133500225841999, + -0.009759504348039627, + -0.011537304148077965, + 0.021039335057139397, + -0.09421110153198242, + 0.019727440550923347, + -0.0005157150444574654, + 0.03548242151737213, + -0.014443086460232735, + -0.006614639423787594, + 0.029842505231499672, + 0.011243047192692757, + 0.004334151744842529, + -0.024141287431120872, + 0.05507499352097511, + 0.059734053909778595, + -0.07915497571229935, + 0.0010735761607065797, + -0.003518816316500306, + -0.04722815752029419, + -0.050268806517124176, + -0.00478473212569952, + 0.058360856026411057, + -0.017397910356521606, + 0.0015846934402361512, + -0.016220886260271072, + 0.055124036967754364, + -0.022915219888091087, + 0.05787042900919914, + 0.07601623982191086, + 0.00626827497035265, + -0.03173065185546875, + -0.021100638434290886, + -0.002616123529151082, + 0.03749317303299904, + 0.020990291610360146, + 0.06915026158094406, + 0.023050086572766304, + 0.0352126844227314, + 0.04627182334661484, + -0.009722722694277763, + 0.06311800330877304, + -0.10102804005146027, + 0.03925871104001999, + 0.0881788432598114, + 0.003905027871951461, + -0.05291711539030075, + 0.018869193270802498, + -0.034722257405519485, + 0.020720556378364563, + 0.06542301177978516, + -0.03788551315665245, + 0.03482034429907799, + 0.016269927844405174, + -0.022829394787549973, + 0.038645677268505096, + 0.02724323980510235, + 0.01920023187994957, + 0.03457513079047203, + -0.010243801400065422, + -0.06915026158094406, + 0.03943036124110222, + -0.08239179849624634, + 0.013952658511698246, + 0.009330380707979202, + -0.07125909626483917, + 0.020144304260611534, + 0.072239950299263, + 0.11554469168186188, + -0.04502123221755028, + 0.0013394798152148724, + 0.009091297164559364, + 0.011230787262320518, + -0.043770644813776016, + 0.0037824211176484823, + 0.07184761017560959, + -0.02182401902973652, + -0.0014559562550857663, + 0.007975575514137745, + 0.0009877514094114304, + 0.0544864796102047, + 0.03771386668086052, + -0.06272566318511963, + -0.09185704588890076, + 0.01793738082051277, + -0.028690000995993614, + -0.023344343528151512, + -0.05316232889890671, + 0.050955403596162796, + 0.011898994445800781, + 0.030406497418880463, + -0.007859098725020885, + 0.035703111439943314, + -0.034035660326480865, + 0.08145998418331146, + -0.025036318227648735, + 0.019322838634252548, + 0.007503538858145475, + -0.01953127048909664, + -0.01738565042614937, + -0.06483449786901474, + 0.00820852816104889, + 0.023381125181913376, + -0.0669923797249794, + 0.041269462555646896, + -0.015926629304885864, + -0.008839953690767288, + 0.011537304148077965, + -0.007699709851294756, + -0.05007263645529747, + -0.09872303158044815, + -0.008043008856475353, + 0.007675188593566418, + 0.06400077044963837, + 0.03722343593835831, + -0.013891355134546757, + -0.002367844572290778, + 0.09043480455875397, + -0.14291054010391235, + 0.003638358088210225, + -0.009483639150857925, + 0.012530419044196606, + -0.010550319217145443, + -0.04659060016274452, + 0.013474492356181145, + -0.009017732925713062, + -0.045266445726156235, + -0.055516377091407776, + -0.006522683892399073, + 0.029327556490898132, + 0.017410172149538994, + 0.06463833153247833, + 0.00845987256616354, + -0.058998413383960724, + -0.0326869860291481, + 0.07900784909725189, + 0.014259176328778267, + -0.010587100870907307, + -0.050563063472509384, + -0.056987661868333817, + -0.028959736227989197, + 0.05019524320960045, + -0.014283697120845318, + 0.014786384999752045, + -0.013535795733332634, + -0.03322645649313927, + -0.026237864047288895, + 0.011353394016623497, + -0.06645291298627853, + -0.06395173072814941, + 0.03940584138035774, + -0.04359899461269379, + -0.04921438544988632, + 0.05223051458597183, + -0.016833920031785965, + 0.012947282753884792, + 0.03776290640234947, + 0.05880224332213402, + 0.0741526186466217, + -0.07616337388753891, + 0.028910694643855095, + -0.037860993295907974, + 0.014921252615749836, + 0.02455815114080906, + -0.017790252342820168, + 0.049091778695583344, + -0.0899934247136116, + -0.042250316590070724, + -0.05880224332213402, + 0.002628384158015251, + 0.004576300270855427, + 0.04666416347026825, + -0.08317648619413376, + -0.056987661868333817, + 0.07508443295955658, + 0.02101481333374977, + -0.011616998352110386, + -0.01766764558851719, + 0.026360470801591873, + 0.043549951165914536, + -0.03538433462381363, + 0.006994720548391342, + 0.04519288241863251, + -0.01384231261909008, + 0.04889560863375664, + -0.04038669541478157 + ] + }, + { + "id": "051b9621-24e6-496b-8914-23b249111f6d", + "productId": "a43c8da5-9b6a-4c9a-905b-fa8c497c84c7", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacksonmichael", + "reviewDate": "2021-01-17T01:37:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f36805b4-601f-468a-bff7-dde8f5b80969", + "productId": "a43c8da5-9b6a-4c9a-905b-fa8c497c84c7", + "category": "Electronics", + "docType": "customerRating", + "userName": "carla32", + "reviewDate": "2022-05-28T01:09:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a8fad81c-dc05-4772-aa07-625617d061b6", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand + (Silver)", + "description": "This Amazing Stand + (Silver) is rated 4.8 out of 5 by 27.\n\nRated 5 out of 5 by Darryl from Great stand! This is my second outdoor lamp. I use it regularly so I can be confident that my next fire is up", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-01-28T04:04:13", + "price": 275.21, + "stock": 42, + "priceHistory": [ + { + "priceDate": "2021-01-10T05:46:16", + "newPrice": 251.26 + }, + { + "priceDate": "2022-01-02T05:46:16", + "newPrice": 249.39 + }, + { + "priceDate": "2022-12-25T05:46:16", + "newPrice": 279.48 + }, + { + "priceDate": "2024-06-30T05:46:16", + "newPrice": 275.21 + } + ], + "descriptionVector": [ + 0.033072054386138916, + -0.028798982501029968, + -0.019077112898230553, + 0.03395700827240944, + 0.013855875469744205, + -0.04462704434990883, + -0.10902652889490128, + 0.045663706958293915, + -0.04505687952041626, + 0.11135269701480865, + 0.034639690071344376, + -0.000217683264054358, + -0.05415927991271019, + -0.024450058117508888, + -0.031049298122525215, + 0.01774968020617962, + 0.021529704332351685, + 0.013173195533454418, + 0.019620729610323906, + 0.03289506211876869, + 0.05223766341805458, + -0.09441211819648743, + -0.033881157636642456, + 0.06533500552177429, + -0.020657392218708992, + -0.019506949931383133, + 0.005461439955979586, + 0.019646013155579567, + 0.0072187092155218124, + 0.044146642088890076, + -0.012888746336102486, + 0.030543610453605652, + 0.007383057847619057, + 0.049228813499212265, + -0.0427812822163105, + 0.024247782304883003, + 0.040176983922719955, + 0.03671301528811455, + -0.08783816546201706, + 0.08439947664737701, + -0.041744619607925415, + 0.0584576353430748, + 0.06290769577026367, + 0.009051831439137459, + 0.03795195370912552, + -0.018672563135623932, + -0.024690261110663414, + -0.0670037791132927, + 0.03810365870594978, + 0.030619462952017784, + 0.021972183138132095, + 0.016308467835187912, + -0.047635894268751144, + 0.0029424773529171944, + 0.07008848339319229, + -0.037041712552309036, + -0.004797723609954119, + 0.15908972918987274, + 0.03984828665852547, + 0.011428569443523884, + -0.05104929581284523, + 0.00327117508277297, + 0.025474078953266144, + 0.0029598602559417486, + -0.0220986045897007, + 0.04498102888464928, + 0.04242729768157005, + -0.016510741785168648, + -0.03603033348917961, + 0.008811629377305508, + -0.006788873579353094, + 0.0497850738465786, + -0.025600500404834747, + 0.059924133121967316, + 0.07554992288351059, + -0.020037923008203506, + 0.06781288236379623, + 0.024538554251194, + -0.0006210491992533207, + 0.08359037339687347, + 0.08439947664737701, + -0.05289505794644356, + 0.013893802650272846, + 0.06553728133440018, + 0.03926674276590347, + 0.0035335011780261993, + -0.0036725655663758516, + -0.13653600215911865, + -0.04500631242990494, + 0.061896320432424545, + 0.005919720511883497, + -0.006457014940679073, + -0.011769909411668777, + 0.0013606192078441381, + -0.01704171672463417, + 0.025120096281170845, + -0.016814155504107475, + 0.03767382353544235, + 0.023173194378614426, + -0.009576483629643917, + -0.02058153785765171, + -0.0001604969729669392, + -0.042983558028936386, + -0.02012641914188862, + -0.012212387286126614, + 0.009178253822028637, + 0.04561313986778259, + -0.008388115093111992, + 0.0241845715790987, + -0.207736998796463, + 0.013109984807670116, + -0.03152970224618912, + 0.0032221865840256214, + -0.0241213608533144, + -0.01446270290762186, + 0.05527179688215256, + 0.03372944891452789, + -0.00762958126142621, + -0.01893804967403412, + -0.05881161987781525, + 0.006807836703956127, + 0.020467758178710938, + 0.0010998733341693878, + -0.0006961124017834663, + 0.07145383954048157, + 0.007433626800775528, + 0.0529961958527565, + -0.031049298122525215, + 0.07999998331069946, + -0.026295822113752365, + -0.02529708668589592, + -0.0005258374148979783, + 0.02814158797264099, + -0.014032866805791855, + -0.007844499312341213, + 0.09633373469114304, + -0.04002527520060539, + 0.004819847177714109, + -0.01825536973774433, + -0.042098600417375565, + 0.004216181114315987, + -0.010069530457258224, + 0.012300882488489151, + 0.034639690071344376, + -0.003558785654604435, + 0.02333754301071167, + 0.009740832261741161, + -0.020025281235575676, + 0.014816684648394585, + 0.020265482366085052, + 0.050417184829711914, + -0.03911503776907921, + -0.06781288236379623, + -0.07099872082471848, + 0.006883690133690834, + -0.006567634642124176, + -0.09638430178165436, + 0.008754739537835121, + -0.07590390741825104, + 0.040530964732170105, + -0.05825536325573921, + 0.013236407190561295, + -0.06280656158924103, + -0.0005412451573647559, + -0.023501891642808914, + 0.08096079528331757, + 0.013185838237404823, + 0.09041717648506165, + -0.10538556426763535, + 0.012067001312971115, + 0.025853345170617104, + 0.0011875787749886513, + -0.01934260129928589, + -0.0444500558078289, + 0.00946902483701706, + -0.03046775609254837, + 0.03759796917438507, + -0.014677620492875576, + 0.021061941981315613, + 0.007206066977232695, + -0.014096078462898731, + -0.0010627368465065956, + -0.06022754684090614, + 0.003938052337616682, + 0.04745890200138092, + -0.02963336929678917, + -0.00027832642081193626, + -0.0106637142598629, + 0.028343863785266876, + 0.042882420122623444, + -0.009955749846994877, + -0.03587862849235535, + 0.00850821565836668, + -0.03079645335674286, + -0.08207330852746964, + 0.01524652075022459, + 0.02763589844107628, + 0.01265486516058445, + -0.03848292678594589, + 0.0011291084811091423, + -0.021441210061311722, + 0.0720100998878479, + 0.03792666643857956, + -0.049077108502388, + 0.026700373739004135, + -0.03317319229245186, + 0.057597965002059937, + 0.033375468105077744, + 0.0537041611969471, + -0.03281921148300171, + 0.0373198427259922, + 0.003558785654604435, + -0.009778759442269802, + 0.05183311179280281, + -0.019987354055047035, + 0.12409605830907822, + 0.014171931892633438, + 0.03436155989766121, + -0.01405815128237009, + -0.041694048792123795, + 0.026599235832691193, + -0.06513272970914841, + -0.02213653177022934, + -0.0007897438481450081, + -0.02455119602382183, + -0.046826791018247604, + -0.0444500558078289, + -0.00022657233057543635, + 0.039013899862766266, + 0.012351451441645622, + -0.01343868300318718, + -0.05178254470229149, + -0.029886214062571526, + 0.07453854382038116, + -0.014209858141839504, + 0.02606826275587082, + -0.052439939230680466, + -0.03426042199134827, + -0.00951959379017353, + -0.004965232685208321, + -0.036485455930233, + -0.019987354055047035, + -0.0648798868060112, + -0.0008462387486360967, + -0.011687735095620155, + 0.0081099858507514, + 0.06659922748804092, + -0.02567635476589203, + -0.014576482586562634, + -0.04556256905198097, + -0.029506947845220566, + -0.06503159552812576, + -0.012560048140585423, + 0.015903916209936142, + 0.08965864032506943, + 0.0007680150447413325, + 0.08060681074857712, + 0.051630835980176926, + -0.030240196734666824, + 0.008957014419138432, + -0.042983558028936386, + 0.018293296918272972, + 0.0036314784083515406, + 0.07504422962665558, + -0.03352717310190201, + 0.013413398526608944, + 0.02414664439857006, + 0.01936788484454155, + -0.01362831611186266, + 0.018723132088780403, + -0.07180782407522202, + 0.021150438115000725, + 0.0608343742787838, + -0.026194684207439423, + -0.033046770840883255, + 0.019469022750854492, + 0.013160553760826588, + 0.04184575751423836, + 0.009841970168054104, + -0.017522120848298073, + 0.09992412477731705, + -0.028798982501029968, + 0.0838937908411026, + 0.02647281438112259, + 0.03600504994392395, + -0.0639190748333931, + 0.04073324054479599, + -0.023046771064400673, + 0.0022139691282063723, + 0.010278127156198025, + -0.029557516798377037, + 0.04867255687713623, + 0.036637160927057266, + -0.0031194684561342, + -0.00970922689884901, + -0.0022629578597843647, + 0.01695322059094906, + -0.0034386846236884594, + 0.014134004712104797, + -0.04624525085091591, + 0.05155498534440994, + 0.07099872082471848, + -0.08101136237382889, + -0.0003456857812125236, + 0.019203536212444305, + 0.05512009188532829, + -0.028773698955774307, + 0.0034576477482914925, + -0.0784323513507843, + 0.0006202590302564204, + 0.06857141852378845, + -0.018369149416685104, + -0.03724398836493492, + -0.02576484903693199, + 0.04260428994894028, + -0.01932995766401291, + -0.0005242571933194995, + 0.05496838316321373, + 0.02773703634738922, + 0.04310997948050499, + -0.0074399481527507305, + -0.030644746497273445, + 0.012983562424778938, + 0.06882426142692566, + 0.060379255563020706, + -0.015625787898898125, + 0.019115040078759193, + -0.07307204604148865, + -0.01028444804251194, + -0.00929203350096941, + 0.02135271392762661, + -0.011877368204295635, + 0.035018958151340485, + 0.002993046073243022, + -0.007035396993160248, + -0.0370669960975647, + -0.040202267467975616, + -0.0007609037565998733, + 0.017673827707767487, + 0.05165611952543259, + 0.008116306737065315, + -0.010151704773306847, + 0.03082173876464367, + -0.001347186858765781, + 0.03729455545544624, + -0.05810365453362465, + 0.06917823851108551, + -0.036131471395492554, + 0.09067001938819885, + 0.031403280794620514, + 0.001366940326988697, + -0.05304676666855812, + 0.031504418700933456, + 0.0026596076786518097, + 0.07812893390655518, + 0.031504418700933456, + -0.02169405296444893, + -0.0889001116156578, + 0.05089758709073067, + -0.004513273481279612, + 0.07352716475725174, + -0.023830588907003403, + -0.004898861050605774, + -0.006384322419762611, + 0.01901390217244625, + 0.028571423143148422, + 0.0027085961773991585, + 0.015158024616539478, + -0.05183311179280281, + -0.035018958151340485, + -0.11044245958328247, + -0.04225030913949013, + 0.0120606804266572, + -0.030366618186235428, + 0.006431730929762125, + -0.01812894642353058, + 0.04303412511944771, + 0.04222502186894417, + 0.049254100769758224, + 0.02407079190015793, + -0.017648542299866676, + 0.03251579776406288, + 0.013931728899478912, + -0.039292026311159134, + 0.023249046877026558, + 0.008103664964437485, + 0.020783813670277596, + 0.07635902613401413, + 0.004146649036556482, + 0.010448796674609184, + -0.042882420122623444, + -0.03724398836493492, + 0.03198482468724251, + -0.0011101451236754656, + 0.10801514983177185, + -0.09279391169548035, + 0.025499362498521805, + 0.06548671424388885, + -0.009247785434126854, + -0.046498093754053116, + 0.021137796342372894, + 0.006795194465667009, + 0.05501895397901535, + 0.01619468629360199, + -0.010809100233018398, + -0.026700373739004135, + 0.0050632101483643055, + 0.09056888520717621, + -0.040101129561662674, + -0.09800250828266144, + -0.05008848384022713, + -0.08146648108959198, + 0.0036409602034837008, + 0.046902645379304886, + 0.06305940449237823, + 0.09972184896469116, + 0.07489252835512161, + -0.032212384045124054, + 0.10568898171186447, + -0.038154225796461105, + 0.03228823468089104, + 0.03863463178277016, + 0.012996205128729343, + 0.0013005686923861504, + -0.08804044127464294, + 0.07458911091089249, + -0.036940574645996094, + -0.026422245427966118, + -0.059873566031455994, + -0.059974703937768936, + 0.010979770682752132, + -0.08859669417142868, + 0.010568898171186447, + 0.05335018038749695, + -0.05506952106952667, + 0.0005929992767050862, + 0.0069405799731612206, + -0.006106193643063307, + -0.038154225796461105, + -0.01327433343976736, + -0.05264221504330635, + -0.003934891894459724, + 0.07286977022886276, + -0.012895067222416401, + -0.11994940787553787, + 0.003840075107291341, + -0.018862195312976837, + 0.08268013596534729, + 0.015688998624682426, + -0.009336281567811966, + 0.041264213621616364, + 0.05054360628128052, + -0.0411125086247921, + 0.009140326641499996, + -0.044070787727832794, + -0.000492651597596705, + -0.00946902483701706, + 0.11742096394300461, + -0.02654866687953472, + -0.02960808575153351, + 0.005075852386653423, + 0.06199745833873749, + -0.013931728899478912, + 0.012345130555331707, + 0.00029551194165833294, + -0.03987357020378113, + -0.08465231955051422, + -0.026219969615340233, + 0.005486724432557821, + 0.016814155504107475, + -0.01819215901196003, + -0.05188368260860443, + -0.07099872082471848, + 0.026371676474809647, + -0.05805308744311333, + -0.03254108130931854, + -0.02811630256474018, + -0.013160553760826588, + -0.002087546978145838, + 0.00732616800814867, + -0.06063209846615791, + 0.027812888845801353, + -0.013109984807670116, + 8.59769934322685e-05, + 0.07797722518444061, + -0.04713020473718643, + -0.0356510691344738, + -0.05213652551174164, + -0.007458911277353764, + -0.00544563727453351, + -0.026599235832691193, + 0.07372944056987762, + -0.030948160216212273, + -0.04869784042239189, + -0.04786345362663269, + -0.006959543563425541, + -0.042882420122623444, + 0.0331479087471962, + -0.08819214254617691, + 0.017597973346710205, + 0.011795193888247013, + -0.004977874923497438, + -0.02970922365784645, + 0.08940579742193222, + 0.053249042481184006, + -0.024753471836447716, + -0.05577748641371727, + -0.020278124138712883, + -0.003919089213013649, + 0.027433622628450394, + 0.034209854900836945, + 0.010537292808294296 + ] + }, + { + "id": "d9ef073a-d44e-4280-8d4a-f14b6bb62d76", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "hudsonjoel", + "reviewDate": "2022-03-25T12:13:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3ac6f571-7cba-4326-9cd5-970825c95d8a", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "briancarlson", + "reviewDate": "2022-06-18T03:19:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "632b8643-3c20-4ee8-aace-89488a9bfacd", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "edward16", + "reviewDate": "2021-07-29T03:12:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1d22ecc8-9dab-476b-a6d3-bd134f4d2089", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "kevin35", + "reviewDate": "2022-07-03T21:14:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5b59fe80-296f-49f0-bae0-d47989523f81", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "cruzjoshua", + "reviewDate": "2021-10-25T13:45:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ece7bf80-2110-42e4-a820-89a2c620d372", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "kingelizabeth", + "reviewDate": "2022-04-22T08:33:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "735b96b8-82f4-4f81-b2a5-311553499cff", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessica85", + "reviewDate": "2021-11-07T12:31:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c7342c20-f7e4-4def-b3e8-976c9980e4b8", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "ijacobson", + "reviewDate": "2022-09-01T23:22:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "004c349e-3756-4eb0-8c2c-bc6c8b09596c", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "ifox", + "reviewDate": "2021-08-03T20:59:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "20f677ce-cd77-4070-aa81-2a9aec026add", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "nfranklin", + "reviewDate": "2022-12-26T23:19:35", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bdc12e73-b3bf-4068-99e2-06ae56620c7c", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "walkercaitlin", + "reviewDate": "2021-01-10T05:46:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "55b7f588-2e71-4ede-afd3-839ab9f9d4a5", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "urodriguez", + "reviewDate": "2022-08-14T00:47:35", + "stars": 3, + "verifiedUser": true + }, + { + "id": "97ecf290-e44b-4952-87d6-dd4ae7737b9f", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "richardsonevelyn", + "reviewDate": "2022-06-18T09:44:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "05a47117-575e-4bc3-80c2-0b5cff8ad1a2", + "productId": "a8fad81c-dc05-4772-aa07-625617d061b6", + "category": "Accessory", + "docType": "customerRating", + "userName": "miranda41", + "reviewDate": "2021-08-13T16:13:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard 3000 (Gold)", + "description": "This Awesome Keyboard 3000 (Gold) is pretty cool if you ask me. It uses a new version of Cherry MX Alarm Clock with a 3.5-inch touchpad", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-07-14T09:55:41", + "price": 928.31, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-01-09T00:42:25", + "newPrice": 952.31 + }, + { + "priceDate": "2021-07-05T00:42:25", + "newPrice": 917.18 + }, + { + "priceDate": "2021-12-29T00:42:25", + "newPrice": 981.67 + }, + { + "priceDate": "2022-06-24T00:42:25", + "newPrice": 854.72 + }, + { + "priceDate": "2022-12-18T00:42:25", + "newPrice": 992.75 + }, + { + "priceDate": "2023-04-18T00:42:25", + "newPrice": 928.31 + } + ], + "descriptionVector": [ + -0.03886246681213379, + -0.01870352029800415, + -0.036692094057798386, + -0.003456640290096402, + -0.03641122207045555, + -0.061791837215423584, + -0.03485365957021713, + 0.04435223713517189, + 0.013188215903937817, + 0.09386231005191803, + 0.10765057057142258, + 0.012811592780053616, + 0.08426159620285034, + -0.0771121233701706, + 0.04973987489938736, + 0.01650761254131794, + -0.020541954785585403, + -0.008164437487721443, + -0.0528549998998642, + 0.012224314734339714, + -0.020056812092661858, + -0.011241262778639793, + -0.06005553528666496, + -0.020503655076026917, + -0.010213526897132397, + -0.06572404503822327, + 0.010168842040002346, + 0.013928696513175964, + -0.023414509370923042, + 0.0100156394764781, + -0.006811145693063736, + -0.007723979651927948, + -0.0048961094580590725, + 0.004634387791156769, + -0.02266126126050949, + -0.040317896753549576, + -0.02156330831348896, + 0.025929590687155724, + 0.04994414374232292, + -0.07067760080099106, + 0.03600268065929413, + 0.030998053029179573, + 0.008611279539763927, + -0.03973061963915825, + -0.011043375357985497, + 0.07603970170021057, + 0.019201429560780525, + 0.03245348110795021, + 0.008285723626613617, + 0.033832307904958725, + 0.09820305556058884, + 0.007430340629070997, + -0.02849573828279972, + 0.004867383744567633, + 0.03309182450175285, + 0.03298969194293022, + -0.017439596354961395, + 0.07108614593744278, + 0.09483259171247482, + -0.03899013623595238, + 0.02486993744969368, + -0.07726532965898514, + -0.026350898668169975, + -0.025367846712470055, + -0.058268167078495026, + -0.061893969774246216, + -0.04172225669026375, + 0.02364431321620941, + 0.03176406770944595, + 0.05377421900629997, + -0.08967476338148117, + 0.002757652197033167, + -0.008732564747333527, + 0.049561139196157455, + 0.022252721711993217, + -0.016265040263533592, + 0.07144361734390259, + 0.021601608023047447, + 0.05801283195614815, + -0.008260189555585384, + 0.02420605719089508, + 0.007749513257294893, + -0.048029109835624695, + -0.06654112786054611, + 0.052216652780771255, + -0.0009631036082282662, + -0.013660592027008533, + -0.08987903594970703, + -0.0495356023311615, + 0.04371389374136925, + -0.04894832521677017, + 0.07721426337957382, + -0.028572339564561844, + -0.034930258989334106, + 0.015690529718995094, + -0.03367910534143448, + -0.010187992826104164, + 0.03293862193822861, + 0.0013349398504942656, + -0.012734990566968918, + 0.042411670088768005, + -0.048795122653245926, + -0.08635536581277847, + -0.023682614788413048, + -0.036053746938705444, + 0.0598512664437294, + 0.028470205143094063, + 0.0179502721875906, + -0.006868596654385328, + -0.10632281005382538, + 0.003008202649652958, + 0.013226516544818878, + -0.01860138587653637, + 0.023503877222537994, + -0.023491110652685165, + 0.07772493362426758, + -0.027346717193722725, + -0.005167406052350998, + -0.06424307823181152, + -0.05821710079908371, + 0.019635504111647606, + 0.07338418811559677, + -0.011413616128265858, + 0.04790144041180611, + -0.016571447253227234, + -0.028878746554255486, + 0.004232230130583048, + -0.0299256332218647, + -0.007194152567535639, + -0.024908237159252167, + -0.12378793954849243, + 0.08038045465946198, + 0.04611407220363617, + 0.10775270313024521, + -0.0075707766227424145, + 0.09360697120428085, + 0.009645398706197739, + 0.1286904364824295, + 0.003973700106143951, + 0.029644761234521866, + 0.0077303629368543625, + -0.039245475083589554, + 0.038581594824790955, + 0.00841977633535862, + -0.09667102992534637, + 0.03927100822329521, + -0.09248348325490952, + 0.07190322875976562, + 0.008585745468735695, + 0.08298490196466446, + 0.0056174397468566895, + -0.04118604585528374, + -0.045603394508361816, + -0.0884491428732872, + 0.011388082057237625, + 0.0490504615008831, + -0.06025980785489082, + -0.024946538731455803, + 0.002561361063271761, + 0.033168427646160126, + -0.0678178146481514, + -0.005467428360134363, + -0.0292617529630661, + 0.008330407552421093, + -0.005690849386155605, + -0.02849573828279972, + 0.02419329062104225, + 0.013111614622175694, + -0.010328428819775581, + 0.02905748225748539, + 0.0186141524463892, + 0.0003147840907331556, + 0.028419137001037598, + -0.030563978478312492, + 0.0016437394078820944, + -0.004695030394941568, + 0.040445566177368164, + -0.018129009753465652, + -0.0009990105172619224, + -0.07460980862379074, + 0.040113624185323715, + 0.08456800132989883, + -0.0234400425106287, + -0.00024875521194189787, + 0.1343078762292862, + 0.013698892667889595, + 0.005042928736656904, + -0.003948166500777006, + 0.011873224750161171, + -0.06373240798711777, + 0.05367208272218704, + 0.025380613282322884, + -0.031100187450647354, + 0.006791995372623205, + -0.04001149162650108, + 0.09656888991594315, + 0.024703966453671455, + -0.019112061709165573, + 0.004675880074501038, + 0.05068462714552879, + -0.035798411816358566, + 0.04922919720411301, + 0.055612653493881226, + 0.024167757481336594, + -0.0045897033996880054, + 0.012613705359399319, + -0.023350674659013748, + -0.0018352430779486895, + 0.0147968465462327, + 0.04409690201282501, + -0.0038747566286474466, + 0.0037917718291282654, + -0.026031725108623505, + -0.0541827566921711, + 0.10433117300271988, + -0.014401072636246681, + -0.008464460261166096, + 0.019661039113998413, + 0.001467396505177021, + -0.07057546824216843, + 0.07185216248035431, + 0.04200312867760658, + -0.0038492227904498577, + 0.021320736035704613, + 0.002724139019846916, + 0.0030449077021330595, + 0.058932047337293625, + 0.005186556372791529, + 0.026759440079331398, + 0.019954677671194077, + -0.08558934926986694, + -0.05908524990081787, + -0.031202323734760284, + 0.0541827566921711, + -0.01935463212430477, + -0.02531677857041359, + -0.0387348011136055, + -0.058166034519672394, + -0.004966327454894781, + 0.06408987939357758, + -0.03704956918954849, + 0.0013030226109549403, + -0.06791995465755463, + -0.05770642310380936, + 0.06347706913948059, + -0.023376209661364555, + 0.08242315798997879, + -0.028368070721626282, + -0.0924324169754982, + 0.019954677671194077, + -0.029440490528941154, + 0.008898534812033176, + -0.06643898785114288, + 0.04611407220363617, + 0.008094219490885735, + 0.07369059324264526, + 0.0068494463339447975, + 0.008968752808868885, + 0.005263158120214939, + -0.01111997663974762, + -0.038785867393016815, + 0.04136478155851364, + -0.024691199883818626, + 0.019112061709165573, + -0.03564520925283432, + 0.0721585676074028, + 0.02783185988664627, + -0.052650731056928635, + -0.018652452155947685, + -0.010047556832432747, + 0.014081900008022785, + -0.03595161437988281, + 0.04179885610938072, + -0.0638345405459404, + -0.0043024481274187565, + -0.005891927983611822, + -0.0708308070898056, + 0.06597938388586044, + 0.002227825578302145, + -0.01276052463799715, + 0.053978487849235535, + 0.11020395159721375, + 0.08257636427879333, + 0.006511123385280371, + 0.030768249183893204, + 0.029900098219513893, + 0.048795122653245926, + 0.005952571053057909, + -0.004525869153439999, + -0.010041173547506332, + -0.01903546042740345, + 0.027014777064323425, + 0.0019357824930921197, + 0.01618843898177147, + -0.01221154723316431, + 0.008011234924197197, + 0.07476301491260529, + 0.017771536484360695, + -0.018116243183612823, + -0.011343398131430149, + 0.0598512664437294, + -0.02023554965853691, + -0.14635983109474182, + -0.0834445133805275, + -0.004417350050061941, + 0.05908524990081787, + -0.03255561739206314, + 0.019112061709165573, + -0.061893969774246216, + -0.04764610156416893, + 0.0339089073240757, + -0.01177747268229723, + -0.024231592193245888, + 0.012147713452577591, + 0.07593756914138794, + -0.07603970170021057, + -0.01848648302257061, + 0.046267274767160416, + -0.01090293936431408, + -0.005575946997851133, + 0.0177077017724514, + -0.06960518658161163, + -0.045067187398672104, + 0.05469343438744545, + -0.01166895404458046, + 0.0028454246930778027, + 0.01618843898177147, + -0.010736970230937004, + 0.01232645008713007, + -0.10325875133275986, + -0.030972519889473915, + 0.002116115065291524, + -0.02859787456691265, + 0.0034502570051699877, + -0.021103698760271072, + -0.05648080259561539, + 0.01436277199536562, + 0.07389486581087112, + 0.03521113097667694, + 0.046829018741846085, + 0.03876033425331116, + 0.009192174300551414, + -0.0244358628988266, + -0.03630908578634262, + -0.02166544273495674, + -0.05479557067155838, + 0.012454118579626083, + -0.07067760080099106, + 0.02640196681022644, + -0.007417573593556881, + 0.0017442788230255246, + -0.03132999315857887, + 0.05305926874279976, + -0.05423382669687271, + -0.022201653569936752, + 0.01414573471993208, + -0.0017315119039267302, + -0.058268167078495026, + -0.03148319572210312, + 0.08926621824502945, + -0.021410105749964714, + -0.024780569598078728, + 0.051986850798130035, + 0.049688804894685745, + 0.002877341816201806, + 0.02333790808916092, + 0.0007759886211715639, + 0.03081931546330452, + -0.00767291197553277, + -0.012492419220507145, + 0.05214005336165428, + -0.07736746221780777, + -0.07787813991308212, + 0.10096070915460587, + -0.02485717087984085, + 0.03071718104183674, + -0.0122179314494133, + -0.012364750728011131, + -0.044505443423986435, + 0.03265774995088577, + -0.019609970971941948, + 0.023708147928118706, + 0.027474386617541313, + -0.006041939370334148, + 0.024129455909132957, + -0.07460980862379074, + 0.0022980435751378536, + -0.03865819796919823, + 0.01083272136747837, + 0.029312821105122566, + -0.04866745322942734, + 0.0427180752158165, + 0.00577383441850543, + 0.05459129810333252, + -0.0014211164088919759, + -0.030308639630675316, + 0.03899013623595238, + 0.05668507143855095, + 0.05106763169169426, + 0.007040950004011393, + -0.023708147928118706, + 0.05898311734199524, + 0.01039864681661129, + 0.0299256332218647, + -0.07220963388681412, + -0.0664900541305542, + -0.0034151480067521334, + -0.002920430153608322, + -0.028444672003388405, + 0.008113370276987553, + 0.0017362994840368629, + -0.008489994332194328, + 0.05147617310285568, + -0.006645175628364086, + -0.0001267714105779305, + -0.00996457226574421, + 0.0997350886464119, + 0.07164788991212845, + 0.07690785825252533, + -0.04675241932272911, + 0.008770866319537163, + 0.05127190425992012, + -0.03865819796919823, + 0.040445566177368164, + 0.0031071463599801064, + -0.022201653569936752, + 0.013124381192028522, + -0.04085410758852959, + 0.05688934400677681, + -0.08870447427034378, + 0.07517155259847641, + -0.06480482220649719, + -0.042845744639635086, + 0.06975838541984558, + -0.05048035457730293, + -0.02058025635778904, + -0.017541732639074326, + 0.011643419973552227, + -0.03334716334939003, + 0.03533880040049553, + -0.0006479205912910402, + -0.041875459253787994, + -0.05729788541793823, + 0.02562318556010723, + -0.014158501289784908, + 0.023823050782084465, + -0.012122179381549358, + 0.026146627962589264, + 0.053978487849235535, + -0.04624174162745476, + -0.02829146943986416, + 0.003163001500070095, + -0.026555169373750687, + 0.047160957008600235, + 0.0402412936091423, + 0.03962848335504532, + 0.005384443327784538, + 0.09406658262014389, + -0.04762056842446327, + 0.04062430188059807, + 0.05377421900629997, + 0.06643898785114288, + -0.000456416979432106, + -0.019967444241046906, + -0.014158501289784908, + -0.0002960326964966953, + 0.008917685598134995, + 0.013277584686875343, + 0.007475024554878473, + 0.023031502962112427, + -0.0025821072049438953, + -0.023184705525636673, + 0.014350004494190216, + 0.020439820364117622, + 0.009038970805704594, + -0.1496281623840332, + 0.06495802849531174, + 0.03385784104466438, + 0.020733458921313286, + -0.02045258693397045, + -0.007864415645599365, + -0.06511123478412628, + -0.018218377605080605, + 0.0012439755955711007, + 0.015652230009436607, + 0.016686348244547844, + -0.009243241511285305, + -0.012090262025594711, + 0.05678720772266388, + 0.05755322054028511, + 0.023950720205903053, + 0.007692062295973301, + 0.047033291310071945, + -0.030768249183893204, + -0.03454725444316864, + 0.04700775444507599, + -0.04930580034852028, + 0.06521336734294891, + -0.034291915595531464, + 0.0488717257976532, + 0.022533593699336052, + 0.016469310969114304, + 0.041747789829969406, + 0.00863681361079216, + 0.03201940655708313, + 0.0016979988431558013, + -0.018767355009913445, + 0.001196099678054452, + 0.016469310969114304, + -0.03204493969678879, + 0.015116019174456596, + -0.10177779197692871 + ] + }, + { + "id": "81c88eeb-7cc1-4946-b37f-e85af770b615", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wvance", + "reviewDate": "2022-04-04T09:37:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f2d85386-6984-4bf9-9ecd-198a979dae62", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hernandezanthony", + "reviewDate": "2021-03-23T05:58:49", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f3761b28-b99d-409b-9718-a2ba993cbaa3", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "freemantroy", + "reviewDate": "2022-03-08T16:42:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "7baedaff-e321-4b33-b797-f12e43e18b8b", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jennifer05", + "reviewDate": "2022-01-05T08:45:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7dd08a49-c002-432b-9a7b-9c68a99f0927", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pbrown", + "reviewDate": "2022-01-09T00:26:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e4e2dad4-f18d-4f45-9f65-3a9409b7ead5", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "douglascharles", + "reviewDate": "2021-05-24T22:23:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7469100c-bf94-4168-bc56-08043bcef232", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vkeller", + "reviewDate": "2021-08-26T01:16:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "971e5304-b1bb-4ca5-ab82-8cd7243a6bc2", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vpierce", + "reviewDate": "2021-04-15T19:10:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "21859b52-0f00-439f-ba64-dbb173cea71b", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "connor63", + "reviewDate": "2022-02-17T22:14:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e1de7311-1d67-48d3-9aec-c2f6db68fcf2", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "william76", + "reviewDate": "2021-07-18T19:07:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ce299066-ebc3-42c5-b9da-a25fbc2a1292", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jbaker", + "reviewDate": "2022-09-18T22:10:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ce556c52-d344-4dd5-8f74-7e4ce81426f6", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michele04", + "reviewDate": "2021-10-08T04:52:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "77cb10ec-1310-4039-82c0-351ee07c88ed", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tracywilliams", + "reviewDate": "2022-09-26T07:08:04", + "stars": 5, + "verifiedUser": true + }, + { + "id": "32548b1d-da2f-47f3-9e19-c9fbaf78041d", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "imclaughlin", + "reviewDate": "2021-04-06T19:31:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6fe7eea6-895e-4bb9-a075-ad4750e18b98", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perkinstaylor", + "reviewDate": "2021-01-09T00:42:25", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7cd374a8-33fd-4e65-942c-3ca6e587a34a", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alexa58", + "reviewDate": "2022-12-21T18:16:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "640b9e16-e86b-41a5-acdc-1b2adce2ae0f", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinacooper", + "reviewDate": "2021-03-12T08:30:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6c695b5a-bf93-4f6f-a14c-6bda4b1a0b8d", + "productId": "4a227bf2-95f3-42e9-a929-bf393e827d30", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garrett35", + "reviewDate": "2022-06-08T10:54:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Mini (Gold)", + "description": "This Amazing Keyboard Mini (Gold) is rated 4.5 out of 5 by 30.\n\nRated 5 out of 5 by Anonymous from The Quickest To Use To Make Keyboard Notepad This is by far my favorite keyboard. It works best", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-09-26T01:48:17", + "price": 773.28, + "stock": 96, + "priceHistory": [ + { + "priceDate": "2021-02-04T06:58:03", + "newPrice": 718.61 + }, + { + "priceDate": "2022-10-14T06:58:03", + "newPrice": 741.16 + }, + { + "priceDate": "2024-06-12T06:58:03", + "newPrice": 773.28 + } + ], + "descriptionVector": [ + -0.039256706833839417, + -0.0015940541634336114, + -0.025265008211135864, + -0.014391460455954075, + -0.01718980073928833, + -0.014821205288171768, + -0.03739780932664871, + 0.046532388776540756, + -0.03815735876560211, + 0.0856291875243187, + 0.02210688218474388, + -0.025864653289318085, + -0.02340611256659031, + -0.07827355712652206, + -0.007750401273369789, + 0.02878292091190815, + -0.01564071886241436, + -0.0166701078414917, + 0.00239982595667243, + 0.05548707768321037, + 0.03531904146075249, + -0.07971270382404327, + -0.05572693422436714, + 0.022586597129702568, + 0.030102139338850975, + -0.03152129799127579, + -0.010283897630870342, + 0.025185056030750275, + 0.008679850026965141, + 0.026484284549951553, + 0.030561866238713264, + -0.025085115805268288, + -0.05968458577990532, + -0.013981703668832779, + 0.010313879698514938, + 0.024665364995598793, + 0.003412974765524268, + -0.01499110460281372, + -0.08818767219781876, + 0.07691436260938644, + 0.008804775774478912, + 0.03883695602416992, + 0.04121554270386696, + -0.0013591934693977237, + -0.005104470998048782, + 0.028123313561081886, + 0.007490555290132761, + 0.007215718273073435, + 0.008070211857557297, + 0.03364003822207451, + 0.045932743698358536, + 0.02892283909022808, + -0.008534935303032398, + -0.0036728207487612963, + 0.019788257777690887, + -0.02134733274579048, + -0.04097568616271019, + 0.06600083410739899, + 0.11033453047275543, + -0.1227271780371666, + 0.01767950877547264, + -0.033120349049568176, + -0.0005849653971381485, + -0.0742759257555008, + -0.0062263053841888905, + -0.028063347563147545, + -0.0659208819270134, + 0.024365542456507683, + 0.03849715739488602, + 0.03613855689764023, + -0.033739980310201645, + 0.010293891653418541, + -0.041855163872241974, + 0.018529005348682404, + 0.004000126384198666, + -0.01443143654614687, + 0.050929781049489975, + 0.025944605469703674, + 0.03152129799127579, + 0.06400202214717865, + 0.0234860647469759, + -0.04473345726728439, + -0.0050495038740336895, + -0.05368814244866371, + 0.036618273705244064, + 0.00034510772093199193, + 0.03354009985923767, + -0.10353856533765793, + -0.08371032774448395, + 0.05632657930254936, + -0.06931886821985245, + 0.01843905821442604, + -0.04501328989863396, + -0.01965833641588688, + 0.05256880819797516, + 0.005811551585793495, + -0.011413227766752243, + 0.04793155938386917, + -0.00921952910721302, + -0.0076454635709524155, + 0.004812144674360752, + 0.0018126744544133544, + -0.030941640958189964, + -0.011882948689162731, + -0.012362664565443993, + 0.04075581580400467, + 0.0931447297334671, + -0.025484878569841385, + 0.0119329197332263, + -0.11992883682250977, + -0.0100340461358428, + 0.021867025643587112, + -0.020387902855873108, + -0.0008657363359816372, + -0.015170997940003872, + 0.01998814009130001, + -0.04385397955775261, + 0.0005184423644095659, + -0.04125551879405975, + -0.04141542688012123, + 0.03168120235204697, + 0.03985635191202164, + -0.034499529749155045, + 0.06344235688447952, + -0.03959650546312332, + 0.02886287309229374, + -0.0050495038740336895, + 0.06544116884469986, + 0.0111733702942729, + -0.07491555064916611, + -0.01684000715613365, + 0.03280053660273552, + 0.06164342164993286, + 0.04577283933758736, + -0.039196740835905075, + 0.0185689814388752, + -0.011383245699107647, + 0.07923298329114914, + -0.01008901372551918, + 0.03757770359516144, + 0.004982043989002705, + -0.03168120235204697, + 0.005054500885307789, + -0.006701023783534765, + -0.09186548739671707, + 0.0181692186743021, + -0.025564830750226974, + 0.03755771368741989, + -0.010853559710085392, + 0.057605817914009094, + -0.0023298675660043955, + -0.06939882040023804, + -0.08818767219781876, + -0.07847343385219574, + 0.0066610476933419704, + 0.06484152376651764, + -0.033739980310201645, + -0.040555935353040695, + -0.06923891603946686, + 0.0499703511595726, + -0.04725196212530136, + 0.0045023285783827305, + 0.03340018168091774, + -0.016200387850403786, + -0.0386170856654644, + 0.021087488159537315, + 0.013082237914204597, + 0.08498957008123398, + -0.07075801491737366, + 0.0351991131901741, + 0.02446548268198967, + 0.02634436823427677, + -0.009229523129761219, + -0.06488150358200073, + 0.009189547039568424, + 0.012042853981256485, + 0.017699498683214188, + -0.06304259598255157, + -0.0026509270537644625, + -0.06452171504497528, + 0.06620071828365326, + 0.06644057482481003, + -0.012752433307468891, + 0.00035978652886115015, + 0.09714236110448837, + -0.04067586362361908, + 0.0022436687722802162, + 0.015091045759618282, + 0.003120648441836238, + 0.01580062508583069, + 0.0011655583512037992, + -0.010623696260154247, + -0.08291080594062805, + -0.0159105584025383, + 0.025624794885516167, + 0.08339051902294159, + -0.01265249215066433, + -0.032140929251909256, + -0.03981637582182884, + 0.011513168923556805, + 0.009579315781593323, + 0.08323061466217041, + 0.06156346946954727, + -0.013721858151257038, + 0.03715795278549194, + -0.024565424770116806, + 0.005536714568734169, + -0.01965833641588688, + 0.0036728207487612963, + 0.009659268893301487, + 0.026384344324469566, + 0.01016896590590477, + -0.02356601692736149, + -0.03515913709998131, + 0.04893096536397934, + 0.04059591144323349, + -0.024885233491659164, + 0.00043755286606028676, + -0.04913084954023361, + -0.06704021990299225, + 0.0011899189557880163, + 0.02688404731452465, + -0.009134579449892044, + 0.019708305597305298, + -0.011952907778322697, + -0.041775211691856384, + -0.01783941499888897, + -0.031161509454250336, + 0.03473938629031181, + 0.02136732079088688, + -0.048651132732629776, + -0.04733191430568695, + -0.04733191430568695, + 0.042135000228881836, + -0.05053001642227173, + -0.017849408090114594, + 0.005106969736516476, + -0.0242256261408329, + -0.034579481929540634, + 0.12016869336366653, + 0.03280053660273552, + 0.004934572149068117, + -0.06172337755560875, + -0.04701210558414459, + 0.040635887533426285, + -0.0476917028427124, + 0.017259757965803146, + 0.024185650050640106, + -0.07615481317043304, + -0.0015740660019218922, + -0.07483559846878052, + -0.014381466433405876, + 0.04337426275014877, + 0.0885874330997467, + 0.010059031657874584, + 0.049250777810811996, + 0.09138577431440353, + 0.007315658964216709, + 0.02606453374028206, + -0.06376216560602188, + 0.03657829761505127, + -0.0038152362685650587, + -0.04473345726728439, + 0.06412195414304733, + -0.016939949244260788, + 0.03787752613425255, + 0.06540119647979736, + -0.0749955028295517, + -0.006276275962591171, + 0.02590462937951088, + 0.002179956529289484, + -0.05780570209026337, + 0.06831946223974228, + -0.036618273705244064, + -0.06943880021572113, + 0.003705301322042942, + -0.04561293497681618, + 0.03829727694392204, + 0.007700430694967508, + -0.036618273705244064, + 0.01973828859627247, + 0.07531531155109406, + 0.09122586995363235, + 0.044493600726127625, + 0.001379181630909443, + -0.02688404731452465, + -0.006161344237625599, + -0.03258066624403, + -0.027663584798574448, + 0.006576098036020994, + -0.02778351493179798, + 0.0054867444559931755, + 0.01935851387679577, + 0.06252290308475494, + -0.01249258778989315, + 0.008559920825064182, + 0.0010044040391221642, + 0.050729900598526, + -0.02674413099884987, + -0.0030282032676041126, + 0.042894549667835236, + -0.016790037974715233, + -0.09802183508872986, + -0.06867925077676773, + 0.0022786478511989117, + 0.014721265062689781, + -0.03250071406364441, + -0.003325526835396886, + -0.06464164704084396, + 0.012102819047868252, + 0.07679443061351776, + -0.0055816881358623505, + -0.0545276440680027, + 0.02028796263039112, + 0.1068166196346283, + -0.06684034317731857, + -0.03915676474571228, + 0.039716433733701706, + 0.023985767737030983, + -0.023526040837168694, + 0.03210095316171646, + -0.05628660321235657, + -0.04433369264006615, + 0.06188328191637993, + -0.00391017971560359, + 0.02778351493179798, + 0.04341423884034157, + -0.033879898488521576, + 0.053728118538856506, + -0.03967645764350891, + -0.047531794756650925, + -0.09634283185005188, + -0.04413381218910217, + 0.020727701485157013, + 0.019568389281630516, + -0.06763986498117447, + -0.023426100611686707, + 0.06807960569858551, + 0.0726768746972084, + 0.08730819821357727, + -0.04281459376215935, + -0.05580688640475273, + 0.03627847507596016, + -0.036778178066015244, + -0.012322688475251198, + -0.07307663559913635, + -0.05672634020447731, + -0.015880577266216278, + 0.0514894500374794, + -0.023905815556645393, + 0.000940691854339093, + -0.016140423715114594, + 0.026944013312458992, + -0.06124366074800491, + -0.021787071600556374, + -0.00012570666149258614, + 0.00660608010366559, + -0.02984229288995266, + -0.009024645201861858, + 0.10249917954206467, + 0.020727701485157013, + -0.02302633784711361, + 0.05624662712216377, + 0.00795527920126915, + -0.008340051397681236, + -0.012022865936160088, + -0.023685945197939873, + 0.024565424770116806, + -0.03272058442234993, + -0.041015662252902985, + -0.0030007194727659225, + -0.07035825401544571, + -0.034719400107860565, + 0.05664638802409172, + -0.009729227051138878, + 0.07263690233230591, + -0.01846904121339321, + 0.015950536355376244, + -0.024505458772182465, + 0.03943660110235214, + -0.0008526190649718046, + 0.03429964929819107, + -0.0064711603336036205, + -0.041775211691856384, + 0.03543897345662117, + -0.011233334429562092, + -0.015610736794769764, + 0.04597272351384163, + 0.042294904589653015, + 0.007060810457915068, + -0.07555516809225082, + -0.020467855036258698, + -0.02017802745103836, + 0.00742059713229537, + 0.023905815556645393, + -0.058205462992191315, + 0.049810443073511124, + 0.11025457829236984, + 0.06200321018695831, + 0.040795791894197464, + 0.02188701368868351, + 0.018149230629205704, + 0.0454130545258522, + -0.026404332369565964, + 0.012482593767344952, + -0.11649087816476822, + -0.02816328965127468, + 0.09858150780200958, + -0.04913084954023361, + -0.046772249042987823, + -0.021407296881079674, + 0.006101379636675119, + 0.016530191525816917, + -0.0771941989660263, + 0.030561866238713264, + 0.038137372583150864, + 0.08890724927186966, + 0.059124916791915894, + 0.0817514955997467, + -0.01992817595601082, + 0.04685220122337341, + 0.012342676520347595, + -0.01030388567596674, + -0.035858724266290665, + -0.030941640958189964, + 0.053888026624917984, + -0.030481914058327675, + -0.030701782554388046, + 0.010853559710085392, + -0.071917325258255, + 0.06368221342563629, + -0.02446548268198967, + -0.03591868653893471, + 0.030162103474140167, + -0.030921652913093567, + -0.0246054008603096, + -0.05212906748056412, + -0.014521383680403233, + -0.0024073217064142227, + 0.030541878193616867, + 0.020377907902002335, + -0.08075208216905594, + -0.03953653946518898, + 0.027223845943808556, + -0.09074615687131882, + 0.0552871935069561, + -0.020787665620446205, + 0.07735410332679749, + 0.07783381640911102, + -0.11297296732664108, + 0.0007895315065979958, + -0.01068366039544344, + -0.028423134237527847, + 0.01753959245979786, + 0.06124366074800491, + 0.011093417182564735, + 0.020827641710639, + 0.10305885225534439, + -0.04513321816921234, + -0.03090166486799717, + -0.023446088656783104, + 0.03693808242678642, + -0.058365367352962494, + 0.01008901372551918, + 0.0014316504821181297, + -0.11049443483352661, + -0.03803743049502373, + -0.08730819821357727, + -0.01586058922111988, + 0.009904122911393642, + -0.031221473589539528, + -0.04633250832557678, + 0.025504866614937782, + -0.0016902470961213112, + 0.0212074164301157, + -0.09090606123209, + -0.002127487678080797, + 0.006211314350366592, + 0.0022986361291259527, + 0.01783941499888897, + -0.017059877514839172, + -0.018558988347649574, + 0.017819426953792572, + 0.033360205590724945, + 0.10329870879650116, + -0.016300328075885773, + -0.006621071137487888, + 0.021907001733779907, + 0.09786193072795868, + 0.047891583293676376, + 0.016140423715114594, + 0.015420849435031414, + 0.036778178066015244, + -0.07823357731103897, + 0.039276693016290665, + 0.0367581881582737, + -0.09554331004619598, + 0.035019222646951675, + -0.035858724266290665, + 0.005881510209292173, + 0.026484284549951553, + -0.023426100611686707, + -0.004759675823152065, + 0.04817141592502594, + -0.01359193492680788, + -0.01610044576227665, + -0.017739474773406982, + 0.00870483461767435, + 0.015850594267249107, + 0.0004000751068815589, + 0.02650427259504795, + -0.06596086174249649 + ] + }, + { + "id": "ae52511f-4844-41d3-9a27-b133a6704c56", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hberry", + "reviewDate": "2022-04-06T02:54:43", + "stars": 1, + "verifiedUser": true + }, + { + "id": "53a9b775-2622-4b40-be09-c7f25ea70098", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyrowland", + "reviewDate": "2021-03-21T05:17:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eaf3f058-c0cc-4385-9183-48dce571d4e1", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bethtaylor", + "reviewDate": "2021-08-31T19:12:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b3d30f6c-ac7f-431c-b295-c807a850e3f7", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "webbnancy", + "reviewDate": "2021-07-16T10:25:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5f260cc9-9f1e-4dc3-bcc7-17d6dfd0d474", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnny11", + "reviewDate": "2021-06-23T15:34:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7d36f819-9325-4b23-8c6a-ef069e63b7f4", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dicksonelizabeth", + "reviewDate": "2022-09-24T09:36:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e4dfc0b9-4e6e-4148-81e4-8252e168c6c6", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rbuchanan", + "reviewDate": "2021-08-08T03:33:40", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2b51dcbf-84cb-433f-899f-7402d0ed51e5", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamessanders", + "reviewDate": "2022-10-14T11:50:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e370e9b5-1958-4f35-ba7c-c28f3f45a8ce", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "murraytamara", + "reviewDate": "2022-04-10T15:53:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5da248a6-c156-4957-9949-2e491244af73", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thowe", + "reviewDate": "2022-03-03T17:23:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "247c28a5-1b15-4eae-9c8a-6c9ae0ff45a4", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "farleysharon", + "reviewDate": "2022-07-07T18:23:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "abb10540-b9ed-4cd9-bf32-d2791b60c047", + "productId": "8dde5031-3842-4ee3-9e9a-06ea6d3fbb8f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyhughes", + "reviewDate": "2021-02-04T06:58:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "productId": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "category": "Other", + "docType": "product", + "name": "Premium Filter Pro (Red)", + "description": "This Premium Filter Pro (Red) is a brilliant look that can provide the perfect balance between black and white when viewing the final image. The look can be quite pleasing during the day with the filter providing plenty of coverage for a great look when in the rain and wind. The filter is used in conjunction with Premium Auto Filter Pro (Purple)", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-08-22T00:17:22", + "price": 442.37, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2021-02-01T17:27:01", + "newPrice": 422.76 + }, + { + "priceDate": "2022-01-25T17:27:01", + "newPrice": 466.97 + }, + { + "priceDate": "2022-02-23T17:27:01", + "newPrice": 442.37 + } + ], + "descriptionVector": [ + 0.007353518158197403, + -0.02344599924981594, + -0.030932733789086342, + 0.06607509404420853, + 0.03991148620843887, + -0.004712512716650963, + -0.04715843126177788, + 0.00866569485515356, + 0.0006993834977038205, + 0.019942421466112137, + 0.0021397804375737906, + 0.003290432970970869, + 0.01513332687318325, + -0.017797645181417465, + 0.0604800209403038, + 0.01058400422334671, + -0.07268259674310684, + 0.01402763556689024, + -0.006294451653957367, + -0.02199394628405571, + 0.01966266892850399, + -0.03639458492398262, + -0.08211428672075272, + -0.004759138450026512, + -0.009305131621658802, + 0.023912256583571434, + -0.006544231437146664, + 0.00867235567420721, + 0.007939668372273445, + 0.044254325330257416, + 0.07678564637899399, + 0.03239810839295387, + 0.05054211616516113, + 0.10854431986808777, + -0.09314456582069397, + 0.02946735918521881, + 0.05685655027627945, + -0.012968569062650204, + 0.0528067871928215, + 0.10833117365837097, + 0.027495764195919037, + -0.04108378663659096, + -0.08754949271678925, + -0.024671586230397224, + -0.011010294780135155, + -0.03961841017007828, + -0.014453926123678684, + 0.0046692173928022385, + -0.03956512361764908, + -0.07220302522182465, + 0.048170872032642365, + -0.013168392702937126, + -0.014080921187996864, + -0.03133238106966019, + -0.03916547819972038, + -0.004292882513254881, + 0.04326852783560753, + 0.183091938495636, + 0.02423197403550148, + -0.05659011751413345, + 0.036767590790987015, + -0.014707036316394806, + -0.027122758328914642, + -0.02036871202290058, + -0.013747882097959518, + -0.03325068950653076, + -0.03711395338177681, + -0.10838446021080017, + 0.006121270824223757, + 0.026363428682088852, + 0.009844656102359295, + -0.017557857558131218, + 0.05813542380928993, + 0.02794869802892208, + 0.01432071067392826, + 0.09943235665559769, + 0.1371590942144394, + -0.0377533882856369, + 0.016278984025120735, + 0.013201696798205376, + 0.017184851691126823, + 0.01368127390742302, + -0.07167015969753265, + 0.0529400035738945, + -0.024391833692789078, + -0.030852803960442543, + 0.08499175310134888, + -0.07891710102558136, + 0.025457561016082764, + -0.010031158104538918, + -0.01025096420198679, + 0.023152925074100494, + 0.04462733119726181, + -0.08904151618480682, + 0.06634151935577393, + 0.0055650947615504265, + -0.007280249614268541, + 0.021474404260516167, + -0.09740747511386871, + 0.039005618542432785, + -0.010790488682687283, + -0.0832332968711853, + 0.005954751279205084, + 0.01819729246199131, + 0.09927249699831009, + 0.007759826723486185, + -0.038312897086143494, + -0.06964527815580368, + 0.005661676172167063, + -0.09756733477115631, + 0.0028524857480078936, + -0.03269118443131447, + -0.03181196004152298, + 0.0004279561107978225, + -0.04023120552301407, + 0.03165210038423538, + -0.009824673645198345, + -0.007759826723486185, + 0.12394408136606216, + 0.016292305663228035, + -0.04161664843559265, + 0.044360898435115814, + 0.02496466226875782, + -0.013561379164457321, + 0.02344599924981594, + -0.013907740823924541, + 0.019556095823645592, + 0.05102169141173363, + 0.04614599049091339, + -0.0303465835750103, + -0.07119058072566986, + 0.03929869458079338, + 0.06271804869174957, + 0.022566774860024452, + -0.024072114378213882, + 0.07785137742757797, + 0.009405042976140976, + 0.13982342183589935, + -0.002967384411022067, + 0.022140484303236008, + -0.014933503232896328, + -0.11158164590597153, + 0.014667071402072906, + 0.0909065380692482, + 0.03714059665799141, + -0.03266454115509987, + 0.013707917183637619, + 0.044307611882686615, + -0.0015827715396881104, + -0.0018167319940403104, + 0.007240284699946642, + -0.08211428672075272, + 0.0006510927341878414, + -0.027442477643489838, + 0.08195442706346512, + 0.02877463586628437, + -0.05690983682870865, + 0.010444127023220062, + -0.04302873834967613, + -0.04750479385256767, + -0.0678335428237915, + 0.0021780801471322775, + 0.0530199334025383, + 0.08973423391580582, + 0.03242475166916847, + 0.06399692595005035, + 0.007486734073609114, + -0.0030106795020401478, + -0.03258461132645607, + 0.02720268815755844, + 0.03178531676530838, + 0.01359468325972557, + 0.01967599056661129, + -0.049636248499155045, + -0.022406915202736855, + 0.04630585014820099, + 0.052700214087963104, + -0.029254212975502014, + -0.006570874713361263, + -0.022220414131879807, + -0.014826931059360504, + -0.012002753093838692, + -0.054938241839408875, + -0.07284245640039444, + -0.03311747685074806, + -0.007246945519000292, + 0.06127931922674179, + 0.022566774860024452, + 0.002527771983295679, + 0.023046351969242096, + -0.014640428125858307, + 0.03130573779344559, + 0.05003589391708374, + 0.00039340322837233543, + 0.013454806990921497, + -0.01978256180882454, + -0.03548871725797653, + -0.07502719759941101, + -0.004645904991775751, + -0.025897173210978508, + -0.010943686589598656, + -0.0021847409661859274, + 0.036847520619630814, + -0.01738467626273632, + 0.010957008227705956, + 0.04497369006276131, + 0.06442321091890335, + 0.04859716445207596, + -0.032238248735666275, + -0.025377631187438965, + -0.023059673607349396, + -0.038206323981285095, + -0.0761995017528534, + 0.00875228550285101, + 0.0038033141754567623, + 0.022326987236738205, + 0.02208719775080681, + 0.004899015184491873, + 0.01591930165886879, + 0.034476276487112045, + 0.03698073700070381, + 0.03663437440991402, + 0.034422989934682846, + 0.03207838907837868, + 0.024018827825784683, + 0.010730541311204433, + -0.01677188277244568, + 0.023246176540851593, + 0.06953870505094528, + 0.04268237575888634, + -0.04910338297486305, + -0.0056150504387915134, + 0.026190247386693954, + 0.03460949286818504, + 0.05738941207528114, + 0.043534960597753525, + -0.050435543060302734, + -0.057922277599573135, + -0.007240284699946642, + 0.038126394152641296, + 0.028268415480852127, + -0.019116483628749847, + -0.08046241104602814, + -0.01216927357017994, + 0.08669691532850266, + -0.05621711537241936, + -0.011090224608778954, + -0.042788948863744736, + -0.08675020188093185, + -0.01024430338293314, + -0.03844610974192619, + 0.029920293018221855, + -0.06948541849851608, + 0.04300209507346153, + -0.06261147558689117, + 0.02507123351097107, + -0.03106595017015934, + -0.005998046137392521, + -0.06197204068303108, + 0.006341077387332916, + 0.01216261275112629, + 0.11243423074483871, + 0.057122983038425446, + -0.010330894030630589, + -0.0454799123108387, + -0.023299463093280792, + -0.011909502558410168, + -0.024391833692789078, + -0.04401453584432602, + 0.05453859269618988, + 0.052673570811748505, + -0.014933503232896328, + -0.011330013163387775, + 0.0007189495954662561, + -0.016025874763727188, + 0.06293119490146637, + -0.051900919526815414, + 0.03578179329633713, + 0.06746053695678711, + 0.00702713942155242, + 0.06980513781309128, + 0.01666530966758728, + 0.07151030004024506, + 0.005868160631507635, + 0.08131498843431473, + -0.025470882654190063, + 0.017651107162237167, + -0.03967169672250748, + -0.07252274453639984, + -0.049582961946725845, + -0.029227569699287415, + 0.021714193746447563, + 0.009012056514620781, + -0.10209666937589645, + 0.06511593610048294, + -0.057975564152002335, + -0.021514369174838066, + -0.025390952825546265, + 0.0380198210477829, + 0.05701640993356705, + -0.015319829806685448, + -0.00828602910041809, + -0.014866895042359829, + -0.01662534475326538, + 0.01176962535828352, + 0.09692789614200592, + -0.0677269697189331, + 0.03404998779296875, + -0.007040460593998432, + -0.06330420076847076, + 0.051208194345235825, + 0.00623117433860898, + -0.00867901649326086, + 0.012502312660217285, + 0.019462844356894493, + 0.00870565976947546, + -0.04177650809288025, + -0.007979633286595345, + 0.004416107200086117, + 0.036820877343416214, + -0.07449433952569962, + -0.01244236622005701, + -0.007047121413052082, + 0.03935198113322258, + -0.02048860676586628, + -0.03634129837155342, + -0.07241617143154144, + 0.009738082997500896, + -0.017970826476812363, + -0.04598613083362579, + -0.04705185815691948, + -0.027602335438132286, + 0.03333061933517456, + -0.003946521319448948, + 0.03111923672258854, + 0.006001376546919346, + 0.016278984025120735, + 0.04763801023364067, + -0.009418364614248276, + 0.0011781281791627407, + 0.04385467618703842, + -0.009758065454661846, + 0.006161235738545656, + -0.051874276250600815, + 0.07108400762081146, + -0.09037367254495621, + 0.036820877343416214, + -0.042842235416173935, + -0.00716035533696413, + 0.03330397605895996, + 0.0016377230640500784, + -0.016172410920262337, + -0.01054403930902481, + -0.022313665598630905, + 0.054991528391838074, + -0.0015311503084376454, + 0.03258461132645607, + -0.008505836129188538, + 0.023046351969242096, + 0.017744358628988266, + 0.00873230304569006, + -0.012935264967381954, + 0.015293186530470848, + 0.017291424795985222, + 0.0015336481155827641, + 0.08083541691303253, + -0.05738941207528114, + 0.08797578513622284, + -0.03634129837155342, + 0.013521415181457996, + -0.021754158660769463, + 0.023845648393034935, + -0.014786966145038605, + 0.05477838218212128, + -0.03615479916334152, + 0.03887240216135979, + 0.02571067027747631, + 0.05240713804960251, + -0.004466063342988491, + 0.059361010789871216, + -0.018410438671708107, + 0.0532064326107502, + -0.042069584131240845, + -0.010683915577828884, + 0.08888165652751923, + 0.021061435341835022, + -0.04111042991280556, + -0.01810404285788536, + -0.024684907868504524, + -0.04244258999824524, + -0.03476935252547264, + -0.07950325310230255, + -0.026763075962662697, + -0.01400099229067564, + -0.025324344635009766, + -0.03967169672250748, + -0.014134207740426064, + 0.08888165652751923, + 0.10177695751190186, + -0.029946936294436455, + 0.02035539038479328, + -0.024631621316075325, + -0.05627039819955826, + -0.016145767644047737, + -0.055737536400556564, + -0.0038799133617430925, + 0.02946735918521881, + 0.042815592139959335, + 0.03383684158325195, + -0.06202532723546028, + 0.02885456569492817, + -0.0376468151807785, + -0.0066274916753172874, + -0.0004654230724554509, + 0.06452978402376175, + 0.048224158585071564, + 0.007393483072519302, + 0.04489376023411751, + 0.06362392008304596, + -0.014680393040180206, + 0.015106684528291225, + 0.018730156123638153, + -0.03967169672250748, + -0.03325068950653076, + -0.019955743104219437, + 0.03255796805024147, + 0.009151932783424854, + 0.03860596939921379, + -0.0020581858698278666, + 0.007133712060749531, + 0.01550633180886507, + -0.049609605222940445, + -0.009365078061819077, + -0.01894330233335495, + -0.01518661342561245, + 0.01242904458194971, + 0.008552460931241512, + 0.03410327434539795, + -0.02872134931385517, + 0.036767590790987015, + -0.057975564152002335, + -0.048064298927783966, + -0.01741131953895092, + 0.028454918414354324, + -0.12181262671947479, + -0.055790822952985764, + 0.02339271456003189, + 0.0013812824618071318, + -0.03306419029831886, + -0.011316691525280476, + -0.04324188455939293, + 0.0010648947209119797, + -0.0530199334025383, + -0.029893649742007256, + 0.014493891038000584, + -0.04294880852103233, + -0.006337746977806091, + 0.09000066667795181, + 0.003007349092513323, + 0.05584410950541496, + -0.04694528505206108, + 0.04305538162589073, + 0.05898800492286682, + -0.024791480973362923, + -0.06197204068303108, + -0.011509854346513748, + -0.05467180907726288, + 0.016199054196476936, + 0.03628801181912422, + 0.03386348485946655, + -0.026270177215337753, + -0.014627106487751007, + -0.04452075809240341, + 0.03479599580168724, + 0.01964934729039669, + 0.058774858713150024, + -0.00837261974811554, + -0.003823296632617712, + 0.02960057556629181, + -0.043534960597753525, + 0.010104427114129066, + -0.04476054385304451, + -0.02949400246143341, + 0.019516130909323692, + 0.02204723283648491, + 0.10044479370117188, + 0.05008918046951294, + 0.00257106707431376, + -0.007846416905522346, + 0.013581361621618271, + 0.04009798914194107, + -0.029387429356575012, + 0.014174172654747963, + -0.06415677815675735, + -0.045053619891405106, + -0.023792361840605736, + 0.01895662397146225, + -0.007659914903342724, + 0.05765584483742714, + 0.007713200990110636, + 0.106306292116642, + 0.02584388665854931, + 0.026283498853445053, + -0.0024728202261030674, + 0.020275460556149483, + 0.05621711537241936, + 0.0753469169139862, + -0.1212797611951828, + -0.009544920176267624, + -0.039751626551151276, + 0.003696741536259651, + 0.04417439550161362 + ] + }, + { + "id": "c45b5724-d699-4be6-8235-d680ac3b2691", + "productId": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "category": "Other", + "docType": "customerRating", + "userName": "mooredarren", + "reviewDate": "2021-02-01T17:27:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "aa931a4d-77b5-4a55-8ef1-a424b930cb5a", + "productId": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "category": "Other", + "docType": "customerRating", + "userName": "jessica38", + "reviewDate": "2022-01-26T10:48:40", + "stars": 4, + "verifiedUser": true + }, + { + "id": "af25b344-e083-43ca-ab35-43a2dfd1e026", + "productId": "fd97d1ae-ece9-4c61-aba5-81585f133fad", + "category": "Other", + "docType": "customerRating", + "userName": "laura81", + "reviewDate": "2021-04-01T23:51:05", + "stars": 5, + "verifiedUser": true + }, + { + "id": "fbd5273c-2974-44aa-837e-446c3d871267", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Super (Red)", + "description": "This Amazing Mouse Super (Red) is a 3D printed robot! The device is only made of acrylic.\n\nAs long as I can obtain my first order from Shapeways, you can keep track of", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-01-18T23:13:26", + "price": 498.49, + "stock": 43, + "priceHistory": [ + { + "priceDate": "2021-01-06T06:12:25", + "newPrice": 475.71 + }, + { + "priceDate": "2024-06-16T06:12:25", + "newPrice": 498.49 + } + ], + "descriptionVector": [ + -0.0678381621837616, + -0.000510656216647476, + -0.014046642929315567, + -0.041255269199609756, + 0.05080670118331909, + -0.04910930618643761, + -0.004207519814372063, + 0.0336601585149765, + 0.03783171623945236, + 0.06668739020824432, + 0.019505629315972328, + 0.010378548875451088, + 0.0592648945748806, + -0.04977100342512131, + 0.05313701927661896, + 0.001112115802243352, + -0.0039162300527095795, + 0.017491774633526802, + -0.0359041690826416, + 0.010774127207696438, + 0.03685355558991432, + -0.01972139999270439, + -0.03702617436647415, + -0.0017854988109320402, + -0.009594583883881569, + -0.02994890883564949, + -0.033199846744537354, + 0.01763562113046646, + -0.04436236247420311, + -0.036105554550886154, + 0.011874555610120296, + 0.07290156930685043, + 0.011083398014307022, + 0.025978736579418182, + 0.06202675402164459, + 0.0017459408845752478, + 0.042664967477321625, + -0.0015094926347956061, + 0.019764553755521774, + 0.00783965177834034, + 0.05866073817014694, + -0.008860964328050613, + -0.012903060764074326, + -0.014521337114274502, + -0.023734726011753082, + 0.06421322375535965, + -0.04246358200907707, + -0.022785337641835213, + -0.02899952046573162, + -1.5030869690235704e-05, + 0.022368181496858597, + 0.051957473158836365, + -0.04439113289117813, + -0.019333014264702797, + -0.017189696431159973, + -0.07123295217752457, + 0.012586597353219986, + 0.027661744505167007, + 0.020541327074170113, + -0.02977629378437996, + -0.010824473574757576, + -0.038349565118551254, + 0.07353449612855911, + 0.054690565913915634, + -0.023188108578324318, + -0.06455845385789871, + -0.035443857312202454, + -0.0004944734973832965, + 0.04709545150399208, + 0.03236553817987442, + 0.024065574631094933, + 0.0024238191545009613, + -0.003581786062568426, + -0.010054892860352993, + 0.07658404856920242, + 0.02068517357110977, + 0.1482197791337967, + -0.03187645599246025, + 0.08251053839921951, + -0.06455845385789871, + 0.037745408713817596, + 0.016930771991610527, + -0.009357236325740814, + -0.006843512877821922, + 0.05690580606460571, + 0.03791802376508713, + 0.03791802376508713, + -0.13406524062156677, + 0.014514144510030746, + -0.03155999258160591, + -0.04165804013609886, + 0.069161556661129, + -0.011968055739998817, + 0.014650799334049225, + 0.036422017961740494, + 0.011565284803509712, + 0.03397662192583084, + 0.06001289561390877, + -0.011759478598833084, + 0.021864717826247215, + -0.002569464035332203, + 0.002213443163782358, + -0.08331608027219772, + -0.04352805018424988, + -0.05914981663227081, + -0.0352424718439579, + 0.0187432412058115, + 0.05840181186795235, + -0.0867108702659607, + -0.05696334317326546, + 0.07595112174749374, + -0.03904002904891968, + 0.012996560893952847, + 0.05138208717107773, + -0.004203923512250185, + 0.03026537224650383, + -0.13141846656799316, + -0.0034756988752633333, + 0.010903589427471161, + -0.004495213273912668, + 0.08066929876804352, + -0.008184884674847126, + 0.009975777938961983, + 0.01370141003280878, + 0.05049023777246475, + -0.016542384400963783, + 0.032768309116363525, + -0.03248061239719391, + 0.01057993434369564, + -0.038378335535526276, + -0.0601855143904686, + -0.03587539866566658, + -0.057078421115875244, + 0.014082604087889194, + -0.05771134793758392, + 0.04933946207165718, + 0.01530530210584402, + 0.08337362110614777, + -0.05699211359024048, + 0.056618113070726395, + -0.08435177803039551, + -0.06812585890293121, + 0.006066740024834871, + 0.03670971095561981, + -0.06755047291517258, + 0.02500057965517044, + -0.06726277619600296, + 0.002089375164359808, + -0.032595690339803696, + 0.02868305705487728, + -0.033861543983221054, + -0.1024189442396164, + 0.011838593520224094, + -0.038522180169820786, + 0.01193209458142519, + 0.014773068949580193, + -0.0718083381652832, + -0.008170499466359615, + -0.015003223903477192, + 0.056790728121995926, + 0.015938227996230125, + -0.00785403698682785, + -0.019404936581850052, + -0.0022098468616604805, + -0.08009391278028488, + -0.0028014169074594975, + 0.03486847132444382, + 0.015909459441900253, + -0.06087597832083702, + -0.00744407344609499, + -0.0031987938564270735, + -0.04649129509925842, + 0.0291721373796463, + -0.02225310355424881, + 0.05745242163538933, + 0.05891966074705124, + 0.045570675283670425, + -0.007681420538574457, + -0.04628990963101387, + -0.09977216273546219, + 0.015218994580209255, + 0.07664158940315247, + -0.04505282640457153, + 0.007645458914339542, + -0.023144954815506935, + 0.0839490070939064, + 0.05995535850524902, + 0.00952985230833292, + -0.028798134997487068, + -0.0139243733137846, + 0.035645242780447006, + -0.09936939179897308, + 0.010069278068840504, + -0.011097783222794533, + -0.014420644380152225, + 0.033084768801927567, + -0.05463302507996559, + 0.0323367677628994, + 0.030236603692173958, + 9.97375445876969e-06, + -0.034983549267053604, + -0.0037076519802212715, + 0.09321274608373642, + -0.007314611226320267, + -0.022526413202285767, + -0.026295199990272522, + 0.03296969458460808, + -0.005628006998449564, + 0.04611729457974434, + -0.022972337901592255, + 0.04231973737478256, + -0.03944279998540878, + -0.024151882156729698, + -0.05943750962615013, + 0.019793324172496796, + 0.05060531571507454, + -0.01009804755449295, + -0.06616953760385513, + -0.012888675555586815, + -0.045541904866695404, + -0.06939171254634857, + -0.060933515429496765, + -0.0329984612762928, + -0.023979267105460167, + -0.023590879514813423, + 0.005458987317979336, + 0.05247532203793526, + 0.050835467875003815, + 0.02212364226579666, + -0.002749272622168064, + -0.051641009747982025, + -0.01464360672980547, + 0.061739057302474976, + 0.020584480836987495, + -0.13878342509269714, + 0.10437525808811188, + -0.06996709853410721, + -0.02882690355181694, + -0.06196921318769455, + 0.060127973556518555, + -0.02720143459737301, + 0.03443692997097969, + -0.04260743036866188, + -0.00412121182307601, + 0.06254459917545319, + 0.04931069165468216, + 0.050058696419000626, + 0.006063143722712994, + -0.08625055849552155, + 0.03584662824869156, + 0.030207833275198936, + 0.04948331043124199, + 0.03622063249349594, + -0.0005232428666204214, + 0.0009664708632044494, + 0.06634216010570526, + 0.0704849436879158, + 0.008364693261682987, + 0.0518711656332016, + -0.06122120842337608, + -0.05443163961172104, + -0.0032779097091406584, + -0.0419745035469532, + 0.10339710116386414, + -0.02035432681441307, + -0.01410418190062046, + -0.023777881637215614, + -0.02579173631966114, + 0.031790148466825485, + 0.08406408876180649, + 0.053741175681352615, + 0.04229096695780754, + 0.09591706842184067, + -0.05848811939358711, + -0.07341942191123962, + -0.018872704356908798, + -0.03904002904891968, + 0.04994361847639084, + 0.0442185141146183, + -0.03875233605504036, + 0.02513004094362259, + -0.017664389684796333, + 0.09401828795671463, + -0.021418793126940727, + -0.007530381437391043, + 0.04226219654083252, + 0.02272779867053032, + 0.032883383333683014, + -0.05446041002869606, + -0.027575436979532242, + -0.034350622445344925, + -0.04787222295999527, + -0.0236915722489357, + -0.060933515429496765, + 0.06801077723503113, + -0.024756038561463356, + 0.035472627729177475, + -0.10707958042621613, + -0.0269281268119812, + 0.005034639034420252, + 0.01727600395679474, + -0.05814288929104805, + -0.027431590482592583, + -0.06081843748688698, + 0.03970172628760338, + 0.010680627077817917, + 0.028395364060997963, + -0.006178221199661493, + 0.004049288108944893, + 0.0039414032362401485, + 0.09039334952831268, + -0.02466973103582859, + -0.08774656802415848, + 0.004750541411340237, + 0.06657230854034424, + -0.09614721685647964, + 0.028798134997487068, + 0.04292389377951622, + 0.01713215745985508, + -0.02948859892785549, + -0.0072211106307804585, + -0.017089003697037697, + -0.016240306198596954, + 0.05463302507996559, + 0.0104936258867383, + -0.0273884367197752, + 0.006613357923924923, + -0.024453960359096527, + -0.01530530210584402, + -0.032106611877679825, + -0.052446555346250534, + -0.04945454001426697, + 0.02753228321671486, + -0.009414775297045708, + -0.09971462190151215, + -0.0951690599322319, + 0.03780294582247734, + 0.06616953760385513, + 0.0826256200671196, + -0.022627105936408043, + 0.026381507515907288, + -0.03460954874753952, + -0.03800433129072189, + -0.026381507515907288, + 0.003590776352211833, + -0.01250028982758522, + 0.01809593103826046, + -0.015981381759047508, + 0.04324035719037056, + 0.024756038561463356, + 0.0013989104190841317, + -0.06323506683111191, + -0.0017971863271668553, + -0.005548891611397266, + 0.06639969348907471, + 0.02321687899529934, + 0.004272250924259424, + -0.04784345626831055, + -0.004728964529931545, + -0.0024022420402616262, + -0.031099684536457062, + -0.031761378049850464, + 0.009105504490435123, + 0.039183877408504486, + 0.02881252020597458, + 0.07439757883548737, + -0.01954878307878971, + 0.016096459701657295, + 0.009867892600595951, + 0.014960070140659809, + -0.00993981584906578, + -0.01241398137062788, + -0.04559944570064545, + -0.006994551979005337, + -0.03927018493413925, + -0.07123295217752457, + 0.05540979653596878, + 0.04165804013609886, + -0.01104024425148964, + 0.0329984612762928, + 0.006692473776638508, + -0.015262148343026638, + 0.01009804755449295, + 0.024396421387791634, + 0.06231444701552391, + 0.013751756399869919, + 0.05443163961172104, + -0.0624295249581337, + 0.00071608746657148, + 0.08734379708766937, + -0.017880160361528397, + -0.022641491144895554, + 0.0323367677628994, + 0.06939171254634857, + 0.00921338889747858, + -0.06662984937429428, + 0.047785915434360504, + 0.07641143351793289, + -0.03026537224650383, + -0.03751525282859802, + -0.05330963432788849, + 0.07652651518583298, + 0.041715580970048904, + -0.00929969735443592, + -0.026352738961577415, + -0.06461599469184875, + 0.030035218223929405, + -0.03104214556515217, + -0.060760900378227234, + -0.05555364489555359, + 0.0006252841558307409, + -0.014960070140659809, + 0.06651477515697479, + -0.03817695006728172, + 0.0089760422706604, + 0.024453960359096527, + 0.07808005809783936, + -0.034005388617515564, + -0.0157080739736557, + -0.0641556829214096, + 0.03092706762254238, + -0.01648484729230404, + 0.010982705280184746, + 0.07307419180870056, + -0.0740523487329483, + 0.028452903032302856, + 0.004304616246372461, + 0.04200327396392822, + 0.00593008566647768, + -0.08596286177635193, + -0.007990690879523754, + -0.08740133047103882, + -0.026712356135249138, + -0.001299116644077003, + -0.0352424718439579, + 0.09747061133384705, + 0.0014888147125020623, + -0.09091119468212128, + 3.191601354046725e-05, + 0.04752699285745621, + 0.03665217012166977, + 0.08112961053848267, + -0.022454489022493362, + -0.011946478858590126, + -0.05296440050005913, + -0.0009170235134661198, + -0.04093880578875542, + -0.04116896167397499, + 0.015118301846086979, + -0.023763496428728104, + -0.04418974742293358, + -0.04056480526924133, + 0.008709925226867199, + -0.0033084771130234003, + -0.03567401319742203, + -0.020109785720705986, + 0.03043798916041851, + 0.03492600843310356, + -0.02675550989806652, + 0.03535754978656769, + 0.05730857700109482, + 0.06858617067337036, + 0.014988839626312256, + -0.014456606470048428, + 0.023432647809386253, + 0.019649477675557137, + 0.006214182823896408, + 0.024094343185424805, + 0.009795969352126122, + 0.0129677914083004, + 0.030380450189113617, + 0.011500554159283638, + -0.03843587264418602, + 0.027000049129128456, + -0.0009574804571457207, + -0.009961392730474472, + -0.0601855143904686, + 0.026482200250029564, + 0.029718754813075066, + 0.11686116456985474, + -0.005944470409303904, + -0.011795439757406712, + -0.027474744245409966, + 0.012759213335812092, + -0.0026341951452195644, + -0.09436351805925369, + -0.019577553495764732, + 0.002310539595782757, + -0.010572741739451885, + 0.038493409752845764, + 0.040104497224092484, + 0.059322431683540344, + -0.036767248064279556, + 0.007638266775757074, + -0.04565698280930519, + 0.012205403298139572, + 0.03685355558991432, + -0.036939866840839386, + -0.016930771991610527, + 0.0035188531037420034, + 0.015060762874782085, + -0.06847108900547028, + -0.031128453090786934, + -0.04344174265861511, + -0.0160389207303524, + 0.03935649245977402, + 0.014240835793316364, + 0.0345807783305645, + -0.003105293493717909, + -0.032106611877679825, + -0.014370298013091087, + 0.004696598742157221 + ] + }, + { + "id": "db2811ee-2062-40c4-b66e-8fa0a4bc3ff7", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hannah02", + "reviewDate": "2022-08-18T11:25:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "8b7f6aa8-5bee-4363-ae17-39f262120ad2", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wilsonjudith", + "reviewDate": "2022-12-10T11:21:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9a073e0e-61c0-4074-9186-b25e6983001b", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "darrellcrawford", + "reviewDate": "2022-08-23T04:15:16", + "stars": 5, + "verifiedUser": true + }, + { + "id": "015af43e-a992-4629-9c81-48a70da366da", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ginaraymond", + "reviewDate": "2022-01-14T09:30:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6112ef02-154a-4ebe-a214-41ef8689ea9a", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "silvajulie", + "reviewDate": "2022-07-03T18:41:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "07a90747-945b-4da4-8d23-0e44d1f94aa3", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davisashley", + "reviewDate": "2022-03-10T05:12:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "449aa157-d4a1-43ff-a15b-fe3e1c945fc3", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "freid", + "reviewDate": "2021-12-28T22:31:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "80c14efb-61da-47db-980b-4e4e3c159f7a", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pamela75", + "reviewDate": "2021-08-07T14:59:35", + "stars": 5, + "verifiedUser": false + }, + { + "id": "b2c417d0-99df-4552-a3bd-bd5d32570e7c", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "maryprice", + "reviewDate": "2022-10-25T04:51:59", + "stars": 5, + "verifiedUser": false + }, + { + "id": "114a5f94-b7a6-4f1b-90f3-c7277b4397bd", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sallen", + "reviewDate": "2022-05-12T09:16:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e16920d4-bd5d-4cdc-a7e8-9100ec2384de", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hrobinson", + "reviewDate": "2022-04-27T10:18:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "955ed446-0cdc-4fec-8383-92e13a194312", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas30", + "reviewDate": "2021-05-14T13:00:55", + "stars": 5, + "verifiedUser": false + }, + { + "id": "21a914ae-bb3b-49bb-a5fc-99f26ec1fc07", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hollygomez", + "reviewDate": "2022-10-13T03:08:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a9e6156c-6435-4b68-8e24-e5f07406ba6c", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tdunlap", + "reviewDate": "2021-01-06T06:12:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "818149d2-d1eb-4057-9cc7-434cacd8e8a2", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erose", + "reviewDate": "2022-01-31T00:44:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "208b296b-08b1-4204-837c-f8a2aa38b932", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "courtney59", + "reviewDate": "2021-10-05T08:30:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5764022d-807b-4036-9c90-aaea8be18a1e", + "productId": "fbd5273c-2974-44aa-837e-446c3d871267", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thompsonpatrick", + "reviewDate": "2022-01-16T08:58:32", + "stars": 5, + "verifiedUser": true + }, + { + "id": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "productId": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "category": "Media", + "docType": "product", + "name": "Awesome Speaker Mini (Red)", + "description": "This Awesome Speaker Mini (Red) is so very nice looking I can't go wrong!\n\n\nIf you like what you see, please hit a share button below and let us know what you think.\n\n\nAlso, a big thanks to all the wonderful people who came out to give it a try.\n\n\nThank you so much for making it possible for me to try this new product. You can read more about the process and the specs", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-10-02T01:07:21", + "price": 541.9, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-12-24T00:40:38", + "newPrice": 551.59 + }, + { + "priceDate": "2022-02-04T00:40:38", + "newPrice": 552.55 + }, + { + "priceDate": "2022-03-18T00:40:38", + "newPrice": 520.22 + }, + { + "priceDate": "2022-04-29T00:40:38", + "newPrice": 488.75 + }, + { + "priceDate": "2022-06-10T00:40:38", + "newPrice": 534.29 + }, + { + "priceDate": "2023-05-16T00:40:38", + "newPrice": 541.9 + } + ], + "descriptionVector": [ + -0.05572580173611641, + 0.009590541943907738, + -0.03780295327305794, + -0.025528177618980408, + -0.018076634034514427, + -0.04593953490257263, + -0.012589333578944206, + 0.02010378986597061, + -0.016245203092694283, + 0.11855363845825195, + -0.03430785611271858, + -0.01954457350075245, + 0.018873514607548714, + 0.020383397117257118, + 0.015769870951771736, + 0.025472255423665047, + -0.0757177472114563, + -0.018537987023591995, + -0.03374864161014557, + 0.04434577003121376, + 0.014945028349757195, + -0.060003798454999924, + -0.05460737273097038, + 0.0020568636246025562, + -0.014225038699805737, + -0.015420361422002316, + -0.011205276474356651, + 0.06822426617145538, + 0.0588853694498539, + -0.03822236508131027, + 0.06403014808893204, + 0.050357334315776825, + 0.008010759018361568, + 0.05815838649868965, + 0.00644146092236042, + -0.001583278295584023, + 0.05488697811961174, + 0.06190513074398041, + 0.04401024058461189, + 0.05972418934106827, + 0.014665420167148113, + -0.013707764446735382, + 0.01736363396048546, + -0.056592587381601334, + -0.04261220246553421, + 0.040766794234514236, + 0.01275709830224514, + -0.015280556865036488, + 0.011673619039356709, + -0.03148382157087326, + 0.020579122006893158, + 0.041801340878009796, + -0.03861381486058235, + 0.025332452729344368, + -0.04087863489985466, + 0.027471451088786125, + 0.018943417817354202, + -0.11240226775407791, + 0.06279987841844559, + -0.024437706917524338, + 0.04339510574936867, + -0.06106630712747574, + -0.018426142632961273, + -0.02885550819337368, + -0.015252596698701382, + -0.0008239687304012477, + -0.01927894726395607, + 0.03014170378446579, + 0.02460547164082527, + 0.07873751223087311, + -0.008695797063410282, + 0.021641630679368973, + -0.004166153725236654, + 0.04484906420111656, + 0.0390891470015049, + -0.05424388125538826, + 0.08796456456184387, + 0.04152173548936844, + -0.0031420907471328974, + -0.010359463281929493, + 0.04127008840441704, + 0.01066703163087368, + 0.000436668487964198, + -0.0638064593076706, + -0.03153974190354347, + -0.03777499124407768, + -0.04568788781762123, + -0.13242217898368835, + -0.024255963042378426, + 0.0358736589550972, + -0.05150372534990311, + 0.04940667003393173, + 0.05782286077737808, + 0.031707506626844406, + 0.07275390625, + -0.008038719184696674, + 0.014294940046966076, + 0.02730368636548519, + -0.03564997389912605, + -0.0057494319044053555, + 0.04250036180019379, + 0.0021145327482372522, + -0.046498749405145645, + -0.05553007498383522, + 0.008311336860060692, + 0.05578172206878662, + 0.04574380815029144, + 0.026003509759902954, + -0.019264966249465942, + -0.1424880474805832, + 0.0871257409453392, + -0.012002157978713512, + -0.023822570219635963, + -0.03914506733417511, + -0.001774634700268507, + 0.02628311701118946, + 0.020551161840558052, + -0.07733947038650513, + -0.0341680534183979, + -0.019432730972766876, + 0.02243851311504841, + 0.0008571721846237779, + 0.05256623402237892, + 0.07303351163864136, + 0.052789922803640366, + -0.02417208068072796, + 0.025667980313301086, + 0.06257618963718414, + 0.0702933594584465, + -0.050105687230825424, + -0.040766794234514236, + 0.04524051398038864, + 0.013085637241601944, + 0.03542628884315491, + 0.03352495655417442, + 0.012009147554636002, + 0.05933273956179619, + 0.054523490369319916, + -0.02776503749191761, + -0.021068435162305832, + -0.013071657158434391, + 0.0026772432029247284, + 0.060898542404174805, + 0.010555188171565533, + -0.0712440237402916, + 0.04683427885174751, + -0.04261220246553421, + -0.019334867596626282, + -0.027723096311092377, + 0.06749728322029114, + -0.0475332997739315, + -0.0638064593076706, + 0.04029146209359169, + -0.01760130003094673, + 0.0470300056040287, + 0.09182314574718475, + -0.12157340347766876, + 0.0324065238237381, + 0.011841383762657642, + 0.006609225645661354, + -0.010359463281929493, + -0.04510071128606796, + 0.02692621573805809, + 0.010422375053167343, + -0.0029079194646328688, + 0.039816126227378845, + 0.01947467215359211, + 0.031260132789611816, + -0.08919483423233032, + 0.043283261358737946, + 0.001882108859717846, + -0.020872710272669792, + -0.008136582560837269, + -0.01474930252879858, + -0.011156344786286354, + -0.015196675434708595, + 0.0782342180609703, + -0.021487846970558167, + -0.04965831711888313, + -0.0497421994805336, + -0.020746886730194092, + 0.11061277985572815, + -0.012673215940594673, + 0.03766314685344696, + 0.0029079194646328688, + 0.035901620984077454, + 0.046107299625873566, + -0.03900526463985443, + -0.012645255774259567, + 0.0707407295703888, + -0.029610449448227882, + -0.04252832010388374, + 0.00210579507984221, + 0.025947589427232742, + -0.011394010856747627, + 0.011380030773580074, + 0.0841618999838829, + 0.03277001529932022, + -0.04275200888514519, + 0.0183143001049757, + -0.01259632408618927, + 0.04233259707689285, + 0.030057821422815323, + -0.023319276049733162, + -0.04297569394111633, + -0.04591157287359238, + 0.024717314168810844, + 0.023249374702572823, + 0.06671438366174698, + -0.023025689646601677, + -0.01452561654150486, + -0.026171274483203888, + -0.041997067630290985, + -0.009828208014369011, + 0.046051379293203354, + 0.04048718512058258, + 0.04588361456990242, + -0.022899866104125977, + -0.005169246345758438, + 0.013197480700910091, + -0.012120991013944149, + 0.009394816122949123, + 0.015979576855897903, + 0.0022945301607251167, + -0.0811980590224266, + -0.06453344225883484, + 0.03394436836242676, + -0.00091396743664518, + 0.09076064079999924, + 0.058382075279951096, + -0.046051379293203354, + -0.015769870951771736, + -0.0038411098066717386, + 0.02364082634449005, + 0.019712338224053383, + 0.027093980461359024, + 0.029023272916674614, + -0.032686132937669754, + -0.07588551193475723, + 0.04403820261359215, + -0.03785887360572815, + 0.04742145538330078, + -0.06816834211349487, + -0.010841785930097103, + 0.07935264706611633, + -0.011547795496881008, + 0.045408278703689575, + -0.006658156868070364, + -0.03559405356645584, + 0.04686224088072777, + -0.11989575624465942, + -0.022312689572572708, + -0.025989530608057976, + 0.05810246616601944, + -0.045715849846601486, + 0.0534609816968441, + 0.07829013466835022, + 0.0006811066996306181, + 0.006008069030940533, + -0.04132600873708725, + -0.0035352890845388174, + 0.011352069675922394, + -0.04378655552864075, + 0.03939671441912651, + -0.040123697370290756, + -0.014371832832694054, + 0.08980996906757355, + -0.02608739212155342, + 0.025234589353203773, + 0.04985404014587402, + -0.0016584227560088038, + -0.015574145130813122, + 0.02480119653046131, + 0.02036941610276699, + -0.10160941630601883, + 0.04767310246825218, + -0.02885550819337368, + 0.002027155365794897, + -0.0215297881513834, + 0.007961827330291271, + 0.0900895819067955, + 0.07538221776485443, + 0.09707976877689362, + -0.04423392936587334, + -0.02313753217458725, + -0.04512867331504822, + 0.010366452857851982, + -0.03388844430446625, + 0.004480712581425905, + -0.017964791506528854, + -0.06559595465660095, + -0.014819204807281494, + 0.03811052069067955, + 0.04325530305504799, + 0.049909964203834534, + 0.09417185187339783, + 0.007689210120588541, + -0.053572822362184525, + -0.008821620605885983, + 0.02531847171485424, + -0.0006457188865169883, + -0.04017961770296097, + -0.04761718213558197, + -0.029023272916674614, + -0.006319132633507252, + 0.03777499124407768, + -0.00571797601878643, + 0.09775082767009735, + -0.054775137454271317, + -0.03674044460058212, + 0.0796881765127182, + -0.02924695797264576, + -0.028380174189805984, + -0.05206294357776642, + 0.02814250811934471, + -0.01465144008398056, + 0.0012582343770191073, + -0.018873514607548714, + -0.024339845404028893, + 0.0008964919834397733, + 0.06800057739019394, + -0.06106630712747574, + -0.10893513262271881, + 0.039676323533058167, + -0.060507092624902725, + -0.007856974378228188, + 0.025528177618980408, + -0.01934884861111641, + 0.020746886730194092, + 0.09092840552330017, + -0.047589220106601715, + -0.027848919853568077, + 0.07219468802213669, + 0.024255963042378426, + 0.04856784641742706, + -0.03299370035529137, + -0.007049607578665018, + -0.00016011905972845852, + 0.11642862111330032, + 0.03237856552004814, + 0.015070851892232895, + -0.0013150296872481704, + -0.004463236778974533, + -0.015028910711407661, + -0.015546184964478016, + -0.11888916790485382, + -0.0036978109274059534, + 0.03573385626077652, + 0.05044121667742729, + -0.06319132447242737, + 0.0017571592470631003, + -0.03682432696223259, + 0.04311549663543701, + -0.003907516598701477, + 0.09540212899446487, + 0.005756422411650419, + -0.024885078892111778, + -0.022284729406237602, + 0.04985404014587402, + 0.024200040847063065, + 0.003025005105882883, + -0.04535235837101936, + -0.023934412747621536, + 0.02885550819337368, + 0.04895929619669914, + 0.007703190203756094, + -0.03752334415912628, + 0.0489872582256794, + -0.043926358222961426, + -0.006029039621353149, + -0.022997727617621422, + -0.049127060920000076, + -0.12369842082262039, + 0.007444553542882204, + -0.015462302602827549, + 0.06106630712747574, + 0.08477703481912613, + -0.028296293690800667, + -0.03394436836242676, + 0.07113218307495117, + 0.0457717701792717, + -0.012743118219077587, + 0.044765181839466095, + 0.013225440867245197, + 0.01567200757563114, + 0.03288185968995094, + 0.009562580846250057, + 0.03534240648150444, + -0.050804708153009415, + 0.027024077251553535, + -0.07353680580854416, + -0.03128809481859207, + -0.021627651527523994, + 0.06397422403097153, + 0.054411645978689194, + -0.03992797061800957, + 0.029274920001626015, + 0.08007963001728058, + 0.018174495548009872, + -0.04655466973781586, + -0.0003626161487773061, + 0.0796881765127182, + 0.018048672005534172, + 0.016748497262597084, + -0.03151177987456322, + -0.055949486792087555, + -0.09081655740737915, + 0.03850197046995163, + -0.04761718213558197, + -0.06106630712747574, + -0.010023933835327625, + 0.006675632204860449, + -0.030365388840436935, + -0.03243448585271835, + 0.014721342362463474, + 0.03414009138941765, + 0.048036590218544006, + 0.03514667972922325, + 0.04250036180019379, + -0.039424676448106766, + 0.04638690501451492, + 0.044960908591747284, + -0.010569168254733086, + 0.012491471134126186, + -0.0737604945898056, + 0.05558599904179573, + 0.02083076909184456, + -0.08158950507640839, + -0.032490406185388565, + -0.0985337346792221, + -0.056452780961990356, + -0.017657222226262093, + -0.03777499124407768, + 0.06403014808893204, + -0.00555720180273056, + 0.015574145130813122, + -0.020579122006893158, + 0.015895694494247437, + -0.07163547724485397, + 0.056452780961990356, + -0.032937780022621155, + -0.01695820316672325, + -0.006084961351007223, + 0.05315341055393219, + -0.12996162474155426, + -0.0430595763027668, + 0.011470903642475605, + -0.022284729406237602, + -0.006944754626601934, + -0.013225440867245197, + -0.04979811981320381, + 0.06710582971572876, + -0.040011852979660034, + -0.018747692927718163, + -0.03606938570737839, + -0.026450881734490395, + -0.0033640293404459953, + 0.08645468205213547, + -0.029834134504199028, + -0.005434873513877392, + 0.05676034837961197, + 0.060395248234272, + -0.01908322051167488, + 0.03193119168281555, + -0.01676247827708721, + -0.015350459143519402, + -0.00644146092236042, + 0.043339185416698456, + 0.0008152310037985444, + 0.015266576781868935, + -0.011219256557524204, + 0.015965595841407776, + -0.009003366343677044, + 0.019237006083130836, + -0.07146771252155304, + -0.005882245488464832, + -0.005018956959247589, + -0.0050958492793142796, + 0.051643531769514084, + 0.04820435494184494, + -0.08628691732883453, + 0.026758451014757156, + 0.0336647592484951, + 0.015546184964478016, + 0.08679021149873734, + -0.011610707268118858, + -0.012973794713616371, + -0.005560697056353092, + -0.00371878151781857, + -0.0181884765625, + -0.019712338224053383, + 0.04345102608203888, + -0.036600638180971146, + -0.02211696468293667, + -0.035118717700242996, + -0.013959411531686783, + 0.007884935475885868, + -0.0093458853662014, + 0.031399939209222794, + 0.02049523964524269, + 0.06721767783164978, + 0.019306907430291176, + 0.0035370367113500834, + 0.05457941070199013, + 0.0010284318123012781, + -0.04143785312771797, + -0.017447516322135925, + 0.0003910138038918376, + -0.005833314266055822, + 0.03246244788169861, + 0.01644092984497547, + -0.008325316943228245 + ] + }, + { + "id": "cf7c48a4-389c-4a40-8d93-63e2e2d914ad", + "productId": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "category": "Media", + "docType": "customerRating", + "userName": "hensondestiny", + "reviewDate": "2022-04-24T19:33:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "793c66e2-d42b-461f-b507-4ce44edce801", + "productId": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "category": "Media", + "docType": "customerRating", + "userName": "carrilloanthony", + "reviewDate": "2021-12-24T00:40:38", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c06478dc-44ef-45da-8ea2-826abb5c6695", + "productId": "fd2ae1d7-0a22-4a59-a019-8a9e44990da8", + "category": "Media", + "docType": "customerRating", + "userName": "jeremy72", + "reviewDate": "2022-06-10T20:18:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Silver)", + "description": "This Premium Keyboard Mini (Silver) is equipped only with a special mechanical keypad built into the keyboard case. Compared to two keycaps with its similar construction we are able to easily match or even exceed its original function without compromising the key's unique shape. Each MX Pro Keyboard Mini will be compatible with any of the MX models, all of which were designed to provide gamers with a complete, all-encompassing keyboard experience without compromising on features like brightness", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2018-10-25T11:28:12", + "price": 428.64, + "stock": 66, + "priceHistory": [ + { + "priceDate": "2021-01-05T14:30:08", + "newPrice": 408.43 + }, + { + "priceDate": "2021-12-01T14:30:08", + "newPrice": 431.4 + }, + { + "priceDate": "2022-10-27T14:30:08", + "newPrice": 415.02 + }, + { + "priceDate": "2024-12-02T14:30:08", + "newPrice": 428.64 + } + ], + "descriptionVector": [ + -0.00602586567401886, + 0.018504392355680466, + -0.03163653984665871, + -0.0036471558269113302, + -0.02927275374531746, + -0.0006461614393629134, + 0.0022518651094287634, + 0.02588227204978466, + 2.4646096790092997e-05, + 0.003381528425961733, + 0.04216613620519638, + -0.013120210729539394, + -0.019722100347280502, + -0.08141932636499405, + -0.0020086218137294054, + 0.017322499305009842, + -0.0310635007917881, + 0.016462938860058784, + -0.033761560916900635, + -0.018217872828245163, + -0.00624970905482769, + -0.0677141323685646, + -0.062270261347293854, + 0.0035814952570945024, + 0.012618801556527615, + -0.01432598102837801, + -0.01444536354392767, + -0.00526479771360755, + -0.009234288707375526, + 0.05023643746972084, + 0.06059889867901802, + -0.013335100375115871, + -0.034382354468107224, + 0.0532926470041275, + -0.008709002286195755, + -0.03648349642753601, + -0.03481213375926018, + -0.028460947796702385, + -0.04441054165363312, + 0.002532415557652712, + 0.04381362348794937, + 0.0023772174026817083, + 0.011968162842094898, + -0.048779964447021484, + -0.0049603707157075405, + 0.09030143171548843, + -0.036770015954971313, + -0.022539542987942696, + -0.03963521495461464, + -0.002529430901631713, + 0.08065526932477951, + 0.05248084291815758, + -0.029225001111626625, + 0.05544154718518257, + 0.037414684891700745, + -0.025285355746746063, + -0.002563753630965948, + 0.14765310287475586, + 0.06441915780305862, + -0.07836311310529709, + 0.006016911938786507, + -0.05539379268884659, + 0.014206597581505775, + -0.001541535253636539, + 0.025834519416093826, + -0.034286849200725555, + -0.08691094815731049, + -0.07545016705989838, + 0.03457336872816086, + 0.006763056851923466, + -0.062031496316194534, + -0.011824903078377247, + -0.023637868463993073, + 0.06737986207008362, + 0.02386469580233097, + -0.02134571224451065, + 0.10668080300092697, + 0.0648011863231659, + 0.07931818068027496, + 0.021811306476593018, + -0.008201624266803265, + 0.025762889534235, + -0.0868631973862648, + -0.04994991794228554, + 0.006255678366869688, + 0.005763222463428974, + 0.025428615510463715, + -0.061792731285095215, + -0.0466788224875927, + 0.0706748366355896, + -0.11651797592639923, + -0.005805006716400385, + 0.028222182765603065, + -0.016331618651747704, + 0.0017012102762237191, + 0.035289667546749115, + -0.03018006682395935, + 0.0583067424595356, + -0.008153870701789856, + -0.0583067424595356, + -0.016725583001971245, + 0.018516330048441887, + 0.010069970972836018, + 0.032758742570877075, + 0.0020429445430636406, + 0.07325351238250732, + 0.04698921740055084, + 0.03648349642753601, + -0.03371380642056465, + -0.11183815449476242, + -0.004085889086127281, + 0.028437072411179543, + -0.044243402779102325, + -0.0055662402883172035, + -0.030203942209482193, + -0.031755924224853516, + -0.10935498774051666, + 0.006046757567673922, + -0.017215054482221603, + -0.05458198860287666, + 0.03980235010385513, + 0.0512392595410347, + -0.01507809478789568, + 0.024760069325566292, + -0.05453423410654068, + 0.029320508241653442, + -0.015185539610683918, + 0.056730885058641434, + 0.025022713467478752, + -0.029559273272752762, + -0.03777283430099487, + 0.0451984703540802, + 0.08146707713603973, + 0.040709663182497025, + -0.019590778276324272, + -0.011395123787224293, + -0.032519977539777756, + 0.10343357920646667, + -0.011454815044999123, + 0.05601458624005318, + 0.026073284447193146, + 0.008858231827616692, + -0.018886417150497437, + 0.01319184061139822, + -0.06618603318929672, + 0.008267284370958805, + -0.05443872883915901, + 0.0903969407081604, + -0.0059781125746667385, + 0.07960470020771027, + -0.011126511730253696, + -0.06747537106275558, + -0.04390913248062134, + -0.09345314651727676, + 0.04780102148652077, + 0.08280416578054428, + -0.06074215844273567, + -0.018098488450050354, + 0.028866851702332497, + 0.06704559177160263, + 0.010684793815016747, + -0.006476537324488163, + 0.0242228452116251, + 0.03672226518392563, + -0.028699714690446854, + 0.042715299874544144, + 0.02829381264746189, + 0.02261117286980152, + -0.0001538923679618165, + 0.007670368999242783, + -0.06909897923469543, + -0.0015475043328478932, + 0.027673019096255302, + -0.07091360539197922, + 0.06279554963111877, + -0.002336925594136119, + -0.03433459997177124, + -0.05147802457213402, + 0.01110263541340828, + 0.009550653398036957, + 0.022384345531463623, + 0.015424305573105812, + -0.0959840714931488, + -0.04672657325863838, + 0.13170351088047028, + 0.009890896268188953, + -0.04620128870010376, + 0.02008024975657463, + -0.028508702293038368, + 0.03600596636533737, + 0.05458198860287666, + 0.029201123863458633, + -0.06136295199394226, + 0.037677329033613205, + 0.013788756914436817, + 0.05085723102092743, + 0.036435745656490326, + 0.00460819061845541, + 0.03170816972851753, + 0.011741335503757, + 0.006601889617741108, + 0.0532926470041275, + 0.03631636127829552, + -0.019638532772660255, + 0.06327307969331741, + 0.05429546535015106, + -0.022802185267210007, + -0.0010311721125617623, + 0.0015982422046363354, + 0.0055871326476335526, + -0.023327471688389778, + -0.011580168269574642, + 0.02879522182047367, + -0.04734736680984497, + 0.07869739085435867, + -0.0012318851659074426, + -0.016248049214482307, + 0.04187961667776108, + -0.06289105862379074, + -0.05930956080555916, + 0.0512392595410347, + -0.007467417512089014, + 0.045628249645233154, + 0.016116729006171227, + -0.013812633231282234, + -0.024688439443707466, + -0.005715469364076853, + -0.012654616497457027, + 0.04646393284201622, + 0.018396947532892227, + -0.06375061720609665, + -0.0029368260875344276, + 0.003951583057641983, + 0.028628084808588028, + -0.001352760591544211, + -0.007598739117383957, + -0.013514175079762936, + -0.04899485409259796, + -0.08815253525972366, + 0.09961331635713577, + -0.03166041895747185, + 0.04596251994371414, + -0.05147802457213402, + -0.04102005809545517, + 0.03474050387740135, + -0.05109599977731705, + 0.09507676213979721, + -0.010780300945043564, + -0.13733839988708496, + 0.03242446854710579, + -0.030012929812073708, + 0.009819266386330128, + 0.029201123863458633, + 0.0744950994849205, + -0.03512252867221832, + 0.04546111077070236, + 0.06365510821342468, + 0.013144087046384811, + -0.04472093656659126, + -0.02738649956882, + 0.030729228630661964, + -0.0119980089366436, + -0.035265788435935974, + -0.010654948651790619, + -0.033880945295095444, + 0.05037970095872879, + 0.06780964136123657, + -0.07239395380020142, + -0.07984346896409988, + 0.05162128433585167, + 0.03474050387740135, + -0.039945609867572784, + -0.006846624892205, + 0.014672191813588142, + 0.032018568366765976, + -0.032639358192682266, + -0.04448217153549194, + 0.09426495432853699, + -0.009365609847009182, + -0.011072789318859577, + 0.04835018515586853, + 0.081849105656147, + 0.06021687388420105, + 0.0512392595410347, + 0.081849105656147, + 0.028078923001885414, + -0.029320508241653442, + 0.020677166059613228, + -0.02600165456533432, + -0.02386469580233097, + -0.023828880861401558, + 0.010768362320959568, + 0.029081741347908974, + 0.023673683404922485, + 0.009819266386330128, + -0.0013326146872714162, + 0.044601552188396454, + 0.008589619770646095, + 0.05868876725435257, + -0.013585804961621761, + 0.02991742268204689, + -0.007867351174354553, + -0.0986582562327385, + -0.03485988825559616, + 0.010750454850494862, + 0.07974795997142792, + -0.06021687388420105, + 0.014003646560013294, + -0.04531785100698471, + -0.04049477353692055, + 0.06804841011762619, + -0.02588227204978466, + -0.054104454815387726, + 0.039587460458278656, + -0.004342562984675169, + -0.05037970095872879, + 0.036555126309394836, + 0.00952080823481083, + -0.04367036372423172, + -0.04646393284201622, + 0.009556623175740242, + 0.005163322202861309, + -0.09913578629493713, + 0.028723591938614845, + 0.018635712563991547, + -0.030132312327623367, + -0.026049409061670303, + 0.016462938860058784, + 0.06045563891530037, + -0.07320576161146164, + -0.062270261347293854, + -0.0345972441136837, + -0.0724417120218277, + -0.02829381264746189, + -0.0022772341035306454, + -0.029869670048356056, + -0.006470568012446165, + 0.056874144822359085, + 0.0384175069630146, + 0.0037904158234596252, + 0.01639130897819996, + 0.01956690289080143, + -0.004050074145197868, + -0.026717953383922577, + -0.02219333127140999, + -0.0730147510766983, + -0.08624240756034851, + -0.0248794537037611, + -0.023673683404922485, + -0.007503232453018427, + 0.0013863370986655354, + -0.0527196079492569, + 0.08461879193782806, + -0.035791076719760895, + 0.013490298762917519, + -0.006745149381458759, + -0.009479023516178131, + 0.006757087539881468, + 0.044362787157297134, + 0.13647884130477905, + 0.014612500555813313, + -0.0032263302709907293, + 0.058641016483306885, + 0.025547999888658524, + -0.028747467324137688, + 0.044864196330308914, + -0.06599501520395279, + 0.00946708582341671, + -0.08514408022165298, + 0.018014920875430107, + 0.034286849200725555, + -0.013024704530835152, + 0.004554468207061291, + 0.10515269637107849, + 0.03230508789420128, + 0.07177316397428513, + -0.036029841750860214, + -0.02726711705327034, + -0.04835018515586853, + 0.050188686698675156, + -0.03309301659464836, + 0.04207063093781471, + -0.04125882312655449, + 0.009114905260503292, + -0.009586469270288944, + -0.03256772831082344, + -0.030872488394379616, + -0.013657434843480587, + -0.026312051340937614, + 0.02573901228606701, + -0.072728231549263, + -0.013406730256974697, + -0.006279554683715105, + 0.030609846115112305, + -0.0015907807974144816, + 0.015173600986599922, + 0.005822914186865091, + 0.0585932619869709, + 0.02600165456533432, + 0.012021885253489017, + 0.019280383363366127, + 0.0219426266849041, + -0.029248878359794617, + -0.021357649937272072, + -0.014457302168011665, + -0.10190548002719879, + 0.010726578533649445, + 0.12062475830316544, + -0.010648978874087334, + -0.07521139830350876, + -0.016057036817073822, + -0.022264961153268814, + -0.015830209478735924, + -0.03724754974246025, + 0.04784877598285675, + -0.012236774899065495, + 0.06031237915158272, + 0.0544864796102047, + 0.0532926470041275, + -0.01982954517006874, + 0.0733012706041336, + -0.04641617834568024, + -0.011729396879673004, + -0.031851429492235184, + 0.021906811743974686, + 0.017979105934500694, + -0.04452992230653763, + 0.052337583154439926, + 0.0721551924943924, + -0.05973934009671211, + 0.025404740124940872, + -0.04128270223736763, + -0.028460947796702385, + -0.05314938724040985, + -0.05553705245256424, + -0.007968827150762081, + -0.028222182765603065, + -0.0119980089366436, + 0.009544684551656246, + 0.04835018515586853, + -0.010834023356437683, + -0.048159170895814896, + -0.05663537606596947, + -0.023781128227710724, + -0.05763819441199303, + 0.021309897303581238, + -0.042595915496349335, + 0.047657761722803116, + 0.0694810077548027, + -0.014421487227082253, + -0.041449837386608124, + -0.060025859624147415, + 0.012063669972121716, + 0.008595588617026806, + 0.072728231549263, + -0.034382354468107224, + 0.030872488394379616, + 0.039086051285266876, + 0.003724755020812154, + 0.040852922946214676, + 0.023673683404922485, + 0.03796384856104851, + 0.019220691174268723, + 0.018337255343794823, + -0.025404740124940872, + -0.04204675182700157, + 0.03144552931189537, + 0.0371042899787426, + -0.005184214096516371, + 0.04116331785917282, + 0.047156352549791336, + -0.033116891980171204, + 0.015424305573105812, + -0.0544864796102047, + 0.047920405864715576, + -0.07473386824131012, + -0.0028920574113726616, + -0.014564746990799904, + -0.020510029047727585, + -0.0006935416022315621, + -0.007598739117383957, + -0.0076047079637646675, + -0.06790515035390854, + 0.02573901228606701, + 0.03719979524612427, + 0.004426131024956703, + -0.013227655552327633, + 0.014206597581505775, + 0.045007456094026566, + 0.024569056928157806, + 0.0434315986931324, + 0.005590117070823908, + 0.04106781259179115, + -0.06699783354997635, + 0.011263802647590637, + 0.013872324489057064, + -0.014958711341023445, + 0.03946807608008385, + 0.036793895065784454, + 0.047275736927986145, + 0.012135299853980541, + -0.05085723102092743, + -0.018229810521006584, + 0.059023041278123856, + 0.027338746935129166, + 0.04579538479447365, + -0.024306414648890495, + 0.05415220558643341, + 0.0759754478931427, + 0.014899020083248615, + 0.03354667127132416, + -0.06246127560734749 + ] + }, + { + "id": "b2c97460-4df8-4939-87e0-825a58169d2d", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "padillaamanda", + "reviewDate": "2021-12-21T11:44:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "72d262b7-5fb3-4b69-bdd4-f1b0cf2fd80d", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher79", + "reviewDate": "2022-08-15T06:51:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9eae2269-9f44-4835-815c-53d0842d2a9e", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberlybuck", + "reviewDate": "2021-03-08T21:42:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "58eaabfd-f2c1-4159-800b-3fa34e9750d2", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "umiller", + "reviewDate": "2021-09-04T09:23:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d54299cf-242a-4bbd-99a9-7eb571040270", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wfitzgerald", + "reviewDate": "2022-08-03T08:41:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "be06cfcb-a2a6-41de-8a5f-44287f9a16a3", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alexis86", + "reviewDate": "2022-10-28T21:35:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "45b67f23-74b1-4696-899a-03019e564a09", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "delgadoderek", + "reviewDate": "2022-05-29T14:04:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2bfbbd6a-d9f3-4bfa-a1bc-cbf4a7cb497c", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "abrown", + "reviewDate": "2021-08-06T14:48:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "94362e48-e9af-43c3-b2f4-6e0f159ea181", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paula77", + "reviewDate": "2022-01-28T02:04:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7cc3138b-2f31-4ce2-9589-d882328b930d", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "woodmelissa", + "reviewDate": "2022-09-13T15:38:02", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3a0dd4b6-3762-464c-a44d-2f0723c2f3ef", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joseph74", + "reviewDate": "2022-05-22T22:37:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "383be993-dd4c-4d31-a129-3b23aedd6320", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reginaware", + "reviewDate": "2021-04-12T09:11:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0b04f070-dcf1-4657-99cc-f7b36088784f", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenniferbrown", + "reviewDate": "2021-05-15T05:10:35", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7979419e-57ff-423b-acbc-f5bd8be08201", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "caldwellbilly", + "reviewDate": "2022-04-06T20:05:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b04d627d-ddaf-4a1a-884a-ee73d6a474c6", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "elizabeth76", + "reviewDate": "2022-07-06T21:41:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "df8dd69b-0980-459e-be26-01a09ae22619", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bakermary", + "reviewDate": "2021-01-05T14:30:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1c8f3a96-204f-4dd7-b20b-84c6d968f559", + "productId": "2657c402-5302-4a7c-b3c4-12ff209c3008", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jwelch", + "reviewDate": "2022-09-10T19:22:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "product", + "name": "Amazing TV + (Steel)", + "description": "This Amazing TV + (Steel) is really nice and simple! I've been on it for about 4 years and haven't heard it play with my old box or anything so… I had to make a post to get it back. I have it in the front of my room ready for you to play, but I found it to be a real pain to move as I used it all over the place. There", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-07-02T11:51:13", + "price": 1081.15, + "stock": 100, + "priceHistory": [ + { + "priceDate": "2021-05-18T04:30:48", + "newPrice": 1022.49 + }, + { + "priceDate": "2022-02-14T04:30:48", + "newPrice": 1029.87 + }, + { + "priceDate": "2022-11-13T04:30:48", + "newPrice": 1175.07 + }, + { + "priceDate": "2024-11-26T04:30:48", + "newPrice": 1081.15 + } + ], + "descriptionVector": [ + 0.022336579859256744, + 0.0308757983148098, + -0.03396057337522507, + -0.0017947785090655088, + -0.052300967276096344, + 0.027622763067483902, + -0.08166242390871048, + 0.0371294803917408, + 0.040550775825977325, + 0.13281360268592834, + 0.030258843675255775, + -0.010670519433915615, + 0.0717911422252655, + 0.0294455848634243, + 0.03219383955001831, + -0.03163297101855278, + 0.020499736070632935, + 0.02372472919523716, + -0.007291287649422884, + -0.02964188903570175, + 0.07560504227876663, + -0.07672677934169769, + -0.02407527156174183, + 0.012738720513880253, + -0.046271633356809616, + -0.019812671467661858, + -0.04307468608021736, + 0.01214279793202877, + -0.040522731840610504, + -0.049019888043403625, + 0.005720856599509716, + 0.050674449652433395, + -0.04271012172102928, + 0.09467456489801407, + -0.03696122020483017, + 0.02205614559352398, + -0.023822881281375885, + 0.04447685554623604, + -0.033203400671482086, + 0.05816204100847244, + -0.01039008516818285, + 0.02647298388183117, + 0.02392103150486946, + 0.029361454769968987, + 0.016503550112247467, + 0.008090524934232235, + 0.03825121745467186, + 0.004795423708856106, + 0.060405515134334564, + 0.025253094732761383, + -0.0010156973730772734, + -0.006586696952581406, + -0.011091169901192188, + -0.021481255069375038, + -0.02849210798740387, + -0.011546876281499863, + 0.02002299763262272, + 0.006302757188677788, + 0.023121794685721397, + -0.04262598976492882, + 0.0068951742723584175, + 0.0294455848634243, + -0.0027938252314925194, + -0.022000057622790337, + -0.025337224826216698, + 0.028043413534760475, + -0.01562018133699894, + -0.012276004999876022, + -0.021733645349740982, + 0.028800586238503456, + -0.04798228293657303, + -0.08076503127813339, + 0.00037113705184310675, + 0.05412378907203674, + 0.05518943816423416, + -0.04691663384437561, + 0.005850557237863541, + 0.007859166711568832, + -0.0068706367164850235, + 0.0045815929770469666, + 0.005619199015200138, + 0.03157688304781914, + -0.07397852838039398, + 0.008819653652608395, + 0.03258644789457321, + 0.06074203550815582, + -0.029557758942246437, + -0.11088366061449051, + -0.03331557661294937, + 0.09248717874288559, + -0.05681595578789711, + -0.013734262436628342, + 0.03334362059831619, + -0.07605373859405518, + 0.07381026446819305, + 0.02061191014945507, + -0.10589193552732468, + 0.05246922746300697, + -0.04186881706118584, + 0.020331475883722305, + 0.07695113122463226, + -0.0806528627872467, + -0.04562663659453392, + -0.04837489128112793, + -0.05558204650878906, + -0.01749909110367298, + -0.03382035717368126, + 0.04397207498550415, + 0.023963097482919693, + -0.17151352763175964, + 0.04004599526524544, + -0.029838193207979202, + 0.032081667333841324, + -0.0005832153838127851, + -0.00639740377664566, + 0.007228190079331398, + -0.023612555116415024, + -0.04352337867021561, + -0.00874954555183649, + -0.0023328615352511406, + -0.014105837792158127, + -0.00947867427021265, + -0.04343925043940544, + 0.04133599251508713, + 0.009219272062182426, + 0.0060503664426505566, + -0.009198240004479885, + 0.02776297926902771, + 0.04444881156086922, + 0.08771979808807373, + -0.08777588605880737, + 0.026178527623414993, + 0.009618891403079033, + 0.008490143343806267, + -0.04212120920419693, + 0.05199249088764191, + 0.008167644031345844, + 0.017555177211761475, + -0.005948709324002266, + -0.03199753537774086, + -0.013481871224939823, + 0.00744552630931139, + -0.0006686601554974914, + 0.07420287281274796, + -0.026080375537276268, + 0.0367368720471859, + -0.03984969109296799, + -0.01949017308652401, + -0.031184276565909386, + 0.05678791552782059, + 0.013993663713335991, + -0.09618891030550003, + -0.08783197402954102, + -0.03819512948393822, + 0.08323284983634949, + 0.08384981006383896, + -0.0665750652551651, + 0.06932332366704941, + -0.050113581120967865, + 0.05647943541407585, + 0.008847697637975216, + -0.1340475231409073, + -0.0827280730009079, + 0.019574303179979324, + 0.04988923296332359, + -0.029137106612324715, + 0.09742282330989838, + 0.01712050475180149, + -0.007466558832675219, + 0.025112876668572426, + 0.01651757024228573, + 0.008391991257667542, + 0.02023332379758358, + 0.04509380832314491, + 0.013005133718252182, + -0.046608153730630875, + 0.09663760662078857, + -0.034128833562135696, + 0.011708125472068787, + -0.0875515416264534, + -0.025421354919672012, + 0.04069099575281143, + -0.0407751239836216, + -0.030062539502978325, + 0.0024380243849009275, + 0.06522898375988007, + -0.010831768624484539, + -0.034297097474336624, + -0.00884068664163351, + 0.048991844058036804, + 0.019910823553800583, + 0.03544687479734421, + 0.07958720624446869, + -0.027230154722929, + 0.0061344970017671585, + -0.013439806178212166, + 0.03984969109296799, + 9.590628906153142e-05, + -0.03438122570514679, + -0.009653945453464985, + -0.014400293119251728, + 0.00771894957870245, + 0.13573013246059418, + -0.01766735129058361, + -0.047533586621284485, + -0.044224463403224945, + 0.023864945396780968, + 0.013376708142459393, + 0.04593511298298836, + 0.012991111725568771, + -0.032277971506118774, + 0.0020997505635023117, + -0.014848987571895123, + -0.02187386341392994, + 0.04969292879104614, + -0.02187386341392994, + -0.05218879505991936, + 0.04304664209485054, + -0.04083121195435524, + -0.03861578181385994, + 0.10662106424570084, + -0.0016282707219943404, + -0.048991844058036804, + -0.004693766590207815, + -0.020121149718761444, + -0.06349028646945953, + 0.03497013822197914, + 0.05115118622779846, + 0.03303514048457146, + 0.03954121470451355, + -0.07072549313306808, + 0.04102751612663269, + 0.027356350794434547, + 0.054880961775779724, + -0.06119072809815407, + 0.024411791935563087, + 0.004879554267972708, + 0.04301859810948372, + -0.04029838740825653, + -0.029838193207979202, + -0.049945320934057236, + -8.363729284610599e-05, + -0.041111644357442856, + -0.0661824569106102, + 0.023023642599582672, + 0.012065678834915161, + 0.09394543617963791, + -0.02393505349755287, + 0.005244118627160788, + -0.03438122570514679, + -0.003270563203841448, + -0.02076614834368229, + -0.015942681580781937, + 0.020485714077949524, + 0.04952466860413551, + 0.056759871542453766, + 0.06506071984767914, + -0.0419529490172863, + 0.03168905898928642, + -0.026571134105324745, + -0.09450630843639374, + -0.10095629096031189, + 0.01507333479821682, + 0.01653159223496914, + 0.035951655358076096, + 0.0360918752849102, + 0.023430272936820984, + -0.051039014011621475, + -0.008518187329173088, + 0.019265824928879738, + -0.022098209708929062, + 0.03216579556465149, + 0.01674191839993, + -0.0007137925131246448, + -0.043831855058670044, + -0.019434086978435516, + -0.07050114125013351, + 0.03267057612538338, + -0.03850360959768295, + -0.004315180238336325, + 0.060237254947423935, + -0.0023170870263129473, + 0.0364844836294651, + -0.0189573485404253, + -0.002169859129935503, + -0.04725315421819687, + 0.023304076865315437, + 0.01055834535509348, + 0.04767380282282829, + -0.00016771275841165334, + -0.0076768845319747925, + -0.03460557386279106, + 0.0077680256217718124, + 0.03511035442352295, + 0.023808859288692474, + 0.08923414349555969, + -0.0054439278319478035, + -0.04113968834280968, + -0.006071398966014385, + -0.045346200466156006, + 0.03931686654686928, + 0.05129140615463257, + -0.05905942991375923, + -0.05555400252342224, + -0.07313722372055054, + -0.018480610102415085, + 0.03157688304781914, + -0.008910794742405415, + -0.03362405300140381, + -0.05246922746300697, + 0.06197594478726387, + 0.00602232338860631, + -0.052329011261463165, + -0.03488600626587868, + 0.017779525369405746, + -0.05754508450627327, + -0.013096274808049202, + 0.00975209753960371, + -0.018438544124364853, + 0.04946858435869217, + 0.05412378907203674, + -0.051010970026254654, + -0.03645643964409828, + 0.06220029294490814, + -0.0015362532576546073, + -0.11222974210977554, + -0.014232032932341099, + -0.0819428563117981, + 0.039429038763046265, + 0.03275470808148384, + 0.011722147464752197, + 0.11901625245809555, + 0.03390448912978172, + 0.08345720171928406, + 0.06696767359972, + -0.050478145480155945, + 0.006485039368271828, + -0.06068594753742218, + -0.005440422333776951, + 0.026529069989919662, + 0.05314226821064949, + 0.012766764499247074, + 0.09921760112047195, + -0.06724810600280762, + -0.02868841215968132, + -0.05412378907203674, + 0.041672512888908386, + -0.015550073236227036, + -0.009051011875271797, + -0.09187022596597672, + 0.0016922447830438614, + -0.06130290403962135, + 0.02981014922261238, + 0.024608096107840538, + 0.04896380007266998, + 0.04492554813623428, + -0.07291287928819656, + -0.05647943541407585, + 0.03701730817556381, + 0.044028159230947495, + 0.07235200703144073, + -0.044252507388591766, + -0.004546538460999727, + 0.040382515639066696, + -0.0005753281875513494, + 0.04467315971851349, + -0.050506189465522766, + 0.0054334113374352455, + -0.019041478633880615, + 0.06433159112930298, + -0.006267703138291836, + -0.02595417946577072, + -0.08788806200027466, + 0.018073979765176773, + -0.06601420044898987, + -0.017793545499444008, + 0.05199249088764191, + -0.02002299763262272, + 0.09310413897037506, + 0.02298157848417759, + -0.055273570120334625, + 0.010053563863039017, + 0.043691638857126236, + -0.017064416781067848, + 0.0004370828974060714, + 0.031717102974653244, + -0.06466811150312424, + 0.010782692581415176, + -0.01580246351659298, + 0.008980903774499893, + 0.01602681167423725, + 0.06124681606888771, + 0.0389523021876812, + 0.04601924121379852, + 0.023107772693037987, + -0.056395307183265686, + -0.05978855863213539, + 0.016251157969236374, + 0.030202757567167282, + 0.006548137404024601, + 0.04324294626712799, + 0.0216915812343359, + 0.060798123478889465, + -0.012311059050261974, + -0.05056227743625641, + -0.04565467685461044, + -0.012598504312336445, + 0.05956421047449112, + -0.06287333369255066, + -0.051207274198532104, + -0.06270507723093033, + -0.046776413917541504, + 0.045486416667699814, + -0.008307861164212227, + 0.07409069687128067, + 0.0915897935628891, + 0.03396057337522507, + -0.007340363692492247, + 0.02981014922261238, + -0.03255840390920639, + 0.006446479819715023, + 0.05917160585522652, + 0.02849210798740387, + 0.007333352696150541, + -0.020177235826849937, + 0.015143443830311298, + 0.009366500191390514, + -0.0686502754688263, + -0.009471663273870945, + -0.05190835893154144, + 0.02867439016699791, + -0.01671387441456318, + 0.005072352476418018, + 0.028646348044276237, + 0.0001723136374494061, + 0.007543678395450115, + 0.025968201458454132, + -0.006600718479603529, + -0.050506189465522766, + 0.03884012997150421, + 0.012360135093331337, + -0.019994953647255898, + 0.042569901794195175, + 0.018887240439653397, + 0.016980286687612534, + -0.05022575333714485, + 0.07481982558965683, + 0.029333410784602165, + 0.028646348044276237, + -0.018817130476236343, + 0.021803755313158035, + 0.005962730851024389, + 0.002513390965759754, + -0.021957993507385254, + -0.08413024246692657, + 0.015101378783583641, + 0.01095095369964838, + 0.05171205475926399, + -0.023233968764543533, + -0.02152332104742527, + 0.03976556286215782, + 0.07863373309373856, + -0.011609973385930061, + 0.016405398026108742, + -0.03382035717368126, + -0.033203400671482086, + 0.0035474919714033604, + 0.007207157555967569, + 0.016994308680295944, + 0.0006936363060958683, + -0.006744441110640764, + -0.0819428563117981, + -0.09658151865005493, + 0.08654197305440903, + -0.021284950897097588, + -0.05171205475926399, + 0.034857962280511856, + -0.03415687754750252, + -0.046972718089818954, + -0.024860486388206482, + -0.044056203216314316, + 0.001005181111395359, + -0.0034370708744972944, + 0.034128833562135696, + 0.0008842439274303615, + 0.005184526089578867, + -0.04969292879104614, + 0.03592361509799957, + -0.03516644239425659, + 0.041111644357442856, + 0.01671387441456318, + -0.0008202698663808405, + -0.013334643095731735, + -0.03253035992383957, + -0.002855170052498579, + -0.04694467410445213, + 0.011049104854464531, + -0.03749404475092888, + -0.06691158562898636, + -0.024692226201295853, + 0.021579407155513763, + 0.03892425820231438, + -0.0584985613822937, + 0.03199753537774086, + 0.03328753262758255, + 0.0035264594480395317, + 0.03152079880237579, + -0.03920469433069229, + 0.026795482262969017, + 0.03149275481700897, + 0.026599178090691566, + 0.03920469433069229 + ] + }, + { + "id": "2d960263-9bb2-4d9a-a0e8-490284563dd2", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "tracy87", + "reviewDate": "2021-06-25T19:16:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1f087623-1f8c-43da-8767-1d4d3a7c218e", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "xpugh", + "reviewDate": "2022-03-07T04:45:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a5e720df-14d9-4527-a6ff-2edaac05d9cf", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "robertjones", + "reviewDate": "2021-07-07T15:33:54", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a61d0b3f-82a2-4fe3-884b-b371ae6608e4", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "matthew52", + "reviewDate": "2022-06-13T11:21:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a9086509-82da-4be3-960e-1081bf9a85b9", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "vanessastein", + "reviewDate": "2021-06-29T12:31:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "75065978-8c05-479e-8b7a-30e8b5135be2", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "jasmin59", + "reviewDate": "2022-08-11T14:35:19", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0e4215bf-f08d-481d-bed3-aa67d12ba767", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "bradleychang", + "reviewDate": "2022-09-04T02:59:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "724bfe46-5a42-418d-8974-9901f84fe784", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "ohicks", + "reviewDate": "2022-11-14T15:09:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9ae19ae9-2814-47be-b302-c9b80e32781c", + "productId": "778e91a9-d88a-4c53-9aed-b8b2e4222a5e", + "category": "Media", + "docType": "customerRating", + "userName": "albert50", + "reviewDate": "2021-05-18T04:30:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Super (Black)", + "description": "This Amazing Speaker Super (Black) is a speaker at a very high quality. It has a nice, clear sound with no harshness in the high range of frequencies, though the speaker has a slight low end on it that is noticeable at times, but it's very smooth and is not sagged at all. The black speaker has a natural looking silver/gold finish with many colors", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-05-23T10:28:17", + "price": 394.8, + "stock": 4, + "priceHistory": [ + { + "priceDate": "2021-01-01T16:27:58", + "newPrice": 417.77 + }, + { + "priceDate": "2021-08-14T16:27:58", + "newPrice": 381.04 + }, + { + "priceDate": "2022-03-27T16:27:58", + "newPrice": 399.54 + }, + { + "priceDate": "2022-11-07T16:27:58", + "newPrice": 371.07 + }, + { + "priceDate": "2024-01-30T16:27:58", + "newPrice": 394.8 + } + ], + "descriptionVector": [ + 0.021251706406474113, + 0.03319590166211128, + -0.039655789732933044, + -0.04685394838452339, + -0.0378364734351635, + -0.0017023116815835238, + -0.05695246160030365, + -0.011133415624499321, + -0.01684843748807907, + 0.06596993654966354, + 0.0017138472758233547, + 0.07229799032211304, + -0.0035957833752036095, + 0.015938779339194298, + -0.02080346830189228, + 0.0012779698008671403, + 0.025602241978049278, + -0.045166466385126114, + 0.014725903049111366, + 0.0014551222557201982, + 0.005299742799252272, + -0.07076870650053024, + -0.029240870848298073, + -0.02088256925344467, + -0.0849013552069664, + -0.004568062257021666, + -0.013710778206586838, + 0.04334715008735657, + -0.002191747073084116, + -0.0007456883322447538, + 0.057690735906362534, + 0.0031014042906463146, + 0.004251659382134676, + 0.06960856169462204, + -0.0389966182410717, + 0.025325389578938484, + 0.012919771485030651, + -0.06470432877540588, + 0.05001797154545784, + 0.0028031289111822844, + 0.05500131472945213, + -0.013539393432438374, + -0.016492484137415886, + 0.015872862190008163, + -0.001159318839199841, + 0.047381285578012466, + 0.005382139701396227, + 0.07398546487092972, + 0.008272608742117882, + -0.048778727650642395, + 0.014594068750739098, + 0.019788343459367752, + -0.07129604369401932, + -0.033064067363739014, + 0.031218387186527252, + 0.018852319568395615, + 0.05827080458402634, + 0.10625852644443512, + 0.015134589746594429, + -0.0052667842246592045, + 0.04611567407846451, + -0.00829897541552782, + -0.013453700579702854, + -0.012557227164506912, + -0.0038528605364263058, + 0.030084609985351562, + -0.008160549215972424, + -0.014159015379846096, + -0.0505189448595047, + 0.07551474869251251, + 0.0063741933554410934, + -0.015503725968301296, + 0.04909513145685196, + 0.04674847796559334, + 0.060169219970703125, + -0.008734028786420822, + 0.04374265670776367, + 0.0753038078546524, + -0.023980677127838135, + 0.03309043496847153, + 0.04777678847312927, + 0.02731608785688877, + -0.02270188368856907, + 0.003159081796184182, + 0.04867326095700264, + 0.028634432703256607, + -0.015741027891635895, + -0.09497350454330444, + -0.003083277028053999, + 0.05101991444826126, + -0.03538435325026512, + 0.02147582359611988, + 0.046168409287929535, + 0.017797645181417465, + 0.075672946870327, + 0.018733669072389603, + -0.06813202053308487, + 0.014093097299337387, + -0.05252282693982124, + 0.03369687497615814, + 0.030269179493188858, + -0.08869818598031998, + -0.050545308738946915, + 0.017678992822766304, + -0.057690735906362534, + 0.008160549215972424, + -0.03638629615306854, + -0.0708741769194603, + 0.005586483050137758, + -0.09223134815692902, + 0.039444852620363235, + -0.028687166050076485, + 0.0069015310145914555, + -0.013150481507182121, + 0.05753253400325775, + 0.0558977872133255, + 0.03042737953364849, + -0.04941153526306152, + -0.0013636620715260506, + -0.027553390711545944, + -0.05173182114958763, + -0.027052419260144234, + -0.0034903157502412796, + 0.04492916539311409, + 0.01857546716928482, + -0.04020949453115463, + 0.01698027178645134, + 0.02512763813138008, + 0.014580884948372841, + 5.787067038909299e-06, + -0.07351086288690567, + 0.05816533789038658, + 0.047934990376234055, + 0.037256401032209396, + -0.03833744302392006, + 0.009149307385087013, + 0.02681511826813221, + 0.04005129262804985, + -0.008180324919521809, + -0.015345524996519089, + 0.010026006028056145, + 0.026050478219985962, + 0.06997770071029663, + 0.08136819303035736, + 0.000468424113932997, + -0.015833312645554543, + -0.05711066350340843, + -0.0012672581942752004, + -0.036544498056173325, + -0.0037638721987605095, + 0.04925333335995674, + -0.08342481404542923, + -0.021106688305735588, + -0.10172342509031296, + 0.03733550384640694, + 0.04548287019133568, + -0.11770175397396088, + 0.02829166315495968, + 0.020289314910769463, + 0.07177064567804337, + -0.011443226598203182, + -0.033011335879564285, + 0.0026300963945686817, + 0.030163710936903954, + -0.009696420282125473, + 0.051758185029029846, + 0.015095039270818233, + 0.03287950158119202, + -0.1096862256526947, + 0.055212248116731644, + 0.06001102179288864, + -0.02850259840488434, + 0.02030249871313572, + -0.06892302632331848, + 0.005174500402063131, + 0.017296673730015755, + 0.07467100769281387, + 0.02160765789449215, + -0.009406385011970997, + -0.003757280530408025, + -0.05347203463315964, + 0.037757374346256256, + -0.022121813148260117, + -0.010494018904864788, + 0.020183846354484558, + 0.037757374346256256, + 0.05099354684352875, + -0.007020181976258755, + -0.03206212818622589, + 0.014290849678218365, + -0.014409500174224377, + 0.006453293841332197, + -0.02879263460636139, + -0.027500657364726067, + -0.016149714589118958, + -0.004235180094838142, + 0.011113639920949936, + -0.011100457049906254, + -0.011186148971319199, + 0.02412569522857666, + -0.035410720854997635, + 0.039022982120513916, + 0.1129557192325592, + -0.008259424939751625, + -0.000547112780623138, + -0.07915337383747101, + 0.030664682388305664, + 0.07883697003126144, + -0.0004676001553889364, + 0.019761977717280388, + -0.017468057572841644, + 0.011957379989326, + -0.07736042886972427, + 0.025114454329013824, + 0.06496799737215042, + -0.012313333339989185, + 0.0003687243442982435, + -0.019616959616541862, + 0.02773795835673809, + -0.062436774373054504, + 0.022016344591975212, + -0.035832591354846954, + 0.05489584431052208, + 0.02224046364426613, + -0.06586446613073349, + 0.008028714917600155, + 0.025865910574793816, + -0.04405905678868294, + 0.025404488667845726, + 0.021067136898636818, + -0.053445667028427124, + 0.01836453191936016, + 0.013513026759028435, + 0.012155132368206978, + -0.0533929318189621, + 0.022662334144115448, + -0.005134949926286936, + -0.018338166177272797, + -0.08421581983566284, + 0.07994437962770462, + -0.03920755162835121, + -0.003315635258331895, + -0.06655000895261765, + -0.004047316033393145, + -0.029346337541937828, + -0.04909513145685196, + 0.08041898906230927, + -0.07614754885435104, + -0.060591090470552444, + 0.045904740691185, + -0.12740476429462433, + -0.0022065783850848675, + -0.02424434758722782, + 0.028977202251553535, + -0.03749370574951172, + 0.034698814153671265, + 0.08284474164247513, + -0.08959466218948364, + 0.03664996474981308, + -0.049912504851818085, + -0.04020949453115463, + -0.03564802184700966, + 0.042477045208215714, + 0.017705360427498817, + -0.137529656291008, + -0.0002523392904549837, + 0.0007440404151566327, + -0.008556053042411804, + 0.02404659613966942, + 0.02433663047850132, + -0.017388958483934402, + 0.072614386677742, + -0.005438168998807669, + 0.023216038942337036, + -0.033222269266843796, + 0.0639660507440567, + -0.009861213155090809, + -0.02026294730603695, + 0.015055488795042038, + -0.059536416083574295, + 0.13077972829341888, + 0.04039406031370163, + 0.1037273108959198, + -0.004690008703619242, + 0.05249645933508873, + -0.05212732404470444, + -0.009841438382863998, + 0.036254461854696274, + 0.007778229657560587, + -0.02399386093020439, + -0.004736151080578566, + -0.0015762450639158487, + 0.007343176286667585, + 0.06106569617986679, + 0.035832591354846954, + 0.05811260640621185, + 0.023558808490633965, + -0.03535798564553261, + 0.016400199383497238, + 0.021620841696858406, + 0.06855388730764389, + 0.040367692708969116, + -0.006318163592368364, + -0.11221744120121002, + -0.003009120235219598, + 0.06718280911445618, + -0.04189697280526161, + 0.07540927827358246, + -0.05689973011612892, + -0.04985976964235306, + 0.09913947433233261, + -0.0168088860809803, + -0.030321912840008736, + -0.04176513850688934, + 0.08927825838327408, + 0.005441464949399233, + -0.014673168770968914, + 0.008714254014194012, + 0.04690667986869812, + 0.04933243244886398, + -0.04954336956143379, + -0.040288593620061874, + -0.02685466781258583, + 0.068764828145504, + -0.011825545690953732, + -0.015226873569190502, + -0.019551042467355728, + -0.014699536375701427, + 0.021739494055509567, + 0.045746538788080215, + 0.012346291914582253, + -0.0036682921927422285, + 0.08500682562589645, + -0.027421556413173676, + 0.04229247570037842, + 0.008101223967969418, + 0.013302091509103775, + 0.027553390711545944, + 0.03485701605677605, + 0.0229523703455925, + 0.0801025852560997, + -0.053735703229904175, + 0.02950453944504261, + -0.05753253400325775, + 0.00843080971390009, + -0.08537595719099045, + -0.004406564868986607, + -0.027975261211395264, + 0.01147618517279625, + -0.026617366820573807, + 0.0016001401236280799, + -0.027606124058365822, + 0.07482920587062836, + -0.006245655007660389, + -0.013427333906292915, + -0.01669023558497429, + -0.00794302299618721, + -0.029741842299699783, + 0.08200100064277649, + -0.0066576371900737286, + 0.005929252132773399, + -0.01811404712498188, + 0.015160956420004368, + 0.009762337431311607, + 0.024824418127536774, + 0.0224777664989233, + 0.010573118925094604, + 0.022926002740859985, + -0.01404036395251751, + -0.013895345851778984, + -0.04972793534398079, + -0.010395143181085587, + -0.051257215440273285, + -0.013460292480885983, + -0.029029935598373413, + -0.008101223967969418, + 0.033934175968170166, + -0.05030800774693489, + 0.030480114743113518, + 0.02656463161110878, + 0.027052419260144234, + 0.04458639398217201, + 0.03548981994390488, + -0.0038792274426668882, + 0.05937821418046951, + 0.031112918630242348, + -0.04429635778069496, + 0.021133054047822952, + -0.0178635623306036, + 0.019181905314326286, + -0.033011335879564285, + -0.011172966100275517, + 0.009557994082570076, + 0.0364917628467083, + 0.06386058777570724, + -0.010764279402792454, + 0.013763511553406715, + 0.10051055252552032, + -0.03472518175840378, + -0.03282676637172699, + 0.01840408332645893, + 0.07867877185344696, + 0.04714398458600044, + -0.0430307500064373, + -0.04846232756972313, + -0.08026078343391418, + -0.018443632870912552, + 0.03501521795988083, + -0.06813202053308487, + -0.0633859783411026, + 0.0134471096098423, + -0.06438792496919632, + -0.02412569522857666, + -0.017415324226021767, + -0.0009854622185230255, + 0.08078812062740326, + 0.1043073832988739, + 0.0017764685908332467, + 0.08300293982028961, + -0.06496799737215042, + 0.03248399868607521, + -0.027896160259842873, + 0.04500826448202133, + 0.010006231255829334, + -0.08110452443361282, + 0.011575060896575451, + 0.09697739034891129, + -0.032721299678087234, + -0.04329441860318184, + -0.04985976964235306, + -0.03984035551548004, + -0.013697594404220581, + -0.0030717416666448116, + -0.02231956459581852, + -0.08869818598031998, + 0.008621970191597939, + -0.03013734519481659, + -0.012319925241172314, + -0.044744595885276794, + 0.011588243767619133, + -0.04218700900673866, + -0.025879092514514923, + 0.028054360300302505, + 0.07250892370939255, + -0.14164288341999054, + -0.10620579868555069, + -0.018338166177272797, + 0.016149714589118958, + 0.00882631354033947, + 0.03912845253944397, + -0.016624318435788155, + 0.012445167638361454, + 0.00794302299618721, + 0.0370718352496624, + 0.025575874373316765, + -0.004769109655171633, + -0.012431983835995197, + 0.0750928744673729, + -0.045799270272254944, + 0.019682876765727997, + -0.02357199229300022, + 0.09481530636548996, + 0.019023705273866653, + -0.0005557644180953503, + -0.0512835830450058, + 0.0328531339764595, + -0.04846232756972313, + 0.03744097054004669, + -0.005972098559141159, + 0.041211433708667755, + 0.011904646642506123, + -0.03401327505707741, + -0.03277403116226196, + -0.0059325480833649635, + -0.05136268213391304, + -0.026116395369172096, + -0.00237961090169847, + -0.05774346739053726, + 0.05689973011612892, + 0.002644927706569433, + -0.008312159217894077, + 0.019142355769872665, + -0.04593110457062721, + 0.04094776511192322, + 0.07266712188720703, + 0.02618231251835823, + 0.010441284626722336, + 0.01151573471724987, + -0.04777678847312927, + -0.011713487096130848, + 0.04619477689266205, + 0.144068643450737, + 0.01928737387061119, + -0.055792320519685745, + -0.016953904181718826, + -0.05405210703611374, + 0.012464942410588264, + -0.05299742892384529, + 0.08015532046556473, + 0.05028164014220238, + 0.027632491663098335, + -0.048646893352270126, + -0.021172605454921722, + 0.03657086193561554, + 0.0020714481361210346, + 0.019102804362773895, + -0.0445600301027298, + -0.03232579678297043, + -0.054315775632858276, + 0.010375367477536201, + 0.023018287494778633, + 0.016677051782608032 + ] + }, + { + "id": "9a3215c9-4885-4366-a344-aa7f17dfe5fe", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "nelsonkaren", + "reviewDate": "2022-02-27T22:07:51", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f2ea09b8-ba20-4293-96b2-0a65ddceafca", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "vrobertson", + "reviewDate": "2021-01-01T16:27:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fd318096-bea6-46c5-b469-0443951bbff1", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "matthew36", + "reviewDate": "2022-11-08T04:50:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0590c948-d302-422a-bac0-b0194b91d9e7", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "jonesmichaela", + "reviewDate": "2021-10-06T23:57:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dfe80239-4c1f-485d-9d1b-710ac5abb6ef", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "imartinez", + "reviewDate": "2022-03-07T20:27:49", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6149abf5-a928-4922-8b21-542d30f05c82", + "productId": "72e97a10-87f0-4ebb-8005-c4e1595805c4", + "category": "Media", + "docType": "customerRating", + "userName": "odurham", + "reviewDate": "2022-08-09T20:07:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "34eae434-7b3d-4c8f-9013-7948666b9031", + "productId": "34eae434-7b3d-4c8f-9013-7948666b9031", + "category": "Other", + "docType": "product", + "name": "Basic Filter Pro (Red)", + "description": "This Basic Filter Pro (Red) is a way to create a multi-layer filter or similar on the same object. When the filter is enabled the Red window's Red light comes on even though it is not in the background. The other way is from the \"Display On\" menu. The window will automatically detect if the filter looks right like the filter selected from", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-07-26T17:37:09", + "price": 156.11, + "stock": 36, + "priceHistory": [ + { + "priceDate": "2021-07-01T08:23:29", + "newPrice": 154.18 + }, + { + "priceDate": "2021-08-31T08:23:29", + "newPrice": 149.37 + }, + { + "priceDate": "2021-10-31T08:23:29", + "newPrice": 155.23 + }, + { + "priceDate": "2024-01-20T08:23:29", + "newPrice": 156.11 + } + ], + "descriptionVector": [ + -0.018536148592829704, + -0.022510990500450134, + -0.012665712274610996, + 0.043683916330337524, + 0.004256885964423418, + 0.01009452622383833, + -0.011065280064940453, + 0.02172389253973961, + 0.021094216033816338, + 0.014430122449994087, + -0.03030325658619404, + -0.00439462810754776, + 0.016542168334126472, + -0.04898370802402496, + 0.03767573833465576, + -0.0001014105582726188, + -0.09261514991521835, + 0.026918737217783928, + -0.05483446642756462, + 0.00238424981944263, + 0.05047919228672981, + -0.008520331233739853, + -0.1033196747303009, + 0.04405122995376587, + 0.0019398676231503487, + 0.043474022299051285, + -0.0005427693831734359, + 0.0002970063651446253, + 0.0003630077699199319, + 0.005093177314847708, + 0.0561462938785553, + 0.04974456876516342, + -0.009635386057198048, + 0.060186728835105896, + -0.10373946279287338, + -0.0346585288643837, + 0.01414151955395937, + -0.016752060502767563, + 0.002603981178253889, + 0.10415924340486526, + 0.011130871251225471, + -0.016489693894982338, + -0.07514158636331558, + -0.023035721853375435, + -0.05604134872555733, + -0.02012346126139164, + -0.06805770099163055, + -0.00520468270406127, + -0.05425725877285004, + -0.0561462938785553, + 0.06690329313278198, + -0.029516158625483513, + -0.031693797558546066, + 0.00453564990311861, + -0.02037270925939083, + 0.03725595399737358, + -0.034684766083955765, + 0.1263553947210312, + -0.02180260233581066, + -0.07493168860673904, + -0.008061191067099571, + -0.03872520104050636, + 0.011635925620794296, + 0.008402266539633274, + -0.04722585529088974, + -0.011872055009007454, + -0.07167835533618927, + -0.09051622450351715, + 0.015269692987203598, + 0.026800673454999924, + 0.02731228619813919, + -0.012613238766789436, + 0.01991356909275055, + 0.0419260635972023, + 0.004686510190367699, + 0.10505129396915436, + 0.10767494887113571, + -0.06957942992448807, + 0.032139819115400314, + -0.004466778598725796, + -0.0016701227286830544, + 0.045153163373470306, + -0.03502584248781204, + 0.05651360750198364, + -0.046858541667461395, + -0.033950142562389374, + 0.09424182027578354, + -0.06055404245853424, + 0.02922755666077137, + -0.01090130116790533, + 0.0068346308544278145, + 0.07708308845758438, + 0.02794196456670761, + -0.06758544594049454, + 0.02365228161215782, + 0.0008342414512299001, + -0.00615575909614563, + 0.0020316955633461475, + -0.07115361839532852, + 0.04546800255775452, + -0.049272309988737106, + -0.07340996712446213, + -0.05116134136915207, + 0.004604520741850138, + 0.07482674717903137, + -0.04019445180892944, + 0.03452734649181366, + -0.049088653177022934, + -0.05207962170243263, + -0.004896402824670076, + -0.04722585529088974, + -0.03421250730752945, + -0.05971447005867958, + 0.019939806312322617, + -0.059452105313539505, + 0.03300562500953674, + -0.04397251829504967, + 0.031300246715545654, + 0.08505900949239731, + 0.033714015036821365, + 0.009687859565019608, + 0.020700667053461075, + 0.03366154059767723, + -0.048117898404598236, + -0.04224090278148651, + -0.018601739779114723, + 0.038830146193504333, + -0.02060883864760399, + 0.01974303089082241, + -0.0010658613173291087, + -0.04900994151830673, + 0.04454972222447395, + 0.07283276319503784, + -0.0024252445437014103, + 0.022301098331809044, + 0.07655835896730423, + 0.032349709421396255, + 0.10872441530227661, + -0.06748049706220627, + 0.044523485004901886, + -0.060501568019390106, + -0.07519405335187912, + 0.022484755143523216, + 0.06968437135219574, + 0.045914024114608765, + -0.014325176365673542, + 0.00016705326561350375, + 0.08269771933555603, + -0.013970982283353806, + -0.03791186586022377, + -0.0055719949305057526, + -0.10893430560827255, + 0.01730302907526493, + 0.026761317625641823, + 0.04174240678548813, + 0.02243228070437908, + -0.02975228801369667, + 0.015715714544057846, + 0.009668181650340557, + -0.04562542214989662, + -0.014417003840208054, + -0.019270772114396095, + -0.02127787098288536, + 0.014679369516670704, + 0.020215289667248726, + 0.06302028149366379, + -0.004030595533549786, + 0.010993129573762417, + -0.09697042405605316, + 0.009517321363091469, + -0.027286048978567123, + 0.06170845031738281, + -0.012140979990363121, + 0.015007327310740948, + -0.060711462050676346, + 0.023206260055303574, + 0.059347156435251236, + 0.05409983918070793, + 0.0296473428606987, + -0.030644332990050316, + -0.02699744701385498, + -0.03389766812324524, + -0.05803532898426056, + -0.06957942992448807, + -0.0005595771945081651, + -0.06548652052879333, + 0.03324175626039505, + 0.028414223343133926, + -0.018680449575185776, + 0.0291226115077734, + 0.005155489314347506, + -0.010133881121873856, + 0.11313215643167496, + -0.0030057288240641356, + 0.021251635625958443, + -0.014810552820563316, + -0.07225555926561356, + -0.05950457602739334, + -0.008618718944489956, + -0.034789714962244034, + 0.005335865542292595, + 0.034789714962244034, + 0.04698972404003143, + 0.020740021020174026, + -0.016647113487124443, + 0.01684388890862465, + 0.04562542214989662, + 0.028834007680416107, + -0.01112431287765503, + -0.047698114067316055, + 0.02203873172402382, + -0.10741258412599564, + -0.03924993425607681, + -0.022629056125879288, + 0.04276563599705696, + 0.01608302816748619, + -0.01820819079875946, + -0.006349253933876753, + -0.007320007309317589, + 0.03090669773519039, + 0.0736723318696022, + 0.0429755263030529, + -0.00229734112508595, + 0.024229487404227257, + 0.006801834795624018, + 0.037544555962085724, + 0.005365381948649883, + -0.009176245890557766, + 0.034894660115242004, + 0.02493787556886673, + -0.10688785463571548, + -0.014338294044137001, + 0.023770347237586975, + 0.00519812386482954, + 0.009123772382736206, + 0.013315067626535892, + 0.016174854710698128, + -0.040614236146211624, + -0.029253793880343437, + 0.02089744061231613, + 0.03576046600937843, + 0.05572650954127312, + -0.11323710530996323, + -0.025121530517935753, + 0.11061345040798187, + 0.024950994178652763, + 0.018614858388900757, + -0.049298547208309174, + -0.03607530519366264, + -0.020674429833889008, + -0.015860015526413918, + 0.06532909721136093, + -0.027286048978567123, + 0.014102164655923843, + -0.029280029237270355, + 0.03518326207995415, + 0.004319197963923216, + -0.026774436235427856, + -0.08233040571212769, + -0.03822670504450798, + 0.028650352731347084, + 0.04392004385590553, + 0.01412840187549591, + -0.020949913188815117, + -0.010520870797336102, + -0.10489387065172195, + -0.018916578963398933, + -0.04237208515405655, + -0.0025941424537450075, + 0.04803919047117233, + 0.08705299347639084, + -0.032979387789964676, + 0.016437221318483353, + 0.006552587263286114, + 0.029463686048984528, + 0.06653597950935364, + -0.04751445725560188, + 0.05019059032201767, + 0.024216368794441223, + -0.01726367324590683, + 0.0018562384648248553, + 0.03993208333849907, + 0.0378856286406517, + 0.007910330779850483, + 0.08122847229242325, + 0.052053388208150864, + -0.02954239584505558, + 0.028624115511775017, + -0.07729298621416092, + -0.029070137068629265, + -0.04859015718102455, + -0.020425181835889816, + 0.026341533288359642, + -0.07377728074789047, + 0.05173854902386665, + 0.0013339663855731487, + -0.027495943009853363, + -0.042844343930482864, + 0.0747217983007431, + 0.01959872990846634, + -0.04872133955359459, + -0.013538078404963017, + -0.04255574196577072, + -0.0622856542468071, + 0.0006157399038784206, + 0.08096610754728317, + 0.028965191915631294, + 0.07760782539844513, + -0.020044751465320587, + -0.06338759511709213, + 0.01546646747738123, + 0.0014905660646036267, + -0.01938883773982525, + 0.01513851061463356, + 0.006673931609839201, + -0.009261514991521835, + -0.006323017179965973, + -0.021855076774954796, + 0.0077397930435836315, + 0.007674201391637325, + -0.04053552448749542, + -0.020202171057462692, + -0.018286900594830513, + 0.06879232823848724, + 0.0631776973605156, + 0.007982481271028519, + -0.05939963087439537, + -0.031300246715545654, + -0.005880274809896946, + -0.03145766630768776, + -0.07136351615190506, + -0.028125619515776634, + -0.012154098600149155, + 0.029935944825410843, + -0.05493941158056259, + -0.05514930561184883, + 0.00850721262395382, + 0.04969209432601929, + -0.06364995986223221, + 0.024714864790439606, + -0.0010412645060569048, + 0.037098534405231476, + 0.024570563808083534, + -0.07089125365018845, + 0.04609768092632294, + -0.08348481357097626, + 0.06165597587823868, + -0.04245079681277275, + 0.024714864790439606, + 0.031824979931116104, + 0.0018545986386016011, + -0.013295389711856842, + -0.032979387789964676, + -0.04449725151062012, + 0.04885252192616463, + 0.021054860204458237, + -0.008271084167063236, + -0.013590551912784576, + 0.01376108918339014, + 0.04662241414189339, + 0.030959172174334526, + -0.053102850914001465, + 0.05835016816854477, + 0.002479357412084937, + -0.03221852704882622, + 0.09251020103693008, + -0.06580135971307755, + 0.027810782194137573, + -0.008631836622953415, + 0.09303493797779083, + -0.06212823465466499, + 0.01610926352441311, + -0.05399489402770996, + 0.057248231023550034, + -0.0028958632610738277, + 0.005158768966794014, + 0.004063391126692295, + -0.0183787290006876, + -0.02754841558635235, + 0.03290067985653877, + -0.0245180893689394, + 0.09135579317808151, + -0.04069294407963753, + -0.04313294589519501, + 0.07309512794017792, + -0.032349709421396255, + -0.04916736111044884, + -0.052997905761003494, + 0.000842850306071341, + -0.041978538036346436, + -0.04754069447517395, + -0.05126629024744034, + -0.0018939535366371274, + 0.03418627008795738, + 0.03738713636994362, + -0.04594026133418083, + -0.047698114067316055, + 0.045153163373470306, + 0.10531365871429443, + -0.03397637978196144, + 0.007706996984779835, + -0.03295315057039261, + -0.002246507676318288, + -0.07891964912414551, + -0.09067364037036896, + 0.02720733918249607, + 0.010796355083584785, + 0.039984557777643204, + 0.0673755556344986, + -0.037098534405231476, + 0.07529900223016739, + -0.0768207237124443, + 0.03972219303250313, + -0.009090976789593697, + -0.019310127943754196, + 0.02245851792395115, + -0.02954239584505558, + 0.08411449193954468, + 0.08442933112382889, + 0.041243914514780045, + 0.014863026328384876, + -0.00047225854359567165, + -0.022340452298521996, + -0.010920979082584381, + 0.001479907426983118, + -0.04578284174203873, + 0.06134113669395447, + 0.011970442719757557, + -0.003113954793661833, + -0.04011574015021324, + 0.0306968055665493, + -0.022760238498449326, + -0.06044909358024597, + -0.03290067985653877, + -0.012783776968717575, + 0.023560455068945885, + 0.026105403900146484, + 0.011570334434509277, + -0.03814799711108208, + 0.050243061035871506, + -0.05273553729057312, + 0.018365610390901566, + -0.03093293495476246, + 0.0378856286406517, + -0.09413687139749527, + -0.016279801726341248, + -0.007890652865171432, + -0.011583453044295311, + -0.03631143644452095, + 0.02828303910791874, + -0.02636776864528656, + -0.002728604944422841, + -0.077555350959301, + -0.02773207239806652, + -0.0005796646000817418, + -0.013734852895140648, + 0.03416003659367561, + 0.03602283447980881, + 0.058087803423404694, + 0.02846669591963291, + -0.07960180193185806, + 0.057668015360832214, + 0.04754069447517395, + -0.00907129980623722, + -0.029411213472485542, + -0.01782776042819023, + -0.10027623176574707, + -0.050557900220155716, + 0.009910870343446732, + -0.06868737936019897, + -0.018667330965399742, + -0.03072304278612137, + -0.022091206163167953, + 0.019297009333968163, + 0.002066131215542555, + 0.049272309988737106, + -0.055306725203990936, + -0.021645182743668556, + 0.046202629804611206, + -0.06559146195650101, + 0.05029553547501564, + -0.021841958165168762, + -0.057038336992263794, + 0.009517321363091469, + 0.012042593210935593, + 0.054152313619852066, + 0.05593639984726906, + 0.04809166118502617, + 0.02744346857070923, + -0.0039551653899252415, + 0.06821512430906296, + 0.024386906996369362, + -0.013039583340287209, + -0.018195072188973427, + -0.013105174526572227, + -0.01621421054005623, + 0.04384133592247963, + -0.01168183982372284, + 0.024255724623799324, + 0.02807314693927765, + 0.05189596861600876, + 0.017670340836048126, + 0.008710546419024467, + -0.020831849426031113, + 0.009983020834624767, + 0.03303186222910881, + 0.07477427273988724, + -0.08096610754728317, + -0.0189034603536129, + -0.02870282530784607, + -0.0460452102124691, + 0.018129481002688408 + ] + }, + { + "id": "cb4e1c59-2c8d-46ed-aac8-bd5d6dfd3848", + "productId": "34eae434-7b3d-4c8f-9013-7948666b9031", + "category": "Other", + "docType": "customerRating", + "userName": "harrissamantha", + "reviewDate": "2021-07-01T08:23:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "de7eabe0-820f-4269-b82e-dd47ef801e43", + "productId": "34eae434-7b3d-4c8f-9013-7948666b9031", + "category": "Other", + "docType": "customerRating", + "userName": "oelliott", + "reviewDate": "2021-11-01T07:45:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Micro (Red)", + "description": "This Basic Speaker Micro (Red) is powered by a 50mm lithium ion battery and includes:\n\n• LED flash indicators, the \"C\" logo, and the \"F\" icon on the speaker;\n\n• USB-C power source (sold separately);\n\n• An external battery pack (sold separately); and (optional) a battery", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-02-23T19:49:26", + "price": 538.26, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-05-28T12:55:58", + "newPrice": 544.36 + }, + { + "priceDate": "2022-02-05T12:55:58", + "newPrice": 572.42 + }, + { + "priceDate": "2022-10-16T12:55:58", + "newPrice": 558.67 + }, + { + "priceDate": "2023-10-17T12:55:58", + "newPrice": 538.26 + } + ], + "descriptionVector": [ + -0.003118452848866582, + -0.01014797855168581, + -0.029207570478320122, + 0.04423980042338371, + -0.026710359379649162, + 0.034520264714956284, + 0.022780925035476685, + 0.03711540251970291, + -0.00558812078088522, + 0.07271289825439453, + -0.009939877316355705, + -0.03292890265583992, + -0.022328000515699387, + -0.0633116364479065, + 0.03777642920613289, + -0.027469316497445107, + -0.0653681606054306, + 0.009474710561335087, + 0.023662295192480087, + 0.017810987308621407, + -0.0026961304247379303, + -0.06673917919397354, + -0.06306681036949158, + 0.02930550090968609, + -0.006530695129185915, + 0.020308198407292366, + 0.025265894830226898, + 0.020736640319228172, + -0.028840333223342896, + -0.0055544571951031685, + 0.023368505761027336, + 0.001110891462303698, + -0.029134122654795647, + 0.028448615223169327, + -0.01910855807363987, + -0.030896861106157303, + 0.07217428088188171, + -0.0425015464425087, + 0.060520634055137634, + -0.040224675089120865, + -0.0007448022370226681, + 0.02754276432096958, + 0.034520264714956284, + -0.04588012397289276, + -0.019218727946281433, + 0.08803891390562057, + -0.005897211842238903, + 0.01039892341941595, + 0.018374083563685417, + -0.05581999942660332, + -0.00611449358984828, + -0.0027787587605416775, + -0.04502323642373085, + -0.0017765082884579897, + 0.12407708913087845, + -0.031166167929768562, + 0.006285870913416147, + 0.12564396858215332, + 0.001129253301769495, + -0.03650334104895592, + 0.0138203464448452, + -0.05283313989639282, + -0.048450782895088196, + 0.021238531917333603, + -0.02683277241885662, + 0.0977829322218895, + 0.015644289553165436, + 0.021091636270284653, + 0.043040160089731216, + 0.07633630186319351, + 0.009131955914199352, + 0.051609016954898834, + 0.0004158192314207554, + 0.007142756599932909, + -0.0014459950616583228, + 0.015889113768935204, + 0.05880686268210411, + 0.03917193040251732, + 0.03971054404973984, + -0.027273457497358322, + 0.03336958959698677, + 0.00150643615052104, + -0.014065171591937542, + 0.0018254731548950076, + -0.017994605004787445, + -0.06198957934975624, + 0.05043385922908783, + -0.10850624740123749, + -0.02267075516283512, + 0.07917626202106476, + 0.03498543053865433, + 0.07491631805896759, + 0.035646457225084305, + 0.035915762186050415, + 0.06238130107522011, + -0.018300635740160942, + -0.0032561668194830418, + 0.022095417603850365, + -0.022891096770763397, + -0.03598921000957489, + 0.03395716845989227, + -0.03589128330349922, + -0.015240329317748547, + -0.0021253833547234535, + 0.05449794977903366, + 0.08186933398246765, + 0.03307579830288887, + 0.020846812054514885, + -0.05337175726890564, + -0.02314816229045391, + -0.037188850343227386, + 0.014089654199779034, + -0.03988192230463028, + 0.0185699425637722, + 0.0035713782999664545, + 0.03665023669600487, + -0.02133646048605442, + 0.02181386947631836, + -0.053175896406173706, + -0.01590135507285595, + 0.03914744779467583, + -0.049528010189533234, + 0.0680612325668335, + 0.01536274142563343, + 0.029354466125369072, + -0.04139983281493187, + 0.04103259742259979, + -0.03988192230463028, + 0.0552813857793808, + 0.033149246126413345, + -0.05234349146485329, + 0.09572640806436539, + -0.03846193850040436, + 0.030039973556995392, + -0.021165084093809128, + 0.019328899681568146, + -0.020112337544560432, + -0.006983620580285788, + -0.01121908612549305, + -0.0023135922383517027, + -0.006041046231985092, + 0.10023117810487747, + 0.08510101586580276, + 0.06154889613389969, + -0.0772666335105896, + -0.033859238028526306, + -0.03836400806903839, + -0.011298653669655323, + 0.039955370128154755, + 0.05180487781763077, + -0.02835068479180336, + -0.10155323147773743, + 0.03665023669600487, + -0.044533587992191315, + 0.02751828171312809, + 0.006708193104714155, + -0.06771847605705261, + -0.013428627513349056, + -0.04326049983501434, + 0.07134187966585159, + 0.03515680879354477, + 0.04242809861898422, + 0.009101353585720062, + -0.05249038711190224, + -0.03226787969470024, + 0.03963709622621536, + 0.03946572169661522, + 0.06855087727308273, + -0.0630178451538086, + 0.034397851675748825, + 0.07168463617563248, + 0.010300993919372559, + -0.05156005546450615, + -0.037311263382434845, + -0.03224339708685875, + -0.06125510483980179, + 0.07501424849033356, + 0.0368460975587368, + -0.02573106251657009, + -0.06497643887996674, + 0.0814286544919014, + 0.05679930001497269, + -0.015766702592372894, + 0.036601271480321884, + -0.031337544322013855, + -0.002576778642833233, + -0.00927273090928793, + 0.019683895632624626, + -0.07129291445016861, + 0.03464267775416374, + -0.033149246126413345, + -0.012755359522998333, + 0.006751037202775478, + 0.021116118878126144, + -0.03305131569504738, + 0.019206486642360687, + 0.050923511385917664, + 0.06145096570253372, + -0.028032412752509117, + -0.08451344072818756, + -0.0674736499786377, + 0.07006879150867462, + 0.04945456236600876, + 0.0046210638247430325, + -0.07687491178512573, + -0.0024038711562752724, + 0.008740236982703209, + 0.09131956100463867, + 0.06659228354692459, + 0.01877804473042488, + 0.030774448066949844, + 0.007075429894030094, + -0.020736640319228172, + -0.015191364102065563, + 0.11017105728387833, + 0.042330168187618256, + -0.002763457363471389, + -0.030407210811972618, + 0.00456291763111949, + -0.04059191420674324, + 0.03087237849831581, + -0.0019081014906987548, + 0.07986177504062653, + -0.012730877846479416, + -0.11594891548156738, + -0.0023426651023328304, + 0.01860666647553444, + -0.019451312720775604, + 0.03978399187326431, + 0.042477063834667206, + 0.001984609058126807, + 0.009505313821136951, + 0.02475176379084587, + -0.016158420592546463, + 0.0017168322810903192, + 0.011494513601064682, + 0.03207201883196831, + -0.05351864919066429, + -0.08980165421962738, + 0.008036366663873196, + -0.033712342381477356, + 0.023074714466929436, + -0.0020305137149989605, + -0.034006133675575256, + 0.025535201653838158, + -0.020075613632798195, + 0.021238531917333603, + 0.017052030190825462, + -0.08715754747390747, + -0.02252385951578617, + -0.08901821076869965, + 0.04345636069774628, + 0.015974802896380424, + 0.035499561578035355, + -0.04960145801305771, + 0.007234565913677216, + 0.06688607484102249, + -0.09690156579017639, + 0.0063776797614991665, + 0.018141500651836395, + 0.05479173734784126, + -0.0052882106974720955, + -0.018325118348002434, + 0.026734841987490654, + -0.08598238974809647, + -0.04377463087439537, + 0.057484809309244156, + -0.062038544565439224, + -0.0023855094332247972, + -0.017970122396945953, + -0.0034979309421032667, + 0.051609016954898834, + 0.05249038711190224, + 0.0496259406208992, + -0.06541712582111359, + 0.04624735936522484, + -0.06213647499680519, + 0.027028631418943405, + -0.030211351811885834, + -0.04291774705052376, + 0.11428410559892654, + 0.04935663193464279, + 0.11663442105054855, + -0.08358310908079147, + -0.013355179689824581, + -0.023466434329748154, + -0.052049703896045685, + 0.020516298711299896, + -0.09886015951633453, + -0.012841048650443554, + -0.03860883414745331, + -0.017431508749723434, + -0.0010252029169350863, + 0.05048282444477081, + 0.03794780746102333, + 0.0303092822432518, + 0.05420415848493576, + -0.07197842001914978, + 0.00011743928189389408, + 0.0900464728474617, + -0.02475176379084587, + 0.02597588673233986, + -0.035670939832925797, + -0.0392208956182003, + 0.015130158513784409, + 0.042183272540569305, + 0.04891594871878624, + 0.06830605119466782, + -0.02410297840833664, + -0.030945824459195137, + 0.13181354105472565, + 0.0011284882202744484, + -0.05415519326925278, + -0.05249038711190224, + 0.08373000472784042, + -0.03518129140138626, + 0.008978940546512604, + -0.008862649090588093, + 0.0433829128742218, + 0.029550325125455856, + -0.010974260978400707, + -0.04110604524612427, + -0.09685260057449341, + 0.002159046707674861, + -0.02529037743806839, + -0.03057858906686306, + -0.009009543806314468, + 0.011121155694127083, + 0.022976785898208618, + 0.015350500121712685, + -0.017627369612455368, + -0.021569043397903442, + 0.053420718759298325, + -0.012828807346522808, + -0.000857651059050113, + 0.0008094512159004807, + 0.019390106201171875, + 0.0522945262491703, + 0.019512517377734184, + -0.002849145792424679, + 0.025363825261592865, + -0.04470496624708176, + -0.045806676149368286, + -0.07408391684293747, + 0.02531486004590988, + -0.025119001045823097, + -0.05728894844651222, + 0.03630748391151428, + -0.02431107871234417, + -0.10605800151824951, + 0.0013985603582113981, + -0.0034153026062995195, + 0.06042270362377167, + -0.08035141974687576, + 0.06213647499680519, + -0.07325150817632675, + 0.016660312190651894, + 0.009205403737723827, + 0.004336454905569553, + -0.03155788779258728, + -0.03060307167470455, + -0.015374982729554176, + 0.1114441454410553, + 0.01355103962123394, + -0.011170120909810066, + 0.014787403866648674, + -0.04739803448319435, + -0.03934330865740776, + -0.04005330055952072, + 0.007595682051032782, + -0.03819263353943825, + -0.006408283021301031, + -0.04881801828742027, + -0.006334835663437843, + -0.0016387944342568517, + 0.012681912630796432, + 0.05562414228916168, + -0.042011894285678864, + -0.03650334104895592, + 0.06933432072401047, + 0.00829343218356371, + -0.017333580181002617, + 0.02145887352526188, + -0.04923421889543533, + 0.03393268585205078, + 0.030407210811972618, + 0.02291557937860489, + -0.027861036360263824, + 0.006830605212599039, + 0.031019272282719612, + 0.029942044988274574, + -0.08784305304288864, + 0.0023870395962148905, + 0.09376780688762665, + 0.0475449301302433, + 0.02427435666322708, + -0.013991723768413067, + 0.038021255284547806, + -0.04492530971765518, + -0.03527922183275223, + 0.001684699091129005, + 0.040763288736343384, + 0.020944742485880852, + -0.026881737634539604, + -0.06267508864402771, + -0.06669021397829056, + -0.0022049513645470142, + -0.007485511247068644, + -0.024555904790759087, + -0.06688607484102249, + 0.046761490404605865, + -0.04423980042338371, + -0.02240144833922386, + -0.02710207924246788, + -0.021801628172397614, + -0.001066516968421638, + -0.038143668323755264, + 0.04475393146276474, + 0.031019272282719612, + 0.009860309772193432, + 0.03904951736330986, + 0.019843030720949173, + -0.06987293064594269, + -0.014689474366605282, + 0.026171745732426643, + -0.05072765052318573, + -0.015166881494224072, + -0.03165581822395325, + 0.0194635521620512, + -0.08759822696447372, + -0.11506754904985428, + -0.041203975677490234, + 0.012730877846479416, + -0.0007623989949934185, + -0.05006662383675575, + -0.012131057679653168, + -0.004816923290491104, + 0.023552123457193375, + -0.08216312527656555, + 0.021116118878126144, + -0.023576606065034866, + 0.05758273974061012, + -0.05381244048476219, + 0.0472511425614357, + -0.12104126811027527, + -0.03349199891090393, + -0.004238525405526161, + -0.02267075516283512, + 0.032586149871349335, + -0.002813952276483178, + -0.018325118348002434, + 0.05346968397498131, + -0.0017076513031497598, + 0.043994974344968796, + -0.04024915769696236, + -0.012057609856128693, + 0.023992806673049927, + 0.0008308733813464642, + -0.03956364840269089, + -0.014346719719469547, + 0.013587763532996178, + 0.026930702850222588, + 0.027004148811101913, + 0.05577103793621063, + 0.0018897396512329578, + 0.03838849067687988, + -0.020381644368171692, + -0.048010095953941345, + -0.03500991314649582, + 0.014358961023390293, + 0.008128175511956215, + -0.04475393146276474, + 0.13886448740959167, + 0.03278201073408127, + -0.03016238659620285, + -0.002637984696775675, + -0.02832620218396187, + -0.05655447393655777, + -0.021532321348786354, + -0.015974802896380424, + -0.01135373953729868, + 0.036356449127197266, + -0.018410807475447655, + 0.012394243851304054, + 0.04656563326716423, + -0.015583083964884281, + -0.05728894844651222, + 0.037849877029657364, + -0.013673451729118824, + -0.0401267446577549, + 0.02240144833922386, + 0.0766790509223938, + 0.006904052570462227, + 0.01869235560297966, + -0.058562036603689194, + -0.024066254496574402, + 0.05263728275895119, + -0.04348084330558777, + 0.0012080562300980091, + 0.005373899359256029, + 0.00416813837364316, + -0.030186869204044342, + -0.0072406865656375885, + -0.00234725559130311, + -0.0008660668972879648, + 0.008813684806227684, + -0.05861100181937218, + 0.0024360043462365866, + -0.049699388444423676, + 0.05253935232758522, + -0.05195177346467972, + 0.00015932723181322217 + ] + }, + { + "id": "683406a4-585e-4f6e-896c-25ccc7fb8399", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "customerRating", + "userName": "burgessamy", + "reviewDate": "2022-10-18T11:45:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "93a93ba8-e857-4e70-9bf2-18e68b537e46", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "customerRating", + "userName": "haroldabbott", + "reviewDate": "2021-11-20T04:39:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f8f8a04d-ccac-493f-949a-035c9edc6fcd", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "customerRating", + "userName": "jwalker", + "reviewDate": "2022-07-10T16:18:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "95d11a0b-0191-4642-b71c-99d1d77ad2ac", + "productId": "3d429f5d-3c74-4bc9-b374-fd78effc9512", + "category": "Media", + "docType": "customerRating", + "userName": "tammycollins", + "reviewDate": "2021-05-28T12:55:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse + (Silver)", + "description": "This Premium Mouse + (Silver) is available for $12.00.\n\nAll in all this is a very nice mouse that works well especially when you have the support software for Apple Mac OS (El Capitan) up on your PC. This mouse performs well and does not lag on the mouse pad too", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-02-03T10:29:16", + "price": 777.67, + "stock": 33, + "priceHistory": [ + { + "priceDate": "2021-01-06T19:25:27", + "newPrice": 721.72 + }, + { + "priceDate": "2023-05-29T19:25:27", + "newPrice": 777.67 + } + ], + "descriptionVector": [ + -0.055132538080215454, + 0.012835025787353516, + -0.01071363128721714, + 0.017575571313500404, + -0.026452241465449333, + -0.009836630895733833, + 0.0342741385102272, + 0.0803048312664032, + 0.005700505338609219, + 0.06281222403049469, + 0.06688909232616425, + -0.008396690711379051, + 0.03818508982658386, + -0.046931393444538116, + 0.013107607141137123, + 0.020585816353559494, + -0.023430144414305687, + -0.007721162401139736, + -0.023963455110788345, + -0.00024036044487729669, + 0.007697459775954485, + -0.08765267580747604, + -0.021711695939302444, + 0.013557958416640759, + -0.006192336790263653, + 0.0038635442033410072, + 0.02052656002342701, + 0.041361253708601, + 0.10855848342180252, + 0.058593135327100754, + 0.012597998604178429, + 0.016663014888763428, + -0.029818028211593628, + 0.0035554086789488792, + 0.04164568707346916, + -0.036336276680231094, + 0.01755186729133129, + -0.06328627467155457, + 0.08893262594938278, + 0.011987653560936451, + -0.010891402140259743, + 0.009884036146104336, + 0.04311525821685791, + -0.04541442170739174, + 0.001588082523085177, + -0.025883374735713005, + 0.01803777366876602, + 0.0309794619679451, + -0.015999339520931244, + 0.056412484496831894, + 0.002896176651120186, + 0.018654044717550278, + -0.06267000734806061, + -0.0004796098219230771, + 0.030884649604558945, + 0.007365621626377106, + 0.051150478422641754, + 0.07186666131019592, + -0.019720667973160744, + -0.013901648111641407, + -0.023714575916528702, + 0.0020769513212144375, + -0.04572255536913872, + -0.05432664602994919, + 0.0010481048375368118, + -0.0349615179002285, + -0.012396524660289288, + 0.0072648851200938225, + 0.0382561981678009, + 0.01976807229220867, + -0.03780584782361984, + -0.050391994416713715, + 0.0072708106599748135, + 0.024390103295445442, + 0.042167145758867264, + 0.06205373257398605, + 0.06845346838235855, + 0.03195127472281456, + 0.07205628603696823, + -0.014920865185558796, + -0.008852967992424965, + -0.030932055786252022, + -0.044490013271570206, + 0.06826385110616684, + 0.086894191801548, + 0.024117521941661835, + 0.036597006022930145, + -0.08504537492990494, + -0.02149837091565132, + 0.020194722339510918, + 0.02135615423321724, + 0.11775513738393784, + 0.0491594523191452, + -0.00962330587208271, + -0.023015346378087997, + -0.012206903658807278, + -0.02770848572254181, + 0.009404055774211884, + 0.0075730206444859505, + -0.021794656291604042, + 0.01221875473856926, + -0.05171934515237808, + -0.03695254772901535, + 0.007626351900398731, + -0.028656594455242157, + -0.013617215678095818, + 0.028775107115507126, + -0.09409981966018677, + -0.034487463533878326, + -0.10258539021015167, + -0.03304160013794899, + -0.02476934716105461, + 0.013557958416640759, + -0.02853807993233204, + -0.042878229171037674, + 0.06257519125938416, + -0.0970863625407219, + -0.06565655022859573, + -0.03718957677483559, + -0.0021687992848455906, + 0.03635998070240021, + 0.04854318127036095, + 0.03707106038928032, + 0.04882761463522911, + 0.014067566953599453, + -0.010950658470392227, + -0.005416072439402342, + -0.009783299639821053, + 0.047429151833057404, + -0.08201143145561218, + -0.07949893921613693, + 0.056602105498313904, + 0.031785354018211365, + 0.03164313733577728, + -0.02130874991416931, + 0.03353935480117798, + -0.055085133761167526, + 0.07281477004289627, + -0.07774493843317032, + 0.018488125875592232, + -0.05081864073872566, + -0.021747250109910965, + -0.023560509085655212, + 0.06124784052371979, + -0.03308900445699692, + 0.022280560806393623, + -0.04925426095724106, + 0.014186080545186996, + -0.022920535877346992, + 0.054231833666563034, + 0.10931696742773056, + -0.12780509889125824, + -0.017978517338633537, + -0.0983189046382904, + 0.027471458539366722, + -0.002749516163021326, + -0.02567005157470703, + -0.006731573957949877, + -0.04363671690225601, + 0.058356110006570816, + -0.04963350668549538, + 0.0022665730211883783, + -0.003869469743221998, + 0.02286127768456936, + -0.018073327839374542, + 0.08073148131370544, + 0.024259738624095917, + 0.04733434319496155, + -0.02751886285841465, + 0.035767413675785065, + -0.055274754762649536, + -0.009670712053775787, + 0.03901468589901924, + -0.12448671460151672, + 0.05228821188211441, + 0.002736183349043131, + -0.006156782619655132, + 0.002358421217650175, + -0.03285197541117668, + 0.002054729964584112, + 0.021569479256868362, + 0.11965135484933853, + -0.10751555860042572, + -0.003045800141990185, + 0.0723407194018364, + -0.03517484292387962, + -0.003217644989490509, + 0.012740214355289936, + 0.03517484292387962, + -0.049823127686977386, + 0.021723547950387, + 0.010014400817453861, + 0.0004766469937749207, + -0.06011011078953743, + 0.033515654504299164, + 0.12552963197231293, + 0.03453487157821655, + 0.11965135484933853, + 0.018855517730116844, + -0.03230681270360947, + 0.02158133126795292, + 0.03344454616308212, + 0.10988583415746689, + 0.00017851115262601525, + -0.01034031342715025, + -0.004790913313627243, + 0.04920685663819313, + -0.03752141445875168, + 0.012562444433569908, + -0.04150347039103508, + -0.008538906462490559, + -0.0036591081880033016, + 0.009143326431512833, + 0.03605184331536293, + 0.06978081911802292, + 0.014446810819208622, + 0.04285452514886856, + 0.03977317363023758, + -0.01999324932694435, + -0.0520985908806324, + 0.058403514325618744, + 0.01699485443532467, + -0.018262948840856552, + 0.004379078280180693, + -0.0045035178773105145, + -0.045580338686704636, + 0.018582936376333237, + -0.024935266003012657, + 0.060204919427633286, + 0.013688324019312859, + -0.07063411921262741, + -0.03830360248684883, + 0.010666226036846638, + 0.03778214380145073, + -0.05034458637237549, + -0.008106332272291183, + -0.03316011279821396, + 0.029201757162809372, + -0.03868284821510315, + 0.0342741385102272, + -0.0510556697845459, + -0.01931772008538246, + -0.049823127686977386, + -0.01193432230502367, + 0.02740035019814968, + -0.03709476441144943, + 0.056222863495349884, + 0.0039376150816679, + -0.05029718205332756, + 0.015999339520931244, + -0.07774493843317032, + -0.012052835896611214, + 0.0013266118476167321, + 0.03590962663292885, + -0.024864157661795616, + 0.05190896615386009, + 0.044679637998342514, + -0.021474668756127357, + 0.0006114562274888158, + -0.031074272468686104, + 0.02740035019814968, + 0.05043939873576164, + -0.057265784591436386, + 0.028561783954501152, + 0.020253978669643402, + 0.04100571572780609, + -0.010873625054955482, + -0.03811398148536682, + -0.10979101806879044, + 0.031026866286993027, + 0.024105671793222427, + 0.05826129764318466, + 0.04129014536738396, + -0.0406738743185997, + -0.007904858328402042, + -0.03417932987213135, + -0.06432919204235077, + 0.07859823852777481, + 0.08310175687074661, + -0.022375373169779778, + 0.09964625537395477, + 0.09585382044315338, + 0.08267510682344437, + 0.04527220502495766, + 0.03161943331360817, + 0.0036946621257811785, + 0.010624746792018414, + -0.004740545060485601, + 0.046291422098875046, + 0.03913319855928421, + 0.030695028603076935, + 0.00021517630375456065, + 0.046338826417922974, + 0.026926295831799507, + 0.04588847607374191, + 0.053473345935344696, + 0.0209413580596447, + 0.048780206590890884, + -0.014956419356167316, + -0.0072708106599748135, + 0.01330908015370369, + 0.04074498265981674, + -0.07940413057804108, + -0.0026798893231898546, + 0.03593333065509796, + 0.12240087240934372, + -0.016106002032756805, + -0.01890292391180992, + -0.058735352009534836, + 0.028324756771326065, + 0.054942917078733444, + 0.004420557990670204, + -0.05086604878306389, + -0.005469403695315123, + 0.086894191801548, + -0.04522480070590973, + 0.016307475045323372, + 0.010281057097017765, + -2.1538462533499114e-05, + 0.015157892368733883, + -0.041977524757385254, + 0.012503187172114849, + -0.017077812924981117, + 0.051482319831848145, + 0.049301669001579285, + -0.051861561834812164, + -0.08755786716938019, + -0.008515204302966595, + -0.06518249213695526, + 0.037568818777799606, + -0.03297049179673195, + -0.028917323797941208, + 0.005143491085618734, + 0.052572645246982574, + 0.0010495863389223814, + -0.016698569059371948, + -0.017160773277282715, + 0.06797941774129868, + 0.07608574628829956, + 0.038137685507535934, + -0.02066877670586109, + 0.046670664101839066, + 0.01684078574180603, + 0.01642598770558834, + -0.018298503011465073, + -0.06105821952223778, + 0.016117852181196213, + -0.06565655022859573, + 0.007750791031867266, + 0.08177439868450165, + 0.001124397967942059, + -0.11273016035556793, + 0.056744322180747986, + -0.012823173776268959, + 0.04778469353914261, + -0.06461362540721893, + -0.022884981706738472, + -0.017208177596330643, + 0.027234431356191635, + 0.012337268330156803, + 0.02585967257618904, + -0.03041059523820877, + -0.07290957868099213, + 0.043778933584690094, + -0.05228821188211441, + 0.06565655022859573, + -0.08224845677614212, + 0.006666391156613827, + 0.013818688690662384, + -0.103154256939888, + -0.00180436996743083, + -0.031856462359428406, + 0.04460852965712547, + 0.043138958513736725, + -0.06897492706775665, + 0.03778214380145073, + 0.05920940637588501, + 0.04733434319496155, + -0.0417167954146862, + 0.022944238036870956, + -0.033847492188215256, + 0.02075173519551754, + 0.019424382597208023, + -0.03124019131064415, + 0.008053001016378403, + -0.052383020520210266, + -0.006885641720145941, + -0.025172293186187744, + 0.0058516100980341434, + 0.010571415536105633, + 0.026784079149365425, + 0.04081609100103378, + -0.010867699049413204, + 0.030552811920642853, + 0.0451773926615715, + -0.0456988550722599, + -0.022007979452610016, + 0.04245157912373543, + -0.051861561834812164, + -0.008313730359077454, + 0.0025747085455805063, + 0.019163653254508972, + -0.038327306509017944, + -0.01151952426880598, + 0.00898333266377449, + -0.04612550139427185, + -0.012645403854548931, + 0.07271996140480042, + -0.05887756869196892, + 0.0063997358083724976, + -0.02521969936788082, + 0.01567935198545456, + 0.010227725841104984, + 0.0008977407123893499, + 0.025835970416665077, + -0.0064767696894705296, + 0.06229076161980629, + 0.005424960982054472, + -0.011513598263263702, + -0.062385570257902145, + 0.022316114977002144, + -0.047689881175756454, + 0.050960857421159744, + 0.03882506489753723, + -0.06082119047641754, + 0.024532319977879524, + -0.06314405798912048, + 0.007827824912965298, + 0.09319911152124405, + -0.006755276583135128, + -0.020893951877951622, + -0.02841956727206707, + -0.02194872312247753, + -0.04515369236469269, + 0.004782024770975113, + 0.04527220502495766, + 0.004956832155585289, + 0.030386893078684807, + 0.04555663838982582, + -0.004337598569691181, + -0.027376648038625717, + -0.08898002654314041, + 0.013119458220899105, + -0.001674004946835339, + -0.0272581335157156, + 0.036786630749702454, + -0.004405743908137083, + 0.03455857187509537, + -0.032235704362392426, + -0.0463862307369709, + -0.002669519279152155, + 0.016141556203365326, + 0.04098201170563698, + -0.02334718406200409, + 0.05920940637588501, + -0.0012377266539260745, + -0.06636762619018555, + 0.09424203634262085, + -0.11566929519176483, + 0.009961070492863655, + -0.029154350981116295, + 0.07309920340776443, + 0.04138495773077011, + 0.009676637127995491, + -5.198859435040504e-05, + -0.02552783489227295, + -0.0008547795005142689, + 0.030576515942811966, + 0.005226450972259045, + 0.013937202282249928, + 0.015703056007623672, + -0.07030228525400162, + -0.0034754120279103518, + 0.0025376728735864162, + 0.024532319977879524, + 0.056554701179265976, + 0.06527730077505112, + 0.016568204388022423, + 0.04565144702792168, + 0.019116247072815895, + 0.0391094945371151, + 0.00717007415369153, + -0.014600878581404686, + 0.03951244056224823, + 0.019566599279642105, + -0.05195637419819832, + 0.08224845677614212, + 0.008787785656750202, + 0.04868539795279503, + 0.051482319831848145, + 0.03681033104658127, + 0.06665205955505371, + 0.05925681069493294, + -0.053473345935344696, + -0.0765123963356018, + -0.04695509746670723, + 0.026902591809630394, + -0.03854063153266907, + 0.0214628167450428, + 0.031714245676994324, + -0.020443599671125412, + -0.020763587206602097, + 0.005359778646379709, + 0.027424052357673645, + 0.020846545696258545, + -0.02113097906112671, + -0.025172293186187744, + -0.04508258402347565, + 0.004782024770975113, + -0.05536956712603569, + -0.017421502619981766, + -0.05612805113196373 + ] + }, + { + "id": "671cfc23-d52c-472c-a43a-372c5b2f51e7", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hartnatalie", + "reviewDate": "2022-04-03T20:10:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6a3e1469-f2f8-47b7-97f0-d0b0ab2111b8", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "moorejoseph", + "reviewDate": "2022-10-26T07:08:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e3c8ed25-ea99-4ff6-8f6c-c34352241253", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melindarobinson", + "reviewDate": "2021-03-07T01:34:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2a22be86-a31a-4ed6-8ea7-59d2b81d6b18", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ewinggeorge", + "reviewDate": "2021-08-23T04:26:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e2a4b9c1-1a01-4bad-91d2-2fd6055da3a6", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "browndonald", + "reviewDate": "2022-11-29T00:24:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b6262422-63a7-4fcb-848c-2e98d1048098", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "schaeferbarbara", + "reviewDate": "2022-09-11T09:10:48", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9939ac16-b23b-4ab4-9130-25a6874ffbdb", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyramirez", + "reviewDate": "2022-11-17T20:24:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b61fc12f-3b96-447b-b190-2586e4f6a954", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsvanessa", + "reviewDate": "2022-09-04T07:29:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d4d90f5f-6e54-481e-b5e8-7683439340b5", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kellerdaniel", + "reviewDate": "2022-07-09T22:24:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c53b72e8-ddc9-4dd0-98ed-62b7a1dd27e4", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eadams", + "reviewDate": "2022-07-11T08:29:25", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7b42d850-7ed6-437a-a5b2-583bcd617d84", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perezlynn", + "reviewDate": "2022-10-22T08:54:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "58332f27-77a1-4229-9373-361b040af8be", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melanie41", + "reviewDate": "2021-03-05T22:15:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f392061c-8b62-479b-b9fe-b840fb5a3bcd", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cameron77", + "reviewDate": "2021-11-17T19:13:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "eb4a7085-c19c-40f7-9ebf-557c16a49ee2", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jessicadavis", + "reviewDate": "2021-12-10T18:58:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2596d13e-fced-4140-ad8b-9d2a446d37c5", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "veronica98", + "reviewDate": "2022-03-23T00:16:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d49814db-a7b4-4ef7-abe8-c5b2de3f5009", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stanley51", + "reviewDate": "2022-05-19T17:07:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d59330ec-3a97-4161-9741-5a1276a230ee", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "twagner", + "reviewDate": "2021-01-06T19:25:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bd8fa1bb-22f3-4738-b975-96cf7996353c", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "antonio50", + "reviewDate": "2021-07-12T11:51:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "674cd330-9b32-4c32-b2e7-949a67b704d2", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laneannette", + "reviewDate": "2021-12-09T21:24:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "d134be2c-37f1-412b-b464-479a85cc3ef4", + "productId": "e24d1c4c-f095-47f9-b69d-6dbb09a71699", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeffery10", + "reviewDate": "2022-10-04T12:47:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "43a793fe-0453-4a21-826e-601084c2bcbb", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "product", + "name": "Premium TV + (Silver)", + "description": "This Premium TV + (Silver) is not available in France, Spain, Germany, UK, France, France Direct, and United Kingdom/Ireland. In the United Kingdom, there is a Premium TV package with unlimited live streams, free to the public, and unlimited cable channels. This premium TV is primarily from the BBC Worldwide TV division, and it is", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-12-07T10:17:17", + "price": 684.38, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-01-12T07:22:31", + "newPrice": 721.33 + }, + { + "priceDate": "2022-12-21T07:22:31", + "newPrice": 694.57 + }, + { + "priceDate": "2025-03-08T07:22:31", + "newPrice": 684.38 + } + ], + "descriptionVector": [ + 0.0013636876828968525, + 0.06218719854950905, + -0.040331728756427765, + 0.07725993543863297, + -0.04706583917140961, + -0.004050798248499632, + -0.05411599203944206, + 0.005539839155972004, + -0.02098027803003788, + 0.04655531048774719, + 0.05761675536632538, + -0.034254010766744614, + 0.00624789297580719, + -0.017868487164378166, + 0.07254362851381302, + 0.01491471752524376, + 0.011012823320925236, + -0.0027167394291609526, + 0.05197663605213165, + -0.0018597813323140144, + 0.1022028848528862, + -0.00833862740546465, + -0.01622750423848629, + -0.06063130497932434, + -0.05790848657488823, + 0.004278712905943394, + -0.019278518855571747, + -0.004394189454615116, + 0.05100420117378235, + -0.01040505152195692, + -0.006800965406000614, + 0.01789279840886593, + -0.02127200923860073, + -0.0225604847073555, + -0.03561542183160782, + -0.030145475640892982, + -0.005287613719701767, + -0.00017492429469712079, + 0.052997689694166183, + 0.034740228205919266, + 0.013954438269138336, + -0.0007809866219758987, + 0.016434146091341972, + 0.05465083196759224, + 0.05027487501502037, + -0.014768851920962334, + 0.019473005086183548, + -0.04524252563714981, + -0.02237815409898758, + -0.03347606584429741, + -0.05061522498726845, + -0.007773399818688631, + -0.048548802733421326, + 0.07643336802721024, + -0.06967494636774063, + 0.002760802861303091, + 0.014331256039440632, + 0.0813927873969078, + -0.014793163165450096, + 0.0034430266823619604, + -0.06583382934331894, + -0.0038320005405694246, + -0.003962671384215355, + 0.041255541145801544, + -0.016762342303991318, + 0.05810297280550003, + -0.04110967740416527, + -0.016750188544392586, + -0.0638403370976448, + -0.0007369231898337603, + 0.01603301800787449, + 0.006290437187999487, + 0.07458574324846268, + 0.05518566817045212, + -0.010295652784407139, + 0.06680626422166824, + 0.006825276184827089, + -0.03649061173200607, + 0.0698208138346672, + 0.023107480257749557, + 0.01670156605541706, + -0.013480376452207565, + -0.01296984776854515, + 0.041085366159677505, + -0.0406963936984539, + 0.03897032141685486, + -0.044440265744924545, + -0.07978826761245728, + -0.016628634184598923, + 0.08489354699850082, + 0.06199271231889725, + 0.06437517702579498, + 0.05285182595252991, + -0.10628711432218552, + 0.05533153563737869, + 0.03459436446428299, + 0.0062539707869291306, + 0.025891074910759926, + -0.03897032141685486, + 0.06841078400611877, + 0.011018901132047176, + -0.08781085163354874, + 0.03359761834144592, + -0.007037996314466, + 0.03515351563692093, + -0.08907502144575119, + -0.02228091098368168, + -0.03610163927078247, + 0.05742226913571358, + -0.07317571341991425, + -0.036782342940568924, + -0.003430871292948723, + 0.037244249135255814, + 0.05202525854110718, + 0.01967964693903923, + 0.03498333692550659, + -0.03228483349084854, + -0.04074501246213913, + 0.05508842691779137, + 0.014161080121994019, + -0.053678397089242935, + -0.05294907093048096, + -0.09155473113059998, + -0.035202138125896454, + 0.015072737820446491, + 0.014452810399234295, + -0.05820021778345108, + 0.12067914754152298, + 0.02956201508641243, + -0.0842614695429802, + -0.11387210339307785, + -0.014331256039440632, + -0.051052823662757874, + 0.04067208245396614, + -0.061409249901771545, + 0.04086656868457794, + -0.07152257114648819, + 0.03515351563692093, + 0.01239854283630848, + 0.027714388445019722, + -0.011438263580203056, + 0.0017230327939614654, + 0.0035493867471814156, + 0.004111575428396463, + -0.03442418947815895, + -0.04254401847720146, + 0.006740188226103783, + 0.039869822561740875, + 0.008618202991783619, + -0.028589580208063126, + 0.07380779087543488, + -0.0744398757815361, + -0.11027409881353378, + 0.0002121503057423979, + 0.0046403370797634125, + 0.06067992374300957, + -0.007548524532467127, + 0.02012939751148224, + -0.01772262342274189, + 0.08742187917232513, + -0.022305220365524292, + -0.03264949470758438, + -0.03145826235413551, + 0.034545741975307465, + 0.026814887300133705, + 0.03860565647482872, + 0.04176606982946396, + -0.014683764427900314, + 0.017783399671316147, + 0.005676587577909231, + -0.04726032540202141, + -0.06549347937107086, + 0.05576913058757782, + -0.03442418947815895, + 0.05027487501502037, + 0.019229896366596222, + -0.02358154207468033, + -0.03627181425690651, + -0.00844194833189249, + -0.025988318026065826, + -0.045120969414711, + 0.02863820269703865, + -0.027155239135026932, + -0.1018139123916626, + -0.02099243365228176, + 0.06223582103848457, + 0.07516920566558838, + 0.006424146704375744, + -0.038289617747068405, + 0.0021940558217465878, + 0.04101243242621422, + 0.04047759622335434, + 0.02601262927055359, + -0.05771400034427643, + 0.014829629100859165, + -0.0005823212559334934, + 0.033257268369197845, + 0.05508842691779137, + -0.05873505771160126, + 0.012021724134683609, + 0.019363606348633766, + 0.043394897133111954, + 0.08474768698215485, + -0.02936752885580063, + -0.030607381835579872, + 0.015704819932579994, + 0.014805318787693977, + 0.036782342940568924, + -0.027446970343589783, + 0.15481160581111908, + -0.039869822561740875, + -0.017418736591935158, + 0.08260832726955414, + 0.008417638018727303, + -0.006922519765794277, + -0.009037565439939499, + -0.049472615122795105, + 0.028322160243988037, + -0.007761244662106037, + -0.03748735785484314, + 0.11805357038974762, + 0.018160218372941017, + 0.001727591035887599, + -0.028224917128682137, + 0.03517782688140869, + -0.010137631557881832, + -0.020542683079838753, + 0.0030814025085419416, + 0.0393349826335907, + 0.009712191298604012, + -0.029975300654768944, + -0.024456731975078583, + -0.08688703924417496, + -0.014562210068106651, + 0.023545075207948685, + 0.044731996953487396, + -0.015413089655339718, + -0.013030624948441982, + -0.05698467418551445, + -0.012106811627745628, + -0.014489277265965939, + 0.004075109027326107, + -0.01920558512210846, + 0.013018469326198101, + -0.032965537160634995, + 0.013492531143128872, + 0.0692373514175415, + 0.043881114572286606, + -0.05975611135363579, + -0.04616633802652359, + 0.00620231032371521, + -0.0174552034586668, + -0.057859864085912704, + 0.011110066436231136, + -0.08528252691030502, + -0.019278518855571747, + 0.05353252962231636, + -0.007597146090120077, + 0.02817629650235176, + 0.002198614180088043, + -0.03301415964961052, + 0.0010780349839478731, + -0.028468025848269463, + 0.012726739048957825, + -0.0008523997967131436, + 0.059172652661800385, + -0.03639337047934532, + -0.13244560360908508, + -0.044075604528188705, + 0.047236014157533646, + -0.07093910872936249, + 0.007797710597515106, + -0.03264949470758438, + -0.0020968122407794, + 0.03233345225453377, + 0.05985335633158684, + -0.013650552369654179, + -0.03313571214675903, + 0.029051486402750015, + 0.06636866927146912, + 0.0682649165391922, + -0.06145787239074707, + -0.04833000525832176, + -0.017017606645822525, + 0.03298984840512276, + 0.009067953564226627, + -0.061603739857673645, + 0.02538054622709751, + 0.0015224680537357926, + -0.018512725830078125, + -0.03301415964961052, + 0.028978554531931877, + 0.025599343702197075, + 0.03116653300821781, + 0.0786699652671814, + 0.015729131177067757, + -0.020445439964532852, + -0.005147826392203569, + 0.01958240382373333, + 0.08863742649555206, + -0.021563740447163582, + 0.01865859143435955, + -0.04038035124540329, + -0.0006286638672463596, + -0.053872883319854736, + 0.03289260342717171, + -0.04456182196736336, + 0.0014062317786738276, + 0.03649061173200607, + 0.016178881749510765, + 0.022305220365524292, + -0.043030235916376114, + -0.0667090192437172, + 0.024225778877735138, + 0.009894522838294506, + -0.0077673220075666904, + 0.0048864842392504215, + -0.006612556055188179, + 0.0027987887151539326, + -0.025161748751997948, + 0.02696075290441513, + 0.04643375799059868, + -0.10589814186096191, + -0.024857861921191216, + 0.020469751209020615, + -0.0782809928059578, + 0.009876290336251259, + 0.021782537922263145, + 0.023800339549779892, + -0.021053211763501167, + -0.03235776349902153, + -0.008460181765258312, + 0.02248755283653736, + -0.01910834200680256, + 0.11426107585430145, + -0.015449556522071362, + 0.016057327389717102, + -0.02386111579835415, + -0.005512489005923271, + -0.04803827404975891, + 0.08678979426622391, + -0.017090540379285812, + 0.08100380748510361, + -0.023946205154061317, + 0.019327139481902122, + 0.008934243582189083, + -0.08032310754060745, + 0.0345214307308197, + 0.021940557286143303, + -0.020445439964532852, + 0.0014259843155741692, + 0.019351450726389885, + 0.025331923738121986, + 0.022122889757156372, + 0.07696820795536041, + 0.009548093192279339, + -0.08956123888492584, + -0.0375116690993309, + 0.01464729756116867, + -0.023520763963460922, + 0.027738699689507484, + -0.0024523588363081217, + -0.031482573598623276, + 0.0453154556453228, + -0.1012304499745369, + 0.04067208245396614, + -0.014027371071279049, + -0.015133515000343323, + -0.012994159013032913, + 0.032698117196559906, + 0.020652081817388535, + -0.028492337092757225, + -0.037438735365867615, + 0.08285143971443176, + -0.05076109245419502, + 0.08396973460912704, + 0.004454966634511948, + 0.04939968138933182, + 0.04074501246213913, + -0.013978748582303524, + -0.1128024235367775, + 0.0509069561958313, + -0.03578559681773186, + 0.0315311960875988, + 0.03177430480718613, + 0.022426774725317955, + -0.01496333908289671, + -0.036150261759757996, + -0.0572764053940773, + -0.022682039067149162, + -0.03051013872027397, + 0.037438735365867615, + 0.0432976558804512, + -0.0667090192437172, + 0.00520252576097846, + -0.043030235916376114, + -0.0518793910741806, + -0.0062539707869291306, + -0.005564149934798479, + -0.03422970324754715, + 0.055817753076553345, + 0.012435008771717548, + -0.027908876538276672, + -0.04959417134523392, + -0.07200878858566284, + -0.06724385917186737, + 0.02313178963959217, + 0.0004368358931969851, + -0.014939027838408947, + -0.019643181934952736, + -0.08970709890127182, + -0.07915618270635605, + -0.003157373983412981, + 0.07161981612443924, + 0.02880837768316269, + -0.0006233458407223225, + 0.05503980442881584, + 0.005466906353831291, + 0.07006391882896423, + -0.001291514839977026, + 0.03821668401360512, + 0.08037173002958298, + 0.0077551668509840965, + -0.02321687899529934, + -0.017479514703154564, + -0.03537231311202049, + -0.010623848997056484, + 0.009639259427785873, + 0.002850449178367853, + -0.01165706105530262, + 0.07915618270635605, + -0.05538015812635422, + 0.02239030972123146, + -0.03291691467165947, + 0.005056660622358322, + 0.07084187120199203, + -0.0054699452593922615, + 0.07225190103054047, + -0.0010484061203897, + 0.04441595450043678, + -0.08314316719770432, + -0.022451085969805717, + -0.04008862003684044, + -0.0024705920368433, + 0.02703368477523327, + 0.00014918895612936467, + 0.02248755283653736, + 0.01077579241245985, + 0.05790848657488823, + 0.02022664248943329, + 0.015145670622587204, + -0.025769520550966263, + 0.005257225129753351, + -0.010629926808178425, + -0.06223582103848457, + -0.027860254049301147, + 0.06685488671064377, + 0.003503803862258792, + 0.02004431001842022, + 0.04091519117355347, + -0.0283464714884758, + 0.006703721825033426, + 0.05732502415776253, + -0.043419208377599716, + -0.056303970515728, + -0.044902171939611435, + -0.0784754827618599, + -0.011784693226218224, + 0.022220132872462273, + 0.008527036756277084, + -0.05294907093048096, + -0.05280320346355438, + -0.02153942920267582, + 0.020688548684120178, + 0.027252482250332832, + 0.018488414585590363, + 0.06700075417757034, + -0.0029735229909420013, + -0.021697448566555977, + -0.02640160173177719, + 0.05518566817045212, + 0.00599262909963727, + 0.059172652661800385, + 0.017297182232141495, + -0.010708937421441078, + -0.010787947103381157, + 0.005123515147715807, + 0.07166843861341476, + -0.000960279256105423, + 0.04645806923508644, + 0.04662824422121048, + -0.0860118493437767, + 0.07074462622404099, + 0.06194408982992172, + -0.021588049829006195, + -0.05183076858520508, + 0.0848449245095253, + -0.03213896602392197, + 0.05294907093048096, + -0.006515312474220991, + -0.04655531048774719, + 0.0670979917049408, + -0.017771244049072266, + -0.022827904671430588, + -0.020007843151688576, + -0.05518566817045212, + -0.05455358698964119, + 0.06252755224704742, + -0.030145475640892982, + 0.029610637575387955, + 0.005983512382954359, + 0.11999844014644623 + ] + }, + { + "id": "705cdf0a-218a-4c3b-b5a8-92e8b8d5074e", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "sarahperkins", + "reviewDate": "2022-11-28T08:02:25", + "stars": 5, + "verifiedUser": true + }, + { + "id": "30538dbb-c32c-40de-9711-b3081099238d", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "dcox", + "reviewDate": "2022-10-08T23:25:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0400ec40-fe38-43ce-b999-6e4880cc7e60", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "ivanabbott", + "reviewDate": "2021-08-08T23:30:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "936e8fa8-de16-4692-8956-b38c962a13f4", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "vconner", + "reviewDate": "2021-10-14T20:47:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "26ddf278-6207-4744-9da7-170df6ea623e", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "curryjulie", + "reviewDate": "2021-03-10T17:28:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "82e40998-efbf-4147-886a-50ca84315b8a", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "daltonchristina", + "reviewDate": "2022-02-24T01:14:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b7d69483-fd30-42ec-8ec6-cc275190a28a", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "franklin12", + "reviewDate": "2022-07-26T16:41:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "96c72cab-cf7a-40ff-850f-bb525c9423b5", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "joel85", + "reviewDate": "2021-01-12T07:22:31", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4392f345-83a4-4355-80d7-8c4481e4c3e6", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "yangamanda", + "reviewDate": "2021-04-18T13:00:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "64cf64cc-fcd6-4700-8850-c21c49fee8f4", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "kristinorton", + "reviewDate": "2021-12-12T01:28:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9b0a68ed-4c32-47c8-9f72-e1e39857de5a", + "productId": "43a793fe-0453-4a21-826e-601084c2bcbb", + "category": "Media", + "docType": "customerRating", + "userName": "lovejohn", + "reviewDate": "2022-12-21T07:37:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Pro (Silver)", + "description": "This Amazing Mouse Pro (Silver) is a new creation – a premium brand in the realm of gaming PCs. The design is simple, classy and the price is high. With our signature red mouse we have a clean look looking design, with black and white finishes. At top we have the ability to adjust with just 1 click. It feels light and light. Great price for the money, it's available NOW on:\n\n", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2018-07-01T23:24:56", + "price": 977.64, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-03-28T13:06:01", + "newPrice": 966.68 + }, + { + "priceDate": "2022-10-30T13:06:01", + "newPrice": 977.64 + } + ], + "descriptionVector": [ + -0.06209459900856018, + -0.009535028599202633, + -0.0485844761133194, + 0.031333088874816895, + 0.015393744222819805, + -0.038010209798812866, + -0.04172549024224281, + 0.03148897737264633, + 0.06115928292274475, + 0.07752731442451477, + 0.0242922380566597, + -0.03302185609936714, + 0.09155705571174622, + -0.0818401649594307, + -0.005647620651870966, + 0.02503269724547863, + -0.031852710992097855, + -0.03317774087190628, + -0.05549542233347893, + -0.03187869116663933, + 0.015211877413094044, + -0.06199067458510399, + 0.011197812855243683, + -0.04032251611351967, + 0.015965327620506287, + -0.010801602154970169, + -0.002838424639776349, + 0.026357728987932205, + 0.028293313458561897, + 0.05622289329767227, + 0.05798960104584694, + 0.046687863767147064, + 0.0325801782310009, + 0.09659737348556519, + -0.006004859693348408, + 0.024629991501569748, + -0.012750177644193172, + -0.02021322026848793, + 0.07404585927724838, + 0.06567997485399246, + -0.005391058046370745, + -0.051728177815675735, + -0.027955560013651848, + -0.05746997892856598, + -0.008554245345294476, + 0.03299587592482567, + -0.07051244378089905, + 0.018173711374402046, + -0.021434327587485313, + 0.0073980907909572124, + 0.02738397754728794, + 0.04499909654259682, + -0.052507609128952026, + -0.0027328769210726023, + 0.011678460985422134, + -0.06900554895401001, + -0.00596913555637002, + 0.10605445504188538, + -0.009736381471157074, + -0.0449211560189724, + 0.020745830610394478, + -0.024746906012296677, + 0.012386443093419075, + 0.021122556179761887, + 0.007515005301684141, + -0.06614763289690018, + -0.058041561394929886, + -0.020979659631848335, + 0.017589138820767403, + 0.06557605415582657, + -0.059652384370565414, + -0.06063966080546379, + 0.08303529024124146, + 0.009073865599930286, + 0.028423218056559563, + 0.06115928292274475, + 0.10818489640951157, + 0.044219668954610825, + 0.06412111967802048, + -0.01573149859905243, + 0.04544077441096306, + 0.024863820523023605, + 0.013367226347327232, + 0.03499641269445419, + 0.06791434437036514, + 0.017394281923770905, + -0.0017114985967054963, + -0.13717970252037048, + -0.0020573707297444344, + 0.08272351324558258, + -0.051312483847141266, + 0.0468437485396862, + 0.01856342703104019, + -0.017628110945224762, + -0.02738397754728794, + 0.004189436789602041, + -0.02220076695084572, + 0.029384514316916466, + -0.00023524987045675516, + 0.013730959966778755, + 0.02634473703801632, + 0.033567458391189575, + -0.0692133903503418, + -0.012503357604146004, + -0.07809890061616898, + 0.017121480777859688, + 0.0005086593446321785, + 0.025201573967933655, + -0.07082421332597733, + -0.13406197726726532, + -0.005430029705166817, + 0.023369912058115005, + 0.005657363682985306, + -0.015302810817956924, + 0.0010603497503325343, + 0.035957708954811096, + -0.12034400552511215, + -0.008411349728703499, + -0.009833809919655323, + -0.01793988235294819, + 0.019329866394400597, + 3.681487942230888e-05, + -0.021057603880763054, + 0.04271277040243149, + -0.00874260812997818, + -0.00895045604556799, + 0.003845188533887267, + -0.0036990453954786062, + 0.03063160367310047, + -0.015549630858004093, + -0.0904138907790184, + 0.05570327118039131, + 0.042504921555519104, + 0.08890699595212936, + 0.0002675231371540576, + 0.05913276597857475, + 0.0033937685657292604, + 0.060587700456380844, + -0.03743862733244896, + 0.03232036903500557, + -0.04767514020204544, + -0.03699694946408272, + -0.046194225549697876, + 0.026461651548743248, + -0.073838010430336, + -0.015458697453141212, + -0.0061087836511433125, + 0.02372065559029579, + -0.0015953959664329886, + 0.04071223363280296, + 0.005095524247735739, + -0.031852710992097855, + 0.002460076240822673, + -0.043726030737161636, + 0.013328255154192448, + 0.03567191958427429, + -0.05159827321767807, + -0.04172549024224281, + -0.001345328870229423, + 0.07924205809831619, + -0.01102244108915329, + 0.006956413853913546, + -0.06287402659654617, + 0.034424830228090286, + -0.02204488217830658, + 0.058041561394929886, + 0.04066026955842972, + 0.02118750847876072, + -0.03187869116663933, + 0.017615120857954025, + -0.06012004241347313, + -0.03463267907500267, + 0.022096844390034676, + -0.07175952941179276, + 0.10953591018915176, + 0.06115928292274475, + 0.046791788190603256, + 0.028449198231101036, + 0.017017558217048645, + -0.002117451746016741, + 0.02521456405520439, + 0.05861314386129379, + -0.11213400959968567, + 0.0025916050653904676, + 0.08007345348596573, + 0.05261153355240822, + 0.05341694504022598, + 0.037386663258075714, + -0.0018819989636540413, + 0.04936390742659569, + 0.03572387993335724, + -0.0013696859823539853, + 0.02485083043575287, + -0.030683565884828568, + 9.1999136202503e-05, + 0.09987097978591919, + 0.02839723788201809, + 0.039257295429706573, + 0.02218777686357498, + 0.0159523356705904, + -0.013419188559055328, + 0.006475765258073807, + 0.1197204664349556, + 0.014315533451735973, + 0.0159523356705904, + -0.04879232496023178, + 0.011249774135649204, + -0.026500623673200607, + 0.03538612648844719, + -0.006589432246983051, + -0.02985217235982418, + 0.027150148525834084, + 0.02312309294939041, + -0.0049688671715557575, + 0.05307919159531593, + -0.002607843140140176, + 0.04868840053677559, + 0.008924474939703941, + -0.0026305767241865396, + -0.07072029262781143, + 0.0028546627145260572, + 0.021018631756305695, + -0.012698215432465076, + 0.00034059470635838807, + -0.08334705978631973, + -0.0029326057992875576, + 0.07321447134017944, + 0.012516348622739315, + 0.006004859693348408, + 0.008560740388929844, + -0.1197204664349556, + 0.003660073969513178, + 0.014055723324418068, + 0.042349036782979965, + -0.07596845179796219, + 0.07259092479944229, + -0.06349757313728333, + -0.006936927791684866, + 0.0016035151202231646, + 0.06744668632745743, + -0.05502776429057121, + -0.032606158405542374, + -0.0612112432718277, + 0.01722540520131588, + 0.017433254048228264, + -0.0224605780094862, + 0.11535565555095673, + -0.09155705571174622, + -0.08927072584629059, + 0.022096844390034676, + -0.05689839646220207, + -0.015068981796503067, + -0.04676580801606178, + 0.05149434879422188, + -0.003332063788548112, + 0.0014273313572630286, + 0.07477332651615143, + -0.002149928128346801, + 0.027332015335559845, + -0.028345275670289993, + -0.026916319504380226, + 0.019719582051038742, + -0.001841403660364449, + 0.04219314828515053, + -0.05908080190420151, + 0.013471150770783424, + -0.017420262098312378, + -0.045570679008960724, + -0.034580715000629425, + 0.047389350831508636, + -0.04611628130078316, + -0.018277635797858238, + 0.06682313978672028, + -0.02252553030848503, + 0.05271545797586441, + 0.022369643673300743, + -0.031099261716008186, + 0.053676754236221313, + 0.02005733549594879, + -0.04281669482588768, + 0.050792861729860306, + 0.05746997892856598, + 0.07944990694522858, + 0.029956096783280373, + 0.013834884390234947, + 0.0013843002961948514, + -0.03814011439681053, + -0.019849486649036407, + -0.03795824572443962, + 0.010502820834517479, + -0.024201305583119392, + -0.004936390556395054, + 0.024331210181117058, + 0.019849486649036407, + 0.06526428461074829, + 0.03847786784172058, + 0.03819207474589348, + 0.05601504445075989, + 0.004273875150829554, + 0.023032160475850105, + 0.04219314828515053, + 0.015718506649136543, + -0.07711161673069, + 0.0021093327086418867, + 0.010749639943242073, + 0.07103206217288971, + -0.056326813995838165, + 0.020083315670490265, + 0.0035853784065693617, + -0.04292061924934387, + 0.05876902863383293, + -0.0037575026508420706, + -0.048558495938777924, + 0.005040314514189959, + 0.0744095966219902, + -0.042946599423885345, + 0.03642536699771881, + -0.003653578693047166, + 0.023525798693299294, + 0.02405840903520584, + -0.05336498096585274, + -0.08147642761468887, + -0.11483603715896606, + 0.07887832820415497, + 0.033385589718818665, + -0.04853251576423645, + -0.0405823290348053, + -0.00038139300886541605, + -0.06781041622161865, + -0.07882636785507202, + -0.06115928292274475, + -0.0017326081870123744, + -0.029046762734651566, + -0.04884428530931473, + 0.02614988014101982, + -0.00850228313356638, + 0.020537983626127243, + 0.09644148498773575, + 0.024331210181117058, + 0.06100339815020561, + 0.01651092804968357, + 0.02353878878057003, + 0.031229166314005852, + 0.03733470290899277, + 0.0045564183965325356, + -0.055391497910022736, + 0.008840036578476429, + -0.07331839203834534, + 0.043803971260786057, + 0.04658393934369087, + 0.0016822699690237641, + -0.1157713532447815, + -0.010346935130655766, + -0.026552585884928703, + 0.08313921093940735, + 0.00298456777818501, + 0.022291701287031174, + -0.025656241923570633, + 0.061367131769657135, + 0.06609567254781723, + -0.004952628631144762, + -0.01309442613273859, + 0.003971845842897892, + 0.06074358522891998, + -0.04764916002750397, + 0.05689839646220207, + -0.006930432748049498, + 0.01887519843876362, + -0.0008979684207588434, + -0.027513882145285606, + -0.011158840730786324, + -0.05372871458530426, + -0.015796450898051262, + 0.06547212600708008, + -0.05819744989275932, + 0.033255685120821, + -0.00164654606487602, + 0.027851635590195656, + -0.04133577644824982, + 0.02162918634712696, + 0.050273243337869644, + 0.04835064709186554, + -0.02521456405520439, + 0.02196693792939186, + 0.05544346198439598, + -0.03873767703771591, + 0.0006872787489555776, + -0.07363016158342361, + 0.013977780006825924, + 0.016225136816501617, + -0.030813470482826233, + 0.047882989048957825, + 0.03445081040263176, + 0.06458877772092819, + 0.007579957600682974, + -0.03852982819080353, + 0.05830137059092522, + 0.04442751780152321, + 0.017498206347227097, + -0.015510658733546734, + 0.03000805899500847, + 0.016913633793592453, + 0.006063316948711872, + -0.019719582051038742, + -0.034580715000629425, + -0.022070862352848053, + 0.05450814589858055, + 0.04741533100605011, + -0.06105535849928856, + -0.07976168394088745, + -0.0452069453895092, + -0.029722267761826515, + 0.026162870228290558, + 0.039543088525533676, + -0.008158035576343536, + 0.024123361334204674, + 0.05170219764113426, + 0.02013527788221836, + 0.07274681329727173, + -0.06360149383544922, + 0.06334168463945389, + -0.023603741079568863, + 0.018030816689133644, + 0.06796630471944809, + -0.08261959254741669, + 0.014289552345871925, + 0.014705248177051544, + 0.015302810817956924, + 0.06490054726600647, + -0.034165021032094955, + 0.03439885005354881, + -0.07825478166341782, + -0.022616462782025337, + -0.027851635590195656, + -0.06812219321727753, + -0.014185627922415733, + 0.08641281723976135, + 0.03216448426246643, + 0.01647195592522621, + 0.015679536387324333, + -0.009671428240835667, + -0.05149434879422188, + 0.027929577976465225, + 0.007463043089956045, + -0.02136937528848648, + 0.01264625322073698, + -0.06994086503982544, + 0.033385589718818665, + 0.01569252647459507, + -0.026994261890649796, + -0.013834884390234947, + -0.04897419363260269, + -0.019485753029584885, + -0.011490099132061005, + 0.08615300804376602, + -0.003994579426944256, + -0.06328972429037094, + 0.08672458678483963, + -0.017550168558955193, + 0.0485844761133194, + -0.008638683706521988, + 0.03600966930389404, + 0.07269484549760818, + 0.02361673302948475, + -0.02638370916247368, + 0.0007802420295774937, + -0.02361673302948475, + 0.03143701329827309, + -0.008443825878202915, + 0.011535565368831158, + 0.034424830228090286, + -0.03369736298918724, + -0.017056528478860855, + 0.01819969341158867, + 0.014887114986777306, + -0.04731140658259392, + 0.020940689370036125, + 0.0006064940243959427, + 0.012990501709282398, + 0.06916143000125885, + 0.04245296120643616, + 0.047623179852962494, + -0.06438092887401581, + 0.05492383986711502, + -0.008002148941159248, + -0.03616555780172348, + 0.0804891511797905, + 0.016679804772138596, + 0.015718506649136543, + 0.02264244481921196, + 0.01969360001385212, + 0.06697902828454971, + 0.034658659249544144, + 0.003835445735603571, + -0.05003941431641579, + 0.020044343546032906, + 0.024266257882118225, + 0.040816158056259155, + 0.005537201184779406, + 0.04835064709186554, + -0.008482798002660275, + -0.03400913253426552, + -0.011087393388152122, + 0.03130710870027542, + -0.005144238937646151, + 0.002182404277846217, + -0.021551242098212242, + -0.02114853635430336, + -0.030397774651646614, + -0.026552585884928703, + 0.027851635590195656, + -0.02204488217830658 + ] + }, + { + "id": "16a0a2ae-df70-4284-b46a-2d3d9c143430", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "achambers", + "reviewDate": "2022-05-17T15:06:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2e235395-ab8a-4801-a63e-14160536dd58", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mistynunez", + "reviewDate": "2021-03-28T13:06:01", + "stars": 4, + "verifiedUser": true + }, + { + "id": "40a15007-2a17-48c2-bd0d-137a2475cb16", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelashelton", + "reviewDate": "2022-03-20T03:01:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6d7765d1-bd86-4ae8-8626-a10bebf41e81", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "monicajones", + "reviewDate": "2022-09-23T01:19:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e2884427-e91e-4abb-b315-8774a1630493", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "levans", + "reviewDate": "2022-11-03T16:21:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "50db3c28-49ab-4357-b555-caa20d1a9c28", + "productId": "4d8e0d59-5a7f-445c-9b5d-d7b0d7dcc0ef", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cooperangela", + "reviewDate": "2021-09-04T13:54:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7106056b-592e-4437-a5c2-fd24384ea009", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Super (Black)", + "description": "This Premium Mouse Super (Black) is built with a 1/6 scale high density plastic for excellent compatibility with your gaming mouse. The low profile rubber construction is highly corrosion resistant and your mouse will last 2.5 years of durability.\n\n\nThe 100% Polyester Lapt", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-04-05T03:24:16", + "price": 515.13, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-02-18T18:35:21", + "newPrice": 500.69 + }, + { + "priceDate": "2021-07-19T18:35:21", + "newPrice": 489.92 + }, + { + "priceDate": "2021-12-17T18:35:21", + "newPrice": 475.16 + }, + { + "priceDate": "2022-05-17T18:35:21", + "newPrice": 510.7 + }, + { + "priceDate": "2022-10-15T18:35:21", + "newPrice": 464.36 + }, + { + "priceDate": "2023-12-06T18:35:21", + "newPrice": 515.13 + } + ], + "descriptionVector": [ + -0.09997910261154175, + -0.02593797631561756, + -0.02779955230653286, + 0.018752288073301315, + 0.06870461255311966, + 0.021904557943344116, + -0.046762820333242416, + 0.0004572499019559473, + 0.06865496933460236, + 0.03810027986764908, + 0.05212416127324104, + 0.05137953162193298, + 0.0755055695772171, + -0.08210796117782593, + 0.058180492371320724, + 0.009003828279674053, + -0.006372799165546894, + -0.01408593449741602, + 0.05247165635228157, + -0.05545017868280411, + 0.009351322427392006, + -0.021110285073518753, + -0.02467210218310356, + -0.01031313743442297, + -0.007862061262130737, + 0.016766605898737907, + 0.039688825607299805, + 0.014259681105613708, + 0.01778426766395569, + 0.03393034636974335, + 0.031175212934613228, + 0.00817852932959795, + 0.022053483873605728, + 0.07153420895338058, + -0.019000498577952385, + -0.07381773740053177, + 0.008066834881901741, + -0.008861107751727104, + 0.08017192780971527, + 0.007427692878991365, + 0.04678764194250107, + -0.016630088910460472, + -0.02183009497821331, + 0.005196902900934219, + 0.024448713287711143, + -0.00958712212741375, + 0.03589120879769325, + 0.04954277351498604, + -0.007893087342381477, + -0.04366018995642662, + 0.027774732559919357, + 0.03914276137948036, + -0.0628468468785286, + 0.022041073068976402, + -0.0015668274136260152, + -0.02628546953201294, + 0.06463395804166794, + 0.1863562911748886, + 0.06527930498123169, + -0.038695983588695526, + 0.015550374984741211, + -0.04380911588668823, + 0.023207662627100945, + -0.008668744005262852, + 5.565340325119905e-05, + -0.036561377346515656, + 0.027079742401838303, + -0.0453232005238533, + 0.06617286056280136, + 0.061307940632104874, + -0.09466740489006042, + -0.0276754479855299, + 0.0654282346367836, + -0.009431990794837475, + 0.049890268594026566, + 0.049517951905727386, + 0.09660344570875168, + 0.036164239048957825, + 0.039192404597997665, + 0.008432944305241108, + 0.001977925654500723, + -0.01610884815454483, + -0.03335946425795555, + 0.01617090031504631, + 0.09010033309459686, + 0.035518892109394073, + 0.006633420009166002, + -0.10792183876037598, + 0.008501202799379826, + 0.03651173412799835, + -0.03234180063009262, + 0.04356090724468231, + 0.054407697170972824, + -0.07108742743730545, + -0.027402415871620178, + 0.0358663871884346, + -0.05490411818027496, + 0.00986635871231556, + -0.007657287642359734, + 0.020700737833976746, + 0.04505016654729843, + -0.009233422577381134, + -0.0628964900970459, + 0.011498341336846352, + -0.010263495147228241, + -0.008501202799379826, + 0.02232651598751545, + -0.02665778622031212, + -0.05222344398498535, + -0.07709411531686783, + -0.024138450622558594, + -0.06051366776227951, + 0.009357527829706669, + -0.005677810404449701, + -0.06393896788358688, + -0.0060501256957650185, + -0.09878769516944885, + -0.007222919724881649, + -0.005507166031748056, + 0.03663583844900131, + 0.051776666194200516, + 0.04467785358428955, + 0.02096135914325714, + 0.055400535464286804, + 0.0402597077190876, + -0.012534619309008121, + -0.05887548252940178, + 0.0014481518883258104, + 0.059570468962192535, + -0.06225114315748215, + -0.09958197176456451, + 0.04100434109568596, + 0.00977328047156334, + 0.027104564011096954, + -0.04490124061703682, + 0.048996713012456894, + -0.04368501156568527, + 0.04455374926328659, + -0.01156659983098507, + 0.0447026751935482, + 0.03234180063009262, + -0.03308643028140068, + -0.0077689820900559425, + 0.021842505782842636, + -0.010021490976214409, + -0.043982863426208496, + 0.005383060779422522, + 0.01013939082622528, + -0.03120003454387188, + 0.0063448757864534855, + 0.0377776063978672, + -0.11119820922613144, + 0.0182186346501112, + -0.054655905812978745, + 0.052273087203502655, + 0.04892224818468094, + -0.09144067019224167, + 0.021792864426970482, + -0.051528457552194595, + 0.0980430617928505, + 0.05222344398498535, + -0.016282595694065094, + 0.02844489924609661, + 0.03425301983952522, + 0.004387116990983486, + 0.02792365849018097, + 0.007160867098718882, + -0.009090702049434185, + 0.00994082260876894, + 0.006571367383003235, + -0.04068166762590408, + -0.044479284435510635, + 0.002579835709184408, + -0.055896956473588943, + 0.08086691051721573, + 0.023306947201490402, + 0.029090246185660362, + 0.026012439280748367, + 0.012143688276410103, + 0.041947539895772934, + 0.04160004481673241, + 0.03380624204874039, + -0.0755055695772171, + -0.01087161060422659, + 0.036933690309524536, + 0.010735095478594303, + 0.010462063364684582, + 0.0679599791765213, + 0.009388553909957409, + -0.00010345327609684318, + 0.0049890270456671715, + 0.005600244738161564, + 0.042344674468040466, + -0.004815279506146908, + -0.0008664090419188142, + 0.06905210018157959, + -0.01905013993382454, + 0.0993833988904953, + 0.005665400065481663, + -0.024634871631860733, + -0.026757068932056427, + 0.04380911588668823, + 0.040458276867866516, + -0.033905524760484695, + 0.034799084067344666, + -0.06999529898166656, + 0.01003390084952116, + 0.03422819823026657, + 0.002648093504831195, + -0.02408880926668644, + 0.0050417715683579445, + -0.09248315542936325, + -0.03196948394179344, + -0.0015350255416706204, + 0.03206877037882805, + 0.0015412308275699615, + 0.003667307086288929, + -0.03437712416052818, + -0.03532032296061516, + -0.08756858855485916, + -0.002443320117890835, + 0.037405289709568024, + -0.04505016654729843, + -0.03174609690904617, + -0.08027120679616928, + -0.014247271232306957, + 0.07535664737224579, + 0.027948478236794472, + 0.016381878405809402, + -0.030033444985747337, + 0.04502534866333008, + -0.07009458541870117, + 0.030405761674046516, + 0.016406700015068054, + -0.0345756933093071, + 0.10156764835119247, + -0.08245545625686646, + -0.00682578282430768, + 0.048103153705596924, + 0.020030571147799492, + -0.04231985658407211, + -0.019397635012865067, + -0.0320935919880867, + 0.019496917724609375, + -0.01873987726867199, + -0.010517911054193974, + 0.03219287469983101, + -0.05093275383114815, + -0.08022156357765198, + 0.014433428645133972, + -0.04614229500293732, + 0.02365444041788578, + -0.003267067950218916, + 0.09635523706674576, + 0.03196948394179344, + 0.07510843127965927, + 0.08285259455442429, + -0.047979049384593964, + -0.027278311550617218, + -0.008861107751727104, + -0.0034470204263925552, + 0.02257472649216652, + -0.05296807736158371, + 0.02844489924609661, + -0.021718401461839676, + 0.05976903811097145, + -0.012398104183375835, + -0.02068832702934742, + 0.02226446382701397, + 0.036784764379262924, + 0.020105034112930298, + 0.03891937434673309, + 0.05346449837088585, + 0.022177590057253838, + 0.02350551448762417, + -0.012249178253114223, + -0.04249360039830208, + 0.034178558737039566, + 0.026012439280748367, + 0.01929835043847561, + 0.0653785914182663, + 0.09213566035032272, + 0.04783012345433235, + 0.03296232596039772, + 0.08111512660980225, + -0.026831531897187233, + -0.012658724561333656, + 0.06388933211565018, + 0.0022773293312639, + -0.043089307844638824, + -0.049517951905727386, + 0.012609083205461502, + 0.022897399961948395, + -0.011926504783332348, + 0.043734654784202576, + -0.010071132332086563, + 0.025491196662187576, + 0.029412919655442238, + 0.0037076412700116634, + 0.0163570586591959, + -0.025764228776097298, + 0.04867403954267502, + -0.06388933211565018, + -0.0471351332962513, + 0.0484258271753788, + 0.05584731698036194, + 0.0022618162911385298, + -0.018504077568650246, + 0.01876469887793064, + -0.03571746125817299, + 0.09392277151346207, + 0.024287376552820206, + -0.04646496847271919, + 0.007471129763871431, + 0.11864452064037323, + -0.03837331011891365, + -0.051032036542892456, + -0.028717931360006332, + 0.05634373798966408, + -0.006214565131813288, + -0.04740816727280617, + -0.004207164514809847, + -0.06225114315748215, + 0.11397816985845566, + 0.05137953162193298, + -0.06656999886035919, + -0.11010608822107315, + 0.023393820971250534, + -0.016319826245307922, + -0.04715995490550995, + -0.021730810403823853, + -0.011392852291464806, + -0.04678764194250107, + -0.00470668775960803, + 0.007371845655143261, + -0.04544730484485626, + -0.049120817333459854, + 0.04854993149638176, + 0.042195748537778854, + 0.03095182403922081, + 0.010803353041410446, + -0.04991509020328522, + -0.007837239652872086, + 0.0060501256957650185, + 0.01258426159620285, + -0.053017716854810715, + 0.03539478778839111, + -0.05306736007332802, + -0.05545017868280411, + 0.03482390567660332, + 0.0016816246788948774, + -0.10583686828613281, + 0.040185246616601944, + -0.014321734197437763, + 0.07441344857215881, + 0.005497857928276062, + 0.039713647216558456, + 0.02779955230653286, + -0.00966158602386713, + 0.018851570785045624, + -0.011057768948376179, + -0.00498592434450984, + 0.026632964611053467, + 0.043833937495946884, + 0.008954185992479324, + 0.03256519138813019, + -0.05852798745036125, + -0.007216714322566986, + 0.06344255059957504, + -0.03144824504852295, + -0.022611957043409348, + -0.02779955230653286, + 0.0553508959710598, + 0.08831322193145752, + -0.08439149707555771, + 0.07694519311189651, + 0.0173126682639122, + 0.015537964180111885, + -0.08776716142892838, + 0.016456343233585358, + 0.03157234936952591, + 0.0478053018450737, + 0.0073532299138605595, + 0.02678189054131508, + 0.0528191514313221, + -0.07019387185573578, + -0.019956108182668686, + 0.03234180063009262, + 0.03425301983952522, + 0.01327925082296133, + 0.023579977452754974, + 0.014557533897459507, + 0.02730313129723072, + 0.04907117411494255, + 0.04663871228694916, + 0.015935100615024567, + 0.0023378306068480015, + 0.0666196420788765, + -0.06895282119512558, + -0.004883537534624338, + 0.053017716854810715, + 0.03785207122564316, + -0.05728693678975105, + -0.04919527843594551, + 0.03283822163939476, + -0.08161154389381409, + 0.07694519311189651, + -0.03757903724908829, + -0.08727073669433594, + -0.0730234682559967, + -0.03311125189065933, + 0.004660148173570633, + -0.008159913122653961, + 0.040929876267910004, + 0.010325548239052296, + 0.012540824711322784, + 0.09407170116901398, + -0.010548937134444714, + 0.008619102649390697, + -0.05962011218070984, + 0.05897476524114609, + 0.00035253618261776865, + -0.0012604428920894861, + -0.01308068260550499, + -0.004384014289826155, + 0.004442964214831591, + -0.036064956337213516, + 0.055152326822280884, + 0.03988739475607872, + -0.03973846882581711, + 0.002274226862937212, + -0.07361917197704315, + -0.0276754479855299, + -0.029909340664744377, + -0.037827249616384506, + 0.03206877037882805, + 0.05356378108263016, + -0.0013085335958749056, + 0.01372602954506874, + 0.024188093841075897, + 0.03723154217004776, + -0.10325548052787781, + 0.04455374926328659, + 0.016059206798672676, + -0.03584156557917595, + 0.014185218140482903, + -0.05773371458053589, + 0.016344647854566574, + 0.033880703151226044, + -0.0018258969066664577, + -0.022003842517733574, + -0.057932283729314804, + 0.039167582988739014, + -0.012720777653157711, + 0.007371845655143261, + 0.03043058142066002, + 0.07451272755861282, + 0.0383981317281723, + 0.028122225776314735, + 0.030902180820703506, + -0.002843559253960848, + 0.10265977680683136, + 0.052273087203502655, + 0.041823435574769974, + -0.024014346301555634, + -0.014942259527742863, + 0.006658241152763367, + 0.059967607259750366, + -0.025143703445792198, + 0.046340860426425934, + -0.022500263527035713, + -0.015550374984741211, + 0.00958712212741375, + -0.022400978952646255, + 0.006065639201551676, + -0.011945120058953762, + 0.03978810831904411, + 0.004579479806125164, + -0.01439619716256857, + 0.024386661127209663, + -0.0027225567027926445, + 0.02350551448762417, + -0.03765350207686424, + 0.058329418301582336, + -0.019459687173366547, + -0.0078124189749360085, + 0.03129931911826134, + 0.019000498577952385, + 0.022425800561904907, + 0.037430111318826675, + 0.035916030406951904, + 0.10663114488124847, + -0.023815777152776718, + -0.06870461255311966, + -0.02995898202061653, + -0.005317905452102423, + 0.03951507806777954, + 0.00969261210411787, + 0.03293750435113907, + 0.015302164480090141, + 0.0016645602881908417, + -0.06061295419931412, + -0.0446530319750309, + 0.05902440845966339, + 0.04581962153315544, + 0.08602968603372574, + 0.010275905951857567, + 0.006276617757976055, + -0.01128736324608326, + -0.04202200099825859, + 0.009878769516944885, + -0.011343210004270077 + ] + }, + { + "id": "ee5ec60f-b96d-4eec-b2d4-b76d86a9aecf", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ehill", + "reviewDate": "2021-11-19T08:47:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c3d056ad-bcb1-4a51-92e4-e2c740ea672e", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "holly54", + "reviewDate": "2021-02-19T21:27:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "868c00ce-9b1e-4f4a-a304-ef5fb581a614", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dylan40", + "reviewDate": "2021-11-14T21:56:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "47c3eda2-8ebd-4dc9-a97b-5edf43fd2b39", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ftaylor", + "reviewDate": "2021-03-07T18:49:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fdbe1947-c86c-4d1e-b230-9f7e1ce9ceba", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wrightjames", + "reviewDate": "2022-04-19T23:27:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aab63af9-1717-4f01-89d3-ba193d41a550", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qwood", + "reviewDate": "2022-03-28T17:18:12", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a9ff4d80-78e4-4824-9d10-871372e98b22", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hroberts", + "reviewDate": "2021-04-06T21:19:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "74aa0b01-790f-4a14-9fe4-8b6b921b6152", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel17", + "reviewDate": "2021-02-18T18:35:21", + "stars": 1, + "verifiedUser": true + }, + { + "id": "653d3d42-a88f-45eb-9a82-91744feba1c7", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "herreragregory", + "reviewDate": "2021-07-15T13:03:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3b79efb9-5ca0-4c2f-b62b-7378efc6006b", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marcocastro", + "reviewDate": "2021-04-29T00:54:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b471af6b-cd5f-4ec3-91ef-8cb38e458211", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ellischristopher", + "reviewDate": "2022-10-16T01:59:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a70bbf8d-f00d-44af-bb48-b3bd470f95e5", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yjennings", + "reviewDate": "2022-04-13T21:18:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "93482ab7-4798-4d26-9f77-4892a909ce7a", + "productId": "7106056b-592e-4437-a5c2-fd24384ea009", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephengregory", + "reviewDate": "2021-08-19T10:05:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "productId": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Micro (Gold)", + "description": "This Basic Mouse Micro (Gold) is a microcontroller with a single button that enables control of more than one movement and a large (2.3 inches) area of the mouse.\n\nThe mouse lever is attached wirelessly using a power cable and is powered by a microcontroller. This control unit operates as an analog control with the mouse and mouse lever as a keyboard or touch pad.\n\n\nTo use", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-05-24T06:04:55", + "price": 923.25, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-11-08T07:29:36", + "newPrice": 1009.17 + }, + { + "priceDate": "2021-12-15T07:29:36", + "newPrice": 967.93 + }, + { + "priceDate": "2022-01-21T07:29:36", + "newPrice": 980.55 + }, + { + "priceDate": "2022-02-27T07:29:36", + "newPrice": 864.46 + }, + { + "priceDate": "2022-04-05T07:29:36", + "newPrice": 993.25 + }, + { + "priceDate": "2024-06-18T07:29:36", + "newPrice": 923.25 + } + ], + "descriptionVector": [ + -0.052469927817583084, + -0.03930209204554558, + -0.008402993902564049, + -0.028979312628507614, + -0.03957904502749443, + 0.03610454872250557, + 0.0010944348759949207, + 0.07940986007452011, + 0.011172519996762276, + 0.0672743022441864, + 0.04647768288850784, + -0.028450584039092064, + 0.0394028015434742, + -0.09653057157993317, + 0.05972105264663696, + -0.012720935977995396, + -0.08701346814632416, + 0.04688052088022232, + -0.023100364953279495, + 0.01860617846250534, + 0.0730651319026947, + -0.04348155856132507, + -0.03640667721629143, + 0.036809518933296204, + -0.042222682386636734, + -0.02668815851211548, + 0.012702053412795067, + 0.031245287507772446, + -0.02228209562599659, + 0.007144118193536997, + 0.009473037905991077, + -0.004000076558440924, + -0.04378368705511093, + -0.017108118161559105, + -0.003987487871199846, + -0.08177655190229416, + -0.028777891770005226, + -0.09950151294469833, + 0.003965457435697317, + 0.03330984339118004, + 0.0223324503749609, + -0.0008757052128203213, + 0.031345997005701065, + 0.0037986566312611103, + -0.07241051644086838, + 0.062138091772794724, + -0.01754872314631939, + 0.01618913747370243, + -0.003889925079420209, + -0.03059067390859127, + 0.07407223433256149, + 0.01116622518748045, + -0.1056448295712471, + 0.0420464389026165, + 0.030464785173535347, + -0.014313413761556149, + 0.011883784085512161, + 0.06395087391138077, + 0.03930209204554558, + -0.04944862797856331, + 0.02417040802538395, + -0.025039032101631165, + -0.07487791031599045, + -0.0014602955197915435, + -0.050959277898073196, + -0.04499220848083496, + 0.012053732760250568, + 0.007225945126265287, + 0.09748731553554535, + 0.06561258435249329, + -0.019525157287716866, + 0.00734553812071681, + -0.0388992503285408, + -0.053678449243307114, + 0.025832124054431915, + 0.06279270350933075, + 0.0766906887292862, + 0.008812127634882927, + 0.07658997923135757, + 0.013369257561862469, + -0.005768796894699335, + -0.05138729512691498, + -0.027871502563357353, + 0.010505315847694874, + 0.06797927618026733, + 0.024925732985138893, + 0.023503204807639122, + -0.08645956218242645, + -0.03925173729658127, + 0.0593685656785965, + -0.04980111122131348, + 0.07588501274585724, + -0.0010110343573614955, + 0.018643945455551147, + 0.012355862185359001, + -0.08434465527534485, + 0.018253693357110023, + 0.02196737565100193, + -0.03580241650342941, + -0.021274995058774948, + 0.027821147814393044, + 0.03804321587085724, + -0.10383204370737076, + -0.032025791704654694, + 0.0007144117844291031, + -0.011701247654855251, + 0.05088374391198158, + -0.02060779184103012, + -0.02507679909467697, + -0.03436730057001114, + -0.03494638204574585, + -0.016994819045066833, + 0.034291766583919525, + 0.013948339968919754, + -0.055994778871536255, + -0.00444068294018507, + -0.06959063559770584, + -0.016163960099220276, + -0.04088827595114708, + -0.008623296394944191, + 0.12639109790325165, + 0.04020848125219345, + 0.0677778571844101, + 0.03489602729678154, + -0.02991088107228279, + 0.015169449150562286, + 0.0026971406769007444, + -0.041970908641815186, + 0.0006534350104629993, + 0.008579236455261707, + -0.06364874541759491, + 0.04187019541859627, + 0.034090347588062286, + 0.018253693357110023, + -0.048592593520879745, + 0.04051061347126961, + -0.006313260179013014, + -0.027896679937839508, + -0.042021263390779495, + 0.05765649676322937, + 0.017699789255857468, + -0.03774108737707138, + -0.06440407037734985, + 0.022407982498407364, + -0.08182690292596817, + 0.01928597129881382, + -0.07467649132013321, + 0.050480905920267105, + -0.042902473360300064, + -0.01698222942650318, + 3.911857129423879e-05, + -0.09290500730276108, + -0.027040643617510796, + -0.07084950804710388, + 0.05629691109061241, + 0.004727077204734087, + -0.022924121469259262, + -0.009152024053037167, + -0.07820134609937668, + 0.04536987096071243, + 0.004025254398584366, + 0.000612521602306515, + -0.015282748267054558, + 0.019437037408351898, + 0.037438955157995224, + 0.07507932931184769, + 0.009699635207653046, + 0.0704466700553894, + -0.0008646900532767177, + 0.031295642256736755, + -0.07533110678195953, + -0.0027459219563752413, + 0.027367951348423958, + -0.06435371190309525, + 0.0578075610101223, + -0.01781308837234974, + 0.0022880060132592916, + 0.04718265309929848, + -0.00039477547397837043, + -0.04068685322999954, + 0.04237374663352966, + 0.04350673407316208, + -0.05931821092963219, + 0.05926785618066788, + 0.03935244679450989, + -0.04000706225633621, + -0.008585530333220959, + 0.059469275176525116, + -0.08328720182180405, + -0.049901820719242096, + -0.0011668201768770814, + -0.03524851053953171, + 0.04610002040863037, + -0.06561258435249329, + 0.021640067920088768, + 0.07236015796661377, + -0.05377915874123573, + 0.05443377420306206, + -0.00033596239518374205, + 0.008126040920615196, + -0.06823104619979858, + 0.045697178691625595, + 0.03315877914428711, + 0.057253655046224594, + -0.022936711087822914, + -0.03132082149386406, + -0.020368603989481926, + -0.0720076784491539, + 0.02870235964655876, + -0.018795009702444077, + 0.029784992337226868, + -0.06943956762552261, + 0.010039531625807285, + -0.004818345885723829, + 0.0714537724852562, + 0.025655880570411682, + -0.027141354978084564, + 0.014388945885002613, + -0.06959063559770584, + -0.05143764987587929, + 0.013558088801801205, + 0.007314066402614117, + -0.04791279882192612, + -0.0215519480407238, + -0.10307671874761581, + -0.03064102865755558, + 0.013432200998067856, + 0.0013650930486619473, + 0.03353644162416458, + -0.048743657767772675, + -0.10262352228164673, + 0.045948952436447144, + 0.01955033652484417, + 0.08771844208240509, + -0.11682364344596863, + 0.03645703196525574, + 0.042021263390779495, + -0.0046011898666620255, + -0.05458483844995499, + 0.04831564053893089, + -0.05659903958439827, + 0.022924121469259262, + -0.0014052196638658643, + -0.03804321587085724, + 0.0683317556977272, + -0.046175550669431686, + 0.03162294998764992, + -0.00768543453887105, + -0.06853318214416504, + -0.10473843663930893, + -0.05775720626115799, + 0.09864547848701477, + 0.04766102507710457, + -0.0005562655860558152, + -0.008724006824195385, + 0.045269161462783813, + 0.036180078983306885, + -0.05297347903251648, + -0.01696964167058468, + -0.03590312600135803, + -0.01834181509912014, + 0.028727537021040916, + -0.04121558368206024, + 0.019789522513747215, + -0.0003737286606337875, + -0.00878065638244152, + 0.01613878272473812, + -0.0783020555973053, + 0.0006616964237764478, + 0.03937762230634689, + -0.003251045709475875, + 0.005111034493893385, + 0.08656027168035507, + 0.0420464389026165, + -0.03590312600135803, + -0.030917981639504433, + -0.04456419125199318, + 0.018883131444454193, + -0.007735789753496647, + -0.06490761786699295, + 0.041920553892850876, + 0.06420264393091202, + 0.06143312156200409, + 0.02585730142891407, + -0.0004972558235749602, + -0.016352791339159012, + -0.07971199601888657, + 0.0420464389026165, + -0.10257317125797272, + -0.00878065638244152, + -0.027770793065428734, + -0.029256265610456467, + 0.024573247879743576, + 0.025366339832544327, + 0.013218192383646965, + -0.0012612357968464494, + 0.013281135819852352, + 0.07019489258527756, + -0.04602448642253876, + 0.036759164184331894, + 0.02175336703658104, + 0.009422682225704193, + -0.07230980694293976, + -0.03973010927438736, + 0.03794250637292862, + 0.008944310247898102, + 0.06178560480475426, + -0.03011230006814003, + -0.03920138254761696, + 0.03059067390859127, + 0.09642986208200455, + 0.04997735470533371, + -0.04798833280801773, + -0.02726724185049534, + 0.07658997923135757, + -0.07366938889026642, + 0.019726578146219254, + 0.008950604125857353, + -0.031018691137433052, + 0.026234963908791542, + -0.016012895852327347, + -0.03590312600135803, + -0.05664939433336258, + 0.053678449243307114, + 0.05654868483543396, + -0.007546958047896624, + -0.03869783133268356, + -0.0202301274985075, + -0.028727537021040916, + -0.08056803047657013, + -0.0399315282702446, + -0.031094223260879517, + -0.01211038138717413, + 0.0035626175813376904, + 0.009529687464237213, + -0.10121358186006546, + -0.0011794089805334806, + 0.06823104619979858, + -0.004878142382949591, + 0.02696511149406433, + -0.021891843527555466, + 0.02364168129861355, + 0.011059220880270004, + -0.019663633778691292, + 0.013658798299729824, + -0.06667004525661469, + -0.04068685322999954, + -0.025630703195929527, + 0.015244981274008751, + 0.01827887073159218, + 0.0016664363211020827, + -0.0667707547545433, + 0.02075885608792305, + -0.04355708882212639, + 0.03759001940488815, + 0.008100863546133041, + 0.011373939923942089, + -0.02291153371334076, + -0.05186566710472107, + 0.05790827050805092, + -0.02701546624302864, + -0.031295642256736755, + 0.0451936274766922, + 0.06959063559770584, + -0.052369218319654465, + 0.003974899183958769, + -0.034820493310689926, + -0.07523039728403091, + 0.042801763862371445, + -0.01493026316165924, + -0.06601542979478836, + -0.09154542535543442, + 0.04531951621174812, + 0.05372880399227142, + -0.061886318027973175, + -0.01022206898778677, + 0.02633567340672016, + -0.026763692498207092, + -0.041014160960912704, + 0.03054031729698181, + 0.014225292019546032, + 0.03137117624282837, + -0.014250470325350761, + 0.0036381499376147985, + 0.03620525822043419, + -0.01850546896457672, + -0.02065814658999443, + -0.013935751281678677, + 0.01824110560119152, + 0.00509844534099102, + 0.007641374133527279, + 0.0016868930542841554, + -0.02870235964655876, + 0.044060640037059784, + 0.04486631974577904, + -0.04187019541859627, + 0.010788562707602978, + 0.051110342144966125, + -0.01807745173573494, + 0.04944862797856331, + 0.09919938445091248, + 0.010398311540484428, + 0.00427073473110795, + -0.019197849556803703, + -0.03421623632311821, + -0.018518058583140373, + -0.06405158340930939, + 0.027972212061285973, + -0.02711617760360241, + -0.0425751656293869, + 0.014023872092366219, + -0.05896572396159172, + 0.003937133122235537, + -0.09582559764385223, + -0.05403093248605728, + 0.049473803490400314, + -0.0019402417819947004, + 0.019525157287716866, + -0.0020393782760947943, + -0.04141700267791748, + 0.055793359875679016, + 0.03816910460591316, + -0.024711724370718002, + -0.002986681880429387, + 0.01860617846250534, + -0.02880307100713253, + -0.1004079058766365, + 0.005397428292781115, + 0.05997282639145851, + -0.01824110560119152, + -0.000820629415102303, + -0.04005741700530052, + -0.06123170256614685, + 0.021564535796642303, + 0.012406217865645885, + -0.02428370714187622, + 0.06661968678236008, + 0.04602448642253876, + -0.08348862081766129, + 0.019210439175367355, + 0.015207215212285519, + 0.004472155123949051, + 0.011071809567511082, + -0.015169449150562286, + -0.0019638456869870424, + 0.025139743462204933, + -0.07956092804670334, + -0.05136211961507797, + 0.05153835937380791, + -0.061987027525901794, + -0.05287276953458786, + -0.015547111630439758, + -0.025882478803396225, + -0.051009632647037506, + 0.00908908061683178, + 0.04745960235595703, + 0.020167184993624687, + -0.029810169711709023, + 0.0175990778952837, + -0.03736342489719391, + -0.04745960235595703, + 0.03595348075032234, + 0.05060679093003273, + 0.0007541450904682279, + 0.031874727457761765, + -0.04418652877211571, + -0.03824463486671448, + -0.008931721560657024, + -0.03582759574055672, + 0.008824717253446579, + 0.06400122493505478, + -0.06238986551761627, + 0.031043868511915207, + 0.03471978381276131, + -0.001745116082020104, + -0.0462510846555233, + -0.020746266469359398, + -0.023578736931085587, + 0.033083245158195496, + -0.01997835375368595, + -0.006303818896412849, + 0.01353291142731905, + -0.10534269362688065, + 0.01975175552070141, + 0.01435117982327938, + -0.061936672776937485, + 0.07402187585830688, + 0.009372327476739883, + 0.050631970167160034, + 0.004670428112149239, + 0.03945315629243851, + 0.024371828883886337, + 0.02648673951625824, + 0.02875271439552307, + -0.026839224621653557, + 0.03283147141337395, + -0.022609403356909752, + 0.10695406049489975, + -0.013180426321923733, + 0.07019489258527756, + -0.04013294726610184, + -0.009775168262422085, + 0.004355709068477154, + 0.016591979190707207, + 0.032504163682460785, + 0.04904578626155853, + 0.006546152289956808, + 0.005469813942909241, + 0.0073895989917218685, + -0.06002318114042282, + -0.007597313262522221, + -0.06364874541759491 + ] + }, + { + "id": "12f99ed9-7eb5-44f0-9f92-0cbd79835b45", + "productId": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lopezaustin", + "reviewDate": "2022-04-05T14:19:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8a8bce2a-79dd-41cb-80ea-47ba548a6091", + "productId": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nathaniel26", + "reviewDate": "2021-11-08T07:29:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "83fd72cf-ba2d-449e-8ad5-3afe49bdeeac", + "productId": "7fdfbade-a4a6-494d-a6bb-25552175b874", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frankhawkins", + "reviewDate": "2021-11-24T09:55:27", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Pro (Red)", + "description": "This Basic Mouse Pro (Red) is similar to a similar (and slightly lighter weight/height) Pro Mouse Plus, but has a bit different functions. The core is very similar to this one, except it comes with a larger power consumption that makes this mouse much more powerful. It can produce up to 80 dB of audio at max output, with around 10 percent less distortion. In addition, it comes with a separate speaker for better sound quality.", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-10-01T16:39:59", + "price": 431.58, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-31T04:57:46", + "newPrice": 467.28 + }, + { + "priceDate": "2022-12-29T04:57:46", + "newPrice": 392.44 + }, + { + "priceDate": "2025-01-16T04:57:46", + "newPrice": 431.58 + } + ], + "descriptionVector": [ + -0.0450531467795372, + -0.02995775267481804, + -0.03873534873127937, + 0.05484055355191231, + -0.024106021970510483, + -0.02208639867603779, + 0.009042995050549507, + 0.01306929625570774, + 0.038191601634025574, + 0.049895063042640686, + 0.0070233712904155254, + -0.019095800817012787, + -0.010557712987065315, + -0.05207004398107529, + 0.011832923628389835, + -0.047720085829496384, + -0.05856908857822418, + -0.01878509111702442, + -0.00746354553848505, + 0.022215861827135086, + 0.04973970726132393, + -0.0901062935590744, + -0.0385282076895237, + -0.01812482811510563, + -0.011476900428533554, + 0.0006881770677864552, + -0.04225674271583557, + 0.012862155213952065, + -0.01639002375304699, + 0.04896292835474014, + 0.012286044657230377, + 0.06944398581981659, + -0.036430906504392624, + 0.032365765422582626, + 0.0012881574220955372, + 0.0001299687719438225, + -0.016273505985736847, + -0.05302806943655014, + 0.07602071017026901, + 0.04979149252176285, + 0.012188946828246117, + 0.02255246601998806, + 0.0007367257494479418, + -0.10180975496768951, + 0.0071139950305223465, + 0.08456527441740036, + -0.038605883717536926, + 0.039771053940057755, + -0.002488927450031042, + -0.030242571607232094, + 0.05820659175515175, + 0.04445761442184448, + -0.11133823543787003, + 0.012978672049939632, + 0.03650858253240585, + -0.02651403471827507, + 0.036379121243953705, + 0.1395093947649002, + 0.0098391929641366, + -0.10667756199836731, + 0.0531834252178669, + -0.04072907939553261, + -0.06084764003753662, + 0.016558324918150902, + -0.04212728142738342, + -0.03104524314403534, + -0.051008448004722595, + -0.0310711357742548, + 0.07363858819007874, + 0.028041699901223183, + -0.028973832726478577, + -0.04740937426686287, + 0.06623329967260361, + 0.054995909333229065, + 0.029776504263281822, + 0.04733169451355934, + 0.03816571086645126, + 0.04065139964222908, + 0.06022621691226959, + -0.005078188609331846, + 0.02250068075954914, + 0.010868423618376255, + -0.047616515308618546, + 0.025335920974612236, + 0.05468519777059555, + -0.021503815427422523, + -0.005926171783357859, + -0.07208503037691116, + -0.005955300759524107, + 0.05067184194922447, + -0.04223085194826126, + 0.061158351600170135, + 0.07752247899770737, + 0.04067729413509369, + 0.04103979095816612, + -0.02811937779188156, + -0.046580810099840164, + 0.025543062016367912, + -0.03964158892631531, + -0.007515330798923969, + 0.0075606429018080235, + 0.0037479556631296873, + -0.07094575464725494, + 0.005958537571132183, + 0.05520305037498474, + 0.012279571034014225, + 0.051603976637125015, + -0.019251156598329544, + -0.035938944667577744, + -0.015975741669535637, + 0.025089941918849945, + 0.007787202950567007, + -0.00036532856756821275, + -0.0027543266769498587, + -0.02887026220560074, + 0.0048451549373567104, + -0.07389751821756363, + -0.009916870854794979, + -0.04228263720870018, + 0.0004057857731822878, + 0.040237121284008026, + 0.030346142128109932, + -0.00721109239384532, + 0.07581356912851334, + 0.012532024644315243, + -0.018008312210440636, + 0.02716135047376156, + -0.047046877443790436, + 0.03324611485004425, + -0.062297623604536057, + -0.09212591499090195, + 0.12935949862003326, + 0.02461092732846737, + 0.002610299037769437, + -0.016247615218162537, + 0.04419868811964989, + -0.022164076566696167, + 0.01965249329805374, + -0.01405968889594078, + 0.051060233265161514, + 0.03687107935547829, + -0.04272281005978584, + -0.028378304094076157, + 0.030164893716573715, + -0.054426271468400955, + -0.03731125593185425, + -0.07995638996362686, + 0.06400653719902039, + -0.00015889568021520972, + -0.001954892184585333, + 0.008195011876523495, + -0.08756881207227707, + 0.06488689035177231, + -0.012467293068766594, + 0.02228059247136116, + 0.037596073001623154, + -0.07627963274717331, + -0.02993186004459858, + -0.028404196724295616, + 0.05515126511454582, + -0.010525346733629704, + -0.016131097450852394, + -0.016182882711291313, + 0.0003604736994020641, + 0.001694347825832665, + 0.03221040964126587, + 0.03047560527920723, + 0.0259185042232275, + -0.04445761442184448, + 0.00890058558434248, + -0.04968792200088501, + -0.0008811579900793731, + -0.0423344224691391, + -0.04111746698617935, + 0.02136140502989292, + -0.02431316301226616, + 0.046503130346536636, + 0.05227718502283096, + -0.009386071935296059, + -0.008809961378574371, + 0.05147451162338257, + 0.026397518813610077, + -0.0746225118637085, + 0.010823111981153488, + 0.05634232610464096, + 0.006958639714866877, + 0.03156309574842453, + 0.027187243103981018, + -0.10729898512363434, + -0.018979284912347794, + 0.003032672218978405, + 0.0006893908139318228, + 0.0379844605922699, + -0.030190786346793175, + -0.031822022050619125, + 0.05349413678050041, + -0.0094313845038414, + 0.06271190941333771, + 0.03845052793622017, + -0.018422594293951988, + -0.026449304074048996, + 0.04238620772957802, + 0.06478331983089447, + 0.039615698158741, + -0.02230648510158062, + -0.032935403287410736, + 0.059553008526563644, + -0.004466475453227758, + 0.0496620312333107, + -0.03223630413413048, + 0.015859225764870644, + -0.06633687019348145, + 0.038709454238414764, + -0.0310711357742548, + 0.07384572923183441, + 0.00747649185359478, + 0.05831016227602959, + -0.012596756219863892, + -0.023406920954585075, + -0.045415643602609634, + 0.021180156618356705, + 0.012583809904754162, + 0.010402357205748558, + -0.0011012451723217964, + -0.1644698679447174, + 0.027912236750125885, + 0.05711910128593445, + -0.02884436957538128, + 0.04676205664873123, + -0.026009129360318184, + -0.047098662704229355, + 0.02490869350731373, + 0.04702098295092583, + 0.07063504308462143, + -0.0719296783208847, + 0.10947396606206894, + -0.030216678977012634, + -0.013043403625488281, + -0.07239574193954468, + 0.0741046592593193, + -0.09088306874036789, + 0.021024800837039948, + -0.06374761462211609, + 0.009224243462085724, + 0.06271190941333771, + -0.01270032674074173, + 0.057274457067251205, + -0.08409920334815979, + -0.10098119080066681, + -0.05582447350025177, + -0.06519759446382523, + 0.020701143890619278, + -0.02022213116288185, + 0.04357726499438286, + -0.05484055355191231, + 0.019173478707671165, + 0.05680839344859123, + -0.05965657904744148, + -0.042567454278469086, + -0.08301171660423279, + 0.007495911326259375, + -0.026345733553171158, + -0.04961024597287178, + 0.0035893633030354977, + -0.030656853690743446, + 0.0024258140474557877, + 0.038139816373586655, + -0.028455980122089386, + -0.03479967266321182, + 0.06524938344955444, + 0.01295925211161375, + -0.014564594253897667, + 0.017969472333788872, + 0.014007903635501862, + 0.022733714431524277, + 0.03987462446093559, + -0.022785499691963196, + 0.0344630666077137, + 0.014551647938787937, + -0.02084355242550373, + 0.05235486105084419, + 0.11382392048835754, + 0.06592258810997009, + 0.022681929171085358, + -0.01069364883005619, + -0.007554169744253159, + 0.022837284952402115, + 0.021672116592526436, + -0.0531834252178669, + -0.04194603115320206, + -0.04888525232672691, + -0.04282638058066368, + 0.015665030106902122, + 0.00836978666484356, + 0.04282638058066368, + -0.00027672728174366057, + 0.027989914640784264, + -0.02396361343562603, + 0.07431180030107498, + 0.046529024839401245, + -0.0037576653994619846, + 0.023031478747725487, + -0.06219405680894852, + -0.06711365282535553, + 0.07239574193954468, + 0.02887026220560074, + -0.02396361343562603, + 0.05763695389032364, + -0.06814935803413391, + -0.05934586748480797, + 0.06612972915172577, + 0.0531834252178669, + -0.06934041529893875, + -0.04841918498277664, + 0.09999726712703705, + -0.03376396745443344, + 0.0287666916847229, + -0.030630961060523987, + -0.03368628770112991, + 0.022720767185091972, + -0.09828835725784302, + -0.044354043900966644, + -0.16333059966564178, + 0.06602615863084793, + 0.054478056728839874, + -0.042489778250455856, + -0.033116649836301804, + 0.0020536077208817005, + 0.022177021950483322, + -0.06550830602645874, + -0.03332379087805748, + -0.062970831990242, + -0.03896838054060936, + -0.040858540683984756, + 0.021827472373843193, + -0.016260560601949692, + 0.012765058316290379, + 0.04230852797627449, + -0.013088715262711048, + 0.022487733513116837, + 0.05007631331682205, + 0.07249931246042252, + -0.02651403471827507, + 0.027834558859467506, + 0.020739981904625893, + -0.09632051736116409, + 0.011172662489116192, + -0.05924229696393013, + -0.02309620939195156, + 0.014512808993458748, + 0.0017412782181054354, + -0.07130825519561768, + 0.021775687113404274, + -0.03397110849618912, + -0.00559604074805975, + -0.036948759108781815, + 0.005935881286859512, + -0.00605239812284708, + 0.029672933742403984, + 0.08746524155139923, + -0.00352139538154006, + -0.013710138387978077, + 0.05680839344859123, + 0.04393976181745529, + -0.027938129380345345, + 0.004443819634616375, + 0.009722676128149033, + -0.00314109749160707, + -0.022889070212841034, + -0.01308224257081747, + -0.029750611633062363, + -0.01965249329805374, + -0.01921231858432293, + 0.07778140902519226, + -0.02463681995868683, + 0.02708367258310318, + 0.062245842069387436, + -0.00929544772952795, + -0.058983370661735535, + 0.024028344079852104, + 0.03591305390000343, + 0.08648132532835007, + 0.025167619809508324, + 0.0011813504388555884, + 0.11744888871908188, + 0.010408829897642136, + -0.009522007778286934, + -0.07022076845169067, + 0.04005587100982666, + 0.02230648510158062, + -0.010583605617284775, + -0.061676204204559326, + -0.004851628094911575, + 0.09046878665685654, + 0.018189560621976852, + -0.06271190941333771, + -0.005524836014956236, + 0.010842530988156796, + -0.0689261332154274, + -0.07120468467473984, + 0.030035430565476418, + -0.0025488040409982204, + 0.01128917932510376, + -0.062297623604536057, + -0.03775142878293991, + 0.0059294081293046474, + 0.01358067523688078, + 0.049325425177812576, + 0.010234055109322071, + -0.05188879370689392, + 0.06550830602645874, + 0.0011724499054253101, + 0.015121285803616047, + -0.02309620939195156, + -0.017115017399191856, + 0.006168914958834648, + -0.003136242739856243, + 0.02575020305812359, + 0.043836191296577454, + -0.035265736281871796, + 0.005178522318601608, + -0.021866310387849808, + 0.012027118355035782, + 0.0013739267596974969, + -0.05194057896733284, + -0.00352139538154006, + -0.031355954706668854, + -0.022021666169166565, + 0.08145815879106522, + -0.012862155213952065, + -0.00024294553440995514, + -0.05344235152006149, + -0.036405012011528015, + -0.007593008689582348, + -0.08751703053712845, + 0.021452030166983604, + 0.029103295877575874, + 0.07286181300878525, + 0.0161440446972847, + 0.03899427503347397, + 0.0019322362495586276, + -0.0029647040646523237, + 0.01255144365131855, + 0.051603976637125015, + -0.07343144714832306, + -0.04225674271583557, + -0.05406377464532852, + 0.022125236690044403, + 0.01923821121454239, + -0.01807304285466671, + 0.014448077417910099, + -0.04797901213169098, + 0.0004830590623896569, + 0.03842463716864586, + 0.057378027588129044, + 0.015069500543177128, + 0.009062414057552814, + -0.004026301205158234, + -0.009489642456173897, + -0.0053856633603572845, + -0.05344235152006149, + 0.05080130696296692, + 0.0903652161359787, + 0.014823520556092262, + -0.028947940096259117, + 0.015186017379164696, + 0.01688198372721672, + -0.03399699926376343, + -0.022979693487286568, + -0.01069364883005619, + 5.6437802413711324e-05, + -0.033116649836301804, + -0.024986371397972107, + 0.030242571607232094, + -0.001555984141305089, + -0.03109702840447426, + 0.003222011961042881, + 0.020183291286230087, + 0.014499862678349018, + 0.04906649887561798, + -0.009567320346832275, + 0.012667960487306118, + -0.08083673566579819, + -0.03889070451259613, + -0.018720358610153198, + -0.00561869703233242, + 0.06416189670562744, + 0.046606700867414474, + 0.04274870455265045, + -0.0040424843318760395, + 0.004324066452682018, + 0.05934586748480797, + 0.040703184902668, + 0.02765331044793129, + -0.030061323195695877, + 0.016532432287931442, + 0.05080130696296692, + 0.02277255244553089, + 0.003200974315404892, + 0.0039906990714371204, + -0.0038094506599009037, + -0.07949031889438629, + -0.0032883617095649242, + 0.05188879370689392, + 0.025284135714173317, + 0.04300763085484505, + -0.02339397557079792, + -0.012409034185111523, + -0.013250544667243958, + -0.04603706672787666, + 0.00892647821456194, + -0.05691196024417877 + ] + }, + { + "id": "5cf8630a-1424-430b-8775-31907db71195", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "myersjoy", + "reviewDate": "2022-06-10T05:44:55", + "stars": 5, + "verifiedUser": true + }, + { + "id": "9711fdbc-b57b-4546-a7ff-6483a6ef0243", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamsamy", + "reviewDate": "2022-03-25T01:48:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a2827b6e-2685-4fda-92a0-ab1f4ff13b68", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "usawyer", + "reviewDate": "2021-07-24T13:24:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4a0c2298-102c-4146-a515-39a4c7877ba1", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ghaley", + "reviewDate": "2022-11-24T01:09:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "21867592-093a-47de-b2d1-d60fa6301408", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "timothyjohnson", + "reviewDate": "2021-10-21T17:56:38", + "stars": 4, + "verifiedUser": true + }, + { + "id": "939809cb-23d8-4961-bb84-100f116206e9", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dwheeler", + "reviewDate": "2021-12-23T08:36:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "23637fb9-197e-498a-84fb-d59cf8baefc0", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "adamalexander", + "reviewDate": "2022-08-29T07:41:02", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c4f19503-7841-433c-8cdd-6cb943c9c96a", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tinareed", + "reviewDate": "2021-03-29T15:28:05", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4dbe8f66-c125-4fae-a1ff-0c17f3eb562f", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacob10", + "reviewDate": "2022-05-24T11:15:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "75f69e50-0cc0-44c8-b746-93a91b37af2f", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kellyfoster", + "reviewDate": "2021-09-03T09:34:05", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4cb200d5-59a1-43fb-a687-9efd31f9ad7a", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evelazquez", + "reviewDate": "2022-12-29T06:47:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a2a86168-455a-450e-8477-929227ef9089", + "productId": "1060a167-e48d-4d58-9f9d-6e0879695db7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cynthia73", + "reviewDate": "2021-01-31T04:57:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Micro (Red)", + "description": "This Luxe Mouse Micro (Red) is $129.99 with pre-installed firmware, and comes with a 2-year warranty. In addition, the Mouse micro is available on a limited quantity of 7,000 units.\n\nThe Mouse features an 11.4", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-08-15T09:00:13", + "price": 577.79, + "stock": 17, + "priceHistory": [ + { + "priceDate": "2021-01-20T08:57:24", + "newPrice": 535.01 + }, + { + "priceDate": "2021-06-28T08:57:24", + "newPrice": 628.9 + }, + { + "priceDate": "2021-12-04T08:57:24", + "newPrice": 546.08 + }, + { + "priceDate": "2022-05-12T08:57:24", + "newPrice": 529.51 + }, + { + "priceDate": "2022-10-18T08:57:24", + "newPrice": 530.96 + }, + { + "priceDate": "2025-05-12T08:57:24", + "newPrice": 577.79 + } + ], + "descriptionVector": [ + -0.1015804186463356, + 0.011489751748740673, + -0.02590826340019703, + -0.008460862562060356, + -0.008079122751951218, + -0.03439415991306305, + 0.037648335099220276, + 0.08375753462314606, + 0.02065151371061802, + 0.06383195519447327, + -0.011377107352018356, + -0.013967933133244514, + 0.020100807771086693, + -0.0840078592300415, + 0.0813043862581253, + -0.0017491206526756287, + -0.09086666256189346, + -0.010907754302024841, + -0.03429402783513069, + 0.0008284073555842042, + 0.061428867280483246, + -0.05517083406448364, + 0.0052192010916769505, + 0.020889319479465485, + 0.00829815398901701, + 0.0031086786184459925, + -0.0011139301350340247, + 0.04500778391957283, + 0.009186794981360435, + -0.016571275889873505, + 0.0163960512727499, + 0.012966647744178772, + -0.017835399135947227, + 0.01946248672902584, + 0.03339287266135216, + -0.05697314813733101, + 0.03131520375609398, + -0.049563635140657425, + 0.10373318195343018, + 0.0763980895280838, + -0.011308268643915653, + 0.04027670994400978, + 0.011045430786907673, + -0.05089033767580986, + 0.016371019184589386, + 0.016834113746881485, + 0.02628374472260475, + -0.0027816963847726583, + -0.0013470419216901064, + 0.0007278876728378236, + 0.005206684581935406, + 0.08120425790548325, + -0.13447265326976776, + -0.012428456917405128, + 0.03574589267373085, + -0.04896286129951477, + 0.02127731777727604, + 0.18974360823631287, + 0.053618840873241425, + -0.06598471850156784, + 0.01379270851612091, + -0.09742508083581924, + 0.001190591137856245, + 0.014105609618127346, + -0.05331845581531525, + -0.04333063215017319, + 0.011765104718506336, + 0.007590996101498604, + 0.06778702884912491, + 0.03742304816842079, + -0.02856167033314705, + -0.021665316075086594, + 0.048512283712625504, + 0.0006758677191101015, + 0.03614640608429909, + 0.010087952017784119, + 0.010807625949382782, + -0.025044655427336693, + 0.034319061785936356, + -0.030739465728402138, + 0.07729924470186234, + -0.049513570964336395, + -0.034268997609615326, + 0.0040896255522966385, + 0.05411948263645172, + 0.012428456917405128, + 0.0010216241935268044, + -0.08761248737573624, + -0.009474663995206356, + 0.0010388337541371584, + -0.005810585338622332, + 0.10523510724306107, + 0.022854343056678772, + -0.024844396859407425, + -0.024756785482168198, + -0.04077735170722008, + -0.0055227153934538364, + 0.052417296916246414, + -0.010300724767148495, + -0.021314864978194237, + 0.01277890708297491, + 0.06663554906845093, + -0.037122663110494614, + -0.016821596771478653, + -0.010294467210769653, + 0.02570800669491291, + 0.025783102959394455, + 0.00217936048284173, + -0.04665990546345711, + -0.11264462023973465, + 0.01872403919696808, + -0.011158076114952564, + -0.04861241206526756, + 0.008636088110506535, + -0.021715380251407623, + 0.04803667217493057, + -0.03922536224126816, + 0.019900549203157425, + -0.04948853701353073, + -0.000808068725746125, + 0.10763819515705109, + 0.03537041321396828, + 0.013880320824682713, + 0.0016583792166784406, + 0.04395643621683121, + -0.017109466716647148, + 0.050339631736278534, + -0.07359448820352554, + 0.05396929010748863, + -0.05782423913478851, + -0.08105406165122986, + 0.054770320653915405, + -0.000907415000256151, + 0.008586023934185505, + -0.037022531032562256, + 0.021089576184749603, + -0.009562277235090733, + 0.018548814579844475, + 0.0042147864587605, + 0.03937555477023125, + -0.028586702421307564, + -0.04423178732395172, + -0.05697314813733101, + 0.03216629847884178, + -0.05472025275230408, + -0.00041889719432219863, + -0.09387052059173584, + 0.02981327660381794, + -0.07094108313322067, + 0.010494723916053772, + 0.04037683829665184, + -0.07003992050886154, + 0.007784995250403881, + -0.023505177348852158, + 0.04100264236330986, + 0.03854949399828911, + -0.08976525068283081, + -0.018899263814091682, + -0.05792436748743057, + 0.056172117590904236, + 0.027460256591439247, + 0.007115385495126247, + -0.03141533210873604, + -0.019187133759260178, + -0.01717204786837101, + 0.05812462419271469, + -0.007353190798312426, + -0.020839255303144455, + -0.004261721391230822, + 0.01082639954984188, + 0.01490663830190897, + -0.05697314813733101, + 0.02846154198050499, + -0.09146743267774582, + 0.09131724387407303, + 0.011884007602930069, + 0.06443272531032562, + 0.04172857478260994, + 0.018023138865828514, + -0.030614305287599564, + 0.05206684768199921, + 0.07224275171756744, + -0.063882015645504, + 0.012315812520682812, + 0.02903728000819683, + 0.006367550231516361, + 0.011946587823331356, + 0.002941276179626584, + 0.020513838157057762, + 0.0002059284452116117, + 0.0030367113649845123, + 0.04303024709224701, + 0.013830256648361683, + -0.010613626800477505, + -0.03657195344567299, + 0.05426967516541481, + 0.07114133983850479, + 0.11384616792201996, + 0.02038867585361004, + -0.0029944695997983217, + -0.013905352912843227, + 0.05071511119604111, + 0.058625269681215286, + 0.02986334078013897, + -0.011120527051389217, + -0.039100199937820435, + 0.017259659245610237, + 0.007077837362885475, + 0.061779316514730453, + 0.007522157393395901, + -0.0034012417308986187, + -0.031039850786328316, + 0.027710577473044395, + 0.021164672449231148, + 0.05071511119604111, + 0.04067722335457802, + 0.003529531415551901, + -0.05512076988816261, + -0.027610449120402336, + -0.09612341225147247, + 0.015957988798618317, + -0.07389487326145172, + -0.0023764886427670717, + -0.040351808071136475, + -0.06993979215621948, + 0.014405995607376099, + 0.05156620591878891, + 0.025219880044460297, + 0.07795008271932602, + -0.01997564733028412, + -0.04398146644234657, + -0.026308776810765266, + 0.0364217609167099, + 0.00252355239354074, + -0.07439551502466202, + -0.00499391183257103, + -0.08070361614227295, + -0.026358840987086296, + 0.048737574368715286, + 0.0386996865272522, + -0.056222181767225266, + -0.0064050983637571335, + -0.001498016994446516, + 0.030138693749904633, + -0.038274139165878296, + -0.03191597759723663, + 0.09992829710245132, + -0.009631115011870861, + -0.11274474859237671, + 0.020175904035568237, + -0.024130981415510178, + -0.008623572066426277, + 0.03204113617539406, + 0.03276706859469414, + -0.0566226989030838, + 0.053568776696920395, + 0.0269596129655838, + -0.025783102959394455, + 0.03206617012619972, + -0.0359211191534996, + 0.01769772171974182, + -0.021915636956691742, + -0.06493336707353592, + 0.034569382667541504, + -0.04605913534760475, + 0.08050335943698883, + -0.0005514892982318997, + -0.09977810084819794, + -0.0005467957817018032, + 0.058825526386499405, + 0.03664705157279968, + 0.06062784045934677, + 0.11314526200294495, + 0.0026815677992999554, + -0.026158584281802177, + -0.000644577550701797, + -0.05697314813733101, + 0.08591029793024063, + -0.048937831073999405, + -0.05126582086086273, + 0.05992693826556206, + 0.07144172489643097, + 0.05069008097052574, + -0.04340572655200958, + 0.029362699016928673, + -0.031865913420915604, + -0.026709292083978653, + 0.03534537926316261, + -0.029012247920036316, + -0.037072595208883286, + -0.034944865852594376, + 0.029738180339336395, + 0.053618840873241425, + 0.012228199280798435, + 0.0525674894452095, + 0.04393140226602554, + 0.05967661738395691, + 0.04127799719572067, + -0.048111770302057266, + -0.0021637154277414083, + -0.03747311234474182, + -0.0045965262688696384, + -0.042529601603746414, + -0.03879981487989426, + 0.002744148252531886, + 0.030864626169204712, + 0.023893175646662712, + 0.01384277269244194, + 0.021828025579452515, + 0.002931889146566391, + 0.07664840668439865, + -0.015131928026676178, + -0.05687301978468895, + -0.0027457126416265965, + 0.13467290997505188, + -0.07900142669677734, + 0.0010388337541371584, + 0.028186187148094177, + 0.06373182684183121, + -0.005863778293132782, + -0.05446993187069893, + -0.02628374472260475, + -0.056472502648830414, + 0.05817468836903572, + 0.06678574532270432, + -0.03682227432727814, + -0.05537109076976776, + 0.02971314825117588, + -0.06853799521923065, + -0.0669359415769577, + -0.049763891845941544, + -0.03126513957977295, + -0.026183616369962692, + -0.03532034903764725, + 0.04866247624158859, + -0.007497125305235386, + -0.012534843757748604, + 0.05311819911003113, + 0.061328738927841187, + -0.03339287266135216, + 0.04220418632030487, + 0.012184393592178822, + -0.0643826574087143, + 0.027660513296723366, + 0.013254517689347267, + -0.041703540831804276, + 0.00357646681368351, + -0.04115283489227295, + 0.012115554884076118, + 0.09091673046350479, + 0.0014659445732831955, + -0.09016576409339905, + 0.06803735345602036, + -0.02986334078013897, + 0.024368787184357643, + -0.004390011075884104, + 0.06197957322001457, + -0.01009420957416296, + -0.03517015278339386, + 0.05316826328635216, + -0.03048914484679699, + -0.026408905163407326, + 0.03351803496479988, + 0.04260469973087311, + -0.044457077980041504, + -0.006639774888753891, + -0.009818856604397297, + -0.017359787598252296, + 0.0002374141913605854, + 0.027084773406386375, + -0.00986266229301691, + -0.022829310968518257, + -0.0399763248860836, + 0.0606779046356678, + -0.04528313875198364, + 0.0027644867077469826, + 0.053568776696920395, + 0.037773497402668, + -0.044982753694057465, + 0.014831542037427425, + 0.014681349508464336, + 0.027084773406386375, + 0.0016192664625123143, + 0.03184087947010994, + 0.06533388048410416, + -0.03131520375609398, + -0.047260675579309464, + -0.0787511095404625, + 0.01784791424870491, + -0.028336381539702415, + -0.0023170372005552053, + -0.009036601521074772, + -0.00954350270330906, + 0.06688587367534637, + 0.026784388348460197, + -0.05053988844156265, + -0.029387731105089188, + 0.018699007108807564, + -0.024393819272518158, + -0.03902510553598404, + 0.021627767011523247, + 0.02409343235194683, + -0.0025110363494604826, + -0.015832828357815742, + -0.025357555598020554, + -0.0045057847164571285, + 0.0611785463988781, + 0.029462827369570732, + 0.0032197588589042425, + -0.09822610765695572, + 0.023818079382181168, + 0.022253571078181267, + -0.01037582103163004, + 0.015695150941610336, + -0.061478931456804276, + -0.03324268013238907, + 0.03689737245440483, + -0.04255463555455208, + -0.04002638906240463, + -0.046910226345062256, + 0.04896286129951477, + -0.00586690753698349, + -0.026984645053744316, + 0.03479467332363129, + -0.0404769666492939, + -0.028111090883612633, + -0.09336987882852554, + -0.006261163856834173, + 0.10138016194105148, + -0.02971314825117588, + -0.010888979770243168, + -0.08200528472661972, + -0.048987895250320435, + -0.03932549059391022, + 0.011533557437360287, + -0.0003436052065808326, + -0.004849976859986782, + 0.01858636364340782, + 0.013967933133244514, + 0.055020641535520554, + 0.04480752721428871, + -0.027510320767760277, + -0.022303635254502296, + 0.018223397433757782, + -0.07044043391942978, + 0.010112984105944633, + -0.0845085009932518, + 0.014631285332143307, + 0.028912119567394257, + -0.03264191001653671, + 0.014243287034332752, + -0.003426274051889777, + 0.015907924622297287, + -0.005798069294542074, + 0.09757527709007263, + -0.014768961817026138, + -0.005181652493774891, + -0.006589710246771574, + -0.028887087479233742, + 0.015419797040522099, + -0.023480145260691643, + 0.08661119639873505, + 0.057724110782146454, + 0.03517015278339386, + 0.002415601396933198, + -0.04428185150027275, + 0.034419190138578415, + 0.019963130354881287, + -0.004890654236078262, + 0.005297426134347916, + -0.012397166341543198, + 0.025983359664678574, + 0.00954350270330906, + 0.0023467629216611385, + 0.018498750403523445, + -0.018911780789494514, + -0.015056830830872059, + -0.01110801100730896, + -0.024518979713320732, + 0.03719775751233101, + 0.0006164163933135569, + 0.06097828969359398, + 0.0006602226640097797, + 0.03474460914731026, + 0.03534537926316261, + -0.0525674894452095, + 0.04871254041790962, + 0.049763891845941544, + 0.07674853503704071, + 0.06087816134095192, + -0.04703538864850998, + 0.04365605115890503, + 0.0184612013399601, + -0.047661192715168, + -0.05587173253297806, + -0.004142818972468376, + -0.008861376903951168, + -0.003776723984628916, + -0.030464112758636475, + 0.01454367209225893, + 0.0048186867497861385, + -0.03023882396519184, + -0.024794332683086395, + 0.03960084170103073, + -0.0315154604613781, + 0.03476963937282562, + -0.0426797978579998, + 0.04718558117747307, + 0.03179081529378891, + -0.07449564337730408, + 0.03339287266135216, + -0.03647182509303093 + ] + }, + { + "id": "0685ab0b-1df8-4217-93f0-a1c4e020401c", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel61", + "reviewDate": "2021-01-23T16:56:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a490cf61-75b2-4188-8513-d1982b9fe7a4", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nhansen", + "reviewDate": "2021-11-08T14:04:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "507f3bb4-2e4c-4342-a634-0921be86d941", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacobfowler", + "reviewDate": "2022-09-17T05:16:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "41c01957-2034-4145-b7f3-4a2facf63c8d", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aball", + "reviewDate": "2022-10-18T19:03:40", + "stars": 3, + "verifiedUser": false + }, + { + "id": "445e2371-9f0f-4ca1-8639-023fdb209aa5", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hsims", + "reviewDate": "2021-03-28T23:47:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "561ef740-2de8-43cb-8813-f8f8862ebb32", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brittany76", + "reviewDate": "2021-09-15T23:50:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7a7721f1-2bcc-429e-a869-09c1ea00bac5", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pfrazier", + "reviewDate": "2021-09-12T07:39:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4f1a9f3f-d524-4158-819f-2d498b31f877", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "benjaminfigueroa", + "reviewDate": "2021-11-03T17:50:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fac52b48-7482-40fe-ad46-af36c6ca19bf", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "blevinsmadeline", + "reviewDate": "2021-01-20T08:57:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ee107534-ac76-463b-a6d7-d13452096a68", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnbecker", + "reviewDate": "2022-05-02T17:42:36", + "stars": 3, + "verifiedUser": true + }, + { + "id": "533e30b9-eeff-496f-9388-6d642495398d", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ralphnelson", + "reviewDate": "2021-03-26T23:05:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "60a711fe-cb6f-4cad-8479-60f31db3e62d", + "productId": "4e773dc1-991f-46a4-be11-c0f5b8272c54", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "bennettstacey", + "reviewDate": "2022-09-10T22:24:09", + "stars": 3, + "verifiedUser": true + }, + { + "id": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "product", + "name": "Amazing TV Pro (Silver)", + "description": "This Amazing TV Pro (Silver) is a huge success. It has an almost limitless range of styles ranging from solid, matte, matte white to a full black with an orange tint. The silver is so versatile, it will keep any TV that is in need of replacing from the fridge. This one", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-04-02T15:09:48", + "price": 734.63, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-07-23T21:53:48", + "newPrice": 662.89 + }, + { + "priceDate": "2022-03-01T21:53:48", + "newPrice": 731.81 + }, + { + "priceDate": "2022-10-08T21:53:48", + "newPrice": 787.18 + }, + { + "priceDate": "2023-08-10T21:53:48", + "newPrice": 734.63 + } + ], + "descriptionVector": [ + 0.015586227178573608, + 0.002318293321877718, + -0.050251901149749756, + 0.007484475150704384, + -0.026584967970848083, + -0.02243238128721714, + -0.07861855626106262, + -0.0009215304162353277, + 0.030190423130989075, + 0.049438219517469406, + -0.0043524992652237415, + -0.010149986483156681, + 0.009196014143526554, + -0.02679540403187275, + -0.027244331315159798, + 0.03237894922494888, + 0.02467702329158783, + 0.01812547631561756, + -0.01230343896895647, + -0.008164881728589535, + 0.043770503252744675, + -0.11346660554409027, + -0.07020115107297897, + 0.009960594587028027, + -0.00569928390905261, + -0.010549813508987427, + -0.021885251626372337, + 0.013327556662261486, + -0.009055724367499352, + -0.02100142277777195, + 0.04865259677171707, + 0.055554866790771484, + 0.023288151249289513, + 0.04848424717783928, + -0.07339976727962494, + 0.02898392826318741, + -0.005688762292265892, + 0.010991727001965046, + 0.05768727511167526, + 0.06975222378969193, + 0.044948939234018326, + -0.0269777812063694, + -0.037794142961502075, + 0.00252346764318645, + 0.031565263867378235, + -0.0034160632640123367, + -0.04197479039430618, + -0.021773017942905426, + 0.048512306064367294, + -0.0360264889895916, + 0.012289410457015038, + -0.03425883501768112, + -0.012822512537240982, + 0.008403374813497066, + -0.012450743466615677, + -0.03428689390420914, + -0.0022814671974629164, + 0.14949309825897217, + 0.06290606409311295, + -0.020019393414258957, + -0.056536898016929626, + 0.01177735161036253, + 0.011770336888730526, + 0.04149780422449112, + -0.0177466943860054, + -0.03886035084724426, + 0.0019237275701016188, + -0.0503360778093338, + -0.03574591130018234, + 0.030246539041399956, + -0.031677499413490295, + -0.05221596360206604, + 0.07755234837532043, + 0.05970745533704758, + -0.003686121664941311, + 0.09466774016618729, + 0.0997743010520935, + -0.027875637635588646, + 0.00606053089722991, + 0.027061954140663147, + 0.05241236835718155, + 0.06189597770571709, + 0.008999607525765896, + 0.03883229196071625, + 0.034988343715667725, + 0.022783108055591583, + 0.01102679967880249, + -0.11952713876962662, + 0.006021951325237751, + 0.08967341482639313, + -0.010767262428998947, + 0.027651172131299973, + 0.0856330618262291, + -0.04419137164950371, + 0.06094200536608696, + 0.05294547230005264, + -0.039281219244003296, + 0.04842813313007355, + -0.06380392611026764, + 0.0032126426231116056, + 0.01806936040520668, + 0.006323575042188168, + 0.03232283145189285, + -0.023694992065429688, + -0.005166181828826666, + -0.042339544743299484, + -0.026781374588608742, + 0.020594581961631775, + 0.028703348711133003, + -0.20212993025779724, + 0.011573930270969868, + -0.06705865263938904, + 0.0239896010607481, + -0.018392028287053108, + 0.034483298659324646, + 0.04492088034749031, + -0.047642506659030914, + -0.03209836781024933, + 0.05802397429943085, + -0.05381527170538902, + -0.041834499686956406, + 0.010044769383966923, + -0.08389346301555634, + 0.03644736111164093, + -0.043153226375579834, + 0.017494171857833862, + 0.013755441643297672, + 0.06745146214962006, + 0.02648676559329033, + -0.029432857409119606, + -0.09466774016618729, + 0.0029934393242001534, + 0.028394710272550583, + 0.0412733368575573, + -0.019766870886087418, + 0.04705328866839409, + -0.0022253512870520353, + 0.07379257678985596, + -0.02306368760764599, + 0.01370633952319622, + -0.029545089229941368, + 0.005103051196783781, + 0.014183325693011284, + 0.019556434825062752, + 0.04051577299833298, + -0.001067081349901855, + -0.024340327829122543, + 0.043966908007860184, + -0.016063213348388672, + 0.03540921211242676, + 0.020426234230399132, + -0.0952288955450058, + -0.056480780243873596, + -0.08119989186525345, + 0.03995461016893387, + 0.03762579709291458, + -0.024999691173434258, + 0.020482350140810013, + 0.008929463103413582, + 0.06021249666810036, + -0.015740545466542244, + -0.05027996003627777, + -0.039730146527290344, + 0.05998803302645683, + 0.005804501473903656, + -0.020328031852841377, + 0.14152462780475616, + 0.02391945756971836, + -0.10263621807098389, + 0.02094530686736107, + 0.04416331276297569, + 0.011328423395752907, + 0.0243543554097414, + -0.022165831178426743, + -0.026009779423475266, + -3.9662086237512995e-06, + 0.03260341286659241, + -0.04166615009307861, + -0.06767592579126358, + -0.062344908714294434, + -0.06604856252670288, + 0.034791938960552216, + -0.03762579709291458, + -0.02013162523508072, + 0.023694992065429688, + 0.02878752164542675, + 0.03782220184803009, + 0.0032599905971437693, + -0.007877287454903126, + -0.03647541627287865, + 0.006446328479796648, + 0.025771286338567734, + 0.03487611189484596, + -0.040656063705682755, + 0.05533040314912796, + -0.016091270372271538, + 0.001681727240793407, + -0.10274844616651535, + -0.0351286344230175, + 0.03215448558330536, + 0.022516556084156036, + -0.0315091498196125, + 0.10128942877054214, + 0.007729982957243919, + -0.010732190683484077, + -0.033866021782159805, + 0.0443597212433815, + 0.002263931091874838, + 0.03930927813053131, + -0.0034441212192177773, + -0.042339544743299484, + -0.023582760244607925, + 0.009665985591709614, + 0.013594107702374458, + 0.03395019844174385, + 0.022446410730481148, + -0.019640609622001648, + 0.009616884402930737, + 0.005916733760386705, + 0.012219265103340149, + 0.08686760812997818, + -0.019584493711590767, + 0.017227619886398315, + -0.008087722584605217, + 0.007898330688476562, + -0.04267624020576477, + 0.015403850004076958, + -0.0003928121877834201, + 0.022726992145180702, + -0.003540570614859462, + -0.1520744413137436, + -0.04225536808371544, + -0.025504734367132187, + 0.04455612599849701, + 0.0018185100052505732, + 0.06935940682888031, + -0.05858513340353966, + -0.014505993574857712, + -0.058921828866004944, + 0.0304148867726326, + -0.03002207539975643, + -0.02125394530594349, + -0.014786573126912117, + -0.04868065565824509, + 0.0646456629037857, + -0.05824843794107437, + 0.06565575301647186, + -0.03173361346125603, + -0.013173237442970276, + -0.006804068572819233, + -0.07946029305458069, + -0.04340574890375137, + -0.07564440369606018, + 0.021604670211672783, + 0.016792722046375275, + 0.04828784242272377, + 0.035353098064661026, + -0.022137772291898727, + 0.025687111541628838, + 0.004576963372528553, + -0.0543203130364418, + -0.020706813782453537, + 0.06200820952653885, + 0.01588083617389202, + -0.014702399261295795, + 0.038467537611722946, + -0.07463431358337402, + -0.07289472222328186, + -0.03047100268304348, + 0.02348455786705017, + -0.013699325732886791, + -0.014106166549026966, + -0.011630047112703323, + -0.0016808504005894065, + -0.03992655500769615, + 0.04374244436621666, + -0.06167151406407356, + 0.041778381913900375, + -0.018181592226028442, + -0.04374244436621666, + 0.10617152601480484, + -0.006621691398322582, + 0.03824307397007942, + 0.017367910593748093, + 0.08355676382780075, + -0.00921705737709999, + -0.01806936040520668, + 0.013187266886234283, + -0.023007571697235107, + -0.02167481556534767, + -0.029573146253824234, + -0.0439949668943882, + 0.06773204356431961, + -0.0233582966029644, + 0.07873078435659409, + 9.62850172072649e-05, + 0.018840955570340157, + 0.0008763745427131653, + 0.03883229196071625, + -0.014449876733124256, + 0.035184748470783234, + -0.028114130720496178, + -0.0286051444709301, + -0.06279383599758148, + -0.08299560844898224, + 0.08714818954467773, + -0.048877060413360596, + -0.013699325732886791, + -0.029769552871584892, + -0.06324276328086853, + 0.025813372805714607, + 0.02094530686736107, + -0.03237894922494888, + -0.08080708235502243, + -0.00403333967551589, + -0.027931753545999527, + 0.002002640627324581, + 0.040712177753448486, + -0.04043159633874893, + 0.022726992145180702, + -0.02728641778230667, + -0.005390645936131477, + -0.05726640671491623, + 0.031228570267558098, + 0.010353406891226768, + -0.02006147988140583, + -0.006842648144811392, + -0.027510883286595345, + -0.00884528923779726, + 0.02971343696117401, + -0.042844586074352264, + 0.03633512929081917, + 0.06217655912041664, + 0.02342844195663929, + 0.08900001645088196, + -0.03423077613115311, + 0.0443597212433815, + -0.0009188999538309872, + -0.04480864852666855, + 0.047025229781866074, + 0.05039219185709953, + 0.02411586232483387, + 0.09186194092035294, + -0.015852777287364006, + 0.025462647899985313, + -0.15701264142990112, + 0.03423077613115311, + -0.05802397429943085, + 0.0039842380210757256, + -0.03521280735731125, + 0.001816756441257894, + -0.06801262497901917, + 0.010255204513669014, + -0.025069834664463997, + 0.02274101972579956, + 0.04848424717783928, + -0.03684017062187195, + -0.03016236424446106, + 0.06992056965827942, + 0.023203978314995766, + 0.030891872942447662, + -0.02194136753678322, + 0.010199087671935558, + 0.0052503556944429874, + 0.003117946907877922, + 0.09477996826171875, + -0.03737327456474304, + 0.05314187705516815, + -0.00291277258656919, + 0.03849559649825096, + 0.015319675207138062, + -0.014576137997210026, + -0.052496545016765594, + 0.06217655912041664, + 0.016624372452497482, + 0.01024818979203701, + 0.0832761824131012, + 0.010893523693084717, + -0.013755441643297672, + 0.05987580120563507, + -0.04416331276297569, + 0.009455550462007523, + -0.0211837999522686, + -0.0011223205365240574, + 0.049382105469703674, + 0.016161415725946426, + -0.053562749177217484, + -0.05098140984773636, + -0.060605309903621674, + -0.023723050951957703, + -0.07031337916851044, + -0.011552887037396431, + 0.0387481190264225, + 0.002533989492803812, + 0.02940479852259159, + -0.002195539651438594, + 0.020271915942430496, + 0.020594581961631775, + 0.07244579493999481, + -0.041217222809791565, + 0.022783108055591583, + 0.0007654576911590993, + -0.0010214870562776923, + -0.0073582143522799015, + -0.0718846321105957, + 0.00482597853988409, + 0.008655897341668606, + 0.08653091639280319, + -0.01196674257516861, + -0.12255740165710449, + -0.02292339690029621, + -0.05726640671491623, + -0.026444677263498306, + -0.005397660192102194, + 0.029825668781995773, + 0.04772668331861496, + 0.06975222378969193, + 0.01510924007743597, + 0.13355614244937897, + -0.01962658017873764, + 0.08495966345071793, + 0.07901136577129364, + 0.035296980291604996, + -0.026402590796351433, + 0.021899279206991196, + 0.00913288351148367, + 0.06335499882698059, + 0.021197829395532608, + -0.07356811314821243, + 0.0028093087021261454, + 0.0420028455555439, + -0.044079139828681946, + 0.04113304987549782, + -0.026458706706762314, + -0.015558168292045593, + 0.015067153610289097, + -0.008740071207284927, + 0.007189866155385971, + 0.007568649016320705, + 0.004776876885443926, + -0.033922139555215836, + -0.01352396234869957, + -0.020903220400214195, + 0.05695776641368866, + -0.043097108602523804, + -0.08585752546787262, + -0.0038544696290045977, + 0.0025111923459917307, + 0.01358007825911045, + -0.040403541177511215, + -0.03807472437620163, + -0.04298487678170204, + -0.0017816838808357716, + 0.011349466629326344, + 0.014800602570176125, + 0.004794413223862648, + 0.0423675999045372, + 0.09219863265752792, + 0.006039487663656473, + 0.018925130367279053, + -0.008263085037469864, + 0.0639161542057991, + -0.03002207539975643, + -0.0005900951218791306, + -0.053618863224983215, + -0.001222277176566422, + -0.06975222378969193, + 0.05656495690345764, + 0.0038579769898205996, + 0.035296980291604996, + 0.005096036940813065, + -0.034791938960552216, + -0.10589094460010529, + 0.024214066565036774, + 0.03557756170630455, + -0.03658765181899071, + 0.008943491615355015, + 0.007793113589286804, + 0.034932225942611694, + -0.009687029756605625, + -0.012043902650475502, + 0.023203978314995766, + -0.019668668508529663, + 0.043966908007860184, + 0.09275979548692703, + 0.02535041607916355, + 0.02904004417359829, + -0.004429658874869347, + 0.016063213348388672, + -0.030919931828975677, + 0.043966908007860184, + 0.025083864107728004, + 0.01794309914112091, + -0.023316210135817528, + 0.0027566999197006226, + -0.022769078612327576, + -0.018476201221346855, + -0.0331365130841732, + -0.0038544696290045977, + 0.06105423718690872, + 0.0360264889895916, + 0.05726640671491623, + -0.04946627840399742, + 0.018097419291734695, + 0.03855171054601669, + -0.012864599004387856, + 0.02766520157456398, + -0.03336097672581673, + 0.006467372179031372, + -0.002458583563566208, + -0.005022384691983461, + 0.05563903972506523 + ] + }, + { + "id": "b4b7f353-1c21-44a0-84f8-d7850b8d64d9", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "alvaradosean", + "reviewDate": "2021-07-23T21:53:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ef495b9a-609e-418f-89cc-bf2f9b858cf7", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "paulaferguson", + "reviewDate": "2021-10-20T09:16:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a1d5ea88-4fc5-4855-965d-5627ddc0fff5", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "kennethmcdonald", + "reviewDate": "2021-10-15T20:11:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "474d65ff-0345-4fa3-964b-482f9bcba4e4", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "murraypatricia", + "reviewDate": "2021-08-10T09:50:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eb7f5782-de19-4fd0-ac62-6e8ed4f9a28a", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "samantha81", + "reviewDate": "2022-04-09T17:06:21", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0f6bb54e-0852-4283-bd36-30081091968d", + "productId": "616ef9f1-63f0-4076-a0cb-5bc4c52314f7", + "category": "Media", + "docType": "customerRating", + "userName": "zacharycruz", + "reviewDate": "2022-10-10T08:43:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Super (Red)", + "description": "This Premium Stand Super (Red) is a Super Durable, Super Stainless Steel, Multi Purpose Stainless Steel with Black Aluminum Overhead Top Screw. This Premium Stand is very solid and has a well kept, clear surface.", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-06-26T17:57:55", + "price": 768.01, + "stock": 98, + "priceHistory": [ + { + "priceDate": "2021-01-16T19:28:52", + "newPrice": 700.9 + }, + { + "priceDate": "2021-12-26T19:28:52", + "newPrice": 747.34 + }, + { + "priceDate": "2022-12-05T19:28:52", + "newPrice": 789.87 + }, + { + "priceDate": "2024-06-07T19:28:52", + "newPrice": 768.01 + } + ], + "descriptionVector": [ + 0.0016718135448172688, + 0.01149898674339056, + -0.04459105804562569, + 0.07114338874816895, + 0.07097480446100235, + -0.014231488108634949, + -0.04917098581790924, + 0.0070490119978785515, + 0.03689228743314743, + 0.010129222646355629, + 0.06867079436779022, + 0.05080065131187439, + 0.031413234770298004, + -0.058499425649642944, + 0.049648646265268326, + 0.006550277583301067, + 0.017898239195346832, + -0.02171952649950981, + 0.023854952305555344, + -0.0629950538277626, + 0.09862294793128967, + -0.041135042905807495, + -0.01196259818971157, + 0.022534361109137535, + -0.03540311008691788, + -0.0409102588891983, + 0.0009254682227037847, + -0.0036948483902961016, + -0.014540563337504864, + 0.04546209052205086, + -0.018516387790441513, + -0.006420325953513384, + 0.02902493067085743, + 0.011000252328813076, + 0.015060370787978172, + 0.025147447362542152, + 0.052851784974336624, + -0.011576254852116108, + 0.06844601035118103, + 0.026678772643208504, + 0.01799658127129078, + 0.006413301452994347, + 0.0046361214481294155, + 0.07990987598896027, + -0.0008376628393307328, + -0.029474493116140366, + -0.007291354704648256, + 0.003392798127606511, + -0.03312719613313675, + -0.010775470174849033, + 0.02240792103111744, + 0.06423135846853256, + -0.0035947503056377172, + 0.023756610229611397, + 0.05717883259057999, + -0.030682696029543877, + 0.06282646954059601, + 0.2555767297744751, + 0.07715629786252975, + -0.023264901712536812, + -0.006104226689785719, + -0.02180382050573826, + 0.008197505958378315, + -0.0014663490001112223, + -0.0006835645181126893, + 0.04593975096940994, + 0.021635234355926514, + -0.056897856295108795, + 0.019991518929600716, + 0.03871864080429077, + -0.04565877094864845, + 0.0010448835091665387, + 0.049704842269420624, + 0.023447535932064056, + 0.004983830731362104, + 0.0346163734793663, + 0.03551550209522247, + -0.03332388028502464, + 0.017280088737607002, + -0.005106758326292038, + 0.02555486373603344, + 0.015538031235337257, + -0.03413871303200722, + -0.0283786840736866, + 0.09834197163581848, + -0.032312363386154175, + 0.008928046561777592, + -0.08929450809955597, + 0.03559979423880577, + 0.04433818161487579, + 0.019303124397993088, + 0.05110972747206688, + 0.08693430572748184, + -0.0110213253647089, + 0.05254271253943443, + 0.056335899978876114, + -0.033632952719926834, + 0.0070490119978785515, + -0.026622576639056206, + 0.011393619701266289, + 0.024051636457443237, + -0.008239652030169964, + -0.050632067024707794, + -0.0006453691748902202, + 0.045911651104688644, + 0.025611059740185738, + 0.03301480412483215, + 0.007811162155121565, + -0.01479344256222248, + -0.16959775984287262, + -0.024051636457443237, + -0.03714516758918762, + 0.01799658127129078, + 0.04355144500732422, + -0.027676241472363472, + 0.008836728520691395, + -0.013606314547359943, + -0.06968231499195099, + 0.07996607571840286, + -0.04563067480921745, + -0.04284900054335594, + -0.003758068196475506, + 0.04501252621412277, + -0.0011405912227928638, + 0.015018223784863949, + -0.006350081413984299, + -0.043720029294490814, + 0.019345270469784737, + 0.027268823236227036, + -0.04827186092734337, + -0.05456574633717537, + -0.030401717871427536, + -0.005728419870138168, + -0.0020370837301015854, + -0.04858093336224556, + 0.07912313938140869, + 0.011288253590464592, + 0.0630512535572052, + 0.006785596255213022, + 0.012580747716128826, + -0.034784961491823196, + -0.0849674642086029, + 0.049957722425460815, + 0.05077255517244339, + 0.016844574362039566, + 0.007523160893470049, + -0.024051636457443237, + 0.03574028238654137, + 0.009679660201072693, + 0.02141045220196247, + 0.04880571737885475, + -0.05209314823150635, + -0.06574863195419312, + -0.007509111892431974, + 0.08569800108671188, + 0.021326158195734024, + -0.14374786615371704, + 0.04248373210430145, + -0.06687254458665848, + 0.052177440375089645, + 0.04135982319712639, + -0.01104942336678505, + -0.026397794485092163, + 0.019176684319972992, + 0.00788140669465065, + 0.01388729177415371, + 0.04602404311299324, + 0.009742879308760166, + 0.0252457894384861, + 0.015355396084487438, + -0.007066573016345501, + -0.03529071807861328, + -0.004657194949686527, + -0.10289379954338074, + 0.047428928315639496, + 0.06142158433794975, + 0.07665054500102997, + -0.023419437929987907, + 0.09412731230258942, + -0.0024778663646429777, + 0.003074942622333765, + -0.026552332565188408, + -0.025976330041885376, + -0.03711707144975662, + -0.021691428497433662, + 0.02930590696632862, + 0.01546778716146946, + 0.04790658876299858, + -0.011548156850039959, + 0.022281480953097343, + -0.019092392176389694, + -0.054987210780382156, + 0.003122357651591301, + 0.025316033512353897, + 0.04253992810845375, + -0.05400379002094269, + 0.01528515201061964, + 0.017884189262986183, + 0.02679116278886795, + -0.059735722839832306, + -0.0315818227827549, + 0.04630501940846443, + 0.020384885370731354, + -0.004088216461241245, + 0.020412983372807503, + -0.044984426349401474, + 0.03380154073238373, + 0.032958608120679855, + 0.015144663862884045, + 0.08092139661312103, + -0.028743954375386238, + -0.11222223937511444, + -0.047428928315639496, + 0.02107327990233898, + -0.006659156177192926, + 0.031975191086530685, + 0.039870645850896835, + -0.034194909036159515, + 0.0442257896065712, + -0.028800148516893387, + 0.05484672263264656, + -0.027563849464058876, + -0.01468105148524046, + -0.015931399539113045, + -0.03602125868201256, + 0.018699023872613907, + 0.0037299704272300005, + -0.0346163734793663, + 0.028238194063305855, + 0.08378735929727554, + 0.027325019240379333, + -0.0913175418972969, + -0.038662444800138474, + 0.0094478540122509, + 0.0016314230160787702, + 0.07367218285799026, + -0.042062267661094666, + -0.0599043108522892, + -0.04509681835770607, + -0.010157320648431778, + -0.03127274662256241, + 0.045546382665634155, + -0.06867079436779022, + -0.029755471274256706, + -0.022225284948945045, + 0.041500311344861984, + 0.09210427850484848, + -0.13082292675971985, + -0.03059840202331543, + -0.01730818673968315, + -0.014990126714110374, + 0.010185418650507927, + -0.02743740938603878, + 0.03287431597709656, + 0.058780401945114136, + 0.025301983579993248, + 0.025301983579993248, + -0.021888112649321556, + -0.0003714165650308132, + 0.004990855231881142, + 0.013086507096886635, + 0.017209844663739204, + -0.019331222400069237, + 0.03380154073238373, + -0.05616731569170952, + 0.06878318637609482, + -0.004790659062564373, + -0.03652701899409294, + -0.032986707985401154, + 0.09806099534034729, + 0.01104942336678505, + 0.02617301419377327, + 0.01072629913687706, + 0.01106347143650055, + 0.015594227239489555, + 0.013641436584293842, + 0.0015936667332425714, + 0.02493671514093876, + 0.0024761103559285402, + -0.027493605390191078, + 0.07693152129650116, + -0.004309485666453838, + 0.02902493067085743, + 0.013121629133820534, + 0.10289379954338074, + -0.05304846912622452, + 0.030654598027467728, + -0.054734330624341965, + 0.036161746829748154, + -0.06838981807231903, + -0.04894620552659035, + 0.011548156850039959, + 0.05552106723189354, + 0.020356787368655205, + -0.018755218014121056, + 0.02296987548470497, + -0.01038912683725357, + -0.018727121874690056, + 0.06108441203832626, + -0.032958608120679855, + 0.013978608883917332, + 0.047091756016016006, + -0.025147447362542152, + -0.04790658876299858, + -0.0046045114286243916, + 0.07136817276477814, + -0.0473165363073349, + -0.026313502341508865, + -0.009012339636683464, + -0.050660163164138794, + 0.05467813462018967, + -0.021241866052150726, + -0.03186279907822609, + 0.04579926282167435, + 0.05827464163303375, + 0.02747955732047558, + 0.005103245843201876, + -0.010508541949093342, + -0.0205534715205431, + -0.010944056324660778, + -0.03028932772576809, + -0.021382354199886322, + -0.08165193349123001, + 0.038971517235040665, + 0.08356257528066635, + -0.027872923761606216, + -0.050632067024707794, + 0.04256802424788475, + -0.010354004800319672, + 0.02044108137488365, + 0.024360710754990578, + -0.009026387706398964, + -0.009735855273902416, + -0.022323627024888992, + 0.004046069923788309, + -0.0061955442652106285, + -0.007698771543800831, + -0.0440853014588356, + -0.03745424374938011, + 0.0017956190276890993, + 0.04329856485128403, + -0.023096313700079918, + -0.035150229930877686, + -0.042427536100149155, + 0.07434652745723724, + -0.028111755847930908, + 0.06439994275569916, + -0.03967396169900894, + -0.006121787708252668, + 0.06350081413984299, + 0.0015234225429594517, + -0.03947727754712105, + 0.06979469954967499, + 0.016465255990624428, + 0.12846271693706512, + 0.010705226100981236, + 0.027310971170663834, + -0.06597341597080231, + 0.05608302354812622, + -0.028111755847930908, + 0.06153397634625435, + -0.016198327764868736, + 0.06647917628288269, + 0.04574306681752205, + 0.0660296082496643, + 0.041725095361471176, + -0.03543120622634888, + 0.06833361834287643, + -0.023812806233763695, + 0.008450385183095932, + -0.08165193349123001, + -0.01767345704138279, + 0.0726606696844101, + 0.0043200221844017506, + 0.04610833525657654, + 0.030205033719539642, + 0.010993227362632751, + 0.053441837430000305, + -0.0040636309422552586, + 0.006437886971980333, + -0.04627692326903343, + 0.00807106588035822, + -0.04062928259372711, + 0.029249712824821472, + 0.07091861218214035, + -0.02426236867904663, + 0.021213768050074577, + 0.050941143184900284, + -0.07445891946554184, + 0.000622978841420263, + -0.08339399099349976, + 0.023208705708384514, + 0.029221614822745323, + 0.01673218421638012, + 0.03509403392672539, + -0.026987846940755844, + -0.003845873521640897, + 0.03559979423880577, + -0.0504072867333889, + 0.0134166544303298, + -0.002665769774466753, + 0.03936488553881645, + -0.03433539718389511, + -0.04886190965771675, + 0.01401373092085123, + -0.07934792339801788, + 0.012861724942922592, + 0.05234602838754654, + -0.003333090338855982, + -0.005928616039454937, + -0.027058091014623642, + -0.07294164597988129, + 0.010410199873149395, + 0.06428755074739456, + 0.04062928259372711, + 0.04327046871185303, + 0.1415000557899475, + -0.013753827661275864, + 0.0692889466881752, + -0.07946031540632248, + 0.030176935717463493, + -0.03377344459295273, + -0.04329856485128403, + -0.07648195326328278, + -0.004014459904283285, + 0.03554359823465347, + -0.01483558863401413, + -0.024711932986974716, + -0.07507707178592682, + -0.06383799016475677, + 0.04214655980467796, + -0.07710010558366776, + 0.025723449885845184, + 0.02589203603565693, + -0.026566380634903908, + 0.04034830629825592, + 0.03242475166916847, + -0.047119852155447006, + 0.007382672280073166, + 0.05490291863679886, + -0.02802746184170246, + -0.026889504864811897, + 0.035206425935029984, + 0.06024148315191269, + -0.05653258413076401, + -0.04534969851374626, + -0.03498164564371109, + -0.01702721044421196, + -0.0066205221228301525, + 0.0441414974629879, + -0.04858093336224556, + -0.00489602517336607, + -0.003039820585399866, + -0.008878875523805618, + -0.058443229645490646, + -0.02708618901669979, + 0.035487402230501175, + 0.0819329097867012, + 0.037004679441452026, + 0.022323627024888992, + -0.0056300777941942215, + 0.10025261342525482, + 0.06956992298364639, + -0.05431286618113518, + 0.001243323553353548, + 0.033970125019550323, + -0.0408821627497673, + 0.047485124319791794, + 0.010157320648431778, + 0.06591721624135971, + -0.06142158433794975, + -0.042062267661094666, + -0.03245285153388977, + -0.022323627024888992, + -0.018670925870537758, + 0.01763131096959114, + 0.007916528731584549, + -0.031357038766145706, + -0.04043259844183922, + -0.007466965354979038, + -0.019106440246105194, + 0.022562457248568535, + -0.016956966370344162, + 0.002711428562179208, + -0.03205948323011398, + 0.048721421509981155, + -0.011948549188673496, + 0.014062901958823204, + -0.026355648413300514, + 0.01990722492337227, + 0.05023869872093201, + 0.0409102588891983, + 0.00457641389220953, + -0.07721249759197235, + -0.019485758617520332, + -0.0379319041967392, + 0.039280593395233154, + -0.023236803710460663, + 0.01768750697374344, + -0.010761421173810959, + 0.05450955033302307, + -0.036442726850509644, + 0.0037967024836689234, + 0.025161495432257652, + 0.07091861218214035, + 0.0378195121884346, + -0.024430954828858376, + 0.039589669555425644, + 0.007832235656678677, + 0.0045237308368086815, + 0.04481584206223488, + -0.013648460619151592 + ] + }, + { + "id": "2b84fcbd-c742-4b26-ab6f-c4fb7805d7a4", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "michael57", + "reviewDate": "2021-10-18T05:28:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b6102dfd-8823-43a4-919e-c7b407ebd2e6", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jill73", + "reviewDate": "2022-09-19T11:11:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a690fe1-b3bf-4da2-84fa-0c7280834224", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "ashleynorton", + "reviewDate": "2021-11-26T06:58:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "866fd426-7ea8-470a-a1cd-f313320c230a", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "bennetterin", + "reviewDate": "2022-08-25T15:24:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "26839dce-ba04-49f0-baf8-e9fe6f25b34d", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "matthew05", + "reviewDate": "2021-07-01T08:04:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d275b630-f881-4c72-9484-8292bde01fc4", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "zhenry", + "reviewDate": "2021-07-15T15:59:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8a960089-29e0-4374-9ae0-f9ff33225c8f", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "xblack", + "reviewDate": "2021-11-26T01:18:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d3af425f-37e9-45fe-8664-c2121709b017", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "laurajohnson", + "reviewDate": "2022-05-16T21:48:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7395389b-2ffe-4396-a910-b7e75c911c54", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicolegill", + "reviewDate": "2022-01-18T09:24:00", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a677b65c-a8d6-4e13-9dc8-8e8420103635", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jimenezandrew", + "reviewDate": "2022-09-08T12:18:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e6720b4c-a35c-4ff2-b6dd-3ba4b1197bf9", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "oharris", + "reviewDate": "2021-01-16T19:28:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "97042c89-023b-4309-a139-246a089a0aed", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "leon92", + "reviewDate": "2022-03-20T10:42:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "23fd3ff8-8d40-470d-8d98-6311b86923fb", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "rhodesstephen", + "reviewDate": "2022-12-06T14:00:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f238674a-0f18-47e7-a9c2-af09c79d9780", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "tanyalowe", + "reviewDate": "2022-11-18T09:18:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7660f966-b6b6-496e-ad36-ac03a8145e5f", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "amyyang", + "reviewDate": "2022-05-01T13:29:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "678a2e8d-6a43-4200-8094-0062585d582c", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacob07", + "reviewDate": "2022-05-07T12:33:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0cbce22d-08e7-4efc-af4b-2bdd3dd82857", + "productId": "f6ebdf1c-6ccb-4b7f-8522-1d4b3f17a55e", + "category": "Accessory", + "docType": "customerRating", + "userName": "danielsamuel", + "reviewDate": "2022-07-02T22:25:02", + "stars": 2, + "verifiedUser": true + }, + { + "id": "98671e10-38e0-409a-9282-f333c34eaed9", + "productId": "98671e10-38e0-409a-9282-f333c34eaed9", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Steel)", + "description": "This Premium Keyboard Mini (Steel) is one of many products sold by the brand which you may find below or here at the top of the item (for the price). If you are happy with the quality of the product and you wish to switch to Steel then please click the button below: Choose Free Shipping From our Manufacturer We can accept orders up to a $100 or higher.\n\nThe above products will be sent to you FREE for FREE upon", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-02-23T06:13:10", + "price": 1072.01, + "stock": 60, + "priceHistory": [ + { + "priceDate": "2021-06-11T10:44:37", + "newPrice": 1119.51 + }, + { + "priceDate": "2022-04-25T10:44:37", + "newPrice": 1029.13 + }, + { + "priceDate": "2024-05-16T10:44:37", + "newPrice": 1072.01 + } + ], + "descriptionVector": [ + -0.05090048164129257, + 0.02051251381635666, + -0.02698614075779915, + -0.010751298628747463, + 0.040745772421360016, + -0.03955259546637535, + 0.019027387723326683, + 0.02240382879972458, + 0.004658473189920187, + 0.029118629172444344, + 0.0025989708956331015, + -0.010383190587162971, + 0.02678304724395275, + -0.043944504112005234, + 0.04272593930363655, + 0.0008024600683711469, + -0.01878621242940426, + 0.018088076263666153, + -0.03868944197893143, + -0.06549787521362305, + 0.028966309502720833, + -0.026453018188476562, + -0.03757242485880852, + -0.040415745228528976, + -0.02757003717124462, + -0.046102382242679596, + -0.025957975536584854, + 0.005378822796046734, + 0.05915118381381035, + 0.020690221339464188, + -0.0037445491179823875, + 0.0008877437794581056, + -0.03676004707813263, + 0.016514096409082413, + 0.015409771353006363, + 0.0005053554777987301, + -0.017250312492251396, + -0.025780268013477325, + 0.048793379217386246, + 0.09687592834234238, + 0.04097425192594528, + 0.0005442289402708411, + 0.005169381853193045, + -0.008314168080687523, + -0.020296726375818253, + 0.015498625114560127, + 0.030007166787981987, + 0.044223759323358536, + -0.01797383651137352, + 0.022898869588971138, + 0.011443088762462139, + 0.05219520628452301, + -0.09474343806505203, + 0.04523923248052597, + -0.0019627150613814592, + -0.06478704512119293, + 0.07783585041761398, + 0.2027895450592041, + 0.07225076109170914, + -0.05661250650882721, + -0.03757242485880852, + -0.06793500483036041, + -0.013937339186668396, + 3.2551597541896626e-05, + 0.019750909879803658, + -0.0517636314034462, + -0.08230391889810562, + -0.010522818192839622, + 0.017377246171236038, + 0.064888596534729, + -0.05498775094747543, + -0.029677139595150948, + 0.006248319521546364, + 0.017428020015358925, + 0.022479988634586334, + -0.019509736448526382, + 0.024942506104707718, + 0.0012217385228723288, + 0.08098381012678146, + -0.022137267515063286, + 0.04082193225622177, + -0.0100785493850708, + -0.035693805664777756, + -0.10205483436584473, + 0.020245952531695366, + 0.002970252651721239, + 0.03607460483908653, + -0.11078788340091705, + -0.07458633929491043, + 0.06539633125066757, + -0.00937406625598669, + -0.012115838006138802, + 0.010192790068686008, + -0.062349915504455566, + 0.06961053609848022, + 0.019801683723926544, + -0.031936559826135635, + 0.027976224198937416, + -0.01971282996237278, + -0.00524871563538909, + 0.014254673384130001, + 0.0026640244759619236, + -0.006790962070226669, + -0.011531942524015903, + 0.027036914601922035, + 0.04838719218969345, + 0.006613254547119141, + 0.02602144330739975, + -0.09474343806505203, + -0.13719013333320618, + 0.033688247203826904, + -0.004810793790966272, + -0.019598590210080147, + 0.05102741718292236, + -0.010744951665401459, + -0.015790574252605438, + -0.0554954893887043, + -0.0387909896671772, + 0.0013677123934030533, + -0.03168269246816635, + 0.02820470556616783, + 0.039654139429330826, + 0.018062690272927284, + 0.016044441610574722, + -0.01878621242940426, + 0.012801281176507473, + -0.030337193980813026, + 0.034297533333301544, + 0.048869539052248, + -0.05712024122476578, + -0.053058356046676636, + -0.010224523022770882, + 0.012661653570830822, + 0.05823725834488869, + -0.02393972873687744, + 0.003484334796667099, + 0.024498237296938896, + 0.022911563515663147, + -0.02364777959883213, + 0.00788259319961071, + -0.011570022441446781, + -0.0033669208642095327, + -0.042979806661605835, + 0.013505763374269009, + -0.06499014049768448, + -0.006511707324534655, + -0.043741412460803986, + 0.05503852665424347, + 0.038537122309207916, + -0.00024692603619769216, + -0.0184307973831892, + -0.09606355428695679, + -0.06123289838433266, + -0.03498297557234764, + 0.07103219628334045, + 0.05712024122476578, + -0.14541544020175934, + -0.03363747522234917, + -0.024180902168154716, + 0.04193894937634468, + -0.0053534358739852905, + -0.020537899807095528, + 0.0045886593870818615, + -0.04214204475283623, + -0.04056806489825249, + 0.052296753972768784, + 0.02457439713180065, + 0.006178506184369326, + -0.023368526250123978, + 0.020690221339464188, + -0.017263006418943405, + -0.02949943207204342, + 0.06397467106580734, + -0.11119406670331955, + 0.03521145507693291, + -0.023838181048631668, + 0.03800399973988533, + -0.07463711500167847, + 0.049580369144678116, + 0.00776835298165679, + 0.027240008115768433, + 0.042802099138498306, + -0.05585090443491936, + 0.01395003218203783, + 0.064888596534729, + 0.04082193225622177, + 0.0038587895687669516, + 0.04054267704486847, + 0.010522818192839622, + 0.01766919530928135, + 0.009850068017840385, + 0.02145182341337204, + -0.0498342365026474, + 0.028026998043060303, + 0.004861567169427872, + 0.02856012061238289, + 0.03442446514964104, + 0.044858429580926895, + -0.015955587849020958, + -0.052753716707229614, + 0.01841810531914234, + 0.049301113933324814, + 0.04836180433630943, + -0.04559464752674103, + 0.029423270374536514, + 0.027316167950630188, + -0.0318857878446579, + -0.014762409031391144, + -0.02047443389892578, + 0.005029754713177681, + -0.05783107131719589, + -0.06250223517417908, + 0.03990800678730011, + -0.015143210999667645, + 0.0033351874444633722, + 0.06615792959928513, + -0.007907980121672153, + -0.017377246171236038, + -0.0501134917140007, + -0.06057284399867058, + 0.01860850490629673, + 0.004763193428516388, + 0.009094811975955963, + -0.04539155215024948, + -0.04937727376818657, + -0.04985962435603142, + -0.003203493542969227, + -0.012490293011069298, + 0.047371719032526016, + 0.090833880007267, + -0.08682277053594589, + -0.07326623052358627, + -0.04787945747375488, + -0.03874021768569946, + -0.045163072645664215, + 0.01491472963243723, + -0.028585506603121758, + 0.000654502771794796, + -0.043462157249450684, + 0.018862372264266014, + 0.02823009341955185, + -0.025336001068353653, + -0.034602172672748566, + -0.017719967290759087, + 0.01721223257482052, + -0.018024610355496407, + 0.031327277421951294, + -0.01467355526983738, + -0.05564780905842781, + -0.0015509732766076922, + -0.05140821635723114, + -0.018062690272927284, + -0.008034913800656796, + 0.08895525336265564, + -0.052906036376953125, + 0.07311391085386276, + -0.023406606167554855, + 0.022492682561278343, + 0.0010329243959859014, + -0.029423270374536514, + 0.009742174297571182, + 0.00024811606272123754, + -0.02381279319524765, + 0.08814287930727005, + 0.0015351064503192902, + 0.07783585041761398, + 0.03168269246816635, + -0.07478943467140198, + -0.07484021037817001, + 0.1031210720539093, + -0.0018897280097007751, + -0.0387909896671772, + 0.06026820093393326, + -0.02098216861486435, + -0.01890045404434204, + -0.0545307919383049, + -0.0883459746837616, + 0.07646496593952179, + -0.03566841781139374, + -0.06052206829190254, + -0.03467833250761032, + 0.03074338287115097, + 0.02757003717124462, + 0.06864583492279053, + -0.013175735250115395, + -0.0036779087968170643, + -0.001447839429602027, + 0.049098022282123566, + -0.042243592441082, + -0.07742965966463089, + -0.03772474452853203, + 0.00016541070363018662, + 0.005965891759842634, + 0.003224120242521167, + 0.02268308214843273, + 0.039628755301237106, + 0.021375663578510284, + 0.08829519897699356, + 0.04747326672077179, + 0.03330744802951813, + -0.024879038333892822, + -0.01196986436843872, + -0.09200166910886765, + -0.06483782082796097, + 0.01292186789214611, + 0.04853951185941696, + -0.009907188825309277, + -0.023114657029509544, + 0.0394764319062233, + -0.02868705429136753, + 0.07890209555625916, + -0.04272593930363655, + -0.06478704512119293, + 0.009964308701455593, + -0.010192790068686008, + -0.030464129522442818, + 0.042319752275943756, + 0.026427632197737694, + 0.0035731883253902197, + 0.0126997334882617, + 0.022314975038170815, + -0.03234275057911873, + -0.10357803851366043, + 0.05018965154886246, + -0.008403021842241287, + -0.08550265431404114, + 0.014546621590852737, + 0.027849290519952774, + 0.03749626502394676, + 0.007044829893857241, + -0.03703930228948593, + -0.042675167322158813, + 0.001441492815501988, + 0.009094811975955963, + 0.05498775094747543, + -0.031581148505210876, + -0.02393972873687744, + -0.01747879385948181, + 0.05529239401221275, + 0.04333522170782089, + 0.018684664741158485, + -0.012928214855492115, + 0.014902036637067795, + -0.03183501586318016, + -0.03221581503748894, + -0.035871513187885284, + -0.008072993718087673, + -0.003319320734590292, + 0.009399453178048134, + 0.022746549919247627, + 0.001562079880386591, + -0.02632608450949192, + 0.034627560526132584, + -0.02886476181447506, + 0.10342571884393692, + -0.03676004707813263, + 0.009913534857332706, + -0.035084523260593414, + 0.005464503075927496, + 0.058897316455841064, + -0.010357803665101528, + -0.0051884218119084835, + -0.009640627540647984, + 0.027696970850229263, + -0.01573980040848255, + 0.056561730802059174, + -0.03551609814167023, + 0.027849290519952774, + -0.017148766666650772, + 0.025120213627815247, + 0.013518457300961018, + -0.05138283222913742, + 0.05219520628452301, + 0.09388028830289841, + 0.010808419436216354, + 0.06651334464550018, + 0.0400349423289299, + 0.014533927664160728, + -0.09844990819692612, + -0.0029083723202347755, + 0.0004601352848112583, + -0.022962337359786034, + -0.04828564450144768, + 0.010630711913108826, + 0.03592228516936302, + -0.03516068309545517, + -0.04178662970662117, + 0.05529239401221275, + -0.07306313514709473, + 0.015828654170036316, + -0.030692609027028084, + 0.04188817739486694, + -0.03518606722354889, + -0.002130902372300625, + 0.0041570840403437614, + -0.02762080915272236, + 0.025932589545845985, + 0.09108774363994598, + 0.007057523354887962, + -0.0004494252207223326, + 0.03988262265920639, + 0.05150976404547691, + -0.025666028261184692, + -0.05041813477873802, + 0.010941699147224426, + -0.13008183240890503, + 0.0390702448785305, + 0.03607460483908653, + -0.00043316182564012706, + 0.001645380281843245, + -0.08981840312480927, + -0.07900363951921463, + 0.017732661217451096, + -0.03231736272573471, + 0.015409771353006363, + -0.012737813405692577, + 0.1006331741809845, + 0.020690221339464188, + 0.08595961332321167, + -0.028407800942659378, + 0.11007705330848694, + -0.09474343806505203, + -0.056206315755844116, + 0.013873872347176075, + -0.0016580736264586449, + 0.03945104777812958, + -0.024028580635786057, + 0.04008571431040764, + 0.03922256454825401, + -0.08565497398376465, + 0.0022007159423083067, + -0.05209365859627724, + -0.07636341452598572, + 0.022975031286478043, + 0.004947247449308634, + 0.001412932644598186, + -0.011633489280939102, + -0.025818349793553352, + -0.03279971331357956, + -0.021642224863171577, + -0.013302669860422611, + -0.016590256243944168, + 0.022911563515663147, + -0.00953273382037878, + -0.10317184776067734, + 0.04176124185323715, + -0.039984170347452164, + 0.06163908541202545, + 0.04980884864926338, + -0.02129950374364853, + -0.08438563346862793, + -0.01670449785888195, + -0.04945343732833862, + -0.02270847000181675, + 0.010852846316993237, + -0.0691535696387291, + 0.02131219580769539, + 0.04026342183351517, + -0.008529956452548504, + 0.07956214994192123, + 0.04892031475901604, + 0.07418015599250793, + 0.031784240156412125, + 0.012242771685123444, + 0.014229286462068558, + -0.06026820093393326, + -0.0036461753770709038, + 0.044985365122556686, + 0.016590256243944168, + 0.05945582315325737, + -0.031149571761488914, + -0.048971086740493774, + 0.002154702553525567, + 0.02333044447004795, + 0.10190250724554062, + -0.0756525844335556, + 0.02320351079106331, + -0.025653334334492683, + -0.0691535696387291, + 0.05422614887356758, + -0.015397078357636929, + -0.01576518639922142, + -0.004820313770323992, + 0.02225150726735592, + 0.012947254814207554, + -0.0011931783519685268, + -0.0096977474167943, + 0.05034197121858597, + 0.03752165287733078, + 0.013531150296330452, + -0.03709007799625397, + 0.02414282225072384, + -0.029372496530413628, + -0.016006361693143845, + 0.029727911576628685, + 0.0318857878446579, + 0.02366047352552414, + -0.028737828135490417, + -0.03026103414595127, + -0.0096977474167943, + 0.057932619005441666, + -0.0030019860714673996, + 0.03549071028828621, + -0.02555178850889206, + -0.03389134258031845, + 0.05239830166101456, + 0.00456644594669342, + 0.022987723350524902, + 0.10956931859254837, + 0.05234752967953682, + 0.05249984934926033, + -0.0294740442186594 + ] + }, + { + "id": "22ece44b-1483-4b24-80fa-05da21e2b2d7", + "productId": "98671e10-38e0-409a-9282-f333c34eaed9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jimmy15", + "reviewDate": "2021-06-11T10:44:37", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f2397ec4-472a-46a3-b583-2ffc121c483e", + "productId": "98671e10-38e0-409a-9282-f333c34eaed9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "usantos", + "reviewDate": "2022-04-25T15:43:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "product", + "name": "Premium TV Ultra (Gold)", + "description": "This Premium TV Ultra (Gold) is just £70.", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-10-01T05:13:05", + "price": 922.44, + "stock": 51, + "priceHistory": [ + { + "priceDate": "2021-02-03T07:58:21", + "newPrice": 949.39 + }, + { + "priceDate": "2022-12-12T07:58:21", + "newPrice": 902.33 + }, + { + "priceDate": "2024-08-22T07:58:21", + "newPrice": 922.44 + } + ], + "descriptionVector": [ + 0.030138447880744934, + 0.05031295865774155, + -0.029620520770549774, + 0.01354010496288538, + -0.020766425877809525, + 0.012152799405157566, + -0.07689990103244781, + 0.07650528848171234, + 0.03911585733294487, + 0.05509762093424797, + 0.03756207600235939, + -0.04888249188661575, + 0.06294052302837372, + -0.029965804889798164, + 0.07571607083082199, + -0.009347358718514442, + -0.004710673820227385, + -0.036057621240615845, + 0.056774720549583435, + 0.008293005637824535, + 0.048956479877233505, + -0.010025597177445889, + -0.008588964119553566, + -0.035194408148527145, + -0.07305244356393814, + -0.009076062589883804, + -0.020088188350200653, + 0.022542178630828857, + 0.06678798794746399, + 0.018004147335886955, + -0.0012239119969308376, + 0.009094560518860817, + 0.024268602952361107, + -0.02794342301785946, + -0.00880476739257574, + 0.0549989677965641, + 0.014514301903545856, + 0.0007776619750075042, + 0.02414528653025627, + 0.031223630532622337, + 0.025304459035396576, + 0.03371461480855942, + -0.002457072725519538, + -0.004420881159603596, + 0.024897515773773193, + -0.0019977204501628876, + 0.029867153614759445, + 0.03413388878107071, + -0.05707067996263504, + 0.0012994430726394057, + -0.012837203219532967, + 0.060227569192647934, + -0.001238555763848126, + 0.0919937938451767, + -0.03290072828531265, + -0.033837929368019104, + 0.03652622178196907, + 0.1250918209552765, + 0.009205545298755169, + 0.021900935098528862, + -0.02431792952120304, + 0.01331813633441925, + 0.007257150951772928, + 0.046786118298769, + -0.030064458027482033, + -0.019989535212516785, + -0.04343192279338837, + -0.007053679320961237, + -0.01186300627887249, + 0.041286222636699677, + -0.007146166637539864, + -0.02442891336977482, + 0.08878757059574127, + -0.01156704779714346, + -0.0016092747682705522, + 0.0886889174580574, + 0.005700285546481609, + 0.012091141194105148, + 0.009655648842453957, + -0.026660935953259468, + 0.05578819289803505, + -0.011813679710030556, + 0.007084508426487446, + -0.0009564703213982284, + 0.10565721243619919, + 0.04222342371940613, + -0.012997514568269253, + -0.0886889174580574, + -0.05914238840341568, + 0.010839482769370079, + -0.007047513499855995, + 0.13367462158203125, + 0.021543318405747414, + -0.04338259622454643, + 0.04158217832446098, + 0.03179088234901428, + -0.07517347484827042, + 0.03290072828531265, + -0.0799088180065155, + 0.0397324375808239, + 0.05633078143000603, + -0.07620933651924133, + 0.019311297684907913, + -0.02270248904824257, + 0.06678798794746399, + 0.00015790238103363663, + 0.041310884058475494, + 0.014033368788659573, + 0.035367049276828766, + -0.14146819710731506, + -0.03223482146859169, + 0.005851347465068102, + 0.062200628221035004, + 0.018090467900037766, + 0.03793202340602875, + 0.050855547189712524, + 0.005170026328414679, + -0.06807047128677368, + 0.0016277721151709557, + -0.03410922735929489, + -0.027696790173649788, + -0.021370675414800644, + -0.03953513130545616, + 0.0033326169941574335, + 0.026438966393470764, + 0.008465648628771305, + -0.0763079896569252, + 0.10476933419704437, + 0.04365389049053192, + -0.012072643265128136, + -0.10733430832624435, + -0.008305337280035019, + -0.00894041545689106, + 0.07611068338155746, + -0.007417461834847927, + 0.05361782759428024, + -0.05766259506344795, + -0.03179088234901428, + 0.022739483043551445, + 0.0032709587831050158, + -0.041483525186777115, + -0.024539899080991745, + 0.06664000451564789, + 0.01040787622332573, + -0.052236687391996384, + 0.0024863602593541145, + 0.009100725874304771, + 0.008884923532605171, + -0.03731544315814972, + -0.009427513927221298, + 0.06673865765333176, + -0.03689616918563843, + -0.0408916100859642, + -0.005416658706963062, + 0.022542178630828857, + 0.062348607927560806, + -0.03161824122071266, + 0.000487869227072224, + -0.07122736424207687, + 0.021728292107582092, + -0.044393785297870636, + -0.027918759733438492, + -0.05228601396083832, + -0.050164978951215744, + 0.02819005399942398, + 0.01865772157907486, + 0.018250778317451477, + 0.02235720492899418, + -0.0076455967500805855, + 0.02139533869922161, + -0.027376167476177216, + -0.03457782790064812, + 0.030237101018428802, + -0.04649015888571739, + 0.02225855179131031, + 0.046712130308151245, + 0.035539694130420685, + 0.011918498203158379, + 0.03716746345162392, + -0.043456584215164185, + -0.01838642731308937, + 0.07497617602348328, + -0.047575339674949646, + -0.06649202853441238, + -0.04814259335398674, + 0.09179648756980896, + 0.05638010799884796, + 0.04863585904240608, + -0.05337119475007057, + 0.026266323402523994, + 0.017239587381482124, + -0.022221555933356285, + -0.014600623399019241, + -0.061855342239141464, + -0.03766072914004326, + 0.004781580530107021, + 0.027548810467123985, + 0.050756894052028656, + -0.05014031380414963, + -0.00916238408535719, + 0.030138447880744934, + 0.024108292534947395, + 0.0918458104133606, + -0.033048707991838455, + -0.0326787605881691, + -0.048783838748931885, + 0.03164290264248848, + 0.036994822323322296, + -0.0053457519970834255, + 0.06664000451564789, + -0.05697202682495117, + -0.025649743154644966, + -0.022801142185926437, + 0.02416994981467724, + 0.05776124820113182, + 0.048265911638736725, + -0.04177948459982872, + 0.001646269578486681, + -0.0689583495259285, + -0.016302384436130524, + 0.055492233484983444, + 0.004035518504679203, + -0.03068103827536106, + -0.011893834918737411, + 0.012337773106992245, + 0.004978886339813471, + 0.05697202682495117, + -0.04350591078400612, + 0.022492852061986923, + 0.021950261667370796, + -0.12351337820291519, + -0.041804149746894836, + -0.0565774142742157, + -0.017054613679647446, + -0.01847274787724018, + 0.018497411161661148, + -0.016709327697753906, + -0.006307617295533419, + -0.00689953425899148, + 0.04478839784860611, + -0.04251938313245773, + 0.03827730938792229, + -0.00893424917012453, + -0.024367256090044975, + 0.03615627437829971, + -0.051200833171606064, + 0.11601576209068298, + 0.05218736082315445, + -0.05983296036720276, + -0.009402850642800331, + -0.04727938398718834, + -0.08903420716524124, + -0.03603295609354973, + 0.012473421171307564, + -0.03129762038588524, + 0.02749948389828205, + 0.06491357833147049, + 0.0007102235103957355, + 0.07019151002168655, + 0.008835596963763237, + -0.035983629524707794, + -0.011844509281218052, + 0.02905326709151268, + -0.013873058371245861, + -0.051348812878131866, + 0.11335213482379913, + 0.00942134764045477, + -0.11414135992527008, + -0.0026512956246733665, + 0.01702995039522648, + -0.033320002257823944, + 0.07172062993049622, + -0.026759587228298187, + -0.012701555155217648, + -0.022640831768512726, + 0.0031168137211352587, + -0.06042487546801567, + -0.016992954537272453, + -0.03970777615904808, + 0.015118550509214401, + 0.08498943597078323, + -0.006030155811458826, + 0.02749948389828205, + -0.0011098446557298303, + 0.08967544883489609, + -0.03499710187315941, + -0.07260850071907043, + 0.01624072715640068, + 0.0054351557046175, + -0.024120623245835304, + -0.012572073377668858, + 0.07009285688400269, + 0.0531245656311512, + -0.051200833171606064, + 0.02888062410056591, + -0.005570803768932819, + -0.018337100744247437, + 0.03645223006606102, + 0.013157824985682964, + 0.02784476988017559, + -0.027055546641349792, + 0.051348812878131866, + -0.02742549404501915, + -0.037784043699502945, + -0.08656788617372513, + 0.06372974812984467, + -0.02347937971353531, + -0.02467554621398449, + 0.010309224016964436, + -0.0035607516765594482, + 0.0781823918223381, + -0.022455856204032898, + -0.07394031435251236, + -0.03748808801174164, + 0.0032401299104094505, + -0.022406529635190964, + -0.023676685988903046, + 0.02981782704591751, + -0.022122902795672417, + 0.010013265535235405, + -0.0318155474960804, + -0.05263129994273186, + -0.07438425719738007, + 0.04256870970129967, + 0.04399917647242546, + -0.005404327064752579, + -0.041384875774383545, + 0.0159077737480402, + 0.01763419806957245, + -0.03615627437829971, + -0.016388706862926483, + -0.04163150489330292, + 0.05043627321720123, + 0.016573680564761162, + 0.12459856271743774, + -0.030459070578217506, + 0.031248293817043304, + 0.013947048224508762, + -0.00022389573859982193, + 0.008336166851222515, + 0.06249658763408661, + -0.031223630532622337, + 0.007781244348734617, + -0.03482446074485779, + -0.007300311699509621, + -0.04330860450863838, + 0.02440425008535385, + -0.05263129994273186, + 0.016561347991228104, + 0.04382653161883354, + 0.0013873057905584574, + -0.022838136181235313, + 0.011585544794797897, + 0.051447466015815735, + 0.08587731420993805, + -0.01616673730313778, + 0.019829224795103073, + 0.04338259622454643, + -0.011819845996797085, + -0.007127669174224138, + -0.0067268917337059975, + -0.01916331797838211, + -0.045503631234169006, + 0.0954466387629509, + -0.08415088802576065, + 0.08632124960422516, + 0.03465181589126587, + 0.05258197337388992, + -0.01796715147793293, + -0.025131816044449806, + 0.0529765859246254, + -0.03156891465187073, + -0.06590010970830917, + 0.012177462689578533, + -0.024650882929563522, + 0.10664374381303787, + 0.03043440729379654, + 0.0019483939977362752, + -0.012948187999427319, + 0.01246108952909708, + -0.08138860762119293, + 0.031149640679359436, + 0.004636684432625771, + 0.05014031380414963, + 0.09534798562526703, + 0.04900580644607544, + -0.056084148585796356, + -0.054456379264593124, + 0.00453186547383666, + -0.026340313255786896, + 0.0018944431794807315, + 0.018497411161661148, + 0.027203526347875595, + -0.025649743154644966, + 0.029349224641919136, + -0.01009342074394226, + -0.02244352549314499, + 0.06328580528497696, + -0.011924664489924908, + 0.04787129908800125, + 0.05638010799884796, + -0.007713420316576958, + -0.016351711004972458, + -0.031420934945344925, + -0.03625492379069328, + -0.05958632752299309, + 0.0079538868740201, + 0.010099586099386215, + 0.02457689307630062, + -0.07665327191352844, + 0.004877150524407625, + -0.03840062394738197, + -0.026512956246733665, + 0.016105080023407936, + 0.018078137189149857, + 0.04599689692258835, + 0.06634404510259628, + -0.006677565164864063, + 0.041138242930173874, + -0.01448963861912489, + 0.033320002257823944, + 0.09446011483669281, + -0.027548810467123985, + -0.012208291329443455, + 0.030533060431480408, + -0.02784476988017559, + -0.018941348418593407, + 0.02303544245660305, + 0.004605855327099562, + 0.02949720434844494, + 0.02527979575097561, + -0.07073409855365753, + 0.051200833171606064, + -0.01694362796843052, + -0.07808373868465424, + 0.07591337710618973, + 0.03635357692837715, + 0.05593617260456085, + -0.05998093634843826, + 0.018361764028668404, + -0.03085368126630783, + -0.0814872607588768, + 0.02863399311900139, + 0.057711921632289886, + -0.044393785297870636, + 0.0066405707038939, + 0.03230880945920944, + 0.035194408148527145, + 0.05662674084305763, + 0.006714560091495514, + 0.019360624253749847, + 0.008656788617372513, + 0.016277721151709557, + 0.01769585721194744, + -0.0008817099151201546, + 0.002666710177436471, + 0.0568733736872673, + 0.08454550057649612, + -0.012430259957909584, + 0.039239175617694855, + 0.004072513431310654, + 0.09988602250814438, + 0.03243212774395943, + -0.03324601426720619, + -0.059093061834573746, + 0.04353057220578194, + -0.02079108916223049, + 0.02673492394387722, + 0.03413388878107071, + 0.09421347826719284, + -0.06969824433326721, + -0.052483320236206055, + -0.0652095377445221, + 0.01314549334347248, + 0.007898394949734211, + -0.0020593784283846617, + 0.014169016852974892, + -0.026512956246733665, + 0.02053212560713291, + -0.05864912271499634, + 0.025329122319817543, + 0.004627435468137264, + 0.06678798794746399, + 0.07014217972755432, + 0.02381233312189579, + -0.015525493770837784, + -0.014132021926343441, + 0.05036228522658348, + -0.006486425641924143, + 0.061411403119564056, + 0.003973860293626785, + -0.03033575415611267, + 0.07729451358318329, + 0.042593371123075485, + -0.059438347816467285, + -0.006696062628179789, + 0.04212477058172226, + -0.04237140342593193, + 0.026882903650403023, + 0.057120006531476974, + -0.03275274857878685, + 0.057810574769973755, + -0.09855420887470245, + 0.007059845142066479, + -0.02794342301785946, + -0.07719586044549942, + 0.019064664840698242, + 0.004538031294941902, + 0.004735337104648352, + 0.040447670966386795, + 0.01719026081264019, + 0.06412436068058014 + ] + }, + { + "id": "f4fab2ca-e654-48fd-9da0-c2689a69486c", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "eric60", + "reviewDate": "2022-09-14T12:59:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dbcbb595-0d2c-4e82-8415-bff1cff3e784", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "dennis79", + "reviewDate": "2021-02-03T07:58:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "68ef811a-7bc7-4196-ac07-84360aeb8f5c", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "sanchezkayla", + "reviewDate": "2022-05-01T10:35:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "870ad5e3-d92a-4aaa-864c-375217663f82", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "bakeramanda", + "reviewDate": "2021-05-14T14:51:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "47e5512a-61b4-4362-9827-417a610ec3a1", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "justin77", + "reviewDate": "2022-12-13T03:00:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e4787f97-9288-422d-9362-ef1acf154798", + "productId": "d25087a2-2676-459e-a2f0-b86434e88ceb", + "category": "Media", + "docType": "customerRating", + "userName": "mark90", + "reviewDate": "2021-06-11T11:35:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer Super (Red)", + "description": "This Basic Computer Super (Red) is a 4MB and up 64Bit PC designed, designed for simple, hard wired computer use and compatible with Mac/Linux platforms of the desktop.\n\nThe Red Super is 100% plug and play, fully-configurable, with a 3,600MHz CPU that supports both Windows 7, Windows Vista / Windows 8 systems, Mac/Linux systems, and tablets. The system was tested on a quad-core Intel Core i3 / AMD", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-03-13T10:31:17", + "price": 620.62, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-03-28T22:45:01", + "newPrice": 617.03 + }, + { + "priceDate": "2021-08-10T22:45:01", + "newPrice": 640.53 + }, + { + "priceDate": "2021-12-23T22:45:01", + "newPrice": 595.65 + }, + { + "priceDate": "2022-05-07T22:45:01", + "newPrice": 574.06 + }, + { + "priceDate": "2022-09-19T22:45:01", + "newPrice": 650.77 + }, + { + "priceDate": "2024-06-14T22:45:01", + "newPrice": 620.62 + } + ], + "descriptionVector": [ + -0.02441019006073475, + 0.028522301465272903, + -0.045695677399635315, + 0.08494196087121964, + 0.024972636252641678, + 0.07049332559108734, + -0.016323454678058624, + 0.03554663807153702, + 0.08094234019517899, + 0.09174131602048874, + 0.0767427384853363, + -0.10529003292322159, + 0.0791425108909607, + -0.09719080477952957, + 0.053694918751716614, + 0.02917223982512951, + -0.06574378162622452, + -0.00011981288116658106, + -0.020498059689998627, + 0.004130858927965164, + 0.0872417464852333, + -0.005336994770914316, + -0.061644166707992554, + -0.0014412698801606894, + -0.03414676710963249, + 0.005877568852156401, + -0.03132203593850136, + 0.003041899763047695, + -0.021785438060760498, + -0.009511600248515606, + 0.05874444171786308, + 0.021860431879758835, + 0.0010600559180602431, + 0.011167692951858044, + 0.013611212372779846, + -0.06324401497840881, + 0.0027981726452708244, + -0.059494368731975555, + 0.058444470167160034, + -0.01883571781218052, + 0.05584471672773361, + 0.00301533960737288, + 0.0365215428173542, + 0.028997255489230156, + 0.027122434228658676, + 0.05489480495452881, + 0.03662153333425522, + 0.0020482437685132027, + -0.006643121596425772, + -0.08154228329658508, + 0.01983562298119068, + 0.009230376221239567, + 0.06114421412348747, + 0.012330083176493645, + 0.016273459419608116, + -0.014936086721718311, + -0.012117602862417698, + 0.1651843637228012, + 0.009374112822115421, + -0.04114610701799393, + -0.018085788935422897, + 0.053894899785518646, + 0.0529949851334095, + -0.0050620208494365215, + -0.02334779128432274, + 0.01125518511980772, + -0.0008132042712531984, + 0.057894520461559296, + 0.021672949194908142, + 0.006930594332516193, + -0.03727147355675697, + -0.0257225651293993, + 0.018735727295279503, + 0.01773582212626934, + 0.030597103759646416, + 0.04802045598626137, + 0.07634277641773224, + -0.05294498801231384, + 0.039121296256780624, + 0.01150516141206026, + 0.029072249308228493, + -0.014398637227714062, + 0.016898401081562042, + 0.007818010635674, + 0.02674746885895729, + -0.0017873308388516307, + 0.030847080051898956, + -0.13338737189769745, + 0.04024619236588478, + -0.05067020654678345, + 0.007593031506985426, + 0.08124231547117233, + 0.07604280114173889, + 0.045195724815130234, + 0.03782141953706741, + 0.06294404715299606, + -0.06639371812343597, + 0.0010663053253665566, + -0.024197710677981377, + -0.02357276901602745, + 0.022422878071665764, + -0.01326124556362629, + -0.0788925364613533, + -0.03942126780748367, + 0.015598524361848831, + -0.04342089220881462, + 0.06609374284744263, + 0.026647478342056274, + -0.01804829202592373, + -0.0209480170160532, + -0.09484102576971054, + -0.014786100946366787, + -0.015261055901646614, + 0.00980532169342041, + -0.01932317204773426, + 0.012923777103424072, + -0.04614563286304474, + -0.044170819222927094, + -0.05829448252916336, + 0.016748415306210518, + 0.04342089220881462, + 0.03784641996026039, + 0.026422498747706413, + -0.02379774861037731, + -0.011773886159062386, + -0.03479670733213425, + -0.05744456499814987, + -0.0038777580484747887, + 0.05374491587281227, + -0.038321372121572495, + -0.04527071490883827, + 0.06399394571781158, + 0.028222329914569855, + 0.0007382113835774362, + -0.011192690581083298, + 0.030022159218788147, + 0.012623805552721024, + 0.12888780236244202, + -0.015586025081574917, + 0.02832232043147087, + -0.03872133418917656, + 0.012673800811171532, + -0.0069805895909667015, + 0.04399583488702774, + -0.11188941448926926, + 0.03372180834412575, + -0.06904346495866776, + 0.0152485566213727, + 0.009149134159088135, + 0.04799545928835869, + -0.025622574612498283, + -0.024797653779387474, + -0.012948774732649326, + -0.022397881373763084, + 0.018473252654075623, + 0.08234220743179321, + -0.07214317470788956, + 0.059244394302368164, + -0.01879822090268135, + 0.0677935853600502, + -0.01776081882417202, + 0.03414676710963249, + -0.012961273081600666, + -0.01126768346875906, + 0.008361708372831345, + 0.005921314470469952, + 0.020548054948449135, + 0.025822555646300316, + -0.012036360800266266, + 0.002721617463976145, + -0.03902130573987961, + 0.012555061839520931, + -0.007655525580048561, + 0.029822178184986115, + 0.02602253668010235, + 0.04204602167010307, + 0.028147336095571518, + 0.04184604063630104, + 0.03287189081311226, + -0.12328833341598511, + 0.014136162586510181, + -0.01586099900305271, + -0.031946975737810135, + 0.09634087979793549, + 0.004071489907801151, + 0.03184698522090912, + 0.027672382071614265, + 0.0046120635233819485, + 0.01205510925501585, + -0.014811098575592041, + 0.050720199942588806, + -0.020460564643144608, + 0.01229883637279272, + 0.05379490926861763, + 0.04007120802998543, + 0.04749550670385361, + -0.05304498225450516, + 0.04749550670385361, + -0.007480542175471783, + 0.016110975295305252, + -0.017298363149166107, + 0.011761386878788471, + 0.03894631564617157, + -0.03102206438779831, + -0.004821418784558773, + -0.02462266944348812, + 0.028997255489230156, + -0.002821607980877161, + 0.028772277757525444, + 0.025385098531842232, + 0.06544380635023117, + -0.025272607803344727, + -0.030047155916690826, + -0.035671625286340714, + 0.06034428998827934, + -0.00819922424852848, + 0.06334400922060013, + -0.017160875722765923, + -0.032471928745508194, + -0.017060885205864906, + 0.07374302297830582, + -0.007236815057694912, + -0.03967124596238136, + -0.03314686194062233, + -0.03797140717506409, + -0.05714459344744682, + 0.03529665991663933, + 0.0049807787872850895, + -0.022985324263572693, + 0.03279689699411392, + -0.0035059181973338127, + 0.027972353622317314, + 0.032971881330013275, + 0.019985608756542206, + -0.04052116721868515, + 0.07619278877973557, + 0.07274311780929565, + -0.03784641996026039, + -0.12548813223838806, + 0.08384206891059875, + -0.032246947288513184, + 0.03277190029621124, + -0.07809261232614517, + -0.054144877940416336, + 0.023535272106528282, + 0.028697283938527107, + -0.003784016938880086, + -0.011405170895159245, + -0.03182198852300644, + -0.0317469947040081, + -0.018910709768533707, + 0.04639561101794243, + -0.0011803570669144392, + 0.03674652427434921, + -0.03812139108777046, + -0.006115046329796314, + 0.005371366627514362, + -0.07349304854869843, + -0.039871226996183395, + -0.0304971132427454, + 0.01388618629425764, + -0.04894536733627319, + -0.0859418660402298, + 0.01311125885695219, + -0.08734173327684402, + 0.050720199942588806, + 0.03162200748920441, + -0.010511505417525768, + -0.009049143642187119, + 0.03467172011733055, + 0.1127893254160881, + -0.02089802175760269, + -0.016035983338952065, + 0.025260109454393387, + -0.00489953625947237, + -0.0365215428173542, + -0.013423729687929153, + 0.05279500409960747, + -0.048570405691862106, + -0.004518322646617889, + 0.01338623370975256, + 0.09414108842611313, + 0.030622102320194244, + -0.08149228990077972, + 0.03607158735394478, + -0.06119420751929283, + -0.06894347816705704, + -0.06569378077983856, + 0.02089802175760269, + 0.01311125885695219, + -0.021947922185063362, + 0.030697094276547432, + -0.01803579367697239, + 0.07689272612333298, + -0.006068175658583641, + 0.023097814992070198, + 0.0190981924533844, + -0.022060412913560867, + 0.012673800811171532, + 0.013211249373853207, + 0.007880504243075848, + -0.03692150488495827, + -0.010399015620350838, + -0.013623710721731186, + -0.030322130769491196, + 0.05079519376158714, + -0.04609563946723938, + 0.01806079037487507, + -0.017873309552669525, + -0.054444849491119385, + 0.04792046546936035, + -0.022860337048768997, + 0.029097246006131172, + 0.025922546163201332, + 0.14868593215942383, + 0.007905501872301102, + 0.019210681319236755, + 0.019998107105493546, + -0.009074141271412373, + 0.01669842004776001, + 0.005346368998289108, + -0.042770951986312866, + -0.10309024155139923, + 0.11358924955129623, + 0.0862918347120285, + -0.0058713192120194435, + -0.09619089961051941, + 0.07769265025854111, + -0.06554380059242249, + -0.03264690935611725, + 0.013823691755533218, + -0.01853574626147747, + 0.04884537681937218, + 0.037221476435661316, + 0.04087113216519356, + -0.03932127729058266, + 0.027897359803318977, + 0.09824070334434509, + -0.013286243192851543, + 0.07289310544729233, + 0.0911913737654686, + 0.052345044910907745, + -0.0545448400080204, + -0.0027309914585202932, + 0.0048339175991714, + 0.04342089220881462, + -0.010642742738127708, + -0.035646628588438034, + -0.016560932621359825, + -0.00380901456810534, + 0.0017998296534642577, + -0.048620399087667465, + 0.038796328008174896, + 0.009386612102389336, + 0.06444390118122101, + 0.020198088139295578, + 0.03249692544341087, + -0.011873876675963402, + 0.009280371479690075, + -0.03207196667790413, + 0.024460185319185257, + -0.030872078612446785, + 0.027897359803318977, + 0.05699460580945015, + -0.020523058250546455, + 0.009261623956263065, + 0.0012701923260465264, + 0.04739551618695259, + 0.005099517293274403, + 0.01619846746325493, + 0.00423084944486618, + 0.02459767274558544, + -0.058944422751665115, + 0.02438519336283207, + -0.03637155890464783, + -0.049970272928476334, + 0.014511127024888992, + 0.016535935923457146, + -0.003921504132449627, + 0.016273459419608116, + -0.0015178251778706908, + 0.07939248532056808, + -0.02754739299416542, + -0.040921129286289215, + 0.08634182810783386, + -0.13568715751171112, + 0.007668024394661188, + 0.0010155289201065898, + 0.006774358917027712, + 0.030097151175141335, + -0.010767730884253979, + -0.005255752708762884, + -0.03214695677161217, + 0.028547298163175583, + -0.03199697285890579, + 0.023985229432582855, + 0.009511600248515606, + -0.0193356703966856, + -0.007455544546246529, + 0.006265032105147839, + -0.013361236080527306, + 0.005415112711489201, + 0.03559663146734238, + -0.08589187264442444, + -0.021123001351952553, + -0.08714175224304199, + -0.04454578459262848, + -0.05149512737989426, + -0.0355716347694397, + -0.05809450149536133, + 0.035071682184934616, + -0.04724552854895592, + 0.01779831573367119, + 0.05829448252916336, + -0.03842136263847351, + 0.0057900771498680115, + -0.022885333746671677, + -0.0027278668712824583, + -0.0032278194557875395, + -0.008786668069660664, + -0.05714459344744682, + 0.02969718910753727, + -0.03289688751101494, + -0.00011971523053944111, + 0.04267096146941185, + -0.02674746885895729, + 0.021010512486100197, + 0.001098333508707583, + -0.007124325726181269, + -0.030647099018096924, + -0.029047250747680664, + -0.04584566131234169, + -0.01193637028336525, + -0.02013559453189373, + 0.004296468570828438, + 0.027222424745559692, + -0.001942003727890551, + 0.03839636594057083, + -0.031147053465247154, + 0.04484575614333153, + -0.023685257881879807, + -0.0006659526261501014, + -0.0010639617685228586, + 0.021635452285408974, + -0.06614374369382858, + 0.0023888363502919674, + -0.017035888507962227, + -0.006724363658577204, + 0.05027024447917938, + 0.003487169975414872, + -0.046770572662353516, + 0.022622859105467796, + -0.03229694440960884, + -0.023735253140330315, + 0.04104611650109291, + -0.004008995834738016, + -0.03229694440960884, + 0.047745481133461, + 0.03944626823067665, + 0.02487264573574066, + 0.006855601444840431, + 0.019298173487186432, + 0.07814260572195053, + -0.011830130591988564, + -0.04112111032009125, + 0.007980494759976864, + -0.05589471012353897, + -0.07599280774593353, + -0.02807234413921833, + 0.008855411782860756, + -0.02149796485900879, + 0.0033809300512075424, + 0.10978960990905762, + 0.003927753306925297, + 0.014786100946366787, + -0.004590190481394529, + 0.015985988080501556, + 0.011823881417512894, + -0.01323624700307846, + 0.0008350772550329566, + 0.01033652201294899, + 0.03892131522297859, + -0.054194871336221695, + -0.07129325717687607, + 0.06444390118122101, + 0.05914440378546715, + -0.0594443753361702, + 0.08894158154726028, + 0.048345424234867096, + 0.02492264099419117, + 0.020260583609342575, + 0.06224410980939865, + -0.018085788935422897, + -0.04629562050104141, + -0.05779452994465828, + -0.03637155890464783, + 0.0014717357698827982, + 0.004218350630253553, + 0.03967124596238136, + 0.08179225772619247, + -0.06789357215166092, + -0.013411231338977814, + 0.00584007240831852, + 0.022110408172011375, + -0.004015245009213686, + 0.058994416147470474, + 0.06179415434598923, + 0.12188846617937088, + -0.06799356639385223, + -0.027097435668110847, + 0.05984433740377426, + -0.08774169534444809 + ] + }, + { + "id": "6235292e-131a-4609-b104-cf78d29efbe7", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "jacquelinesmith", + "reviewDate": "2022-08-28T20:11:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f44ed3c3-15de-4764-86ca-74484b7e10dc", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "plarson", + "reviewDate": "2022-02-22T17:20:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "649c418a-4f72-48b3-9867-3f04ac3270e6", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "alvarezkayla", + "reviewDate": "2021-06-29T22:46:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "286ec366-8820-425c-90b8-0d3a5339c675", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "amorris", + "reviewDate": "2022-09-23T11:14:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "824dbddf-ee69-45d0-9c66-c7390e009ca4", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "codycunningham", + "reviewDate": "2021-06-27T22:57:50", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cc5269f6-c562-45dc-8e47-a3140f979326", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtneymay", + "reviewDate": "2022-02-03T02:33:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8b036959-0b3d-4aad-9f25-622e8022b017", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "annamarshall", + "reviewDate": "2021-11-01T22:49:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7793c2fc-e31d-4c33-ae9f-a5446834aeed", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifercopeland", + "reviewDate": "2022-09-16T08:18:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dd279d33-9d65-4af8-b9b9-d1a6ef6dcc2b", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "marie61", + "reviewDate": "2022-08-08T15:16:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "28cfe95a-0aed-48b6-8463-46a7c146cfad", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "nhuber", + "reviewDate": "2021-03-28T22:45:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5cbdeafb-c397-4be6-a505-7220730e88d0", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "alisonmoses", + "reviewDate": "2021-05-23T05:30:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "da07b594-c8fa-4b24-af6b-3fa77ba5a4e2", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebeccaharris", + "reviewDate": "2022-07-16T18:08:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f335407b-e55b-4cf5-99d6-f836959add57", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevin53", + "reviewDate": "2021-12-31T06:42:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4f9606e8-b94a-4e3e-bf39-5d0a974615d7", + "productId": "87b8ea95-99cd-4e21-ac09-e61aa1223e56", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelobrien", + "reviewDate": "2022-05-03T05:24:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Super (Gold)", + "description": "This Awesome Phone Super (Gold) is a brilliant phone that has everything you need to watch online. The screen and sound quality is superb and nothing you'll encounter is better without it! It will go up and down with your smartphone.", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-09-26T14:06:35", + "price": 342.74, + "stock": 29, + "priceHistory": [ + { + "priceDate": "2021-03-22T08:01:06", + "newPrice": 354.09 + }, + { + "priceDate": "2021-10-19T08:01:06", + "newPrice": 315.59 + }, + { + "priceDate": "2022-05-18T08:01:06", + "newPrice": 362.0 + }, + { + "priceDate": "2022-12-15T08:01:06", + "newPrice": 357.03 + }, + { + "priceDate": "2023-12-28T08:01:06", + "newPrice": 342.74 + } + ], + "descriptionVector": [ + 0.012037023901939392, + 0.0596388578414917, + -0.02601488120853901, + 0.020115261897444725, + -0.017634592950344086, + -0.03807118535041809, + -0.06611686944961548, + 0.0058899796567857265, + 0.049896128475666046, + 0.04655429720878601, + 0.04424072057008743, + -0.008290315046906471, + 0.056862566620111465, + 0.020796481519937515, + 0.055577244609594345, + 0.013354476541280746, + 0.046014461666345596, + -0.03706863522529602, + -0.0033257659524679184, + 0.0554744191467762, + 0.13943153619766235, + -0.05727386847138405, + -0.023045791313052177, + -0.08339157700538635, + -0.06313493102788925, + -0.024639587849378586, + -0.02694031223654747, + 0.03583472594618797, + 0.026156265288591385, + -0.040924593806266785, + 0.003208480542525649, + -0.009614194743335247, + -0.036528799682855606, + 0.010096190497279167, + -0.02469100058078766, + 0.06904739886522293, + 0.004437568131834269, + -0.04125877842307091, + 0.050770148634910583, + 0.006307709030807018, + 0.032570015639066696, + -0.030796272680163383, + 1.739700928737875e-05, + 0.021644791588187218, + 0.003862387267872691, + -0.035089243203401566, + -0.0011061787372455, + -0.004267263226211071, + 0.0027891448698937893, + -0.06498578935861588, + -0.012956027872860432, + -0.021387727931141853, + -0.05316084250807762, + -0.022351717576384544, + 0.023662744089961052, + -0.007538402918726206, + 0.008759456686675549, + 0.014228494837880135, + 0.014138522557914257, + 0.00890726875513792, + -0.029613777995109558, + -0.022236039862036705, + 0.015269603580236435, + -0.005706821568310261, + -0.05030743405222893, + -0.00286144413985312, + -0.05202976241707802, + -0.016593484207987785, + -0.05038455128669739, + 0.07547400146722794, + -0.027403026819229126, + 0.03159317001700401, + -0.011529321782290936, + 0.046091582626104355, + 0.023392828181385994, + 0.06400894373655319, + 0.013932870700955391, + -0.011535748839378357, + 0.0793299600481987, + -0.04830233380198479, + 0.06364905834197998, + -0.007307045161724091, + 0.015153924934566021, + -0.0058257137425243855, + 0.04552604258060455, + 0.019549719989299774, + 0.04064182564616203, + -0.14323608577251434, + -0.010173309594392776, + 0.0399477519094944, + -0.03372680023312569, + 0.029510952532291412, + 0.010102616623044014, + 0.007249205838888884, + 0.09064078330993652, + 0.026837484911084175, + -0.021799029782414436, + 0.056091371923685074, + -0.03025643713772297, + 0.032004471868276596, + 0.03987063094973564, + -0.09979225695133209, + -0.003900946816429496, + -0.03385533392429352, + -0.07007565349340439, + 0.04958765208721161, + 0.011548602022230625, + -0.05159275233745575, + 0.02766009047627449, + -0.17500919103622437, + 0.034240931272506714, + -0.05460040271282196, + 0.02294296585023403, + 0.07285194844007492, + 0.034600820392370224, + 0.03794265165925026, + -0.015912264585494995, + 0.001147148315794766, + 0.034240931272506714, + -0.03953645005822182, + -0.021760471165180206, + 0.06621969491243362, + -0.0745999813079834, + -0.0003970434481743723, + -0.006600119173526764, + -0.016503510996699333, + 0.013804338872432709, + 0.01580943912267685, + 0.031567465513944626, + -0.06159254536032677, + -0.07948420196771622, + 0.02945953980088234, + 0.00199706619605422, + 0.07531976699829102, + -0.025603577494621277, + 0.0630321055650711, + 0.01379148568958044, + 0.05210687965154648, + 0.04488338157534599, + 0.012898188084363937, + 0.03601467236876488, + 0.019074151292443275, + 0.051618460565805435, + -0.02377842366695404, + 0.045448921620845795, + 0.04755684733390808, + -0.0028116379398852587, + -0.01728755608201027, + -0.032801371067762375, + 0.04025622829794884, + 0.008611645549535751, + -0.1386089324951172, + -0.05861059948801994, + -0.10745276510715485, + 0.03190164640545845, + 0.07295477390289307, + -0.04987042397260666, + -0.05706821754574776, + -0.003945933189243078, + 0.07871300727128983, + -0.03285278379917145, + -0.018470050767064095, + 0.0055493698455393314, + -0.03089909814298153, + -0.022827286273241043, + -0.044806260615587234, + 0.0450633242726326, + 0.048096682876348495, + -0.04711983725428581, + 0.0590733177959919, + 0.02510230429470539, + -0.017351822927594185, + -0.04025622829794884, + -0.033161260187625885, + -0.010841676034033298, + 0.015192484483122826, + 0.07028131186962128, + -0.007319898344576359, + -0.029793722555041313, + -0.021606232970952988, + -0.02845698967576027, + -0.021233489736914635, + -0.06935587525367737, + -0.0369143970310688, + 0.03187594190239906, + 0.08118082582950592, + 0.05388062447309494, + 0.05897049233317375, + -0.03177311643958092, + -0.030410675331950188, + 0.02209465391933918, + -0.04948482662439346, + 0.03400957211852074, + -0.04388083145022392, + 0.030847685411572456, + -0.03375250846147537, + 0.03871384263038635, + 0.02305864356458187, + -0.025667844340205193, + 0.05835353583097458, + -0.018225841224193573, + 0.026156265288591385, + 0.12267095595598221, + -0.030590619891881943, + 0.00040989663102664053, + -0.006799343973398209, + 0.006188816856592894, + 0.03074485994875431, + 0.023328561335802078, + 0.039407916367053986, + 0.002061332343146205, + 0.02613055892288685, + -0.07449715584516525, + 0.03110474906861782, + 0.08107800036668777, + 0.003235793672502041, + -0.035886138677597046, + -0.03853389993309975, + -0.021927563473582268, + -0.05166987329721451, + -0.007724774535745382, + -0.029613777995109558, + 0.032955609261989594, + 0.03830254077911377, + -0.0660654604434967, + -0.034883588552474976, + 0.07814747095108032, + 0.030693447217345238, + 0.06184960901737213, + 0.003492857562378049, + -0.028405576944351196, + -0.02694031223654747, + -0.016323566436767578, + 0.015603787265717983, + -0.0810265839099884, + 0.007262059021741152, + 0.04238985851407051, + -0.0007788236835040152, + -0.09881541877985, + 0.004035905469208956, + 0.005597569514065981, + -0.028842585161328316, + -0.047608260065317154, + -0.06786490976810455, + 0.10837820172309875, + -0.04801956191658974, + 0.03017931804060936, + 0.03917656093835831, + -0.048456571996212006, + -0.0048295906744897366, + -0.020925013348460197, + -0.08909839391708374, + -0.061181239783763885, + 0.06195243448019028, + 0.043572355061769485, + -0.011079460382461548, + 0.03565478324890137, + -0.03773700073361397, + 0.0450633242726326, + -0.04550033435225487, + -0.019099857658147812, + -0.08771025389432907, + 0.01721043698489666, + 0.01885564811527729, + -0.03226153552532196, + 0.07557682693004608, + 0.08431700617074966, + -0.01861143670976162, + -0.0416443757712841, + 0.04341811686754227, + -0.013431595638394356, + 0.03694010153412819, + -0.01853431761264801, + 0.0008009151206351817, + -0.02974230982363224, + 0.012062730267643929, + -0.005048095248639584, + -0.0026734659913927317, + 0.020359471440315247, + 0.029639484360814095, + 0.09686172753572464, + 0.011818518862128258, + 0.08210625499486923, + -0.0063559082336723804, + 0.08092375844717026, + -0.05454898998141289, + -0.024909505620598793, + -0.02561643160879612, + -0.009736300446093082, + -0.01732611656188965, + -0.03205588459968567, + -0.011452202685177326, + 0.027197375893592834, + -0.03089909814298153, + 0.02129775658249855, + 0.03611749783158302, + -0.0021063184831291437, + 0.009697740897536278, + 0.037531349807977676, + 0.0003000419237650931, + 0.07208075374364853, + -0.01609220914542675, + -0.00491313636302948, + -0.07783899456262589, + -0.0013913591392338276, + 0.10082051903009415, + -0.004395795054733753, + 0.09521652013063431, + -0.032955609261989594, + -0.022158920764923096, + 0.1253444254398346, + -0.022865846753120422, + -0.06503719836473465, + 0.00743557745590806, + -0.027248788625001907, + 0.003438231535255909, + -0.04801956191658974, + 0.04758255556225777, + 0.019074151292443275, + -0.0008555412641726434, + 0.052209705114364624, + 0.008630924858152866, + -0.06976717710494995, + 0.025179423391819, + 0.0194983072578907, + 0.008875136263668537, + -0.03794265165925026, + -0.04503761976957321, + 0.025629283860325813, + 0.015423842705786228, + 0.006587265990674496, + 0.00385274738073349, + 0.03575760871171951, + -0.004331529140472412, + 0.06688806414604187, + -0.03745422884821892, + 0.04830233380198479, + 0.03478076308965683, + 0.053572144359350204, + 0.04341811686754227, + 0.07758192718029022, + -0.028611227869987488, + -0.018392931669950485, + -0.027685796841979027, + -0.011323670856654644, + -0.059947334229946136, + -0.06406036019325256, + -0.023264296352863312, + 0.09120631963014603, + -0.009729874320328236, + 0.0015455975662916899, + 0.003076735185459256, + -0.0027987847570329905, + 0.0630321055650711, + 0.041284482926130295, + 0.01889420673251152, + -0.004251196514815092, + -0.05066732317209244, + -0.025436487048864365, + 0.0029514164198189974, + -0.003306486178189516, + -0.0037467083893716335, + 0.05136139690876007, + 0.06328916549682617, + -0.023122910410165787, + 0.011561455205082893, + -0.018829941749572754, + 0.06673382222652435, + -0.04334099590778351, + -0.020115261897444725, + 0.06647676229476929, + -0.04547462984919548, + -0.07136097550392151, + 0.08015257120132446, + -0.035089243203401566, + 0.018984179943799973, + 0.051207154989242554, + -0.06339199095964432, + 0.0032759597525000572, + 0.0461944080889225, + -0.0346522331237793, + 0.0446777306497097, + 0.0103661073371768, + 0.002173797693103552, + 0.08591080456972122, + 0.010713144205510616, + 0.010501066222786903, + 0.002543327398598194, + -0.014832595363259315, + 0.039562154561281204, + -0.07902148365974426, + -0.028251338750123978, + -0.010199015960097313, + 0.0793299600481987, + 0.06591121852397919, + 0.018675701692700386, + -0.05107862502336502, + 0.037171460688114166, + 0.0259377621114254, + -0.0023055430501699448, + 0.07557682693004608, + 0.022544516250491142, + 0.062260910868644714, + 0.029870841652154922, + -0.012396913021802902, + -0.020462296903133392, + -0.007506269961595535, + -0.0007539206417277455, + -0.061541132628917694, + -0.043212465941905975, + 0.010783836245536804, + -0.027428733184933662, + -0.014485558494925499, + 0.027068844065070152, + 0.050975799560546875, + 0.07521694153547287, + 0.06678523868322372, + 0.01637497916817665, + 0.12112857401371002, + -0.04179861396551132, + -0.044806260615587234, + 0.05804505944252014, + 0.018521463498473167, + -0.016439246013760567, + -0.02156767249107361, + 0.02553931251168251, + 0.014768329448997974, + -0.013001013547182083, + -0.03879096359014511, + -0.04074465110898018, + 0.09470239281654358, + -0.05778799578547478, + 0.08061528205871582, + -0.002668646164238453, + -0.06483154743909836, + 0.021863296627998352, + -0.015500961802899837, + -0.01332877017557621, + -0.05706821754574776, + 0.040693238377571106, + -0.049099233001470566, + -0.01565520092844963, + -0.042724043130874634, + 0.04470343515276909, + -0.0851910263299942, + -0.018225841224193573, + -0.00445363437756896, + 0.020667949691414833, + -0.0025593938771635294, + -0.05208117514848709, + -0.04891928657889366, + -0.004640005994588137, + -0.009723447263240814, + -0.033675387501716614, + -0.08256896585226059, + 0.06920164078474045, + 0.041772905737161636, + 0.1215398758649826, + -0.0649343729019165, + 0.03033355623483658, + 0.0066900914534926414, + 0.022788727656006813, + 0.026002027094364166, + -0.021156370639801025, + -0.02781432867050171, + 0.006220949813723564, + -0.04711983725428581, + -0.02061653509736061, + 0.012904615141451359, + 0.013932870700955391, + 0.02673465944826603, + -0.02873975969851017, + -0.020603682845830917, + 0.024806680157780647, + -0.06488296389579773, + -0.07130956649780273, + 0.01945974864065647, + -0.0017014426412060857, + 0.04030764102935791, + -0.04470343515276909, + 0.04701701179146767, + 0.043289583176374435, + 0.02665754035115242, + 0.03478076308965683, + 0.06370046734809875, + -0.0779932290315628, + 0.0029706961940973997, + 0.0012507771607488394, + 0.0028084246441721916, + 0.011137299239635468, + -0.010983061045408249, + -0.022184627130627632, + -0.011439349502325058, + -0.013444448821246624, + -0.01857287622988224, + -0.0027441587299108505, + 0.010616744868457317, + -0.011863505467772484, + 0.016824841499328613, + 0.03850819170475006, + -0.04249268397688866, + 0.012056303210556507, + -0.057016804814338684, + 0.034806471318006516, + -0.037531349807977676, + 0.0075191231444478035, + -0.01120799221098423, + 0.01745464839041233, + -0.03902232274413109, + -0.012146275490522385, + -0.002546540694311261, + 0.02061653509736061 + ] + }, + { + "id": "44228887-ff47-4413-ba63-5bb8df7647e6", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "ppacheco", + "reviewDate": "2021-06-30T21:57:55", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4b03d722-3141-4a51-89f6-724d301ebd1c", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "stevenmelendez", + "reviewDate": "2022-11-11T06:43:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e39a2b0e-ef19-491f-988f-bb74e4287c0e", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "barrettsara", + "reviewDate": "2021-10-11T20:07:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f1194a50-e822-4937-8ffb-e86a58b90fa9", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertwilson", + "reviewDate": "2021-03-22T08:01:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fe2b0451-588a-4b96-b5cf-05e02d1bbc35", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "sibarra", + "reviewDate": "2022-10-01T19:36:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4f1bb350-4f4d-41cb-9d18-c52ed6465b00", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "bryaneverett", + "reviewDate": "2022-04-17T21:10:33", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7120af01-c15d-431e-93e7-cceda43a99df", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "bridgesnicole", + "reviewDate": "2021-11-29T17:49:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "758a1e5b-734e-49d0-88df-e773df981251", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "veronicawilson", + "reviewDate": "2021-09-17T19:34:34", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0021ab23-5c6b-494e-9d0d-79747bbfa51d", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "juliebrewer", + "reviewDate": "2022-05-31T20:36:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e92e984a-b76c-4b35-ac0f-94caee428d68", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "joshua62", + "reviewDate": "2022-04-15T11:07:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9541e05c-328e-4908-b252-190ab4bcf3a7", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "ikim", + "reviewDate": "2022-08-07T10:21:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e87b4487-0974-431c-b178-0486663afc0c", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberly44", + "reviewDate": "2022-08-15T11:59:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6cab1f50-f341-4119-9df4-35fc653ebc59", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamesrachel", + "reviewDate": "2022-09-18T22:42:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e9dcae85-31f3-49de-bbea-b4d3759b996c", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "gutierrezshelly", + "reviewDate": "2022-01-06T19:00:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4b3b5b90-ac83-4e07-81a8-773c9614baa7", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "collinfrancis", + "reviewDate": "2022-12-16T20:54:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5b996755-9a16-49d9-92bd-ed29c088cf7f", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "nguyenjulia", + "reviewDate": "2022-04-30T11:23:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "20f19573-d333-4483-b499-400d92e63261", + "productId": "ee5f75fa-477e-4be7-92a6-29e5d013444b", + "category": "Electronics", + "docType": "customerRating", + "userName": "patriciareynolds", + "reviewDate": "2022-02-08T14:49:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Mini (Black)", + "description": "This Awesome Mouse Mini (Black) is the latest addition in the latest generation of Apple Watch accessories from Apple! An incredible 8-bit mechanical keyboard with a touch sensor to adjust the time and focus on this smart mouse. With built-in Bluetooth to", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-11-16T21:47:49", + "price": 868.61, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2021-01-31T08:28:19", + "newPrice": 894.37 + }, + { + "priceDate": "2021-07-23T08:28:19", + "newPrice": 910.43 + }, + { + "priceDate": "2022-01-12T08:28:19", + "newPrice": 912.62 + }, + { + "priceDate": "2022-07-04T08:28:19", + "newPrice": 917.42 + }, + { + "priceDate": "2022-12-24T08:28:19", + "newPrice": 811.64 + }, + { + "priceDate": "2025-01-29T08:28:19", + "newPrice": 868.61 + } + ], + "descriptionVector": [ + -0.07624286413192749, + 0.012772171758115292, + -0.018234483897686005, + 0.000565165770240128, + 0.017741041257977486, + -0.057010017335414886, + 0.007154941093176603, + 0.02050662226974964, + 0.04709523171186447, + 0.018704978749155998, + 0.04755425080657005, + -0.019255800172686577, + 0.05737723410129547, + -0.007763139437884092, + 0.04105914756655693, + -0.01558365672826767, + -0.028527960181236267, + -0.021768921986222267, + -0.03362305834889412, + -0.0009330972679890692, + 0.010396754369139671, + -0.08941668272018433, + -0.06871497631072998, + 0.03490830957889557, + 0.00823937077075243, + 0.005338951479643583, + -0.017729565501213074, + 0.04764605313539505, + -0.014126274734735489, + 0.03743290528655052, + -0.022262366488575935, + 0.013426272198557854, + -0.05430181324481964, + 0.01977219432592392, + -0.048518188297748566, + 0.005886903963983059, + -0.006747562438249588, + 0.029055830091238022, + 0.06811825186014175, + -0.009484456852078438, + -0.010792657732963562, + -0.020873837172985077, + 0.000819777196738869, + 0.025773853063583374, + 0.039131272584199905, + 0.038855861872434616, + -0.029078781604766846, + -0.045718178153038025, + -0.012175449170172215, + 0.04195423424243927, + 0.025291884317994118, + 0.03635421395301819, + -0.08441338688135147, + 0.024006634950637817, + 0.0075910077430307865, + -0.004286079201847315, + -0.011458232998847961, + 0.07192809879779816, + 0.008291009813547134, + -0.0668330043554306, + -0.028068942949175835, + -0.046062443405389786, + 0.015170540660619736, + 0.002419884782284498, + -0.02419024147093296, + -0.07826254516839981, + -0.04764605313539505, + 0.012393482029438019, + 0.0289410762488842, + 0.03557388484477997, + -0.05792805552482605, + -0.006931169889867306, + -0.008939373306930065, + 0.024947620928287506, + 0.016019724309444427, + -0.010259049013257027, + 0.04335423558950424, + 0.06871497631072998, + 0.021596791222691536, + 0.019014814868569374, + 0.03123616613447666, + -0.0221820380538702, + -0.03419683128595352, + 0.0012787950690835714, + 0.07211170345544815, + 0.05333787575364113, + -0.01972629316151142, + -0.10447246581315994, + -0.05177721381187439, + 0.039521437138319016, + -0.0450296513736248, + 0.033760763704776764, + 0.02926238812506199, + -0.0015922181773930788, + -0.008623798377811909, + 0.0023998026736080647, + 0.017855795100331306, + 0.040462423115968704, + 0.003497142344713211, + -0.07413138449192047, + 0.07027563452720642, + 0.027839433401823044, + -0.04424932226538658, + -0.02859681285917759, + -0.03646896779537201, + 0.05228213593363762, + -0.01568693481385708, + 0.0206099022179842, + -0.05494443699717522, + -0.16781693696975708, + 0.020598426461219788, + 0.005063540767878294, + -0.026554184034466743, + 0.06499692797660828, + -0.06697070598602295, + 0.038511600345373154, + -0.10263639688491821, + 0.023616468533873558, + -0.08381666243076324, + 0.04300997406244278, + 0.020529573783278465, + 0.03252141550183296, + 0.027357464656233788, + 0.08721339702606201, + 0.013300042599439621, + -0.01591644436120987, + -0.008354125544428825, + -0.025567295029759407, + -0.005852477625012398, + -0.0848264992237091, + -0.0680723488330841, + 0.07982320338487625, + 0.008451666682958603, + 0.015342672355473042, + -0.01910661906003952, + 0.04183947667479515, + 0.009960687719285488, + -0.014229553751647472, + -0.014585292898118496, + 0.0075164176523685455, + 0.005470918957144022, + -0.027609923854470253, + 0.0007254633819684386, + -0.006495102774351835, + -0.081108458340168, + -0.019072191789746284, + -0.029193535447120667, + 0.070826455950737, + -0.05645919591188431, + 0.033324696123600006, + 0.031488627195358276, + -0.10529869794845581, + 0.008176255971193314, + -0.08914127200841904, + 0.041357509791851044, + 0.07624286413192749, + -0.053383778780698776, + -0.06779693812131882, + -0.02949189767241478, + 0.04167882353067398, + 0.03672143071889877, + -0.006695922929793596, + 0.012944303452968597, + -0.02161974087357521, + -0.035160768777132034, + -0.03451814502477646, + -0.010769706219434738, + 0.039796847850084305, + -0.007246744353324175, + 0.03123616613447666, + 0.044272273778915405, + 0.010006589815020561, + 0.030134523287415504, + -0.05866248160600662, + 0.011590201407670975, + 0.03233780711889267, + 0.018957437947392464, + 0.01653611846268177, + 0.019232848659157753, + -0.022204989567399025, + 0.02172302082180977, + 0.10006589442491531, + -0.06201331317424774, + 0.05861658230423927, + 0.06582316011190414, + -0.06541004776954651, + -0.011922989040613174, + 0.03330174461007118, + -0.02747221849858761, + -0.04461653530597687, + 0.011630364693701267, + -0.06784284114837646, + -0.007045924197882414, + -0.046934574842453, + 0.036675527691841125, + 0.0952003076672554, + 0.00694264518097043, + -0.00710903899744153, + 0.007545106112957001, + 0.021585315465927124, + -0.044547684490680695, + 0.06361987441778183, + 0.07555434107780457, + -0.03307223692536354, + 0.004621736239641905, + -0.02855091169476509, + 0.019806621596217155, + -0.025383688509464264, + 0.07018382847309113, + -0.07128547132015228, + 0.034334536641836166, + 0.017282022163271904, + 0.007005759980529547, + 0.011945939622819424, + 0.1030954122543335, + 0.03288862854242325, + 0.057836249470710754, + -0.007378712296485901, + -0.02071318030357361, + -0.05843297392129898, + 0.05182311683893204, + 0.02781648188829422, + 0.047508347779512405, + -0.020655803382396698, + -0.08046583086252213, + -0.012577089481055737, + 0.016513166949152946, + 0.03357715532183647, + 0.07004612684249878, + 0.03144272416830063, + -0.11493807286024094, + -0.03688208386301994, + -0.011773807927966118, + 0.0393148809671402, + -0.05824936553835869, + 0.01721316948533058, + -0.0424591526389122, + -0.02217056229710579, + 0.022308267652988434, + 0.06049855425953865, + -0.03676733002066612, + -0.01960006356239319, + -0.09212488681077957, + -0.026829594746232033, + 0.061646100133657455, + -0.0030983705073595047, + -0.0005870407912880182, + 0.03908536955714226, + -0.08193469047546387, + 0.06954120844602585, + -0.02843615598976612, + 0.04372145235538483, + -0.033324696123600006, + 0.08037402480840683, + -0.04998704418540001, + 0.012783647514879704, + 0.0430329255759716, + -0.00790658313781023, + 0.031098460778594017, + -0.010895936749875546, + -0.03938373178243637, + -0.016042673960328102, + -0.04126570746302605, + 0.08400026708841324, + 0.042987022548913956, + 0.014344308525323868, + 0.04362964630126953, + -0.0760592594742775, + -0.010666427202522755, + 0.04294111952185631, + 0.010563148185610771, + -0.015101687982678413, + 0.05609198287129402, + 0.0360788032412529, + -0.03786897286772728, + -0.011808234266936779, + -0.08478059619665146, + 0.04833457991480827, + -0.005485263653099537, + 0.02117219939827919, + 0.05710182338953018, + 0.0890035629272461, + 0.08184288442134857, + -0.013678732328116894, + 0.02887222357094288, + 0.002074186922982335, + -0.026623036712408066, + 0.01169921737164259, + -0.0017987762112170458, + -0.038672253489494324, + -0.026554184034466743, + 0.006598381791263819, + 0.03011157177388668, + 0.020460721105337143, + 0.0010557411005720496, + -0.02290499210357666, + 0.04943622276186943, + 0.039911601692438126, + -0.057331331074237823, + -0.01359840389341116, + 0.07789532840251923, + -0.035390276461839676, + -0.0515018031001091, + -0.045557521283626556, + 0.027127955108880997, + 0.09276750683784485, + -0.009800031781196594, + 0.02999681793153286, + -0.0015291032614186406, + 0.002320909174159169, + 0.05999363586306572, + -0.018945962190628052, + -0.06660348922014236, + 0.00427460391074419, + 0.0772068053483963, + -0.04397391155362129, + 0.010172983631491661, + -0.036675527691841125, + 0.022319743409752846, + -0.03610175475478172, + -0.08840683847665787, + 0.013426272198557854, + -0.1056659147143364, + 0.10162655264139175, + 0.014045946300029755, + -0.006018871907144785, + -0.04564932733774185, + -0.04948212578892708, + 0.004461079835891724, + -0.06430840492248535, + -0.05723952874541283, + -0.07055104523897171, + 0.0007595311035402119, + 0.011877086944878101, + -0.0004819687455892563, + -0.05430181324481964, + -0.014482013881206512, + 0.0952003076672554, + 0.0631149560213089, + 0.032200101763010025, + 0.006397561635822058, + -0.0069828093983232975, + 0.0566428042948246, + -0.015744313597679138, + -0.04183947667479515, + -0.08170518279075623, + -0.027219759300351143, + 0.0035172244533896446, + 0.03302633389830589, + 0.01927874982357025, + 0.0011296143056824803, + -0.12751516699790955, + 0.033990271389484406, + -0.03575749322772026, + 0.02340991050004959, + -0.028390254825353622, + -0.02501647360622883, + -0.03291158005595207, + 0.025108277797698975, + 0.06504283100366592, + -0.03736405447125435, + -0.0392230749130249, + 0.04317063093185425, + 0.05384279415011406, + -0.043101776391267776, + -0.014711522497236729, + -0.049573928117752075, + -0.020931214094161987, + -0.09180357307195663, + 0.015124638564884663, + 0.014000045135617256, + -0.0605444572865963, + -0.08978389203548431, + 0.07550843805074692, + -0.03043288365006447, + -0.022491876035928726, + 0.02809189260005951, + -0.03307223692536354, + -0.0103049511089921, + 0.046452607959508896, + 0.012014792300760746, + -0.006862317211925983, + -0.04101324453949928, + 0.01927874982357025, + 0.0208967886865139, + -0.04975753650069237, + -0.0527411513030529, + -0.06862317025661469, + 0.010081179440021515, + 0.022813187912106514, + -0.044203419238328934, + -0.06765923649072647, + -0.047232937067747116, + 0.006535266991704702, + 0.08859045058488846, + -0.08142977207899094, + 0.05425591021776199, + 0.08927897363901138, + -0.02268695831298828, + -0.016673823818564415, + 0.02988206222653389, + 0.0618756078183651, + 0.015285294502973557, + 0.023868929594755173, + -0.06476742029190063, + -0.03630831465125084, + -0.048288680613040924, + 0.018062353134155273, + -0.013655781745910645, + -0.06628218293190002, + -0.002160252770408988, + -0.013621355406939983, + -0.0006099917227402329, + -0.027632875367999077, + 0.04103619605302811, + 0.008101665414869785, + -0.014126274734735489, + -0.0017901696264743805, + 0.029698455706238747, + -0.04126570746302605, + 0.027036152780056, + 0.02407548762857914, + 0.001235762145370245, + -0.014711522497236729, + -0.05182311683893204, + 0.02267548255622387, + -0.04948212578892708, + 0.0228476133197546, + -0.03263616934418678, + -0.05613788589835167, + 0.03137386962771416, + -0.04537391662597656, + -0.07013793289661407, + -0.001760046579875052, + 0.015767263248562813, + -0.02738041616976261, + 0.03651487082242966, + 0.00930084940046072, + 0.05177721381187439, + 0.03004271909594536, + 0.02235417068004608, + -0.027449268847703934, + -0.06109527871012688, + 0.054439518600702286, + -0.08950848132371902, + 0.058341171592473984, + -0.036055851727724075, + -0.009237734600901604, + 0.06274773925542831, + -0.014734473079442978, + -0.07298383861780167, + -0.03171813488006592, + 0.05095098167657852, + 0.009432816877961159, + 0.017190219834446907, + -0.032314859330654144, + 0.08078714460134506, + 0.07059694826602936, + -0.036170609295368195, + 0.03112141042947769, + 0.04406571388244629, + 0.06049855425953865, + 0.024832867085933685, + 0.0009151668637059629, + -0.0016094313468784094, + -0.1444070190191269, + 0.024396799504756927, + 0.03362305834889412, + -0.07963959872722626, + 0.03548208251595497, + 0.022262366488575935, + -0.005155344493687153, + -0.027036152780056, + 0.01977219432592392, + 0.018613174557685852, + -0.042321447283029556, + 0.008704125881195068, + 0.046268999576568604, + 0.03364600986242294, + 0.05347558110952377, + -0.003703700378537178, + -0.0038586189039051533, + -0.049573928117752075, + 0.017970548942685127, + -0.016341036185622215, + -0.05668870732188225, + -0.007866418920457363, + 0.016065625473856926, + 0.0490231066942215, + 0.043790303170681, + 0.0041426364332437515, + 0.05590837448835373, + -0.034105028957128525, + -0.006684447638690472, + -0.027357464656233788, + 0.037226349115371704, + 0.025544343516230583, + 0.047232937067747116, + -0.04587883502244949, + 0.04698047786951065, + -0.026554184034466743, + -0.01988694816827774, + -0.0353214256465435, + 0.04082963988184929, + 0.03956734016537666, + 0.027242710813879967, + -0.040026359260082245, + 0.021264001727104187, + 0.029009928926825523, + -0.021367281675338745, + -0.024029584601521492, + -0.017362350597977638 + ] + }, + { + "id": "273b3ef3-f3f4-4dae-ab53-2dc4873b999f", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brian87", + "reviewDate": "2021-01-31T08:28:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b972cb59-146b-48a9-936f-f5e0faf91b07", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "barnesamanda", + "reviewDate": "2022-03-21T10:52:39", + "stars": 5, + "verifiedUser": true + }, + { + "id": "580dca3b-8bf8-4d0b-8136-1677bf4aabe5", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "briancooke", + "reviewDate": "2022-11-03T13:20:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3da6a29b-035a-4e92-9496-ef973b1e6427", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erinnelson", + "reviewDate": "2022-10-17T10:07:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b12e9867-5ee7-415e-8657-7a1cb789bbc8", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brownjoseph", + "reviewDate": "2021-09-17T12:07:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "cec99d39-96df-47d4-81ac-709cea05a7d8", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christina95", + "reviewDate": "2021-10-21T12:32:22", + "stars": 5, + "verifiedUser": false + }, + { + "id": "31a465bf-899f-4974-a5d4-871ab54ce0bc", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithheather", + "reviewDate": "2022-05-23T16:27:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b556cdca-f752-42ef-ac3c-74c0fd0a4672", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacqueline94", + "reviewDate": "2022-06-06T01:50:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3bfc86d0-325d-4131-9c1d-5427727ea944", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chendricks", + "reviewDate": "2021-11-19T07:44:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7bb567f3-897d-43b2-996a-f190f6708cb4", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rossjulie", + "reviewDate": "2021-06-18T15:05:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ff6183f7-70f8-4a1e-a2c1-942a3e67faf7", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gordonanthony", + "reviewDate": "2021-08-28T02:10:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ece58cd5-48ff-4721-939f-6b94c42b2cb3", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "owashington", + "reviewDate": "2022-12-25T03:33:15", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4d46eb8f-dff3-4bd8-80f3-41a89e01f2a3", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "randyvargas", + "reviewDate": "2022-04-28T16:32:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "28e462bd-00d4-47fe-9c95-ed48bfe71970", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "briandavis", + "reviewDate": "2021-05-12T04:18:25", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2825f3ae-86a1-4465-b560-ebbe4e331b95", + "productId": "2b7b6c9a-6711-4c4d-8e86-dd077a7c65d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brent68", + "reviewDate": "2022-09-08T12:21:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "321d2097-d64d-4391-ba70-d2664a0cddde", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "product", + "name": "Luxe TV Mini (Steel)", + "description": "This Luxe TV Mini (Steel) is set to be released in 2018. It combines a solid design, premium leather interior and sleek, sleek styling with a stylish new look.\n\nAll Luxe TV Mini's are available in a variety of sizes, colors, and", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-04-12T20:28:58", + "price": 795.64, + "stock": 12, + "priceHistory": [ + { + "priceDate": "2021-01-01T11:11:11", + "newPrice": 861.63 + }, + { + "priceDate": "2021-06-22T11:11:11", + "newPrice": 821.61 + }, + { + "priceDate": "2021-12-11T11:11:11", + "newPrice": 851.69 + }, + { + "priceDate": "2022-06-01T11:11:11", + "newPrice": 739.27 + }, + { + "priceDate": "2022-11-20T11:11:11", + "newPrice": 770.21 + }, + { + "priceDate": "2024-03-18T11:11:11", + "newPrice": 795.64 + } + ], + "descriptionVector": [ + -0.041661228984594345, + 0.07196030765771866, + -0.04966207966208458, + -0.01313749048858881, + -0.019564207643270493, + -0.022345568984746933, + -0.013906802982091904, + 0.03018072061240673, + 0.011752727441489697, + 0.009693337604403496, + 0.083417147397995, + -0.01262856088578701, + 0.03380240872502327, + 0.02004946768283844, + 0.0732385516166687, + -0.021079162135720253, + -0.013989651575684547, + -0.01814393885433674, + 0.0022620747331529856, + -0.09951353073120117, + 0.043389223515987396, + -0.10178595781326294, + -0.054917074739933014, + 0.009202160872519016, + -0.019220976158976555, + -0.02809765934944153, + -0.0007693124935030937, + 0.02838171273469925, + 0.025967255234718323, + -0.026156624779105186, + 0.06452756375074387, + 0.01920914091169834, + -0.06249184533953667, + 0.048762574791908264, + -0.018865909427404404, + -0.00933826994150877, + 0.06930913776159286, + 0.10424776375293732, + 0.04627710580825806, + 0.05463302135467529, + 0.03721105307340622, + 0.004272643011063337, + -0.0547277070581913, + 0.010362047702074051, + 0.01269957423210144, + -0.03460722789168358, + -0.06400679796934128, + 0.010752621106803417, + 0.022913677617907524, + -0.04016994684934616, + -0.06921445578336716, + 0.006752196699380875, + -0.03408646211028099, + 0.037258394062519073, + -0.037826504558324814, + -0.08905088156461716, + -0.039980579167604446, + 0.16948546469211578, + 0.010373882949352264, + -0.009941884316504002, + -0.01938667520880699, + -0.07451678812503815, + 0.012936285696923733, + 0.01016676053404808, + -0.02743486687541008, + -0.042679090052843094, + -0.015587454661726952, + -0.013563571497797966, + -0.001773857045918703, + 0.07868291437625885, + 0.0005588611238636076, + 0.014806306920945644, + 0.06798355281352997, + 0.0365719310939312, + 0.06348603218793869, + -0.0055538443848490715, + -0.0321454256772995, + 0.002759168855845928, + 0.017291776835918427, + -0.01772969402372837, + 0.06339135020971298, + 0.010083911009132862, + -0.0013137490022927523, + -0.0073439753614366055, + 0.010474485345184803, + 0.03018072061240673, + 0.03886803612112999, + -0.07948773354291916, + -0.012261657975614071, + 0.055911265313625336, + -0.004663217347115278, + 0.07721530646085739, + 0.04379163309931755, + -0.008237561210989952, + 0.03683231398463249, + 0.025659531354904175, + 0.01972990669310093, + 0.05307072773575783, + -0.034536212682724, + -0.04443075507879257, + 0.022381076589226723, + 0.019291989505290985, + 0.03555407375097275, + -0.023020196706056595, + -0.0004427245585247874, + 0.01403699442744255, + 0.03500963747501373, + 0.04185060039162636, + 0.011894755065441132, + -0.18993733823299408, + 0.08493209630250931, + -0.012841600924730301, + -0.053970228880643845, + -0.003953082486987114, + -0.05477504804730415, + 0.055343158543109894, + -0.031885042786598206, + -0.04026463255286217, + -0.002217691158875823, + 0.016664491966366768, + 0.04315251484513283, + -0.008752409368753433, + -0.053828202188014984, + -0.028547411784529686, + -0.08194953203201294, + 0.03867866471409798, + -0.012202479876577854, + 0.0029219079297035933, + 0.02051105536520481, + -0.03515166416764259, + -0.04805244132876396, + 0.0622551329433918, + -0.012368177995085716, + 0.04999347776174545, + -0.013587241992354393, + 0.050419557839632034, + 0.011214208789169788, + -0.008823422715067863, + 0.025233449414372444, + 0.042016297578811646, + 0.0006062034517526627, + -0.021682776510715485, + -0.01892508752644062, + -0.00919624324887991, + -0.02800297550857067, + -0.022712472826242447, + -0.015090360306203365, + -0.0016584602417424321, + -0.054680366069078445, + 0.060124728828668594, + 0.05567455291748047, + -0.0801505297422409, + -0.0256358589977026, + -0.007592522539198399, + 0.06211310625076294, + 0.08119205385446548, + -0.06959319114685059, + 0.03669028729200363, + -0.005417735315859318, + 0.02244025282561779, + 0.06471693515777588, + -0.042821116745471954, + -0.033115945756435394, + -0.03070148639380932, + -0.038702335208654404, + -0.00564557034522295, + 0.03235846757888794, + 0.03938879817724228, + -0.09326434880495071, + -0.008273067884147167, + 0.02845272608101368, + -0.007734549231827259, + -0.013752940110862255, + -0.027269169688224792, + 0.011320728808641434, + -0.010711196810007095, + 0.08460070192813873, + -0.0034796595573425293, + -0.008864847011864185, + -0.01680651865899563, + -0.013101983815431595, + 0.07773607224225998, + -0.044762153178453445, + -0.04523557424545288, + 0.03171934559941292, + 0.04189794138073921, + 0.03647724911570549, + 0.0321454256772995, + -0.015279729850590229, + -0.005219489336013794, + -0.021292202174663544, + 0.051934510469436646, + -0.0030802087858319283, + -0.03126959502696991, + 0.011018921621143818, + -0.0534021221101284, + 0.09402181953191757, + -0.012391848489642143, + -0.0719129666686058, + 0.0678415298461914, + 0.006769950035959482, + -0.020522890612483025, + 0.05117703601717949, + -0.025304462760686874, + 0.012356341816484928, + -0.038039542734622955, + -0.017244435846805573, + 0.04620609059929848, + 0.060030046850442886, + 0.026085611432790756, + -0.07068206369876862, + -0.01067569013684988, + 0.017646845430135727, + 0.08029255270957947, + 0.03200339898467064, + 0.030275406315922737, + 0.03126959502696991, + -0.02750588022172451, + 0.00977618619799614, + -0.048312824219465256, + 0.015208716504275799, + -0.03373139351606369, + 0.011758645996451378, + -0.05122437700629234, + -0.03247682377696037, + -0.027600565925240517, + 0.06599517911672592, + 0.06902508437633514, + 0.04372062161564827, + -0.01849900744855404, + -0.041377175599336624, + -0.07186562567949295, + -0.03704535588622093, + 0.015220551751554012, + 0.038465626537799835, + -0.02156442031264305, + 0.00946254376322031, + -0.04424138739705086, + -0.029115518555045128, + 0.010977497324347496, + -0.030654143542051315, + -0.04601672291755676, + -0.003219276899471879, + -0.020144151523709297, + 0.04009893536567688, + 0.018380651250481606, + 0.09638893604278564, + 0.050987664610147476, + -0.01295995619148016, + 0.07319121062755585, + -0.03366038203239441, + -0.03396810591220856, + -0.07196030765771866, + 0.05240793526172638, + -0.06855165958404541, + 0.004722394980490208, + 0.040643371641635895, + 0.02845272608101368, + 0.10235407203435898, + -0.025162436068058014, + -0.048525866121053696, + -0.08644705265760422, + -0.010983414947986603, + 0.024333946406841278, + -0.01491282694041729, + 0.046868883073329926, + 0.023162223398685455, + -0.09515804052352905, + 0.025422818958759308, + -0.0007437920430675149, + -0.0325004942715168, + -0.024357616901397705, + 0.0547277070581913, + 0.041874270886182785, + -0.08905088156461716, + -0.026464350521564484, + -0.06580580770969391, + 0.017315449193120003, + -0.07210233062505722, + -0.07267044484615326, + 0.07560566812753677, + -0.01997845433652401, + 0.01994294673204422, + -0.08862479776144028, + 0.06736810505390167, + -0.04909397289156914, + -0.010421225801110268, + -0.011314811185002327, + -0.011344400234520435, + -0.040430329740047455, + -0.028784122318029404, + 0.035932812839746475, + 0.05520113185048103, + -0.014581430703401566, + 0.020724095404148102, + 0.00037448504008352757, + 0.03479659557342529, + -0.015433591790497303, + 0.0019513907609507442, + -0.032311126589775085, + -0.06230247765779495, + 0.030275406315922737, + -0.003603933146223426, + -0.035861797630786896, + -0.027103470638394356, + 0.07016129791736603, + 0.01772969402372837, + 0.07674188166856766, + 0.00017013642354868352, + -0.02655903436243534, + 0.0029248669743537903, + -0.024854712188243866, + -0.10566803067922592, + -0.005278667435050011, + 0.006207759957760572, + 0.02750588022172451, + -0.005905952770262957, + 0.009166654199361801, + -0.002600867999717593, + 0.045566972345113754, + 0.008048192597925663, + 0.049330685287714005, + -0.13473621010780334, + 0.029115518555045128, + 0.0028257439844310284, + -0.03780283406376839, + -0.014463074505329132, + -0.07584237307310104, + 0.008699148893356323, + -0.012001275084912777, + -0.07418539375066757, + 0.055343158543109894, + 0.008219808340072632, + 0.019256483763456345, + 0.0035270019434392452, + 0.03751877695322037, + 0.017895393073558807, + -0.027908289805054665, + 0.05477504804730415, + -0.0332106277346611, + 0.08710984885692596, + 0.028713108971714973, + -0.03226378187537193, + -0.012711409479379654, + -0.028216015547513962, + -0.05842040851712227, + -0.022949183359742165, + 0.02823968604207039, + 0.08763060718774796, + 0.051934510469436646, + 0.0012427355395630002, + -0.045851025730371475, + 0.0711081475019455, + 0.012474698014557362, + 0.05250261723995209, + 0.051366403698921204, + 0.043981004506349564, + -0.047531675547361374, + -0.0044442592188715935, + 0.0534021221101284, + 0.019931111484766006, + -0.02778993360698223, + 0.03735307976603508, + 0.07579503208398819, + -0.014889155514538288, + 0.009243585169315338, + -0.022783486172556877, + 0.02845272608101368, + -0.12479431927204132, + 0.06840963661670685, + 0.06244450435042381, + 0.0003508139052428305, + -0.06537972390651703, + 0.0780201256275177, + 0.07787809520959854, + 0.02381318062543869, + 0.06964053213596344, + 0.0039974660612642765, + -0.003805137937888503, + 0.05434896796941757, + -0.03706902638077736, + 0.008036356419324875, + -0.016380438581109047, + 0.01794273406267166, + -0.010006980039179325, + 0.012806094251573086, + -0.07371196895837784, + -0.046584829688072205, + -0.07688390463590622, + -0.014463074505329132, + 0.006107157561928034, + -0.06017207354307175, + 0.034417856484651566, + 0.05415960028767586, + 0.054112255573272705, + -0.016771012917160988, + 0.010764457285404205, + 0.03706902638077736, + 0.026322321966290474, + -0.023836851119995117, + 0.01607271283864975, + 0.054254285991191864, + 0.022854499518871307, + -0.012735080905258656, + -0.07148688286542892, + 0.013019134290516376, + -0.03157731890678406, + 0.030535787343978882, + 0.004278561100363731, + -0.05297604203224182, + -0.02317405864596367, + -0.05638468638062477, + -0.019505031406879425, + 0.007805563043802977, + 0.013291352428495884, + -0.057142164558172226, + 0.026985114440321922, + 0.0031453045085072517, + 0.01628575287759304, + -0.028429055586457253, + 0.05633734539151192, + 0.028689438477158546, + -0.09283826500177383, + -0.06954585015773773, + 0.020345356315374374, + -0.02307937480509281, + -0.03098553977906704, + -0.005127763841301203, + 0.006550991907715797, + -0.048762574791908264, + 0.0615449994802475, + -0.11684081703424454, + -0.02497306652367115, + -0.06315463781356812, + 0.049188658595085144, + -0.0009276133496314287, + -0.02303203195333481, + 0.009208078496158123, + -0.02423926070332527, + 0.01422636304050684, + -0.030654143542051315, + 0.0225822813808918, + 0.0023493620101362467, + 0.07290714979171753, + -0.07328589260578156, + 0.005385187454521656, + -0.013835789635777473, + 0.014048829674720764, + 0.0077700563706457615, + -0.01698405295610428, + -0.055485185235738754, + 0.013847624883055687, + -0.009089723229408264, + -0.026464350521564484, + -0.009788022376596928, + -0.054822392761707306, + 0.03936512768268585, + 0.05060892552137375, + 0.005104092415422201, + 0.01223798654973507, + 0.0499461330473423, + 0.06414882838726044, + 0.02201417274773121, + 0.021446065977215767, + -0.10358496755361557, + -0.042300350964069366, + -0.06263387203216553, + 0.048099786043167114, + 0.002685196464881301, + 0.05183982476592064, + 0.01378844678401947, + -0.021860310807824135, + -0.05557986721396446, + -0.00514551717787981, + 0.012865272350609303, + -0.05079829692840576, + 0.010066158138215542, + -0.07210233062505722, + -0.0016288713086396456, + -0.008651806972920895, + 0.054680366069078445, + 0.04369695112109184, + 0.043105170130729675, + 0.07096611708402634, + 0.06973522156476974, + -0.014486745931208134, + 0.01415534969419241, + 0.018735717982053757, + 0.03330531343817711, + 0.015362578444182873, + -0.037092696875333786, + -0.01867653988301754, + -0.06523770093917847, + -0.08322777599096298, + -0.02384868822991848, + 0.02409723401069641, + 0.031222252175211906, + -0.01853451319038868, + -0.012900779023766518, + 0.02215619944036007, + 0.01393047347664833, + 0.05013550445437431, + -0.07636313885450363, + 0.02226272039115429, + 0.021824803203344345, + 0.014273705892264843, + -0.00791208352893591, + 0.0020564314909279346, + 0.037234723567962646, + 0.023730332031846046, + 0.012545711360871792, + 0.03467823937535286 + ] + }, + { + "id": "5c98a7cf-47d8-4e0b-ba8d-694af6266e37", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "williamsedward", + "reviewDate": "2021-09-18T03:08:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cec6a334-6562-4efa-a80b-24d4691508b1", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "yhorn", + "reviewDate": "2022-02-09T16:48:38", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fd1f4106-5c46-4e85-aba5-1e4883dcea94", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "ramoskenneth", + "reviewDate": "2022-11-23T07:02:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e26f5071-71a0-49f8-961a-ad0360abd3df", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "millerthomas", + "reviewDate": "2022-05-26T16:55:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1eb1de97-bdf6-469a-9134-ee83c48515a2", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "gonzalezjeremy", + "reviewDate": "2021-05-24T21:49:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5203d33c-7b87-457d-a703-e319e487f148", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "kelly57", + "reviewDate": "2021-01-31T19:38:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3b97e668-192b-467f-9eda-3df9fe9f3756", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "stephanie85", + "reviewDate": "2021-01-01T11:11:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8a2a3bac-4950-4446-a979-25694bff63bb", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "brodriguez", + "reviewDate": "2021-01-15T12:16:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1af30437-7ee2-43f0-bc3a-1a4771f380a7", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "angelicakennedy", + "reviewDate": "2021-06-08T17:31:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "322e9ead-328e-48cc-977b-bf1cc2199b49", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "markcarson", + "reviewDate": "2022-07-16T18:22:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e20400ab-8d96-495e-ac25-caac9f8f87ff", + "productId": "321d2097-d64d-4391-ba70-d2664a0cddde", + "category": "Media", + "docType": "customerRating", + "userName": "patrick54", + "reviewDate": "2022-05-21T13:39:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand 3000 (Gold)", + "description": "This Awesome Stand 3000 (Gold) is here... but instead that great-looking, beautiful bronze bronze plaque. The plaque of the 1000th time, as it became known, is a silver coin, and it has not been made into a plaque. And I've always been fascinated by the concept of bronze and how it affects our collective minds... like a magnet. It doesn't really change anything... except that it's beautiful. But it also isn't really... just a plaque. It never looks", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-05-28T01:55:31", + "price": 514.53, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-02-12T04:45:07", + "newPrice": 482.22 + }, + { + "priceDate": "2021-09-14T04:45:07", + "newPrice": 516.44 + }, + { + "priceDate": "2022-04-16T04:45:07", + "newPrice": 504.2 + }, + { + "priceDate": "2022-11-16T04:45:07", + "newPrice": 522.29 + }, + { + "priceDate": "2024-11-10T04:45:07", + "newPrice": 514.53 + } + ], + "descriptionVector": [ + 0.04839419573545456, + -0.04502188041806221, + -0.04453188553452492, + -0.005353914108127356, + 0.001613199943676591, + -0.0978260338306427, + -0.05755998194217682, + 0.0030138285364955664, + 0.06139347329735756, + -0.001862701028585434, + -0.054620012640953064, + 0.03179201856255531, + 0.037441372871398926, + -0.045425403863191605, + 0.0916578620672226, + 0.0260129626840353, + -0.009569311514496803, + -0.010152981616556644, + -0.025148265063762665, + 0.009151373989880085, + 0.012026491574943066, + -0.08324147760868073, + -0.019758321344852448, + -0.021848006173968315, + -0.04911477863788605, + -0.06012525036931038, + 0.02023390494287014, + -0.02019066922366619, + -0.02099771983921528, + 0.03453022614121437, + 0.04637657105922699, + 0.010945620015263557, + -0.011543702334165573, + -0.029212340712547302, + -0.020406844094395638, + -0.024672681465744972, + 0.05098828673362732, + 0.08889082819223404, + 0.05562882870435715, + -0.036201972514390945, + 0.01039077341556549, + -0.03646138310432434, + -0.000396544550312683, + 0.021920064464211464, + 0.022626232355833054, + -0.006128538399934769, + -0.03715313971042633, + -0.021314775571227074, + 0.030840853229165077, + -0.020363610237836838, + 0.036864906549453735, + -0.04718362167477608, + 0.005116122774779797, + 0.04366718977689743, + 0.02143006958067417, + -0.07597802579402924, + 0.007184189278632402, + -0.03216671943664551, + 0.044041890650987625, + -0.01534836832433939, + -0.035567861050367355, + 0.015204251743853092, + -0.05825174227356911, + 0.0323973074555397, + -0.05046946927905083, + -0.0522853322327137, + 0.007566096726804972, + 0.06127817928791046, + 0.023245932534337044, + 0.0020320373587310314, + -0.036259617656469345, + 0.0033110680524259806, + 0.0015321345999836922, + 0.08710379153490067, + 0.061796996742486954, + 0.02151653915643692, + 0.07372981309890747, + -0.009237844496965408, + 0.01691923476755619, + -0.010268274694681168, + 0.04776008799672127, + 0.0845097005367279, + 0.00045126365148462355, + -0.048077140003442764, + 0.0778227150440216, + -0.022611821070313454, + -0.00538994325324893, + -0.08964023739099503, + -0.04447423666715622, + -0.0009043287136591971, + -0.06266169250011444, + -0.0034083465579897165, + -0.03438610956072807, + -0.04813478887081146, + -0.014008088037371635, + 0.014469259418547153, + -0.02346210554242134, + 0.06911809742450714, + -0.062315814197063446, + -0.04695303738117218, + 0.021761536598205566, + -0.053265321999788284, + -0.06127817928791046, + 0.003037247573956847, + -0.03516433760523796, + 0.0389113575220108, + 0.030350858345627785, + 0.018562158569693565, + -0.03069673664867878, + -0.065428726375103, + 0.06652400642633438, + 0.019340384751558304, + -0.0008219123119488358, + -0.022352412343025208, + 0.001335776410996914, + 0.10382126271724701, + 0.0912543386220932, + -0.00367856421507895, + 0.009374754503369331, + 0.0018059553112834692, + -0.05286179855465889, + -0.005627735052257776, + 0.028275584802031517, + 0.04029487073421478, + 0.01114017702639103, + 0.0070833079516887665, + -0.0781685933470726, + 0.015867186710238457, + 0.019830379635095596, + -0.0162851233035326, + -0.07027102261781693, + 0.014116175472736359, + -0.0004087043344043195, + 0.007259850390255451, + 0.008884759619832039, + 0.0845097005367279, + -0.05366884917020798, + 0.0228135846555233, + -0.048077140003442764, + 0.031042614951729774, + -0.05346708372235298, + -0.03894018009305, + 0.029082635417580605, + -0.03718196228146553, + -0.05297708883881569, + -0.024456508457660675, + -0.12197989225387573, + -0.014483671635389328, + 0.008567703887820244, + 0.05046946927905083, + 0.03873841464519501, + -0.05300591513514519, + -0.023375635966658592, + -0.047298915684223175, + -0.045310113579034805, + 0.02424033358693123, + -0.12762925028800964, + 0.03061026707291603, + 0.001940163434483111, + 0.06842634081840515, + -0.03499139845371246, + -0.0847402885556221, + -0.06577460467815399, + 0.0038911355659365654, + -0.015910420566797256, + -0.04110192134976387, + 0.09897895902395248, + 0.01624188758432865, + -0.08589321374893188, + 0.05026770755648613, + 0.026373252272605896, + -0.032916124910116196, + 0.025220323354005814, + -0.03216671943664551, + -0.015146605670452118, + 0.031590256839990616, + 0.04657833278179169, + -0.04876890033483505, + 0.015535718761384487, + -0.047327738255262375, + -0.029024988412857056, + -0.02550855465233326, + 0.011925609782338142, + -0.03378082066774368, + -0.025061795487999916, + 0.091023750603199, + -0.0028534994926303625, + 0.014728669077157974, + -0.0326855406165123, + 0.02801617607474327, + 0.014008088037371635, + -0.0456271693110466, + 0.144000843167305, + -0.005851115100085735, + 0.024960914626717567, + 0.004053266253322363, + -0.00524582713842392, + -0.013265890069305897, + -0.06346874684095383, + 0.06963691860437393, + -0.028318820521235466, + 0.028520582243800163, + 0.02418268658220768, + -0.027612650766968727, + -0.009799896739423275, + -0.06277699023485184, + -0.055167656391859055, + 0.009929601103067398, + 0.0328296534717083, + 0.07257688790559769, + -0.038104306906461716, + 0.016659824177622795, + -0.09477076679468155, + -0.020493313670158386, + 0.029745569452643394, + 0.05747351422905922, + -0.004525246564298868, + 0.07315334677696228, + 0.07269217818975449, + -0.04378248006105423, + 0.06900280714035034, + -0.025695906952023506, + -0.06064406782388687, + 0.009533282369375229, + 0.05398590490221977, + 0.014231467619538307, + 0.007508450653403997, + 0.049345362931489944, + 0.027727944776415825, + -0.039286058396101, + -0.06975220888853073, + -0.0454830527305603, + -0.052573565393686295, + 0.04778891056776047, + -0.021113013848662376, + 0.04899948462843895, + -0.04441659152507782, + -0.04908595606684685, + 0.03723960742354393, + -0.022986523807048798, + -0.021689478307962418, + 0.11194941401481628, + -0.0524870939552784, + -0.03009144775569439, + -0.004964800551533699, + -0.018691862002015114, + 0.01341000571846962, + -0.09315666556358337, + -0.0026571413036435843, + -0.045367758721113205, + 0.060413483530282974, + 0.014123381115496159, + -0.03718196228146553, + 0.07632390409708023, + 0.08018621802330017, + 0.061796996742486954, + 0.05090181902050972, + -0.01402970589697361, + 0.03663432225584984, + 0.03337729722261429, + -0.03836371377110481, + 0.005051270592957735, + -0.0032552231568843126, + 0.010851944796741009, + -0.07004044204950333, + 0.05378413945436478, + -0.00010769303480628878, + -0.06346874684095383, + 0.00019951077410951257, + 0.030235564336180687, + -0.017438052222132683, + -0.10566595196723938, + 0.04381130263209343, + -0.05364002287387848, + -0.020738311111927032, + 0.022467704489827156, + 3.7577156035695225e-05, + 0.01749569922685623, + -0.04107309877872467, + -0.02481679804623127, + 0.07286511361598969, + -0.03790254145860672, + 0.055801767855882645, + 0.023980924859642982, + 0.018605392426252365, + 0.042081911116838455, + 0.0454830527305603, + -0.03850783035159111, + -0.05943349376320839, + -0.0779956504702568, + -0.0293708685785532, + 0.014591758139431477, + 0.01497366651892662, + 0.06208522990345955, + 0.015463661402463913, + -0.02683442458510399, + 0.018129808828234673, + 0.03012027218937874, + 0.010952825658023357, + -0.06779222935438156, + 0.04888419061899185, + -0.0524870939552784, + -0.04917242377996445, + -0.04646304249763489, + -0.006712208967655897, + 0.023202696815133095, + -0.024312391877174377, + 0.01565101183950901, + -0.040871333330869675, + -0.008459617383778095, + 0.0586840882897377, + -0.015550130978226662, + -0.014642199501395226, + -0.04176485538482666, + -0.018446864560246468, + -0.08347206562757492, + 0.01689041033387184, + 0.002740008058026433, + 0.036144327372312546, + -0.005595308728516102, + 0.02609943225979805, + -0.019888026639819145, + -0.013172214850783348, + -0.017135407775640488, + 0.001735698664560914, + -0.029832039028406143, + 0.004406350664794445, + -0.058367032557725906, + -0.01537719089537859, + -0.021343600004911423, + 0.04510834813117981, + -0.014296320267021656, + -0.005933981854468584, + 0.022712701931595802, + -0.056407053023576736, + -0.05441825091838837, + 0.02487444505095482, + 0.01893685944378376, + 0.018663039430975914, + 0.03009144775569439, + 0.01012415811419487, + -0.004640539642423391, + -0.05560000240802765, + 0.0013952243607491255, + 0.05340943858027458, + -0.06819575279951096, + -0.01207693200558424, + -0.1112000048160553, + 0.06923338770866394, + 0.02220829576253891, + 0.0019545750692486763, + 0.018576569855213165, + 0.027252361178398132, + -0.006351918447762728, + 0.11627289652824402, + 0.05793468654155731, + 0.013885589316487312, + -0.07453685998916626, + -0.005631337873637676, + -0.044791292399168015, + -0.0163139458745718, + -0.017956869676709175, + 0.04750067740678787, + 0.04090015962719917, + 0.04490658640861511, + -0.016832765191793442, + -0.025753552094101906, + 0.06715811789035797, + -0.006279860623180866, + 0.01273266039788723, + -0.043494246900081635, + 0.006305080838501453, + -0.031100261956453323, + -0.020522138103842735, + 0.02230917662382126, + 0.01141399797052145, + 0.0009916991693899035, + 0.02863587625324726, + 0.004781052470207214, + 0.04035251587629318, + -0.03894018009305, + 0.012840747833251953, + 0.06888750940561295, + 0.05110358074307442, + 0.025205912068486214, + 0.0008340721251443028, + -0.006881545297801495, + 0.009886366315186024, + -0.006885148119181395, + 0.002395930700004101, + -0.026286782696843147, + -0.05026770755648613, + -0.018706273287534714, + 0.03986252099275589, + 0.012927217409014702, + -0.0459442213177681, + 0.01433955505490303, + -0.009223432280123234, + 0.032887302339076996, + 0.04773126170039177, + 0.003320075338706374, + 0.019916849210858345, + -0.028938518837094307, + 0.09471312165260315, + 0.0196430291980505, + 0.006996838375926018, + -0.04043898731470108, + 0.049979474395513535, + -0.049950651824474335, + -0.03674961254000664, + -0.04392659664154053, + -0.04395541921257973, + 0.05093064159154892, + 0.05816527083516121, + -0.0015051128575578332, + 0.02341887168586254, + 0.05926055461168289, + 0.029255574569106102, + 0.06825339794158936, + -0.09298373013734818, + 0.003995619714260101, + 0.06588989496231079, + -0.0455406978726387, + 0.05802115425467491, + 0.011990462429821491, + -0.009655781090259552, + -0.01434676069766283, + -0.017293935641646385, + 0.03856547549366951, + -0.056522347033023834, + -0.009237844496965408, + -0.06588989496231079, + 0.054620012640953064, + 0.10808710008859634, + 0.008913583122193813, + 0.04986418038606644, + 0.029860863462090492, + -0.03138849511742592, + -0.01377029623836279, + 0.0261859018355608, + 0.06352639198303223, + -0.07338393479585648, + 0.05594588443636894, + 0.0392284095287323, + -0.007007646840065718, + -0.010246656835079193, + -0.03147496283054352, + -0.06635107100009918, + -0.046001870185136795, + -0.0006764450808987021, + -0.09701897948980331, + -0.03657667338848114, + -0.0715968981385231, + 0.05499471724033356, + 0.03176319599151611, + -0.016501296311616898, + -0.014916019514203072, + 0.004910757299512625, + -0.028246762230992317, + 0.04000663757324219, + -0.0069824266247451305, + 0.029745569452643394, + 0.02346210554242134, + -0.05343826115131378, + 0.04689538851380348, + 0.09062022715806961, + 0.00918740313500166, + -0.016270712018013, + 0.013438829220831394, + 0.08410617709159851, + -0.04974889010190964, + 0.03767195716500282, + -0.15760540962219238, + -0.0035164335276931524, + -0.04185132309794426, + -0.09344489872455597, + 0.04029487073421478, + -0.018504511564970016, + 0.04329248517751694, + -0.007616537623107433, + -0.01171664148569107, + 0.049258895218372345, + -0.07344157993793488, + -0.059029966592788696, + 0.027828825637698174, + -0.005058476235717535, + -0.03127320110797882, + -0.06606283783912659, + -0.07004044204950333, + 0.11483173072338104, + -0.019830379635095596, + 0.015867186710238457, + 0.04453188553452492, + 0.0081569729372859, + 0.00027246956597082317, + 0.02017625793814659, + 0.019066564738750458, + -0.014000882394611835, + 0.008726231753826141, + 0.05021005868911743, + -0.009064904414117336, + -0.025825610384345055, + -0.06006760522723198, + -0.028592640534043312, + 0.04179367795586586, + -0.011363556608557701, + 0.024975325912237167, + 0.03133084625005722, + -0.016803940758109093, + -0.02807382307946682, + -0.005887143779546022, + 0.0081641785800457 + ] + }, + { + "id": "6b2e1294-658f-44a5-8a42-9ced7ee41388", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "jake65", + "reviewDate": "2021-06-08T23:38:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e29db4e5-7cd1-488f-b216-bfe1af85177f", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "taylorgreen", + "reviewDate": "2021-02-12T04:45:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "86d71262-229d-46f7-9f5f-5892d1ad3897", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "audreyduke", + "reviewDate": "2021-08-30T07:16:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d4b1f411-5fda-4ce8-a17c-a1dfdaffc3fa", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "pvega", + "reviewDate": "2021-03-21T13:58:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2429cc77-0246-44f2-b909-dfcda989397b", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "usmith", + "reviewDate": "2021-07-25T04:01:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9c686d7d-87e7-477d-b86f-420111858beb", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "xweaver", + "reviewDate": "2021-04-18T01:23:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "61fdc7c9-dd4b-4756-a5fd-2e0ba9e335b8", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "bdominguez", + "reviewDate": "2021-02-12T05:16:10", + "stars": 5, + "verifiedUser": true + }, + { + "id": "dfcacdea-fa95-46aa-8b75-54114eaa7d24", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "rachaelmata", + "reviewDate": "2022-11-18T19:34:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c201e9c-b36e-466e-ae0f-41f8b8aa51cd", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "castilloamber", + "reviewDate": "2021-03-27T20:32:55", + "stars": 5, + "verifiedUser": false + }, + { + "id": "16a6648d-a76a-426e-aec1-e959d32e368a", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "trevorcollins", + "reviewDate": "2021-07-07T23:47:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "24023253-1bb7-49f5-b204-01b093ec6fdc", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "lewiskenneth", + "reviewDate": "2021-04-08T18:44:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "401f6457-5766-40aa-836c-80dc1f5a3e45", + "productId": "820de901-72c6-4c4a-88d1-dbd72c45bcc4", + "category": "Accessory", + "docType": "customerRating", + "userName": "sarahparks", + "reviewDate": "2021-04-22T17:56:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "21379c04-775f-486c-b779-f954a27312a1", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Micro (Gold)", + "description": "This Awesome Stand Micro (Gold) is no match for the more classic and well-known Micro (Silver).\n\nThe most sought after micro is also the one I call the Master Micro, however, I consider it more suitable for smaller decks with a few cards that are less complex than one micro is expected to require.\n\nIt is, essentially, a \"one-of-a kind\" type of plastic stand", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2018-10-04T20:16:43", + "price": 597.13, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-03-09T23:38:51", + "newPrice": 604.29 + }, + { + "priceDate": "2022-04-02T23:38:51", + "newPrice": 597.13 + } + ], + "descriptionVector": [ + 0.037075936794281006, + 0.028004474937915802, + -0.06613387167453766, + 0.01073212269693613, + -0.010081025771796703, + -0.013753504492342472, + -0.03643215447664261, + -0.01798197440803051, + 0.024419784545898438, + 0.06859194487333298, + -0.03672478348016739, + 0.05957901105284691, + 0.03660773113369942, + -0.07678551971912384, + 0.03271578252315521, + -0.016050631180405617, + -0.006701175589114428, + 0.016679782420396805, + -0.05785250663757324, + 0.033447351306676865, + 0.09650862962007523, + -0.09920080751180649, + -0.02652670443058014, + 0.006503651849925518, + -0.015889687463641167, + -0.0344715490937233, + -0.0300236064940691, + -0.019708478823304176, + -0.09925933182239532, + 0.05890596657991409, + 0.03947548195719719, + 0.009905449114739895, + 0.019313430413603783, + 0.014272917993366718, + 0.016533467918634415, + -0.007937527261674404, + 0.012436679564416409, + 0.01454359944909811, + 0.01156611181795597, + -0.01754303276538849, + 0.03731003776192665, + 0.05779397860169411, + 0.022034868597984314, + -0.022576231509447098, + 0.019752372056245804, + 0.0331839881837368, + -0.07327398657798767, + -0.0061268932186067104, + -0.046235185116529465, + -0.057969555258750916, + 0.02256159856915474, + 0.03912432864308357, + 0.017147986218333244, + 0.030725913122296333, + 0.012626887299120426, + -0.060573942959308624, + -0.020293734967708588, + 0.03157453238964081, + 0.05375571548938751, + -0.05595042556524277, + 0.02957003377377987, + -0.01158074289560318, + -0.03134043142199516, + 0.02468314953148365, + 0.011332009918987751, + -0.027302168309688568, + 0.01647494174540043, + 0.034354496747255325, + 0.06110067293047905, + 0.0019971844740211964, + -0.0372222475707531, + 0.03517385572195053, + -0.07028918713331223, + 0.03508606553077698, + -0.0049417512491345406, + -0.009985921904444695, + 0.09492844343185425, + 0.02298590913414955, + 0.05302414670586586, + -0.02117161825299263, + 0.025180617347359657, + 0.027507008984684944, + -0.0025604928378015757, + -0.030286971479654312, + 0.006320759188383818, + -0.017308931797742844, + 0.047434959560632706, + -0.06736290454864502, + -0.05700388550758362, + 0.0031164854299277067, + -0.01905006542801857, + 0.03973884880542755, + 0.049600403755903244, + 0.039826635271310806, + 0.004221155308187008, + -0.03376924246549606, + 0.011595374904572964, + 0.08778832107782364, + 0.00422481307759881, + -0.04816652834415436, + 0.017879555001854897, + -0.024434417486190796, + 0.018523335456848145, + 0.04766906052827835, + -0.02270791307091713, + 0.035407956689596176, + -4.203666321700439e-05, + 0.06648502498865128, + 0.021361825987696648, + -0.05545295774936676, + 0.09135838598012924, + 0.029906556010246277, + 0.04178724065423012, + 0.0064999936148524284, + 0.04085083305835724, + 0.004612545017153025, + -0.07239610701799393, + 0.008178945630788803, + -0.03505680337548256, + -0.1124861091375351, + -0.03303767368197441, + 0.034530073404312134, + -0.0063829426653683186, + 0.006609729025512934, + -0.02788742445409298, + -0.020322997123003006, + -0.06824079155921936, + 0.06484630703926086, + 0.025312300771474838, + 0.03125264495611191, + -0.029511507600545883, + 0.006082999520003796, + 0.07579058408737183, + -0.021303299814462662, + -0.06642650067806244, + 0.08316480368375778, + 0.052468154579401016, + 0.02681933343410492, + -0.013219458051025867, + 0.06935277581214905, + -0.02545861341059208, + -0.0016405442729592323, + -0.002238602377474308, + -0.0030104080215096474, + -0.024171052500605583, + -0.0005230720853433013, + -0.08339890837669373, + 0.0848035216331482, + -0.0042796810157597065, + -0.028896989300847054, + 0.031398955732584, + -0.08714454621076584, + -0.009525032714009285, + -0.07941917330026627, + 0.016826095059514046, + 0.03701740875840187, + -0.040002211928367615, + -0.05296562239527702, + -0.04126051068305969, + 0.056272316724061966, + 0.022122656926512718, + 0.019884055480360985, + -0.059344906359910965, + -0.016065264120697975, + -0.02559029683470726, + 0.016723675653338432, + 0.06584124267101288, + 0.03567132353782654, + -0.07280578464269638, + 0.031925685703754425, + 0.07198642939329147, + 0.012385468930006027, + 0.01049802079796791, + -0.016987040638923645, + 0.032393891364336014, + -0.00773268798366189, + 0.030579598620533943, + -0.11558795720338821, + -0.021098461002111435, + -0.04374784976243973, + -0.005486770067363977, + 0.04649854823946953, + -0.031164854764938354, + -0.056301578879356384, + -0.0038956068456172943, + 0.011909949593245983, + 0.03292062133550644, + 0.09036345034837723, + -0.01906469836831093, + 0.06414400041103363, + -0.008771516382694244, + -0.03016992099583149, + 0.03950474411249161, + -0.051561009138822556, + 0.061802979558706284, + -0.00761563703417778, + -0.029335930943489075, + -0.004927119705826044, + -0.02923351153731346, + 0.05238036811351776, + -0.03397408127784729, + 0.0014713689452037215, + 0.07268873602151871, + 0.0328620970249176, + 0.05928638204932213, + -0.023424850776791573, + 0.003665162483230233, + 0.09557222574949265, + 0.02345411479473114, + 0.04646928608417511, + -0.03564206138253212, + -0.006529256701469421, + -0.07268873602151871, + 0.01583116129040718, + 0.03107706643640995, + 0.014689913019537926, + 0.016079895198345184, + -0.01689925231039524, + -0.025561032816767693, + -0.001261957106180489, + 0.03733929991722107, + -0.07391776889562607, + -0.0034493496641516685, + -0.02604386955499649, + -0.07854128628969193, + 0.0219324491918087, + -0.04009000211954117, + 0.04875178262591362, + 0.029906556010246277, + 0.0022020237520337105, + -0.03473491221666336, + -0.009195826947689056, + 0.020674150437116623, + 0.06074951961636543, + -0.051268380135297775, + 0.024873359128832817, + -0.06080804765224457, + -0.057208724319934845, + 0.057208724319934845, + -0.007520533166825771, + 0.01706019788980484, + 0.0143241286277771, + -0.06502188742160797, + 0.017030935734510422, + 0.08597403019666672, + -0.016635887324810028, + 0.0369003601372242, + -0.10177592933177948, + -0.04526951164007187, + -0.021976344287395477, + -0.0615103505551815, + -0.0060903150588274, + -0.0039065806195139885, + 0.06970392912626266, + -0.03719298541545868, + 0.06601682305335999, + 0.09188511222600937, + -0.03581763803958893, + -0.015787266194820404, + -0.07924359291791916, + -0.023102961480617523, + -0.02937982603907585, + -0.011997737921774387, + 0.06525598466396332, + -0.08410121500492096, + 0.03874391317367554, + 0.05723798647522926, + -0.04269438982009888, + -0.03134043142199516, + 0.09007082134485245, + -0.01948900707066059, + -0.10364874452352524, + 0.01210015732795, + 0.0015683018136769533, + -0.03075517527759075, + -0.020630255341529846, + -0.007820476777851582, + 0.12255249917507172, + 0.03944621980190277, + -0.010468757711350918, + 0.09843997657299042, + 0.03476417809724808, + 0.06683617830276489, + 0.026921752840280533, + 0.05290709808468819, + -0.01324872113764286, + 0.05791103094816208, + -0.039095066487789154, + -0.06402695178985596, + -0.04368932172656059, + -0.02270791307091713, + -0.051882900297641754, + 0.03060886263847351, + 0.01799660734832287, + 0.03169158473610878, + -0.05290709808468819, + 0.024112526327371597, + 0.05106354132294655, + 0.04617665708065033, + -0.008222839795053005, + 0.0020008422434329987, + 0.009356772527098656, + -0.017747873440384865, + -0.03818792104721069, + -0.01340966671705246, + 0.04193355515599251, + -0.039680320769548416, + -0.019840160384774208, + -0.08006294816732407, + -0.0143241286277771, + 0.041055671870708466, + 0.027814267203211784, + -0.035261642187833786, + 0.014660649932920933, + 0.055072542279958725, + -0.04679117724299431, + 0.01735282503068447, + 0.025078197941184044, + 0.014850858598947525, + 0.046381499618291855, + 0.04298701509833336, + -0.02240065485239029, + 0.009956658817827702, + 0.012165999040007591, + 0.05548221990466118, + -0.0006588696851395071, + 0.02835562825202942, + -0.03218905255198479, + -0.09100723266601562, + -0.003789529437199235, + -0.05472138896584511, + -0.05516032874584198, + -0.0048685939982533455, + 0.0027250959537923336, + 0.009268984198570251, + -0.027609428390860558, + 0.012319628149271011, + -0.03584690019488335, + 0.03672478348016739, + -0.03014065884053707, + -0.02453683689236641, + 0.08345743268728256, + 0.018216077238321304, + 0.044889096170663834, + 0.04679117724299431, + -0.04895662143826485, + -0.03280356898903847, + -0.07356661558151245, + 0.035876162350177765, + 0.0070523289032280445, + 0.0020227893255650997, + -0.025663454085588455, + 0.010373653843998909, + -0.042284708470106125, + 0.10511188954114914, + 0.06660207360982895, + 0.09405055642127991, + -0.05884743854403496, + 0.08732011914253235, + -0.06888457387685776, + -0.008573993109166622, + -0.021537402644753456, + 0.062388233840465546, + 0.03824644535779953, + 0.041231248527765274, + 0.018786700442433357, + 0.024331998080015182, + 0.04064599424600601, + -0.06508041173219681, + 0.0493662990629673, + -0.052936360239982605, + -0.04190429300069809, + -0.031135592609643936, + -0.00036875667865388095, + -0.018406284973025322, + -0.011851423420011997, + 0.06923572719097137, + 0.04951261356472969, + -0.00719864247366786, + 0.03564206138253212, + -0.056886833161115646, + 0.08199429512023926, + 0.0663679763674736, + 0.034793440252542496, + 0.057501353323459625, + -0.021888555958867073, + -0.03584690019488335, + 0.020059632137417793, + 0.008244786411523819, + -0.025092829018831253, + -0.07631731778383255, + -0.04723011702299118, + -0.007601005956530571, + 0.029321299865841866, + -0.0257366094738245, + -0.0835159569978714, + -0.00861057173460722, + 0.006229313090443611, + 0.011383219622075558, + 0.0008842844981700182, + 0.04664486274123192, + 0.10417547821998596, + 0.021669084206223488, + 0.04664486274123192, + 0.02073267661035061, + -0.001518920878879726, + 0.03532017022371292, + 0.057647667825222015, + -0.007952159270644188, + -0.05375571548938751, + 0.007169379852712154, + -0.04755200818181038, + -0.042109131813049316, + -0.009356772527098656, + 0.022459179162979126, + 0.04231397062540054, + 0.013351140543818474, + 0.029584664851427078, + 0.052643731236457825, + -0.09861554950475693, + 0.00020186742767691612, + 0.02084972709417343, + 0.018186815083026886, + 0.024449048563838005, + -0.04088009521365166, + 0.025780504569411278, + -0.06285644322633743, + 0.019254906103014946, + 0.00654754601418972, + -0.06390990316867828, + -0.014572861604392529, + -0.02952614054083824, + -0.033739980310201645, + 0.03303767368197441, + -0.040616732090711594, + -0.06660207360982895, + -0.029218880459666252, + 0.07339103519916534, + 0.009393350221216679, + -0.005892791319638491, + 0.07321546226739883, + 0.023951580747961998, + 0.07859981060028076, + 0.03300841152667999, + -0.07900948822498322, + -0.014792332425713539, + -0.06145182624459267, + 0.001139419269748032, + 0.04254807531833649, + -0.035729847848415375, + 0.01188068650662899, + -0.04939556494355202, + -0.06016426533460617, + 0.010037131607532501, + 0.05820365995168686, + 0.026468180119991302, + 0.0752638578414917, + 0.04535730183124542, + 0.014148551970720291, + 0.03400334343314171, + -0.026277972385287285, + 0.046205922961235046, + 0.038802437484264374, + -0.06818226724863052, + 0.06156887859106064, + -0.01692851446568966, + -0.08948556333780289, + 0.029672453179955482, + -0.009715241380035877, + 0.019825529307127, + -0.027799636125564575, + -0.004810068756341934, + -0.0925874188542366, + 0.00868372805416584, + -0.04327964410185814, + -0.07064034044742584, + -0.0054538496769964695, + -0.012656150385737419, + -0.011785582639276981, + -0.0034365470055490732, + -0.009210458025336266, + 0.0759076401591301, + -0.07631731778383255, + 0.01584579236805439, + 0.05717946216464043, + -0.0432211197912693, + -0.06906014680862427, + -0.032072000205516815, + -0.007180353160947561, + 0.05852555111050606, + 0.023498008027672768, + 0.05580411106348038, + 0.014580177143216133, + -0.05118059366941452, + 0.010454126633703709, + 0.03979737311601639, + -0.021288668736815453, + 0.01950364001095295, + -0.03403260558843613, + 0.0258975550532341, + 0.02545861341059208, + -0.03514459356665611, + 0.018976910039782524, + 0.0691186711192131, + 0.059930164366960526, + 0.009268984198570251, + -0.01096622459590435, + 0.07690256834030151, + -0.025326931849122047, + -0.06262233853340149, + -0.007114511914551258, + 0.031603798270225525 + ] + }, + { + "id": "6844f13a-666a-4b73-a3e5-b9dfd0722629", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "joseph01", + "reviewDate": "2022-09-26T13:16:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0a43136c-9e76-42c3-bbc6-3011586fd91c", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "philip03", + "reviewDate": "2021-04-13T13:41:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7c2d6181-1cc5-4685-acc7-0e276f88d2eb", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "emendoza", + "reviewDate": "2022-03-13T03:19:52", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0c45e255-20d6-46a5-94c2-584c9e65914f", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "jessica69", + "reviewDate": "2021-06-10T21:54:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "806fad1a-0354-4bbb-9cea-547d12731df1", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholaslong", + "reviewDate": "2021-06-09T07:03:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c59cff95-c336-44fd-b718-b31225e16f94", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "vmiller", + "reviewDate": "2022-01-17T17:25:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "20d0402e-033f-446b-babc-2b6cd42c7a56", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "joshuacunningham", + "reviewDate": "2022-04-13T21:04:28", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6a0120f8-84d8-488e-9416-e339662f65cc", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "stevensmichael", + "reviewDate": "2021-10-15T06:26:42", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e3823224-fab9-4ce0-bb63-3d49fccde3ea", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "aford", + "reviewDate": "2021-08-01T05:07:08", + "stars": 5, + "verifiedUser": false + }, + { + "id": "62b8c12a-4353-4230-9660-0782ec2a6f3a", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "gduncan", + "reviewDate": "2022-08-21T01:54:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "77711feb-fe7d-4e0e-918f-99e38cdb6608", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "danielbowen", + "reviewDate": "2021-03-09T23:38:51", + "stars": 5, + "verifiedUser": false + }, + { + "id": "873fc442-1c90-4c86-bb72-3bf42804e023", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "john00", + "reviewDate": "2022-02-15T01:21:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bfd29b7e-3c56-4a0d-8f8d-a755a0b145fc", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "daniel07", + "reviewDate": "2022-11-19T20:44:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cd5a26c2-81b8-433d-9673-a2b8db0c2b74", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "kenneth82", + "reviewDate": "2021-06-06T13:56:23", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0a69088d-0148-4cc5-8996-203a79e597b2", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "yjackson", + "reviewDate": "2021-10-10T12:41:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ee018f9a-6f48-4117-9181-fc374663ed7f", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "brenda10", + "reviewDate": "2022-02-21T12:19:34", + "stars": 5, + "verifiedUser": false + }, + { + "id": "cd08c2b2-8969-457e-bd8b-b7338740b0d0", + "productId": "21379c04-775f-486c-b779-f954a27312a1", + "category": "Accessory", + "docType": "customerRating", + "userName": "hannajanet", + "reviewDate": "2022-01-28T07:06:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "product", + "name": "Luxe TV 3000 (Silver)", + "description": "This Luxe TV 3000 (Silver) is available on a limited capacity model, which includes HDMI, Ethernet, and micro SD connections.\n\nLux Luxe TV 3000 is an Ultra HD TV with a 24 inch panel, IPS display with 1080p resolution, ultra-high definition 5.1 surround sound and a 12:9 touchscreen (touch screen). The panel also support multiple channels of 3D playback including 1-channel 2D stereo audio, stereo and", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-04-23T15:03:15", + "price": 129.49, + "stock": 94, + "priceHistory": [ + { + "priceDate": "2021-03-22T10:39:38", + "newPrice": 118.85 + }, + { + "priceDate": "2022-01-08T10:39:38", + "newPrice": 141.04 + }, + { + "priceDate": "2022-10-27T10:39:38", + "newPrice": 131.41 + }, + { + "priceDate": "2024-11-04T10:39:38", + "newPrice": 129.49 + } + ], + "descriptionVector": [ + 0.005865130107849836, + 0.0759395956993103, + -0.052150703966617584, + 0.027607765048742294, + -0.013074162416160107, + -0.011620801873505116, + -0.036461710929870605, + 0.043612971901893616, + 0.020724067464470863, + 0.036388736218214035, + 0.032667163759469986, + -0.03728872537612915, + 0.0518588162958622, + 0.0130498381331563, + 0.03933194279670715, + -0.014837653376162052, + -0.033007699996232986, + -0.009042455814778805, + 0.0038705600891262293, + 0.005594525020569563, + 0.0681559145450592, + -0.0623667947947979, + 0.000984362792223692, + 0.020736228674650192, + 0.028142893686890602, + -0.022341614589095116, + -0.01799977757036686, + 0.01554305013269186, + 0.009139751084148884, + -0.046021051704883575, + 0.019933536648750305, + 0.04991289600729942, + -0.019580837339162827, + 0.0042962306179106236, + -0.023484844714403152, + -0.11704719811677933, + 0.08352869004011154, + 0.03838330879807472, + 0.07005318254232407, + 0.0041381241753697395, + 0.03524550795555115, + 0.03687521815299988, + -0.051372334361076355, + 0.0021937228739261627, + 0.0272915530949831, + -0.06275597959756851, + -0.0025585831608623266, + -0.005418175831437111, + 0.024409156292676926, + -0.04738319665193558, + -0.03244824707508087, + -0.016905196011066437, + -0.11334994435310364, + 0.043564323335886, + -0.045607540756464005, + -0.038967084139585495, + 0.04426972195506096, + 0.1922570765018463, + 0.03473470360040665, + 0.0325455404818058, + -0.01652817241847515, + -0.06635593622922897, + 0.0013971111038699746, + 0.012684977613389492, + -0.04633726179599762, + -0.043442703783512115, + 0.01689303293824196, + 0.010349871590733528, + -0.009614069946110249, + 0.04945073649287224, + -0.01790248043835163, + -0.02350916713476181, + 0.080658458173275, + 0.054972290992736816, + 0.03468605503439903, + 0.04497511684894562, + -0.003554347902536392, + -0.02687804587185383, + -0.010994458571076393, + -0.037921153008937836, + 0.05837765336036682, + 0.0007650665356777608, + 0.001337061170488596, + -0.012046472169458866, + 0.013244430534541607, + 0.06669647246599197, + -0.04996154084801674, + -0.10186900943517685, + -0.03244824707508087, + 0.08299356698989868, + -0.01936192251741886, + 0.13339294493198395, + 0.0105505445972085, + -0.09033942222595215, + 0.007291125599294901, + 0.016138989478349686, + -0.019580837339162827, + 0.06966400146484375, + -0.051275040954351425, + -0.014314686879515648, + 0.06115059182047844, + -0.009936363436281681, + 0.0078809829428792, + -0.05633443593978882, + 0.008440435864031315, + 0.032083384692668915, + 0.028021274134516716, + 0.014740358106791973, + 0.06640458106994629, + -0.13436590135097504, + 0.016747089102864265, + -0.019434893503785133, + -0.004062111955136061, + -0.054291218519210815, + 0.004682374186813831, + 0.05682091787457466, + -0.007844497449696064, + -0.05964250490069389, + -0.0006046799826435745, + 0.03989139571785927, + 0.005491148214787245, + -0.019787592813372612, + -0.030380703508853912, + -0.011535667814314365, + 0.018911927938461304, + 0.026148324832320213, + -0.0032259735744446516, + 0.014910626225173473, + 0.03857789933681488, + -0.0056492541916668415, + -0.06912887096405029, + 0.06265868246555328, + -0.013329564593732357, + 0.030964480713009834, + -0.02566184289753437, + 0.04891560971736908, + -0.030259083956480026, + -0.012599843554198742, + 0.017926804721355438, + 0.05331825837492943, + -0.03512388840317726, + 0.057307396084070206, + 0.017087625339627266, + -0.018060587346553802, + -0.04244542121887207, + -0.013998474925756454, + -0.09223669022321701, + -0.030015842989087105, + -0.02084568701684475, + 0.06324245780706406, + 0.06392353028059006, + -0.04959668219089508, + -0.006725592073053122, + -0.053950682282447815, + 0.05088585615158081, + 0.01015527918934822, + -0.054972290992736816, + 0.012830921448767185, + 0.012709301896393299, + 0.058523599058389664, + 0.03823736310005188, + -0.001605385448783636, + -0.03743467107415199, + -0.031913116574287415, + 0.017549782991409302, + 0.013317402452230453, + 0.024932123720645905, + -0.02151459828019142, + -0.060323577374219894, + 0.025126716122031212, + 0.002403517486527562, + -0.028094246983528137, + -0.015421430580317974, + 0.019653810188174248, + -0.010398519225418568, + -0.035853609442710876, + 0.06606404483318329, + 0.04071841388940811, + -0.00473710335791111, + -0.026829397305846214, + 0.003706373041495681, + -0.045510247349739075, + -0.03925897181034088, + -0.05346420034766197, + 0.03410227969288826, + 0.03395633399486542, + 0.08007468283176422, + -0.011468776501715183, + -0.02651318535208702, + 0.02015245333313942, + 0.008744485676288605, + 0.06105329841375351, + -0.0416913740336895, + 0.0009722007671371102, + -0.06864239275455475, + -0.06275597959756851, + 0.07073425501585007, + 0.021551083773374557, + -0.008343139663338661, + 0.05745334178209305, + 0.01024649478495121, + -0.005697902292013168, + 0.06387488543987274, + 0.005193179007619619, + -0.059885744005441666, + -0.023971324786543846, + 0.00022233676281757653, + 0.05857224762439728, + 0.003381039248779416, + 0.06723159551620483, + -0.0137309106066823, + -0.004247582517564297, + 0.005749590694904327, + 0.06149112805724144, + 0.03850492835044861, + 0.018291665241122246, + -0.01308632455766201, + -0.01817004568874836, + 0.028191542252898216, + -0.08693405985832214, + 0.10410681366920471, + -0.06737754493951797, + 0.0255888719111681, + -0.05803711712360382, + 0.0003433867823332548, + -0.021806485950946808, + 0.09505827724933624, + 0.03582928702235222, + 0.0274618212133646, + -0.012028229422867298, + -0.021137576550245285, + -0.0349292978644371, + -0.013402536511421204, + -0.012301874347031116, + 0.0006168420077301562, + 0.003800628473982215, + -0.008610703982412815, + -0.07642608135938644, + -0.03400498256087303, + 0.021770000457763672, + -0.0769612044095993, + -0.024907799437642097, + 0.01166336890310049, + 0.027534794062376022, + -0.019240301102399826, + -0.01876598410308361, + 0.12560924887657166, + 0.010173522867262363, + -0.023813217878341675, + -0.009097184054553509, + -0.00965055637061596, + -0.030867185443639755, + -0.08878268301486969, + 0.03434551879763603, + -0.03782385587692261, + 0.0327158086001873, + 0.0278023574501276, + -0.030088815838098526, + 0.03765358775854111, + -0.011602559126913548, + -0.0654316172003746, + -0.04278595745563507, + 0.0010345310438424349, + -0.05871818959712982, + -0.021891620010137558, + 0.05468040332198143, + 0.046726446598768234, + -0.10926350951194763, + 0.06061546504497528, + -0.04519403353333473, + -0.046191319823265076, + -0.029067207127809525, + 0.014022799208760262, + 0.051810167729854584, + -0.0749179869890213, + -0.007674229331314564, + -0.06903157383203506, + 0.004399607423692942, + -0.04908587783575058, + -0.04855074733495712, + 0.07924766838550568, + -0.03833466023206711, + -0.010149198584258556, + -0.08999888598918915, + 0.09612853825092316, + -0.046361587941646576, + 0.037240076810121536, + 0.014667385257780552, + 0.03315364196896553, + -0.02600238099694252, + -0.006926265545189381, + 0.018899764865636826, + 0.04891560971736908, + -0.056188493967056274, + 0.021210547536611557, + 0.01868085004389286, + 0.009358667768537998, + -0.019228139892220497, + 0.004159407690167427, + -0.044829174876213074, + -0.037410344928503036, + 0.004858723375946283, + 0.004603321198374033, + -0.09890147298574448, + -0.09121508151292801, + 0.09072860330343246, + -0.0075222039595246315, + 0.03709413483738899, + -0.00016105163376778364, + -0.01729438081383705, + 0.027753708884119987, + 0.001424475573003292, + -0.06003168597817421, + -0.025029418990015984, + 0.0018607877427712083, + -0.027340201660990715, + 0.0008718642056919634, + 0.05521553009748459, + -0.012855245731770992, + 0.061880312860012054, + 0.01318361982703209, + 0.014849815517663956, + -0.07978279143571854, + 0.03986707329750061, + 0.10021497309207916, + -0.039575185626745224, + -0.038358982652425766, + 0.011189050041139126, + 0.014448469504714012, + -0.0269510168582201, + -0.03558604419231415, + 0.035683341324329376, + -0.022609179839491844, + -0.021915944293141365, + 0.05896143242716789, + -0.0026057108771055937, + 0.03142663836479187, + 0.0009182318462990224, + 0.030599620193243027, + -0.021648380905389786, + 0.13417130708694458, + 0.04862372204661369, + -0.03488064929842949, + -0.012855245731770992, + 0.023886190727353096, + -0.017634917050600052, + -0.05078855901956558, + 0.041861642152071, + 0.054291218519210815, + 0.05258853733539581, + 0.0013705065939575434, + -0.00303442170843482, + 0.04701833426952362, + 0.05599389970302582, + 0.0416913740336895, + 0.024494290351867676, + -0.0008566616452299058, + 0.03894276171922684, + -0.0688369870185852, + 0.005238786339759827, + -0.02349700592458248, + 0.00844651646912098, + 0.014484954997897148, + 0.09140967577695847, + -0.08673946559429169, + 0.06557756662368774, + 0.011766745708882809, + 0.009869472123682499, + -0.03877249360084534, + 0.016333581879734993, + 0.06942076236009598, + -0.02100379392504692, + -0.07360449433326721, + 0.09700420498847961, + 0.014351173304021358, + 0.058766838163137436, + 0.07044237107038498, + 0.005837765522301197, + -0.014314686879515648, + 0.032667163759469986, + -0.07292342185974121, + 0.01342686079442501, + 0.03814006596803665, + 0.022499721497297287, + 0.03495362028479576, + -0.019252464175224304, + -0.04881831258535385, + -0.0623667947947979, + -0.0420319102704525, + 0.003873600624501705, + 0.03719143196940422, + 0.005007707979530096, + 0.036291442811489105, + 0.04665347561240196, + 0.03281310573220253, + 0.019872726872563362, + -0.03461308404803276, + -0.02636723965406418, + 0.013864693231880665, + -0.05477770045399666, + -0.012478224001824856, + 0.03325093910098076, + 0.026245620101690292, + -0.06854509562253952, + -0.01566467061638832, + -0.011772827245295048, + 0.01115256454795599, + 0.03624279424548149, + 0.003569550346583128, + -0.09301505982875824, + -0.003259418997913599, + -0.06183166429400444, + -0.033032022416591644, + 0.012131606228649616, + -0.003992180339992046, + 0.02014029026031494, + 0.03891843557357788, + -0.02789965458214283, + 0.026196971535682678, + -0.0664532333612442, + 0.03329958766698837, + 0.11860393732786179, + -0.03531847894191742, + -0.00222716829739511, + 0.032253652811050415, + -0.04081571102142334, + -0.02738885022699833, + -0.014716033823788166, + 0.02134433016180992, + -0.043710269033908844, + 0.05511823669075966, + -0.09554476290941238, + 0.05224800109863281, + -0.026075351983308792, + -0.025102391839027405, + 0.012125525623559952, + 0.002012812765315175, + 0.050350725650787354, + 0.025613196194171906, + 0.06484784185886383, + -0.02928612381219864, + -0.026026703417301178, + -0.011906608939170837, + 0.07209639996290207, + -0.055945251137018204, + -0.07642608135938644, + -0.007199910469353199, + -0.009887714870274067, + 0.02016461454331875, + -0.00982082448899746, + 0.0040955571457743645, + -0.011724178679287434, + -0.002861113054677844, + 0.00870191864669323, + 0.039988692849874496, + -0.019240301102399826, + 0.018583552911877632, + 0.026124000549316406, + 0.030429352074861526, + -0.0049347360618412495, + -0.04971830174326897, + 0.08129088580608368, + 0.0019291990902274847, + 0.017087625339627266, + -0.07842064648866653, + 0.02833748608827591, + -0.08318815380334854, + 0.044999442994594574, + 0.02307133562862873, + 0.034832000732421875, + -0.018121397122740746, + -0.02015245333313942, + -0.0335671529173851, + -0.008063413202762604, + -0.0008893470512703061, + -0.05414527282118797, + 0.028629373759031296, + 0.007199910469353199, + 0.006257354747503996, + -0.00036904102307744324, + 0.04426972195506096, + 0.05769658088684082, + 0.09131237864494324, + 0.06017763167619705, + 0.051031798124313354, + 0.04011031240224838, + 0.03823736310005188, + 0.009571502916514874, + 0.017683563753962517, + -0.010185684077441692, + 0.0260996762663126, + -0.035099565982818604, + -0.038456279784440994, + -0.041521105915308, + -0.07238829135894775, + -0.0330563448369503, + -0.012162011116743088, + 0.008452598005533218, + -0.03753196820616722, + 0.08090169727802277, + -0.012551195919513702, + 0.07905307412147522, + -0.07924766838550568, + 0.020420016720891, + 0.00998501107096672, + 0.011675531044602394, + 0.015980882570147514, + -0.002134433016180992, + -0.08182600885629654, + 0.004600280895829201, + 0.04711563140153885, + 0.013633614405989647 + ] + }, + { + "id": "8a5c6738-c863-48db-8beb-95e8251719ae", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "cortezmichael", + "reviewDate": "2022-04-22T20:19:01", + "stars": 4, + "verifiedUser": false + }, + { + "id": "950e5ba3-dd37-403a-928f-a5e55e343acb", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "lyonspaula", + "reviewDate": "2022-10-29T10:07:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3d9d8bce-fb22-40ef-ada4-e0ed0804a7d2", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "don52", + "reviewDate": "2022-05-20T14:51:15", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aa693afb-2b56-4b39-9bb1-c906f07cb703", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "ufisher", + "reviewDate": "2022-01-13T13:22:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1b5bf91e-1d27-4410-a73a-76b5d16d47bc", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "floresjose", + "reviewDate": "2021-10-01T00:33:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d40c9a67-7695-4094-a052-f29718f6213c", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "vwilson", + "reviewDate": "2021-10-09T06:13:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "1342d61c-3c9d-464f-969e-47b2362c6285", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "lisarobinson", + "reviewDate": "2021-09-27T16:46:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "684118be-cb15-4fe3-b2a2-0b809e43adbc", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "gloverbryan", + "reviewDate": "2021-05-04T04:33:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ea6f9f14-60e8-485f-a26f-5593fe70c682", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "mroach", + "reviewDate": "2022-06-05T11:28:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ff0d26c4-882b-48f3-920a-9c9ec5416227", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "uperez", + "reviewDate": "2021-08-20T20:35:45", + "stars": 3, + "verifiedUser": true + }, + { + "id": "162f6c29-65c1-4319-859a-68e4077a07b6", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "jasondavis", + "reviewDate": "2021-07-19T00:15:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "58038d23-4c84-430b-9d14-e3d18de7be59", + "productId": "bfce934c-a888-414e-9acc-8ea83a0ca13d", + "category": "Media", + "docType": "customerRating", + "userName": "judy26", + "reviewDate": "2021-03-22T10:39:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Micro (Red)", + "description": "This Luxe Computer Micro (Red) is made in Germany and can be repaired with a new computer by just replacing the parts and using the original parts, a new computer, and a new computer card. This", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2020-08-03T12:36:44", + "price": 782.71, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-02-19T11:18:24", + "newPrice": 706.41 + }, + { + "priceDate": "2021-07-28T11:18:24", + "newPrice": 755.61 + }, + { + "priceDate": "2022-01-03T11:18:24", + "newPrice": 752.38 + }, + { + "priceDate": "2022-06-11T11:18:24", + "newPrice": 829.68 + }, + { + "priceDate": "2022-11-17T11:18:24", + "newPrice": 793.37 + }, + { + "priceDate": "2024-11-12T11:18:24", + "newPrice": 782.71 + } + ], + "descriptionVector": [ + -0.021983381360769272, + 0.05678540840744972, + -0.033783722668886185, + 0.04044462740421295, + -0.015717817470431328, + 0.03824029862880707, + -0.03857574239373207, + -0.015574056655168533, + 0.10580774396657944, + 0.07868492603302002, + 0.034526485949754715, + -0.05146626755595207, + 0.0029905184637755156, + -0.08472286909818649, + 0.07921204715967178, + -0.04504496604204178, + -0.06589023768901825, + -0.036874573677778244, + -0.025733133777976036, + -0.00682263495400548, + -0.0046692220494151115, + -0.07710356265306473, + -0.0428645983338356, + 0.030764752998948097, + 0.024535130709409714, + -0.004172050394117832, + -0.017538784071803093, + 0.010344767943024635, + -0.00033394372439943254, + -0.04974114149808884, + 0.07432419061660767, + 0.0389830619096756, + -0.04331983998417854, + -0.06526727974414825, + 0.043032318353652954, + -0.06593815982341766, + 0.04411052167415619, + -0.01910817064344883, + 0.058462612330913544, + 0.04260103777050972, + 0.003608988132327795, + 0.008631621487438679, + -0.010656248778104782, + -0.052280910313129425, + 0.04588356986641884, + 0.003020468633621931, + 0.019323810935020447, + 0.0013267898466438055, + -0.03474212810397148, + -0.02484661154448986, + -0.002080035163089633, + 0.045284565538167953, + 0.014987034723162651, + -0.017023641616106033, + -0.045452285557985306, + -0.05261635407805443, + -0.05328723415732384, + 0.19934792816638947, + -0.03203463554382324, + -0.07973916828632355, + 0.0030788711737841368, + 0.02681133896112442, + -0.013441609218716621, + -0.007936779409646988, + -0.007954749278724194, + -0.018473228439688683, + -0.03136375546455383, + -0.015574056655168533, + 0.08908360451459885, + 0.05990022048354149, + -0.06732784956693649, + -0.012806667014956474, + -0.031914837658405304, + -0.018760748207569122, + 0.056402046233415604, + 0.013717150315642357, + 0.044326163828372955, + -0.02587689459323883, + 0.005789356306195259, + 0.004255910404026508, + 0.07561803609132767, + 0.008607661351561546, + -1.333715863438556e-05, + -0.06795080751180649, + -0.009865566156804562, + -0.023181384429335594, + 0.034334804862737656, + -0.09114417433738708, + 0.022762082517147064, + 0.037401698529720306, + -0.053574755787849426, + 0.03251383826136589, + 0.03651517257094383, + 0.0038905192632228136, + -0.034143123775720596, + -0.05299971252679825, + -0.015238615684211254, + 0.05204131081700325, + -0.004145095124840736, + 0.04054046794772148, + 0.004534446634352207, + -0.012638946063816547, + -0.015681877732276917, + -0.009464235045015812, + 0.07552219927310944, + 0.018353426828980446, + 1.3161668903194368e-05, + 0.003315477166324854, + 0.035365089774131775, + -0.08170390129089355, + 0.05079538747668266, + 0.01279468648135662, + -0.037617336958646774, + -0.008248260244727135, + 0.023253265768289566, + -0.026212336495518684, + -0.017035622149705887, + -0.031723156571388245, + -0.017634624615311623, + 0.027074899524450302, + 0.1298636794090271, + 0.021791700273752213, + 0.06934049725532532, + 0.0415707528591156, + 0.01817372627556324, + -0.0100692268460989, + -0.05084330588579178, + -0.10024900734424591, + 0.030573071911931038, + -0.018640948459506035, + -0.09842804074287415, + 0.07111354172229767, + 0.0026101521216332912, + 0.059181418269872665, + -0.02467888966202736, + 0.05482067912817001, + 0.034143123775720596, + 0.009566064924001694, + -0.01985093206167221, + 0.02877606451511383, + 0.06052318215370178, + -0.01541831623762846, + -0.04130719229578972, + -0.06464431434869766, + -0.06727992743253708, + -0.07916413247585297, + -0.0596126988530159, + 0.02027023397386074, + -0.05371851846575737, + 0.08587295562028885, + -0.026571737602353096, + -0.03972582519054413, + -0.01588553749024868, + -0.016652261838316917, + 0.03467024862766266, + 0.06023566052317619, + -0.036395374685525894, + 0.05299971252679825, + -0.056018684059381485, + 0.10791623592376709, + 0.029039626941084862, + 0.04099570959806442, + -0.0318908765912056, + 0.025924814864993095, + 0.006058907136321068, + -0.00839202105998993, + -0.016903841868042946, + -0.016484539955854416, + -0.052664272487163544, + 0.04715345427393913, + -0.01823362708091736, + -0.015765737742185593, + -0.022762082517147064, + -0.006642934400588274, + 0.08438742905855179, + -0.022630302235484123, + 0.07049057632684708, + 0.04916609823703766, + 0.03210651874542236, + -0.10964135825634003, + 0.04717741161584854, + 0.0570250079035759, + -0.006618974264711142, + 0.034622326493263245, + 0.034909848123788834, + 0.039486225694417953, + -0.009080872870981693, + 0.03522133082151413, + 0.05467692017555237, + -0.016244938597083092, + -0.01406457182019949, + 0.016244938597083092, + 0.06392551213502884, + -0.011572722345590591, + -0.034430645406246185, + -0.011273221112787724, + -0.05649788677692413, + 0.05597076565027237, + 0.029830308631062508, + 0.04557208716869354, + -0.035652611404657364, + 0.03589221090078354, + 0.0312679149210453, + 0.025206012651324272, + 0.027530141174793243, + 0.018772728741168976, + 0.026092534884810448, + -0.007787028327584267, + 0.05113082751631737, + -0.020222313702106476, + 0.004199005197733641, + -0.04643464833498001, + 0.014004671014845371, + 0.04121135175228119, + 0.09516946971416473, + 0.007116145920008421, + -0.007846929132938385, + -0.016640281304717064, + -0.04401468113064766, + -0.01634077914059162, + 0.029638629406690598, + -0.14634822309017181, + 0.03337640315294266, + -0.014400012791156769, + 0.006271552760154009, + -0.08414782583713531, + 0.07159274071455002, + 0.006792685016989708, + 0.019743112847208977, + 0.056114524602890015, + -0.01584959775209427, + 0.0325377993285656, + 0.0373777374625206, + -0.07303034514188766, + -0.009038942866027355, + -0.013094187714159489, + -0.027793701738119125, + -0.10044068843126297, + -0.041355110704898834, + 0.04089986905455589, + -0.017802344635128975, + 0.01759868487715721, + -0.03028555028140545, + -0.01430417224764824, + -0.008092519827187061, + -0.00960200559347868, + 0.09881140291690826, + -0.03385560214519501, + -0.04597940668463707, + 0.008164400234818459, + 0.018425308167934418, + 0.0016547435661777854, + -0.0010310325305908918, + 0.05184962972998619, + -0.008805332705378532, + -0.016748100519180298, + 0.07643268257379532, + -0.02374444715678692, + -0.023516826331615448, + -0.06660904735326767, + -0.006481203716248274, + -0.06699240207672119, + -0.00011502714187372476, + -0.00016229215543717146, + -0.044877246022224426, + 0.02145625837147236, + -0.014160411432385445, + -0.029686547815799713, + -0.02185159921646118, + 0.00231963605619967, + 0.003959404304623604, + -0.050316184759140015, + 0.02841666340827942, + 0.005124463699758053, + 0.01364526990801096, + -0.011572722345590591, + -0.03912682458758354, + 0.13829763233661652, + -0.024403348565101624, + -0.006337443366646767, + -0.0004597341758199036, + 0.029303187504410744, + -0.007655248045921326, + -0.07053849846124649, + 0.0042678904719650745, + -0.05654580891132355, + -0.06560271978378296, + -0.03876742348074913, + -0.016448600217700005, + -0.05616244673728943, + -0.016101179644465446, + 0.013513489626348019, + 0.005256244447082281, + -0.0036808685399591923, + 0.04370319843292236, + -0.0057144807651638985, + 0.08342902362346649, + 0.025445614010095596, + -0.032274238765239716, + -0.019156090915203094, + 0.029446948319673538, + 0.015382376499474049, + 0.006043931934982538, + 0.004690187051892281, + -0.07681604474782944, + 0.03179503604769707, + 0.018509168177843094, + 0.029758429154753685, + -0.05055578425526619, + 0.010027296841144562, + 0.05103498697280884, + 0.04288855567574501, + -0.06037941947579384, + 0.0052412692457437515, + 0.09071289002895355, + -0.04099570959806442, + 0.0086196418851614, + -0.04456576332449913, + 0.042002033442258835, + -0.011998013593256474, + -0.031243953853845596, + -0.05577908456325531, + -0.1639828383922577, + 0.03402332589030266, + 0.0721677839756012, + -0.017215322703123093, + -0.009170723147690296, + 0.0834769457578659, + 0.04248123615980148, + -0.08874816447496414, + -0.033232640475034714, + 0.033592041581869125, + 0.043487560003995895, + -0.020090533420443535, + -0.023540785536170006, + -0.020210333168506622, + -0.031531475484371185, + 0.02425958961248398, + -0.0020351100247353315, + -0.05448523908853531, + 0.06229622662067413, + 0.007200006395578384, + -0.08481871336698532, + 0.015226636081933975, + -0.02065359614789486, + -0.006636944133788347, + 0.012459245510399342, + 0.01592147909104824, + -0.015430296771228313, + -0.03119603358209133, + 0.0012511658715084195, + -0.08889192342758179, + 0.06181702762842178, + 0.019120149314403534, + -0.004372715950012207, + 0.03922266513109207, + 0.04427824169397354, + -0.029470907524228096, + -0.04497308284044266, + 0.04739305377006531, + -0.028752105310559273, + -0.02558937296271324, + 0.11999212205410004, + 0.04243331402540207, + -0.043487560003995895, + -0.02332514524459839, + -0.02738638035953045, + 0.036946456879377365, + -0.04782433435320854, + 0.1301511973142624, + 0.023025644943118095, + -0.016520479694008827, + -0.026332136243581772, + 0.0011965068988502026, + -0.05309555307030678, + -0.011734453029930592, + 0.05271219462156296, + -0.0013687199680134654, + -0.0004608573217410594, + 0.04523664712905884, + -0.04334379732608795, + 0.05587492510676384, + 0.03879138082265854, + 0.014555753208696842, + 0.061721187084913254, + -0.09143169224262238, + -0.04475744441151619, + -0.05726461112499237, + -0.012267565354704857, + 0.01830550655722618, + -0.051610030233860016, + -0.04720137268304825, + 0.03347224369645119, + 0.04681801050901413, + -0.045284565538167953, + -0.013896850869059563, + -0.04813581705093384, + -0.015562077052891254, + 0.021420318633317947, + 0.000954659772105515, + 0.012914487160742283, + 0.04959738254547119, + 0.01495109498500824, + -0.06972385197877884, + -0.050220344215631485, + -0.05970853939652443, + 0.02387622743844986, + 0.025996694341301918, + 0.0075114876963198185, + -0.06224830821156502, + -0.023576727136969566, + 0.00989551655948162, + 0.02925526723265648, + -0.06938841193914413, + 0.03121999464929104, + -0.04372715950012207, + 0.02204328030347824, + 0.013429629616439342, + -0.03800069913268089, + -0.0004563647962640971, + 0.08563335239887238, + 0.013118147850036621, + -0.04101967066526413, + 0.005918141454458237, + -0.010159077122807503, + -0.011075550690293312, + 0.016999682411551476, + -0.012483205646276474, + -0.004630287177860737, + -0.08002669364213943, + -0.005367059726268053, + -0.08630423247814178, + -0.006630954332649708, + -0.013717150315642357, + 0.023864246904850006, + 0.051610030233860016, + 0.004231950268149376, + -0.008967062458395958, + -0.03960602357983589, + 0.07916413247585297, + 0.06234414875507355, + -0.06047526001930237, + -0.0002008529263548553, + -0.010344767943024635, + -0.031243953853845596, + 0.0029830308631062508, + -0.06521935760974884, + 0.03653913363814354, + 0.03385560214519501, + -0.06148158386349678, + -0.021408338099718094, + 0.019347770139575005, + 0.00911681354045868, + -0.024990372359752655, + 0.035916171967983246, + -0.004771052394062281, + -0.03538905084133148, + 0.05204131081700325, + 0.039294544607400894, + -0.0011478379601612687, + -0.029494868591427803, + 0.013237948529422283, + 0.057791732251644135, + -0.04341568052768707, + -0.010183037258684635, + 0.024223648011684418, + -0.02372048608958721, + -0.03874346241354942, + -0.006061902269721031, + -0.02709885872900486, + -0.011818313039839268, + -0.006774714682251215, + 0.034334804862737656, + 0.001732613891363144, + -0.02654777653515339, + -0.03838406130671501, + 0.017311163246631622, + 0.013261908665299416, + 0.0004267890763003379, + -0.014987034723162651, + -0.05271219462156296, + 0.06205662712454796, + -0.009679875336587429, + 0.013022307306528091, + 0.03982166573405266, + 0.01988687366247177, + 0.05884597450494766, + 0.030069909989833832, + 0.04988490417599678, + 0.021192697808146477, + -0.003779703751206398, + 0.0105544188991189, + -0.04056442901492119, + -0.023468906059861183, + -0.02906358614563942, + 0.03363996371626854, + -0.02568521350622177, + 0.06344631314277649, + -0.06081070378422737, + 0.015286535955965519, + 0.03186691552400589, + -0.046099208295345306, + -0.0022178057115525007, + 0.018808668479323387, + -0.03093247301876545, + 0.061433665454387665, + -0.0006136028678156435, + 0.0966549962759018, + -0.02055775560438633, + -0.051801711320877075, + 0.0753784328699112, + -0.04600336775183678 + ] + }, + { + "id": "be3ceb53-4767-48b3-819a-90c9904d29e4", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "pneal", + "reviewDate": "2021-09-17T21:13:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bc1ab30f-49ef-4439-bad8-a8722d516a81", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "jimenezelizabeth", + "reviewDate": "2021-09-15T01:45:19", + "stars": 5, + "verifiedUser": false + }, + { + "id": "02dd1a16-cdbe-4753-9273-4e498ca9259b", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "charles55", + "reviewDate": "2021-07-30T14:39:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3fe91b66-fd30-45bd-afa9-521a77aa1315", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "rmartinez", + "reviewDate": "2022-08-11T04:28:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "723bd5a1-4822-4f4c-ad4d-c3e7b6504eec", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciakrista", + "reviewDate": "2021-02-27T20:51:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2047420f-47df-4953-b86a-35034f897e42", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "jimmy91", + "reviewDate": "2021-08-26T05:07:20", + "stars": 5, + "verifiedUser": true + }, + { + "id": "12309dae-aba9-4b32-9b77-b3cf1db0f540", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "esmith", + "reviewDate": "2022-05-07T23:43:43", + "stars": 4, + "verifiedUser": true + }, + { + "id": "82b2650c-5723-4fda-9e76-d770fcf9d543", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "willieherrera", + "reviewDate": "2022-11-20T15:41:46", + "stars": 5, + "verifiedUser": true + }, + { + "id": "c85f628d-2ec5-4570-a217-9c0f76948537", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "bhughes", + "reviewDate": "2021-02-19T11:18:24", + "stars": 4, + "verifiedUser": true + }, + { + "id": "44875699-002d-414b-adf0-e051c4cccaa3", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "stacey73", + "reviewDate": "2021-05-15T07:29:40", + "stars": 5, + "verifiedUser": true + }, + { + "id": "9452efeb-743a-4f71-8ce1-49d7a1e3a537", + "productId": "3b387cdf-f869-413e-954d-b4ce1bc5b9f3", + "category": "Electronics", + "docType": "customerRating", + "userName": "clarkandrew", + "reviewDate": "2022-09-06T05:46:42", + "stars": 5, + "verifiedUser": true + }, + { + "id": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Pro (Black)", + "description": "This Basic Keyboard Pro (Black) is the first in a line of low price keyboards for those looking to go for the low price or the high value of affordable devices. The Pro is designed to work seamlessly with the Pro's standard mouse, keyboard, 3.5mm audio jack, two USB 3.1 ports, four microphone, two USB 3.0 ports, and two SD card reader-compatible cards.\n\nThis Basic Keyboard Pro comes in black with a white color", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-07-06T13:47:13", + "price": 783.03, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-03-07T15:16:31", + "newPrice": 734.98 + }, + { + "priceDate": "2021-09-11T15:16:31", + "newPrice": 729.04 + }, + { + "priceDate": "2022-03-18T15:16:31", + "newPrice": 800.76 + }, + { + "priceDate": "2022-09-22T15:16:31", + "newPrice": 757.57 + }, + { + "priceDate": "2025-03-07T15:16:31", + "newPrice": 783.03 + } + ], + "descriptionVector": [ + -0.01209939643740654, + 0.0004908484988845885, + -0.03251153975725174, + 0.03635185956954956, + -0.007680641952902079, + -0.004612559452652931, + 0.028361128643155098, + 0.022207073867321014, + 0.015027343295514584, + 0.05028196796774864, + 0.039953649044036865, + -0.04501046985387802, + 0.04443800076842308, + -0.056865375488996506, + 0.05791490525007248, + -0.014407167211174965, + -0.015456696040928364, + -0.006893495563417673, + 0.020740119740366936, + 0.006332951597869396, + 0.007716421503573656, + -0.0553864948451519, + -0.10323546081781387, + 0.017591532319784164, + 0.001458010054193437, + 0.014085153117775917, + 0.0006235304172150791, + 0.0326308012008667, + 0.043078385293483734, + 0.03444362431764603, + 0.012284256517887115, + 0.008032472804188728, + -0.024306131526827812, + 0.035254623740911484, + -0.019630957394838333, + 0.029005158692598343, + -0.09040258824825287, + -0.035707831382751465, + 0.026357483118772507, + 0.037115152925252914, + 0.04248205944895744, + -0.016434665769338608, + 0.004600632935762405, + -0.03845091536641121, + -0.009875111281871796, + 0.06693130731582642, + 0.008390266448259354, + 0.03723441809415817, + -0.009368236176669598, + -0.034849125891923904, + 0.08463018387556076, + 0.0318913608789444, + -0.034133538603782654, + -0.010340243577957153, + 0.030030833557248116, + 0.014669549651443958, + -0.0030382664408534765, + 0.13577085733413696, + 0.007638899609446526, + -0.09498234838247299, + 0.011729676276445389, + -0.07213124632835388, + -0.002201923169195652, + -0.04782511666417122, + 0.03635185956954956, + 0.010668220929801464, + -0.05223790928721428, + -0.027717100456357002, + 0.006839826703071594, + 0.07590001076459885, + -0.026476748287677765, + -0.03592250496149063, + 0.0852503553032875, + 0.07828529924154282, + -0.02350705862045288, + -0.0063806576654314995, + 0.1007547602057457, + 0.07971648126840591, + 0.09989605098962784, + 0.03890412300825119, + 0.026214364916086197, + -0.012689756229519844, + 0.004308434668928385, + -0.04219582676887512, + 0.0237694401293993, + 0.017472269013524055, + 0.037282124161720276, + -0.09402823448181152, + -0.03959585726261139, + 0.08257883042097092, + -0.08210176974534988, + 0.08539347350597382, + 0.017841989174485207, + -0.009207229129970074, + 0.00838430318981409, + 0.007233399897813797, + -0.07289454340934753, + 0.027311600744724274, + -0.015802564099431038, + -0.026643717661499977, + 0.0497094988822937, + -0.060824960470199585, + -0.06883954256772995, + 0.023125411942601204, + -0.0031903288327157497, + -0.0018858719849959016, + 0.07733118534088135, + 0.019881414249539375, + -0.06072954833507538, + -0.10123182088136673, + -0.007072392385452986, + 0.02150341309607029, + -0.03067486174404621, + -0.01582641713321209, + -0.04885079339146614, + 0.042672883719205856, + -0.06473684310913086, + 0.007263215724378824, + 0.03191521391272545, + 0.021539192646741867, + 0.024151086807250977, + -0.008807692676782608, + -0.002206395613029599, + 0.04400864988565445, + -0.04699026420712471, + -0.052571848034858704, + -0.03205833211541176, + 0.049327850341796875, + 0.035278476774692535, + -0.028218010440468788, + -0.09393282234668732, + 0.07985959202051163, + 0.04057382792234421, + 0.05605437606573105, + -0.007680641952902079, + 0.04870767518877983, + 0.004153390880674124, + 0.10848310589790344, + -0.024389617145061493, + 0.060681842267513275, + -0.0037329827900975943, + -0.053573671728372574, + -0.004066923633217812, + 0.0397389754652977, + -0.0390949472784996, + -0.012331962585449219, + -0.012677829712629318, + 0.06755148619413376, + 0.07981189340353012, + 0.06034790351986885, + -0.02941065840423107, + -0.10743357986211777, + 0.005721720401197672, + -0.07790365815162659, + 0.06993678212165833, + -0.031700536608695984, + 0.007519634906202555, + -0.028456540778279305, + 0.04000135511159897, + 0.0710340142250061, + -0.04050226882100105, + 0.024640072137117386, + -0.005009114276617765, + -0.013643873855471611, + 0.007143951486796141, + 0.07881006598472595, + 0.07594771683216095, + 0.019511694088578224, + -0.02869506925344467, + 0.009016405791044235, + -0.010220978409051895, + 0.013083329424262047, + -0.016363106667995453, + -0.07842841744422913, + -0.01390625536441803, + -0.05214249715209007, + 0.07260830700397491, + 0.04427102953195572, + 0.012296183034777641, + -0.045916881412267685, + 0.026309777051210403, + 0.0028563877567648888, + -0.06888724863529205, + 0.008587053045630455, + 0.06907807290554047, + -0.02325660176575184, + -0.0010920168133452535, + 0.03468215465545654, + 0.009183376096189022, + -0.01645851880311966, + -0.0009906417690217495, + 0.0234235730022192, + -0.04644164815545082, + -0.0006108585512265563, + 0.020692413672804832, + 0.05180855467915535, + -0.011532889679074287, + 0.03690047562122345, + 0.01321452111005783, + 0.027073070406913757, + -0.00028176268097013235, + 0.07852382957935333, + 0.08730170875787735, + -0.019285090267658234, + 0.03661424294114113, + -0.01892729662358761, + 0.025069424882531166, + 0.04687099903821945, + 0.053430553525686264, + -0.030126245692372322, + -0.015373210422694683, + -0.05991854891180992, + 0.02869506925344467, + -0.037401389330625534, + 0.040096767246723175, + 0.00840219296514988, + -0.001645851880311966, + -8.334547601407394e-05, + -0.007006797008216381, + -0.08563200384378433, + 0.05071131885051727, + 0.012964065186679363, + 0.014645696617662907, + -0.043078385293483734, + -0.03716285899281502, + -0.02399604395031929, + 0.04796823486685753, + -0.0036972034722566605, + 0.01748419553041458, + 0.05195167288184166, + -0.07012759894132614, + 0.0025790976360440254, + 0.005530897062271833, + 0.042386651039123535, + -0.014001667499542236, + 0.014347534626722336, + 0.021050207316875458, + -0.02170616202056408, + -0.11468486487865448, + 0.05476631596684456, + -0.03038862720131874, + 0.013154888525605202, + -0.03594635799527168, + -0.016506224870681763, + 0.04820676147937775, + -0.029696892946958542, + 0.05347825959324837, + -0.004979298450052738, + -0.08582282811403275, + 0.027860216796398163, + -0.04212426766753197, + 0.06883954256772995, + 0.0007301231380552053, + 0.04205270856618881, + -0.03093724511563778, + 0.02950606867671013, + 0.029983127489686012, + -0.0412178561091423, + 0.028456540778279305, + -0.05281037837266922, + 0.020883236080408096, + 0.01674475334584713, + -0.09522087872028351, + -0.023101558908820152, + -0.03382344916462898, + 0.013441123999655247, + 0.04047841578722, + -0.0625423714518547, + -0.051331497728824615, + 0.07256060093641281, + 0.05987084284424782, + -0.028194159269332886, + 0.017925472930073738, + 0.030841832980513573, + 0.012075543403625488, + 0.06640654802322388, + -0.05724702030420303, + 0.09207229316234589, + -0.005307275801897049, + -0.03275006636977196, + 0.03790229931473732, + 0.09064111858606339, + 0.056865375488996506, + 0.01901078224182129, + -0.03139045089483261, + -0.035707831382751465, + 0.001759153325110674, + 0.03308400884270668, + 0.01731722429394722, + -0.012952138669788837, + -0.050902143120765686, + 0.01921353116631508, + 0.022147441282868385, + 0.015731004998087883, + 0.050902143120765686, + 0.014943857677280903, + 0.05238102376461029, + -0.0027087978087365627, + 0.06516619026660919, + 0.05481402203440666, + 0.050043437629938126, + -0.03277391940355301, + -0.06516619026660919, + -0.04811135306954384, + -0.012260403484106064, + 0.08672923594713211, + -0.09698599576950073, + -0.007251289673149586, + -0.016530077904462814, + -0.057724080979824066, + 0.0390472412109375, + -0.011103536933660507, + -0.02528410218656063, + -0.031008804216980934, + 0.07933483272790909, + -0.02585657127201557, + 0.04985261335968971, + 0.0002841852547135204, + -0.009785662405192852, + -0.0005896145012229681, + -0.07031842321157455, + -0.022087808698415756, + -0.12737461924552917, + 0.08343753218650818, + 0.028790481388568878, + -0.05481402203440666, + -0.032583095133304596, + -0.012284256517887115, + -0.004451552405953407, + -0.05013884976506233, + -0.083819180727005, + -0.014061300083994865, + -0.020310766994953156, + -0.008080178871750832, + 0.07122483849525452, + -0.03568397834897041, + 0.015897974371910095, + 0.03744909539818764, + 0.03494453802704811, + -0.017639238387346268, + 0.09140440821647644, + 0.06354419142007828, + 0.012737462297081947, + -0.06087266653776169, + 0.0017994050867855549, + -0.08706317842006683, + -0.031151920557022095, + -0.024449249729514122, + -0.035970211029052734, + -0.01017923653125763, + 0.0015549126546829939, + -0.016148431226611137, + 0.02967303991317749, + -0.06034790351986885, + 0.02176579460501671, + -0.025164837017655373, + 0.009672361426055431, + 0.021908912807703018, + 0.005885709542781115, + 0.059536904096603394, + -0.05223790928721428, + -0.06149284169077873, + 0.04543982446193695, + 0.055434200912714005, + -0.0187841784209013, + 0.016637416556477547, + -0.033728037029504776, + 0.02293458767235279, + 0.03167668730020523, + -0.01033428031951189, + -0.001969357253983617, + 0.012594345025718212, + 0.0117117865011096, + 0.04756273329257965, + 0.007734311278909445, + 0.05433696508407593, + -0.031605128198862076, + -0.023745587095618248, + -0.040931619703769684, + 0.027001511305570602, + 0.01383469719439745, + 0.03322712704539299, + -0.026095101609826088, + 0.015778711065649986, + 0.05510025843977928, + -0.06998448073863983, + -0.038808710873126984, + 0.014216343872249126, + 0.03721056506037712, + -0.0036017918027937412, + 0.008497605100274086, + 0.045368265360593796, + -0.061015784740448, + 0.08038435876369476, + -0.033847302198410034, + -0.027049217373132706, + 0.04369856044650078, + 0.05462320148944855, + 0.0069829439744353294, + 0.03709129989147186, + 0.042959120124578476, + 0.031867507845163345, + -0.021121766418218613, + -0.039691269397735596, + -0.05624520033597946, + -0.06573866307735443, + 0.010984272696077824, + 0.10590699315071106, + 0.016673194244503975, + -0.0866338238120079, + 0.01025079470127821, + -0.018044738098978996, + -0.0187841784209013, + -0.02869506925344467, + 0.013166815042495728, + -0.004174261819571257, + -0.018187856301665306, + 0.052190203219652176, + 0.06802854686975479, + -0.05028196796774864, + 0.04441414773464203, + -0.07222665846347809, + -0.03260694816708565, + 0.01003611832857132, + -0.023006146773695946, + -0.023745587095618248, + -0.0010592190083116293, + -0.0026074228808283806, + -0.006875605788081884, + 3.6315148463472724e-05, + 0.029887715354561806, + -0.037997711449861526, + -0.014848446473479271, + 0.02052544243633747, + -0.035135358572006226, + -0.047896675765514374, + 0.02979230508208275, + 0.05882131680846214, + 0.03589865192770958, + 0.06645425409078598, + -0.014586064033210278, + -0.038546327501535416, + -0.02041810378432274, + 0.07151107490062714, + -0.09827405214309692, + 0.018760325387120247, + -0.0922154113650322, + 0.02113369293510914, + 0.08544117957353592, + -0.029291393235325813, + -0.018104370683431625, + -0.05734243243932724, + -0.07265601307153702, + -0.002264537150040269, + 0.10943722724914551, + 0.0037598174531012774, + 0.002474741078913212, + 0.039810534566640854, + 0.02023920789361, + 0.021944692358374596, + -0.019225457683205605, + 0.04286370798945427, + 0.05209479108452797, + 0.027573982253670692, + -0.05352596566081047, + -0.04074079915881157, + -0.05180855467915535, + 0.011330139823257923, + -0.003828394692391157, + 0.0007521125953644514, + 0.03079412691295147, + -0.060824960470199585, + 0.05987084284424782, + -0.009082001633942127, + 0.07284683734178543, + -0.05037738010287285, + -0.020346546545624733, + 0.018283268436789513, + -0.035493154078722, + -0.016041092574596405, + -0.030126245692372322, + -0.02181350067257881, + -0.0894007682800293, + -0.04496276378631592, + -0.014657623134553432, + 0.002523937728255987, + -0.06259007751941681, + 0.024902455508708954, + 0.04503432288765907, + -0.008563200011849403, + -0.0008467788575217128, + 0.036256447434425354, + 0.013441123999655247, + -0.06483225524425507, + -0.01794932596385479, + 0.014872299507260323, + -0.009857221506536007, + 0.02193276584148407, + 0.029362952336668968, + 0.06473684310913086, + -0.0023927465081214905, + -0.0581534318625927, + 0.03453903645277023, + -0.017126400023698807, + 0.02599968947470188, + 0.06864871829748154, + -0.029911568388342857, + 0.013870476745069027, + 0.0467994399368763, + -0.03537388890981674, + -0.03306015580892563, + -0.05271496623754501 + ] + }, + { + "id": "c52bd7b2-edd7-4eba-a4ef-21c1dc8d24f1", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hsmall", + "reviewDate": "2022-03-23T10:04:39", + "stars": 5, + "verifiedUser": false + }, + { + "id": "f816ef17-122f-4ea8-a3f0-a365d779c04f", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daniel56", + "reviewDate": "2021-06-27T02:47:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0ca8abb5-54c5-4389-b16f-b95f3d2c4590", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vsaunders", + "reviewDate": "2021-04-26T03:54:59", + "stars": 5, + "verifiedUser": true + }, + { + "id": "716edd4a-6592-4dcb-ac8e-08d186d64f58", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithalfred", + "reviewDate": "2022-05-26T20:56:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "388783e9-02a9-45ff-a146-97912d0acc82", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidgreen", + "reviewDate": "2022-08-05T02:42:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6410a15f-91ab-4140-af59-89c219d47c7d", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimalan", + "reviewDate": "2022-04-29T05:30:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b823c337-6348-43a9-adf2-d478129e6b49", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nathanbarr", + "reviewDate": "2022-05-26T16:41:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d23e7362-6590-4246-8939-782f94ec83b5", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin92", + "reviewDate": "2022-01-05T22:34:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1d6b2459-dd94-4e7a-bb8d-21e9319e53fb", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "paulmcdonald", + "reviewDate": "2022-05-13T23:12:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "abadbb67-2ac9-4d3d-a77c-0ab646a65e18", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mary10", + "reviewDate": "2022-04-15T18:46:03", + "stars": 5, + "verifiedUser": true + }, + { + "id": "02097cba-0c24-441a-a207-5457cf3d72e0", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yevans", + "reviewDate": "2021-03-07T15:16:31", + "stars": 5, + "verifiedUser": true + }, + { + "id": "c47a9bb9-ec6c-46f0-9036-9ec0bb41d251", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gburton", + "reviewDate": "2022-09-22T05:57:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "94aa34cc-db6e-4f72-a151-2e026ff7d097", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wrightbarbara", + "reviewDate": "2022-09-25T00:34:00", + "stars": 5, + "verifiedUser": true + }, + { + "id": "8ed8b734-ee44-4389-bc82-589cb4019d11", + "productId": "8a0bde80-9140-4d7d-8fd4-e5cd7b23fc9d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "owalsh", + "reviewDate": "2021-10-05T01:17:32", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "product", + "name": "Premium Speaker + (Gold)", + "description": "This Premium Speaker + (Gold) is our only Premium Speaker. It's for the best deal, on our first-floor hotel in New York.\n\nFor more information on our Premium Speaker, here\n\nIf you like your Premium Speaker Premium Speaker, please add us to your shopping cart.", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-12-04T04:07:59", + "price": 504.24, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-04-16T12:30:19", + "newPrice": 503.36 + }, + { + "priceDate": "2024-04-26T12:30:19", + "newPrice": 504.24 + } + ], + "descriptionVector": [ + -0.03238707408308983, + -0.009570908732712269, + -0.04931401461362839, + -0.025346407666802406, + -0.032944463193416595, + -0.08407731354236603, + -0.008030762895941734, + 0.06313132494688034, + -0.02456899918615818, + 0.0697026178240776, + -0.011191729456186295, + 0.0672970563173294, + 0.02569844014942646, + -0.046409741044044495, + -0.016604242846369743, + -0.03262176364660263, + 0.011147725395858288, + -0.040953222662210464, + -0.02671053633093834, + -0.009167537093162537, + 0.05908294394612312, + -0.027253255248069763, + -0.039633095264434814, + -0.03913438320159912, + -0.05042878910899162, + -0.028529375791549683, + -0.030949605628848076, + 0.032152388244867325, + 0.028529375791549683, + 0.016457563266158104, + 0.027179913595318794, + 0.022735491394996643, + 0.003777025267481804, + 0.004510428290814161, + -0.054799869656562805, + 0.034675292670726776, + 0.07386834919452667, + -0.021122004836797714, + 0.05151422321796417, + 0.0555332750082016, + 0.012167155742645264, + 0.012137819081544876, + 0.0018995137652382255, + -0.040161147713661194, + 0.0013723802985623479, + 0.0444735549390316, + 0.06090178340673447, + 0.13236457109451294, + -0.048257917165756226, + 0.008265451528131962, + -0.06577157974243164, + 0.050135426223278046, + -0.058408211916685104, + 0.09815865755081177, + 0.011301740072667599, + -0.017631007358431816, + 0.019816547632217407, + 0.0863068625330925, + 0.04262538254261017, + 0.0171909648925066, + 0.03133097663521767, + -0.015504138544201851, + -0.07510046660900116, + 0.03637678921222687, + -0.030069522559642792, + 0.07504179328680038, + -0.031624335795640945, + 0.03391255438327789, + -0.07023067027330399, + 0.09763060510158539, + 0.02310219407081604, + 0.014756067655980587, + -0.01350928284227848, + 0.06254460662603378, + 0.06166452169418335, + -0.0038356976583600044, + 0.03743288666009903, + 0.06266195327043533, + 0.03435259684920311, + -0.05629601329565048, + 0.021870076656341553, + 0.026534520089626312, + -0.052805013954639435, + 0.03992645815014839, + 0.02935078740119934, + -0.04394550621509552, + -0.007986758835613728, + -0.11012779176235199, + -0.00317380134947598, + 0.024627672508358955, + 0.020447274670004845, + 0.03344317525625229, + 0.05116219073534012, + 0.014096004888415337, + 0.016472231596708298, + 0.028280017897486687, + -0.06453946232795715, + 0.018423082306981087, + -0.12731875479221344, + -0.012665869668126106, + 0.04608704149723053, + -0.08190644532442093, + -0.01925916224718094, + 0.021503375843167305, + 0.025302402675151825, + 0.03285645321011543, + 0.043740153312683105, + -0.026138482615351677, + 0.052951693534851074, + -0.15137436985969543, + 0.05744012072682381, + -0.05101551115512848, + 0.035232678055763245, + 0.00416572904214263, + 0.03009885735809803, + 0.03300313279032707, + -0.055063895881175995, + -0.052922360599040985, + -0.001379714347422123, + -0.023410223424434662, + -0.018613766878843307, + -0.09012056142091751, + -0.001306374091655016, + -0.03382454439997673, + 0.029248110949993134, + -0.017322978004813194, + -0.04406284913420677, + 0.08043964207172394, + 0.008646820671856403, + -0.01749899424612522, + -0.040953222662210464, + 0.02242746390402317, + -0.048140570521354675, + -0.007715399377048016, + 0.0075247143395245075, + 0.011727113276720047, + 0.06782510876655579, + 0.057733483612537384, + -0.047348495572805405, + -0.03009885735809803, + -0.07111075520515442, + -0.004521429538726807, + 0.04312409460544586, + 0.09281948208808899, + -0.05849622189998627, + -0.009358221665024757, + -0.032445747405290604, + 0.09041392058134079, + -0.04420953243970871, + -0.016750924289226532, + -0.010531666688621044, + -0.03878235071897507, + -0.012335837818682194, + 0.00043477045255713165, + -0.006431944202631712, + -0.0009172121062874794, + -0.10789824277162552, + -0.030333546921610832, + -0.05623733997344971, + 0.024745017290115356, + -0.008023428730666637, + -0.013655963353812695, + -0.036699485033750534, + -0.011983804404735565, + -0.00662996293976903, + 0.08595483005046844, + 0.00719468342140317, + -0.029174771159887314, + -0.05327439308166504, + 0.02062329091131687, + 0.032445747405290604, + -0.07046535611152649, + -0.015416130423545837, + -0.02584512159228325, + -0.02098999358713627, + 0.026138482615351677, + 0.05101551115512848, + -0.0343819297850132, + 0.04420953243970871, + 0.030538899824023247, + 0.0884777382016182, + 0.06811846792697906, + -0.019464515149593353, + -0.035878073424100876, + -0.03385388106107712, + 0.039339736104011536, + 0.032827116549015045, + 0.029673485085368156, + 0.01579749956727028, + 0.019699204713106155, + 0.0322110578417778, + -0.007359698880463839, + -0.021312691271305084, + -0.035232678055763245, + 0.006497950293123722, + -0.02976149320602417, + 0.0555332750082016, + 0.042420029640197754, + -0.014961420558393002, + -0.0687638595700264, + 0.0015896509867161512, + 0.07023067027330399, + 0.07580453157424927, + -0.03232840448617935, + -0.08272785693407059, + -0.027487942948937416, + 0.06823581457138062, + 0.03329649567604065, + -0.04142260178923607, + 0.07275357842445374, + -0.022368790581822395, + -0.010832361876964569, + -0.055738627910614014, + 0.016413558274507523, + 0.04949003458023071, + 0.03103761374950409, + -0.04209733009338379, + -0.009482900612056255, + 0.014528713189065456, + 0.016721587628126144, + 0.039339736104011536, + 0.026402506977319717, + 0.01524011418223381, + 0.00669596903026104, + -0.05588530749082565, + 0.030010849237442017, + -0.025903793051838875, + -0.04444422200322151, + 0.04403351619839668, + 0.02877873368561268, + -0.05676538869738579, + -0.014741400256752968, + -0.00265308516100049, + 0.021400699391961098, + -0.0003006952174473554, + 0.04368147999048233, + -0.00463877385482192, + -0.03755023330450058, + 0.01829107105731964, + 0.022808833047747612, + -0.04418019577860832, + 0.0718734934926033, + -0.08900578320026398, + 0.029776161536574364, + -0.04233201965689659, + 0.011668440885841846, + 0.059963028877973557, + 0.001287122257053852, + -0.037608902901411057, + 0.011485090479254723, + -0.12344639003276825, + -0.006307265721261501, + -0.08407731354236603, + 0.007737401407212019, + -0.026725204661488533, + 0.08742163330316544, + 0.09675052016973495, + -0.06999597698450089, + 0.04382816329598427, + -0.011961802840232849, + -0.022544806823134422, + -0.0394277423620224, + -0.017542999237775803, + 0.0014759735204279423, + -0.14245618879795074, + -0.039193056523799896, + 0.0030527899507433176, + -0.07028934359550476, + 0.009710255078971386, + 0.08853640407323837, + 0.005881892051547766, + 0.000144961682963185, + -0.03449927642941475, + 0.017777688801288605, + 0.03608342632651329, + 0.048815302550792694, + -0.015973517671227455, + -0.006255927495658398, + 0.0055518606677651405, + 0.029130766168236732, + 0.06101912632584572, + 0.015738828107714653, + 0.05477053299546242, + 0.001587817445397377, + -0.03250442072749138, + -0.0069379922933876514, + 0.01042165607213974, + 0.05582663416862488, + -0.04570567235350609, + -0.05485854297876358, + -0.03127230331301689, + -0.026167817413806915, + 0.060784440487623215, + 0.03969176858663559, + 0.04101189598441124, + 0.06324867159128189, + -0.0008534977096132934, + -0.0007911584689281881, + 0.010766355320811272, + 0.03825429826974869, + 0.00738536799326539, + 0.027561284601688385, + -0.06096045672893524, + -0.03130163997411728, + 0.06389407068490982, + 0.06189921125769615, + -0.05969900265336037, + -0.009138201363384724, + -0.03687550127506256, + 0.03138964623212814, + 0.1293136179447174, + -0.028998753055930138, + -0.003195803379639983, + 0.01028964389115572, + -0.00738536799326539, + 0.02231011912226677, + 0.010861698538064957, + 0.004158394876867533, + 0.008089435286819935, + 0.013113245368003845, + -0.05482920631766319, + -0.05057546868920326, + -0.04338812083005905, + -0.013927322812378407, + -0.06559555977582932, + 0.017733683809638023, + 0.04379882663488388, + -0.04391616955399513, + 0.02923344261944294, + 0.03379520773887634, + -0.008338792249560356, + -0.07991158962249756, + 0.0049321348778903484, + -0.02961481176316738, + 0.09199807047843933, + 0.010436324402689934, + 0.03887035697698593, + -0.03904637321829796, + 0.00584155460819602, + -0.05004741996526718, + 0.07568718492984772, + 0.0013641294790431857, + 0.036552805453538895, + -0.01802704483270645, + 0.02110733836889267, + -0.06283796578645706, + 0.003716519568115473, + -0.009504902176558971, + 0.008192110806703568, + 0.03661147505044937, + 0.0018142556073144078, + -0.026065140962600708, + 0.07551117241382599, + 0.011602435261011124, + 0.09587043523788452, + -0.03904637321829796, + -0.03983844816684723, + -0.06137116253376007, + 0.020153913646936417, + -0.028734728693962097, + -0.029145434498786926, + 0.00669596903026104, + -0.006670299917459488, + 0.028837405145168304, + 0.015430798754096031, + 0.05233563482761383, + -0.006486949510872364, + -0.0025357408449053764, + -0.03048022836446762, + -0.020491279661655426, + -0.01802704483270645, + 0.022295450791716576, + -0.0646568089723587, + -0.035878073424100876, + -0.0935235470533371, + 0.04450289160013199, + 0.04860994964838028, + -0.009204206988215446, + 0.029057426378130913, + 0.017821691930294037, + -0.01271720789372921, + -0.018041713163256645, + 0.012460516765713692, + -0.014140008948743343, + 0.07052402943372726, + -0.00419506523758173, + -0.047993890941143036, + 0.018877793103456497, + -0.02106333337724209, + 0.03925172612071037, + -0.01738165132701397, + -0.027443939819931984, + -0.07991158962249756, + 0.010663678869605064, + 0.034029897302389145, + -0.012563193216919899, + 0.002090198453515768, + 0.06782510876655579, + 0.0070113325491547585, + 0.06377672404050827, + 0.023952940478920937, + 0.010539000853896141, + -0.06976129114627838, + -0.036934174597263336, + -0.04403351619839668, + -0.0963984876871109, + -0.012071812525391579, + -0.01726430654525757, + -0.006662966217845678, + 0.009563574567437172, + -0.013289261609315872, + -0.049343351274728775, + -0.023454226553440094, + 0.051308874040842056, + -0.0012293667532503605, + -0.007246021181344986, + 0.05940563976764679, + -0.023351550102233887, + 0.09428628534078598, + 0.013113245368003845, + 0.04473758116364479, + 0.03766757622361183, + -0.0061459168791770935, + 0.04101189598441124, + -0.0711694210767746, + 0.011580432765185833, + 0.028118669986724854, + -0.051455553621053696, + 0.0027905984316021204, + -0.04837526008486748, + -0.03473396599292755, + -0.04021982103586197, + 0.029394790530204773, + -0.017880365252494812, + -0.042537372559309006, + 0.04130525514483452, + 0.03596608340740204, + -0.01606152579188347, + -0.0963984876871109, + 0.03675815835595131, + -0.03728620707988739, + -0.028280017897486687, + 0.046556420624256134, + 0.04764185845851898, + -0.05776281654834747, + -0.03631811589002609, + -0.011096387170255184, + 0.0021800403483211994, + 0.04852193966507912, + -0.002660419326275587, + -0.009996282868087292, + -0.026461180299520493, + -0.017337646335363388, + 0.05075148493051529, + -0.011800453998148441, + 0.0005349257844500244, + 0.003478163620457053, + 0.10748753696680069, + -0.013736637309193611, + 0.01414734311401844, + -0.014668059535324574, + 0.05685339868068695, + 0.04033716395497322, + 0.006241259165108204, + 0.0002993200905621052, + 0.012137819081544876, + -0.03200570493936539, + 0.017704347148537636, + 0.031213629990816116, + 0.04177463427186012, + -0.08090901374816895, + -0.009402225725352764, + 0.0033846546430140734, + -0.015284118242561817, + -0.07316428422927856, + -0.08783233910799026, + -0.042801398783922195, + -0.060139045119285583, + 0.05661870911717415, + 0.019948560744524002, + -0.0015685656107962132, + 0.031741682440042496, + -0.0017840027576312423, + 0.06541954725980759, + 0.0037696913350373507, + -0.010707683861255646, + -0.0030454557854682207, + 0.021914081647992134, + -0.03446993976831436, + 0.1064901128411293, + 0.006054241675883532, + 0.05468252673745155, + 0.019581859931349754, + 0.02057928778231144, + 0.017513662576675415, + -0.04435621201992035, + 0.06072576716542244, + -0.10414322465658188, + 0.038430314511060715, + 0.06219257414340973, + 0.00931421760469675, + -0.00858081504702568, + 0.019963229075074196, + -0.037872929126024246, + -0.010245639830827713, + -0.004495760425925255, + -0.001908681239001453, + -0.06624095886945724, + -0.01689760386943817, + 0.08079167455434799, + 0.04890330880880356, + 0.057469457387924194 + ] + }, + { + "id": "a1e5a465-a21c-41a6-9c44-ed7d0ff76451", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "inichols", + "reviewDate": "2022-05-23T16:43:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f96bf5ac-c6e4-422e-bb45-983fb73b09b5", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "timothyjohnson", + "reviewDate": "2022-04-02T23:49:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7fe0828f-6bc1-4432-9ab5-9dc1c01dfa5a", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "xevans", + "reviewDate": "2021-08-03T10:50:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e2ba825d-6014-4462-a12d-9781876b02f8", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "mckinneykimberly", + "reviewDate": "2022-03-14T09:17:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ee2650fd-d494-4303-911b-54706a4c2504", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "natalie05", + "reviewDate": "2021-06-12T02:06:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ccc68746-b743-4bf7-be02-ebf4f0107f58", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "lewisann", + "reviewDate": "2021-06-26T07:57:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f43f2942-9bde-4a9b-a2f4-747ba3002d7e", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "cobbtracey", + "reviewDate": "2021-10-08T23:22:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "81d4f9bc-6565-49c3-9d35-b48e2af9b41a", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "ginataylor", + "reviewDate": "2021-06-28T12:06:22", + "stars": 3, + "verifiedUser": false + }, + { + "id": "db877cba-bc20-4e19-a956-622d33d08c49", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "kathryn79", + "reviewDate": "2022-05-23T13:24:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fe7cf037-b2f1-4278-ba02-cdded692e7e2", + "productId": "a30ce4df-d803-425d-9bae-cdc5375e422d", + "category": "Media", + "docType": "customerRating", + "userName": "ellenholmes", + "reviewDate": "2021-04-16T12:30:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "product", + "name": "Luxe TV Micro (Black)", + "description": "This Luxe TV Micro (Black) is based off of the '30s show called \"Gizmo\" which is now a TV series. It also looks pretty cool", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-10-28T21:32:56", + "price": 781.13, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-01-17T09:46:49", + "newPrice": 851.43 + }, + { + "priceDate": "2021-08-22T09:46:49", + "newPrice": 842.43 + }, + { + "priceDate": "2022-03-27T09:46:49", + "newPrice": 814.31 + }, + { + "priceDate": "2022-10-30T09:46:49", + "newPrice": 714.42 + }, + { + "priceDate": "2024-10-09T09:46:49", + "newPrice": 781.13 + } + ], + "descriptionVector": [ + -0.040025390684604645, + 0.027557654306292534, + -0.05115729942917824, + 0.02366148680448532, + -0.0032035154290497303, + -0.008825128898024559, + -0.029091384261846542, + 0.010748474858701229, + 0.02116299234330654, + 0.03804638609290123, + 0.04343917593359947, + 0.007211002055555582, + 0.06055757403373718, + -0.006369924638420343, + 0.11606868356466293, + -0.0016373180551454425, + -0.06862202286720276, + -0.0027164944913238287, + 0.029091384261846542, + 0.01344486977905035, + 0.09009423851966858, + -0.074014812707901, + -0.04470079019665718, + 0.0074089025147259235, + 0.010828872211277485, + 0.006536903325468302, + -0.059073321521282196, + 0.02612287551164627, + 0.003896167501807213, + -0.04519554227590561, + -0.0005461592227220535, + 0.001396899693645537, + -0.011329807341098785, + 0.024477826431393623, + -0.04435446485877037, + -0.08069396018981934, + 0.057688016444444656, + 0.10038506239652634, + 0.033568885177373886, + -0.027829768136143684, + 0.01939425617456436, + 0.004814549814909697, + -0.04638294503092766, + -0.016969973221421242, + -0.01178745273500681, + 0.02497257851064205, + -0.025405485183000565, + -0.007439824752509594, + 0.02723606675863266, + -0.019183985888957977, + 0.0076377252116799355, + -0.003905444173142314, + -0.013383026234805584, + 0.015003337524831295, + -0.0472240224480629, + -0.02619708888232708, + 0.025244692340493202, + 0.07777492702007294, + -0.00959817785769701, + -0.0464818961918354, + -0.03896167501807213, + -0.02646920084953308, + -0.010773212648928165, + 0.01596810296177864, + 0.02043323405086994, + 0.017971845343708992, + -0.020260071381926537, + 0.018874766305088997, + 0.048559851944446564, + 0.07609277218580246, + -0.013531452044844627, + 0.032183580100536346, + -0.00045648548984900117, + -0.00798405148088932, + 0.04942566901445389, + -0.05442265793681145, + 0.0026515584904700518, + 0.0025773458182811737, + -0.04049540311098099, + -0.03757636994123459, + 0.04712507501244545, + 0.00032178169931285083, + 0.01538676954805851, + 0.023203842341899872, + 0.02815135568380356, + 0.014186996966600418, + -0.011193751357495785, + -0.08371194452047348, + -0.018602654337882996, + 0.07050208002328873, + -0.02215249463915825, + 0.0982576310634613, + -0.007105867378413677, + -0.0031880545429885387, + -0.052641551941633224, + -0.01946846954524517, + 0.0014888925943523645, + 0.044601842761039734, + -0.07119473069906235, + 0.02488599717617035, + 0.053680531680583954, + -0.012442998588085175, + 0.0232409480959177, + -0.07421271502971649, + 0.03549841418862343, + 0.020359020680189133, + -0.010136219672858715, + 0.008930263109505177, + 0.024675726890563965, + -0.12843747437000275, + 0.07822020351886749, + -0.005417528096586466, + -0.010507283732295036, + -0.04717455059289932, + -0.00429815286770463, + 0.07495484501123428, + 0.02565286122262478, + -0.0473971888422966, + 0.0014664741465821862, + -0.006524534430354834, + 0.05897437036037445, + -0.008757100440561771, + -0.03431101143360138, + 0.04024802893400192, + -0.007347058970481157, + 0.0008418504730798304, + -0.02785450592637062, + 0.012529579922556877, + 0.04482448101043701, + -0.008515909314155579, + -0.12566685676574707, + 0.10152299702167511, + 0.0756474956870079, + 0.035795267671346664, + -0.014731223694980145, + 0.0483124777674675, + -0.0119420625269413, + -0.05462055653333664, + 0.014805436134338379, + -0.0050588333979249, + 0.025949712842702866, + -0.023995444178581238, + 0.009029213339090347, + -0.0793086513876915, + 0.00779851945117116, + 0.003143217647448182, + -0.053185779601335526, + -0.013605664484202862, + -0.026172351092100143, + 0.042177557945251465, + 0.058875419199466705, + -0.009066320024430752, + -0.0021305233240127563, + -0.034137848764657974, + 0.011063878424465656, + 0.07995183020830154, + -0.05739116668701172, + 0.012245098128914833, + -0.04650663584470749, + 0.02331516146659851, + 0.05843014270067215, + -0.04257335886359215, + -0.05917227268218994, + 0.012913011945784092, + 0.03881324827671051, + -0.020631134510040283, + 0.08183188736438751, + -0.010593865066766739, + -0.09543754905462265, + -0.0016234031645581126, + 0.05308682844042778, + -0.008621043525636196, + -0.009350801818072796, + 0.015535195358097553, + -0.045096591114997864, + 0.023649118840694427, + 0.0658019408583641, + 0.01766262575984001, + -0.034830499440431595, + -0.024514934048056602, + 0.01812027208507061, + 0.11181382089853287, + -0.04804036393761635, + -0.05565953627228737, + -0.020791929215192795, + -0.006505981553345919, + 0.045022379606962204, + 0.013667508028447628, + -0.026667101308703423, + -0.026073399931192398, + -0.020754823461174965, + 0.034409962594509125, + 0.008163399063050747, + -0.05788591876626015, + -0.020495077595114708, + -0.059221744537353516, + 0.01657417230308056, + -0.03027878701686859, + -0.0862351730465889, + 0.06693986803293228, + -0.030649852007627487, + 0.0027396860532462597, + 0.10132509469985962, + -0.018243959173560143, + -0.029140859842300415, + -0.00012339797103777528, + -0.01198535319417715, + 0.035003662109375, + 0.018590284511446953, + 0.010909268632531166, + -0.017106030136346817, + -0.028522420674562454, + 0.02362438105046749, + 0.05373000726103783, + 0.05635218694806099, + -0.003234437434002757, + 0.029759299010038376, + -0.03661160543560982, + -0.004533160012215376, + -0.05009358376264572, + 0.06357555836439133, + 0.009876475669443607, + 0.037601109594106674, + -0.006883229129016399, + -0.00023520019021816552, + -0.0335441455245018, + 0.007186264730989933, + 0.08069396018981934, + 0.05813329294323921, + 0.005519570782780647, + -0.100632444024086, + -0.03277728334069252, + -0.029833510518074036, + 0.0331730842590332, + 0.015720726922154427, + 0.011045325547456741, + -0.01800895296037197, + -0.040990155190229416, + -0.009845553897321224, + 0.04717455059289932, + -0.07267898321151733, + -0.04742192476987839, + -0.01188640296459198, + -0.000873545475769788, + 0.08069396018981934, + -0.00758825009688735, + 0.08544357120990753, + -0.03401416167616844, + -0.068918876349926, + -0.015881521627306938, + -0.05150362476706505, + -0.011818374507129192, + 0.004353812430053949, + 0.02619708888232708, + -0.03666108101606369, + -0.0029499554075300694, + 0.025751812383532524, + -0.03886272385716438, + 0.03547367826104164, + 0.006883229129016399, + -0.10894426703453064, + -0.07030417770147324, + 0.022474084049463272, + -0.0007173895719461143, + -0.02681552805006504, + 0.023525429889559746, + 0.015634145587682724, + -0.1339786946773529, + 0.00152445281855762, + -0.021756693720817566, + -0.0009369355393573642, + -0.0031215723138302565, + 0.06461453437805176, + 0.05363105610013008, + -0.06698934733867645, + 0.0023732606787234545, + -0.06021124869585037, + 0.07287688553333282, + -0.04059435427188873, + -0.0577869676053524, + 0.06174497678875923, + 0.021064043045043945, + -0.0026531044859439135, + -0.06273448467254639, + 0.06911677867174149, + -0.016240214928984642, + 0.033989422023296356, + 0.012257467024028301, + 0.02120009809732437, + -0.004322890657931566, + -0.003757018595933914, + 0.010334120132029057, + 0.08227716386318207, + -0.02065587230026722, + 0.04432972893118858, + 0.0444781519472599, + 0.03619106858968735, + -0.0012940842425450683, + 0.013877777382731438, + -0.04663032293319702, + -0.04482448101043701, + 0.03507787734270096, + -0.008033526130020618, + -0.05066254734992981, + -0.06901782751083374, + 0.044255513697862625, + 0.023710962384939194, + 0.06748409569263458, + -0.014335422776639462, + -0.02220197021961212, + 0.033915210515260696, + 0.003355033230036497, + -0.09217219054698944, + 0.010402148589491844, + 0.05689641460776329, + -0.05585743486881256, + 0.010643339715898037, + -0.012374970130622387, + 0.017872896045446396, + -0.01069281529635191, + 0.03418732434511185, + -0.021299049258232117, + -0.09049003571271896, + 0.05966702103614807, + 0.0692652016878128, + -0.0024536577984690666, + 0.003617869922891259, + -0.03092196397483349, + -0.021633006632328033, + -0.024712834507226944, + -0.037328995764255524, + 0.043414436280727386, + 0.002452111802995205, + 0.03384099900722504, + 0.011867850087583065, + 0.01904793083667755, + 0.004517699126154184, + 0.0280771441757679, + 0.09276589006185532, + -0.024255188181996346, + 0.07000732421875, + 0.017588414251804352, + 0.0010343396570533514, + -0.0583311952650547, + -0.023438848555088043, + -0.04242493584752083, + -0.03069932572543621, + 0.03396468609571457, + 0.04408235102891922, + 0.03366783633828163, + 0.0016867931699380279, + -0.07634014636278152, + 0.058726996183395386, + -0.03678476810455322, + -0.019666370004415512, + 0.06441663950681686, + 0.06684091687202454, + -0.009511596523225307, + -0.013011963106691837, + 0.05019253119826317, + 0.009554887190461159, + -0.004644479136914015, + 0.07752755284309387, + 0.08430564403533936, + -0.025529174134135246, + 0.01692049950361252, + -0.0034818132407963276, + -0.024712834507226944, + -0.08306876569986343, + 0.018763447180390358, + 0.07599382102489471, + -0.06154707819223404, + -0.1482275277376175, + 0.048263002187013626, + 0.03604264184832573, + 0.03626528009772301, + 0.09904923290014267, + 0.0005055741057731211, + 0.016413379460573196, + 0.06852307170629501, + -0.08420669287443161, + -0.025974450632929802, + 0.06639564037322998, + -0.011348361149430275, + 0.02231328934431076, + -0.02065587230026722, + -0.07599382102489471, + -0.07406429201364517, + -0.07658752053976059, + -0.0393822155892849, + -0.0596175491809845, + -0.088609978556633, + 0.03970380127429962, + 0.08381089568138123, + 0.03220831975340843, + -0.03527577593922615, + -0.05254260078072548, + 0.024094395339488983, + 0.046754010021686554, + -0.011768899857997894, + 0.04559134319424629, + 0.07366848737001419, + 0.008262349292635918, + -0.007891285233199596, + -0.10775686055421829, + 0.025826023891568184, + -0.0443049892783165, + 0.02384701929986477, + 0.013321182690560818, + -0.09558597952127457, + 0.024712834507226944, + -0.048485640436410904, + -0.035869479179382324, + 0.02273382805287838, + 0.03708162158727646, + -0.04326601326465607, + 0.02508389763534069, + 0.028918221592903137, + 0.042944423854351044, + -0.022449346259236336, + 0.04170754551887512, + 0.04781772568821907, + 0.011206120252609253, + 0.010828872211277485, + 0.009332248941063881, + -0.06723672151565552, + -0.01351908314973116, + -0.027557654306292534, + 0.019987957552075386, + -0.11547498404979706, + 0.06441663950681686, + -0.07069998234510422, + -0.03972854092717171, + -0.06792937219142914, + -0.00048818052164278924, + -0.012653267942368984, + 0.024552039802074432, + 0.08217821270227432, + 0.00675954157486558, + 0.028052406385540962, + 0.005859712138772011, + -0.03525104001164436, + -0.017947107553482056, + 0.06204183027148247, + -0.07223370671272278, + -0.014372529461979866, + 0.049376193434000015, + 0.03250516951084137, + 0.025801287963986397, + -0.013605664484202862, + -0.01386540848761797, + 0.007334690075367689, + -0.04949988052248955, + 0.004446578677743673, + 0.05986492335796356, + -0.026444464921951294, + 0.06085442751646042, + 0.06278395652770996, + 0.009511596523225307, + -0.026667101308703423, + 0.06703881919384003, + 0.08702677488327026, + -0.031911466270685196, + -0.017910001799464226, + -0.041484907269477844, + -0.06313028186559677, + -0.0011989991180598736, + 0.08390983939170837, + -0.03770006075501442, + 0.04569029435515404, + 0.007248108275234699, + -0.06352608650922775, + -0.0410148948431015, + 0.03532525151968002, + -0.044181302189826965, + -0.024650990962982178, + 0.024836521595716476, + -0.03173830360174179, + 0.006274066399782896, + 0.0068646762520074844, + -0.02253592759370804, + 0.020532185211777687, + 0.029437709599733353, + 0.027631867676973343, + 0.046951912343502045, + 0.02176906354725361, + 0.017106030136346817, + 0.012257467024028301, + -0.034212060272693634, + -0.017934739589691162, + 0.01715550571680069, + -0.04388445243239403, + -0.03930800035595894, + -0.04821352660655975, + -0.034212060272693634, + 0.022993572056293488, + -0.038219548761844635, + 0.03144145384430885, + -0.045566607266664505, + -0.0013165026903152466, + -0.01896134950220585, + 0.08262348920106888, + -0.07643909752368927, + 0.05862804502248764, + 0.02612287551164627, + 0.003726096823811531, + 0.03574579209089279, + 0.026766052469611168, + 0.03671055659651756, + -0.007396534085273743, + -0.0022928635589778423, + 0.027137115597724915 + ] + }, + { + "id": "d7b9148c-2702-433b-a3d7-f2d597de22d8", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "boyerchristopher", + "reviewDate": "2022-08-17T08:04:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1b1f74c8-1210-49ef-bc91-f7cd7f7059dd", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "kmartin", + "reviewDate": "2022-07-26T22:01:28", + "stars": 4, + "verifiedUser": true + }, + { + "id": "eea1cc74-67b9-4e02-85ec-7bbe9d5c0dda", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "prestoncox", + "reviewDate": "2022-02-04T13:11:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c95aebd2-aadf-4d91-9528-b697198fa63f", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "sanchezjonathan", + "reviewDate": "2022-07-09T12:43:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "34911fc2-5e04-44d2-a5e5-a83a1d63796d", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "audrey60", + "reviewDate": "2021-01-17T09:46:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c5578f34-17ef-409a-a875-81d412de6b2a", + "productId": "841b18a6-cf4a-4f67-beb7-d6600bd3fc84", + "category": "Media", + "docType": "customerRating", + "userName": "macdonaldvictoria", + "reviewDate": "2022-11-01T11:05:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Ultra (Silver)", + "description": "This Premium Computer Ultra (Silver) is the only computer computer that supports an Apple Remote for use with multiple computers.\n\nThe Apple Remote is the ultimate companion for a Windows or Macintosh computer. If you're looking for even higher security features, these are the computer security tools for you!\n\nSecure Key Technology", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-12-28T14:37:32", + "price": 698.75, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2021-02-16T17:35:29", + "newPrice": 728.12 + }, + { + "priceDate": "2021-07-19T17:35:29", + "newPrice": 754.94 + }, + { + "priceDate": "2021-12-19T17:35:29", + "newPrice": 672.16 + }, + { + "priceDate": "2022-05-21T17:35:29", + "newPrice": 760.28 + }, + { + "priceDate": "2022-10-21T17:35:29", + "newPrice": 720.18 + }, + { + "priceDate": "2025-03-09T17:35:29", + "newPrice": 698.75 + } + ], + "descriptionVector": [ + -0.017573390156030655, + -0.002520719775930047, + -0.05187341570854187, + -0.003950430545955896, + 0.03790849819779396, + 0.014798643998801708, + -0.04502122849225998, + 0.025676168501377106, + 0.032801926136016846, + 0.060549382120370865, + 0.09004245698451996, + -0.06534330546855927, + 0.0007799901650287211, + -0.04877299815416336, + -0.024412551894783974, + 0.045594412833452225, + -0.023709096014499664, + -0.05367114022374153, + -0.024412551894783974, + 0.00604777317494154, + 0.030717607587575912, + -0.030587337911128998, + -0.07232576608657837, + -0.00433798274025321, + 0.011457225307822227, + 0.04429171606898308, + 0.00631482619792223, + 0.0032648856285959482, + 0.007952968589961529, + 0.021377267315983772, + 0.0736805722117424, + -0.015020103193819523, + -0.04556836187839508, + 0.00974417757242918, + -0.018732789903879166, + -0.04265031963586807, + -0.044969119131565094, + -0.03035285323858261, + 0.04465647041797638, + -0.02623632922768593, + -0.030821824446320534, + -0.002069660695269704, + 0.04033151641488075, + 0.015215507708489895, + 0.026731353253126144, + -0.019879164174199104, + 4.999610609957017e-05, + -0.02712216228246689, + -0.035537589341402054, + 0.03975832834839821, + -0.0021038565319031477, + 0.02393055334687233, + -0.01552815455943346, + 0.06716708838939667, + -0.0005377698107622564, + -0.024516768753528595, + 0.033218786120414734, + 0.09150147438049316, + 0.009535745717585087, + -0.04113918915390968, + 0.04460436478257179, + 0.0366579107940197, + 0.0028529076371341944, + 0.04723581299185753, + -0.06362374871969223, + -0.003053197404369712, + 0.03360959514975548, + 0.006392988376319408, + 0.018107496201992035, + -0.0008923478308133781, + -0.030092313885688782, + -0.031994253396987915, + 0.030118366703391075, + -0.010076365433633327, + 0.02081710658967495, + 0.08774970471858978, + -0.0118806017562747, + 0.028086159378290176, + 0.05007569491863251, + 0.061278894543647766, + 0.043015073984861374, + 0.053619030863046646, + 0.00685218907892704, + 0.0092100715264678, + 0.102079376578331, + 0.01219324953854084, + -0.018576467409729958, + -0.0980149656534195, + -0.0077901314944028854, + 0.09478427469730377, + 0.045854952186346054, + 0.06576017290353775, + 0.13235406577587128, + -0.019253870472311974, + -0.02295353077352047, + 0.03371381387114525, + -0.040904704481363297, + -0.003014116548001766, + -0.05434854328632355, + -0.06789659708738327, + -0.005797004327178001, + 0.018915168941020966, + -0.057787664234638214, + -0.04366642236709595, + 0.005588572472333908, + 0.023995688185095787, + 0.06159153953194618, + 0.0521339550614357, + -0.004686454311013222, + -0.08389372378587723, + -0.06591649353504181, + -0.04611549153923988, + -0.018263820558786392, + -0.0025402603205293417, + -0.026314491406083107, + 0.029649395495653152, + -0.08451901376247406, + 0.009555286727845669, + -0.055130161345005035, + -0.008565236814320087, + 0.018368035554885864, + -0.00021026353351771832, + 0.046506304293870926, + 0.04981515556573868, + -0.06737551838159561, + 0.059819869697093964, + -0.024138985201716423, + 0.06325899064540863, + 0.018550412729382515, + -0.04077443480491638, + -0.07420165091753006, + 0.07753656059503555, + -0.01664847508072853, + 0.04007097706198692, + -0.06388428807258606, + 0.059924088418483734, + 0.04556836187839508, + 0.03704871982336044, + -0.046923164278268814, + 0.010161041282117367, + -0.08061092346906662, + 0.017664579674601555, + -0.06101835146546364, + 0.06466590613126755, + -0.10932237654924393, + -0.024152012541890144, + -0.0379345528781414, + 0.08999034762382507, + -0.11151091009378433, + 0.03392224386334419, + 0.017417065799236298, + -0.0185113325715065, + -0.02234126254916191, + -0.06695865094661713, + 0.0758691057562828, + 0.07633807510137558, + -0.023787258192896843, + 0.02294050343334675, + 0.005982638336718082, + 0.019162680953741074, + 0.017312850803136826, + 0.038221146911382675, + -0.02314893528819084, + 0.014433888718485832, + 0.046323925256729126, + 0.01984008401632309, + 0.09170990437269211, + 0.041243404150009155, + -0.08722862601280212, + 0.015228534117341042, + -0.0373874194920063, + -0.05393167957663536, + 0.008259102702140808, + -0.03488624095916748, + 0.06138310953974724, + 0.0006680396036244929, + -0.01427756529301405, + -0.015436965972185135, + 0.02635357156395912, + -0.09759809821844101, + -0.02090829610824585, + 0.06747972965240479, + -0.059298790991306305, + 0.03543337434530258, + 0.09624329209327698, + 0.015423938632011414, + 0.064092718064785, + 0.0327758714556694, + 0.07633807510137558, + -0.020335108041763306, + 0.009776744991540909, + 0.002870819764211774, + 0.005113088060170412, + -0.003256743773818016, + 0.03152528032660484, + 0.10124565660953522, + 0.05919457599520683, + -0.02313590794801712, + 0.030457068234682083, + -0.055130161345005035, + 0.025207197293639183, + 0.047730837017297745, + 0.053775355219841, + 0.007510051596909761, + -0.026014870032668114, + -0.059819869697093964, + -0.004354266449809074, + -0.0023350853007286787, + -0.037960607558488846, + 0.07362846285104752, + -0.03293219581246376, + -0.0037257149815559387, + 0.011014307849109173, + -0.0353812649846077, + 0.07863082736730576, + -0.03587628901004791, + 0.0009631820139475167, + 0.053619030863046646, + -0.05434854328632355, + 0.011737304739654064, + 0.07461851835250854, + 0.06013251841068268, + -0.01352200098335743, + 0.012473328970372677, + -0.03480807691812515, + -0.04244188591837883, + 0.011893629096448421, + 0.04306717962026596, + 0.035719968378543854, + 0.04903353750705719, + -0.10880129784345627, + 0.03517283499240875, + 2.128332926076837e-05, + 0.06992880254983902, + -0.009366394951939583, + 0.05585967004299164, + 0.009685556404292583, + -0.06060149148106575, + -0.024581903591752052, + 0.10088089853525162, + -0.07102306932210922, + -0.004885115660727024, + -0.039914652705192566, + -0.018472250550985336, + 0.010447634384036064, + -0.04259821027517319, + 0.016088314354419708, + 0.05223817005753517, + -0.07201311737298965, + 0.03264560177922249, + -0.0571102611720562, + 0.06065359711647034, + -0.050596773624420166, + 0.059663549065589905, + -0.07326371222734451, + 0.011372549459338188, + 0.002864306326955557, + -0.041946861892938614, + -0.015228534117341042, + -0.005275925155729055, + -0.030222583562135696, + 0.006366934161633253, + -0.031264740973711014, + 0.035355210304260254, + 0.00323557504452765, + 0.05794398859143257, + 0.045594412833452225, + -0.08342475444078445, + 0.02348763681948185, + -0.02484244294464588, + 0.0012554747518151999, + -0.010167554020881653, + 0.01789906434714794, + -0.07696337252855301, + 0.021676886826753616, + -0.024803360924124718, + -0.08649911731481552, + 0.058777712285518646, + -0.003784336382523179, + -0.05695393681526184, + 0.005816544406116009, + 0.01561934407800436, + 0.035277049988508224, + -0.05549491569399834, + 0.037491634488105774, + -0.02347460947930813, + -0.049789100885391235, + 0.023357367143034935, + 0.013834647834300995, + -0.016492150723934174, + 0.014850752428174019, + 0.038846440613269806, + 0.0361107774078846, + 0.05335849151015282, + 0.015788694843649864, + -0.02925858646631241, + 0.05658918246626854, + 0.09264785051345825, + 0.0032730274833738804, + -0.0285551305860281, + 0.03170765936374664, + 0.0070997015573084354, + -0.0361107774078846, + -0.00020018797658849508, + -0.009594367817044258, + 0.09499270468950272, + -0.030118366703391075, + 0.014850752428174019, + -0.05335849151015282, + 0.015332750044763088, + 0.050310179591178894, + -0.004256564192473888, + -0.059663549065589905, + 0.02635357156395912, + 0.1024441346526146, + 0.006884756498038769, + 0.013059542514383793, + 0.02028300054371357, + -0.013951891101896763, + 0.011802439577877522, + -0.006493947468698025, + 0.01692204177379608, + -0.11828494071960449, + 0.0582045279443264, + 0.044890958815813065, + -0.10494531691074371, + -0.037778228521347046, + 0.010206635110080242, + -0.06174786388874054, + -0.06966826319694519, + -0.03165555000305176, + -0.04939829185605049, + 0.02759113349020481, + 0.0311344712972641, + 0.08300788700580597, + -0.0648222267627716, + 0.0012628023978322744, + 0.07315949350595474, + 0.0651869848370552, + 0.0891566202044487, + 0.04377063736319542, + 0.0162055566906929, + 0.004513847175985575, + -0.009073288179934025, + -0.002750320127233863, + 0.017104418948292732, + -0.02170294150710106, + -0.057891879230737686, + -0.03730925917625427, + 0.007666375022381544, + 0.0019182221731171012, + -0.11130248010158539, + 0.010519282892346382, + -0.03965411335229874, + 0.048460349440574646, + -0.0011105496669188142, + -0.018016306683421135, + -0.04111313447356224, + -0.027565080672502518, + 0.02774745784699917, + -0.0069303507916629314, + -0.014603239484131336, + -0.017013229429721832, + 0.09853604435920715, + -0.06393639743328094, + 0.03707477077841759, + -0.013535027392208576, + 0.035277049988508224, + -0.008604316972196102, + 0.017651552334427834, + 0.021507536992430687, + -0.03681423142552376, + -0.028060104697942734, + 0.09269995987415314, + -0.023161962628364563, + 0.03704871982336044, + 0.0010340161388739944, + 0.06675022095441818, + -0.00020792274153791368, + 0.025063900277018547, + -0.041972916573286057, + 0.029310693964362144, + 0.02998809702694416, + -2.3980321202543564e-05, + -0.007907373830676079, + -0.10327786207199097, + -0.029519125819206238, + -0.08873976022005081, + -0.022210992872714996, + 0.05260292813181877, + -0.05072704330086708, + 0.03694450110197067, + -0.07722391188144684, + -0.008011589758098125, + 0.06909507513046265, + -0.053775355219841, + -0.017404038459062576, + 0.04582890123128891, + 0.006858702749013901, + -0.005005615297704935, + 0.047340027987957, + 0.03780428320169449, + -0.05062282830476761, + -0.05825663357973099, + -0.0666981115937233, + -0.11286571621894836, + -0.016166476532816887, + 0.033505380153656006, + -0.011594008654356003, + 0.02064775675535202, + 0.0035759047605097294, + -0.04887721315026283, + -0.03871617093682289, + 0.09113672375679016, + 0.00018237765470985323, + -0.031994253396987915, + 0.03960200399160385, + 0.04754846170544624, + 0.05846506729722023, + -0.030743662267923355, + 0.022823261097073555, + -0.0024034769739955664, + -0.028398806229233742, + 0.007132268976420164, + 0.08014195412397385, + 0.03426094725728035, + 0.0189672764390707, + -0.038559846580028534, + 0.02881566993892193, + -0.06060149148106575, + 0.032801926136016846, + -0.01779484935104847, + 0.03303641080856323, + -0.03379197418689728, + -0.0016446557128801942, + -0.002563057467341423, + -0.02083013392984867, + 0.04994542524218559, + 0.03212452307343483, + 0.06643757224082947, + -0.014616266824305058, + -0.04298901930451393, + -0.0027486919425427914, + -0.008741100318729877, + -0.0019459044560790062, + -0.0066144466400146484, + 0.021937426179647446, + -0.014446916058659554, + 0.030926039442420006, + -0.023813311010599136, + 0.01133998204022646, + 0.023813311010599136, + -0.0010885666124522686, + 0.020751971751451492, + 0.03327089548110962, + -0.00722997123375535, + 0.015423938632011414, + 0.017586417496204376, + -0.056901827454566956, + 0.022797206416726112, + 0.027721403166651726, + 0.059403009712696075, + 0.03558969870209694, + -0.027434810996055603, + -0.022992610931396484, + -0.028346698731184006, + -0.07467062026262283, + -0.03882038593292236, + 0.002789401216432452, + 0.027252431958913803, + 0.006858702749013901, + -0.03598050773143768, + 0.06784448772668839, + -0.02101251110434532, + -0.0017049054149538279, + -0.08019406348466873, + 0.030378906056284904, + -0.02730454131960869, + -0.05260292813181877, + -0.027981942519545555, + -0.019006356596946716, + 0.012694787234067917, + 0.024972712621092796, + -0.023917527869343758, + 0.046662624925374985, + -0.02581946551799774, + -0.004162118770182133, + 0.04285874962806702, + -0.01237562671303749, + 0.02217191271483898, + 0.04895537346601486, + -0.004813467618077993, + 0.010206635110080242, + -0.02153358981013298, + -0.02028300054371357, + 0.004321699030697346, + -0.0257934108376503, + 0.02554589882493019, + 0.016974149271845818, + 0.1333962231874466, + 0.006682838313281536, + -0.01840711571276188, + 0.019449274986982346, + 0.05612020939588547, + -0.0162967462092638, + 0.02127305045723915, + -0.021142780780792236, + 0.019436247646808624, + -0.009600880555808544, + -0.01627069152891636, + 0.00540619483217597, + -0.0013026975793763995 + ] + }, + { + "id": "df59530f-1ca1-4afe-9243-5dc9cb952357", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "thomas20", + "reviewDate": "2022-06-01T07:56:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ecd21401-ed71-4927-ba06-ba4bbf3bb0d3", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "teresacox", + "reviewDate": "2022-09-07T12:02:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1f79520e-005b-46fa-8d98-caace2a4186d", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "reynoldsdaniel", + "reviewDate": "2022-10-23T23:39:40", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5435fc1d-c79b-4eb9-8523-edeca54e2c05", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "drichards", + "reviewDate": "2022-04-26T09:22:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5519b3de-7a07-4cb4-a98a-29e2d56ea836", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "madison12", + "reviewDate": "2021-10-09T14:04:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b1125877-2d56-4fb9-9813-bbb7daf817e4", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "dana11", + "reviewDate": "2021-02-16T17:35:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "03b98bbe-2cbc-464a-843d-e3667363c37a", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "natalie96", + "reviewDate": "2021-06-22T02:03:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "823c72a2-e8f8-4593-b47a-127b6dd155b8", + "productId": "f271e790-63e3-4d07-8557-b7d727e21f4b", + "category": "Electronics", + "docType": "customerRating", + "userName": "ralphthomas", + "reviewDate": "2021-12-12T17:47:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "productId": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Pro (Silver)", + "description": "This Amazing Stand Pro (Silver) is a small tool called an Ultra Compact Pro featuring the ability to hold the same price as its predecessor. The first model of this product, the Silver PRO-T, has been available, but this product is still going", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-09-18T23:13:15", + "price": 636.94, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-12-04T20:24:05", + "newPrice": 609.53 + }, + { + "priceDate": "2022-03-10T20:24:05", + "newPrice": 609.73 + }, + { + "priceDate": "2022-06-14T20:24:05", + "newPrice": 682.23 + }, + { + "priceDate": "2022-09-18T20:24:05", + "newPrice": 606.56 + }, + { + "priceDate": "2024-10-15T20:24:05", + "newPrice": 636.94 + } + ], + "descriptionVector": [ + 0.015169565565884113, + 0.020942654460668564, + -0.04296691715717316, + 0.04375108331441879, + 0.00138919148594141, + -0.09269388765096664, + -0.048158638179302216, + 0.04293987527489662, + -0.0067735761404037476, + 0.03485484793782234, + 0.008463590405881405, + -0.00481654005125165, + 0.05318812280893326, + -0.044048525393009186, + 0.03188042342662811, + -0.05667630955576897, + 0.00867991242557764, + 0.004556277766823769, + -0.026688702404499054, + -0.015250686556100845, + 0.04293987527489662, + -0.13693170249462128, + -0.025728773325681686, + -0.021267136558890343, + -0.0027919032145291567, + -0.042290911078453064, + -0.027513427659869194, + 0.01800878904759884, + 0.03106921724975109, + 0.07571262866258621, + 0.011985579505562782, + 0.021131934598088264, + -0.02103729546070099, + 0.030176891013979912, + 0.018414393067359924, + 0.08204004168510437, + 0.00400871317833662, + 0.04485973343253136, + 0.012519624084234238, + 0.051322344690561295, + 0.024958128109574318, + 0.03712622821331024, + -0.005495925433933735, + -0.011579976417124271, + 0.031177379190921783, + -0.009646600112318993, + -0.08414918184280396, + -0.01887407712638378, + -0.04166898503899574, + 0.024079319089651108, + 0.04737447202205658, + 0.02931160293519497, + -0.026864463463425636, + 0.02974424697458744, + 0.03136666119098663, + -0.08225636184215546, + -0.003647050354629755, + 0.09539791196584702, + 0.020320728421211243, + -0.019550083205103874, + 0.0016849440289661288, + -0.024579564109444618, + 0.06781688332557678, + 0.019157998263835907, + 0.015115485526621342, + -0.008375709876418114, + -0.03150186315178871, + -0.0236196368932724, + 0.021807940676808357, + 0.030285051092505455, + 0.008990874513983727, + 0.018914636224508286, + 0.04823976010084152, + 0.026796862483024597, + 0.019942166283726692, + -0.012553424574434757, + 0.08193188160657883, + 0.041587866842746735, + 0.07836256921291351, + -0.004062793683260679, + 0.053783006966114044, + 0.05910992994904518, + 0.003106245771050453, + -0.0706290677189827, + -0.0010080933570861816, + 0.0023930598981678486, + 0.024714766070246696, + -0.1062140017747879, + -0.014101477339863777, + 0.05072746053338051, + -0.0404251366853714, + 0.04369700327515602, + -0.012925227172672749, + 0.004116874188184738, + -0.030176891013979912, + 0.025728773325681686, + -0.02633717842400074, + 0.056297749280929565, + -0.015480528585612774, + -0.029798327013850212, + 0.001147519564256072, + -0.027243025600910187, + 0.00193844607565552, + 0.0037450711242854595, + -0.07073722779750824, + 0.05437789112329483, + 0.01754910498857498, + 0.05759567767381668, + -0.048483122140169144, + -0.10448342561721802, + 0.052512116730213165, + 0.03755887225270271, + -0.0111473323777318, + -0.008389229886233807, + 0.007307620719075203, + 0.04180418699979782, + -0.031474821269512177, + -0.02205130271613598, + -0.03334059566259384, + -0.09307245165109634, + -0.04275059327483177, + 0.0001747052010614425, + 0.00855823140591383, + 0.06889849156141281, + 0.0332324355840683, + 0.04047921672463417, + 0.0020026667043566704, + 0.06024562194943428, + 0.00402561342343688, + -0.05900176987051964, + -0.08977354317903519, + -0.014912683516740799, + 0.04202050715684891, + 0.008889473974704742, + -0.06067826226353645, + 0.06673527508974075, + 0.061922114342451096, + 0.04220978915691376, + -0.029041200876235962, + 0.076307512819767, + -0.08052578568458557, + -0.016251174733042717, + 0.040019530802965164, + 0.04434596747159958, + -0.0347466878592968, + -0.02430916205048561, + -0.03639614209532738, + -0.0018066250486299396, + -0.0019114058231934905, + 0.056297749280929565, + 0.014155557379126549, + -0.12806250154972076, + -0.035449735820293427, + -0.06451797485351562, + 0.013526872731745243, + 0.006060390267521143, + -0.07641567289829254, + -0.021821461617946625, + 0.030906977131962776, + 0.12384422868490219, + -0.003339467803016305, + 0.008105306886136532, + -0.04047921672463417, + 0.05694671347737312, + -0.06175987422466278, + -0.015426448546350002, + 0.09242349117994308, + 0.06868217140436172, + -0.054161570966243744, + 0.014655801467597485, + -0.01673789881169796, + -0.01383107528090477, + 0.0017102941637858748, + -0.12481767684221268, + 8.365569374291226e-05, + 5.450295429909602e-05, + 0.03718030825257301, + -0.022970670834183693, + 0.030393213033676147, + -0.055865105241537094, + 0.007179179694503546, + 0.0381537564098835, + -0.0744147002696991, + -0.045373495668172836, + 0.033610999584198, + 0.060786426067352295, + 0.035449735820293427, + 0.08869193494319916, + -0.010789049789309502, + -0.01907687820494175, + 0.012073460035026073, + -0.0036740906070917845, + -0.010349646210670471, + 0.007253540214151144, + 0.029582004994153976, + -0.027378227561712265, + 0.0007689563790336251, + 0.00544860539957881, + -0.015615729615092278, + 0.047212231904268265, + -0.06008337810635567, + 0.07733504474163055, + 0.07711871713399887, + -0.02752694860100746, + 0.01470988243818283, + -0.01584557071328163, + -0.022646188735961914, + 0.00541480490937829, + 0.014358359389007092, + -0.039370566606521606, + -0.030582493171095848, + -0.03607165813446045, + -0.0011863898253068328, + 0.023633155971765518, + 0.024985168129205704, + 0.05456717312335968, + 0.0736575722694397, + -0.02141585759818554, + 0.019685283303260803, + -0.005310024134814739, + -0.001958726206794381, + -0.03082585521042347, + 0.060353782027959824, + -0.05521613731980324, + -0.05121418461203575, + -0.024336202070116997, + -0.0031670862808823586, + 0.02621549740433693, + 0.022754348814487457, + 0.01976640336215496, + -0.05878544971346855, + -0.02520149014890194, + 0.008869193494319916, + 0.052890680730342865, + -0.04794231802225113, + 0.0026769821997731924, + -0.019739363342523575, + -0.06781688332557678, + -0.08025538921356201, + 0.016886619850993156, + -0.0358823761343956, + 0.005830548238009214, + -0.05819056183099747, + -0.00017797960026655346, + 0.027770310640335083, + 0.018806476145982742, + 0.04453524947166443, + 0.002308559138327837, + -0.07371164858341217, + 0.0017880348023027182, + 0.0018066250486299396, + -0.051241226494312286, + 0.000644740357529372, + 0.018414393067359924, + 0.05521613731980324, + 0.051430508494377136, + 0.10486198961734772, + -0.019171519204974174, + 0.016697337850928307, + -0.04864536225795746, + 0.015439968556165695, + -0.05732527747750282, + -0.027581028640270233, + 0.08317573368549347, + -0.016129493713378906, + 0.04507605358958244, + 0.007801104802638292, + -0.027324147522449493, + -0.025363730266690254, + 0.07755136489868164, + -0.02456604316830635, + -0.041777145117521286, + 0.05218763276934624, + -0.007544222753494978, + 0.013824314810335636, + 0.044562291353940964, + -0.05248507484793663, + 0.10442934930324554, + 0.01026176568120718, + -0.05905584990978241, + 0.03450332581996918, + 0.05267435684800148, + 0.06262516230344772, + 0.04112818092107773, + 0.03942464664578438, + -0.03531453385949135, + 0.032042667269706726, + -0.031231459230184555, + 0.034205883741378784, + 0.020293688401579857, + -0.03196154534816742, + -0.020104406401515007, + 0.040262892842292786, + 0.03461148589849472, + 0.07928194105625153, + -0.041831228882074356, + -0.0016731139039620757, + 0.03658542409539223, + -0.010816089808940887, + -0.01818455010652542, + 0.057757917791604996, + 0.015764450654387474, + -0.01969880424439907, + -0.023227553814649582, + -0.004069553688168526, + 0.07717280089855194, + -0.07868705689907074, + -0.05640590935945511, + -0.09923762083053589, + -0.016440456733107567, + 0.12925226986408234, + -0.0061584110371768475, + -0.028527436777949333, + 0.0377751924097538, + 0.06213843449950218, + -0.043859243392944336, + 0.044048525393009186, + 0.022876029834151268, + 0.010349646210670471, + -0.016129493713378906, + -0.04212867096066475, + -0.039695050567388535, + -0.042858757078647614, + 0.038234878331422806, + 0.09204492717981339, + 0.014074437320232391, + 0.029636086896061897, + -0.002491080667823553, + 0.002291659126058221, + -0.032313067466020584, + -0.0086866719648242, + -0.04091186076402664, + 0.05010553449392319, + -0.018833516165614128, + 0.011762497946619987, + -0.01130281388759613, + 0.014669321477413177, + -0.018738875165581703, + -0.025863975286483765, + 0.022321704775094986, + 0.07219740003347397, + -0.006949337664991617, + 0.006384872831404209, + 0.009687160141766071, + 0.06181395426392555, + -0.05180906876921654, + 0.054026369005441666, + -0.05248507484793663, + -0.0123776625841856, + 0.030906977131962776, + 0.0014576370595023036, + -0.011823338456451893, + 0.005522965919226408, + -0.024106360971927643, + 0.11778721958398819, + 0.03947872668504715, + 0.06403125077486038, + -0.04704999178647995, + 0.038613442331552505, + -0.0385323204100132, + 0.009254517033696175, + -0.0355038158595562, + 0.003914072643965483, + 0.008740752935409546, + 0.05010553449392319, + 0.06733015924692154, + 0.014858603477478027, + 0.03650430217385292, + -0.07095354795455933, + -0.0034003083128482103, + -0.0717647522687912, + -0.011701657436788082, + 0.031150339171290398, + 0.03242122754454613, + 0.01950952224433422, + 0.008544711396098137, + 0.01913095824420452, + 0.021496977657079697, + 0.03515229374170303, + 0.0445893295109272, + 0.013824314810335636, + 0.0030927257612347603, + 0.0027766930870711803, + 0.04983513429760933, + 0.07711871713399887, + -0.0347466878592968, + -0.04391332343220711, + -0.03755887225270271, + -0.06316596269607544, + 0.007314380723983049, + -0.040641456842422485, + -0.03599053993821144, + 0.011890938505530357, + -0.006256431806832552, + 0.05916400998830795, + -0.09691216796636581, + 0.021632179617881775, + 0.010336126200854778, + 0.008159387856721878, + 0.049294330179691315, + 0.01768430694937706, + 0.01963120326399803, + -0.024714766070246696, + -0.00865287147462368, + -0.02186202071607113, + -0.006317272316664457, + 0.01051188725978136, + 0.10594359785318375, + 0.0324753113090992, + -0.11465055495500565, + 0.039695050567388535, + -0.06294964253902435, + -0.038045596331357956, + 0.05262027680873871, + 0.08139107376337051, + 0.06614039093255997, + 0.027188945561647415, + -0.004366996232420206, + 0.09620911628007889, + -0.06830360740423203, + 0.03196154534816742, + -0.06516694277524948, + 0.020185528323054314, + 0.006810756400227547, + -0.07993090152740479, + 0.034963011741638184, + -0.031177379190921783, + -0.032880913466215134, + -0.030285051092505455, + -0.0207804124802351, + 0.07690239697694778, + -0.038370080292224884, + -0.030285051092505455, + 0.02071281149983406, + -0.05437789112329483, + -0.02129417657852173, + 0.05824464187026024, + 0.007801104802638292, + 0.05862320587038994, + 0.03290795162320137, + -0.08420325815677643, + 0.0009058475261554122, + 0.05873136594891548, + 0.022632667794823647, + -0.0774432048201561, + -0.04561685770750046, + -0.08176963776350021, + 0.03991137072443962, + 0.042480193078517914, + -0.06846585124731064, + -0.035639017820358276, + 0.021618658676743507, + -0.03947872668504715, + 0.06478837877511978, + 0.05399932712316513, + -0.03509820997714996, + -0.05067338049411774, + 0.0510249026119709, + 0.00978856161236763, + 0.02033424936234951, + 0.034827809780836105, + 0.05332332104444504, + 0.023822437971830368, + -0.026932064443826675, + 0.00899763498455286, + 0.010484847240149975, + -0.0324753113090992, + 0.017535585910081863, + 0.002420100150629878, + 0.02620197832584381, + -0.0028595037292689085, + -0.045130133628845215, + -0.04750967398285866, + 0.04599542170763016, + -0.038424160331487656, + -0.023917078971862793, + -0.010349646210670471, + -0.022943630814552307, + -0.011120292358100414, + 0.006100950762629509, + -0.0011373794404789805, + 0.0052796038798987865, + -0.07809216529130936, + -0.004600218031555414, + 0.013824314810335636, + -0.05835280567407608, + -0.08176963776350021, + -0.062300678342580795, + 0.0012075150152668357, + 0.05351260304450989, + 0.025282610207796097, + 0.09123371541500092, + 0.08333797007799149, + -0.0009041575249284506, + -0.01813047006726265, + -0.022632667794823647, + -0.025120368227362633, + 0.03342171758413315, + -0.03006872907280922, + 0.07235964387655258, + -0.010396966710686684, + -0.0027581029571592808, + -0.02822999469935894, + 0.07663199305534363, + 0.04945657029747963, + -0.0035253693349659443, + -0.036531344056129456, + -0.02280842885375023, + -0.029798327013850212, + -0.04483269155025482, + -0.020807452499866486, + 0.06803320348262787 + ] + }, + { + "id": "d2a46b04-b42f-4dc9-ab20-ff083a5f2cdd", + "productId": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "category": "Accessory", + "docType": "customerRating", + "userName": "rebecca68", + "reviewDate": "2022-06-13T14:07:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "390c9fa0-292e-4bf0-9cf7-0a40223f0d11", + "productId": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "category": "Accessory", + "docType": "customerRating", + "userName": "kristenschwartz", + "reviewDate": "2021-12-04T20:24:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6ce55960-8320-4fff-badf-97e032e8c50d", + "productId": "332b17dc-b874-466a-93a0-f6a2cc8f95d1", + "category": "Accessory", + "docType": "customerRating", + "userName": "josephanderson", + "reviewDate": "2022-09-21T07:10:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone Pro (Silver)", + "description": "This Premium Phone Pro (Silver) is the most affordable mobile app for your Android smartphone. It utilizes Android's SIM support which means it can be set up with up to 2,400 lines of SIM enabled.\n\nA full range of Android apps are available for the Pro, allowing you to build up your own custom app with no additional developer fee.\n\n1GB of internal storage,", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-10-14T16:01:55", + "price": 138.03, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2021-03-11T15:54:57", + "newPrice": 130.9 + }, + { + "priceDate": "2022-02-27T15:54:57", + "newPrice": 138.03 + } + ], + "descriptionVector": [ + -0.05867443606257439, + 0.03766554966568947, + -0.0367521196603775, + 0.026314839720726013, + 0.05163565278053284, + 0.05507444590330124, + 0.0006808746256865561, + 0.05370430275797844, + 0.03299093618988991, + 0.09633998572826385, + -0.006723112426698208, + -0.03922375291585922, + -0.011082053184509277, + -0.01586412638425827, + 0.030949153006076813, + 0.025052156299352646, + 0.012425332330167294, + -0.06361770629882812, + 6.496014248114079e-05, + 0.005836548283696175, + 0.0621669627726078, + -0.03248048946261406, + -0.04717596620321274, + -0.0714087188243866, + 0.03935807943344116, + -0.014547714032232761, + -0.011404440738260746, + 0.0027218195609748363, + 0.011525335721671581, + -0.012418616563081741, + -0.003427040996029973, + 0.011129068210721016, + -0.027134239673614502, + 0.026046182960271835, + -0.019141728058457375, + 0.03465660288929939, + 0.0168312881141901, + -0.08220868557691574, + 0.021828286349773407, + 0.07065648585557938, + 0.04285060614347458, + -0.0525490827858448, + -0.05445653945207596, + 0.0005452873883768916, + 0.057975929230451584, + -0.04384463280439377, + -0.0053261020220816135, + 0.02599245309829712, + -0.04693417623639107, + -0.013365628197789192, + 0.007267140317708254, + 0.04521477594971657, + -0.029928261414170265, + 0.04701477289199829, + 0.04274314269423485, + 0.02665065973997116, + 0.013379060663282871, + 0.14614877104759216, + -0.015071592293679714, + -0.03669838607311249, + -0.0020384262315928936, + -0.04518791288137436, + -0.020390978083014488, + -0.010148474015295506, + -0.014708907343447208, + 0.004191031213849783, + -0.015420844778418541, + -0.031432732939720154, + -0.046235669404268265, + 0.08086540549993515, + -0.003724241629242897, + -0.04937894269824028, + 0.0065686353482306, + 0.0676475390791893, + -0.017946209758520126, + 0.09768326580524445, + 0.049432676285505295, + 0.03428048640489578, + 0.06469232589006424, + -0.009550714865326881, + 0.008314898237586021, + 0.042420756071805954, + 0.006289904937148094, + -0.0004399239260237664, + 0.022956641390919685, + 0.01341264322400093, + 0.062274422496557236, + -0.12906226515769958, + 0.04521477594971657, + 0.032641682773828506, + -0.026811853051185608, + 0.06034010276198387, + -0.005624981597065926, + -0.017556659877300262, + 0.05625653266906738, + 0.05991025269031525, + -0.01857755146920681, + 0.029579007998108864, + -0.03199690952897072, + -0.00505744619295001, + 0.0470416359603405, + -0.030895421281456947, + 0.00041221879655495286, + -0.022996939718723297, + 0.017301436513662338, + 0.04900282621383667, + 0.006938036996871233, + -0.04440880939364433, + 0.021264109760522842, + -0.13078166544437408, + -0.025831259787082672, + -0.03444167971611023, + 0.0019544712267816067, + -0.0051246099174022675, + -0.004983565770089626, + 0.024810366332530975, + -0.02519991807639599, + -0.04551029950380325, + 0.036241672933101654, + -0.10020862519741058, + -0.05604160949587822, + 0.03170138970017433, + -0.09515789896249771, + -0.07511617243289948, + -0.005766025744378567, + -0.039062559604644775, + 0.08387435227632523, + 0.044247616082429886, + 0.015085025690495968, + -0.0841430053114891, + -0.07791019231081009, + 0.02462230809032917, + 0.07474005222320557, + 0.02581782639026642, + 0.012915629893541336, + 0.017704419791698456, + 0.038713306188583374, + 0.13755178451538086, + -0.0005314348381944001, + 0.08575494587421417, + -0.008556688204407692, + -0.019423816353082657, + -0.010880561545491219, + 0.02407156303524971, + 0.01499099563807249, + -0.006115278694778681, + 0.052414752542972565, + 0.04459686949849129, + -0.005248863250017166, + 0.029337218031287193, + -0.06463859230279922, + -0.07199976593255997, + -0.03248048946261406, + -0.05625653266906738, + 0.03309839963912964, + -0.03814912959933281, + -0.00940967071801424, + -0.07721168547868729, + -0.068668432533741, + 0.02544170804321766, + -0.015447710640728474, + -0.0017051249742507935, + 0.028584981337189674, + -0.01782531477510929, + -0.049190882593393326, + 0.02722826972603798, + 0.07576094567775726, + 0.013748462311923504, + 0.00018963323964271694, + 0.009503700770437717, + -0.01280816737562418, + -0.04064762964844704, + 0.0010066198883578181, + -0.05776100605726242, + -0.001344118732959032, + 0.04062076285481453, + -0.006491396576166153, + -0.004839163273572922, + 0.01789247803390026, + 0.004919759929180145, + 0.0775878056883812, + 0.012613391503691673, + -0.05418788269162178, + -0.03532824292778969, + 0.03258795291185379, + 0.1009608656167984, + 0.058835629373788834, + 0.0025757378898561, + 0.028208862990140915, + -0.0015565247740596533, + 0.052280426025390625, + 0.005913786590099335, + -0.04403269290924072, + -0.004755208268761635, + 0.10020862519741058, + -0.05195803940296173, + 0.06754007935523987, + 0.10638771206140518, + 0.0006514904089272022, + 0.0023205147590488195, + -0.017314868047833443, + -0.005010431632399559, + 0.06098487600684166, + -0.010974590666592121, + -0.038578979671001434, + 0.009832804091274738, + -0.006652590353041887, + 0.05534310266375542, + -0.0014893608167767525, + 0.0048895361833274364, + 0.01802680641412735, + -0.03245362639427185, + 0.002735252259299159, + 0.0032540939282625914, + 0.01685815304517746, + 0.013164136558771133, + 0.08570121228694916, + -0.04333418607711792, + 0.012109662406146526, + -0.0779639258980751, + 0.029283486306667328, + 0.028826771304011345, + 0.06839977949857712, + -0.002166037680581212, + 0.00756266200914979, + -0.05434907600283623, + 0.011935035698115826, + 0.02087455801665783, + 0.011646230705082417, + -0.008912657387554646, + 0.005702220369130373, + -0.026019318029284477, + 0.022741716355085373, + -0.012801450677216053, + -0.009147731587290764, + 0.05862070247530937, + 0.027201402932405472, + -0.025253649801015854, + -0.08672210574150085, + 0.08570121228694916, + -0.01006116159260273, + -0.01499099563807249, + 0.004614164121448994, + -0.04150732606649399, + 0.07404155284166336, + -0.024111861363053322, + -0.005033938679844141, + 0.05359683930873871, + -0.07237588614225388, + -0.032910339534282684, + -0.042420756071805954, + -0.07946839928627014, + -0.07511617243289948, + 0.011975334025919437, + 0.011619364842772484, + -0.012821599841117859, + 0.06109233945608139, + -0.058835629373788834, + 0.05743861943483353, + 0.03726256638765335, + 0.0070186336524784565, + -0.021371571347117424, + -0.031943179666996, + 0.05716996267437935, + -0.028181998059153557, + 0.044005826115608215, + 0.048761036247015, + -0.0607699491083622, + -0.05324758589267731, + 0.06974305957555771, + 0.042662546038627625, + -0.02204321138560772, + 0.011753693222999573, + 0.026529764756560326, + 0.03602674975991249, + 0.03471033275127411, + -0.1122981384396553, + 0.0728057324886322, + 0.020243218168616295, + 0.030787959694862366, + 0.04916401952505112, + -0.019786503165960312, + 0.10638771206140518, + 0.04145359620451927, + 0.04827745258808136, + 0.023776041343808174, + -0.06275800615549088, + -0.04688044264912605, + 0.013983536511659622, + -0.0035596899688243866, + -0.020726798102259636, + -0.002436372684314847, + 0.03651032969355583, + -0.02389693632721901, + 0.02788647636771202, + -0.02310440130531788, + -0.02118351310491562, + 0.0027688343543559313, + 0.0745251327753067, + 0.043522246181964874, + -0.01593129150569439, + 0.0193969514220953, + -0.022687986493110657, + 0.009732057340443134, + 0.021237244829535484, + 0.08956985920667648, + -0.06050129607319832, + 0.019786503165960312, + -0.05088341608643532, + 0.01765068806707859, + 0.11348022520542145, + -0.06974305957555771, + -0.05781473591923714, + -0.048814766108989716, + -0.005275729112327099, + 0.03111034631729126, + -0.027698416262865067, + -0.023843206465244293, + 0.009248477406799793, + -0.05163565278053284, + 0.004120509140193462, + 0.04379090294241905, + -0.0971996858716011, + 0.033501382917165756, + 0.07919973880052567, + 0.06361770629882812, + -0.04088941961526871, + -0.0012307795695960522, + 0.0060514728538692, + 0.03151332959532738, + -0.023843206465244293, + -0.01884620636701584, + 0.018120836466550827, + -0.022620821371674538, + 0.020270083099603653, + 0.021747689694166183, + 0.04148046299815178, + 0.03745062276721001, + 0.014641743153333664, + 0.024434247985482216, + 0.05359683930873871, + 0.050802819430828094, + -0.008375345729291439, + 0.013486523181200027, + 0.03205064311623573, + -0.014453683979809284, + -0.08349823206663132, + 0.012761152349412441, + -0.020592469722032547, + -0.01954471319913864, + 0.001811747788451612, + -0.06265053898096085, + 0.11036381870508194, + -0.014185028150677681, + 0.03457600623369217, + 0.008711165748536587, + -0.012640257366001606, + -0.00889250822365284, + -0.06265053898096085, + 0.011088769882917404, + 0.006830574944615364, + 0.00042439225944690406, + 0.01181414071470499, + 0.07065648585557938, + -0.004607447423040867, + 0.0800057053565979, + 0.006447740364819765, + 0.08349823206663132, + -0.03374317288398743, + -0.043656572699546814, + 0.06270427256822586, + 0.041292402893304825, + -0.008200719952583313, + 0.010672353208065033, + -0.04158792272210121, + 0.08387435227632523, + 0.060555025935173035, + -0.0029283487237989902, + 0.02764468640089035, + 0.015259651467204094, + -0.0006607254617847502, + 0.05064162611961365, + -0.056740112602710724, + 0.022620821371674538, + 0.1263757050037384, + -0.046961039304733276, + -0.0018839490367099643, + 0.03495212644338608, + -0.03011631965637207, + 0.02888050302863121, + 0.002642901847139001, + 0.004167523700743914, + -0.005171624943614006, + 0.09300865232944489, + 0.03446854278445244, + -0.019934263080358505, + -0.03218496963381767, + -0.03293720632791519, + 0.056955039501190186, + -0.07447139918804169, + 0.047471486032009125, + -0.0473908893764019, + -0.036725252866744995, + 0.006514904089272022, + 0.019356653094291687, + -0.07162364572286606, + 0.03484466299414635, + 0.04113120958209038, + -0.04878789931535721, + -0.05953413248062134, + -0.008778329938650131, + -0.07296692579984665, + -0.04196404293179512, + 0.03863270953297615, + 0.01806710474193096, + 0.04604760929942131, + -0.044650599360466, + 0.026073049753904343, + 0.11971304565668106, + 0.047444622963666916, + 0.011176083236932755, + 0.032641682773828506, + 0.009591013193130493, + 0.018523819744586945, + -0.037719279527664185, + -0.025052156299352646, + 0.021344706416130066, + 0.02235216647386551, + -0.04317299276590347, + 0.02104918472468853, + 0.08177883923053741, + 0.03876703605055809, + 0.073504239320755, + 0.009315641596913338, + -0.07189230620861053, + 4.730336877400987e-05, + -0.03664465621113777, + 0.03951927274465561, + -0.0065384116023778915, + -0.037584953010082245, + -0.04268941283226013, + -0.04851924628019333, + 0.007649974897503853, + 0.0659281462430954, + -0.06582067906856537, + -0.036967042833566666, + -0.05421474948525429, + 0.024407383054494858, + 0.010470861569046974, + -0.09499670565128326, + -0.018255164846777916, + -0.05163565278053284, + -0.0009327394654974341, + -0.009046985767781734, + 0.06087741255760193, + -0.029928261414170265, + -0.04000285267829895, + 0.04760581627488136, + -0.04849237948656082, + 0.0009041948360390961, + -0.022096943110227585, + 0.023440221324563026, + 0.045107316225767136, + 0.012976077385246754, + 0.02036411315202713, + 0.01771785318851471, + -0.04134613275527954, + -0.03505958616733551, + 0.04330732300877571, + 0.028961099684238434, + -0.03863270953297615, + -0.06807739287614822, + 0.06302665919065475, + -0.007139529101550579, + -0.00023780239280313253, + -0.018389491364359856, + 0.03527451306581497, + -0.007864899933338165, + -0.04688044264912605, + -0.03718196973204613, + 0.024944694712758064, + 0.0642087459564209, + -0.009745490737259388, + 0.004456328693777323, + 0.03417302295565605, + 0.0035227497573941946, + -0.0367521196603775, + 0.026005884632468224, + 0.020350679755210876, + 0.04392522946000099, + 0.04615507274866104, + 0.03565062955021858, + -0.04196404293179512, + -0.002961930586025119, + -0.04405955597758293, + -0.037719279527664185, + 0.024729769676923752, + -0.036375999450683594, + 0.03602674975991249, + 0.014641743153333664, + -0.06259681284427643, + -0.08167137205600739, + -0.03766554966568947, + -0.006897738669067621, + -0.079683318734169, + 0.03900882601737976, + -0.008691016584634781, + -0.02239246480166912, + 0.025898423045873642, + -0.02510588802397251, + 0.03258795291185379, + 0.026355138048529625 + ] + }, + { + "id": "65493741-8ee6-4afb-8a2e-129778919804", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "lucaskelli", + "reviewDate": "2021-12-08T21:45:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d68f6593-d3e9-42d0-9dad-cf0ef3b93884", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "thorntoncourtney", + "reviewDate": "2022-06-29T13:49:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a21f4308-7b45-4342-b280-98e64dfa7e93", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "april71", + "reviewDate": "2021-05-22T15:59:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9d076d5b-bddc-4746-84ba-861d1a9f64c0", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "lisasalinas", + "reviewDate": "2021-05-30T12:16:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f30b3956-1c2d-473f-b1c0-0028f4a08db0", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessicamendez", + "reviewDate": "2022-12-25T05:35:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0068897c-c965-42ac-934f-6b1e96e26869", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "whitejade", + "reviewDate": "2021-12-12T05:10:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c77af41c-0a73-4910-89ff-c1b8536399aa", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristinamullins", + "reviewDate": "2021-04-19T11:03:08", + "stars": 3, + "verifiedUser": false + }, + { + "id": "45bfbc62-20a9-4b8c-8cbf-1f828bc97cdf", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "kylefarley", + "reviewDate": "2022-01-04T01:19:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d53a55f7-cff5-4433-86a8-13f910dc81a5", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "josephlara", + "reviewDate": "2022-01-27T13:02:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1e8eee32-2e90-4f43-a314-9dc200b1d035", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "christophermcdonald", + "reviewDate": "2021-10-18T08:52:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3e92e520-259a-4f46-bcfb-aaac01a985c1", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "mcphersongary", + "reviewDate": "2022-11-08T23:23:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "96e0dc8b-0479-4a80-8dc5-347594ff6988", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "dannyroman", + "reviewDate": "2022-04-02T19:19:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9cb0d97d-feb9-4726-9326-946cc202284a", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "bpotter", + "reviewDate": "2022-02-02T19:59:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "144b4ef2-b0df-4eb8-acc8-5eb7d0797a94", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "yhunt", + "reviewDate": "2021-06-01T22:21:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "682148ef-9e98-4a4a-a8ee-3df83be2e2d6", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "huffmichael", + "reviewDate": "2021-11-08T15:39:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4d244c26-dbc0-43f4-a489-ead5c83d45b5", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonathan38", + "reviewDate": "2022-03-21T04:23:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3e5e9ae4-3aea-4851-9139-cdc40901901b", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "emilywilliams", + "reviewDate": "2022-10-23T22:23:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bf8f85c1-75fb-466a-b772-b956484069cf", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "tstevens", + "reviewDate": "2022-09-11T07:27:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "01621efb-7040-44ef-9441-117c38e4b840", + "productId": "18e17ebf-f4d1-4ff9-8d5d-ca7e11bff1aa", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristen84", + "reviewDate": "2021-03-11T15:54:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4e3b6991-5ef5-4636-b0e5-f18c14b8016e", + "productId": "4e3b6991-5ef5-4636-b0e5-f18c14b8016e", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer Micro (Silver)", + "description": "This Luxe Computer Micro (Silver) is perfect for the job market! Perfect for the job market!\n\nProduct Code: B0031115\n\nWarranty & Payment Details: We don't offer returns on orders shipped by the following postal carrier in the US:\n\nUnited States Postal Service\n\nUnited Kingdom Post Office\n\n\nUnited", + "countryOfOrigin": "USA", + "rareItem": true, + "firstAvailable": "2018-11-01T03:16:47", + "price": 824.08, + "stock": 48, + "priceHistory": [ + { + "priceDate": "2018-11-01T03:16:47", + "newPrice": 890.26 + }, + { + "priceDate": "2025-09-09T03:16:47", + "newPrice": 854.46 + }, + { + "priceDate": "2025-09-09T04:58:54.934984", + "newPrice": 824.08 + } + ], + "descriptionVector": [ + -0.02906491979956627, + 0.041372183710336685, + -0.02813088707625866, + 0.039888717234134674, + 0.03878985717892647, + -0.03137253224849701, + 0.005576728377491236, + 0.047608230262994766, + -0.0008529063779860735, + 0.07719510793685913, + 0.07104147970676422, + -0.0615912601351738, + 0.017183465883135796, + -0.07351391762495041, + 0.04730604216456413, + 0.054695893079042435, + -0.09626037627458572, + -0.005477143917232752, + 0.01000651903450489, + 0.04650936648249626, + 0.07181068509817123, + -0.04815766215324402, + -0.003949038218706846, + 0.02234812080860138, + 0.00786373671144247, + 0.02917480655014515, + -0.0486246794462204, + 0.02258162945508957, + 0.03612511232495308, + -0.03486142307519913, + 0.0009022693266160786, + 0.034449346363544464, + -0.03714156150817871, + -0.012279791757464409, + -0.0020723864436149597, + -0.05060262978076935, + 0.0479104183614254, + -0.026427648961544037, + 0.04513578861951828, + -0.023804115131497383, + 0.0008988354238681495, + -0.009292257949709892, + 0.008124716579914093, + -0.0034803044982254505, + 0.022279443219304085, + -0.028034737333655357, + 0.041124939918518066, + 0.018666930496692657, + 0.0045190732926130295, + -0.0009846840985119343, + -0.0076439641416072845, + 0.011558663100004196, + -0.034669119864702225, + 0.021963519975543022, + 0.03354278579354286, + -0.07642590254545212, + 0.046344537287950516, + 0.11757832020521164, + 0.0470038540661335, + -0.0407128669321537, + -0.056316718459129333, + 0.0014774553710594773, + -0.04766317456960678, + 0.0022080272901803255, + 0.012369073927402496, + 0.095436230301857, + -0.02637270651757717, + 0.05431129410862923, + 0.023309625685214996, + 0.003215890610590577, + -0.06428347527980804, + -0.030026424676179886, + 0.026097990572452545, + 0.05359703302383423, + 0.04060297831892967, + 0.012698733247816563, + 0.024504639208316803, + -0.004965486004948616, + 0.06576693803071976, + -0.032004378736019135, + 0.08060158789157867, + -0.06356921046972275, + 0.0063596684485673904, + -0.04291059076786041, + -0.0002620530140120536, + 0.03634488582611084, + -0.030932987108826637, + -0.15735715627670288, + -0.011524323374032974, + 0.12010569870471954, + -0.018557045608758926, + 0.06192091852426529, + 0.07615119218826294, + 0.005957896821200848, + -0.010027122683823109, + -0.06428347527980804, + -0.01243775337934494, + 0.03469659388065338, + -0.0300813689827919, + -0.063404381275177, + 0.02270525135099888, + -0.00390783092007041, + -0.004855599720031023, + -0.025026598945260048, + 0.017787840217351913, + -0.009807350113987923, + 0.030740685760974884, + -0.050190556794404984, + 0.0007936708279885352, + -0.04024584963917732, + 0.004422922618687153, + 0.016482941806316376, + -0.042883120477199554, + -0.04013596102595329, + 0.016276905313134193, + 0.011860850267112255, + 0.006665289402008057, + -0.009965311735868454, + -0.03867996856570244, + -0.004797223024070263, + 0.019298776984214783, + -0.028735261410474777, + 0.09768889844417572, + 0.037333860993385315, + 0.03159230574965477, + 0.03126264736056328, + -0.047745589166879654, + 0.03126264736056328, + 0.02975170873105526, + -0.06241540610790253, + -0.05648154765367508, + 0.06895364075899124, + -0.03497130796313286, + 0.014436309225857258, + -0.09159021079540253, + 0.056536488234996796, + 0.032004378736019135, + 0.01572747342288494, + -0.03936675935983658, + -0.044723715633153915, + -0.07829397171735764, + -0.026523800566792488, + -0.03821295127272606, + -0.07417323440313339, + -0.09576588869094849, + -0.05392669141292572, + -0.06323955208063126, + -0.01955975778400898, + -0.043460022658109665, + 0.04942135140299797, + -0.04400945454835892, + 0.03183954954147339, + 0.0012035981053486466, + -0.06241540610790253, + 0.05637165904045105, + -0.007108268793672323, + -0.03631741553544998, + -0.017416974529623985, + -0.021084429696202278, + 0.06137148663401604, + 0.010397989302873611, + 4.332674052420771e-06, + -0.030383555218577385, + -0.022251971065998077, + 0.026468856260180473, + 0.07763465493917465, + 0.026894666254520416, + -0.008818374015390873, + -0.10032617300748825, + 0.03991619125008583, + -0.04178425669670105, + -0.036976732313632965, + 0.02802100032567978, + -0.08983203023672104, + 0.11005111038684845, + 0.016867544502019882, + 0.04337760806083679, + -0.006555403117090464, + 0.008310149423778057, + -0.055162910372018814, + -0.02004051022231579, + 0.10285355895757675, + -0.031976908445358276, + 0.020205339416861534, + 0.015260457061231136, + -0.007321173325181007, + 0.03087804466485977, + -0.03502625226974487, + 0.05889904499053955, + -0.0025874783750623465, + -0.07867857813835144, + 0.0025119315832853317, + 0.02232065051794052, + 0.03219667822122574, + 0.022595366463065147, + -0.0006983787752687931, + 0.009979047812521458, + 0.0770852267742157, + -0.011661681346595287, + -0.016716450452804565, + 0.05071251839399338, + 0.03659212961792946, + 0.045437976717948914, + 0.02975170873105526, + 0.0023282153997570276, + -0.02671610191464424, + 0.008413167670369148, + 0.04527314752340317, + 0.029257221147418022, + -0.049943313002586365, + 0.014491252601146698, + 0.0018629158148542047, + 0.034779008477926254, + 0.05950341746211052, + 0.026207877323031425, + 0.011345758102834225, + 0.015576379373669624, + 0.025191430002450943, + -0.05983307957649231, + -0.05659143254160881, + 0.016373055055737495, + -0.07444795221090317, + 0.017059843987226486, + 0.02072729915380478, + -0.038267895579338074, + -0.059668250381946564, + 0.0796126052737236, + 0.04208644479513168, + 0.0462895929813385, + 0.09032651782035828, + -0.006933137308806181, + 0.007891207933425903, + -0.025095278397202492, + -0.020809713751077652, + -0.07604130357503891, + 0.02336456999182701, + -0.038460198789834976, + -0.011682284995913506, + -0.03692178800702095, + 0.010425460524857044, + -0.016469206660985947, + -0.030356084927916527, + -0.028872618451714516, + -0.019600965082645416, + -0.03609764203429222, + -0.0687888115644455, + 0.06005284935235977, + -0.012430884875357151, + -0.08137078583240509, + 0.045328088104724884, + -0.025507351383566856, + -0.06494279205799103, + -0.0525805838406086, + 0.06631636619567871, + 0.016112076118588448, + 0.06840420514345169, + 0.07362380623817444, + -0.01714225858449936, + -0.005302012898027897, + -0.011579266749322414, + 0.0020449149888008833, + -0.005648841615766287, + 0.01572747342288494, + 0.033268071711063385, + -0.06109676882624626, + 0.02778749167919159, + 0.05008067190647125, + -0.10285355895757675, + -0.008076641708612442, + -0.036729488521814346, + -0.02870778925716877, + -0.058844100683927536, + 0.08488714694976807, + -0.02222449891269207, + -0.08675521612167358, + -0.04271829128265381, + -0.09505163133144379, + 0.07362380623817444, + -0.07587647438049316, + -0.024023886770009995, + 0.01029497105628252, + 0.07318425923585892, + 0.016359319910407066, + -0.09807350486516953, + 0.017101051285862923, + -0.0590638741850853, + -0.020274018868803978, + 0.010281234979629517, + -0.01100236363708973, + -0.010267498902976513, + -0.0019676510710269213, + -0.01429895218461752, + 0.054558537900447845, + 0.031427476555109024, + 0.04469624161720276, + -0.002549705095589161, + 0.0594484768807888, + 0.068459153175354, + -0.0641186460852623, + 0.044970959424972534, + 0.004999825730919838, + 0.027224324643611908, + -0.04332266375422478, + -0.038267895579338074, + -0.059778135269880295, + 0.07356886565685272, + -0.061041828244924545, + -0.01210122648626566, + -0.018818024545907974, + -0.01920262724161148, + 0.11538059264421463, + -0.00755468150600791, + 0.014669817872345448, + 0.02245800755918026, + 0.12735819816589355, + -0.028790203854441643, + 0.023076118901371956, + 0.020988278090953827, + -0.015315399505198002, + -0.017801577225327492, + 0.002975514391437173, + -0.026455121114850044, + -0.0669756829738617, + 0.04030079394578934, + 0.020067980512976646, + -0.01082379836589098, + -0.034092217683792114, + 0.07983238250017166, + -0.07236011326313019, + -0.03804812207818031, + 0.001539266319014132, + -0.017801577225327492, + 0.01227292325347662, + -0.049723539501428604, + 0.0318944938480854, + -0.05384427681565285, + -0.031097816303372383, + 0.04928399622440338, + 0.06384392827749252, + 0.020219074562191963, + 0.09845810383558273, + -0.005923557095229626, + -0.035493265837430954, + 0.01365336962044239, + 0.015686266124248505, + 0.03461417555809021, + -0.02582327462732792, + -0.011091645807027817, + -0.008172791451215744, + -0.014353894628584385, + 0.0018423121655359864, + -0.08801890909671783, + 0.03274611011147499, + -0.014161594212055206, + 0.062195632606744766, + -0.0076164924539625645, + 0.04436658322811127, + -0.028034737333655357, + -0.00908622145652771, + -0.02718311734497547, + -0.04302047938108444, + 0.012286659330129623, + 0.05101470276713371, + 0.061151713132858276, + -0.023199740797281265, + -0.009615049697458744, + 0.0008632082026451826, + 0.016634035855531693, + 0.04829501733183861, + 0.07043710350990295, + -0.004086395725607872, + -0.02428486756980419, + -0.039504118263721466, + 0.028433075174689293, + -0.04546544700860977, + 0.052608054131269455, + 0.09197481721639633, + 0.042883120477199554, + -0.016688978299498558, + 0.02939458005130291, + -0.019752059131860733, + 0.006641251966357231, + 0.003449399024248123, + -0.03667454421520233, + 0.003511209972202778, + -0.09389782696962357, + -0.04280070587992668, + 0.05170149356126785, + -0.03942170366644859, + -0.025301314890384674, + -0.004560280591249466, + -0.02394147217273712, + -0.018076293170452118, + -0.05922870337963104, + -0.012595715001225471, + -0.009711199440062046, + 0.006363102234899998, + 0.0214278232306242, + 0.03730639070272446, + 0.020425111055374146, + 0.00535695580765605, + 0.00036228130920790136, + 0.016826335340738297, + -0.04793788865208626, + -0.0630197823047638, + -0.09812844544649124, + 0.013722049072384834, + 0.0041069998405873775, + -0.003653718624264002, + -0.08807384967803955, + -0.044833600521087646, + -0.0446687713265419, + -0.0028072509448975325, + 0.03032861277461052, + 0.020067980512976646, + -0.013035259209573269, + 0.06527245044708252, + -0.023117326200008392, + 0.015658793970942497, + -0.039064571261405945, + 0.08076641708612442, + -0.06065722554922104, + -0.03771846368908882, + 0.03692178800702095, + -0.007073929067701101, + -0.008385696448385715, + -0.035465795546770096, + -0.05659143254160881, + 0.048459846526384354, + -0.10884235799312592, + 0.019367456436157227, + -0.02374917082488537, + 0.00937467347830534, + -0.010446064174175262, + 0.02024654671549797, + 0.04694891348481178, + -0.0031626643612980843, + 0.06747017800807953, + -0.012183641083538532, + 0.07703027874231339, + -0.0412348248064518, + -0.025081543251872063, + -0.00477318512275815, + 0.0073143052868545055, + -0.04931146651506424, + -0.010638365522027016, + -0.05170149356126785, + 0.06428347527980804, + 0.07576658576726913, + -0.017540596425533295, + -0.011222136206924915, + 0.07115136086940765, + -0.04815766215324402, + -0.004388583358377218, + 0.07659073173999786, + -0.03145494684576988, + -0.06021767854690552, + 0.008433772251009941, + 0.014326423406600952, + 0.01769169047474861, + -0.017307087779045105, + 0.0742281824350357, + 0.02256789430975914, + 0.01826859451830387, + -0.07137113809585571, + -0.03392738848924637, + -0.0785137414932251, + 0.01255450677126646, + 0.002043197862803936, + -0.008420036174356937, + -0.019532285630702972, + -0.03716903179883957, + 0.02857043221592903, + 0.0817553922533989, + 0.04351496696472168, + -0.008612336590886116, + 0.018103763461112976, + -0.0070018162950873375, + -0.01395555678755045, + 0.048679620027542114, + -0.03458670526742935, + -0.019147682934999466, + -0.01991688832640648, + 0.033158183097839355, + 0.07521715760231018, + -0.04420175403356552, + 0.011235872283577919, + -0.0028141189832240343, + 0.021331673488020897, + 0.09516151249408722, + -0.03642730042338371, + 0.024106301367282867, + -0.05648154765367508, + -0.04101505130529404, + -0.03587786853313446, + -0.0007082513766363263, + -0.015452757477760315, + 0.009711199440062046, + -0.04269081726670265, + 0.020095452666282654, + 0.007183815352618694, + 0.026757309213280678, + -0.010974892415106297, + 0.0340372733771801, + -0.00428556464612484, + -0.03140000253915787, + -0.033515315502882004, + 0.0190927404910326, + -0.007029287982732058, + -0.00013113381282892078, + 0.08878811448812485, + -0.07307437807321548 + ] + }, + { + "id": "49ea6a60-de0f-4a99-ad5a-756d383b9b5e", + "productId": "49ea6a60-de0f-4a99-ad5a-756d383b9b5e", + "category": "Other", + "docType": "product", + "name": "Awesome Filter 3000 (Steel)", + "description": "This Awesome Filter 3000 (Steel) is rated 4.8 out of 4 by 12.\n\nRated 5 out of 5 by Michael from Great Filter I just started a new filter so I did not need the old. I decided to do it for my camera on the small and fast 4", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-10-08T05:38:53", + "price": 219.64, + "stock": 98, + "priceHistory": [ + { + "priceDate": "2021-05-25T04:35:55", + "newPrice": 222.44 + }, + { + "priceDate": "2024-08-13T04:35:55", + "newPrice": 219.64 + } + ], + "descriptionVector": [ + 0.004190102219581604, + 0.002658821176737547, + -0.005552546586841345, + 0.07850495725870132, + 0.01395330484956503, + -0.003508880501613021, + -0.06690069288015366, + 0.03890012204647064, + 0.030161689966917038, + 0.08898168057203293, + -0.00676523894071579, + -0.023889750242233276, + -0.0182168148458004, + -0.019720202311873436, + 0.02445352077484131, + -0.018334267660975456, + -0.06882690638303757, + -0.010647029615938663, + -0.012191524729132652, + -0.01369491033256054, + 0.0434337742626667, + -0.019332610070705414, + -0.07723648101091385, + -0.005567227955907583, + -0.00028867516084574163, + -0.007017761003226042, + 0.020354442298412323, + 0.03140668198466301, + -0.008162918500602245, + -0.05618906766176224, + 0.053887005895376205, + 0.024923328310251236, + -0.0036879947874695063, + 0.08874677866697311, + -0.018099363893270493, + 0.007552167866379023, + -0.0014931093901395798, + 0.014845941215753555, + -0.008245134726166725, + 0.12788181006908417, + 0.009783756919205189, + -0.019919870421290398, + -0.010470851324498653, + 0.04136661812663078, + 0.00031785466126166284, + -0.061169035732746124, + 0.0026015632320195436, + -0.016055697575211525, + 0.015151316300034523, + 0.042094819247722626, + 0.06910879164934158, + -0.01580904796719551, + -0.012802274897694588, + -0.014235190115869045, + 0.021223587915301323, + 0.011774569749832153, + 0.0008214303525164723, + 0.17035247385501862, + 0.05590718239545822, + -0.04904798045754433, + 0.001322803902439773, + -0.05506152659654617, + 0.05741056799888611, + -0.06840408593416214, + -0.1334255486726761, + -0.04094379022717476, + -0.039463892579078674, + 0.02412465400993824, + 0.028493870049715042, + 0.01033578161150217, + -0.015856029465794563, + 0.014646272175014019, + 0.004706891719251871, + 0.021787358447909355, + 0.01422344520688057, + -0.01102874893695116, + 0.1404726654291153, + -0.016619466245174408, + -0.05689378082752228, + 0.018357757478952408, + 0.03828937187790871, + 0.053370218724012375, + -0.01872185990214348, + 0.040192097425460815, + 0.034648358821868896, + -0.008280370384454727, + -0.02722538821399212, + -0.11322379112243652, + 0.007334881462156773, + 0.004313427023589611, + -3.411156649235636e-05, + 0.03424902260303497, + -0.05078627169132233, + -0.1006329283118248, + 0.027013974264264107, + 0.00035143858985975385, + -0.07690761238336563, + 0.02361961081624031, + -0.047638557851314545, + 0.014105993323028088, + -0.053558140993118286, + -0.0329100675880909, + -0.05482662469148636, + 0.020530620589852333, + -0.013636184856295586, + -0.0028188496362417936, + -0.05708170309662819, + -0.05914885923266411, + -0.04303443804383278, + -0.1232776865363121, + 0.033379875123500824, + -0.042776040732860565, + -0.05313531309366226, + 0.004639356397092342, + -0.032745636999607086, + 0.020718544721603394, + -0.04115520417690277, + -0.009531235322356224, + 0.027037465944886208, + -0.0012883023591712117, + 0.009584088809788227, + 0.10129065811634064, + 0.03152413293719292, + 0.013542222790420055, + 0.05393398925662041, + 0.043151888996362686, + 0.022809190675616264, + -0.04773252084851265, + 0.04437338933348656, + -0.0019232775084674358, + -0.05628303065896034, + 0.005866730585694313, + 0.06666579097509384, + -0.020413169637322426, + -0.06661880761384964, + 0.04390358179807663, + 0.0007825243519619107, + 0.09391467273235321, + 0.029950276017189026, + 0.05933678150177002, + 0.013765381649136543, + -0.024735404178500175, + 0.026144830510020256, + 0.03018517978489399, + 0.0243125781416893, + 0.009008573368191719, + -0.05604812502861023, + 0.01767653599381447, + 0.036715514957904816, + -0.019755437970161438, + 0.05327625572681427, + -0.10467328131198883, + -0.0433398112654686, + -0.006647787056863308, + 0.0286113228648901, + 0.022257165983319283, + -0.03178253024816513, + 0.06121601536870003, + -0.06530334800481796, + -0.03265167400240898, + -0.053558140993118286, + -0.04665195941925049, + -0.03798399865627289, + -0.021247077733278275, + -0.013483497314155102, + 0.04077935591340065, + 0.01804063655436039, + 0.02896367944777012, + -0.05881999433040619, + 0.02879924699664116, + 0.08386077731847763, + -0.013260338455438614, + 0.04094379022717476, + -0.012626096606254578, + -0.07023633271455765, + -0.022820936515927315, + 0.008961592800915241, + -0.022597776725888252, + -0.05393398925662041, + -0.03666853532195091, + 0.03730277717113495, + 0.01703055016696453, + -0.04207133129239082, + -0.043480753898620605, + 0.027013974264264107, + -0.005162018351256847, + -0.006224959623068571, + 0.01838124729692936, + 0.02896367944777012, + 0.048531193286180496, + -0.001654605963267386, + -0.009413783438503742, + 0.040708884596824646, + 0.028869718313217163, + -0.0590079165995121, + 0.008826523087918758, + -0.03866522014141083, + -0.03352081775665283, + -0.028071044012904167, + -0.020789016038179398, + -0.018322521820664406, + 0.03676249459385872, + 0.0989416167140007, + -0.06196770817041397, + 0.05487360432744026, + 0.017594318836927414, + 0.017793986946344376, + 0.06718257814645767, + -0.04134312644600868, + -0.0277421772480011, + 0.019696710631251335, + -0.03406110033392906, + -0.01715974695980549, + -0.015562398359179497, + 0.051960792392492294, + 0.0710350051522255, + -0.03944040462374687, + -0.020765524357557297, + -0.03939342126250267, + -0.04270556941628456, + 0.005540801212191582, + -0.05985357239842415, + -0.021446747705340385, + -0.0015944117913022637, + -0.0001803990307962522, + -0.05332323908805847, + 0.008885248564183712, + 0.01684262603521347, + 0.07488743960857391, + 0.04496065154671669, + 0.04895402118563652, + -0.035681936889886856, + -0.07756534218788147, + 0.02621529996395111, + -0.020894723013043404, + -0.042940475046634674, + -0.11331775039434433, + -0.0416954830288887, + 0.029363015666604042, + 0.019144685938954353, + 0.03941691294312477, + 0.0503164641559124, + -0.05365210399031639, + -0.016349326819181442, + 0.10006915777921677, + 0.0164667796343565, + 0.04265858978033066, + -0.020096048712730408, + -0.05783339589834213, + -0.02201051637530327, + -0.013225102797150612, + 0.022961879149079323, + -0.05308833345770836, + 0.11529094725847244, + 0.04005115479230881, + 0.07540422677993774, + -0.009225859306752682, + 0.02501728944480419, + -0.08348492532968521, + -0.06403486430644989, + 0.008726688101887703, + 0.09569994360208511, + 0.026497185230255127, + 0.03509467840194702, + -0.008262752555310726, + -0.03345034644007683, + 0.039651818573474884, + -0.008262752555310726, + -0.053887005895376205, + 0.031336210668087006, + -0.01318986713886261, + 0.047262709587812424, + 0.024594461545348167, + -0.04423244670033455, + -0.04994061961770058, + -0.008832395076751709, + -0.05247758328914642, + 0.06037035956978798, + -0.01094653271138668, + 0.03695042058825493, + 0.08804206550121307, + 0.02149372734129429, + 0.0023769361432641745, + 0.03737324848771095, + 0.08127682656049728, + -0.017793986946344376, + 0.017923185601830482, + -0.03579938784241676, + 0.017582574859261513, + -0.04552442207932472, + -0.05985357239842415, + 0.019238648936152458, + 0.002291783457621932, + -0.06286034733057022, + -0.015609378926455975, + 0.008644471876323223, + 0.03523562103509903, + -0.026285771280527115, + -0.005672934930771589, + 0.010048024356365204, + -0.016384562477469444, + 0.019191667437553406, + -0.07371291518211365, + -0.05679981783032417, + -0.01040038000792265, + 0.01771177165210247, + 0.006254322361201048, + -0.04007464274764061, + -0.0021390956826508045, + -0.10016311705112457, + 0.006741748657077551, + 0.04012162610888481, + 0.018674878403544426, + 0.04543045908212662, + 0.09128374606370926, + -0.034624867141246796, + -0.03535307198762894, + 0.03326242417097092, + -0.00797499530017376, + 0.021481983363628387, + -0.006835710257291794, + -0.0006342411506921053, + 0.034624867141246796, + 0.09231732040643692, + -0.017617810517549515, + -0.0035910969600081444, + -0.025815963745117188, + -0.022950133308768272, + 0.015374475158751011, + -0.005291215609759092, + 0.03666853532195091, + -0.00124719412997365, + -0.024195125326514244, + 0.072820283472538, + 0.022597776725888252, + -0.050269484519958496, + -0.033379875123500824, + 0.007346626836806536, + 0.019567513838410378, + 0.0642697662115097, + 0.005349941551685333, + -0.012074071913957596, + 0.024359557777643204, + 0.02673208899796009, + 0.08245135098695755, + -0.024195125326514244, + 0.02635624259710312, + -0.06403486430644989, + -0.01752384752035141, + -0.0294804684817791, + 0.0012508644722402096, + -0.05322927609086037, + -0.000989533611573279, + 0.008086574263870716, + 0.05849112942814827, + -0.014082502573728561, + 0.04056794196367264, + -0.01699531450867653, + 0.03800748661160469, + -0.027718687430024147, + 0.015304003842175007, + -0.04251764714717865, + 0.05186683312058449, + -0.019356099888682365, + -0.02188131958246231, + 0.10100877285003662, + -0.032722145318984985, + 0.07437064498662949, + -0.007082359399646521, + -0.0624844990670681, + -0.0382189005613327, + -0.020377933979034424, + 0.0009403505828231573, + 0.08724339306354523, + -0.033403366804122925, + -0.05679981783032417, + 0.009989297948777676, + -0.008245134726166725, + -0.012308976612985134, + 0.046276114881038666, + -0.0027894864324480295, + 0.01318986713886261, + 0.04552442207932472, + -0.07230348885059357, + 0.0347188301384449, + 0.03380270302295685, + -0.030302632600069046, + 0.015656359493732452, + -0.06873294711112976, + -0.002792422892525792, + -0.025745492428541183, + -0.035494014620780945, + -0.03657457232475281, + 0.004166611935943365, + -0.0016076251631602645, + -0.04458480328321457, + 0.0031888235826045275, + 0.05764547362923622, + 0.08376681059598923, + -0.10674043744802475, + -0.0032475495245307684, + 0.001310324645601213, + 0.025933416560292244, + -0.03626919910311699, + -0.0043809618800878525, + -0.008327350951731205, + 0.041554540395736694, + -0.021728631108999252, + -0.04066190496087074, + -0.07723648101091385, + 0.030842911452054977, + -0.029386507347226143, + 0.050410427153110504, + -0.04928288608789444, + 0.026520676910877228, + 0.06962558627128601, + 0.07667271047830582, + -0.04235321283340454, + 0.06488052010536194, + -0.037725601345300674, + 0.04197736829519272, + 0.08470642566680908, + 0.03779607266187668, + 0.021587690338492393, + 0.017911439761519432, + 0.06807521730661392, + 0.0009777884697541595, + 0.010893679223954678, + 0.01631409116089344, + -0.03899408504366875, + -0.006007673218846321, + -0.0243125781416893, + -0.017805732786655426, + 0.01412948314100504, + -0.02809453383088112, + -0.04301094636321068, + 0.015315749682486057, + 0.02673208899796009, + -0.041765954345464706, + -0.037772584706544876, + 0.03784305602312088, + -0.01997859589755535, + -0.03485977277159691, + 0.028235476464033127, + -0.11435133218765259, + -0.03197045251727104, + -0.04317538067698479, + 0.04876609891653061, + -0.012508644722402096, + -0.013941559940576553, + 0.0029480468947440386, + 0.03958134725689888, + -0.11125059425830841, + -0.053887005895376205, + 0.010282928124070168, + 0.01196836493909359, + 0.015433201566338539, + 0.12215014547109604, + 0.022268911823630333, + -0.06384694576263428, + -0.09762615710496902, + 0.06478656083345413, + 0.003925835248082876, + 0.0024958564899861813, + 0.014387877658009529, + -0.05651793256402016, + -0.11059286445379257, + -0.0520547553896904, + 0.0242890864610672, + -0.017112765461206436, + -0.013342554681003094, + -0.04026256874203682, + -0.009219987317919731, + 0.06685371696949005, + 0.007364244665950537, + 0.0033708743285387754, + -0.010893679223954678, + 0.006483354140073061, + 0.0798204243183136, + 0.036504101008176804, + -0.005925456527620554, + -0.02896367944777012, + -0.02790660969913006, + 0.05741056799888611, + 0.048343271017074585, + 0.02223367616534233, + 0.036739006638526917, + 0.01120492722839117, + 0.03211139515042305, + 0.07690761238336563, + -0.02790660969913006, + 0.013847598806023598, + -0.04698082432150841, + -0.05139702185988426, + -0.03070196881890297, + 0.024523990228772163, + -0.0521017350256443, + -0.002901066094636917, + -0.06666579097509384, + -0.072820283472538, + 0.05792735889554024, + 6.969128298806027e-05, + -0.015738576650619507, + -0.008186409249901772, + -0.030983854085206985, + 0.018839310854673386, + -0.00849178433418274, + -0.03976926952600479, + 0.002224248368293047, + 0.005922520533204079, + 0.03789003565907478, + 0.033379875123500824 + ] + }, + { + "id": "9fa92612-e024-499b-bbc4-3fdb8fcc77d7", + "productId": "49ea6a60-de0f-4a99-ad5a-756d383b9b5e", + "category": "Other", + "docType": "customerRating", + "userName": "scottdavis", + "reviewDate": "2022-04-02T09:55:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c495b580-5b51-48ba-9f7a-56236baa368c", + "productId": "49ea6a60-de0f-4a99-ad5a-756d383b9b5e", + "category": "Other", + "docType": "customerRating", + "userName": "melaniepetty", + "reviewDate": "2021-05-25T04:35:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "product", + "name": "Amazing Stand Micro (Black)", + "description": "This Amazing Stand Micro (Black) is not only the most difficult to read, but the most interesting.\n\nAs you can see, this stand makes use of an 8-inch OLED display, with a 20:9 aspect ratio. This is impressive because the stand is also light and portable. The weight is 10 pounds, with an external battery. This is an interesting setup. If you have read the \"How to Live\" blog", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-09-26T18:05:34", + "price": 445.15, + "stock": 62, + "priceHistory": [ + { + "priceDate": "2021-03-03T00:30:38", + "newPrice": 448.4 + }, + { + "priceDate": "2021-09-17T00:30:38", + "newPrice": 432.7 + }, + { + "priceDate": "2022-04-03T00:30:38", + "newPrice": 413.49 + }, + { + "priceDate": "2022-10-18T00:30:38", + "newPrice": 457.36 + }, + { + "priceDate": "2022-10-24T00:30:38", + "newPrice": 445.15 + } + ], + "descriptionVector": [ + 0.012607626616954803, + 0.004738460294902325, + -0.04873441159725189, + 0.0015653526643291116, + 0.0033109153155237436, + -0.07677648961544037, + 0.014452127739787102, + 0.034204546362161636, + 0.011067008599638939, + 0.035335276275873184, + 0.03496778756380081, + -0.017978588119149208, + 0.014211847446858883, + -0.025978494435548782, + -0.007879766635596752, + -0.010657118633389473, + 0.02130010351538658, + -0.014353188686072826, + 0.008077643811702728, + 0.04483339563012123, + 0.07508039474487305, + -0.11612585186958313, + -0.018812499940395355, + 0.06552573293447495, + -0.01957574300467968, + 0.010296699590981007, + 0.003473457647487521, + -0.032056160271167755, + -0.044522445648908615, + 0.005162483546882868, + -0.008551136590540409, + -0.0008842652896419168, + -0.014812547713518143, + 0.01927892677485943, + -0.037285782396793365, + -0.02175239473581314, + 0.014741877093911171, + 0.04313730448484421, + 0.038190364837646484, + 0.019731217995285988, + 0.012169469147920609, + 0.09633809328079224, + 0.025653410702943802, + -0.002878058236092329, + -0.028155148029327393, + -0.011455696076154709, + -0.034232813864946365, + -0.030133923515677452, + -0.017286017537117004, + -0.062020476907491684, + 0.05444459244608879, + -0.02240256406366825, + -0.025865420699119568, + 0.02460748516023159, + 0.04862133786082268, + -0.0009204839006997645, + 0.06501691043376923, + 0.10346168279647827, + 0.11985725164413452, + -0.06739144027233124, + 0.05181564763188362, + -0.02375943958759308, + -0.014798413030803204, + 0.004918670281767845, + 0.03301728144288063, + 0.00478086294606328, + -0.03607024997472763, + 0.06083321198821068, + -0.01163943950086832, + 0.04836692661046982, + -0.1132424920797348, + 0.019688814878463745, + 0.04333518072962761, + 0.05469900742173195, + -0.030897164717316628, + -0.013978634960949421, + 0.114034004509449, + 0.01830367185175419, + 0.02999258227646351, + 0.0074486760422587395, + 0.06953982263803482, + -0.027194028720259666, + -0.0690309926867485, + -0.03609851747751236, + 0.0941331759095192, + -0.005459300242364407, + 0.025823019444942474, + -0.10572314262390137, + -0.08118633180856705, + 0.043844010680913925, + -0.043448254466056824, + 0.04305249825119972, + 0.04268501326441765, + 0.006353282369673252, + 0.030953701585531235, + 0.0034169212449342012, + -0.03214096650481224, + 0.05133508890867233, + 0.061342038214206696, + -0.018741829320788383, + 0.07378005236387253, + 0.0018356675282120705, + -0.012324944138526917, + -0.03932109475135803, + -0.02850850112736225, + 0.053229060024023056, + 0.04375920444726944, + 0.056536439806222916, + -0.026826541870832443, + -0.0770026296377182, + -0.024437876418232918, + 0.014324920251965523, + -0.006851509679108858, + -0.033554378896951675, + -0.04732099920511246, + 0.07491078227758408, + 0.00244696787558496, + -0.01694679819047451, + 0.021413177251815796, + -0.04723619669675827, + 0.0033109153155237436, + 0.031801749020814896, + -0.008699544705450535, + 0.07751145958900452, + -0.024027986451983452, + 0.0383034385740757, + -0.004798530600965023, + -0.0659780278801918, + 0.012409748509526253, + -0.012211871333420277, + 0.001840967801399529, + 0.06671299785375595, + 0.03389359638094902, + -0.05862828716635704, + -0.03923628851771355, + 0.03431762009859085, + 0.0501195564866066, + 0.0048373993486166, + -0.012226005084812641, + 0.05891096964478493, + -0.030981969088315964, + -0.010190693661570549, + 0.02823995240032673, + 0.0388970710337162, + -0.08983640372753143, + 0.04025394469499588, + -0.010586448945105076, + 0.03208443149924278, + -0.04237406328320503, + -0.0036130319349467754, + -0.03287594020366669, + -0.03146252781152725, + -0.07570229470729828, + -0.11375132203102112, + 0.03417627885937691, + -0.023999718949198723, + -0.045200884342193604, + -0.0250597782433033, + -0.0788683369755745, + 0.05925019085407257, + -0.007978704757988453, + 0.015151766128838062, + -0.04073450714349747, + -0.02077714167535305, + 0.08395661413669586, + -0.014982156455516815, + 0.09560312330722809, + 0.06959635764360428, + -0.06467768549919128, + 0.037285782396793365, + 0.03937762975692749, + -0.00722253043204546, + -0.022897258400917053, + -0.03448722884058952, + -0.0009743702248670161, + 0.006381550803780556, + 0.10798460245132446, + 0.01737082190811634, + 0.03867092728614807, + -0.0470665879547596, + -0.0054946355521678925, + 0.004643055144697428, + -0.02766045369207859, + 0.004339172039180994, + -0.00913770217448473, + 0.02178066410124302, + 0.044748593121767044, + 0.03437415510416031, + 0.02736363746225834, + 0.020466191694140434, + -0.004844466224312782, + -0.04681217297911644, + 0.026317713782191277, + -0.01215533446520567, + -0.002222588751465082, + -0.051306821405887604, + 0.04771675541996956, + -0.034854717552661896, + -0.009936279617249966, + 0.02691134624183178, + -0.07242318242788315, + 0.07457156479358673, + 0.05715833976864815, + 0.05560358986258507, + 0.02583715319633484, + -0.023066867142915726, + 0.012261340394616127, + 0.028593305498361588, + 0.052183136343955994, + -0.03392186388373375, + -0.03163214027881622, + -0.014240115880966187, + -0.08050788938999176, + -0.003127171890810132, + -0.011971591040492058, + 0.013222459703683853, + 0.01857222057878971, + -0.004151894710958004, + 0.04963899403810501, + -0.06450808048248291, + 0.1181611642241478, + -0.0991649180650711, + 0.025794751942157745, + -0.032282307744026184, + -0.024819497019052505, + -0.006784372963011265, + 0.011858518235385418, + 0.027801794931292534, + 0.05495341867208481, + 0.005240221507847309, + -0.07626765966415405, + -0.04505954310297966, + 0.006254343781620264, + 0.04743407294154167, + -0.025102179497480392, + 0.008544069714844227, + 0.0029328279197216034, + -0.053370401263237, + -0.019886692985892296, + -0.008218985050916672, + -0.08169515430927277, + -0.018331941217184067, + -0.02833889052271843, + -0.00645928829908371, + 0.04019740968942642, + 0.016141153872013092, + 0.0225015040487051, + -0.056310296058654785, + -0.05970248207449913, + 0.013300198130309582, + -0.039264559745788574, + -0.022020943462848663, + 0.014141176827251911, + 0.034006670117378235, + 0.010699521750211716, + 0.047349270433187485, + 0.12008339911699295, + -0.028141014277935028, + 0.024974972009658813, + 0.0007230480550788343, + 0.006236676126718521, + 0.004823265131562948, + -0.05139162391424179, + 0.01869942806661129, + -0.017116406932473183, + 0.030755823478102684, + 0.0598720908164978, + -0.04197830706834793, + 0.05975901708006859, + 0.028296489268541336, + -0.014233049005270004, + -0.06326428055763245, + 0.0739496648311615, + -0.004727859981358051, + -0.03493952006101608, + 0.031830016523599625, + -0.02052272856235504, + 0.06716529279947281, + -0.016890261322259903, + -0.01392916589975357, + 0.04491820186376572, + 0.011427427642047405, + 0.0670522153377533, + 0.017441492527723312, + 0.034261081367731094, + -0.048904020339250565, + 0.06773065775632858, + -0.060889746993780136, + -0.00279148668050766, + -0.04542703181505203, + -0.017455626279115677, + -0.01694679819047451, + 0.06716529279947281, + 0.04373093694448471, + 0.005088279489427805, + -0.05379442498087883, + -0.007151859812438488, + -0.014798413030803204, + 0.05486861616373062, + -0.07915101945400238, + 0.024494413286447525, + 0.03166040778160095, + -0.02905973047018051, + -0.06501691043376923, + -0.006830308586359024, + 0.03476991131901741, + -0.014586402103304863, + 0.0052508218213915825, + -0.02970989979803562, + 0.02100328728556633, + 0.10374436527490616, + 0.013158856891095638, + -0.043391719460487366, + -0.004533515777438879, + 0.07677648961544037, + -0.045370493084192276, + 0.044098421931266785, + 0.03457203507423401, + 0.02973816730082035, + 0.025201117619872093, + 0.03799248859286308, + -0.06959635764360428, + -0.008883288130164146, + 0.09729921817779541, + 0.010006950236856937, + -0.015109363943338394, + 0.029822971671819687, + 0.006286145653575659, + -0.04262847453355789, + -0.027095088735222816, + -0.04028221219778061, + 0.022444967180490494, + 0.03369572013616562, + -0.004968139808624983, + 0.04788636416196823, + -0.032678063958883286, + -0.015462716110050678, + -0.009483987465500832, + -0.017384955659508705, + 0.05941979959607124, + 0.047999437898397446, + 0.02405625581741333, + 0.005922192241996527, + -0.06529958546161652, + 0.01426838431507349, + -0.13353906571865082, + -0.0018073993269354105, + -0.011907988227903843, + 0.03980165347456932, + 0.026176372542977333, + 0.0019452068954706192, + 2.8130192731623538e-05, + 0.039942994713783264, + 0.05772370472550392, + 0.04067796841263771, + 0.05427498370409012, + 0.016692383214831352, + -0.1197441816329956, + -0.023575695231556892, + -0.045568373054265976, + -0.007688955869525671, + -0.06563881039619446, + 0.07485424727201462, + 0.028042074292898178, + 2.3602859073434956e-05, + -0.031208114698529243, + 0.054105374962091446, + -0.01496802270412445, + -0.01804925873875618, + 0.03756846487522125, + 0.007759626489132643, + -0.021271836012601852, + -0.10351822525262833, + 0.004809130914509296, + -0.056112416088581085, + 0.0029222273733466864, + 0.030671019107103348, + 0.007356804329901934, + 0.00652642548084259, + 0.011943323537707329, + -0.07711570709943771, + 0.059815555810928345, + 0.004992874339222908, + 0.02240256406366825, + 0.04327864572405815, + -0.024027986451983452, + -0.0220068097114563, + -0.02295379526913166, + 0.015406180173158646, + 0.0708967000246048, + -0.04395708441734314, + -0.06914407014846802, + -0.017059870064258575, + -0.01850154995918274, + 0.06038091704249382, + -0.047575414180755615, + 0.0507131889462471, + 0.06303813308477402, + -0.006851509679108858, + -0.015957409515976906, + 0.01987255923449993, + 0.029455484822392464, + 0.05031743273139, + 0.02698201686143875, + 0.008423930034041405, + -0.016367299482226372, + -0.01571713015437126, + 0.038190364837646484, + -0.04217618331313133, + -0.06965289264917374, + -0.01305285096168518, + -0.03301728144288063, + -0.06326428055763245, + 0.01649450697004795, + 0.03522220253944397, + 0.060889746993780136, + 0.012720699422061443, + 0.0061483378522098064, + 0.023872511461377144, + -0.07796375453472137, + 0.012840839102864265, + -0.023815976455807686, + -0.005339160095900297, + -0.0163955669850111, + -0.08220398426055908, + 0.051985256373882294, + 0.005597107578068972, + 0.003362151561304927, + -0.052154865115880966, + -0.06038091704249382, + 0.03231057524681091, + -0.026529725641012192, + -0.03392186388373375, + -0.00947692058980465, + -0.018812499940395355, + -0.05334213003516197, + 0.05619722232222557, + 0.06665646284818649, + 0.008628874085843563, + 0.07954677194356918, + -0.003042367286980152, + -0.00832499098032713, + 0.03748365864157677, + 0.03977338597178459, + -0.1722099930047989, + -0.00819778349250555, + -0.0712924525141716, + 0.042939428240060806, + 0.037766341120004654, + -0.027278833091259003, + -0.07033133506774902, + -0.0525788888335228, + 0.00821191817522049, + 0.007575883064419031, + 0.06196393817663193, + -0.006038798484951258, + 0.008982227183878422, + 0.03126465156674385, + -0.03021872788667679, + -0.03799248859286308, + 0.0651865154504776, + 0.06038091704249382, + 0.04265674576163292, + -0.0015229503624141216, + 0.01217653602361679, + -0.027674587443470955, + -0.03841651231050491, + -0.012869107536971569, + 0.009999883361160755, + 0.01275603473186493, + -0.06354696303606033, + -0.026600396260619164, + -0.06603456288576126, + 0.02636011503636837, + 0.01390796434134245, + -0.05438805744051933, + -0.002699614968150854, + 0.05139162391424179, + 0.01332846563309431, + -0.03847304731607437, + -0.010748990811407566, + -0.004257900640368462, + -0.03980165347456932, + -0.044748593121767044, + -0.01802099123597145, + -0.06535612791776657, + -0.06987904012203217, + -0.05775197595357895, + -0.015349643304944038, + 0.007879766635596752, + 0.0097737368196249, + 0.11612585186958313, + 0.06196393817663193, + -0.015363777987658978, + -0.02132837288081646, + 0.006540559697896242, + -0.023589828982949257, + 0.013399136252701283, + -0.0625293031334877, + 0.05450112745165825, + -0.0074698771350085735, + 0.032734598964452744, + -0.024720558896660805, + 0.048904020339250565, + 0.02220468781888485, + 0.06230315938591957, + -0.015688862651586533, + 0.06122896447777748, + -0.07242318242788315, + -0.036861758679151535, + 0.08474812656641006, + -0.03872746229171753 + ] + }, + { + "id": "f7ed0be8-691a-4b82-92c3-a976bf9aac08", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "anna09", + "reviewDate": "2022-04-13T10:25:39", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d1a38990-fe46-4600-b0a6-aa6233c53add", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "omiller", + "reviewDate": "2021-03-03T00:30:38", + "stars": 2, + "verifiedUser": false + }, + { + "id": "980b5751-a4bd-4716-bb9d-883fe3d9e78f", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "mhernandez", + "reviewDate": "2021-12-28T09:13:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eb0a2842-e334-494c-88e5-c92e55fa8168", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "geoffreylopez", + "reviewDate": "2022-07-23T14:30:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "34c29060-d291-4228-8005-1bc81946872f", + "productId": "a10787d9-f457-4925-9df2-b9bd1814fe6f", + "category": "Accessory", + "docType": "customerRating", + "userName": "connie46", + "reviewDate": "2022-10-18T02:19:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9f0b6a59-c858-4769-8145-015cc832befc", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Mini (Silver)", + "description": "This Luxe Speaker Mini (Silver) is perfect for any audio system. It features an integrated LED-lit bottom, a 6.8x12\" drive bay and two 9.7oz. cartridges.\n\nThe Luxe Mini has a dual output system, a 2.0 Amp output and a 5-channel headphone amplifier. As with all products here on this", + "countryOfOrigin": "Argentina", + "rareItem": true, + "firstAvailable": "2020-01-30T07:54:07", + "price": 940.14, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2021-03-24T19:14:16", + "newPrice": 1012.27 + }, + { + "priceDate": "2021-10-25T19:14:16", + "newPrice": 932.73 + }, + { + "priceDate": "2022-05-28T19:14:16", + "newPrice": 931.17 + }, + { + "priceDate": "2022-12-29T19:14:16", + "newPrice": 1025.2 + }, + { + "priceDate": "2023-09-14T19:14:16", + "newPrice": 940.14 + } + ], + "descriptionVector": [ + -0.019978763535618782, + 0.0603363960981369, + -0.04297167807817459, + -0.04470548406243324, + -0.042758285999298096, + -0.042144786566495895, + -0.042838308960199356, + 0.03358246013522148, + -0.032142069190740585, + 0.09453235566616058, + -0.01595100201666355, + 0.016844578087329865, + -0.0033875873778015375, + 0.004377856384962797, + 0.008442294783890247, + 0.012536740861833096, + -0.04006422311067581, + -0.008495641872286797, + 0.02798093855381012, + 0.02176591567695141, + 0.07324657589197159, + -0.1157647967338562, + -0.01989874057471752, + 0.00412112008780241, + -0.07345996797084808, + 0.0074420226737856865, + -0.0315018929541111, + 0.04209144040942192, + -0.03624984994530678, + -0.0032125397119671106, + 0.06001631170511246, + 0.022912893444299698, + -0.04734620079398155, + 0.043105047196149826, + -0.05868261307477951, + -0.02391316555440426, + 0.06316383183002472, + -0.0017137990798801184, + 0.016164392232894897, + 0.0153908496722579, + -0.004864655435085297, + 0.0006051644450053573, + -0.02920793741941452, + -0.03163526579737663, + 0.014030479826033115, + 9.221256186719984e-05, + -0.022979578003287315, + 0.037850286811590195, + 0.029794763773679733, + -0.01897849142551422, + -0.017604785040020943, + 0.007942158728837967, + -0.08540987968444824, + 0.016071034595370293, + -0.01771147921681404, + -0.039877504110336304, + -0.0010702909203246236, + 0.17615453898906708, + -0.011976588517427444, + 0.0008360605570487678, + 0.10344144701957703, + -0.05430809408426285, + 0.007281979080289602, + 0.0005488991737365723, + -0.040117569267749786, + 0.009469239972531796, + -0.02031218633055687, + 0.03998420014977455, + -0.0037043399643152952, + 0.10946974903345108, + 0.02816765569150448, + -0.014497273601591587, + -0.000733949476853013, + 0.10162761807441711, + 0.08380944281816483, + -0.03552965447306633, + 0.010222778655588627, + 0.04948011413216591, + -0.007388674654066563, + 0.001041116309352219, + 0.06796513497829437, + -0.026193784549832344, + -0.04158463329076767, + -0.0172846969217062, + -0.013710392639040947, + 0.001782151055522263, + -0.0024673372972756624, + -0.1110701858997345, + -0.010842946358025074, + 0.09335870295763016, + -0.01166983786970377, + 0.030488286167383194, + 0.04265158995985985, + 0.04606585204601288, + 0.031982023268938065, + 0.014497273601591587, + -0.03430265560746193, + 0.022472774609923363, + -0.03358246013522148, + -0.03769024461507797, + 0.05033367872238159, + 0.008315593004226685, + -0.02779421955347061, + -0.024059871211647987, + -0.020605599507689476, + 0.09751983731985092, + 0.06118996441364288, + -0.022326067090034485, + 0.052574288100004196, + -0.14041149616241455, + 0.0726063996553421, + -0.024633361026644707, + -0.021672556176781654, + -0.04598582908511162, + 0.03131517767906189, + 0.016951274126768112, + 0.008969103917479515, + -0.035556331276893616, + -0.0517473965883255, + 0.00516473688185215, + 0.06961891800165176, + 0.02127244882285595, + 0.0169779472053051, + 0.04411865770816803, + -0.001382875838316977, + 0.011543137021362782, + 0.033289048820734024, + -0.024006525054574013, + 0.030648330226540565, + -0.024620024487376213, + -0.06828522682189941, + 0.05948283150792122, + -0.025006795302033424, + -0.008062191307544708, + -0.006395071279257536, + -0.01113635953515768, + -0.01004272885620594, + 0.05606856942176819, + -0.04265158995985985, + -0.027767546474933624, + -0.012476724572479725, + 0.019138535484671593, + 0.029101241379976273, + 0.002217269269749522, + -0.05193411558866501, + -0.04278496280312538, + -0.09810665994882584, + 0.014003805816173553, + -0.06929883360862732, + 0.04641261324286461, + 0.015684261918067932, + -0.012143299914896488, + -0.006825188174843788, + -0.03899726644158363, + -0.005858258809894323, + 0.05782904848456383, + -0.09159822762012482, + 0.0031375193502753973, + 0.028461068868637085, + 0.05606856942176819, + 0.04859987646341324, + -0.02499345876276493, + 0.014177186414599419, + 0.008875745348632336, + -0.01282348483800888, + 0.03606313467025757, + 0.03491615504026413, + 0.024780068546533585, + -0.10925635695457458, + 0.01464398019015789, + 0.006768506020307541, + 7.074839231790975e-05, + -0.056175265461206436, + -0.02337968721985817, + 0.03123515471816063, + -0.025633633136749268, + 0.09661292284727097, + 0.007795452140271664, + -0.0307816993445158, + -0.020605599507689476, + 0.004494554828852415, + 0.10424166172742844, + -0.04465213418006897, + -0.0012770136818289757, + -0.003754353616386652, + 0.018925143405795097, + 0.0382503941655159, + -0.05948283150792122, + -0.007495370227843523, + 0.025593621656298637, + -0.03454272076487541, + 0.01609770767390728, + 0.006084986962378025, + -0.0046779378317296505, + -0.03624984994530678, + -0.020872339606285095, + 0.053454525768756866, + 0.03622317686676979, + 0.014483936131000519, + 0.021525850519537926, + -0.021325794979929924, + 0.07442022860050201, + -0.0011344749946147203, + -0.030328242108225822, + -0.025740329176187515, + -0.05457483232021332, + 0.035396285355091095, + 0.058629266917705536, + 0.016391120851039886, + 0.005201413761824369, + 0.01567092537879944, + 0.021179089322686195, + -0.049160026013851166, + 0.0767141804099083, + 0.09213170409202576, + 0.042678266763687134, + 0.017258023843169212, + 0.03998420014977455, + -0.013350294902920723, + -0.06604461371898651, + 0.034596070647239685, + -0.06620465964078903, + 0.0640174001455307, + 0.003744350979104638, + -0.1071757972240448, + -0.09890688210725784, + -0.0006747667212039232, + 0.02599373087286949, + 0.0681251809000969, + -0.05526835471391678, + -0.0058182477951049805, + 0.03694337233901024, + 0.011383093893527985, + 0.009729310870170593, + -0.04259824380278587, + -0.012590087950229645, + -0.026780610904097557, + -0.05017363652586937, + 0.019338589161634445, + 0.06887204945087433, + -0.0816221833229065, + 0.015590904280543327, + -0.030941741541028023, + -0.008308924734592438, + -0.02027217671275139, + 0.0032592189963907003, + 0.10274792462587357, + -0.040144242346286774, + -0.018538370728492737, + 0.013937121257185936, + -0.06983231008052826, + -0.012650104239583015, + -0.0361965037882328, + 0.01701795868575573, + -0.08034183084964752, + 0.0017104648286476731, + 0.07025909423828125, + -0.03584974259138107, + 0.0160576980561018, + -0.02698066644370556, + -0.022859545424580574, + -0.057402268052101135, + 0.01775149069726467, + -0.004477883689105511, + -0.066258005797863, + -0.042838308960199356, + 0.08647683262825012, + -0.036009784787893295, + 0.04409198462963104, + -0.005371459759771824, + -0.017764827236533165, + 0.024673372507095337, + 0.018578382208943367, + 0.04913335293531418, + -0.03358246013522148, + 0.009075799956917763, + -0.1135241836309433, + 0.04105115681886673, + -0.0726063996553421, + -0.04579911381006241, + 0.10536196827888489, + 0.05473487451672554, + 0.05692213773727417, + -0.06535109132528305, + 0.014537284150719643, + -0.010309468023478985, + 0.056015223264694214, + -0.01867174170911312, + -0.025113491341471672, + 0.006501766853034496, + 0.018525034189224243, + -0.02591370977461338, + 0.055428396910429, + 0.025967057794332504, + 0.03747685253620148, + 0.03403591737151146, + -0.008455631323158741, + -0.036623287945985794, + -0.005454815924167633, + -0.013723730109632015, + -0.006318383850157261, + 0.01101632695645094, + -0.03440935164690018, + -0.05054707080125809, + -0.036623287945985794, + 0.05097385495901108, + -0.07100596278905869, + 0.10690905153751373, + -0.09117144346237183, + 0.02912791632115841, + 0.08578331023454666, + -0.025860361754894257, + -0.08514314144849777, + -0.06775174289941788, + 0.02875448204576969, + -0.024673372507095337, + 0.011323077604174614, + -0.003287560073658824, + 0.00885573960840702, + 0.04307837411761284, + -0.0070352451875805855, + -0.04073106870055199, + -0.11480453610420227, + 0.05009361356496811, + -0.01955198124051094, + 0.00491466885432601, + -0.00019713690562639385, + -0.004191139247268438, + 0.012816816568374634, + 0.016031023114919662, + -0.015190795063972473, + -0.019271904602646828, + 0.0703657865524292, + -0.06940552592277527, + 0.021565860137343407, + 0.008042185567319393, + -0.012723457999527454, + -0.03982415795326233, + 0.05692213773727417, + -0.025153502821922302, + 0.060656484216451645, + -0.027127372100949287, + -0.031528569757938385, + -0.03299563378095627, + 0.0020222163293510675, + -0.06353726983070374, + -0.04305170103907585, + 0.039077285677194595, + 0.012883501127362251, + 0.008562327362596989, + 0.0015379179967567325, + -0.043985288590192795, + 0.07148609310388565, + -0.03806367889046669, + 0.05606856942176819, + -0.05660204961895943, + -0.004504557698965073, + -0.04998691752552986, + 0.03174195811152458, + 0.05385463684797287, + -0.006665144581347704, + -0.020032111555337906, + 0.012330017983913422, + 0.01207661535590887, + 0.00839561503380537, + 0.04361185058951378, + -0.008388946764171124, + -0.07495370507240295, + -0.11661835759878159, + 0.0325155034661293, + -0.014724001288414001, + -0.03729013353586197, + -0.06588457524776459, + 0.05825583264231682, + 0.015497544780373573, + 0.0267939493060112, + 0.10434836149215698, + -0.023593079298734665, + -0.02763417735695839, + 0.062310267239809036, + 0.040571026504039764, + 0.031982023268938065, + 0.015817632898688316, + -0.020605599507689476, + 0.06428413838148117, + -0.013103561475872993, + -0.06551113724708557, + -0.007575392257422209, + 0.009395887143909931, + -0.005248093046247959, + -0.019992100074887276, + -0.04603917896747589, + 0.030568307265639305, + 0.06337722390890121, + 0.013250268064439297, + 0.0034742774441838264, + 0.00645842170342803, + 0.05734891816973686, + -0.03256884962320328, + -0.04209144040942192, + -0.006491764448583126, + 0.028621111065149307, + 0.0029257950372993946, + -0.06145670264959335, + -0.06492431461811066, + -0.028647786006331444, + -0.034356001764535904, + 0.06700487434864044, + -0.006608462426811457, + -0.05569513514637947, + 0.03475611284375191, + -0.061883483082056046, + -0.0206589475274086, + 0.02990145981311798, + 0.017538100481033325, + 0.03123515471816063, + 0.05532170087099075, + 0.019645338878035545, + 0.023486383259296417, + -0.0005868261214345694, + 0.0345693938434124, + -0.0018971823155879974, + -0.05558843910694122, + -0.01793820783495903, + -0.0321153961122036, + 0.01525747962296009, + -0.010316137224435806, + -0.02763417735695839, + 0.053187787532806396, + -0.08605005592107773, + -0.009289191104471684, + -0.04059769958257675, + -0.031368523836135864, + -0.0012320014648139477, + -0.020552251487970352, + 0.009102473966777325, + -0.0035576336085796356, + 0.026193784549832344, + -0.08103535324335098, + 0.02556694857776165, + -0.01920522004365921, + -0.004954679869115353, + 0.03208871930837631, + 0.0603363960981369, + -0.08546322584152222, + -0.06908544152975082, + -0.04393193870782852, + 0.04993357136845589, + 0.0060316394083201885, + 0.0002727824612520635, + -0.012710120528936386, + 0.0005072212079539895, + -0.06044309213757515, + 0.046706028282642365, + 0.06487096101045609, + -0.015377512201666832, + 0.0030791701283305883, + 0.08226235955953598, + -0.031208481639623642, + -0.017538100481033325, + 0.0025790343061089516, + 0.07602065801620483, + 0.01535083819180727, + 0.04001087322831154, + -0.04198474436998367, + 0.0021655885502696037, + -0.053187787532806396, + 0.06924548745155334, + -0.023833144456148148, + 0.033902548253536224, + 0.04542567953467369, + -0.013296946883201599, + 0.03387587144970894, + -0.00964262057095766, + -0.061350006610155106, + -0.05262763425707817, + 0.03366248309612274, + -0.05649535357952118, + 0.003961076494306326, + -0.009809332899749279, + -0.028701134026050568, + 0.0388638935983181, + 0.000880239240359515, + 0.06183013692498207, + 0.09335870295763016, + -0.015457534231245518, + 0.041531287133693695, + 0.05217418074607849, + 0.04209144040942192, + 0.06897874921560287, + 0.005921609234064817, + 0.026247132569551468, + -0.06359061598777771, + -0.0566553957760334, + -0.016457805410027504, + 0.011543137021362782, + -0.017778165638446808, + -0.009542593732476234, + -0.05262763425707817, + 0.06652474403381348, + 0.05702883377671242, + -0.022432763129472733, + 0.02626047097146511, + 0.027114035561680794, + -0.00879572331905365, + 0.060389745980501175, + -0.04102448374032974, + 0.012296674773097038, + -0.019098524004220963, + 0.03158191591501236, + 0.031448546797037125, + -0.027340764179825783 + ] + }, + { + "id": "facd3c95-6056-45c8-8dcb-7c6e4fdf6814", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "qsummers", + "reviewDate": "2021-06-14T12:58:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "28a36a1f-759b-4ff4-b87f-a387aa8f9bc0", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "williamsheather", + "reviewDate": "2022-12-07T17:43:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a326fade-8792-4013-bdc3-95581bc7c42c", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "gibsonkristina", + "reviewDate": "2021-03-24T19:14:16", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9070250b-d545-45ca-a9d5-1fcaeba6d79a", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "uschaefer", + "reviewDate": "2021-05-12T15:01:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7c503ed6-83aa-4aec-90c3-15a891d7a7e6", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "matthew44", + "reviewDate": "2021-05-11T00:18:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "36790892-621c-4f2a-a03c-aa83031e3562", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "bryanwashington", + "reviewDate": "2021-10-29T19:14:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "e4b1acb2-c251-4893-a6dd-fd8b606d1cfd", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "robertnielsen", + "reviewDate": "2022-01-17T09:21:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "2b21e4ad-8b3c-4cf3-b44b-fe0aaf8bcfeb", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "justin63", + "reviewDate": "2022-10-02T09:33:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0476cf58-6720-488f-be5d-aa73ebff208a", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "dariuscurtis", + "reviewDate": "2022-05-18T23:34:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a042783f-b26d-40c7-aaf7-6fe1b525599c", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "ajones", + "reviewDate": "2021-04-08T23:57:04", + "stars": 4, + "verifiedUser": false + }, + { + "id": "53459986-5bf7-4045-8140-42c2e504fcc4", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "ojacobs", + "reviewDate": "2022-12-30T18:26:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "95c78d67-1980-4c1c-806b-c3138bc5d9c0", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "rachelgonzalez", + "reviewDate": "2022-01-17T19:31:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "60a188ba-bd68-45b5-88c5-9ea7b44cc13e", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "wallacejoanna", + "reviewDate": "2021-11-07T16:05:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9bc43ae8-96f6-476f-a03c-6a08f6d0eb4b", + "productId": "9f0b6a59-c858-4769-8145-015cc832befc", + "category": "Media", + "docType": "customerRating", + "userName": "elizabethwolf", + "reviewDate": "2021-10-30T19:49:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d9dc4232-9062-4308-b62c-526052d635a2", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Silver)", + "description": "This Premium Computer Super (Silver) is a great thing, but if you are into super computers then this is by far my favorite to own. I can't wait to play with it.", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-07-30T04:04:13", + "price": 485.97, + "stock": 35, + "priceHistory": [ + { + "priceDate": "2021-05-05T09:52:52", + "newPrice": 512.14 + }, + { + "priceDate": "2021-09-01T09:52:52", + "newPrice": 499.7 + }, + { + "priceDate": "2021-12-29T09:52:52", + "newPrice": 493.27 + }, + { + "priceDate": "2022-04-27T09:52:52", + "newPrice": 515.21 + }, + { + "priceDate": "2022-08-24T09:52:52", + "newPrice": 452.02 + }, + { + "priceDate": "2023-03-18T09:52:52", + "newPrice": 485.97 + } + ], + "descriptionVector": [ + -0.005641444120556116, + 0.026361163705587387, + -0.051534656435251236, + 0.002919156802818179, + 0.0126512935385108, + 0.000730192638002336, + -0.09005655348300934, + 0.030853664502501488, + 0.08515094965696335, + 0.12806206941604614, + 0.05323870852589607, + -0.052335042506456375, + 0.05948689579963684, + -0.0017621443839743733, + 0.003036955837160349, + 0.004582866560667753, + -0.0076553234830498695, + -0.010843965224921703, + -0.05119900777935982, + -0.011992909014225006, + 0.03382284566760063, + 0.014716810546815395, + -0.03591418266296387, + -0.002192998304963112, + -0.014264978468418121, + -0.013057941570878029, + -0.02430855669081211, + 0.008901088498532772, + 0.004392451606690884, + -0.0006922709872014821, + 0.03335810452699661, + 0.0513797402381897, + -0.007939332164824009, + 0.048074912279844284, + 0.06093275919556618, + -0.03989030048251152, + -0.006854935549199581, + -0.04456353560090065, + 0.10978224128484726, + -0.017389073967933655, + 0.022268857806921005, + -0.05385836213827133, + 0.0027093777898699045, + 0.0005603522295132279, + 0.06294663995504379, + 0.016485409811139107, + 0.0009101185132749379, + -0.0008592874510213733, + -0.010508319362998009, + 0.012986939400434494, + -0.02496694028377533, + 0.021210279315710068, + 0.038005515933036804, + 0.027006637305021286, + -0.02547040954232216, + 0.032351162284612656, + -0.017479440197348595, + -0.01967405155301094, + -0.01568502187728882, + -0.02075844816863537, + 0.004883011803030968, + 0.014045516960322857, + -0.016691960394382477, + -0.011031152680516243, + -0.03906409442424774, + 0.011954180896282196, + -0.08122646808624268, + 0.042627111077308655, + 0.00769405160099268, + 0.012877209112048149, + -0.02904633618891239, + -0.018331466242671013, + -0.002967567415907979, + 0.04533810168504715, + 0.07502991706132889, + 0.047713447362184525, + 0.08473784476518631, + -0.0023350026458501816, + 0.04507991299033165, + -0.018137823790311813, + -0.003530743531882763, + 0.05375508591532707, + -0.01519446074962616, + -0.00968856643885374, + 0.07348077744245529, + -0.010843965224921703, + 0.012470560148358345, + -0.09052129089832306, + -0.02467002160847187, + 0.01568502187728882, + -0.029072154313325882, + 0.07368732988834381, + 0.07895439863204956, + -0.036792024970054626, + 0.022501228377223015, + 0.07828310132026672, + -0.012386648915708065, + 0.013968060724437237, + -0.0002894547942560166, + 0.02033243514597416, + -0.011921907775104046, + -0.07477172464132309, + -0.0015015342505648732, + -0.06976284831762314, + -0.06181060150265694, + -0.011282888241112232, + 0.05489112064242363, + 0.016201401129364967, + 0.003280622186139226, + -0.19612085819244385, + -0.05540750175714493, + -0.06315319240093231, + -0.006570926867425442, + -0.011663717217743397, + 0.010734234936535358, + 0.010004849173128605, + -0.05463293194770813, + 0.022501228377223015, + -0.008804267272353172, + -0.053341981023550034, + 0.02074553817510605, + 0.10451517254114151, + 0.014200431294739246, + -0.03797969967126846, + 0.011831540614366531, + -0.0191318541765213, + -0.0396837517619133, + -0.0018638066248968244, + 0.08024534583091736, + 0.003033728338778019, + -0.09098603576421738, + 0.04448607936501503, + -0.011850905604660511, + 0.037024397403001785, + -0.05416819080710411, + 0.057576291263103485, + -0.00035722958273254335, + 0.11236413568258286, + -0.036972757428884506, + -0.028710689395666122, + -0.015091185458004475, + -0.03072456829249859, + -0.009243189357221127, + -0.022733598947525024, + -0.03044055961072445, + 0.099403016269207, + -0.04469262808561325, + 0.03054383583366871, + -0.009204461239278316, + 0.05571732670068741, + 0.022759418934583664, + 0.006854935549199581, + -0.062223706394433975, + -0.046809785068035126, + -0.004043895285576582, + 0.07187999784946442, + -0.053083792328834534, + 0.05607879161834717, + -0.013148307800292969, + 0.10410206764936447, + -0.057008277624845505, + -0.052567414939403534, + -0.06470232456922531, + 0.017053427174687386, + 0.004966923501342535, + 0.057782843708992004, + 0.05499439686536789, + 0.014122974127531052, + -0.03658547252416611, + -0.0007047770777717233, + 0.003035342087969184, + -0.08819758892059326, + 0.05385836213827133, + -0.004573184065520763, + 0.08551241457462311, + 0.027471378445625305, + 0.032841723412275314, + -0.03805715590715408, + -0.004763599019497633, + -0.05473620817065239, + -0.01203163806349039, + 0.05628534406423569, + -0.041697628796100616, + 0.026670990511775017, + 0.06552853435277939, + 0.0403292253613472, + 0.07621758431196213, + 0.033306464552879333, + 0.09609819203615189, + 0.004444089252501726, + 0.02891724184155464, + -0.04407297447323799, + 0.0732225850224495, + -0.023985818028450012, + 0.0049443319439888, + 0.06826534122228622, + 0.02070681005716324, + 0.03632728382945061, + 0.0034016487188637257, + 0.03544943779706955, + -0.005918997805565596, + 0.02417946048080921, + 0.06847189366817474, + -0.056336984038352966, + -0.009811206720769405, + 0.011134428903460503, + 0.04355659335851669, + 0.03467487171292305, + -0.031963881105184555, + 0.04306603595614433, + 0.022836875170469284, + 0.016575776040554047, + -0.04941749945282936, + -0.03426176682114601, + 0.0767856016755104, + -0.04004521667957306, + 0.026516078040003777, + -0.000315072073135525, + -0.0585574135184288, + -0.09010818600654602, + 0.07291276007890701, + -0.036482200026512146, + -0.002055835211649537, + -0.004314994439482689, + 0.01482008583843708, + -0.06903991103172302, + 0.05437473952770233, + 0.00784251093864441, + -0.027677930891513824, + 0.05292887985706329, + -0.05370344966650009, + -0.013554956763982773, + 0.05938361957669258, + 0.032506078481674194, + -0.013968060724437237, + 0.05442637950181961, + 0.02417946048080921, + -0.023301616311073303, + -0.09010818600654602, + 0.07590775936841965, + 0.032764267176389694, + 0.008675171993672848, + -0.05819594860076904, + -0.05917706713080406, + 0.0249798484146595, + -0.006451514083892107, + 0.06408267468214035, + -0.03077620640397072, + -0.015736659988760948, + 0.021171551197767258, + -0.04009685292840004, + -0.006854935549199581, + -0.017608534544706345, + 0.10363733023405075, + -0.006874299608170986, + 0.01971277967095375, + 0.05088917911052704, + 0.037928059697151184, + 0.018202370032668114, + 0.023766357451677322, + -0.09506542980670929, + 0.016317585483193398, + 0.01979023776948452, + 0.07585611939430237, + -0.09589163959026337, + 0.03841862082481384, + 0.06635474413633347, + -0.010572866536676884, + -0.07502991706132889, + 0.015323556028306484, + 0.006574153900146484, + -0.005199294071644545, + 0.04409879446029663, + -0.013490409590303898, + -0.010940786451101303, + -0.037024397403001785, + -0.04835892096161842, + 0.08029698580503464, + 0.037721507251262665, + -0.008571896702051163, + 0.036946941167116165, + 0.04394387826323509, + 0.0685751736164093, + -0.0028562231454998255, + 0.06299827247858047, + -0.06821370869874954, + 0.021003728732466698, + -0.06304991245269775, + -0.01454898715019226, + -0.04053577408194542, + -0.023043427616357803, + -0.009901572950184345, + 0.04306603595614433, + 0.05091499909758568, + 0.04884948208928108, + -0.023959999904036522, + -0.013916422612965107, + -0.04546719789505005, + -0.01926094852387905, + -0.037721507251262665, + 0.041697628796100616, + 0.02940780110657215, + 0.00732613168656826, + -0.006403103470802307, + -0.017466530203819275, + 0.03537198156118393, + -0.011702446267008781, + 0.03470068797469139, + -0.08690663427114487, + -0.017776357010006905, + 0.05057935416698456, + -0.015878664329648018, + -0.061604052782058716, + 0.01274165976792574, + 0.06614819169044495, + -0.037489138543605804, + 0.04941749945282936, + 0.016201401129364967, + -0.037850603461265564, + -0.037953879684209824, + 0.022694870829582214, + -0.05499439686536789, + -0.06310155242681503, + 0.0696079283952713, + 0.023805085569620132, + -0.01031467691063881, + -0.0793675035238266, + 0.03999357670545578, + -0.05597551539540291, + 0.003161209635436535, + 0.03808297589421272, + -0.01274165976792574, + 0.017453620210289955, + 0.051715388894081116, + 0.05045025795698166, + -0.04448607936501503, + -0.04869456961750984, + 0.10508318990468979, + 0.04977896437048912, + 0.031989697366952896, + 0.028013577684760094, + 0.002964339917525649, + -0.03883172571659088, + -0.013167672790586948, + -0.03013073280453682, + -0.015323556028306484, + 0.003537198295816779, + -0.10441190004348755, + 0.004931422416120768, + -0.00011870672460645437, + 0.0015459106070920825, + -0.04794581979513168, + 0.024089094251394272, + -0.017995819449424744, + 0.12940464913845062, + 0.026374073699116707, + 0.032170429825782776, + 0.014097155071794987, + 0.02935616299510002, + -0.006244962103664875, + 0.04378896579146385, + -0.005680172238498926, + 0.06181060150265694, + 0.06496051698923111, + -0.026954999193549156, + 0.04523482918739319, + 0.026980819180607796, + 0.06511542946100235, + -0.00035420391941443086, + 0.019002757966518402, + 0.03883172571659088, + -0.018731659278273582, + -0.005396163556724787, + 0.012941756285727024, + 0.004163308069109917, + -0.0062804631888866425, + -0.03051801770925522, + 0.027109913527965546, + 0.0253671333193779, + 0.015930302441120148, + -0.008371799252927303, + 0.03482978418469429, + 0.0148329958319664, + -0.016446681693196297, + 0.07838638126850128, + -0.04977896437048912, + 0.03563017398118973, + -0.05478784441947937, + -0.037230949848890305, + 0.052180130034685135, + -0.048255644738674164, + 0.0012804593425244093, + -0.05052771419286728, + -0.023714719340205193, + 0.02066808193922043, + 0.008584805764257908, + 0.025818966329097748, + 0.047455258667469025, + 0.012838480994105339, + 0.005402618553489447, + 0.02495403029024601, + 0.02056480571627617, + 0.010734234936535358, + -0.04030340537428856, + -0.0407165102660656, + -0.12093603610992432, + -0.021791206672787666, + 0.0032273707911372185, + -0.07761181145906448, + -0.042472198605537415, + -0.04882366210222244, + -0.06015818938612938, + -0.016833964735269547, + 0.015839936211705208, + 0.07554629445075989, + 0.015594654716551304, + 0.07725034654140472, + 0.02504439651966095, + 0.03072456829249859, + -0.007397133391350508, + 0.03418431058526039, + 0.07854129374027252, + 0.023288706317543983, + 0.03488142415881157, + -0.022514138370752335, + 0.028839783743023872, + -0.01525900885462761, + 0.007590775843709707, + 0.002964339917525649, + -0.07606267184019089, + -0.0026383756194263697, + -0.017789267003536224, + 0.011263523250818253, + 0.027006637305021286, + -0.036946941167116165, + 0.03369374945759773, + 0.04081978276371956, + 0.05845413729548454, + -0.03939974308013916, + 0.07198327779769897, + 0.004331131465733051, + -0.06919483095407486, + 0.04120706766843796, + -0.014897543005645275, + -0.03668874874711037, + 0.06583835929632187, + 0.0035662446171045303, + 0.0665096566081047, + -0.007126034703105688, + 0.0019444908248260617, + -0.04053577408194542, + -0.002270455239340663, + -0.02979508601129055, + -0.047687631100416183, + -0.04585448279976845, + 0.052825603634119034, + -0.0010263038566336036, + 0.08107154816389084, + -0.07441025972366333, + 0.028375042602419853, + 0.013671142049133778, + -0.0031531411223113537, + 0.06749077886343002, + -0.04471844807267189, + -0.03599163889884949, + 0.021029546856880188, + -0.052877239882946014, + -0.02447637915611267, + 0.006719385739415884, + 0.05411655083298683, + -0.007629504427313805, + -0.014303706586360931, + 0.004576411563903093, + 0.07544301450252533, + -0.015620473772287369, + -0.04588030278682709, + 0.07389388233423233, + 0.052773963660001755, + -0.022772327065467834, + 0.03952883556485176, + -0.006925937719643116, + -0.04884948208928108, + -0.0191964004188776, + -0.0156721118837595, + 0.049443319439888, + 0.04484754428267479, + -0.03390030190348625, + 0.03480396419763565, + 0.032790087163448334, + 0.07410042732954025, + 0.04118125140666962, + 0.031086035072803497, + 0.021197371184825897, + -0.08690663427114487, + -0.028504138812422752, + 0.03170568868517876, + -0.002820722060278058, + 0.05520094931125641, + 0.028813965618610382, + 0.07854129374027252, + -0.02896887995302677, + 0.011921907775104046, + 0.002619011327624321, + 0.026670990511775017, + 0.025767328217625618, + 0.013335495255887508, + -0.031395863741636276, + -0.004576411563903093, + -0.09485887736082077, + -0.006938846781849861, + 0.012580291368067265, + -0.057163190096616745 + ] + }, + { + "id": "1dd50144-8f30-4150-a9e9-c667e2c15da9", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "jerryburgess", + "reviewDate": "2021-11-14T05:47:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c6cbef2d-c8bf-48b0-8fb6-93c88d840779", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertmiller", + "reviewDate": "2022-08-26T03:32:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "33d637dc-8f47-46b9-a940-6fe967ebd6f6", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "xberry", + "reviewDate": "2021-11-09T21:09:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0a6d9244-2277-4246-a417-5c8d7e3eb935", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "zamorajacob", + "reviewDate": "2022-08-07T23:44:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "92c37f21-db34-4cbd-87e5-81c703b677bc", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "mendezstephanie", + "reviewDate": "2022-01-09T21:25:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "741c2e8a-2129-42ff-b0ce-d96fe09e3bcb", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "erinrichards", + "reviewDate": "2022-08-18T17:39:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "43492af1-bd43-41be-a305-3d57c589ab52", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "carol01", + "reviewDate": "2021-11-03T06:58:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ba0421b3-a176-481b-b117-ab9678e94a29", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "michellebutler", + "reviewDate": "2021-12-12T19:44:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d422a0b4-1705-412c-a1b1-e2d362cb11ee", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "vcraig", + "reviewDate": "2022-02-22T22:42:34", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ec6bcf35-f2b0-4558-967e-b18b9bf2ee26", + "productId": "d9dc4232-9062-4308-b62c-526052d635a2", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamespacheco", + "reviewDate": "2021-05-05T09:52:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Mini (Black)", + "description": "This Basic Stand Mini (Black) is made of plastic with a hard shell, and comes with a 4-inch stainless steel edge. The 5-inch stainless steel edge is also included, or can be mounted to any other stand.\n\nAll accessories are sold as-is, including buttons, markers, etc., and the case", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-04-02T10:10:56", + "price": 803.6, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-01-13T05:38:27", + "newPrice": 748.93 + }, + { + "priceDate": "2021-06-16T05:38:27", + "newPrice": 864.76 + }, + { + "priceDate": "2021-11-17T05:38:27", + "newPrice": 749.48 + }, + { + "priceDate": "2022-04-20T05:38:27", + "newPrice": 742.28 + }, + { + "priceDate": "2022-09-21T05:38:27", + "newPrice": 869.53 + }, + { + "priceDate": "2023-08-30T05:38:27", + "newPrice": 803.6 + } + ], + "descriptionVector": [ + -0.055044326931238174, + -0.027213377878069878, + -0.04347159340977669, + 0.015492964535951614, + -0.04478728771209717, + -0.008082118816673756, + -0.03826251998543739, + 0.01797667145729065, + -0.025642601773142815, + -0.02350795641541481, + -0.004400189965963364, + 0.06884568929672241, + 0.004568007774651051, + -0.08345257490873337, + 0.08474141359329224, + 0.01494252122938633, + -0.01313679851591587, + 0.02421950362622738, + 0.005672250874340534, + -0.0618644542992115, + 0.08914496004581451, + -0.09225966036319733, + -0.07781388610601425, + 0.06411992758512497, + -0.0212659053504467, + -0.021346459165215492, + 0.012942129746079445, + -0.017063742503523827, + -0.02975078858435154, + 0.055527642369270325, + -0.01709059253334999, + -0.014230973087251186, + -0.05337957292795181, + 0.04024948552250862, + -0.012337984517216682, + -0.0010950128780677915, + -0.02276955544948578, + -0.004809665959328413, + -0.009196430444717407, + 0.018379434943199158, + 0.05195647478103638, + -0.012801162898540497, + 0.002980449004098773, + 0.01008251029998064, + -0.020151594653725624, + 0.042290154844522476, + -0.07802869379520416, + -0.04328363761305809, + -0.020728887990117073, + -0.04376695305109024, + -0.0036987103521823883, + -0.01166671235114336, + 0.005705814342945814, + 0.003034150693565607, + 0.05230553820729256, + -0.01743965409696102, + -0.0012343019479885697, + 0.23822110891342163, + 0.04988895729184151, + -0.04784828796982765, + -0.05023801699280739, + -0.05461471527814865, + 0.038477327674627304, + 0.05783681944012642, + -0.0047593205235898495, + 0.034073781222105026, + -0.013579838909208775, + 0.0016941234935075045, + -0.04553911089897156, + 0.006420719437301159, + 0.008686263114213943, + 0.005162084009498358, + -0.061058927327394485, + 0.04666684940457344, + 0.047928839921951294, + 0.0024971328675746918, + 0.06309959292411804, + 0.03721533715724945, + 0.03176460415124893, + 0.0056185489520430565, + 0.04086705669760704, + 0.016674403101205826, + -0.0070684971287846565, + -0.04706961289048195, + 0.010693367570638657, + 0.02878415584564209, + 0.05230553820729256, + -0.10321483016014099, + -0.02395099587738514, + 0.025427794083952904, + 0.024756522849202156, + 0.016379043459892273, + 0.05410454794764519, + -0.006612032186239958, + 0.045243751257658005, + 0.047928839921951294, + -0.05917936563491821, + 0.04696220904588699, + 0.005517858080565929, + -0.026461554691195488, + 0.038208819925785065, + 0.05158056318759918, + -0.09306518733501434, + 0.024018121883273125, + -0.04425026848912239, + 0.009579055942595005, + 0.0024484656751155853, + 0.06411992758512497, + 0.0006578468601219356, + -0.14198751747608185, + 0.014298100024461746, + 0.02162839286029339, + 0.023695912212133408, + 0.007867311127483845, + -0.05072133615612984, + -0.006497915834188461, + -0.07690095156431198, + -0.00044178107054904103, + 0.012673621065914631, + -0.07684725522994995, + 0.020581208169460297, + 0.001810756977647543, + 0.10138896852731705, + -0.022205688059329987, + -0.014204122126102448, + 0.02228624001145363, + -0.07754537463188171, + -0.02644812874495983, + 0.01612395979464054, + -0.07271221280097961, + 0.02078258991241455, + -0.0069342427887022495, + 0.03914859890937805, + -0.012935416772961617, + -0.065730981528759, + 0.028488796204328537, + 0.03453024849295616, + -0.01122367288917303, + -0.03235532343387604, + 0.028139734640717506, + -0.02760271728038788, + -0.03439599275588989, + 0.009599193930625916, + 0.04720386862754822, + -0.03235532343387604, + -0.027455037459731102, + -0.007753194775432348, + 0.008927921764552593, + -0.060307104140520096, + 0.06814756244421005, + -0.032758086919784546, + -0.08200262486934662, + -0.04094760864973068, + -0.09446143358945847, + 0.07185298949480057, + 0.037161633372306824, + -0.03608759865164757, + 0.016231363639235497, + -0.052574045956134796, + 0.09322629868984222, + 0.05386288836598396, + 0.0019332641968503594, + 0.019654853269457817, + -0.0051855784840881824, + -0.02715967781841755, + 0.003926943056285381, + 0.008558721281588078, + 0.09736133366823196, + -0.06347550451755524, + 0.02470282092690468, + 0.07507508993148804, + -0.026971720159053802, + -0.004447178915143013, + -0.08377478271722794, + -0.04631778970360756, + 0.006511341314762831, + 0.016029981896281242, + -0.013552987948060036, + 0.04935193806886673, + -0.017909545451402664, + 0.025629175826907158, + -0.02149413898587227, + -0.03345621004700661, + -0.02470282092690468, + -0.014069867320358753, + -0.01316364947706461, + -0.028542498126626015, + -0.012646770104765892, + -0.013586550951004028, + -0.04868066683411598, + -0.05885715410113335, + -0.06497915834188461, + -0.005199003964662552, + -0.007108773570507765, + 0.09102452546358109, + -0.05179537087678909, + -0.004604927729815245, + 0.009203143417835236, + -0.06390511989593506, + -0.010022095404565334, + -0.058373838663101196, + 0.07888791710138321, + 0.0898967832326889, + -0.0015858807601034641, + 0.04696220904588699, + -0.013693954795598984, + -0.05826643481850624, + -0.01942661963403225, + 0.031576648354530334, + 0.0022437276784330606, + -0.011827818118035793, + -0.024232929572463036, + -0.03968561813235283, + 0.048224203288555145, + 0.026904594153165817, + 0.04768718406558037, + -0.019305791705846786, + -0.040544845163822174, + 0.009686458855867386, + 0.00832377653568983, + 0.025588899850845337, + -0.05676278471946716, + -0.04527060315012932, + -0.055259134620428085, + -0.07641763985157013, + -0.024595417082309723, + 0.00383967743255198, + 0.02162839286029339, + 0.03949766233563423, + 0.0798545554280281, + -0.035926494747400284, + -0.053191617131233215, + -0.04696220904588699, + 0.02323944680392742, + 0.002941850805655122, + 0.05018431693315506, + -0.02004419080913067, + -0.05869605019688606, + -0.08527842909097672, + -0.012170166708528996, + -0.06594578921794891, + 0.04320308566093445, + -0.043659549206495285, + -0.0003746538423001766, + 0.021279331296682358, + 0.024716245010495186, + 0.06599949300289154, + -0.07727686315774918, + -0.02258159965276718, + -0.0101496372371912, + -0.0021849912591278553, + 0.03767180070281029, + 0.02536066807806492, + 0.038692135363817215, + 0.02891840972006321, + 0.015143902972340584, + 0.04596872627735138, + 0.045727070420980453, + 0.012921991758048534, + -0.023521380499005318, + 0.03858473151922226, + -0.028757305815815926, + -0.02597823739051819, + 0.02816658467054367, + -0.03681257367134094, + 0.0026028582360595465, + 0.008820517919957638, + -0.06433473527431488, + -0.023722762241959572, + 0.05735350400209427, + 0.026246747002005577, + 0.014110143296420574, + -0.007477973122149706, + -0.024152377620339394, + -0.047660332173109055, + 0.010619527660310268, + -0.029079515486955643, + 0.11449220031499863, + -0.03485245630145073, + -0.005913909059017897, + 0.030314655974507332, + 0.02795177884399891, + 0.06175705045461655, + 0.015506389550864697, + -0.010028808377683163, + -0.03818196803331375, + 0.0045915027149021626, + -0.036007046699523926, + -0.05466841533780098, + -0.019090984016656876, + -0.02099739760160446, + 0.02768326923251152, + 0.042343854904174805, + 0.05061393231153488, + 0.0634218081831932, + -0.0026062147226184607, + -0.01850026473402977, + -0.0014692472759634256, + 0.07239000499248505, + 0.01854054071009159, + -0.005084887612611055, + 0.019574299454689026, + -0.02940172702074051, + -0.015345284715294838, + -0.014499481767416, + 0.06895308941602707, + -0.03141554445028305, + -0.004061197396367788, + -0.014794841408729553, + -0.03125443682074547, + 0.050345420837402344, + 0.015211029909551144, + -0.07904902845621109, + -0.030314655974507332, + 0.0256157498806715, + -0.03850417956709862, + 0.017412804067134857, + -0.06245517358183861, + -0.028488796204328537, + -0.0002917936653830111, + -0.02948227897286415, + -0.010142924264073372, + -0.022084858268499374, + 0.06949010491371155, + 0.09924089908599854, + -0.07625653594732285, + 0.017654461786150932, + -0.0029082871042191982, + -0.013949038460850716, + -0.0006469386862590909, + -0.050694484263658524, + 0.007518249563872814, + 0.006380442995578051, + -0.01390876155346632, + -0.05303050950169563, + -0.028059182688593864, + 0.0025944674853235483, + -0.04763348028063774, + 0.03775235265493393, + -0.015560091473162174, + 0.048492711037397385, + 0.08135820180177689, + -0.03332195803523064, + -0.07131596654653549, + 0.03686627373099327, + -0.07947863638401031, + 0.005786367226392031, + 0.04408916458487511, + -0.029213769361376762, + 0.007551813498139381, + 0.0017889406299218535, + -0.07711575925350189, + 0.03369786962866783, + -0.043659549206495285, + 0.06965121626853943, + -0.012908565811812878, + 0.05203702673316002, + -0.013714092783629894, + 0.017197996377944946, + -0.04626408591866493, + 0.019265515729784966, + -0.033590465784072876, + 0.08973567932844162, + 0.043391041457653046, + 0.08243224024772644, + 0.02768326923251152, + -0.04481413960456848, + 0.016365619376301765, + -0.09526696056127548, + 0.1018722802400589, + -0.03721533715724945, + -0.04951304569840431, + -0.00583335617557168, + -0.032489579170942307, + 0.04763348028063774, + -0.04204849526286125, + 0.024058399721980095, + -0.02675691433250904, + -0.08474141359329224, + 0.00802170392125845, + -0.02244734577834606, + 0.023964419960975647, + -0.07824350148439407, + -0.016553575173020363, + 0.043793804943561554, + -0.01456660870462656, + -0.07883422076702118, + 0.035094115883111954, + -0.009579055942595005, + -0.00731686782091856, + -0.0589645579457283, + 0.0013702345313504338, + -0.0589645579457283, + 0.0773305669426918, + -0.024367183446884155, + -0.054641563445329666, + -0.04215589910745621, + 0.02553519792854786, + -0.01705031655728817, + 0.029804490506649017, + 0.010102648288011551, + 0.025454645976424217, + 0.018379434943199158, + 0.026340724900364876, + -0.04003467783331871, + -0.04121612012386322, + 0.02373618818819523, + 0.057407207787036896, + 0.025803707540035248, + -0.0811970978975296, + 0.03823566809296608, + -0.05176851898431778, + -0.04964729771018028, + 0.06659021228551865, + 0.02289038524031639, + 0.0032472796738147736, + -0.011586159467697144, + -0.0077867587096989155, + 0.029562830924987793, + -0.021896902471780777, + 0.051661115139722824, + -0.07298072427511215, + -0.053325872868299484, + -0.0724974051117897, + 0.019238663837313652, + 0.028730453923344612, + -0.11137749999761581, + -0.00024312642926815897, + -0.040759652853012085, + -0.017077166587114334, + -0.027978628873825073, + -0.07888791710138321, + -0.04583447054028511, + 0.025911111384630203, + 0.03377842158079147, + -0.009276983328163624, + 0.028811007738113403, + -0.018164629116654396, + 0.00047240787534974515, + 0.03761810064315796, + 0.03783290833234787, + -0.011505607515573502, + 0.020352976396679878, + 0.061058927327394485, + -0.01946689561009407, + -0.012069475837051868, + -0.06164964661002159, + -0.03861158341169357, + 0.04033004119992256, + 0.05858864635229111, + -0.08162671327590942, + -0.006618744693696499, + -0.009082314558327198, + -0.03332195803523064, + 0.04148462787270546, + 0.04237070679664612, + 0.07953234016895294, + 0.015452688559889793, + 0.044008612632751465, + 0.024501439183950424, + 0.020487230271100998, + 0.0550980307161808, + 0.09746873378753662, + -0.010968589223921299, + 0.009136015549302101, + -0.01278773695230484, + -0.03297289460897446, + 0.02166866883635521, + -0.02012474276125431, + 0.08168040961027145, + -0.011908370070159435, + -0.06616059690713882, + 0.025078732520341873, + 0.029106367379426956, + 0.012928704731166363, + -0.025696303695440292, + -0.047177016735076904, + -0.05133890360593796, + -0.08764131367206573, + -0.045807622373104095, + 0.010075797326862812, + 0.02627359703183174, + -0.0593404695391655, + -0.027092549949884415, + -0.0044908118434250355, + -0.0931725949048996, + -0.0369199775159359, + 0.001015299349091947, + 0.028542498126626015, + 0.04637148976325989, + -0.005276200361549854, + 0.049593597650527954, + 0.03700052946805954, + -0.04167258366942406, + 0.006088439840823412, + 0.024071823805570602, + 0.0840969905257225, + -0.00905546359717846, + -0.041860539466142654, + 0.06406623125076294, + 0.02236679196357727, + -0.03877268731594086, + -0.013653678819537163, + 0.020688612014055252, + 0.08645987510681152, + 0.038557879626750946, + -0.002049058675765991, + 0.02004419080913067, + 0.031442392617464066, + 0.027146251872181892, + -0.022245964035391808, + 0.00636030500754714 + ] + }, + { + "id": "7c1b4e2c-609f-4e8c-8249-fe362b0982ce", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "smartin", + "reviewDate": "2022-02-22T22:21:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "da8a0bb2-fd21-4f41-9949-e1bc56ee4dc7", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "bradleysmith", + "reviewDate": "2021-05-27T10:05:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "22a7e677-5b54-4d1a-b691-c70b3b8b8f28", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "lcantu", + "reviewDate": "2022-01-08T05:41:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "57bbb778-8cec-4fd9-9d2c-ebf934791c77", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "michaelsherman", + "reviewDate": "2021-05-29T11:06:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cb52eac2-afcc-4f2c-8ceb-b327cd527c4c", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "mcguirejennifer", + "reviewDate": "2021-11-13T06:46:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4209e0d1-ccfd-4332-be97-fc879f20e176", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "rebeccahall", + "reviewDate": "2021-01-13T05:38:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1c4ff189-5be5-4109-bc29-5fad14c9b664", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "whiggins", + "reviewDate": "2021-06-02T07:01:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "be2615fe-f7ce-4df9-98f9-54c156f62bcb", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "raymondbarbara", + "reviewDate": "2022-03-04T22:22:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "209e23c1-d5bd-4e8c-adce-bf7f6c6ecc61", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicolewilliams", + "reviewDate": "2021-07-23T13:44:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "180c7af8-6f54-49b7-b57f-c25b118a93d3", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "longmichelle", + "reviewDate": "2021-11-07T03:11:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "67c4ea2c-b0e8-4b74-b431-31cf731d6273", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "maxwellalyssa", + "reviewDate": "2022-05-25T14:12:54", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fae33e05-22a2-4754-a9c0-59c10b1e5c13", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "ngreene", + "reviewDate": "2022-09-22T19:58:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "626a9d84-3e9c-407f-8371-ac4c1bcde69d", + "productId": "ba39737c-c8dd-497c-afe4-fbb24fd4f3e0", + "category": "Accessory", + "docType": "customerRating", + "userName": "petermorgan", + "reviewDate": "2021-08-25T06:12:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Super (Gold)", + "description": "This Amazing Keyboard Super (Gold) is sold out! Just call 1-888-424-9463 and pick up your order there.", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-06-15T18:25:00", + "price": 1016.76, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2021-03-15T03:37:18", + "newPrice": 974.53 + }, + { + "priceDate": "2022-01-13T03:37:18", + "newPrice": 1076.3 + }, + { + "priceDate": "2022-11-13T03:37:18", + "newPrice": 1075.04 + }, + { + "priceDate": "2023-06-21T03:37:18", + "newPrice": 1016.76 + } + ], + "descriptionVector": [ + 0.0052403914742171764, + -0.014679585583508015, + -0.026919063180685043, + 0.035407524555921555, + 0.001711644814349711, + -0.06842685490846634, + -0.03369425609707832, + 0.051995065063238144, + 0.040599241852760315, + 0.06712892651557922, + -0.01683414913713932, + 0.04389598220586777, + 0.027749737724661827, + -0.03836680203676224, + 0.01490023359656334, + -0.0048445225693285465, + -0.046933140605688095, + -0.02113029547035694, + -0.06889411062002182, + 0.012907911092042923, + 0.049087703227996826, + 0.02123413048684597, + -0.04843873903155327, + -0.03932727128267288, + -0.0006834411178715527, + -0.03135798126459122, + -0.07605868577957153, + 0.02406361699104309, + -0.01772972010076046, + 4.4819134927820414e-05, + 0.018209954723715782, + 0.010811754502356052, + 0.0026088387239724398, + 0.026789270341396332, + 0.0014585485914722085, + 0.08067931234836578, + -0.09350285679101944, + 0.004721219185739756, + 0.004993784707039595, + 0.008741556666791439, + 0.007047758437693119, + 0.020727938041090965, + 0.011635939590632915, + 0.02889191545546055, + -0.030579224228858948, + 0.032578036189079285, + 0.04044349119067192, + -0.01740523800253868, + -0.03704291582107544, + 0.010993464849889278, + 0.03629011660814285, + 0.0720091387629509, + -0.1162945032119751, + -0.012005849741399288, + 0.06448114663362503, + -0.03512197732925415, + -0.032266534864902496, + 0.11037594079971313, + 0.07984863966703415, + -0.07496841996908188, + -0.06536374241113663, + -0.01253800094127655, + 0.014848316088318825, + -0.00846250168979168, + -0.021870115771889687, + 0.03706887364387512, + -0.029982177540659904, + 0.04753018543124199, + -0.013680179603397846, + 0.06972478330135345, + 0.02336273528635502, + -0.025439422577619553, + -0.03218865767121315, + 0.02710077352821827, + -0.03849659487605095, + 0.024907272309064865, + 0.07242447882890701, + 0.023323796689510345, + 0.07574717700481415, + -0.048854075372219086, + 0.001166514353826642, + 0.00829377118498087, + -0.02733439952135086, + -0.047919563949108124, + 0.03117627277970314, + 0.027022896334528923, + -0.004571957513689995, + -0.1372690498828888, + -0.11006443947553635, + 0.048516612499952316, + -0.03673141077160835, + -0.014445957727730274, + -0.03462876379489899, + -0.05892600864171982, + 0.03704291582107544, + 0.03922343626618385, + -0.034732598811388016, + 0.02699693851172924, + -0.04542754217982292, + -0.0071256342343986034, + 0.04667355492711067, + -0.06853068619966507, + -0.030086010694503784, + 0.07263214886188507, + -0.07351473718881607, + 0.024777479469776154, + -0.00505543639883399, + -0.01865125074982643, + 0.02010493166744709, + -0.14028024673461914, + -0.011181664653122425, + -0.009883735328912735, + 0.022389287129044533, + 0.07481267303228378, + 0.04893195256590843, + 0.04451898857951164, + -0.03231845051050186, + 0.01124007161706686, + -0.023894885554909706, + 0.015432384796440601, + 0.01179818157106638, + 0.02328485995531082, + -0.012830035760998726, + 0.026153283193707466, + -0.010208217427134514, + 0.0179633479565382, + 0.003038777969777584, + 0.040157947689294815, + -0.0010196859948337078, + -0.045687127858400345, + -0.07180147618055344, + 0.01680818945169449, + 0.021779261529445648, + 0.026685435324907303, + -0.04711484909057617, + -0.0204553734511137, + 0.04233846813440323, + 0.07527992129325867, + -0.0397426076233387, + 0.07076312601566315, + -0.05804341658949852, + 0.012492573820054531, + 0.019624697044491768, + 0.012096704915165901, + -0.06416964530944824, + 0.056070566177368164, + -0.017794616520404816, + 0.03364234045147896, + -0.03953494131565094, + 0.024543851613998413, + 0.013485490344464779, + -0.0988503247499466, + -0.0768374428153038, + -0.05113843083381653, + -0.026841185986995697, + 0.07631827145814896, + -0.06967286765575409, + -0.042624011635780334, + 0.019235318526625633, + 0.071282297372818, + -0.07652593404054642, + -0.017184589058160782, + -0.05069713667035103, + -0.02158457227051258, + -0.003358393209055066, + 0.014419998973608017, + 0.02891787514090538, + 0.04425940290093422, + -0.0169379822909832, + 0.02699693851172924, + -0.002084799576550722, + -0.0049516018480062485, + 0.014848316088318825, + -0.09043974429368973, + 0.08223682641983032, + 0.039353229105472565, + 0.01292738039046526, + -0.027697820216417313, + 0.002065330743789673, + -0.04664759337902069, + 0.019702574238181114, + 0.048386819660663605, + -0.033486586064100266, + -0.025556236505508423, + 0.06666167080402374, + 0.034732598811388016, + -0.0016727069159969687, + 0.01055865827947855, + 0.03070901706814766, + -0.03104647994041443, + 0.05305936560034752, + 0.016795210540294647, + -0.036419909447431564, + 0.027022896334528923, + -0.0093126455321908, + 0.08410584926605225, + -0.018482519313693047, + 0.045661166310310364, + 0.019014671444892883, + 0.04314318299293518, + -0.019689593464136124, + 0.03172140195965767, + 0.03815913572907448, + -0.010344499722123146, + 0.01953384280204773, + 0.04462282359600067, + -0.017015859484672546, + 0.021493716165423393, + 0.012946848757565022, + 0.06588291376829147, + 0.0017424706602469087, + 0.017560988664627075, + -0.0522027350962162, + -0.05653781816363335, + 0.016756271943449974, + 0.022622914984822273, + -0.02935917116701603, + -0.010733879171311855, + -0.020078973844647408, + -0.06328705698251724, + 0.037328459322452545, + -0.010766327381134033, + -0.011609981767833233, + 0.0003723435802385211, + -0.025439422577619553, + -0.040261778980493546, + 0.012382249347865582, + 0.027022896334528923, + 0.06432539969682693, + 0.011856588535010815, + -0.12647026777267456, + -0.03590073809027672, + -0.06178145483136177, + -0.043428730219602585, + -0.059341348707675934, + 0.014082537963986397, + -0.06583099812269211, + -0.014251268468797207, + -0.03979452699422836, + 0.04856853187084198, + 0.038470637053251266, + -0.0038872994482517242, + -0.03366829827427864, + -0.02787953056395054, + 0.025595175102353096, + -0.06146995350718498, + 0.08805155009031296, + 0.027723779901862144, + -0.08405392616987228, + 0.02733439952135086, + -0.05581097677350044, + 0.008170467801392078, + -0.027256524190306664, + 0.0009588456014171243, + 0.0275680273771286, + 0.07777194678783417, + 0.024686623364686966, + 0.012525022029876709, + 0.03187715262174606, + -0.0743454173207283, + 0.014809378422796726, + -0.04641396552324295, + 0.00842356402426958, + 0.0910627469420433, + -0.06385814398527145, + 0.05181335657835007, + -0.0018965997733175755, + -0.04921749606728554, + -0.06842685490846634, + 0.049087703227996826, + -0.013693158514797688, + -0.007222978863865137, + 0.07216489315032959, + -0.040495406836271286, + -0.029099585488438606, + -0.008546867407858372, + -0.05295553430914879, + 0.02598455362021923, + 0.028865957632660866, + -0.05446113273501396, + -0.012836525216698647, + 0.09760431945323944, + 0.06567524373531342, + -0.06780385226011276, + 0.07616251707077026, + -0.012563959695398808, + -0.03421342745423317, + 0.04732251912355423, + -0.013706138357520103, + 0.008047164417803288, + -0.06250829249620438, + -0.005720625165849924, + 0.0010748481145128608, + 0.022856542840600014, + -0.0089816739782691, + -0.001306853024289012, + 0.06245637685060501, + 0.055395640432834625, + -0.0313839390873909, + 0.018690187484025955, + 0.0828598365187645, + -0.06043160706758499, + -0.10591106861829758, + -0.0935547724366188, + 0.011577533558011055, + 0.031228188425302505, + 0.015886660665273666, + -0.04119629040360451, + 0.013680179603397846, + 0.014666605740785599, + 0.09043974429368973, + -0.07517609000205994, + -0.00870261900126934, + -0.03135798126459122, + 0.04259805381298065, + 0.004533019382506609, + -0.009481376968324184, + 0.06842685490846634, + 0.00773566123098135, + -0.030657099559903145, + 0.019793428480625153, + 0.005714135710150003, + -0.07818728685379028, + 0.0204553734511137, + 0.03696503862738609, + 0.03128010779619217, + 0.034291304647922516, + 0.004172843880951405, + 0.0009336982038803399, + -0.011752753518521786, + -0.03595265373587608, + 0.019923221319913864, + -0.01887189783155918, + 0.02202586829662323, + 0.04672547057271004, + -0.05311128497123718, + 0.03735441714525223, + 0.0677519291639328, + -0.00505219167098403, + 0.022609936073422432, + 0.08644212037324905, + -0.009461907669901848, + -0.022077783942222595, + 0.014653626829385757, + -0.03252612054347992, + -0.011934463866055012, + -0.009104977361857891, + -0.014640646986663342, + 0.03333083540201187, + 0.013926786370575428, + 0.0015242561930790544, + -0.010811754502356052, + 0.03117627277970314, + 0.006956903263926506, + 0.022726750001311302, + 0.0023232942912727594, + -0.04158566892147064, + -0.051216308027505875, + -0.014082537963986397, + -0.013186966069042683, + -0.015536218881607056, + 0.014770440757274628, + 0.024258306249976158, + 0.030890727415680885, + -0.00818344671279192, + 0.0602758564054966, + 0.02632201462984085, + 0.0627678781747818, + -0.0018852428765967488, + -0.003835382405668497, + 0.01894977316260338, + -0.042624011635780334, + -0.08701320737600327, + 0.028995750471949577, + -0.050100088119506836, + 0.012057767249643803, + 0.019339153543114662, + -0.0329933725297451, + 0.0684787705540657, + 0.03465472534298897, + 0.005302043166011572, + 0.008261322975158691, + -0.01015629991889, + 0.034524932503700256, + 0.06629825383424759, + -0.016976920887827873, + -0.07766811549663544, + -0.01055216882377863, + -0.05150185152888298, + 0.00660970713943243, + -0.053370870649814606, + 0.024452995508909225, + -0.05342278629541397, + -0.016743293032050133, + 0.035070061683654785, + -0.04594671353697777, + 0.04142991825938225, + 0.06484457105398178, + 0.06235254555940628, + 0.060016270726919174, + -0.016353914514183998, + 0.059912435710430145, + 0.05819917097687721, + 0.03600456938147545, + -0.07315132021903992, + -0.09225684404373169, + -0.006492893677204847, + -0.015211736783385277, + -0.04259805381298065, + -0.059808600693941116, + -0.05139801651239395, + -0.027853572741150856, + 0.0569012388586998, + -0.008832411840558052, + -0.009786389768123627, + 0.009066038765013218, + 0.13332334160804749, + 0.01072089932858944, + 0.11670984327793121, + -0.032266534864902496, + 0.027464192360639572, + 0.058666422963142395, + -0.004750422667711973, + 0.07174955308437347, + 0.033720213919878006, + -0.0024985147174447775, + -0.01898871175944805, + -0.00042466638842597604, + -0.06557141244411469, + -0.017535030841827393, + 0.0021432065404951572, + -0.011648919433355331, + 0.025711987167596817, + 0.05363045632839203, + -0.03792550787329674, + 0.03140990063548088, + -0.07917371392250061, + -0.013485490344464779, + -0.0514758937060833, + 0.0610026977956295, + -0.013018235564231873, + 0.009442438371479511, + -0.025439422577619553, + -0.013563365675508976, + -0.0010570015292614698, + -0.014030620455741882, + -0.07673360407352448, + -0.027126731351017952, + 0.0745011642575264, + -0.0945931151509285, + -0.0677519291639328, + -0.022908460348844528, + -0.006982862018048763, + 0.012622366659343243, + 0.028372744098305702, + 0.04187121242284775, + 0.007359261624515057, + 0.06718084216117859, + -0.0004307504277676344, + -0.007755130063742399, + -0.0025131164584308863, + -0.032915499061346054, + 0.028606371954083443, + -0.04599862918257713, + 0.032915499061346054, + -0.00046319866669364274, + -0.016120286658406258, + -0.02124710939824581, + 0.02460874803364277, + -0.007651295978575945, + 0.019378090277314186, + -0.01818399503827095, + 0.04672547057271004, + -0.012959828600287437, + 0.025244733318686485, + -0.11234879493713379, + -0.06754426658153534, + 0.028424661606550217, + -0.01571792922914028, + 0.00801471620798111, + -0.07356666028499603, + 0.04176737740635872, + 0.0050262329168617725, + -0.004244230221956968, + 0.04812723398208618, + -0.030189845710992813, + -0.08223682641983032, + 0.04955495893955231, + 0.0743454173207283, + 0.06546757370233536, + 0.019144464284181595, + 0.09448928385972977, + -0.012687263078987598, + -0.012797587551176548, + 0.026334993541240692, + -0.06266404688358307, + -0.08514419198036194, + -0.01038992777466774, + -0.030864769592881203, + 0.06370238959789276, + 0.01682117022573948, + -0.05908176302909851, + -0.013978702947497368, + -0.0032578036189079285, + 0.01445893757045269, + -0.004662812687456608, + -0.01906658709049225, + 0.09480078518390656, + 0.03740633651614189, + -0.02686714567244053, + 0.04119629040360451, + -0.0472186841070652 + ] + }, + { + "id": "52fff643-0e69-42ab-9249-a806d2ef3a2a", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wayne25", + "reviewDate": "2021-08-04T03:48:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "890b29de-8bdc-4793-a281-627c391df85c", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hunterjonathan", + "reviewDate": "2021-11-17T21:49:05", + "stars": 4, + "verifiedUser": true + }, + { + "id": "334a9bd8-8477-4528-a8fa-b435e3715ab6", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james90", + "reviewDate": "2021-07-16T20:36:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9c17ca14-7dfb-4123-800c-18023f831e2b", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "matthew42", + "reviewDate": "2021-03-15T03:37:18", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7c0a6e43-02dd-407d-9be4-b4a1bc368acc", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cfrost", + "reviewDate": "2022-11-13T21:34:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2c9f14e8-d0ee-4384-9c5f-58a8a3a47738", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ebarnes", + "reviewDate": "2022-08-24T16:41:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b27ae4f7-9798-4d9d-8c95-a5bb3eb1a5cb", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniemendez", + "reviewDate": "2022-05-28T20:25:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0494d7c4-9174-467a-9249-d9d6868a29e9", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristinware", + "reviewDate": "2022-05-21T02:59:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4eb451da-7695-4cee-9189-4d5f1ba3e749", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gabriel26", + "reviewDate": "2021-03-17T22:27:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d540d9c2-4af4-459e-bbda-f3dcf94663a3", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristen07", + "reviewDate": "2021-06-19T23:39:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6086291a-c0fc-4c02-b5a1-7838942e9458", + "productId": "f290d969-52aa-4f5e-bcdf-114f793ae54b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopherarnold", + "reviewDate": "2022-05-30T05:20:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse Micro (Red)", + "description": "This Awesome Mouse Micro (Red) is a little bit easier to work with. The small and slightly thicker mouse can be handled by hand and can take it", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-07-06T19:39:56", + "price": 230.65, + "stock": 95, + "priceHistory": [ + { + "priceDate": "2021-01-02T08:25:06", + "newPrice": 221.55 + }, + { + "priceDate": "2023-04-24T08:25:06", + "newPrice": 230.65 + } + ], + "descriptionVector": [ + -0.08273448050022125, + 0.04281536862254143, + -0.004399026278406382, + 0.0525970533490181, + 0.03931800648570061, + 0.014932098798453808, + -0.005437305662781, + 0.03527418151497841, + 0.014276343397796154, + 0.00606232276186347, + -0.05032923445105553, + 0.004586873110383749, + 0.025820372626185417, + -0.05644961819052696, + 0.02252793312072754, + -0.03278777375817299, + -0.05134018883109093, + -0.024946032091975212, + -0.07054836302995682, + 0.016612472012639046, + 0.061149198561906815, + -0.05483755096793175, + -0.03852563351392746, + 0.022637225687503815, + -0.004033579491078854, + -0.03205005079507828, + -0.018893955275416374, + 0.040629517287015915, + -0.04650399461388588, + 0.05456431955099106, + -0.01075165718793869, + 0.002563252579420805, + -0.029071826487779617, + 0.0092488843947649, + 0.0019382355967536569, + -0.04399026185274124, + 0.021612606942653656, + -0.03819775581359863, + -0.024700123816728592, + 0.04620343819260597, + 0.028825918212532997, + 0.017199920490384102, + -0.04106668755412102, + -0.04672257974743843, + 0.0014916729414835572, + 0.08874557167291641, + -0.039399974048137665, + 0.0015599807957187295, + 0.008176451548933983, + 0.03653104603290558, + 0.03401731699705124, + 0.029645612463355064, + -0.07093088328838348, + -0.00581641448661685, + 0.02896253392100334, + 0.013429326005280018, + -0.009405992925167084, + 0.11399216204881668, + 0.0404655784368515, + -0.09502989798784256, + 0.0005639668088406324, + -0.067051000893116, + -0.014713513664901257, + 0.0026110680773854256, + -0.0645919144153595, + -0.04959150776267052, + -0.02679034322500229, + -0.0028877148870378733, + 0.07923711836338043, + 0.05420912057161331, + -0.10907399654388428, + -0.034891657531261444, + -0.031640201807022095, + -0.04232355207204819, + 0.017582444474101067, + -0.0031455771531909704, + 0.05743325129151344, + -0.021913161501288414, + -0.012445692904293537, + -0.01387332659214735, + 0.004819119814783335, + -0.04459137097001076, + -0.031913433223962784, + -0.07388178259134293, + 0.07251562923192978, + -0.06180495396256447, + 0.007554849609732628, + -0.07076694816350937, + 0.026161910966038704, + 0.041421886533498764, + -0.024590831249952316, + 0.02923576533794403, + 0.01102488860487938, + 0.024071691557765007, + -0.008989314548671246, + -0.03131232410669327, + -0.029427027329802513, + 0.05349871888756752, + -0.0449465736746788, + 0.04270607605576515, + 0.0484166145324707, + -0.007466049399226904, + -0.08229731023311615, + -0.05450967326760292, + -0.0047508119605481625, + 0.03224131092429161, + 0.013606926426291466, + 0.014057758264243603, + -0.05803436040878296, + -0.11333640664815903, + 0.03584796562790871, + -0.04505586624145508, + -0.005720783490687609, + -0.010348641313612461, + 0.0022302516736090183, + -0.016093332320451736, + -0.035383474081754684, + 0.0026725451461970806, + -0.005898383911699057, + 0.021626269444823265, + 0.09628676623106003, + 0.04281536862254143, + 0.04221425950527191, + 0.10710673034191132, + 0.022869473323225975, + -0.0022883133497089148, + -0.008436021395027637, + -0.02728215977549553, + 0.020820235833525658, + -0.022650888189673424, + -0.08000216633081436, + 0.06666847318410873, + 0.026872312650084496, + 0.006697585806250572, + -0.050356555730104446, + 0.05355336517095566, + 0.05420912057161331, + -0.00492841238155961, + -0.027965238317847252, + 0.03276045247912407, + 0.07207845896482468, + -0.05623103305697441, + -0.03218666464090347, + 0.04196834936738014, + -0.06737887859344482, + 0.03472771868109703, + -0.09000243991613388, + -0.011530367657542229, + -0.03552008792757988, + 0.04601217806339264, + 0.027651023119688034, + -0.06481049954891205, + -0.016298256814479828, + -0.047596920281648636, + 0.029345057904720306, + 0.047378335148096085, + -0.04868984594941139, + -0.00888002198189497, + -0.09333586692810059, + 0.06103990599513054, + 0.07672338932752609, + -0.0037910863757133484, + -0.0066770934499800205, + 0.008094482123851776, + 0.0292630884796381, + -0.00948796235024929, + 0.061149198561906815, + 0.02102516032755375, + -0.032651159912347794, + 0.05355336517095566, + -0.06131313741207123, + -0.011496213264763355, + 0.027364129200577736, + -0.023456919938325882, + 0.06519302725791931, + 0.0036134859547019005, + 0.005218720529228449, + -0.05442770570516586, + -0.029099149629473686, + -0.06787069141864777, + 0.05276099219918251, + 0.05297957733273506, + -0.052870284765958786, + 0.011400582268834114, + 0.06683241575956345, + 0.01264378521591425, + 0.010813134722411633, + 0.08994778990745544, + 0.0004194529610686004, + 0.019317463040351868, + 0.027350468561053276, + -0.010922427289187908, + 0.022104423493146896, + -0.04997403174638748, + 0.020342081785202026, + 0.007643649820238352, + -0.05923657864332199, + 0.06043879687786102, + 0.0641547441482544, + 0.01375037245452404, + -0.051394835114479065, + 0.022418640553951263, + 0.05172271281480789, + 0.028580009937286377, + 0.022336671128869057, + -0.006502908654510975, + 0.008818545378744602, + -0.02049235813319683, + 0.05803436040878296, + -0.0325145423412323, + 0.03849831223487854, + -0.037924524396657944, + -0.007199648767709732, + -0.0005152974626980722, + 0.05677749589085579, + 0.015601515769958496, + 0.04297930747270584, + -0.03653104603290558, + -0.045356422662734985, + 0.024194644764065742, + 0.0014532498316839337, + -0.018648047000169754, + 0.006502908654510975, + -0.05634032562375069, + -0.091915063560009, + -0.012411538511514664, + 0.07218775153160095, + 0.03806114196777344, + 0.06311646848917007, + 0.05972839519381523, + -0.06568484008312225, + -0.022814827039837837, + 0.0804939866065979, + 0.008408698253333569, + -0.08508427441120148, + 0.028334101662039757, + -0.017623428255319595, + -0.06759746372699738, + -0.012295415624976158, + 0.03746003285050392, + -0.04617611691355705, + 0.02800622396171093, + -0.05470093712210655, + 0.046148791909217834, + 0.0715319961309433, + -0.00021218130132183433, + 0.06251535564661026, + -0.021435007452964783, + -0.09207899868488312, + -0.008442851714789867, + -0.08071257174015045, + 0.015068714506924152, + 0.02676302008330822, + 0.0609852597117424, + 0.02204977720975876, + 0.07912782579660416, + 0.1322440207004547, + -0.022855810821056366, + -0.0257247406989336, + -0.06404545158147812, + 0.038361694663763046, + 0.01124347373843193, + -0.028552686795592308, + 0.09344515949487686, + 0.004819119814783335, + 0.011885568499565125, + 0.005871060770004988, + -0.026394158601760864, + 0.047378335148096085, + 0.014822806231677532, + -0.00823792815208435, + -0.011803599074482918, + 0.04680454730987549, + -0.030875153839588165, + -0.028416071087121964, + -0.0013362725730985403, + -0.0057105375453829765, + 0.08071257174015045, + 0.0695100799202919, + 0.04874449223279953, + 0.04658596217632294, + 0.07191451638936996, + 0.08180549740791321, + 0.052351146936416626, + 0.02200879342854023, + -0.02352522872388363, + -0.04177708923816681, + 0.013880157843232155, + -0.0910407230257988, + -0.07951035350561142, + -0.025588124990463257, + -0.06131313741207123, + 0.023170027881860733, + 0.016134317964315414, + 0.06628595292568207, + 0.001061333459801972, + 0.030110105872154236, + 0.01387332659214735, + 0.0029577305540442467, + -0.003985763993114233, + -0.03732341527938843, + 0.010369133204221725, + -0.030437983572483063, + -0.06781604886054993, + 0.030601922422647476, + 0.04543839022517204, + 0.024918708950281143, + 0.010095901787281036, + -0.06683241575956345, + -0.031175708398222923, + 0.09890978783369064, + 0.06229677051305771, + -0.06879968196153641, + -0.049892064183950424, + 0.10328149050474167, + -0.10224320739507675, + -0.006113553885370493, + -0.016407549381256104, + 0.0023941905237734318, + -0.010416949167847633, + -0.020055187866091728, + -0.03991911560297012, + -0.05191397666931152, + 0.061149198561906815, + 0.015902070328593254, + -0.04068416357040405, + -0.03625781461596489, + 0.009324023500084877, + -0.07202380895614624, + -0.08043933659791946, + -0.024891385808587074, + -0.04530177637934685, + -0.03232328221201897, + -0.049400247633457184, + 0.011953876353800297, + -0.0460941456258297, + -0.03051995299756527, + 0.06420939415693283, + 0.05983768776059151, + 0.006786386016756296, + -0.0029286995995789766, + 0.016858380287885666, + -0.020383065566420555, + 0.04327986016869545, + -0.01050574891269207, + -0.050110649317502975, + -1.4608810943173012e-06, + -0.06852644681930542, + 0.00644143158569932, + -0.006557554937899113, + 0.0016112116863951087, + -0.08672366291284561, + 0.026134587824344635, + 0.03972785174846649, + -0.035875290632247925, + -0.032897066324949265, + 0.0695100799202919, + 0.0325145423412323, + 0.008763899095356464, + 0.02904450334608555, + 0.008681929670274258, + -0.029153795912861824, + 0.028060870245099068, + -0.007138171698898077, + 0.010437441058456898, + 0.0530342236161232, + -0.029864197596907616, + -0.0010989027796313167, + -0.01450859010219574, + 0.02579304948449135, + 0.009720209054648876, + -0.04631273075938225, + 0.038361694663763046, + 0.03349817544221878, + -0.07082159072160721, + -0.023443259298801422, + 0.07224239408969879, + 0.012227107770740986, + -0.03950926661491394, + 0.016407549381256104, + -0.019440418109297752, + 0.03379873186349869, + -0.07278885692358017, + -0.0038081633392721415, + 0.11956608295440674, + -0.006578047294169664, + 0.01825186051428318, + 0.021325714886188507, + 0.07229704409837723, + -0.014412959106266499, + -0.020943190902471542, + -0.019563371315598488, + -0.009385500103235245, + -0.010403287597000599, + -0.004784965887665749, + -0.06934614479541779, + -0.0016410964308306575, + -0.003432470140978694, + 0.006328723393380642, + 0.03603922948241234, + -0.010533072054386139, + 0.023156365379691124, + -0.009843163192272186, + -0.029618289321660995, + -0.05123089626431465, + -0.026858652010560036, + 0.045848239213228226, + 0.016339240595698357, + -0.028060870245099068, + -0.05385391786694527, + 0.02896253392100334, + 0.04153117910027504, + 0.056121740490198135, + -0.038662251085042953, + 0.011981199495494366, + 0.063881516456604, + 0.051367513835430145, + -0.004252164624631405, + 0.009651901200413704, + -0.09043961018323898, + 0.05431841313838959, + 0.006448262371122837, + 0.0179922915995121, + -0.010164209641516209, + -0.05978304147720337, + 0.043880969285964966, + -0.03647639974951744, + -0.008067158982157707, + 0.03521953523159027, + -0.061422429978847504, + -0.043635062873363495, + -0.04909969121217728, + -0.05770648270845413, + -0.0003505047061480582, + -0.0014831344597041607, + 0.036585692316293716, + 0.013101448304951191, + 0.02978222817182541, + 0.025601787492632866, + 0.022077100351452827, + 0.009686054661870003, + -0.043853648006916046, + -0.03603922948241234, + -0.005929122678935528, + -0.062132831662893295, + 0.011830922216176987, + -0.030410660430788994, + 0.04347112402319908, + 0.10005735605955124, + -0.04120330139994621, + -0.008169620297849178, + 0.021407684311270714, + -0.007281618192791939, + -0.05205059051513672, + 0.004286318551748991, + -0.011298120953142643, + 0.07235168665647507, + 0.08836305141448975, + -0.05456431955099106, + -0.011229812167584896, + 0.001075848820619285, + 0.036367107182741165, + 0.04904504492878914, + 0.015560531057417393, + -0.02800622396171093, + -0.033580146729946136, + 0.013675234280526638, + 0.03899012878537178, + -0.017923982813954353, + 0.02325199730694294, + -0.029864197596907616, + 0.006878601852804422, + -0.06929149478673935, + 0.03885351121425629, + -0.03552008792757988, + 0.012773570604622364, + -0.006321892607957125, + 0.03584796562790871, + 0.00358957820571959, + 0.06634059548377991, + -0.01903057098388672, + -0.013347356580197811, + 0.003131915582343936, + 0.04699581116437912, + 0.020615313202142715, + -0.06218747794628143, + 0.044919248670339584, + 0.015300961211323738, + 0.127763032913208, + -0.01926281675696373, + 0.06196889281272888, + 0.033170297741889954, + 0.026066280901432037, + -0.06382686644792557, + -0.07874530553817749, + -0.0044229342602193356, + 0.008743406273424625, + 0.055930476635694504, + -0.018607061356306076, + 0.031339649111032486, + 0.03795184940099716, + -0.005133335944265127, + -0.01621628738939762, + 0.03215934336185455, + 0.04079345613718033, + 0.03707750886678696, + 0.010464764200150967, + 0.0775977298617363, + -0.0325145423412323, + -0.13486704230308533, + 0.03573867306113243, + 0.0019126201514154673 + ] + }, + { + "id": "3e68e55e-dd4c-42c0-bd1a-522a27b62560", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nholloway", + "reviewDate": "2021-01-13T10:31:19", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5b21a30f-dc24-4ea1-b382-3ece107453c1", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eleonard", + "reviewDate": "2021-01-03T04:24:14", + "stars": 1, + "verifiedUser": false + }, + { + "id": "314557c8-78a7-4700-b3a6-ad324513fdea", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lancesanchez", + "reviewDate": "2021-01-26T16:24:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c367b068-8944-4596-93af-e1f31d7f5d4e", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksongary", + "reviewDate": "2021-01-21T11:16:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "87ba74db-8eb5-4f2e-a3bf-afe7c788493d", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnphillips", + "reviewDate": "2021-01-02T08:25:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "83b8e871-495a-4916-8b97-cfb7565ce24a", + "productId": "c2334a6a-a5c2-45cc-b685-7c1aaa178118", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yharding", + "reviewDate": "2021-08-14T19:42:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ddf31175-b413-4656-9e90-8f9b41707544", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Black)", + "description": "This Basic Speaker Mini (Black) is a full-sized 1 x 14″ speaker for the new speaker set. Featuring adjustable speakers and built-in speakers (the speaker system is a part of each speaker), it comes with 3 x 8, 5 x 22\" & 8 x 24\" woofers.\n\nFor more information and pricing, please visit https://www.thespec.com/en/s/s", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-02-28T04:32:24", + "price": 366.67, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2021-03-21T15:48:29", + "newPrice": 393.18 + }, + { + "priceDate": "2021-12-05T15:48:29", + "newPrice": 395.7 + }, + { + "priceDate": "2022-08-21T15:48:29", + "newPrice": 331.69 + }, + { + "priceDate": "2022-09-29T15:48:29", + "newPrice": 366.67 + } + ], + "descriptionVector": [ + -0.025798683986067772, + 0.035595979541540146, + -0.039628639817237854, + -0.016608871519565582, + -0.057491254061460495, + 0.022593235597014427, + -0.0034154821187257767, + 0.055526625365018845, + -0.01941363885998726, + 0.05852527171373367, + -0.01659594662487507, + -0.025811608880758286, + 0.009312600828707218, + -0.04306674003601074, + 0.006368888542056084, + -0.01752656139433384, + 0.017552411183714867, + 0.04154156893491745, + 0.060903504490852356, + 0.007263957988470793, + 0.03709530085325241, + -0.06431575864553452, + -0.0718640685081482, + 0.023911604657769203, + -0.09905867278575897, + 0.025242900475859642, + -0.003916333429515362, + 0.048340220004320145, + -0.031227264553308487, + -0.006239636335521936, + 0.014657167717814445, + 0.03505312278866768, + -0.014476215466856956, + 0.0562504343688488, + -0.047668106853961945, + 0.042446330189704895, + -0.04273068532347679, + -0.018327921628952026, + 0.013997983187437057, + 0.011147977784276009, + 0.0264966432005167, + 0.008136408403515816, + 0.0044301096349954605, + -0.08091170340776443, + -0.009073484688997269, + 0.04650484025478363, + -0.049736138433218, + 0.023885754868388176, + 0.0014726640656590462, + -0.0889253243803978, + -0.00835613626986742, + 0.014928597025573254, + -0.07088175415992737, + 0.03836197033524513, + -0.020887110382318497, + -0.005441505927592516, + 0.010908862575888634, + 0.18260711431503296, + 0.018586426973342896, + -0.05733615159988403, + 0.09078654646873474, + -0.01633744314312935, + -0.009196273982524872, + -0.0025058717001229525, + -0.03213202580809593, + 0.06240282580256462, + -0.04495381936430931, + -0.01160036027431488, + -0.0033346996642649174, + 0.07920558005571365, + 0.018172821030020714, + -0.060645002871751785, + 0.009952398017048836, + 0.031227264553308487, + 0.03983544185757637, + -0.0467633455991745, + 0.04208442568778992, + 0.0274531077593565, + -0.04761640727519989, + -0.0017513635102659464, + 0.009758519940078259, + 0.0038969453889876604, + -0.01183947641402483, + -0.007503074128180742, + 0.0018272990128025413, + 0.01273131463676691, + 0.019633367657661438, + -0.11208726465702057, + 0.012634375132620335, + 0.04815926402807236, + -0.06157561391592026, + 0.01964629255235195, + 0.09864506870508194, + 0.049787841737270355, + 0.1163267269730568, + 0.010320765897631645, + -0.07393209636211395, + 0.027815014123916626, + -0.029469437897205353, + -0.026806848123669624, + 0.09843826293945312, + 0.004197455942630768, + -0.05542322248220444, + -0.027375556528568268, + 0.028745627030730247, + 0.06788311153650284, + 0.02548847906291485, + 0.01712588034570217, + 0.04195517301559448, + -0.09786955267190933, + -0.0038775575812906027, + 0.008045932278037071, + 0.04138646647334099, + 0.002955022035166621, + 0.011451720260083675, + 0.0653497725725174, + 0.0014023833209648728, + -0.068038210272789, + -0.020034048706293106, + -0.005040824878960848, + 0.017022477462887764, + -0.03386400267481804, + 0.02768576145172119, + 0.047745659947395325, + -0.05402730405330658, + -0.02234765700995922, + -0.07625863701105118, + 0.048779673874378204, + 0.005160382948815823, + -0.04208442568778992, + -0.03164086863398552, + 0.10055799782276154, + -0.07170896232128143, + -0.0161952655762434, + -0.04536742344498634, + -0.02794426493346691, + 0.07072664797306061, + 0.034148357808589935, + -0.016660572960972786, + -0.05014974623918533, + -0.02931433543562889, + 0.0588354729115963, + 0.08659878373146057, + 0.031666722148656845, + -0.0575946569442749, + -0.016725199297070503, + -0.03301094099879265, + 0.062454529106616974, + -0.03463951498270035, + 0.015277576632797718, + -0.05309668928384781, + -0.04632388800382614, + -0.03208032622933388, + -0.060903504490852356, + 0.02022792585194111, + 0.028021816164255142, + -0.04797831177711487, + 0.021882349625229836, + -0.02137826755642891, + 0.09269947558641434, + 0.04523817077279091, + -0.024260586127638817, + -0.020253775641322136, + -0.01657009683549404, + -0.0016835062997415662, + 0.03298509120941162, + 0.02356262505054474, + 0.08551307022571564, + -0.06240282580256462, + 0.009286750108003616, + 0.04138646647334099, + -0.03189937397837639, + -0.05583683028817177, + -0.009823146276175976, + 0.00210357503965497, + -0.06560827791690826, + 0.06648718565702438, + 0.02248983457684517, + 0.039266735315322876, + -0.03370890021324158, + -0.014695943333208561, + 0.06028309464454651, + -0.011942877434194088, + 0.014385738410055637, + -0.0014855893095955253, + 0.0068697393871843815, + 0.051080361008644104, + -0.029727941378951073, + -0.0713987648487091, + 0.009823146276175976, + 0.022580310702323914, + 0.0007032112334854901, + -0.02742725796997547, + -0.0161952655762434, + 0.006824501324445009, + -0.06664229184389114, + -0.0011164135066792369, + 0.03223542869091034, + 0.00696667842566967, + -0.03425176069140434, + -0.025320451706647873, + 0.056922547519207, + 0.04779735952615738, + 0.023317046463489532, + -0.010275527834892273, + -0.04999464377760887, + 0.03208032622933388, + 0.09368178993463516, + 0.030632704496383667, + -0.014902746304869652, + 0.035078972578048706, + -0.03650074079632759, + -0.08225592225790024, + 0.04547082632780075, + 0.040559254586696625, + 0.04435925930738449, + 0.04516062140464783, + 0.06173071637749672, + 0.025915009900927544, + -0.09388859570026398, + 0.06902052462100983, + -0.07284638285636902, + 0.03078780695796013, + -0.018470099195837975, + -0.09037294238805771, + -0.04404905438423157, + 0.03365720063447952, + 0.0016277664108201861, + 0.0647810623049736, + 0.06328173726797104, + -0.11994577944278717, + 0.04182592034339905, + -0.008407837711274624, + 0.04342864453792572, + -0.02645786851644516, + -0.027634060010313988, + 0.025410927832126617, + -0.024040857329964638, + -0.09874846786260605, + 0.05172662064433098, + -0.04823681712150574, + 0.07920558005571365, + -0.043221842497587204, + -0.02853882499039173, + -0.026057187467813492, + -0.03668169677257538, + 0.06069670245051384, + -0.07517291605472565, + -0.05387220159173012, + -0.03717285394668579, + -0.1150859072804451, + 0.06731440126895905, + -0.013946282677352428, + 0.0055319820530712605, + -0.025578955188393593, + -0.009538792073726654, + 0.10484915971755981, + -0.04521232098340988, + 0.007238107733428478, + -0.000829635770060122, + 0.03502726927399635, + -0.055268120020627975, + -0.006927902810275555, + 0.02197282575070858, + -0.10309132933616638, + -0.049710288643836975, + 0.05035654827952385, + -0.03931843489408493, + 0.028874879702925682, + 0.013894581235945225, + -0.008957157842814922, + 0.04071435332298279, + -0.004281470086425543, + 0.06628038734197617, + -0.03130481392145157, + 0.017836764454841614, + -0.060231395065784454, + 0.02159799635410309, + -0.03357964754104614, + 0.01693200133740902, + 0.13524921238422394, + 0.06188581883907318, + 0.024919770658016205, + -0.023071467876434326, + -0.03378645330667496, + -0.008737429976463318, + 0.023808203637599945, + 0.04314429312944412, + -0.003835550742223859, + -0.04890892654657364, + -0.03156331926584244, + 0.024247661232948303, + 0.03376060351729393, + 0.0654531717300415, + 0.0409211590886116, + 0.03968033939599991, + 0.06597018241882324, + -0.05376879870891571, + 0.016053088009357452, + 0.043635450303554535, + -0.011180290952324867, + 0.024002082645893097, + -0.028021816164255142, + -0.07289808243513107, + 0.03856877237558365, + 0.03683679923415184, + -0.09952397644519806, + 0.03983544185757637, + -0.040042243897914886, + -0.04914158210158348, + -0.004026197362691164, + 0.015704108402132988, + -0.0797225832939148, + -0.03513067215681076, + 0.03761230781674385, + 0.0017788296099752188, + 0.035078972578048706, + 0.011167366057634354, + -0.0031585937831550837, + -0.0005953666404820979, + -0.039783742278814316, + -0.0509769581258297, + -0.0726395770907402, + 0.06922733038663864, + 0.004068204201757908, + -0.011742536909878254, + -0.01967214234173298, + -0.03078780695796013, + 0.034406863152980804, + 0.010353079065680504, + -0.018353773280978203, + -0.0005388189456425607, + 0.05831846594810486, + -0.043221842497587204, + 0.06648718565702438, + -0.013997983187437057, + 0.005409192759543657, + -0.08230762183666229, + -0.004792015068233013, + 0.00714116869494319, + 0.05635383725166321, + -0.006323650013655424, + 0.03394155576825142, + -0.04642729088664055, + -0.05092525854706764, + -0.052036821842193604, + -0.022476909682154655, + -0.0025155656039714813, + -0.03425176069140434, + -0.018302071839571, + 0.0015542543260380626, + -0.0034801079891622066, + 0.04898647964000702, + 0.012291857972741127, + 0.010605120100080967, + -0.06695249676704407, + -0.05650893971323967, + -0.04746130481362343, + 0.028926579281687737, + -0.009222124703228474, + -0.006449670996516943, + -0.056560639292001724, + -0.009474165737628937, + 0.015833361074328423, + 0.032364681363105774, + 0.036474891006946564, + 0.0026270453818142414, + -0.016944926232099533, + -0.06080010533332825, + 0.02941773645579815, + -0.004740314092487097, + 0.0008643722394481301, + -0.06281643360853195, + 0.017177579924464226, + 0.025772832334041595, + 0.024893920868635178, + 0.050485800951719284, + -0.0875810980796814, + -0.009952398017048836, + 0.003816162934526801, + 0.011658523231744766, + 0.006123309955000877, + 0.01265376340597868, + -0.036474891006946564, + 0.058421868830919266, + -0.03360550105571747, + -0.05728445202112198, + -0.041153810918331146, + 0.05469941347837448, + 0.016660572960972786, + 0.024764668196439743, + -0.017681661993265152, + -0.04622048884630203, + 0.06028309464454651, + -0.04510892182588577, + -0.023149019107222557, + -0.024661267176270485, + 0.008045932278037071, + -0.018651051446795464, + -0.0034154821187257767, + 0.029546989127993584, + 0.024131333455443382, + -0.004281470086425543, + -0.03675924614071846, + -0.035182371735572815, + -0.05635383725166321, + -0.055681727826595306, + 0.012472810223698616, + 0.03606128692626953, + -0.02101636305451393, + 0.057749759405851364, + -0.09776615351438522, + -0.10252262651920319, + -0.008058857172727585, + -0.009752057492733002, + 0.03383815288543701, + -0.012879953719675541, + -0.006876202300190926, + -0.015006148256361485, + -0.01700955256819725, + 0.050744302570819855, + -0.04632388800382614, + -0.011063964106142521, + -0.04784906283020973, + -0.01098641287535429, + 0.032778285443782806, + 0.010327228344976902, + 0.010682671330869198, + -0.04565177857875824, + -0.01174899935722351, + -0.07093345373868942, + -0.02786671370267868, + -0.04410075396299362, + 0.023071467876434326, + 0.009176886640489101, + 0.007729264907538891, + 0.018806153908371925, + 0.032959241420030594, + -0.08018789440393448, + 0.009584030136466026, + -0.030917059630155563, + 0.006465827580541372, + -0.0043945652432739735, + 0.07662054151296616, + -0.07336339354515076, + -0.017436083406209946, + -0.024816369637846947, + 0.01919391006231308, + 0.09931717813014984, + 0.0712953582406044, + -0.04017149657011032, + 0.0009128417004831135, + -0.0660218819975853, + 0.02316194400191307, + 0.05588852986693382, + -0.03443271294236183, + 0.017319757491350174, + 0.0097262067720294, + 0.0028031510300934315, + 0.043816402554512024, + -0.02560480497777462, + 0.0029937976505607367, + 0.025501403957605362, + 0.03068440593779087, + -0.08018789440393448, + 0.019478265196084976, + -0.030193248763680458, + 0.027582360431551933, + -0.03138236701488495, + 0.04161911830306053, + -0.01582043431699276, + -0.00489218533039093, + 0.0038064690306782722, + 0.01304151862859726, + 0.020654456689953804, + -0.052191924303770065, + -0.053561996668577194, + -0.05413070321083069, + 0.02119731530547142, + 0.04503136873245239, + -0.04335109516978264, + 0.0414898656308651, + -0.0490640290081501, + 0.02586331032216549, + 7.548110443167388e-05, + -0.01794016733765602, + -0.04624633863568306, + 0.015665333718061447, + 0.060386497527360916, + 0.010805460624396801, + 0.023394597694277763, + 0.11167366057634354, + 0.017474859952926636, + 0.04102455824613571, + 0.0382327176630497, + 0.0022376738488674164, + 0.06757290661334991, + -0.019917720928788185, + -0.02667759731411934, + 0.11032944172620773, + -0.015458529815077782, + -0.042627282440662384, + 0.00896362029016018, + 0.005267015658318996, + 0.01627281680703163, + 0.03342454507946968, + -0.016583021730184555, + -0.05418240651488304, + 0.020951736718416214, + 0.027763312682509422, + 0.04182592034339905, + 0.007496611215174198 + ] + }, + { + "id": "98391eba-8559-4612-b8be-58149b10d3b5", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "customerRating", + "userName": "hollyanderson", + "reviewDate": "2022-08-23T01:08:36", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a5560fd4-d90f-411c-ae1c-557ea740c848", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "customerRating", + "userName": "rojasjanet", + "reviewDate": "2021-03-21T15:48:29", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f1471a40-5173-4365-ae5e-e7b7c9b6b661", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "customerRating", + "userName": "mary34", + "reviewDate": "2021-08-18T02:41:26", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f4beba5b-527d-4c88-bf1f-a58ef12c1f7f", + "productId": "ddf31175-b413-4656-9e90-8f9b41707544", + "category": "Media", + "docType": "customerRating", + "userName": "hallallison", + "reviewDate": "2021-04-15T22:54:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Pro (Red)", + "description": "This Awesome Phone Pro (Red) is available in the following colors: Blue (red), Green (purple) or Black (yellow).\n\nThe phone will ship with the Blue, Green, Black, Orange, Violet, Yellow.\n\nWith every order we offer, we try to accommodate every phone needs. Whether your phone needs to be turned in-", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-11-03T13:24:39", + "price": 836.5, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2021-01-01T14:11:36", + "newPrice": 850.34 + }, + { + "priceDate": "2022-09-11T14:11:36", + "newPrice": 914.4 + }, + { + "priceDate": "2023-11-06T14:11:36", + "newPrice": 836.5 + } + ], + "descriptionVector": [ + -0.02436699904501438, + 0.01299236249178648, + -0.029675163328647614, + 0.06657954305410385, + -0.014117187820374966, + -0.03374475613236427, + 0.0009431469370611012, + -0.011185059323906898, + 0.014104549773037434, + 0.028209099546074867, + 0.022445950657129288, + 0.0059843226335942745, + -0.0014257790753617883, + 0.010161342099308968, + 0.06026029586791992, + 0.013902333565056324, + -0.055609334260225296, + 0.009030197747051716, + -0.01299236249178648, + 0.02932128496468067, + 0.09397977590560913, + -0.04511939361691475, + -0.07229213416576385, + -0.0015450548380613327, + 0.041909217834472656, + -0.017289448529481888, + -0.013877056539058685, + -0.020259492099285126, + 0.03960901126265526, + 0.016114069148898125, + 0.0196149293333292, + 0.025934170931577682, + -0.01522937510162592, + 0.022155264392495155, + -0.05904700234532356, + 0.05596321076154709, + -0.051868341863155365, + -0.019526459276676178, + 0.01506507396697998, + 0.10004624724388123, + 0.017491662874817848, + -0.05338495969772339, + 0.019892975687980652, + -0.06253522634506226, + -0.00790537241846323, + 0.010256131179630756, + 0.008884855546057224, + 0.0070775519125163555, + -0.011014440096914768, + -0.02957405522465706, + 0.01683446206152439, + 0.056215982884168625, + -0.04117618501186371, + -0.03377003222703934, + 0.023836182430386543, + -0.04772292077541351, + -0.08735720813274384, + 0.12436269223690033, + -0.01506507396697998, + -0.047267936170101166, + -0.07006776332855225, + 0.022092072293162346, + 0.008682639338076115, + 0.050907816737890244, + 0.03880015015602112, + 0.016442669555544853, + -0.009535737335681915, + -0.07987522333860397, + -0.041150908917188644, + 0.08129073679447174, + 0.022269010543823242, + 0.06314187496900558, + -0.013270409777760506, + 0.10085511207580566, + -0.04792513698339462, + 0.10404001176357269, + 0.03412390872836113, + -0.04539743810892105, + 0.04853178188204765, + -0.06369796395301819, + 0.03589329868555069, + 0.04104980081319809, + 0.015355759300291538, + 0.030281810089945793, + -0.06642787903547287, + -0.003263888880610466, + 0.039861783385276794, + -0.12921586632728577, + 0.003873695619404316, + 0.056418199092149734, + -0.03488221764564514, + 0.026894696056842804, + -0.02116946317255497, + 0.026566095650196075, + 0.06668064743280411, + 0.028411313891410828, + -0.015798106789588928, + 0.08902548998594284, + -0.07851026952266693, + -0.047874581068754196, + 0.028992684558033943, + -0.03440195694565773, + -0.01806039549410343, + -0.005453506484627724, + -0.01041411142796278, + 0.02103043906390667, + -0.014357319101691246, + 0.021675001829862595, + 0.0014763330109417439, + -0.13396793603897095, + 0.04592825472354889, + 0.020727116614580154, + -0.014066633768379688, + 0.051388081163167953, + 0.0060159191489219666, + 0.03210175409913063, + -0.003304963931441307, + -0.026515541598200798, + 0.03189953789114952, + -0.022104710340499878, + 0.00045222078915685415, + 0.0196149293333292, + -0.04130256921052933, + -0.027804667130112648, + 0.029953209683299065, + -0.049492307007312775, + 0.06521458178758621, + 0.04001344367861748, + 0.012922851368784904, + -0.06425406038761139, + -0.05520490184426308, + 0.038294609636068344, + 0.02788049913942814, + -0.010053914971649647, + 0.021763471886515617, + 0.10788211226463318, + 0.08346455544233322, + 0.08948047459125519, + -0.04051898419857025, + 0.07456706464290619, + -0.0418081097304821, + -0.056418199092149734, + 0.015962406992912292, + 0.011204017326235771, + -0.03503388166427612, + 0.06248467043042183, + 0.011254571378231049, + -0.008006480522453785, + 0.010382515378296375, + 0.01550742145627737, + -0.0653662458062172, + -0.10818543285131454, + 0.04524577781558037, + -0.03819350153207779, + 0.035311926156282425, + -0.006410871632397175, + -0.043248895555734634, + -0.05854146182537079, + -0.00551353907212615, + 0.03561525046825409, + 0.024442831054329872, + -0.02029740810394287, + -0.0007010409608483315, + -0.030484026297926903, + -0.07931913435459137, + -0.04587770253419876, + 0.04830428957939148, + -0.013864418491721153, + -0.08351510763168335, + 0.007886414416134357, + 0.07148326933383942, + -0.005674679763615131, + 0.03495804965496063, + -0.09033989161252975, + -0.066478431224823, + 0.03483166545629501, + 0.07497149705886841, + -0.0032386118546128273, + -0.02977627143263817, + -0.022749273106455803, + 0.03564052656292915, + 0.011760110035538673, + -0.021220017224550247, + 0.010458346456289291, + -0.0063761156052351, + 0.04228837043046951, + -0.04509411379694939, + 0.04380498826503754, + -0.005099628586322069, + 0.0007350068772211671, + -0.02218054234981537, + 0.003475583391264081, + 0.022749273106455803, + 0.0023223217576742172, + 0.07067441195249557, + -0.016594331711530685, + 0.061776917427778244, + 0.012587931007146835, + -0.02957405522465706, + 0.015886574983596802, + 0.023052597418427467, + 0.0015411053318530321, + 0.02699580416083336, + -0.020069913938641548, + 0.012575292959809303, + 0.004243371542543173, + -0.03136872127652168, + 0.06268689036369324, + 0.03670215979218483, + 0.030231256037950516, + -0.02278718911111355, + 0.019159942865371704, + -0.0358174666762352, + 0.023178981617093086, + 0.019994083791971207, + 0.007197617553174496, + 0.01581074483692646, + -0.060563620179891586, + 0.0030932691879570484, + -0.041555337607860565, + 0.023027319461107254, + 0.01770651713013649, + -0.024139506742358208, + 0.02036060020327568, + -0.048000965267419815, + -0.03703076019883156, + 0.024746153503656387, + 0.06824781745672226, + -0.026970528066158295, + 0.059754759073257446, + -0.052424438297748566, + -0.034300848841667175, + 0.033213939517736435, + -0.09433365613222122, + -0.04486662149429321, + 0.10196729749441147, + 0.0003519028250593692, + -0.015469505451619625, + -0.06359685957431793, + 0.03356781601905823, + -0.01784554123878479, + -0.05439604073762894, + -0.0578337088227272, + -0.03900236636400223, + 0.09676024317741394, + -0.032607290893793106, + 0.04653490334749222, + 0.036196622997522354, + -0.07810583710670471, + 0.07704420387744904, + -0.06086694449186325, + -0.022408034652471542, + -0.08715499192476273, + 0.01967812143266201, + -0.0017456908244639635, + 0.04039259999990463, + 0.022231096401810646, + 0.0005071192281320691, + 0.016101429238915443, + -0.06733784824609756, + -0.0009597349562682211, + -0.0005481942789629102, + -0.019501183182001114, + 0.03738464042544365, + -0.04580187052488327, + -0.04390609636902809, + 0.06410239636898041, + -0.037081316113471985, + -0.026743033900856972, + 0.06637732684612274, + 0.04218726232647896, + -0.04226309433579445, + -0.023305365815758705, + -0.010736392810940742, + -0.03157093748450279, + 0.034503065049648285, + -0.037485748529434204, + 0.07057330012321472, + -0.0037536302115768194, + -0.02815854549407959, + -0.033340323716402054, + 0.0009842220460996032, + 0.07916747033596039, + -0.08730665594339371, + 0.0352613739669323, + -0.0850822851061821, + -0.06546735018491745, + 0.0023475985508412123, + -0.05032644793391228, + -0.06288909912109375, + -0.031191781163215637, + -0.042161986231803894, + 0.03859793394804001, + -0.08472840487957001, + 0.050781432539224625, + -0.034983325749635696, + 0.018073033541440964, + -0.0521211139857769, + 0.02638915739953518, + 0.10252339392900467, + 0.07815638929605484, + -0.047520704567432404, + -0.06268689036369324, + 0.020272130146622658, + 0.01668279990553856, + 0.07977411895990372, + -0.07765085250139236, + 0.036196622997522354, + -0.028107991442084312, + 0.00803807657212019, + 0.05313219130039215, + -0.022812465205788612, + -0.05753038451075554, + -0.03278423100709915, + 0.019564375281333923, + -0.015798106789588928, + -0.01817414164543152, + 0.049972571432590485, + -0.02775411307811737, + -0.008006480522453785, + 0.026566095650196075, + 0.0013009740505367517, + -0.09296869486570358, + 0.0144584272056818, + 0.01933688297867775, + 0.04681294783949852, + -0.04019038379192352, + -0.02090405486524105, + -0.01994352973997593, + -0.02537807822227478, + -0.12102613598108292, + 0.005861097481101751, + 0.05454770103096962, + -0.04001344367861748, + 0.029017962515354156, + -0.01568436063826084, + -0.01594976894557476, + 0.05833924934267998, + 0.04484134539961815, + -0.014685919508337975, + 0.07512315362691879, + 0.015014520846307278, + -0.03872431814670563, + 0.030964288860559464, + -0.00337447552010417, + -0.09317091107368469, + -0.029220178723335266, + 0.002353917807340622, + 0.024746153503656387, + -0.023912014439702034, + 0.0015916592674329877, + -0.038370441645383835, + 0.029953209683299065, + -0.046307411044836044, + 0.05768204480409622, + 0.06612455099821091, + -0.0014360478380694985, + -0.021118909120559692, + 0.00932720210403204, + 0.016935570165514946, + -0.03157093748450279, + 0.015595890581607819, + 0.038168225437402725, + -0.004256010055541992, + 0.07466816902160645, + 0.02068920060992241, + -0.004638324026018381, + 0.1114208847284317, + -0.016809185966849327, + 0.05864256992936134, + 0.05237388238310814, + 0.03773851692676544, + -0.051388081163167953, + -0.006344519555568695, + 0.005510379560291767, + 0.004796305205672979, + 0.030382918193936348, + -0.06051306799054146, + -0.020777668803930283, + 0.04514466971158981, + 0.00117932865396142, + 0.07188770174980164, + -0.05914811044931412, + 0.03930569067597389, + 0.08093685656785965, + 0.03869904205203056, + -0.004777347203344107, + 0.01677126996219158, + -0.022850381210446358, + 0.0002588914649095386, + -0.07224158197641373, + -0.03073679655790329, + -0.007355598267167807, + 0.11485855281352997, + -0.02314106561243534, + -0.006353998556733131, + -0.020031999796628952, + 0.05894589424133301, + 0.054446592926979065, + -0.05656985938549042, + 0.006132824812084436, + 0.024518661201000214, + 0.026717757806181908, + 0.016050877049565315, + -0.04221254214644432, + -0.05955254286527634, + -0.006755270529538393, + -0.002737811766564846, + 0.015608529560267925, + -0.08649779111146927, + -0.009826422668993473, + 0.03493277356028557, + 0.018161503598093987, + 0.009788506664335728, + -0.007873776368796825, + 0.006755270529538393, + 0.030989564955234528, + 0.04853178188204765, + 0.12021727114915848, + -0.02666720375418663, + -0.0040095592848956585, + 0.017390554770827293, + -0.0383957177400589, + 0.004660441540181637, + -0.02727385051548481, + 0.017997203394770622, + 0.06395073235034943, + 0.012809105217456818, + -0.060968052595853806, + 0.0035703720059245825, + 0.01037619635462761, + -0.03207647427916527, + 0.024341722950339317, + 0.03874959424138069, + -0.037485748529434204, + 0.059198666363954544, + -0.07178659737110138, + -0.045827146619558334, + -0.01669543981552124, + 0.02278718911111355, + -0.06688286364078522, + 0.02084086276590824, + -0.08568892627954483, + 0.02211734838783741, + -0.06152414530515671, + -0.03114122711122036, + 0.022066794335842133, + -0.013093470595777035, + 0.013611648231744766, + 0.01792137138545513, + -0.08073464035987854, + 0.010262450203299522, + -0.01157053280621767, + -0.023722436279058456, + -0.014053995721042156, + -0.032935891300439835, + -0.03243035450577736, + 0.04137840121984482, + -0.05808647722005844, + 0.05439604073762894, + -0.043400559574365616, + 0.00508699007332325, + 0.0653662458062172, + -0.05333440750837326, + -0.038850702345371246, + 0.00882166251540184, + -0.040822308510541916, + -0.01404135674238205, + 0.012126626446843147, + -0.03286006301641464, + -0.018818704411387444, + -0.06936001032590866, + -0.004075911361724138, + 0.0412520170211792, + 0.0020648124627768993, + -0.07931913435459137, + -0.007128105498850346, + -0.03303699940443039, + -0.05687318369746208, + -0.015052435919642448, + 0.03882542625069618, + -0.029270730912685394, + -0.03963429108262062, + -0.04266752675175667, + 0.043931376188993454, + -0.052272774279117584, + -0.047040440142154694, + -0.026085833087563515, + 0.005169140640646219, + 0.0013775948900729418, + 0.051261696964502335, + 0.03093901090323925, + -0.019766591489315033, + 0.04754598066210747, + -0.0035229776985943317, + -0.06723674386739731, + 0.027450790628790855, + -0.07876303791999817, + -0.01913466677069664, + -0.028386037796735764, + 0.004413990769535303, + -0.0256434865295887, + 0.017731795087456703, + -0.08609335869550705, + -0.0184648260474205, + -0.01975395157933235, + 0.008834301494061947, + 0.04825373739004135, + -0.014053995721042156, + -0.04633268713951111, + -0.014433150179684162, + 0.004821582231670618 + ] + }, + { + "id": "2915b167-b8d4-4731-9828-7598ddf233d3", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "riddlejason", + "reviewDate": "2021-03-30T19:55:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "864ca5b8-fd46-4569-89af-e8eb3b004c41", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "timothydean", + "reviewDate": "2022-04-13T14:30:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e88d9d48-d8ec-4eff-9d00-c606fea6e902", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "kellynunez", + "reviewDate": "2022-08-09T03:33:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fda69a59-ae9c-4d04-98d2-7beaaa91ccef", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "cole30", + "reviewDate": "2021-01-13T14:55:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "42153cc4-5ad9-4e05-8f63-3cb82a3a941b", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "akrause", + "reviewDate": "2021-12-19T15:37:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e0f6e249-6af9-4607-a3b1-ae2ba3f19556", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "nathan25", + "reviewDate": "2021-05-22T20:24:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d30fb5fc-e0ca-4e83-aca0-eff23093c312", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "hernandezmartha", + "reviewDate": "2021-01-01T14:11:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ad4ca724-901c-4288-bb9f-4c1d055044d8", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "harringtonjodi", + "reviewDate": "2021-08-07T02:37:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "67ed6889-737d-491b-80b2-2995f6694139", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "laurasimpson", + "reviewDate": "2022-08-14T16:06:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9e185c46-9d40-4b96-afa2-5dc79b52e785", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "jamesstephanie", + "reviewDate": "2022-09-12T09:46:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "468f7d4e-100d-4e0a-b682-ed7b14cc07dd", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "bandrews", + "reviewDate": "2021-09-17T23:22:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "96f229e0-0abb-4a2d-b808-e715a4319593", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaron19", + "reviewDate": "2021-11-02T16:52:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "75ce3b2c-aa18-4cbe-8b50-e8dbd4dd4160", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "hensonashley", + "reviewDate": "2022-08-02T01:41:28", + "stars": 3, + "verifiedUser": true + }, + { + "id": "97b725d6-54d2-4512-9cf7-13d5424d10dd", + "productId": "75452450-7c04-48c1-9f93-6e3f9c7c55ac", + "category": "Electronics", + "docType": "customerRating", + "userName": "hsmith", + "reviewDate": "2022-08-31T15:20:55", + "stars": 4, + "verifiedUser": true + }, + { + "id": "22fec441-c8f1-4c24-9a33-55a18f08850e", + "productId": "22fec441-c8f1-4c24-9a33-55a18f08850e", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Ultra (Silver)", + "description": "This Awesome Phone Ultra (Silver) is one of the best phones you'll find anywhere in the world. It is a fully capable phone by a company whose motto it is \"The best phone ever\". If you were looking for something that would give you access to a premium Android, Samsung Galaxy, or iPhone/other apps, you probably already own one, but that is another story for another time. So the Best Value iPhone is not a phone that you could trust to be your best.\n", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-05-07T13:23:04", + "price": 363.26, + "stock": 74, + "priceHistory": [ + { + "priceDate": "2021-09-24T10:22:43", + "newPrice": 378.0 + }, + { + "priceDate": "2025-08-01T10:22:43", + "newPrice": 363.26 + } + ], + "descriptionVector": [ + -0.015888407826423645, + 0.057736363261938095, + -0.024868810549378395, + 0.00891374796628952, + 0.02949838526546955, + -0.0020830053836107254, + -0.08245974034070969, + -0.020772486925125122, + 0.0037994016893208027, + 0.03584890067577362, + -0.033594708889722824, + -0.02530510537326336, + 0.02306303381919861, + -0.012228377163410187, + -0.006368693895637989, + 0.0283834096044302, + 0.0076896981336176395, + -0.028456125408411026, + -0.028940897434949875, + 0.02349933050572872, + 0.07106759399175644, + -0.06335972249507904, + -0.02010592445731163, + -0.04743495583534241, + -0.020154401659965515, + 0.009459116496145725, + 0.022493427619338036, + -0.005868772976100445, + 0.03427338972687721, + -0.05477925390005112, + 0.048210591077804565, + -0.008356260135769844, + -0.03475816175341606, + 0.04445360600948334, + -0.03165562078356743, + 0.039654362946748734, + -0.03924230486154556, + -0.07029195874929428, + 0.04249027743935585, + 0.05327645689249039, + 0.020954275503754616, + -0.038151565939188004, + 0.008962225168943405, + -0.009943888522684574, + 0.03839395195245743, + -0.07092216610908508, + -0.030928462743759155, + 0.031437475234270096, + -0.012107184156775475, + 0.003560045501217246, + -0.026880614459514618, + -0.04118139296770096, + -0.007865427993237972, + 0.007380655966699123, + 0.005623356904834509, + 0.01087101548910141, + -0.02530510537326336, + 0.006192964036017656, + 0.014264420606195927, + 0.010852836072444916, + -0.008798614144325256, + -0.05686377361416817, + -0.02177838794887066, + 0.023450853303074837, + -0.004584126640111208, + -0.016082316637039185, + -0.010186274535953999, + 0.02379019372165203, + -0.04178735986351967, + 0.0404057577252388, + -0.015670260414481163, + 0.016712520271539688, + -0.03565499186515808, + 0.08827700465917587, + -0.034588493406772614, + 0.05914220213890076, + -0.008889509364962578, + 0.05909372493624687, + 0.07785440236330032, + 0.0326978825032711, + 0.07722420245409012, + 0.021317854523658752, + 0.019087903201580048, + 0.00893192645162344, + 0.06142063066363335, + 0.04607759043574333, + 0.04401731118559837, + -0.08415644615888596, + -0.049689143896102905, + 0.09186431765556335, + -0.026783660054206848, + 0.02828645519912243, + -0.015924764797091484, + 0.027728967368602753, + 0.0885193943977356, + 0.06946785002946854, + 0.010725583881139755, + 0.042247891426086426, + -0.002558687934651971, + 0.0016148971626535058, + 0.07242495566606522, + 0.009749979712069035, + 0.020093806087970734, + 0.011555755510926247, + -0.014712834730744362, + 0.04435665160417557, + 0.019899897277355194, + 0.01722153089940548, + 0.035970091819763184, + -0.07649704068899155, + -0.021111827343702316, + 0.013585738837718964, + -0.014567403122782707, + -0.014882504940032959, + 0.0033237189054489136, + 0.04239332303404808, + -0.026783660054206848, + -0.03652758151292801, + 0.034103721380233765, + -0.030104350298643112, + -0.03640638664364815, + 0.08648335188627243, + -0.024093175306916237, + -0.054973162710666656, + 0.0029934679623693228, + -0.019378766417503357, + 0.10800722986459732, + 0.08624096214771271, + -0.0031722276471555233, + -0.029934680089354515, + -0.053858183324337006, + 0.04896198585629463, + 0.005350672639906406, + 0.03427338972687721, + -0.031704097986221313, + 0.011046744883060455, + 0.06951632350683212, + 0.03613976389169693, + -0.0028904539067298174, + 0.06752876192331314, + -0.002385987900197506, + 0.025062719359993935, + 0.0270987618714571, + -0.05686377361416817, + -0.041738882660865784, + 0.011719366535544395, + 0.02096639573574066, + 0.013367591425776482, + -0.012591956183314323, + 0.006562602706253529, + 0.011361846700310707, + -0.10015392303466797, + -0.03921806812286377, + -0.0005177215207368135, + 0.022650977596640587, + 0.010234751738607883, + -0.015015817247331142, + -0.10335341840982437, + -0.033012982457876205, + 0.10684377700090408, + -0.025280866771936417, + -0.06597749143838882, + -0.009543951600790024, + -0.08444730937480927, + -0.021911701187491417, + 0.009913590736687183, + 0.09448209404945374, + 0.07067977637052536, + -0.03640638664364815, + 0.03046792931854725, + 0.023208465427160263, + 0.006332335993647575, + -0.05923915654420853, + -0.055748797953128815, + 0.004923467058688402, + 0.007932084612548351, + 0.057154636830091476, + -0.0007002684869803488, + 0.01468859612941742, + -0.018069881945848465, + 0.021560240536928177, + 0.021814746782183647, + -0.08129628747701645, + -0.03274635970592499, + 0.06718941777944565, + 0.02170567214488983, + 0.030007395893335342, + 0.022590382024645805, + 0.005238568875938654, + 0.06432926654815674, + -0.04576249048113823, + -0.03650334104895592, + -0.04091477021574974, + 0.024844571948051453, + 0.036891158670186996, + -0.008974344469606876, + 0.06462012976408005, + 0.002398107200860977, + -0.03386133536696434, + 0.0182759091258049, + 0.06471708416938782, + 0.0849805548787117, + 0.08197496831417084, + 0.013113086111843586, + 0.022117728367447853, + -0.033425040543079376, + 0.004338710568845272, + 0.027535058557987213, + -0.02366900071501732, + 0.07421861588954926, + -0.021075468510389328, + 0.002307212445884943, + -0.03405524417757988, + 0.006526244804263115, + 0.035097502171993256, + 0.004423545673489571, + 0.024541590362787247, + -0.024868810549378395, + -0.010125678032636642, + -0.11304886639118195, + 0.04867112264037132, + 0.009362162090837955, + 0.05894829332828522, + 0.030055873095989227, + -0.02949838526546955, + -0.06117824465036392, + 0.03672149032354355, + 0.04823482781648636, + 0.03466120734810829, + 0.010113558731973171, + -0.0336674265563488, + -0.03606704622507095, + -0.02177838794887066, + -0.050270870327949524, + -0.012125363573431969, + 0.07223104685544968, + -0.01901518739759922, + -0.023196347057819366, + -0.08701659739017487, + 0.08459273725748062, + 0.04537467285990715, + -0.022166205570101738, + -0.019124260172247887, + -0.05637900158762932, + 0.10597118735313416, + -0.05124041438102722, + -0.031025417149066925, + -0.018191074952483177, + -0.054827731102705, + 0.05143432319164276, + -0.008095694705843925, + -0.07014653086662292, + -0.013222159817814827, + 0.054973162710666656, + 0.000821082794573158, + 0.028359171003103256, + 0.027535058557987213, + -0.016882190480828285, + 0.08129628747701645, + 0.01156181562691927, + 0.020820964127779007, + 0.03245549649000168, + 0.028528841212391853, + 0.06083890423178673, + -0.062196265906095505, + 0.08236278593540192, + 0.10374123603105545, + -0.02860155701637268, + 0.009713621810078621, + -0.0020012001041322947, + -0.08182954043149948, + -0.016651922836899757, + 0.0066413781605660915, + -0.002863185480237007, + 0.048089396208524704, + 0.04566553607583046, + -0.08090846985578537, + 0.05264625325798988, + -0.025474775582551956, + 0.05768788605928421, + 0.12109608203172684, + -0.004635633435100317, + 0.06355363130569458, + 0.05560336634516716, + 0.07712724804878235, + -0.004572007339447737, + 0.023196347057819366, + -0.06660769134759903, + 0.08139324188232422, + -0.018881874158978462, + -0.010834657587110996, + -0.026347365230321884, + 0.022747932001948357, + 0.006374753545969725, + 0.03710930794477463, + -0.033594708889722824, + 0.009156133979558945, + -0.05085259675979614, + 0.02205713279545307, + 0.08212040364742279, + 0.04627149924635887, + -0.011028566397726536, + -0.02789863757789135, + 0.00015395303489640355, + 0.004926497116684914, + 0.15250931680202484, + -0.03218887001276016, + 0.012495001778006554, + -0.036285195499658585, + -0.021536001935601234, + 0.09118563681840897, + -0.035267174243927, + -0.05070716515183449, + -0.06432926654815674, + 0.018384983763098717, + 0.019960492849349976, + -0.045011091977357864, + 0.03514597937464714, + 0.04854993149638176, + -0.008283544331789017, + 0.03684268146753311, + 0.0092167304828763, + -0.02949838526546955, + 0.049398280680179596, + 0.0029646847397089005, + 0.02411741390824318, + 0.02789863757789135, + -0.010386243462562561, + -0.01876068115234375, + 0.010174155235290527, + -0.05390666052699089, + -0.026662467047572136, + 0.028771227225661278, + -0.03223734721541405, + 0.0647655576467514, + -0.04028456658124924, + -0.001566419959999621, + 0.08129628747701645, + 0.06723789870738983, + 0.028359171003103256, + 0.05293711647391319, + 0.04871959984302521, + -0.024941526353359222, + 0.031534429639577866, + -0.019742345437407494, + -0.09889351576566696, + -0.11033414304256439, + -0.03803037479519844, + 0.023172108456492424, + -0.02632312662899494, + 0.0016557998023927212, + -0.031146610155701637, + 0.0695648044347763, + -0.006556543055921793, + 0.0686437338590622, + 0.04748343303799629, + -0.0008225977071560919, + -0.07426708936691284, + -0.008744077757000923, + -0.021184543147683144, + 0.015173368155956268, + 0.009416698478162289, + -0.019136380404233932, + 0.04110867902636528, + -0.06146910786628723, + 0.03909687325358391, + 0.026783660054206848, + 0.07324907183647156, + 0.005423388443887234, + -0.012737387791275978, + 0.04951947554945946, + -0.014131108298897743, + -0.031146610155701637, + 0.05288863927125931, + -0.05070716515183449, + 0.052258435636758804, + -0.00880467426031828, + -0.05153127759695053, + 0.006695915013551712, + 0.04559281840920448, + -0.03701235353946686, + 0.02809254638850689, + 0.01236168947070837, + 0.0426599495112896, + 0.04186007380485535, + -0.04120563343167305, + -0.05041630193591118, + -0.0013066123938187957, + -0.046513885259628296, + 0.1019960567355156, + -0.05448838695883751, + -0.02254190482199192, + -0.015706617385149002, + 0.029352953657507896, + 0.018942471593618393, + -0.021439047530293465, + 0.014118988998234272, + -0.016651922836899757, + 0.0009021306759677827, + -0.04198126867413521, + 0.059336110949516296, + 0.06234169751405716, + 0.03761831670999527, + 0.032722119241952896, + -0.0018784920684993267, + -0.015961123630404472, + 0.029255999252200127, + -0.004735617898404598, + -0.054149046540260315, + -0.05749397724866867, + -0.037860702723264694, + 0.01223443727940321, + -0.08134476840496063, + 0.05094955116510391, + 0.03473392501473427, + 0.0407208614051342, + 0.05031934753060341, + 0.02437192015349865, + 0.11537577211856842, + -0.03456425294280052, + 0.0024435545783489943, + 0.04854993149638176, + 0.07882395386695862, + 0.004568977281451225, + -0.030831508338451385, + 0.06878916919231415, + 0.009495474398136139, + 0.006089949980378151, + -0.048016682267189026, + -0.038563624024391174, + 0.06602596491575241, + 0.009713621810078621, + 0.11023718863725662, + 0.020372549071907997, + -0.03289179131388664, + -0.08425340056419373, + -0.032213110476732254, + 0.03691539913415909, + 0.002107243984937668, + 0.0067504518665373325, + -0.04207822307944298, + 0.005508223548531532, + -0.027341149747371674, + 0.055070117115974426, + -0.10955850780010223, + -0.01846981793642044, + 0.001966356998309493, + 0.05817265808582306, + -0.005399149842560291, + -0.03749712556600571, + 0.019584795460104942, + -0.0017603288870304823, + 0.019487841054797173, + -0.026080740615725517, + 0.06360210478305817, + 0.032819073647260666, + -0.032213110476732254, + 0.05797874927520752, + -0.030540645122528076, + -0.006568662356585264, + -0.048695363104343414, + 0.08910112082958221, + 0.01743967831134796, + -0.07736963033676147, + 0.009689383208751678, + 0.020336192101240158, + -0.038369715213775635, + -0.02411741390824318, + -0.0017891122261062264, + -0.032310064882040024, + -0.045617058873176575, + -0.04908318072557449, + 0.05948154255747795, + 0.004096324555575848, + -0.036188241094350815, + -0.015633901581168175, + 0.029716532677412033, + -0.005102226976305246, + -0.021378451958298683, + 0.03323113173246384, + 0.06408687680959702, + 0.028650034219026566, + 0.07678790390491486, + 0.022554023191332817, + 0.06282646954059601, + -0.08808309584856033, + 0.02349933050572872, + -0.04142377898097038, + -0.010507436469197273, + 0.020190760493278503, + 0.028068307787179947, + -0.011143699288368225, + -0.016724638640880585, + 0.006786809768527746, + -0.055845752358436584, + -0.08624096214771271, + -0.006556543055921793, + 0.003763043787330389, + -0.06505642086267471, + 0.05458534508943558, + 0.0068655856885015965, + -0.07009804993867874, + -0.015706617385149002, + 0.02462642453610897, + -0.052258435636758804, + -0.007556385826319456, + -0.03187377005815506, + 0.05875438451766968, + -0.02353568747639656, + 0.005247658584266901, + 0.08352623879909515, + -0.020033208653330803 + ] + }, + { + "id": "3c607c5a-9ad9-472d-9f7a-82840bbf5dba", + "productId": "22fec441-c8f1-4c24-9a33-55a18f08850e", + "category": "Electronics", + "docType": "customerRating", + "userName": "cchavez", + "reviewDate": "2022-05-24T13:50:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eb1e6891-66af-49ec-ab04-8172c1dcbc43", + "productId": "22fec441-c8f1-4c24-9a33-55a18f08850e", + "category": "Electronics", + "docType": "customerRating", + "userName": "agordon", + "reviewDate": "2021-09-24T10:22:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Micro (Gold)", + "description": "This Luxe Keyboard Micro (Gold) is made to suit any type of user. Its tactile feeling is also ideal for all typing conditions and is perfect for playing music as well.\n\nThe ergonomic and ergonomic design of Silver is meant for comfortable typing. The ergonomic and ergonomic design of Silver is meant for comfortable", + "countryOfOrigin": "Argentina", + "rareItem": true, + "firstAvailable": "2018-12-26T13:07:26", + "price": 606.65, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-02-23T19:32:35", + "newPrice": 646.02 + }, + { + "priceDate": "2022-01-23T19:32:35", + "newPrice": 635.22 + }, + { + "priceDate": "2022-12-23T19:32:35", + "newPrice": 610.36 + }, + { + "priceDate": "2023-06-01T19:32:35", + "newPrice": 606.65 + } + ], + "descriptionVector": [ + -0.009602807462215424, + 0.04123784229159355, + -0.04715400189161301, + -0.010577878914773464, + 0.020816124975681305, + -0.03352491930127144, + -0.02153921127319336, + -0.011416001245379448, + -0.004163225181400776, + 0.009980784729123116, + 0.02570243738591671, + -0.023292148485779762, + 0.02541758492588997, + -0.05499839410185814, + 0.03611050173640251, + 0.0045329853892326355, + -0.010090342722833157, + -0.035431236028671265, + 0.005562835838645697, + 0.03236359730362892, + 0.041194017976522446, + -0.10272210091352463, + -0.05999426543712616, + -0.02951507456600666, + -0.027345815673470497, + -0.02813463658094406, + 0.03139948099851608, + 0.046934884041547775, + 0.022328034043312073, + -0.026294052600860596, + 0.06288661062717438, + -0.03304285928606987, + -0.06271132081747055, + 0.05162399262189865, + -0.05114193260669708, + -0.06823306530714035, + 0.03063257224857807, + 0.007044615224003792, + 0.05044075846672058, + 0.039945051074028015, + 0.0027156826108694077, + 0.05298251658678055, + -0.02640361152589321, + -0.06323719769716263, + -0.027039051055908203, + 0.04448077455163002, + 0.017025399953126907, + 0.02778404951095581, + 0.04702253267168999, + -0.04592694714665413, + 0.07222100347280502, + 0.043538570404052734, + -0.06179102510213852, + -0.0067816744558513165, + 0.06205396726727486, + -0.050616052001714706, + 0.005277983378618956, + 0.12866556644439697, + 0.09053918719291687, + -0.07287835329771042, + -7.647700840607285e-05, + -0.04509430006146431, + -0.04408636316657066, + -0.040492843836545944, + 0.03221021592617035, + -0.01746363379061222, + 0.04535724222660065, + -0.045620184391736984, + 0.0790136307477951, + 0.06122132018208504, + -0.058153681457042694, + 0.030303897336125374, + 0.015502535738050938, + 0.01340996753424406, + 0.03970402106642723, + 0.015086213126778603, + 0.06775101274251938, + 0.0044097318314015865, + 0.06665542721748352, + -0.031750068068504333, + 0.03707461431622505, + -0.04064622521400452, + -0.029843751341104507, + -0.06551601737737656, + 0.06227308511734009, + 0.01672959141433239, + 0.027104787528514862, + -0.07252776622772217, + -0.09027624875307083, + 0.11841088533401489, + -0.09325624257326126, + 0.008370273746550083, + -0.017452677711844444, + 0.009876703843474388, + 0.03895902261137962, + -0.02778404951095581, + -0.005154730286449194, + 0.05149251967668533, + -0.013486658222973347, + 0.0033141463063657284, + 0.004286478273570538, + -0.007165129762142897, + -0.04518194869160652, + 0.027630668133497238, + -0.005434104241430759, + 0.0796709805727005, + 0.09518447518348694, + -0.02445347048342228, + -0.023248326033353806, + -0.11621971428394318, + 0.07932039350271225, + 0.021079065278172493, + -0.025943465530872345, + 0.01110375951975584, + -0.025373762473464012, + 0.02160494774580002, + -0.0133332759141922, + -0.04820576310157776, + 0.009926005266606808, + 0.0003550382098183036, + 0.012829306535422802, + 0.027192434296011925, + -0.009224830195307732, + 0.011930926702916622, + -0.04767988249659538, + -0.001267455518245697, + -0.012139088474214077, + 0.019742451608181, + 0.061834849417209625, + 0.022832002490758896, + -0.0651216059923172, + 0.12095264345407486, + 0.03928769752383232, + 0.05548045411705971, + 0.0008449703454971313, + 0.025308026000857353, + -0.0054943617433309555, + 0.08142391592264175, + 0.0018118246225640178, + 0.04934517294168472, + -0.010046519339084625, + -0.025680525228381157, + -0.0322321280837059, + -0.04281548410654068, + -0.04829341173171997, + -0.03757858648896217, + -0.044656068086624146, + 0.009301521815359592, + 0.016127020120620728, + 0.04075578227639198, + 0.05565574765205383, + -0.049651939421892166, + 0.016740547493100166, + -0.09430800378322601, + 0.07169511914253235, + 0.004494639579206705, + -0.04702253267168999, + -0.04461224377155304, + 0.007093916647136211, + 0.0831768587231636, + 0.017134958878159523, + 0.0232045017182827, + -0.03021625056862831, + 0.0068693216890096664, + -0.012905998155474663, + 0.07861921936273575, + -0.0013277127873152494, + 0.03595711663365364, + -0.02640361152589321, + 0.030325807631015778, + -0.08790978789329529, + 0.03006286732852459, + -0.02923022210597992, + -0.016970619559288025, + 0.026688463985919952, + -0.036198146641254425, + 0.022832002490758896, + -0.019600026309490204, + 0.018449660390615463, + -0.036877408623695374, + 0.03330580145120621, + 0.08672655373811722, + -0.06542836874723434, + 0.0070665269158780575, + 0.08966272324323654, + 0.01416592113673687, + 0.03554079681634903, + 0.03216639161109924, + 0.031180365011096, + -0.013442834839224815, + -0.01967671699821949, + 0.02192266657948494, + -0.07147600501775742, + -1.0950506293738727e-05, + 0.012467763386666775, + 0.018372969701886177, + 0.03324006497859955, + -0.007274688221514225, + 0.027762137353420258, + 0.02618449553847313, + -0.040974900126457214, + 0.08010921627283096, + 0.036132410168647766, + -0.005636787507683039, + 0.03444521129131317, + 0.0008634583791717887, + 0.020586052909493446, + 0.00011281107435934246, + -0.030939336866140366, + 0.0037277298979461193, + 0.025132732465863228, + 0.05271957814693451, + -0.02265670895576477, + 0.05508604273200035, + 0.0526319295167923, + -0.004965741652995348, + 0.03801681846380234, + 0.02195553481578827, + -0.043538570404052734, + -0.0685836523771286, + -0.013837245292961597, + -0.012106220237910748, + 0.0457078292965889, + 0.03819211199879646, + 0.008479832671582699, + -0.02355508878827095, + 0.05499839410185814, + 0.036329615861177444, + 0.0405147522687912, + 0.03378785774111748, + -0.020783258602023125, + -0.010008173994719982, + -0.003026555059477687, + 0.0035305244382470846, + -0.02938360534608364, + -0.01044640876352787, + -0.03477388620376587, + -0.07870686799287796, + -0.01430834736675024, + 0.05079134553670883, + 0.016269445419311523, + -0.027323903515934944, + -0.023051120340824127, + 0.02977801486849785, + 0.0033031904604285955, + -0.06674307584762573, + 0.11508030444383621, + -0.016291357576847076, + -0.07542011141777039, + 0.01065456960350275, + -0.06910953670740128, + 0.027674490585923195, + -0.007208953145891428, + 0.0679263025522232, + 0.03998887166380882, + 0.03797299414873123, + 0.07787422090768814, + -0.03240742161870003, + 0.0016584426630288363, + -0.058022212237119675, + 0.04566400498151779, + -0.021900756284594536, + -0.023927588015794754, + 0.005532707087695599, + -0.0526319295167923, + 0.02765258029103279, + 0.05596251040697098, + -0.080372154712677, + -0.022700533270835876, + -0.02355508878827095, + -0.026776110753417015, + -0.018055250868201256, + 0.09720034897327423, + 0.011383133940398693, + -0.03628579527139664, + 0.0140234949067235, + -0.07581452280282974, + 0.0769101083278656, + 0.013913936913013458, + -0.06551601737737656, + 0.021615903824567795, + 0.082431860268116, + 0.06608571857213974, + -0.005855904892086983, + 0.07156364619731903, + -0.039441078901290894, + 0.014264523983001709, + -0.021144801750779152, + -0.042508721351623535, + 0.004656238481402397, + -0.02169259451329708, + 0.002240472473204136, + 0.04684723913669586, + 0.013311364687979221, + 0.0005265658255666494, + -0.031750068068504333, + 0.054691631346940994, + 0.030654484406113625, + 0.036198146641254425, + 0.003264844883233309, + 0.049695760011672974, + -0.01999443583190441, + -0.007597886025905609, + -0.0810733288526535, + -0.028244195505976677, + 0.0651654303073883, + -0.031048893928527832, + 0.044721800833940506, + -0.07116923481225967, + -0.039484903216362, + 0.018668778240680695, + -0.0014228917425498366, + -0.0335906520485878, + 0.011136626824736595, + 0.08094186335802078, + -0.06744424998760223, + 0.00451107369735837, + 0.024913616478443146, + 0.03096124716103077, + 0.04912605509161949, + -0.03893711045384407, + -0.011667986400425434, + -0.07712922245264053, + 0.056225452572107315, + 0.04588312283158302, + -0.026556994765996933, + 0.022634796798229218, + -0.023292148485779762, + 0.015228639356791973, + -0.08549949526786804, + -0.060870733112096786, + 0.00031070123077370226, + -0.06424513459205627, + -0.039945051074028015, + 0.034532856196165085, + -0.012281513772904873, + -0.009887659922242165, + -0.017748486250638962, + 0.05429721996188164, + -0.02230612188577652, + 0.054078102111816406, + 0.020531272515654564, + -0.0748504027724266, + -0.04960811510682106, + 0.03611050173640251, + -0.015842167660593987, + -0.04873164743185043, + -0.0069350567646324635, + 0.017518412321805954, + 0.06485866755247116, + 0.001081206020899117, + -0.028989193961024284, + 0.078969806432724, + -0.020520318299531937, + -0.020586052909493446, + 0.033086683601140976, + 0.06108985096216202, + -0.06152808666229248, + -0.01361812837421894, + 0.08146774023771286, + -0.019687673076987267, + 0.0039276741445064545, + 0.04903841018676758, + 0.043472833931446075, + -0.029558898881077766, + 0.012478719465434551, + -0.011514604091644287, + 0.03302094712853432, + -0.007093916647136211, + -0.018931718543171883, + 0.005959985312074423, + -0.021626858040690422, + 0.05924926698207855, + 0.0734042301774025, + -0.016488563269376755, + 0.11385325342416763, + 0.011273575015366077, + 0.01884407177567482, + -0.0381263792514801, + 0.03692123293876648, + -0.01596268080174923, + 0.05271957814693451, + 0.024760233238339424, + -0.020936639979481697, + 0.030501101166009903, + -0.06108985096216202, + -0.02625023014843464, + 0.02118862420320511, + 0.08492979407310486, + 0.0005974365049041808, + -0.056093979626894, + -0.035847559571266174, + 0.00021860355627723038, + 0.02646934799849987, + -0.040142256766557693, + 0.046584296971559525, + 0.03464241698384285, + 0.06661160290241241, + 0.02153921127319336, + 0.008194980211555958, + 0.050396934151649475, + 0.025592878460884094, + -0.013388055376708508, + -0.052544284611940384, + 0.007970385253429413, + -0.078969806432724, + 0.019030321389436722, + 0.07669098675251007, + 0.02611875906586647, + -0.07769893109798431, + -0.03849887475371361, + -0.0019446644000709057, + 0.017518412321805954, + -0.04393298178911209, + -0.00034100099583156407, + 0.031070806086063385, + 0.07949569076299667, + 0.0630180835723877, + 0.05346457660198212, + -0.08308921009302139, + 0.06560366600751877, + -0.043823421001434326, + -0.07861921936273575, + -0.0014434339245781302, + 0.0030210772529244423, + -0.007625275291502476, + -0.04246489703655243, + -0.05640074610710144, + 0.10999678820371628, + -0.0526319295167923, + 0.01731025241315365, + 0.0008566109463572502, + -0.04732929542660713, + -0.023511266335844994, + 0.009389168582856655, + 0.012949821539223194, + -0.007192519027739763, + 0.054078102111816406, + -0.0003961226611863822, + 0.07857539504766464, + -0.01454937644302845, + -0.09860269725322723, + 0.0030676396563649178, + 0.022415680810809135, + -0.07099394500255585, + -0.012106220237910748, + -0.012686881236732006, + 0.07717304676771164, + 0.08804125338792801, + -0.07375481724739075, + 0.038893286138772964, + -0.06832071393728256, + -0.017967604100704193, + -0.02467258647084236, + 0.046321358531713486, + 0.019337086006999016, + 0.02681993506848812, + 0.0720895305275917, + 0.02999713271856308, + -0.006836453918367624, + -0.03560652956366539, + 0.051580168306827545, + 0.04073387011885643, + 0.012588278390467167, + 0.035365503281354904, + 0.004302912391722202, + 0.012270558625459671, + 0.05232516676187515, + 0.01701444387435913, + 0.0006552971317432821, + -0.006211970001459122, + -0.0561378039419651, + 0.008945455774664879, + -0.03468623757362366, + -0.010829863138496876, + -0.09027624875307083, + 0.012106220237910748, + -0.007975863292813301, + -0.04566400498151779, + 0.042223867028951645, + -0.053113989531993866, + 0.005135557148605585, + -0.03229786083102226, + 0.03383168205618858, + 0.050616052001714706, + -0.05223751813173294, + 0.04855635389685631, + 0.03402888774871826, + 0.07300981879234314, + -0.0020473755430430174, + 0.03137756884098053, + 0.011898059397935867, + -0.030588747933506966, + -0.07292217761278152, + -0.020334068685770035, + -0.00592163996770978, + -0.09167859703302383, + 0.03332771360874176, + -0.029536986723542213, + 0.02508891001343727, + 0.05000252649188042, + -0.011059936136007309, + -0.029953308403491974, + 0.03297712653875351, + 0.03389741852879524, + 0.01108732633292675, + -0.06126514449715614, + 0.05425339564681053, + 0.0007114458712749183, + -0.033985063433647156, + 0.03996695950627327, + -0.05477927625179291 + ] + }, + { + "id": "68d7aef5-538c-48a2-ba5b-9a7cf9a74768", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ana89", + "reviewDate": "2022-08-20T03:00:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "146ca4dd-7d2d-49c9-aaa3-f702ad2f1842", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nhunt", + "reviewDate": "2021-10-04T01:07:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f7c5e0cf-48e0-46bd-8ad3-d36bb32f075d", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mooretroy", + "reviewDate": "2022-03-31T20:13:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e85c91c8-0e8c-41a2-9292-22bd5245b44e", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthonydavis", + "reviewDate": "2022-04-21T12:54:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "374c3519-0bda-4899-9474-046d55105dc2", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jonesrhonda", + "reviewDate": "2021-09-02T05:54:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d51a5e98-6bb4-4ac3-a1eb-3fc1fd3c0895", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachel85", + "reviewDate": "2021-03-08T03:59:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3be3f846-5f51-4764-9982-f922200fb3d2", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "harrisrachel", + "reviewDate": "2021-12-17T10:35:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d851926b-1a49-49bb-bed7-5011f70c6bbf", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uwillis", + "reviewDate": "2022-02-06T15:19:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8000d222-618d-4fbf-81e2-f9c00fde59e8", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michellechristian", + "reviewDate": "2021-02-23T19:32:35", + "stars": 5, + "verifiedUser": true + }, + { + "id": "6c18720f-335e-42a6-8754-4eb81cd3f0f5", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopherrodriguez", + "reviewDate": "2022-12-17T17:58:12", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8dd866f0-c295-4a86-b961-4bd10f634d13", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cshepherd", + "reviewDate": "2022-06-30T02:56:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c732c366-765a-45b3-9ec9-1ce31599b0b5", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sdoyle", + "reviewDate": "2021-12-22T10:30:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d41ce62f-cd00-4a2b-9583-1e1ffd9063f5", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "allentravis", + "reviewDate": "2022-04-11T15:00:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "22784456-ba97-4533-a10e-3426e6ea4a23", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daniel82", + "reviewDate": "2021-03-01T19:06:10", + "stars": 3, + "verifiedUser": false + }, + { + "id": "238dc988-a889-4184-8aff-8ce8ba5c0770", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "john16", + "reviewDate": "2022-12-25T03:24:26", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5da7bf51-9dde-4bbf-adbb-ccf4837c641e", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "garciaandrea", + "reviewDate": "2022-03-22T13:28:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "38c4f86a-4b63-425a-8d96-5339424df1e4", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joneskatrina", + "reviewDate": "2021-06-28T19:27:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d53db80b-3fdf-490d-8057-0eb8e80bac61", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ramosjames", + "reviewDate": "2021-06-30T21:46:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "db4a2006-8fd3-484d-b5e1-7be1b94413e2", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicholasromero", + "reviewDate": "2022-09-03T19:02:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "66b6c83a-60db-4587-be30-6d92269ecb23", + "productId": "50e303bb-03bc-48e2-9daa-d33013e54be7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lday", + "reviewDate": "2022-11-19T13:15:37", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6e69c608-aa40-4293-92da-11e9a988afa1", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Ultra (Silver)", + "description": "This Premium Stand Ultra (Silver) is the ultimate example of an extremely easy to carry and light for all you love metal music. Whether you love the classic classic classic style or if you hate this music, this Premium Series is for you. It is heavy duty that makes it an excellent choice if you are looking for a quality metal instrument stand.\n\n\"The Silver Silver Metallic stand has a", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-05-25T07:36:32", + "price": 837.86, + "stock": 54, + "priceHistory": [ + { + "priceDate": "2021-01-16T10:22:10", + "newPrice": 886.17 + }, + { + "priceDate": "2022-11-18T10:22:10", + "newPrice": 818.0 + }, + { + "priceDate": "2024-10-24T10:22:10", + "newPrice": 837.86 + } + ], + "descriptionVector": [ + 0.0032074153423309326, + -0.006338159553706646, + -0.04444378614425659, + 0.02287359908223152, + 0.01998564787209034, + -0.041862521320581436, + -0.10371068865060806, + -0.0086127407848835, + -0.008312445133924484, + 0.0442904457449913, + 0.01574316993355751, + 0.011098168790340424, + 0.07069092243909836, + -0.034348733723163605, + 0.01408195961266756, + -0.00431595416739583, + -0.0021467958576977253, + -0.03708334267139435, + 0.01865667849779129, + 0.010235616005957127, + 0.0993148684501648, + -0.04536384344100952, + -0.023359185084700584, + -0.011839323677122593, + -0.03345423564314842, + -0.05929245799779892, + 0.027090519666671753, + 0.019615070894360542, + -0.030336271971464157, + 0.02765277586877346, + 0.03634218871593475, + 0.02882840298116207, + 0.01900169998407364, + 0.058014605194330215, + -0.04329371824860573, + 0.01694435440003872, + 0.00913666095584631, + 0.006392468232661486, + 0.01960229128599167, + -0.022784149274230003, + -0.026298251003026962, + 0.03912791237235069, + 0.009238889440894127, + -0.007724632043391466, + 0.019052814692258835, + -0.00615287059918046, + -0.025480423122644424, + 0.04579831287264824, + 0.007494618184864521, + -0.04012463986873627, + 0.013027729466557503, + 0.054181039333343506, + -0.012669929303228855, + 0.01672711782157421, + 0.05806571990251541, + -0.059599146246910095, + 0.053516555577516556, + 0.10498854517936707, + 0.08745637536048889, + -0.005942024756222963, + -0.014439758844673634, + -0.01679101213812828, + -0.02236245758831501, + 0.01713603176176548, + 0.006791797932237387, + 0.01938505657017231, + 0.05714566260576248, + -0.10509077459573746, + -0.0004133061447646469, + 0.036188844591379166, + -0.09819035977125168, + 0.02071402594447136, + 0.06123479828238487, + 0.047689538449048996, + 0.0726843774318695, + 0.020228439942002296, + 0.04641168564558029, + 0.038284529000520706, + 0.051037516444921494, + 0.014887007884681225, + 0.041632506996393204, + 0.016139306128025055, + -0.019551176577806473, + 0.0003520090540405363, + 0.008101599290966988, + 0.03621440380811691, + 0.02898174524307251, + -0.06925972551107407, + -0.062205970287323, + 0.08295833319425583, + -0.02990180067718029, + -0.027755005285143852, + 0.03854009881615639, + -0.026374921202659607, + 0.033684249967336655, + -0.024777604267001152, + 0.019998427480459213, + 0.04132582247257233, + 0.0007435517036356032, + -0.01276576891541481, + 0.057912375777959824, + -0.0015334256459027529, + -0.003240959020331502, + -0.006140091922134161, + 0.01461865846067667, + 0.029952915385365486, + 0.013455810025334358, + -0.018822800368070602, + -0.009226110763847828, + -0.1573294699192047, + 0.04958076402544975, + -0.07299106568098068, + 0.04932519420981407, + -0.03639330342411995, + 0.02816391922533512, + 0.00028791665681637824, + -0.03695555776357651, + -0.037390030920505524, + 0.03450207784771919, + -0.027090519666671753, + -0.0700264424085617, + 0.0005750346463173628, + 0.01052952278405428, + 0.049274079501628876, + -0.013417474925518036, + 0.03759448602795601, + -0.04577275738120079, + 0.018260544165968895, + 0.017314931377768517, + -0.007366832345724106, + -0.024317575618624687, + 0.028777288272976875, + -0.008293277584016323, + 0.005114613566547632, + -0.03465542197227478, + 0.03519212082028389, + -0.020982375368475914, + 0.014516429975628853, + -0.021455181762576103, + -0.006932361982762814, + -0.08162935823202133, + -0.04633501172065735, + 0.04963187873363495, + 0.009015264920890331, + -0.0377478301525116, + -0.03529434651136398, + -0.0687485858798027, + 0.011379296891391277, + 0.02105904556810856, + 0.003664248390123248, + 0.08316278457641602, + -0.012593258172273636, + -0.01178182102739811, + -0.043881531804800034, + 0.026528263464570045, + 0.06414830684661865, + -0.12502530217170715, + -0.035779934376478195, + -0.029467329382896423, + 0.09241445362567902, + 0.034885432571172714, + 0.017762180417776108, + -0.03662331774830818, + 0.027882790192961693, + 0.019091149792075157, + 0.035141006112098694, + 0.0443415604531765, + 0.060825884342193604, + -0.0013513313606381416, + 0.02632380835711956, + -0.013468588702380657, + -0.039996854960918427, + 0.017110474407672882, + -0.10217726230621338, + 0.023921441286802292, + -0.03478320688009262, + 0.05970137193799019, + -0.05096084624528885, + 0.05090973153710365, + -0.020739583298563957, + -0.02397255413234234, + 0.09292559325695038, + -0.038821227848529816, + -0.040431324392557144, + 0.024368690326809883, + 0.06639733165502548, + 0.020739583298563957, + 0.08484955132007599, + 0.018413886427879333, + 0.023742541670799255, + -0.015500377863645554, + 0.025301523506641388, + -0.008478566072881222, + 0.037517815828323364, + 0.01226101629436016, + -0.03795228525996208, + 0.02619602158665657, + -0.0410446934401989, + -0.00176823150832206, + 0.016612110659480095, + -0.03332645073533058, + 0.05382324010133743, + 0.05249427258968353, + -0.04789399728178978, + 0.03521767631173134, + -0.013417474925518036, + 0.006951529998332262, + 0.042910363525152206, + -0.023295292630791664, + -0.025237631052732468, + -0.03166523948311806, + 0.006424414925277233, + -0.046922825276851654, + 0.06956641376018524, + 0.0043191490694880486, + 0.04528717324137688, + 0.03266196697950363, + -0.011251511052250862, + 0.02169797383248806, + -0.01758328080177307, + 0.07794913649559021, + 0.024560367688536644, + 0.006392468232661486, + 0.030642956495285034, + -0.07610902935266495, + -0.021672416478395462, + 0.018835578113794327, + -0.018107201904058456, + 0.034604307264089584, + 0.03792672976851463, + -0.041198037564754486, + -0.03864232823252678, + -0.052749842405319214, + 0.047433968633413315, + -0.021340174600481987, + 0.11347349733114243, + -0.05044970661401749, + -0.08244718611240387, + 0.029671786352992058, + 0.008702190592885017, + -0.024969281628727913, + -0.017557723447680473, + -0.07529120147228241, + -0.037645600736141205, + -0.03772227093577385, + -0.009903374128043652, + 0.08909203112125397, + -0.13075008988380432, + -0.03687888756394386, + 7.21913056622725e-06, + -0.047689538449048996, + -0.02806168980896473, + 0.008849143981933594, + 0.03915346786379814, + 0.04446934536099434, + 0.05244315788149834, + 0.04326816275715828, + 0.021174052730202675, + 0.034987661987543106, + 0.023640312254428864, + -0.01475922204554081, + -0.013928616419434547, + 0.04285924881696701, + 0.013340803794562817, + -0.08004482090473175, + 0.025710437446832657, + 0.030770741403102875, + -0.06108145788311958, + -0.0068748584017157555, + -0.006341353990137577, + -0.06271710991859436, + -0.011206786148250103, + 0.0005578634445555508, + -0.023614754900336266, + 0.027167191728949547, + 0.012459083460271358, + -0.0337609238922596, + 0.07161097973585129, + 0.0043031759560108185, + -0.03317311033606529, + 0.14864006638526917, + 0.03401649370789528, + 0.08806975185871124, + 0.0012435123790055513, + 0.07191766798496246, + -0.04843069612979889, + 0.07958479225635529, + -0.0899609699845314, + 0.008318834006786346, + -0.00821660552173853, + -0.005009190645068884, + 0.0033288116101175547, + 0.012101284228265285, + 0.028777288272976875, + 0.033403124660253525, + -0.008523290976881981, + 0.026758277788758278, + 0.03877011314034462, + 0.006050642114132643, + -0.019218934699892998, + -0.0014527611201629043, + 0.007168765179812908, + -0.03360757976770401, + -0.019819527864456177, + 0.016573775559663773, + 0.13248798251152039, + -0.06655067205429077, + -0.00619120616465807, + -0.05806571990251541, + -0.0114048533141613, + 0.06465944647789001, + -0.030872970819473267, + -0.042910363525152206, + 0.02495650388300419, + 0.035268791019916534, + 0.019346721470355988, + 0.02514818124473095, + 0.017110474407672882, + 0.008178270421922207, + 0.02555709518492222, + -0.007168765179812908, + -0.017468273639678955, + 0.019717298448085785, + -0.004785566125065088, + 0.003712167963385582, + -0.061848171055316925, + -0.011091778986155987, + -0.02829170413315296, + -0.023831991478800774, + -0.05249427258968353, + -0.009398621506989002, + 0.03682777285575867, + 0.0038718997966498137, + -0.034885432571172714, + 0.04538939893245697, + 0.007852417416870594, + -0.022349679842591286, + -0.013455810025334358, + 0.026911620050668716, + -0.029697343707084656, + 0.06455722451210022, + 0.050347477197647095, + 0.009187775664031506, + -0.03324978053569794, + 0.04025242477655411, + -0.06327936798334122, + -0.0046354178339242935, + -0.088683120906353, + -0.04234810546040535, + 0.02315472811460495, + 0.0012730627786368132, + -0.015385370701551437, + 0.06828855723142624, + -0.02587655931711197, + 0.10703311115503311, + -0.0028016965370625257, + 0.08674077689647675, + -0.07401334494352341, + 0.0496063195168972, + -0.0037792553193867207, + 0.03442540764808655, + 0.018030529841780663, + 0.033147551119327545, + 0.021276282146573067, + 0.0820382758975029, + 0.0317930243909359, + -0.034732092171907425, + 0.0469994954764843, + -0.06849301606416702, + 0.017749402672052383, + -0.08714969456195831, + -0.05185534432530403, + 0.011922384612262249, + 0.050986405462026596, + -0.006475528702139854, + 0.0939989909529686, + 0.07171320915222168, + 0.02673272043466568, + -0.0009567937231622636, + 0.04270590469241142, + -0.00618481682613492, + 0.06149037182331085, + -0.021966323256492615, + 0.0555611252784729, + 0.07401334494352341, + 0.022592471912503242, + -0.05453883856534958, + 0.07610902935266495, + -0.038718998432159424, + -0.004137054551392794, + -0.023678647354245186, + 0.04771509766578674, + -0.01996009051799774, + 0.008357170037925243, + -0.008344391360878944, + -0.02210688777267933, + 0.013928616419434547, + 0.04153027758002281, + -0.012062949128448963, + 0.003951765596866608, + 0.03468097746372223, + 0.011947941966354847, + 0.007532953750342131, + 0.049274079501628876, + 0.040150195360183716, + -0.0635860487818718, + 0.07155986875295639, + 0.09154551476240158, + 0.02300138585269451, + -0.09082991629838943, + -0.043063703924417496, + -0.07360443472862244, + 0.008983318693935871, + 0.06920861452817917, + 0.0396646112203598, + 0.060008060187101364, + 0.0568900927901268, + 0.06808409839868546, + 0.13044340908527374, + -0.07641571015119553, + 0.0648639053106308, + -0.029825130477547646, + -0.04045687988400459, + 0.010951215401291847, + -0.007558510638773441, + 0.1363726556301117, + -0.04091690853238106, + -0.021736308932304382, + -0.0188739150762558, + -0.07212211936712265, + -0.014018066227436066, + -0.037620045244693756, + 0.00707931537181139, + 0.016139306128025055, + 0.0020397757180035114, + -0.009647803381085396, + 0.06895304471254349, + 0.02476482465863228, + -0.04206697642803192, + 0.04170917719602585, + -0.06046808511018753, + -0.013443032279610634, + 0.07881808280944824, + 0.0019040035549551249, + -0.06471056491136551, + -0.057350121438503265, + 0.0004839874745812267, + 0.037517815828323364, + -0.005341432988643646, + -0.009302782826125622, + 0.010676476173102856, + -0.09231222420930862, + -0.03263641148805618, + 0.0035588254686444998, + -0.004932519514113665, + 0.01647154800593853, + 0.04078912362456322, + 0.070179782807827, + -0.0024343132972717285, + 0.04354928806424141, + -0.01567927747964859, + 0.060928113758563995, + 0.0542321540415287, + -0.045312728732824326, + 0.03733891621232033, + 0.026886064559221268, + -0.0030061532743275166, + 0.10539745539426804, + 0.013673045672476292, + 0.03557547554373741, + -0.008663855493068695, + -0.04158139228820801, + 0.025927672162652016, + 0.010510355234146118, + 0.013545259833335876, + -0.0409935787320137, + 0.024752046912908554, + -0.02698829211294651, + -0.021940765902400017, + -0.013583595864474773, + -0.02150629460811615, + -0.02670716494321823, + -0.010235616005957127, + 0.010095052421092987, + 0.048609595745801926, + -0.002825656207278371, + 0.02898174524307251, + -0.02030511200428009, + -0.03920458257198334, + 0.03708334267139435, + 0.0284450463950634, + 0.05673674866557121, + 0.029825130477547646, + -0.05939468741416931, + -0.003603550372645259, + -0.04449490085244179, + 0.025378195568919182, + -0.05494775250554085, + 0.023359185084700584, + 0.07181543856859207, + 0.012062949128448963, + -0.07871585339307785, + 0.028266146779060364, + 0.04191363602876663, + 0.059752486646175385, + -0.006555394735187292, + -0.08122044801712036, + -0.006481918040663004, + 0.0023736152797937393, + -0.004098718985915184, + 0.05760569125413895, + 0.0317930243909359 + ] + }, + { + "id": "f70dc6b6-37ca-4d40-8d09-e19eeb53ae09", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "james49", + "reviewDate": "2022-08-21T10:44:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3c0bdbe9-2066-4d0b-80fb-b445bd6aa42c", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "imartin", + "reviewDate": "2021-11-16T11:43:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8db309fe-2ab8-46d8-91bb-4b9d02aa1a95", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "kayla72", + "reviewDate": "2021-04-18T17:00:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1136182d-0920-4ac7-93f2-2f50b7beb2f7", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "peter54", + "reviewDate": "2022-05-25T01:59:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c493f099-7cc0-4262-86ac-9e3fa54a50fd", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "johnarnold", + "reviewDate": "2021-04-04T15:33:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d2c7f0c8-e15e-445c-bd5b-105443076702", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthony44", + "reviewDate": "2022-07-01T07:36:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0d7ece47-8f35-42d6-8632-2d3b2d19a6ca", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "sloanbrandi", + "reviewDate": "2022-03-13T21:33:32", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e242598c-2af2-4182-86a1-28a391cbedfe", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "tkirby", + "reviewDate": "2022-08-09T23:11:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e63f26fd-bbc7-4f09-b4ac-9a552034342f", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "christopherpadilla", + "reviewDate": "2022-05-20T05:36:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "627b3b67-fd6c-424b-8404-9d714f48e373", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "cmckee", + "reviewDate": "2022-01-16T08:12:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "548aa472-0933-4fe3-86c4-31dfb6e0c440", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "marylee", + "reviewDate": "2022-10-05T03:12:45", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6ae48582-16a5-4eb8-a049-3c262cb6d63b", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "billymiller", + "reviewDate": "2022-04-23T05:43:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b020f795-11c8-465d-8a31-4645e5b3ba25", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "jsparks", + "reviewDate": "2021-04-26T17:44:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d52eb8f9-8b50-47bf-8f61-d09d1a6144c7", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "josephmalone", + "reviewDate": "2022-11-19T05:52:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e87a06f6-66f0-4e32-9176-487e0394d160", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "michelle60", + "reviewDate": "2022-01-22T12:34:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "dbc40219-e1e9-42c5-badb-c85b7728f733", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "wallsbenjamin", + "reviewDate": "2021-04-30T16:51:37", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8c5311a3-4200-4e95-803f-f54dcd02b25c", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "whitechristine", + "reviewDate": "2021-01-16T10:22:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "46bc01e3-3d8e-4335-8edd-a895f1686467", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "rmcconnell", + "reviewDate": "2021-10-03T17:16:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e7ca4a40-7eb1-4594-bddb-ea4505e53af2", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "tara96", + "reviewDate": "2021-02-07T20:09:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4d690a38-0a7c-459e-905f-a400dedb652c", + "productId": "6e69c608-aa40-4293-92da-11e9a988afa1", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonathangarcia", + "reviewDate": "2022-07-25T09:30:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer + (Silver)", + "description": "This Premium Computer + (Silver) is available separately to buy separately from the computer that you need to buy in the purchase address below (the \"Buyer's Premium Computer\" and \"Purchase Delivery\" numbers can differ based on type of connection).\n\nPlease note that the Purchase Delivery numbers are only available to purchase in the Online Shopping Cart.", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-09-19T04:32:57", + "price": 438.58, + "stock": 88, + "priceHistory": [ + { + "priceDate": "2021-08-03T21:12:29", + "newPrice": 448.37 + }, + { + "priceDate": "2022-01-15T21:12:29", + "newPrice": 447.27 + }, + { + "priceDate": "2022-06-29T21:12:29", + "newPrice": 441.18 + }, + { + "priceDate": "2022-12-11T21:12:29", + "newPrice": 424.64 + }, + { + "priceDate": "2024-03-10T21:12:29", + "newPrice": 438.58 + } + ], + "descriptionVector": [ + 0.009627943858504295, + 0.029248056933283806, + -0.02902814745903015, + 0.04301993548870087, + -0.004545956384390593, + -0.04623612016439438, + -0.02035543881356716, + 0.06679772585630417, + 0.02032794989645481, + 0.09791501611471176, + 0.0735049843788147, + -0.08048713207244873, + 0.019736941903829575, + -0.1051170751452446, + 0.0022283089347183704, + -0.002463681623339653, + -0.019393330439925194, + 0.023681581020355225, + -0.03458087891340256, + 0.043404776602983475, + 0.007105848751962185, + 0.0019396767020225525, + -0.04159051924943924, + 0.00393776735290885, + -0.00010775385453598574, + 0.008789535611867905, + -0.04692333936691284, + -0.007641879841685295, + 0.047638047486543655, + -0.002858832711353898, + 0.03642262890934944, + 0.02204599790275097, + 0.006875630002468824, + -0.05998050794005394, + -0.004587189294397831, + -0.004947979468852282, + -0.02758498676121235, + -0.041260652244091034, + 0.05368557944893837, + -0.019035976380109787, + -0.011256653815507889, + -0.0038243760354816914, + 0.022403351962566376, + -0.0022506434470415115, + -0.014431606978178024, + -0.014053636230528355, + 0.013902448117733002, + 0.03097984939813614, + -0.011882022954523563, + -0.03570792078971863, + -0.051816340535879135, + 0.029358012601733208, + -0.04464177042245865, + 0.08543511480093002, + 0.05115661025047302, + -0.021427500993013382, + 0.02999025397002697, + 0.20341694355010986, + -0.03210689127445221, + -0.011263526044785976, + -0.021015169098973274, + 0.050881724804639816, + -0.02108389139175415, + 0.058606069535017014, + -0.04541145637631416, + 0.07180067896842957, + -0.09582587331533432, + 0.027103932574391365, + -0.015132570639252663, + 0.037714600563049316, + 0.0024121401365846395, + -0.04282751306891441, + 0.06976651400327682, + 0.0553349070250988, + 0.0009466446936130524, + 0.1317262202501297, + 0.06745745241641998, + 0.02218344248831272, + 0.07026131451129913, + -0.054427776485681534, + 2.3354721179202897e-06, + 0.004542520269751549, + -0.031254738569259644, + 0.0005115489475429058, + 0.03054003044962883, + 0.021922297775745392, + -0.011930128559470177, + -0.10385259240865707, + 0.028533348813652992, + 0.0892285630106926, + 0.043349798768758774, + 0.015503669157624245, + 0.09709035605192184, + -0.05893593654036522, + 0.019022231921553612, + 0.01109172124415636, + -0.024698665365576744, + -0.004164549522101879, + -0.0030357916839420795, + -0.04326733201742172, + 0.04629109799861908, + -0.10753609240055084, + -0.03460836783051491, + -0.005666123703122139, + -0.009669177234172821, + 0.06888686865568161, + 0.021977275609970093, + -0.08571000397205353, + 0.008177910931408405, + -0.0843355655670166, + -0.07465951144695282, + -0.015696091577410698, + 0.03471832349896431, + 0.006679772399365902, + 0.06119001656770706, + 0.04153554141521454, + -0.020809004083275795, + -0.01891227811574936, + 0.0025341215077787638, + -0.07301019132137299, + 0.05618705600500107, + -0.04980966076254845, + 0.04120567440986633, + -0.027282610535621643, + 0.021441245451569557, + -0.009820365346968174, + -0.02140001207590103, + 0.0013546812115237117, + 0.03584536537528038, + -0.08735933154821396, + -0.03331639617681503, + 0.0223346296697855, + -0.0631692036986351, + 0.008480287156999111, + -0.058661047369241714, + 0.039198994636535645, + 0.04249764606356621, + 0.04170047119259834, + -0.061299968510866165, + -0.04323984310030937, + -0.04277253523468971, + -0.0022042561322450638, + 0.018142592161893845, + 0.006930607371032238, + -0.06641288101673126, + 0.04068338871002197, + -0.0039034062065184116, + 0.08279619365930557, + -0.07092104107141495, + 0.06987646967172623, + -0.01065877266228199, + -0.08197152614593506, + -0.012397438287734985, + -0.012878491543233395, + 0.03251922130584717, + 0.03837433084845543, + 0.013222101144492626, + -0.05407042056322098, + -0.013758132234215736, + 0.08098193258047104, + -0.013551966287195683, + 0.02703521028161049, + -0.05723163112998009, + -0.02221093140542507, + 0.033426351845264435, + 0.018871044740080833, + 0.06905180215835571, + 0.0005046767182648182, + -0.04893001914024353, + 0.0059616281650960445, + -0.05178885534405708, + -0.04626360908150673, + 0.02320052683353424, + -0.04832526668906212, + 0.10902048647403717, + 0.04774800315499306, + 0.02131754532456398, + -0.002278132364153862, + 0.005353439133614302, + -0.05536239594221115, + -0.01601221226155758, + 0.029577922075986862, + -0.07988238334655762, + -0.015503669157624245, + 0.003642262890934944, + -0.013737515546381474, + 0.02677406743168831, + -0.030100209638476372, + 0.05646194517612457, + -0.011077976785600185, + 0.0075319246388971806, + -0.01650700904428959, + 0.08807403594255447, + 0.02494606375694275, + 0.013421394862234592, + 0.016919340938329697, + 0.04409199580550194, + 0.04381711035966873, + 0.003085615113377571, + -0.051898807287216187, + 0.06663279235363007, + 0.011854534968733788, + 0.038731686770915985, + -0.05596714839339256, + -0.02842339500784874, + 0.010322035290300846, + -0.02688402310013771, + -0.012246249243617058, + -0.058716025203466415, + 0.020575348287820816, + 0.0027042082510888577, + 0.0341135710477829, + 0.024410033598542213, + 0.0010248159524053335, + 0.06558822095394135, + 0.013277078978717327, + -0.016919340938329697, + 0.0317220464348793, + -0.032409265637397766, + -0.05932077765464783, + 0.056049615144729614, + -0.01603970117866993, + -0.022458329796791077, + 0.019819406792521477, + -0.04417446255683899, + -0.06514839828014374, + 0.04057343304157257, + 0.026169314980506897, + 0.01682313159108162, + 0.06459861993789673, + -0.10748111456632614, + -0.038044463843107224, + -0.029742855578660965, + -0.05390549078583717, + -0.0500020831823349, + 0.05310831591486931, + -0.010734367184340954, + -0.006982149090617895, + -0.043899573385715485, + 0.04307491332292557, + -0.03697240352630615, + 0.012699814513325691, + -0.04827028885483742, + -0.025880683213472366, + -0.05844113603234291, + -0.04354222118854523, + 0.07850794494152069, + 0.04414697363972664, + -0.03952885791659355, + -0.005703920964151621, + -0.04068338871002197, + 0.0184724573045969, + -0.07141584157943726, + 0.0011768632102757692, + 0.0019791917875409126, + 0.053383201360702515, + 0.08004731684923172, + -0.06701763719320297, + 0.021276311948895454, + -0.029138103127479553, + -0.03216186910867691, + -0.009566093795001507, + -0.042964957654476166, + 0.018541179597377777, + -0.033948637545108795, + 0.0684470534324646, + 0.010102124884724617, + -0.10682138055562973, + -0.031886979937553406, + 0.03675249218940735, + -0.0041404967196285725, + -0.02612808160483837, + 0.023997701704502106, + -0.09544102847576141, + -0.018609901890158653, + -0.009229356423020363, + 0.03592782840132713, + 0.0633891150355339, + 0.012198144569993019, + 0.04142558574676514, + -0.024025190621614456, + 0.021647410467267036, + -0.045603878796100616, + -0.03254671022295952, + -0.034415945410728455, + -0.05401544272899628, + -0.07768327742815018, + 0.03276662155985832, + -0.015063849277794361, + -0.01598472334444523, + -0.0030976415146142244, + -0.04697831720113754, + 0.04018859192728996, + 0.034415945410728455, + 0.042882490903139114, + 0.021386267617344856, + 0.018898533657193184, + 0.047115761786699295, + 0.03298652917146683, + -0.010844321921467781, + -0.021922297775745392, + -0.02299436181783676, + -0.09516613930463791, + 0.02256828546524048, + -0.014761473052203655, + 0.07817807793617249, + -0.01771651580929756, + -0.02178485505282879, + 0.046565987169742584, + 0.034965723752975464, + 0.07174570113420486, + -0.004693708382546902, + -0.053960468620061874, + -0.0396113246679306, + 0.027420053258538246, + -0.02792859636247158, + 0.04301993548870087, + 0.02299436181783676, + -0.04040849953889847, + -0.0474456287920475, + -0.09373672306537628, + -0.054537732154130936, + -0.0945613905787468, + 0.003875917289406061, + 0.057011719793081284, + -0.0019190601306036115, + -0.06982149183750153, + 0.039226483553647995, + -0.0037212930619716644, + -0.026141826063394547, + -0.07207556813955307, + -0.016809387132525444, + 0.06679772585630417, + -0.02586693875491619, + -0.00427106861025095, + -0.05327324569225311, + -0.023131804540753365, + 0.051843829452991486, + -0.005429033190011978, + 0.01342826709151268, + 0.09533107280731201, + 0.02946796827018261, + -0.03210689127445221, + 0.003298653056845069, + -0.03524060919880867, + -0.027777407318353653, + -0.028560837730765343, + -0.026169314980506897, + -0.010809960775077343, + 0.010225825011730194, + 0.001762717729434371, + -0.05904589220881462, + 0.03276662155985832, + 0.05173387750983238, + 0.09291206300258636, + -0.05055185779929161, + -0.06410382688045502, + 0.015118827112019062, + -0.04936984181404114, + -0.08516022562980652, + -0.033453840762376785, + -0.0021716132760047913, + 0.03840181976556778, + 0.07092104107141495, + -0.06272938847541809, + 0.03001774288713932, + -0.023557880893349648, + 0.03152962401509285, + 0.00029335677390918136, + 0.0019104699604213238, + -0.0017798981862142682, + 0.040765855461359024, + -0.03147464990615845, + 0.03111729398369789, + -0.0475006029009819, + 0.08043215423822403, + 0.010679389350116253, + 0.023324226960539818, + 0.06789727509021759, + 0.028615815564990044, + -0.01081683300435543, + 0.05888095870614052, + 0.011964489705860615, + -0.009593582712113857, + 0.07526426762342453, + -0.06492848694324493, + 0.009476755745708942, + 0.025248439982533455, + -0.048792578279972076, + 0.07927762717008591, + -0.0005076833185739815, + 0.05253104865550995, + -0.005614582449197769, + -0.011641496792435646, + 0.0008379781502299011, + -0.010445734485983849, + 0.031859491020441055, + 0.05407042056322098, + -0.011538413353264332, + 0.03903406113386154, + 0.04510908201336861, + -4.268276825314388e-06, + -0.020135527476668358, + -0.02790110744535923, + -0.018596157431602478, + -0.09247224032878876, + 0.0029739418532699347, + 0.028808236122131348, + -0.02050662599503994, + 0.017235461622476578, + -0.030649984255433083, + -0.018609901890158653, + 0.058221228420734406, + 0.01893976703286171, + 0.03793451189994812, + -0.010583179071545601, + 0.08279619365930557, + 0.006848141085356474, + 0.06784229725599289, + -0.04695082828402519, + 0.06613799184560776, + -0.008823896758258343, + -0.022664494812488556, + 0.017469117417931557, + 0.04958975315093994, + 0.018252547830343246, + -0.04587876796722412, + 0.08158668875694275, + 0.03004523180425167, + -0.010562562383711338, + -0.07845296710729599, + -0.017441628500819206, + 0.06140992417931557, + -0.02016301639378071, + 0.037632133811712265, + 0.07531924545764923, + 0.029632899910211563, + -0.013311440125107765, + -0.01705678552389145, + 0.04142558574676514, + -0.023035593330860138, + -0.09071295708417892, + -0.05060683563351631, + 0.018857300281524658, + 0.00810918863862753, + -0.02218344248831272, + -0.06426876038312912, + 0.017592815682291985, + 0.0032075964845716953, + 0.02996276505291462, + -0.10429241508245468, + 0.0018829811597242951, + -0.01162775233387947, + -2.457614755257964e-05, + 0.00440164003521204, + -0.004415384493768215, + -0.018953511491417885, + 0.015352481044828892, + -0.03466334566473961, + 0.0527784489095211, + 0.013263334520161152, + -0.03007272072136402, + 0.08840390294790268, + -0.005882597994059324, + -0.01630084402859211, + 0.0017163304146379232, + -0.030265141278505325, + -0.06173979118466377, + 0.04112320765852928, + -0.010809960775077343, + -0.05571974813938141, + -0.03493823483586311, + 0.05530741810798645, + 0.05154145509004593, + 0.023104315623641014, + -0.062399521470069885, + 0.022059742361307144, + 0.017771493643522263, + -0.06575315445661545, + -0.0015797455562278628, + 0.02204599790275097, + 0.019709452986717224, + -0.018293781206011772, + 0.031309716403484344, + 0.003046100027859211, + -0.008878874592483044, + 0.05203625187277794, + 0.038731686770915985, + 0.035515498369932175, + 0.07202059030532837, + 0.001059176865965128, + 0.03414105996489525, + 0.004374151583760977, + 0.05629701167345047, + -0.051871318370103836, + 0.007772451266646385, + 0.09010820835828781, + -0.048682622611522675, + 0.028203483670949936, + 0.060365352779626846, + -0.01200572308152914, + -0.0034704578574746847, + 0.015599880367517471, + -0.05170638859272003, + 0.025743238627910614, + 0.011888895183801651, + -0.033371374011039734, + -0.0015428075566887856, + 0.015407458879053593, + 0.016548242419958115, + 0.049644727259874344, + -0.015654858201742172 + ] + }, + { + "id": "3c88d240-cbe9-445b-97b1-4175ffe6be5b", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "allenlisa", + "reviewDate": "2021-08-03T21:12:29", + "stars": 2, + "verifiedUser": false + }, + { + "id": "592f1e69-46b3-401c-8ded-7dc865402ad6", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "samanthacarpenter", + "reviewDate": "2021-09-08T07:20:40", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0968e4f1-b90e-40b8-a53c-fba7e90d6c26", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "michellehays", + "reviewDate": "2022-04-24T10:03:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8d2663bc-6ab4-4f0c-8341-c43f701ae8b2", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "zmclean", + "reviewDate": "2021-08-05T11:34:20", + "stars": 4, + "verifiedUser": false + }, + { + "id": "11909313-05c8-4e4c-8579-11932bc6fff5", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniewhite", + "reviewDate": "2022-09-22T18:58:39", + "stars": 4, + "verifiedUser": true + }, + { + "id": "843c95cd-a002-4f81-8047-0def52bc1188", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "ddavenport", + "reviewDate": "2022-03-01T07:51:25", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9fe63831-1540-4639-bc4e-147a61e3c719", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "dadams", + "reviewDate": "2021-12-14T01:45:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3f0ea233-6b39-4924-b24d-5d4572af0d84", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeanne79", + "reviewDate": "2022-02-24T12:52:11", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4298371e-ccf7-4d6c-8d01-fd44a78907cb", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "schwartzmichael", + "reviewDate": "2022-12-12T02:33:23", + "stars": 5, + "verifiedUser": false + }, + { + "id": "141d230a-e684-4662-85bc-3ad4d1f96929", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "nicoleholland", + "reviewDate": "2022-11-18T19:20:33", + "stars": 5, + "verifiedUser": false + }, + { + "id": "e6cd92fa-77a8-49be-ad4c-0dfc5e22ee71", + "productId": "3d475b8b-f486-4eee-b678-d733d82a27a6", + "category": "Electronics", + "docType": "customerRating", + "userName": "molinamark", + "reviewDate": "2021-11-17T07:23:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Super (Steel)", + "description": "This Basic Speaker Super (Steel) is NOT included in your package, they will be shipped out automatically as soon as you order. We are ONLY available to help with final shipping costs, as those are a small part. If purchasing a separate package with a Super, you will also receive full replacement item(", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2018-05-20T13:50:52", + "price": 709.39, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-03-26T01:04:06", + "newPrice": 764.8 + }, + { + "priceDate": "2021-10-02T01:04:06", + "newPrice": 682.92 + }, + { + "priceDate": "2022-04-10T01:04:06", + "newPrice": 763.41 + }, + { + "priceDate": "2022-10-17T01:04:06", + "newPrice": 692.95 + }, + { + "priceDate": "2022-12-29T01:04:06", + "newPrice": 709.39 + } + ], + "descriptionVector": [ + 0.04157888889312744, + -0.02986803837120533, + -0.03424617648124695, + -0.006990248803049326, + -0.0007881656638346612, + -0.09545953571796417, + -0.0217832550406456, + 0.04246525838971138, + -0.04037019982933998, + -0.008507824502885342, + 0.006543705705553293, + -0.019822493195533752, + -0.018627233803272247, + -0.06661216914653778, + 0.061669979244470596, + -0.013886488974094391, + -0.037308186292648315, + 0.028014715760946274, + -0.02590622566640377, + -0.06763283908367157, + 0.051087237894535065, + 0.012241329066455364, + -0.01438339427113533, + -0.029492001980543137, + -0.053504616022109985, + -0.028390752151608467, + -0.01713651791214943, + 0.02887422777712345, + -0.05253766477108002, + -0.05140955373644829, + 0.021554946899414062, + 0.012248043902218342, + -0.01933901757001877, + 0.006073660217225552, + -0.026752308011054993, + 0.07300478965044022, + -0.033816419541835785, + -0.03236599266529083, + 0.024710966274142265, + 0.0031006219796836376, + -0.004942193161696196, + -0.034944530576467514, + 0.05186617001891136, + -0.006654502358287573, + -0.007816186174750328, + 0.0637650340795517, + 0.01325528509914875, + 0.025677917525172234, + -0.031748220324516296, + -0.05269882082939148, + -0.05261824280023575, + 0.07021137326955795, + -0.1015835627913475, + 0.05471330136060715, + -0.0006135773146525025, + 0.0023267255164682865, + 0.004512437153607607, + 0.09782319515943527, + 0.018304917961359024, + 0.029465140774846077, + -0.01353059709072113, + -0.07214527577161789, + 0.007238701451569796, + 0.09400910884141922, + -0.07241387665271759, + 0.03241971507668495, + -0.0640336349606514, + 0.07456265389919281, + -0.02763867937028408, + 0.031694501638412476, + 0.07719491422176361, + 0.023260539397597313, + -0.024267781525850296, + 0.07338082790374756, + 0.04096111282706261, + 0.004552727099508047, + 0.04617190361022949, + 0.017834872007369995, + 0.06193857640028, + -0.04590330645442009, + 0.01674705184996128, + 0.04375452548265457, + 0.027208922430872917, + -0.05079178139567375, + 0.02530188113451004, + 0.0577484555542469, + -0.025892795994877815, + -0.07590564340353012, + -0.024187201634049416, + 0.030458951368927956, + 7.124128023860976e-05, + 0.02679259702563286, + 0.031237885355949402, + 0.04327104985713959, + 0.07628168165683746, + 0.09309588372707367, + -0.06097162514925003, + 0.002867277944460511, + -0.06790143996477127, + -0.03763050585985184, + 0.029518861323595047, + -0.05057690292596817, + -0.0784841775894165, + -0.0007063273806124926, + -0.016881350427865982, + 0.00897787045687437, + -3.003360325237736e-05, + -0.028954805806279182, + 0.0033255722373723984, + -0.0753147304058075, + 0.02338140830397606, + -0.02359628677368164, + -0.01441025361418724, + 0.05844680964946747, + 0.08826112747192383, + 0.010320857167243958, + -0.04842812195420265, + -0.005002627614885569, + -0.021058041602373123, + 0.02084316313266754, + 0.05256452411413193, + 0.041954923421144485, + 0.020399976521730423, + -0.04012846201658249, + 0.051060378551483154, + -0.00549281807616353, + 0.013926777988672256, + 0.011569835245609283, + 0.0001121604218496941, + -0.049717389047145844, + -0.0380602590739727, + -0.04799836501479149, + -0.07655027508735657, + 0.0129262525588274, + -0.08170735090970993, + 0.022374168038368225, + 0.07595936208963394, + 0.0027531241066753864, + -0.05175873264670372, + 0.029518861323595047, + -0.030082914978265762, + 0.041981782764196396, + 0.050066567957401276, + 0.07563704252243042, + -0.03190938010811806, + 0.037093307822942734, + -0.009139028377830982, + 0.0388391949236393, + -0.02052084542810917, + -0.037361908704042435, + -0.05726497992873192, + -0.09648020565509796, + -0.007782611530274153, + -0.045419830828905106, + -0.011966017074882984, + 0.09390167146921158, + -0.08444704115390778, + 0.02708805352449417, + 0.014222235418856144, + 0.07101716846227646, + 0.03873175382614136, + -0.021595235913991928, + -0.04034334048628807, + -0.04233096167445183, + -0.03424617648124695, + 0.05371949076652527, + 0.06833119690418243, + 0.040907394140958786, + -0.05471330136060715, + 0.0010357790160924196, + 0.036394957453012466, + -0.032742030918598175, + 0.03349410369992256, + -0.02582564577460289, + -0.006224746350198984, + -0.01936587691307068, + 0.03784538432955742, + 0.039618127048015594, + 0.010824477300047874, + -0.01384619902819395, + -0.040934253484010696, + 0.020480556413531303, + 0.025463039055466652, + -0.024549808353185654, + -0.0009904531762003899, + 0.00911888387054205, + -0.003402794012799859, + -0.04106855019927025, + -0.05705010145902634, + 0.012194325216114521, + 0.045419830828905106, + -0.04262641817331314, + 0.025395890697836876, + 0.047595471143722534, + -0.026832886040210724, + -0.044211141765117645, + 0.04157888889312744, + 0.06962046027183533, + -0.025033283978700638, + -0.0719304010272026, + 0.010199988260865211, + 0.08734789490699768, + 0.05672778561711311, + -0.0540686696767807, + -0.03566974401473999, + -0.007480439264327288, + -0.05063062161207199, + 0.05183931067585945, + -0.004465432837605476, + -0.01024699304252863, + -0.033762700855731964, + -0.00893758051097393, + -0.030512671917676926, + -0.009360621683299541, + 0.030834989622235298, + 0.013389583677053452, + -0.03977928310632706, + -0.013691755943000317, + -0.011354957707226276, + -0.045258671045303345, + -0.00014080382243264467, + -0.026577718555927277, + 0.04560784995555878, + 0.008225797675549984, + -0.0957818552851677, + 0.0043579936027526855, + -0.010233563371002674, + -0.0666658878326416, + 0.013886488974094391, + 0.05267196148633957, + 0.02070886455476284, + -0.028068434447050095, + 0.013644751161336899, + -0.048643000423908234, + -0.0716618001461029, + -0.0085951192304492, + -0.006876095198094845, + -0.009528495371341705, + -0.07187668234109879, + -0.020910313352942467, + -0.04469461739063263, + 0.007070828229188919, + -0.07225272059440613, + -0.03424617648124695, + -0.07649655640125275, + 0.018143758177757263, + 0.14171202480793, + 0.007238701451569796, + -0.022266728803515434, + -0.03652925416827202, + -0.10469929128885269, + 0.040746234357357025, + -0.0013144488912075758, + 0.01616956666111946, + -0.06107906252145767, + 0.07236015796661377, + 0.06731052696704865, + 0.01010597962886095, + 0.015323485247790813, + 0.0019339016871526837, + -0.017593134194612503, + -0.05044260248541832, + -0.01592782884836197, + 0.09760832041501999, + -0.05208104848861694, + -0.03198995813727379, + 0.011113219894468784, + -0.0336015410721302, + -0.01878839172422886, + 0.05253766477108002, + 0.040531355887651443, + 0.02868620865046978, + -0.013517167419195175, + 0.03002919629216194, + -0.07617423683404922, + -0.047702908515930176, + -0.02023881860077381, + 0.041820626705884933, + -0.027880417183041573, + -0.019513605162501335, + -0.01884211227297783, + -0.0485624223947525, + 0.039725564420223236, + -0.047568611800670624, + 0.01215403527021408, + -0.07150064408779144, + -0.058930281549692154, + 0.05041574314236641, + -0.02684631571173668, + -0.06269064545631409, + -0.052215345203876495, + -0.04324419051408768, + 0.005952791310846806, + 0.07998832315206528, + 0.13999299705028534, + 0.023394839838147163, + 0.025892795994877815, + -0.030109776183962822, + 0.010864767245948315, + 0.042008642107248306, + 0.026282262057065964, + 0.019701624289155006, + -0.05586827173829079, + -0.022709915414452553, + 0.01497430820018053, + 0.03575032204389572, + 0.03233913332223892, + -0.01787516102194786, + -0.022401029244065285, + -0.045258671045303345, + 0.0871330201625824, + 0.0005011021276004612, + -0.014155086129903793, + -0.01547121349722147, + 0.040746234357357025, + 0.040880534797906876, + 0.00445536058396101, + 0.028068434447050095, + -0.004945550579577684, + -0.00720512680709362, + -0.04273385554552078, + 0.0020262321922928095, + -0.025033283978700638, + -0.02348884753882885, + -0.02246817760169506, + 0.0054525285959243774, + -0.00641612196341157, + 0.009400911629199982, + 0.035025108605623245, + 0.04241153970360756, + 0.027853555977344513, + 0.0024979563895612955, + 0.02716863341629505, + -0.07450893521308899, + -0.028229594230651855, + -0.008527969010174274, + -0.010206704027950764, + -0.00411961367353797, + -0.04947565123438835, + -0.04912647604942322, + 0.07155436277389526, + -0.06252948939800262, + 0.00010124865366378799, + -0.0543372668325901, + 0.029277123510837555, + -0.020614854991436005, + 0.07090973109006882, + -0.01771400310099125, + 0.0230993814766407, + -0.025449609383940697, + 0.001634247717447579, + -0.007433434948325157, + 0.04047763720154762, + -0.021460937336087227, + 0.10464557260274887, + -0.07783954590559006, + -0.03231227397918701, + 0.006748511455953121, + 0.036368098109960556, + -0.06306668370962143, + -0.037388768047094345, + 0.0047239577397704124, + 0.017888590693473816, + 0.023811165243387222, + -0.0016426413785666227, + 0.08971155434846878, + -0.018049748614430428, + -0.007231986615806818, + -0.02871306799352169, + 0.039752423763275146, + -0.043056175112724304, + 0.01367161050438881, + 0.053370315581560135, + -0.010112694464623928, + 0.03822141885757446, + -0.003130839206278324, + 0.07660399377346039, + -0.02745066024363041, + 0.002009444870054722, + 0.013967067934572697, + 0.1076001450419426, + 0.04388882592320442, + 0.0026691872626543045, + -0.007252131588757038, + 0.016867920756340027, + 0.034944530576467514, + -0.046574801206588745, + 0.01553836278617382, + -0.08256685733795166, + 0.031506482511758804, + 0.01064317487180233, + 0.018130328506231308, + 0.009340477176010609, + 0.06516174226999283, + -0.006248248275369406, + 0.003226527012884617, + -0.0005502051208168268, + 0.0467090979218483, + -0.05613686889410019, + -0.019674764946103096, + -0.007366285193711519, + 0.04799836501479149, + 0.03129160404205322, + -0.060165829956531525, + -0.040799953043460846, + -0.1293565332889557, + -0.01815718784928322, + 0.0031090155243873596, + -0.021554946899414062, + -0.0009980074828490615, + -0.030217215418815613, + -0.011952587403357029, + 0.04117599129676819, + -0.006050157826393843, + -0.03652925416827202, + 0.03564288467168808, + 0.08170735090970993, + -0.016921639442443848, + 0.06226089224219322, + -0.02868620865046978, + 0.006644429638981819, + -0.03776480257511139, + -0.007131262682378292, + 0.03800654038786888, + 0.06199229508638382, + 0.048857878893613815, + 0.010730468668043613, + -0.0004301756271161139, + -0.017888590693473816, + -0.07311222702264786, + -0.07778582721948624, + -0.10228191316127777, + -0.0032332418486475945, + -0.006352330092340708, + 0.03459535166621208, + 0.005674121435731649, + 0.009246467612683773, + -0.05871540680527687, + -0.07762466371059418, + 0.011106505058705807, + -0.006570565514266491, + 0.04136401042342186, + -0.0803106427192688, + -0.05017400532960892, + -0.06999649852514267, + -0.08224454522132874, + -0.04606446623802185, + -0.025449609383940697, + 0.04730001464486122, + 0.026658298447728157, + -0.10093892365694046, + 0.04337849095463753, + -0.06124022230505943, + -0.026523999869823456, + -0.048831019550561905, + -0.04582272842526436, + 0.018962981179356575, + -0.031694501638412476, + 0.02346198819577694, + -0.0053081572987139225, + -0.018828682601451874, + 0.019876211881637573, + 0.0989513024687767, + 0.015323485247790813, + -0.015498073771595955, + 0.01858694478869438, + 0.0023300829343497753, + -0.02134006842970848, + 0.022683056071400642, + 0.015363775193691254, + 0.019876211881637573, + -0.04684339836239815, + 0.03220483660697937, + 0.022481607273221016, + -0.003981957212090492, + -0.04362022876739502, + -0.05393436923623085, + -0.07606679946184158, + 0.016263576224446297, + 0.04396940395236015, + -0.04257269948720932, + 0.06559149920940399, + -0.05377321317791939, + 0.03131846338510513, + -0.017472265288233757, + -0.004697097931057215, + -0.039483826607465744, + 0.09465374797582626, + 0.03088870830833912, + 0.014302815310657024, + 0.022615905851125717, + 0.08681070059537888, + -0.015377204865217209, + 0.0346490740776062, + -0.03188251703977585, + -0.05597571283578873, + 0.09384795278310776, + -0.11044728010892868, + -0.008715987205505371, + 0.05500876158475876, + -0.018694384023547173, + -0.04504379630088806, + -0.03091556765139103, + -0.07730235159397125, + -0.028068434447050095, + -0.001287589082494378, + -0.06661216914653778, + -0.008877146057784557, + 0.027799837291240692, + 0.08788508921861649, + 0.0022192865144461393, + -0.004764247685670853 + ] + }, + { + "id": "75dcb33f-693d-47b8-81f6-7a95e9cc52c5", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "customerRating", + "userName": "rivasjessica", + "reviewDate": "2022-10-19T06:59:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "86a78d09-2f36-4cbb-ad4b-6073294834d3", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "customerRating", + "userName": "ygonzalez", + "reviewDate": "2022-08-28T03:01:15", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4d8fda79-7d8d-4d3d-9998-ebfadba236e0", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "customerRating", + "userName": "brittany66", + "reviewDate": "2022-09-07T11:24:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ea991251-f7b9-46bc-ad76-7e19fef730d2", + "productId": "0e18dd96-601f-45b0-9f31-6d290e69072b", + "category": "Media", + "docType": "customerRating", + "userName": "tristan34", + "reviewDate": "2021-03-26T01:04:06", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "product", + "name": "Basic TV + (Red)", + "description": "This Basic TV + (Red) is an antenna that can be used in a variety of forms including home theater/multimedia, digital, mobile and online. It can serve as a low power, long range, 4K antenna. It is ideal when looking into a TV for sports,", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-12-02T14:26:50", + "price": 573.75, + "stock": 82, + "priceHistory": [ + { + "priceDate": "2021-01-17T10:12:09", + "newPrice": 557.25 + }, + { + "priceDate": "2021-12-24T10:12:09", + "newPrice": 587.59 + }, + { + "priceDate": "2022-11-30T10:12:09", + "newPrice": 580.85 + }, + { + "priceDate": "2023-06-23T10:12:09", + "newPrice": 573.75 + } + ], + "descriptionVector": [ + -0.014399874955415726, + 0.023255856707692146, + -0.05085660517215729, + 0.08528334647417068, + -0.02587941288948059, + 0.022484222427010536, + -0.06044860929250717, + -0.00795376393944025, + 0.057409558445215225, + 0.054560448974370956, + -0.011105591431260109, + -0.10845610499382019, + 0.10522711277008057, + -0.04449359327554703, + 0.04667791351675987, + 0.004790065344423056, + -0.009318962693214417, + 0.022519836202263832, + 0.03537644445896149, + 0.011087784543633461, + 0.05175882577896118, + -0.057836923748254776, + -0.03889034688472748, + 0.020157450810074806, + -0.046915337443351746, + 0.0378694161772728, + -0.06548203527927399, + 0.009188378229737282, + -0.047698844224214554, + -0.013616370037198067, + 0.05033427104353905, + 0.00795376393944025, + -0.009265542030334473, + -0.03886660188436508, + -0.08680287003517151, + 0.004487347789108753, + 0.021950015798211098, + -0.013390814885497093, + -0.004089659545570612, + 0.014732270501554012, + 0.010684161446988583, + 0.006582630332559347, + 0.04169197008013725, + 0.008790690451860428, + 0.04254670441150665, + 0.039697594940662384, + 0.036254920065402985, + 0.010120274499058723, + 0.008410808630287647, + -0.08708778023719788, + -0.024478599429130554, + -0.06899593770503998, + 0.009663229808211327, + -0.0006681310478597879, + -0.024015620350837708, + 0.0017985004233196378, + 0.04371009021997452, + 0.14416494965553284, + 0.01796126179397106, + -0.036326147615909576, + -0.02114276774227619, + -0.0068200561217963696, + 0.041763197630643845, + -0.018210558220744133, + -0.025689471513032913, + -0.012488597072660923, + -0.03516276180744171, + -0.026449233293533325, + -0.024407371878623962, + -0.007004061248153448, + 0.0026977506931871176, + -0.0058228676207363605, + 0.07355451583862305, + 0.027992501854896545, + -0.018103716894984245, + 0.05821680650115013, + 0.04404248669743538, + 0.01882786676287651, + 0.004315213765949011, + 0.027303967624902725, + 0.01191877480596304, + -0.0021665103267878294, + -0.023790065199136734, + 0.02519087679684162, + -0.016228053718805313, + 0.042617931962013245, + -0.004546704236418009, + -0.08523586392402649, + -0.020157450810074806, + 0.07839799672365189, + -0.008393001742661, + 0.08243423700332642, + 0.03770321607589722, + -0.02545204572379589, + 0.08352639526128769, + 0.036254920065402985, + -0.07844548672437668, + 0.051663853228092194, + -0.09235863387584686, + 0.05427553877234459, + 0.08537831902503967, + -0.012126523070037365, + -0.042689159512519836, + -0.05384816974401474, + 0.06491221487522125, + -0.026021867990493774, + -0.009734457358717918, + 0.1015232726931572, + -0.028491096571087837, + -0.1075064018368721, + 0.003205248387530446, + -0.04890971630811691, + 0.05641236901283264, + 0.026354264467954636, + -0.03312090039253235, + 0.050524208694696426, + -0.03594626486301422, + -0.0627278983592987, + 0.03570884093642235, + 0.05745704472064972, + -0.024015620350837708, + -0.049147140234708786, + 0.0012828413164243102, + -0.0007196969818323851, + -0.05650734156370163, + -0.07080037146806717, + -0.020572945475578308, + 0.10019368678331375, + 0.02974945306777954, + -0.02640174888074398, + -0.0421430803835392, + 0.022163698449730873, + 0.054323021322488785, + 0.07749578356742859, + 0.021736331284046173, + 0.06752389669418335, + -0.03656357154250145, + -0.006167135201394558, + 0.01848359778523445, + -0.008226803503930569, + -0.02323211543262005, + -0.000590596697293222, + 0.05023929849267006, + 0.04333020746707916, + -0.002374257892370224, + -0.0081674475222826, + 0.028609808534383774, + 0.016216181218624115, + -0.010517963208258152, + -0.006357075646519661, + 0.02725648134946823, + -0.06690659373998642, + 0.008440487086772919, + -0.06396251171827316, + 0.023410184308886528, + 0.037631988525390625, + -0.010986878536641598, + 0.032646048814058304, + -0.05085660517215729, + 0.06576694548130035, + -0.006570759229362011, + -0.005164010915905237, + -0.02184317447245121, + -0.001201968058012426, + 0.04378131777048111, + 0.004816776141524315, + 0.06804623454809189, + -0.005101686809211969, + 0.013996250927448273, + 0.02116651087999344, + -0.003128084819763899, + -0.02416994608938694, + 0.006897219456732273, + 0.0464642308652401, + -0.0722249299287796, + -0.03278850391507149, + 0.01710652932524681, + 0.040386129170656204, + 0.04290284216403961, + -0.10418244451284409, + -0.07084786146879196, + 0.011936581693589687, + -0.04677288234233856, + 0.003237894270569086, + -0.03924648463726044, + 0.07854045182466507, + 0.05598500370979309, + 0.0015714620240032673, + -0.10617681592702866, + 0.004629802890121937, + 0.022638550028204918, + -0.016786003485322, + 0.0661943107843399, + -0.04506341740489006, + 0.03243236243724823, + -0.0799650102853775, + 0.00830396730452776, + -0.026781629770994186, + -0.030248047783970833, + -0.05403811112046242, + -0.013485785573720932, + 0.024193689227104187, + 0.07968010008335114, + 0.03853420913219452, + 0.018614182248711586, + -0.025689471513032913, + 0.09857919067144394, + 0.035827554762363434, + 0.036943454295396805, + 0.05883411318063736, + -0.06818868964910507, + -0.08851233869791031, + 0.02114276774227619, + 0.03069915622472763, + 0.10161824524402618, + 0.021902529522776604, + 0.019112776964902878, + -0.04228553548455238, + -0.06951827555894852, + 0.03936519846320152, + 0.08922461420297623, + -0.0018534051487222314, + -0.009520774707198143, + -0.0116041861474514, + -0.04703405126929283, + -0.030817868188023567, + 0.04154951497912407, + -0.019896281883120537, + 0.016584191471338272, + 0.056554824113845825, + -0.14264541864395142, + -0.030651669949293137, + -0.05342080444097519, + -0.00804873462766409, + 0.0253808181732893, + 0.03637363389134407, + 0.028918461874127388, + -0.05816932022571564, + -0.1264054924249649, + -0.02623555064201355, + -0.07892033457756042, + -0.017866291105747223, + -0.04276038706302643, + -0.029773196205496788, + 0.08186441659927368, + 0.0044814120046794415, + 0.03312090039253235, + 0.04154951497912407, + -0.07279475033283234, + -0.0455620102584362, + -0.037180881947278976, + 0.02561824396252632, + 0.03302592784166336, + 0.023267729207873344, + -0.00860668532550335, + -0.022911589592695236, + 0.025309590622782707, + -0.029179630801081657, + -0.031174007803201675, + -0.024051234126091003, + 0.018424242734909058, + 0.006220555864274502, + -0.04283161461353302, + -0.00146165257319808, + -0.007805373053997755, + 0.018091846257448196, + -0.023338956758379936, + -0.08385879546403885, + -0.005442986264824867, + 0.055177755653858185, + -0.006161199416965246, + 0.020940955728292465, + 0.01280912198126316, + 0.0014379100175574422, + 0.010909715667366982, + 0.02124960906803608, + -0.03777444362640381, + 0.01475601363927126, + -0.00133922987151891, + 0.0001919810165418312, + 0.05873914435505867, + 0.0090399868786335, + 0.05702967569231987, + -0.057314589619636536, + -0.01822243072092533, + -0.04105092212557793, + -0.004508122336119413, + -0.031435176730155945, + 0.006015776190906763, + -0.009870978072285652, + -0.005036394577473402, + -0.04544329643249512, + 0.005992033518850803, + -0.006992189679294825, + 0.07027803361415863, + 0.0032942830584943295, + -0.05579506233334541, + -0.08480849862098694, + 0.09672727435827255, + 0.03851046413183212, + -0.054228052496910095, + -0.0065588876605033875, + 0.0005290143890306354, + -0.11633864045143127, + -0.14255045354366302, + 0.0008154092356562614, + -0.0309603251516819, + 0.027137769386172295, + -0.018614182248711586, + -0.07103779911994934, + 0.04755638912320137, + -0.05546266585588455, + -0.03369072079658508, + 0.017652608454227448, + 0.05555763840675354, + -0.01234614197164774, + 0.015029053203761578, + -0.0094673540443182, + 0.03086535446345806, + 0.0021650264970958233, + -0.06353514641523361, + -0.011568572372198105, + -0.07725835591554642, + 0.09003186225891113, + 0.033334583044052124, + -0.058454230427742004, + -0.001012027496472001, + -0.04779381304979324, + 0.022151827812194824, + 0.016014371067285538, + -0.05470290407538414, + 0.01944517344236374, + 0.04427991062402725, + 0.06975570321083069, + 0.05702967569231987, + -0.06296531856060028, + 0.07061043381690979, + -0.022662293165922165, + 0.022258669137954712, + 0.04686785116791725, + 0.045965634286403656, + 0.013723211362957954, + 0.027161510661244392, + -0.03995876386761665, + -0.002058184938505292, + -0.056127458810806274, + -0.04971696063876152, + 0.05736207216978073, + -0.0003604049561545253, + 0.022686034440994263, + 0.001477233599871397, + -0.01583630032837391, + 0.010648546740412712, + 0.003941268194466829, + 0.04710527881979942, + 0.02673414535820484, + -0.02383754961192608, + -0.06823617219924927, + 0.0059386128559708595, + -0.01917213387787342, + 0.06723898649215698, + -0.012915963307023048, + -0.02649671956896782, + 0.032479848712682724, + -0.07554888725280762, + 0.05494033172726631, + -0.04629803076386452, + 0.02590315416455269, + 0.011711027473211288, + 0.004154951311647892, + 0.03285973146557808, + -0.011954388581216335, + -0.05494033172726631, + 0.0326697900891304, + -0.022389253601431847, + 0.006291783880442381, + 0.05180630832910538, + -0.07678350061178207, + 0.031530145555734634, + 0.0275176502764225, + -0.04499218985438347, + -0.01564636081457138, + 0.02243673801422119, + -0.013129646889865398, + 0.10190315544605255, + 0.05033427104353905, + 0.013604498468339443, + -0.06681162118911743, + -0.06220556050539017, + 0.00851765088737011, + -0.009514839388430119, + -0.00015516146959271282, + -0.028776006773114204, + 0.009324898011982441, + 0.004258825443685055, + -0.014898468740284443, + -0.05536769703030586, + 0.037537019699811935, + 0.0028684004209935665, + -0.0764985904097557, + 0.012381755746901035, + -0.006790377665311098, + 0.049859419465065, + -0.0585017167031765, + -0.0843336433172226, + -0.031197750940918922, + -0.09990877658128738, + 0.005629959050565958, + -0.0027289127465337515, + -0.06087597459554672, + -0.010939394123852253, + -0.06263292580842972, + -0.007550140377134085, + 0.014993439428508282, + -0.010975007899105549, + 0.06951827555894852, + -0.032479848712682724, + 0.024905966594815254, + 0.048719774931669235, + -0.002073023933917284, + 0.011105591431260109, + 0.047865040600299835, + -0.04325897991657257, + -0.08537831902503967, + 0.005499375052750111, + -0.00651733810082078, + 0.05228115990757942, + -0.044161200523376465, + -0.05090409144759178, + 0.007793501950800419, + 0.018685409799218178, + -0.06685910373926163, + 0.03209996968507767, + -0.02210434153676033, + 0.021653233096003532, + 0.010197438299655914, + 0.04273664578795433, + 0.055035300552845, + -0.06044860929250717, + -0.005579506512731314, + -0.06828366219997406, + -0.003240862162783742, + -0.042261794209480286, + 0.024716025218367577, + -0.04793626815080643, + -0.018210558220744133, + 0.03862917795777321, + -0.059641361236572266, + 0.045965634286403656, + 0.07645110785961151, + 0.009081536903977394, + 0.005769446957856417, + -0.05066666752099991, + 0.027066541835665703, + -0.012904092669487, + 0.029227115213871002, + 0.08233926445245743, + 0.02820618450641632, + 0.037299592047929764, + -0.020703529939055443, + 0.028918461874127388, + 0.03846297785639763, + 0.028918461874127388, + -0.007615432608872652, + -0.01298719085752964, + -0.04401874169707298, + -0.04767509922385216, + -0.0011478053638711572, + -0.0010060918284580112, + -0.020323649048805237, + -0.012915963307023048, + -0.0825292095541954, + -0.01832927204668522, + 0.02967822551727295, + 0.03449796885251999, + -0.008375194855034351, + -0.0009229928255081177, + -0.021629489958286285, + 0.016144953668117523, + 0.01380631048232317, + -0.019991252571344376, + 0.03274101763963699, + 0.01599062792956829, + 0.015587003901600838, + 0.00826241821050644, + 0.007680724840611219, + -0.039531394839286804, + 0.08200687170028687, + 0.046321772038936615, + -0.031268976628780365, + 0.0894620418548584, + 0.031601373106241226, + 0.020834114402532578, + -0.008737269788980484, + -0.04446985200047493, + 0.022757261991500854, + 0.0013117775088176131, + 0.023101530969142914, + -0.03741830587387085, + 0.03637363389134407, + -0.04074226692318916, + 0.05460793524980545, + -0.01926710456609726, + 0.006606373004615307, + 0.011058107018470764, + 0.03214745223522186, + 0.09696469455957413, + 0.046915337443351746, + 0.008790690451860428, + 0.0047603873535990715, + -0.037798188626766205, + -0.014411745592951775 + ] + }, + { + "id": "abe0ed72-e812-41df-b48c-48d4937967ec", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "lorettadorsey", + "reviewDate": "2022-11-30T21:52:49", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d8492465-7073-4033-ae48-a9bfe4db8e8c", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "hickstyler", + "reviewDate": "2022-05-09T16:29:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b7d5c60b-76c7-4bc8-9244-26e0a547cad9", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "reedcharles", + "reviewDate": "2022-11-04T13:12:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "47f5b96a-4c86-40a3-be11-3e65b9b5380c", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "jjohnson", + "reviewDate": "2022-03-13T03:39:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f23c4b13-a7bf-4cca-bca1-fccb1cf12ff3", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "donaldkennedy", + "reviewDate": "2022-05-15T18:26:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8443e048-49f8-4fab-a3e1-787b55abf637", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "salazarjennifer", + "reviewDate": "2021-08-19T06:51:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "59641923-2968-4d20-93d1-5bed95440634", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "hfoster", + "reviewDate": "2022-09-26T13:06:52", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e9e04fa4-6a25-4161-85a5-c4ae0e521311", + "productId": "c529ecfd-71c7-4323-9944-efeb49e7d42f", + "category": "Media", + "docType": "customerRating", + "userName": "smithjoseph", + "reviewDate": "2021-01-17T10:12:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard Pro (Red)", + "description": "This Amazing Keyboard Pro (Red) is rated 4.1 out of 5 by 9.\n\nRated 4 out of 5 by B1b_infrin from Excellent performance in a small portable keyboard This keyboard allows you to make your gaming experience easy. For small work, it is well designed but is still easy to use. If you need a small keyboard when you're at home and want quality performance,", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2020-04-05T18:28:10", + "price": 751.63, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-06-03T00:50:45", + "newPrice": 793.09 + }, + { + "priceDate": "2021-11-25T00:50:45", + "newPrice": 825.74 + }, + { + "priceDate": "2022-05-19T00:50:45", + "newPrice": 743.62 + }, + { + "priceDate": "2022-11-10T00:50:45", + "newPrice": 733.89 + }, + { + "priceDate": "2025-02-11T00:50:45", + "newPrice": 751.63 + } + ], + "descriptionVector": [ + -0.006778641603887081, + 0.04306817427277565, + -0.03573695570230484, + 0.03694058582186699, + 0.026983261108398438, + -0.016128679737448692, + 0.0005084665026515722, + 0.027311524376273155, + -0.005815735086798668, + 0.11187220364809036, + 0.04256483539938927, + -0.050902727991342545, + 0.0007078181952238083, + -0.057905685156583786, + 0.03291388973593712, + 0.00717255799099803, + -0.02049458585679531, + -0.020658716559410095, + -0.020516470074653625, + 0.042608603835105896, + -0.00710143381729722, + -0.032498087733983994, + -0.03254185616970062, + 0.03107561357319355, + 0.06394573301076889, + 0.0027027030009776354, + -0.0309224221855402, + 0.021227708086371422, + 0.03319838270545006, + 0.000572751450818032, + 0.04363716393709183, + 0.0034768576733767986, + -0.06136339157819748, + 0.013163367286324501, + -0.0009116151486523449, + 0.005599628668278456, + -0.0041607399471104145, + -0.0275303665548563, + -0.04853923246264458, + 0.05860598012804985, + 0.04002626612782478, + 0.04608819633722305, + 0.0038543606642633677, + -0.04431557282805443, + 0.0012528724037110806, + 0.06394573301076889, + -0.047313716262578964, + -0.011762775480747223, + -0.0054382323287427425, + 0.029981400817632675, + 0.06565270572900772, + 0.06604661792516708, + -0.017901303246617317, + -0.025757743045687675, + 0.06053179129958153, + -0.02426961623132229, + -0.027705440297722816, + 0.07107999175786972, + 0.05921873822808266, + -0.1374329924583435, + 0.0233067087829113, + -0.03814421966671944, + 0.023459898307919502, + -0.08972536027431488, + -0.001410165335983038, + -0.035802606493234634, + -0.06342051178216934, + -0.0365029014647007, + 0.025210637599229813, + 0.0320604033768177, + -0.019597331061959267, + -0.005843090359121561, + 0.01903928443789482, + 0.033920563757419586, + 0.007894737645983696, + 0.0006568689714185894, + 0.08604881167411804, + 0.053966522216796875, + 0.009207791648805141, + 0.07147391140460968, + 0.03669986128807068, + 0.030813001096248627, + -0.012692855671048164, + -0.03361418470740318, + 0.021676333621144295, + -0.014038736000657082, + 0.02442280575633049, + -0.13270600140094757, + -0.045519206672906876, + 0.05689900740981102, + -0.09077580273151398, + 0.01839369907975197, + -0.04748879000544548, + -0.03549622744321823, + 0.057993222028017044, + -0.029696905985474586, + -0.09707846492528915, + 0.04569428041577339, + 0.020428933203220367, + 0.062370069324970245, + -0.027836745604872704, + -0.0022144110407680273, + -0.05908743292093277, + -0.036393482238054276, + 0.02189517579972744, + 0.016905570402741432, + 0.04116424545645714, + -0.0328044667840004, + -0.03223547711968422, + -0.08368530869483948, + -0.004644928500056267, + 0.020177263766527176, + -0.01490316353738308, + -0.06228253245353699, + -0.0463070385158062, + -0.0030993546824902296, + -0.0314476452767849, + -0.0019518001936376095, + -0.014684321358799934, + -0.01582230068743229, + -0.01942225731909275, + 0.04788270592689514, + -0.03573695570230484, + 0.06836634874343872, + -0.008326951414346695, + -9.369188046548516e-05, + 0.014925047755241394, + 0.04832039028406143, + -0.00791662186384201, + -0.03864755854010582, + -0.05549841746687889, + 0.09348944574594498, + 0.08084036409854889, + 0.03219170868396759, + -0.023831931874155998, + 0.058430906385183334, + -0.023634973913431168, + 0.09821644425392151, + 0.0060619330033659935, + -0.007216326426714659, + 0.052128247916698456, + -0.05453551188111305, + -0.0026028561405837536, + 0.0011236186837777495, + -0.07191159576177597, + 0.026195429265499115, + -0.007260094862431288, + 0.029193568974733353, + 0.04783893749117851, + 0.05427290126681328, + -0.012824160978198051, + -0.05961265414953232, + -0.046876028180122375, + -0.06118831783533096, + 0.027639787644147873, + 0.03462085872888565, + -0.060663096606731415, + 0.037750303745269775, + -0.006466791033744812, + 0.07506292313337326, + -0.07576321810483932, + 0.01883138343691826, + -0.006521502044051886, + 0.032213591039180756, + -0.021928003057837486, + 0.05821206420660019, + 0.015669111162424088, + 0.015154832042753696, + -0.05291607975959778, + 0.029653137549757957, + -0.03359229862689972, + 0.017419850453734398, + -0.015483095310628414, + -0.04989605396986008, + -0.0010689080227166414, + -0.026961376890540123, + 0.057117853313684464, + -0.017419850453734398, + -0.02083379030227661, + -0.003701171139255166, + 0.03783784061670303, + 0.025692090392112732, + -0.03720319643616676, + -0.008326951414346695, + 0.10977131873369217, + 0.023853816092014313, + 0.0415581613779068, + 0.006603567861020565, + 0.026676882058382034, + 0.05742423236370087, + -0.0015510451048612595, + 0.00272458721883595, + -0.0719553604722023, + 0.014377942308783531, + -0.03282635286450386, + 0.08849984407424927, + 0.008441843092441559, + -0.003490535309538245, + 0.01430134754627943, + 0.014180983416736126, + -0.01380895171314478, + 0.09672831743955612, + 0.08324762433767319, + 0.007150673773139715, + 0.05317869037389755, + 0.03427071124315262, + 0.03812233731150627, + 0.0016727761831134558, + 0.04980851709842682, + -0.03287012130022049, + 0.014651495032012463, + 0.00380512117408216, + -0.021588796749711037, + -0.034774050116539, + -0.0026985995937138796, + 0.012178576551377773, + -0.001639949856325984, + 0.029784442856907845, + -0.05335376411676407, + -0.09278915077447891, + -0.0037394685205072165, + 0.060181643813848495, + 0.012878871522843838, + 0.01396214123815298, + -0.042061496526002884, + -0.006198709364980459, + 0.025232521817088127, + -0.039741769433021545, + 0.037509579211473465, + 0.03499289229512215, + -0.0435933955013752, + -0.02928110584616661, + -0.006138527765870094, + 0.030703580006957054, + -0.04941460117697716, + 0.014410768635571003, + -0.013043004088103771, + -0.006171354092657566, + -0.10968378186225891, + 0.0709049180150032, + 0.007128789089620113, + -0.042061496526002884, + -0.03912901133298874, + -0.003993872553110123, + 0.09025058150291443, + -0.059787727892398834, + 0.04635080695152283, + 0.02593281678855419, + -0.11511107534170151, + 0.00761024234816432, + -0.07007332146167755, + -0.013502572663128376, + -0.0005505252629518509, + 0.053922753781080246, + 0.009743954986333847, + 0.040463950484991074, + 0.08381661772727966, + 0.037312619388103485, + -0.040857866406440735, + -0.05050881206989288, + 0.04256483539938927, + 0.01211292389780283, + -0.005684429779648781, + 0.010274647735059261, + -0.0062096514739096165, + 0.027946166694164276, + 0.05028996989130974, + -0.026326734572649002, + -0.06473356485366821, + 0.014159099198877811, + -0.011314149014651775, + -0.0810154378414154, + 0.04379035159945488, + -0.012900755740702152, + -0.03801291435956955, + 0.04247729852795601, + -0.02426961623132229, + 0.05676770210266113, + 0.008874056860804558, + 0.03540869057178497, + 0.020549295470118523, + 0.07795163989067078, + 0.07410001754760742, + 0.05007112771272659, + 0.02860269509255886, + -0.0405077189207077, + 0.0233067087829113, + -0.010411424562335014, + -0.021446550264954567, + -0.002741000382229686, + -0.035758838057518005, + -0.0012939053121954203, + 0.03059415891766548, + 0.013699530623853207, + -0.006083817221224308, + 0.037356387823820114, + 0.005014225374907255, + -0.015526864677667618, + 0.047707632184028625, + 0.00631360150873661, + 0.03759711608290672, + 0.003788708010688424, + -0.1019805297255516, + -0.09068826586008072, + -0.022847140207886696, + 0.031206918880343437, + -0.08653026074171066, + 0.014356058090925217, + -0.04326513037085533, + -0.04888937994837761, + 0.08259110152721405, + -0.0594375804066658, + -0.026479924097657204, + -0.005936098750680685, + 0.11756210774183273, + -0.03389867767691612, + 0.04059525579214096, + 0.05239085853099823, + 0.026633113622665405, + -0.013316556811332703, + 0.018907979130744934, + -0.09506511688232422, + -0.062326300889253616, + 0.042061496526002884, + 0.00305832177400589, + -0.036481019109487534, + 0.031819675117731094, + -0.0066856336779892445, + 0.023919468745589256, + -0.07563191652297974, + -0.04103294014930725, + -0.011675238609313965, + -0.049108222126960754, + -0.0008104005246423185, + 0.005047051701694727, + 0.0052604228258132935, + -0.03720319643616676, + 0.06792866438627243, + 0.07970238476991653, + 0.0716489851474762, + 0.03000328503549099, + -0.016664844006299973, + 0.06714083254337311, + -0.03558376431465149, + 0.004863771144300699, + -0.08066529035568237, + -0.05011489614844322, + -0.0344676673412323, + 0.017004050314426422, + -0.07147391140460968, + 0.0012084200279787183, + -0.0037230553571134806, + 0.02354743517935276, + -0.026436155661940575, + -0.025867164134979248, + -0.009393807500600815, + 0.019203415140509605, + -0.04884561151266098, + 0.026830071583390236, + 0.08154065907001495, + -0.006138527765870094, + -0.02510121650993824, + 0.024969911202788353, + 0.04980851709842682, + -0.025867164134979248, + 0.01420286763459444, + -0.05064011737704277, + 0.04212715104222298, + 0.014487363398075104, + -0.01937848888337612, + -0.02048364281654358, + -0.052215784788131714, + -0.01709158718585968, + 0.05952511727809906, + -0.00024123948242049664, + 0.11020900309085846, + -0.07370609790086746, + 0.01077798567712307, + -0.03497100621461868, + 0.030025169253349304, + -0.007818142883479595, + 0.055323343724012375, + -0.04888937994837761, + 0.0038981293328106403, + 0.036240290850400925, + 0.011029654182493687, + 0.036284059286117554, + 0.002308786613866687, + 0.026764418929815292, + 0.00694277323782444, + -0.03324215114116669, + 0.01541744265705347, + -0.02481672167778015, + 0.03457709029316902, + -0.022934677079319954, + -0.03772842139005661, + 0.020516470074653625, + 0.0779954120516777, + 0.040617138147354126, + 0.02481672167778015, + 0.01689462922513485, + 0.025407595559954643, + 0.043724700808525085, + -0.07655104994773865, + -0.06705329567193985, + -0.09462743252515793, + 0.013425977900624275, + 0.08797462284564972, + -0.018721962347626686, + -0.11791225522756577, + -0.02374439500272274, + 0.009136667475104332, + -0.02947806380689144, + -0.02947806380689144, + 0.009711128659546375, + 0.07173652201890945, + 0.10880841314792633, + 0.045562975108623505, + 0.050027359277009964, + -0.023219171911478043, + 5.445412898552604e-05, + -0.0037476751022040844, + -0.0027943432796746492, + -0.009727542288601398, + -0.0719553604722023, + 0.04212715104222298, + 0.023372361436486244, + -0.029018495231866837, + -0.006187767256051302, + -0.07086115330457687, + 0.04788270592689514, + -0.04337455332279205, + -0.027552250772714615, + 0.004981399048119783, + -0.06744720786809921, + 0.0034139405470341444, + -0.05366014316678047, + -0.000215422929613851, + 0.037312619388103485, + 0.021665392443537712, + -0.03807856887578964, + -0.05497319623827934, + -0.03024401143193245, + -0.021545028313994408, + -0.08530474454164505, + 0.05996280163526535, + -0.055279575288295746, + 0.0882372334599495, + 0.09147609770298004, + -0.03919466212391853, + 0.030747348442673683, + -0.03107561357319355, + -0.042893100529909134, + 0.009081956930458546, + 0.11125944554805756, + 0.009716600179672241, + -0.04709487035870552, + 0.09392713010311127, + -0.02904037944972515, + 0.019947480410337448, + -0.024094542488455772, + 0.00268355431035161, + -0.0038379475008696318, + 0.05409782752394676, + -0.02282525599002838, + -0.02486049011349678, + -0.03140387684106827, + -0.054360438138246536, + 0.007922092452645302, + -0.03216982260346413, + -0.005427290219813585, + -0.051296643912792206, + 0.0020639568101614714, + -0.02466353215277195, + 0.017266660928726196, + -0.041536275297403336, + -0.001462140353396535, + 0.03039720095694065, + -0.012714739888906479, + 0.03578072413802147, + -0.019531678408384323, + -0.027158334851264954, + -0.035802606493234634, + 0.03431447967886925, + 0.08337893337011337, + 0.00885764416307211, + 0.013546341098845005, + -0.008688041009008884, + 0.08810592442750931, + -0.010608382523059845, + 0.0021309773437678814, + 0.03297954052686691, + 0.030988074839115143, + -0.0969909280538559, + 0.004319400526583195, + 0.02908414788544178, + -0.058387137949466705, + 0.038275524973869324, + -0.027114566415548325, + 0.006860707420855761, + -0.0055859507992863655, + -0.05816829577088356, + -0.0018218625336885452, + 0.07659482210874557, + 0.0021542292088270187, + 0.03363606706261635, + -0.002954371739178896, + 0.053966522216796875, + -0.021402781829237938, + -0.020407048985362053, + 0.03251997381448746, + -0.0787394717335701 + ] + }, + { + "id": "b761b2a3-7e21-4afc-8898-06dafe5b8259", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "barnesjason", + "reviewDate": "2021-08-09T06:34:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "30af2f54-98cf-41c7-b4f4-8a504b7eafec", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wmullen", + "reviewDate": "2021-06-03T00:50:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "509ba0ae-6c37-44ba-b7dc-64a97351315b", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daviddavid", + "reviewDate": "2022-11-10T21:51:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b3b7907c-a3c0-41ee-88d6-3b91f936ecf4", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kimberly59", + "reviewDate": "2022-07-13T21:10:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7ad1797a-e075-497d-822a-21e3bff17cfc", + "productId": "22ec9f2e-8e4e-4439-9f78-03c6df859a02", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnsonmegan", + "reviewDate": "2022-04-10T14:07:25", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "product", + "name": "Awesome Phone Pro (Black)", + "description": "This Awesome Phone Pro (Black) is a very similar phone to the iPhone 8+, but has a better design and looks in a different way. Like the iOS 8, it has a higher resolution camera so you have more exposure control than if you had to put out a separate white phone. It's got Touch ID to read your call history, and it has an internal battery so you", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-03-25T12:35:05", + "price": 652.58, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-07T19:15:27", + "newPrice": 659.12 + }, + { + "priceDate": "2021-08-02T19:15:27", + "newPrice": 669.4 + }, + { + "priceDate": "2022-02-25T19:15:27", + "newPrice": 671.68 + }, + { + "priceDate": "2022-09-20T19:15:27", + "newPrice": 638.95 + }, + { + "priceDate": "2023-11-26T19:15:27", + "newPrice": 652.58 + } + ], + "descriptionVector": [ + -0.07767760008573532, + 0.07157212495803833, + -0.01488486398011446, + 0.05352311581373215, + -0.04198066145181656, + 0.01905173435807228, + -0.004754577297717333, + -0.006272588390856981, + 0.010216631926596165, + 0.08213414251804352, + -0.004197509028017521, + -0.036320850253105164, + 0.03832629695534706, + 0.006066473200917244, + 0.004888273775577545, + -0.02140256203711033, + 0.025536008179187775, + -0.011375333182513714, + -0.03199800103902817, + -0.01989847794175148, + 0.03888336196541786, + -0.07888086140155792, + -0.09456790238618851, + -0.06845254451036453, + -0.00022683122369926423, + -0.016656341031193733, + 0.005211373325437307, + 0.014428067952394485, + 0.012567459605634212, + 0.000865544774569571, + 0.025669705122709274, + 0.034449100494384766, + -0.04804156720638275, + 0.07357757538557053, + -0.03901705890893936, + 0.06043076515197754, + -0.022572405636310577, + -0.03153006359934807, + 0.04042087122797966, + 0.03308985382318497, + 0.055172041058540344, + -0.054414425045251846, + 0.02930179052054882, + 0.055573128163814545, + 0.04839808866381645, + -0.03716759383678436, + -0.024221327155828476, + 0.004829781595617533, + -0.05918293073773384, + -0.009135919623076916, + 0.03645454719662666, + -0.012979689985513687, + -0.05200789123773575, + -0.045033395290374756, + 0.05191875994205475, + 0.04795243591070175, + -0.009213908575475216, + 0.02045554667711258, + -0.034025728702545166, + -0.05196332558989525, + -0.022349577397108078, + -0.014405785128474236, + -0.011910119093954563, + 0.02035527303814888, + 0.016823461279273033, + -0.0017812256701290607, + -0.05726661533117294, + -0.04091109335422516, + -0.013993554748594761, + 0.035830628126859665, + 0.01491828728467226, + -0.023307735100388527, + -0.0029078961815685034, + 0.06622426956892014, + 0.008701406419277191, + 0.05093831941485405, + 0.02923494204878807, + 0.017692487686872482, + 0.07041342556476593, + 0.023820238187909126, + 0.08823961019515991, + 0.04804156720638275, + -0.003002597950398922, + 0.07420148700475693, + 0.027184929698705673, + -0.023129474371671677, + 0.023441432043910027, + -0.1027679517865181, + -0.02836591564118862, + 0.03964097797870636, + -0.01053973101079464, + 0.018338685855269432, + 0.0013655135408043861, + 0.024822961539030075, + 0.02169223688542843, + 0.03966325893998146, + 0.011898977681994438, + 0.06849711388349533, + -0.05214158818125725, + -0.03371376916766167, + 0.025268616154789925, + -0.04741764813661575, + -0.026828406378626823, + 0.053344856947660446, + -0.012244360521435738, + 0.022527839988470078, + -0.004916127305477858, + -0.017157701775431633, + 0.002916252240538597, + -0.0936765968799591, + -0.0014915502397343516, + 0.033825185149908066, + -0.04342903941869736, + -0.007007918320596218, + -0.033780619502067566, + 0.05878183990716934, + 0.017024004831910133, + 0.028209935873746872, + 0.023641975596547127, + -0.056419871747493744, + -0.0004132750036660582, + 0.04164642095565796, + -0.01939711719751358, + 0.06836341321468353, + -0.0005668169469572604, + 0.010339186526834965, + 0.11845499277114868, + -0.024176761507987976, + 0.00733658904209733, + -0.06172316148877144, + -0.06996776908636093, + 0.1043723076581955, + 0.06435252726078033, + 0.033936597406864166, + 5.19205023010727e-05, + 0.04697199538350105, + 0.08534285426139832, + 0.05138397589325905, + -0.007871374487876892, + 0.055662259459495544, + 0.06457535177469254, + -0.0049690487794578075, + 0.024756113067269325, + -0.005303289741277695, + 0.028209935873746872, + 0.07380039989948273, + 0.0032254252582788467, + 0.046570904552936554, + -0.015553345903754234, + 0.04030945897102356, + -0.013091104105114937, + -0.15419648587703705, + 0.004676587879657745, + -0.07170582562685013, + -0.00912477821111679, + -0.010885113850235939, + 0.0024148907978087664, + -0.03179745376110077, + 0.033535510301589966, + 0.04133446514606476, + -0.043451324105262756, + -0.01559791062027216, + 0.025469159707427025, + 0.013001972809433937, + -0.03255506977438927, + -0.04857635125517845, + 0.07772216200828552, + 0.03886108100414276, + -0.1000048890709877, + 0.03037136048078537, + 0.05361224710941315, + 0.00010593001206871122, + -0.018138142302632332, + -0.0956374779343605, + -0.055706825107336044, + 0.011314055882394314, + 0.08725917339324951, + 0.0054954783990979195, + 0.016444655135273933, + -0.0015556131256744266, + 0.023775672540068626, + -0.008222327567636967, + -0.06961125135421753, + -0.043250780552625656, + 0.07108190655708313, + 0.012923982925713062, + -0.044342633336782455, + 0.06092098355293274, + 0.013781868852674961, + -0.015687040984630585, + -0.01420524064451456, + -0.02178136818110943, + -0.013870999217033386, + 0.00044843993964605033, + 0.026583297178149223, + -0.04293882101774216, + 0.07834608107805252, + -0.000718618044629693, + 0.006255876272916794, + 0.05789053067564964, + 0.011369762942194939, + 0.007977217435836792, + 0.10820493847131729, + -0.017291398718953133, + -0.006411855574697256, + -0.006762808654457331, + -0.02122429944574833, + 0.03244365379214287, + 0.03322355076670647, + 0.01926342025399208, + -0.007698683068156242, + 0.01533051859587431, + 0.026694711297750473, + -0.03153006359934807, + 0.09207224100828171, + 0.016310958191752434, + 0.04683829843997955, + -0.008066347800195217, + 0.044052958488464355, + -0.10811580717563629, + 0.054057903587818146, + 0.026806123554706573, + 0.07941564917564392, + -0.003375833621248603, + -0.06934385746717453, + -0.03068331815302372, + 0.0983114019036293, + 0.0999157577753067, + 0.06716014444828033, + -0.02100147306919098, + -0.05116114765405655, + -0.06658079475164413, + -0.0008098379475995898, + 0.04193609580397606, + -0.01878434047102928, + 0.03072788380086422, + 0.005308860447257757, + 0.009665134362876415, + -0.05918293073773384, + 0.034983884543180466, + 0.0075204214081168175, + -0.00252908980473876, + -0.05289920046925545, + -0.016578350216150284, + 0.11524628102779388, + -0.02009902149438858, + -0.03716759383678436, + 0.06466448307037354, + -0.0950135588645935, + 0.045033395290374756, + 0.0006576887099072337, + -0.03037136048078537, + -0.06626883894205093, + 0.07861346751451492, + 0.02954689972102642, + -0.023909369483590126, + 0.005439771339297295, + -0.05927206203341484, + 0.03696705028414726, + -0.06118837743997574, + 0.0011419899528846145, + -0.03266648203134537, + -0.01996532641351223, + 0.043206214904785156, + -0.02027728408575058, + 0.025045787915587425, + 0.07121560722589493, + -0.03721215948462486, + -0.016934875398874283, + 0.01993190124630928, + 0.02983657456934452, + -0.07072538137435913, + 0.04790787026286125, + -0.017681345343589783, + 0.001719948253594339, + 0.06912102550268173, + -0.08021783083677292, + 0.07794498652219772, + 0.0022185242269188166, + 0.05178506299853325, + 0.06319382041692734, + 0.04220348969101906, + 0.07700911164283752, + 0.04942309483885765, + 0.01829412207007408, + -0.024689264595508575, + -0.05913836508989334, + 0.016868026927113533, + 0.023686541244387627, + -0.007782243192195892, + -0.026917537674307823, + -0.004230933263897896, + 0.03906162455677986, + -0.009765406139194965, + 0.021848216652870178, + -0.05040353536605835, + 0.044721439480781555, + -0.036008890718221664, + 0.04318393021821976, + 0.05031440407037735, + 0.07183951884508133, + -0.03366920351982117, + -0.027541454881429672, + -0.04055456817150116, + 0.02065609022974968, + 0.13476595282554626, + -0.03861597180366516, + 0.045055679976940155, + -0.044676873832941055, + 0.008562139235436916, + 0.08476350456476212, + -0.0035986609291285276, + -0.08070804923772812, + -0.09118092805147171, + -0.0028995401225984097, + -0.0032644199673086405, + -0.024733830243349075, + 0.05000244453549385, + -0.02168109640479088, + -0.0024817390367388725, + -0.01958652026951313, + 0.02948005124926567, + -0.07852434366941452, + 0.05958402156829834, + 0.02100147306919098, + 0.012957407161593437, + -0.03086158074438572, + -0.06662536412477493, + 0.027095800265669823, + -0.02865559048950672, + -0.06337208300828934, + -0.007475855760276318, + 0.02974744513630867, + 0.0010075971949845552, + -0.0007764138863421977, + 0.016054706647992134, + 0.03039364330470562, + 0.06319382041692734, + 0.022995777428150177, + 0.05744487792253494, + 0.10784841328859329, + 0.06083185225725174, + -0.06011880561709404, + -0.011820987798273563, + -0.010634432546794415, + -0.1055310070514679, + -0.06314925849437714, + -0.06163403019309044, + 0.005138954613357782, + 0.008211186155676842, + 0.0009686024277471006, + -0.00535342562943697, + 0.04920026659965515, + 0.0003159621555823833, + -0.024243609979748726, + 0.04862091690301895, + -0.016834601759910583, + -0.08244609832763672, + 0.03928445279598236, + -0.023419149219989777, + 0.025045787915587425, + -0.006796232424676418, + 0.011252778582274914, + 0.05272093787789345, + -0.03828173130750656, + 0.06185685843229294, + 0.023396866396069527, + 0.01984277181327343, + -0.04732851684093475, + 0.004127875901758671, + 0.08685807883739471, + 0.014951711520552635, + -0.09216137230396271, + 0.06372860819101334, + -0.03964097797870636, + 0.009364317171275616, + -0.0037992054130882025, + -0.08106457442045212, + -0.01871749386191368, + 0.06158946454524994, + -0.00773767801001668, + 0.035273563116788864, + 0.01098538562655449, + -0.012255501002073288, + 0.054770950227975845, + -0.03230995684862137, + 0.016355523839592934, + 0.013035397045314312, + 0.006094326730817556, + 0.06947755068540573, + -0.06114381179213524, + -0.10767015069723129, + -0.01839439384639263, + 0.11364192515611649, + 0.07019060105085373, + -0.03955184668302536, + -0.016756612807512283, + -0.01985391229391098, + 0.03266648203134537, + -0.07674172520637512, + 0.05784596502780914, + -0.011709574609994888, + 0.011887836270034313, + 0.01948624663054943, + -0.016177261248230934, + -0.02148055098950863, + -0.013726161792874336, + 0.02832134999334812, + -0.03674422204494476, + -0.016812318935990334, + 0.022694960236549377, + -0.0007819845341145992, + -0.05084918811917305, + 0.0075816987082362175, + 0.07825694978237152, + 0.025335464626550674, + -0.03888336196541786, + 0.07232974469661713, + 0.0973309651017189, + -0.02149169333279133, + -0.017714770510792732, + 0.025714270770549774, + 0.04042087122797966, + -0.004448189865797758, + -0.016021283343434334, + 0.034114859998226166, + 0.025313181802630424, + 0.006384002044796944, + -0.02892298251390457, + -0.027719715610146523, + 0.01818270795047283, + 0.0015723251271992922, + 0.02858874201774597, + 0.03636541590094566, + -0.0926070287823677, + -0.04418665170669556, + -0.025090353563427925, + 0.008512002415955067, + -0.001343230833299458, + -0.002852189354598522, + -0.04162413999438286, + -0.007888086140155792, + -0.0037908493541181087, + 0.08311457931995392, + -0.11800933629274368, + -0.024154478684067726, + -0.046348076313734055, + -0.00923062115907669, + -0.02927950769662857, + -0.03868281841278076, + -0.001821613172069192, + -0.013971271924674511, + 0.03086158074438572, + 0.01953081227838993, + 0.053879640996456146, + -0.0018926393240690231, + -0.00775996083393693, + 0.05147310718894005, + -0.08057434856891632, + -0.04133446514606476, + 0.0025374458637088537, + 0.03752411529421806, + 0.04278284311294556, + 0.023953935131430626, + -0.04262686148285866, + -0.00973198190331459, + -0.03202028200030327, + -0.02065609022974968, + 0.006495415698736906, + 0.013492193073034286, + 0.022472133859992027, + -0.036008890718221664, + -0.01562019344419241, + 0.013169093057513237, + -0.06805145740509033, + -0.045724160969257355, + -0.00484649371355772, + 0.026694711297750473, + -0.016021283343434334, + -0.022784091532230377, + 0.04750677943229675, + 0.0054954783990979195, + -0.04282740503549576, + -0.05967314913868904, + 0.03039364330470562, + -0.06716014444828033, + 0.055394865572452545, + 0.0008300316985696554, + -0.00020176314865238965, + -0.014060402289032936, + 0.043540455400943756, + 0.01896260306239128, + -0.017447376623749733, + 0.015107691287994385, + -0.015252528712153435, + -0.03941814973950386, + 0.027274060994386673, + 0.012901701033115387, + 0.02936863712966442, + 0.01940825767815113, + -0.01931912638247013, + -0.03297844156622887, + 0.0031752889044582844, + 0.008467437699437141, + 0.04329534247517586, + -0.022683819755911827, + -0.016377806663513184, + 0.00473229493945837, + 0.04117848351597786, + -0.04697199538350105, + -0.008088630624115467, + -0.007709824480116367 + ] + }, + { + "id": "db71f9b1-de08-4262-8c73-ae7d723975d8", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephaniebates", + "reviewDate": "2022-03-24T12:44:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "86323864-9f03-42b8-b6a9-316dbc233068", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "jesse42", + "reviewDate": "2021-01-07T19:15:27", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f2917e9e-9968-46f6-866b-5d5094073173", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "michelle89", + "reviewDate": "2022-01-06T13:27:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a40c08c9-8c09-4ca6-abf3-7fce1b377a75", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "briansuarez", + "reviewDate": "2022-09-21T11:45:54", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0c152244-0ca7-4956-8208-94347efe4d77", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "whiteemily", + "reviewDate": "2022-04-26T22:28:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0dc7cc57-7d4f-4903-94dc-744012304292", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "chelsea16", + "reviewDate": "2021-12-14T10:41:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf915f59-2c2e-46bf-8a15-b2296ec8909f", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "ruthallen", + "reviewDate": "2021-02-07T20:23:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a7a10925-6f7a-4b4b-bef2-0a754864379c", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamswarren", + "reviewDate": "2022-01-30T14:27:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "157cb420-572d-4acc-a0dc-7e8975d759ce", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "nperry", + "reviewDate": "2022-02-21T12:57:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4672d841-ca53-4f31-9f6d-a2f2e43fe74a", + "productId": "5c2f1b39-ed91-43de-a57d-2c495def54e5", + "category": "Electronics", + "docType": "customerRating", + "userName": "parksbryan", + "reviewDate": "2022-08-27T20:40:09", + "stars": 1, + "verifiedUser": false + }, + { + "id": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "product", + "name": "Awesome Stand Mini (Steel)", + "description": "This Awesome Stand Mini (Steel) is rated 4.8 out of 5 by 41.\n\nRated 5 out of 5 by krp from Great looking for the price! I bought this for my daughter to be very creative for a family day and it is easy to install. The fit is great and the construction is very comfortable. I did use it for lunch hours, just about as well. Would recommend", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2018-03-17T22:07:51", + "price": 162.15, + "stock": 83, + "priceHistory": [ + { + "priceDate": "2021-12-07T05:51:06", + "newPrice": 168.46 + }, + { + "priceDate": "2022-03-17T05:51:06", + "newPrice": 163.71 + }, + { + "priceDate": "2022-06-25T05:51:06", + "newPrice": 148.84 + }, + { + "priceDate": "2022-10-03T05:51:06", + "newPrice": 152.66 + }, + { + "priceDate": "2024-12-15T05:51:06", + "newPrice": 162.15 + } + ], + "descriptionVector": [ + 0.007652252912521362, + 0.009943773038685322, + -0.03673556447029114, + 0.02144293114542961, + 0.03170134127140045, + -0.000545052345842123, + -0.059698257595300674, + 0.025669775903224945, + -0.01458024326711893, + 0.06050563231110573, + -0.0050817131996154785, + -0.034265946596860886, + -0.018997058272361755, + -0.04666152596473694, + 0.05200444906949997, + -0.013962838798761368, + 0.0364031158387661, + -0.0043337042443454266, + -0.023425748571753502, + -0.02315266616642475, + 0.040012557059526443, + -0.0843469426035881, + -0.06316522508859634, + 0.02889927662909031, + -0.000524274306371808, + -0.05281182378530502, + 0.024719923734664917, + 0.01808282546699047, + -0.016669919714331627, + 0.004039843566715717, + -0.02321203239262104, + 0.008192481473088264, + -0.06264280527830124, + 0.06582480669021606, + -0.013214829377830029, + 0.02878054417669773, + -0.012229356914758682, + 0.011505094356834888, + -0.048489995300769806, + 0.1631847321987152, + -0.03065650351345539, + 0.03291240334510803, + 0.06933926790952682, + -0.008020320907235146, + 0.04269589111208916, + -0.05333424359560013, + -0.04573541879653931, + -0.020136883482336998, + 0.004799725953489542, + -0.012526186183094978, + 0.019008932635188103, + 0.07565578818321228, + 0.038896478712558746, + 0.017691010609269142, + 0.01152884028851986, + -0.035714469850063324, + -0.013107971288263798, + 0.15235641598701477, + 0.07598823308944702, + -0.04886993393301964, + -0.03044278733432293, + -0.017061734572052956, + 0.039798837155103683, + -0.029421694576740265, + -0.016420582309365273, + -0.02360384538769722, + -0.0325324647128582, + -0.006263093091547489, + -0.054569050669670105, + 0.017987839877605438, + 0.02790193073451519, + 0.004404942970722914, + -0.031630102545022964, + 0.01130324974656105, + 0.0380416102707386, + -0.06335519254207611, + 0.05399914085865021, + 0.015648826956748962, + -0.0017319974722340703, + 0.014805832877755165, + 0.07594074308872223, + 0.015910036861896515, + 0.016337471082806587, + -0.03174883499741554, + -0.004025002010166645, + -0.02359197288751602, + 0.013392927125096321, + -0.12671038508415222, + -0.023698830977082253, + 0.02818688564002514, + -0.03941889852285385, + 0.016515567898750305, + 0.02476741559803486, + -0.018059078603982925, + 0.05167200043797493, + 0.006749892607331276, + -0.06910180300474167, + 0.043930698186159134, + 0.03823158144950867, + -0.02399566024541855, + -0.01067397277802229, + -0.014057823456823826, + -0.06549236178398132, + -0.030751489102840424, + -0.0005895767244510353, + 0.03718674182891846, + 0.040226273238658905, + 0.030229071155190468, + -0.013381053693592548, + -0.2399328500032425, + 0.009629134088754654, + -0.016693666577339172, + 0.011208265088498592, + -0.012229356914758682, + 0.014390272088348866, + 0.0672495886683464, + 0.008293403312563896, + -0.034764617681503296, + 0.01017529983073473, + -0.08539178222417831, + 0.001256329007446766, + 0.047350168228149414, + 0.0006678653880953789, + -0.0015019549755379558, + 0.016337471082806587, + 0.0474214106798172, + -0.04250591993331909, + 0.00011659815936582163, + 0.07052658498287201, + -0.012478693388402462, + 0.015363872051239014, + 0.03623688966035843, + 0.023639464750885963, + -0.0435745045542717, + -0.018403401598334312, + 0.01885458081960678, + 0.02982538379728794, + -0.0050401571206748486, + 0.04784884303808212, + -0.011332932859659195, + -0.009540085680782795, + -0.01741792820394039, + -0.0019175156485289335, + 0.011778176762163639, + -0.020659301429986954, + 0.03402848169207573, + -0.04324205592274666, + -0.010015011765062809, + 0.037471700459718704, + 0.050817131996154785, + 0.002781288232654333, + -0.0474214106798172, + -0.09612511843442917, + -0.045141760259866714, + 0.030727744102478027, + 0.05993572250008583, + -0.07180888205766678, + 0.02399566024541855, + -0.07418351620435715, + 0.0463053323328495, + 0.0030959269497543573, + 0.04131860285997391, + 0.013476039282977581, + -0.008786140009760857, + 0.004692867398262024, + 0.003781602019444108, + 0.011475411243736744, + 0.07784044742584229, + -0.07641567289829254, + 0.03160635754466057, + 0.017619771882891655, + 0.03588069602847099, + 0.0203980915248394, + -0.04867996275424957, + -0.016278104856610298, + -0.014461511746048927, + 0.04034500569105148, + -0.06824693828821182, + 0.024138137698173523, + -0.04433438554406166, + -0.02961166575551033, + 0.05585135519504547, + -0.03450340777635574, + 0.03991756960749626, + 0.04507052153348923, + 0.023283271118998528, + 0.010822387412190437, + 0.01809469796717167, + 0.02939794957637787, + 0.015862544998526573, + -0.005250906106084585, + -0.007877842523157597, + -0.02443496696650982, + 0.011534776538610458, + -0.026168448850512505, + -0.036973025649785995, + -0.0034847729839384556, + 0.022404655814170837, + -0.029896622523665428, + -0.013642262667417526, + -0.0418885163962841, + 0.0710964947938919, + 0.06525489687919617, + -0.043693237006664276, + 0.058036014437675476, + -0.030798982828855515, + 0.013535404577851295, + 0.023010188713669777, + 0.040178779512643814, + -0.020611809566617012, + 0.013618516735732555, + -0.02707080915570259, + -0.05133955180644989, + 0.035097066313028336, + 0.011166708543896675, + 0.09384547173976898, + 0.046732764691114426, + -0.0019605557899922132, + -0.012395581230521202, + -0.045759167522192, + 0.07803042232990265, + -0.006393697578459978, + -0.017216084524989128, + -0.020314980298280716, + -0.05509147047996521, + -0.036141905933618546, + -0.037851639091968536, + 0.015197647735476494, + 0.07247377932071686, + 0.04390695318579674, + -0.02018437534570694, + -0.08420446515083313, + -0.06155047193169594, + 0.052859317511320114, + -0.016313724219799042, + 0.00657773157581687, + -0.02790193073451519, + -0.05314427241683006, + -0.050864625722169876, + -0.004013128578662872, + -0.029635412618517876, + 0.024114392697811127, + -0.04780134931206703, + -0.01741792820394039, + -0.02481490932404995, + 0.03578570857644081, + 0.055946338921785355, + -0.06373513489961624, + -0.003977509215474129, + -0.08429945260286331, + -0.0397038534283638, + -0.02894676849246025, + 0.007307931315153837, + 0.0717139020562172, + 0.10391391068696976, + 0.03374352678656578, + 0.04924987629055977, + 0.06720209866762161, + 0.054236605763435364, + -0.011647571809589863, + -0.001895253430120647, + 0.01604064181447029, + -0.03756668418645859, + 0.09849975258111954, + -0.0014730141265317798, + 0.00992596335709095, + 0.027450749650597572, + 0.002249964280053973, + -0.014449638314545155, + 0.09897467494010925, + -0.01864086464047432, + -0.006821131333708763, + 0.017334816977381706, + -0.04200724884867668, + -0.059033360332250595, + -0.008156862109899521, + -0.018379654735326767, + 0.040226273238658905, + -0.013998458161950111, + -0.018450893461704254, + 0.11740182340145111, + 0.007646316196769476, + 0.027711959555745125, + 0.06515990942716599, + 0.040724944323301315, + -0.06188292056322098, + 0.060458142310380936, + -0.07209383696317673, + 0.012811142019927502, + -0.006227473262697458, + -0.06254781782627106, + 0.015150154940783978, + 0.015803178772330284, + 0.041936006397008896, + -0.008174671791493893, + 0.03770916163921356, + -0.009813168086111546, + -0.006185917183756828, + -0.007996574975550175, + -0.040511228144168854, + 0.03210502862930298, + 0.05010474473237991, + -0.04146108031272888, + -0.040273766964673996, + -0.010798640549182892, + 0.009700373746454716, + -0.07313867658376694, + 0.04438187927007675, + -0.04207848757505417, + -0.0154351107776165, + 0.06435253471136093, + 0.030229071155190468, + -0.0871015191078186, + -0.021217340603470802, + 0.049487337470054626, + -0.029706651344895363, + -0.023627592250704765, + 0.025598537176847458, + -0.006292775738984346, + 0.03770916163921356, + -0.02547980472445488, + -0.035761963576078415, + -0.017334816977381706, + 0.06653720140457153, + 0.016088133677840233, + -0.0007598823867738247, + 0.051149580627679825, + -0.0485137403011322, + 0.023734450340270996, + 0.045759167522192, + 0.017952220514416695, + 0.014924564398825169, + 0.02387692965567112, + 0.04509427025914192, + 0.004862059839069843, + -0.062452830374240875, + -0.027664467692375183, + -0.04112863168120384, + 0.02354448102414608, + 0.05931831896305084, + 0.02227405272424221, + 0.007290121633559465, + 0.05741861090064049, + -0.010727401822805405, + 0.04065370559692383, + -0.0794077068567276, + 0.07138144969940186, + -0.00907109584659338, + 0.04404943063855171, + 0.0032977706287056208, + 0.0014366526156663895, + -0.030585264787077904, + -0.033054884523153305, + -0.006257156375795603, + 0.06834191828966141, + 0.011825669556856155, + 0.04682775214314461, + -0.0755133107304573, + 0.06131300702691078, + 0.012787395156919956, + 0.08743396401405334, + -0.007753174751996994, + -0.006364014931023121, + 0.0032324683852493763, + 0.04830002412199974, + 0.00592767633497715, + -0.07850534468889236, + 0.007877842523157597, + -0.07228381186723709, + 0.001074521103873849, + -0.055613890290260315, + -0.09308558702468872, + 0.024577444419264793, + 0.0015405428130179644, + 0.01782161556184292, + -0.0018967376090586185, + -0.006726146209985018, + 0.037020519375801086, + -0.008608042262494564, + 0.010685846209526062, + -0.029540427029132843, + 0.02773570641875267, + -0.030751489102840424, + 0.056278787553310394, + 0.034717123955488205, + -0.013143590651452541, + -0.06772451847791672, + 0.0700516551733017, + -0.033601049333810806, + -0.009688500314950943, + -0.031178923323750496, + -0.062832772731781, + 0.006429317407310009, + 0.025503551587462425, + 0.03060901165008545, + -0.07432599365711212, + 0.02431623637676239, + 0.035144560039043427, + 0.012407454662024975, + -0.03894397243857384, + -0.006488683167845011, + 0.03870650753378868, + 0.0413423515856266, + 0.005808944348245859, + 0.027260780334472656, + -0.05946079641580582, + 0.02255900762975216, + 0.07532334327697754, + -0.003968604374676943, + -0.05760858207941055, + -0.03611815720796585, + -0.10885314643383026, + 0.0023033933248370886, + 0.08472688496112823, + 0.05091211944818497, + 0.06473247706890106, + 0.07651065289974213, + -0.0650649294257164, + 0.08501183986663818, + -0.02690458483994007, + 0.08125992119312286, + -0.04224471002817154, + 0.0007806604262441397, + -0.03633187711238861, + -0.012253102846443653, + 0.12927499413490295, + -0.07598823308944702, + -0.009724119678139687, + -0.07983513921499252, + -0.11274754256010056, + -0.0005906898295506835, + -0.08672157675027847, + -0.05395164713263512, + 0.05504398047924042, + 0.019994404166936874, + 0.012312469072639942, + 0.0190208051353693, + 0.03374352678656578, + 0.008673344738781452, + 0.015541968867182732, + -0.027949422597885132, + -0.015530095435678959, + 0.06197790428996086, + 0.01897331327199936, + -0.1080932691693306, + -0.00277831987477839, + -0.03483585640788078, + 0.025836000218987465, + 0.030229071155190468, + 0.032294999808073044, + -0.03466963395476341, + 0.014805832877755165, + -0.08828883618116379, + -0.060790590941905975, + -0.0004689898923970759, + 0.0008919712854549289, + 0.06050563231110573, + 0.10277409106492996, + -0.022796470671892166, + -0.04476182162761688, + -0.005716927349567413, + 0.03899146243929863, + -0.01830841600894928, + 0.04283836856484413, + -0.012763649225234985, + -0.08572422713041306, + -0.04146108031272888, + 0.017524786293506622, + -0.004499928560107946, + 0.03991756960749626, + -0.042648397386074066, + -0.0017052828334271908, + -0.07513336837291718, + 0.026263434439897537, + 0.030252816155552864, + -0.05775105953216553, + -0.006346205249428749, + -0.05646875873208046, + -0.04174603894352913, + 0.0037756655365228653, + -0.011297313496470451, + -0.04713645204901695, + -0.010216855444014072, + 0.01864086464047432, + 0.0407961830496788, + -0.016016894951462746, + -0.0101990457624197, + -0.04067745432257652, + 0.014877071604132652, + 0.0330786295235157, + -0.018225302919745445, + 0.044263146817684174, + -0.0016563060926273465, + -0.08111744374036789, + 0.008596168830990791, + 0.011706938035786152, + -0.010495875030755997, + 0.01273990236222744, + -0.07123897224664688, + -0.02823437936604023, + 0.028970515355467796, + 0.017987839877605438, + -0.00942729040980339, + 0.04697022959589958, + 0.07019413262605667, + -0.005918771028518677, + -0.040060047060251236, + -0.008305276744067669, + 0.012288722209632397, + 0.02057619020342827, + 0.07180888205766678, + 0.003416502382606268 + ] + }, + { + "id": "b30753ce-d528-4646-815c-f72cf0a80c98", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "esmith", + "reviewDate": "2021-12-07T05:51:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7e3986d6-1ae6-465e-bc6c-3c62dd18713a", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "gonzalesashley", + "reviewDate": "2022-02-20T20:39:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5e1f926b-74cb-4b82-8496-491ec9ca783b", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "palmerconnie", + "reviewDate": "2021-12-09T01:54:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9845aadf-0711-466e-92c6-c7c80b78a838", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "zamorakerri", + "reviewDate": "2022-10-03T18:08:05", + "stars": 1, + "verifiedUser": false + }, + { + "id": "961cfa3a-dd1d-48a1-b55b-eba45641f4bc", + "productId": "15e36ecf-ce42-46d7-bb2c-8a530d38ccb4", + "category": "Accessory", + "docType": "customerRating", + "userName": "oliverruth", + "reviewDate": "2022-09-05T21:33:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "76049698-2114-412b-9fc8-55748ea6056c", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "product", + "name": "Amazing TV 3000 (Silver)", + "description": "This Amazing TV 3000 (Silver) is an amazing movie. It's got something for everyone. And what better way than to see it. Let's all enjoy this amazing movie.\"\n\n\"I'm really pleased to say that this series is now my favorite TV that's ever aired so I thought that by the time it started with episodes 5-6", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-09-15T13:35:22", + "price": 600.58, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-01-04T22:36:13", + "newPrice": 542.83 + }, + { + "priceDate": "2021-07-24T22:36:13", + "newPrice": 632.48 + }, + { + "priceDate": "2022-02-10T22:36:13", + "newPrice": 599.65 + }, + { + "priceDate": "2022-08-30T22:36:13", + "newPrice": 620.96 + }, + { + "priceDate": "2025-03-06T22:36:13", + "newPrice": 600.58 + } + ], + "descriptionVector": [ + 0.039491940289735794, + 0.051444459706544876, + -0.05446458235383034, + 0.031711287796497345, + -0.045890506356954575, + -0.022663716226816177, + -0.0951082706451416, + 0.021588757634162903, + 0.058662042021751404, + 0.08702047914266586, + 0.08983585238456726, + -0.039594318717718124, + 0.04791245236992836, + 0.031045837327837944, + -0.019861144945025444, + -0.023124413564801216, + -0.036395035684108734, + 0.027769770473241806, + -0.032760653644800186, + 0.008452503941953182, + 0.021716728806495667, + 0.0029065480921417475, + 0.03900565207004547, + 0.04182101786136627, + 0.020501000806689262, + -0.040925219655036926, + -0.024813633412122726, + 0.039415158331394196, + -0.04130913317203522, + -0.08661097288131714, + -0.0024458514526486397, + 0.031890448182821274, + 0.050702229142189026, + 0.010224906727671623, + -0.032632678747177124, + 0.005813096184283495, + 0.0033816415816545486, + 0.0674152821302414, + -0.008138974197208881, + 0.050702229142189026, + 0.030559545382857323, + 0.027027538046240807, + 0.001841187011450529, + 0.03360526263713837, + 0.03324694186449051, + 0.010768784210085869, + -0.0377771258354187, + -0.0937773659825325, + 0.002301883650943637, + 0.02715550921857357, + -0.030329197645187378, + -0.02321399375796318, + -0.01983555033802986, + -0.023585109040141106, + -0.025952579453587532, + 0.02047540806233883, + 0.006660906132310629, + -0.1358543336391449, + 0.04315192252397537, + -0.05400388687849045, + 0.023981820791959763, + 0.006846464239060879, + 0.0489618182182312, + 0.0018539841985329986, + -0.02922864444553852, + -0.02332916669547558, + -0.008548482321202755, + -0.0005858686054125428, + -0.03647181764245033, + -0.009988159872591496, + 0.007838241755962372, + -0.02236938290297985, + 0.012406816706061363, + 0.0560002401471138, + 0.033963583409786224, + 0.016482703387737274, + 0.09249765425920486, + 0.01804395206272602, + -0.04097640886902809, + -0.054720524698495865, + 0.013936074450612068, + 0.06316663324832916, + 0.05518122389912605, + 0.031429748982191086, + 0.03552483022212982, + 0.06854142248630524, + -0.04960167407989502, + -0.1146622821688652, + -0.054822903126478195, + 0.034731410443782806, + -0.011056720279157162, + 0.0688997432589531, + -0.003717566141858697, + -0.1285855621099472, + -0.05152124539017677, + 0.04719581454992294, + -0.020923307165503502, + 0.025875795632600784, + -0.01405124831944704, + 0.044406041502952576, + 0.04141151160001755, + -0.08164568990468979, + 0.014064045622944832, + -0.10442458093166351, + -0.04425247386097908, + -0.06434396654367447, + -0.025760622695088387, + 0.045148272067308426, + -0.03404036536812782, + -0.14322547614574432, + -0.013245029374957085, + -0.03956872597336769, + -0.03683013841509819, + -0.019681984558701515, + 0.024749647825956345, + 0.0013373000547289848, + -0.10181396454572678, + -0.03723964840173721, + -0.00010002756607718766, + -0.055949050933122635, + -0.005646733567118645, + -0.014972642064094543, + -0.08906802535057068, + -0.0015972417313605547, + -0.008868411183357239, + 0.022113440558314323, + -0.01284191943705082, + 0.05861085280776024, + 0.017148153856396675, + -0.04256325215101242, + -0.05630737170577049, + 0.018351083621382713, + 0.030329197645187378, + 0.09423806518316269, + -0.039517536759376526, + 0.06004413217306137, + -0.11107908189296722, + 0.01559970062226057, + -0.019298071041703224, + -0.0003095305582974106, + 0.002941740211099386, + 0.03816103935241699, + 0.036958109587430954, + -0.02248455584049225, + 0.00659692008048296, + 0.04315192252397537, + -0.019157303497195244, + -0.04049011692404747, + 0.001730811782181263, + 0.004629361443221569, + 0.0644463449716568, + -0.0080941841006279, + -0.07627089321613312, + -0.07939339429140091, + 0.051137328147888184, + 0.035268887877464294, + -0.0393383763730526, + -0.04235849902033806, + -0.04322870448231697, + 0.05518122389912605, + -0.0908084288239479, + -0.023546718060970306, + -0.09771887958049774, + 0.09275359660387039, + 0.07412097603082657, + -0.05085579305887222, + 0.060658395290374756, + 0.011869337409734726, + -0.06869499385356903, + 0.007479922380298376, + 0.009700223803520203, + -0.05149564892053604, + 0.0629618763923645, + -0.040925219655036926, + 0.008702048100531101, + 0.034731410443782806, + 0.059225115925073624, + -0.018939752131700516, + -0.1022234708070755, + -0.011197488754987717, + -0.059788189828395844, + 0.04409890994429588, + -0.01755766198039055, + 0.018351083621382713, + 0.005704320501536131, + 0.06275712698698044, + 0.04018298536539078, + -0.00087820301996544, + 0.015062221325933933, + -0.0037655553314834833, + 0.05287773907184601, + 0.035473644733428955, + 0.04563456401228905, + -0.08374441415071487, + 0.014870264567434788, + 0.059429869055747986, + 0.012681955471634865, + -0.05963462218642235, + -0.004613365046679974, + 0.025235939770936966, + -0.024749647825956345, + -0.037521183490753174, + 0.12172629684209824, + -0.08476818352937698, + 0.006648108828812838, + -0.06465110182762146, + -0.027692988514900208, + 0.049550484865903854, + 0.05141886696219444, + 0.049371324479579926, + -0.004159067291766405, + 0.01723773404955864, + -0.016559485346078873, + 0.008164568804204464, + 0.04287038370966911, + -0.021012887358665466, + -0.055846672505140305, + 0.0419233962893486, + 0.016623470932245255, + -0.01910611428320408, + 0.05968581140041351, + -0.07811368256807327, + 0.029919689521193504, + 0.010787980630993843, + 0.05456696078181267, + -0.025351114571094513, + 0.035371266305446625, + -0.018031155690550804, + 0.029151860624551773, + 0.03764915466308594, + -0.10125088691711426, + -0.0087212435901165, + -0.10657449811697006, + 0.058201346546411514, + -0.05195634439587593, + 0.03388679772615433, + 0.035268887877464294, + -0.009751413017511368, + -0.04624882712960243, + 0.032171983271837234, + -0.02677159570157528, + 0.021409597247838974, + 0.035755179822444916, + -0.06383208185434341, + 0.06951400637626648, + 0.00509965606033802, + 0.05262179672718048, + 0.05620499327778816, + -0.00652653630822897, + -0.005976259708404541, + 0.01074958872050047, + 0.01470390148460865, + 0.0195924062281847, + 0.0519307516515255, + 0.01663626916706562, + 0.01854304037988186, + 0.051265303045511246, + 0.0047861263155937195, + -0.020692959427833557, + -0.015036627650260925, + -0.13933514058589935, + 0.0362926609814167, + 0.03345169499516487, + 0.04696546494960785, + -0.0038167438469827175, + 0.04773329198360443, + -0.025696637108922005, + -0.07345552742481232, + -0.03247911483049393, + 0.022906862199306488, + -0.019042128697037697, + 0.004277440719306469, + 0.01099273469299078, + 0.004136672243475914, + -0.010007355362176895, + -0.057740647345781326, + 0.0280769020318985, + 0.01776241511106491, + 0.045148272067308426, + -0.0280001200735569, + 0.030405979603528976, + -0.006603318732231855, + 0.007831843569874763, + 0.012368425726890564, + 0.0460696667432785, + -0.040259771049022675, + 0.0065393331460654736, + -0.04678630456328392, + 0.003717566141858697, + 0.0009765810100361705, + -0.053133681416511536, + -0.022151831537485123, + 0.07565663009881973, + 0.012342831119894981, + 0.0742233544588089, + 0.01635473221540451, + 0.02578621543943882, + 0.009757811203598976, + 0.01018651481717825, + -0.03675335645675659, + 0.08098023384809494, + -0.0007710270583629608, + -0.005221229046583176, + -0.0476309172809124, + -0.09725818783044815, + 0.049550484865903854, + -0.004139871336519718, + 0.01343698613345623, + -0.06239880248904228, + -0.08333490788936615, + -0.020181072875857353, + -0.055385977029800415, + -0.016405919566750526, + -0.017071370035409927, + 0.00032192780054174364, + 0.0005286814412102103, + 0.01347537711262703, + 0.008535685017704964, + 0.012054895982146263, + -0.01751927100121975, + 0.10882679373025894, + -0.016277948394417763, + -0.06434396654367447, + 0.02110246755182743, + 0.024954402819275856, + 0.018798982724547386, + 0.051725998520851135, + -0.060453638434410095, + 0.03258149325847626, + 0.051162924617528915, + 0.0032120796386152506, + 0.039312783628702164, + 0.006968037225306034, + 0.07790892571210861, + 0.027641799300909042, + -0.13165687024593353, + -0.015394946560263634, + -0.004050291609019041, + 0.04455960541963577, + 0.005861085373908281, + 0.033963583409786224, + -0.02286847122013569, + 0.021166453137993813, + 0.014358379878103733, + -0.014857467263936996, + -0.01671305112540722, + -0.0032792645506560802, + 0.014396770857274532, + 0.01579165831208229, + -0.021639946848154068, + 0.001702018198557198, + -0.009981760755181313, + -0.02568383887410164, + 0.01074958872050047, + 0.04445722699165344, + 0.0420001782476902, + -0.034629032015800476, + -0.012323635630309582, + 0.0323767364025116, + 0.06291069090366364, + 0.05461814999580383, + 0.016943398863077164, + -0.012144476175308228, + 0.03148093819618225, + -0.007422334980219603, + 0.0003697170759551227, + -0.0010381671600043774, + 0.02208784595131874, + -0.02894710749387741, + -0.07806248962879181, + 0.062245238572359085, + -0.05251941829919815, + -0.0771922841668129, + 0.0014956644736230373, + -0.01991233415901661, + -0.005605142563581467, + 0.042332906275987625, + 0.010519240982830524, + 0.019899535924196243, + 0.030508356168866158, + -0.06265474855899811, + 0.008042995817959309, + 0.010000957176089287, + 0.023469936102628708, + -0.03880089521408081, + 0.024352937936782837, + 0.025274330750107765, + -0.030892271548509598, + -0.09029654413461685, + 0.04210255667567253, + -0.09495469927787781, + 0.005685125011950731, + -0.029894094914197922, + -0.027129914611577988, + 0.04663274064660072, + -0.0365230068564415, + 0.04435485228896141, + 0.04978083446621895, + 0.04681190103292465, + -0.017007384449243546, + 0.010973538272082806, + 0.010512841865420341, + 0.0489618182182312, + -0.010954342782497406, + -0.053031306713819504, + -0.05579548329114914, + -0.0067120944149792194, + 0.05477171391248703, + -0.010839168913662434, + -0.04404772073030472, + -0.06506060808897018, + -0.026822783052921295, + -0.03130177780985832, + -0.01405124831944704, + -0.0016268350882455707, + 0.056972820311784744, + 0.05804777890443802, + 0.03560161590576172, + 0.05195634439587593, + -0.05620499327778816, + 0.03700929880142212, + 0.06536773592233658, + 0.047298189252614975, + -0.0010237704264000058, + 0.0017756017623469234, + 0.03250470757484436, + 0.053594380617141724, + -0.008183764293789864, + -0.03468022122979164, + -0.030405979603528976, + 0.03475700318813324, + -0.02578621543943882, + 0.009725818410515785, + 0.0287423525005579, + -0.02912626788020134, + 0.030585139989852905, + -0.049576081335544586, + 0.02332916669547558, + 0.025875795632600784, + 0.02180630899965763, + -0.022676514461636543, + -0.04686309024691582, + -0.0504462830722332, + 0.07463286072015762, + -0.013782508671283722, + 0.04238409176468849, + 0.058303721249103546, + 0.04653036221861839, + -0.015292569994926453, + -0.06040245294570923, + -0.03242792561650276, + -0.020283451303839684, + -0.04555778205394745, + 0.044687576591968536, + -0.0083693228662014, + 0.01405124831944704, + 0.017570458352565765, + 0.07708990573883057, + -0.017826400697231293, + 0.042716819792985916, + 0.05385032296180725, + 0.09326548129320145, + 0.009053968824446201, + -0.030098848044872284, + 0.027206698432564735, + -0.005893078166991472, + -0.020782537758350372, + -0.003832740243524313, + 0.031634505838155746, + 0.019758768379688263, + -0.05779183655977249, + 0.000807418895419687, + -0.0754006877541542, + 0.01565088890492916, + -0.005454776342958212, + -0.03411714732646942, + 0.04906419664621353, + 0.05057425796985626, + 0.02005310170352459, + 0.054925281554460526, + -0.0012085288763046265, + -0.02753942273557186, + 0.047400567680597305, + 0.024224966764450073, + 0.030610734596848488, + 0.08328372240066528, + -0.008119778707623482, + 0.021051278337836266, + -0.022804485633969307, + 0.01522858440876007, + 0.005605142563581467, + -0.04310073330998421, + -0.010090536437928677, + -0.012336432933807373, + -0.061119090765714645, + 0.003823142498731613, + -0.03672776371240616, + 0.039312783628702164, + -0.022151831537485123, + 0.009508267045021057, + -0.05513003468513489, + 0.06567487120628357, + -0.08185043931007385, + 0.06613556295633316, + -0.04781007766723633, + -0.0040982807986438274, + 0.014192016795277596, + -0.0037751533091068268, + -0.020104290917515755, + 0.033221349120140076, + 0.006846464239060879, + 0.08492175489664078 + ] + }, + { + "id": "b3088558-5843-46f1-90e8-5759bdd891ab", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "williamsantos", + "reviewDate": "2021-10-30T14:37:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "791386bc-d44f-45ce-814f-589dcdc06809", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "prattdavid", + "reviewDate": "2021-03-16T12:46:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5548e883-afc7-4637-b3f3-20dbb9f90765", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "riosstacy", + "reviewDate": "2022-08-31T05:56:33", + "stars": 2, + "verifiedUser": false + }, + { + "id": "08ab26bf-9259-479c-b3a0-7e32f58c39e3", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "francisco79", + "reviewDate": "2021-01-04T22:36:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ca03ac8d-10db-4f26-9544-365493cd7afa", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "sedwards", + "reviewDate": "2021-08-01T19:38:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5dbac7d8-4fe6-4495-8cf8-871fa45e5b47", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "marymcpherson", + "reviewDate": "2021-04-22T21:52:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2a44b42b-baec-4210-8df3-72942450d706", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "jacksonkimberly", + "reviewDate": "2022-07-04T00:49:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ceb41115-27b3-498b-8396-d497655495ab", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "williamsjesus", + "reviewDate": "2021-06-30T00:51:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3ef261f0-bcbe-4f62-a4da-bce14b50ddfa", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "zbarber", + "reviewDate": "2022-05-17T19:49:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b327099a-ddf2-44a4-9c58-77f63b134b03", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "danielwilliams", + "reviewDate": "2021-12-07T06:45:13", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c45558da-fef2-4d67-b195-fc405f19db25", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "elizabethbryant", + "reviewDate": "2022-01-24T05:47:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f4a032c9-86c0-407c-a3a8-8d7f6705a693", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "yjohnson", + "reviewDate": "2021-06-07T04:33:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "3d5cd2d2-f09b-4b0e-91dd-0112b6cbe17a", + "productId": "76049698-2114-412b-9fc8-55748ea6056c", + "category": "Media", + "docType": "customerRating", + "userName": "taylortom", + "reviewDate": "2021-02-20T12:49:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "productId": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard Mini (Red)", + "description": "This Awesome Keyboard Mini (Red) is designed with ease of use and customization in mind. The Mini is designed to be used wherever you are working with keyboards and with ease of interaction.\n\n\"With the help of a large number of independent suppliers throughout the world, our system is able to accommodate as many as 12 keyboards, the most advanced keyboards imaginable.\" – Tim C.\n\nThe Mini is available in black or gray with a white, or a blue.\n", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2020-10-29T09:22:00", + "price": 545.54, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-05-26T15:50:24", + "newPrice": 511.15 + }, + { + "priceDate": "2021-06-17T15:50:24", + "newPrice": 495.53 + }, + { + "priceDate": "2023-04-05T15:50:24", + "newPrice": 545.54 + } + ], + "descriptionVector": [ + -0.016814831644296646, + 0.01119935978204012, + -0.049143269658088684, + -0.005299640353769064, + -0.009575989097356796, + -0.024571634829044342, + 0.020377401262521744, + 0.021640725433826447, + -0.019973138347268105, + 0.04085586965084076, + -0.011540456674993038, + -0.02381364069879055, + 0.009607572108507156, + -0.05412076413631439, + 0.05730433762073517, + 0.04916853457689285, + -0.05922458693385124, + 0.005738645326346159, + -0.04681875556707382, + 0.026176055893301964, + 0.03585311025381088, + -0.03337699547410011, + -0.10571487993001938, + 0.003909985069185495, + 0.02209552191197872, + 0.0012878000270575285, + -0.020566901192069054, + -0.0018681390210986137, + -0.0452522337436676, + 0.018532950431108475, + 0.034766651690006256, + -0.03926408290863037, + -0.017219094559550285, + 0.017661256715655327, + -0.010889844968914986, + -0.03039555437862873, + -0.0560915470123291, + 0.00456691300496459, + -0.02294194884598255, + 0.0730200782418251, + 0.047955743968486786, + 0.002520329551771283, + 0.009575989097356796, + -0.0006411364884115756, + -0.012664814479649067, + 0.0795893594622612, + -0.01974574103951454, + -0.03590364381670952, + -0.001969204982742667, + 0.004661662504076958, + 0.05194784700870514, + 0.02575915865600109, + -0.010908795520663261, + -0.002138174371793866, + 0.0007974727195687592, + -0.017130661755800247, + 0.0002151597145712003, + 0.0988929346203804, + 0.09358697384595871, + -0.11268842220306396, + 0.006272399332374334, + -0.05518195405602455, + 0.023775741457939148, + -0.03822815790772438, + 0.040375806391239166, + -0.03107774816453457, + -0.07590045034885406, + -0.052402641624212265, + 0.033452797681093216, + 0.03587837517261505, + -0.0675625205039978, + 0.028222639113664627, + -0.03643424063920975, + 0.07984202355146408, + 0.010883528739213943, + -0.006231341511011124, + 0.09980252385139465, + 0.02766677550971508, + 0.02015000395476818, + 0.024622168391942978, + 0.02167862467467785, + -0.018305551260709763, + 0.00910224299877882, + -0.10192491114139557, + -0.019278310239315033, + -0.031911540776491165, + 0.023712575435638428, + -0.1096564456820488, + -0.030446087941527367, + 0.0657433345913887, + -0.10814046114683151, + 0.00462060421705246, + -0.0012451627990230918, + -0.012860629707574844, + 0.04383731260895729, + -0.01441451720893383, + -0.05659687519073486, + 0.020971164107322693, + 0.012892212718725204, + -0.03416025638580322, + 0.024710601195693016, + 0.023523077368736267, + -0.0274141114205122, + -0.04532803222537041, + 0.02368730865418911, + 0.06175123527646065, + 0.07574885338544846, + 0.04229605942964554, + -0.041184332221746445, + -0.10834258794784546, + 0.021893389523029327, + 0.001774969045072794, + -0.024331603199243546, + 0.0349687822163105, + -0.04608602821826935, + 0.02036476880311966, + -0.04980019852519035, + -0.016347400844097137, + -0.008350566029548645, + -0.019568875432014465, + 0.05619261413812637, + 0.026908783242106438, + -0.008830628357827663, + 0.05624314397573471, + -0.06705719232559204, + -0.02265138365328312, + -0.02553175948560238, + 0.027767842635512352, + 0.039188284426927567, + -0.02794470824301243, + -0.030496619641780853, + 0.08130747824907303, + 0.040350541472435, + 0.06372202187776566, + 0.006695612333714962, + 0.05508088693022728, + 0.054474491626024246, + 0.13724742829799652, + -0.05311010405421257, + 0.02400313876569271, + 0.021286994218826294, + -0.002283456502482295, + -0.047425150871276855, + -0.0156652070581913, + -0.139875128865242, + 0.03926408290863037, + -0.04333198443055153, + 0.0856027752161026, + 0.009689688682556152, + 0.06842157989740372, + 0.0012159484904259443, + -0.06963437050580978, + -0.011395175009965897, + -0.04995179548859596, + 0.03390759229660034, + 0.07403073459863663, + -0.06988703459501266, + 0.010902478359639645, + -0.00463639572262764, + 0.07979148626327515, + -0.002504538046196103, + 0.03170941025018692, + 0.03246740251779556, + -0.007971568964421749, + -0.033478062599897385, + 0.002907222369685769, + 0.02161545865237713, + 0.022032355889678, + -0.038935620337724686, + 0.02237345278263092, + -0.023169346153736115, + 0.03681323677301407, + 0.062307097017765045, + -0.03989574313163757, + 0.04148752987384796, + 0.010769830085337162, + 0.028803767636418343, + -0.05568728223443031, + -0.007504139561206102, + -0.049269601702690125, + 0.0027493068482726812, + 0.06058897823095322, + -0.04095693677663803, + 0.057102203369140625, + 0.08054948598146439, + 0.026908783242106438, + -0.012866945937275887, + -0.0031804160680621862, + 0.006041842978447676, + 0.023144079372286797, + 0.04689455404877663, + 0.011167776770889759, + -0.06063951179385185, + 0.044671107083559036, + 0.05437342822551727, + 0.06786572188138962, + 0.03264426812529564, + 0.025266462936997414, + 0.02625185437500477, + 0.024420036002993584, + -0.02989022433757782, + 0.054878756403923035, + 0.008072635158896446, + -0.023775741457939148, + 0.043256182223558426, + 0.0024871674831956625, + -0.03479192033410072, + 0.011761538684368134, + 0.07782070338726044, + -0.00783260352909565, + 0.021312261000275612, + -0.00991708692163229, + -0.0051164585165679455, + -0.04947173222899437, + 0.03800075873732567, + 0.01137622445821762, + 0.004011050797998905, + -0.01744649186730385, + -0.005299640353769064, + -0.03706590086221695, + 0.03810182586312294, + 0.040931668132543564, + 0.0025724417064338923, + -0.01801498793065548, + -0.03891035169363022, + -0.029460694640874863, + 0.02559492737054825, + 0.008647446520626545, + 0.06665293127298355, + 0.0776185691356659, + -0.10692767053842545, + -0.02872796729207039, + -0.020983796566724777, + -0.009639155119657516, + -0.03486771881580353, + 0.0002131857763743028, + 0.010637180879712105, + -0.03676270321011543, + -0.08024628460407257, + 0.07059449702501297, + -0.004971176385879517, + 0.008685346692800522, + -0.06609706580638885, + -0.015235676430165768, + 0.07013969868421555, + -0.006626129616051912, + 0.039339881390333176, + 0.01788865588605404, + -0.097629614174366, + 0.004150016233325005, + -0.09383963793516159, + 0.06351988762617111, + 0.025733891874551773, + 0.06478320807218552, + -0.027843641117215157, + 0.06331775337457657, + 0.04411524534225464, + 0.01689063012599945, + 0.026302387937903404, + -0.06983650475740433, + 0.028879566118121147, + -0.011944720521569252, + -0.05144251883029938, + 0.058517128229141235, + -0.045479632914066315, + 0.0031298829708248377, + 0.06195336580276489, + -0.08474371582269669, + 0.008533747866749763, + 0.07428339868783951, + 0.036232106387615204, + -0.028273170813918114, + 0.023384111002087593, + -0.03054715320467949, + -0.032947465777397156, + -0.02961229346692562, + -0.038177624344825745, + 0.06185229867696762, + -0.005729170516133308, + -0.017977088689804077, + 0.03976941108703613, + 0.09459763765335083, + 0.08600703626871109, + -0.024041039869189262, + -0.00684721115976572, + -0.022664016112685204, + -0.02023843675851822, + -0.0035752044059336185, + -0.07928615808486938, + -0.049370668828487396, + -0.044292107224464417, + 0.021362794563174248, + 0.019354110583662987, + 0.0861586406826973, + 0.00920962542295456, + 0.04123486578464508, + 0.031759943813085556, + -0.01814131997525692, + 0.04934540018439293, + 0.011584673076868057, + 0.02779310941696167, + -0.07438446581363678, + -0.05978044867515564, + -0.08398572355508804, + 0.0005633631371892989, + 0.05861819162964821, + -0.10429995507001877, + 0.07266634702682495, + -0.024710601195693016, + -0.012525849044322968, + 0.06463161110877991, + -0.03976941108703613, + -0.026782449334859848, + -0.006262924522161484, + 0.03744489699602127, + -0.04393837973475456, + -0.0059091937728226185, + 0.015121977776288986, + -0.005422814283519983, + -0.019556241109967232, + 0.014591381885111332, + -0.007011443376541138, + -0.142401784658432, + 0.08277293294668198, + -0.003316223155707121, + -0.02728777937591076, + -0.0250011645257473, + -0.009291741997003555, + 0.03208840638399124, + -0.03312433138489723, + -0.08711875975131989, + -0.015046178363263607, + -0.02140069380402565, + -0.003237265395000577, + 0.03587837517261505, + -0.1000046581029892, + -0.004061583895236254, + 0.02118592895567417, + 0.03840502351522446, + 0.05341330170631409, + 0.025089597329497337, + -0.038708221167325974, + 0.037924960255622864, + -0.02832370437681675, + -0.03443818911910057, + -0.07387913763523102, + -0.045479632914066315, + 0.01642320118844509, + 0.015652572736144066, + -0.010845628567039967, + 0.0017260152380913496, + -0.03969361260533333, + 0.06650132685899734, + -0.031759943813085556, + 0.009380173869431019, + -0.02167862467467785, + -0.026832982897758484, + -0.0244453027844429, + 0.008041052147746086, + 0.07857869565486908, + 0.019013013690710068, + -0.011237259022891521, + 0.022891415283083916, + 0.014288184233009815, + 0.0006983808125369251, + 0.003568887710571289, + -0.040350541472435, + 0.02635291963815689, + -0.05871925875544548, + 0.05543461814522743, + 0.006796678528189659, + -0.03956728056073189, + -0.06882584095001221, + 0.07741644233465195, + 0.025582293048501015, + 0.04264978691935539, + -0.013403858058154583, + -0.06619813293218613, + -0.029536494985222816, + 0.03479192033410072, + 0.014326084405183792, + 0.043635182082653046, + -0.07494033128023148, + 0.06311562657356262, + 0.042068660259246826, + -0.037116434425115585, + -0.03931461647152901, + -0.0018365560099482536, + 0.014262918382883072, + -0.006910377647727728, + -0.07559725642204285, + -0.024950630962848663, + -0.030345020815730095, + 0.0409822016954422, + -0.048612672835588455, + -0.037015367299318314, + 0.007320957724004984, + 0.05952778458595276, + 0.03287166729569435, + 0.040780071169137955, + 0.01447768323123455, + 0.06159963458776474, + 0.017800223082304, + -0.011205676011741161, + -0.050962455570697784, + -0.11824704706668854, + -0.02728777937591076, + 0.07893242686986923, + 0.010574014857411385, + -0.033478062599897385, + -0.03875875473022461, + 0.013214359991252422, + -0.07438446581363678, + -0.030243955552577972, + -0.005021709483116865, + 0.024963265284895897, + 0.08969594538211823, + 0.0482589416205883, + 0.016587432473897934, + -0.041841261088848114, + 0.04047687351703644, + -0.039213549345731735, + -0.05149305239319801, + 0.02419263869524002, + -0.03181047737598419, + 0.019884705543518066, + -0.02660558559000492, + 0.013744955882430077, + 0.00883694551885128, + -0.07428339868783951, + 0.03782389312982559, + -0.04022420942783356, + -0.08282346278429031, + -0.009822336956858635, + 0.022474518045783043, + 0.007131459191441536, + -0.07574885338544846, + 0.0196194089949131, + 0.0020497418008744717, + 0.07453606277704239, + -0.002105012070387602, + -0.03337699547410011, + -0.0814085453748703, + 0.010946694761514664, + -0.10344089567661285, + 0.028096307069063187, + -0.03064821846783161, + 0.05078558996319771, + 0.09212151914834976, + -0.023952607065439224, + -0.06953330338001251, + -0.046641889959573746, + -0.04045160487294197, + -0.009512823075056076, + 0.04929486662149429, + -0.03590364381670952, + 0.039339881390333176, + 0.07878082990646362, + -0.02675718441605568, + 0.015437808819115162, + 0.04368571192026138, + 0.04320565238595009, + 0.006872477941215038, + -0.039744146168231964, + -0.01591787114739418, + -0.04532803222537041, + 0.019998405128717422, + 0.016334768384695053, + -0.010643497109413147, + 0.014073419384658337, + -0.025683358311653137, + -0.0018097104039043188, + 0.001793918781913817, + -0.00013294501695781946, + 0.01269008032977581, + -0.06063951179385185, + 0.0049395933747291565, + -0.018292918801307678, + -0.027085646986961365, + 0.002536121057346463, + -0.03320012986660004, + -0.01879824884235859, + -0.006152383517473936, + -0.02315671369433403, + 0.05172044783830643, + -0.005309115629643202, + -0.012759563513100147, + 0.038708221167325974, + 0.0899486094713211, + 0.009335957467556, + 0.035322513431310654, + -0.003534146351739764, + 0.010264500044286251, + -0.06417681276798248, + 0.015147244557738304, + 0.01970783993601799, + -0.07746697217226028, + -0.005391231272369623, + -0.02421790361404419, + 0.02180495671927929, + 0.0017007488058879972, + -0.024167371913790703, + 0.01222265139222145, + 0.019467810168862343, + -0.008590597659349442, + -0.008078951388597488, + -0.022954581305384636, + 0.0675625205039978, + 0.042877186089754105, + -0.06680452823638916, + -0.006834578234702349, + -0.05336276814341545 + ] + }, + { + "id": "72c94ffa-0170-4ad9-a02d-9aa2934cbab7", + "productId": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evansjohn", + "reviewDate": "2021-06-13T15:35:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "31a713b2-8680-480e-a11d-9d12706f7904", + "productId": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vbeck", + "reviewDate": "2021-05-26T15:50:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "06666bd5-5763-40d5-aaed-519752dbdbac", + "productId": "24acb5ec-aeda-4d68-81c9-207bead97ef4", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "egibbs", + "reviewDate": "2021-06-18T12:18:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Super (Silver)", + "description": "This Premium Computer Super (Silver) is still available as an accessory.\n\nIn addition to the standard Super PC, there are further upgrades which will improve the overall operating experience.\n\nCompetitive gaming (PC) is becoming more and more a luxury. We recently saw a big increase in the number of", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-06-10T18:50:23", + "price": 666.85, + "stock": 28, + "priceHistory": [ + { + "priceDate": "2021-01-07T06:51:38", + "newPrice": 641.5 + }, + { + "priceDate": "2022-09-29T06:51:38", + "newPrice": 666.85 + } + ], + "descriptionVector": [ + 0.00607664231210947, + 0.030997013673186302, + -0.04922694340348244, + 0.003922580275684595, + -0.008892460726201534, + -0.03679744526743889, + -0.07181486487388611, + 0.0322246178984642, + 0.06202472001314163, + 0.047047942876815796, + 0.06475614011287689, + -0.044592734426259995, + 0.08053085952997208, + -0.06260783225297928, + 0.011278616264462471, + -0.004776149056851864, + -0.010235153138637543, + -0.028020072728395462, + -0.020807897672057152, + -0.023861562833189964, + 0.014631511643528938, + -0.006510140374302864, + -0.06641340255737305, + -0.0023209399078041315, + -0.017570089548826218, + -0.004123983904719353, + -0.031043048948049545, + 0.019104596227407455, + 0.017079047858715057, + 0.06935965269804001, + 0.02734489180147648, + 0.025165893137454987, + 0.010196790099143982, + 0.004404031205922365, + 0.05769741162657738, + -0.008692974224686623, + -0.03449568897485733, + -0.08943098783493042, + 0.12116456776857376, + -0.02363138645887375, + 0.031887028366327286, + 0.011278616264462471, + -0.0014625757467001677, + 0.008508834056556225, + 0.04404031112790108, + -0.01810716651380062, + -0.029140261933207512, + -0.0034603101667016745, + -0.02587176486849785, + -0.047354843467473984, + -0.028894741088151932, + 0.007315755821764469, + 0.028280939906835556, + 0.05769741162657738, + 0.009989632293581963, + -0.06543131917715073, + 0.023048274219036102, + 0.1211031898856163, + 0.0061226775869727135, + 0.008900132961571217, + -0.01810716651380062, + -0.014892377890646458, + -0.019841158762574196, + -0.01203052420169115, + -0.04772312566637993, + -0.021421698853373528, + -0.0994359701871872, + 0.043825481086969376, + -0.02436795085668564, + 0.0043771774508059025, + -0.0734107494354248, + 0.018920455127954483, + 0.0819426029920578, + 0.03452637791633606, + 0.047569677233695984, + 0.023370521143078804, + 0.10778367519378662, + -0.018153201788663864, + -0.011577845551073551, + -0.03578467294573784, + 0.015237641520798206, + 0.04229097440838814, + -0.026071250438690186, + -0.04130889102816582, + 0.06254645437002182, + 0.026378152891993523, + 0.02685385011136532, + -0.09820836037397385, + -0.00019481028721202165, + -0.00022358227579388767, + 0.003291514702141285, + 0.06227023899555206, + 0.07175348699092865, + -0.0297694094479084, + -0.028142834082245827, + 0.050147645175457, + -0.13626410067081451, + 0.05060799792408943, + -0.02496640756726265, + -0.016710767522454262, + 0.08415228873491287, + -0.072551429271698, + 0.008508834056556225, + -0.018674934282898903, + 0.013403907418251038, + 0.0084014181047678, + 0.00509455893188715, + -0.04219890758395195, + -0.02493571676313877, + -0.08390676975250244, + -0.03148805722594261, + -0.005102231167256832, + 0.0037672114558517933, + 0.011140511371195316, + -0.009245396591722965, + 0.05389183759689331, + -0.0676410123705864, + 0.007618820760399103, + 0.009652040898799896, + 0.017493365332484245, + 0.03753400966525078, + 0.07304246723651886, + 0.08912409096956253, + -0.028066108003258705, + 0.046096548438072205, + -0.012383460998535156, + -0.027636447921395302, + 0.011976816691458225, + 0.037902288138866425, + -0.0651858001947403, + -0.062423691153526306, + 0.06006055325269699, + -0.05284837633371353, + 0.02990751527249813, + -0.02226567640900612, + 0.04640345275402069, + 0.04640345275402069, + 0.1014615148305893, + -0.04143165424466133, + 0.02426053397357464, + -0.07384040951728821, + -0.0011067622108384967, + 0.009237724356353283, + 0.02430656924843788, + -0.0656154602766037, + 0.03756469860672951, + -0.03428085520863533, + 0.0852571353316307, + -0.02605590596795082, + 0.06991207599639893, + 0.056746020913124084, + -0.03532432019710541, + -0.02917095273733139, + -0.033912576735019684, + 0.009866871871054173, + 0.08175846189260483, + -0.04938039183616638, + 0.033667054027318954, + -0.020946001634001732, + 0.07236728817224503, + 0.009460227563977242, + 0.009774801321327686, + -0.08936960995197296, + 0.013894949108362198, + -0.00932979490607977, + -0.0027717009652405977, + 0.0403268076479435, + -0.01427090261131525, + -0.08808062225580215, + 0.008754354901611805, + 0.002453290857374668, + -0.08636198192834854, + -0.029186297208070755, + -0.028127489611506462, + 0.13147644698619843, + 0.08040809631347656, + -0.0032051987946033478, + -0.03431154787540436, + -0.01552919764071703, + -0.03771815076470375, + -0.02748299576342106, + 0.036122262477874756, + -0.09391174465417862, + -0.046833112835884094, + 0.05818845331668854, + -0.012322080321609974, + 0.03480258956551552, + 0.020992036908864975, + 0.04419376328587532, + 0.024598125368356705, + 0.05530358478426933, + -0.026884539052844048, + 0.033390842378139496, + -0.005938536953181028, + 0.01999460905790329, + 0.06592236459255219, + 0.007465369999408722, + 0.07230591028928757, + 0.04569757729768753, + 0.0007269720663316548, + -0.028311628848314285, + 0.04146234318614006, + 0.059508129954338074, + -0.03572329133749008, + 0.034127406775951385, + 0.06622926145792007, + 0.016158344224095345, + 0.053308725357055664, + -0.022772064432501793, + 0.018720969557762146, + -0.001423254027031362, + 0.04247511550784111, + -0.039099205285310745, + -0.004223726689815521, + 0.047845885157585144, + 0.020608410239219666, + 0.07384040951728821, + 0.03130391612648964, + -0.0427820198237896, + -0.11011612415313721, + 0.06800929456949234, + -0.010710849426686764, + 0.005351588595658541, + -0.03805574029684067, + -0.035876743495464325, + -0.059508129954338074, + 0.06862309575080872, + -0.013281146995723248, + 0.00857788696885109, + 0.011017750948667526, + -0.07101692259311676, + -0.053799767047166824, + 0.015667302533984184, + 0.010726194828748703, + 0.02941647358238697, + -0.003943679388612509, + -0.018460102379322052, + -0.012521565891802311, + 0.010825937613844872, + 0.052265264093875885, + -0.011738968081772327, + -0.002031301846727729, + -0.04354926943778992, + 0.016695421189069748, + -0.037349868565797806, + -0.0539839081466198, + 0.09489382803440094, + 0.03556984290480614, + -0.05168215185403824, + 0.010565071366727352, + -0.037902288138866425, + -0.0656154602766037, + -0.08851028978824615, + 0.0859936997294426, + 0.007668692152947187, + 0.06868447363376617, + 0.07046449929475784, + -0.03375912457704544, + -0.01600489392876625, + -0.004779985174536705, + -0.031917717307806015, + -0.05189698189496994, + 0.011877073906362057, + 0.07107830047607422, + -0.07476111501455307, + 0.04167717322707176, + -0.008102189749479294, + 0.04474618658423424, + -0.05337010696530342, + 0.009460227563977242, + 0.051774222403764725, + -0.03943679481744766, + 0.0038899718783795834, + -0.021590495482087135, + 0.019917882978916168, + -0.018061131238937378, + -0.03161081671714783, + 0.04944177344441414, + 0.03695089742541313, + 0.0307821836322546, + 0.04839830845594406, + 0.03971300646662712, + 0.02682315930724144, + -0.034188784658908844, + 0.006755661219358444, + -0.03354429453611374, + -0.03848540037870407, + -0.0336056724190712, + 0.012667343951761723, + -0.01575937308371067, + -0.011877073906362057, + 0.013449941761791706, + 0.03876161202788353, + 0.020915312692523003, + 0.08863304555416107, + 0.0028311628848314285, + -0.0013187158619984984, + 0.07525216042995453, + -0.019626326858997345, + -0.02559555508196354, + 0.007745417300611734, + 0.009851526468992233, + -0.040388189256191254, + 0.018091822043061256, + -0.02458278089761734, + 0.11870935559272766, + 0.014539441093802452, + 0.0010799083393067122, + -0.022664649412035942, + -0.02226567640900612, + 0.06064366549253464, + -0.01677214726805687, + -0.031457364559173584, + 0.0041354927234351635, + 0.051283180713653564, + 0.0003872229135595262, + 0.023999668657779694, + 0.0030766839627176523, + -0.08758958429098129, + -0.04103268310427666, + -0.03125787898898125, + -0.005792758893221617, + -0.10692435503005981, + 0.06230093166232109, + 0.029109572991728783, + 0.0019516993779689074, + -0.09550762921571732, + 0.09170205891132355, + -0.062239550054073334, + -0.0364905446767807, + 0.0586794950067997, + -0.008892460726201534, + -0.020055988803505898, + -0.05858742818236351, + 0.0358460508286953, + 0.008777372539043427, + -0.04069508984684944, + 0.07795289158821106, + -0.001953617436811328, + -0.03870023414492607, + 0.0925000011920929, + 0.021866705268621445, + -0.05269492417573929, + 0.019518911838531494, + -0.020224785432219505, + 0.013449941761791706, + -0.016894906759262085, + -0.06408095359802246, + 0.016971632838249207, + 0.07242866605520248, + 0.0017685177735984325, + -0.043579962104558945, + 0.04931901395320892, + 0.009966614656150341, + 0.14559389650821686, + -0.01328881923109293, + 0.038331951946020126, + -0.00024959692382253706, + 0.01961098238825798, + -0.04400962218642235, + -0.015674974769353867, + -0.041339583694934845, + 0.0061994027346372604, + 0.05159008130431175, + -0.014731254428625107, + 0.044562045484781265, + 0.00906892865896225, + 0.04919625073671341, + 0.056224286556243896, + -0.029738720506429672, + 0.02370811253786087, + -0.003544708015397191, + -0.027406271547079086, + 0.012943555600941181, + -0.008992203511297703, + 0.04493032768368721, + -0.017692850902676582, + 0.045329298824071884, + 0.012889847159385681, + 0.03130391612648964, + 0.03968231752514839, + 0.048336926847696304, + -0.011332324706017971, + 0.014401335269212723, + 0.0835384875535965, + -0.0705258771777153, + -0.002315185498446226, + -0.08580955862998962, + -0.04029611870646477, + 0.07936463505029678, + -0.010795247741043568, + 0.05662325769662857, + -0.012015179730951786, + 0.029401129111647606, + -0.010442310944199562, + 0.0322246178984642, + 0.0011748558608815074, + 0.0017301550833508372, + -0.03652123361825943, + 0.03151874616742134, + -0.006717298645526171, + 0.0539839081466198, + -0.0238462183624506, + -0.03992783650755882, + -0.050086263567209244, + -0.05539565533399582, + -0.03857747092843056, + -0.002163653029128909, + -0.05917053669691086, + -0.03980507701635361, + -0.05883294716477394, + -0.0358460508286953, + -0.008501161821186543, + 0.02065444551408291, + 0.031012360006570816, + -0.012644326314330101, + 0.0843978151679039, + 0.032869111746549606, + 0.046802423894405365, + -0.02300224080681801, + 0.02024012990295887, + 0.009897561743855476, + 0.045544128865003586, + 0.009690403006970882, + 0.007526750210672617, + -0.027651792392134666, + 0.003021057927981019, + 0.023938288912177086, + 0.01125559862703085, + -0.016649385914206505, + -0.01743198372423649, + -0.07236728817224503, + 0.04913487285375595, + -0.058986399322748184, + -0.0336056724190712, + 0.02198946662247181, + 0.057451892644166946, + 0.02966199442744255, + 0.0024226007517427206, + 0.08059223741292953, + -0.013227438554167747, + -0.0897378921508789, + 0.03170288726687431, + 0.007158468943089247, + 0.014416680671274662, + -0.04618861898779869, + -0.035907432436943054, + 0.051498010754585266, + -0.0013513240264728665, + 0.03148805722594261, + -0.09618281573057175, + 0.004787657875567675, + -0.00042414694325998425, + -0.012237682938575745, + 0.004311961121857166, + -0.006609883159399033, + 0.004852874204516411, + -0.00039801240200176835, + 0.042567186057567596, + 0.046863801777362823, + 0.028311628848314285, + 0.005704524926841259, + 0.11269409954547882, + -0.046342071145772934, + -0.045574817806482315, + 0.012690361589193344, + -0.044592734426259995, + -0.022142916917800903, + 0.018966490402817726, + 0.03922196477651596, + -0.0039360071532428265, + -0.05410667136311531, + -0.0002416846400592476, + 0.01792302541434765, + -0.004162346478551626, + -0.041861314326524734, + 0.06635202467441559, + -0.002739092567935586, + -0.02171325497329235, + 0.006464105099439621, + 0.03474120795726776, + 0.0387309230864048, + 0.03879230469465256, + 0.034618448466062546, + 0.005554910749197006, + -0.030582698062062263, + -0.01006635744124651, + 0.06923689693212509, + 0.03102770447731018, + 0.07672528177499771, + 0.03323739394545555, + 0.06346715241670609, + 0.023508626967668533, + -0.0013340609148144722, + -0.062485069036483765, + -0.03992783650755882, + 0.06451062113046646, + -0.0054398225620388985, + 0.017708195373415947, + 0.07488387823104858, + 0.0072313579730689526, + -0.010143082588911057, + -0.041892003268003464, + -0.03532432019710541, + 0.019181320443749428, + -0.014524095691740513, + -0.02152911387383938, + 0.0269919540733099, + -0.07598871737718582, + -0.040111977607011795, + 0.025994526222348213, + 0.004047258757054806 + ] + }, + { + "id": "783813d4-6e17-4d74-8652-6b6a9c56b800", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "umcintyre", + "reviewDate": "2022-10-15T09:02:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "96022d0c-2cfc-4b2d-bb14-92f07b6f4190", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "yswanson", + "reviewDate": "2022-11-02T16:45:06", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5b09021d-ace9-4647-9e1e-961a3383c52b", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael45", + "reviewDate": "2022-06-29T18:51:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d8b3f0cd-3834-4e3e-9685-024f39bce3b9", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "timothyandersen", + "reviewDate": "2021-05-03T01:43:03", + "stars": 4, + "verifiedUser": true + }, + { + "id": "10a73585-6388-4cb8-a36b-9a1cb10f7beb", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "seanwalker", + "reviewDate": "2021-01-07T06:51:38", + "stars": 4, + "verifiedUser": false + }, + { + "id": "af6ca42c-67eb-4df3-8a2a-4c94a5730cee", + "productId": "b0920a10-3e9f-42d5-93a1-5f8f27c1b9f6", + "category": "Electronics", + "docType": "customerRating", + "userName": "mrodriguez", + "reviewDate": "2022-10-27T18:01:57", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8170d031-321c-42d2-8d86-cf9257b476c3", + "productId": "8170d031-321c-42d2-8d86-cf9257b476c3", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Micro (Red)", + "description": "This Amazing Phone Micro (Red) is a truly excellent smartphone. If you're using a larger handset, we have no doubt your smartphone will do better. If it", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-12-21T20:44:59", + "price": 984.41, + "stock": 80, + "priceHistory": [ + { + "priceDate": "2019-12-21T20:44:59", + "newPrice": 1072.37 + }, + { + "priceDate": "2021-02-25T20:44:59", + "newPrice": 984.41 + } + ], + "descriptionVector": [ + -0.025574462488293648, + 0.09494941681623459, + -0.013548663817346096, + 0.049070093780756, + -0.011572564952075481, + -0.05143899470567703, + -0.04798233136534691, + -0.014999010600149632, + 0.04856247082352638, + 0.04708794876933098, + 0.026082083582878113, + -0.07474124431610107, + 0.048296574503183365, + -0.016751514747738838, + -0.02738739550113678, + 0.014974838122725487, + 0.003471769392490387, + -0.0334063395857811, + -0.049456849694252014, + 0.050423748791217804, + 0.07275909930467606, + -0.06744115799665451, + -0.039473626762628555, + 0.006671598646789789, + 0.02716984413564205, + -0.02335059642791748, + 0.006290882360190153, + -0.018250206485390663, + 0.0016981152584776282, + 0.010466675274074078, + 0.01567583903670311, + 0.02629963494837284, + -0.036452069878578186, + 0.03427654877305031, + 0.013874991796910763, + 0.058980800211429596, + 0.03795076161623001, + -0.06047949194908142, + -0.008919637650251389, + 0.026976464316248894, + 0.018044739961624146, + 0.017307480797171593, + 0.014950665645301342, + -0.05786886811256409, + 0.03343050926923752, + 0.03241526708006859, + -0.030288090929389, + -0.0010522573720663786, + -0.037467312067747116, + 0.021948592737317085, + -0.00881690438836813, + 0.031762611120939255, + -0.02627546340227127, + -0.045420050621032715, + 0.05883576720952988, + 0.005462975706905127, + -0.01773049868643284, + -0.0015712098684161901, + 0.028064224869012833, + -0.08677912503480911, + -0.02840263955295086, + 0.0370805524289608, + 0.06502391397953033, + 0.010442502796649933, + 0.006290882360190153, + -0.021634351462125778, + -0.05168071761727333, + -0.01276305876672268, + 0.032608646899461746, + 0.07101868838071823, + -0.023217646405100822, + 0.03258447349071503, + 0.011784073896706104, + -0.02634797990322113, + -0.05187409743666649, + 0.011022641323506832, + 0.04015045613050461, + -0.009040500037372112, + 0.047160468995571136, + -0.016002168878912926, + 0.06458880752325058, + -0.0022193340118974447, + 0.013065214268863201, + -0.01017660554498434, + 0.028813570737838745, + 0.016292236745357513, + 0.10055743157863617, + -0.06898819655179977, + -0.03995707631111145, + 0.04218094050884247, + -0.03802327811717987, + 0.009106974117457867, + 0.008061515167355537, + 0.05970597267150879, + 0.04778895154595375, + 0.033623889088630676, + -0.00376486056484282, + 0.04094814509153366, + 0.004716651048511267, + 0.03526761755347252, + 0.009554164484143257, + -0.044453151524066925, + 0.03998124599456787, + -0.013089386746287346, + -0.0195192601531744, + -0.01669108308851719, + -0.040416352450847626, + -0.035726893693208694, + 0.00393406767398119, + -0.06763453781604767, + -0.006284839473664761, + -0.009336612187325954, + -0.031641747802495956, + -0.046459466218948364, + -0.026928119361400604, + -0.014020026661455631, + -0.03347885608673096, + -0.023930734023451805, + 0.0697617158293724, + -0.034711651504039764, + 0.012049971148371696, + 0.029587090015411377, + -0.049456849694252014, + 0.012031841091811657, + 0.01420131977647543, + -0.032826200127601624, + -0.009662940166890621, + -0.020147744566202164, + -0.04989195615053177, + -0.052986029535532, + -0.06613584607839584, + 0.08924471586942673, + 0.030650679022073746, + 0.04181835427880287, + -0.001598403905518353, + 0.0215980913490057, + 0.07242068648338318, + 0.0506654754281044, + 0.01841941475868225, + 0.04184252768754959, + 0.05970597267150879, + -0.0003104650240857154, + 0.0446707047522068, + -0.019108328968286514, + -0.011010555550456047, + 0.020945435389876366, + -0.01764589548110962, + 0.027943363413214684, + -0.01215270347893238, + -0.015264907851815224, + -0.07580482959747314, + -0.08300822228193283, + 0.020752055570483208, + -0.09683486819267273, + 0.034639135003089905, + -0.009203664027154446, + -0.04404222220182419, + -0.026082083582878113, + -0.08025256544351578, + 0.06947164982557297, + -0.028088398277759552, + 0.02639632485806942, + 0.04172166436910629, + -0.04558925703167915, + -0.03149671480059624, + -0.036597102880477905, + 0.005221251398324966, + 0.02538108266890049, + -0.07561144977807999, + 0.07836711406707764, + 0.030626505613327026, + 0.004831470083445311, + -0.046411123126745224, + -0.04558925703167915, + -0.01957969181239605, + 0.07319420576095581, + 0.037515655159950256, + 0.009481647051870823, + -0.010901778936386108, + -0.014406785368919373, + 0.04512998089194298, + 0.012062056921422482, + -0.07377434521913528, + 0.029852986335754395, + 0.010092001408338547, + 0.050375405699014664, + 0.04411473870277405, + 0.07425779104232788, + 0.0066232536919415, + 0.06410536170005798, + 0.02736322395503521, + -0.05530658736824989, + 0.0063452706672251225, + -0.014455130323767662, + 0.05980266258120537, + -0.03188347443938255, + -0.0024655908346176147, + -0.005740959197282791, + -0.004725715611129999, + 0.0034929204266518354, + -0.028837744146585464, + 0.04309949651360512, + 0.09219375997781754, + 0.007269867230206728, + -0.01657022163271904, + -0.030964920297265053, + 0.021102556958794594, + 0.06884316354990005, + -0.0018658116459846497, + -0.038555070757865906, + -0.014866062439978123, + 0.020885005593299866, + -0.03207685425877571, + 0.01765798218548298, + 0.0649755671620369, + 0.08929306268692017, + 0.028886089101433754, + -0.02152557484805584, + -0.05047209560871124, + -0.042543526738882065, + -0.0019005596404895186, + -0.029562918469309807, + 0.010545235127210617, + 0.0027420632541179657, + -0.04198756068944931, + -0.022069456055760384, + 0.07643331587314606, + 0.021235505118966103, + 0.06565240025520325, + 0.025187702849507332, + -0.026710567995905876, + -0.02066745236515999, + 0.007686842232942581, + 0.003634933615103364, + -0.0412382148206234, + -0.007650583516806364, + -0.03299540653824806, + -0.020788315683603287, + -0.09074341505765915, + 0.026082083582878113, + 0.043510425835847855, + -0.011620909906923771, + -0.03231857717037201, + -0.027725810185074806, + 0.1363326758146286, + -0.06686101853847504, + 0.000226805655984208, + 0.031714268028736115, + -0.11477083712816238, + -0.015494545921683311, + -0.059174180030822754, + -0.06183315068483353, + -0.0466286726295948, + 0.04520249739289284, + -0.007475332822650671, + 0.007650583516806364, + 0.029877159744501114, + -0.042640216648578644, + 0.014479302801191807, + -0.11709139496088028, + 0.07295247912406921, + -0.09127520769834518, + 0.015047355554997921, + 0.06647426635026932, + -0.07976911216974258, + 0.07580482959747314, + 0.04184252768754959, + -0.022190317511558533, + -0.04196338728070259, + 0.015301167033612728, + -0.01770632714033127, + -0.07116372138261795, + 0.040537215769290924, + -0.034663304686546326, + -0.052212510257959366, + -0.014624337665736675, + -0.052212510257959366, + 0.07333923876285553, + -0.02451087348163128, + 0.050182025879621506, + 0.12414974719285965, + 0.014999010600149632, + 0.0764816626906395, + 0.02428123541176319, + 0.0755147635936737, + -0.030457299202680588, + -0.032874543219804764, + -0.06811799108982086, + -0.040585558861494064, + -0.02632380835711956, + -0.02944205515086651, + -0.07996249198913574, + 0.07169551402330399, + -0.030723195523023605, + 0.024184545502066612, + -0.05105223506689072, + 0.017875533550977707, + -0.022274920716881752, + 0.016086772084236145, + 0.03872428089380264, + 0.013306939043104649, + -0.0329228900372982, + 0.004499098751693964, + -0.04483991116285324, + 0.02053450420498848, + 0.05172906443476677, + 0.04786146804690361, + 0.02830594964325428, + -0.02442627027630806, + 0.00048760382924228907, + 0.11438407748937607, + -0.05878742039203644, + -0.06323515623807907, + -0.012315868400037289, + 0.039401110261678696, + -0.058062247931957245, + 0.00935474131256342, + 0.010895735584199429, + 0.035654377192258835, + -0.009868406690657139, + 0.14716193079948425, + -0.04909426346421242, + -0.014430957846343517, + 0.02637215331196785, + -0.009064672514796257, + -0.015047355554997921, + -0.015470373444259167, + 0.0072215222753584385, + -0.004169749096035957, + -0.028015879914164543, + -0.013331111520528793, + -0.04754722863435745, + 0.046338602900505066, + -0.07159882038831711, + -0.030022194609045982, + -0.04080311208963394, + 0.03988455608487129, + 0.04774060845375061, + 0.06405701488256454, + 0.1068422719836235, + 0.03807162493467331, + 0.0141650615260005, + -0.052405890077352524, + 0.013766215182840824, + -0.020051054656505585, + -0.10026735812425613, + -0.05269595980644226, + -0.03113412670791149, + 0.055113207548856735, + -0.03884514048695564, + 0.000968409120105207, + -0.042374320328235626, + 0.08020421862602234, + 0.06729612499475479, + 0.00981401838362217, + 0.04885254055261612, + 0.018250206485390663, + -0.039642833173274994, + 0.00935474131256342, + 0.03253613039851189, + -0.026758912950754166, + -0.015180304646492004, + 0.0242328904569149, + 0.015615408308804035, + 0.029055295512080193, + 0.06782791763544083, + -0.011639039032161236, + 0.040464695543050766, + -0.044404808431863785, + 0.011433573439717293, + 0.056080106645822525, + 0.0014314628206193447, + -0.017367912456393242, + 0.0012048459611833096, + -0.051342304795980453, + -0.0004464350931812078, + 0.06236494332551956, + -0.06236494332551956, + -0.00017732764536049217, + 0.046386949717998505, + -0.05095554515719414, + 0.05936755985021591, + 0.0011194869875907898, + 0.03599279001355171, + 0.11129000037908554, + -0.006024985574185848, + 0.03712889552116394, + 0.03814414143562317, + -0.029635434970259666, + 0.0767233818769455, + -0.06076956167817116, + -0.06507226079702377, + -0.016836117953062057, + 0.03606531023979187, + 0.04418725520372391, + -0.007614324800670147, + -0.054388031363487244, + 0.06850475072860718, + 0.037515655159950256, + -0.050230368971824646, + 0.027653293684124947, + 0.028886089101433754, + 0.039618659764528275, + -0.012920179404318333, + -0.04691874235868454, + -0.010581494309008121, + 0.04880419373512268, + 0.02063119411468506, + -0.054823137819767, + -0.09320900589227676, + -0.01410462986677885, + 0.018262293189764023, + -0.05158402770757675, + -0.04571012035012245, + 0.04476739466190338, + 0.049287643283605576, + 0.03546099737286568, + -0.034663304686546326, + 0.028958605602383614, + -0.011560478247702122, + -0.01216479018330574, + -0.01944674365222454, + 0.019229190424084663, + -0.0042452882044017315, + -0.10191109031438828, + 0.05380789563059807, + 0.049239300191402435, + 0.0213563684374094, + -0.021150901913642883, + -0.08291153609752655, + 0.02634797990322113, + -0.005360242910683155, + -0.005786282476037741, + -0.002007824834436178, + -0.01745251566171646, + 0.035485170781612396, + -0.08779437094926834, + -0.018999552354216576, + -0.017005324363708496, + 0.03608947992324829, + 0.030094711109995842, + 0.042495183646678925, + -0.023894475772976875, + 0.043462082743644714, + -0.1469685584306717, + 0.03995707631111145, + 0.00876251608133316, + 0.04848995432257652, + 0.03577524051070213, + -0.0679246112704277, + 0.010291424579918385, + 0.027073154225945473, + -0.016401013359427452, + -0.013234421610832214, + 0.061929840594530106, + -0.035533513873815536, + -0.01753711886703968, + 0.12472988665103912, + -0.09258051961660385, + -0.035606034100055695, + -0.05056878551840782, + 0.0195192601531744, + 0.000998624716885388, + -0.0067985039204359055, + 0.0066474261693656445, + -0.034614961594343185, + -0.02743574045598507, + 0.026783084496855736, + -0.01748877391219139, + -0.019845588132739067, + 0.01212248858064413, + -0.03804745152592659, + 0.0038434211164712906, + -0.025646978989243507, + -0.0312066450715065, + -0.021996937692165375, + -0.018914949148893356, + -0.014914407394826412, + -0.0029248676728457212, + -0.017331652343273163, + 0.030674850568175316, + 0.02934536524116993, + 0.020051054656505585, + 0.03599279001355171, + 0.10423164069652557, + -0.043437909334897995, + -0.018383154645562172, + -0.05540327727794647, + 0.015216562896966934, + -0.05085885524749756, + 0.039691176265478134, + 0.020691625773906708, + -0.015035269781947136, + -0.0670543983578682, + -0.03804745152592659, + -0.06613584607839584, + -0.003994498867541552, + -0.026903947815299034, + -0.053034376353025436, + 0.03601696342229843, + 0.07609490305185318, + -0.014273837208747864, + -0.03243944048881531, + 0.04571012035012245, + -0.009342655539512634, + 0.03799910470843315, + -0.0334063395857811, + 0.0681663379073143, + -0.029514573514461517, + -0.0543396882712841, + 0.0644921213388443, + -0.00418485701084137 + ] + }, + { + "id": "5c1eb848-3e18-417b-9586-a7e107eabe79", + "productId": "5c1eb848-3e18-417b-9586-a7e107eabe79", + "category": "Media", + "docType": "product", + "name": "Luxe TV Pro (Red)", + "description": "This Luxe TV Pro (Red) is a solid product, though it has some issues. It has a hard case that needs replacing often. This is definitely not ideal, but my girlfriend agrees.\n\n\nPros:\n\n\n- Cheap to buy\n\n- Built", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-06-30T10:07:05", + "price": 468.05, + "stock": 55, + "priceHistory": [ + { + "priceDate": "2022-02-16T17:32:56", + "newPrice": 428.37 + }, + { + "priceDate": "2022-02-17T17:32:56", + "newPrice": 460.33 + }, + { + "priceDate": "2022-02-18T17:32:56", + "newPrice": 423.34 + }, + { + "priceDate": "2023-04-17T17:32:56", + "newPrice": 468.05 + } + ], + "descriptionVector": [ + -0.06265377998352051, + 0.038475651293992996, + -0.018535714596509933, + 0.04674778878688812, + -0.02420365996658802, + -0.008061503991484642, + -0.05024557560682297, + -0.010442296974360943, + -0.006970041431486607, + 0.034314051270484924, + 0.027318477630615234, + 0.0023648354690521955, + 0.01778254099190235, + -0.06633028388023376, + 0.07536835968494415, + 0.018139980733394623, + 0.012491182424128056, + -0.017488932237029076, + -0.020693108439445496, + 0.012542244978249073, + 0.02477811463177204, + -0.11632054299116135, + -0.07700236141681671, + -0.04123302921652794, + 0.0223909392952919, + -0.037505462765693665, + -0.006727494299411774, + 0.025518521666526794, + 0.0801682397723198, + -0.06765791028738022, + 0.04439890757203102, + 0.027088696137070656, + -0.08154693245887756, + 0.045701004564762115, + -0.0036254427395761013, + 0.0047424365766346455, + 0.04419465735554695, + -0.006421118974685669, + -0.0009765716968104243, + 0.03926711902022362, + 0.016276195645332336, + -0.0059200674295425415, + -0.05637308210134506, + -0.03615230321884155, + 0.023246238008141518, + -0.02798229083418846, + -0.009069990366697311, + 0.027956759557127953, + 0.014897506684064865, + 0.01000826433300972, + -0.06372609734535217, + -0.042688313871622086, + -0.04105431213974953, + -0.060304902493953705, + -0.00630622822791338, + 0.013569879345595837, + -0.026105741038918495, + 0.059896402060985565, + 0.010372085496783257, + 0.018305933102965355, + -0.08425325155258179, + 0.011635884642601013, + -0.0013882637722417712, + -0.018905919045209885, + 0.008393410593271255, + 0.014169864356517792, + -0.04644141346216202, + -0.043505314737558365, + 0.044118065387010574, + 0.03898627683520317, + -0.026105741038918495, + -0.0184335894882679, + 0.014208161272108555, + 0.009484873153269291, + 0.05984533950686455, + 0.008074269630014896, + 0.01739957183599472, + 0.0339566133916378, + 0.019761215895414352, + 0.06980253756046295, + 0.05923258885741234, + 0.028875885531306267, + 0.011189086362719536, + -0.03735227510333061, + 0.016914477571845055, + -0.020169716328382492, + 0.013174144551157951, + -0.11958855390548706, + -0.008093418553471565, + 0.040696874260902405, + -0.04593078792095184, + 0.12112043052911758, + 0.05576033145189285, + -0.03283323720097542, + 0.0475647896528244, + -0.008227457292377949, + -0.05458589270710945, + 0.06827066093683243, + -0.05698583275079727, + 0.018076151609420776, + 0.018088918179273605, + 0.004975409712642431, + 0.005093492101877928, + -0.023718565702438354, + -0.0428670309484005, + -0.006475372705608606, + 0.020833531394600868, + 0.019876107573509216, + 0.08027036488056183, + -0.0348246768116951, + 0.1009507104754448, + 0.011265681125223637, + -0.0487392283976078, + -0.10135921090841293, + -0.0327821746468544, + 0.023259002715349197, + -0.0057796454057097435, + -0.027063164860010147, + 0.051343418657779694, + -0.06372609734535217, + 0.04534356668591499, + 0.04347978159785271, + 0.03576933220028877, + 0.02859504148364067, + 0.0056136916391551495, + 0.011635884642601013, + -0.05458589270710945, + 0.009733803570270538, + 0.05274764075875282, + 0.0026759980246424675, + -0.13654132187366486, + 0.10549528151750565, + 0.12101830542087555, + 0.07204929739236832, + -0.03727567940950394, + 0.06510478258132935, + -0.011986939236521721, + -0.009472107514739037, + -0.03342045471072197, + 0.011169938370585442, + 0.07628748565912247, + -0.06668772548437119, + 0.042713843286037445, + 0.03638208657503128, + 0.0440414696931839, + -0.015905993059277534, + -0.08139374852180481, + -0.07281523197889328, + 0.013825192116200924, + 0.07572580128908157, + 0.004187131300568581, + -0.11029516160488129, + -0.017897432669997215, + 0.01660810224711895, + 0.05213489010930061, + 0.05223701521754265, + -0.027292946353554726, + -0.027241883799433708, + -0.022939862683415413, + 0.06280696392059326, + -0.0012709794100373983, + -0.01561238244175911, + 0.02657807059586048, + -0.0008166022598743439, + -0.05387101694941521, + 0.03676505386829376, + 0.09155520051717758, + 0.03081626445055008, + -0.10600590705871582, + 0.0368671789765358, + -0.01070399209856987, + 0.016084711998701096, + -0.007844488136470318, + -0.03099498338997364, + -0.005508375354111195, + 0.014412411488592625, + 0.12561392784118652, + 0.04593078792095184, + 0.030509889125823975, + -0.05305401608347893, + 0.06617709994316101, + 0.02038673311471939, + -0.0364331491291523, + -0.038143742829561234, + 0.020476093515753746, + 0.035309769213199615, + 0.013052870519459248, + -0.02221222035586834, + 0.0041807484813034534, + 0.004716905299574137, + -0.035692740231752396, + 0.01723361946642399, + -0.04677331820130348, + -0.031480077654123306, + -0.020565452054142952, + -0.07235567271709442, + 0.038909681141376495, + 0.005811559502035379, + -0.02200797013938427, + 0.054483767598867416, + -0.00705301808193326, + 0.06862810254096985, + 0.11284828931093216, + -0.02440791018307209, + -0.02678232081234455, + -0.06811747699975967, + 0.029922669753432274, + 0.032475799322128296, + 0.033726830035448074, + -0.013978379778563976, + -0.03382895514369011, + -0.008431707508862019, + -0.022365408018231392, + 0.032067298889160156, + 0.0196080282330513, + 0.029488638043403625, + 0.035079989582300186, + 0.002283454639837146, + -0.06137721613049507, + -0.04825413227081299, + 0.023361127823591232, + -0.04978601261973381, + 0.050347700715065, + -0.0226079560816288, + -0.032705578953027725, + -0.05616883188486099, + 0.047335006296634674, + 0.031275827437639236, + 0.03359917551279068, + 0.0237823948264122, + 0.0006326972506940365, + -0.02519938163459301, + 0.008431707508862019, + 0.025888726115226746, + -0.02219945378601551, + 0.027369540184736252, + -0.018650606274604797, + -0.027701446786522865, + -0.05759858340024948, + 0.05044982582330704, + -0.005083917640149593, + -0.003418001113459468, + 0.0027685489039868116, + -0.032322611659765244, + 0.0629090964794159, + -0.03740333765745163, + 0.08103630691766739, + 0.04018624499440193, + -0.08348730951547623, + 0.01598258689045906, + -0.05067960545420647, + -0.0731726735830307, + -0.034339580684900284, + 0.06867916136980057, + 0.023527082055807114, + -0.0021111182868480682, + 0.09410832822322845, + -0.0396500900387764, + 0.04005859047174454, + -0.002803654409945011, + 0.02742060273885727, + -0.053513579070568085, + 0.0218037199229002, + -0.026858914643526077, + -0.0045924405567348, + 0.04700310155749321, + -0.04281596839427948, + -0.03944583982229233, + -0.004209470935165882, + -0.00790193397551775, + -0.022518595680594444, + -0.013365629129111767, + 0.026501476764678955, + 0.031301356852054596, + -0.00295205507427454, + 0.06066234037280083, + -0.026552539318799973, + 0.04697756841778755, + 0.008374262601137161, + 0.00689344760030508, + 0.11989492923021317, + 0.008450856432318687, + 0.04085006192326546, + -0.0020903742406517267, + 0.03099498338997364, + -0.07904486358165741, + 0.02938651293516159, + -0.05223701521754265, + 0.0487392283976078, + -0.007091314997524023, + 0.011450782418251038, + -0.013799660839140415, + 0.08736806362867355, + -0.0635218471288681, + 0.03222048655152321, + 0.017693182453513145, + -0.013263504020869732, + 0.01119546964764595, + -0.020910125225782394, + -0.0031579011119902134, + -0.0029009925201535225, + 0.033701300621032715, + -0.015369835309684277, + -0.09400620311498642, + -0.06694303452968597, + 0.03456936404109001, + -0.018471887335181236, + 0.060509152710437775, + -0.04041602835059166, + -0.06949616223573685, + 0.06811747699975967, + -0.00017951686459127814, + -0.03245026618242264, + -0.054330579936504364, + 0.06934297829866409, + -0.011789072304964066, + -0.04276490584015846, + -0.002593021374195814, + 0.02496960014104843, + -0.007353011053055525, + -0.016301726922392845, + -0.04562441259622574, + -0.02442067675292492, + 0.05524970591068268, + 0.045292504131793976, + -0.08118949830532074, + -0.012203955091536045, + -0.00585943041369319, + -0.04746266454458237, + -0.007959378883242607, + -0.09400620311498642, + 0.026909977197647095, + -0.000745992292650044, + 0.05877302587032318, + 0.07133441418409348, + 0.00019038761092815548, + 0.03142901510000229, + 0.0028547171968966722, + 0.011986939236521721, + -0.03061201423406601, + 0.050883855670690536, + 0.051700856536626816, + -0.05688370764255524, + -0.0044615925289690495, + 0.05959002673625946, + -0.06714728474617004, + -0.026909977197647095, + -0.015050694346427917, + 0.0684749111533165, + -0.024127066135406494, + 0.0017760201590135694, + -0.04263725131750107, + -0.013761363923549652, + -0.03020351380109787, + 0.008010441437363625, + 0.037735242396593094, + 0.05504545569419861, + -0.0535646416246891, + -0.029667356982827187, + 0.02597808465361595, + 0.05821133404970169, + 0.012714581564068794, + 0.02237817272543907, + 0.05606670677661896, + -0.008048738352954388, + 0.06214315444231033, + -0.04498612880706787, + 0.018446356058120728, + -0.07511305063962936, + 0.0655643492937088, + 0.046492476016283035, + -0.037096962332725525, + -0.05994746461510658, + 0.030841795727610588, + 0.01681235246360302, + 0.004356275778263807, + 0.08532556146383286, + -0.035079989582300186, + -0.025097256526350975, + 0.06122402846813202, + -0.06765791028738022, + -0.007601941004395485, + 0.032475799322128296, + -0.03704589977860451, + 0.04256065562367439, + 0.05055195093154907, + -0.04562441259622574, + 0.004962644074112177, + -0.022046266123652458, + -0.04462869092822075, + -0.016084711998701096, + -0.04679885134100914, + 0.05463695526123047, + 0.05943683907389641, + 0.05422845482826233, + -0.047105226665735245, + -0.01978674717247486, + 0.02240370400249958, + 0.0010212515480816364, + 0.0045988233759999275, + -0.015727274119853973, + 0.03293536230921745, + -0.05667945742607117, + -0.07541942596435547, + -0.06142827868461609, + -0.015357069671154022, + 0.038322463631629944, + 0.023846222087740898, + -0.01581663265824318, + -0.09114670008420944, + -0.001065133372321725, + -0.015905993059277534, + 0.011540141887962818, + 0.009146584197878838, + 0.017910197377204895, + 0.008795528672635555, + 0.07761511206626892, + 0.04261171817779541, + 0.05938577651977539, + -0.006453033071011305, + 0.006606220733374357, + 0.0364331491291523, + 0.014680490829050541, + -0.022748377174139023, + -0.032118361443281174, + 0.007135994732379913, + -0.03617783635854721, + -0.07838105410337448, + -0.033292800188064575, + -0.03612677380442619, + 0.02622063271701336, + -0.10033795982599258, + 0.01760382205247879, + -0.05119023099541664, + 0.005840281955897808, + -0.0053711445070803165, + -0.004480740986764431, + -0.021050546318292618, + 0.0018302742391824722, + 0.034722551703453064, + -0.07547048479318619, + -0.0036254427395761013, + 0.02503342740237713, + 0.09017650783061981, + -0.029335450381040573, + -0.01479538157582283, + -0.005211574025452137, + 0.06433884799480438, + 0.020156951621174812, + -0.04741160199046135, + 0.04498612880706787, + 0.006251974031329155, + -0.034135330468416214, + -0.0019675048533827066, + -0.01942930929362774, + -0.03245026618242264, + 0.0036605484783649445, + 0.03745440021157265, + -0.0348246768116951, + 0.03426298871636391, + 0.02637382037937641, + 0.08032143115997314, + 0.026858914643526077, + 0.050730668008327484, + -0.09676358103752136, + 0.036101240664720535, + 0.014744319021701813, + 0.020501624792814255, + -0.011814603582024574, + 0.03837352618575096, + -0.05417739227414131, + -0.0778704285621643, + -0.08767443895339966, + -0.02902907319366932, + -0.06336865574121475, + -0.019097402691841125, + 0.039292652159929276, + -0.0836915597319603, + -0.019135700538754463, + 0.004177556838840246, + -0.010755054652690887, + 0.03763311728835106, + 0.036892712116241455, + 0.046313755214214325, + 0.06842385232448578, + -0.009274240583181381, + 0.03398214280605316, + 0.01821657456457615, + 0.06505372375249863, + -0.029233325272798538, + -0.06776003539562225, + 0.02581213228404522, + 0.020093122497200966, + -0.04802435263991356, + -0.038143742829561234, + -0.06939403712749481, + 0.028875885531306267, + -0.03857777640223503, + -0.03500339388847351, + 0.06025383993983269, + 0.08118949830532074, + 0.0755215510725975, + -0.0278035718947649, + 0.007933847606182098, + 0.006070063449442387, + 0.00032552392804063857, + 0.003221729304641485, + 0.0041520255617797375, + 0.028518447652459145, + -0.03707142919301987, + -0.039905402809381485, + -0.03959902748465538 + ] + }, + { + "id": "a3fc2736-4401-4307-a43c-cc2d26230f14", + "productId": "5c1eb848-3e18-417b-9586-a7e107eabe79", + "category": "Media", + "docType": "customerRating", + "userName": "joshuawong", + "reviewDate": "2022-02-16T17:32:56", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Pro (Red)", + "description": "This Premium Speaker Pro (Red) is a leader on the road to building and delivering the greatest music collection available! It's all about sharing and enjoying, and listening to it! With premium speakers, you will be able listen to all genres and listen just like you would on a traditional studio or the studio-quality speakers you'll like to own on the stand.", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-03-15T11:28:37", + "price": 980.29, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-01-29T22:28:30", + "newPrice": 899.14 + }, + { + "priceDate": "2024-11-07T22:28:30", + "newPrice": 980.29 + } + ], + "descriptionVector": [ + -0.017324935644865036, + 0.014223975129425526, + -0.04902215301990509, + 0.01588231511414051, + -0.03651044890284538, + 0.027396319434046745, + -0.015059886500239372, + 0.00012018332199659199, + 0.04578636959195137, + 0.09146487712860107, + -0.0631517544388771, + -0.025144752115011215, + 0.004526729695498943, + -0.031063543632626534, + 0.009693874977529049, + -0.024740278720855713, + -0.037939589470624924, + -0.06056312471628189, + 0.005757002159953117, + 0.03532399609684944, + 0.08844481408596039, + -0.07264339178800583, + -0.046002086251974106, + -0.049237873405218124, + -0.047107648104429245, + 0.027355872094631195, + -0.006538983900099993, + 0.042011287063360214, + -0.0075906142592430115, + 0.02681657485663891, + 0.06832900643348694, + 0.03866764158010483, + -0.04128323495388031, + 0.013226274400949478, + -0.049399662762880325, + 0.018268706277012825, + 0.03117140382528305, + -0.03850585222244263, + 0.041930392384529114, + 0.025535741820931435, + 0.025023410096764565, + 0.0025633489713072777, + 0.011210649274289608, + -0.07361412793397903, + 0.022461745887994766, + 0.05851379409432411, + -0.0060637276619672775, + 0.0620192289352417, + -0.03100961446762085, + -0.004408758133649826, + -0.0838068500161171, + 0.04977717250585556, + -0.06822115182876587, + 0.008190582506358624, + 0.0059255328960716724, + -0.010462374426424503, + 0.026924433186650276, + 0.037508148699998856, + -0.02685702219605446, + -0.0449504591524601, + 0.0668189749121666, + -0.021221362054347992, + -0.06579431146383286, + 0.004809860605746508, + -0.024268392473459244, + 0.018538355827331543, + -0.039719268679618835, + -0.034784696996212006, + -0.03162980452179909, + 0.06962332129478455, + 0.029607439413666725, + -0.02931082621216774, + 0.08337541669607162, + 0.09459280222654343, + 0.03195338323712349, + 0.01903720572590828, + 0.07760492712259293, + 0.04646049067378044, + 0.02887938730418682, + -0.016124999150633812, + 0.014453176409006119, + 0.034865591675043106, + -0.007806333247572184, + -0.0023981891572475433, + -0.008345630951225758, + -0.03570150211453438, + 0.00012808319297619164, + -0.10068687051534653, + 0.05401065573096275, + 0.059160951524972916, + -0.007132211234420538, + 0.03057817555963993, + 0.025737978518009186, + 0.024618936702609062, + 0.1187533363699913, + -0.016839567571878433, + -0.039206936955451965, + -0.006424382794648409, + -0.0684368684887886, + -0.011588158085942268, + 0.021504493430256844, + -0.09394564479589462, + -0.03100961446762085, + -0.022057272493839264, + 0.0194686446338892, + 0.04619084298610687, + 0.048051416873931885, + -0.0022802178282290697, + -0.022192098200321198, + -0.10252048075199127, + 0.05732733756303787, + -0.013536370359361172, + 0.043116845190525055, + -0.04899518936872482, + 0.005554765462875366, + 0.004813231527805328, + 0.005389605648815632, + -0.07809029519557953, + 0.03127926215529442, + 0.01252518780529499, + -0.05107148364186287, + 0.0009766343282535672, + -0.01797209307551384, + 0.009511861950159073, + -0.011224132031202316, + -0.028259195387363434, + -0.015086851082742214, + 0.06994690001010895, + 0.03192641958594322, + 0.00883099902421236, + -0.059862036257982254, + 0.08909197151660919, + -0.010273619554936886, + 0.06191136687994003, + 0.04120234027504921, + 0.03195338323712349, + 0.05395672842860222, + 0.10796738415956497, + 0.0073951189406216145, + 0.018336119130253792, + 0.013030778616666794, + -0.04457294940948486, + 0.07442307472229004, + 0.046082980930805206, + 0.0076243202202022076, + 0.025508778169751167, + -0.015868833288550377, + 0.0626663863658905, + -0.0010828084778040648, + -0.029095107689499855, + -0.008507420308887959, + -0.0168260857462883, + 0.02275835908949375, + -0.026600856333971024, + 0.03451504930853844, + 0.05217704549431801, + -0.14259029924869537, + -0.019724810495972633, + -0.015221675857901573, + 0.06741220504045486, + -0.05727340653538704, + -0.007873745635151863, + 0.015289087779819965, + 0.06994690001010895, + 0.00890515185892582, + 0.08299790322780609, + 0.04214610904455185, + -0.021787624806165695, + -0.03092871978878975, + 0.027423284947872162, + 0.010334290564060211, + -0.044465091079473495, + -0.014763272367417812, + -0.07107942551374435, + 0.04624477028846741, + -0.06309781968593597, + 0.07512415945529938, + 0.014547553844749928, + -0.0011181998997926712, + 0.016205893829464912, + 0.03335556015372276, + 0.052878133952617645, + -0.041256267577409744, + -0.006383935455232859, + -0.0012740906095132232, + 0.10607984662055969, + 0.11195819079875946, + 0.018282189965248108, + -0.006370453163981438, + 0.07566345483064651, + 0.04341346025466919, + 0.012194867245852947, + -0.004189668223261833, + 0.009161318652331829, + 0.007368153892457485, + -0.012889212928712368, + 0.04586726427078247, + 0.025697531178593636, + -0.003566105617210269, + -0.05991596728563309, + -0.028609739616513252, + 0.09513210505247116, + 0.10133402794599533, + 0.02955351024866104, + -0.03578239679336548, + -0.05209615081548691, + 0.034622907638549805, + 0.0958331897854805, + 0.005655883811414242, + 0.04573243856430054, + -0.012235314585268497, + -0.0628281757235527, + -0.033948786556720734, + -0.0019701216369867325, + 0.04837499558925629, + -0.0025279575493186712, + -0.0005140180583111942, + 0.03378699719905853, + 0.041930392384529114, + -0.034622907638549805, + 0.06309781968593597, + -0.00890515185892582, + 0.039881058037281036, + -0.008210806176066399, + -0.04961538314819336, + 0.008231029845774174, + 0.006886156741529703, + -0.050343435257673264, + 0.04867161065340042, + 0.02456500753760338, + -0.048213206231594086, + 0.02670871466398239, + 0.07490844279527664, + 0.020331520587205887, + 0.00558847188949585, + 0.032924119383096695, + -0.008783809840679169, + -0.07792850583791733, + -0.11066387593746185, + 0.07992390543222427, + -0.04176860302686691, + 0.0004487124679144472, + -0.08229681849479675, + 0.008291700854897499, + -0.003990802448242903, + -0.010448891669511795, + 0.06245066598057747, + -0.05266241356730461, + -0.09178845584392548, + 0.017635032534599304, + -0.09265132993459702, + 0.012660011649131775, + -0.03599811717867851, + -0.007759144529700279, + -0.05829807370901108, + -0.016610367223620415, + 0.06158778816461563, + -0.07792850583791733, + -0.006822114810347557, + -0.02014276571571827, + 0.008965822868049145, + -0.011635346338152885, + 0.02734239026904106, + -0.0064547182992100716, + -0.07399163395166397, + -0.02306845597922802, + 0.05363314971327782, + -0.01967088133096695, + -0.007294000592082739, + 0.061048492789268494, + -0.007556907832622528, + 0.03133319318294525, + 0.0058682323433458805, + 0.0010954482713714242, + 0.03850585222244263, + 0.06493143737316132, + -0.038263168185949326, + -0.018861934542655945, + 0.035377923399209976, + 0.041498951613903046, + 0.04427633434534073, + -0.06369104981422424, + 0.08677298575639725, + -0.034434154629707336, + -0.02955351024866104, + -0.053579218685626984, + 0.05255455523729324, + -0.006474941968917847, + -0.036564379930496216, + -0.028933318331837654, + -0.025104304775595665, + -0.01078595221042633, + 0.0450313501060009, + 0.029796194285154343, + 0.02275835908949375, + 0.04573243856430054, + -0.01659688539803028, + -0.04929180443286896, + 0.042847197502851486, + 0.029607439413666725, + -0.01317234430462122, + 0.007287259213626385, + 0.011298284865915775, + -0.06735827028751373, + 0.011224132031202316, + 0.06212708726525307, + -0.10548661649227142, + 0.05953845754265785, + -0.06288210302591324, + -0.03152194619178772, + 0.03961141034960747, + -0.024160534143447876, + -0.07539381086826324, + -0.00627944665029645, + 0.0502355732023716, + 0.027355872094631195, + 0.02642558328807354, + 0.001934730214998126, + 0.021558422595262527, + -0.0014451490715146065, + -0.022340403869748116, + -0.050936661660671234, + -0.1076977327466011, + 0.00894559919834137, + -0.03378699719905853, + 0.009565792046487331, + -0.019414715468883514, + -0.010657869279384613, + 0.023445963859558105, + 0.02879849262535572, + -0.02847491391003132, + -0.06929974257946014, + 0.056626249104738235, + -0.027032293379306793, + 0.09782858937978745, + -0.013624005950987339, + -0.0847775861620903, + 0.006195181515067816, + 0.02362123690545559, + -0.049480557441711426, + 0.09755893796682358, + -0.049049120396375656, + -0.027207564562559128, + -0.04416847601532936, + 0.01844397932291031, + -0.12705852091312408, + -0.004772784188389778, + -0.0007642858545295894, + 0.01741931401193142, + -0.03227696195244789, + 0.0015538512961938977, + -0.05668018013238907, + 0.04058214649558067, + -0.030092807486653328, + 0.07620275765657425, + -0.00910738855600357, + -0.0002812352904584259, + -0.03370610252022743, + 0.024996444582939148, + 0.04069000482559204, + -0.01758110336959362, + 0.01465541310608387, + -0.053228676319122314, + 0.053039923310279846, + 0.055601585656404495, + 0.05158381909132004, + -0.0035964411217719316, + 0.05341742932796478, + -0.004135738592594862, + 0.005217704456299543, + -0.011385921388864517, + 0.012848765589296818, + -0.030470315366983414, + 0.04654138535261154, + -0.004445835016667843, + 0.11627256870269775, + 0.02116743102669716, + -0.011116272769868374, + 0.002209434984251857, + 0.013819501735270023, + 0.023675166070461273, + 0.04570547491312027, + 0.012902695685625076, + 0.04314380884170532, + 0.07269731909036636, + 0.033517345786094666, + -0.008561349473893642, + -0.04101358354091644, + -0.03696885332465172, + 0.031117472797632217, + -0.031980350613594055, + -0.04079786688089371, + -0.079654261469841, + 0.023648200556635857, + -0.006228887476027012, + -0.006232258398085833, + -0.025495294481515884, + 0.06401462852954865, + -0.025171717628836632, + -0.03384092450141907, + -0.006943456828594208, + 0.004634588956832886, + -0.012626306153833866, + -0.06034740433096886, + -0.05037039890885353, + -0.08650334179401398, + -0.0008923690184019506, + 0.04459991306066513, + 0.02500992827117443, + -0.019967494532465935, + 0.019145065918564796, + -0.019927047193050385, + -0.0742073506116867, + 0.040312498807907104, + 0.04330559819936752, + 0.00014314560394268483, + 0.04087876155972481, + 0.07523202151060104, + 0.08682692050933838, + 0.007678249850869179, + 0.04160681366920471, + -0.0031481499318033457, + -0.017999058589339256, + 0.018969794735312462, + -0.07582524418830872, + 0.015558736398816109, + 0.07107942551374435, + -0.0727512463927269, + -0.0559251643717289, + -0.027746863663196564, + -0.03502738103270531, + -0.020291073247790337, + 0.012073525227606297, + -0.011244355700910091, + -0.05392976105213165, + -0.013179086148738861, + 0.013084708712995052, + 0.011473556980490685, + -0.04120234027504921, + 0.061372071504592896, + -0.07668812572956085, + 0.0011620178120210767, + 0.025859320536255836, + 0.050343435257673264, + -0.08256646990776062, + -0.051772572100162506, + 0.009289401583373547, + -0.00406832667067647, + 0.02192244865000248, + 0.019859634339809418, + 0.007327706553041935, + -0.02634468860924244, + -0.07744313776493073, + 0.03400271385908127, + -0.0168260857462883, + 0.01469586044549942, + -0.017001356929540634, + 0.07037834078073502, + -0.047188542783260345, + 0.07701170444488525, + 0.00898604653775692, + 0.05926880985498428, + 0.06994690001010895, + 0.04238879308104515, + -0.04001588374376297, + 0.054172445088624954, + -0.027086222544312477, + -0.0022111202124506235, + 0.003529028967022896, + 0.025508778169751167, + -0.013913879171013832, + -0.030146736651659012, + 0.023257210850715637, + -0.023432482033967972, + -0.05991596728563309, + -0.0393417626619339, + 0.005423311609774828, + -0.0390990786254406, + 0.008399560116231441, + -0.005221075378358364, + -0.053066886961460114, + -0.006070469040423632, + -0.018538355827331543, + 0.013617265038192272, + 0.030982648953795433, + 0.0453549288213253, + 0.00715917581692338, + 0.03686099126935005, + -0.019252926111221313, + -0.00738837756216526, + 0.0564105324447155, + 0.08585618436336517, + 0.001983604161068797, + 0.010792694054543972, + -0.011210649274289608, + -0.038020484149456024, + 0.03459594398736954, + -0.04468080773949623, + 0.03847888484597206, + 0.04810534790158272, + 0.0512872040271759, + -0.030227631330490112, + 0.044303301721811295, + 0.028771528974175453, + -0.04427633434534073, + 0.003990802448242903, + -0.02374257892370224, + -0.05012771487236023, + -0.04945359379053116, + 0.04834803193807602, + 0.02180110663175583, + 0.041067514568567276 + ] + }, + { + "id": "bd3dab47-2dc1-4c53-bf57-81ecca668267", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "johnmartinez", + "reviewDate": "2021-08-07T12:44:07", + "stars": 3, + "verifiedUser": false + }, + { + "id": "881a77b7-4f1e-4fd5-bda6-2b0c993b57e3", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "nwilliams", + "reviewDate": "2021-06-10T22:18:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a7e47a3e-c429-45f5-9aa9-e53e365e908e", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "ndelgado", + "reviewDate": "2021-03-15T00:23:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "21a04bb2-bef8-44ed-b4d8-b4b8d02d89b0", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "xgoodman", + "reviewDate": "2021-12-24T20:45:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a1ae4027-3b5d-45f2-85d2-c42c579275a2", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "yvonne64", + "reviewDate": "2022-04-08T23:01:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d21536dc-cbe8-4f94-b916-29cc798a2485", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "heather92", + "reviewDate": "2021-01-29T22:28:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a36eedbf-fea3-479c-8c5d-8e41e3b5ba23", + "productId": "fb1daa10-7f34-49fd-90bc-270e45385cca", + "category": "Media", + "docType": "customerRating", + "userName": "heatherbarnes", + "reviewDate": "2022-12-28T07:57:03", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "product", + "name": "Premium Filter Ultra (Red)", + "description": "This Premium Filter Ultra (Red) is equipped without any filters but is able to filter through any filter.\n\nUltra Ultra Premium filter Premium filter (Red)\n\nPremium", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2018-09-01T20:00:42", + "price": 676.76, + "stock": 85, + "priceHistory": [ + { + "priceDate": "2021-02-04T09:51:51", + "newPrice": 705.17 + }, + { + "priceDate": "2022-01-06T09:51:51", + "newPrice": 706.38 + }, + { + "priceDate": "2022-12-08T09:51:51", + "newPrice": 636.52 + }, + { + "priceDate": "2024-06-25T09:51:51", + "newPrice": 676.76 + } + ], + "descriptionVector": [ + 0.0026826253160834312, + 0.05127947777509689, + -0.009893369860947132, + 0.06763467192649841, + 0.014459540136158466, + -0.039075352251529694, + -0.07067878544330597, + 0.014030597172677517, + 0.0015895116375759244, + -0.0006226596306078136, + -0.015179057605564594, + -0.06403708457946777, + -0.00039435108192265034, + -0.030053704977035522, + 0.06254269927740097, + 0.0022346561308950186, + -0.05778281390666962, + -0.01562183815985918, + 0.0031305942684412003, + -0.04242387413978577, + 0.04585542157292366, + -0.0035128379240632057, + -0.03312549367547035, + -0.019966619089245796, + -0.007575692143291235, + 0.025363001972436905, + -0.009582039900124073, + -0.008571946993470192, + 0.0003997561288997531, + 0.00453849695622921, + 0.1070421040058136, + 0.011311649344861507, + 0.03996090963482857, + 0.07067878544330597, + -0.049286969006061554, + -0.010232373140752316, + 0.08639748394489288, + 0.01645205169916153, + 0.05988601967692375, + -0.012321742251515388, + 0.0013214220525696874, + -0.024643484503030777, + -0.10809370875358582, + 0.04754352197051048, + -0.030468810349702835, + -0.020354051142930984, + -0.0348966121673584, + 0.01697785221040249, + -0.030883917585015297, + 0.003395224455744028, + 0.01758667454123497, + -0.0035318636801093817, + -0.01801561750471592, + -0.03406640142202377, + -0.02629007212817669, + 0.0006291456520557404, + -0.006562140770256519, + 0.2008008062839508, + 0.05540287122130394, + 0.00917385146021843, + 0.006257729139178991, + -0.060107409954071045, + 0.051971323788166046, + 0.013490958139300346, + -0.0262762364000082, + -0.025086265057325363, + -0.025791944935917854, + -0.07887022197246552, + 0.08695095777511597, + 0.07018065452575684, + -0.014473376795649529, + 0.06536542624235153, + 0.009616632014513016, + 0.013912983238697052, + 0.03129902482032776, + 0.09392474591732025, + 0.10017901659011841, + -0.08169294148683548, + 0.0567312091588974, + 0.027812128886580467, + 0.02415919303894043, + 0.05473870038986206, + -0.03309781849384308, + 0.02519696019589901, + -0.004590385127812624, + -0.0075964475981891155, + 0.027922824025154114, + -0.1086471825838089, + 0.013394100591540337, + 0.008288291282951832, + 0.009298383258283138, + 0.05922184884548187, + 0.07012531161308289, + -0.06785605847835541, + 0.0308285690844059, + 0.01924710161983967, + -0.017379121854901314, + 0.005368709564208984, + -0.11279825121164322, + 0.043088044971227646, + -0.03802374750375748, + -0.0728926882147789, + -0.0189980361610651, + 0.028337931260466576, + 0.06868627667427063, + 0.02392396703362465, + 0.03511800244450569, + -0.01545579545199871, + -0.0340387262403965, + 0.0009288006112910807, + -0.027867477387189865, + -0.04914860054850578, + -0.02415919303894043, + 0.028047356754541397, + 0.013172710314393044, + -0.03437080979347229, + -0.05988601967692375, + -0.029140470549464226, + 0.07422102987766266, + 0.03149273991584778, + -0.0023937802761793137, + 0.005143860355019569, + 0.05399150773882866, + -0.048429083079099655, + 0.026511462405323982, + -0.009090830571949482, + 0.027051100507378578, + 0.057561423629522324, + 0.04499753564596176, + -0.013982167467474937, + -0.08822394907474518, + 0.01607845537364483, + -0.0583362877368927, + 0.05213736742734909, + -0.08401753753423691, + 0.06896301358938217, + -0.04931464046239853, + 0.1051049456000328, + -0.03536706790328026, + 0.037082839757204056, + -0.07134295254945755, + -0.09464426338672638, + 0.047488175332546234, + 0.01326264999806881, + -0.035284046083688736, + -0.01809863932430744, + -0.0026947325095534325, + 0.04438871145248413, + -0.018887341022491455, + -0.07261595129966736, + 0.0727819949388504, + -0.12065760046243668, + -0.01616147719323635, + 0.018901178613305092, + 0.008447415195405483, + 0.038881633430719376, + -0.032599691301584244, + 0.03257201611995697, + -0.09425683319568634, + -0.024657320231199265, + -0.010460681281983852, + -0.006901144050061703, + -0.016562746837735176, + -0.029389534145593643, + 0.03470289707183838, + 0.03456452861428261, + -0.0030527617782354355, + 0.019205590710043907, + 0.01952383853495121, + 0.021862270310521126, + -0.006447986233979464, + -0.04964672774076462, + 0.04950835928320885, + -0.03426011651754379, + 0.045883096754550934, + 0.02355037070810795, + -0.0034903530031442642, + 0.021433327347040176, + 0.03791305422782898, + -0.020160334184765816, + 0.03536706790328026, + -0.01962069608271122, + -0.048816513270139694, + -0.08152689784765244, + 0.0028936376329511404, + 0.021142752841114998, + 0.026774363592267036, + 0.06514403223991394, + -0.006676294840872288, + 0.012390926480293274, + -0.03777468204498291, + -0.030551832169294357, + -0.0034747866448014975, + -0.013843799009919167, + -0.016507398337125778, + -0.00040645836270414293, + -0.030939264222979546, + 0.012750685214996338, + 0.04087414592504501, + -0.057838160544633865, + -0.022180519998073578, + 0.018513746559619904, + 0.06840953975915909, + 0.003258585464209318, + -0.034204769879579544, + 0.06569750607013702, + 0.06824349611997604, + 0.05639912560582161, + -0.013020504266023636, + 0.07200712710618973, + -0.05805955082178116, + -0.07864882797002792, + -0.06403708457946777, + -0.015870902687311172, + 0.06126970797777176, + -0.005441353190690279, + -0.04992346465587616, + -0.040818795561790466, + -0.048567451536655426, + 0.011837450787425041, + 0.05144552141427994, + -0.0005824461695738137, + -0.0072851176373660564, + -0.011235547251999378, + -0.009941798634827137, + 0.017102384939789772, + 0.028420953080058098, + -0.008080738596618176, + 0.06846488267183304, + 0.08971833437681198, + -0.006953032221645117, + 0.015220568515360355, + 0.037138186395168304, + -0.002648032968863845, + -0.03550543636083603, + 0.038079094141721725, + -0.01602310687303543, + -0.04953603073954582, + 0.037082839757204056, + 0.026774363592267036, + 0.026968080550432205, + 0.03749794512987137, + -0.11218942701816559, + -0.030883917585015297, + 0.03334688022732735, + -0.02855932153761387, + 0.021336469799280167, + -0.06558681279420853, + -0.03497963398694992, + 0.008219107054173946, + 0.04793095216155052, + 0.03719353303313255, + -0.03962882608175278, + 0.07294803112745285, + -0.06780071556568146, + 0.08523518592119217, + 0.008641132153570652, + -0.0567312091588974, + -0.0908806324005127, + -0.06331756711006165, + 0.024131519719958305, + 0.06602959334850311, + 0.06586354970932007, + 0.025750434026122093, + -0.060771580785512924, + -0.03796840086579323, + 0.023840945214033127, + -0.07411032915115356, + -0.05966462939977646, + 0.04258991777896881, + 0.03282108157873154, + 0.10294639319181442, + -0.021198101341724396, + 0.04416732117533684, + 0.06519938260316849, + -0.000250144861638546, + -0.05639912560582161, + -0.002973199589177966, + 0.011034912429749966, + 0.006489497143775225, + 0.09525308758020401, + -0.013518632389605045, + 0.04480382055044174, + -0.02396547608077526, + 0.07294803112745285, + 0.041095536202192307, + -0.008149922825396061, + -0.046021465212106705, + -0.0503108985722065, + -0.07466381043195724, + 0.016853321343660355, + 0.0137538593262434, + -0.011173280887305737, + -0.051500868052244186, + 0.02646995149552822, + 0.027867477387189865, + 0.03622495383024216, + -0.01966220699250698, + 0.0759921446442604, + 0.05745072662830353, + -0.028254909440875053, + -0.008398986421525478, + -0.014791625551879406, + -0.028725363314151764, + -0.017794229090213776, + 0.08850068598985672, + 0.010502192191779613, + 0.00032754489802755415, + 0.007714061066508293, + -0.07892556488513947, + 0.044610101729631424, + -0.0414276197552681, + 0.00040343153523281217, + 0.006368424277752638, + 0.054378941655159, + -0.0109449727460742, + -0.03672308102250099, + 0.01663193106651306, + -0.029140470549464226, + -0.00656905910000205, + -0.04397360607981682, + -0.03697214648127556, + 0.004573089070618153, + 0.007554936688393354, + 0.03766398876905441, + -0.07344616204500198, + -0.08888812363147736, + 0.06082692742347717, + 0.057893507182598114, + -0.08230176568031311, + -0.022014476358890533, + -0.04223015904426575, + -0.015815554186701775, + 0.002558093285188079, + 0.04646424576640129, + -0.0876704752445221, + 0.005794193595647812, + -0.011782104149460793, + -0.02476801536977291, + -0.04757119342684746, + 0.02335665374994278, + -0.037276554852724075, + 0.026885058730840683, + 0.0033087439369410276, + 0.09171084314584732, + -0.04632587730884552, + 0.023605717346072197, + -0.03251666948199272, + -0.005396383348852396, + 0.03395570442080498, + 0.0014969775220379233, + -0.0045765480026602745, + 0.06984857469797134, + 0.004407046362757683, + 0.06946113705635071, + -0.03304247185587883, + -0.025612065568566322, + -0.020727647468447685, + 0.050089508295059204, + 0.015511143021285534, + 0.023674901574850082, + 0.014639419503509998, + 0.05111343786120415, + 0.07482984662055969, + 0.0037359576672315598, + 0.0812501609325409, + -0.005562426056712866, + 0.03664005920290947, + 0.02368873916566372, + 0.035284046083688736, + -0.055900998413562775, + -0.013809206895530224, + -0.02562590315937996, + 0.019537676125764847, + -0.03937976062297821, + -0.0583362877368927, + 0.04137227311730385, + 0.041012514382600784, + 0.002748350379988551, + 0.04959138110280037, + -0.040542058646678925, + 0.036418668925762177, + -0.0332915335893631, + 0.0048359897918999195, + 0.04939766228199005, + 0.012024248950183392, + -0.030551832169294357, + -0.015013014897704124, + -0.024837199598550797, + 0.0005521780112758279, + -0.041759707033634186, + -0.03091159090399742, + -0.011456936597824097, + 0.0010861951159313321, + -0.033014796674251556, + 0.025418348610401154, + -0.03929673880338669, + 0.10311243683099747, + 0.011145607568323612, + -0.007707142271101475, + 0.03846652805805206, + 0.0446377769112587, + -0.06232130900025368, + -0.08086273074150085, + -0.04563403129577637, + -0.030745549127459526, + 0.012605397962033749, + -0.019925108179450035, + 0.052026670426130295, + -0.07339081168174744, + 0.03470289707183838, + -0.04051438719034195, + -0.017130058258771896, + 0.007748653180897236, + 0.03664005920290947, + 0.0437798909842968, + 0.04297735169529915, + 0.02093520015478134, + 0.04740515351295471, + -0.041095536202192307, + 0.03450917825102806, + 0.02198680303990841, + -0.05399150773882866, + 0.00799079891294241, + -0.005880674347281456, + 0.006679754238575697, + 0.006998002529144287, + 0.04984044283628464, + 0.013684675097465515, + 0.0013802287867292762, + 0.015040689148008823, + -0.020008129999041557, + 0.024837199598550797, + -0.015663348138332367, + -0.02717563323676586, + -0.0035128379240632057, + 0.043143391609191895, + -0.030247420072555542, + -0.07787396013736725, + -0.0044347201474010944, + -0.030607178807258606, + -0.021862270310521126, + -0.022955384105443954, + -0.002966281259432435, + -0.05418522283434868, + -0.0315757617354393, + 0.006247351411730051, + 0.026386931538581848, + -0.02977696619927883, + 0.011692164465785027, + 0.006022502202540636, + 0.0324336476624012, + -0.014611746184527874, + 0.00827445462346077, + 0.010516028851270676, + -0.004185656551271677, + 0.036418668925762177, + 0.10903462022542953, + -0.0055520483292639256, + 0.03271038457751274, + -0.08977367728948593, + 0.07831674069166183, + 0.032267604023218155, + -0.08379615098237991, + -0.03390035778284073, + 0.01281295157968998, + -0.05933254212141037, + 0.004088798072189093, + 0.01772504299879074, + 0.015469632111489773, + -0.04804164916276932, + -0.07853813469409943, + -0.02330130711197853, + 0.012515458278357983, + -0.022000640630722046, + 0.09320522844791412, + -0.03417709469795227, + -0.019593022763729095, + 0.05938789248466492, + 0.007132912054657936, + -0.02406233549118042, + 0.003974644001573324, + 0.027673760429024696, + 0.008309046737849712, + 0.019122568890452385, + 0.030136724933981895, + 0.0665830671787262, + 0.03309781849384308, + 0.00579073466360569, + 0.05711864307522774, + 0.06215526536107063, + 0.01625833474099636, + 0.014141292311251163, + -0.03863257169723511, + -0.03744259849190712, + -0.05238642916083336, + 0.020340213552117348, + -0.0357544980943203, + 0.01663193106651306, + 0.004963980987668037, + 0.06697050482034683, + -0.013055096380412579, + 0.021294958889484406, + -0.04032066836953163, + -0.02864234335720539, + -0.014418029226362705, + 0.08534587919712067, + -0.041953422129154205, + -0.046491917222738266, + -0.009291465394198895, + -0.03154808655381203, + 0.07200712710618973 + ] + }, + { + "id": "17925992-903e-41e8-9584-49bd2c452ee5", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "sarahscott", + "reviewDate": "2021-07-01T11:44:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a84eff0-2527-4ee5-a4e4-bf3094212729", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "fergusonjoshua", + "reviewDate": "2022-07-06T16:53:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "26d9aeaf-d12e-43b4-b294-eedfc9ee4ea0", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "pollardconnie", + "reviewDate": "2021-03-29T07:34:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2336f29a-fcc2-4043-b127-76a18b472893", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "ashleymccoy", + "reviewDate": "2021-06-11T09:41:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8c3de937-e098-4bb1-87c7-bcbf45672bc7", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "gary65", + "reviewDate": "2022-03-12T14:12:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "64476512-0007-4281-b5f2-0b5ceb5c1622", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "melissalee", + "reviewDate": "2021-02-04T09:51:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "70bde111-13db-46ba-82d3-65e142dbe696", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "turnerjames", + "reviewDate": "2022-08-25T08:11:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "441a7f92-08a8-48cd-b501-387c51275390", + "productId": "0a31b189-64c5-4b42-b9d5-51355c62a6bc", + "category": "Other", + "docType": "customerRating", + "userName": "nhudson", + "reviewDate": "2022-12-08T18:28:08", + "stars": 1, + "verifiedUser": false + }, + { + "id": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Super (Black)", + "description": "This Amazing Mouse Super (Black) is rated 5.0 out of 5 by 6.\n\nRated 5 out of 5 by Anonymous from Fantastic price for the amazing, but still great! I just ordered the 7th from CVS because I wanted to use it as my mouse. If you have a mouse or want to keep one for yourself, I recommend this purchase. No more waiting around for a new mouse to arrive that is actually perfect!\n\nRated 4 out of 5 by G", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-12-25T06:43:37", + "price": 826.2, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-07-11T12:32:56", + "newPrice": 810.83 + }, + { + "priceDate": "2022-03-09T12:32:56", + "newPrice": 839.45 + }, + { + "priceDate": "2022-11-05T12:32:56", + "newPrice": 805.07 + }, + { + "priceDate": "2023-05-09T12:32:56", + "newPrice": 826.2 + } + ], + "descriptionVector": [ + -0.08971453458070755, + 0.006768297869712114, + -0.029407501220703125, + 0.017651719972491264, + 0.007977566681802273, + -0.011406837962567806, + -0.026351239532232285, + 0.01265822071582079, + 0.037276774644851685, + 0.10848528146743774, + 0.01715838722884655, + -0.05024784058332443, + 0.019540827721357346, + -0.06839289516210556, + 0.00662390748038888, + -0.016316110268235207, + -0.02244066633284092, + -0.00910260807722807, + 0.014053993858397007, + 0.024522295221686363, + 0.006617891136556864, + -0.0942387655377388, + -0.0037902467884123325, + 0.020551560446619987, + 0.038215313106775284, + -0.012002447620034218, + -0.017880339175462723, + 0.05371320992708206, + 0.016015296801924706, + -0.02368001826107502, + -0.010558544658124447, + 0.03044229932129383, + 0.03395579755306244, + 0.08283193409442902, + 0.027771078050136566, + 0.039635151624679565, + -0.014174319803714752, + -0.02796359732747078, + -0.011906187981367111, + 0.07960721105337143, + 0.026014328002929688, + 0.03566441684961319, + 0.05939256399869919, + -0.01951676234602928, + -0.03835970163345337, + 0.02685660496354103, + -0.016725216060876846, + -0.00420236075296998, + 0.005923012271523476, + 0.06545695662498474, + 0.02026277966797352, + 0.039803605526685715, + -0.08677860349416733, + -0.004112116992473602, + 0.036049459129571915, + -0.001495793811045587, + -0.0103720398619771, + 0.04355775564908981, + 0.05756361782550812, + -0.11137308925390244, + -0.01785627380013466, + -0.02262115478515625, + 0.036290109157562256, + -0.02443806640803814, + -0.025990262627601624, + -0.009066510945558548, + -0.041343770921230316, + 0.02526831068098545, + 0.03973141312599182, + 0.026567824184894562, + -0.0380709208548069, + 0.010011063888669014, + 0.043918732553720474, + -0.027530426159501076, + 0.014619522728025913, + 0.01691773533821106, + 0.08961828052997589, + 0.04399092495441437, + -0.042450763285160065, + 0.023343106731772423, + 0.06324297189712524, + -0.033113520592451096, + 0.0204432662576437, + 0.051499225199222565, + 0.11522349715232849, + 0.04427970573306084, + -0.00520106079056859, + -0.13052888214588165, + -0.03166961669921875, + 0.06492752581834793, + -0.030009128153324127, + 0.019312208518385887, + 0.019107656553387642, + -0.014041961170732975, + -0.01236943993717432, + -0.010618707165122032, + -0.008717567659914494, + 0.02098473161458969, + -0.01269431784749031, + 0.0216826181858778, + 0.03535157069563866, + -0.006798379123210907, + -0.09034022688865662, + 0.00309235998429358, + -0.08307258039712906, + -0.036987993866205215, + 0.004388865083456039, + -0.052798736840486526, + -0.01879481039941311, + -0.10068820416927338, + -0.01874667964875698, + -0.027458231896162033, + -0.052269306033849716, + 0.030177583917975426, + 0.005784638226032257, + 0.02262115478515625, + -0.09438315778970718, + 0.00828439649194479, + -0.04247482866048813, + -0.018602289259433746, + 0.007917404174804688, + 0.03359482064843178, + -0.006220817565917969, + 0.08567161113023758, + 0.049213044345378876, + -0.014138221740722656, + 0.0352553091943264, + 0.011442935094237328, + 0.05963321402668953, + -0.08129176497459412, + -0.06911484897136688, + 0.018939200788736343, + 0.02637530490756035, + 0.03920197859406471, + -0.076815664768219, + 0.011767813935875893, + -0.010426186956465244, + 0.02451026253402233, + -0.06911484897136688, + 0.0013122977688908577, + -0.03248782828450203, + -0.06247289106249809, + -0.02750636264681816, + 0.018674485385417938, + -0.050681013613939285, + -0.0014724807115271688, + -0.0018304485129192472, + -0.008290412835776806, + -0.022175950929522514, + 0.008055778220295906, + 0.03766181692481041, + -0.09476819634437561, + -0.05693792924284935, + -0.10829276591539383, + 0.001100976369343698, + 0.059488825500011444, + -0.04346149414777756, + -0.022524895146489143, + -0.09693405777215958, + 0.07941469550132751, + -0.04014051705598831, + -0.02820424921810627, + -0.031212380155920982, + -0.01797659881412983, + 0.017254646867513657, + 0.04692686349153519, + 0.04478507488965988, + 0.024883270263671875, + -0.08764494210481644, + 0.025003595277667046, + 0.018722616136074066, + -0.06280980259180069, + 0.025244247168302536, + -0.05674540624022484, + 0.06035516783595085, + 0.06959614902734756, + 0.04175287485122681, + 0.026880670338869095, + 0.010925536043941975, + -0.03126050904393196, + 0.024004895240068436, + 0.06463874876499176, + -0.04507385566830635, + 0.010293828323483467, + 0.03884100541472435, + -0.03145303204655647, + 0.01703806221485138, + -0.004015856422483921, + -0.002701302757486701, + 0.026230914518237114, + 0.009890738874673843, + -0.03520718216896057, + 0.03518311679363251, + -0.03186213597655296, + -0.03982767090201378, + 0.1282186359167099, + -0.03838376700878143, + 0.029070589691400528, + -0.019252046942710876, + 0.0018620338523760438, + 0.010967650450766087, + 0.03537563607096672, + 0.09703031182289124, + -0.030827339738607407, + 0.06396492570638657, + -0.08480526506900787, + 0.02755449153482914, + 0.01980554312467575, + 0.07994412630796432, + -0.018133021891117096, + 0.02738603577017784, + -0.002469676546752453, + -0.011833992786705494, + -0.019240014255046844, + 0.048683613538742065, + 0.024642620235681534, + 0.02309042401611805, + -0.024053025990724564, + -0.055782806128263474, + -0.06993305683135986, + 0.007935453206300735, + -0.0088138272985816, + -0.0065517122857272625, + -0.02461855486035347, + -0.024486197158694267, + -0.022055625915527344, + 0.04146409407258034, + 0.00574252475053072, + 0.02455839142203331, + 0.03318571671843529, + -0.02120131626725197, + -0.041343770921230316, + -0.01436684001237154, + 0.05318377912044525, + -0.12407944351434708, + 0.04736003652215004, + -0.0845164880156517, + 0.0017958550015464425, + -0.015521962195634842, + 0.09322803467512131, + -0.011870089918375015, + -0.033281974494457245, + -0.019432535395026207, + 0.00241553015075624, + 0.03515905141830444, + -0.04476100951433182, + 0.06126963719725609, + -0.03706018999218941, + -0.10155454277992249, + -0.028132053092122078, + -0.017170419916510582, + -0.011376756243407726, + -0.027602622285485268, + 0.04731190577149391, + 0.01692976802587509, + 0.04156035557389259, + 0.04536263644695282, + 0.03130863979458809, + -0.008115940727293491, + -0.07561241090297699, + -0.02755449153482914, + 0.03977954015135765, + -0.03814311698079109, + 0.1055012196302414, + -0.06382053345441818, + 0.01221903320401907, + -0.023246847093105316, + -0.021429933607578278, + 0.005023580975830555, + 0.02555709145963192, + -0.008109924383461475, + 0.07561241090297699, + 0.09144721925258636, + -0.026014328002929688, + -0.028420833870768547, + 0.02139383740723133, + -0.008097891695797443, + 0.013801311142742634, + 0.031284574419260025, + -0.04153629019856453, + 0.05717857927083969, + 0.08942575752735138, + 0.04995905980467796, + 0.01116618700325489, + -0.00018688022100832313, + -0.023523595184087753, + 0.0030788234435021877, + -0.007598542142659426, + 0.005002524238079786, + 0.025749612599611282, + -0.04206572100520134, + 0.003326994366943836, + 0.016015296801924706, + -0.05154735594987869, + 0.03725270926952362, + 0.014029929414391518, + 0.00884390901774168, + 0.022043593227863312, + -0.07041436433792114, + -0.00945756770670414, + 0.04594019800424576, + 0.023631887510418892, + -0.05929630249738693, + -0.05457955226302147, + 0.06151029095053673, + 0.02038310468196869, + -0.034292709082365036, + -0.023547658696770668, + -0.05645662546157837, + -0.029118720442056656, + 0.055494025349617004, + 0.0007012708229012787, + -0.025942133739590645, + 0.02497952990233898, + 0.17577119171619415, + -0.07753761857748032, + -0.01563025452196598, + -0.005225125700235367, + 0.07724883407354355, + -0.006972850766032934, + -0.07590119540691376, + -0.04230637103319168, + 0.013620822690427303, + 0.07320591062307358, + 0.019227981567382812, + -0.04040523245930672, + -0.03138083592057228, + -0.0386725477874279, + -0.00836862437427044, + -0.0025824815966188908, + -0.041825070977211, + -0.014908303506672382, + 0.006509598344564438, + 0.022007495164871216, + 0.0035014660097658634, + -0.049333371222019196, + 0.0007445127703249454, + 0.09452755004167557, + 0.05506085231900215, + 0.0633392333984375, + 0.0015348994638770819, + -0.019769445061683655, + 0.019372371956706047, + 0.05260621756315231, + -0.012050578370690346, + -0.034220512956380844, + 0.03590506687760353, + -0.061847198754549026, + 0.04817824810743332, + -0.012182936072349548, + 0.001261159428395331, + -0.08047355711460114, + -0.0580449216067791, + 6.2230734329205e-05, + -0.03419644758105278, + 0.007099192123860121, + -0.014523263089358807, + -0.05058475211262703, + 0.00708114355802536, + 0.013632855378091335, + 0.014763913117349148, + -0.009980983100831509, + -0.007472200784832239, + -0.011918219737708569, + 0.014354807324707508, + 0.03982767090201378, + -0.006190736312419176, + -0.009583909064531326, + 0.04293206334114075, + -0.0913509652018547, + -0.04168068245053291, + -0.061365898698568344, + -0.00472878385335207, + 0.011852040886878967, + -0.06844102591276169, + -0.04170474782586098, + 0.030129453167319298, + 0.02902246080338955, + 0.00606740266084671, + 0.02584587223827839, + 0.034461162984371185, + 0.05246182903647423, + -0.03289693593978882, + 0.023066358640789986, + 0.06694899499416351, + 0.007646672427654266, + 0.0136569207534194, + 0.026567824184894562, + 0.04853922128677368, + 0.04266734793782234, + -0.05400199070572853, + 0.01465562079101801, + 0.009349275380373001, + 0.038215313106775284, + 0.07479420304298401, + -0.11223943531513214, + 0.053905729204416275, + 0.12369439750909805, + -0.006804395467042923, + -0.02490733563899994, + 0.012971066869795322, + 0.011316593736410141, + -0.010366023518145084, + -0.026591889560222626, + -0.030418233945965767, + -0.046565886586904526, + 0.0636761412024498, + 0.016544727608561516, + -0.09303551912307739, + -0.05515711382031441, + -0.04040523245930672, + -0.012092691846191883, + -0.015004564076662064, + -0.05159548670053482, + -0.011569276452064514, + 0.04882800206542015, + 0.08913697302341461, + -0.09924430400133133, + 0.03864848241209984, + -0.08528656512498856, + 0.028589289635419846, + 0.00031754595693200827, + 0.07181013375520706, + 0.028517093509435654, + -0.050921663641929626, + 0.026808474212884903, + -0.021574323996901512, + 0.010708951391279697, + -0.015028628520667553, + -0.01573854871094227, + 0.03231937438249588, + -0.04437596723437309, + -0.031814008951187134, + 0.01469171792268753, + -0.03253595903515816, + 0.02461855486035347, + -0.020888470113277435, + -0.012333342805504799, + 0.040333036333322525, + -0.010546511970460415, + 0.03506278991699219, + 0.011027812957763672, + -0.016941800713539124, + 0.007075127214193344, + -0.09895551949739456, + 0.03896132856607437, + -0.058189310133457184, + 0.056023456156253815, + 0.0337151475250721, + -0.04731190577149391, + -0.02938343584537506, + -0.0008234762353822589, + 0.03860035538673401, + -0.013332041911780834, + 0.07383159548044205, + 0.031236445531249046, + 0.007989599369466305, + 0.08822250366210938, + -0.03571254760026932, + -0.03145303204655647, + -0.015197084285318851, + 0.029648151248693466, + 0.04035710170865059, + 0.0157505813986063, + -0.04902052506804466, + -0.03896132856607437, + -0.04305239021778107, + -0.004689678084105253, + -0.030346037819981575, + -0.0037661816459149122, + -0.011497081257402897, + -0.06781533360481262, + -0.04425564408302307, + 0.029648151248693466, + 0.009595941752195358, + 0.002913376083597541, + 0.00498146703466773, + 0.05183613672852516, + 0.05222117528319359, + 0.053905729204416275, + 0.010618707165122032, + 0.04240263253450394, + -0.03737303614616394, + 0.04594019800424576, + 0.052558086812496185, + -0.06824850291013718, + 0.011473016813397408, + -0.002814107807353139, + 0.0324396975338459, + 0.0250998567789793, + -0.009427486918866634, + 0.09024396538734436, + -0.020347006618976593, + -0.05847809091210365, + -0.007562444545328617, + 0.01626797951757908, + -0.06126963719725609, + -0.02962408773601055, + -0.0386725477874279, + 0.029239045456051826, + -0.007189436350017786, + -0.06430183351039886, + -0.012598058208823204, + 0.06805598735809326, + 0.01927611231803894, + -0.01780814304947853, + -0.031284574419260025, + 0.01957692578434944, + 0.0010814236011356115, + -0.07431290298700333, + 0.0446406826376915, + 0.006274964194744825 + ] + }, + { + "id": "43e9b483-8f28-4b28-9539-9a4de89f725c", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "waltoncurtis", + "reviewDate": "2021-09-15T03:23:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a9eccacb-ada9-4347-8b78-beda70a84a2d", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "debbie78", + "reviewDate": "2021-11-16T20:28:58", + "stars": 5, + "verifiedUser": false + }, + { + "id": "b9e95372-7ae0-4f83-9b1b-65244da4c468", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "zacharymorris", + "reviewDate": "2022-02-23T14:19:39", + "stars": 3, + "verifiedUser": false + }, + { + "id": "64d911c2-50c1-44c9-862b-59cbef908cb4", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "olsonpaul", + "reviewDate": "2022-07-24T17:42:10", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c26a7754-8035-4468-8b11-28353caaeae7", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tjohnson", + "reviewDate": "2022-05-08T15:47:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "93d0de5a-3539-499d-9810-e4ebc0a49a72", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "coxdaniel", + "reviewDate": "2021-07-11T12:32:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8b355ee3-a405-4c0a-bbc5-1405eb8c8519", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "xmaxwell", + "reviewDate": "2022-05-17T04:06:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "46cc0c7d-b196-4570-8a37-39787cef31fc", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ashleyknight", + "reviewDate": "2021-07-24T22:58:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f6c2587b-0ad0-4efb-8c1a-3e6e91c5f00f", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "josemcdonald", + "reviewDate": "2022-11-06T01:29:56", + "stars": 5, + "verifiedUser": true + }, + { + "id": "ad8a8f39-f003-4453-8075-84d600492b92", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "eric81", + "reviewDate": "2021-12-16T12:42:08", + "stars": 5, + "verifiedUser": false + }, + { + "id": "9b2edf09-bf7a-4ad2-8be7-9b35f7398087", + "productId": "36dfc301-d7a4-458f-bda3-2a1ced8e1fad", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryangraves", + "reviewDate": "2022-01-09T03:03:16", + "stars": 5, + "verifiedUser": true + }, + { + "id": "15fd3d54-3678-4100-9498-a03d212c0162", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "product", + "name": "Luxe TV 3000 (Silver)", + "description": "This Luxe TV 3000 (Silver) is currently being produced as part of the Limited Edition Series of \"Super Mario Maker 2\" Series. A limited edition, non-discovered original series, with a total production budget of $20 million, was introduced in 1986 during a special presentation by the director of the Nintendo Entertainment System, Nintendo of America (NATS), in New York City.\n\n", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-11-28T19:35:27", + "price": 924.69, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-07-02T17:04:53", + "newPrice": 1015.4 + }, + { + "priceDate": "2023-08-09T17:04:53", + "newPrice": 924.69 + } + ], + "descriptionVector": [ + -0.0062800017185509205, + 0.008084004744887352, + -0.05606982484459877, + 0.01601254753768444, + -0.027490796521306038, + -0.08187645673751831, + -0.018603574484586716, + 0.013356744311749935, + 0.000940866710152477, + 0.02462771162390709, + 0.02150552347302437, + -0.011024819687008858, + 0.016375290229916573, + -0.03560071066021919, + 0.07990727573633194, + -0.02255489118397236, + -0.10633575171232224, + -0.009781126864254475, + 0.00042994855903089046, + -0.02451111562550068, + 0.04464339464902878, + -0.04062730446457863, + 0.002816122490912676, + 0.027102142572402954, + -5.0555390771478415e-05, + -0.0066135963425040245, + -0.009658053517341614, + 0.015066822059452534, + 0.0038282424211502075, + -0.04088640585541725, + 0.020184099674224854, + 0.03370926156640053, + -0.016738034784793854, + 0.031377337872982025, + -0.001970799872651696, + -0.028838131576776505, + 0.060370929539203644, + 0.08477840572595596, + 0.07197873294353485, + -0.05285695195198059, + -0.020184099674224854, + -0.05200191214680672, + -0.050810039043426514, + -0.003973987884819508, + 0.0008007892756722867, + -0.022982409223914146, + -0.038373108953237534, + -0.04342561215162277, + -0.040471840649843216, + 0.012177826836705208, + -0.04021273925900459, + 0.06498295813798904, + -0.031170055270195007, + 0.029149053618311882, + -0.04153416305780411, + -0.03969453275203705, + 0.04417701065540314, + 0.11462703347206116, + -0.004139165859669447, + 0.011685531586408615, + 0.02992636151611805, + -0.07581344991922379, + -0.0009125273209065199, + 0.03925405815243721, + 0.0007926923572085798, + -0.061873726546764374, + 0.0077730813063681126, + 0.03961680456995964, + -0.0236172117292881, + 0.011588368564844131, + 0.02381153777241707, + -0.03777717426419258, + 0.04399563744664192, + 0.12167462706565857, + 0.0690767839550972, + -0.008997341617941856, + 0.04187099635601044, + -0.03026319481432438, + -0.029615439474582672, + 0.015325925312936306, + 0.04156007245182991, + 0.011834516189992428, + -0.012417497113347054, + -0.023992910981178284, + 0.03288013115525246, + -0.009943066164851189, + -0.0575726218521595, + -0.10799400508403778, + -0.022606709972023964, + 0.0391504168510437, + -0.02394109033048153, + 0.1094449833035469, + -0.02093549817800522, + -0.062236469238996506, + -0.032983772456645966, + 0.05122460424900055, + -0.037233058363199234, + 0.03637801855802536, + -0.05695077404379845, + -0.005875153932720423, + 0.06135552003979683, + 0.009943066164851189, + 0.035626620054244995, + -0.023979954421520233, + -0.014963180758059025, + 0.014393155463039875, + -0.03741443157196045, + 0.0018380098044872284, + 0.024472249671816826, + -0.10353744029998779, + 0.04567980766296387, + 0.008161734789609909, + -0.023798583075404167, + -0.018227875232696533, + -0.02566412277519703, + 0.0932769700884819, + -0.05275331065058708, + -0.03210282325744629, + 0.003734317608177662, + 0.01162723358720541, + 0.009483158588409424, + -0.005690542981028557, + -0.04762307554483414, + -0.03961680456995964, + 0.021479614078998566, + -0.025068186223506927, + -0.036429841071367264, + -0.008284809067845345, + 0.01058434508740902, + -0.0032015377655625343, + -0.08845766633749008, + 0.05632892623543739, + 0.04389199614524841, + 0.039668623358011246, + -0.032517388463020325, + 0.09146325290203094, + -0.07560616731643677, + -0.018033547326922417, + -0.04389199614524841, + 0.06772944331169128, + -0.056484390050172806, + 0.01989908702671528, + 0.02496454492211342, + -0.038165826350450516, + 0.005084890406578779, + -0.06477567553520203, + -0.029149053618311882, + 0.0403163805603981, + -0.010189213789999485, + 0.011782695539295673, + 0.06472385674715042, + -0.01099243201315403, + -0.029641348868608475, + 0.0034557823091745377, + -0.029097232967615128, + 0.041845086961984634, + -0.12302196025848389, + 0.021920088678598404, + 0.016660302877426147, + 0.08270557969808578, + 0.009800559841096401, + -0.010558434762060642, + -0.09141143411397934, + -0.019886132329702377, + 0.021790537983179092, + -0.019717715680599213, + 0.04539479315280914, + -0.010888790711760521, + -0.061407338827848434, + 0.02116869017481804, + 0.04705305024981499, + 0.006846788804978132, + 0.015092732384800911, + 0.00256025861017406, + 0.027931271120905876, + -0.012022365815937519, + 0.032076913863420486, + 0.051405977457761765, + 0.013084686361253262, + -0.040808673948049545, + 0.007423292379826307, + 0.07653893530368805, + -0.06161462143063545, + -0.056121643632650375, + 0.00015859919949434698, + 0.04285558685660362, + 0.08426019549369812, + 0.0013967255363240838, + -0.04360698536038399, + 0.024226102977991104, + -0.003523796796798706, + 0.006234658882021904, + 0.020352518185973167, + -0.03176598995923996, + -0.06156280264258385, + -0.0068791769444942474, + 0.003062270116060972, + -0.017100777477025986, + -0.030548209324479103, + 0.059800904244184494, + -0.05239056795835495, + 0.06373926252126694, + 0.05798718333244324, + -0.010597300715744495, + -0.04894449934363365, + -0.07420701533555984, + -0.045057959854602814, + 0.04661257565021515, + 0.042985137552022934, + 0.04205236956477165, + -0.02707623317837715, + 0.019199511036276817, + 0.03650756925344467, + 0.015960726886987686, + 0.06892132014036179, + -0.0012283087708055973, + -0.017644893378019333, + 0.01992499828338623, + -0.006305912043899298, + -0.07177145034074783, + 0.07234147191047668, + -0.03674076497554779, + -0.011497682891786098, + -0.021090960130095482, + -0.015157507732510567, + 0.004751295782625675, + 0.040601395070552826, + 0.06928405910730362, + 0.017346926033496857, + -0.04295922815799713, + -0.024226102977991104, + 0.0253402441740036, + -0.022930588573217392, + 0.03834719955921173, + 0.010150348767638206, + 0.006827356293797493, + 0.025029320269823074, + -0.04339970275759697, + -0.04303696006536484, + 0.0403163805603981, + -0.02014523558318615, + -0.016258694231510162, + 0.001132764620706439, + 0.03272467106580734, + 0.025495706126093864, + -0.056018006056547165, + 0.1302768439054489, + 0.0044371336698532104, + -0.06684849411249161, + -0.04751943424344063, + 0.0007360136369243264, + -0.06399837136268616, + 0.012132484465837479, + 0.05586254224181175, + -0.05581072345376015, + 0.07083868235349655, + 0.03754398226737976, + 0.05663985013961792, + 0.08115096390247345, + -0.006050047930330038, + -0.08198009431362152, + 0.008019228465855122, + -0.0007177954539656639, + -0.0038541527464985847, + -0.051405977457761765, + 0.048659488558769226, + -0.0391245074570179, + -0.14074458181858063, + 0.01935497112572193, + 0.01370653323829174, + -0.04863357916474342, + -0.06892132014036179, + 0.07405155152082443, + 0.04319242015480995, + -0.019549299031496048, + -0.008699373342096806, + -0.013343789614737034, + 0.05249420925974846, + 0.011523592285811901, + -0.06601937115192413, + 0.04803764075040817, + -0.009249966591596603, + -0.0645165741443634, + -0.07311878353357315, + 0.0564325675368309, + -0.028268104419112206, + 0.04676803946495056, + 0.003682497190311551, + 0.025586392730474472, + -0.03324287757277489, + -0.030651850625872612, + 0.08198009431362152, + 0.05207964405417442, + -0.02772398851811886, + 0.05954180285334587, + 0.014328379184007645, + 0.012015887536108494, + 0.0051108007319271564, + 0.02462771162390709, + -0.020572755485773087, + -0.052338745445013046, + -0.07892268151044846, + 0.015831174328923225, + -0.08907950669527054, + -0.02578071877360344, + 0.023772673681378365, + -0.010603778064250946, + 0.056588031351566315, + -0.023021275177598, + -0.03119596466422081, + 0.015623892657458782, + -0.00931474193930626, + -0.07042411714792252, + -0.06296195834875107, + -0.008194123394787312, + -0.010921179316937923, + 0.038502663373947144, + 0.016763944178819656, + -0.02451111562550068, + 0.03741443157196045, + 0.05793536454439163, + 0.004054957535117865, + -0.08218737691640854, + 0.07182326912879944, + 0.12343652546405792, + -0.06658939272165298, + -0.032517388463020325, + -0.014172918163239956, + -0.06809218972921371, + -0.022503070533275604, + -0.01760602928698063, + 0.0026088403537869453, + -0.0207152608782053, + 0.009865335188806057, + 0.0149761363863945, + 0.020235920324921608, + 0.07918178290128708, + 0.04054957255721092, + 0.020702306181192398, + -0.022645575925707817, + 0.09260330349206924, + 0.06011182814836502, + -0.0426223948597908, + 0.015960726886987686, + 0.012462840415537357, + -0.051043231040239334, + -0.03534160926938057, + 0.05995636433362961, + 0.06591572612524033, + 0.09876994788646698, + 0.0018655394669622183, + -0.07612437754869461, + 0.08306832611560822, + -0.02922678552567959, + 0.055085234344005585, + 0.025392064824700356, + -0.0017651371890679002, + 0.0028064062353223562, + 0.01715259812772274, + 0.03015955537557602, + -0.059697262942790985, + 0.047959908843040466, + 0.09011591970920563, + 0.054515209048986435, + -0.06601937115192413, + 0.07353334873914719, + 0.020469114184379578, + -0.020456157624721527, + -0.04246693477034569, + -0.06804037094116211, + 0.05695077404379845, + -0.07130506634712219, + -0.10809765011072159, + -0.0005574756651185453, + 0.09882177412509918, + 0.022528979927301407, + 0.01243693009018898, + 0.06684849411249161, + -0.029667260125279427, + 0.040938228368759155, + -0.03785490617156029, + 0.045550256967544556, + 0.05710623413324356, + 0.061770085245370865, + 0.006131017580628395, + 0.030340926721692085, + -0.05399700254201889, + -0.09229238331317902, + -0.020054548978805542, + -0.0056711104698479176, + 0.019950907677412033, + -0.03295786306262016, + 0.023656077682971954, + 0.09809628129005432, + -0.061873726546764374, + 0.004715668968856335, + 0.01763193868100643, + 0.0015206090174615383, + 0.06969862431287766, + -0.028164463117718697, + 0.017981726676225662, + 0.0414823442697525, + 0.004563446156680584, + -0.04987727105617523, + -0.04570571705698967, + 0.029796810820698738, + -0.007967407815158367, + 0.03951316326856613, + -0.03858039155602455, + -0.049903180450201035, + -0.021233467385172844, + -0.0529346838593483, + -0.025871405377984047, + -0.0031351426150649786, + -0.0345124788582325, + -0.02982272021472454, + 0.0552925169467926, + -0.06379108875989914, + 0.045887090265750885, + -0.019665895029902458, + 0.04008318856358528, + 0.08151371031999588, + 0.019523387774825096, + -0.0009513927507214248, + 0.03883949667215347, + -0.0506804883480072, + 0.04181917756795883, + -0.019380882382392883, + 0.02013228088617325, + 0.003478453727439046, + 0.052338745445013046, + -0.09161871671676636, + -0.049333155155181885, + -0.03788081556558609, + -0.05964544042944908, + -0.01748943328857422, + 0.0149761363863945, + 0.041404612362384796, + 0.025702988728880882, + 0.04078276455402374, + 0.022425338625907898, + -0.005771512631326914, + -0.02439451962709427, + 0.07513978332281113, + -0.010001364164054394, + -0.0103641077876091, + -0.022179191932082176, + -0.017476476728916168, + 0.03243966028094292, + 0.01075924001634121, + -0.02116869017481804, + 0.006788490805774927, + -0.024666577577590942, + 0.06954316794872284, + 0.04213009774684906, + 0.04637938365340233, + -0.00823298841714859, + -0.012294422835111618, + 0.03313923627138138, + 0.020676394924521446, + -0.010940611362457275, + 0.08711032569408417, + 0.029978182166814804, + 0.007960930466651917, + -0.027335334569215775, + 0.01566275767982006, + -0.07586526870727539, + -0.0006748815649189055, + -0.024096552282571793, + 0.014729988761246204, + 0.005282456520944834, + -0.026920771226286888, + -0.06892132014036179, + -0.013104119338095188, + 0.03085913136601448, + -0.04200054705142975, + 0.08255012333393097, + -0.005684065632522106, + 0.048737216740846634, + -0.03500477597117424, + 0.023448795080184937, + 0.07456975430250168, + -0.015610937960445881, + 0.02741306647658348, + 0.05581072345376015, + 0.030366836115717888, + 0.04451384395360947, + 0.06125187873840332, + 0.002919763559475541, + 0.027827629819512367, + 0.02097436413168907, + 0.00926939956843853, + -0.03951316326856613, + -0.010480704717338085, + -0.033424247056245804, + -0.00886778999119997, + -0.03580799326300621, + -0.00022388092475011945, + -0.04938497394323349, + 0.03039274737238884, + -0.024549981579184532, + 0.005502693820744753, + -0.06726305931806564, + 0.03865812346339226, + 0.018007637932896614, + 0.016854630783200264, + -0.0253272894769907, + 0.012398064136505127, + 0.010007841512560844, + -0.00875119399279356, + 0.04285558685660362, + 0.017010092735290527 + ] + }, + { + "id": "979a4b6f-dbbc-4552-8799-093d4371c4ac", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "williamwagner", + "reviewDate": "2022-08-14T09:39:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "195acd26-20bf-4f74-934a-18d4630cb41d", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "paulapearson", + "reviewDate": "2022-05-30T01:46:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "454da457-f751-475d-8447-85a59dcf50cb", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "tsnow", + "reviewDate": "2022-05-12T18:05:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f7db689e-e553-4740-b9f2-646fa69d84c5", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "danielschmitt", + "reviewDate": "2022-04-09T09:55:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c2b438e3-49ba-41ac-9d9c-e158a7000e07", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "ramirezjeffrey", + "reviewDate": "2021-07-26T08:59:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "2d11b182-cf68-4231-931b-f8e8194bace9", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "daviddiaz", + "reviewDate": "2021-12-01T13:57:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9282fb37-b53d-4025-95b1-acd24bda1812", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "justin63", + "reviewDate": "2022-11-24T14:29:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "160dd030-8e91-461b-bef9-b671a3a9d3c3", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "hmorrison", + "reviewDate": "2022-08-03T23:30:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6d5bb6c7-ff59-4dcf-b8b8-090884d3dcb6", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "susanheath", + "reviewDate": "2022-10-11T09:44:02", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e900a24f-b0ac-4fc3-9eb8-14920506201a", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "lamfelicia", + "reviewDate": "2022-12-26T09:11:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fbe4fdb8-39c2-4a73-aec2-4b802f82db81", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "allenjohnson", + "reviewDate": "2022-11-19T15:53:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d26156b1-a909-431a-ba96-604829b96a3e", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "johnthompson", + "reviewDate": "2021-12-14T08:38:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "7b54ae8a-a108-4449-a42a-13715b91c1da", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "johnlewis", + "reviewDate": "2021-11-30T12:45:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ae37f145-2e40-4dd2-a384-bc1f13264b3d", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "zmccoy", + "reviewDate": "2022-10-30T03:57:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0888cc19-2ca8-41c1-b0c4-734eb604f67c", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "lesliebeck", + "reviewDate": "2021-12-08T11:13:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a97fc6eb-e3a8-4343-b976-089562bf41ea", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "jenniferbaldwin", + "reviewDate": "2021-07-02T17:04:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a74fdd1c-4ce6-45ad-9c16-18ec4a8eca62", + "productId": "15fd3d54-3678-4100-9498-a03d212c0162", + "category": "Media", + "docType": "customerRating", + "userName": "ashleycollins", + "reviewDate": "2022-02-06T06:18:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "product", + "name": "Basic Phone Ultra (Silver)", + "description": "This Basic Phone Ultra (Silver) is coming out now.", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-04-22T01:43:35", + "price": 927.66, + "stock": 9, + "priceHistory": [ + { + "priceDate": "2021-03-06T19:08:43", + "newPrice": 1011.34 + }, + { + "priceDate": "2021-09-18T19:08:43", + "newPrice": 913.17 + }, + { + "priceDate": "2022-04-02T19:08:43", + "newPrice": 901.22 + }, + { + "priceDate": "2022-10-15T19:08:43", + "newPrice": 909.66 + }, + { + "priceDate": "2025-01-27T19:08:43", + "newPrice": 927.66 + } + ], + "descriptionVector": [ + 0.0030645013321191072, + 0.015153172425925732, + -0.02129116654396057, + 0.06593548506498337, + 0.020571870729327202, + -0.06598343700170517, + -0.02980283834040165, + 0.07643720507621765, + 0.006569571793079376, + 0.03169698268175125, + 0.019540879875421524, + -0.07332025468349457, + 0.10214005410671234, + -0.01717918924987316, + -0.003911172971129417, + 0.02457595244050026, + -0.04819284379482269, + -0.0447641983628273, + 0.03917766362428665, + 0.01783854514360428, + 0.05811912938952446, + 0.0030435218941420317, + -0.0747108981013298, + 0.00782833993434906, + -0.006221911869943142, + 0.026661911979317665, + 0.002526527736335993, + 0.01755082607269287, + 0.06277057528495789, + -0.005817307624965906, + 0.02165081538259983, + 0.04521975293755531, + -0.0018701700028032064, + 0.09561843425035477, + -0.036348432302474976, + 0.07581381499767303, + -0.01822216995060444, + 0.027788808569312096, + -0.0005402214010246098, + -0.02349700778722763, + 0.00934485625475645, + -0.009578627534210682, + -0.0037822991143912077, + 0.0021144310012459755, + 0.02639816887676716, + -0.02155490778386593, + -0.03951333463191986, + 0.011496750637888908, + 0.024839693680405617, + -0.0241683516651392, + -0.015908433124423027, + 0.00501709058880806, + 0.007714451290667057, + 0.012515753507614136, + 0.013870427384972572, + -0.04987120255827904, + -0.038961876183748245, + 0.10741489380598068, + 0.01267160102725029, + -0.0016214133938774467, + -0.017263108864426613, + -0.020619822666049004, + 0.057208020240068436, + 0.0559612400829792, + -0.05404311791062355, + 0.051645465195178986, + -0.020044386386871338, + -0.021411050111055374, + 0.039992865175008774, + 0.06751793622970581, + 0.025798756629228592, + 0.0040070791728794575, + -0.03505370020866394, + 0.06665477901697159, + 0.013858439400792122, + 0.0634898766875267, + -0.017394978553056717, + -0.009416786022484303, + 0.055289898067712784, + -0.0559612400829792, + 0.019972456619143486, + 0.056153055280447006, + 0.0004896458704024553, + -0.030857805162668228, + 0.03872210904955864, + 0.054570604115724564, + 0.07514247298240662, + -0.11259382963180542, + -0.03960924223065376, + 0.12170491367578506, + 0.009069126099348068, + 0.011988269165158272, + -0.03023441508412361, + -0.021878592669963837, + 0.03526948764920235, + 0.054234929382801056, + 0.04363730177283287, + 0.038913924247026443, + -0.09235762804746628, + -0.03385487198829651, + 0.09446756541728973, + -0.05442674458026886, + 0.04497998580336571, + -0.01606428064405918, + -0.013031248934566975, + 0.023760750889778137, + 0.06545595079660416, + 5.1043803978245705e-05, + -0.021890580654144287, + -0.0373794250190258, + 0.02388063259422779, + -0.004918187391012907, + -0.033663060516119, + 0.02204642817378044, + -0.012042216956615448, + 0.02383267879486084, + -0.046466533094644547, + -0.014625689014792442, + 0.048672374337911606, + 0.028843777254223824, + -0.025774778798222542, + 0.009404797106981277, + 0.014134169556200504, + -0.01896544173359871, + 0.0019525893731042743, + -0.034430310130119324, + 0.026542028412222862, + 0.056392818689346313, + 0.05298815295100212, + -0.04397297278046608, + -0.06617524474859238, + 0.0029461171943694353, + -0.038937900215387344, + 0.019816609099507332, + -0.02642214670777321, + 0.00021260447101667523, + 0.026613958179950714, + -0.003557519055902958, + -0.03502972424030304, + 0.09633773565292358, + -0.05653667822480202, + 0.038985852152109146, + 0.11422423273324966, + -0.040856022387742996, + -0.04294198006391525, + 0.010070146061480045, + 0.011268973350524902, + -0.03850632160902023, + 0.0597015805542469, + 0.04179110750555992, + -0.02123122476041317, + -0.034070663154125214, + 0.004093993920832872, + -0.056872349232435226, + -0.018030356615781784, + 0.004690410569310188, + -0.016663694754242897, + -0.03464609757065773, + 0.024432092905044556, + 0.0334952250123024, + -0.022489992901682854, + 0.0017113254871219397, + 0.005283829756081104, + -0.07634130120277405, + -0.05658463016152382, + 0.05816708505153656, + 0.042654260993003845, + 0.11671779304742813, + 0.032680023461580276, + 0.005080029368400574, + -0.04725775867700577, + -0.01506925467401743, + -0.04500396177172661, + -0.05394721403717995, + 0.02723734825849533, + 0.060948360711336136, + 0.026278287172317505, + -0.01512919645756483, + -0.012707565911114216, + -0.06828518211841583, + -0.001011510263197124, + 0.05020687356591225, + -0.11422423273324966, + -0.018198193982243538, + 0.024360163137316704, + 0.03917766362428665, + 0.012647624127566814, + 0.016531823202967644, + -0.07538224011659622, + 0.0031858826987445354, + -0.02008035220205784, + -0.00013009145914111286, + -0.02572682686150074, + 0.0030315336771309376, + 0.04706594720482826, + -0.037451352924108505, + 0.0634898766875267, + 0.02980283834040165, + -0.04555542394518852, + 0.018390005454421043, + 0.03546130284667015, + 0.034142591059207916, + 0.05485831946134567, + -0.037834979593753815, + 0.0029775863513350487, + -0.0008159516146406531, + -0.0298747681081295, + 0.037091705948114395, + -0.008571612648665905, + 0.0010302419541403651, + 0.0035485278349369764, + 0.014625689014792442, + 0.03416656702756882, + 0.034046683460474014, + 0.08607577532529831, + 0.048216819763183594, + 0.006989161018282175, + -0.06598343700170517, + -0.005742380861192942, + -0.11355289071798325, + 0.001967574702575803, + 0.01831807568669319, + 0.06161970645189285, + 0.005205905996263027, + -0.049391672015190125, + -0.05768755450844765, + 0.07557404786348343, + 0.07763603329658508, + 0.014194111339747906, + 0.0336390845477581, + -0.05692030489444733, + -0.0037793018855154514, + 0.037403400987386703, + -0.014397911727428436, + -0.017227143049240112, + 0.07523837685585022, + 0.0008039633394218981, + 0.011256985366344452, + -0.09935877472162247, + 0.07418341189622879, + -0.0019960468634963036, + -0.0017862521344795823, + -0.009236961603164673, + -0.06780565530061722, + 0.09916696697473526, + -0.04397297278046608, + 0.13148733973503113, + -0.014026274904608727, + -0.1081821471452713, + 0.052364762872457504, + 0.0019001406617462635, + -0.047473546117544174, + -0.05739983543753624, + -0.001664870884269476, + 0.01906134933233261, + 0.02167479135096073, + 0.04996710643172264, + 0.008439742028713226, + 0.043421510607004166, + -0.028987634927034378, + 0.012347918003797531, + -0.019085325300693512, + 0.0037013781256973743, + 0.04783319681882858, + -0.08909682184457779, + 0.05850275605916977, + 0.06430507451295853, + -0.05409107357263565, + -0.030761899426579475, + 0.03126540780067444, + -0.016316033899784088, + 0.034142591059207916, + 0.05481036752462387, + 0.00987233966588974, + -0.027716878801584244, + 0.027501089498400688, + -0.13283002376556396, + 0.07715649902820587, + -0.05672848969697952, + -0.020787660032510757, + 0.0630582943558693, + 0.06742202490568161, + 0.021375084295868874, + -0.09206990897655487, + 0.05279633775353432, + -0.00949470978230238, + -0.03143324330449104, + 0.006551589351147413, + 0.02270578220486641, + -0.013294991105794907, + 0.019277136772871017, + 0.027357231825590134, + -0.058694567531347275, + -0.028915705159306526, + 0.07787580043077469, + -0.023988526314496994, + 0.0672781690955162, + -0.07509452104568481, + -0.03514960780739784, + 0.04174315556883812, + 0.010537688620388508, + -0.006755389738827944, + -0.09427575021982193, + -0.01045976486057043, + 0.05811912938952446, + 0.12199263274669647, + 0.02270578220486641, + 0.008655530400574207, + -0.04905599728226662, + -0.05178932473063469, + 0.0371876135468483, + -0.06310625374317169, + -0.045627351850271225, + -0.026206357404589653, + 0.02240607514977455, + -0.0019435981521382928, + -0.0026688885409384966, + 0.04126362502574921, + -0.011274967342615128, + 0.0024306215345859528, + 0.03773907199501991, + -0.005077031906694174, + -0.010645583271980286, + 0.07691673934459686, + 0.062434908002614975, + 0.043445490300655365, + -0.008170005865395069, + -0.017335036769509315, + -0.03903380408883095, + -0.0034046685323119164, + -0.027668926864862442, + 0.020416023209691048, + -0.022981513291597366, + -0.021830638870596886, + -0.009512691758573055, + -0.04356537014245987, + 0.03421452268958092, + 0.06972377747297287, + 0.034046683460474014, + -0.025487061589956284, + 0.0783073753118515, + 0.10703127086162567, + -0.0223940871655941, + 0.0016393958358094096, + -0.07782784849405289, + 0.0010205014841631055, + 0.005754369311034679, + -0.04891213774681091, + -0.022981513291597366, + 0.01493738405406475, + 0.0013906392268836498, + 0.0012407859321683645, + 0.06464074552059174, + 0.003791290335357189, + 0.1564229428768158, + 0.004501595161855221, + 0.05116593465209007, + -0.013918381184339523, + 0.047545477747917175, + -0.00456753047183156, + 0.015920421108603477, + -0.03229639679193497, + 0.021399060264229774, + 0.027644949033856392, + -0.013151131570339203, + 0.06512027978897095, + 0.06607934087514877, + 0.09360440820455551, + 0.008229946717619896, + -0.017706673592329025, + 0.027501089498400688, + 0.06430507451295853, + -0.07763603329658508, + -0.027117464691400528, + 0.05356358736753464, + 0.002952111419290304, + 0.014313993975520134, + -0.027333253994584084, + 0.04330163076519966, + 0.02982681430876255, + -0.0027767829596996307, + 0.020763682201504707, + -0.052748385816812515, + -0.01745492033660412, + 0.05927000567317009, + -0.05078230798244476, + -0.08482899516820908, + -0.004915190394967794, + -0.018437959253787994, + 0.0371636338531971, + 0.009878333657979965, + 0.02123122476041317, + -0.05447469651699066, + 0.06396940350532532, + 0.06075654923915863, + -0.0015097727300599217, + 0.05874251946806908, + 0.030378274619579315, + -0.018162228167057037, + 0.007192961871623993, + 0.04778524115681648, + 0.053132008761167526, + 0.03512562811374664, + -0.0027438150718808174, + -0.032272420823574066, + -0.02495957724750042, + 0.0004128460423089564, + 0.018905501812696457, + -0.0036024749279022217, + -0.11643007397651672, + 0.049775294959545135, + -0.05931795760989189, + 0.023748761042952538, + -0.020236199721693993, + -0.03543732315301895, + -0.034046683460474014, + -0.008433748036623001, + 0.015344984829425812, + 0.029946697875857353, + 0.009548656642436981, + -0.003040524898096919, + 0.015896445140242577, + -0.012815459631383419, + 0.012347918003797531, + 0.014313993975520134, + -0.03874608874320984, + -0.04574723541736603, + -0.045291680842638016, + 0.026589982211589813, + -0.0017517858650535345, + 0.01756281405687332, + 0.013942357152700424, + 0.0372355654835701, + -0.009195002727210522, + -0.0017997389659285545, + -0.02017625793814659, + -0.07034716755151749, + 0.06248285993933678, + -0.07269686460494995, + -0.00010161931277252734, + -0.03867415711283684, + 0.04625074192881584, + -0.037475328892469406, + 0.02647009864449501, + -0.08746641129255295, + 0.01209616381675005, + -0.015896445140242577, + 0.07883486151695251, + -0.01713123731315136, + 0.01895345374941826, + 0.0004986370913684368, + 0.03541334718465805, + -0.0015569764655083418, + -0.007222932297736406, + 0.02606249786913395, + -0.03877006471157074, + -0.02006836235523224, + 0.08310268074274063, + -0.037523284554481506, + 0.007258897181600332, + -0.018725676462054253, + 0.020691752433776855, + 0.020751694217324257, + -0.045291680842638016, + -0.06190742179751396, + -0.00818199384957552, + -0.03315955400466919, + 0.030689969658851624, + -0.015416914597153664, + 0.00021578885207418352, + 0.012443823739886284, + -0.10981255024671555, + -0.0049421642906963825, + -0.00041396994492970407, + 0.0446682907640934, + -0.009836374782025814, + -0.0335911326110363, + -0.01783854514360428, + -0.019624797627329826, + 0.025271272286772728, + 0.04953552782535553, + -0.0056314896792173386, + 0.03654024377465248, + 0.018737664446234703, + 0.016244105994701385, + -0.06497642397880554, + -0.07255300879478455, + -0.029922720044851303, + 0.0168075542896986, + 0.06636705994606018, + 0.023616891354322433, + 0.03757123649120331, + -0.02498355321586132, + 0.0060330964624881744, + -0.05735187977552414, + -0.0893845409154892, + 0.04625074192881584, + -0.030809853225946426, + -0.06512027978897095, + 0.06953196227550507, + -0.029179448261857033, + -0.023173324763774872, + -0.02685372345149517, + -0.0011471275938674808, + 0.01545287948101759, + -0.010507718659937382, + -0.017814569175243378, + 0.041958943009376526, + 0.016603752970695496, + 0.046394601464271545, + 0.008164011873304844, + -0.022525958716869354 + ] + }, + { + "id": "68273a0b-71c1-4c4c-8b38-c8e202f68410", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "jenny03", + "reviewDate": "2022-06-26T08:19:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6f2b45dc-20d0-4c03-b989-4c034cf62b69", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "henry17", + "reviewDate": "2022-04-26T07:42:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3042b5aa-48eb-444b-b560-e44843c03e09", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "marymartin", + "reviewDate": "2022-01-31T01:55:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ad1258cc-6860-4f40-a915-89fb42971a12", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "scottwilliams", + "reviewDate": "2022-10-17T07:47:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e51637df-f2f1-458e-ad61-497fb40ab71e", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "jennifer22", + "reviewDate": "2022-03-31T00:20:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "00f6812f-c423-4a92-9f8f-d865d75a12ec", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "clarkfelicia", + "reviewDate": "2021-12-31T21:11:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "32fcf28f-0c15-4656-90b2-eaa70fff19e6", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "umatthews", + "reviewDate": "2021-08-01T22:22:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1b6ff51d-69f3-4425-b0d2-ab3ecb6e75ef", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "edward25", + "reviewDate": "2022-04-02T13:59:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7f0270ce-3dcb-4f61-90ef-481d60a7de22", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "rachel18", + "reviewDate": "2021-03-06T19:08:43", + "stars": 3, + "verifiedUser": false + }, + { + "id": "eca93cbd-4f71-4214-afba-b16a1a3c64a5", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "uwilliams", + "reviewDate": "2022-08-15T21:21:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "12e1f6d3-919f-49c5-a520-01251f914175", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "hgeorge", + "reviewDate": "2021-05-31T16:50:07", + "stars": 2, + "verifiedUser": false + }, + { + "id": "303a5067-945b-43ab-b1c4-b60c4c78b544", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "nshaw", + "reviewDate": "2021-03-26T00:04:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "076004e4-cd55-4f30-af15-c7b7ae87b944", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "cassandraavila", + "reviewDate": "2021-12-12T17:01:38", + "stars": 1, + "verifiedUser": false + }, + { + "id": "71677430-e858-4187-ad99-47b3aaeab6ce", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "cynthia84", + "reviewDate": "2021-06-26T13:06:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7ecad5b4-5c97-47ae-817b-cb624d249ecb", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "laura29", + "reviewDate": "2022-05-16T03:39:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "1939958c-458f-4ea3-8431-d014c7a46d2d", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "jonesalec", + "reviewDate": "2021-04-24T07:38:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "fa2df79f-adb0-4432-b54a-0bd80747c5d4", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "cabrerapenny", + "reviewDate": "2022-06-24T23:01:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f49f5cb9-ab59-4707-a457-73dc98568779", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "gcaldwell", + "reviewDate": "2022-08-03T00:07:25", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e6b846e1-1768-4913-aa26-fa59d279116f", + "productId": "72fd8d14-62a4-4be3-be78-88c8a1f21f45", + "category": "Electronics", + "docType": "customerRating", + "userName": "martinezronald", + "reviewDate": "2022-08-06T06:43:05", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8a081bcf-f40d-4b7b-ba5d-c9ccb85229db", + "productId": "8a081bcf-f40d-4b7b-ba5d-c9ccb85229db", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Micro (Gold)", + "description": "This Basic Speaker Micro (Gold) is part of a two-part set, called Advanced Micro Devices (AMD).\n\nThe first part of that Micro contains 4 processors: Dual-core 1, 4, 8 cores and 16 threads. The core count is about 2Tbit and the thread count is 6. So that means the AMD Ryzen", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-05-07T12:32:33", + "price": 134.34, + "stock": 71, + "priceHistory": [ + { + "priceDate": "2019-05-07T12:32:33", + "newPrice": 126.72 + }, + { + "priceDate": "2021-06-17T12:32:33", + "newPrice": 131.94 + }, + { + "priceDate": "2023-07-29T12:32:33", + "newPrice": 121.18 + }, + { + "priceDate": "2025-09-08T12:32:33", + "newPrice": 124.36 + }, + { + "priceDate": "2025-09-09T04:59:00.103468", + "newPrice": 134.34 + } + ], + "descriptionVector": [ + 0.003884976962581277, + 0.04944761097431183, + -0.032049376517534256, + -0.032830413430929184, + -0.04608107730746269, + -0.016065087169408798, + -0.0018196101300418377, + 0.0538644976913929, + 0.044384345412254333, + 0.07589507848024368, + -0.010517043061554432, + -0.025666434317827225, + 0.025935756042599678, + -0.07072408497333527, + 0.005113760940730572, + -0.01345265842974186, + -0.02779408171772957, + 0.035496704280376434, + -0.01633440889418125, + 0.015351382084190845, + 0.022878946736454964, + -0.03412315994501114, + -0.0769723653793335, + 0.036600928753614426, + -0.04594641923904419, + 0.010678636841475964, + -0.02790180966258049, + -0.004208163823932409, + -0.04126020520925522, + 0.0046828449703752995, + 0.02332332730293274, + 0.023915838450193405, + 0.02060317061841488, + -0.023700378835201263, + -0.022124843671917915, + -0.0015494460240006447, + 0.026662927120923996, + -0.051763784140348434, + 0.09340104460716248, + -0.050794221460819244, + 0.03711263835430145, + 0.0360892154276371, + -0.02172086015343666, + -0.01885257475078106, + 0.038405388593673706, + 0.07551802694797516, + 0.05416075512766838, + 0.02712077461183071, + -0.03164539486169815, + -0.0414218008518219, + 0.04416888952255249, + 0.03309973329305649, + -0.015755366533994675, + 0.025006594136357307, + 0.03334212303161621, + -0.05655772238969803, + -0.0012010099599137902, + 0.09534016251564026, + -0.010570907965302467, + -0.0020821995567530394, + 0.10315051674842834, + -0.021209146827459335, + -0.0038715109694749117, + 0.013607518747448921, + -0.04042530804872513, + -0.0005739935440942645, + -0.005935194436460733, + 0.1103144958615303, + 0.0017127227038145065, + 0.09000758081674576, + -0.008988638408482075, + -0.0411524772644043, + 0.021236078813672066, + 0.07702623307704926, + -0.004039837513118982, + 0.014866601675748825, + 0.06280600279569626, + 0.05251788720488548, + 0.030325712636113167, + -0.08149698376655579, + 0.05162912234663963, + 0.01886604167521, + 0.0032705850899219513, + 0.0706702247262001, + 0.10713648796081543, + 0.009796605445444584, + 0.004191331099718809, + -0.10966812074184418, + -0.015526441857218742, + 0.0007810352253727615, + -0.01696731708943844, + 0.05849684774875641, + 0.06431420892477036, + 0.07821125537157059, + 0.02149193547666073, + 0.032857343554496765, + -0.009991864673793316, + 0.011062421835958958, + -0.008200869895517826, + -0.07314798980951309, + 0.04349558427929878, + -0.047185301780700684, + 0.002721840515732765, + -0.052841074764728546, + 0.03573909401893616, + 0.061728715896606445, + 0.05025557801127434, + 0.05402609333395958, + 0.016671061515808105, + -0.003245336003601551, + -0.08709889650344849, + -0.038136065006256104, + -0.017600225284695625, + -0.0035819890908896923, + 0.012025249190628529, + 0.017290504649281502, + -0.03183392062783241, + 0.002661242848262191, + -0.11667050421237946, + -0.0033160331659018993, + 0.057096369564533234, + 0.018367793411016464, + -0.005527844186872244, + -0.06776154041290283, + 0.0010200589895248413, + 0.050013188272714615, + -0.013782578520476818, + 0.023579183965921402, + -0.02790180966258049, + 0.006295413244515657, + -0.04780474305152893, + 0.07277093827724457, + -0.005322485696524382, + -0.030460374429821968, + -0.014341423287987709, + -0.00991106778383255, + 0.0080998744815588, + 0.0828436017036438, + 0.07643372565507889, + 0.04222976788878441, + -0.05251788720488548, + 0.02779408171772957, + 0.02889830432832241, + -0.007790153380483389, + -0.047185301780700684, + -0.05203310772776604, + -0.10616692900657654, + 0.006298779975622892, + 0.03441941365599632, + -0.03277654945850372, + -0.0241986270993948, + -0.05752728506922722, + 0.01084696315228939, + -0.07255548238754272, + -0.01176939345896244, + -0.008961706422269344, + -0.03172618895769119, + 0.0055345771834254265, + -0.025774162262678146, + 0.009554215706884861, + -0.011452939361333847, + 0.018354328349232674, + -0.00851732399314642, + -0.020279983058571815, + 0.02446794882416725, + -0.019310422241687775, + 0.025599103420972824, + 0.06011278182268143, + -0.10880628973245621, + 0.02341759018599987, + 0.03078356198966503, + 0.004989199340343475, + 0.0030669099651277065, + 0.017303969711065292, + 0.029894797131419182, + 0.01085369661450386, + -0.009338757954537868, + 0.03536204248666763, + -0.019216159358620644, + -0.023107869550585747, + 0.042795345187187195, + 0.03485032916069031, + -0.04696984216570854, + 0.03625080734491348, + -0.00021514238324016333, + 0.022946275770664215, + -0.005258521530777216, + 0.00848365854471922, + -0.028144201263785362, + 0.065337635576725, + 0.059897322207689285, + -0.06943134218454361, + 0.09135419130325317, + 0.05464553460478783, + 0.023107869550585747, + -0.027470894157886505, + -0.06910815089941025, + 0.037381961941719055, + -0.03705877438187599, + -0.00024091739032883197, + -0.03546977415680885, + 0.0411524772644043, + 0.014314490370452404, + -0.04608107730746269, + -0.01300154346972704, + -0.011230748146772385, + 0.0022084445226937532, + 0.07503324747085571, + 0.054564736783504486, + 0.06409875303506851, + 0.07325571775436401, + -0.04239135980606079, + -0.06027437373995781, + 0.010921027511358261, + 0.1011575311422348, + 0.03662785887718201, + 0.010227521881461143, + -0.005433581303805113, + 0.026555197313427925, + -0.06334464997053146, + 0.008180670440196991, + -0.11193042993545532, + 0.017600225284695625, + 0.04974386468529701, + -0.04328012466430664, + -0.06566082686185837, + -0.04659279063344002, + -0.04979772865772247, + -0.007998878136277199, + -0.03792060911655426, + -0.02596268802881241, + 0.08801458775997162, + -0.03129527345299721, + 0.0304873064160347, + -0.01488006766885519, + -0.012065648101270199, + 0.056288402527570724, + -0.011365409009158611, + -0.006541170179843903, + 0.10956039279699326, + -0.0304873064160347, + 0.06663038581609726, + -0.05962799862027168, + -0.07153205573558807, + 0.004218263551592827, + 0.011897320859134197, + 0.03398849815130234, + 0.019323889166116714, + -0.1250733733177185, + -0.010193856433033943, + -0.10234254598617554, + -0.01974133960902691, + 0.00802581012248993, + 0.0252893827855587, + -0.03587375581264496, + 0.0686233714222908, + 0.035523638129234314, + -0.08155085146427155, + 0.002417169278487563, + -0.050067052245140076, + 0.012328237295150757, + -0.11300771683454514, + -0.04680825024843216, + 0.019296957179903984, + -0.06393715739250183, + -0.00360892154276371, + 0.03167232498526573, + -0.06027437373995781, + -0.0046794782392680645, + 0.03336905688047409, + 0.04610801115632057, + 0.006877823267132044, + -0.0012582410126924515, + 0.03487726300954819, + 0.014678075909614563, + 0.007116846740245819, + -0.09771019965410233, + 0.06900042295455933, + -0.016011223196983337, + -0.052841074764728546, + 0.09313172101974487, + 0.1112840548157692, + 0.032911207526922226, + -0.01086043007671833, + 0.03406929597258568, + 0.038189928978681564, + -0.06840791553258896, + 0.0504441037774086, + -0.034581009298563004, + -0.07891149073839188, + -0.04152952879667282, + -0.007857483811676502, + 0.01886604167521, + 0.06544536352157593, + 0.01813887059688568, + -0.0008193295216187835, + 0.04152952879667282, + 0.021976714953780174, + 0.008470192551612854, + 0.04322626069188118, + 0.022299902513623238, + 0.027524758130311966, + -0.0016942068468779325, + -0.0556420274078846, + 0.0031443401239812374, + 0.040883153676986694, + 0.006877823267132044, + 0.02873671054840088, + -0.008598120883107185, + -0.02895216830074787, + 0.0574195571243763, + -0.04139486700296402, + 0.0029894798062741756, + 0.04330705851316452, + 0.024845000356435776, + -0.04966306686401367, + 0.005938561167567968, + -0.00381764629855752, + 0.012045448645949364, + 0.0005487445741891861, + 0.007291906513273716, + -0.05650385841727257, + -0.07374049723148346, + 0.10482031852006912, + 0.07045476138591766, + 0.04314546287059784, + -0.01536484807729721, + 0.018394727259874344, + 0.002927198773249984, + 0.01163473166525364, + 0.032965075224637985, + -0.06582241505384445, + -0.045434705913066864, + -0.04392649978399277, + -0.0029288821388036013, + -0.0559113509953022, + 0.06743834912776947, + 0.008981904946267605, + 0.03603535145521164, + 0.010894094593822956, + 0.08984598517417908, + 0.028548184782266617, + 0.02418516017496586, + -0.0523562915623188, + -0.011796325445175171, + -0.03845925256609917, + -0.053675971925258636, + -0.037516623735427856, + -0.014947398565709591, + -0.006325711961835623, + 0.0018027774058282375, + -0.027322767302393913, + 0.012058914639055729, + 0.007554496172815561, + 0.052571751177310944, + -0.04928601533174515, + -0.020926358178257942, + 0.03983279690146446, + 0.0452461801469326, + -0.01971440576016903, + -0.050821155309677124, + -0.06738448888063431, + 0.08618319779634476, + 0.010665170848369598, + -0.07912694662809372, + -0.028171133249998093, + -0.005521111190319061, + -0.04314546287059784, + -0.010833497159183025, + 0.038216862827539444, + -0.014489550143480301, + -0.0009510450763627887, + 0.02417169325053692, + -0.014233693480491638, + -0.042876143008470535, + -0.050955817103385925, + 0.001634450862184167, + -0.02703997865319252, + -0.061728715896606445, + 0.05779660865664482, + 0.010523776523768902, + 0.07675690948963165, + 0.038270726799964905, + -0.06792313605546951, + 0.061513256281614304, + -0.08370543271303177, + 0.09205442667007446, + -0.02518165297806263, + -0.006823958829045296, + 0.03415009379386902, + -0.007386169396340847, + -0.013560387305915356, + 0.010934493504464626, + 0.031187545508146286, + 0.047319963574409485, + -0.021074485033750534, + -0.01719624176621437, + 0.07864216715097427, + 0.01086043007671833, + -0.0022740918211638927, + 0.04505765438079834, + 0.039105627685785294, + -0.004332725424319506, + 0.03872857615351677, + -0.015674568712711334, + -0.05774274468421936, + -0.03331519290804863, + 0.036600928753614426, + 0.03942881152033806, + -0.05475326254963875, + 0.019539346918463707, + -0.09867975860834122, + 0.015539907850325108, + -0.08828391134738922, + -0.003078692825511098, + -0.027376631274819374, + 0.025626035407185555, + 0.023673446848988533, + -0.0304873064160347, + -0.007978678680956364, + -0.0008517323876731098, + -0.04039837419986725, + -0.006605134345591068, + 0.013277598656713963, + 0.006238182075321674, + -0.009015570394694805, + -0.006894655991345644, + -0.02623201161623001, + 0.04314546287059784, + -0.043684110045433044, + -0.04858577996492386, + -0.032857343554496765, + 0.03353064879775047, + 0.008234535343945026, + -0.028332727029919624, + -0.0559113509953022, + 0.03140300139784813, + 0.03439248353242874, + -0.04850498214364052, + 0.016509469598531723, + 0.00585103128105402, + -0.03985973075032234, + 0.023835040628910065, + 0.05464553460478783, + -0.10681330412626266, + -0.04039837419986725, + -0.0483972541987896, + 0.003645953256636858, + 0.06759994477033615, + -0.018758311867713928, + -0.008894375525414944, + 0.01703464798629284, + -0.047266099601984024, + -0.0393749475479126, + 0.09383195638656616, + 0.0769723653793335, + 0.011365409009158611, + 0.03953654319047928, + 0.004272127989679575, + -0.005170992109924555, + -0.08602160215377808, + 0.020589705556631088, + 0.09970318526029587, + 0.03932108357548714, + 0.008874176070094109, + -0.009365689940750599, + -0.011170150712132454, + -0.08392088860273361, + -0.021976714953780174, + 0.022744284942746162, + -0.015849629417061806, + -0.055264975875616074, + 0.07562575489282608, + 0.001976153813302517, + -0.023956235498189926, + -0.057257961481809616, + -0.03619694337248802, + -0.00857118796557188, + -0.02887137234210968, + 0.0724477544426918, + 0.005901528988033533, + 0.050821155309677124, + -0.046404264867305756, + 0.03956347331404686, + 0.026353206485509872, + 0.0016571750165894628, + 0.006066489033401012, + 0.07998877763748169, + 0.0025013326667249203, + 0.05464553460478783, + 0.035577502101659775, + 0.040236782282590866, + 0.06722289323806763, + 0.031025951728224754, + -0.02710730955004692, + 0.002772338455542922, + 0.0025046991650015116, + 0.02693224884569645, + 0.018286997452378273, + 0.04888203367590904, + -0.04414195567369461, + -0.07007770985364914, + -0.0007696732063777745, + 0.02356571890413761, + -0.0031207744032144547, + 0.016603732481598854, + 0.0013457708992064, + 0.013897040858864784, + -0.015916960313916206, + 0.055264975875616074, + -0.00896843895316124, + -0.031268343329429626 + ] + }, + { + "id": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "productId": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "category": "Media", + "docType": "product", + "name": "Awesome TV Mini (Black)", + "description": "This Awesome TV Mini (Black) is rated 3.8 out of 5 by 5.\n\nRated 1 out of 5 by ChrisK10 from Great TV... but it has no stars. Very disappointed in this little guy.\n\nRated 5 out of 5 by Anonymous from Great TV for my 1st 3G\n\nRated 5 out of 5 by Anonymous from Great Value and Great Value", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2018-12-02T12:15:37", + "price": 797.13, + "stock": 69, + "priceHistory": [ + { + "priceDate": "2021-09-09T12:26:17", + "newPrice": 757.78 + }, + { + "priceDate": "2023-08-25T12:26:17", + "newPrice": 797.13 + } + ], + "descriptionVector": [ + -0.03009573370218277, + 0.03963657468557358, + -0.02745329588651657, + 0.025395467877388, + -0.04164763167500496, + 0.05673057585954666, + -0.023992404341697693, + 0.031031111255288124, + 0.03479599952697754, + 0.04920079559087753, + 0.031405262649059296, + -0.03853750601410866, + -0.006530096288770437, + 0.05214723199605942, + 0.07338027656078339, + 0.02462378330528736, + 0.037929512560367584, + 0.01548047922551632, + 0.040946099907159805, + 0.001283219433389604, + 0.03526368737220764, + -0.09526808559894562, + -0.04347161576151848, + 0.08614816516637802, + -0.002176211681216955, + 0.008342388086020947, + -0.038256894797086716, + 0.04807834327220917, + 0.030493268743157387, + -0.09330379217863083, + -0.01580786146223545, + 0.008295618928968906, + -0.004215039778500795, + 0.04157748073339462, + -0.0058694868348538876, + 0.003571968525648117, + 0.021864421665668488, + 0.03119480237364769, + -0.017234308645129204, + 0.10672644525766373, + 0.050042636692523956, + -0.00588994799181819, + -0.005998101085424423, + 0.008032544516026974, + 0.0299554280936718, + -0.013598034158349037, + -0.026424381881952286, + -0.01686015911400318, + 0.025231776759028435, + 0.03554430231451988, + 0.003875965718179941, + -0.027008991688489914, + -0.009482378140091896, + 0.05434536561369896, + 0.014358026906847954, + 0.03175602853298187, + -0.047166354954242706, + 0.06496188789606094, + 0.04499160125851631, + -0.0867561548948288, + -0.01890629529953003, + 0.0016237548552453518, + 0.06093977019190788, + -0.03804643452167511, + -0.0685163214802742, + -0.04873310774564743, + -0.0407356396317482, + 0.053550295531749725, + -0.023407792672514915, + 0.013410958461463451, + -0.0023223641328513622, + -0.018801065161824226, + 0.05514043569564819, + 0.03229386731982231, + 0.05046355351805687, + 0.012487274594604969, + 0.041998397558927536, + 0.03393077850341797, + -0.04803157597780228, + 0.012382044456899166, + 0.04700266197323799, + 0.010604829527437687, + 0.027640370652079582, + 0.016602929681539536, + 0.006986092310398817, + 0.03863104432821274, + -0.0622960664331913, + -0.15798506140708923, + -0.03914549946784973, + 0.0713692158460617, + -0.0385608896613121, + 0.08661585301160812, + 0.026611456647515297, + -0.03654983267188072, + 0.06627141684293747, + 0.0123352762311697, + -0.024787474423646927, + 0.05228753760457039, + -0.0020607509650290012, + -0.008804230019450188, + 0.06692618131637573, + -0.03769566863775253, + 0.010400216095149517, + -0.07019999623298645, + -0.0035251996014267206, + 0.011060825549066067, + 0.025138240307569504, + 0.024226248264312744, + 0.0656166523694992, + -0.1341329663991928, + 0.005659027025103569, + 0.010441138409078121, + -0.00957006961107254, + -0.05055709183216095, + -0.00093756866408512, + 0.006623633671551943, + -0.0004556305939331651, + -0.03114803321659565, + -0.010768520645797253, + -0.04585682600736618, + -0.03173264488577843, + 0.02351302281022072, + -0.04751712083816528, + 0.04835895821452141, + 0.011937741190195084, + 0.03652644529938698, + -0.057385340332984924, + 0.08918813616037369, + 0.05850779265165329, + -0.039753496646881104, + -0.02453024499118328, + 0.005635642446577549, + 0.034912921488285065, + 0.019537674263119698, + -0.021794268861413002, + 0.03168587386608124, + -0.00838331039994955, + 0.009242687374353409, + 0.05008940398693085, + -0.027383143082261086, + 0.0017216771375387907, + 0.010446984320878983, + -0.007126398850232363, + -0.004714881535619497, + -0.04562298208475113, + 0.05584196746349335, + -0.018193069845438004, + -0.019537674263119698, + 0.005907486192882061, + 0.057478878647089005, + 0.026821916922926903, + -0.057525645941495895, + -0.06762771308422089, + -0.09564223140478134, + 0.029768353328108788, + 0.04863956943154335, + 0.0342581607401371, + 0.03320585936307907, + -0.08731738477945328, + 0.032901864498853683, + -0.04223224148154259, + -0.03456215560436249, + -0.03028281033039093, + -0.06500865519046783, + 0.010756827890872955, + 0.010382677428424358, + 0.015994936227798462, + 0.009482378140091896, + -0.13020439445972443, + 0.013247267343103886, + 0.08235988765954971, + -0.022484108805656433, + -0.00020114245126023889, + 0.03479599952697754, + -0.05888194218277931, + 0.04407961294054985, + 0.019373983144760132, + -0.013235575519502163, + -0.05635642632842064, + -0.043728843331336975, + -0.027383143082261086, + -0.0004066694818902761, + -0.02370009943842888, + -0.00794485304504633, + -0.013212190940976143, + -0.04183470830321312, + 0.055514588952064514, + -0.016509393230080605, + -0.05850779265165329, + 0.03032957948744297, + 0.019490905106067657, + -0.0008732615387998521, + -0.020531510934233665, + -0.045061755925416946, + -0.002461208961904049, + 0.008248850703239441, + 0.029674815014004707, + -0.030493268743157387, + -0.07553163915872574, + 0.05266169086098671, + -0.027967752888798714, + 0.07562518119812012, + 0.13263636827468872, + -0.023045334964990616, + 0.01918690837919712, + -0.01822814717888832, + 0.07637348026037216, + 0.07085476070642471, + 0.05130539461970329, + 0.03191971778869629, + -0.030352963134646416, + -0.009330378845334053, + 0.016977081075310707, + 0.05682411417365074, + 0.08474510163068771, + 0.07108860462903976, + 0.006003946997225285, + -0.0035135075449943542, + -0.06917107850313187, + -0.031311724334955215, + 0.11608020961284637, + 0.010961441323161125, + -0.015059559606015682, + -0.016100166365504265, + -0.033182475715875626, + -0.09451977908611298, + 0.014147567562758923, + -0.010750981979072094, + 0.012417120859026909, + 0.044406991451978683, + -0.06397974491119385, + -0.02415609546005726, + -0.06879693269729614, + -0.010610675439238548, + -0.04398607462644577, + -0.002562054432928562, + -0.03421138972043991, + 0.000449784507509321, + -0.07211751490831375, + 0.07684116810560226, + -0.08511924743652344, + -0.001945290481671691, + -0.040618717670440674, + -0.02410932630300522, + 0.06416682153940201, + -0.027383143082261086, + 0.023220717906951904, + -0.003934426698833704, + -0.02384040504693985, + -0.05303584039211273, + -0.015527247451245785, + -0.01781892031431198, + 0.0023910559248179197, + 0.06463450938463211, + 0.0076934704557061195, + 0.0318729504942894, + 0.05612258240580559, + 0.053222913295030594, + 0.028014522045850754, + 0.015445401892066002, + -0.040127646178007126, + 0.03755535930395126, + 0.011154362931847572, + 0.0373682864010334, + 0.002380825113505125, + 0.0003374297230038792, + 0.0714159831404686, + -0.059443168342113495, + -0.016182010993361473, + 0.0426531620323658, + -0.06430712342262268, + -0.010961441323161125, + -0.020426280796527863, + 0.027149299159646034, + -0.09980465471744537, + -0.0067639402113854885, + -0.022484108805656433, + -0.025372084230184555, + -0.09381824731826782, + 0.030540037900209427, + 0.1500343680381775, + -0.021525349467992783, + 0.024740705266594887, + -0.012300198897719383, + 0.03014250285923481, + -0.01662631519138813, + -0.030212655663490295, + -0.011937741190195084, + 0.0038175047375261784, + -0.028716053813695908, + -0.036970749497413635, + 0.014603563584387302, + 0.08409033715724945, + 0.011534360237419605, + 0.02315056510269642, + 0.017514921724796295, + 0.029978811740875244, + -0.03484277054667473, + 0.031452029943466187, + 0.014182643964886665, + 0.004697343334555626, + 0.03114803321659565, + -0.027850830927491188, + -0.08741091936826706, + -0.04029133543372154, + 0.03311232477426529, + -0.06009793281555176, + -0.0019774441607296467, + -0.017877381294965744, + -0.027687139809131622, + 0.01991182379424572, + -0.007085476070642471, + -0.030586807057261467, + -0.0433780774474144, + 0.020250897854566574, + -0.028552362695336342, + -0.02032105065882206, + 0.04749373346567154, + 0.0028762822039425373, + 0.029347432777285576, + 0.0042793466709554195, + -0.030540037900209427, + -0.06337174773216248, + 0.045786671340465546, + -0.005395952612161636, + -0.002098750788718462, + 0.026564689353108406, + -0.061547763645648956, + -0.021034276112914085, + 0.03439846634864807, + -0.0032708942890167236, + 0.05411152169108391, + 0.05214723199605942, + 0.1135546937584877, + 0.0445706844329834, + -0.057712722569704056, + 0.008184542879462242, + -0.03741505369544029, + 0.10728766769170761, + 0.08848660439252853, + -0.004390422720462084, + 0.03257448226213455, + 0.04527221620082855, + 0.02082381583750248, + 0.0006872824160382152, + -0.06907754391431808, + -0.07693470269441605, + 0.02663484215736389, + 0.019420752301812172, + -0.0404784120619297, + 0.0012517966097220778, + -0.011130978353321552, + 0.02438993938267231, + 0.049855560064315796, + 0.0263542290776968, + -0.022998565807938576, + -0.007219936233013868, + -0.03580152988433838, + 0.033954162150621414, + -0.014895868487656116, + 0.06776801496744156, + -0.027055760845541954, + -0.007833776995539665, + 0.039122115820646286, + -0.01721092499792576, + 0.031264953315258026, + 0.006325482856482267, + 0.013995569199323654, + -0.07941345125436783, + 0.012814655900001526, + 0.047166354954242706, + -0.0560758113861084, + -0.10560399293899536, + 0.06786155700683594, + 0.02082381583750248, + 0.01721092499792576, + 0.011703896336257458, + -0.012943270616233349, + -0.02101089246571064, + 0.010856212116777897, + -0.057478878647089005, + -0.002412978792563081, + -0.011446667835116386, + -0.032948631793260574, + 0.027850830927491188, + 0.03860766068100929, + -0.045552827417850494, + 0.026658225804567337, + -0.03229386731982231, + -0.016334010288119316, + -0.04050179570913315, + -0.04064210131764412, + -0.019327213987708092, + 0.029815122485160828, + 0.045646365731954575, + -0.087691530585289, + 0.006331328768283129, + 0.01731615513563156, + 0.09017027914524078, + -0.021864421665668488, + 0.04234916344285011, + 0.01182666514068842, + 0.02018074505031109, + -0.005512874573469162, + -0.09671791642904282, + -0.021385041996836662, + -0.026143768802285194, + -0.0015477555571123958, + -0.016462624073028564, + -0.05630965530872345, + -0.005930870771408081, + -0.079086072742939, + -0.055608123540878296, + 0.006845785770565271, + 0.037111058831214905, + 0.03622245043516159, + 0.03877134993672371, + -0.06224929541349411, + 0.09115242958068848, + -0.009306995198130608, + 0.04365869238972664, + 0.059209324419498444, + 0.03818674013018608, + -0.03575476258993149, + -0.007868853397667408, + 0.03935595974326134, + -0.04127348214387894, + -0.02735975943505764, + -0.05420506000518799, + -0.07838454097509384, + 0.041764553636312485, + -0.087691530585289, + 0.007734393235296011, + 0.040314722806215286, + 0.03951965272426605, + 0.04064210131764412, + -0.06201545149087906, + 0.03622245043516159, + -0.035053230822086334, + -0.024039171636104584, + -0.02060166373848915, + -0.0015886783367022872, + -0.04015102982521057, + 0.08231312036514282, + -0.10766182094812393, + 0.015831245109438896, + -0.01662631519138813, + 0.016556162387132645, + 0.057338569313287735, + 0.005536258686333895, + -0.024600397795438766, + -0.020063823089003563, + -0.0041448865085840225, + -0.06005116179585457, + -0.015082944184541702, + 0.0450383722782135, + 0.06627141684293747, + 0.10560399293899536, + -0.03460892662405968, + -0.038701195269823074, + -0.0002733052824623883, + 0.0333227813243866, + -0.057198263704776764, + 0.0484057255089283, + -0.0642135888338089, + -0.0584610216319561, + -0.06594403088092804, + -0.012323583476245403, + -0.03138187527656555, + -0.019116753712296486, + -0.059349630028009415, + -0.055748432874679565, + -0.02750006504356861, + 0.01681338995695114, + 0.040525179356336594, + -0.01320049911737442, + -0.0002954108640551567, + -0.0196429044008255, + 0.047750964760780334, + 0.06379266828298569, + 0.03460892662405968, + -0.0017962149577215314, + 0.04293377324938774, + 0.04538913816213608, + 0.07707501202821732, + -0.009716222062706947, + -0.0032942786347121, + -0.04821865260601044, + 0.026962224394083023, + 0.041133176535367966, + -0.021946268156170845, + 0.017117386683821678, + 0.016006628051400185, + -0.09409885853528976, + -0.0034316619858145714, + 0.011306362226605415, + -0.033954162150621414, + -0.008020852692425251, + -0.055421050637960434, + -0.015772784128785133, + 0.0011217208812013268, + 0.05102477967739105, + -0.045973747968673706, + 0.07656055688858032, + 0.042045168578624725, + -0.02201642096042633, + 0.010920519009232521, + 0.03919227048754692, + -0.03608214482665062, + 0.024132709950208664, + 0.04117994382977486, + 0.0055976430885493755 + ] + }, + { + "id": "2601f01f-2029-462f-a9f5-1d9ccbbfd09d", + "productId": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "category": "Media", + "docType": "customerRating", + "userName": "dcampbell", + "reviewDate": "2022-11-10T03:10:56", + "stars": 4, + "verifiedUser": true + }, + { + "id": "378bed0d-79f1-4fdd-ae72-d5e1e984eb33", + "productId": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "category": "Media", + "docType": "customerRating", + "userName": "jeffrey99", + "reviewDate": "2022-03-26T06:02:50", + "stars": 4, + "verifiedUser": false + }, + { + "id": "87d37713-598f-426f-812e-32e5cb862e7e", + "productId": "e6acf3ee-2d0a-4ba7-b394-d319e80e8f68", + "category": "Media", + "docType": "customerRating", + "userName": "smithjohn", + "reviewDate": "2021-09-09T12:26:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Mini (Red)", + "description": "This Luxe Mouse Mini (Red) is quite comfortable and comfortable to work with. However, this Mini lacks support for USB mice, so I am not sure you will find a solution for installing", + "countryOfOrigin": "Germany", + "rareItem": true, + "firstAvailable": "2020-11-08T13:13:34", + "price": 786.81, + "stock": 26, + "priceHistory": [ + { + "priceDate": "2021-05-22T12:01:27", + "newPrice": 747.32 + }, + { + "priceDate": "2021-10-29T12:01:27", + "newPrice": 769.08 + }, + { + "priceDate": "2022-04-07T12:01:27", + "newPrice": 825.29 + }, + { + "priceDate": "2022-09-14T12:01:27", + "newPrice": 811.02 + }, + { + "priceDate": "2023-04-29T12:01:27", + "newPrice": 786.81 + } + ], + "descriptionVector": [ + -0.052014075219631195, + 0.08628924190998077, + -0.0010764680337160826, + -0.012659907341003418, + -0.005873595830053091, + 0.009733847342431545, + 0.02347290702164173, + 0.014463864266872406, + -0.007215825375169516, + -0.0013959185453131795, + 0.017878495156764984, + -0.04449759051203728, + -0.027875419706106186, + -0.043273475021123886, + 0.05437639728188515, + -0.014871901832520962, + -0.07988949120044708, + 0.04789074510335922, + -0.020530741661787033, + 0.0016536266775801778, + 0.04900747910141945, + -0.1229267343878746, + 0.003291146596893668, + 0.035134196281433105, + 0.005599780939519405, + -0.021636737510561943, + 0.001793218543753028, + 0.042521826922893524, + -0.0029260599985718727, + 0.0010395566932857037, + 0.0047327009961009026, + -0.02448226511478424, + -0.040653444826602936, + 0.0665745809674263, + 0.0355851873755455, + -0.06567259877920151, + 0.03375975415110588, + -0.02751033380627632, + -0.007017175201326609, + 0.09938940405845642, + -0.031977273523807526, + 0.011983424425125122, + 0.01764226332306862, + -0.07503598928451538, + 0.0033502045553177595, + 0.01741676963865757, + -0.004915243946015835, + 0.01852276548743248, + -0.05454820394515991, + 0.009470771066844463, + -0.009959341958165169, + 0.06571555137634277, + -0.07443467527627945, + -0.044540539383888245, + -0.014539028517901897, + -0.017470458522439003, + 0.005484349559992552, + 0.07327498495578766, + 0.07860095053911209, + -0.04093262925744057, + -0.045485470443964005, + -0.015226250514388084, + 0.015763141214847565, + -0.0009657340706326067, + -0.013776642270386219, + -0.032041698694229126, + -0.0006160832708701491, + -0.003771664574742317, + 0.10110745579004288, + 0.026651307940483093, + -0.06227944418787956, + -0.017438244074583054, + -0.0466451570391655, + -0.030882013961672783, + 0.06601621210575104, + -0.021980348974466324, + -0.022828638553619385, + -0.023988323286175728, + 0.04273658245801926, + -0.004338085651397705, + 0.022549454122781754, + -0.04956584796309471, + -0.05738299340009689, + -0.04552842304110527, + 0.00687758345156908, + 0.01732012815773487, + 0.05008126422762871, + -0.06446996331214905, + -0.00833255983889103, + 0.09466475248336792, + -3.4709213650785387e-05, + 0.10256779938936234, + 0.07164283841848373, + -0.022442076355218887, + 0.007140660658478737, + -0.024718496948480606, + -0.005406499840319157, + 0.053431469947099686, + -0.01896301656961441, + -0.022313222289085388, + -0.0037958247121423483, + 0.056652817875146866, + -0.05652396380901337, + -0.028927728533744812, + 0.07125627249479294, + 0.014818212948739529, + 0.028670020401477814, + -0.06992478668689728, + -0.036744873970746994, + -0.01855497993528843, + 0.03556371107697487, + -0.004456201568245888, + -0.019252939149737358, + -0.0307961106300354, + -0.054505251348018646, + 0.04423988237977028, + -0.033115483820438385, + -0.031182672828435898, + -0.047504182904958725, + 0.051799315959215164, + 0.1087527945637703, + 0.08134984225034714, + 0.03760389983654022, + 0.07701175659894943, + -0.027789518237113953, + 0.021540097892284393, + -0.0074198441579937935, + -0.04423988237977028, + 0.03186989575624466, + -0.03998769819736481, + -0.01013114769011736, + 0.09870218485593796, + 0.05317376181483269, + 0.003887096419930458, + -0.0514986589550972, + 0.048577968031167984, + -0.02224879525601864, + 0.004845448303967714, + -0.04479824751615524, + -0.012756547890603542, + 0.03260006755590439, + -0.03470468521118164, + -0.0723300576210022, + 0.012284083291888237, + -0.07950293272733688, + 0.024697020649909973, + -0.13271965086460114, + -0.044884152710437775, + -0.05051077529788017, + 0.026243269443511963, + 0.04874977096915245, + -0.06279486417770386, + 0.03401746228337288, + -0.028025750070810318, + 0.06395454704761505, + 0.09492246061563492, + -0.04746123030781746, + -0.046172693371772766, + -0.03313696011900902, + 0.05514952167868614, + 0.005873595830053091, + -0.036809299141168594, + 0.0412118099629879, + -0.036487165838479996, + -0.016955042257905006, + 0.019263677299022675, + -0.020960254594683647, + 0.03653011471033096, + -0.048577968031167984, + 0.007833250798285007, + -0.05338851734995842, + -0.003253564005717635, + 0.01013114769011736, + -0.03350204601883888, + 0.031096771359443665, + -0.0047756521962583065, + 0.032986629754304886, + 0.03464025631546974, + 0.028691496700048447, + -0.06283780932426453, + 0.09157226234674454, + 0.04943699389696121, + -0.058070212602615356, + 0.03444697707891464, + 0.08263838291168213, + -0.047633036971092224, + -0.0030978654976934195, + -0.06653162837028503, + -0.020713284611701965, + -0.014045088551938534, + -0.032986629754304886, + 0.032986629754304886, + -0.005148792173713446, + -0.045957934111356735, + 0.019295889884233475, + 0.05854267627000809, + 0.0053581795655190945, + 0.05682462453842163, + 0.023258151486516, + -0.013862545602023602, + -0.013862545602023602, + 0.0760238766670227, + 0.04591498523950577, + 0.011918997392058372, + 0.030774636194109917, + -0.002497888868674636, + 0.059143997728824615, + 0.029357241466641426, + 0.06124861165881157, + -0.01849055290222168, + 0.04295134171843529, + -0.016922827810049057, + 0.03874211013317108, + 0.01069488376379013, + 0.06305256485939026, + 0.018662357702851295, + 0.04222116991877556, + -0.011951210908591747, + -0.071943499147892, + -0.048105500638484955, + 0.03167661279439926, + -0.02628622017800808, + -0.0033394668716937304, + -0.029700852930545807, + -0.05514952167868614, + 0.0062601580284535885, + 0.053345564752817154, + 0.0090090436860919, + 0.07542255520820618, + 0.03534895181655884, + -0.01371221523731947, + -0.04174870252609253, + 0.05575083941221237, + 0.019929422065615654, + -0.06365388631820679, + 0.025641949847340584, + -0.05257244035601616, + -0.016525529325008392, + 0.03326581418514252, + 0.004713909700512886, + -0.06567259877920151, + -0.00949761550873518, + -0.035971749573946, + 0.04262920469045639, + 0.003677708562463522, + 0.023365529254078865, + 0.06949526816606522, + 0.02026229538023472, + -0.06786312162876129, + -0.02622179314494133, + -0.046301547437906265, + 0.03826964646577835, + 0.05145570635795593, + 0.0406319685280323, + -0.02688753977417946, + 0.08006130158901215, + 0.06537193804979324, + -0.048234354704618454, + -0.016138967126607895, + -0.0760238766670227, + 0.028605593368411064, + -0.0026495608035475016, + -0.08379806578159332, + 0.03315843641757965, + 0.055707890540361404, + 0.017653001472353935, + 0.040374260395765305, + -0.06850738823413849, + 0.015183298848569393, + 0.04116886109113693, + -0.001523430342786014, + 0.008869451470673084, + 0.08053376525640488, + -0.025727853178977966, + -0.046215642243623734, + -0.03811931610107422, + -0.04814845323562622, + 0.038892440497875214, + -0.0035569078754633665, + -0.055364277213811874, + 0.044884152710437775, + 0.04647335037589073, + 0.039107196033000946, + -0.011714978143572807, + -0.052959002554416656, + -0.007677552290260792, + 0.01949990913271904, + -0.029808230698108673, + -0.01713758520781994, + -0.008912403136491776, + -0.007296359166502953, + -0.01918851211667061, + 0.016482576727867126, + 0.009256013669073582, + 0.057855457067489624, + 0.017975136637687683, + 0.049866508692502975, + 0.0257493294775486, + -0.025470145046710968, + -0.015322891063988209, + 0.029571998864412308, + -0.01650405302643776, + 0.02723114937543869, + -0.05875743553042412, + 0.023966848850250244, + 0.028004273772239685, + -0.02360176108777523, + 0.06232239678502083, + -0.04926518723368645, + -0.019950898364186287, + 0.1029973179101944, + 0.034189268946647644, + -0.0969841256737709, + -0.013035732321441174, + 0.08418463170528412, + -0.026329172775149345, + 0.00788693968206644, + -0.041791655123233795, + 0.03848440200090408, + -0.012445150874555111, + -0.02480440028011799, + -0.04660220444202423, + -0.055235423147678375, + 0.032106127589941025, + 0.0776989758014679, + -0.09054142981767654, + -0.0514986589550972, + 0.010072089731693268, + -0.017771117389202118, + -0.016718808561563492, + -0.02373061515390873, + 0.03429664671421051, + -0.004998462274670601, + -0.0057286350056529045, + 0.04990945756435394, + -0.0410829558968544, + -0.021121321246027946, + 0.04870682209730148, + 0.045614324510097504, + 0.05918694660067558, + 0.00744668859988451, + 0.02796132303774357, + -0.021400505676865578, + -0.015161823481321335, + 0.024374885484576225, + -0.05459115281701088, + -0.005857489071786404, + 0.028476739302277565, + 0.042264118790626526, + -0.016933565959334373, + 0.001192570780403912, + -0.06936641782522202, + 0.04350970685482025, + -0.058671530336141586, + -0.025470145046710968, + -0.014335010200738907, + -0.00699569983407855, + -0.049737654626369476, + -0.0355207584798336, + 0.10084974765777588, + 0.00993786659091711, + -0.025577522814273834, + 0.013454507105052471, + 0.0559655986726284, + -0.004233391489833593, + 0.04331642761826515, + -0.03988032042980194, + -0.01681545004248619, + -0.0765392929315567, + 0.01839391142129898, + -0.016493314877152443, + -0.029937084764242172, + 0.029142484068870544, + 0.07361859828233719, + -0.1019664853811264, + -0.015419531613588333, + 0.08220886439085007, + 0.0013180692913010716, + -0.017620787024497986, + 0.004815919324755669, + -0.04995241016149521, + 0.005089733749628067, + 0.012294821441173553, + 0.011102921329438686, + 0.004083062056452036, + -0.02073475904762745, + -0.026522453874349594, + -0.006431963294744492, + 0.05493476614356041, + -0.04355265945196152, + 0.010775418020784855, + -0.08311084657907486, + 0.0009476139675825834, + 0.0035569078754633665, + 0.025727853178977966, + -0.06386864185333252, + -0.011725716292858124, + 0.022742735221982002, + -0.05420459061861038, + -0.004034741781651974, + 0.005916547030210495, + 0.04067492112517357, + -0.021625999361276627, + -0.028605593368411064, + -0.0461297407746315, + -0.03968703746795654, + -0.015698716044425964, + 0.05768365040421486, + -0.023344052955508232, + -0.030688732862472534, + -0.0013630340108647943, + -0.005755479913204908, + 0.03232088312506676, + -0.012853188440203667, + 6.803425640100613e-05, + -0.02420308068394661, + 0.08100622892379761, + -0.030108889564871788, + -0.005017253570258617, + -0.039300475269556046, + 0.05695347860455513, + -0.04741828143596649, + -0.041061483323574066, + -0.030581355094909668, + -0.09981891512870789, + 0.03801193833351135, + -0.11914701759815216, + 0.013669264502823353, + 0.030839063227176666, + -0.08916698396205902, + 0.02937871776521206, + -0.03141890466213226, + -0.06524308770895004, + -0.006904427893459797, + 0.055364277213811874, + 0.022377649322152138, + -0.024117177352309227, + 0.03363090008497238, + 0.06219354271888733, + 0.07267367094755173, + 0.01832948438823223, + -0.041319191455841064, + -0.0024643330834805965, + 0.0668322890996933, + -0.06769131124019623, + 0.022098464891314507, + -0.027059344574809074, + 0.07735536247491837, + 0.06459881365299225, + -0.03483353927731514, + 0.014442387968301773, + -0.005487033631652594, + -0.04310167208313942, + -0.06988183408975601, + 0.034790586680173874, + -0.04660220444202423, + -0.004512575455009937, + 0.039837367832660675, + -0.027746565639972687, + -0.023086346685886383, + -0.014152467250823975, + -0.005658839363604784, + 0.01281023770570755, + 0.0511120967566967, + -0.017685214057564735, + -0.022699784487485886, + 0.03360942378640175, + 0.030903490260243416, + -0.02239912375807762, + 0.0359073206782341, + 0.055836744606494904, + 0.0069634863175451756, + 0.008660064078867435, + -0.00892851036041975, + -0.002875055419281125, + 0.042865436524152756, + -0.02985118143260479, + -0.030409550294280052, + 0.009696265682578087, + 0.025792280212044716, + -0.07134217768907547, + 0.012434413656592369, + -0.06373979151248932, + 0.012466627173125744, + 0.07649634033441544, + -0.026393599808216095, + 0.11356334388256073, + 0.03139743208885193, + 0.10703474283218384, + 0.054505251348018646, + 0.07409106194972992, + 0.0006932615069672465, + -0.0360361747443676, + -0.09243128448724747, + -0.0812639370560646, + -0.0072211939841508865, + 0.038699157536029816, + 0.02918543666601181, + -0.05291605368256569, + 0.02433193475008011, + 0.08220886439085007, + 0.026049988344311714, + -0.00315960799343884, + 0.017180535942316055, + 0.0560944527387619, + 0.053560324013233185, + -0.03375975415110588, + 0.025641949847340584, + -0.022699784487485886, + -0.10901050269603729, + 0.06459881365299225, + -0.07241596281528473 + ] + }, + { + "id": "6c9bd8da-fef2-4304-884a-a08dd57bbe6e", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fpennington", + "reviewDate": "2021-05-22T12:01:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c38648ac-dd43-4769-8f59-4edd2a416953", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithsandra", + "reviewDate": "2022-09-15T17:45:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "05d040ad-19a1-43fb-af81-94e9c59cfa1d", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "penasandra", + "reviewDate": "2022-04-19T17:24:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "439acd37-9638-4ea5-8d1a-5d4c8b44cfd3", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "danielleray", + "reviewDate": "2022-02-07T05:25:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8e83a206-6bda-4ecf-ac5c-e60e34b274d7", + "productId": "24c3f8d2-109b-428b-b4ae-547338b2626b", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidbenjamin", + "reviewDate": "2021-12-19T11:48:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "productId": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "category": "Media", + "docType": "product", + "name": "Amazing TV Super (Steel)", + "description": "This Amazing TV Super (Steel) is a great companion if you are in need of a good show-stopping show at home…\n\nIf you are not in the mood for the show-stopping episodes you are out of luck today, for I hope you won't have to get on the plane, I also have some good news for you…the show-stopping seasons should still be available to pick up on", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-09-09T06:02:10", + "price": 662.77, + "stock": 64, + "priceHistory": [ + { + "priceDate": "2021-01-29T04:02:44", + "newPrice": 599.22 + }, + { + "priceDate": "2021-08-29T04:02:44", + "newPrice": 666.11 + }, + { + "priceDate": "2022-03-29T04:02:44", + "newPrice": 688.46 + }, + { + "priceDate": "2022-10-27T04:02:44", + "newPrice": 680.64 + }, + { + "priceDate": "2024-03-19T04:02:44", + "newPrice": 662.77 + } + ], + "descriptionVector": [ + 0.0013072008732706308, + 0.01453691441565752, + -0.05001707747578621, + 0.06190454587340355, + 0.0321858786046505, + -0.04152202606201172, + -0.05217588692903519, + -0.03512970730662346, + 0.05820373073220253, + 0.07468917965888977, + 0.0571383461356163, + 0.012882762588560581, + 0.03162514790892601, + 0.04452192783355713, + 0.01188045833259821, + -0.055568303912878036, + -0.006798846181482077, + -0.0038550158496946096, + 0.007464712485671043, + -0.035802584141492844, + 0.045839644968509674, + -0.013408446684479713, + -0.022022655233740807, + -0.008123570121824741, + -0.016443395987153053, + -0.0044788275845348835, + -0.06302600353956223, + 0.03498952463269234, + -0.05870838835835457, + -0.04982082545757294, + -0.05049369856715202, + -0.010955254547297955, + 0.043989237397909164, + 0.010822081007063389, + -0.019247043877840042, + 0.035998839884996414, + 0.00691800145432353, + -0.0021412861533463, + -0.054727207869291306, + -0.01628919504582882, + -0.019513389095664024, + 0.03866230323910713, + 0.00015682906087022275, + 0.04497051239013672, + 0.031232638284564018, + -0.040540751069784164, + -0.032045695930719376, + -0.00459798239171505, + -0.01623312197625637, + 0.052680544555187225, + -0.052932873368263245, + -0.021756308153271675, + -0.015518191270530224, + -0.039839837700128555, + 0.0026634654495865107, + -0.0006395821692422032, + 0.005684396252036095, + -0.11136089265346527, + 0.0015279881190508604, + 0.009665575809776783, + -0.10889368504285812, + -0.046736810356378555, + -0.0040442622266709805, + 0.06280171126127243, + -0.07710032165050507, + -0.008558135479688644, + -0.017144307494163513, + 0.01642937771975994, + -0.05859624221920967, + -0.05175534263253212, + -0.004780219867825508, + 0.011866440065205097, + 0.02370484359562397, + 0.013843012042343616, + 0.005428563337773085, + -0.031036382541060448, + 0.03608294948935509, + 0.026550546288490295, + 0.045531243085861206, + -0.08382907509803772, + 0.025387031957507133, + 0.06566143780946732, + -0.020410556346178055, + 0.06790435314178467, + 0.06723147630691528, + 0.013114063069224358, + 0.052736617624759674, + -0.08904385566711426, + -0.027517804875969887, + 0.05565240979194641, + 0.038185685873031616, + -0.013534610159695148, + -0.017747091129422188, + -0.08478231728076935, + 0.03308304399251938, + 0.03078405372798443, + -0.021756308153271675, + 0.036195095628499985, + 0.004244022071361542, + 0.06448390334844589, + 0.033699847757816315, + -0.03022332489490509, + 0.0029228029306977987, + -0.12022042274475098, + 0.02388708107173443, + -0.027447713539004326, + -0.012511278502643108, + 0.07962360233068466, + 0.031400855630636215, + -0.22328251600265503, + -0.003579908050596714, + -0.03285875543951988, + 0.05960555374622345, + -0.009889868088066578, + 0.07609100639820099, + 0.06201669201254845, + -0.051615159958601, + 0.006444885861128569, + 0.05366182327270508, + -0.0711565837264061, + 0.008228707127273083, + 0.03297090157866478, + -0.051334794610738754, + 0.05938126519322395, + 0.002936821198090911, + 0.019373206421732903, + 0.04382101818919182, + 0.08433373272418976, + 0.048587217926979065, + -0.023999227210879326, + -0.03566240146756172, + 0.030699944123625755, + 0.032998938113451004, + -0.0003819970297627151, + -0.0711565837264061, + -0.016149012371897697, + 0.0011328490218147635, + -0.008586172014474869, + -0.022891785949468613, + 0.033055007457733154, + -0.003504559863358736, + -0.03826979547739029, + 0.03950339928269386, + -0.0021114973351359367, + -0.01770503632724285, + -0.013149108737707138, + -0.03277464583516121, + -0.04410138353705406, + 0.007948341779410839, + 0.021840417757630348, + 0.04295188561081886, + -0.05144694074988365, + -0.08831491321325302, + -0.0479423813521862, + 0.03922303393483162, + 0.11719248443841934, + -0.059773772954940796, + -0.03022332489490509, + -0.04435370862483978, + 0.03972769156098366, + -0.07244626432657242, + -0.09072604775428772, + -0.10715542733669281, + 0.05464309826493263, + 0.03790532052516937, + -0.019134897738695145, + 0.04337243363261223, + 0.006458904128521681, + -0.05994199216365814, + 0.03283071890473366, + 0.01115150935947895, + -0.023592697456479073, + -0.003459000727161765, + -0.0733434334397316, + 0.00026437523774802685, + 0.057923365384340286, + 0.045979827642440796, + 0.06700718402862549, + -0.09846411645412445, + -0.022345073521137238, + -0.06762398779392242, + 0.02127968706190586, + -0.016695722937583923, + -0.01446682307869196, + -0.027307530865073204, + 0.0470171757042408, + -0.01757887192070484, + -0.026788856834173203, + -0.027952369302511215, + -0.026858948171138763, + 0.03810157626867294, + -0.07132480293512344, + 0.027531823143363, + -0.06280171126127243, + -0.06431568413972855, + 0.04780219867825508, + -0.01034546084702015, + -0.0778292641043663, + -0.042895812541246414, + 0.009441284462809563, + 0.0001247404288733378, + -0.005691405385732651, + 0.07418452203273773, + -0.034793272614479065, + 0.021097451448440552, + -0.009532403200864792, + 0.03442879766225815, + 0.05211981385946274, + 0.008270760998129845, + 0.023676807060837746, + -0.027686024084687233, + -0.056829944252967834, + 0.05125068500638008, + 0.017046179622411728, + 0.028288807719945908, + -0.036391351372003555, + -0.015420063398778439, + -0.0006203071097843349, + -0.028134606778621674, + -0.011214591562747955, + 0.05660565197467804, + -0.0665585994720459, + 0.02810657024383545, + -0.026101961731910706, + 0.00853009894490242, + -0.02887757308781147, + 0.0263262540102005, + -0.03126067295670509, + 0.046035900712013245, + -0.08820276707410812, + -0.04984886199235916, + -0.11265057325363159, + -0.0031803881283849478, + -0.02332635037600994, + -0.01750878058373928, + 0.036251168698072433, + -0.03507363423705101, + -0.025415068492293358, + -0.07698817551136017, + -0.04205472022294998, + 0.008242725394666195, + -0.020116174593567848, + -0.058428023010492325, + -0.05346556752920151, + 0.0448303297162056, + -0.014901388436555862, + 0.05094228312373161, + 0.048138633370399475, + -0.011137491092085838, + 0.007836195640265942, + -0.08349263668060303, + 0.016134994104504585, + 0.03465308994054794, + 0.020032064989209175, + 0.04017627611756325, + 0.04626018926501274, + 0.007527794688940048, + 0.013408446684479713, + -0.031344782561063766, + 0.008726353757083416, + -0.07278270274400711, + -0.04645644500851631, + 0.022989913821220398, + 0.08752989023923874, + 0.01871434971690178, + 0.02709725685417652, + -0.030699944123625755, + -0.02158808894455433, + -0.054138440638780594, + 0.05893268063664436, + -0.024826303124427795, + 0.016064902767539024, + -0.021195579320192337, + -0.0022884777281433344, + -0.02887757308781147, + -0.07317521423101425, + 0.010114160366356373, + 0.009069801308214664, + 0.022891785949468613, + -0.03241017088294029, + 0.028008442372083664, + -0.07754889875650406, + -0.04438174515962601, + -0.027882277965545654, + 0.024097353219985962, + -0.04031645879149437, + 0.02140585146844387, + 0.03339144587516785, + 0.016779832541942596, + -0.011656166054308414, + -0.04954046010971069, + -0.049932971596717834, + 0.06235313042998314, + 0.053830038756132126, + 0.1097908541560173, + 0.02774209715425968, + 0.02013019286096096, + -0.0014465070562437177, + 0.03142889216542244, + -0.04082111269235611, + 0.00035593187203630805, + 0.019443297758698463, + 0.0165555402636528, + -0.02370484359562397, + -0.05234410613775253, + 0.009287083521485329, + 0.045839644968509674, + 0.005106143653392792, + -0.02607392519712448, + -0.030756017193198204, + 0.006567545235157013, + -0.029242048040032387, + -0.04954046010971069, + -0.012343060225248337, + 0.04530695080757141, + 0.004797742702066898, + 0.002318266313523054, + -0.0007766981143504381, + -0.039895910769701004, + -0.04087718576192856, + 0.04236312210559845, + 0.027840223163366318, + -0.03470916301012039, + -0.038942668586969376, + 0.05217588692903519, + -0.07923109084367752, + -0.004237012937664986, + -0.048138633370399475, + 0.05349360406398773, + 0.04135380685329437, + -0.04547517001628876, + 0.0824272483587265, + 0.003187397262081504, + 0.10732364654541016, + 0.07715639472007751, + -0.021994618698954582, + -0.02952241338789463, + -0.048082564026117325, + 0.03187747672200203, + 0.001348379417322576, + 0.09453900903463364, + -0.029157938435673714, + 0.02957848645746708, + -0.008733362890779972, + 0.0041388850659132, + 0.016639649868011475, + -0.014270568266510963, + -0.024265572428703308, + 0.018868550658226013, + -0.02670474722981453, + 0.0017671743407845497, + -0.006476426962763071, + -0.02255534753203392, + -0.028583191335201263, + 0.08876349031925201, + -0.019457316026091576, + 0.017873255535960197, + -0.02537301369011402, + -0.013492555357515812, + 0.010885163210332394, + 0.06358673423528671, + 0.0010802806355059147, + 0.002824675291776657, + 0.058371949940919876, + 0.007422658149152994, + 0.0734555795788765, + 0.0343727245926857, + 0.04766201600432396, + 0.0016164783155545592, + -0.014039266854524612, + 0.09347362071275711, + -0.023873062804341316, + -0.033195190131664276, + 0.01999001018702984, + 0.0020326448138803244, + 0.016120975837111473, + 0.10272566229104996, + -0.017747091129422188, + 0.022260963916778564, + 0.010934227146208286, + -0.03532596305012703, + 0.03815764933824539, + 0.0687454491853714, + 0.0252328310161829, + -0.027111275121569633, + 0.05680190771818161, + -0.06106345355510712, + -0.030195288360118866, + -0.06285778433084488, + 0.023536624386906624, + -0.057474784553050995, + 0.03016725182533264, + -0.015686409547924995, + -0.005323426332324743, + 0.017452707514166832, + -0.024181462824344635, + 0.0002477285743225366, + 0.09958557784557343, + 0.03423254191875458, + 0.03008314222097397, + -0.03198962286114693, + 0.004093326162546873, + 0.01565837301313877, + -0.030335471034049988, + -0.08304405212402344, + -0.058035511523485184, + -0.008726353757083416, + -0.01261641550809145, + -0.033643774688243866, + -0.003942629788070917, + -0.08096935600042343, + -0.07239019125699997, + -0.00853009894490242, + 0.03215784206986427, + -0.003066489938646555, + 0.057586926966905594, + 0.08663272112607956, + 0.01641535945236683, + 0.055624376982450485, + -0.05097031965851784, + -0.026985110715031624, + 0.06605394184589386, + 0.030756017193198204, + -0.001936269341968, + 0.054082367569208145, + 0.019471334293484688, + -0.05304501950740814, + 0.00402673939242959, + -0.0799039676785469, + -0.03630724176764488, + 0.012272968888282776, + -0.018560148775577545, + -0.028905609622597694, + 0.01303696259856224, + -0.012111758813261986, + 0.04746576026082039, + -0.03002706915140152, + -0.003061233088374138, + 0.008817472495138645, + 0.014803261496126652, + -0.08842705935239792, + 0.07883857935667038, + 0.014985498040914536, + 0.046933066099882126, + 0.016695722937583923, + -0.012644452042877674, + -0.008866536431014538, + 0.02663465589284897, + 0.05820373073220253, + -0.018181657418608665, + -0.07390415668487549, + -0.03790532052516937, + -0.0343727245926857, + 0.03137281909584999, + -0.07199767976999283, + 0.02772807888686657, + 0.07536205649375916, + 0.03468112647533417, + -0.06526892632246017, + 0.04082111269235611, + 0.1009313240647316, + 0.04555927962064743, + 0.03417646884918213, + -0.010646852664649487, + -0.014592987485229969, + 0.0085651446133852, + -0.051334794610738754, + 0.09857626259326935, + 0.0389707051217556, + 0.020985305309295654, + -0.005354967433959246, + -0.05136283114552498, + -0.11954754590988159, + 0.03546614572405815, + 0.04550320655107498, + -0.04216686636209488, + -0.02311607636511326, + -0.044746220111846924, + -0.047381650656461716, + 0.014915406703948975, + 0.04544713348150253, + 0.002759841037914157, + 0.03840997815132141, + -0.01073096226900816, + 0.06762398779392242, + 0.038802485913038254, + -0.04121362417936325, + 0.0097426762804389, + -0.05181141570210457, + 0.013611710630357265, + -0.01418645866215229, + 0.0036026875022798777, + -0.03852212429046631, + -0.015602300874888897, + -0.04068093001842499, + -0.005985788535326719, + 0.014873351901769638, + -0.042895812541246414, + -0.002526787808164954, + 0.030391544103622437, + -0.009322129189968109, + 0.04152202606201172, + -0.04774612560868263, + 0.019204989075660706, + 0.004391213413327932, + -0.02191050909459591, + 0.03266249969601631, + 0.03787728399038315, + 0.0354100726544857, + -0.032298024743795395, + -0.0021728272549808025, + 0.04696110263466835 + ] + }, + { + "id": "238f84bc-2017-4171-9971-82a8fafbef16", + "productId": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "category": "Media", + "docType": "customerRating", + "userName": "fmccarthy", + "reviewDate": "2022-10-29T03:50:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "685ca58f-e5cd-48c2-a00e-3fb30c118606", + "productId": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "category": "Media", + "docType": "customerRating", + "userName": "williamsyvonne", + "reviewDate": "2021-01-29T04:02:44", + "stars": 4, + "verifiedUser": false + }, + { + "id": "94b8b430-cef8-4779-a1c7-c6694c1cadf8", + "productId": "f74c3f63-5a02-4ae7-bb0a-e769af22dc33", + "category": "Media", + "docType": "customerRating", + "userName": "amycampbell", + "reviewDate": "2021-11-09T05:50:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0a322b6d-0a73-4633-aa33-a569511796c0", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Mini (Gold)", + "description": "This Basic Mouse Mini (Gold) is a very accurate and easy to use mouse that's simple to learn and use. It can be put into a small case, put into any of the mouse's buttons and even put into the control button on the keyboard. It works great with any of the many touch", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-03-15T05:43:48", + "price": 607.11, + "stock": 18, + "priceHistory": [ + { + "priceDate": "2021-03-31T00:02:46", + "newPrice": 566.07 + }, + { + "priceDate": "2022-05-17T00:02:46", + "newPrice": 607.11 + } + ], + "descriptionVector": [ + -0.07191484421491623, + 0.008843044750392437, + -0.00044551739119924605, + -0.029168587177991867, + 0.01051099132746458, + -0.018154285848140717, + -0.02877062000334263, + 0.0019766634795814753, + -0.012781740166246891, + 0.025142105296254158, + 0.018891694024205208, + -0.03347598761320114, + 0.03544240817427635, + -0.10852774232625961, + 0.07172756642103195, + 0.004362998064607382, + -0.021572113037109375, + 0.007906653918325901, + -0.029309045523405075, + -0.00012573612912092358, + 0.02220417745411396, + -0.08820805698633194, + -0.032328907400369644, + -0.0067537217400968075, + -0.009346354752779007, + -0.006396722514182329, + -4.380189420771785e-05, + 0.06109952926635742, + -0.0030052305664867163, + 0.04232488572597504, + 0.017674384638667107, + 0.002079081255942583, + -0.032188449054956436, + -0.00863235630095005, + -0.06962069123983383, + -0.013015838339924812, + -0.017978711053729057, + -0.04557884484529495, + -0.0433783233165741, + 0.03450601547956467, + 0.021185852587223053, + -0.013472328893840313, + 0.019383298233151436, + -0.006859065964818001, + -0.01082117110490799, + 0.06690515577793121, + -0.0768309012055397, + 0.001462379703298211, + -0.016012290492653847, + -0.006431837100535631, + 0.03373349457979202, + -0.008257799781858921, + -0.009539485909044743, + 0.004480046685785055, + -0.0061041004955768585, + 0.031322285532951355, + -0.015883537009358406, + 0.05983540043234825, + 0.060865432024002075, + -0.08296426385641098, + 0.00044661472202278674, + -0.03553604707121849, + 0.004433227237313986, + 0.00850360281765461, + -0.053046561777591705, + -0.07055708020925522, + 2.0460697669477668e-06, + -0.00566224055364728, + 0.07266396284103394, + 0.06184864044189453, + -0.026874428614974022, + -0.036472439765930176, + -0.061520904302597046, + -0.02058890275657177, + 0.024510040879249573, + 0.03553604707121849, + 0.026640331372618675, + 0.05861809104681015, + 0.0725703239440918, + 0.007473572622984648, + 0.012161381542682648, + -0.05580891668796539, + -0.004105490166693926, + -0.017323238775134087, + 0.04791982099413872, + 0.02132631093263626, + 0.053046561777591705, + -0.07580087333917618, + 0.006601558066904545, + 0.030315665528178215, + -0.046889789402484894, + 0.055762097239494324, + 0.03195435181260109, + 0.04003072530031204, + 0.05009693279862404, + -0.004910201765596867, + -0.008486045524477959, + 0.044174257665872574, + 0.013039248064160347, + 0.007537949364632368, + 0.046960022300481796, + 0.0594608448445797, + -0.1225736141204834, + 0.026242364197969437, + -0.033639855682849884, + -0.0042576538398861885, + 0.00674201687797904, + 0.028559932485222816, + -0.0125008225440979, + -0.10459490120410919, + 0.016983795911073685, + -0.006461099721491337, + 0.01099089253693819, + 0.04070960730314255, + -0.006507919169962406, + -0.0410139374434948, + -0.0917663425207138, + 0.010692417621612549, + -0.04497018828988075, + 0.015637733042240143, + 0.0719616636633873, + 0.0470302514731884, + 0.08184059709310532, + 0.08099783957004547, + -0.06409598141908646, + -0.010639745742082596, + -0.010487581603229046, + -0.033897362649440765, + -0.0141395078971982, + -0.03291415050625801, + -0.018727824091911316, + 0.07261714339256287, + 0.07383444905281067, + -0.003921138122677803, + -0.006548886187374592, + 0.04087347909808159, + -0.037783388048410416, + 0.012770035304129124, + -0.04623431712388992, + 0.08610117435455322, + -0.039234790951013565, + -0.06718607246875763, + -0.047006841748952866, + -0.02806832641363144, + -0.10393942892551422, + -0.003909433260560036, + -0.09490325301885605, + 0.011043564416468143, + -0.06859065592288971, + 0.040545739233493805, + -0.005843666382133961, + -0.06208273768424988, + 0.008562127128243446, + -0.0821683332324028, + 0.05917992442846298, + 0.10019386559724808, + -0.03960935026407242, + -0.012137971818447113, + -0.04267603158950806, + 0.049816012382507324, + 0.02675737999379635, + -0.011529317125678062, + 0.024463221430778503, + -0.03759610652923584, + -0.014233146794140339, + 0.053093381226062775, + 0.029051538556814194, + 0.0725703239440918, + -0.04920735955238342, + 0.05281246453523636, + -0.06709243357181549, + 0.03710450232028961, + -0.00036669225664809346, + -0.05332748219370842, + 0.025586890056729317, + 0.00896009337157011, + 0.008837192319333553, + 0.0018244998063892126, + -0.00027762536774389446, + -0.06184864044189453, + 0.03771315887570381, + 0.10084933787584305, + -0.0952778086066246, + 0.05014375224709511, + 0.04314422607421875, + -0.05005011335015297, + -0.02832583524286747, + 0.039328433573246, + -0.05590255558490753, + -0.05398295447230339, + -0.0020278722513467073, + -0.002414133632555604, + 0.010241779498755932, + -0.03033907525241375, + 0.07626906782388687, + 0.05538754165172577, + -0.06442371755838394, + 0.04754526540637016, + -0.004357145633548498, + -0.0006324298446998, + -0.0017703647026792169, + 0.019336478784680367, + 0.07448992133140564, + 0.055012986063957214, + 0.033031199127435684, + -0.06564102321863174, + 0.01770949922502041, + -0.08404111117124557, + 0.024627089500427246, + -0.01652730442583561, + 0.04686637967824936, + -0.020214345306158066, + -0.02823219634592533, + 0.0016284429002553225, + 0.0808105617761612, + 0.049675554037094116, + 0.011207432486116886, + -0.03371008485555649, + -0.10515673458576202, + -0.007994440384209156, + 0.017100844532251358, + 0.057634878903627396, + -0.04138849303126335, + 0.0063908700831234455, + -0.0707443580031395, + -0.03612129017710686, + 0.057634878903627396, + 0.011014302261173725, + 0.042465344071388245, + 0.016819927841424942, + -0.04864552617073059, + 0.007994440384209156, + -0.03373349457979202, + 0.06938659399747849, + -0.07392808794975281, + 0.007567211519926786, + -0.016340026631951332, + -0.042863309383392334, + -0.03153297305107117, + 0.05276564508676529, + -0.038579318672418594, + 0.044338125735521317, + -0.06667105853557587, + -0.05295292288064957, + 0.05552799999713898, + 0.027740590274333954, + 0.04007754474878311, + -0.02671056054532528, + -0.03715132176876068, + 0.002079081255942583, + -0.06334687024354935, + 0.013999048620462418, + 0.010546105913817883, + 0.025867808610200882, + -0.028115147724747658, + 0.03928161412477493, + 0.07580087333917618, + -0.022005194798111916, + -0.0232107974588871, + -0.032539594918489456, + 0.029402684420347214, + 0.009873075410723686, + -0.0690588504076004, + 0.03832181170582771, + 0.016667764633893967, + 0.021911554038524628, + 0.053702037781476974, + -0.14738798141479492, + 0.023456599563360214, + 0.0743962824344635, + -0.01330846082419157, + 0.04471268132328987, + 0.049020081758499146, + -0.009521928615868092, + 0.008714291267096996, + -0.0026511577889323235, + -0.04827096685767174, + 0.018563956022262573, + -0.003040345385670662, + -0.05206335335969925, + 0.06802882254123688, + 0.10225392132997513, + 0.043776288628578186, + 0.018657594919204712, + -0.041411902755498886, + -0.0154738649725914, + -0.04534474387764931, + -0.010077910497784615, + -0.09785288572311401, + -0.013261640444397926, + -0.03317166119813919, + 0.0011858517536893487, + 0.006232853978872299, + 0.03335893899202347, + 0.04794323071837425, + 0.06039723381400108, + 0.005574454087764025, + 0.04340173304080963, + -0.018903398886322975, + 0.031415924429893494, + -0.02049526385962963, + 0.0035319507587701082, + -0.07397490739822388, + -0.010938219726085663, + 0.04199714586138725, + 0.023234207183122635, + -0.021396540105342865, + -0.014958850108087063, + -0.04035846143960953, + 0.0015816233353689313, + 0.11367789655923843, + 0.05009693279862404, + -0.058290354907512665, + -0.03038589470088482, + 0.07069753855466843, + -0.06929295510053635, + -0.000342733837896958, + -0.009914042428135872, + 0.0024433957878500223, + 0.021256081759929657, + -0.0052876840345561504, + -0.03373349457979202, + -0.02404184453189373, + 0.06264457106590271, + 0.03176707401871681, + -0.040147773921489716, + -0.03413145989179611, + 0.006601558066904545, + -0.003075459972023964, + -0.05651121214032173, + -0.029917700216174126, + -0.08455612510442734, + -0.05524708330631256, + 0.03129887580871582, + -0.009164929389953613, + -0.08422838896512985, + -0.0033183363266289234, + 0.05974176153540611, + 0.0351380817592144, + 0.04394016042351723, + -0.02802150696516037, + 0.049722373485565186, + 0.014338490553200245, + 0.020085591822862625, + -0.023725813254714012, + -0.09190680086612701, + -0.07341307401657104, + -0.032539594918489456, + -0.004512235056608915, + 0.015052489005029202, + 0.0014440908562391996, + -0.11545704305171967, + 0.013507443480193615, + -0.059039466083049774, + -0.021993489935994148, + -0.06320641189813614, + 0.05510662496089935, + -0.030268846079707146, + 0.03537217900156975, + 0.11592523753643036, + 0.007842276245355606, + -0.02015582099556923, + 0.016141043975949287, + 0.015239767730236053, + -0.005624199751764536, + 0.017323238775134087, + 0.002130290027707815, + 0.05917992442846298, + -0.027178755030035973, + -0.018212810158729553, + -0.046000219881534576, + -0.033382348716259, + 0.03895387426018715, + 0.043823108077049255, + -0.039187971502542496, + -0.005375470966100693, + 0.017990415915846825, + -0.037923846393823624, + -0.06447053700685501, + 0.009826255962252617, + 0.018119171261787415, + 0.027646951377391815, + -0.029004719108343124, + -0.026242364197969437, + 0.07645634561777115, + -0.015801602974534035, + -0.06315959244966507, + -0.00479900510981679, + 0.07083799690008163, + -0.051688797771930695, + 0.0035495080519467592, + -0.03387395292520523, + -0.049675554037094116, + 0.03534876927733421, + 0.022368045523762703, + -0.04199714586138725, + -0.004989209584891796, + 0.05524708330631256, + -0.03246936574578285, + 0.023877976462244987, + 0.021712571382522583, + 0.016995500773191452, + -0.007684260606765747, + 0.0021902776788920164, + -0.0672328919172287, + -0.02867698110640049, + -0.026499871164560318, + 0.07266396284103394, + -0.018903398886322975, + -0.020003657788038254, + -0.007128278259187937, + -0.03179048374295235, + 0.03869636729359627, + -0.0541234128177166, + -0.03768974542617798, + 0.005436921492218971, + -0.027834229171276093, + 0.05201653391122818, + 0.06765426695346832, + -0.03204799070954323, + 0.03422509878873825, + -0.0073857856914401054, + -0.03225867822766304, + -0.0055422657169401646, + -0.03242254629731178, + -0.017943596467375755, + -0.11873441189527512, + -0.027225574478507042, + 0.0899403765797615, + -0.05285928398370743, + -0.009849665686488152, + -0.06203591823577881, + -0.07776729017496109, + 0.01252423319965601, + -0.001462379703298211, + 0.01282855961471796, + -0.007327261380851269, + 0.010622188448905945, + -0.03174366429448128, + -0.018212810158729553, + 0.021747685968875885, + -0.03745564818382263, + 0.006455247290432453, + 0.028091738000512123, + -0.01905556209385395, + 0.03415486961603165, + -0.013612787239253521, + -0.014900325797498226, + 0.07954643666744232, + -0.03090091049671173, + -0.03614469990134239, + 0.02907494828104973, + 0.03134569525718689, + -0.07542631775140762, + 0.044525403529405594, + 0.05683894827961922, + 0.053561579436063766, + 0.04183327779173851, + 0.012910494580864906, + 0.018084056675434113, + -0.002876476850360632, + 0.04068619757890701, + -0.011816087178885937, + -0.02207542397081852, + 0.00812904629856348, + -0.07065071910619736, + 0.02495482563972473, + -0.028208786621689796, + -0.046140678226947784, + 0.046842969954013824, + 0.04597681015729904, + -0.02474413812160492, + -0.00594315817579627, + 0.032937560230493546, + 0.007742784917354584, + -0.06648378074169159, + -0.021747685968875885, + -0.0487859845161438, + 0.01840008795261383, + 0.02250850386917591, + -0.04546179622411728, + -0.006385017652064562, + -0.07425582408905029, + 0.023234207183122635, + 0.0756135955452919, + -0.09148542582988739, + 0.0838538333773613, + 0.04363583028316498, + 0.09438823908567429, + 0.03406123071908951, + -0.0019620321691036224, + 0.03368667513132095, + -0.007496982347220182, + -0.03745564818382263, + -0.009761878289282322, + 0.022309521213173866, + -0.04499359801411629, + 0.04183327779173851, + 0.012723215855658054, + 0.06779472529888153, + 0.022215882316231728, + -0.03417827934026718, + -0.0345294252038002, + 0.03099454939365387, + 0.03548922762274742, + 0.007491129916161299, + 0.041950326412916183, + -0.009129814803600311, + 0.06489191204309464, + -0.056323934346437454, + -0.030268846079707146, + -0.07978053390979767 + ] + }, + { + "id": "2ed98c03-811b-4cea-85f9-ae7b98ffd3fb", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mkeller", + "reviewDate": "2021-07-19T22:21:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e218270c-1286-4418-9321-81c6fec62c27", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael23", + "reviewDate": "2021-06-23T00:04:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "da73ba3d-939c-4693-b3d8-b019ba021ef1", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "apowell", + "reviewDate": "2022-07-07T09:17:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "dbf88ecd-103b-41e1-81bc-0351b9379e06", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williamhayes", + "reviewDate": "2022-05-07T03:19:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d22c965f-95ae-4d15-b321-00975291cd06", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hmoore", + "reviewDate": "2022-05-21T01:07:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "95b99eb8-5f1a-40a1-b850-168daafcd919", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beverlysparks", + "reviewDate": "2022-06-07T05:31:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "04e8fdb2-50d1-4385-b149-b5f80fae4c9f", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthony45", + "reviewDate": "2022-04-16T18:40:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "feb467e5-19eb-4102-a51d-d99b3bd29bb6", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lfriedman", + "reviewDate": "2022-02-18T10:32:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3637f242-c8d2-47fa-bdf8-48164f58442b", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "aaron83", + "reviewDate": "2021-04-19T09:21:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5705bad0-bcad-4ead-beb3-18ecc83c35dc", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "moonrichard", + "reviewDate": "2022-05-05T04:41:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c12ba39a-fa08-43c2-a5f3-ef7b98cc0a77", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wmartinez", + "reviewDate": "2021-07-21T00:21:32", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d5771364-206d-463b-b96d-bf82f9103288", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinkristin", + "reviewDate": "2021-03-31T00:02:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "dbc6f490-9343-43ed-b6b4-2017072ae642", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andrewstyler", + "reviewDate": "2022-02-20T04:17:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "89493f2e-c885-4a1e-929f-f7fe1e8b1bc6", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "juan81", + "reviewDate": "2022-06-02T11:14:37", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dc31fbdb-58ca-4c6a-b634-66df50245c78", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lhurst", + "reviewDate": "2022-07-13T03:20:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d674b164-bb86-4fe3-baf5-5f4406127998", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mlee", + "reviewDate": "2022-12-05T05:10:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "504d7692-686d-4de1-9fe9-9a78cd95a199", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hcurtis", + "reviewDate": "2022-08-18T21:43:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "02959c11-d809-4dee-9b11-1007a69ea03d", + "productId": "0a322b6d-0a73-4633-aa33-a569511796c0", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "imoyer", + "reviewDate": "2021-10-05T04:36:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e2f0c288-5ea2-4837-acb9-5c32679d1277", + "productId": "e2f0c288-5ea2-4837-acb9-5c32679d1277", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Pro (Silver)", + "description": "This Premium Speaker Pro (Silver) is designed to fit every budget budget without getting in the way of the other members' work, helping you organize and organize, and make the best decisions for your organization. It includes the Quick & Easy (Red) and Power (Green) Speaker Pro (Silver).\n\nFeatures:\n\nCompatibility- This package is compatible with only the latest Apple II Series models, Apple IIx and iMobi Pro 2\n\nSupports up to 10 Apple", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-12-29T15:12:12", + "price": 487.86, + "stock": 10, + "priceHistory": [ + { + "priceDate": "2021-12-12T21:36:17", + "newPrice": 522.78 + }, + { + "priceDate": "2022-12-28T21:36:17", + "newPrice": 453.26 + }, + { + "priceDate": "2024-09-09T21:36:17", + "newPrice": 487.86 + } + ], + "descriptionVector": [ + -0.04133502393960953, + -0.0029028200078755617, + -0.05013574659824371, + 0.04888661205768585, + -0.03452155739068985, + -0.015174155123531818, + -0.015344491228461266, + 0.05459288880228996, + -0.008147768676280975, + 0.10418923944234848, + 0.010454410687088966, + -0.026813823729753494, + 0.032080065459012985, + -0.04812009632587433, + -0.03148388862609863, + -0.014059869572520256, + -0.025507910177111626, + -0.03366987407207489, + 0.007193173747509718, + 0.005894357338547707, + 0.05149844288825989, + -0.07114393264055252, + -0.028346853330731392, + -0.040767233818769455, + -0.06296777725219727, + -0.024727201089262962, + -0.011668059043586254, + 0.007750316523015499, + 0.017260778695344925, + 0.013790169730782509, + 0.03426605090498924, + 0.02457105927169323, + -0.04164730757474899, + -0.021249495446681976, + -0.04431591182947159, + 0.04039816930890083, + 0.044202353805303574, + -0.03477706015110016, + 0.04721163585782051, + 0.044344302266836166, + -0.03154066577553749, + -0.020014554262161255, + 0.01133448351174593, + -0.05166877806186676, + 0.04772264510393143, + 0.06160508096218109, + -0.027381613850593567, + 0.08874538540840149, + -0.02373357117176056, + 0.001125818700529635, + 0.0005158893181942403, + 0.04851755127310753, + -0.0550755113363266, + 0.05564329773187637, + 0.001422133413143456, + -0.02073848433792591, + -0.01112156268209219, + 0.1358150690793991, + -0.02772228606045246, + -0.021547583863139153, + -0.001344949589110911, + -0.009574337862432003, + -0.01388243492692709, + 0.036735933274030685, + -0.019432570785284042, + -0.003811282105743885, + -0.04812009632587433, + 0.048176877200603485, + 0.012576521374285221, + 0.04877305403351784, + 0.02499690093100071, + -0.060242388397455215, + 0.013115920126438141, + 0.11395520716905594, + 0.020653316751122475, + 0.04848916083574295, + 0.07619725167751312, + -0.001794744748622179, + 0.003364148549735546, + 0.06972446292638779, + 0.019631296396255493, + 0.049227286130189896, + -0.0164942629635334, + 0.018907366320490837, + 0.028843669220805168, + -0.05419543758034706, + 0.021902451291680336, + -0.12763892114162445, + 0.010582162998616695, + 0.07358542084693909, + -0.026231840252876282, + 0.017303362488746643, + 0.07591335475444794, + 0.01633812114596367, + 0.019787438213825226, + 0.006898633670061827, + -0.03789990022778511, + 0.02628861926496029, + -0.09635375440120697, + -0.1536436378955841, + 0.03029153123497963, + -0.0356571339070797, + -0.027466781437397003, + -0.012782344594597816, + -0.017047857865691185, + 0.10140707343816757, + 0.031228382140398026, + -0.03330080956220627, + 0.004772974178195, + -0.075288787484169, + 0.035685524344444275, + 0.018382161855697632, + 0.029496626928448677, + -0.03770117461681366, + 0.0052343024872243404, + 0.023989075794816017, + -0.04854593798518181, + -0.06609061360359192, + -0.034635115414857864, + 0.000734133122023195, + -0.03838251903653145, + -0.04411718621850014, + -0.03242073953151703, + 0.01863766647875309, + -0.029695352539420128, + -0.015273517929017544, + 0.00698380172252655, + 0.04048334062099457, + -0.010504092089831829, + -0.026132477447390556, + -0.11832717806100845, + 0.08090990036725998, + 0.022739939391613007, + 0.008076795376837254, + -0.03662237524986267, + 0.020426200702786446, + 0.03429444134235382, + 0.08238615095615387, + -0.015557412058115005, + 0.011703546158969402, + -0.04596250131726265, + 0.04440108314156532, + 0.027594534680247307, + 0.06716941297054291, + -0.030603814870119095, + -0.02200181409716606, + -0.0035362595226615667, + 0.08573610335588455, + -0.028233297169208527, + 0.03196650743484497, + -0.01567097008228302, + -0.05649498105049133, + 0.006636031437665224, + -0.03247751668095589, + 0.06796431541442871, + 0.011284802109003067, + -0.09845457226037979, + 0.011909369379281998, + 0.031228382140398026, + 0.08715557307004929, + -0.024471696466207504, + 0.0013822107575833797, + -0.07080326229333878, + 0.005056868772953749, + -0.027154497802257538, + 0.06058306246995926, + 0.09641053527593613, + 0.027424197643995285, + -0.08210225403308868, + 0.013009459711611271, + -0.006898633670061827, + -0.061321187764406204, + 0.01343530137091875, + -0.07773028314113617, + 0.03454994782805443, + -0.008857504464685917, + 0.006064693909138441, + -0.025919556617736816, + -0.006721199490129948, + -0.02495431713759899, + -0.01100090704858303, + 0.06330844759941101, + -0.04545149207115173, + -0.030206361785531044, + 0.04153374955058098, + 0.043719734996557236, + 0.052179787307977676, + -0.004556505009531975, + 0.03347114846110344, + 0.0015986802754923701, + 0.0759701356291771, + 0.044599808752536774, + -0.0013511598808690906, + 0.04008588567376137, + 0.015415465459227562, + -0.05129971355199814, + 0.056665319949388504, + 0.0713142678141594, + -0.015827111899852753, + -0.054933562874794006, + -0.03176778182387352, + 0.05905003100633621, + 0.08289715647697449, + 0.0072747934609651566, + -0.04193120077252388, + 0.0031068690586835146, + 0.0016465873923152685, + 0.01948934979736805, + 0.022314097732305527, + -0.02262638323009014, + -0.0022551859728991985, + -0.036366868764162064, + 0.0053052762523293495, + 0.027381613850593567, + 0.04638834297657013, + 0.0053052762523293495, + 0.046501901000738144, + 0.05172555521130562, + -0.016181979328393936, + -0.031256772577762604, + 0.03554357588291168, + 0.023194171488285065, + 0.04494047909975052, + 0.03332919999957085, + -0.07040580362081528, + -0.02053975872695446, + -0.017729204148054123, + -0.02496851049363613, + 0.030206361785531044, + 0.025578884407877922, + -0.031058045104146004, + 0.042470600455999374, + 0.0593339279294014, + 0.08113701641559601, + 0.017885345965623856, + 0.0275377556681633, + 0.01441473700106144, + -0.03770117461681366, + -0.10328077524900436, + 0.04766586795449257, + -0.06285421550273895, + 0.010347950272262096, + -0.10186130553483963, + 0.009808550588786602, + 0.0275377556681633, + 0.020894626155495644, + 0.08738268911838531, + 0.05291791260242462, + -0.06978123635053635, + 0.010766694322228432, + -0.14376410841941833, + 0.013208186253905296, + -0.04766586795449257, + 0.03296013921499252, + -0.021050767973065376, + 0.03767278417944908, + 0.0876665860414505, + -0.08919961750507355, + -0.011795811355113983, + 0.022527018561959267, + 0.0009980661561712623, + -0.01537288073450327, + -0.01843894086778164, + 0.025294989347457886, + -0.05589880421757698, + -0.02312319725751877, + 0.01904931291937828, + -0.06427368521690369, + -0.029581794515252113, + 0.035458408296108246, + 0.004144858103245497, + 0.006852500606328249, + -0.03415249288082123, + 0.037190165370702744, + 0.0313987173140049, + 0.04786459356546402, + -0.08193191885948181, + 0.05990171432495117, + 0.00943239126354456, + 0.028091348707675934, + 0.05127132683992386, + 0.03690626844763756, + 0.0564098134636879, + -0.006135667208582163, + 0.04301000013947487, + -0.031171603128314018, + -0.03775795176625252, + -0.018041487783193588, + -0.011561598628759384, + -0.014663144946098328, + -0.0222147349268198, + 0.005046222824603319, + 0.0627974346280098, + 0.08624711632728577, + 0.0356571339070797, + 0.0317961722612381, + 0.03514612466096878, + 0.04746714234352112, + 0.033982157707214355, + 0.05064675956964493, + 0.08374883979558945, + 0.013456594198942184, + 0.014705728739500046, + -0.04567860811948776, + -0.00044846441596746445, + 0.07977432012557983, + -0.10095284134149551, + 0.0508170947432518, + -0.08522509038448334, + -0.013520469889044762, + 0.0868716835975647, + -0.05442255362868309, + -0.04318033531308174, + -0.017019467428326607, + 0.0791497528553009, + 0.06927023082971573, + 0.01926223374903202, + -0.011270606890320778, + 0.028687527403235435, + -0.01696269027888775, + -0.04000071808695793, + 0.012966875918209553, + -0.09748933464288712, + 0.0031707454472780228, + -0.024613643065094948, + -0.004432301037013531, + 0.0016306183533743024, + 0.031228382140398026, + 0.0059830741956830025, + 0.04025622457265854, + -0.03281819075345993, + -0.05905003100633621, + 0.06495503336191177, + -0.021689530462026596, + 0.09277668595314026, + -0.02053975872695446, + 0.00835359189659357, + 0.013995992951095104, + -0.011050588451325893, + -0.016622016206383705, + 0.05655176192522049, + -0.023052223026752472, + -0.016196174547076225, + -0.02728225104510784, + 0.043776512145996094, + -0.06870244443416595, + -0.0228818878531456, + -0.03287496790289879, + -0.0006414238596335053, + -0.03772956505417824, + 0.0018737029749900103, + -0.05765894800424576, + 0.11577212810516357, + -0.029950857162475586, + 0.05033447593450546, + -0.013215283863246441, + 0.018907366320490837, + 0.00804840587079525, + 0.07477778196334839, + -0.024060048162937164, + -0.011270606890320778, + -0.000688000291120261, + 0.013932117260992527, + 0.033783432096242905, + -0.012321015819907188, + 0.026004726067185402, + -0.027197081595659256, + 0.0448269248008728, + -0.009318833239376545, + 0.009985985234379768, + -0.01377597451210022, + 0.022129567340016365, + 0.01903511770069599, + 0.018538303673267365, + -0.007288988213986158, + 0.07523201406002045, + 0.06949734687805176, + 0.0042122830636799335, + 0.0009199952473863959, + 0.005865967832505703, + -0.012824928387999535, + 0.031001266092061996, + 0.021107546985149384, + -0.010809279046952724, + 0.042442210018634796, + -0.013811461627483368, + -0.05095904320478439, + -0.007143492344766855, + -0.0058020916767418385, + 0.0047126468271017075, + -0.004105822648853064, + -0.014471516013145447, + -0.0423002615571022, + 0.0597313791513443, + 0.011895175091922283, + -0.003154776291921735, + 0.03517451509833336, + 0.021916646510362625, + 0.008814920671284199, + -0.01694849506020546, + 0.03528807312250137, + 0.015174155123531818, + -0.02053975872695446, + -0.03585585951805115, + -0.05331536382436752, + -0.1178729459643364, + -0.005425931420177221, + 0.06648806482553482, + 0.06574993580579758, + 0.006958961021155119, + 0.05064675956964493, + -0.027211276814341545, + -0.02961018495261669, + 0.03789990022778511, + 0.04547987878322601, + 0.03795667737722397, + -0.01714722067117691, + 0.06603383272886276, + 0.09902235865592957, + 0.03244912624359131, + 0.04803492873907089, + -0.042271874845027924, + 0.031086435541510582, + -0.0016217466909438372, + -0.011086075566709042, + -0.006043401546776295, + 0.015571607276797295, + -0.07557268440723419, + 0.028659138828516006, + -0.02476978488266468, + 0.02858816459774971, + -0.018964145332574844, + 0.014173426665365696, + -0.01754467375576496, + -0.013492080383002758, + 0.012526839971542358, + -0.03648042678833008, + 0.05078870430588722, + -0.01332174427807331, + 0.05376959592103958, + -0.09215211868286133, + -0.07165494561195374, + -0.0428396612405777, + 0.03812701627612114, + -0.06461436301469803, + -0.06433046609163284, + -0.010653136298060417, + 0.014762507751584053, + 0.021093351766467094, + 0.0006933233235031366, + 0.011696448549628258, + -0.018566692247986794, + -0.019319012761116028, + 0.08125057071447372, + 0.06433046609163284, + 0.0182260200381279, + -0.03389699012041092, + 0.01057506538927555, + -0.02183147892355919, + 0.0521513968706131, + -0.04780781269073486, + 0.021263688802719116, + 0.06660161912441254, + 0.08164802193641663, + -0.015117376111447811, + 0.05655176192522049, + -0.03134194016456604, + 0.00803421065211296, + 0.014436029829084873, + 0.03812701627612114, + -0.009929206222295761, + -0.012264237739145756, + 0.07500489801168442, + -0.006465694401413202, + -0.03026314079761505, + 0.0037438571453094482, + 0.03809862583875656, + 0.0026650584768503904, + 0.03892191872000694, + 0.01353466510772705, + -0.05606913939118385, + 0.041846033185720444, + -0.11923564225435257, + -0.0006210189894773066, + 0.03670754283666611, + 0.011242217384278774, + -0.01569935865700245, + 0.05209461972117424, + 0.014265692792832851, + 0.05533101409673691, + 0.026799630373716354, + 0.08164802193641663, + 0.07222273200750351, + -0.003644494106993079, + -0.003051864681765437, + -0.04763747751712799, + 0.012981071136891842, + -0.07188205420970917, + 0.033613093197345734, + 0.0651821494102478, + 0.0022037301678210497, + -0.044173967093229294, + -0.0024681068025529385, + 0.0028123287484049797, + -0.01606842130422592, + -0.020397812128067017, + -0.00986532960087061, + -0.04354939982295036, + -0.0018612825078889728, + 0.06654484570026398, + -0.015387075953185558, + 0.04601927846670151 + ] + }, + { + "id": "f3631dec-6f19-47b3-804f-6aeda3a9270b", + "productId": "e2f0c288-5ea2-4837-acb9-5c32679d1277", + "category": "Media", + "docType": "customerRating", + "userName": "qbell", + "reviewDate": "2021-12-12T21:36:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0bd132cc-3349-4a32-82fa-d8565185549c", + "productId": "e2f0c288-5ea2-4837-acb9-5c32679d1277", + "category": "Media", + "docType": "customerRating", + "userName": "qking", + "reviewDate": "2022-12-29T20:49:08", + "stars": 2, + "verifiedUser": false + }, + { + "id": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "product", + "name": "Basic Speaker 3000 (Black)", + "description": "This Basic Speaker 3000 (Black) is a speaker that allows you to select a specific topic with your microphone.\n\nWhat Makes this Speaker Unique?\n\nWhile the speakers are made of black, this Speaker can be customized to have an amazing effect upon your listening experience.\n\nIf you'd like a speaker for everyday speech, a white speaker, you'll probably want an alternative speaker, the Red Tone Power Speaker or", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-03-02T01:27:23", + "price": 506.39, + "stock": 6, + "priceHistory": [ + { + "priceDate": "2021-03-01T21:49:02", + "newPrice": 458.55 + }, + { + "priceDate": "2021-08-22T21:49:02", + "newPrice": 523.77 + }, + { + "priceDate": "2022-02-12T21:49:02", + "newPrice": 550.02 + }, + { + "priceDate": "2022-08-05T21:49:02", + "newPrice": 495.33 + }, + { + "priceDate": "2024-05-26T21:49:02", + "newPrice": 506.39 + } + ], + "descriptionVector": [ + -0.04000161960721016, + -0.05871205776929855, + -0.04660238325595856, + -0.020832110196352005, + -0.03367381915450096, + 0.02388434298336506, + -0.008809289894998074, + -0.017755061388015747, + 0.023226747289299965, + 0.05528759956359863, + -0.0046652015298604965, + -0.011966985650360584, + -0.010118275880813599, + -0.0595061331987381, + 0.011545132845640182, + -0.00864178966730833, + -0.04131681099534035, + -0.04265681654214859, + 0.028090467676520348, + 0.018003210425376892, + 0.008505307137966156, + -0.05082091689109802, + -0.09543810784816742, + 0.017990803346037865, + -0.041242364794015884, + 0.01313949003815651, + 0.00927456934005022, + 0.011117075569927692, + -0.02248230017721653, + 0.033152706921100616, + 0.009466884657740593, + 0.031986407935619354, + 0.020335812121629715, + 0.03913309797644615, + -0.1300300806760788, + -0.03258196637034416, + -0.00436742277815938, + 0.017444875091314316, + 0.06188836321234703, + 0.007816693745553493, + 0.04136643931269646, + 0.033698637038469315, + 0.027346020564436913, + -0.07474248111248016, + 0.020385440438985825, + 0.029331212863326073, + -0.009584755636751652, + 0.026105275377631187, + 0.006644189823418856, + -0.044666822999715805, + 0.04054754972457886, + -0.0012671109288930893, + -0.06709948927164078, + 0.006966783665120602, + 0.06536245346069336, + 0.0030553347896784544, + 0.04116792231798172, + 0.04826498404145241, + 0.027643799781799316, + -0.05940687283873558, + 0.04640386626124382, + -0.024566752836108208, + -0.04757016524672508, + 0.026601573452353477, + 0.012171708978712559, + 0.0157078318297863, + -0.010143090970814228, + 0.013859122060239315, + -0.02152692712843418, + 0.045982010662555695, + -0.01782950572669506, + 0.014777273871004581, + -0.05092017725110054, + 0.05930761247873306, + 0.011979393661022186, + 0.027296390384435654, + 0.043227557092905045, + 0.001805284060537815, + -0.035907160490751266, + -0.025584163144230843, + -0.03605605289340019, + 0.08853957056999207, + -0.0038649209309369326, + -0.04067162424325943, + 0.019938772544264793, + -0.026576759293675423, + -0.006402244325727224, + -0.053203146904706955, + -0.0006397591787390411, + 0.060101691633462906, + -0.014057641848921776, + 0.031713444739580154, + 0.1019396111369133, + 0.005127378739416599, + 0.051664624363183975, + -0.03255715221166611, + -0.04583312198519707, + 0.014752458781003952, + -0.0854128897190094, + 0.002031720010563731, + 0.10461962223052979, + -0.04759497940540314, + -0.04690016433596611, + -0.02036062628030777, + 0.02766861394047737, + 0.05821575969457626, + 0.008430862799286842, + 0.016688020899891853, + 0.004810988903045654, + -0.08134324848651886, + 0.0033407059963792562, + -0.0008072597556747496, + 0.04012569412589073, + -0.03786753863096237, + 0.0567764937877655, + 0.043723855167627335, + 0.018214138224720955, + -0.09638107568025589, + 0.001139934523962438, + -0.04682571813464165, + -0.011365224607288837, + -0.029604177922010422, + 0.017990803346037865, + 0.04910868778824806, + -0.05101943761110306, + -0.08174028247594833, + -0.007705026771873236, + 0.06541208177804947, + 0.05573426932096481, + 0.01832580380141735, + -0.04610608518123627, + 0.13677974045276642, + 0.004215431399643421, + 0.04933202266693115, + -0.0020766970701515675, + 0.06709948927164078, + 0.017755061388015747, + -0.02328878454864025, + -0.04655275493860245, + -0.007605767343193293, + -0.06784393638372421, + 0.04585793614387512, + 0.031167516484856606, + 0.055138710886240005, + -0.014826903119683266, + -0.052210550755262375, + -0.07533804327249527, + 0.04392237588763237, + 0.006408448331058025, + -0.01702302135527134, + 0.000693654059432447, + -0.10154257714748383, + 0.029852326959371567, + -0.049406468868255615, + -0.012742451392114162, + -0.045882754027843475, + -0.08774548768997192, + 0.017854321748018265, + -0.02013729140162468, + 0.07638026773929596, + 0.006315392442047596, + -0.013325601816177368, + -0.03052232787013054, + 0.03853754326701164, + 0.029852326959371567, + 0.06441948562860489, + 0.046875350177288055, + 0.09414773434400558, + -0.1069025918841362, + 0.021601371467113495, + -0.038438282907009125, + -0.03764420375227928, + -0.03404604271054268, + 0.03642827644944191, + -0.04682571813464165, + -0.05350092798471451, + 0.04523756355047226, + 0.01765580289065838, + -0.0335993766784668, + -0.021328408271074295, + 0.002117021242156625, + 0.1151411384344101, + 0.014008011668920517, + 0.019119881093502045, + 0.03238344565033913, + 0.06685134023427963, + 0.05206166207790375, + -0.01787913590669632, + -0.042408667504787445, + 0.04752053692936897, + -0.0016594965709373355, + 0.0330534465610981, + 0.0013911854475736618, + 0.04178829491138458, + -0.03377307951450348, + 0.0015447275945916772, + -0.01512468233704567, + -0.0070784506388008595, + 0.024343417957425117, + 0.012556339614093304, + -0.02280489355325699, + 0.02573305182158947, + 0.07141728699207306, + 0.024306194856762886, + -0.05900983512401581, + -0.10035146027803421, + -0.00977086741477251, + 0.09583514928817749, + -0.0047334423288702965, + -0.005474787671118975, + -0.012066246010363102, + -0.07786916196346283, + -0.04955535754561424, + -0.006923357490450144, + 0.06987876445055008, + 0.01959136500954628, + -0.006669004913419485, + -0.03838865086436272, + 0.008040027692914009, + -0.0330534465610981, + 0.0837751030921936, + -0.014194123446941376, + 0.0067496532574296, + -0.004984693136066198, + -0.12824341654777527, + -0.03158937022089958, + 0.0683402344584465, + -0.010744852013885975, + 0.03488975018262863, + 0.04010087996721268, + -0.05494019016623497, + 0.04121755063533783, + 0.03136603534221649, + 0.02338804490864277, + -0.025038234889507294, + 0.0666528269648552, + 0.02794157899916172, + -0.06243428960442543, + -0.12079893797636032, + 0.0363786444067955, + -0.05955576151609421, + 0.007413451559841633, + -0.061193548142910004, + 0.006470485590398312, + 0.030174920335412025, + -0.0683402344584465, + 0.10382554680109024, + -0.08625659346580505, + -0.05295499786734581, + -0.01311467494815588, + -0.13261082768440247, + 0.037271980196237564, + -0.03588234633207321, + 0.0545431524515152, + -0.026601573452353477, + 0.04583312198519707, + 0.05781871825456619, + -0.0970262661576271, + 0.02518712542951107, + -0.044220153242349625, + 0.011458280496299267, + 0.037718649953603745, + 0.008368825539946556, + 0.008660400286316872, + -0.11285816878080368, + -0.08665363490581512, + 0.03620494157075882, + -0.08729882538318634, + 0.07315433025360107, + -0.000965454732067883, + -0.02915750816464424, + -0.010769667103886604, + -0.009187716990709305, + -0.032209742814302444, + -0.04310348257422447, + 0.06422096490859985, + -0.013859122060239315, + -0.019715439528226852, + -0.026105275377631187, + -0.07191358506679535, + 0.04632942005991936, + 0.021725445985794067, + 0.05672686547040939, + -0.01815210096538067, + -0.020509514957666397, + -0.02302822843194008, + 0.023636193946003914, + 0.04908387362957001, + -0.059655021876096725, + -0.11176631599664688, + -0.016142092645168304, + 0.025832312181591988, + -0.005905946716666222, + 0.024591566994786263, + 0.05905946344137192, + 0.05503945052623749, + 0.027643799781799316, + -0.06620615720748901, + 0.06968024373054504, + 0.07945731282234192, + -0.004674506839364767, + -0.01954173482954502, + 0.005741547793149948, + -0.08139287680387497, + -0.002535772742703557, + 0.06332762539386749, + -0.020571552217006683, + 0.05092017725110054, + -0.06293059140443802, + -0.032209742814302444, + 0.0529053695499897, + -0.02898380532860756, + -0.04382311552762985, + -0.0104718878865242, + 0.11345373094081879, + 0.020645998418331146, + 0.037768278270959854, + -0.000372805108781904, + 0.027594169601798058, + 0.0363786444067955, + -0.0493072085082531, + -0.03655235096812248, + -0.06526318937540054, + 0.05389796569943428, + -0.02761898562312126, + 0.008257158100605011, + 0.007307988591492176, + -0.04928239434957504, + 0.03484012186527252, + 0.03647790476679802, + -0.04198681190609932, + -0.03407086059451103, + 0.025249162688851357, + -0.02181229740381241, + 0.04992758110165596, + -0.03511308506131172, + 0.0035609384067356586, + -0.009485496208071709, + 0.032929372042417526, + -0.005577148869633675, + 0.09851516038179398, + 0.012364024296402931, + 0.02284211665391922, + -0.04709868133068085, + 0.01413208618760109, + -0.05980391055345535, + -0.04531200975179672, + 0.012878933921456337, + -0.026055647060275078, + 0.009826701134443283, + 0.001692066085524857, + -0.020794887095689774, + 0.036453090608119965, + -0.0032321407925337553, + 0.005149092059582472, + -0.014814496040344238, + -0.028810100629925728, + -0.03312789276242256, + 0.009901145473122597, + 0.0155713502317667, + -0.005217332858592272, + 0.032805297523736954, + 0.04198681190609932, + 0.0038245967589318752, + -0.011055038310587406, + 0.018809694796800613, + 0.0025078558828681707, + 0.009553737007081509, + 0.0259067565202713, + 0.02041025646030903, + -0.014429865404963493, + 0.007705026771873236, + -0.07846471667289734, + -0.021588964387774467, + 0.01399560458958149, + 0.056180935353040695, + 0.06471726298332214, + -0.04203644394874573, + -0.007270765956491232, + 0.017643393948674202, + 0.0518135130405426, + 0.05295499786734581, + 0.0661068931221962, + 0.01449190266430378, + 0.05176388472318649, + 0.016539132222533226, + -0.041912369430065155, + -0.011818096973001957, + -0.02253193035721779, + 0.07365062832832336, + -0.0039021431002765894, + -0.054096486419439316, + -0.07980472594499588, + 0.05752094089984894, + -0.042011626064777374, + -0.009491699747741222, + 0.01801561750471592, + 0.03888494893908501, + 0.007674008142203093, + -0.03471604734659195, + 0.016092464327812195, + -0.002839755266904831, + -0.03156455606222153, + 0.004041727166622877, + -0.06491578370332718, + -0.08243510127067566, + -0.030398253351449966, + 0.025174716487526894, + 0.007363821845501661, + -0.016812095418572426, + 0.05687575414776802, + -0.06680171191692352, + -0.08437066525220871, + -0.0185987688601017, + -0.027867134660482407, + 0.027693429961800575, + 0.00628747558221221, + 0.03913309797644615, + 0.03134122118353844, + -0.033524930477142334, + 0.04496460035443306, + 0.024318603798747063, + -0.005211129318922758, + 0.04208607226610184, + -0.021700631827116013, + -0.02450471557676792, + 0.0754869282245636, + -0.050448693335056305, + -0.0029591768980026245, + -0.014876533299684525, + -0.05856316536664963, + -0.023760268464684486, + -0.05578389763832092, + -0.0119855972006917, + -0.02838824689388275, + -0.016315797343850136, + -0.030398253351449966, + 0.04158977419137955, + -0.04501423239707947, + 0.018760064616799355, + 0.017891542986035347, + -0.04486533999443054, + -0.013871530070900917, + 0.0737995132803917, + -0.08938327431678772, + -0.04694979265332222, + -0.00738243293017149, + 0.006582152564078569, + 0.05747131258249283, + 0.04221014678478241, + -0.033698637038469315, + -0.01643987186253071, + -0.027246762067079544, + 0.07047431915998459, + 0.03417011722922325, + -0.03295418992638588, + 0.01914469711482525, + 0.061689846217632294, + 0.014653199352324009, + 0.034021228551864624, + -0.06362541019916534, + 0.025857126340270042, + 0.0815417617559433, + 0.01083170436322689, + -0.04278089106082916, + 0.023586563766002655, + -0.06605726480484009, + 0.017035430297255516, + -0.011148094199597836, + 0.017407653853297234, + -0.024206936359405518, + -0.05404685437679291, + -0.013623381033539772, + 0.04806646332144737, + -0.004990897141396999, + -0.0677943080663681, + 2.111932190018706e-05, + -0.06084613874554634, + 0.024852123111486435, + 0.010751055553555489, + -0.03575827181339264, + -0.032209742814302444, + -0.07097061723470688, + -0.022966191172599792, + -0.0061571975238621235, + -0.024120083078742027, + -0.004575247410684824, + -0.011228743009269238, + -0.021861927583813667, + -0.019963588565587997, + 0.04377348721027374, + 0.13082416355609894, + 0.006979190744459629, + 0.0027730651199817657, + -0.01399560458958149, + 0.0154348686337471, + 0.03119233064353466, + -0.03957976773381233, + 0.026080461218953133, + 0.03367381915450096, + 0.0030894551891833544, + 0.001643987256102264, + 0.037445686757564545, + -0.033251967281103134, + 0.03337604179978371, + 0.02292896807193756, + -0.0242441575974226, + -0.016812095418572426, + -0.03846309706568718, + -0.013908752240240574, + -0.017854321748018265, + -0.04163940250873566 + ] + }, + { + "id": "9cffc496-70fc-42b4-a554-88d22758245e", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "elijah06", + "reviewDate": "2021-08-05T15:45:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ec56cf7f-a0a3-404a-b6c5-efc41e8fd634", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "elizabeth88", + "reviewDate": "2022-02-27T00:31:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3e089369-9776-4a82-b8ad-a1c1b17909cf", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "kevin10", + "reviewDate": "2021-08-13T09:21:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b6d16190-302d-4bc3-819e-d2f6e734a8da", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "savannahhunt", + "reviewDate": "2021-03-01T21:49:02", + "stars": 5, + "verifiedUser": false + }, + { + "id": "32e92cac-4cc1-4fff-aafe-639a01b08982", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "gordonemily", + "reviewDate": "2021-06-28T10:27:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "3f29fd6e-8d3c-4898-8721-7cbe48a8c09a", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "julierivera", + "reviewDate": "2021-04-20T17:48:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5b2c96ed-16be-4a9e-b7f8-41adb7fc26c1", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "zsantos", + "reviewDate": "2021-05-24T10:56:55", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5b1bd84b-6325-4696-8fd2-21e5894ef294", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "copelandsusan", + "reviewDate": "2021-05-29T18:00:42", + "stars": 5, + "verifiedUser": true + }, + { + "id": "341024e7-54a6-4663-bd96-9e4ae2a03af0", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "mark46", + "reviewDate": "2021-09-15T02:20:47", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d94a53f7-380e-436b-8eaa-f2d47967c12b", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "coreydonaldson", + "reviewDate": "2021-08-22T07:04:12", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9aa9441b-787a-4457-948a-fde9f57daa7f", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "burnsmario", + "reviewDate": "2021-10-07T02:05:56", + "stars": 4, + "verifiedUser": false + }, + { + "id": "84e4650c-1e39-4eb2-aac3-b8f486d8233b", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "jessicadavidson", + "reviewDate": "2021-04-30T05:56:24", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8d367899-9185-4271-b7eb-80a97c1ef401", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "tammymartinez", + "reviewDate": "2022-01-25T10:00:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "aafabf43-7be9-4947-8dae-5fe1fdb87891", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "zwagner", + "reviewDate": "2022-07-04T19:47:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5acbd222-dd0a-42b9-b1ab-b2e8dc676133", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "browndebra", + "reviewDate": "2021-07-29T13:40:56", + "stars": 5, + "verifiedUser": false + }, + { + "id": "14ecc94d-7540-47d6-8550-b727d6bf09f1", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "lawrenceerin", + "reviewDate": "2021-10-16T03:20:51", + "stars": 4, + "verifiedUser": true + }, + { + "id": "47f28fae-57ce-41d9-8b82-930781beee64", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "justinfletcher", + "reviewDate": "2022-08-06T14:03:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "83d54cbd-deaa-4221-8078-4de3576ed7fb", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "jonathan38", + "reviewDate": "2021-09-13T11:46:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "317d2f85-6d62-4ab7-b028-63069d2aaecd", + "productId": "626bf1cb-c511-40a6-bea4-f41914a4e684", + "category": "Media", + "docType": "customerRating", + "userName": "jeremydavis", + "reviewDate": "2021-07-04T09:33:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard 3000 (Black)", + "description": "This Basic Keyboard 3000 (Black) is an automatic keyboard that should last you through multiple levels when you want to start or finish the application. It features an advanced layout with unique keys - up to 7 keys, and supports keyboard shortcuts and shortcuts- and is available in a wide range of colors -", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-03-18T21:41:22", + "price": 694.43, + "stock": 41, + "priceHistory": [ + { + "priceDate": "2021-01-31T09:54:18", + "newPrice": 703.6 + }, + { + "priceDate": "2022-02-28T09:54:18", + "newPrice": 673.39 + }, + { + "priceDate": "2022-10-04T09:54:18", + "newPrice": 694.43 + } + ], + "descriptionVector": [ + -0.03847499564290047, + -0.046150121837854385, + -0.033308565616607666, + 0.047416891902685165, + -0.00031300520640797913, + -0.0052626789547502995, + 0.025298116728663445, + 0.037680160254240036, + -0.03966724872589111, + 0.06502746045589447, + 0.07362161576747894, + -0.037307579070329666, + 0.006917550694197416, + -0.05956296995282173, + 0.017200732603669167, + 0.05717846378684044, + -0.018566856160759926, + -0.003772362833842635, + -0.016865411773324013, + -0.05191268026828766, + -0.041207242757081985, + -0.0192747563123703, + -0.1414806842803955, + 0.027347302064299583, + 0.005722193047404289, + -0.0055700563825666904, + 0.019982656463980675, + 0.006681584287434816, + -0.03231502324342728, + -0.007793111726641655, + 0.017436698079109192, + 0.0025055939331650734, + 0.013139620423316956, + 0.023025384172797203, + -0.0658222958445549, + -0.00028661417309194803, + -0.0536017045378685, + -0.04413819685578346, + 0.02511182799935341, + -0.016082994639873505, + 0.04570302739739418, + 0.08926993608474731, + 0.003992805257439613, + -0.04187788441777229, + 0.01266147755086422, + 0.03581726551055908, + 0.02512424625456333, + -0.03541984781622887, + -0.00020511251932475716, + -0.021050715819001198, + 0.09756603091955185, + 0.03164437785744667, + 0.007985610514879227, + -0.009811247698962688, + 0.07784418016672134, + 0.04634883254766464, + 0.043889809399843216, + 0.1199207752943039, + 0.04806269705295563, + -0.030551480129361153, + -0.03194244205951691, + -0.019349271431565285, + -0.012791880406439304, + -0.024937957525253296, + 0.017622988671064377, + -0.04123207926750183, + 0.0075136772356927395, + -0.027148593217134476, + -0.006014046724885702, + -0.002826943527907133, + -0.09294605255126953, + -0.05091913416981697, + -0.019100885838270187, + 0.08142093569040298, + 0.0006679255166091025, + 0.012226802296936512, + 0.05727781727910042, + 0.024677151814103127, + 0.043094974011182785, + 0.03159470111131668, + 0.005809128284454346, + 0.01337558776140213, + -0.04540496692061424, + -0.06398423761129379, + 0.016877830028533936, + 0.029185358434915543, + -0.03226534277200699, + -0.0799306258559227, + -0.036736294627189636, + 0.06795841455459595, + -0.06274230778217316, + 0.04123207926750183, + -0.02853955328464508, + -0.023820219561457634, + -0.006246908567845821, + 0.0021469867788255215, + -0.09379056096076965, + 0.04103337228298187, + -0.05191268026828766, + 0.00018813300994224846, + 0.1156485304236412, + 0.012071561068296432, + -0.0743170976638794, + -0.030526641756296158, + 0.031246962025761604, + 0.012829137966036797, + 0.019038788974285126, + 0.04791366308927536, + -0.04105820879340172, + -0.13512200117111206, + -0.019100885838270187, + -0.009916812181472778, + 0.0050236075185239315, + 0.0015718177892267704, + -0.05059623345732689, + 0.010705437511205673, + -0.046100445091724396, + -0.03750628978013992, + 0.05201203376054764, + 0.001999507425352931, + 0.018045244738459587, + 0.020876845344901085, + -0.024565378203988075, + 0.03186792880296707, + -0.059215229004621506, + -0.05807265266776085, + -0.010382535867393017, + 0.03758080676198006, + 0.017287667840719223, + -0.05069558694958687, + -0.04607560858130455, + 0.06125199422240257, + 0.02389473468065262, + 0.13383038341999054, + -0.008606575429439545, + 0.1180330365896225, + -0.007159727159887552, + 0.07714869827032089, + -0.07595644891262054, + 0.0719325914978981, + -0.060208771377801895, + -0.05891716480255127, + -0.0007882375502958894, + 0.05797329917550087, + -0.029160520061850548, + 0.03348243609070778, + -0.0362146832048893, + 0.05648298189043999, + 0.056731369346380234, + 0.060953930020332336, + -0.00866246223449707, + -0.0691009908914566, + 0.013748166151344776, + -0.07834095507860184, + 0.011053178459405899, + -0.012326156720519066, + -0.07362161576747894, + 0.019759107381105423, + 0.021050715819001198, + 0.013499780558049679, + -0.03122212365269661, + 0.05603588744997978, + -0.014319454319775105, + -0.00789867527782917, + -0.0028067620005458593, + 0.05270751565694809, + 0.058470070362091064, + 0.028787940740585327, + -0.0138723598793149, + 0.04528077319264412, + -0.05176364630460739, + 0.010326649062335491, + 0.020404912531375885, + 0.01995781622827053, + -0.008029078133404255, + -0.025832146406173706, + 0.04927978664636612, + 0.019523141905665398, + 0.03849983215332031, + -0.020727813243865967, + -0.01643073558807373, + 0.031246962025761604, + -0.06552423536777496, + -0.018517177551984787, + 0.158967062830925, + -0.0011813860619440675, + 0.03107309155166149, + 0.02153506875038147, + -0.030104385688900948, + -0.04090917855501175, + 0.008066335693001747, + 0.02732246182858944, + -0.05643330514431, + 0.08663704246282578, + 0.0012582304188981652, + 0.0921512171626091, + -0.02712375298142433, + 0.0031513976864516735, + 0.016356220468878746, + -0.007414322812110186, + 0.0018675524042919278, + 0.021944904699921608, + 0.06929969787597656, + 0.013363168574869633, + 0.0035643393639475107, + 0.018405403941869736, + -0.033308565616607666, + 0.0286885853856802, + 0.01497767772525549, + 0.0018349518068134785, + -0.006125820335000753, + -0.0020057172514498234, + -0.0005592566449195147, + -0.05345267429947853, + 0.07173388451337814, + -0.022292645648121834, + -0.027198269963264465, + -0.007942142896354198, + 0.027670202776789665, + -0.10730276256799698, + 0.05260815843939781, + 0.008600366301834583, + -0.01235099509358406, + -0.02179587446153164, + 0.007414322812110186, + -0.03224050626158714, + 0.1208149641752243, + 0.02158474549651146, + 0.01794588938355446, + 0.0804273933172226, + -0.08599124103784561, + -0.04157982021570206, + -0.020715394988656044, + 0.010407374240458012, + 0.006513923406600952, + 0.04331852123141289, + -0.006874083075672388, + -0.09706925600767136, + -0.08907122910022736, + 0.07039260119199753, + 0.05074526369571686, + -0.024813763797283173, + -0.044560451060533524, + -0.04018886014819145, + 0.08455060422420502, + -0.08976671099662781, + 0.0761551558971405, + -0.011040758341550827, + -0.05563846975564957, + 0.005008083302527666, + -0.059215229004621506, + 0.07208162546157837, + -0.02143571339547634, + 0.04841043800115585, + 0.001608299557119608, + 0.040934015065431595, + 0.0202186219394207, + -0.03032793290913105, + -0.025024892762303352, + -0.0625436007976532, + 0.050198815762996674, + 0.03889724984765053, + -0.06830615550279617, + 0.06477907299995422, + 0.0005503302672877908, + 0.0143442926928401, + 0.03658726066350937, + -0.06388488411903381, + -0.03445114195346832, + 0.013934455811977386, + 0.10283181071281433, + -0.007060372736304998, + 0.08594156801700592, + -0.052310097962617874, + -0.023733284324407578, + 0.010624712333083153, + -0.030402449890971184, + 0.032662760466337204, + -0.01337558776140213, + -0.026080531999468803, + -0.023286189883947372, + 0.08474931120872498, + 0.05702942982316017, + 0.01448090560734272, + -0.0047783260233700275, + -0.028812779113650322, + 0.006942389532923698, + 0.03107309155166149, + -0.005467597395181656, + -0.00797319132834673, + -0.012829137966036797, + 0.019982656463980675, + -0.04513173922896385, + 0.0013839758466929197, + 0.05096881091594696, + 0.04898172244429588, + 0.01969701237976551, + 0.0005367466947063804, + 0.04930462688207626, + 0.021994583308696747, + -0.007004485931247473, + -0.042995620518922806, + -0.06120231747627258, + -0.12280204892158508, + -0.005706668831408024, + 0.02848987653851509, + 0.011667933315038681, + -0.01838056556880474, + -0.03415307775139809, + -0.0032818003091961145, + -0.027024399489164352, + -0.025298116728663445, + -0.012568333186209202, + -0.010575034655630589, + 0.10273245722055435, + -0.0009182521025650203, + 0.07223065942525864, + 0.05613524094223976, + -0.04453561455011368, + -0.024565378203988075, + -0.02722310833632946, + -0.00963737815618515, + -0.027098914608359337, + 0.06999517977237701, + 0.07039260119199753, + -0.06115264073014259, + -0.05385008826851845, + 0.032662760466337204, + 0.004359174519777298, + -0.05986103042960167, + -0.04612528532743454, + 0.003986595664173365, + -0.07829127460718155, + 0.011549950577318668, + 0.06974679231643677, + -0.08022868633270264, + 0.005517274606972933, + 0.04284659028053284, + 0.020603621378540993, + 0.02533537521958351, + 0.05151526257395744, + 0.06731261312961578, + 0.0007894018199294806, + -0.05792362242937088, + 0.013313490897417068, + -0.02075265161693096, + -0.029508259147405624, + -0.05024849250912666, + 0.002483860356733203, + -0.008022869005799294, + 0.0015493078390136361, + -0.003405993338674307, + 0.04252368584275246, + -0.05079494044184685, + 0.008389238268136978, + -0.02580730803310871, + 0.015312998555600643, + -0.031246962025761604, + -0.030029870569705963, + 0.07093904912471771, + -0.022876352071762085, + -0.03181824833154678, + 0.06135134771466255, + 0.019771527498960495, + -0.02722310833632946, + -0.007588192820549011, + 0.011543740518391132, + 0.03748144954442978, + 0.06150037795305252, + 0.004986349493265152, + 0.03922015428543091, + -0.024776505306363106, + 0.023733284324407578, + 0.01684057153761387, + 0.025832146406173706, + 0.07878804951906204, + -0.022441677749156952, + -0.054048798978328705, + -0.05206171050667763, + 0.005244049709290266, + -0.0056414674036204815, + 0.03042728826403618, + -0.029706967994570732, + -0.03959273174405098, + 0.03427727147936821, + -0.06810744851827621, + -0.05196235701441765, + -0.006395940203219652, + 0.00926479883491993, + -0.02121216617524624, + -0.010090682655572891, + 0.055042341351509094, + -0.0503230094909668, + 0.0371585488319397, + -0.06388488411903381, + 0.021882807835936546, + 0.03348243609070778, + 0.04985107481479645, + -0.003128111595287919, + 0.01758573018014431, + 0.003977281041443348, + 0.07188291847705841, + 0.014629936777055264, + 0.009898182936012745, + -0.08161965012550354, + -0.08564350008964539, + -0.029781484976410866, + 0.006874083075672388, + -0.022565869614481926, + -0.048211727291345596, + -0.045355286449193954, + -0.054744280874729156, + -0.0006423107115551829, + -0.029980193823575974, + -0.02468957006931305, + 0.015933964401483536, + 0.036040812730789185, + 0.06030812859535217, + 0.02085200697183609, + -0.013313490897417068, + 0.0024497071281075478, + -0.01732492446899414, + -0.04423755034804344, + 0.004846632480621338, + 0.03122212365269661, + -0.03934434801340103, + 0.03169405832886696, + -0.02953309752047062, + 0.012406881898641586, + 0.009786409325897694, + 0.007234242744743824, + -0.011953577399253845, + -0.04513173922896385, + -0.018343307077884674, + -0.015027354471385479, + -0.07645321637392044, + -0.03589177876710892, + 0.017387021332979202, + -0.028316006064414978, + 0.052359774708747864, + -0.006811986677348614, + -0.08017900586128235, + -0.032613083720207214, + 0.0907602533698082, + -0.028042782098054886, + 0.030874382704496384, + -0.0010781505843624473, + 0.050770103931427, + 0.07744675874710083, + -0.0007222599815577269, + -0.036935001611709595, + -0.008221577852964401, + -0.030526641756296158, + 0.007259081583470106, + 0.11972206085920334, + -0.046944957226514816, + 0.00919028278440237, + 0.04898172244429588, + 0.04013918340206146, + -0.01445606630295515, + -0.03743177279829979, + 0.050521716475486755, + 0.034873396158218384, + 0.03576758876442909, + -0.033730823546648026, + -0.035618554800748825, + -0.013462522067129612, + -0.004868366289883852, + 0.01705170050263405, + 0.00019929096742998809, + -0.01544961053878069, + -0.08201706409454346, + 0.016716379672288895, + 0.028291167691349983, + 0.03758080676198006, + -0.053303640335798264, + -0.014406389556825161, + 0.030303094536066055, + -0.0010928985429927707, + -0.012841557152569294, + -0.018864918500185013, + -0.04801302030682564, + -0.018392985686659813, + -0.021174907684326172, + 0.02605569362640381, + 0.04811237379908562, + -0.02078991010785103, + -0.00808496493846178, + 0.05340299382805824, + 0.041679173707962036, + 0.003508452558889985, + 0.05116752162575722, + -0.0036419599782675505, + -0.0387730598449707, + -0.0009190283017233014, + 0.011040758341550827, + -0.0648784264922142, + 0.02380780130624771, + -0.010152778588235378, + 0.07536032050848007, + -0.028936970978975296, + -0.04031305015087128, + 0.024726828560233116, + -0.014257357455790043, + -0.005250259768217802, + 0.03969208523631096, + -0.03822660818696022, + -0.009227540343999863, + 0.07312484830617905, + -0.062046829611063004, + -0.04391464963555336, + -0.09423765540122986 + ] + }, + { + "id": "befff7fe-70b1-40cc-a9f5-efe6a112709e", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "salassarah", + "reviewDate": "2021-04-23T12:44:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3608307a-1258-4eed-8043-4d3372c9f7b3", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brookssean", + "reviewDate": "2021-05-05T13:44:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9c38c7a0-ed9e-4889-b972-08d35f7cc381", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas90", + "reviewDate": "2022-02-28T21:30:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "324cc621-0b62-4a86-8dea-656dbe00cef6", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "huntallen", + "reviewDate": "2021-02-07T23:21:55", + "stars": 3, + "verifiedUser": true + }, + { + "id": "d1ddbe5a-05e1-4382-b6f4-8d9c1931f58c", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stacey30", + "reviewDate": "2021-06-15T15:27:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6136fc12-36c5-4436-b10f-9cef967b855b", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "shawnwalker", + "reviewDate": "2021-01-31T09:54:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d6b9b15a-bfa4-4ee8-9f77-8e3a89936256", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mcharles", + "reviewDate": "2021-12-10T04:49:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d432fe4d-6df6-46b7-b272-b672a6a8e52c", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gabriellaleonard", + "reviewDate": "2021-06-17T14:23:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5fc17632-5eec-4e58-a1cb-82f5cfb3bd2a", + "productId": "6c4bf4bf-b206-424b-934c-6ecdeaf27cee", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lrichardson", + "reviewDate": "2021-03-10T13:03:51", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "product", + "name": "Luxe TV Pro (Black)", + "description": "This Luxe TV Pro (Black) is made by Xilinx and is a high-quality, premium-grade TV with high-definition features in a modern look.\n\nXilinx X400XXC HD Pro XE (Black) is an upgrade to", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-06-12T10:00:28", + "price": 738.6, + "stock": 77, + "priceHistory": [ + { + "priceDate": "2021-02-14T07:42:40", + "newPrice": 691.78 + }, + { + "priceDate": "2021-12-10T07:42:40", + "newPrice": 760.39 + }, + { + "priceDate": "2022-10-05T07:42:40", + "newPrice": 738.15 + }, + { + "priceDate": "2025-01-30T07:42:40", + "newPrice": 738.6 + } + ], + "descriptionVector": [ + -0.02343827486038208, + 0.136630117893219, + -0.037585701793432236, + 0.08118312805891037, + -0.0010146339191123843, + 0.06096187233924866, + -0.02754960022866726, + -0.001252183923497796, + 0.028021594509482384, + 0.03857937827706337, + 0.04106356203556061, + -0.04367195442318916, + 0.05663939565420151, + 0.004381479229778051, + 0.08222648501396179, + 0.020382728427648544, + -0.021513033658266068, + 0.020755356177687645, + -0.015464045107364655, + -0.010371468029916286, + 0.012433340772986412, + -0.0683150589466095, + -0.053459636867046356, + -0.02682918682694435, + 0.03371037542819977, + -0.014284057542681694, + -0.06593023985624313, + 0.024593420326709747, + -0.005561466794461012, + -0.018271172419190407, + 0.01946358196437359, + 0.0727865919470787, + -0.05062766745686531, + 0.013762379065155983, + -0.029338212683796883, + -0.005129839759320021, + 0.04312543198466301, + 0.01947600208222866, + 0.017227815464138985, + 0.07571792602539062, + 0.03092809021472931, + -0.013687853701412678, + -0.0818290188908577, + 0.013029544614255428, + 0.0791957825422287, + -0.051323238760232925, + 0.013240700587630272, + -0.036989498883485794, + -0.04225596785545349, + -0.04041767120361328, + -0.04642939940094948, + 0.03035672754049301, + -0.09916862100362778, + -0.005210575647652149, + -0.04903779178857803, + -0.021761450916528702, + -0.03219502419233322, + 0.20072206854820251, + 0.026580767706036568, + 0.04697591811418533, + 0.008266122080385685, + -0.0013996823690831661, + 0.019600210711359978, + 0.0332135409116745, + 0.019525686278939247, + -0.013836904428899288, + -0.023475538939237595, + -0.008862325921654701, + 0.008384120650589466, + 0.08928157389163971, + -0.005207470618188381, + -0.08451193571090698, + 0.07303500920534134, + 0.011365141719579697, + 0.047497596591711044, + 0.03885263577103615, + 0.024518895894289017, + -0.011849557049572468, + 0.016718557104468346, + 0.0031657819636166096, + 0.05013083294034004, + 0.03947368264198303, + 0.008421383798122406, + 0.0236494317650795, + 0.0294624213129282, + 0.05559603497385979, + -0.01896674372255802, + -0.10721737891435623, + -0.029363054782152176, + -0.006415404845029116, + -0.07457520067691803, + 0.09559139609336853, + 0.012178711593151093, + -0.06747043877840042, + -0.005592518951743841, + 0.02440710738301277, + -0.025313833728432655, + 0.057782117277383804, + -0.058229271322488785, + -0.014135006815195084, + -0.008489699102938175, + -0.05370805785059929, + 0.005157786887139082, + -0.052863433957099915, + 0.06478751450777054, + 0.02446921169757843, + -0.019873471930623055, + -0.010849673300981522, + -0.01230913121253252, + -0.091964490711689, + 0.01659434847533703, + 0.007700970396399498, + -0.004235533531755209, + -0.0034437000285834074, + -0.010489466600120068, + -0.006738348864018917, + -0.011681875213980675, + -0.03629392758011818, + 0.007651286665350199, + -0.013563644140958786, + 0.02990957535803318, + -0.012892914935946465, + -0.006434036418795586, + 0.02403447963297367, + 0.003788380417972803, + 0.062353018671274185, + 0.018457487225532532, + 0.03785896301269531, + 0.022134078666567802, + -0.022693021222949028, + -0.11993639916181564, + 0.04270312190055847, + 0.04844158515334129, + 0.08098439872264862, + -0.036194559186697006, + 0.009452319703996181, + 0.007440130691975355, + -0.004949736408889294, + 0.02725149877369404, + 0.011396193876862526, + -0.004527425393462181, + -0.030903248116374016, + -0.012427129782736301, + -0.02777317725121975, + 0.02183597721159458, + -0.03666655346751213, + -0.010166523046791553, + 0.0014400504296645522, + 0.015377098694443703, + 0.033611007034778595, + 0.024804577231407166, + -0.030952932313084602, + -0.01991073414683342, + 0.006396773736923933, + 0.03862905874848366, + 0.05276406556367874, + -0.06563214212656021, + 0.00679424311965704, + 0.010967671871185303, + 0.030232518911361694, + 0.008533172309398651, + -0.041262295097112656, + -0.015513728372752666, + 0.04774601384997368, + 0.0011838689679279923, + -0.026928553357720375, + 0.04965883865952492, + -0.01719055324792862, + -0.11854525655508041, + 0.010464624501764774, + 0.03952336683869362, + -0.025375939905643463, + -0.028990427032113075, + -0.029735682532191277, + 0.0026906817220151424, + -0.021513033658266068, + 0.04255406931042671, + 0.057931169867515564, + 0.021513033658266068, + -0.05932231247425079, + -0.031623661518096924, + -0.02571130357682705, + -0.0324682854115963, + -0.06374415755271912, + 0.08828789740800858, + 0.0004677252727560699, + 0.08843694627285004, + -0.02357490547001362, + -0.031698185950517654, + -0.026357192546129227, + 0.018122121691703796, + 0.053459636867046356, + 0.044417209923267365, + -0.022941438481211662, + 0.0074214995838701725, + -0.05065251141786575, + 0.07154449820518494, + 0.000774754851590842, + -0.03239375725388527, + 0.036790765821933746, + 0.0032946490682661533, + 0.04016925394535065, + 0.026257824152708054, + -0.0026456560008227825, + 0.0007786364294588566, + -0.017724651843309402, + 0.03992083668708801, + 0.03557351231575012, + 0.007359394803643227, + 0.01822149008512497, + -0.04826769232749939, + 0.02100377529859543, + 0.03035672754049301, + 0.04767148941755295, + 0.06319764256477356, + 0.0302076768130064, + 0.02153787575662136, + -0.06806664168834686, + -0.0046733710914850235, + -0.06289953738451004, + 0.08600244671106339, + -0.035374779254198074, + 0.013849325478076935, + -0.05430426076054573, + -0.030530620366334915, + -0.030803881585597992, + 0.027499916031956673, + -0.054055843502283096, + -0.01896674372255802, + 0.058080222457647324, + -0.059173259884119034, + -0.02454373799264431, + 0.05311185121536255, + -0.012203553691506386, + -0.016072669997811317, + -0.04767148941755295, + -0.01769980974495411, + -0.0574343316257, + -0.021711768582463264, + 0.02682918682694435, + -0.06135934218764305, + -0.031126825138926506, + 0.0001617630769032985, + 0.06478751450777054, + 0.0020339256152510643, + 0.002440710784867406, + 0.06011725217103958, + 0.026854028925299644, + -0.06086250767111778, + 0.0013189463643357158, + -0.046777185052633286, + 0.002533867722377181, + -0.05340995639562607, + 0.05276406556367874, + -0.01756318099796772, + 0.02548772655427456, + 0.008899589069187641, + -0.05460236221551895, + -0.012632075697183609, + 0.0009043982136063278, + -0.08838726580142975, + -0.067569799721241, + 0.0038753270637243986, + -0.034728892147541046, + -0.01157008670270443, + 0.020556621253490448, + 0.0066824546083807945, + -0.07671160250902176, + -0.033114172518253326, + -0.022978700697422028, + -0.015625517815351486, + -0.04292669892311096, + -0.03490278497338295, + 0.08322016149759293, + 0.020829882472753525, + 0.0067197177559137344, + -0.08073598146438599, + 0.05172070860862732, + -0.02424563467502594, + 0.009110745042562485, + 0.010657149367034435, + 0.011743979528546333, + -0.011557665653526783, + -0.019562948495149612, + 0.13861747086048126, + 0.01666887477040291, + -0.031027456745505333, + 0.023686693981289864, + 0.050528302788734436, + -0.03579708933830261, + -0.03085356391966343, + 0.06975588202476501, + 0.09116955101490021, + -0.06031598523259163, + 0.024357423186302185, + -0.012607233598828316, + 0.008644959889352322, + -0.02499089017510414, + 0.03947368264198303, + -0.04036799073219299, + -0.020755356177687645, + -0.009433688595890999, + -0.0011419482761994004, + -0.044715311378240585, + -0.09564108401536942, + 0.07904673367738724, + -0.022009870037436485, + 0.07333310693502426, + -0.01873074658215046, + -0.052863433957099915, + 0.03164850175380707, + 0.01057641301304102, + -0.01786128245294094, + -0.018569275736808777, + -0.04031830653548241, + -0.007098555564880371, + -0.012017239816486835, + 0.00889337807893753, + -0.005667044781148434, + 0.00041648896876722574, + -0.07358153164386749, + 0.02145092748105526, + -0.1448776125907898, + 0.09335563331842422, + 0.056540027260780334, + 0.008688433095812798, + -0.024730050936341286, + -0.008632538840174675, + -0.10910535603761673, + 0.007135818246752024, + -0.05947136506438255, + 0.01538951974362135, + -0.008440014906227589, + -0.043398693203926086, + -0.0003223616804461926, + 0.022370075806975365, + 0.01476847380399704, + -0.022171340882778168, + 0.006651402451097965, + 0.0055956244468688965, + 0.09280911087989807, + 0.06458878517150879, + -0.03462952375411987, + -0.05271438509225845, + -0.03768507018685341, + -0.04218144342303276, + -0.05013083294034004, + 0.016880029812455177, + 0.05355900526046753, + -0.017227815464138985, + 0.0013391304528340697, + -0.013638169504702091, + 0.08436288684606552, + -0.013079228810966015, + -0.009800105355679989, + 0.05688781291246414, + 0.026928553357720375, + -0.03852969408035278, + -0.028319697827100754, + 0.02424563467502594, + -0.007893494330346584, + -0.031623661518096924, + 0.023922691121697426, + 0.06891126185655594, + -0.0017435866175219417, + 0.051919445395469666, + -0.0371633917093277, + -0.019786525517702103, + -0.08326984941959381, + 0.046255506575107574, + 0.04635487124323845, + 0.0024143161717802286, + -0.08461130410432816, + 0.07427710294723511, + -0.022941438481211662, + 0.06588055938482285, + 0.04503825679421425, + 0.006347090005874634, + 0.001263052225112915, + 0.049484945833683014, + -0.04881421476602554, + 0.05251564830541611, + 0.005511783063411713, + 0.02548772655427456, + 0.0934550017118454, + -0.03517604619264603, + -0.04784538224339485, + -0.11566360294818878, + -0.07636381685733795, + -0.030182834714651108, + -0.005449678748846054, + -0.06950746476650238, + -0.033611007034778595, + 0.021475769579410553, + 0.02931337058544159, + -0.024730050936341286, + -0.02916431985795498, + 0.002238870831206441, + 0.08545592427253723, + -0.030232518911361694, + 0.029338212683796883, + 0.008856115862727165, + 0.014308899641036987, + -0.09057334810495377, + -0.01784886233508587, + 0.01594846136868, + 0.0006237630732357502, + 0.09266006201505661, + 0.0070861345157027245, + -0.10791295021772385, + -0.007576760835945606, + -0.07084892690181732, + -0.07735748589038849, + 0.04913716018199921, + 0.005772622302174568, + 0.013687853701412678, + 0.005409310571849346, + 0.005244733300060034, + 0.04575866833329201, + -0.03587161749601364, + 0.03462952375411987, + 0.044193632900714874, + -0.0017591128125786781, + -0.05127355828881264, + 0.056390974670648575, + 0.007738233078271151, + 0.019786525517702103, + -0.01072546374052763, + -0.03425689786672592, + 0.022693021222949028, + 0.0686628445982933, + -0.05460236221551895, + 0.014420688152313232, + 0.0057570962235331535, + -0.028394222259521484, + 0.018320856615900993, + 0.02152545377612114, + 0.012855651788413525, + 0.008669801987707615, + 0.08962935954332352, + -0.030977774411439896, + -0.08187869936227798, + 0.02859295718371868, + 0.04665297269821167, + -0.055645719170570374, + -0.0358467735350132, + -0.0040864828042685986, + -0.009607581421732903, + 0.01638319343328476, + -0.045882876962423325, + -0.017538338899612427, + 0.02600940503180027, + -0.0439203716814518, + -0.006999188102781773, + 0.032294392585754395, + -0.015488887205719948, + 0.024518895894289017, + 0.042355336248874664, + 0.04998178035020828, + -0.015165942721068859, + -0.034704048186540604, + 0.14179721474647522, + 0.06672517955303192, + 0.018209068104624748, + -0.06856347620487213, + 0.008253701031208038, + -0.08018945902585983, + 0.0029670472722500563, + -0.018755588680505753, + 0.043026067316532135, + -0.01271902211010456, + -0.04675234109163284, + -0.008266122080385685, + -0.023748798295855522, + -0.031623661518096924, + -0.002459342125803232, + 0.03135040029883385, + -0.04292669892311096, + -0.054552678018808365, + -0.04098903387784958, + 0.0008360831416212022, + -0.005844042636454105, + -0.035374779254198074, + 0.037138551473617554, + 0.06523466855287552, + 0.047000762075185776, + 0.010371468029916286, + 0.03999536111950874, + 0.03562319651246071, + 0.039125896990299225, + 0.05060282722115517, + -0.029437579214572906, + -1.3512601981346961e-05, + -0.03977178409695625, + -0.06920936703681946, + -0.02284207195043564, + -0.038256432861089706, + 0.03738696873188019, + 0.007999071851372719, + -0.03313901275396347, + -0.02725149877369404, + 0.06379384547472, + -0.03385942801833153, + 0.03895200416445732, + -0.0008585960604250431, + 0.04131197929382324, + 0.06707296520471573, + 0.008266122080385685, + -0.002251291647553444, + -0.04988241195678711, + -0.004601950757205486, + 0.02173660881817341 + ] + }, + { + "id": "b7e4e459-050c-425a-8597-58da034b3870", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "brandy27", + "reviewDate": "2022-07-25T05:39:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9085cccf-3b56-44cc-befd-dfb9c95f0cd9", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "emilybeck", + "reviewDate": "2021-04-17T03:00:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "684febd5-31c9-487e-bc6c-ecf097bc26d7", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "james36", + "reviewDate": "2021-03-27T02:43:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ebd52643-f4a4-456a-8106-f3263b166397", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "hcabrera", + "reviewDate": "2022-05-25T11:10:54", + "stars": 3, + "verifiedUser": true + }, + { + "id": "307ed251-e197-48f7-9e42-40fdc676f0a2", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "qsweeney", + "reviewDate": "2021-02-14T07:42:40", + "stars": 4, + "verifiedUser": false + }, + { + "id": "78f27745-01c2-4590-ae6b-79395b4fc0ab", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "dcopeland", + "reviewDate": "2021-08-26T07:00:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7187c61c-5239-43a5-8770-84aa07d68e4e", + "productId": "f4e8043e-2f67-42ff-9c01-14547c561d79", + "category": "Media", + "docType": "customerRating", + "userName": "bryanpadilla", + "reviewDate": "2022-10-05T23:03:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Steel)", + "description": "This Premium Stand Micro (Steel) is fitted with a 4.8-inch LED, LED flash and a 1,000 millimeters (2.4 inches) field of view. The Premium Stand Micro features a 12-hour battery life, provides maximum charging current of 60 watts and no over-voltages (no over, under load, over 5-10 minutes).\n\nFeatures & Benefits\n\n*The Premium Stand Micro is available in steel or titanium steel.", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-07-17T03:04:03", + "price": 921.16, + "stock": 73, + "priceHistory": [ + { + "priceDate": "2021-01-04T03:19:23", + "newPrice": 877.99 + }, + { + "priceDate": "2022-12-31T03:19:23", + "newPrice": 1009.88 + }, + { + "priceDate": "2023-07-29T03:19:23", + "newPrice": 921.16 + } + ], + "descriptionVector": [ + -0.008692784234881401, + 0.04157966747879982, + -0.038469601422548294, + 0.04188787564635277, + 0.010689113289117813, + 0.03435085713863373, + -0.008195453323423862, + 0.07458563148975372, + 0.05071374773979187, + 0.048556312918663025, + 0.05710199847817421, + 0.02632351778447628, + 0.03449095040559769, + -0.024516314268112183, + 0.034967269748449326, + 0.009540348313748837, + 0.0011592714581638575, + -0.018562352284789085, + 0.032417573034763336, + -0.038637712597846985, + 0.04043090343475342, + -0.05390787497162819, + -0.02605734020471573, + -0.005421607755124569, + -0.05628945678472519, + 0.008146421052515507, + 0.043905217200517654, + -0.04317673295736313, + -0.019304847344756126, + -0.011340546421706676, + -0.02506267838180065, + 0.006787516642361879, + -0.02670176886022091, + 0.00013801371096633375, + -0.014793844893574715, + -0.010577038861811161, + 0.019472958520054817, + -0.015452282503247261, + 0.04746358469128609, + 0.04875244200229645, + -0.013511992059648037, + 0.034631043672561646, + 0.03888988122344017, + 0.027864541858434677, + 0.003912103362381458, + -0.0026985458098351955, + -0.04777178913354874, + -0.048248108476400375, + -0.023661745712161064, + -0.03275379538536072, + -0.00441643875092268, + 0.02028549835085869, + -0.09576772898435593, + 0.06623607873916626, + 0.10187579691410065, + -0.08411197364330292, + 0.10411728173494339, + 0.25956472754478455, + 0.12092847377061844, + -0.03603197634220123, + 0.020159415900707245, + 0.002794859930872917, + -0.04763169586658478, + 0.023857876658439636, + -0.008853891864418983, + 0.02062172256410122, + 0.012944613583385944, + 0.03219342231750488, + -0.01576048694550991, + 0.062145356088876724, + -0.02772444859147072, + -0.0065353489480912685, + 0.05805463343858719, + 0.023479623720049858, + 0.0027300666552037, + -0.002434119815006852, + 0.07705127447843552, + 0.04107533395290375, + 0.0620332807302475, + 0.0058699059300124645, + 0.05088185891509056, + 0.03087654709815979, + -0.015046012587845325, + -0.0015410254709422588, + 0.08035747706890106, + -0.043737106025218964, + 0.01898263208568096, + -0.11532474309206009, + -0.050657711923122406, + 0.05530880391597748, + 0.012440278194844723, + 0.05967971310019493, + 0.041971929371356964, + 0.028438923880457878, + 0.015704451128840446, + 0.01071713212877512, + -0.07099924981594086, + 0.028550999239087105, + -0.009722470305860043, + 0.016937270760536194, + 0.08635346591472626, + 0.00915509182959795, + 0.028719110414385796, + -0.0026372550055384636, + 0.026785824447870255, + 0.07755561172962189, + 0.06124875694513321, + 0.016909252852201462, + -0.0197671540081501, + -0.09240549057722092, + -0.0690939798951149, + -0.061024609953165054, + -0.015872562304139137, + -0.026757806539535522, + -0.03774111345410347, + -0.00618161354213953, + 0.04718339815735817, + 0.012230138294398785, + -0.02581918053328991, + -0.0007832086994312704, + -0.04561435431241989, + 0.007705127354711294, + 0.029503634199500084, + 0.01749764382839203, + -0.007838215678930283, + 0.01878650113940239, + 0.0227651484310627, + -0.04012269899249077, + 0.060240086168050766, + -0.01017076801508665, + 0.0015839290572330356, + 0.030820509418845177, + 0.017371559515595436, + -0.04270041361451149, + -0.04354097321629524, + 0.05390787497162819, + -0.026239460334181786, + 0.03841356188058853, + 0.0021591868717223406, + 0.046959247440099716, + -0.030428249388933182, + -0.03905799239873886, + 0.0027423249557614326, + 0.0626496896147728, + -0.0448298305273056, + -0.017567690461874008, + -0.03939421474933624, + 0.05211468040943146, + -0.019010649994015694, + -0.0019665586296468973, + 0.02455834299325943, + -0.1315755546092987, + -0.030288156121969223, + -0.07055094838142395, + 0.10159561038017273, + -0.06472306698560715, + -0.08809062093496323, + -0.002313289325684309, + -0.12025602161884308, + 0.007859230041503906, + 0.05023743212223053, + -0.039758458733558655, + -0.009547353722155094, + 0.0030715439934283495, + 0.07290451228618622, + 0.030316174030303955, + 0.027066010981798172, + 0.0425323024392128, + 0.03140890225768089, + 0.03180116042494774, + 0.01129151415079832, + -0.001963056391105056, + 0.007508996874094009, + -0.1291099190711975, + 0.027430253103375435, + -0.0268698800355196, + 0.0466790609061718, + 0.01480785384774208, + 0.001569919753819704, + -0.03373444825410843, + 0.020397573709487915, + 0.0032956930808722973, + -0.08187048137187958, + -0.04239220917224884, + 0.018562352284789085, + 0.03810535743832588, + 0.010605056770145893, + 0.04365304857492447, + 0.038441579788923264, + 0.016250813379883766, + 0.018688436597585678, + -0.04404531046748161, + 0.049200739711523056, + -0.014499648474156857, + 0.012286175973713398, + -0.02045361138880253, + 0.024572351947426796, + 0.035415567457675934, + -0.005214970093220472, + -0.05533682554960251, + -0.06752493232488632, + 0.08097388595342636, + 0.0292514655739069, + 0.03101664036512375, + -0.005820873659104109, + -0.03006400540471077, + -0.0051974584348499775, + 0.012482305988669395, + -0.017749812453985214, + 0.033510301262140274, + -0.008125406689941883, + -0.07514600455760956, + -0.04093524068593979, + -0.0008453750633634627, + 0.005957464221864939, + 0.040094681084156036, + 0.04003864526748657, + -0.05183449387550354, + 0.028522981330752373, + -0.0353875495493412, + 0.032557666301727295, + -0.044241439551115036, + 0.060688383877277374, + -0.03449095040559769, + -0.07593052834272385, + 0.009029008448123932, + 0.0372367799282074, + -0.028508970513939857, + 0.060688383877277374, + 0.05107799172401428, + -0.021700439974665642, + -0.031072678044438362, + -0.009022003971040249, + 0.010443950071930885, + -0.023017317056655884, + 0.02734619751572609, + -0.007999323308467865, + -0.06920605152845383, + 0.01845027692615986, + -0.01783386804163456, + -0.02469843626022339, + 0.02038356475532055, + -0.005228979513049126, + 0.01817009225487709, + -0.037516966462135315, + 0.02560904249548912, + 0.0643308088183403, + -0.06091253459453583, + -0.05037752538919449, + -0.04284050688147545, + -0.04833216220140457, + -0.025805171579122543, + 0.01966908946633339, + 0.01721745729446411, + 0.006290185730904341, + 0.037685077637434006, + 0.05469239503145218, + -0.02649162895977497, + 0.009645418263971806, + 0.00995362363755703, + -0.016432935371994972, + -0.004507499746978283, + -0.012153087183833122, + 0.054804470390081406, + -0.06315402686595917, + 0.033678412437438965, + 0.03219342231750488, + -0.007235815282911062, + -0.011228471994400024, + 0.023045334964990616, + -0.04387719929218292, + 0.0044374531134963036, + 0.06130479648709297, + 0.01487790048122406, + -0.022092701867222786, + -0.028452934697270393, + -0.05275910720229149, + 0.07452959567308426, + -0.0009859061101451516, + -0.05522475019097328, + 0.13628268241882324, + -0.09139682352542877, + 0.08528875559568405, + 0.06063234806060791, + 0.06360232084989548, + -0.03931015729904175, + 0.04942489042878151, + -0.00335873500443995, + -0.04298060014843941, + -0.03421076387166977, + -0.03101664036512375, + -0.04171976074576378, + 0.04020675644278526, + 0.02357769012451172, + 0.021392235532402992, + -0.012832539156079292, + -0.02262505516409874, + -0.00024078522983472794, + 0.023591699078679085, + 0.01171879842877388, + -0.0307084359228611, + 0.06578777730464935, + -0.029139390215277672, + -0.01697929948568344, + 0.04418540373444557, + 0.053655706346035004, + -0.02357769012451172, + 0.01426849514245987, + 0.03202531114220619, + 0.008027342148125172, + 0.06108064576983452, + -0.004108233842998743, + -0.0707750990986824, + 0.0419158935546875, + 0.08114199340343475, + 0.00920412503182888, + 0.007880243472754955, + -0.029727783054113388, + -0.022372888401150703, + 0.005477644968777895, + 0.029475614428520203, + 0.010570033453404903, + -0.030624378472566605, + 0.026169413700699806, + 0.02703799307346344, + -0.040879204869270325, + -0.013813192024827003, + 0.014723798260092735, + -0.04732349142432213, + -0.0401507169008255, + 0.002033103024587035, + -0.01936088316142559, + 0.002617992227897048, + -0.0030715439934283495, + 0.036564331501722336, + -0.02045361138880253, + -0.03676046058535576, + -0.0626496896147728, + -0.04603463411331177, + 0.046006616204977036, + 0.04715538024902344, + 0.016699112951755524, + -0.07542619109153748, + -0.04317673295736313, + 0.057830482721328735, + -0.06091253459453583, + 0.0020103377755731344, + -0.025188762694597244, + -0.008552690967917442, + 0.02455834299325943, + 0.0018159584142267704, + -0.038133375346660614, + 0.059567637741565704, + 0.022330859676003456, + 0.0501253567636013, + 0.010689113289117813, + 0.0455302968621254, + -0.03824545070528984, + 0.021994637325406075, + -0.022751139476895332, + -0.03561169654130936, + -0.028046663850545883, + 0.08702591061592102, + 0.06242554262280464, + 0.01824013702571392, + 0.022232795134186745, + 0.00804835557937622, + 0.0077751739881932735, + -0.04861234873533249, + 0.03395859897136688, + 0.013168763369321823, + -0.04065505415201187, + 0.024278156459331512, + 0.08175840973854065, + -0.019557014107704163, + 0.014359555207192898, + 0.09470301866531372, + 0.0732407346367836, + -0.01888456754386425, + 0.037040647119283676, + -0.03552764281630516, + 0.037348855286836624, + -0.0062516601756215096, + -0.01171879842877388, + 0.07055094838142395, + 0.03006400540471077, + 0.005186951719224453, + 0.012531339190900326, + -0.03855365514755249, + 0.03810535743832588, + -0.017875894904136658, + -0.025258809328079224, + 0.003092557890340686, + 0.008755826391279697, + 0.06012801080942154, + 0.02305934578180313, + 0.03692857548594475, + 0.030035987496376038, + 0.015144078060984612, + -0.022498972713947296, + 0.03054032288491726, + 0.034154728055000305, + -0.028452934697270393, + 0.012629404664039612, + 0.03521943837404251, + -0.03987053036689758, + -0.003341223346069455, + 0.04323276877403259, + -0.0013186275027692318, + -0.0743054449558258, + -0.026575684547424316, + -0.13617061078548431, + -0.007838215678930283, + -0.001567292958498001, + 0.07475374639034271, + 0.06270572543144226, + 0.04704330489039421, + -0.062313467264175415, + 0.0330900214612484, + -0.03283785283565521, + 0.060071974992752075, + -0.04900461062788963, + -0.05883915349841118, + 0.003497077152132988, + -0.017385568469762802, + 0.05839085578918457, + -0.09946618974208832, + -0.012902585789561272, + 0.006279679015278816, + -0.08058162033557892, + -0.002898178528994322, + -0.07828409224748611, + -0.022526990622282028, + -0.04163570702075958, + 0.00915509182959795, + 0.012517329305410385, + 0.07665901631116867, + 0.0666283369064331, + -0.06545155495405197, + 0.0017748060636222363, + -0.07021472603082657, + 0.07234413921833038, + 0.0707750990986824, + -0.026309506967663765, + -0.15511122345924377, + -0.04914470389485359, + -0.03152097389101982, + -0.001048072474077344, + 0.017777830362319946, + 0.011263495311141014, + -0.02381584793329239, + 0.012412259355187416, + -0.018324194476008415, + 0.001912272535264492, + -0.043765123933553696, + 0.008034346625208855, + 0.04634283855557442, + 0.007011665962636471, + 0.02989589422941208, + -0.004248327109962702, + -0.027766477316617966, + 0.04219608008861542, + 0.01535421796143055, + 0.05533682554960251, + 0.04180381819605827, + -0.027248132973909378, + -0.04001062363386154, + 0.03922610357403755, + 0.030035987496376038, + 0.09840147942304611, + -0.04592255875468254, + -0.015578366816043854, + 0.033678412437438965, + 0.016769159585237503, + 0.041355520486831665, + -0.07240018248558044, + 0.010485977865755558, + -0.020061349496245384, + -0.046174727380275726, + -0.04676311835646629, + 0.021994637325406075, + 0.040374867618083954, + -0.06012801080942154, + 0.03502330556511879, + -0.01936088316142559, + 0.019416920840740204, + -0.0732407346367836, + -0.018366221338510513, + -0.017721792683005333, + 0.028144728392362595, + -0.029783818870782852, + 0.06646022945642471, + -0.01527016144245863, + -0.037993282079696655, + -0.026925917714834213, + 0.00830752868205309, + 0.009512330405414104, + 0.06943020224571228, + 0.003124078968539834, + -0.004833216313272715, + 0.005067872349172831, + -0.005554696545004845, + -0.0324736088514328, + 0.040094681084156036, + -0.01840825006365776, + -0.004724644124507904, + -0.05267505347728729, + 0.030288156121969223, + -0.03180116042494774, + -0.030456267297267914, + 0.049480926245450974, + -0.03138088434934616 + ] + }, + { + "id": "3e363c12-5582-427e-a72a-d598631b109c", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "lauren51", + "reviewDate": "2021-04-15T16:11:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d62aa2bd-d21b-47ff-a40b-fb7749b402aa", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "qguzman", + "reviewDate": "2021-02-25T06:55:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "86bc7c4e-0787-403d-b067-1f0644833d87", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "cchung", + "reviewDate": "2021-05-22T21:30:07", + "stars": 4, + "verifiedUser": false + }, + { + "id": "613e309b-7a85-4265-896c-dbe2b45ced9f", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "michelleorozco", + "reviewDate": "2022-08-06T02:58:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4c707b04-83ff-41c2-9c45-b0367e59b407", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "morgancandice", + "reviewDate": "2022-09-16T11:35:31", + "stars": 2, + "verifiedUser": true + }, + { + "id": "20e75f8d-7726-4a81-a165-ad42e80da238", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "alicia35", + "reviewDate": "2022-12-28T03:31:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8ee00e48-52e1-4124-afc1-01ba144fa675", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "tammy24", + "reviewDate": "2022-08-28T04:08:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "adedc813-ae7d-41a1-b0dc-6c9a8ed380f4", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "jmurphy", + "reviewDate": "2021-07-30T20:58:57", + "stars": 3, + "verifiedUser": true + }, + { + "id": "59cfea4e-fd14-46da-a2d9-14dd2d356b54", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "yjohnson", + "reviewDate": "2021-07-22T14:06:27", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4264f958-aade-4e6e-b523-bc4a0b2409ff", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "nina29", + "reviewDate": "2021-11-08T04:31:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "55087a4c-3f20-4b46-a627-7bc5cbae88cc", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "christopher83", + "reviewDate": "2022-07-11T23:20:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1a4e68de-2f5f-40a7-8d34-6ac97b1e9852", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "kennethmartin", + "reviewDate": "2022-06-15T08:16:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "78cfba9b-0ee5-461c-9834-73e753086b28", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "halecheryl", + "reviewDate": "2021-01-04T03:19:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3558479b-5a4c-499c-9200-a806de541198", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "beanlauren", + "reviewDate": "2021-11-28T20:16:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "df4ccd54-92ee-4045-b019-2d5ab633d591", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "jacksoncarol", + "reviewDate": "2022-02-27T12:32:46", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a71238e6-f22a-425b-983f-fffd358708a1", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "hmcconnell", + "reviewDate": "2022-12-31T15:40:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5df26318-e4b0-40a6-8696-42885f050a3e", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "megansimpson", + "reviewDate": "2022-12-08T01:25:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "119062f6-8156-4961-a8cb-f3fca6c6d6ad", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "vthomas", + "reviewDate": "2022-01-23T18:26:04", + "stars": 5, + "verifiedUser": false + }, + { + "id": "bbffe786-66a6-4c51-bdd0-bbac10206329", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "patricia42", + "reviewDate": "2022-07-31T06:49:34", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf4a3b6a-9212-44ef-8d21-42f514889f61", + "productId": "e41cc97a-65f3-45f5-9373-27529f01aa59", + "category": "Accessory", + "docType": "customerRating", + "userName": "wunderwood", + "reviewDate": "2021-02-18T21:21:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "product", + "name": "Amazing TV 3000 (Gold)", + "description": "This Amazing TV 3000 (Gold) is available at Amazon.\n\nAmazon Prime Gold or Amazon Prime Gold Only.\n\nRead More", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-02-27T14:04:27", + "price": 303.14, + "stock": 21, + "priceHistory": [ + { + "priceDate": "2021-01-19T09:10:28", + "newPrice": 317.72 + }, + { + "priceDate": "2021-07-13T09:10:28", + "newPrice": 332.16 + }, + { + "priceDate": "2022-01-04T09:10:28", + "newPrice": 289.18 + }, + { + "priceDate": "2022-06-28T09:10:28", + "newPrice": 302.31 + }, + { + "priceDate": "2022-12-20T09:10:28", + "newPrice": 278.63 + }, + { + "priceDate": "2023-12-27T09:10:28", + "newPrice": 303.14 + } + ], + "descriptionVector": [ + -0.014178471639752388, + 0.0052031404338777065, + -0.027832835912704468, + 0.05969301983714104, + -0.017281735315918922, + -0.058203455060720444, + -0.03409453481435776, + 0.04590073227882385, + 0.06289283186197281, + 0.13141290843486786, + 0.01780584268271923, + 0.000921497237868607, + 0.06002403423190117, + -0.06852008402347565, + 0.10228360444307327, + -0.0042031994089484215, + -0.02501920983195305, + -0.01973676308989525, + 0.00010694410593714565, + 0.0321911983191967, + 0.02595708519220352, + -0.016012845560908318, + -0.0037101253401488066, + -0.030591294169425964, + -0.020109154284000397, + -0.027405275031924248, + -0.02532264031469822, + 0.00452042231336236, + 0.002660187426954508, + -0.04984532669186592, + 0.03643922507762909, + 0.01655074581503868, + 0.04190097004175186, + -0.03649439290165901, + -0.05047977343201637, + 0.014412940479815006, + -0.01606801524758339, + 0.07955391705036163, + 0.04408014938235283, + -0.017019683495163918, + 0.02421925775706768, + 0.001121485373005271, + -0.003025683108717203, + 0.014468109235167503, + 0.011020037345588207, + -0.008151241578161716, + 0.0347013957798481, + 0.006096191238611937, + -0.051638323813676834, + -0.00456524733453989, + -0.022343505173921585, + 0.014854293316602707, + -0.08302956819534302, + 0.02443993277847767, + -0.0013223355636000633, + -0.013668157160282135, + 0.02794317528605461, + 0.15976986289024353, + 0.046286918222904205, + -0.043114691972732544, + 0.01795755885541439, + 0.02773628942668438, + 0.05489330366253853, + 0.049928080290555954, + -0.03357042744755745, + -0.02031604014337063, + -0.027419067919254303, + 0.002267107367515564, + -0.04584556445479393, + 0.049790158867836, + 0.004375603049993515, + -0.011475183069705963, + 0.008302956819534302, + 0.015654245391488075, + -0.003948042169213295, + 0.02361239679157734, + 0.04104584828019142, + -0.013350934721529484, + -0.012916477397084236, + -0.05947234481573105, + 0.0319429375231266, + 0.01845408044755459, + 0.012571670114994049, + -0.021309083327651024, + 0.07260259985923767, + 0.01204756274819374, + -0.03326699882745743, + -0.15877681970596313, + -0.03191535174846649, + 0.022122828289866447, + -0.003317045047879219, + 0.12335821986198425, + -0.011785509996116161, + -0.01215790119022131, + 0.04305952042341232, + 0.03710125386714935, + -0.010689022950828075, + 0.007089235819876194, + -0.08242271095514297, + 0.04035623371601105, + -0.008944298140704632, + -0.07381632179021835, + -0.008551218546926975, + -0.05017634108662605, + 0.010930388234555721, + -0.02751561440527439, + -0.030039602890610695, + 0.018867848441004753, + 0.029818926006555557, + -0.10906940698623657, + -0.0009568399400450289, + -0.00019082923245150596, + 0.033184245228767395, + 0.027419067919254303, + 0.005996196996420622, + 0.0684097483754158, + -0.04545937851071358, + -0.0802159458398819, + -0.009833901189267635, + -0.05409335345029831, + -0.07878154516220093, + -0.01331645343452692, + -0.06151360273361206, + 0.021295292302966118, + 0.028329359367489815, + 0.013626780360937119, + -0.026536360383033752, + 0.06427206099033356, + 0.031777430325746536, + -0.009530470706522465, + -0.09340137243270874, + 0.025639861822128296, + -0.011433806270360947, + 0.08115381747484207, + -0.06234113872051239, + 0.057044900953769684, + -0.0324394591152668, + 0.003679092740640044, + 0.017488621175289154, + 0.032604966312646866, + -0.03555651754140854, + 0.009047740139067173, + 0.05522431805729866, + 0.020440170541405678, + -0.035473763942718506, + 0.030370617285370827, + -0.07839535921812057, + -0.00012693215103354305, + -0.024715779349207878, + -0.02021949365735054, + 0.05497605726122856, + -0.07723680883646011, + -0.05754142254590988, + -0.09599432349205017, + -0.00712371664121747, + 0.04013555496931076, + -0.01808168925344944, + -0.04421807453036308, + -0.04468701034784317, + 0.10846254974603653, + -0.09566330909729004, + -0.012509604915976524, + -0.06636849045753479, + -0.0072754318825900555, + 0.014164679683744907, + -0.022826235741376877, + 0.06929245591163635, + 0.006885799579322338, + -0.054534703493118286, + 0.05174866318702698, + 0.0035825467202812433, + -0.05842413008213043, + 0.014454317279160023, + -0.06835457682609558, + -0.015364608727395535, + 0.042590584605932236, + 0.02846728079020977, + -0.03790120780467987, + 0.0169783066958189, + -0.05150040239095688, + -0.025336431339383125, + 0.0452662892639637, + -0.00452042231336236, + -0.06907177716493607, + -0.02672945335507393, + 0.04612141102552414, + 0.0480247437953949, + 0.05097629502415657, + -0.06658916175365448, + 0.0030791282188147306, + 0.061679109930992126, + 0.01237168163061142, + 0.024826116859912872, + -0.026274308562278748, + -0.04573522508144379, + 0.02819143608212471, + 0.010302838869392872, + -0.01752999797463417, + -0.07348530739545822, + 0.02559848502278328, + 0.010482138954102993, + 0.019598839804530144, + 0.11243472993373871, + -0.05257619917392731, + -0.01933678798377514, + -0.031115401536226273, + -0.020136740058660507, + 0.024357179179787636, + 0.007316808681935072, + 0.060189541429281235, + -0.03674265369772911, + 0.002586053917184472, + 0.02688116766512394, + -0.05092112720012665, + 0.055113982409238815, + 0.05519673600792885, + -0.04413532093167305, + -0.009489093907177448, + -0.01973676308989525, + 0.004665241111069918, + 0.024784740060567856, + -0.036301299929618835, + -0.015254270285367966, + 0.04278367757797241, + 0.020385000854730606, + -0.025832954794168472, + 0.0304257869720459, + -0.01976434886455536, + 0.04090792313218117, + -0.039170097559690475, + -0.10840737819671631, + -0.05748625472187996, + -0.056548379361629486, + -0.043142274022102356, + -0.029184481129050255, + -0.0023050359450280666, + -0.04046657308936119, + -0.04449392110109329, + -0.06896143406629562, + 0.02089531533420086, + -0.05486571788787842, + 0.01095107663422823, + -0.006968553178012371, + -0.0068340785801410675, + 0.015930091962218285, + -0.06581679731607437, + 0.0847398117184639, + 0.0701751559972763, + -0.02315725013613701, + 0.025239886716008186, + -0.02630189247429371, + -0.05974818766117096, + -0.0580931156873703, + 0.0023188283666968346, + 0.013557818718254566, + 0.03577719256281853, + 0.027860421687364578, + -0.03423245623707771, + -0.01924024149775505, + -0.020302247256040573, + -0.021736644208431244, + -0.055913932621479034, + 0.015461154282093048, + 0.050783202052116394, + -0.03241187706589699, + 0.048245422542095184, + -0.05952751263976097, + -0.11226922273635864, + -0.024950247257947922, + 0.013847456313669682, + -0.008502945303916931, + -0.04077000170946121, + -0.02230212837457657, + -0.0643823966383934, + -0.02461923286318779, + -0.024853702634572983, + -0.011275194585323334, + 0.01591629907488823, + 0.04617657884955406, + -0.03340492025017738, + 0.07304395735263824, + -0.015626661479473114, + 0.04242507740855217, + -0.0472799614071846, + 0.0027136325370520353, + -0.03332216665148735, + -0.05665871873497963, + -0.003441175678744912, + -0.010564892552793026, + -0.008089176379144192, + -0.029184481129050255, + -0.006937520578503609, + 0.033487673848867416, + 0.008158138021826744, + 0.04474218189716339, + 0.03357042744755745, + 0.04932121932506561, + 0.0450180247426033, + -0.04118376970291138, + 0.062451478093862534, + 0.013419895432889462, + -0.010744191706180573, + -0.05660354718565941, + -0.09422890841960907, + -0.08716725558042526, + 0.059582680463790894, + -0.027474237605929375, + -0.02803971990942955, + 0.062451478093862534, + -0.02693633735179901, + 0.034011781215667725, + -0.08258821815252304, + -0.03271530568599701, + -0.026095008477568626, + -0.006744428537786007, + -0.058203455060720444, + -0.011702756397426128, + 0.04755580797791481, + -0.01159241795539856, + -0.0012516500428318977, + 0.06289283186197281, + -0.05257619917392731, + -0.05150040239095688, + -0.01381987240165472, + 0.000536175153683871, + 0.01385435275733471, + -0.005478986073285341, + -0.03503241017460823, + 0.024550272151827812, + -0.02159872278571129, + -0.018440287560224533, + 0.01750241219997406, + 0.039390772581100464, + 0.05472779646515846, + 0.08810513466596603, + -0.09340137243270874, + -0.005975508596748114, + 0.020012609660625458, + 0.03332216665148735, + 0.02879829704761505, + 0.04134927690029144, + 0.0004969533765688539, + -0.023281380534172058, + -0.0140819251537323, + 0.04032864794135094, + -0.04052174091339111, + -0.013081984594464302, + 0.03017752431333065, + 0.07949874550104141, + 0.010137331672012806, + 0.0015792169142514467, + -0.009144286625087261, + 0.008558114059269428, + 0.021571137011051178, + 0.043445706367492676, + 0.008682245388627052, + -0.021791813895106316, + -0.024026164785027504, + -0.05550016462802887, + 0.03241187706589699, + -0.030039602890610695, + -0.048217836767435074, + -0.020053986459970474, + 0.10162157565355301, + -0.011930328793823719, + 0.06421688944101334, + -0.004106653388589621, + 0.02351585030555725, + -0.005254861433058977, + -0.022715898230671883, + 0.007268535438925028, + -0.011413117870688438, + -0.10289046168327332, + 0.05125214159488678, + -0.04192855581641197, + 0.024053748697042465, + 0.04783165454864502, + 0.020978068932890892, + 0.013137154281139374, + 0.0025239887181669474, + -0.07006482034921646, + -0.002455027075484395, + 0.00014988337352406234, + 0.02351585030555725, + 0.11160719394683838, + 0.011330364271998405, + -0.013350934721529484, + -0.03392902761697769, + -0.04816266894340515, + -0.040576908737421036, + -0.05602427199482918, + 0.05914133042097092, + -0.0015705967089161277, + -0.026095008477568626, + 0.016840383410453796, + -0.037156421691179276, + 0.006420309655368328, + 0.08280889689922333, + 0.06829940527677536, + 0.005899650976061821, + -0.02650877647101879, + 0.020633261650800705, + 0.018674757331609726, + -0.03701850026845932, + -0.07839535921812057, + -0.043418120592832565, + -0.007406458258628845, + -0.015930091962218285, + 0.009861485101282597, + -0.024895079433918, + -0.08104348182678223, + -0.06956829875707626, + -0.024205464869737625, + 0.0196126326918602, + -0.040880341082811356, + 0.05092112720012665, + 0.10095954686403275, + -0.0006103087216615677, + 0.13648848235607147, + -0.013254388235509396, + -0.023902034386992455, + 0.1441018134355545, + -0.012392370030283928, + -0.001505083404481411, + -0.02504679374396801, + 0.0038101193495094776, + 0.06945796310901642, + 0.012364786118268967, + -0.012399266473948956, + 0.004148030653595924, + 0.03936318680644035, + -0.06482375413179398, + 0.049983248114585876, + 0.03613579273223877, + -0.044824935495853424, + 0.04118376970291138, + 0.0174748282879591, + 0.02074360102415085, + -0.029212065041065216, + 0.025129547342658043, + -0.04052174091339111, + -0.013192323036491871, + -0.03663231432437897, + 0.0472799614071846, + 0.0272811446338892, + -0.06532027572393417, + -0.022219374775886536, + 0.011047622188925743, + 0.06267215311527252, + -0.0711682066321373, + -0.0887671634554863, + -0.004496285691857338, + -0.07138887792825699, + 0.08457430452108383, + -3.706677307491191e-05, + 0.022164205089211464, + 0.05274170637130737, + 0.10476621240377426, + -0.009958031587302685, + 0.04035623371601105, + -0.01190964039415121, + 0.033487673848867416, + 0.009454612620174885, + -0.014633617363870144, + -0.010240773670375347, + -0.0064513422548770905, + -0.056824225932359695, + 0.023543434217572212, + 0.021515969187021255, + 0.042562998831272125, + -0.03814946860074997, + -0.036852993071079254, + -0.07447835057973862, + 0.008385710418224335, + 0.02874312736093998, + -0.05210726335644722, + 0.02608121559023857, + 0.02147459238767624, + 0.02324000373482704, + -0.05354166030883789, + 0.062230803072452545, + 0.037983961403369904, + 0.03133607655763626, + 0.028274189680814743, + 0.04810749739408493, + -0.020688431337475777, + -0.012840619310736656, + 0.02846728079020977, + -0.012785450555384159, + 0.07960908114910126, + -0.021005654707551003, + 0.010330423712730408, + 0.032577384263277054, + 0.018398910760879517, + -0.013964691199362278, + 0.03354284167289734, + -0.04667310044169426, + -0.035142749547958374, + 0.019585048779845238, + 0.028632787987589836, + -0.022991742938756943, + 0.04636967182159424, + -0.03908734396100044, + -0.0245226863771677, + 0.04090792313218117, + -0.040852755308151245, + -0.00042260432383045554, + -0.010820049792528152, + -0.03387385979294777, + -0.02547435462474823, + -0.04021830856800079, + 0.0892636850476265 + ] + }, + { + "id": "ece8bb29-3bf3-442b-b5f8-596c745169af", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "jhenderson", + "reviewDate": "2021-03-11T12:19:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5a8bc0f2-2bc3-4440-9972-219a16b8089e", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "chelseabaker", + "reviewDate": "2022-08-27T11:50:20", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7aabbd6e-e0cf-4df7-9adc-fcb21e40fd60", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "ryantracy", + "reviewDate": "2022-12-23T05:37:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "33501bcf-5f92-4abb-ad78-3c6965c0dfb8", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "sara73", + "reviewDate": "2021-07-19T01:43:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0dd3c3df-f989-4857-a62f-5771f30d965b", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "chavezchristopher", + "reviewDate": "2022-04-09T15:40:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e214fdf4-b338-4498-a187-55d32b5e3594", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "kelly20", + "reviewDate": "2021-07-22T13:43:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "afcfae98-5558-4a86-9d31-aa082cc40908", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "melissamarsh", + "reviewDate": "2021-03-02T02:25:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "10533fdf-faca-49b5-a6a5-0e73c69eb74a", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "samuel41", + "reviewDate": "2021-11-12T02:01:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8bf985b8-4bfc-4c4a-9542-c25e147bc0ea", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "morenomichael", + "reviewDate": "2021-01-19T09:10:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "c7c3c26a-e533-419b-aa19-2ae9c69600ae", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "hamptonstephen", + "reviewDate": "2021-03-19T05:00:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "fd375b89-cf06-4870-8ed5-4806107f3e37", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "jenniferthompson", + "reviewDate": "2022-05-21T06:02:56", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1e10047b-1164-4dc7-abad-285d78a43d88", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "seanodom", + "reviewDate": "2021-01-26T00:01:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "d5c044cf-1d51-474b-afcd-92f6268555b3", + "productId": "6619a16e-ad7d-4176-961a-fcc2195e5d21", + "category": "Media", + "docType": "customerRating", + "userName": "ravenconley", + "reviewDate": "2022-07-07T00:14:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Ultra (Gold)", + "description": "This Luxe Keyboard Ultra (Gold) is just as good or better than its competitor and should come as no surprise. This is an excellent keyboard and will last for many years against any hard pedal and it does the job for $5! Its sharp feel and the keyboard can fit any size finger and feel perfectly comfortable to operate. I recommend it. It's a very good keyboard. But do go with its $10-12 bucks instead of $55-$60 over this one.", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-11-29T07:06:55", + "price": 536.65, + "stock": 44, + "priceHistory": [ + { + "priceDate": "2021-03-15T05:52:47", + "newPrice": 536.55 + }, + { + "priceDate": "2025-03-19T05:52:47", + "newPrice": 536.65 + } + ], + "descriptionVector": [ + -0.011260302737355232, + -0.009734024293720722, + -0.03086710348725319, + -0.026320289820432663, + 0.026362983509898186, + -0.04521198198199272, + 0.01130299549549818, + -0.006030398886650801, + -0.046236615628004074, + 0.0473039448261261, + 0.0007197788218036294, + -0.012370322830975056, + 0.03468813747167587, + -0.08666697144508362, + 0.06826625019311905, + -0.002308095106855035, + 0.013234858401119709, + -0.039619188755750656, + -0.04721855744719505, + 0.02056739665567875, + 0.0022373846732079983, + -0.11492979526519775, + -0.05400675907731056, + -0.04973744973540306, + -0.010166292078793049, + -0.016981177031993866, + -0.001570305204950273, + 0.011473768390715122, + 0.052768658846616745, + -0.013448323123157024, + 0.03287367895245552, + 0.017899077385663986, + -0.017173295840620995, + 0.05174402520060539, + -0.015657691285014153, + -0.024548526853322983, + -0.01708790846168995, + -0.03778338432312012, + 0.03509372100234032, + 0.0007117738714441657, + 0.013064085505902767, + 0.03359946236014366, + 0.024591220542788506, + -0.06425309926271439, + 0.014408918097615242, + -0.04045170173048973, + 0.009376469999551773, + 0.053195592015981674, + 0.033087145537137985, + 0.017215987667441368, + 0.07180977612733841, + 0.04326944798231125, + -0.04529736936092377, + -0.01246638223528862, + 0.041775189340114594, + -0.036139700561761856, + -0.007754132617264986, + 0.016586264595389366, + 0.05823337659239769, + -0.023481199517846107, + -0.013106778264045715, + -0.05712335556745529, + -0.045126594603061676, + -0.09699869900941849, + 0.004856339190155268, + -0.011153569445014, + -0.014899888075888157, + -0.0029004618991166353, + 0.060282643884420395, + 0.027046073228120804, + -0.06365539878606796, + -0.008688043802976608, + 0.013960640877485275, + -0.012839946895837784, + 0.01817658357322216, + 0.0049764132127165794, + 0.033706195652484894, + 0.017963116988539696, + 0.025039497762918472, + 0.03477352112531662, + 0.0858984962105751, + -0.002649639965966344, + 0.01751483976840973, + -0.07808566093444824, + 0.08500194549560547, + 0.007668746169656515, + 0.029500925913453102, + -0.06386886537075043, + -0.096827931702137, + 0.06890664994716644, + -0.06421040743589401, + 0.03671605885028839, + -0.0165328998118639, + -0.03421851247549057, + 0.010929430834949017, + -0.009685995057225227, + -0.040067464113235474, + 0.04388849809765816, + -0.022307138890028, + 0.03044017404317856, + 0.03251078724861145, + -0.03524314612150192, + -0.06630236655473709, + 0.0923878476023674, + -0.03293772041797638, + 0.02217905968427658, + 0.07565215229988098, + 0.011206936091184616, + 0.0008705388172529638, + -0.12107760459184647, + 0.05076208338141441, + 0.027515696361660957, + -0.006532042752951384, + -0.02585066668689251, + -0.01011826191097498, + 0.032596174627542496, + -0.01869957335293293, + -0.03530718386173248, + 0.007513983640819788, + -0.01982026733458042, + 0.09426634013652802, + 0.08081801980733871, + 0.0431840606033802, + 0.039384376257658005, + -0.008768093772232533, + -0.007876874879002571, + -0.02335312031209469, + 0.04262905195355415, + 0.015017294324934483, + -0.013277551159262657, + -0.07825643569231033, + 0.09221707284450531, + 0.049353212118148804, + 0.09605945646762848, + -0.01025167852640152, + 0.011495114304125309, + -0.0018491444643586874, + 0.03031209483742714, + -0.017770998179912567, + 0.021378565579652786, + -0.02115442603826523, + -0.06732700020074844, + -0.04162576422095299, + -0.007295181974768639, + -0.026533756405115128, + 0.006558726076036692, + -0.05212826281785965, + 0.017632246017456055, + 0.008207746781408787, + 0.04674893245100975, + 0.05302481725811958, + -0.08769160509109497, + -0.004629531875252724, + -0.07586561888456345, + 0.023374466225504875, + 0.05550101771950722, + -0.11142896860837936, + -0.044400814920663834, + 0.018358029425144196, + 0.05524485930800438, + -0.03581950441002846, + -0.002278743777424097, + -0.03024805523455143, + 0.03707895055413246, + -0.03863724693655968, + 0.07193785905838013, + 0.02499680407345295, + 0.002849763724952936, + -0.0724501758813858, + 0.049822837114334106, + -0.014024680480360985, + -0.006323914043605328, + -0.029842469841241837, + -0.06053880229592323, + 0.013661788776516914, + 0.023801397532224655, + 0.07774411886930466, + -0.017792345955967903, + 0.03579815477132797, + -0.00198522862046957, + 0.029116688296198845, + 0.05071939155459404, + -0.06045341491699219, + -0.05200018361210823, + 0.1313239485025406, + -0.0004712916852440685, + 0.029863815754652023, + 0.03396235406398773, + 0.001305474666878581, + 0.03569142520427704, + -0.03665201738476753, + 0.014536997303366661, + -0.08483117073774338, + 0.028326865285634995, + -0.05827606841921806, + 0.06049611046910286, + 0.0042452942579984665, + 0.07159630954265594, + 0.009413826279342175, + 0.054049450904130936, + 0.027110112830996513, + 0.09904796630144119, + 0.08252574503421783, + 0.019905652850866318, + 0.011174916289746761, + -0.018710246309638023, + 0.006878924090415239, + -0.01384323462843895, + 0.02798532135784626, + 0.018326008692383766, + -0.015017294324934483, + -0.004949730355292559, + -0.054903313517570496, + 0.022093674167990685, + -0.009397816844284534, + -0.0007044359808787704, + 0.009509885683655739, + -0.006238527595996857, + -0.06856510043144226, + -0.1385817676782608, + -0.008047647774219513, + -0.0007631389889866114, + -0.012327630072832108, + -0.011078856885433197, + -0.01692781038582325, + -0.04247962310910225, + 0.049950916320085526, + -0.013981986790895462, + 0.029479578137397766, + 0.019574781879782677, + 0.004770952742546797, + -0.05767836421728134, + -0.016479533165693283, + 0.01033172756433487, + -0.061990365386009216, + -0.0309311430901289, + -0.019841613247990608, + -0.0526832714676857, + -0.043717723339796066, + 0.06369809061288834, + 0.037185680121183395, + 0.010667935945093632, + -0.024036210030317307, + -0.04369637742638588, + 0.013298898003995419, + -0.09093628078699112, + 0.08184265345335007, + -0.07180977612733841, + -0.04444350674748421, + 0.01811254397034645, + -0.025807972997426987, + -0.06997397541999817, + -0.016842424869537354, + 0.09008242189884186, + 0.02247791178524494, + 0.0699312835931778, + 0.05464715510606766, + -0.024719299748539925, + 0.020482009276747704, + -0.09529097378253937, + 0.042202118784189224, + -0.01945737563073635, + -0.036758750677108765, + 0.05614141374826431, + -0.05605602636933327, + 0.11381977796554565, + 0.05609872192144394, + -0.01200743205845356, + -0.02755839005112648, + -0.0004796301946043968, + -0.007658073212951422, + -0.015177393332123756, + 0.0612218901515007, + 0.01197541132569313, + -0.006660121958702803, + 0.002352122450247407, + -0.015326819382607937, + 0.07723180204629898, + 0.036886829882860184, + -0.03556334227323532, + 0.0650215744972229, + 0.10528115928173065, + 0.03300175815820694, + 0.029778430238366127, + 0.07121207565069199, + -0.0346454419195652, + 0.049097053706645966, + -0.017312048003077507, + 0.023545239120721817, + -0.04021688923239708, + -0.025103537365794182, + 0.03573411703109741, + 0.03850916773080826, + -0.00032286648638546467, + -0.049780141562223434, + 0.02290484309196472, + 0.03330061212182045, + 0.033215224742889404, + -0.007850191555917263, + -0.0016263398574665189, + 0.013266878202557564, + 0.013320243917405605, + -0.050634004175662994, + -0.076249860227108, + -0.032852333039045334, + 0.016330106183886528, + -0.02719549834728241, + 0.015476245433092117, + -0.01817658357322216, + -0.007417924236506224, + 0.05127440020442009, + -0.01778167113661766, + -0.025381041690707207, + 0.005806260276585817, + 0.09674254059791565, + -0.0666012242436409, + -0.008949538692831993, + 0.027088765054941177, + 0.0341758169233799, + 0.01738676056265831, + -0.019991040229797363, + -0.05251250043511391, + -0.023011576384305954, + 0.05819068104028702, + 0.07855528593063354, + -0.06579004973173141, + 0.00373564544133842, + -0.0051044924184679985, + 0.03366350010037422, + -0.05187210440635681, + -0.06250268220901489, + -0.003420783905312419, + -0.11296591907739639, + 5.741053246310912e-05, + 0.047090478241443634, + -0.006121121812611818, + -0.027024725452065468, + 0.004984418395906687, + 0.04331213980913162, + 0.008762756362557411, + 0.062374603003263474, + 0.050377845764160156, + -0.029500925913453102, + -0.039021484553813934, + -0.004095868207514286, + -0.045681606978178024, + -0.03569142520427704, + -0.03887205943465233, + 0.006313240621238947, + 0.052896738052368164, + 0.001259446144104004, + -0.015956541523337364, + 0.02962900511920452, + -0.038594555109739304, + -0.0607522688806057, + 0.04038766399025917, + 0.026811260730028152, + -0.04444350674748421, + 0.0025135555770248175, + 0.06937627494335175, + -0.0161379873752594, + 0.030482865869998932, + -0.011783292517066002, + 0.08026301115751266, + -0.051914796233177185, + -0.0167677104473114, + -0.03776203840970993, + 0.0015502928290516138, + -0.009739360772073269, + 0.00505913095548749, + 0.04149768501520157, + -0.05477523431181908, + 0.04055843502283096, + 0.06813817471265793, + -0.015817789360880852, + 0.10476884245872498, + -0.025701239705085754, + 0.029116688296198845, + -0.0395551472902298, + 0.05016437917947769, + 0.003708962118253112, + 0.017077235504984856, + 0.007668746169656515, + -0.018902365118265152, + 0.0659608244895935, + -0.014270165003836155, + -0.058019910007715225, + 0.009435173124074936, + 0.014803828671574593, + -0.007674083113670349, + -0.06903472542762756, + -0.021282505244016647, + -0.002306760987266898, + 0.059300702065229416, + -0.06173420697450638, + -0.021901555359363556, + 0.02316100150346756, + 0.08133033663034439, + 0.01936131715774536, + 0.03283098712563515, + 0.05071939155459404, + 0.06194767355918884, + -0.053152896463871, + -0.04252231866121292, + -0.03648124635219574, + -0.06092303991317749, + 0.01797379180788994, + 0.05059131234884262, + -0.021677415817975998, + -0.09341248124837875, + -0.04828588664531708, + -0.00446142815053463, + -0.050505924969911575, + -0.04931052029132843, + 0.024761991575360298, + -0.00046662212116643786, + 0.1181744709610939, + 0.06092303991317749, + 0.0202471986413002, + -0.08308075368404388, + 0.0430346354842186, + 0.01350168976932764, + 0.016394145786762238, + -0.02162405103445053, + -0.008020964451134205, + 0.030034588649868965, + 0.0047816261649131775, + -0.0854288712143898, + 0.03710029646754265, + 0.001995902042835951, + 0.06322846561670303, + -0.028988609090447426, + -0.007023013196885586, + 0.02877514250576496, + -0.016255393624305725, + -0.025210268795490265, + -0.0007491303258575499, + 0.0023361125495284796, + -0.00047029106644913554, + 0.045254673808813095, + -0.013266878202557564, + -0.07394443452358246, + 0.056739117950201035, + 0.052640579640865326, + -0.0683516338467598, + -0.039085522294044495, + -0.042244814336299896, + 0.10254880040884018, + 0.01405670028179884, + -0.06519234925508499, + 0.05468984693288803, + -0.010422450490295887, + -0.06395424902439117, + 0.027643775567412376, + 0.10357343405485153, + 0.02627759613096714, + -0.020183159038424492, + 0.042863860726356506, + -0.02431371435523033, + 0.008250439539551735, + 4.059804268763401e-06, + 0.12415150552988052, + 0.04563891515135765, + 0.002833753824234009, + -0.040537089109420776, + 0.019638821482658386, + -0.028156092390418053, + 0.045126594603061676, + 0.00997417327016592, + 0.018710246309638023, + -0.0018945059273391962, + -0.047688182443380356, + -0.04431542754173279, + -0.005838280078023672, + 0.007460617460310459, + -0.036822788417339325, + -0.01830466277897358, + -0.014323531650006771, + 0.011495114304125309, + 0.014472957700490952, + -0.03746318817138672, + 0.02608547732234001, + 0.049822837114334106, + 0.03671605885028839, + 0.04491313174366951, + -0.017173295840620995, + 0.08282459527254105, + 0.0202471986413002, + 0.08491655439138412, + 0.010929430834949017, + -0.009819410741329193, + -0.009878113865852356, + -0.0018464761087670922, + -0.06941896677017212, + -0.03031209483742714, + 0.0030098629649728537, + -0.02456987276673317, + 0.004696239717304707, + -0.05195749178528786, + 0.03355677053332329, + 0.011537807993590832, + -0.02292618900537491, + 0.014291511848568916, + 0.020610088482499123, + 0.005603468045592308, + -0.007039023097604513, + -0.021773476153612137, + 0.027473002672195435, + 0.017248008400201797, + -0.051359787583351135, + 0.06216114014387131, + -0.0800495445728302 + ] + }, + { + "id": "9bafe6ac-8777-4223-8703-973946a8d4c1", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vrobbins", + "reviewDate": "2022-07-28T20:12:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c530e454-7a64-44c0-95e7-6deddeae1a92", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "taylorsheri", + "reviewDate": "2022-07-08T00:43:49", + "stars": 3, + "verifiedUser": true + }, + { + "id": "06e7a441-f337-464d-b1b2-87ba6897e23d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jpeterson", + "reviewDate": "2021-03-15T05:52:47", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d36b6220-9e19-4777-a02c-77568d41e750", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kcollins", + "reviewDate": "2022-12-06T21:16:28", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d69c8c97-6974-4cef-bfc1-bb91d4a5cb8c", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "teresa32", + "reviewDate": "2021-06-01T06:49:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "be916ad7-ce5c-4939-bf37-0474a53a775b", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "anthony61", + "reviewDate": "2022-06-30T17:04:06", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b69f494b-c20e-4410-a1bf-3386a917a1bb", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "adamsrachael", + "reviewDate": "2021-11-19T12:49:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "584f0e8f-9ac6-4907-9d76-8e013c76d1db", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qgarrett", + "reviewDate": "2022-03-13T21:59:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "938247d3-7688-482a-941b-7e241a5c935b", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joseph17", + "reviewDate": "2022-09-19T08:30:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7fec94d2-60e5-4fa3-9ad8-cfd2e2193624", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ian99", + "reviewDate": "2022-08-29T18:34:49", + "stars": 4, + "verifiedUser": true + }, + { + "id": "afbe092e-7339-4239-992d-285bd245e92d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "derek12", + "reviewDate": "2022-02-07T00:34:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4b81e6cb-1273-4adc-9a3d-9a9b7ea552f8", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jonesmichael", + "reviewDate": "2021-09-01T21:04:13", + "stars": 4, + "verifiedUser": true + }, + { + "id": "92677b56-34c3-47ef-9ae3-ef4bbb595086", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "daviselizabeth", + "reviewDate": "2022-11-27T04:59:10", + "stars": 4, + "verifiedUser": false + }, + { + "id": "233f81b7-f895-4504-b67f-a35f64f86679", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ubaker", + "reviewDate": "2022-05-19T14:09:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2b751ab7-c632-4db1-91cd-e6d3f8cd3d3f", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "martinezheather", + "reviewDate": "2022-05-28T10:49:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d11d7dee-11c1-41f6-95ed-ea8292313463", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "williampage", + "reviewDate": "2022-06-17T05:13:52", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b9670954-dea3-4488-9386-c718290c73c5", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "heather09", + "reviewDate": "2022-09-22T11:40:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "27327735-9198-4ad6-b369-e795e3102c8d", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kaisermichael", + "reviewDate": "2021-08-16T13:53:35", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3e2455f4-3f2e-42a9-a156-7463c2b3974a", + "productId": "92e83d78-32d0-4107-a905-68634bfd7f3d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithmarie", + "reviewDate": "2021-07-28T05:35:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Mini (Silver)", + "description": "This Basic Keyboard Mini (Silver) is powered by a brand new chip used in many of the other keyboards. It's a little different from the keyboard we're used to, only slightly different.\n\nWhile this simple, simple piece of hardware is pretty cool, it won't do a whole lot for your writing habits. Thankfully, this new keyboard will help you focus on what you're doing the most, and is designed to do just that. It comes with two very clever", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-05-18T08:59:33", + "price": 268.54, + "stock": 77, + "priceHistory": [ + { + "priceDate": "2021-06-03T12:31:35", + "newPrice": 287.12 + }, + { + "priceDate": "2022-06-30T12:31:35", + "newPrice": 294.27 + }, + { + "priceDate": "2022-08-29T12:31:35", + "newPrice": 268.54 + } + ], + "descriptionVector": [ + -0.0006774920038878918, + 0.009443508461117744, + -0.021920496597886086, + -0.014890529215335846, + -0.00038783688796684146, + -0.006536424625664949, + 0.04357616603374481, + 0.002725014928728342, + 0.002947710920125246, + 0.0038941684179008007, + 0.06509941816329956, + -0.04600776359438896, + 0.02590494602918625, + -0.050076477229595184, + 0.015191469341516495, + 0.04677816852927208, + -0.057154592126607895, + 0.00399347860366106, + 0.001443009008653462, + -0.009250907227396965, + -0.01895924285054207, + -0.07665552943944931, + -0.11228686571121216, + -0.027205009013414383, + -0.019801875576376915, + 0.00685542169958353, + -0.01263949554413557, + 0.03914632275700569, + -0.07025151699781418, + 0.023413160815835, + 0.01883886754512787, + 0.014722002670168877, + -0.06827735155820847, + -0.001938055967912078, + 0.02799949049949646, + -0.03541466221213341, + -0.029395854100584984, + -0.04935421794652939, + -0.02342519722878933, + 0.0027325383853167295, + 0.08455220609903336, + 0.022197362035512924, + 0.00380388624034822, + -0.005702819675207138, + -0.005019685253500938, + 0.10179007053375244, + -0.03707585111260414, + -0.047885630279779434, + 0.0013971156440675259, + -0.01162833534181118, + 0.06991446763277054, + 0.04369654133915901, + 0.01581742614507675, + 0.030888518318533897, + 0.04451509937644005, + -0.009503697045147419, + -0.03336826711893082, + 0.01062921341508627, + 0.06476236879825592, + -0.0741998553276062, + 0.005901440512388945, + -0.033994223922491074, + -0.015167394652962685, + -0.02756613679230213, + -0.021691780537366867, + -0.01874256506562233, + -0.056817539036273956, + 0.013686767779290676, + 0.09577126055955887, + 0.007264700252562761, + -0.08156687766313553, + -0.011080624535679817, + -0.01401178352534771, + 0.07757038623094559, + 0.000672225549351424, + -0.019236108288168907, + 0.07569251954555511, + 0.028793973848223686, + 0.09957514703273773, + 0.008847646415233612, + 0.013590467162430286, + -0.017273977398872375, + -0.05542117729783058, + -0.0873449295759201, + -0.006027835421264172, + -0.0029115979559719563, + 0.07766669243574142, + -0.04959497228264809, + -0.02775873988866806, + 0.06649578362703323, + -0.08999320864677429, + 0.019825950264930725, + 0.00031109710107557476, + 0.011194981634616852, + 0.047693029046058655, + 0.03943522647023201, + -0.03462018072605133, + 0.0327182374894619, + 0.006054920144379139, + -0.05806945264339447, + 0.05599898099899292, + 0.0077040730975568295, + -0.05402481555938721, + -0.05782870203256607, + 0.008281879127025604, + 0.05753979831933975, + 0.04451509937644005, + 0.026747578755021095, + -0.05123208835721016, + -0.10516060143709183, + -0.03055146522819996, + 0.007162380497902632, + -0.012434856034815311, + 0.02366594970226288, + -0.04162606969475746, + -0.017586953938007355, + -0.08474480360746384, + -0.008378179743885994, + -0.008444386534392834, + -0.005525264889001846, + 0.0737183541059494, + 0.04497252777218819, + -0.010141690261662006, + 0.061969637870788574, + -0.07145527750253677, + 0.0642327144742012, + -0.02828839421272278, + -0.017322126775979996, + 0.02985328435897827, + -0.05806945264339447, + -0.06404010951519012, + 0.02100563794374466, + 0.02576049603521824, + 0.059128761291503906, + -0.003223071340471506, + 0.017598992213606834, + 0.029805133119225502, + 0.09630091488361359, + -0.06018807366490364, + 0.0074392459355294704, + -0.005723885726183653, + 0.01620262861251831, + -0.0016897801542654634, + 0.005125014577060938, + -0.026675354689359665, + -0.042902059853076935, + -0.08407069742679596, + 0.07232198864221573, + 0.02799949049949646, + 0.06201779097318649, + -0.001590469852089882, + -0.031153347343206406, + -0.05614343285560608, + -0.0695774108171463, + -0.0324774831533432, + 0.03206820413470268, + -0.023774288594722748, + -0.027205009013414383, + -0.019837988540530205, + 0.008504575118422508, + 0.011092661879956722, + -0.017791593447327614, + -0.01393955759704113, + 0.022245511412620544, + -0.022594602778553963, + 0.047307826578617096, + 0.019115731120109558, + 0.11623520404100418, + -0.04133716970682144, + 0.020439868792891502, + -0.0678921490907669, + 0.007920750416815281, + -0.006482255645096302, + -0.03567948937416077, + 0.029371779412031174, + -0.024027079343795776, + 0.03040701523423195, + -0.02535121701657772, + 0.009624073281884193, + -0.06206594035029411, + 0.033440493047237396, + 0.06765139102935791, + -0.038255538791418076, + 0.028673598542809486, + 0.1243244856595993, + -0.01649153232574463, + -0.027132783085107803, + 0.008986079134047031, + -0.031008895486593246, + -0.005061816889792681, + 0.04145754501223564, + -0.00588639359921217, + -0.04851158708333969, + -0.010033351369202137, + 0.041096415370702744, + 0.03303121402859688, + -0.017045261338353157, + -0.013506203889846802, + 0.03250155970454216, + 0.049787573516368866, + 0.013193225488066673, + 0.07294794172048569, + 0.006078995298594236, + -0.045694783329963684, + 0.03194782882928848, + 0.033320117741823196, + -0.01644338108599186, + -0.01042457390576601, + 0.04254093021154404, + 0.013181188143789768, + 0.01146582793444395, + 0.012687645852565765, + 0.01408400945365429, + -0.014806265942752361, + 0.07814819365739822, + -0.015227582305669785, + -0.0186703409999609, + 0.016768397763371468, + -0.027205009013414383, + -0.04249278083443642, + 0.05075058341026306, + 0.005621565971523523, + 0.05965841934084892, + -0.021776044741272926, + -0.022113097831606865, + -0.0378221832215786, + -0.0029206261970102787, + 0.04258907958865166, + 0.029732907190918922, + 0.059321366250514984, + -0.07949640601873398, + 0.003295297035947442, + -0.033633094280958176, + 0.07309239357709885, + -0.03531835973262787, + 0.013145075179636478, + 0.05103948712348938, + -0.03558318689465523, + -0.12365037947893143, + 0.04408174380660057, + -0.005437992513179779, + 0.04648926854133606, + -0.07829264551401138, + -0.04709114879369736, + 0.04555033519864082, + 0.002415046328678727, + 0.08599671721458435, + 0.00639799190685153, + -0.08811534196138382, + 0.00263322819955647, + -0.021968645974993706, + 0.02763836272060871, + 0.03514983505010605, + 0.08219283074140549, + -0.05123208835721016, + 0.10400498658418655, + 0.03546281158924103, + -0.03177930414676666, + -0.017911970615386963, + -0.056817539036273956, + 0.03965190052986145, + -0.00467962259426713, + 0.012091783806681633, + 0.031514473259449005, + -0.07294794172048569, + -0.008522630669176579, + 0.07713703066110611, + -0.07463321089744568, + -0.035775791853666306, + 0.05614343285560608, + 0.04964312165975571, + 0.003202005522325635, + 0.06312525272369385, + 0.006235484499484301, + -0.09630091488361359, + 0.001067585893906653, + -0.03767773509025574, + 0.036088768392801285, + -0.05855095759034157, + -0.0564323365688324, + 0.05176174268126488, + 0.08055571466684341, + 0.09639721363782883, + 0.014228460378944874, + 0.049835722893476486, + 0.024015041068196297, + 0.03678695112466812, + 0.029347704723477364, + -0.024075228720903397, + 0.0032531653996556997, + -0.03437942638993263, + 0.03445165231823921, + 0.0004499058413784951, + 0.0737183541059494, + 0.03707585111260414, + -0.0605732761323452, + 0.03750920668244362, + 0.045261431485414505, + 0.020475981757044792, + -0.0027310338336974382, + -0.02571234479546547, + -0.057202745229005814, + -0.061728887259960175, + -0.08691157400608063, + -0.005645641125738621, + 0.024255793541669846, + 0.010713476687669754, + 0.03876112028956413, + -0.08190392702817917, + 0.02104175090789795, + 0.04001303017139435, + -0.01147184707224369, + 0.03994080424308777, + 0.010039370507001877, + 0.050317227840423584, + -0.05128023773431778, + 0.031586699187755585, + -0.01657579466700554, + -0.04677816852927208, + -0.02804764173924923, + -0.054217416793107986, + -0.029612531885504723, + -0.06948111206293106, + 0.12153175473213196, + -0.00175448227673769, + -0.038375914096832275, + 0.0032652029767632484, + -0.000823071866761893, + 0.02792726643383503, + -0.015359995886683464, + -0.013397864997386932, + -0.02102971263229847, + -0.05845465511083603, + -0.026266075670719147, + -0.029564380645751953, + -0.08628562092781067, + 0.033609021455049515, + 0.08590041846036911, + 0.006777177099138498, + 0.0506061315536499, + -0.007445264607667923, + 0.03514983505010605, + 0.03953152522444725, + -0.05079873278737068, + -0.0600917711853981, + -0.06336600333452225, + -0.0754036158323288, + -0.014264573343098164, + -0.005871346686035395, + -0.024424320086836815, + 0.0015678992494940758, + -0.06731434166431427, + 0.08358919620513916, + -0.05195434391498566, + 0.0824817344546318, + -0.03286268934607506, + -0.01260338257998228, + -0.002467710990458727, + 0.03666657209396362, + 0.08460035175085068, + 0.045213278383016586, + -0.07208123803138733, + 0.09028211236000061, + 0.015697048977017403, + -0.06413640826940536, + -0.007457302417606115, + -0.03953152522444725, + -0.05874355882406235, + -0.03765365853905678, + 0.02828839421272278, + 0.024231718853116035, + 0.012723758816719055, + -0.04877641424536705, + 0.029010651633143425, + 0.03953152522444725, + 0.024195605888962746, + -0.03495723381638527, + 0.006897553335875273, + -0.02568827010691166, + 0.04713929817080498, + 0.01059310045093298, + 2.6590902052703314e-05, + -0.026121623814105988, + -0.024966012686491013, + 0.005245390348136425, + -0.08936724811792374, + -0.03750920668244362, + -0.004784951917827129, + -0.001226332038640976, + 0.03955560177564621, + -0.08209653198719025, + -0.04403359442949295, + -0.031418174505233765, + 0.024063192307949066, + 0.004086770117282867, + -0.01060513872653246, + -0.0067410641349852085, + 0.0018568020313978195, + 0.05431371554732323, + -0.0006406268221326172, + -0.0035571150947362185, + 0.03466833010315895, + 0.028360620141029358, + -0.05556562915444374, + -0.010274103842675686, + -0.0778592899441719, + -0.03967597708106041, + 0.04487622529268265, + -0.024725260213017464, + -0.09028211236000061, + 0.03743698075413704, + -0.02597717195749283, + 0.006873477715998888, + -0.027373535558581352, + 0.026940181851387024, + 0.017984196543693542, + 0.01153203472495079, + 0.02330482192337513, + 0.04246870428323746, + 0.017105450853705406, + 0.057010143995285034, + -0.030575541779398918, + -0.029540305957198143, + -0.01644338108599186, + 0.0047638858668506145, + -0.019681500270962715, + 0.026867955923080444, + -0.04451509937644005, + 0.01591372676193714, + -0.014758115634322166, + -0.011140812188386917, + 0.008986079134047031, + -0.04819860681891441, + -0.03907409682869911, + -0.04403359442949295, + -0.07222568988800049, + -0.05561377853155136, + 0.08435960114002228, + -0.011062568053603172, + 0.0800260603427887, + 0.015672974288463593, + -0.042613156139850616, + -0.06586982309818268, + -0.059562116861343384, + -0.1262505054473877, + 0.03955560177564621, + -0.06302894651889801, + 0.03676287457346916, + 0.03702770173549652, + -0.028505071997642517, + -0.05344700813293457, + -0.019970402121543884, + -0.028336545452475548, + -0.014156234450638294, + 0.1155610978603363, + -0.027012407779693604, + 0.049739424139261246, + 0.03695547580718994, + 0.022462189197540283, + 0.010213916189968586, + 0.0047668954357504845, + 0.034090522676706314, + -0.01839347556233406, + -0.01598595269024372, + 0.005140061490237713, + -0.05383221060037613, + -0.013638617470860481, + 0.0023638864513486624, + -0.022654790431261063, + 0.023617800325155258, + 0.013614541850984097, + -0.06235484406352043, + -0.017791593447327614, + -0.011447771452367306, + 0.05368776246905327, + -0.03182745352387428, + -0.0301662627607584, + -0.011044511571526527, + -0.017310090363025665, + 0.01656375825405121, + -0.03401830047369003, + -0.02089729905128479, + -0.05484337359666824, + -0.04020563140511513, + 0.0186703409999609, + -0.008943947963416576, + -0.004411785863339901, + -0.018080497160553932, + 0.09687872231006622, + 0.012543193995952606, + -0.03476463258266449, + 0.013795106671750546, + 0.031249647960066795, + -0.03962782770395279, + 0.006289653480052948, + 0.05532487481832504, + -0.009906956925988197, + 0.013036736287176609, + -0.021559366956353188, + 0.10294567793607712, + -0.015540560707449913, + -0.033705320209264755, + -0.018092535436153412, + 0.03707585111260414, + -0.0228714682161808, + 0.054939672350883484, + -0.035823941230773926, + 0.031514473259449005, + 0.0659179762005806, + 0.03671472519636154, + 0.011658430099487305, + -0.100730761885643 + ] + }, + { + "id": "4e19ceb8-063e-4309-9042-a12ab00d3e5f", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jtaylor", + "reviewDate": "2022-04-19T06:48:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5607cd51-8bf0-4cea-8381-4aa8d65016b6", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "arice", + "reviewDate": "2021-06-10T23:18:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d88401ca-899c-4dab-853f-c0b2c56d2e19", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "campbellkristen", + "reviewDate": "2022-01-19T10:08:40", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fef5ea98-8cd9-4ed1-b183-82379d10814f", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wwhite", + "reviewDate": "2021-06-03T12:31:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "98498f7d-5268-4775-a1cf-d704ca458c75", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ggreen", + "reviewDate": "2022-04-29T01:26:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8fbaf85c-ec89-4b37-ae68-0646a9351f5f", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mhenry", + "reviewDate": "2022-05-13T09:06:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aa6ce6b4-e85b-417d-8b9f-8b7ebf95024e", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardhurst", + "reviewDate": "2021-09-09T13:03:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a64cc39e-bd29-469a-b152-59f1d5d4274b", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jenkinshaley", + "reviewDate": "2021-11-25T21:02:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9a526bd6-d989-4386-89a6-bb5b7e4f1a97", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wadejonathon", + "reviewDate": "2022-06-30T19:04:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ccfd5c7a-8800-4670-b088-0125e5d13dec", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnmorgan", + "reviewDate": "2021-08-09T23:08:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "5a19bfb0-e65b-458d-b14d-0aca19fd8378", + "productId": "ff65ebba-4e36-4c48-9351-7ebd60887ddd", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rcarlson", + "reviewDate": "2021-12-10T20:56:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "product", + "name": "Awesome TV + (Steel)", + "description": "This Awesome TV + (Steel) is the latest entry in Steven Soderbergh's series, and it's pretty much always pretty damn funny to see his stuff succeed. The series is based around a young college student, with a passion, who discovers a new way of interacting with people through video games. The first three episodes were a mix of the old and new, from \"It's Okay To Be Human\"", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-05-20T11:08:49", + "price": 570.25, + "stock": 22, + "priceHistory": [ + { + "priceDate": "2021-05-11T11:09:51", + "newPrice": 605.35 + }, + { + "priceDate": "2025-01-10T11:09:51", + "newPrice": 570.25 + } + ], + "descriptionVector": [ + -0.009953251108527184, + 0.031618643552064896, + -0.05026978254318237, + 0.047786641865968704, + -0.053856540471315384, + -0.03837830200791359, + 0.005238735117018223, + 0.020872168242931366, + 0.013691755943000317, + 0.09286942332983017, + 0.08895158022642136, + -0.02850092574954033, + 0.02999080903828144, + 0.051538944244384766, + 0.017478544265031815, + -0.05109749734401703, + -0.038654208183288574, + 0.08150216192007065, + -0.046820975840091705, + -0.04817290976643562, + 0.09496629983186722, + 0.011629370972514153, + -0.08001227676868439, + 0.02088596299290657, + -0.0013001995394006371, + -0.0225965715944767, + -0.030101170763373375, + 0.021768856793642044, + -0.01934089884161949, + -0.02850092574954033, + -0.044696513563394547, + -0.009360057301819324, + 0.010953404940664768, + -0.021258434280753136, + 0.0200168639421463, + 0.0364745631814003, + -0.05871245637536049, + 0.03928878903388977, + -0.004945586435496807, + 0.015795527026057243, + -0.05335991084575653, + -0.015740346163511276, + -0.017809629440307617, + 0.061637043952941895, + 0.04213060438632965, + -0.04064071923494339, + -0.04759351164102554, + -0.10197427123785019, + -0.02560392953455448, + -0.0022227547597140074, + 0.016374927014112473, + -0.030045989900827408, + 0.07763949781656265, + -0.010560241527855396, + -0.03595034405589104, + -0.00114155444316566, + 0.04913857579231262, + -0.0519803911447525, + -0.003243601182475686, + -0.07405274361371994, + -0.04806254804134369, + -0.04613121598958969, + 0.039178427308797836, + 0.018071739003062248, + 0.01992029882967472, + -0.005183554254472256, + 0.0030297753401100636, + 0.064561627805233, + -0.04571735858917236, + -0.009732527658343315, + 0.0024434784427285194, + 0.011863889172673225, + 0.005593962036073208, + 0.07410792261362076, + 0.008290927857160568, + 0.029494181275367737, + 0.08889640122652054, + 0.032777443528175354, + -0.05457388982176781, + -0.07603925466537476, + 0.023713983595371246, + 0.007835685275495052, + 0.03495708853006363, + 0.025010734796524048, + 0.07267322391271591, + 0.019713370129466057, + 0.0044386121444404125, + -0.10898224264383316, + 0.07763949781656265, + 0.0845922902226448, + 0.06412018090486526, + 0.08464746922254562, + 0.007045908831059933, + -0.07708769291639328, + -0.006266478914767504, + 0.011008585803210735, + -0.03964746370911598, + 0.059374626725912094, + -0.01616799831390381, + -0.0030953024979680777, + 0.10114655643701553, + -0.028100863099098206, + 0.011250002309679985, + -0.11229309439659119, + -0.029714904725551605, + -0.032970577478408813, + -0.0658307895064354, + 0.09789088368415833, + 0.0018106226343661547, + -0.06754139810800552, + -0.006107833702117205, + -0.004855917766690254, + -0.035453714430332184, + 0.036722876131534576, + 0.06897610425949097, + 0.02295524626970291, + -0.10445740818977356, + 0.020485902205109596, + 0.010256745852530003, + -0.015188537538051605, + 0.005424970295280218, + 0.005452560726553202, + -0.09645617753267288, + 0.02908032387495041, + -0.026735136285424232, + -0.01636113040149212, + 0.01381591334939003, + 0.06610669940710068, + 0.0008022782858461142, + -0.005683630704879761, + -0.06213367357850075, + 0.04963520169258118, + -0.002177920425310731, + 0.07918456196784973, + -0.03926119580864906, + 0.04237891733646393, + -0.03225322440266609, + 0.005711221136152744, + 0.008166770450770855, + 0.03832312300801277, + -0.017119867727160454, + 0.059153903275728226, + -0.012015637010335922, + 0.02356223575770855, + 0.022389642894268036, + 0.00803571566939354, + -0.024155430495738983, + -0.007221797946840525, + -0.028638876974582672, + 0.015257514081895351, + 0.0981116071343422, + 0.00036190898390486836, + -0.04922134429216385, + -0.012519162148237228, + 0.06980381160974503, + 0.043786030262708664, + 0.005507741589099169, + 0.016995711252093315, + -0.04693134129047394, + 0.03432250767946243, + -0.0038833545986562967, + -0.06925200670957565, + -0.05987125635147095, + 0.03250153735280037, + -0.001515749841928482, + -0.05587064102292061, + 0.05170448496937752, + 0.008532343432307243, + -0.05766402184963226, + 0.021217048168182373, + 0.08210915327072144, + -0.017050892114639282, + 0.09314532577991486, + -0.0051249242387712, + -0.007042460143566132, + -0.03269467130303383, + 0.08718579262495041, + -0.03992336615920067, + -0.08768241852521896, + 0.00017190138169098645, + -0.06356837600469589, + 0.018168305978178978, + -0.05046291649341583, + -0.02110668644309044, + 0.04381361976265907, + 0.019478851929306984, + 0.031177198514342308, + -0.04022686183452606, + -0.042240966111421585, + -0.05311159789562225, + 0.016871554777026176, + -0.02847333438694477, + 0.0652237981557846, + -0.11157574504613876, + 0.03967505320906639, + 0.027493873611092567, + -0.04535868391394615, + -0.1013672798871994, + -0.049497250467538834, + 0.05810546875, + -0.056670766323804855, + -0.047979775816202164, + 0.12029431760311127, + -0.033356841653585434, + 0.06417536735534668, + 0.03360515832901001, + 0.03625383973121643, + 0.014512571506202221, + 0.022872475907206535, + 0.01900981366634369, + -0.0044903443194925785, + -0.03992336615920067, + -0.002924586646258831, + 0.05278051272034645, + 0.011739732697606087, + -0.06042306497693062, + -0.004769697319716215, + 0.07372165471315384, + -0.042847953736782074, + 0.03893011063337326, + 0.08851013332605362, + -0.002477966481819749, + 0.0022227547597140074, + -0.06886573880910873, + 0.07272840291261673, + -0.027121402323246002, + 0.04770387336611748, + 0.03812998905777931, + 0.019202945753932, + 0.03412937372922897, + -0.08856531232595444, + -0.013098562136292458, + -0.09816678613424301, + 0.043013498187065125, + -0.031811777502298355, + -0.03746781870722771, + 0.04958002269268036, + -0.004442060831934214, + -0.06080933287739754, + 0.025548748672008514, + -0.027383511886000633, + 0.05865727737545967, + -0.05247701704502106, + -0.06097487360239029, + 0.041496023535728455, + 0.029328638687729836, + 0.04784182459115982, + 0.0729491263628006, + -0.004455856047570705, + -0.023713983595371246, + -0.028583696112036705, + -0.03492949903011322, + 0.02869405783712864, + 0.04083385318517685, + 0.03076334111392498, + 0.0861925333738327, + 0.04480687528848648, + -0.058767639100551605, + -0.0018106226343661547, + -0.031259968876838684, + -0.09325569123029709, + 0.013553803786635399, + -0.0064768558368086815, + 0.028638876974582672, + 0.02440374530851841, + 0.0062078493647277355, + -0.0038316224236041307, + -0.0839301198720932, + -0.045110370963811874, + 0.05013183131814003, + 0.03001839853823185, + 0.014457390643656254, + 0.01946505531668663, + 0.010146384127438068, + 0.01994788832962513, + -0.056477632373571396, + 0.029742494225502014, + 0.013202025555074215, + -0.05264256149530411, + -0.01491263322532177, + 0.039950959384441376, + -0.017050892114639282, + 0.04011650010943413, + -0.012422596104443073, + 0.0474555566906929, + -0.04676579684019089, + 0.015698960050940514, + -0.01949264667928219, + 0.024845192208886147, + -0.04613121598958969, + -0.026169532909989357, + -0.055125702172517776, + 0.08337831497192383, + 0.03724709525704384, + 0.03531576320528984, + 0.0464898906648159, + -0.0026003990788012743, + 0.05203557014465332, + 0.052890874445438385, + -0.02560392953455448, + 0.06947273015975952, + 0.023286331444978714, + -0.04008891060948372, + -0.02828020229935646, + -0.06798284500837326, + 0.03650215268135071, + 0.03506745025515556, + 0.0027918077539652586, + -0.03606070578098297, + -0.08470265567302704, + 0.04221337288618088, + 0.0048455712385475636, + -0.060864511877298355, + 0.0054663559421896935, + -0.017230229452252388, + -0.047731462866067886, + 0.08227469027042389, + -0.013277899473905563, + -0.015726551413536072, + -0.032198045402765274, + 0.08635807782411575, + 0.05145617201924324, + -0.058050286024808884, + 0.04276518151164055, + 0.04726242646574974, + 0.01707848347723484, + 0.03812998905777931, + -0.060478243976831436, + -0.018775295466184616, + 0.007966740056872368, + -0.044365428388118744, + 0.05987125635147095, + -0.06224403530359268, + 0.08657880127429962, + 0.08117107301950455, + -0.07074189186096191, + 0.013415851630270481, + -0.018899451941251755, + 0.0400337278842926, + 0.015767937526106834, + 0.020182406529784203, + 0.04919375479221344, + 0.07195586711168289, + 0.012732988223433495, + -0.014071124605834484, + -0.028914781287312508, + 0.026679955422878265, + -0.006642398424446583, + 0.04894544184207916, + -0.0024952103849500418, + 0.0018330399179831147, + -0.028914781287312508, + -0.004555871710181236, + 0.004983523394912481, + 0.016540469601750374, + 0.00041083889664150774, + 0.01939607970416546, + -0.020748011767864227, + 0.0778050422668457, + -0.0005440490203909576, + 0.07659105956554413, + -0.014388415031135082, + 0.02804568223655224, + 0.05827100947499275, + -0.015588599257171154, + -0.01804414764046669, + -0.06599633395671844, + 0.0007781366584822536, + -0.0071321288123726845, + 0.012491571716964245, + 0.0416339747607708, + 0.012850247323513031, + -0.037136733531951904, + 0.004617949947714806, + -0.016292154788970947, + 0.00011618161806836724, + 0.03686082735657692, + 0.010015330277383327, + 0.026293689385056496, + 0.06709995120763779, + -0.07736359536647797, + -0.03992336615920067, + -0.022679341956973076, + 0.03495708853006363, + -0.050076648592948914, + 0.02476241998374462, + -0.0029676968697458506, + -0.04933170601725578, + -0.07504599541425705, + 0.04963520169258118, + -0.008690988644957542, + -0.023713983595371246, + -0.013850401155650616, + 0.054242804646492004, + 0.05170448496937752, + -0.04988351836800575, + 0.021479157730937004, + 0.0774739608168602, + 0.06621705740690231, + -0.006387187168002129, + -0.05749847739934921, + 0.06858983635902405, + 0.08205396682024002, + -0.0432618111371994, + -0.06687922775745392, + -0.023451874032616615, + -0.03992336615920067, + -0.029935628175735474, + 0.01910638064146042, + -0.02498314343392849, + -0.006225093267858028, + -0.012526060454547405, + -0.03206009045243263, + 0.014636728912591934, + 0.09320050477981567, + 0.015505827963352203, + 0.041689157485961914, + 0.0451931431889534, + 0.06511344015598297, + -0.014719500206410885, + 0.061416320502758026, + 0.06461681425571442, + 0.06461681425571442, + -0.02295524626970291, + -0.030432255938649178, + 0.008235746063292027, + 0.006287171505391598, + 0.00654583191499114, + -0.041302889585494995, + -0.04704170301556587, + 0.03909565508365631, + -0.018747704103589058, + -0.016678420826792717, + -0.0022348256316035986, + 0.027962911874055862, + -0.03738504648208618, + 0.057995107024908066, + 0.02030656486749649, + 0.010332619771361351, + 0.005018011201173067, + -0.009822197258472443, + -0.013146844692528248, + -0.006607910618185997, + 0.016154203563928604, + -0.03412937372922897, + 0.014981608837842941, + 0.004328250419348478, + 0.023989887908101082, + 0.01087753102183342, + 0.011981149204075336, + -0.0025969501584768295, + 0.004035101737827063, + -0.04880749061703682, + 0.006373391952365637, + -0.00882894080132246, + -0.050021469593048096, + 0.02685929462313652, + 0.03812998905777931, + -0.019382284954190254, + 0.008235746063292027, + 0.07885348051786423, + 0.03738504648208618, + 0.011856991797685623, + 0.023065607994794846, + -0.01058783195912838, + -0.04138566181063652, + -0.06858983635902405, + -0.00201410218141973, + -0.008401289582252502, + 0.03283262252807617, + -0.045082781463861465, + -0.061416320502758026, + -0.07057634741067886, + 0.02481760084629059, + 0.01949264667928219, + -0.05184243619441986, + 0.010884428396821022, + -0.04190988093614578, + 0.03159105405211449, + 0.026914475485682487, + 0.00789086613804102, + -0.002683170372620225, + 0.05854691565036774, + -0.007966740056872368, + 0.0017261269968003035, + -0.0008384907268919051, + 0.016568059101700783, + 0.013650370761752129, + -0.02007204480469227, + -0.0036453870125114918, + 0.017906196415424347, + -0.051759667694568634, + 0.011332773603498936, + 0.002712485147640109, + -0.03095647506415844, + -0.03462600335478783, + -0.02908032387495041, + 0.014050431549549103, + -0.023479465395212173, + -0.03953710198402405, + -0.032198045402765274, + 0.047207243740558624, + -0.06544452160596848, + 0.054435938596725464, + -0.07438382506370544, + -0.05471184477210045, + 0.054435938596725464, + 0.05253219977021217, + 0.05887800082564354, + 0.025797061622142792, + 0.004117873031646013, + 0.0971735343337059 + ] + }, + { + "id": "d56b5731-b738-4042-8d0f-aacf2e0d7cde", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "chambersvictoria", + "reviewDate": "2021-09-19T15:48:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e4366f9f-b780-495d-844d-e1317d369914", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "danielwelch", + "reviewDate": "2022-10-21T20:41:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3757fcae-8b73-4d63-b17d-078d06394a56", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "carly61", + "reviewDate": "2022-11-10T23:25:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0b3e08a8-99f3-48ec-9f41-e6e3c04ed4e2", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "kmann", + "reviewDate": "2022-01-04T21:57:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "5c9eee12-ddc1-4396-a4fd-3fabc5c8f7df", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "pescobar", + "reviewDate": "2021-05-11T11:09:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1cac7370-56cd-494a-84f2-e0a9d9538458", + "productId": "132f98d7-3cfc-400d-836a-0025f0a391d1", + "category": "Media", + "docType": "customerRating", + "userName": "jason19", + "reviewDate": "2022-04-23T00:03:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bf04935a-4827-496f-8916-e7f36318a608", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Mouse 3000 (Silver)", + "description": "This Awesome Mouse 3000 (Silver) is rated 4.3 out of 5 by 4.\n\nRated 5 out of 5 by Bill S from Nice and stylish I'm not an avid mouse watcher, but this mouse has an unusual look. I bought this mouse three months after my son named it Max. Both the price and looks are of great quality, and I'm getting ready to try it out with my son when Christmas comes around.\n\nRated 5 out of", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2020-12-29T14:59:15", + "price": 866.35, + "stock": 3, + "priceHistory": [ + { + "priceDate": "2021-05-23T22:38:17", + "newPrice": 934.76 + }, + { + "priceDate": "2021-10-09T22:38:17", + "newPrice": 847.95 + }, + { + "priceDate": "2022-02-25T22:38:17", + "newPrice": 808.65 + }, + { + "priceDate": "2022-07-14T22:38:17", + "newPrice": 860.99 + }, + { + "priceDate": "2022-11-30T22:38:17", + "newPrice": 926.39 + }, + { + "priceDate": "2023-02-21T22:38:17", + "newPrice": 866.35 + } + ], + "descriptionVector": [ + -0.04962056502699852, + -0.007342382799834013, + -0.028218653053045273, + 0.0477614551782608, + 0.029281003400683403, + 0.027731742709875107, + -0.07719738036394119, + 0.014551972039043903, + 0.0335746631026268, + 0.09207027405500412, + 0.021922020241618156, + -0.033220548182725906, + 0.021999483928084373, + -0.06533448398113251, + -0.01192929781973362, + 0.03835523501038551, + -0.06475904583930969, + -0.006257901433855295, + -0.040811918675899506, + 0.023261023685336113, + 0.05595039576292038, + 0.003870381973683834, + -0.03915200009942055, + 0.05205511674284935, + 0.042272649705410004, + -0.031228642910718918, + 0.0007227571913972497, + 0.041033241897821426, + -0.005178953055292368, + -0.06281140446662903, + -0.01377734262496233, + 0.031472098082304, + 0.013279366306960583, + 0.08967998623847961, + 0.0038012186996638775, + -0.0233274195343256, + 0.013401093892753124, + -0.02049448899924755, + 0.05572907254099846, + 0.09729348868131638, + -0.023371685296297073, + -0.038266707211732864, + 0.017063986510038376, + -0.09596555680036545, + 0.0301884263753891, + 0.0067780097015202045, + -0.030232690274715424, + -0.003167682094499469, + 0.040900446474552155, + 0.040479935705661774, + 0.0361420102417469, + 0.048513952642679214, + -0.07064622640609741, + 0.0072372546419501305, + 0.03538951277732849, + -0.04156441614031792, + 0.02091500163078308, + 0.08547485619783401, + 0.03981596603989601, + -0.05586186796426773, + 0.03875361755490303, + -0.02808585949242115, + 0.014275318942964077, + -0.02934739924967289, + -0.049576301127672195, + -0.03990449756383896, + 0.006136173848062754, + 0.01668773777782917, + 0.028661299496889114, + 0.03968317434191704, + -0.05732259899377823, + -0.01123766414821148, + 0.013334697112441063, + 0.03191474452614784, + 0.03800112009048462, + 0.03180408105254173, + 0.055684808641672134, + 0.01383267343044281, + -0.04284808784723282, + -0.011431321501731873, + 0.029922839254140854, + -0.009699470363557339, + -0.011010807938873768, + 0.03167128935456276, + 0.06582139432430267, + -0.0015686250990256667, + -0.0016917359316721559, + -0.10765139758586884, + -0.04616792872548103, + 0.061306409537792206, + 0.008382599800825119, + 0.03620840609073639, + -0.00914063025265932, + -0.016842663288116455, + -0.003817817894741893, + -0.01061796024441719, + 0.015215940773487091, + 0.038797881454229355, + -0.00018968053336720914, + -0.0384216345846653, + 0.0363190658390522, + 0.03525671735405922, + -0.06506889313459396, + -0.035610832273960114, + -0.007536040153354406, + 0.007093394640833139, + -0.03175981715321541, + -0.03899707272648811, + -0.02567344158887863, + -0.1202225312590599, + 0.045990873128175735, + 0.005159587133675814, + -0.060642439872026443, + -0.08981277793645859, + -0.005682462360709906, + 0.06683947890996933, + -0.07015931606292725, + -0.01669880375266075, + -0.07887943834066391, + -0.005560734774917364, + 0.04656631126999855, + 0.023415949195623398, + 0.024987341836094856, + 0.04251610487699509, + 0.04107750579714775, + -0.018225930631160736, + -0.00660095177590847, + -0.021567903459072113, + 0.05519789829850197, + -0.04563675448298454, + -0.07157578319311142, + 0.02458895929157734, + 0.04559249058365822, + 0.024544695392251015, + -0.03758060559630394, + 0.1070316955447197, + -0.052940405905246735, + 0.012892051599919796, + -0.0004450662527233362, + 0.02830718271434307, + -0.03782406076788902, + -0.026780055835843086, + -0.014906088821589947, + 0.003361339680850506, + -0.027930933982133865, + -0.012261281721293926, + -0.08852910995483398, + 0.009788000024855137, + 0.0018134635174646974, + 0.07750723510980606, + 0.06289993226528168, + -0.03994876146316528, + -0.03769126906991005, + -0.03941758722066879, + -0.010059120133519173, + 0.024766018614172935, + -0.060553912073373795, + -0.014883956871926785, + -0.036252669990062714, + 0.04758439585566521, + -0.03167128935456276, + -0.003704389790073037, + -0.02850637212395668, + 0.015547924675047398, + 0.005959115456789732, + 0.05966861918568611, + 0.03707156330347061, + 0.05825215205550194, + -0.09640819579362869, + 0.020339563488960266, + -0.017595160752534866, + -0.04413175955414772, + 0.022043747827410698, + -0.0356772318482399, + 0.028572769835591316, + -0.015404065139591694, + 0.024345504119992256, + -7.49125683796592e-05, + 0.006280033849179745, + -0.0361420102417469, + 0.03946185111999512, + 0.05993420630693436, + -0.08596176654100418, + -0.008758848533034325, + 0.0962311401963234, + -0.014883956871926785, + 0.036385465413331985, + -0.010374505072832108, + -0.03897494077682495, + 0.0075637055560946465, + 0.024456165730953217, + 0.010529430583119392, + 0.013556019403040409, + -0.013212969526648521, + -0.012549000792205334, + 0.10596933960914612, + -0.0028771960642188787, + 0.020948199555277824, + -0.029103944078087807, + 0.027510421350598335, + -0.01753982901573181, + -0.02049448899924755, + 0.07972045987844467, + -0.011326192878186703, + 0.03326481208205223, + -0.02956872247159481, + 0.009400684386491776, + -0.02956872247159481, + 0.04448587819933891, + -0.025053737685084343, + 0.05493231117725372, + -0.011409188620746136, + 0.004343459382653236, + -0.0011564114829525352, + 0.05785377323627472, + 0.035013262182474136, + 0.022884774953126907, + 0.005629898048937321, + -0.01805993728339672, + -0.08737823367118835, + 0.01775008626282215, + 9.570481051923707e-05, + -0.013423225842416286, + 0.011121469549834728, + -0.09207027405500412, + -0.02967938408255577, + 0.07339063286781311, + -0.01656601019203663, + 0.04727454483509064, + -0.012670728377997875, + -0.04771719127893448, + -0.04320220649242401, + -0.026271013543009758, + 0.03720435872673988, + -0.07139872759580612, + 0.09251292049884796, + -0.08073854446411133, + -0.03607561066746712, + 0.03915200009942055, + 0.039838097989559174, + -0.0697166696190834, + 0.022320400923490524, + -0.02733336202800274, + -0.01888989843428135, + 0.03432716056704521, + -0.03231312334537506, + 0.08808646351099014, + -0.06745918095111847, + -0.07808267325162888, + -0.035123925656080246, + -0.05962435528635979, + -0.0013998665381222963, + -0.036274801939725876, + 0.09083086252212524, + 0.04731880873441696, + 0.034681279212236404, + 0.010955477133393288, + 0.03492473438382149, + -0.005837388336658478, + -0.01257113367319107, + -0.03698303550481796, + 0.10534963756799698, + -0.04211772233247757, + 0.07688753306865692, + -0.01910015568137169, + 0.013235101476311684, + 0.011115936562418938, + -0.06803461909294128, + -0.0144081125035882, + 0.0017844148678705096, + -0.05683568865060806, + -0.011541982181370258, + 0.06759197264909744, + -0.054002758115530014, + -0.04508344829082489, + -0.024124182760715485, + -0.0016087398398667574, + -0.016189761459827423, + -0.01827019453048706, + -0.04700895771384239, + 0.09809025377035141, + 0.05825215205550194, + 0.03494686633348465, + 0.03682810813188553, + 0.03388451784849167, + 0.0024857313837856054, + 0.0722840204834938, + -0.01941000670194626, + -0.00021233153529465199, + -0.014751162379980087, + -0.02069367840886116, + 0.04136522486805916, + 0.037846192717552185, + -0.04568101838231087, + 0.025208663195371628, + -0.0023570875637233257, + 0.02850637212395668, + 0.027820272371172905, + -0.03083026222884655, + 0.008271938189864159, + 0.04329073429107666, + 0.02394712343811989, + -0.11933723837137222, + -0.08883895725011826, + 0.031095849350094795, + 0.07617929577827454, + -0.0337517224252224, + 0.03297709301114082, + -0.040059421211481094, + -0.03800112009048462, + -0.017495565116405487, + 0.019553866237401962, + -0.02585049904882908, + 0.014175723306834698, + 0.12438339740037918, + -0.044397346675395966, + 0.018115269020199776, + 0.04466293379664421, + 0.015913106501102448, + 0.04891233146190643, + -0.03598708286881447, + -0.061704788357019424, + -0.02841784432530403, + 0.04231691360473633, + 0.02216547541320324, + -0.02037276141345501, + -0.02070474438369274, + -0.05440113693475723, + -0.05683568865060806, + -0.0219552181661129, + -0.010252777487039566, + -0.024212710559368134, + -0.0548880472779274, + -0.012792455963790417, + 0.034349292516708374, + -0.05980141460895538, + -0.006285566836595535, + 0.10198553651571274, + 0.10827109962701797, + 0.0728151947259903, + -0.021390845999121666, + 0.09446056187152863, + 0.02184455841779709, + 0.06254581362009048, + 0.03673958033323288, + -0.05333878844976425, + -0.009953991509974003, + -0.0739218071103096, + 0.04096684604883194, + 0.010861415416002274, + 0.0010201596887782216, + -0.08976851403713226, + -0.011541982181370258, + -0.04304727911949158, + 0.042184121906757355, + -0.02542998641729355, + 0.019498536363244057, + -0.012261281721293926, + 0.05493231117725372, + 0.052320703864097595, + -0.004752906505018473, + -0.008974638767540455, + -0.002059685066342354, + 0.053471580147743225, + -0.02026209980249405, + -0.02713417261838913, + -0.011685842648148537, + 0.07069049030542374, + 0.028971150517463684, + -0.0819779559969902, + -0.01451877411454916, + -0.06790182739496231, + -0.020638348534703255, + 0.07339063286781311, + -0.055286429822444916, + 0.0022090778220444918, + 0.04603513702750206, + 0.040280744433403015, + -0.0755595937371254, + 0.02514226734638214, + 0.019044823944568634, + 0.07024785131216049, + 0.04422029107809067, + 0.037956856191158295, + 0.00720958923920989, + -0.026558732613921165, + -0.04205132648348808, + 0.00018259129137732089, + -0.0432686023414135, + -0.034570615738630295, + 0.04754013195633888, + 0.05550774931907654, + -0.0032340791076421738, + 0.06595418602228165, + 0.011564115062355995, + -0.07131019979715347, + 0.03782406076788902, + 0.04178573936223984, + -0.006152773275971413, + -0.04251610487699509, + -0.05807509645819664, + 0.010108917951583862, + 0.029170341789722443, + 0.028771961107850075, + 0.023083964362740517, + -0.0025203130207955837, + 0.03724862262606621, + 0.04156441614031792, + -0.101365827023983, + -0.05626024678349495, + -0.021899888291954994, + -0.04061272740364075, + 0.04802704229950905, + 0.02545211836695671, + -0.003848249791190028, + 0.016234025359153748, + 0.07498415559530258, + -0.02481028251349926, + 0.0889274924993515, + -0.10464140772819519, + 0.02841784432530403, + 0.03514605760574341, + 0.016079099848866463, + 0.06462624669075012, + -0.04318007454276085, + 0.022995436564087868, + -0.06471478193998337, + -0.031007319688796997, + 0.10083465278148651, + -0.0632983148097992, + 0.006025512237101793, + -0.05497657507658005, + -0.058562006801366806, + 0.026448071002960205, + -0.039439719170331955, + 0.017584094777703285, + -0.025098001584410667, + 0.04754013195633888, + 0.02788667008280754, + -0.002600542502477765, + 0.03864295780658722, + -0.06781329959630966, + -0.0036324600223451853, + 0.05608319118618965, + -0.050727181136608124, + 0.024655357003211975, + -0.020439157262444496, + 0.03432716056704521, + -0.010263843461871147, + 0.017783284187316895, + 0.03397304564714432, + -0.012073157355189323, + -0.0464777834713459, + -0.009267890825867653, + 0.05988994240760803, + -0.006158306263387203, + 0.018535781651735306, + 0.05710127577185631, + -0.015868842601776123, + -0.01562538743019104, + -0.029103944078087807, + 0.05657010152935982, + 0.01901162602007389, + -0.014153591357171535, + -0.026691526174545288, + -0.019155485555529594, + -0.017130382359027863, + -0.04877953976392746, + -0.02374793402850628, + 0.03337547555565834, + -0.05112555995583534, + -0.026669394224882126, + -0.019033757969737053, + 0.04422029107809067, + -0.010700955986976624, + -0.03926265984773636, + 0.05732259899377823, + 0.011331725865602493, + 0.04891233146190643, + 0.10189700126647949, + 0.06409507244825363, + 0.01520487479865551, + -0.011115936562418938, + 0.07586944848299026, + 0.0627671405673027, + -0.04656631126999855, + 0.055463485419750214, + -0.020184636116027832, + 0.00026385823730379343, + 0.023991389200091362, + -0.030232690274715424, + 0.06807888299226761, + -0.018303392454981804, + -0.04054633155465126, + -0.07604650408029556, + 0.049045126885175705, + -0.0536043755710125, + 0.03306562080979347, + -0.03242378681898117, + -0.005502637475728989, + 0.02080434001982212, + -0.04528263956308365, + -0.00792335532605648, + 0.004819303285330534, + 0.01394333504140377, + -0.020970333367586136, + -0.057278335094451904, + 0.02226507104933262, + -0.011807570233941078, + -0.07418739050626755, + 0.02903754822909832, + -0.026138219982385635 + ] + }, + { + "id": "7073f194-5c52-4bf8-b27e-1f3c4cdfc249", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "laura72", + "reviewDate": "2021-11-04T02:33:50", + "stars": 3, + "verifiedUser": false + }, + { + "id": "12659391-4776-4282-a0b5-a355ed97d6d2", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "usanders", + "reviewDate": "2021-07-22T17:20:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "0b7dab81-1010-4071-a669-1e4446bab3ba", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tgarcia", + "reviewDate": "2021-05-23T22:38:17", + "stars": 4, + "verifiedUser": true + }, + { + "id": "bb9f1083-8aeb-4975-a221-dcbc8c00932e", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andreagross", + "reviewDate": "2021-08-01T22:22:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2c335219-a520-4f0b-bf34-5679c1fb5d40", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "powelldebra", + "reviewDate": "2021-08-01T21:28:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1a89e3de-a928-46df-bf58-2b7a523c5986", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gfranklin", + "reviewDate": "2022-01-21T18:57:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e4bbb63f-fd16-471b-b568-879b49777d48", + "productId": "bf04935a-4827-496f-8916-e7f36318a608", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeffreyalvarado", + "reviewDate": "2022-12-02T09:51:03", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Super (Gold)", + "description": "This Premium Stand Super (Gold) is just like any other Premium Stand Super (Gold) that gives you the ability to do one thing; you can spend 3 charges! We give you the opportunity to use either Premium Stand or Premium Stand Plus as a substitute for the following: 1 of an item; 1 of the following is a Premium Stand Super (Gold) Premium Stand Super. When combined with another Premium", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-04-04T21:33:53", + "price": 650.32, + "stock": 68, + "priceHistory": [ + { + "priceDate": "2021-03-07T17:21:20", + "newPrice": 631.32 + }, + { + "priceDate": "2021-07-26T17:21:20", + "newPrice": 664.04 + }, + { + "priceDate": "2021-12-14T17:21:20", + "newPrice": 678.72 + }, + { + "priceDate": "2022-05-04T17:21:20", + "newPrice": 682.75 + }, + { + "priceDate": "2022-09-22T17:21:20", + "newPrice": 683.05 + }, + { + "priceDate": "2025-01-21T17:21:20", + "newPrice": 650.32 + } + ], + "descriptionVector": [ + -0.0022854283452033997, + 0.004895030986517668, + -0.033224258571863174, + 0.05737163871526718, + -0.033022549003362656, + -0.07019452750682831, + -0.09601321071386337, + 0.02973758429288864, + 0.007614492904394865, + 0.04235876724123955, + 0.046940430998802185, + 0.087887242436409, + -0.01894618384540081, + -0.0993558019399643, + 0.06662140786647797, + -0.06765876710414886, + -0.038728017359972, + 0.03426161780953407, + 0.01822579652070999, + -0.017937641590833664, + 0.04524031654000282, + 0.020559851080179214, + -0.010654526762664318, + -0.013197493739426136, + -0.039189063012599945, + -0.046306490898132324, + -0.061088837683200836, + -0.0020296908915042877, + -0.058466628193855286, + 0.06339407712221146, + -0.03705671802163124, + 0.012217767536640167, + 0.023902447894215584, + 0.011547806672751904, + 0.000464649754576385, + -0.014285278506577015, + 0.08880933374166489, + -0.0016334779793396592, + 0.013017397373914719, + -0.01592055708169937, + 0.007344347890466452, + -0.014825568534433842, + -0.002690646331757307, + -0.013593707233667374, + -0.00999177061021328, + -0.03774828836321831, + 0.015315432101488113, + -0.02659669518470764, + -0.0827004536986351, + -0.06546878814697266, + 0.02658228762447834, + 0.036797378212213516, + -0.03743131831288338, + 0.06794692575931549, + 0.08051047474145889, + -0.0575733445584774, + 0.0198826864361763, + 0.062126193195581436, + 0.0439436212182045, + -0.038065262138843536, + -0.05987858399748802, + -0.03181229904294014, + -0.02838325686752796, + 0.02030051127076149, + -0.03382938355207443, + -0.03800762817263603, + -0.008486161008477211, + -0.016151081770658493, + -0.009645984508097172, + 0.056247834116220474, + -0.032302163541316986, + 0.09578268229961395, + -0.01579088717699051, + 0.05169498547911644, + 0.04786252602934837, + 0.06477721780538559, + 0.11209224909543991, + -0.02638057991862297, + 0.048179496079683304, + 0.06967585533857346, + 0.024666057899594307, + 0.03650922328233719, + -0.013190289959311485, + -0.03913143277168274, + 0.0366244874894619, + -0.03630751743912697, + -0.0009518116130493581, + -0.059071753174066544, + -0.009292995557188988, + -0.05806320905685425, + 0.014458171091973782, + 0.03149532899260521, + -0.00573068019002676, + -0.007895443588495255, + -0.008392510935664177, + 0.04728621616959572, + 0.040024712681770325, + 0.047257401049137115, + -0.00578110758215189, + 0.08915512263774872, + -0.0037352077197283506, + -0.055729154497385025, + -0.035932913422584534, + 0.04060102254152298, + 0.08391070365905762, + 0.05198314040899277, + 0.05947516858577728, + -0.0386992022395134, + 0.036249883472919464, + -0.12644235789775848, + 0.01481116097420454, + -0.021525170654058456, + 0.04195535182952881, + 0.08558200299739838, + 0.017332516610622406, + -0.029118051752448082, + 0.0018495941767469049, + -0.03777710720896721, + 0.02679840475320816, + -0.05780386924743652, + 0.0015812499914318323, + 0.07872391492128372, + 0.02584749273955822, + -0.03233097866177559, + -0.005799117032438517, + -0.011057944037020206, + -0.007355153560638428, + 0.05157972499728203, + 0.011583826504647732, + -0.056881774216890335, + -0.026337357237935066, + -0.016799429431557655, + 0.0038324599154293537, + 0.009112898260354996, + -0.025573745369911194, + 0.12263871729373932, + -0.044318221509456635, + 0.08592778444290161, + -0.06454669684171677, + 0.053625624626874924, + -0.08448701351881027, + -0.07347949594259262, + 0.03774828836321831, + 0.03760421276092529, + -0.021064123138785362, + 0.030083369463682175, + -0.0024601223412901163, + 0.08091389387845993, + -0.018456321209669113, + -0.02407534047961235, + 0.0606854185461998, + -0.07382528483867645, + -0.022461673244833946, + -0.013694561086595058, + -0.028930749744176865, + 0.04446230083703995, + -0.0617227777838707, + -0.010906662791967392, + -0.06690956652164459, + 0.028541741892695427, + 0.007902647368609905, + -0.012570756487548351, + -0.059590429067611694, + 0.04377072677016258, + 0.014119589701294899, + 0.012801281176507473, + 0.07624578475952148, + 0.009718023240566254, + -0.0004302062443457544, + 0.021424315869808197, + -0.017635079100728035, + -0.067024827003479, + 0.010186275467276573, + -0.09174851328134537, + 0.04820831120014191, + 0.06356696784496307, + 0.020675113424658775, + -0.046738721430301666, + 0.056680064648389816, + 0.005921583157032728, + -0.013680153526365757, + 0.042762186378240585, + -0.03201400861144066, + -0.04627767577767372, + -0.0034380480647087097, + 0.010387984104454517, + -0.03743131831288338, + 0.05204077437520027, + -0.02858496457338333, + -0.015401878394186497, + 0.020487813279032707, + -0.028282402083277702, + 0.06552641838788986, + -0.008810335770249367, + 0.027072152122855186, + 0.07169293612241745, + -0.06258723884820938, + 0.003171504708006978, + 0.038785647600889206, + 0.023671923205256462, + -0.060743048787117004, + 0.041177332401275635, + 0.07284555584192276, + -0.006306990049779415, + -0.020660705864429474, + 0.004390759859234095, + 0.016251934692263603, + 0.024622835218906403, + 0.004538439679890871, + 0.0816630944609642, + 0.05074407532811165, + -0.10125762969255447, + -0.017707116901874542, + -0.04843883588910103, + -0.0177791565656662, + 0.015373063273727894, + -0.017418963834643364, + -0.010034994222223759, + -0.04650820046663284, + -0.010805808007717133, + 0.026236502453684807, + -0.00014058806118555367, + 0.024781320244073868, + -0.05495113506913185, + 0.009329014457762241, + -0.012686018832027912, + -0.046306490898132324, + -0.03748895227909088, + -0.02501184493303299, + 0.021179383620619774, + -0.0078450171276927, + -0.05371206998825073, + -0.0287866722792387, + -0.0030220244079828262, + -0.04215706139802933, + 0.0149120157584548, + -0.030169816687703133, + -0.06045489385724068, + -0.0047257402911782265, + 0.012369048781692982, + -0.03328188881278038, + 0.015963781625032425, + -0.04754555597901344, + -0.01402593869715929, + -0.045787811279296875, + 0.059936217963695526, + 0.05330865457653999, + -0.05068644508719444, + 0.06120409816503525, + -0.08246992528438568, + 0.04786252602934837, + 0.002044098684564233, + -0.053856149315834045, + 0.011187613941729069, + 0.007340745534747839, + 0.07797471433877945, + 0.05013895034790039, + -0.059590429067611694, + -0.05117630958557129, + 0.0024853358045220375, + 0.017721526324748993, + 0.024089748039841652, + -0.045269131660461426, + 0.032186899334192276, + -0.08512095361948013, + 0.055095214396715164, + 0.0586395189166069, + -0.03737368807196617, + -0.06080068275332451, + 0.07526605576276779, + 0.05391377955675125, + -0.008940005674958229, + -0.054057855159044266, + 0.016151081770658493, + 0.04365546628832817, + 0.006371825002133846, + 0.05901411920785904, + -0.0008099853876046836, + 0.04241640120744705, + -0.04011116176843643, + 0.04440466687083244, + 0.017534224316477776, + 0.07255739718675613, + 0.018874144181609154, + 0.08068336546421051, + -0.08973143249750137, + -0.028239179402589798, + 0.018341058865189552, + -0.025789862498641014, + -0.07618815451860428, + -0.004578060936182737, + -0.015862926840782166, + 0.041868906468153, + -0.012815688736736774, + 0.05935990810394287, + 0.010034994222223759, + -0.040975626558065414, + 0.05466298386454582, + 0.04408769682049751, + 0.007953074760735035, + -0.007758570369333029, + 0.03685500845313072, + -0.03077494166791439, + -0.011482972651720047, + 0.01030874066054821, + 0.05875478312373161, + -0.016223119571805, + -0.027245044708251953, + -0.04549965634942055, + 0.0742286965250969, + 0.09428428113460541, + -0.03163940832018852, + -0.044635191559791565, + -0.01976742595434189, + -0.047343846410512924, + -0.021496353670954704, + 0.027345899492502213, + 0.017447778955101967, + -0.03809407725930214, + -0.0001318083523074165, + -0.023297322914004326, + -0.009782858192920685, + -0.03676856309175491, + -0.050081320106983185, + 0.10494600981473923, + 0.005554185248911381, + -0.03895854204893112, + 0.07480500638484955, + 0.010114236734807491, + -0.09428428113460541, + -0.0031697037629783154, + -0.07273029536008835, + 0.020055580884218216, + 0.007200270425528288, + -0.00847895722836256, + -0.012736446224153042, + 0.07347949594259262, + -0.015156947076320648, + -0.05745808407664299, + -0.028095101937651634, + 0.011317282915115356, + 0.06719771772623062, + -0.092036671936512, + 0.0057883113622665405, + 0.06535352766513824, + -0.049015145748853683, + 0.0345209538936615, + -0.07376765459775925, + 0.007265104912221432, + 0.045269131660461426, + 0.0016541891964152455, + -0.05181024968624115, + -0.022562528029084206, + -0.031869929283857346, + 0.10730887949466705, + 0.0050751278176903725, + 0.05036947503685951, + -0.04382835701107979, + 0.015329839661717415, + -0.04382835701107979, + 0.026870442554354668, + 0.023297322914004326, + 0.017231661826372147, + 0.014097977429628372, + 0.02419060282409191, + -0.0054857488721609116, + 0.016684167087078094, + 0.05930227413773537, + -0.007535250391811132, + -0.058466628193855286, + -0.08004942536354065, + -0.01084182783961296, + 0.10650204867124557, + 0.025487300008535385, + 0.03590409830212593, + 0.07353712618350983, + 0.04143667221069336, + 0.07417106628417969, + -0.043079156428575516, + 0.04748792573809624, + -0.03676856309175491, + 0.028123917058110237, + -0.008032317273318768, + -0.024968620389699936, + 0.10817334800958633, + -0.004163837991654873, + -0.013773803599178791, + 0.06195330247282982, + -0.054490089416503906, + -0.020559851080179214, + -0.05388496443629265, + -0.0007208374445326626, + 0.002216991735622287, + 0.05304931476712227, + 0.011893592774868011, + -0.03627869859337807, + -0.040226422250270844, + -0.017534224316477776, + -0.00327235902659595, + 0.056680064648389816, + 0.0030418350361287594, + -0.023571070283651352, + -0.04509624093770981, + 0.027706092223525047, + 0.004397964105010033, + -0.03184111416339874, + -0.04299270734190941, + -0.01329114381223917, + 0.01554595585912466, + 0.0037856348790228367, + -0.06322117894887924, + -0.055844418704509735, + -0.05728519335389137, + 0.02740352973341942, + 0.05068644508719444, + 0.07261503487825394, + 0.06783165782690048, + 0.04659464582800865, + 0.061895668506622314, + -0.017851194366812706, + 0.013435221277177334, + 0.025602562353014946, + -0.01966657117009163, + 0.024781320244073868, + 0.022677790373563766, + -0.026668734848499298, + 0.0011175007093697786, + 0.013269532471895218, + 0.005132758989930153, + -0.0014182623708620667, + 0.014595044776797295, + -0.08575489372015, + 0.028541741892695427, + 0.001638880930840969, + -0.024666057899594307, + 0.052184849977493286, + 0.04728621616959572, + -0.00884635467082262, + -0.06679430603981018, + 0.004747351631522179, + -0.006083670072257519, + 0.007290318608283997, + 0.05166617035865784, + -0.051550909876823425, + 0.01832665130496025, + -0.07128951698541641, + -0.08558200299739838, + -0.043799541890621185, + 0.006721212528645992, + 0.03434806317090988, + -0.08540910482406616, + -0.051954325288534164, + 0.011670272797346115, + 0.03944840282201767, + -0.007268706802278757, + 0.049879610538482666, + 0.024983027949929237, + 0.022980352863669395, + -0.013096639886498451, + 0.08356491476297379, + -0.02416178770363331, + 0.049159225076436996, + 0.071174256503582, + -0.04302152618765831, + 0.013687357306480408, + 0.030515601858496666, + -0.10194920003414154, + 0.03126480430364609, + 0.0056514376774430275, + 0.008860763162374496, + -0.06466195732355118, + -0.009718023240566254, + -0.026755182072520256, + -0.04719977080821991, + -0.050081320106983185, + -0.03777710720896721, + 0.0029391797725111246, + -0.04907277598977089, + 0.01842750422656536, + -0.051349200308322906, + 0.017836786806583405, + -0.001483097206801176, + -0.03587528318166733, + -0.019018221646547318, + 0.02658228762447834, + -0.007679327856749296, + 0.007996298372745514, + 0.0324174240231514, + -0.04743029549717903, + 0.06569931656122208, + 0.033224258571863174, + 0.0376906581223011, + 0.0266831424087286, + -0.007938667200505733, + 0.020444588735699654, + -0.0523289293050766, + -0.0470556914806366, + -0.01809612661600113, + 0.09716583043336868, + -0.032071638852357864, + 0.04351138696074486, + -0.03858393803238869, + -0.008089948445558548, + 0.023729555308818817, + 0.009890916757285595, + -0.04074510186910629, + -0.045269131660461426, + -0.010568080469965935, + -0.007113823667168617, + -0.03777710720896721, + -0.0230235755443573, + 0.04299270734190941 + ] + }, + { + "id": "64339e2b-c043-4da9-9541-e94a9f581b61", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonathan37", + "reviewDate": "2022-06-11T22:17:55", + "stars": 2, + "verifiedUser": false + }, + { + "id": "78ee475f-5732-416c-8dad-2b8c48102a86", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "longphillip", + "reviewDate": "2021-11-19T06:12:07", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c2b55cc0-b8a9-495f-90c9-0b5cbafab102", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "candace17", + "reviewDate": "2022-02-28T19:40:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8454cb60-967e-4108-afec-127fa098da79", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "portergina", + "reviewDate": "2022-07-04T17:45:07", + "stars": 5, + "verifiedUser": false + }, + { + "id": "6315556b-1fa1-4fa7-a6dd-676e75837b03", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "hernandezkaren", + "reviewDate": "2022-05-31T16:37:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "36c1a27f-041a-40c8-9d37-a17b978b112f", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "amymelendez", + "reviewDate": "2022-09-12T11:00:19", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0ed0fa79-6985-4011-bd11-ec3c8c43db50", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "annbarnes", + "reviewDate": "2022-02-06T12:11:57", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9642bd0e-3901-4f66-be6c-deb3f9ab2565", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "linda07", + "reviewDate": "2022-08-16T22:50:01", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2c76b5e9-7496-4d6d-8cfa-e53d932148cf", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "anthonydennis", + "reviewDate": "2021-06-18T16:55:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2fc8472c-c7b8-48bc-99c7-d381b7338835", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "cooklauren", + "reviewDate": "2021-03-21T09:11:00", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e9082953-7edb-4192-ab94-80b35ed57ba7", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "jonathanhowell", + "reviewDate": "2022-07-20T08:51:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "819ecc53-6b89-4a06-8b43-c64082a81ec9", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "aherrera", + "reviewDate": "2021-03-07T17:21:20", + "stars": 4, + "verifiedUser": true + }, + { + "id": "5e77ad10-adb3-401d-9236-2c13393bc7be", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "lambevan", + "reviewDate": "2022-03-04T21:59:15", + "stars": 4, + "verifiedUser": true + }, + { + "id": "acaca5df-247f-4db6-a858-281829b419cd", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "iacosta", + "reviewDate": "2021-08-09T17:56:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5d1d67db-ec68-4fdf-9db2-f944ce21493b", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "ecooper", + "reviewDate": "2022-09-26T05:56:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3d2747bc-e666-4803-86d6-215fbf80a64f", + "productId": "cbf0c4b6-1ae6-4edf-9cf4-c624dc27f33e", + "category": "Accessory", + "docType": "customerRating", + "userName": "chadacosta", + "reviewDate": "2022-07-08T11:50:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Mini (Gold)", + "description": "This Premium Keyboard Mini (Gold) is designed for use with our Premium Keyboard Mini (Silver) and offers a fully customizable look to the style of the Mini's design.\n\n\nThe Silver Mini can display the following features:\n\nRed: The Mini's unique Red LED and blue LED will provide visibility when you use it. The Red's brightness changes while your computer's internal processor powers down.\n\nBlue: The Red LED's color", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2020-03-22T01:18:09", + "price": 566.35, + "stock": 48, + "priceHistory": [ + { + "priceDate": "2021-03-17T09:54:30", + "newPrice": 524.49 + }, + { + "priceDate": "2021-10-08T09:54:30", + "newPrice": 618.41 + }, + { + "priceDate": "2022-05-01T09:54:30", + "newPrice": 537.51 + }, + { + "priceDate": "2022-11-22T09:54:30", + "newPrice": 526.2 + }, + { + "priceDate": "2023-10-14T09:54:30", + "newPrice": 566.35 + } + ], + "descriptionVector": [ + -0.024994585663080215, + -0.004125627689063549, + -0.03635115176439285, + 0.0002378494100412354, + 0.03305571898818016, + -0.04489392787218094, + 0.017250319942831993, + 0.0033271191641688347, + -0.02730138786137104, + 0.021901950240135193, + 0.047276776283979416, + -0.004436158575117588, + 0.025615647435188293, + -0.03954518586397171, + 0.03546392172574997, + 0.020102135837078094, + -0.03391760215163231, + 0.010228514671325684, + -0.017972780391573906, + 0.020507728680968285, + 0.006749298889189959, + -0.061396438628435135, + -0.0795973613858223, + -0.01058974489569664, + -0.0035616017412394285, + -0.005538861267268658, + -0.008904004469513893, + 0.01206001453101635, + 0.0014235316775739193, + 0.06869708746671677, + 0.05287901312112808, + -0.05292971059679985, + 0.01062776893377304, + -0.015640627592802048, + -0.06986316293478012, + -0.04583185911178589, + 0.01055172085762024, + 0.0297095887362957, + 0.010494683869183064, + 0.01648983545601368, + -0.010659456253051758, + -0.00905610155314207, + -0.004439327400177717, + -0.02020353451371193, + -0.03396829962730408, + 0.0316614992916584, + -0.018948735669255257, + 0.0008848552242852747, + -0.002946876920759678, + -0.044741831719875336, + 0.011629072949290276, + 0.0353371724486351, + -0.02093867026269436, + 0.05652933567762375, + 0.03792282193899155, + -0.06388068944215775, + -0.03341061249375343, + 0.1375969648361206, + 0.04002682864665985, + -0.061802029609680176, + -0.0013561970554292202, + -0.04055916517972946, + -0.03640185296535492, + -0.0186445415019989, + 0.02309337444603443, + -0.040711261332035065, + -0.05227062478661537, + -0.07031945139169693, + 0.034145746380090714, + 0.07366558164358139, + -0.005507174413651228, + 0.018188251182436943, + 0.018821988254785538, + 0.07265160232782364, + 0.0194683987647295, + 0.052219927310943604, + 0.1246180385351181, + 0.010558057576417923, + 0.0387847013771534, + 0.005820874124765396, + -0.02044435404241085, + -0.020672500133514404, + -0.05145944282412529, + -0.03145870193839073, + -0.031129159033298492, + 0.0024367186706513166, + 0.07057294994592667, + -0.09059903770685196, + -0.03635115176439285, + 0.04608535394072533, + -0.06342439353466034, + 0.017199620604515076, + 0.049887772649526596, + -0.004997015930712223, + 0.03480483591556549, + -0.024918537586927414, + 0.005494499579071999, + 0.024335499852895737, + -0.06986316293478012, + -0.06524955481290817, + -0.0023749293759465218, + -0.0005398647044785321, + -0.005484993569552898, + 0.009296921081840992, + 0.06687192618846893, + 0.1002318412065506, + 0.07128273695707321, + -0.005735319573432207, + -0.019024783745408058, + -0.12674739956855774, + 0.009822922758758068, + 0.0006388860638253391, + -0.042789921164512634, + 0.0269718449562788, + -0.026515554636716843, + 0.02379048615694046, + -0.04403204470872879, + 0.01222478598356247, + 0.0013395615387707949, + -0.03206709027290344, + 0.03399365022778511, + 0.04836680367588997, + -0.002750418381765485, + 0.008923016488552094, + -0.0501159206032753, + 0.027250690385699272, + -0.04142104834318161, + 0.009772224351763725, + 0.06514815986156464, + -0.03559066727757454, + -0.04745422303676605, + 0.044539034366607666, + 0.053639497607946396, + 0.11113211512565613, + -0.008352653123438358, + 0.05077500641345978, + -0.021939974278211594, + 0.10667060315608978, + -0.015273060649633408, + 0.007243613712489605, + -0.04900054261088371, + -0.020216209813952446, + 0.009081450290977955, + -0.011698784306645393, + -0.10312168300151825, + 0.03761862590909004, + 0.010367936454713345, + 0.10910415649414062, + -0.04504602402448654, + 0.01201565284281969, + -0.0036313128657639027, + -0.09972485154867172, + -0.0029595517553389072, + -0.07138413190841675, + 0.03794816881418228, + 0.07168832421302795, + -0.0633229985833168, + -0.049406133592128754, + -0.01181285735219717, + 0.04783446714282036, + 0.0030102506279945374, + 0.02856886200606823, + 0.02150903269648552, + 0.01787138171494007, + -0.0157927256077528, + 0.02877165749669075, + 0.024424223229289055, + 0.04182663932442665, + -0.04649094492197037, + 0.012509968131780624, + -0.024259451776742935, + -0.02501993626356125, + 0.03754257783293724, + -0.0756935402750969, + 0.04869635030627251, + 0.023942582309246063, + 0.031762897968292236, + -0.0501919686794281, + 0.0038943137042224407, + -0.062258318066596985, + -0.002598321530967951, + 0.05906428396701813, + -0.0913088247179985, + -0.00274408096447587, + 0.06494536250829697, + -0.019316302612423897, + 0.0021547055803239346, + 0.025856468826532364, + -0.015602604486048222, + -0.004978003911674023, + 0.06824079900979996, + -0.021534381434321404, + -0.0015455260872840881, + -0.0018616023007780313, + 0.04045776650309563, + 0.07594703882932663, + 0.046871185302734375, + -0.038176316767930984, + 0.006422924343496561, + 0.019328977912664413, + 0.009094125591218472, + 0.04950753226876259, + -0.017972780391573906, + -0.0003717263462021947, + 0.007427397184073925, + -0.0009632802102714777, + -0.01967119611799717, + -0.02669300138950348, + 0.009765886701643467, + 0.03521042689681053, + 0.003022925229743123, + -0.021496357396245003, + 0.007585831452161074, + -0.028923755511641502, + 0.07903967797756195, + 0.05500837042927742, + 0.01232618372887373, + 0.026616953313350677, + -0.023562340065836906, + -0.023270821198821068, + 0.02268778346478939, + -0.003650324884802103, + 0.024005956947803497, + 0.05460277572274208, + -0.030267277732491493, + -0.03117985837161541, + 0.006283502094447613, + -0.021939974278211594, + 0.034297846257686615, + 0.006251815240830183, + -0.11904115229845047, + -0.0630188062787056, + -0.004227025434374809, + 0.020786572247743607, + 0.023118725046515465, + 0.015412483364343643, + 0.004892449360340834, + -0.02174985222518444, + -0.04829075559973717, + 0.01803615503013134, + -0.04965962842106819, + 0.02742813527584076, + -0.06687192618846893, + -0.03835375979542732, + 0.045071374624967575, + -0.05419718474149704, + 0.09997834265232086, + 0.00011694427666952834, + -0.0982038825750351, + 0.04243502765893936, + -0.06007826328277588, + -0.0029136056546121836, + -0.017846032977104187, + 0.05977407097816467, + -0.04271387308835983, + 0.04317016154527664, + 0.030495421960949898, + 0.007047154940664768, + 0.0011605308391153812, + -0.03247268125414848, + 0.0666184276342392, + 0.03171219676733017, + 0.006850696634501219, + 0.026186011731624603, + -0.06727751344442368, + 0.05612374469637871, + 0.03031797707080841, + -0.10347656905651093, + -0.023676414042711258, + 0.043525055050849915, + 0.02864491008222103, + -0.05333530157804489, + 0.007345011457800865, + -0.006495804060250521, + -0.046871185302734375, + 0.007598506286740303, + -0.09125812351703644, + 0.04202943667769432, + -0.02147100865840912, + -0.041851989924907684, + 0.07827918976545334, + 0.0800536572933197, + 0.10879996418952942, + -0.008213231340050697, + 0.03701023757457733, + 0.0012278653448447585, + -0.04494462534785271, + 0.035159725695848465, + -0.05100315064191818, + -0.05272691696882248, + -0.005963464733213186, + 0.03906354680657387, + 0.05728982016444206, + 0.051966432482004166, + 0.030824966728687286, + -0.02121751382946968, + 0.018961410969495773, + 0.07113064080476761, + 0.04169989377260208, + -0.00015348316810559481, + 0.021724503487348557, + -0.05495766922831535, + -0.11265308409929276, + -0.05881078913807869, + 0.009841934777796268, + 0.09135951846837997, + -0.04524881765246391, + 0.05178898572921753, + -0.04398134723305702, + 0.055971648544073105, + 0.053436700254678726, + -0.011248831637203693, + -0.03110381029546261, + 0.016261691227555275, + 0.04083801060914993, + -0.04783446714282036, + -0.010906613431870937, + 0.03974798321723938, + -0.032092440873384476, + 0.008910342119634151, + 0.02163578011095524, + -0.03574276342988014, + -0.1205621212720871, + 0.054906971752643585, + 0.004905124194920063, + -0.00664156349375844, + -0.03252338245511055, + -0.019316302612423897, + 0.007351348642259836, + -0.0315094031393528, + -0.08304489403963089, + -0.04093940928578377, + -0.021230189129710197, + 0.00822590570896864, + 0.02452562004327774, + -0.07102923840284348, + -0.011350229382514954, + 0.06966036558151245, + 0.04676978662610054, + 0.010545383207499981, + 0.03995077684521675, + -0.025577623397111893, + 0.007775952573865652, + -0.07295580208301544, + -0.026059264317154884, + -0.08076343685388565, + -0.08071274310350418, + 0.0214203093200922, + 0.03024192899465561, + 0.011293192394077778, + 0.0015225530369207263, + -0.03300502151250839, + 0.07386837899684906, + -0.08720220625400543, + 0.05632654204964638, + -0.027149291709065437, + -0.007097853813320398, + -0.04063521325588226, + 0.02084994688630104, + 0.09495914727449417, + 0.01628703996539116, + -0.003018172224983573, + 0.07031945139169693, + 0.05642794072628021, + -0.015171662904322147, + -0.02542552724480629, + -0.039240993559360504, + 0.050420112907886505, + -0.0781777948141098, + 0.015273060649633408, + -0.0037739037070423365, + -0.01759253814816475, + -0.06256251037120819, + 0.09430006146430969, + 0.05287901312112808, + 0.05688422918319702, + 0.0006598785985261202, + 0.025679022073745728, + -0.03962123394012451, + 0.047403525561094284, + -0.04712468013167381, + 0.05622514337301254, + -0.04182663932442665, + -0.0158687736839056, + 0.03919029235839844, + -0.028518162667751312, + -0.02162310481071472, + -0.011242493987083435, + -0.012972596101462841, + -0.003640818875283003, + -0.07204321771860123, + -0.06479326635599136, + 0.006201116368174553, + 0.05333530157804489, + 0.007338674273341894, + 0.02643950656056404, + 0.02628740854561329, + 0.0758456438779831, + 0.058912187814712524, + 0.04773306846618652, + 0.02084994688630104, + 0.02154705673456192, + -0.042916666716337204, + -0.025324128568172455, + -0.0390128493309021, + -0.10545383393764496, + -0.04230827838182449, + 0.07285439968109131, + 0.03133195638656616, + -0.03224453702569008, + -0.010006707161664963, + -0.049887772649526596, + -0.009436343796551228, + -0.048417504876852036, + 0.02742813527584076, + 0.007820313796401024, + 0.1003839373588562, + 0.09627731889486313, + 0.07589633762836456, + 0.02000073902308941, + 0.06261321157217026, + -0.02048237808048725, + -0.09282979369163513, + 0.000710181484464556, + 0.005649765022099018, + -0.024386199191212654, + -0.018885361030697823, + -0.004331592004746199, + 0.08071274310350418, + -0.07594703882932663, + 0.013295801356434822, + -0.08213230967521667, + -0.029481444507837296, + -0.025526925921440125, + -0.010355262085795403, + 0.04689653590321541, + -0.04294201731681824, + -0.008720220997929573, + -0.06976176798343658, + 0.096784308552742, + -0.01081155240535736, + -0.08796269446611404, + -0.03586951270699501, + -0.00527586042881012, + -0.06418488174676895, + -0.006546502932906151, + -0.027276039123535156, + 0.03138265386223793, + 0.01232618372887373, + -0.02796047553420067, + -0.09105532616376877, + -0.044995326548814774, + -0.026515554636716843, + 0.020621800795197487, + 0.005896922666579485, + -0.004426652565598488, + 0.05052151158452034, + 0.04428553953766823, + -0.013194403611123562, + 0.059114985167980194, + 0.03363875672221184, + 0.015133638866245747, + 0.00023804744705557823, + 0.008948366157710552, + -0.014715372584760189, + -0.04570510983467102, + -0.003148088464513421, + 0.00895470380783081, + -0.010520033538341522, + 0.03934239223599434, + 0.0008745570085011423, + -0.04169989377260208, + 0.05860799551010132, + 0.010082755237817764, + 0.04157314449548721, + -0.08826688677072525, + 0.011324879713356495, + -0.014411178417503834, + -0.009277909062802792, + -0.02623671106994152, + -0.006121899001300335, + -0.01910083182156086, + -0.06038245931267738, + 0.022624408826231956, + 0.058455899357795715, + 0.03097706288099289, + 0.027453485876321793, + 0.027808377519249916, + 0.02758023329079151, + 0.02309337444603443, + 0.008675859309732914, + -0.0007775160484015942, + 0.035489268600940704, + -0.04362645372748375, + 0.018657216802239418, + 0.03488088399171829, + -0.021648455411195755, + 0.014385828748345375, + 0.037035588175058365, + 0.0269718449562788, + 0.04555301368236542, + -0.0037739037070423365, + -0.00905610155314207, + -0.0004491610743571073, + 0.020266909152269363, + 0.007237276062369347, + -0.023536991328001022, + 0.00404007313773036, + 0.03561601787805557, + 0.004753027111291885, + -0.04730212688446045, + -0.07797499746084213 + ] + }, + { + "id": "72b30770-15c7-4178-9451-30788b16b046", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wgriffin", + "reviewDate": "2021-11-18T07:14:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "873e1959-da6b-43b4-be3e-1429ccd387e7", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dustingood", + "reviewDate": "2021-03-24T11:45:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "93c4460a-0401-416f-8e57-0611a3f8fa4e", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simmonsjermaine", + "reviewDate": "2021-03-17T09:54:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "2db7167a-e155-4d0c-99a3-ae8a35b2575b", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michaelpena", + "reviewDate": "2021-07-24T18:18:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "8b0901ab-8b8d-49de-ade8-7eccf040fa48", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacobosborne", + "reviewDate": "2021-11-15T06:12:25", + "stars": 5, + "verifiedUser": false + }, + { + "id": "21a88ed1-b88d-4b45-8dc1-4d4ceffceb06", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "murraysusan", + "reviewDate": "2022-11-10T13:32:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "6de63f3a-0ff3-417c-91dd-b7f6a185c1ce", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidcolon", + "reviewDate": "2021-07-05T04:47:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "595095a5-0564-4f4a-8a45-7a6d118656e9", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james13", + "reviewDate": "2022-01-22T08:53:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "57dab777-e03f-47af-b979-814cfcaa5706", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "andersonlori", + "reviewDate": "2021-08-22T16:13:31", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6a197755-a2b6-47ca-96ac-57ad69f8f55a", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perezmark", + "reviewDate": "2021-12-22T00:31:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "278f2870-6136-4dbb-a313-34ae32d72f3a", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wardmichelle", + "reviewDate": "2021-05-03T09:38:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cd97b5e1-45c2-4c43-af16-627ad357d1dd", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "marisa62", + "reviewDate": "2022-09-04T11:53:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a85dcae9-38a2-48e2-9295-e3c2b7c561f4", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ucaldwell", + "reviewDate": "2021-07-05T05:07:04", + "stars": 1, + "verifiedUser": true + }, + { + "id": "66110f57-eb41-471b-888a-82be8a767420", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "emarsh", + "reviewDate": "2022-08-31T03:32:21", + "stars": 5, + "verifiedUser": true + }, + { + "id": "1ca32feb-a9cd-4261-98b9-f62ad0f192ee", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "beltranruth", + "reviewDate": "2021-08-31T00:32:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ca775e92-f883-427c-b246-409fd40ea5e3", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nguyennicholas", + "reviewDate": "2022-11-19T07:34:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "555baf8f-91bd-4a10-a22d-5e5109958e9c", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "chasegonzales", + "reviewDate": "2021-10-27T07:05:45", + "stars": 4, + "verifiedUser": false + }, + { + "id": "af9722fd-2a7a-4b68-8ecb-baadd0b10838", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinasmith", + "reviewDate": "2021-07-06T18:12:53", + "stars": 5, + "verifiedUser": false + }, + { + "id": "dc1f8bf9-1163-4d43-b906-f518128fa815", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "april46", + "reviewDate": "2022-05-31T04:34:59", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3aafb130-1345-4df3-acde-0b6c88efbd82", + "productId": "988a9247-b75f-40ce-87c4-598ecee3f2d6", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wpatel", + "reviewDate": "2022-11-23T07:49:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Mini (Gold)", + "description": "This Luxe Phone Mini (Gold) is the perfect accessory for those looking for a phone with a minimalistic and stylish appearance, the phone looks stunning, the colors are so vibrant that it's easy to see where your phone is going.\n\nWhile most phones don't need to be upgraded at the same time, you can still make a phone that looks like it could be upgraded from what is available from Amazon.\n\nHere's what you need to know, when", + "countryOfOrigin": "Nigeria", + "rareItem": true, + "firstAvailable": "2020-12-10T13:20:48", + "price": 533.41, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-09T20:43:31", + "newPrice": 557.8 + }, + { + "priceDate": "2021-06-20T20:43:31", + "newPrice": 540.49 + }, + { + "priceDate": "2021-11-29T20:43:31", + "newPrice": 487.25 + }, + { + "priceDate": "2022-05-10T20:43:31", + "newPrice": 583.35 + }, + { + "priceDate": "2022-10-19T20:43:31", + "newPrice": 579.6 + }, + { + "priceDate": "2025-02-17T20:43:31", + "newPrice": 533.41 + } + ], + "descriptionVector": [ + -0.06592706590890884, + 0.08657663315534592, + -0.03592361882328987, + 0.02124158665537834, + -0.01274021528661251, + -0.026711827144026756, + -0.03199262171983719, + -0.018909037113189697, + 0.014528108760714531, + 0.013711124658584595, + 0.022283537313342094, + -0.01816309615969658, + 0.04324095696210861, + -0.008702656254172325, + 0.08373495191335678, + 0.011307533830404282, + -0.05162392184138298, + -0.052002813667058945, + 0.037060294300317764, + 0.010644474066793919, + 0.04518277198076248, + -0.12778104841709137, + -0.12370796501636505, + -0.03462118282914162, + 0.008986825123429298, + -0.02378726191818714, + 0.009270993061363697, + 0.03405284509062767, + -0.01571214385330677, + 0.005041028838604689, + 0.03912051394581795, + 0.010425426997244358, + -0.06550081074237823, + 0.03303457424044609, + -0.04845070838928223, + 0.03997302055358887, + 0.01597263105213642, + -0.02310052141547203, + 0.05683367699384689, + 0.06966861337423325, + -0.013947931118309498, + -0.052429065108299255, + -0.008584253489971161, + -0.035189516842365265, + 0.030429696664214134, + -0.01707378402352333, + 0.029671914875507355, + 0.04788237065076828, + 0.0009346475708298385, + -0.06928972154855728, + -0.04771660640835762, + 0.011929151602089405, + -0.007867911830544472, + 0.00946043897420168, + 0.03286880999803543, + -0.046650975942611694, + -0.038599539548158646, + 0.04624840244650841, + -0.010407666675746441, + -0.00934203527867794, + -0.013213830068707466, + -0.02216513454914093, + 0.016280479729175568, + -0.003865873906761408, + -0.005384398624300957, + 0.020187795162200928, + -0.045301176607608795, + -0.027730097994208336, + 0.0009339075186289847, + 0.08974985033273697, + -0.04025718569755554, + 0.03819696605205536, + -0.05527075007557869, + 0.03971252962946892, + 0.01630416139960289, + 0.013817687518894672, + -0.015830546617507935, + 0.05062933266162872, + -0.00473021948710084, + -0.02936406619846821, + 0.059722721576690674, + 0.004111561458557844, + 0.027493290603160858, + -0.015984471887350082, + -0.02690127305686474, + 0.022970277816057205, + 0.06886347383260727, + -0.0701422318816185, + 0.006701637525111437, + 0.029269343242049217, + -0.05470241233706474, + 0.020353559404611588, + 0.0069798859767615795, + 0.057023122906684875, + 0.053186848759651184, + 0.019311608746647835, + -0.011840349063277245, + 0.04357248544692993, + -0.038670580834150314, + -0.03713133558630943, + 0.04575110971927643, + -0.023076839745044708, + -0.018068373203277588, + 0.06393788754940033, + 0.022544024512171745, + 0.08671871572732925, + -0.021845445036888123, + 0.0027084797620773315, + 0.036136746406555176, + -0.17732107639312744, + 0.08046701550483704, + 0.008773698471486568, + -0.07004750519990921, + 0.021715199574828148, + -0.014255780726671219, + 0.056075893342494965, + 0.020815333351492882, + -0.04679305851459503, + 0.049966271966695786, + 0.0027262403164058924, + 0.06545344740152359, + 0.03149532899260521, + 7.312340312637389e-05, + 0.027398567646741867, + -0.020756132900714874, + -0.006790440063923597, + 0.03983093425631523, + 0.015925269573926926, + 0.01868407055735588, + -0.07961450517177582, + -0.07165779173374176, + 0.07629921287298203, + 0.04222268611192703, + 0.07937770336866379, + -0.02725648321211338, + 0.042412132024765015, + 0.05901230126619339, + 0.01001693494617939, + -0.0056241657584905624, + 0.0361604280769825, + 0.0136637631803751, + -0.009276913478970528, + 0.0028934853617101908, + -0.05086613819003105, + -0.040636077523231506, + -0.012929661199450493, + 0.007879752665758133, + 0.018897198140621185, + -0.08207730203866959, + 0.0302402526140213, + -0.01247972808778286, + -0.13431692123413086, + 0.00706868851557374, + -0.04939793795347214, + 0.02666446566581726, + 0.03852849453687668, + -0.052002813667058945, + -0.039878297597169876, + -0.017547396942973137, + 0.041985876858234406, + 0.0007041307399049401, + -0.0637010782957077, + 0.018115734681487083, + -0.07104209810495377, + -0.05493922159075737, + -0.032655682414770126, + 0.042838383466005325, + 0.036302510648965836, + -0.11641431599855423, + 0.04847439005970955, + -0.0006489991210401058, + 0.02079165354371071, + -0.05929647013545036, + -0.05006099492311478, + 0.008726336993277073, + 0.0404229536652565, + 0.06630595773458481, + -0.03696557134389877, + 0.0449933260679245, + -0.02555147372186184, + 0.028985174372792244, + 0.07563614845275879, + -0.07274710386991501, + -0.05062933266162872, + 0.03234783560037613, + -0.005949775688350201, + -0.04788237065076828, + 0.011763387359678745, + -0.05474977567791939, + -0.010159019380807877, + -0.023029478266835213, + 0.03201630339026451, + 0.0017035302007570863, + 0.019477374851703644, + 0.08165104687213898, + -0.055649641901254654, + 0.06242232024669647, + -0.03168477490544319, + -0.05432352051138878, + 0.07942505925893784, + 0.034171245992183685, + 0.026593424379825592, + 0.004641416948288679, + -0.0034929029643535614, + 0.06791624426841736, + -0.02692495472729206, + -0.027303844690322876, + 0.03829168900847435, + 0.05138711631298065, + -0.0032827367540448904, + 0.00706868851557374, + 0.05276059731841087, + -0.03845745325088501, + 0.010419507510960102, + 0.04613000154495239, + 0.039096832275390625, + 0.05171864479780197, + 0.004558534361422062, + -0.04506436735391617, + -0.10362673550844193, + -0.031897902488708496, + -0.03329506143927574, + 0.018731432035565376, + 0.03921523690223694, + -0.06332218647003174, + -0.07402586191892624, + 0.05015571787953377, + 0.05512866750359535, + 0.04494596645236015, + 0.021869124844670296, + -0.014575470238924026, + -0.03284512832760811, + 0.0037593108136206865, + -0.016434404999017715, + -0.029150940477848053, + -0.010253742337226868, + -0.011698264628648758, + -0.04854543134570122, + -0.06123828515410423, + 0.03199262171983719, + 0.023633336648344994, + -0.0204719640314579, + -0.02844051830470562, + -0.007500861305743456, + 0.05441824346780777, + -0.045301176607608795, + 0.0621381513774395, + 0.02190464548766613, + -0.032632000744342804, + 0.08089326322078705, + 0.005926094949245453, + -0.0883290022611618, + -0.06701637804508209, + 0.04371456801891327, + -0.018731432035565376, + -0.008921703323721886, + 0.00866121519356966, + -0.018565667793154716, + 0.045040689408779144, + -0.027895862236618996, + 0.03379235789179802, + -0.08364022523164749, + 0.0257172379642725, + 0.03642091527581215, + -0.030003445222973824, + 0.05313948541879654, + 0.06905291974544525, + -0.05773354321718216, + -0.02870100550353527, + 0.010537911206483841, + -0.03530792146921158, + -0.03888370841741562, + 0.07672546058893204, + 0.018897198140621185, + -0.036136746406555176, + 0.038339052349328995, + -0.07909353077411652, + 0.04425922408699989, + -0.043785613030195236, + -0.016789615154266357, + 0.07909353077411652, + 0.002449472201988101, + 0.038173284381628036, + -0.04752716049551964, + 0.05773354321718216, + -0.007483100518584251, + -0.07194196432828903, + -0.02834579534828663, + 0.002773601794615388, + -0.012515248730778694, + -0.012503408826887608, + -0.027303844690322876, + 0.02370437979698181, + -0.08714497089385986, + 0.015842387452721596, + 0.0030755307525396347, + -0.0004303226887714118, + 0.07108945399522781, + -0.04390401393175125, + 0.027564333751797676, + -0.0035106635186821222, + -0.020400920882821083, + -0.00992813240736723, + -0.03258464112877846, + 0.030358655378222466, + 0.07847783714532852, + -0.0041826032102108, + 0.08709760755300522, + -0.009495959617197514, + 0.018980080261826515, + 0.0947701558470726, + -0.047598205506801605, + -0.05901230126619339, + -0.06256440281867981, + -0.012337643653154373, + -0.007027247454971075, + -0.031874220818281174, + 0.01362824160605669, + 0.007382457610219717, + -0.02893781289458275, + 0.04532485827803612, + -0.028416838496923447, + -0.051766008138656616, + 0.036207787692546844, + 0.036728762090206146, + 0.025267304852604866, + -0.010490549728274345, + -0.07217876613140106, + -0.004256605636328459, + 0.022603226825594902, + -0.05290267989039421, + -0.019891787320375443, + 9.379776747664437e-05, + -0.05384990945458412, + 0.012681013904511929, + 0.010662234388291836, + 0.0446854792535305, + 0.05238170549273491, + 0.059817444533109665, + 0.04016246274113655, + 0.05664423108100891, + 0.04755084216594696, + -0.06531136482954025, + -0.008501370437443256, + -0.05062933266162872, + -0.09159693866968155, + -0.1263602077960968, + 0.048190221190452576, + 0.1060895249247551, + 0.02462792582809925, + 0.001391981029883027, + -0.056170616298913956, + 0.02673550881445408, + -0.049540020525455475, + 0.05834924057126045, + 0.04018614441156387, + 0.06351163238286972, + -0.06928972154855728, + -0.019666820764541626, + 0.030784908682107925, + 0.0210402999073267, + -0.03589993715286255, + 0.052950043231248856, + 0.058207157999277115, + 0.009484119713306427, + -0.004925585351884365, + -0.05399199202656746, + 0.04693514481186867, + -0.09112332761287689, + 0.013569040223956108, + 0.07506781071424484, + -0.04968210682272911, + -0.08965512365102768, + 0.010638553649187088, + -0.033579230308532715, + 0.06786888092756271, + 0.05782826617360115, + -0.018991919234395027, + -0.016150236129760742, + 0.05266587436199188, + -0.01688433811068535, + 0.0302402526140213, + 0.023716218769550323, + 0.023503093048930168, + 0.09619099646806717, + -0.004002037923783064, + -0.07146834582090378, + 0.04816653952002525, + -0.030784908682107925, + -0.0098452502861619, + -0.07137362658977509, + -0.09784864634275436, + 0.0012942982139065862, + 0.10249006003141403, + -0.0019388571381568909, + -0.00021146122890058905, + 0.012420526705682278, + -0.007388378027826548, + 0.04804813861846924, + 0.018198616802692413, + -0.0023917504586279392, + 0.06810569018125534, + 0.00780871044844389, + 0.010709595866501331, + 0.007015407085418701, + -0.013379594311118126, + -0.007181171793490648, + 0.056928399950265884, + -0.026853911578655243, + -0.0631801038980484, + -0.03769967332482338, + -0.017630279064178467, + -0.049208492040634155, + 0.0019506975077092648, + -0.034952711313962936, + 0.0025131141301244497, + 0.027872182428836823, + 0.031803179532289505, + 0.07682018727064133, + 0.05100822448730469, + -0.0010523110395297408, + 0.03559209033846855, + 0.003410020610317588, + -0.00270551978610456, + -0.03275040537118912, + 0.014149216935038567, + -0.007121969945728779, + 0.029529830440878868, + 0.033413466066122055, + -0.05162392184138298, + 0.06332218647003174, + -0.05929647013545036, + -0.004339487757533789, + -0.0409439280629158, + -0.026782870292663574, + -0.020827174186706543, + -0.06644804030656815, + -0.04594055563211441, + -0.050297804176807404, + 0.017428994178771973, + -0.0012624772498384118, + -0.053281571716070175, + -0.018707752227783203, + 0.08548732101917267, + -0.08922886848449707, + -0.02690127305686474, + -0.026475021615624428, + 0.04101496934890747, + -0.034597501158714294, + -0.03831537067890167, + -0.05711784586310387, + -1.0146392924070824e-05, + -0.00403459882363677, + -0.009886691346764565, + 0.054797135293483734, + -0.04179643094539642, + -0.018719591200351715, + 0.06019633635878563, + -0.01945369318127632, + -0.017192186787724495, + 0.013853208161890507, + 0.037226058542728424, + 0.013865048997104168, + 0.007725827861577272, + -0.02673550881445408, + -0.03410020470619202, + -0.008252723142504692, + -0.0014815237373113632, + -0.0007285514730028808, + 0.06029105931520462, + 0.04160698875784874, + -0.033650271594524384, + -0.024580564349889755, + -0.003472182434052229, + -0.022461142390966415, + -0.04212796315550804, + -0.025764599442481995, + -0.06384316086769104, + -0.012420526705682278, + -0.0920705571770668, + -0.006222103722393513, + 0.045893192291259766, + 0.019216885790228844, + 0.05309212580323219, + 0.09334931522607803, + -0.05257115140557289, + 0.05536547303199768, + -0.0012439766433089972, + 0.0497768297791481, + 0.050392527133226395, + -0.03038233518600464, + 0.01285861898213625, + -0.01540429424494505, + -0.00589945400133729, + -0.0014023414114490151, + -0.01629232056438923, + 0.027138080447912216, + 0.016872497275471687, + -0.014705713838338852, + -0.01443338580429554, + 0.018234137445688248, + -0.018897198140621185, + -0.03881266340613365, + -0.014457066543400288, + 0.020412761718034744, + 0.023408370092511177, + -0.005183112807571888, + 0.006672036834061146, + 0.053281571716070175, + -0.057449374347925186, + 0.03405284509062767, + -0.02172704041004181 + ] + }, + { + "id": "e5a7a7a3-bf05-4cd5-bab3-243907ad6c8d", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "qnichols", + "reviewDate": "2022-10-19T22:27:02", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2ac335f6-a960-4850-92cb-2102813d58f9", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "garciasara", + "reviewDate": "2021-03-31T12:50:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2f0b26e3-e6d9-471e-a739-c5a7c42944da", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "dawnfoster", + "reviewDate": "2021-06-17T20:31:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "60d92877-8d02-4bb7-aaed-00a5943354d5", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "krosario", + "reviewDate": "2022-07-29T23:09:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "0ee4494b-6e16-4e73-93e0-2f50ae82f347", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "prussell", + "reviewDate": "2021-01-09T20:43:31", + "stars": 3, + "verifiedUser": false + }, + { + "id": "a9e4e996-c5ca-4ea7-8eff-687fd43e115f", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissa70", + "reviewDate": "2022-09-03T19:09:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "18a38d17-6dc5-4605-984b-810681a42434", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "denise89", + "reviewDate": "2021-05-31T14:23:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d8faa030-25fc-4d19-bb33-8c44574ab613", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "michaelschmidt", + "reviewDate": "2021-01-27T06:02:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0f5e67a4-20da-4cca-b9e2-13ac95f1e57a", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "ssnow", + "reviewDate": "2021-09-13T21:42:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ab094b12-1584-4c09-b463-6bbf702441c0", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "calderonrebecca", + "reviewDate": "2021-09-13T06:08:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0b0de0b7-be90-47f8-a094-82dd046f6652", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "llong", + "reviewDate": "2021-04-14T12:28:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1faf787f-b8b8-4d6e-b4f2-e66dbb8c52b1", + "productId": "4b6e1617-ed70-4ff2-ab4c-0cead4b3c881", + "category": "Electronics", + "docType": "customerRating", + "userName": "hcastro", + "reviewDate": "2021-06-04T23:23:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Keyboard Ultra (Red)", + "description": "This Luxe Keyboard Ultra (Red) is a very beautiful keyboard with an easy to understand keyboard interface and a very fast keyboard that's not as fragile as some keyboards.\n\nThe Luxek Keyboard Ultra (Red) is a very nice keyboard with", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-09-12T08:36:16", + "price": 1091.03, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-12T05:55:35", + "newPrice": 1153.66 + }, + { + "priceDate": "2021-08-20T05:55:35", + "newPrice": 1029.73 + }, + { + "priceDate": "2022-03-28T05:55:35", + "newPrice": 1181.61 + }, + { + "priceDate": "2022-11-03T05:55:35", + "newPrice": 1018.06 + }, + { + "priceDate": "2023-02-22T05:55:35", + "newPrice": 1091.03 + } + ], + "descriptionVector": [ + 0.016496453434228897, + 0.03663426637649536, + -0.030035683885216713, + 0.02917499840259552, + 0.03667840361595154, + -0.024496406316757202, + 0.0007137888460420072, + -0.0026179153937846422, + -0.054642435163259506, + 0.04908108711242676, + 0.053892094641923904, + 0.014234398491680622, + -0.003009637352079153, + -0.07940366864204407, + 0.04210733622312546, + 0.03162464126944542, + -0.007039958145469427, + -0.003299290779978037, + -0.007045475300401449, + 0.020060570910573006, + 0.02376813441514969, + -0.02582053653895855, + -0.040054935961961746, + -0.02451847493648529, + 0.012490959838032722, + -0.014035778120160103, + 0.013329575769603252, + 0.03628116473555565, + 0.03700943663716316, + -0.027056390419602394, + 0.07949194312095642, + -0.004234457388520241, + -0.02710052765905857, + 0.06135135889053345, + -0.02188124880194664, + -0.026239844039082527, + 0.03606047481298447, + 0.0017351621063426137, + 0.0016137835336849093, + 0.005042728502303362, + -0.005202727857977152, + 0.008584776893258095, + -0.020303327590227127, + -0.047801095992326736, + 0.018350236117839813, + -0.010681315325200558, + 0.039172179996967316, + 0.01905643753707409, + -0.025357089936733246, + 0.017081277444958687, + 0.07428369671106339, + 0.023437101393938065, + -0.056584492325782776, + -0.08094848692417145, + 0.054554156959056854, + -0.01297647412866354, + -0.02414330467581749, + 0.04517490416765213, + 0.05327416583895683, + -0.05874723568558693, + 0.008799947798252106, + -0.07022303342819214, + -0.03502323850989342, + -0.04067286103963852, + 0.025268815457820892, + 0.021704697981476784, + -0.01650748774409294, + -0.05274451524019241, + 0.06404376029968262, + 0.07295956462621689, + -0.07891815155744553, + 0.04001079499721527, + -0.013020612299442291, + 0.0023558479733765125, + 0.03045499138534069, + 0.03820115327835083, + 0.06678029149770737, + -0.04195285215973854, + 0.013119922019541264, + 0.04930177703499794, + 0.0733126699924469, + -0.017213691025972366, + -0.015437149442732334, + -0.07154715806245804, + 0.032220497727394104, + -0.008849602192640305, + 0.011597172357141972, + -0.03868666663765907, + -0.041379064321517944, + 0.0537155419588089, + -0.07869746536016464, + 0.012468891218304634, + 0.020181948319077492, + -0.05605483800172806, + 0.05927689000964165, + -0.0523914135992527, + -0.021152976900339127, + 0.07260646671056747, + -0.007873056456446648, + 0.027806730940937996, + 0.009732356294989586, + -0.01679438352584839, + -0.057114142924547195, + 0.006173756439238787, + 0.044225942343473434, + 0.02350330911576748, + 0.10778418928384781, + -0.004245492164045572, + -0.038068737834692, + -0.10028078407049179, + 0.02544536627829075, + 0.02557777799665928, + -0.025908811017870903, + -0.001609645551070571, + 0.003702047048136592, + 0.01841644197702408, + -0.002737914677709341, + 0.0029820511117577553, + 0.06422030925750732, + 0.017026105895638466, + 0.13338403403759003, + -0.0023475722409784794, + -0.011586138047277927, + 0.06969337910413742, + -0.001968264114111662, + -0.03820115327835083, + 0.030896367505192757, + -0.028998447582125664, + 0.035574961453676224, + 0.0026399842463433743, + -0.06205756217241287, + 0.1159055158495903, + 0.015370942652225494, + 0.12261444330215454, + -0.029792925342917442, + 0.0989566519856453, + -0.018405407667160034, + 0.04378456622362137, + -0.006493754684925079, + 0.0467417910695076, + -0.0012751647736877203, + -0.04788937047123909, + 0.033368077129125595, + 0.0005672380211763084, + -0.08302295207977295, + 0.0016330936923623085, + -0.0531417541205883, + -0.033522557467222214, + 0.017588861286640167, + 0.057246554642915726, + 0.06686856597661972, + -0.06082170829176903, + 0.022532280534505844, + -0.019034368917346, + 0.005726862698793411, + 0.04197492450475693, + -0.0921594500541687, + 0.014124053530395031, + -0.01701507158577442, + 0.06448513269424438, + -0.03795839473605156, + 0.008827533572912216, + 0.018184719607234, + 0.019453678280115128, + 0.021627457812428474, + 0.058261722326278687, + -0.007238577585667372, + -0.005100659094750881, + -0.033632904291152954, + 0.05345071479678154, + -0.04669765383005142, + 0.05720241740345955, + 0.005544794723391533, + -0.023591583594679832, + 0.017743343487381935, + -0.0027144665364176035, + 0.058791372925043106, + 0.03992252051830292, + 0.00906477402895689, + -0.025003988295793533, + -0.003009637352079153, + -0.005412381608039141, + -0.09551391750574112, + -0.03579564765095711, + 0.1061069518327713, + -0.014278535731136799, + 0.024584680795669556, + 0.022929519414901733, + 0.055966563522815704, + 0.0282701775431633, + -0.03804666921496391, + 0.042901813983917236, + 0.006570995319634676, + 0.045373521745204926, + -0.06655960530042648, + 0.0678396001458168, + 0.058438271284103394, + 0.06461754441261292, + -0.017776446416974068, + 0.038907356560230255, + 0.008513052947819233, + 0.08081606775522232, + 0.026923978701233864, + -0.023128138855099678, + -0.008446846157312393, + 0.0002724121732171625, + 0.04568248614668846, + -0.013870262540876865, + 0.03862046077847481, + 0.023083999752998352, + -0.021175047382712364, + 0.007398576475679874, + -0.055701736360788345, + 0.013495092280209064, + 0.0011406828416511416, + 0.01014062948524952, + -0.02174883522093296, + -0.02725500985980034, + -0.045108698308467865, + -0.11581724137067795, + 0.016121283173561096, + -0.01032821461558342, + 0.005260658450424671, + 0.012303374707698822, + -0.019232988357543945, + -0.07251819223165512, + 0.09321875870227814, + -0.05782034620642662, + 0.04159975424408913, + 0.055172085762023926, + -0.04100389406085014, + -0.05150865763425827, + 0.05115555599331856, + -0.008606845512986183, + -0.010995796881616116, + -0.06413203477859497, + -0.011817860417068005, + -0.1087552160024643, + -0.03681081533432007, + 0.08094848692417145, + -0.021737800911068916, + -0.008921326138079166, + -0.04468939080834389, + -0.0017724032513797283, + 0.0454176627099514, + -0.07927124947309494, + 0.13506126403808594, + -0.0227088313549757, + -0.022477107122540474, + 0.023679859936237335, + -0.04811006039381027, + -0.033522557467222214, + 0.029748788103461266, + 0.07203267514705658, + 0.0017158518312498927, + 0.03661219775676727, + 0.017390241846442223, + -0.014344742521643639, + -0.015128185972571373, + -0.04841902107000351, + 0.031448088586330414, + -0.0052385893650352955, + 0.015646804124116898, + -0.0015406805323436856, + -0.07229749858379364, + 0.04559421166777611, + 0.03255153074860573, + -0.07251819223165512, + -0.015415080823004246, + 0.0037875636480748653, + 0.035574961453676224, + 0.005222037900239229, + 0.08112503588199615, + -0.008457880467176437, + -0.008910291828215122, + 0.06660374253988266, + -0.029395686462521553, + 0.043674223124980927, + -0.0170592088252306, + -0.027210872620344162, + 0.035574961453676224, + 0.052082449197769165, + 0.013793021440505981, + -0.0390176996588707, + 0.04696248099207878, + -0.054642435163259506, + -0.005666173063218594, + -0.015470252372324467, + 0.0008124089799821377, + -0.05044935643672943, + -0.01767713576555252, + -0.012501994147896767, + -0.005688242148607969, + 0.03164670988917351, + 0.003238601377233863, + 0.06620649993419647, + 0.08187537640333176, + -0.03266187384724617, + 0.013274404220283031, + 0.002311710501089692, + 0.01310888770967722, + 0.030631542205810547, + -0.03820115327835083, + -0.07728505879640579, + -0.025379158556461334, + 0.030300509184598923, + 0.006135135889053345, + 0.08602431416511536, + -0.040054935961961746, + -0.04475559666752815, + 0.07574024051427841, + -0.04921349883079529, + -0.044314220547676086, + 0.014929566532373428, + 0.07017889618873596, + -0.04546179994940758, + -0.006035826168954372, + 0.013925434090197086, + 0.05420105531811714, + -0.018879888579249382, + -0.02297365665435791, + -0.0627637654542923, + -0.10036905854940414, + 0.058658961206674576, + 0.06514719873666763, + -0.05022866651415825, + -0.019519884139299393, + 0.026526737958192825, + 0.02241090126335621, + -0.03603840619325638, + -0.05808517336845398, + 0.023812271654605865, + -0.051552798599004745, + -0.0241212360560894, + 0.021837111562490463, + -0.028976378962397575, + -0.02723294124007225, + 0.06858993321657181, + 0.04855143651366234, + -0.030675679445266724, + 0.028424657881259918, + 0.009384771808981895, + -0.046256277710199356, + -0.03060947358608246, + -0.05420105531811714, + -0.03462599962949753, + -0.05172934755682945, + -0.008005470037460327, + 0.007988917641341686, + 0.022775037214159966, + 0.0010537868365645409, + -0.048198334872722626, + 0.0774616077542305, + -0.020413672551512718, + -0.016860589385032654, + 0.0030510162468999624, + 0.024099167436361313, + -0.04062872380018234, + 0.004744799342006445, + 0.08558294177055359, + 0.021230218932032585, + 0.023790203034877777, + 0.04925763979554176, + 0.024717094376683235, + -0.04243836924433708, + 0.00031741190468892455, + -0.07309197634458542, + 0.03164670988917351, + -0.016297833994030952, + 0.059850677847862244, + 0.03886321559548378, + -0.06399961560964584, + -0.02813776396214962, + 0.04204113036394119, + -0.007983400486409664, + 0.06572099030017853, + -0.005139279644936323, + -0.004648248199373484, + 0.003702047048136592, + 0.027718456462025642, + -0.019133679568767548, + 0.010791660286486149, + -0.0019379195291548967, + 0.005001349374651909, + 0.044203873723745346, + -0.029461894184350967, + -0.035442546010017395, + -0.029219135642051697, + 0.03394186869263649, + -0.0150288762524724, + -0.020645394921302795, + 0.02361365221440792, + 0.011564069427549839, + 0.06845752149820328, + -0.011718550696969032, + 0.030763955786824226, + 0.016386110335588455, + 0.028998447582125664, + -0.009495115838944912, + 0.06077757105231285, + 0.014201294630765915, + 0.07944780588150024, + 0.040474243462085724, + -0.032088086009025574, + -0.05976240336894989, + -0.1059304028749466, + -0.00023810203128959984, + 0.1034586951136589, + -0.022642623633146286, + -0.07428369671106339, + -0.008033055812120438, + 0.007696506101638079, + -0.006692374125123024, + -0.02685777097940445, + 0.005605483893305063, + 0.007657885551452637, + 0.10036905854940414, + 0.06885476410388947, + -0.04528524726629257, + -0.0740630105137825, + 0.05133210867643356, + -0.001262061414308846, + -0.05667276680469513, + 0.016650935634970665, + -0.016231628134846687, + 0.03833356499671936, + -0.032794289290905, + -0.07649058103561401, + 0.025599848479032516, + -0.05782034620642662, + 0.060071367770433426, + -0.04934591427445412, + 0.011884067207574844, + 0.00915856659412384, + 0.006212376989424229, + -0.011188899166882038, + -0.008259261026978493, + -0.01858195848762989, + 0.0011013727635145187, + 0.11864205449819565, + -0.03822322189807892, + -0.08372915536165237, + -0.019012300297617912, + 0.0076413340866565704, + -0.05989481508731842, + -0.004777902737259865, + 0.004143423400819302, + 0.07852090895175934, + -0.0013661987613886595, + -0.03908390551805496, + 0.004422042518854141, + -0.0017461965326219797, + -0.04890453815460205, + -0.03579564765095711, + 0.06858993321657181, + -0.044203873723745346, + -0.040474243462085724, + 0.10169319063425064, + -0.07128233462572098, + -0.020104708150029182, + 0.01010200846940279, + 0.0712381973862648, + 0.017390241846442223, + -0.020369533449411392, + -0.03462599962949753, + 0.02273089997470379, + -0.004504800774157047, + 0.031161194667220116, + 0.010504765436053276, + 0.001162062049843371, + 0.0040937685407698154, + -0.10690142959356308, + -0.015724044293165207, + -0.04307836294174194, + -0.025643985718488693, + -0.01613231748342514, + -0.025776399299502373, + -0.003335152519866824, + 0.005848241038620472, + 0.020457809790968895, + -0.07759401947259903, + -0.028888104483485222, + 0.04903694987297058, + 0.021649526432156563, + 0.02462881989777088, + -0.0008737879106774926, + 0.0836850181221962, + 0.054554156959056854, + 0.13753297924995422, + -0.009699252434074879, + 0.03193360194563866, + -0.006057894788682461, + -0.02983706444501877, + -0.10999106615781784, + -0.055834151804447174, + 0.010090974159538746, + -0.0089047746732831, + 0.019817812368273735, + -0.022366764023900032, + 0.042681124061346054, + 0.04669765383005142, + 0.0310949869453907, + 0.013859228231012821, + -0.012193030677735806, + -0.0388190783560276, + 0.04173216596245766, + -0.025511572137475014, + 0.05976240336894989, + 0.07300370186567307, + -0.05225899815559387, + 0.026681220158934593, + -0.058438271284103394 + ] + }, + { + "id": "00ea40a4-f086-4715-a705-39f36aa66e4f", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "currymargaret", + "reviewDate": "2022-10-22T22:21:30", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ef8088b0-0d3b-4593-81a5-dba16952c710", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "angelacarter", + "reviewDate": "2022-11-03T15:05:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "39f7c66b-7244-4340-b2c1-9270832b05a2", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lawrencejeremy", + "reviewDate": "2021-02-05T03:54:47", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0b155674-831b-490b-b0e7-34c864d01cfa", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jameshood", + "reviewDate": "2022-04-21T04:53:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "629e3fce-e746-429c-a1f2-f8dc85a9bfce", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rebeccawilliams", + "reviewDate": "2022-01-14T23:36:06", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e8b9ec6f-229e-4a37-bd59-0ff5dd256805", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "graydaniel", + "reviewDate": "2021-04-02T00:13:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "142ff2f9-30c6-4fef-a728-3eede698fb01", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardanderson", + "reviewDate": "2021-01-12T05:55:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "19ed807e-78db-4106-93e3-707592d9f8eb", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rose50", + "reviewDate": "2022-06-11T08:22:04", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ebd26a37-06c4-4889-a27f-f3bfd969709c", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "taylorglass", + "reviewDate": "2021-11-10T15:49:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "dcabf372-bfd2-4497-ad53-207fa758f84d", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ssmith", + "reviewDate": "2022-05-27T05:08:18", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ae6dbb1c-7678-4916-b10f-98ec1d9690a5", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "riversjason", + "reviewDate": "2021-07-26T14:32:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5061df3d-76d1-4ef2-b641-1e720226be29", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "heatherlambert", + "reviewDate": "2022-05-17T14:47:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "fc355289-8010-4486-83a0-b115daeeb176", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevinwolf", + "reviewDate": "2021-12-01T16:03:45", + "stars": 1, + "verifiedUser": true + }, + { + "id": "bf3495fa-1c91-49e1-8295-78039f777766", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fwebb", + "reviewDate": "2021-02-02T16:15:22", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a20a0eda-8fc0-475d-9e5e-59ab796bafce", + "productId": "41e6215c-5346-4c37-ad66-c00416b2e96d", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "walterhernandez", + "reviewDate": "2021-11-14T15:56:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d227c0ef-b551-426a-8876-01ed7f457674", + "productId": "d227c0ef-b551-426a-8876-01ed7f457674", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Mini (Gold)", + "description": "This Luxe Mouse Mini (Gold) is made with a custom LED display that glows for 10 seconds, which is fast and stylish. Its patented mechanical mechanism offers a unique touch of comfort while remaining silent and quiet. Each mouse is handcrafted from a super simple, black aluminum shell and has its own unique metallic hardware. The mouse is fully functional with the", + "countryOfOrigin": "India", + "rareItem": true, + "firstAvailable": "2020-06-18T00:46:25", + "price": 519.29, + "stock": 39, + "priceHistory": [ + { + "priceDate": "2021-08-23T15:31:04", + "newPrice": 484.23 + }, + { + "priceDate": "2022-11-15T15:31:04", + "newPrice": 517.33 + }, + { + "priceDate": "2023-01-18T15:31:04", + "newPrice": 519.29 + } + ], + "descriptionVector": [ + -0.08614230901002884, + 0.0030863278079777956, + -0.03401234745979309, + -0.0583205409348011, + -0.000243126749410294, + -0.050624143332242966, + 0.0004384497588034719, + 0.022539455443620682, + 0.020543649792671204, + 0.00905880518257618, + -0.006310091353952885, + 0.01620546169579029, + 0.013886981643736362, + -0.05511769279837608, + 0.075482077896595, + 0.00947708822786808, + -0.053205542266368866, + -0.015691572800278664, + 0.028777841478586197, + 0.006053146440535784, + 0.036665454506874084, + -0.10086585581302643, + -0.025192562490701675, + 0.00619655754417181, + 0.011198022402822971, + -0.02220482937991619, + 0.0004059581842739135, + 0.04309505596756935, + -0.0347772091627121, + 0.04113510251045227, + 0.031669966876506805, + -0.0012630639830604196, + -0.012608231976628304, + 0.03480111062526703, + -0.040250733494758606, + -0.04644131660461426, + 0.03776494041085243, + 0.02299359068274498, + 0.050432927906513214, + 0.05989806354045868, + -0.04388381540775299, + -0.022360190749168396, + -0.008843688294291496, + -0.043142858892679214, + -0.019730987027287483, + 0.011885200627148151, + -0.021428018808364868, + 0.003534487681463361, + 0.01223775278776884, + -0.04730178415775299, + 0.017675425857305527, + 0.02753494493663311, + -0.11243435740470886, + -0.010869371704757214, + 0.0003805624437518418, + -0.0703192725777626, + 0.013408944010734558, + 0.12811397016048431, + 0.04840127006173134, + -0.07557768374681473, + 0.0001353816332994029, + -0.049954891204833984, + -0.0343230739235878, + 0.00911258440464735, + -0.01593059115111828, + -0.041374120861291885, + -0.0040872180834412575, + -0.005849980749189854, + 0.05583474785089493, + 0.07175339013338089, + -0.04163704067468643, + 0.011562525294721127, + 0.0008701771148480475, + 0.0031102297361940145, + 0.0631009116768837, + 0.0471583716571331, + 0.04515061527490616, + 0.004033438861370087, + 0.050910964608192444, + -0.04261701926589012, + 0.053683578968048096, + -0.07543427497148514, + -0.042664822190999985, + -0.03511183336377144, + 0.04971587285399437, + 0.04125461354851723, + 0.042521409690380096, + -0.0780634805560112, + -0.035231344401836395, + 0.03140704706311226, + -0.037023983895778656, + 0.05526110157370567, + 0.005936624947935343, + 0.0135165024548769, + -0.03398844599723816, + -0.011664108373224735, + 0.03286505863070488, + 0.03107241913676262, + -0.023041393607854843, + -0.016647646203637123, + -0.011962881311774254, + 0.056264981627464294, + -0.07423917949199677, + 0.010875347070395947, + -0.005070182494819164, + 0.06357894837856293, + 0.04149363189935684, + -0.02153557725250721, + -0.014532331377267838, + -0.14647060632705688, + 0.06123656779527664, + -0.0037854572292417288, + -0.0480666421353817, + -0.0013004106003791094, + -0.021965811029076576, + 0.05459184944629669, + -0.033629920333623886, + 0.011921052820980549, + -0.05698203667998314, + 0.024690622463822365, + 0.08676375448703766, + 0.03934246301651001, + -0.007839810103178024, + 0.053492363542318344, + -0.02927977964282036, + 0.00445769727230072, + -0.0058619314804673195, + -0.08733740448951721, + 0.031837280839681625, + -0.019802691414952278, + -0.053826991468667984, + 0.05994586646556854, + -0.0002214656851720065, + 0.045270126312971115, + -0.012990661896765232, + 0.03078559786081314, + -0.03186118230223656, + -0.003152057994157076, + -0.012739691883325577, + 0.03248262777924538, + -0.05387479439377785, + -0.07113193720579147, + -0.056121569126844406, + -0.05827273800969124, + -0.10583744198083878, + -0.04230629280209541, + -0.09379090368747711, + 0.016301069408655167, + -0.09675473719835281, + 0.05980245769023895, + 0.03998781368136406, + -0.0690285786986351, + -0.008825762197375298, + -0.05330115184187889, + 0.023758450523018837, + 0.05215385928750038, + -0.07954539358615875, + -0.03288896009325981, + -0.014675742946565151, + 0.022443847730755806, + 0.01926490105688572, + -0.02815639227628708, + -0.006698496639728546, + -0.028538823127746582, + -0.011538623832166195, + 0.019862446933984756, + -0.02672228030860424, + 0.005153839010745287, + -0.03226751089096069, + 0.03955757990479469, + -0.01814151182770729, + 0.011084488593041897, + -0.003513573668897152, + -0.04971587285399437, + 0.047660309821367264, + 0.03931856155395508, + 0.07610352337360382, + 0.016970321536064148, + -0.014855006709694862, + -0.030570480972528458, + 0.0330323725938797, + 0.11836201697587967, + -0.09474697709083557, + -0.028849545866250992, + 0.053540170192718506, + 0.00022333301603794098, + 0.008323823101818562, + -0.022192878648638725, + -0.040250733494758606, + -0.036856669932603836, + -0.003949782345443964, + -0.005790225695818663, + 0.03915124759078026, + -0.0246428195387125, + -0.021296558901667595, + 0.08771982789039612, + 0.021093392744660378, + 0.014400871470570564, + -0.008383577689528465, + -0.0027143550105392933, + 0.012189948931336403, + 0.08356090635061264, + 0.05201045051217079, + 0.009751959703862667, + -0.007499209139496088, + -0.06525208055973053, + -0.01701812446117401, + -0.06491745263338089, + 0.027893472462892532, + 0.01662374474108219, + 0.01789054274559021, + -0.013420894742012024, + -0.013612110167741776, + 0.040537554770708084, + 0.02688959427177906, + 0.026483261957764626, + 0.009447210468351841, + -0.006919588893651962, + -0.05932442098855972, + -0.07275726646184921, + -0.030522676184773445, + -0.004547329153865576, + -0.010606450960040092, + 0.01701812446117401, + -0.05071974918246269, + -0.023316266015172005, + 0.0640091821551323, + 0.04601108282804489, + 0.05865516886115074, + 0.017292996868491173, + -0.07964099943637848, + -0.02305334433913231, + -0.027104711160063744, + 0.03965318948030472, + -0.03723910078406334, + 0.010098536498844624, + -0.03269774466753006, + -0.053014326840639114, + 0.04037024453282356, + 0.025025248527526855, + -0.06788128614425659, + 0.0002825274714268744, + -0.0278695710003376, + -0.007260190322995186, + -0.004795311018824577, + -0.007803957909345627, + 0.12046538293361664, + -0.0712275430560112, + -0.07094072550535202, + 0.027917373925447464, + -0.04187605902552605, + 0.0025216464418917894, + -0.02405722253024578, + 0.04080047830939293, + -0.010815592482686043, + 0.03336699679493904, + 0.03876882046461105, + -0.02720031887292862, + 0.03061828389763832, + -0.046250101178884506, + 0.01968318223953247, + -0.019611477851867676, + -0.06496525555849075, + 0.02001780830323696, + -0.02978171966969967, + 0.052870918065309525, + 0.02526426687836647, + -0.09933613240718842, + 0.04517451673746109, + 0.035040128976106644, + 0.0071347057819366455, + -0.012823348864912987, + 0.10698472708463669, + 0.011598378419876099, + -0.030044639483094215, + 0.017424456775188446, + -0.10440333187580109, + 0.04534183070063591, + -0.03444258123636246, + -0.07930637896060944, + 0.06687740981578827, + 0.023567235097289085, + 0.0771552100777626, + -0.046393513679504395, + 0.053683578968048096, + -0.017675425857305527, + -0.009273922070860863, + -0.002674020826816559, + -0.04156533628702164, + -0.0022617136128246784, + -0.007780055981129408, + 0.05459184944629669, + 0.04938124492764473, + -0.008694302290678024, + 0.02234824001789093, + 0.025049149990081787, + 0.034896716475486755, + 0.03253043442964554, + -0.036522045731544495, + -0.019049784168601036, + -0.02688959427177906, + 0.0043800161220133305, + -0.018500041216611862, + -0.017854690551757812, + 0.013958686962723732, + 0.06544329226016998, + -0.0031311437487602234, + 0.052249468863010406, + -0.022790424525737762, + 0.02355528436601162, + 0.05440063774585724, + 0.05067194625735283, + -0.04562865197658539, + -0.003934843931347132, + 0.10612426698207855, + -0.07648595422506332, + -0.023842105641961098, + 0.0029294718988239765, + 0.03238702192902565, + 0.012847250327467918, + -0.016791056841611862, + -0.0182251688092947, + -0.11520697176456451, + 0.03919905051589012, + 0.048998814076185226, + -0.002806974807754159, + -0.031048517674207687, + -0.05377918854355812, + 0.0009866986656561494, + -0.049142226576805115, + -0.054018206894397736, + -0.041063398122787476, + -0.03740641102194786, + -0.010522793978452682, + 0.004251543432474136, + -0.02930368110537529, + 0.0018060844158753753, + 0.05244068428874016, + 0.06133217737078667, + 0.030379265546798706, + -0.006698496639728546, + -0.0013952711597085, + -0.027582747861742973, + -0.005685655400156975, + -0.018356628715991974, + -0.09288263320922852, + -0.04276042804121971, + 0.007296042982488871, + 0.03848199546337128, + 0.06845492869615555, + 0.0012877127155661583, + -0.10564622282981873, + 0.046417415142059326, + -0.08136193454265594, + 0.01400649081915617, + 0.006232410203665495, + 0.021690938621759415, + -0.03513573482632637, + -0.016313020139932632, + 0.12811397016048431, + -0.004681777209043503, + -0.020376335829496384, + 0.12036976963281631, + 0.053348954766988754, + -0.021607281640172005, + -0.03664155304431915, + -0.06362675130367279, + -9.05189590412192e-05, + -0.08848468959331512, + 0.01730494759976864, + -0.03709568828344345, + -0.074717216193676, + -0.06998465210199356, + 0.1291656643152237, + -0.03073779307305813, + -0.00773225212469697, + 0.07180119305849075, + 0.030164148658514023, + -0.04156533628702164, + 0.042832136154174805, + 0.007977246306836605, + 0.06506086885929108, + 0.03915124759078026, + 0.008509062230587006, + 0.030235854908823967, + -0.017042027786374092, + -0.04084828123450279, + -0.025144757702946663, + 0.03549426421523094, + -0.04797103628516197, + -0.00022314628586173058, + -0.09054025262594223, + 0.009351602755486965, + 0.058033719658851624, + 0.061284370720386505, + -0.010714009404182434, + 0.022838227450847626, + 0.03513573482632637, + -0.020985834300518036, + -0.03291286155581474, + 0.010917175561189651, + 0.0450311079621315, + -0.01058254949748516, + -0.011072536930441856, + -0.0049925013445317745, + 0.020734865218400955, + 0.010188167914748192, + 0.06467843800783157, + -0.017065929248929024, + -0.06482184678316116, + -0.006513257045298815, + -0.0734265148639679, + 0.08638132363557816, + -0.018978077918291092, + -0.0035165613517165184, + -0.007517135236412287, + 0.059037595987319946, + 0.01926490105688572, + 0.04276042804121971, + -0.033916741609573364, + 0.05220166593790054, + 0.007086901925504208, + -0.0557391420006752, + 0.03573328256607056, + -0.025312071666121483, + -0.01732884906232357, + -0.06874175369739532, + -0.05392259731888771, + 0.09269141405820847, + -0.0686461478471756, + 0.026339851319789886, + -0.08896272629499435, + -0.03236312046647072, + -0.0238062534481287, + 0.016719352453947067, + 0.020352434366941452, + 0.029088564217090607, + -0.022467749193310738, + -0.010325604118406773, + 0.07333090901374817, + 0.04787542670965195, + -0.04553304612636566, + 0.03896003216505051, + 0.009160388261079788, + -0.015500357374548912, + 0.0007555228658020496, + -0.05134119838476181, + 0.0377410389482975, + 0.009250020608305931, + -0.04775591939687729, + 0.00849711149930954, + -0.021356312558054924, + -0.003875089343637228, + -0.013970637694001198, + 0.030331462621688843, + -0.00264264945872128, + 0.010970953851938248, + 0.04020293056964874, + -0.0034418681170791388, + -0.003907954320311546, + -0.002352839568629861, + 0.09971856325864792, + 0.037334706634283066, + 0.0068239811807870865, + -0.017627622932195663, + -0.06463063508272171, + 0.04166094586253166, + 0.024045271798968315, + -0.0023334191646426916, + 0.03594839945435524, + 0.043166760355234146, + 0.003770518582314253, + -0.010630352422595024, + 0.0011614810209721327, + -0.0047654337249696255, + -0.07309189438819885, + 0.0027935300022363663, + -0.0285149198025465, + -0.0026306984946131706, + -0.03633083030581474, + -0.0031640089582651854, + 0.0190975870937109, + -0.037334706634283066, + 0.05616937205195427, + 0.03508793190121651, + -0.029208075255155563, + 0.13748350739479065, + 0.01039133407175541, + 0.048305660486221313, + 0.04342968016862869, + -0.03869711235165596, + 0.00264264945872128, + -0.03876882046461105, + -0.05932442098855972, + -0.00962049886584282, + 0.025622794404625893, + -0.019312703981995583, + 0.03396454453468323, + -0.017986150458455086, + 0.039461974054574966, + 0.05502208322286606, + -0.03229141607880592, + -0.01682691089808941, + 0.017543965950608253, + 0.039103444665670395, + 0.025359874591231346, + -0.057699091732501984, + 0.03802786022424698, + -0.004822200629860163, + -0.06649497896432877, + 0.0004436782910488546, + -0.047851525247097015 + ] + }, + { + "id": "9f2ab69b-6382-4a8e-8812-2541618a5e13", + "productId": "d227c0ef-b551-426a-8876-01ed7f457674", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mollybrown", + "reviewDate": "2021-08-23T15:31:04", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aa44881b-df41-4f18-8c6a-2200d177847f", + "productId": "d227c0ef-b551-426a-8876-01ed7f457674", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rhoward", + "reviewDate": "2022-11-16T02:46:30", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Pro (Black)", + "description": "This Premium Stand Pro (Black) is available in a variety of colorways:\n\n\n(10.9% off)\n\n(10.9% off)\n\n(20% off)\n\n(50", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2019-10-06T11:54:56", + "price": 1037.59, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-04-27T15:03:08", + "newPrice": 1116.26 + }, + { + "priceDate": "2021-10-22T15:03:08", + "newPrice": 1035.9 + }, + { + "priceDate": "2022-04-18T15:03:08", + "newPrice": 1132.69 + }, + { + "priceDate": "2022-10-13T15:03:08", + "newPrice": 1055.94 + }, + { + "priceDate": "2024-05-08T15:03:08", + "newPrice": 1037.59 + } + ], + "descriptionVector": [ + -0.0453963503241539, + -0.005834570154547691, + -0.03879044950008392, + 0.04775194078683853, + -0.01912637986242771, + -0.05740474537014961, + -0.002946089953184128, + 0.05576607212424278, + 0.0023315877187997103, + 0.03428409993648529, + 0.023837564513087273, + -0.01575942151248455, + 0.02063703164458275, + -0.009428768418729305, + 0.06872183084487915, + 0.022442132234573364, + 0.02269817516207695, + -0.054946739226579666, + -0.007681277580559254, + -0.028855998069047928, + 0.05540761351585388, + -0.07184554636478424, + -0.07363784313201904, + -0.0059881960041821, + -0.06646865606307983, + -0.016373923048377037, + 0.023389490321278572, + 0.0014850469306111336, + 0.0461132675409317, + 0.08044857531785965, + -0.01131708174943924, + 0.009537586010992527, + -0.004919217899441719, + -0.021725213155150414, + -0.07133346050977707, + 0.05402498319745064, + -0.02880479022860527, + 0.019945716485381126, + 0.09074149280786514, + 0.08551821857690811, + -0.003639005124568939, + -0.0038982483092695475, + -0.006327452138066292, + -0.03005939908325672, + 0.010747387073934078, + -0.06913149356842041, + 0.0019203193951398134, + 0.02993137761950493, + 0.0004728786298073828, + -0.1010856106877327, + 0.03062269277870655, + 0.024669703096151352, + 0.003952657338231802, + -0.04631810262799263, + 0.00644267164170742, + -0.024925746023654938, + 0.016066672280430794, + 0.19408027827739716, + 0.016245901584625244, + -0.03825275972485542, + -0.03487299755215645, + 0.014773656614124775, + 0.012520481832325459, + 0.0041478900238871574, + 0.025476235896348953, + 0.02957291714847088, + -0.001214602030813694, + -0.06559810787439346, + -0.0032261365558952093, + 0.04631810262799263, + -0.02824149653315544, + 0.00910231377929449, + 0.06780007481575012, + 0.023479104042053223, + 0.03538508340716362, + 0.03797111287713051, + 0.10093198716640472, + 0.004903215449303389, + 0.01259729452431202, + 0.005706549156457186, + 0.040787581354379654, + 0.011285076849162579, + -0.012936551123857498, + -0.016271505504846573, + 0.023069435730576515, + -0.001602666568942368, + 0.02249334007501602, + -0.09755222499370575, + -0.025629863142967224, + 0.07860507071018219, + -0.03285026177763939, + 0.04083879292011261, + 0.035129040479660034, + -0.04030110314488411, + 0.0017794959712773561, + 0.0017922980478033423, + -0.05105489119887352, + 0.023197457194328308, + -0.05120851472020149, + -0.043885696679353714, + 0.03789430111646652, + -0.06749282777309418, + -0.010984227061271667, + 0.01204680372029543, + 0.061347801238298416, + 0.040198683738708496, + 0.054229818284511566, + 0.0019971320871263742, + -0.023248666897416115, + -0.11501432955265045, + 0.06078450754284859, + -0.010414532385766506, + 0.0007977326749823987, + -0.017372488975524902, + -0.07353542745113373, + 0.05143895372748375, + 0.005636137444525957, + -0.08300900459289551, + 0.05755837261676788, + -0.08551821857690811, + -0.05940187722444534, + 0.010804996825754642, + -0.0573023296892643, + 0.026397990062832832, + 0.021609993651509285, + -0.02058582380414009, + -0.030776318162679672, + 0.029854563996195793, + 0.00435592420399189, + -0.04846886172890663, + -0.023095041513442993, + 0.06651986390352249, + 0.05049159750342369, + 0.028548747301101685, + -0.02130274288356304, + 0.04672776907682419, + 0.02842072583734989, + 0.08812985569238663, + -0.016988424584269524, + 0.0237735528498888, + -0.03904649242758751, + -0.06262801587581635, + 0.019920112565159798, + 0.06718557327985764, + -0.02842072583734989, + 0.00570334866642952, + 0.03341355547308922, + 0.05976033955812454, + -0.0019331214716657996, + 0.0293680839240551, + 0.051899831742048264, + -0.12914787232875824, + 0.02422162890434265, + -0.06861940771341324, + 0.09248258173465729, + 0.004083879292011261, + -0.07788815349340439, + -0.06185988709330559, + -0.011400295421481133, + 0.06897787004709244, + 0.016489142552018166, + 0.02824149653315544, + 0.018639899790287018, + 0.0018515079282224178, + 0.007719683926552534, + 0.05164378881454468, + 0.06646865606307983, + 0.012117215432226658, + -0.051669392734766006, + 0.030494671314954758, + 0.022710977122187614, + -0.0320565328001976, + -0.018998360261321068, + -0.09698893129825592, + -0.002190764294937253, + 0.044397782534360886, + 0.06851699203252792, + -0.022749383002519608, + 0.058070458471775055, + 0.01038252655416727, + 0.0022515745367854834, + -0.011464306153357029, + -0.05110609903931618, + -0.01733408309519291, + 0.0080141332000494, + 0.008282977156341076, + 0.07532772421836853, + 0.06109175831079483, + 0.03500102087855339, + -0.0651884377002716, + -0.034565746784210205, + 0.008615832775831223, + -0.016399526968598366, + -0.007527651730924845, + 0.056995078921318054, + 0.023875970393419266, + 0.034565746784210205, + 0.04434657469391823, + -0.02826710045337677, + 0.04375767707824707, + -0.015336950309574604, + 0.04519151523709297, + 0.07302334159612656, + 0.0007909315172582865, + 0.003181328997015953, + -0.057507164776325226, + 0.0293680839240551, + 0.0644715204834938, + 0.038355179131031036, + -0.04012187197804451, + -0.03553871065378189, + -0.0466509573161602, + -0.0062922462821006775, + -0.010068874806165695, + 0.02422162890434265, + 0.04723985493183136, + 0.06078450754284859, + -0.006241037975996733, + -0.015234533697366714, + -0.05617574229836464, + 0.062474388629198074, + 0.016540350392460823, + 0.006708315573632717, + -0.04601085186004639, + -0.04229823499917984, + 0.0019107178086414933, + 0.04977467656135559, + 0.062474388629198074, + 0.04104362428188324, + 0.04690700024366379, + -0.061194177716970444, + -0.11419498920440674, + -0.04480745270848274, + -0.025809092447161674, + 0.033669598400592804, + 0.03889286890625954, + -0.07901474088430405, + -0.013967122882604599, + -0.020688241347670555, + 0.010830600745975971, + -0.048980943858623505, + 0.028881603851914406, + -0.043322402983903885, + -0.0006253040046431124, + -0.015260137617588043, + -0.06057967618107796, + 0.056995078921318054, + -0.012027599848806858, + -0.05289839580655098, + 0.022147683426737785, + -0.07752969115972519, + -0.007482844404876232, + -0.031237194314599037, + 0.06237197294831276, + 0.007073176093399525, + -0.010420933365821838, + 0.03991703689098358, + -0.009198329411447048, + 0.012994160875678062, + -0.0164763405919075, + 0.009800029918551445, + 0.03561552241444588, + -0.0583777092397213, + 0.0030261031351983547, + -0.04373207315802574, + 0.04977467656135559, + -0.0018002993892878294, + -0.03315751254558563, + -0.04065956175327301, + 0.032543011009693146, + -0.009825633838772774, + -0.019945716485381126, + -0.03197971731424332, + -0.06068209186196327, + -0.029086437076330185, + 0.09642563760280609, + -0.06057967618107796, + 0.03812474012374878, + 0.010849804617464542, + 0.0293680839240551, + 0.02108510583639145, + 0.025399424135684967, + 0.07461080700159073, + 0.034335311502218246, + 0.010504147037863731, + -0.07850265502929688, + 0.011797161772847176, + 0.017526114359498024, + -0.015170522965490818, + -0.02862556092441082, + -0.021289940923452377, + 0.011758755892515182, + 0.08147274702787399, + -0.008423800580203533, + 0.037126172333955765, + -0.0017858969513326883, + 0.014197560958564281, + 0.04980028048157692, + -0.022275704890489578, + -0.01377509068697691, + 0.01775655336678028, + -0.001993931597098708, + -0.025040963664650917, + -0.036383651196956635, + -0.007726084906607866, + 0.1160384938120842, + -0.05220708250999451, + -0.014299978502094746, + 0.006759523879736662, + -0.004282312002032995, + 0.05725112184882164, + -0.031800489872694016, + -0.0443209707736969, + -0.032901473343372345, + 0.031800489872694016, + -0.008443004451692104, + 0.0031221192330121994, + 0.02361992746591568, + -0.04014747589826584, + 0.04188856482505798, + -0.07650551944971085, + -0.013954320922493935, + -0.07097500562667847, + 0.018575889989733696, + -0.0114835100248456, + -0.0010009664110839367, + -0.04759831726551056, + 0.006964358035475016, + -0.043117571622133255, + -0.002328387228772044, + -0.12218351662158966, + -0.03658848628401756, + 0.07630068808794022, + 0.019472038373351097, + 0.07384268194437027, + 0.03359278663992882, + -0.04227263107895851, + -0.01200199592858553, + -0.023005425930023193, + 0.008289378136396408, + 0.03697254881262779, + 0.05300081521272659, + -0.05143895372748375, + -0.07537893205881119, + 0.03937934711575508, + -0.13652190566062927, + 0.0434248223900795, + -0.033848829567432404, + -0.009588794782757759, + 0.04362965375185013, + 0.0015234533930197358, + 0.0001466243847971782, + 0.04811039939522743, + -0.008500613272190094, + 0.07389388978481293, + -0.007796496618539095, + 0.04232383891940117, + -0.024554483592510223, + 0.016156286001205444, + -0.04206779599189758, + -0.011201863177120686, + -0.030366649851202965, + 0.008513416163623333, + 0.038764845579862595, + 0.08408438414335251, + 0.03082752600312233, + 0.0013362221652641892, + 0.082548126578331, + -0.029060833156108856, + 0.045857224613428116, + 0.015733815729618073, + -0.042375046759843826, + -0.029470501467585564, + 0.05082445219159126, + -0.030571484938263893, + 0.09601596742868423, + 0.02826710045337677, + 0.04012187197804451, + -0.03208213672041893, + 0.008065341040492058, + -0.0832650437951088, + 0.018486274406313896, + -0.032363783568143845, + 0.04017307981848717, + 0.07891232520341873, + 0.0006573093123733997, + -0.005575327202677727, + -0.0071755931712687016, + -0.04206779599189758, + 0.004202298820018768, + -0.04529393091797829, + -0.04247746244072914, + -0.05269356444478035, + -0.01559299323707819, + 0.07363784313201904, + -0.060528464615345, + -0.03185169771313667, + 0.08275296539068222, + -0.027806224301457405, + -0.006468275561928749, + 0.010772991925477982, + 0.017590126022696495, + -0.034360915422439575, + -0.01933121494948864, + -0.012725315988063812, + -0.06462514400482178, + 0.006010599434375763, + 0.050619617104530334, + 0.032927077263593674, + -0.08106308430433273, + -0.023299874737858772, + -0.03615321218967438, + -0.04170933738350868, + 0.08464767783880234, + 0.07015566527843475, + 0.011944386176764965, + 0.08930765092372894, + 0.018307045102119446, + 0.07993649691343307, + -0.0693875402212143, + 0.08638876676559448, + 0.00038826456875540316, + -0.06022121384739876, + -0.031083568930625916, + -0.022736581042408943, + -0.007585261482745409, + -0.016463538631796837, + 0.025668269023299217, + -0.07174313068389893, + 0.0630376860499382, + -0.005069643259048462, + -0.054229818284511566, + -0.01968967355787754, + -0.014107946306467056, + -9.271541784983128e-05, + 0.04793117195367813, + 0.027831828221678734, + 0.04595964401960373, + 0.026730844751000404, + 0.04063395783305168, + -0.03118598647415638, + -0.07752969115972519, + 0.020009728148579597, + 0.08147274702787399, + -0.05725112184882164, + 0.02209647372364998, + -0.04316877946257591, + 0.03535947948694229, + -0.0009481576853431761, + -0.02267257124185562, + -0.09606717526912689, + -0.018742317333817482, + -0.04209339991211891, + 0.06667348742485046, + 0.028343914076685905, + -0.0619623027741909, + 0.027268534526228905, + 0.04926259070634842, + -0.011477109044790268, + 0.02445206604897976, + 0.03594837710261345, + 0.0726136788725853, + 0.059709127992391586, + -0.00969761237502098, + -0.040941208600997925, + -0.024464868009090424, + -0.03935374319553375, + 0.06534206867218018, + -0.01757732219994068, + 0.049160175025463104, + -0.00984483677893877, + -0.004839204717427492, + 0.001872311346232891, + -0.02609073929488659, + 0.029316876083612442, + -0.012693311087787151, + 0.03387443348765373, + -0.032927077263593674, + -0.05325685814023018, + -0.05146455764770508, + 0.008865474723279476, + 0.03794550895690918, + -0.03157005086541176, + -0.0043399217538535595, + -0.006439470686018467, + -0.05341048166155815, + -0.07143587619066238, + -0.02263416349887848, + -0.024106409400701523, + 0.0443209707736969, + 0.014863272197544575, + 0.04352723807096481, + 0.05904341861605644, + -0.010324916802346706, + 0.00351098389364779, + -0.07573739439249039, + 0.02579629048705101, + -0.0468301884829998, + 0.014427999034523964, + 0.0466509573161602, + 0.026077937334775925, + 0.01948484033346176, + 0.0006937153520993888, + -0.0073868283070623875, + 0.011553921736776829, + -0.013570256531238556, + -0.02842072583734989, + 0.0430663637816906, + -0.0024628096725791693, + -0.03848319873213768, + -0.004106282722204924, + 0.015272939577698708 + ] + }, + { + "id": "9dc1b22b-d6db-43f1-b17e-ff3a5101e986", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "katie86", + "reviewDate": "2022-09-03T06:16:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cfc295bd-a587-4ef1-b7c8-ea9037c565b1", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "tlove", + "reviewDate": "2022-01-12T05:46:44", + "stars": 2, + "verifiedUser": true + }, + { + "id": "18ec8c09-104a-4931-b1b0-2bb58e915298", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "bhughes", + "reviewDate": "2022-10-14T15:18:01", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5da720d9-085d-4420-bab3-eafbb852230d", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "ydean", + "reviewDate": "2021-05-26T18:57:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "81947d0a-e81c-4ecf-b7c8-c224f8bb72b8", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "ayalakathryn", + "reviewDate": "2021-06-22T12:42:46", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2203863e-2db3-45e2-ba97-82c322a122e0", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "peterwyatt", + "reviewDate": "2021-08-01T03:08:13", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d077e915-ec68-4533-a992-25279982a33e", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "williamsonfrank", + "reviewDate": "2022-03-15T04:25:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f78ba776-8dc4-4a17-bfca-f7c35eeeed3b", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "shawcraig", + "reviewDate": "2021-05-07T03:33:21", + "stars": 4, + "verifiedUser": false + }, + { + "id": "3279ce73-f448-4949-b4e2-2a648e3eaea4", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "jrios", + "reviewDate": "2021-04-27T15:03:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a8c9988a-cb6f-4e0b-8aa2-0f2242df3652", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "alyssadavenport", + "reviewDate": "2022-09-02T06:50:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "57d316fa-1cc4-4916-8baa-c07ec6cadc5b", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "milessean", + "reviewDate": "2021-08-28T13:32:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "37e21f9c-11c2-472e-83ef-ea458771d812", + "productId": "a73e902b-23c0-407e-a4c9-6437183df8d5", + "category": "Accessory", + "docType": "customerRating", + "userName": "carlyleonard", + "reviewDate": "2021-08-03T00:03:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "731af126-7154-4190-9dee-6ffb5637d6da", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Super (Steel)", + "description": "This Basic Mouse Super (Steel) is a fully functional keyboard with keyboard with buttons that have been specially designed for you. It's a simple, intuitive design with an incredible range of design options.\n\nThe keyboard can be used with the following keys:", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-07-04T09:04:47", + "price": 187.52, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-02-01T20:17:49", + "newPrice": 170.23 + }, + { + "priceDate": "2023-08-08T20:17:49", + "newPrice": 187.52 + } + ], + "descriptionVector": [ + -0.006367601454257965, + -0.023668142035603523, + -0.0399123877286911, + 0.009852774441242218, + 0.015826502814888954, + -0.005749938078224659, + 0.011720683425664902, + 0.013546818867325783, + 0.015671342611312866, + 0.05189565569162369, + 0.08837061375379562, + -0.004571305587887764, + 0.006773409433662891, + -0.07252024114131927, + -0.003756705904379487, + 0.015277469530701637, + -0.028167834505438805, + 0.016900701448321342, + -0.030029775574803352, + -0.08264156430959702, + 0.016984250396490097, + -0.010944874957203865, + -0.08961191028356552, + -0.04382723942399025, + -0.009590192697942257, + 0.004827918950468302, + 0.0036970283836126328, + 0.038694966584444046, + -0.06015503779053688, + 0.0038462223019450903, + -0.004523563198745251, + -0.019980065524578094, + -0.023775562644004822, + 0.05146597698330879, + 0.026114923879504204, + -0.051084037870168686, + -0.056478895246982574, + -0.0633537545800209, + -0.0006281069363467395, + 0.04070013388991356, + 0.0016844007186591625, + -0.019860710948705673, + 0.0493653230369091, + -0.02580460160970688, + -0.05695631727576256, + 0.09911258518695831, + -0.010855358093976974, + -0.0005188222858123481, + -0.0008683092892169952, + -0.013152946718037128, + 0.07213830202817917, + 0.0421801395714283, + -0.05041565001010895, + -0.008533898741006851, + 0.046596281230449677, + 0.04167884588241577, + -0.008504060097038746, + 0.13281850516796112, + 0.02773815579712391, + -0.06387892365455627, + -0.03525753691792488, + -0.10293195396661758, + -0.012782945297658443, + -0.00784760620445013, + -0.062446657568216324, + -0.09591386467218399, + 0.005021871533244848, + -0.02381136827170849, + 0.037954963743686676, + 0.003565737511962652, + -0.035400763154029846, + -0.023572659119963646, + -0.03258397802710533, + 0.05829309672117233, + -0.0025422663893550634, + 0.017807800322771072, + 0.07275895029306412, + 0.012353266589343548, + 0.05036790668964386, + 0.010055677965283394, + 0.021806200966238976, + -0.009620031341910362, + -0.06550215184688568, + -0.04514014720916748, + 0.077342189848423, + 0.0032136396039277315, + 0.02473040483891964, + -0.099590003490448, + -0.05896148458123207, + 0.07882219552993774, + -0.03962593525648117, + 0.023405561223626137, + -0.004174449015408754, + -0.02666395902633667, + 0.03298978507518768, + 0.021078133955597878, + -0.07385701686143875, + -7.441052730428055e-05, + -0.03819367289543152, + 0.03284655883908272, + 0.050797585397958755, + 0.03189171850681305, + -0.11467650532722473, + 0.003506059991195798, + -0.027594929561018944, + -0.011780361644923687, + 0.0752892792224884, + -0.0029361387714743614, + -0.09285836666822433, + -0.11467650532722473, + -0.07032410055398941, + -0.01066439040005207, + 0.0005162113811820745, + 0.050176940858364105, + -0.050463393330574036, + -0.03547237440943718, + -0.11171649396419525, + -0.021734587848186493, + -0.001838070573285222, + 0.013881013728678226, + 0.06306730210781097, + 0.048864033073186874, + 0.012281653471291065, + 0.030387841165065765, + -0.07629186660051346, + -0.013224559836089611, + 0.0047980803065001965, + -0.021531684324145317, + 0.00517404917627573, + -0.0376446396112442, + -0.050176940858364105, + 0.050463393330574036, + 0.031867846846580505, + 0.032822687178850174, + -0.045331116765737534, + 0.07872670888900757, + -0.036522701382637024, + 0.055524054914712906, + -0.07395250350236893, + 0.08579254150390625, + -0.020934907719492912, + -0.010694229044020176, + -0.025900084525346756, + -0.0018276269547641277, + -0.07304540276527405, + 0.006874861195683479, + -0.025709116831421852, + 0.07013313472270966, + 0.03480398654937744, + 0.06478601694107056, + 0.02364427223801613, + -0.1131487563252449, + -0.030435584485530853, + -0.057958900928497314, + 0.061491817235946655, + 0.06908281147480011, + -0.05743373930454254, + 0.021281037479639053, + -0.00673760287463665, + 0.05690857395529747, + -0.010580841451883316, + -0.015086500905454159, + -0.02769041433930397, + -0.007537283003330231, + 0.00355976982973516, + 0.06025052070617676, + -0.0026287990622222424, + 0.05542856827378273, + 0.03790722042322159, + 0.005905100144445896, + -0.08450350165367126, + 0.03568721562623978, + -0.019753290340304375, + -0.033801402896642685, + 0.0629718229174614, + -0.033634305000305176, + 0.02518395334482193, + 0.035162050276994705, + 0.011893749237060547, + -0.04370788484811783, + 0.0022916204761713743, + 0.044424016028642654, + -0.07748541980981827, + 0.033538818359375, + 0.13367785513401031, + 0.004762273747473955, + 0.004422111436724663, + 0.0306504238396883, + -0.05156145989894867, + -0.024897500872612, + 0.012580041773617268, + -0.044137563556432724, + -0.06039374694228172, + -0.011840038932859898, + 0.04678725078701973, + 0.09715516120195389, + -0.047216929495334625, + 0.0719950795173645, + 0.05003371462225914, + -0.06110987812280655, + 0.008319059386849403, + 0.039936259388923645, + 0.0493653230369091, + 0.0055559859611094, + 0.010545034892857075, + -0.0010988140711560845, + -0.01598166488111019, + -0.0269504114985466, + 0.004395256284624338, + 0.02604331076145172, + 0.02773815579712391, + -0.03241688013076782, + 0.05929568037390709, + -0.06640925258398056, + 0.05662212148308754, + -0.01586231030523777, + -0.002952550072222948, + -0.033395592123270035, + -0.08049316704273224, + -0.09290610998868942, + 0.02307136543095112, + 0.021734587848186493, + 0.025780729949474335, + -0.046190474182367325, + -0.05518985912203789, + 0.008229543454945087, + 0.09271514415740967, + -0.03967367857694626, + 0.0078058321960270405, + 0.051991138607263565, + -0.040676262229681015, + -0.008408576250076294, + -0.04105820134282112, + 0.009482773020863533, + -0.036809153854846954, + 0.05652663856744766, + -0.009572289884090424, + -0.031700748950242996, + -0.10388679057359695, + 0.015181985683739185, + 0.026138795539736748, + -0.05280275642871857, + -0.021555554121732712, + -0.05547631159424782, + 0.06617054343223572, + 0.034660760313272476, + 0.056144699454307556, + -0.019992001354694366, + -0.06292407959699631, + -0.05538082867860794, + -0.017652638256549835, + 0.06674344837665558, + -0.00923809502273798, + 0.04535498842597008, + -0.01830909214913845, + 0.06655247509479523, + 0.014430047944188118, + -0.029576227068901062, + -0.02905106358230114, + -0.04578466713428497, + 0.04132078215479851, + 0.018440382555127144, + -0.038289159536361694, + 0.06411763280630112, + 0.007191152777522802, + 0.040628522634506226, + 0.04024658352136612, + -0.12451137602329254, + -0.029934292659163475, + 0.017724251374602318, + 0.06192149594426155, + 0.07252024114131927, + 0.042991753667593, + 0.0006620485801249743, + -0.0021856927778571844, + -0.014334563165903091, + -0.04736015573143959, + 0.0571950264275074, + -0.025947827845811844, + -0.056478895246982574, + 0.006552602164447308, + 0.08297576010227203, + 0.05098855495452881, + 0.043755628168582916, + 0.019120708107948303, + 0.008671157993376255, + -0.03427882120013237, + 0.030626552179455757, + -0.03740593045949936, + -0.007203088141977787, + -0.03241688013076782, + 0.021460071206092834, + 0.01345133502036333, + 0.03298978507518768, + 0.011804232373833656, + 0.048076286911964417, + 0.004786144942045212, + -0.02723686397075653, + 0.03224978223443031, + 0.020421680063009262, + 0.01756908930838108, + -0.0008504060097038746, + -0.09763257950544357, + -0.052898239344358444, + 0.05542856827378273, + -0.021472007036209106, + 0.06344924122095108, + -0.004210255574434996, + -0.07271120697259903, + -0.03781173750758171, + 0.03287043049931526, + 0.017760058864951134, + -0.034254953265190125, + -0.0061945365741848946, + 0.05991632491350174, + -0.0006724921404384077, + 0.03205881640315056, + 0.01672166772186756, + -0.024706533178687096, + 0.010342130437493324, + -0.06077568233013153, + -0.05657437816262245, + -0.08884803205728531, + 0.08321446925401688, + 0.06817571073770523, + -0.09772806614637375, + -0.07304540276527405, + 0.02580460160970688, + 0.03716721758246422, + -0.08689060807228088, + -0.02580460160970688, + 0.026687830686569214, + -0.0839305967092514, + 0.041869815438985825, + -0.00723292725160718, + -0.07686477154493332, + 0.013737787492573261, + 0.07457315176725388, + -0.0055171954445540905, + 0.003118155524134636, + 0.0345652736723423, + 0.007256797980517149, + 0.0030420664697885513, + -0.0027869446203112602, + -0.02785751037299633, + -0.031247200444340706, + -0.014967146329581738, + -0.044996920973062515, + -0.01091503631323576, + 0.022987818345427513, + 0.0014628475764766335, + -0.011302940547466278, + 0.028096221387386322, + -0.029982034116983414, + 0.017700381577014923, + -0.0204694215208292, + -0.020708132535219193, + -0.022200074046850204, + -0.0055231633596122265, + 0.08369188755750656, + 0.013152946718037128, + -0.05041565001010895, + 0.02177039347589016, + 0.008689060807228088, + -0.06597957015037537, + 0.034994952380657196, + -0.019860710948705673, + 0.022940075024962425, + 0.01933554746210575, + -0.011607295833528042, + -0.019717484712600708, + -0.04081948846578598, + 0.07209055870771408, + 0.04189368709921837, + -0.007537283003330231, + 0.019633935764431953, + 0.003365817479789257, + -0.036809153854846954, + -0.020254582166671753, + 0.007507443893700838, + 0.05332791805267334, + 0.01796296238899231, + -0.0269504114985466, + -0.0009175433660857379, + 0.008659222163259983, + -0.06187375262379646, + -0.05700405687093735, + -0.030483325943350792, + 0.01921619288623333, + 0.04950854927301407, + 0.01563553512096405, + 0.054664697498083115, + -0.015492308884859085, + 0.037668511271476746, + 0.012544235214591026, + 0.008145994506776333, + 0.0167694091796875, + 0.02661621756851673, + -0.07705573737621307, + 0.027356218546628952, + 0.029552355408668518, + 0.04292014241218567, + 0.0015128275845199823, + -0.0034344468731433153, + 0.001921619288623333, + -0.0724247545003891, + -0.010389872826635838, + 0.021985232830047607, + -0.05452147126197815, + -0.02285652607679367, + -0.033634305000305176, + -0.04249046370387077, + 0.045689184218645096, + -0.019574258476495743, + -0.004714531823992729, + 0.06440408527851105, + 0.07256798446178436, + 0.04370788484811783, + 0.021054262295365334, + -0.07624412328004837, + 0.07428669929504395, + -0.024515565484762192, + -0.029194289818406105, + 0.02421717718243599, + 0.024587178602814674, + 0.0019574258476495743, + -0.07380927354097366, + -0.02769041433930397, + 0.03315688297152519, + -0.038456257432699203, + -0.023166850209236145, + -0.010198904201388359, + -0.06836667656898499, + -0.006552602164447308, + -0.005776793230324984, + -0.014776177704334259, + 0.0077461544424295425, + 0.013260366395115852, + -0.03592592477798462, + 0.020385874435305595, + 0.014907468110322952, + -0.015384889207780361, + -0.03227365389466286, + -0.010491324588656425, + -0.04208465293049812, + 0.032154299318790436, + -0.052850496023893356, + 0.014310692436993122, + 0.05146597698330879, + -0.00740599213168025, + -0.048983387649059296, + -0.04485369473695755, + -0.0364033468067646, + -0.04265756160020828, + 0.034016240388154984, + -0.020564906299114227, + 0.03926787152886391, + 0.06230343133211136, + 0.021674910560250282, + 0.009828903712332249, + 0.00572606734931469, + 0.05652663856744766, + 0.07667379826307297, + -0.02979106642305851, + -0.012192136608064175, + -0.08125704526901245, + -0.027714284136891365, + 0.008080349303781986, + -0.02228362113237381, + -0.008969545364379883, + 0.04950854927301407, + -0.040222711861133575, + 0.035782698541879654, + 0.04814790189266205, + 0.03864722326397896, + -0.08755899965763092, + -0.016626182943582535, + 0.02580460160970688, + -0.0189297404140234, + 0.0485537089407444, + 0.0066719576716423035, + -0.028000736609101295, + -0.06282859295606613, + -0.008038574829697609, + 0.016745539382100105, + -0.06020277738571167, + 0.04497305303812027, + 0.046715639531612396, + 0.07261572033166885, + 0.016184570267796516, + -0.00830115657299757, + 0.054330501705408096, + -0.060298264026641846, + 0.004249046090990305, + -0.004607112146914005, + 0.052277591079473495, + -0.019538450986146927, + 0.009196320548653603, + 0.026640087366104126, + 0.08980287611484528, + -0.02166297473013401, + -0.04177433252334595, + -0.03630786016583443, + 0.027022024616599083, + 0.022617816925048828, + 0.015205856412649155, + -0.04690660536289215, + 0.014823920093476772, + 0.07022862136363983, + 0.012973913922905922, + -0.0067196995951235294, + -0.09495902061462402 + ] + }, + { + "id": "c5cf3469-ef77-4b2e-8abc-10f4038cfcb4", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rossjohn", + "reviewDate": "2021-12-10T15:08:24", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1aa54d24-ffc9-46e5-b6e4-d9ba93713d02", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ipowell", + "reviewDate": "2021-06-12T16:14:25", + "stars": 1, + "verifiedUser": true + }, + { + "id": "636f5721-f9e2-4744-bcc3-47394bd92153", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scott42", + "reviewDate": "2021-11-06T00:25:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "561963e2-5408-458e-a922-85e50cde3081", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wtorres", + "reviewDate": "2021-10-13T00:16:57", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e40ad758-beab-46a2-81da-e596e53d4ee1", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "uanderson", + "reviewDate": "2022-02-23T14:20:58", + "stars": 2, + "verifiedUser": true + }, + { + "id": "f06597c5-e3f7-4b24-a90a-3237c2c3fff2", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brendamclaughlin", + "reviewDate": "2022-06-28T09:01:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bd1a65ab-d970-4481-9232-bbbe3e989c65", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "qmaynard", + "reviewDate": "2022-08-02T08:28:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4425252f-1bf0-4c51-9b56-533f0930fca8", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "evan66", + "reviewDate": "2022-10-21T14:58:26", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bfb64654-cc93-4468-a405-87afda9605b5", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "klittle", + "reviewDate": "2021-12-10T04:16:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e515a172-666c-4d51-80f8-edf65ed82f8e", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wagnerbrooke", + "reviewDate": "2022-07-15T03:49:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "abdb026b-c235-48fa-a8a6-0b62b588622f", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "yjohnson", + "reviewDate": "2021-06-09T18:30:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "9e47e363-0252-43a0-9d4f-dcc11473cda2", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "samuel61", + "reviewDate": "2022-10-06T14:46:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ec4489a4-3691-4d52-ad40-f2085640a3a6", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael12", + "reviewDate": "2021-02-01T20:17:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7ceb7133-5256-4885-9cd0-43018a398aaa", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael16", + "reviewDate": "2022-08-31T08:28:01", + "stars": 2, + "verifiedUser": false + }, + { + "id": "afdf56cf-8662-46c7-99dc-4911b8d3a4b8", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidhatfield", + "reviewDate": "2022-10-06T15:45:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a0c60065-b7e1-46b1-8b31-70ca8ed66474", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gmiller", + "reviewDate": "2021-03-31T12:06:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ac9adf62-49f4-4c9f-beaa-d7a7eb2be881", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cbrewer", + "reviewDate": "2022-09-08T08:55:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f490a6a3-5a37-4a4e-9f79-506fc373af0f", + "productId": "731af126-7154-4190-9dee-6ffb5637d6da", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "david43", + "reviewDate": "2021-10-16T08:00:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "product", + "name": "Amazing TV Pro (Red)", + "description": "This Amazing TV Pro (Red) is a TV that has a great color saturation in all the other TV's (including the LG V20). It is not the best color palette and its brightness is very far off but it", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-01-07T04:20:12", + "price": 158.75, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-11T15:52:53", + "newPrice": 146.88 + }, + { + "priceDate": "2021-08-26T15:52:53", + "newPrice": 165.82 + }, + { + "priceDate": "2022-04-10T15:52:53", + "newPrice": 151.84 + }, + { + "priceDate": "2022-11-23T15:52:53", + "newPrice": 153.44 + }, + { + "priceDate": "2023-06-07T15:52:53", + "newPrice": 158.75 + } + ], + "descriptionVector": [ + 0.05539295822381973, + 0.033240534365177155, + -0.02948104590177536, + 0.06148427724838257, + -0.0243058018386364, + 0.004601208493113518, + -0.05434601008892059, + -0.028291333466768265, + 0.06538653373718262, + 0.018214479088783264, + 0.03186046704649925, + -0.040164653211832047, + 0.02388940192759037, + 0.028291333466768265, + 0.032312557101249695, + 0.024389080703258514, + 0.010975086130201817, + -0.012230231426656246, + 0.019832486286759377, + 0.018262067809700966, + 0.06652865558862686, + -0.11011967808008194, + 0.0003518942976370454, + 0.020320268347859383, + -0.061198748648166656, + -0.012164797633886337, + 0.004348394460976124, + -0.006519617512822151, + 0.012146951630711555, + -0.01666785404086113, + 0.07709328830242157, + 0.0077866604551672935, + 0.0010662786662578583, + 0.011760296300053596, + -0.036214809864759445, + 0.06828942894935608, + -0.012634733691811562, + -0.0012291204184293747, + 0.04568491131067276, + 0.03849905729293823, + 0.02698265202343464, + -0.017691006883978844, + -0.007584409322589636, + -0.00685868551954627, + -0.007524923887103796, + -0.021593259647488594, + -0.006257881410419941, + -0.0027140288148075342, + -0.042329926043748856, + -0.0298855472356081, + -0.0272681824862957, + -0.0045446972362697124, + -0.03904632478952408, + -0.006840839982032776, + 0.017631521448493004, + 0.004056915640830994, + -0.020463034510612488, + 0.0356675423681736, + 0.02284245565533638, + -0.028576863929629326, + -0.008095985278487206, + 0.021700333803892136, + -0.005576771683990955, + -0.002758642891421914, + 0.0071144732646644115, + -0.053394243121147156, + -0.017750492319464684, + -0.030028311535716057, + -0.01846431940793991, + 0.0383324958384037, + -0.010356436483561993, + -0.02855307050049305, + 0.0699550211429596, + 0.05563089996576309, + -0.000952512607909739, + 0.07580839842557907, + 0.07019296288490295, + 0.03024245984852314, + 0.01566849648952484, + 0.013205794617533684, + 0.021474288776516914, + 0.021712230518460274, + 0.03414471447467804, + 0.05344182997941971, + 0.05758202448487282, + 0.01707235723733902, + 0.04368619620800018, + -0.09470101445913315, + -0.02883860096335411, + 0.06310228258371353, + -0.06291193515062332, + 0.09175053238868713, + 0.04009326919913292, + -0.06462511420249939, + 0.06048491969704628, + 0.04213957116007805, + -0.05891450121998787, + 0.03490613028407097, + -0.05249005928635597, + 0.04551835358142853, + 0.012420585379004478, + -0.07561805099248886, + 0.03281223773956299, + -0.03274085372686386, + -0.00444357143715024, + -0.04887333884835243, + -0.032312557101249695, + 0.026768503710627556, + 0.05563089996576309, + -0.05377494916319847, + 0.005249600857496262, + 0.009975728578865528, + -0.06110357120633125, + -0.02902895398437977, + -0.0007067628321237862, + 0.011415279470384121, + -0.04121159762144089, + 0.0008082601125352085, + 0.06719489395618439, + -0.030147284269332886, + -0.04144953936338425, + -0.01261093933135271, + -0.0870392769575119, + 0.00017380938515998423, + 0.008262544870376587, + -0.014086181297898293, + 0.03659551963210106, + 0.08994217216968536, + 0.011742450296878815, + -0.02266399934887886, + -0.07395245134830475, + 0.07385727763175964, + 0.10735954344272614, + 0.06795630604028702, + 0.004033121280372143, + 0.0370476096868515, + -0.05539295822381973, + 0.07347656786441803, + 0.003810050431638956, + 0.0421871617436409, + 0.015644703060388565, + -0.006995502393692732, + 0.06643347442150116, + 0.05867655947804451, + 0.022449851036071777, + 0.03133699297904968, + -0.05396530404686928, + 0.013217692263424397, + -0.008143573999404907, + 0.01014228817075491, + 0.02943345718085766, + -0.0753801092505455, + -0.0029415611643344164, + -0.07642704993486404, + 0.09094152599573135, + 0.007780711632221937, + -0.05781996622681618, + -0.03290741518139839, + 0.002276809886097908, + 0.05610678344964981, + -0.0714302659034729, + -0.05291835591197014, + 0.002175684552639723, + 0.014062386937439442, + 0.03431127220392227, + -0.03816593810915947, + 0.07314344495534897, + 0.022390365600585938, + -0.10183928161859512, + 0.037785228341817856, + 0.053584594279527664, + 0.03029004856944084, + 0.07109714299440384, + -0.007792608812451363, + -0.029980724677443504, + 0.009458204731345177, + 0.07447592169046402, + 0.06043733283877373, + -0.04830227792263031, + -0.05372736230492592, + -0.01742926985025406, + -0.012801293283700943, + -0.04240131005644798, + -0.03433506563305855, + -0.005999119020998478, + 0.06295952200889587, + 0.026173647493124008, + 0.03804696723818779, + -0.038356292992830276, + 0.02027267962694168, + 0.0033430885523557663, + 0.014228946529328823, + 0.03174149617552757, + -0.04608941450715065, + 0.00629357248544693, + -0.01363409124314785, + 0.05353700742125511, + -0.07818782329559326, + -0.03200323134660721, + 0.0058623021468520164, + 0.03521545231342316, + 0.05758202448487282, + 0.1270611584186554, + 0.009238108061254025, + -0.011326051317155361, + -0.027244387194514275, + 0.061389099806547165, + 0.04378137364983559, + 0.05263282731175423, + 0.04073571413755417, + -0.05134793743491173, + -0.033073972910642624, + -0.016239559277892113, + -0.006382801104336977, + 0.1089775487780571, + 0.04677944630384445, + -0.02931448630988598, + -0.0005840738886035979, + -0.006840839982032776, + 0.04558973386883736, + 0.07566563785076141, + -0.02074856497347355, + 0.04713635891675949, + 0.020118016749620438, + -0.02971898764371872, + -0.0010915601160377264, + 0.0440669059753418, + -0.0545363649725914, + -0.006543411873281002, + 0.023853711783885956, + -0.08799104392528534, + -0.0754752829670906, + 0.03588169068098068, + -0.016977179795503616, + -0.0006301751709543169, + 0.07576081156730652, + -0.03799937665462494, + -0.014383609406650066, + -0.11725794523954391, + 0.042448896914720535, + -0.04254407435655594, + -0.028386510908603668, + -0.04370999336242676, + -0.01485949382185936, + 0.11221356689929962, + -0.054917071014642715, + 0.013979107141494751, + 0.003334165783599019, + -0.03797558322548866, + 0.03350226953625679, + -0.055964019149541855, + -0.05301353335380554, + -0.06957431137561798, + -0.0028865369968116283, + 0.0008610535296611488, + 0.019606441259384155, + 0.1090727299451828, + -0.09084635227918625, + 0.020486827939748764, + -0.05030099302530289, + 0.0013532965676859021, + 0.0068051484413445, + 0.025198085233569145, + -0.032717060297727585, + -0.021176859736442566, + 0.031313199549913406, + -0.005359649192541838, + -0.06690935790538788, + -0.03747590631246567, + 0.06134151294827461, + -0.023223163560032845, + -0.03909391164779663, + -0.017143739387392998, + -0.021747922524809837, + 0.0110405208542943, + 0.06505341082811356, + -0.012551453895866871, + 0.03157493844628334, + 0.041520923376083374, + 0.01272991020232439, + 0.06186498701572418, + 0.014550168998539448, + 0.06405405700206757, + 0.03978394344449043, + 0.042496487498283386, + -0.020260782912373543, + 0.030575579032301903, + 0.0016403143526986241, + -0.02826754003763199, + -0.029504839330911636, + -0.04573250189423561, + -0.034001946449279785, + 0.08508814871311188, + -0.04509005695581436, + -0.013372354209423065, + -0.0029341254848986864, + -0.022354675456881523, + -0.014312226325273514, + 0.08147142827510834, + -0.039070118218660355, + 0.07081161439418793, + -0.02662573754787445, + -0.02819615788757801, + -0.09831774234771729, + -0.04823089390993118, + 0.04078330099582672, + -0.06700453907251358, + 0.06781354546546936, + 0.009595021605491638, + -0.03728555142879486, + 0.05039617046713829, + 0.004232397768646479, + -0.04271063581109047, + -0.08323220163583755, + 0.0279106255620718, + -0.037904199212789536, + -0.018452420830726624, + 0.006192447151988745, + 0.03716658055782318, + 0.013027338311076164, + 0.005020581651479006, + -0.02622123621404171, + -0.054631542414426804, + 0.04068812355399132, + -0.012848882004618645, + -0.05472671985626221, + -0.019439881667494774, + 0.026768503710627556, + -0.028386510908603668, + 0.031218023970723152, + -0.06814666092395782, + 0.031789086759090424, + 0.05296594649553299, + 0.0583910271525383, + 0.06928878277540207, + 0.01121302880346775, + 0.003598876530304551, + 0.06267398595809937, + 0.012694219127297401, + 0.057296495884656906, + 0.05996144935488701, + 0.04499487951397896, + 0.02814856916666031, + -0.034644391387701035, + 0.015168818645179272, + -0.10164893418550491, + -0.016798723489046097, + -0.005710613913834095, + 0.08880005031824112, + -0.03578651323914528, + 0.0012774524511769414, + 0.009690198116004467, + 0.011795987375080585, + 0.040236033499240875, + -0.0013971672160550952, + 0.051252759993076324, + -0.022057246416807175, + -0.036381371319293976, + 0.029124131426215172, + -0.0030754036270081997, + 0.01886882074177265, + 0.029338279739022255, + 0.0002977995900437236, + 0.02294952981173992, + -0.020260782912373543, + 0.12030360102653503, + -0.026007087901234627, + 0.05320388823747635, + -0.012741807848215103, + 0.023044707253575325, + 0.08147142827510834, + -0.02243795432150364, + -0.07833059132099152, + 0.02167653851211071, + -0.03419230133295059, + -0.012230231426656246, + -0.03583410382270813, + -0.015585217624902725, + 0.019094865769147873, + 0.03374021127820015, + -0.08366049826145172, + 0.04447140544652939, + 0.033930566161870956, + 0.011022674851119518, + 0.08608750998973846, + 0.0777595266699791, + -0.019665926694869995, + -0.09075117856264114, + -0.033526062965393066, + -0.01858329027891159, + -0.06667141616344452, + -0.06181739643216133, + 0.05658266693353653, + 0.01573988050222397, + 0.07352415472269058, + -0.005642205476760864, + -0.04449520260095596, + 0.0676707774400711, + 0.04637494683265686, + -0.044423818588256836, + -0.035001304000616074, + 0.04102124273777008, + 0.018511908128857613, + -0.03949841484427452, + -0.06310228258371353, + -0.02802959829568863, + -0.0032627831678837538, + 0.08223284035921097, + -0.012753704562783241, + -0.066005177795887, + -0.004580388311296701, + 0.009125085547566414, + -0.037618670612573624, + -0.013170103542506695, + 0.03233635053038597, + 0.01115354336798191, + 0.09018011391162872, + 0.04616079851984978, + 0.0791395902633667, + -0.04668426886200905, + 0.008904988877475262, + 0.06614794582128525, + 0.033526062965393066, + 0.010612224228680134, + -0.06924119591712952, + 0.028172362595796585, + 0.10079234093427658, + -0.013289074413478374, + -0.0676707774400711, + -0.018678467720746994, + 0.010332642123103142, + -0.04806433618068695, + 0.0638161152601242, + 0.005912865046411753, + -0.05391771346330643, + 0.06015180051326752, + -0.02278297021985054, + -0.004357317462563515, + 0.039355646818876266, + 0.02995692938566208, + -0.025245673954486847, + -0.007120422087609768, + -0.03485853970050812, + 0.025245673954486847, + -0.06947913765907288, + -0.036214809864759445, + 0.0596759170293808, + -0.009392770007252693, + 0.0013124002143740654, + -0.016061102971434593, + -0.06319746375083923, + -0.0061270128935575485, + -0.001912460895255208, + -0.010237465612590313, + 0.00025169827858917415, + 0.015823159366846085, + -0.013300972059369087, + 0.10298140347003937, + -0.05486948415637016, + -0.022699691355228424, + -0.013467531651258469, + 0.007566563785076141, + -0.01776238903403282, + -0.016572678461670876, + -0.0753801092505455, + 0.02714921161532402, + -0.017667211592197418, + -0.01403859257698059, + 0.007513026706874371, + -0.010618172585964203, + -0.014585860073566437, + -0.10840649157762527, + -0.09965021908283234, + 0.003934970125555992, + -0.025531204417347908, + -0.015430554747581482, + 0.028624452650547028, + 0.003247911809012294, + 0.01514502428472042, + -0.02377043105661869, + 0.0023422441445291042, + 0.009178622625768185, + -0.005856353789567947, + 0.03338329866528511, + 0.05705855414271355, + 0.027125416323542595, + -0.006787302903831005, + -0.003952815663069487, + -0.00975563284009695, + 0.008583766408264637, + 0.07842576503753662, + 0.03578651323914528, + 0.03419230133295059, + -0.03502510115504265, + -0.04794536530971527, + -0.004488185979425907, + -0.010070906020700932, + -0.04351963847875595, + -0.023984579369425774, + 0.025483615696430206, + 0.010945343412458897, + 0.10517047345638275, + -0.07147785276174545, + 0.03552477806806564, + -0.0324077345430851, + -0.007281032856553793, + 0.0440669059753418, + -0.030551785603165627, + -0.04480452463030815, + -0.052299708127975464, + 0.019130557775497437, + -0.0013413995038717985 + ] + }, + { + "id": "4ee6fc19-a0a0-4b54-961a-701a30f6045b", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "kjohnson", + "reviewDate": "2021-11-28T22:18:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c8341bb6-3d6e-4209-a37c-5c20d0d97df0", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "scottwhite", + "reviewDate": "2022-10-17T23:44:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7d646b32-a313-4a21-ac1f-7ba8ec9df732", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "hunter02", + "reviewDate": "2021-01-11T15:52:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0e3d1db0-5a7c-4040-877e-a1ae684b1601", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "hornesean", + "reviewDate": "2022-05-06T16:10:47", + "stars": 4, + "verifiedUser": true + }, + { + "id": "df6a3361-72f7-4ef8-b917-8c9c2b3d1d57", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "carrillosteven", + "reviewDate": "2022-05-06T05:55:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "97ec2cc9-3b28-437c-b133-9e2bd0dc2d6f", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "bradfordisaiah", + "reviewDate": "2022-08-03T07:03:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "9af0a959-7754-41d6-b1d8-4facd0f73da7", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "benjaminjanet", + "reviewDate": "2022-09-05T04:10:47", + "stars": 3, + "verifiedUser": true + }, + { + "id": "21550483-8317-4847-ba69-c4da0e9a1247", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "floresvictoria", + "reviewDate": "2021-10-21T03:21:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9b08b43b-657c-419d-87dc-0801760780f7", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "brookejohnson", + "reviewDate": "2022-11-23T22:21:35", + "stars": 3, + "verifiedUser": false + }, + { + "id": "88734013-1612-48ba-a697-2000b77f9225", + "productId": "f36b9485-bdc7-4996-b092-ea875aadbadf", + "category": "Media", + "docType": "customerRating", + "userName": "qperez", + "reviewDate": "2021-10-01T06:22:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "9f891fb1-3051-44e5-95be-70eeb6896428", + "productId": "9f891fb1-3051-44e5-95be-70eeb6896428", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Mini (Silver)", + "description": "This Premium Mouse Mini (Silver) is designed to run on an HP KX-9200R. With the optional HP KX1125, it's ready with nothing but a small mouse.\n\nThe Mini's unique design fits well with more traditional PCs where a keyboard is a necessity. Our Mini doubles as a home theater and gaming mouse.\n\nIf you're looking to build your own mice for sale", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-01-16T10:10:14", + "price": 915.78, + "stock": 85, + "priceHistory": [ + { + "priceDate": "2022-06-13T17:30:22", + "newPrice": 983.21 + }, + { + "priceDate": "2022-06-27T17:30:22", + "newPrice": 857.9 + }, + { + "priceDate": "2022-07-11T17:30:22", + "newPrice": 983.4 + }, + { + "priceDate": "2022-07-25T17:30:22", + "newPrice": 854.27 + }, + { + "priceDate": "2022-08-08T17:30:22", + "newPrice": 870.1 + }, + { + "priceDate": "2025-08-05T17:30:22", + "newPrice": 915.78 + } + ], + "descriptionVector": [ + -0.06120990216732025, + 0.006023250985890627, + -0.03398684412240982, + 0.0042693424038589, + 0.0483299158513546, + -0.012364303693175316, + -0.013995288871228695, + 0.001330421888269484, + 0.014474989846348763, + 0.061018019914627075, + 0.0064939577132463455, + -0.03465842828154564, + 0.0341547392308712, + -0.08356398344039917, + -0.003046103985980153, + 0.021286750212311745, + -0.04964909702539444, + 0.01683752052485943, + -0.019787684082984924, + -0.0064339954406023026, + 0.022773824632167816, + -0.06221727281808853, + -0.0432930514216423, + 0.009180285967886448, + 0.02633560821413994, + -0.04175800830125809, + -0.047610364854335785, + 0.00858065951615572, + -0.046531036496162415, + 0.0341307558119297, + 0.02357732504606247, + 0.01174668874591589, + -0.007963043637573719, + 0.04288530722260475, + -0.0025214306078851223, + -0.06864527612924576, + -0.03782445564866066, + -0.03887980058789253, + 0.010349557735025883, + 0.03173225000500679, + 0.03921559080481529, + -0.021430660039186478, + -0.034442562609910965, + -0.031516384333372116, + -0.019787684082984924, + 0.05065646767616272, + -0.0035198091063648462, + 0.03014923445880413, + -0.014750818721950054, + -0.016777556389570236, + 0.04988894611597061, + 0.049025483429431915, + -0.012016520835459232, + 0.08553076535463333, + -0.028590204194188118, + -0.05065646767616272, + 0.0003024367615580559, + 0.16300253570079803, + 0.056700706481933594, + -0.029957354068756104, + 0.005852357484400272, + -0.0333152636885643, + 0.024776577949523926, + 0.03715287521481514, + 0.006721816025674343, + -0.044612232595682144, + -0.0874975398182869, + 0.032955486327409744, + 0.0425015464425087, + 0.04907345399260521, + -0.04211778566241264, + -0.07895885407924652, + 0.04425245523452759, + 0.05420625954866409, + 0.004410254769027233, + 0.0007247988833114505, + 0.051280081272125244, + 0.032451801002025604, + 0.049025483429431915, + 0.015950072556734085, + -0.025855906307697296, + -0.021958332508802414, + -0.0031330499332398176, + 0.003738672938197851, + 0.022785816341638565, + 0.02216220460832119, + 0.07948652654886246, + -0.09478899836540222, + -0.03240383043885231, + 0.0799182578921318, + -0.01365949772298336, + 0.032763607800006866, + 0.053198885172605515, + -0.017185302451252937, + -0.04655502364039421, + 0.02583192102611065, + -0.043604858219623566, + 0.02132272720336914, + 0.03813626244664192, + -0.05550145357847214, + 0.05147196352481842, + 0.06144975125789642, + -0.05655679851770401, + -0.0021181816700845957, + -0.03799235075712204, + 0.044516291469335556, + 0.019307982176542282, + -0.0012704592663794756, + -0.033123381435871124, + -0.13546767830848694, + -0.028710130602121353, + -0.030628934502601624, + 0.039359502494335175, + -0.03609753027558327, + -0.007819132879376411, + -0.008550677448511124, + -0.09368568658828735, + -0.009072353132069111, + -0.043844711035490036, + -0.01808474399149418, + 0.09373365342617035, + 0.007921069860458374, + 0.04506794735789299, + 0.010379539802670479, + -0.007897084578871727, + -0.01975170522928238, + -0.017197296023368835, + -0.010319576598703861, + 0.04204582795500755, + -0.05022474005818367, + -0.00903637520968914, + 0.031444426625967026, + 0.045115917921066284, + 0.007753174286335707, + -0.006457980256527662, + -0.01095518097281456, + 0.014774804003536701, + 0.07224303483963013, + -0.04238162189722061, + 0.043029215186834335, + -0.011015144176781178, + 0.012724080123007298, + -0.0424775592982769, + -0.05655679851770401, + -0.08562669903039932, + -0.02340942993760109, + -0.08557873219251633, + 0.09718750417232513, + -0.03518609702587128, + 0.008208890445530415, + -0.027127115055918694, + -0.014774804003536701, + -0.022426040843129158, + -0.03674512729048729, + 0.025616055354475975, + 0.08063780516386032, + -0.05861951410770416, + -0.014798788353800774, + -0.057516198605298996, + 0.07013234496116638, + 0.006380029022693634, + -0.06106599047780037, + -0.025256279855966568, + -0.021274758502840996, + -0.004266344476491213, + -0.020531220361590385, + 0.03506617248058319, + 0.0441325306892395, + -0.06672646850347519, + -0.025879891589283943, + -0.046027351170778275, + -0.01623789221048355, + 0.032116010785102844, + -0.05895530432462692, + 0.11253795027732849, + 0.042021844536066055, + -0.03592963516712189, + 0.030844800174236298, + -0.004212378058582544, + -0.07171536237001419, + 0.03489827737212181, + 0.10390332341194153, + -0.10505460947751999, + 0.03098871186375618, + 0.07708802074193954, + -0.000604123983066529, + 0.0009496589191257954, + 0.027366966009140015, + -0.0039245570078492165, + -0.001743414788506925, + 0.04113439470529556, + -0.010535442270338535, + 0.006607886869460344, + -0.030365100130438805, + 0.009102334268391132, + 0.034610457718372345, + -0.0007697708788327873, + 0.06543127447366714, + 0.0036996970884501934, + -0.03765656054019928, + 0.012975923717021942, + 0.008304830640554428, + 0.019391929730772972, + 0.0135395722463727, + 0.005063848104327917, + -0.03849603980779648, + -0.007117569912225008, + 0.00468308525159955, + 0.02432086132466793, + -0.0011992534855380654, + -0.0014346070820465684, + 0.0036187474615871906, + 0.043940648436546326, + -0.044780127704143524, + 0.06643864512443542, + 0.006296081002801657, + 0.058091841638088226, + 0.03281157836318016, + -0.07363416999578476, + -0.05223948508501053, + 0.01899617537856102, + -0.01362351980060339, + -0.007663229946047068, + -0.0029141861014068127, + -0.09651592373847961, + -0.02258194424211979, + 0.02616771310567856, + 0.060346439480781555, + 0.0641360804438591, + 0.030197205021977425, + -0.08154924213886261, + 0.014043258503079414, + 0.005996267776936293, + 0.047682322561740875, + -0.02381717599928379, + 0.1108110249042511, + -0.07051610946655273, + -0.029789457097649574, + 0.0030146236531436443, + 0.0408465750515461, + -0.0433170385658741, + -0.015782177448272705, + -0.08063780516386032, + 0.03014923445880413, + 0.022593935951590538, + 0.014522960409522057, + 0.08011014014482498, + -0.01623789221048355, + -0.1116744875907898, + 0.008694588206708431, + -0.06792572140693665, + 0.015170557424426079, + 0.004740049596875906, + 0.03273962065577507, + -0.0600106455385685, + 0.05674867704510689, + 0.05420625954866409, + -0.028638174757361412, + -0.04338899254798889, + 0.005690458230674267, + -0.04674690216779709, + 0.00945011805742979, + -0.0466749481856823, + 0.07042016834020615, + -0.05540551245212555, + 0.04031890258193016, + 0.05008082836866379, + -0.11129073053598404, + -0.015350445173680782, + 0.09421335905790329, + 0.027199070900678635, + -0.007135558407753706, + 0.04233365133404732, + 0.0008597148698754609, + 0.050848349928855896, + -0.07291461527347565, + -0.08087766170501709, + 0.06039441004395485, + 0.0057474225759506226, + -0.02681530825793743, + 0.002281579887494445, + 0.06519142538309097, + 0.0399591289460659, + 0.003930553328245878, + -0.04182996228337288, + -0.006943678017705679, + -0.06053831800818443, + 0.015962064266204834, + -0.0482819490134716, + -0.009923823177814484, + -0.003384893061593175, + -0.003978523425757885, + 0.02316957898437977, + 0.03842408210039139, + 0.044852081686258316, + 0.044444337487220764, + 0.026047786697745323, + 0.0658150315284729, + 0.034370604902505875, + 0.01337167713791132, + -0.019439900293946266, + -0.023217547684907913, + -0.05708446726202965, + 0.001583014614880085, + -0.00018223031656816602, + 0.015602288767695427, + -0.05454204976558685, + -0.022426040843129158, + -0.033267293125391006, + -0.03525805473327637, + 0.04722660407423973, + -0.01782090775668621, + -0.07066001743078232, + 0.03190014511346817, + 0.08265255391597748, + -0.06404013931751251, + 0.02472860738635063, + -0.0005666472716256976, + 0.011428886093199253, + -0.01478679571300745, + -0.011057117953896523, + -0.03823220357298851, + -0.1016007587313652, + 0.1182943657040596, + 0.06389623135328293, + -0.05698852986097336, + -0.05540551245212555, + 0.04792217165231705, + 0.022390063852071762, + -0.017437146976590157, + -0.03089277073740959, + -0.06509548425674438, + -0.05367858707904816, + -0.058427631855010986, + 0.003525805426761508, + -0.05353467911481857, + -0.016609661281108856, + 0.07171536237001419, + 0.07104378193616867, + 0.06778181344270706, + 0.015518341213464737, + 0.038016337901353836, + 0.030868785455822945, + 0.08337210863828659, + -0.03650527819991112, + -0.07967840880155563, + -0.07152348011732101, + 0.02806253358721733, + -0.015218527056276798, + 0.05732432007789612, + 0.0017344204243272543, + -0.09099935740232468, + 0.02391311526298523, + -0.03847205266356468, + 0.06346450001001358, + -0.007819132879376411, + -0.040606725960969925, + -0.0024869521148502827, + 0.01583014614880085, + 0.06519142538309097, + -0.008736561983823776, + -0.008598648011684418, + 0.020759079605340958, + 0.025879891589283943, + -0.023013675585389137, + 0.04734652861952782, + -0.024356840178370476, + -0.04756239429116249, + -0.01816869154572487, + -0.00741138681769371, + 0.018696362152695656, + -0.049265336245298386, + -0.019559824839234352, + 0.05324685573577881, + -0.026695383712649345, + 0.02291773445904255, + 0.053198885172605515, + 0.014019274152815342, + -0.08068577945232391, + 0.0035347999073565006, + 0.0030565974302589893, + 0.02724703960120678, + -0.015242512337863445, + 0.019272005185484886, + 0.013107840903103352, + -0.05598115548491478, + -0.0532948262989521, + -0.024800563231110573, + -0.029357725754380226, + 0.006961666978895664, + 0.01740116812288761, + -0.020759079605340958, + -0.03149239718914032, + 0.030628934502601624, + -0.013959310948848724, + -0.016597669571638107, + 0.044036589562892914, + 0.017461132258176804, + 0.0006453483365476131, + -0.0006337305530905724, + 0.024045033380389214, + 0.019583810120821, + -0.03796836733818054, + 0.00624811090528965, + -0.018768317997455597, + -0.0966118648648262, + 0.005507572088390589, + 0.07895885407924652, + -0.04007905349135399, + -0.03439459204673767, + -0.012867990881204605, + -0.007771162781864405, + -0.013119833543896675, + 0.03206804022192955, + -0.018792303279042244, + -0.026119742542505264, + 0.06720616668462753, + -0.017724966630339622, + 0.061353810131549835, + -0.057036496698856354, + 0.0725308507680893, + -0.05900327488780022, + 0.020183436572551727, + 0.010145684704184532, + -0.02940569631755352, + 0.029597576707601547, + -0.09200672805309296, + 0.04523584246635437, + 0.12798434495925903, + -0.0840916559100151, + -0.023289503529667854, + -0.059435006231069565, + -0.041446201503276825, + -0.047106679528951645, + -0.012010524049401283, + 0.03206804022192955, + 0.004629118833690882, + 0.048929546028375626, + 0.01445100549608469, + 0.06356044113636017, + 0.02799057774245739, + -0.08644219487905502, + -0.006481965538114309, + -0.014223147183656693, + -0.034442562609910965, + 0.05631694570183754, + -0.03475436940789223, + 0.04809006676077843, + 0.012316334061324596, + -0.018372563645243645, + -0.0425015464425087, + -0.05439814180135727, + 0.0016969437710940838, + -0.021514607593417168, + 0.07843118160963058, + 0.014355065301060677, + 0.013191789388656616, + 0.026863278821110725, + 0.007657233625650406, + -0.02390112355351448, + 0.032355859875679016, + 0.021370697766542435, + 0.04523584246635437, + 0.030125249177217484, + -0.025016428902745247, + -0.044180501252412796, + 0.04725059121847153, + 0.041110411286354065, + -0.028638174757361412, + 0.022042280063033104, + 0.02715110033750534, + 0.013563557527959347, + 0.051423992961645126, + 0.02199430949985981, + 0.037128888070583344, + -0.043269068002700806, + 0.027630802243947983, + 0.03633738309144974, + -0.02349337749183178, + 0.014343072660267353, + 0.016453757882118225, + 0.033531129360198975, + -0.025136353448033333, + 0.05789995938539505, + 0.06317667663097382, + -0.0532948262989521, + 0.10025759786367416, + 0.028014563024044037, + 0.07051610946655273, + 0.10380738973617554, + 0.026887264102697372, + 0.04024694859981537, + 0.036937009543180466, + -0.0524793341755867, + -0.014031266793608665, + 0.061929453164339066, + -0.0034088781103491783, + 0.0212267879396677, + 0.0018093737307935953, + 0.009737938642501831, + -0.0011460366658866405, + -0.037872426211833954, + -0.041446201503276825, + 0.044444337487220764, + 0.045619603246450424, + 0.02823042869567871, + -0.0174851156771183, + 0.013311713933944702, + 0.04864172264933586, + -0.030940741300582886, + 0.043197114020586014, + -0.018288616091012955 + ] + }, + { + "id": "a0c678ab-b9d6-4991-90e7-a00964452bfb", + "productId": "9f891fb1-3051-44e5-95be-70eeb6896428", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mitchellmarc", + "reviewDate": "2022-08-11T12:00:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "04806a61-9864-4d0a-8700-f88cb606d553", + "productId": "9f891fb1-3051-44e5-95be-70eeb6896428", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "carmen98", + "reviewDate": "2022-06-13T17:30:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "product", + "name": "Luxe Stand + (Silver)", + "description": "This Luxe Stand + (Silver) is available in the Dark Emeralds. On the right, it is equipped with a unique set of armor crafted by a Blacksmith using a special Jewel of the Righteous. On the bottom left is a unique set of armor and jewels called the Heartstone. This is the unique Jewel of the Righteous. On the right, it is equipped with a unique set of armor", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-08-24T19:00:39", + "price": 820.78, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-19T15:58:17", + "newPrice": 842.37 + }, + { + "priceDate": "2025-09-06T15:58:17", + "newPrice": 820.78 + } + ], + "descriptionVector": [ + -0.0018540062010288239, + 0.004934852477163076, + -0.04923855513334274, + -0.008845619857311249, + -0.006625623907893896, + -0.11546730250120163, + 0.0019880307372659445, + -0.00031293873325921595, + 0.029554130509495735, + -0.005793984513729811, + 0.011072489432990551, + 0.06361698359251022, + 0.029526639729738235, + -0.0336504727602005, + 0.09715748578310013, + 0.02023427002131939, + -0.03939634561538696, + 0.018832167610526085, + -0.008941843174397945, + -0.039066437631845474, + 0.02298349142074585, + -0.08016730099916458, + -0.03439275920391083, + -0.005127298180013895, + 0.013828583993017673, + -0.03642718493938446, + 0.04926604777574539, + -0.01010338868945837, + -0.04723162576556206, + 0.05965810641646385, + 0.044592373073101044, + 0.023299651220440865, + 0.038159195333719254, + 0.044922277331352234, + -0.0001840689656091854, + -0.047946423292160034, + 0.05938318371772766, + 0.08390624076128006, + 0.01591799221932888, + -0.036289725452661514, + 0.010268342681229115, + -0.039341360330581665, + -0.04844128340482712, + 0.04008365049958229, + 0.026268811896443367, + -0.06697103381156921, + -0.03546495735645294, + -0.026859894394874573, + 0.03348551690578461, + 0.048853665590286255, + -0.018900897353887558, + 0.01851600594818592, + -0.07274439930915833, + -0.037554364651441574, + 0.0012655010214075446, + -0.015588086098432541, + 0.009141161106526852, + 0.1437292993068695, + -0.03760934993624687, + 0.01655031368136406, + -0.03125865012407303, + -0.04019361734390259, + -0.07246948033571243, + 0.028124535456299782, + -0.017045173794031143, + -0.04349268227815628, + 0.0644417554140091, + 0.009732244536280632, + -0.0017517695669084787, + 0.03065381944179535, + -0.025801444426178932, + 0.06933536380529404, + 0.020825352519750595, + 0.06488163024187088, + 0.022131232544779778, + -0.018103623762726784, + -0.019436996430158615, + -0.055616751313209534, + 0.0004121684469282627, + -0.01384920347481966, + 0.0763733759522438, + -0.022969745099544525, + -0.10590001195669174, + 0.018777182325720787, + 0.005690888501703739, + -0.06097773090004921, + -0.04352017492055893, + -0.1133778914809227, + -0.020165540277957916, + 0.04987087845802307, + -0.02285977639257908, + -0.038104210048913956, + 0.009326733648777008, + -0.05000833794474602, + -0.07246948033571243, + 0.04505974054336548, + 0.04338271543383598, + 0.040276095271110535, + -0.013065675273537636, + 0.01248833816498518, + 0.01637161336839199, + 0.008405745029449463, + -0.01863972097635269, + 0.009182400070130825, + -0.01392480731010437, + 0.05872337147593498, + 0.011051869951188564, + 0.04261293262243271, + 0.010721963830292225, + -0.13669128715991974, + 0.08693038672208786, + 0.028619395568966866, + 0.0049004871398210526, + 0.06350701302289963, + -0.006783703807741404, + 0.08363131433725357, + 0.015079479664564133, + -0.010983140207827091, + 0.02008306235074997, + -0.03035140596330166, + -0.024275625124573708, + 0.048826172947883606, + 0.0673559233546257, + -0.06603629887104034, + 0.03826916217803955, + -0.01670152135193348, + 0.015120718628168106, + 0.01839229092001915, + 0.04508723318576813, + 0.029774067923426628, + -0.05168536305427551, + 0.03584984689950943, + 0.04104587808251381, + 0.010440168902277946, + -0.03161604702472687, + 0.07576854526996613, + -0.03125865012407303, + 0.05701885372400284, + -0.06702601909637451, + 0.05377477407455444, + -0.08506090939044952, + -0.048221345990896225, + -0.05305997654795647, + 0.042722903192043304, + -0.060427889227867126, + -0.0825866162776947, + 0.029911529272794724, + 0.008185806684195995, + -0.045169707387685776, + 0.0018763436237350106, + 0.09000951051712036, + -0.003168477676808834, + -0.041155844926834106, + 0.001750910421833396, + 0.06323209404945374, + 0.03164353966712952, + -0.12129565328359604, + -0.08643552660942078, + -0.03057134337723255, + 0.11524736136198044, + 0.024509308859705925, + 0.04085342958569527, + -0.10969393700361252, + 0.004189126193523407, + 0.004343769978731871, + 0.0025894229765981436, + -0.014007283374667168, + 0.03431028500199318, + -0.13856075704097748, + 0.008680666796863079, + 0.010990013368427753, + 0.011148093268275261, + 0.003525876672938466, + -0.011986605823040009, + 0.04896363615989685, + -0.017526287585496902, + 0.10606496781110764, + -0.0019227367592975497, + 0.013436820358037949, + -0.02615884318947792, + -0.009910943917930126, + 0.018461022526025772, + -0.0611976720392704, + -0.05187780782580376, + 0.044262465089559555, + -0.04654432088136673, + 0.014337190426886082, + -0.02646125666797161, + 0.001289556734263897, + -0.014392174780368805, + -0.10864923149347305, + -0.037554364651441574, + 0.08627057075500488, + -0.04203559830784798, + -0.039643775671720505, + -0.030791280791163445, + -0.00644005136564374, + -0.04937601834535599, + -0.003116929903626442, + 0.043025314807891846, + 0.019065851345658302, + 0.03252328932285309, + 0.08429113030433655, + 0.028399458155035973, + 0.02235116995871067, + 0.0017199816647917032, + 0.014928272925317287, + -0.03711448982357979, + 0.004539651796221733, + 0.06642118841409683, + -0.0016357868444174528, + 0.0735691636800766, + -0.027478469535708427, + 0.053444866091012955, + -0.020729130133986473, + 0.04346519336104393, + 0.004872994963079691, + 0.019739409908652306, + -0.008220172487199306, + 0.010007166303694248, + -0.03304564207792282, + -0.04992586374282837, + -0.021911295130848885, + -0.02621382661163807, + -0.052812546491622925, + 0.0003793066425714642, + 0.0015773657942190766, + 0.040551017969846725, + 0.06691604852676392, + -0.02477048523724079, + -0.029609115794301033, + -0.033513009548187256, + 0.06279221922159195, + 0.02820701338350773, + 0.01357428077608347, + 0.004209745209664106, + -0.047039180994033813, + -0.02848193421959877, + 0.06059284135699272, + -0.047039180994033813, + -0.037526872009038925, + -0.09077929705381393, + -0.017113903537392616, + 0.013821710832417011, + -0.023629559203982353, + -0.0036667741369456053, + 0.0736241489648819, + -0.05888832360506058, + 0.053444866091012955, + -0.004031045828014612, + -0.0019416377181187272, + 0.01725136488676071, + -0.06664112955331802, + 0.04470233991742134, + 0.05899829417467117, + 0.050970565527677536, + 0.04965094104409218, + -0.006879926659166813, + 0.07098489999771118, + -0.014612112194299698, + -0.03912142291665077, + -0.05767866596579552, + -0.05663396418094635, + -0.024426832795143127, + -0.034750159829854965, + 0.0001781624450813979, + 0.00913428794592619, + -0.0734592005610466, + -0.026584971696138382, + -0.004893614444881678, + 0.05303248390555382, + -0.05635904148221016, + 0.02439934015274048, + 0.005268195644021034, + -0.024784231558442116, + 0.013230628333985806, + -0.017045173794031143, + 0.03978123515844345, + 0.0382416695356369, + -0.06829065829515457, + 0.027437230572104454, + -0.010192738845944405, + 0.03398037701845169, + -0.020674144849181175, + 0.06510156393051147, + -0.0013496959581971169, + 0.0044262465089559555, + -0.009312988258898258, + 0.006233859807252884, + -0.0459119975566864, + -0.024426832795143127, + 0.012371496297419071, + 0.05080561339855194, + -0.04659930244088173, + 0.06983022391796112, + -0.014069140888750553, + -0.03337555006146431, + 0.007079245522618294, + -0.030213944613933563, + -0.046131934970617294, + -0.014598365873098373, + 0.013972918502986431, + -0.0412658154964447, + 0.013814837671816349, + -0.025499029085040092, + 0.12778382003307343, + -0.01142988819628954, + 0.05336238816380501, + -0.026048874482512474, + -0.04558209329843521, + 0.051905300468206406, + -0.017801208421587944, + -0.029581623151898384, + 0.00025258472305722535, + -0.0003664196701720357, + -0.052812546491622925, + -0.02510039135813713, + 0.03898395970463753, + 0.042145565152168274, + 0.07846277952194214, + -0.0007040584459900856, + -0.03310062736272812, + -0.02280479297041893, + 0.050035830587148666, + 0.06570639461278915, + -0.04813886806368828, + -0.005374728236347437, + -0.023272160440683365, + -0.09864206612110138, + -0.11502742767333984, + -0.019244549795985222, + -0.024096926674246788, + -0.02805580571293831, + 0.023753274232149124, + -0.007697820197790861, + -0.029499147087335587, + 0.02237866260111332, + 0.007223579566925764, + 0.00033441701089031994, + -0.04280537739396095, + 0.023959465324878693, + 0.07081994414329529, + -0.028097042813897133, + -0.0023540209513157606, + 0.03180849179625511, + -0.05635904148221016, + -0.012309638783335686, + -0.0031049021054059267, + 0.08682041615247726, + 0.07692321389913559, + 0.0015275361947715282, + -0.0290867630392313, + 0.004790518432855606, + -0.09908194094896317, + 0.1252545267343521, + 0.01969817280769348, + 0.06779580563306808, + -0.024688009172677994, + 0.01639910601079464, + 0.0003062804462388158, + -0.009526052512228489, + -0.00972537137567997, + 0.012419608421623707, + 0.0505031980574131, + 0.010137754492461681, + -0.019684426486492157, + 0.05289502069354057, + 0.06158256158232689, + -0.0581185407936573, + 0.055891674011945724, + -0.05141044035553932, + -0.0734042152762413, + -0.0037045760545879602, + 0.018928389996290207, + 0.03664712235331535, + -0.009051811881363392, + 0.08610561490058899, + 0.04170569032430649, + -0.025196615606546402, + 0.012467719614505768, + 0.0035499322693794966, + -0.00043686848948709667, + -0.007326675113290548, + 0.025182869285345078, + 0.10029160231351852, + -0.021045289933681488, + -0.06488163024187088, + 0.04569206014275551, + -0.0002643977932166308, + -0.04448240250349045, + -0.03914891555905342, + 0.0025035098660737276, + 0.03857157751917839, + 0.07851776480674744, + 0.029141748324036598, + -0.07593350112438202, + -0.03972624987363815, + 0.05674393102526665, + 0.01667402870953083, + 0.052812546491622925, + -0.0062201134860515594, + 0.04621441289782524, + 0.014474650844931602, + 0.05795358866453171, + 0.07076495885848999, + -0.0198768712580204, + 0.028646888211369514, + 0.05564424395561218, + 0.004144451580941677, + -0.10436044633388519, + 0.00742977112531662, + -0.028866825625300407, + -0.040001172572374344, + 0.02174634113907814, + 0.00803459994494915, + 0.021993771195411682, + 0.06790576875209808, + 0.01667402870953083, + 0.04291534796357155, + -0.07070997357368469, + -0.0012027843622490764, + -0.018557244911789894, + -0.03909393027424812, + 0.018529752269387245, + -0.06317710876464844, + 0.0003775883815251291, + -0.052812546491622925, + 0.05795358866453171, + 0.011409269645810127, + -0.0734592005610466, + 0.01721012592315674, + -0.09875203669071198, + -0.0054090931080281734, + -0.00851571373641491, + 0.02739599160850048, + -0.023780765011906624, + 0.0229285079985857, + -0.001977721229195595, + -0.02063290774822235, + 0.045747045427560806, + 0.0017320095794275403, + -0.03337555006146431, + -0.02033049240708351, + -0.05448957160115242, + -0.013952299021184444, + -0.0016555468318983912, + -0.03879151493310928, + 0.029801560565829277, + -0.0008037177030928433, + 0.05663396418094635, + -0.023492097854614258, + -0.03923138976097107, + -0.03161604702472687, + 0.03312812000513077, + 0.018309814855456352, + -0.013594900257885456, + -0.0030121158342808485, + 0.05031075328588486, + 0.03950631245970726, + 0.010962520726025105, + -0.04571955278515816, + 0.03255078196525574, + 0.031066203489899635, + -0.055259350687265396, + 0.04437243565917015, + -0.017553778365254402, + -0.02974657714366913, + 0.0320834144949913, + -0.019533218815922737, + 0.024289371445775032, + -0.04286036267876625, + -0.024962931871414185, + -0.04162321239709854, + 0.013072548434138298, + -0.0675758644938469, + -0.041485752910375595, + 0.018653467297554016, + -0.08038723468780518, + -0.001469115260988474, + -0.012289020232856274, + 0.01073571015149355, + 0.03285319730639458, + -0.004515596199780703, + 0.03092874214053154, + 0.04984338581562042, + -0.03095623478293419, + 0.08687540143728256, + 0.02086659148335457, + -0.07323925942182541, + 0.06147259101271629, + 0.013629265129566193, + 0.010041531175374985, + -0.0443999283015728, + -0.01170481089502573, + -0.03497009724378586, + -0.02646125666797161, + -0.004278475884348154, + -0.014130998402833939, + -0.06059284135699272, + 0.02724478580057621, + 0.00928549561649561, + 0.01046766061335802, + -0.0023643304593861103, + 0.004835193511098623, + 0.047314103692770004, + 0.03725195303559303, + -0.013498677872121334, + 0.0276021845638752, + -0.007862773723900318, + 0.008309521712362766, + 0.04665428772568703, + 0.003381542395800352 + ] + }, + { + "id": "304dc012-0e92-4254-9f2d-4d088151e20c", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "hendersondonna", + "reviewDate": "2021-08-06T13:03:27", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b88c563a-ea37-4ce3-b302-082e94710a3c", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "nicholas86", + "reviewDate": "2021-06-10T20:32:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e387c5a6-7c7c-45d5-b5d5-732a98d186e6", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "cjones", + "reviewDate": "2021-11-02T04:01:15", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2d6791ef-bc5d-47f4-bbe5-786b19a05b8e", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "cristina75", + "reviewDate": "2022-04-10T11:34:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "53f93d7a-4a46-47b5-81fb-69b81bd5fad9", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "littlesavannah", + "reviewDate": "2022-08-31T16:14:03", + "stars": 3, + "verifiedUser": false + }, + { + "id": "8accbc91-f8fa-4d46-a96a-87f38946d05c", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "ujacobson", + "reviewDate": "2021-01-19T15:58:17", + "stars": 5, + "verifiedUser": false + }, + { + "id": "ac7df9ed-760f-45f9-bd20-5a1115a5e6ac", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "huffmanpatricia", + "reviewDate": "2021-09-19T09:24:28", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7e931873-b82f-41c6-97f9-e377d2d38dfe", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "cooperstacey", + "reviewDate": "2022-03-16T12:11:53", + "stars": 4, + "verifiedUser": true + }, + { + "id": "48ec23cd-2236-40f3-a165-eabb06b66f90", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "terri64", + "reviewDate": "2021-10-03T10:29:12", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f4ecb998-0752-4426-9651-bb3c779c5190", + "productId": "25798eb0-faa1-4b53-b551-e5a5a0cf4560", + "category": "Accessory", + "docType": "customerRating", + "userName": "kristi02", + "reviewDate": "2022-09-14T05:24:52", + "stars": 5, + "verifiedUser": false + }, + { + "id": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Pro (Gold)", + "description": "This Basic Mouse Pro (Gold) is a mouse with built-in support for USB mouse and keyboard (for an older CPU system), which supports several kinds of keys: touch, swipe,", + "countryOfOrigin": "Argentina", + "rareItem": false, + "firstAvailable": "2019-01-03T07:39:37", + "price": 689.32, + "stock": 61, + "priceHistory": [ + { + "priceDate": "2021-04-01T10:13:45", + "newPrice": 746.41 + }, + { + "priceDate": "2021-10-30T10:13:45", + "newPrice": 704.31 + }, + { + "priceDate": "2022-05-30T10:13:45", + "newPrice": 652.23 + }, + { + "priceDate": "2022-12-28T10:13:45", + "newPrice": 663.84 + }, + { + "priceDate": "2025-08-16T10:13:45", + "newPrice": 689.32 + } + ], + "descriptionVector": [ + -0.07864010334014893, + 0.004738332703709602, + -0.04552970081567764, + -0.005691212601959705, + 0.0041938298381865025, + -0.02787390910089016, + -0.009239169768989086, + -0.019103938713669777, + 0.050974730402231216, + 0.029704364016652107, + 0.04207732155919075, + -0.005925812292844057, + 0.06464522331953049, + -0.06640616804361343, + -0.016010699793696404, + -0.00525676878169179, + -0.07534991949796677, + 0.03621522709727287, + -0.03403721749782562, + 0.010519330389797688, + 0.053801510483026505, + -0.05157715827226639, + -0.045807745307683945, + -0.04108099639415741, + 0.014377190731465816, + -0.05579415708780289, + -0.005456612911075354, + 0.03255431726574898, + -0.015941187739372253, + 0.04557604342699051, + -0.002359029371291399, + 0.015408270061016083, + -0.008190711960196495, + -0.02322825789451599, + -0.025348342955112457, + -0.005586945917457342, + -0.02123560942709446, + -0.030422644689679146, + 0.04286511242389679, + -0.03686399757862091, + 0.02734099142253399, + -0.01591801829636097, + 0.01813078485429287, + -0.024606890976428986, + -0.021988645195961, + 0.04926012456417084, + 0.013288185000419617, + 0.03373600170016289, + -0.0484723336994648, + -0.03155799210071564, + 0.07312556356191635, + 0.0012830571504309773, + -0.07057683169841766, + -0.015535706654191017, + 0.025927601382136345, + 0.023042894899845123, + -0.012743682600557804, + 0.11288585513830185, + 0.0403163768351078, + -0.060011159628629684, + -0.03357381001114845, + -0.05667462944984436, + -0.03908834978938103, + -0.030468985438346863, + -0.03178969398140907, + -0.058620937168598175, + -0.009291302412748337, + 0.008781555108726025, + 0.01816553995013237, + 0.08202297240495682, + -0.023714834824204445, + -0.04949182644486427, + -0.014794256538152695, + 0.004106941167265177, + 0.003574023488909006, + 0.04972353205084801, + 0.041451722383499146, + 0.06872320175170898, + 0.09388618171215057, + -0.07650843262672424, + 0.003501616418361664, + 0.01136504765599966, + -0.06177210435271263, + -0.014400361105799675, + 0.07363530993461609, + 0.03341161832213402, + 0.02398129366338253, + -0.09068867564201355, + -0.004037430044263601, + 0.04986255243420601, + -0.03457013517618179, + 0.06974269449710846, + -0.01529241818934679, + -0.018930161371827126, + 0.020389892160892487, + -0.03904200717806816, + -0.01581375114619732, + 0.03192871809005737, + -0.043954119086265564, + -0.010779996402561665, + 0.025533705949783325, + -0.0017928043380379677, + -0.1253051459789276, + 0.016925927251577377, + 0.010756826028227806, + 0.01852468028664589, + 0.04879671707749367, + -0.03005192056298256, + -0.04337485879659653, + -0.07687915861606598, + -0.040131013840436935, + -0.028916573151946068, + -0.013508303090929985, + 0.007310239598155022, + -0.04603944718837738, + 0.059686772525310516, + -0.0796595960855484, + -0.022637413814663887, + -0.025186149403452873, + 0.017586281523108482, + 0.07989130169153214, + 0.06357938796281815, + 0.015558877028524876, + 0.051345452666282654, + -0.02483859471976757, + -0.011486691422760487, + 0.004170659463852644, + -0.033851854503154755, + 0.020899638533592224, + -0.06390377134084702, + -0.09087403863668442, + 0.07386701554059982, + 0.014747915789484978, + 0.03169701248407364, + -0.023216672241687775, + 0.03918103128671646, + -0.03324942663311958, + 0.08211565762758255, + -0.042957793921232224, + 0.05991847813129425, + -0.04122002050280571, + -0.03614571690559387, + -0.008057482540607452, + 0.0025617696810513735, + -0.0526893325150013, + 0.001157792517915368, + -0.0357518196105957, + 0.06654518842697144, + 0.005948982667177916, + 0.05584049969911575, + -0.014052805490791798, + -0.1024128645658493, + 0.0009586724336259067, + -0.08545218408107758, + 0.07340361177921295, + 0.013195503503084183, + 0.025881260633468628, + 0.01084950752556324, + 0.021884378045797348, + 0.022741680964827538, + -0.023958122357726097, + -0.015304003842175007, + 0.010374516248703003, + 0.007142254617065191, + -0.005670938640832901, + 0.03178969398140907, + 0.012419297359883785, + 0.0616794228553772, + 0.02629832550883293, + 0.0289397444576025, + -0.08526682108640671, + 0.022139251232147217, + -0.03565913811326027, + -0.07984495908021927, + 0.027642205357551575, + -0.024259336292743683, + 0.04754551872611046, + 0.06288427859544754, + 0.020864883437752724, + -0.06904758512973785, + 0.0759986862540245, + 0.013786346651613712, + -0.06381109356880188, + 0.04122002050280571, + 0.07720354199409485, + -0.041382212191820145, + 0.014203413389623165, + 0.041127339005470276, + -0.05537709221243858, + -0.07891815155744553, + 0.031140925362706184, + -0.04629432037472725, + -0.025255661457777023, + -0.02687758393585682, + 0.052550312131643295, + 0.09166183322668076, + -0.0444638654589653, + 0.07521089166402817, + -0.04958450794219971, + -0.025325171649456024, + -0.02133987471461296, + 0.02636783756315708, + 0.08684240281581879, + 0.018362486734986305, + 0.02101549133658409, + -0.0071017066948115826, + -0.014782670885324478, + -0.03005192056298256, + 0.019938070327043533, + -0.025394683703780174, + 0.015269248746335506, + -0.04800892621278763, + 0.014794256538152695, + -0.0622355081140995, + 0.12354420870542526, + -0.010797373950481415, + 0.029704364016652107, + 0.03552011772990227, + -0.05153081566095352, + -0.08128152042627335, + 0.048194289207458496, + 0.026460519060492516, + -0.031210435554385185, + 0.012569904327392578, + -0.06302329897880554, + 0.011249195784330368, + 0.07229143381118774, + -0.02766537480056286, + -0.006771529093384743, + 0.024189826101064682, + -0.053662486374378204, + 0.006505070719867945, + -0.044556546956300735, + 0.019532589241862297, + -0.04879671707749367, + 0.046271152794361115, + 0.01065255980938673, + -0.06098431348800659, + -0.04339803010225296, + 0.0446028858423233, + -0.048982080072164536, + -0.018617361783981323, + -0.06872320175170898, + -0.00913490355014801, + 0.09041063487529755, + 0.004891836084425449, + 0.03494086116552353, + -0.024931276217103004, + -0.07275483757257462, + -0.0289397444576025, + 0.0068526254035532475, + 0.007304446771740913, + -0.029240958392620087, + -2.6191073629888706e-06, + -0.028962913900613785, + 0.041845619678497314, + 0.03746642544865608, + -0.07131827622652054, + -0.05699901655316353, + -0.05871361866593361, + 0.061076994985342026, + 0.017933836206793785, + -0.10037387162446976, + 0.021351460367441177, + 0.005888160318136215, + -0.0060532488860189915, + 0.01027604192495346, + -0.09509103745222092, + 0.0035798160824924707, + 0.05018693581223488, + 0.05361614748835564, + -0.01047298964112997, + 0.05741608142852783, + 0.024954447522759438, + 0.005224909633398056, + 0.021397801116108894, + -0.04921378195285797, + 0.04288828372955322, + 0.009806842543184757, + -0.024398358538746834, + 0.01007909420877695, + 0.10259822756052017, + 0.056442927569150925, + 0.019671611487865448, + -0.04156757518649101, + 0.004544281400740147, + -0.04332851991057396, + 0.03341161832213402, + -0.05431125685572624, + 0.025417853146791458, + -0.030492156744003296, + -0.0132070891559124, + -0.006337085738778114, + 0.013879028148949146, + 0.020262455567717552, + 0.008961125276982784, + 0.03816153481602669, + 0.04603944718837738, + 0.0027268582489341497, + 0.009748917073011398, + 0.08281076699495316, + -0.008555645123124123, + -0.041845619678497314, + -0.03389819338917732, + 0.07043780386447906, + 0.03396770730614662, + -0.026738561689853668, + -0.018582604825496674, + -0.06459888070821762, + -0.06367207318544388, + 0.047916244715452194, + 0.03739691525697708, + -0.08234735578298569, + -0.031140925362706184, + 0.10658352077007294, + -0.019428322091698647, + 0.01823505014181137, + 0.003846274921670556, + -0.008462963625788689, + 0.02727147936820984, + -0.08540584146976471, + -0.05153081566095352, + -0.09175451099872589, + 0.02583491988480091, + 0.09147647023200989, + -0.040061503648757935, + -0.06362573057413101, + 0.0044255331158638, + -0.029217787086963654, + -0.06737932562828064, + -0.030631177127361298, + -0.0792425349354744, + -0.03864811360836029, + 0.05857459828257561, + 0.020320380106568336, + -0.06348671019077301, + -0.010270249098539352, + 0.06909392774105072, + -0.03209090977907181, + 0.03809202462434769, + 0.028499508276581764, + 0.0705304890871048, + -0.03401404619216919, + -0.030399475246667862, + 0.0023633737582713366, + -0.05936238914728165, + -0.019405152648687363, + -0.05120643228292465, + -0.035774990916252136, + -0.0013344662729650736, + 0.0011961683630943298, + -0.03507988154888153, + -0.01097115222364664, + -0.10371040552854538, + -0.0009847390465438366, + -0.010015375912189484, + -0.014481456950306892, + -0.019671611487865448, + -0.0402468666434288, + 0.10361772030591965, + -0.023425204679369926, + -0.09546176344156265, + 0.01959051564335823, + 0.04939914494752884, + -0.007883705198764801, + 0.062328189611434937, + -0.03839324042201042, + 0.019868558272719383, + -0.002929598791524768, + -0.024352017790079117, + -0.04740649834275246, + -0.04972353205084801, + -0.0021012593060731888, + 0.045946765691041946, + -0.08461804687976837, + 0.015651559457182884, + 0.0267617329955101, + -0.011585165746510029, + -0.03897249698638916, + 0.016728978604078293, + 0.022116081789135933, + 0.01393695455044508, + -0.032322611659765244, + -0.037350572645664215, + 0.03026045300066471, + -0.055516112595796585, + -0.013670495711266994, + -0.06890856474637985, + 0.05792582780122757, + -0.01698385365307331, + 0.06075260788202286, + 0.011324499733746052, + -0.04497361183166504, + 0.027989760041236877, + 0.019799048081040382, + -0.027456842362880707, + 0.0038578601088374853, + 0.046595536172389984, + -0.053662486374378204, + 0.03790666162967682, + 0.022116081789135933, + -0.007263898849487305, + -0.005326279904693365, + -0.029634853824973106, + -0.036029864102602005, + -0.036423761397600174, + -0.043768756091594696, + 0.038346897810697556, + -0.01416865736246109, + -0.0267617329955101, + 0.04196146875619888, + -0.05959409102797508, + 0.07757426798343658, + 0.021606333553791046, + -0.026993436738848686, + 0.04047856852412224, + 0.030399475246667862, + 0.06163308024406433, + 0.09824220091104507, + -0.039528585970401764, + 0.04293462261557579, + 0.008022727444767952, + -0.050974730402231216, + -0.011660468764603138, + -0.04814794659614563, + -0.011173891834914684, + -0.050557661801576614, + -0.04388460889458656, + 0.02504712902009487, + 0.01602228358387947, + -0.027433672919869423, + -0.008891615085303783, + 0.018825894221663475, + -0.0023445480037480593, + -0.023645322769880295, + -0.022776436060667038, + 0.04828697070479393, + 0.005505850072950125, + 0.025973942130804062, + -0.00020038716320414096, + -0.02080695703625679, + -0.053338102996349335, + 0.021826451644301414, + 0.03304089233279228, + -0.01830456219613552, + 0.011370840482413769, + -0.05695267394185066, + -0.007095913868397474, + 0.09870561212301254, + -0.04457971826195717, + -0.027294650673866272, + -0.010432441718876362, + -0.026112962514162064, + -0.01192113570868969, + 0.035635970532894135, + 0.03776764124631882, + 0.0121180834248662, + 0.02284594625234604, + 0.03264699503779411, + 0.009575139731168747, + -0.04207732155919075, + 0.037026189267635345, + 0.041915129870176315, + 0.01566314324736595, + 0.035381097346544266, + -0.02102707512676716, + -0.049769870936870575, + -0.04140538349747658, + -0.03308723121881485, + -0.008289186283946037, + 0.06742566078901291, + -0.054589301347732544, + 0.056303903460502625, + 0.019173448905348778, + 0.05635024607181549, + -0.09592517465353012, + 0.018513094633817673, + 0.031349457800388336, + 0.015199737623333931, + 0.01624240167438984, + -0.006435559596866369, + -0.016763735562562943, + -0.1268807351589203, + 0.0050482358783483505, + 0.0022895182482898235, + -0.04645651578903198, + 0.01047298964112997, + 0.02986655756831169, + 0.10055923461914062, + 0.01813078485429287, + 0.02965802326798439, + 0.0223709549754858, + 0.02497761696577072, + -0.025580044835805893, + -0.028777550905942917, + -0.00958093162626028, + -0.05106741189956665, + 0.08985454589128494, + 0.06626714766025543, + 0.05699901655316353, + -0.011301329359412193, + -0.013427207246422768, + -0.00842241570353508, + 0.022706924006342888, + 0.018153954297304153, + 0.026530029252171516, + 0.007634624373167753, + -0.03876396268606186, + 0.03327259421348572, + -0.07836206257343292, + -0.0845717117190361, + -0.08253271877765656 + ] + }, + { + "id": "13455735-85f1-4810-9e08-280cebcfabbf", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cantukristina", + "reviewDate": "2021-09-28T18:06:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "327c9f30-eef1-4b4a-80b1-94730f730676", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hernandezshirley", + "reviewDate": "2022-09-23T06:53:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e413f5e9-4625-4ffc-8681-606de2723827", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fredericklong", + "reviewDate": "2021-12-10T03:13:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "29a2c9b9-61c3-4be1-af57-4b46eb63d0ee", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "urichardson", + "reviewDate": "2021-04-08T03:34:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5ef8a282-8ff4-428b-b9b9-8a9488836823", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "castrobryan", + "reviewDate": "2021-12-02T00:38:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "159d6778-8d97-458d-9443-6c668177e42a", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stevenmartinez", + "reviewDate": "2022-07-31T05:30:52", + "stars": 1, + "verifiedUser": true + }, + { + "id": "caf87cac-0591-448a-a31f-3c2660250cbc", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reedjacob", + "reviewDate": "2022-04-04T14:13:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d66e846c-d9a4-4bfc-96f1-348d4797bab7", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael23", + "reviewDate": "2021-07-15T10:05:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4e76d800-b0ff-4ff4-a384-879cdda3be63", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardsjohn", + "reviewDate": "2022-03-19T14:18:37", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6af1d92a-569a-4ec9-bfe6-3db13da46488", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "richardfarrell", + "reviewDate": "2022-06-27T06:11:27", + "stars": 1, + "verifiedUser": false + }, + { + "id": "df02ae68-77e8-4d9c-a50c-98f1267a28b3", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gary69", + "reviewDate": "2021-09-26T07:21:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0f8871ce-61ca-4ebb-8262-500bad57d02c", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "erica09", + "reviewDate": "2022-06-11T04:27:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "78a62377-bb7b-42b8-b0c5-e47b067275fa", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "idecker", + "reviewDate": "2021-12-03T23:26:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "66167d54-ee31-41f3-a757-08e48ab01df4", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wallacekayla", + "reviewDate": "2022-10-15T07:47:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bcc6926f-99c3-4b38-a2c2-73684581edaa", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "phillip48", + "reviewDate": "2021-04-01T10:13:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cc0487b2-4423-4d22-b790-ab9b354752ed", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "miranda14", + "reviewDate": "2022-12-30T19:45:33", + "stars": 1, + "verifiedUser": true + }, + { + "id": "487ebb2f-3a6c-4881-9410-1724a0a038af", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlesjohnson", + "reviewDate": "2022-08-04T06:35:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f87ff02a-092e-4124-858e-30e758950d2b", + "productId": "7cfd7ab8-573d-4ef8-997f-f52b8ace4716", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jamesford", + "reviewDate": "2022-11-19T02:53:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "282362c7-0629-4545-adf9-cd39dc720e90", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "product", + "name": "Premium Phone + (Silver)", + "description": "This Premium Phone + (Silver) is rated 4.6 out of 5 by 3.\n\nRated 4 out of 5 by Matt from Great phone but was", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-12-02T22:28:59", + "price": 1046.58, + "stock": 13, + "priceHistory": [ + { + "priceDate": "2021-03-20T21:39:00", + "newPrice": 977.3 + }, + { + "priceDate": "2021-10-29T21:39:00", + "newPrice": 1003.11 + }, + { + "priceDate": "2022-06-09T21:39:00", + "newPrice": 995.74 + }, + { + "priceDate": "2025-01-17T21:39:00", + "newPrice": 1046.58 + } + ], + "descriptionVector": [ + -0.05632953345775604, + 0.061727963387966156, + 0.01793208345770836, + 0.06867512315511703, + -0.004502380266785622, + 0.029779870063066483, + -0.0915963351726532, + 0.03354107216000557, + 0.012080095708370209, + 0.10159670561552048, + 0.06486967206001282, + -0.02167116105556488, + -0.06088722497224808, + 0.02955862320959568, + -0.019525064155459404, + 0.043740566819906235, + -0.03774476796388626, + -0.012080095708370209, + 0.014259380288422108, + 0.015431990846991539, + 0.03438181057572365, + -0.05986948683857918, + -0.04588666558265686, + 0.00552288256585598, + -0.02858513593673706, + -0.06323244422674179, + 0.010686238296329975, + 0.003224677639082074, + 0.09425129741430283, + 0.004070947878062725, + -0.020587049424648285, + 0.017235156148672104, + -0.048231884837150574, + 0.053276319056749344, + 0.018252892419695854, + 0.03227996453642845, + 0.06579890847206116, + -0.019392315298318863, + 0.02697003073990345, + 0.07256907224655151, + -0.015929797664284706, + -0.009790187701582909, + 0.06287844479084015, + -0.011294668540358543, + 0.04393969103693962, + -0.06942736357450485, + 0.03723590075969696, + 0.03743502125144005, + 0.03964749351143837, + 0.048364631831645966, + -0.03849700838327408, + 0.027456775307655334, + -0.014204069040715694, + -0.04241308569908142, + 0.06628565490245819, + -0.026748783886432648, + -0.026527537032961845, + 0.06575465947389603, + 0.00886094942688942, + -0.040178488940000534, + 0.005069326143711805, + 0.02475755847990513, + 0.04469193145632744, + 0.025797421112656593, + -0.03185959532856941, + 0.04345294460654259, + -0.041705094277858734, + -0.011903097853064537, + -0.06371919065713882, + 0.03345257416367531, + 0.038784630596637726, + -0.014690812677145004, + -0.0022954395972192287, + 0.08172870427370071, + 0.04146172106266022, + 0.10982710123062134, + 0.09336631000041962, + 0.03188171982765198, + 0.0020797234028577805, + 0.035311050713062286, + 0.009712751023471355, + 0.06349793821573257, + -0.025731047615408897, + 0.05119659751653671, + 0.04686015099287033, + 0.033651694655418396, + 0.03170472010970116, + -0.10257019102573395, + -0.038784630596637726, + 0.06451568007469177, + 0.01996755786240101, + -0.008341019041836262, + -0.03581991791725159, + -0.08933961391448975, + 0.06889636814594269, + 0.011947347782552242, + 0.0019220848334953189, + 0.034072063863277435, + -0.033563196659088135, + -0.007998085580766201, + -0.0065710414201021194, + -0.06181646138429642, + -0.0012493551475927234, + -0.016084669157862663, + 0.02581954561173916, + 0.05491355061531067, + -0.0069084432907402515, + -0.08429517596960068, + 0.03909437730908394, + -0.06840962916612625, + 0.017655525356531143, + -0.028098391368985176, + -0.03163834661245346, + -0.049470867961645126, + -0.028939131647348404, + 0.023651324212551117, + -0.026660285890102386, + -0.021781785413622856, + 0.02535492740571499, + -0.07584353536367416, + -0.03320920094847679, + 0.04307682439684868, + -0.05478079989552498, + -0.03544379770755768, + 0.10752613097429276, + -0.004964233376085758, + 0.016847971826791763, + 0.03482430428266525, + 0.03247908502817154, + -0.06925036758184433, + -0.029713496565818787, + 0.04889562726020813, + 0.01380582433193922, + -0.0041898684576153755, + 0.0012929132208228111, + 0.027279777452349663, + -0.007146283984184265, + 0.08115346729755402, + -0.026018667966127396, + 0.001554261427372694, + 0.053276319056749344, + 0.007384124677628279, + 0.033474698662757874, + -0.06278994679450989, + 0.017567025497555733, + 0.09088834375143051, + -0.02345220185816288, + 0.04761239141225815, + 0.02692578174173832, + 0.04796638712286949, + 0.02845238707959652, + -0.10292419046163559, + -0.026062916964292526, + -0.025288552045822144, + 0.020210929214954376, + 0.015841297805309296, + -0.009580003097653389, + -0.024115942418575287, + -0.06730338931083679, + 0.03371807187795639, + -0.06478117406368256, + -0.07655152678489685, + 0.02756739780306816, + -0.029779870063066483, + -0.004648956470191479, + 0.03303220495581627, + 0.04431581124663353, + 0.07478154450654984, + -0.014303630217909813, + 0.043098948895931244, + 0.0012970615644007921, + -0.03728014975786209, + 0.022213216871023178, + -0.03849700838327408, + -0.005489695817232132, + -1.797633376554586e-05, + -0.012500465847551823, + -0.006493604741990566, + -0.006410636939108372, + -0.0017063688719645143, + 0.0798259824514389, + 0.019912246614694595, + -0.06566616147756577, + -0.023164579644799232, + 0.08172870427370071, + 0.001682861358858645, + 0.04320957511663437, + 0.01900513283908367, + 0.022246403619647026, + 0.04400606453418732, + 0.004693205934017897, + 0.018551576882600784, + -0.02896125614643097, + -0.00017613350064493716, + 0.013639888726174831, + 0.05668352544307709, + 0.08584390580654144, + 0.03320920094847679, + -0.02955862320959568, + 0.01269958820194006, + 0.02798776887357235, + 0.050532855093479156, + 0.0956672802567482, + -0.06703789532184601, + 0.0244256891310215, + 0.0069692861288785934, + 0.06256870180368423, + 0.08814487606287003, + -0.040311235934495926, + 0.0014069938333705068, + -0.003924371674656868, + 0.04205908998847008, + 0.00983996782451868, + 0.015133307315409184, + 0.05119659751653671, + 0.061595216393470764, + 0.015520489774644375, + 0.004151150118559599, + -0.057568516582250595, + -0.10230469703674316, + 0.06765738874673843, + 0.012456215918064117, + 0.04515654966235161, + 0.0427449531853199, + 0.025000931695103645, + -0.04964786767959595, + -0.025465549901127815, + 0.036749158054590225, + 0.048408884555101395, + 0.04358569532632828, + 0.00722925178706646, + -0.0034127377439290285, + -0.07186108082532883, + -0.02128397859632969, + -0.007843212224543095, + 0.04801063612103462, + -0.03447031229734421, + -0.00875585712492466, + -0.09478229284286499, + 0.02031049132347107, + -0.004286664072424173, + -0.026815157383680344, + -0.05770126357674599, + -0.044758304953575134, + 0.025266427546739578, + -0.05070985481142998, + 0.101773701608181, + -0.03135072439908981, + -0.10717213153839111, + -0.026018667966127396, + -0.010260337963700294, + -0.09274681657552719, + -0.03913862630724907, + 0.06217045709490776, + 0.05571004003286362, + -0.013584576547145844, + 0.07628602534532547, + 0.032456960529088974, + 0.04208121448755264, + 0.036992527544498444, + 0.01993437111377716, + 0.007312219124287367, + 0.023673448711633682, + 0.03648366034030914, + -0.015597926452755928, + 0.07579928636550903, + 0.026483288034796715, + -0.035266801714897156, + -0.08553416281938553, + -0.004720861557871103, + -0.024956682696938515, + -0.036616407334804535, + 0.06115271896123886, + -0.048276133835315704, + 0.014336816966533661, + 0.0249345563352108, + -0.04208121448755264, + 0.07730376720428467, + -0.023297328501939774, + 0.037081025540828705, + 0.09885323792695999, + 0.006205983459949493, + 0.05309932306408882, + -0.016339104622602463, + 0.07084334641695023, + -0.07902949303388596, + -0.03214721381664276, + -0.04982486367225647, + -0.01142741646617651, + -0.032036591321229935, + 0.00012263661483302712, + 0.002252572914585471, + 0.010741550475358963, + -0.039625369012355804, + -0.011958410032093525, + -0.028231140226125717, + 0.03039936162531376, + -0.05075410380959511, + 0.01793208345770836, + 0.041705094277858734, + 0.06314394623041153, + 0.06509091705083847, + -0.06624140590429306, + -0.03502342849969864, + 0.07336556166410446, + 0.07208233326673508, + -0.029824119061231613, + -0.008363143540918827, + -0.037589896470308304, + 0.03451456129550934, + 0.04916112497448921, + -0.04143959656357765, + -0.059559740126132965, + -0.010287993587553501, + -0.004543864168226719, + -0.025797421112656593, + -0.026726659387350082, + 0.0325675830245018, + 0.02391682006418705, + -0.011604414321482182, + 0.025664672255516052, + -0.007190533448010683, + 0.01519968081265688, + 0.04601941257715225, + 0.02205834351480007, + 0.006974817253649235, + -0.05380731448531151, + -0.05172758921980858, + -0.033474698662757874, + 0.0325675830245018, + 0.04907262325286865, + -0.03599691763520241, + -0.013274830766022205, + 0.011327855288982391, + 0.027678022161126137, + 0.026992155238986015, + 0.04863012954592705, + 0.06637415289878845, + 0.07367531210184097, + -0.0030587422661483288, + 0.03586416691541672, + 0.06239170581102371, + -0.006698258221149445, + 0.028231140226125717, + 0.00945831649005413, + -0.022124717012047768, + -0.026748783886432648, + -0.058497752994298935, + 0.017567025497555733, + -0.002614865079522133, + 0.0008296769228763878, + -0.021272916346788406, + 0.07026810199022293, + 0.03579779341816902, + 0.025974418967962265, + 0.02812051586806774, + 0.056506529450416565, + -0.04500167444348335, + 0.06531216949224472, + -0.008302300237119198, + 0.052347082644701004, + -0.030465736985206604, + 0.04033336043357849, + -0.010066746734082699, + -0.030001116916537285, + 0.0590287484228611, + -0.033054329454898834, + 0.05469230189919472, + -0.06442718207836151, + -0.03982449322938919, + 0.038364261388778687, + -0.0020990825723856688, + -0.021383540704846382, + -0.007953835651278496, + -0.014646563678979874, + 0.041616592556238174, + 0.00814189575612545, + 0.03542167320847511, + 0.012312405742704868, + 0.03132859990000725, + -0.028695758432149887, + 0.05916149541735649, + 0.008700544945895672, + -0.03539954870939255, + 0.03327557444572449, + -0.02812051586806774, + -0.007483685854822397, + 0.0972602590918541, + -0.10451716929674149, + 0.05093109980225563, + -0.0549577996134758, + 0.009187289513647556, + -0.017058158293366432, + 0.07402930408716202, + 0.0737195611000061, + -0.027766520157456398, + 0.0008518016547895968, + 0.019193192943930626, + 0.04566541686654091, + -0.045444171875715256, + 0.02354069985449314, + 0.012013722211122513, + 0.013175269588828087, + -0.033010080456733704, + 0.08540140837430954, + -0.0802684798836708, + 0.010697301477193832, + 0.007439436390995979, + -0.0549577996134758, + -0.09062284231185913, + 0.03190384432673454, + 0.0069692861288785934, + 0.03502342849969864, + -0.001128360629081726, + 0.060400478541851044, + 0.05907299742102623, + 0.08929536491632462, + -0.021604787558317184, + 0.022921208292245865, + -0.0002513229555916041, + 0.008789043873548508, + 0.011361042968928814, + 0.042855579406023026, + 0.017423216253519058, + 0.021007420495152473, + 0.044758304953575134, + -0.03701465204358101, + 0.04418306052684784, + 0.0011539423139765859, + -0.04380694031715393, + -0.006150671746581793, + -0.06588740646839142, + 0.07933923602104187, + 0.007096503395587206, + -0.0067701637744903564, + 0.046417657285928726, + -0.07478154450654984, + 0.045023802667856216, + -0.03905012831091881, + 0.01560898870229721, + -0.027700146660208702, + -0.022876957431435585, + -0.007588778156787157, + 0.009884217754006386, + -0.09239282459020615, + 0.009115383960306644, + -0.03371807187795639, + 0.09628677368164062, + 0.0002499401743989438, + -0.019226379692554474, + 0.019823746755719185, + 0.05194883793592453, + -0.027213402092456818, + -0.06991411000490189, + -0.003805451560765505, + 0.006858662702143192, + -0.0457981675863266, + 0.0901361033320427, + -0.07641877233982086, + -0.05079835280776024, + -0.07456029951572418, + -0.00945278536528349, + 0.0218813456594944, + -0.007660683710128069, + 0.010542428120970726, + -0.03400569036602974, + -0.05509054660797119, + -0.02535492740571499, + 0.007998085580766201, + 0.004247945733368397, + -0.02997899241745472, + -0.05694902315735817, + -0.013518203049898148, + -0.0006983114290051162, + -0.04197058826684952, + 0.02705853059887886, + 0.04011211171746254, + -0.037213776260614395, + 0.035045552998781204, + 0.035775668919086456, + 0.05168334022164345, + 0.05619678273797035, + 0.005680521484464407, + 0.06473692506551743, + 0.05575428903102875, + -0.04117409884929657, + 0.04385118931531906, + -0.022578274831175804, + 0.04084222763776779, + 0.055444542318582535, + 0.04451493173837662, + 0.007765776012092829, + 0.00182114087510854, + -0.05274532735347748, + -0.022876957431435585, + -0.055400293320417404, + 0.03935987129807472, + -0.007356468588113785, + -0.03278883174061775, + 0.009087728336453438, + 0.043784815818071365, + -0.06283419579267502, + -0.01641654036939144, + 0.035266801714897156, + -0.03449243679642677, + -0.03909437730908394, + -0.06394043564796448, + -0.034027814865112305, + -0.015022683888673782, + 0.060400478541851044, + 0.10894211381673813, + -0.03933774679899216 + ] + }, + { + "id": "d0fcd183-1787-487c-8676-a5456a6b6c4c", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "lewislawrence", + "reviewDate": "2022-04-09T01:43:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a8334951-aa19-4700-8567-f5d524c5bf9f", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "kturner", + "reviewDate": "2021-03-20T21:39:00", + "stars": 3, + "verifiedUser": true + }, + { + "id": "fd197609-bf04-4a36-a702-d1a3406e17d7", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael63", + "reviewDate": "2022-05-23T04:28:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0afe1ed1-05ee-490a-9268-23c53fd0f1f4", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "creyes", + "reviewDate": "2022-06-10T23:45:08", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4a955dd2-4118-47fe-9190-2329b0d36fef", + "productId": "282362c7-0629-4545-adf9-cd39dc720e90", + "category": "Electronics", + "docType": "customerRating", + "userName": "oleonard", + "reviewDate": "2021-07-07T14:25:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer Ultra (Red)", + "description": "This Awesome Computer Ultra (Red) is not what you expect, but it really is just awesome. I love computer hardware, so what's new for me? I use a new Macbook Pro from Amazon, but before I get around to testing, this thing really is awesome. I've been testing it for about 12", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-10-13T21:40:28", + "price": 878.66, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-01-19T16:49:57", + "newPrice": 850.11 + }, + { + "priceDate": "2021-08-09T16:49:57", + "newPrice": 878.74 + }, + { + "priceDate": "2022-02-27T16:49:57", + "newPrice": 937.56 + }, + { + "priceDate": "2022-09-17T16:49:57", + "newPrice": 884.74 + }, + { + "priceDate": "2024-09-06T16:49:57", + "newPrice": 878.66 + } + ], + "descriptionVector": [ + -0.026577787473797798, + 0.013937133364379406, + -0.043955571949481964, + 0.033209770917892456, + -0.01731545478105545, + 0.014772363938391209, + -0.060286201536655426, + 0.015283474698662758, + 0.03704933822154999, + 0.10381792485713959, + 0.07424826920032501, + -0.08422116935253143, + 0.03607697784900665, + 0.002476084977388382, + 0.02971925213932991, + -0.00027581313042901456, + -0.021416811272501945, + 0.024421148002147675, + -0.048617906868457794, + 0.0025119250640273094, + 0.08048133552074432, + -0.005569243337959051, + -0.07105693966150284, + -0.01958428882062435, + -0.010720871388912201, + 0.0076604364439845085, + -0.01756477728486061, + 0.005160977598279715, + 0.06113389879465103, + -0.015682391822338104, + 0.08422116935253143, + 0.04430462419986725, + 0.013363691046833992, + 0.06646940112113953, + 0.1026211753487587, + -0.02539350651204586, + -0.043382130563259125, + -0.05490083619952202, + 0.0749962329864502, + 0.02398483268916607, + -0.000614735996350646, + -0.022451499477028847, + 0.015320872887969017, + 0.024271555244922638, + 0.031639035791158676, + -0.022601092234253883, + 0.007249054498970509, + -0.0019618570804595947, + 0.024333884939551353, + 0.02003307081758976, + -0.005572360008955002, + 0.04011600464582443, + 0.017415182664990425, + 0.02498212456703186, + -0.007386181969195604, + -0.021865591406822205, + -0.02839784324169159, + -0.01274038478732109, + 0.012927376665174961, + -0.07020924240350723, + 0.020618978887796402, + -0.0054165334440767765, + 0.007242821156978607, + -0.05943850427865982, + -0.028098655864596367, + 0.005055015441030264, + -0.019297568127512932, + 0.020095400512218475, + 0.09598919749259949, + 0.053355034440755844, + -0.01924770325422287, + 0.014336048625409603, + 0.022900279611349106, + 0.07699081301689148, + 0.019147975370287895, + 0.03527914732694626, + 0.052208151668310165, + 0.03405746445059776, + 0.036002181470394135, + 0.031015731394290924, + 0.057892706245183945, + 0.06482387334108353, + 0.04901682212948799, + 0.005170327145606279, + 0.06706777960062027, + 0.00774769950658083, + -0.03241193667054176, + -0.117879718542099, + -0.010914096608757973, + 0.040664516389369965, + -0.056247178465127945, + 0.08880870789289474, + 0.09140165895223618, + -0.0204070545732975, + 0.008988079614937305, + 0.06108403578400612, + -0.050263434648513794, + 0.04654852673411369, + 0.0037897033616900444, + 0.01549539901316166, + 0.029170744121074677, + -0.022414101287722588, + -0.020145265385508537, + -0.04674798622727394, + -0.02897128462791443, + -0.023149602115154266, + 0.056945279240608215, + 0.07659190148115158, + -0.043631453067064285, + -0.0828748270869255, + -0.018848787993192673, + 0.003090041922405362, + -0.006806506775319576, + -0.038395680487155914, + -0.009573987685143948, + 0.0560477189719677, + -0.058840133249759674, + -0.011537402868270874, + -0.008907049894332886, + -0.0033845542930066586, + 0.07993282377719879, + 0.024308953434228897, + 0.008439569734036922, + 0.039392970502376556, + 0.011693229898810387, + 0.033907871693372726, + 0.0031648387666791677, + 0.006588349584490061, + 0.0568954162299633, + -0.028372911736369133, + -0.08028187602758408, + 0.0902547761797905, + -0.011400275863707066, + 0.014136590994894505, + -0.06297888606786728, + 0.011668297462165356, + 0.019272636622190475, + 0.07714041322469711, + 0.014647702686488628, + -0.03866993263363838, + -0.01356314867734909, + -0.015345805324614048, + -0.012004883028566837, + -0.0498645193874836, + -0.11309272795915604, + 0.03141464665532112, + -0.07270246744155884, + -0.002740990137681365, + 0.002424662234261632, + 0.05539948120713234, + 0.024844996631145477, + -0.04595015197992325, + -0.021591337397694588, + -0.04442928731441498, + 0.009517890401184559, + 0.04390570893883705, + -0.011768026277422905, + 0.053604356944561005, + -0.0032256110571324825, + 0.08526832610368729, + -0.06806506961584091, + 0.0018932934617623687, + -0.059787556529045105, + 0.020519249141216278, + 0.011967484839260578, + -0.030068304389715195, + 0.06786561012268066, + 0.024757733568549156, + -0.0338081419467926, + 0.018125751987099648, + 0.02131708152592182, + 0.03438158705830574, + 0.043431997299194336, + 0.053105711936950684, + 0.06537238508462906, + 0.023523585870862007, + 0.12545913457870483, + -0.002114567207172513, + 0.04068944603204727, + -0.08845965564250946, + -0.005902712233364582, + 0.0502883680164814, + -0.015258542262017727, + 0.04998917877674103, + 0.0622309185564518, + -0.016742011532187462, + 0.01028455700725317, + 0.037124134600162506, + 0.01792629435658455, + 0.027600010856986046, + -0.03325963392853737, + -0.054352324455976486, + 0.02642819471657276, + 0.03016803413629532, + 0.01273415144532919, + 0.08731277287006378, + -0.016056375578045845, + -0.00488360645249486, + -0.018449872732162476, + 0.06771601736545563, + 0.03158917278051376, + 0.04727156460285187, + 0.0630786195397377, + -0.025318710133433342, + 0.010602443479001522, + -0.034930095076560974, + 0.013363691046833992, + -0.005644040182232857, + 0.009393228217959404, + 0.06856371462345123, + 0.0052825226448476315, + -0.006186316721141338, + -0.07325097918510437, + -0.014859626069664955, + 0.09653770923614502, + -0.0449279323220253, + 0.001050271443091333, + 0.016592418774962425, + -0.06337780505418777, + -0.07315124571323395, + 0.048867229372262955, + 0.00660704867914319, + 0.021204886958003044, + -0.01337615679949522, + -0.05679568648338318, + -0.0342070609331131, + 0.10790681838989258, + -0.003506098873913288, + 0.0055661266669631, + 0.057892706245183945, + -0.05589812621474266, + -0.00254464871250093, + 0.04270895943045616, + -0.017203258350491524, + -0.06203146278858185, + 0.07000978291034698, + -0.0375230498611927, + -0.004098240286111832, + -0.04789486899971962, + 0.06253010779619217, + 0.0036775083281099796, + 0.06806506961584091, + -0.10117510706186295, + -0.0734005719423294, + 0.022987542673945427, + -0.02271328866481781, + 0.07185477018356323, + -0.009835775941610336, + -0.06457455456256866, + 0.053604356944561005, + 0.020008137449622154, + 0.020456919446587563, + -0.036949608474969864, + 0.14560438692569733, + 0.037572912871837616, + 0.05809216573834419, + 0.04749595373868942, + -0.017664505168795586, + 0.003275475464761257, + -0.022638492286205292, + -0.03919351100921631, + 0.02044445276260376, + -0.05460164695978165, + 0.020743640139698982, + -0.045975085347890854, + 0.007928458042442799, + 0.09040436893701553, + 0.047595683485269547, + -0.02275068685412407, + 0.02934526838362217, + 0.026976704597473145, + -0.026029279455542564, + 0.05340489745140076, + -0.011175884865224361, + -0.007965857163071632, + 0.000984824262559414, + -0.001041700947098434, + 0.05475123971700668, + -0.02877182699739933, + 0.03308510780334473, + 0.04156207665801048, + 0.029993508011102676, + 0.03211275115609169, + -0.034680772572755814, + 0.048493243753910065, + -0.05639677122235298, + 0.03929324075579643, + -0.018362609669566154, + 0.06038593128323555, + -0.07240328192710876, + -0.04051491990685463, + -0.03754798322916031, + 0.05395340919494629, + 0.04764554649591446, + 0.012341468594968319, + 0.0021192419808357954, + 0.07065802067518234, + -0.0065447180531919, + 0.008277510292828083, + -0.038844458758831024, + 0.07429813593626022, + -0.019696485251188278, + -0.011531169526278973, + -0.005790517199784517, + -0.0016969519201666117, + 0.05654636397957802, + -0.00191199267283082, + 0.06382658332586288, + 0.018661795184016228, + -0.02090569958090782, + 0.054103001952171326, + 0.0011079272953793406, + 0.005148511379957199, + -0.014124125242233276, + 0.0749962329864502, + -0.06178213655948639, + 0.030816271901130676, + 0.002296884311363101, + -0.028721962124109268, + -0.03226234391331673, + 0.006469921208918095, + -0.10082605481147766, + -0.08322387933731079, + 0.08023200929164886, + 0.030143100768327713, + -0.020968029275536537, + -0.03632630035281181, + 0.03527914732694626, + -0.04724663123488426, + -0.07763905823230743, + -0.025854753330349922, + 0.005033199675381184, + 0.030392423272132874, + 0.017789166420698166, + 0.03824608400464058, + -0.0820271298289299, + -0.031963154673576355, + 0.11628405749797821, + 0.04826885461807251, + 0.07310138642787933, + 0.04624934121966362, + 0.005120462737977505, + -0.05709487199783325, + -0.01842493936419487, + -0.026951773092150688, + -0.08437076210975647, + 0.013538217172026634, + -0.06527265161275864, + -0.03590245172381401, + -0.008757456205785275, + 0.001374390791170299, + -0.0515100471675396, + -0.0008811995503492653, + -0.007267753593623638, + 0.04026559740304947, + 0.01722819171845913, + -0.00633591040968895, + -0.02902114950120449, + 0.013949599117040634, + 0.008071819320321083, + -0.02757507935166359, + -0.03891925513744354, + 0.049316007643938065, + 0.08930735290050507, + 0.006675612181425095, + 0.02807372435927391, + -0.01863686367869377, + 0.03562819957733154, + -0.007317618001252413, + 0.04001627489924431, + 0.02580488845705986, + -0.022476430982351303, + -0.03512955456972122, + 0.054103001952171326, + -0.04687264561653137, + -0.03433172032237053, + -0.024308953434228897, + 0.014360981062054634, + 0.00797208957374096, + 0.03620164096355438, + -0.044204894453287125, + 0.009436859749257565, + -0.008894583210349083, + 0.01562006026506424, + 0.09085315465927124, + -0.06008674576878548, + 0.008751222863793373, + -0.0655718445777893, + -0.03734852373600006, + 0.02612900733947754, + -0.05370408669114113, + -0.044828202575445175, + -0.01904824562370777, + -0.0011741535272449255, + -0.026527924463152885, + -0.06008674576878548, + -0.003281708573922515, + 0.08352306485176086, + -0.005438349209725857, + 0.005541194695979357, + -0.009679949842393398, + 0.07569433748722076, + 0.05759351700544357, + -0.03041735664010048, + -0.05639677122235298, + -0.09942985326051712, + -0.05155991390347481, + -0.00012544043420348316, + -0.03976695239543915, + -0.040789175778627396, + -0.009056643582880497, + -0.03438158705830574, + -0.00997913721948862, + 0.0490417554974556, + 0.04093876853585243, + 0.05510029196739197, + 0.039018984884023666, + 0.02794906310737133, + 0.02035718970000744, + -0.02319946698844433, + 0.011755560524761677, + 0.07355016469955444, + 0.011263147927820683, + -0.005790517199784517, + -0.061931733042001724, + 0.048368584364652634, + 0.01300217304378748, + 0.006220598705112934, + -0.0154580008238554, + -0.03281085193157196, + 0.02333659492433071, + -0.04208565503358841, + 0.03635123372077942, + 0.04806939512491226, + -0.020257459953427315, + -0.0073674824088811874, + 0.052906252443790436, + 0.006108403671532869, + 0.005344853270798922, + 0.09130193293094635, + -0.0017421416705474257, + -0.041412483900785446, + -0.02176586166024208, + 0.0083460733294487, + -0.09075342118740082, + 0.012266671285033226, + -0.062181055545806885, + 0.07589379698038101, + 0.01656748540699482, + 0.006507319863885641, + -0.05779297649860382, + 0.05285638943314552, + -0.061233628541231155, + -0.016829274594783783, + 0.039218444377183914, + -0.034356653690338135, + -0.05445205420255661, + 0.07758919149637222, + -0.09185044467449188, + 0.017091063782572746, + -0.0255555659532547, + 0.044828202575445175, + 0.04747102037072182, + -0.024994589388370514, + -0.030816271901130676, + -0.01014119666069746, + -0.0015699531650170684, + -0.060734983533620834, + -0.015632526949048042, + 0.003942413721233606, + -0.03572792932391167, + -0.06053552404046059, + -0.03906885161995888, + 0.08651494234800339, + -0.034481313079595566, + -0.011967484839260578, + 0.017614640295505524, + 0.011643365025520325, + 0.013725209049880505, + 0.003827101783826947, + 0.009592686779797077, + 0.013426021672785282, + -0.013887268491089344, + -0.05460164695978165, + -0.013076970353722572, + 0.004116939380764961, + 0.004808809608221054, + 0.0672173723578453, + -0.0028235784266144037, + -0.0055443113669753075, + 0.007330084219574928, + 0.06043579801917076, + 0.04806939512491226, + -0.0370992012321949, + -0.06911221891641617, + 0.006142685189843178, + -0.013899734243750572, + 0.054103001952171326, + -0.05938864126801491, + 0.07519569247961044, + -0.01962168887257576, + 0.006217482034116983, + 0.013675344176590443, + 0.053105711936950684, + -0.0027705973479896784, + 0.011849055998027325, + -0.006962333340197802, + 0.07454745471477509, + -0.049440670758485794, + -0.07280219346284866, + -0.012291603721678257, + -0.05131058767437935 + ] + }, + { + "id": "84ff9bb4-075e-4f8b-8a28-3ebcadfd93dd", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "kevinmoyer", + "reviewDate": "2022-05-08T11:00:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c1d104e3-7fae-4ce0-b23e-9b6424e05263", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "ericwilkins", + "reviewDate": "2021-10-26T23:57:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "ad479ea0-e579-4838-8f44-843e5132f582", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "msanchez", + "reviewDate": "2021-09-21T00:37:11", + "stars": 2, + "verifiedUser": true + }, + { + "id": "406e8418-ba17-4613-b24d-811d70355327", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "brian18", + "reviewDate": "2021-01-20T01:22:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2bef4d52-302f-4c0a-ade8-9b935e41cc3f", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "mandrews", + "reviewDate": "2021-10-16T04:02:09", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9d086127-2452-421f-b399-edc15e83b9b0", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "hernandezjessica", + "reviewDate": "2022-09-18T05:17:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4e4d1973-efc6-4b09-9493-b78b3775369e", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "hamiltonjason", + "reviewDate": "2021-04-25T05:15:16", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2117fbce-71e7-4597-bca5-f3f076c061fd", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "williamsdrew", + "reviewDate": "2021-01-19T16:49:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "91afce14-9f52-4474-bed0-9a6a239b0796", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "greerleslie", + "reviewDate": "2022-09-17T01:13:43", + "stars": 1, + "verifiedUser": false + }, + { + "id": "67d4dce6-026b-42a4-b58b-9f7106ee1e66", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "stephenherrera", + "reviewDate": "2022-01-05T02:26:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "28b3f58e-c519-4f2c-9fa8-56aa8d7cdc31", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "elizabeth83", + "reviewDate": "2022-09-09T01:31:43", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d352f79d-1152-4ce2-8787-b7ad52f25ed7", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "erinsmall", + "reviewDate": "2021-07-14T08:29:51", + "stars": 2, + "verifiedUser": true + }, + { + "id": "697f7d6e-7d47-47b4-9513-a954ed46f9d2", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "browndouglas", + "reviewDate": "2022-06-10T19:25:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "93625a40-5343-4f45-92f2-10f5d88b98c5", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "karla01", + "reviewDate": "2021-08-07T01:18:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3e326d5a-082b-4e75-95e5-cdc140bab304", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "mercadoapril", + "reviewDate": "2022-08-17T04:20:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6020cefa-9584-4fa4-9160-179fb950fb6c", + "productId": "723f63ba-ba93-4f6b-9423-2c20ad92c3f1", + "category": "Electronics", + "docType": "customerRating", + "userName": "armstrongbriana", + "reviewDate": "2022-02-10T18:55:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "product", + "name": "Premium Filter + (Black)", + "description": "This Premium Filter + (Black) is rated 4.9 out of 5 by 50.\n\nRated 5 out of 5 by Anonymous from This Is A Love At First Skin", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2020-12-26T08:43:18", + "price": 299.11, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-01-10T12:03:26", + "newPrice": 269.42 + }, + { + "priceDate": "2022-10-30T12:03:26", + "newPrice": 290.46 + }, + { + "priceDate": "2024-03-18T12:03:26", + "newPrice": 299.11 + } + ], + "descriptionVector": [ + 0.018247129395604134, + 0.021165113896131516, + -0.001249059452675283, + 0.014525079168379307, + -0.0033491977956146, + 0.027182647958397865, + -0.07776104658842087, + 0.03146235644817352, + 0.013993357308208942, + 0.07044663280248642, + -0.01845463179051876, + 0.008617781102657318, + 0.006665973458439112, + -0.04448305442929268, + -0.00020061143732164055, + 0.04035896807909012, + -0.01750790700316429, + -0.034860190004110336, + 0.011010528542101383, + -0.006821599323302507, + -0.016055399551987648, + -0.0647922232747078, + -0.10421743988990784, + 0.03924364969134331, + 0.043808676302433014, + 0.03457487374544144, + 0.01722259260714054, + 0.03981427848339081, + 0.030762040987610817, + -0.014654766768217087, + 0.0596046969294548, + 0.047958698123693466, + -0.000772860657889396, + 0.1017274260520935, + -0.02702702209353447, + 0.0085269995033741, + 0.04085178300738335, + 0.0028190973680466413, + 0.04448305442929268, + 0.08507546037435532, + 0.03187736123800278, + -0.03794676810503006, + -0.010666854679584503, + 0.01966073177754879, + 0.03677957504987717, + -0.06577785313129425, + 0.03548269346356392, + -0.028842655941843987, + 0.03553456813097, + 0.03112516924738884, + 0.0467136912047863, + -0.027805151417851448, + -0.02347356453537941, + -0.04884057864546776, + -0.011172638274729252, + 0.09804428368806839, + 0.054209668189287186, + 0.07200288772583008, + 0.08663172274827957, + -0.06806036829948425, + -0.01662602834403515, + -0.03872489929199219, + 0.020801987498998642, + -0.01710587367415428, + -0.05623280629515648, + -0.0014411601005122066, + -0.05784093961119652, + -0.029828287661075592, + 0.017546813935041428, + 0.06754161417484283, + -0.03517144173383713, + 0.001677841180935502, + 0.0452871210873127, + -0.005054597742855549, + 0.06847537308931351, + 0.03742801398038864, + 0.1169268861413002, + -0.002626186003908515, + -0.01420085784047842, + 0.037843018770217896, + 0.03849145770072937, + 0.0030282195657491684, + -0.025003885850310326, + 0.09353113174438477, + 0.04020334407687187, + 0.07158789038658142, + 0.0141878891736269, + -0.1183793917298317, + -0.022228557616472244, + -0.015329145826399326, + -0.05133059248328209, + 0.03574207052588463, + 0.008066605776548386, + -0.10655182600021362, + 0.02788296341896057, + 0.025807952508330345, + 0.008060121908783913, + 0.0217876173555851, + -0.06365097314119339, + 0.06344346702098846, + -0.003007145132869482, + -0.06624473631381989, + -0.009888725355267525, + 0.023745909333229065, + 0.035638317465782166, + -0.0028563826344907284, + 0.003046051599085331, + -0.07620479166507721, + -0.03390049561858177, + -0.09311612695455551, + -0.014628829434514046, + -0.04769932106137276, + -0.05981219932436943, + 0.008189810439944267, + -0.009512629359960556, + 0.006860505789518356, + -0.04092959687113762, + -0.01951807551085949, + 0.06365097314119339, + -0.024861227720975876, + -0.0013130930019542575, + 0.059397198259830475, + 0.0295170359313488, + 0.023551378399133682, + 0.07288476824760437, + -0.004714166279882193, + -0.013202259317040443, + 0.017417125403881073, + 0.10644807666540146, + -0.07511540502309799, + -0.018078535795211792, + 0.025743108242750168, + 0.016431495547294617, + -0.020218390971422195, + -0.0584634430706501, + -0.006607613991945982, + -0.010861387476325035, + 0.09700677543878555, + 0.014823361299932003, + 0.019362449645996094, + 0.044898055493831635, + -0.06795661896467209, + 0.07848729938268661, + 0.04103334620594978, + 0.04648025333881378, + 0.011503343470394611, + 0.023292001336812973, + -0.005917024333029985, + 0.012994757853448391, + 0.003465917194262147, + 0.042148664593696594, + -0.12377442419528961, + -0.03063235431909561, + -0.07833167165517807, + 0.05763343721628189, + -0.0008924169233068824, + -0.013357885181903839, + 0.04175960272550583, + -0.06142033264040947, + 0.0033686510287225246, + -0.09633240103721619, + -0.026378581300377846, + 0.03714270144701004, + 0.008377857506275177, + 0.042459916323423386, + 0.0951392650604248, + -0.04209678992629051, + 0.005440420005470514, + -0.0765160396695137, + 0.019621824845671654, + 0.04178553819656372, + 0.0021965939085930586, + 0.035067688673734665, + -0.015069768764078617, + -0.04009959101676941, + 0.05924157053232193, + 0.01897338405251503, + -0.020101672038435936, + 0.008274107240140438, + -0.011717328801751137, + 0.016807591542601585, + 0.04479430615901947, + -0.04230429232120514, + -0.0828448235988617, + 0.02309746854007244, + -0.06608910858631134, + 0.0071263667196035385, + 0.020075734704732895, + 0.037843018770217896, + 0.03711676225066185, + 0.006704879924654961, + 0.014408359304070473, + 0.016755715012550354, + 0.020010890439152718, + -0.0206333938986063, + 0.05083777382969856, + 0.02304559387266636, + -0.0033718931954354048, + -0.00745058711618185, + -0.024264663457870483, + -0.07656791806221008, + 0.050656210631132126, + 0.08040668815374374, + -0.028557341545820236, + -0.00018490701040718704, + -0.04391242563724518, + 0.041655849665403366, + 0.08507546037435532, + -0.014576953835785389, + 0.034548938274383545, + 0.022423090413212776, + 0.01192483026534319, + -0.061887212097644806, + 0.026002485305070877, + 0.0656222328543663, + -0.0063255419954657555, + -0.045183371752500534, + -0.020192453637719154, + -0.016742747277021408, + -0.01145146880298853, + 0.0014833088498562574, + 0.008397310972213745, + 0.006238002795726061, + -0.009953569620847702, + 0.03690926358103752, + -0.031306732445955276, + -0.002759116468951106, + 0.015134613029658794, + 0.07604916393756866, + 0.11049434542655945, + 0.01748196966946125, + -0.07381852716207504, + -0.05597342923283577, + -0.013863668777048588, + -0.047388069331645966, + 0.0032357205636799335, + -0.0518752820789814, + -0.024342475458979607, + 0.019310573115944862, + 0.06987600028514862, + 0.0406961590051651, + 0.048192135989665985, + -0.031202981248497963, + 0.012501942925155163, + 0.07558228820562363, + -0.026975145563483238, + 0.050630275160074234, + 0.0010083257220685482, + -0.06053845211863518, + -0.021113239228725433, + 0.014732579700648785, + -0.01529023889452219, + -0.02816827781498432, + 0.14981581270694733, + -0.026352642104029655, + 0.04891838878393173, + 0.019012290984392166, + -0.005855422466993332, + -0.07241789251565933, + -0.005609015002846718, + -0.0004709302738774568, + 0.07568603754043579, + 0.004166233353316784, + -0.019129009917378426, + -0.03195517510175705, + -0.021826524287462234, + 0.017157750204205513, + -0.015692273154854774, + -0.010595526546239853, + 0.04007365554571152, + -0.0008093354408629239, + 0.05410591885447502, + 0.05299060046672821, + 0.02241012081503868, + -0.012190691195428371, + 0.021022457629442215, + -0.03247392550110817, + 0.023136375471949577, + 0.03584581986069679, + 0.029102033004164696, + 0.05483217164874077, + 0.04256366938352585, + 0.03659801185131073, + 0.031566109508275986, + 0.04009959101676941, + -0.04175960272550583, + 0.03706488758325577, + -0.005745187401771545, + -0.013993357308208942, + -0.033952370285987854, + -0.036675825715065, + 0.055558424443006516, + 0.04990402236580849, + -0.03818020597100258, + 0.02608029730618, + 0.022967780008912086, + 0.02840171568095684, + -0.031514234840869904, + -0.01627586968243122, + 0.04497586935758591, + -0.014771486632525921, + 0.001504383166320622, + -0.02401825599372387, + 0.009862788021564484, + 0.055558424443006516, + 0.09275300055742264, + 0.0068799592554569244, + -0.025198418647050858, + -0.018765883520245552, + -0.06027907505631447, + 0.06914974749088287, + -0.021139176562428474, + -0.0033232602290809155, + -0.01656118407845497, + 0.04860713705420494, + -0.033174242824316025, + -0.06588160991668701, + 0.031202981248497963, + 0.049800269305706024, + 0.00010395319986855611, + -0.04891838878393173, + 0.00012158269237261266, + 0.03504175320267677, + 0.06313221901655197, + 0.016288837417960167, + -0.01656118407845497, + -0.0813923180103302, + -0.027519837021827698, + -0.003221130697056651, + -0.021022457629442215, + 0.04282304644584656, + -0.038335833698511124, + 0.01071873027831316, + 0.025976547971367836, + 0.061887212097644806, + -0.022876998409628868, + -0.039684589952230453, + -0.03449706360697746, + 0.005994837265461683, + 0.014836330898106098, + 0.0002581605804152787, + -0.022539809346199036, + 0.01899932138621807, + -0.03823208063840866, + 0.03664988651871681, + -0.06256158649921417, + 0.0001391108671668917, + -0.09555426985025406, + -0.009512629359960556, + 0.04834776371717453, + 0.0013917165342718363, + -0.020672298967838287, + -0.03989209234714508, + 0.005083777476102114, + 0.029050158336758614, + 0.017663532868027687, + 0.05208278074860573, + -0.04321210831403732, + 0.05659593269228935, + -0.0008097407408058643, + 0.016042429953813553, + -0.013811793178319931, + 0.01989416964352131, + 0.005057840142399073, + 0.030424851924180984, + 0.000500920694321394, + -0.01119209174066782, + 0.08647609502077103, + 0.034004248678684235, + -0.01584789901971817, + -0.026612019166350365, + -0.037013012915849686, + 0.0058683911338448524, + 0.05628468096256256, + -0.0346786268055439, + -0.0222155898809433, + 0.006247729063034058, + 0.00669191125780344, + -0.017754314467310905, + 0.05431342124938965, + -0.0361051969230175, + 0.03649425879120827, + -0.04072209447622299, + -0.028272029012441635, + 0.04458680376410484, + 0.007405196316540241, + -0.03369299694895744, + 0.041603974997997284, + -0.0006889685755595565, + 0.04832182452082634, + -0.03522331640124321, + -0.07900605350732803, + -0.05493592470884323, + -0.019907139241695404, + 0.03903615102171898, + -0.0708097591996193, + -0.005301005207002163, + 0.08574984222650528, + 0.08549046516418457, + -0.06826786696910858, + 0.10675933212041855, + 0.0041338116861879826, + -0.0510193407535553, + -0.030943606048822403, + 0.024199819192290306, + -0.07921355217695236, + 0.08300045132637024, + 0.016898373141884804, + -0.04754369705915451, + -0.04640243947505951, + 0.012255535461008549, + -0.0005726544768549502, + -0.02584685944020748, + -0.00749597791582346, + 0.038647085428237915, + 0.01733931340277195, + 0.052886851131916046, + -0.05125277861952782, + 0.06396222114562988, + 0.009940600953996181, + 0.027753274887800217, + 0.05519529804587364, + -0.017494939267635345, + 0.0039003726560622454, + 0.0006808630423620343, + 0.05898219347000122, + 0.040566470474004745, + 0.07843542844057083, + 0.01146443746984005, + -0.0021252655424177647, + 0.04043678194284439, + -0.06951287388801575, + -0.024109037593007088, + 0.015445864759385586, + 0.013435698114335537, + -0.009603411890566349, + 0.026689833030104637, + 0.005664132069796324, + -0.0653628557920456, + 0.010971621610224247, + -0.01656118407845497, + -0.10110492259263992, + -0.016638996079564095, + 0.06064220517873764, + -0.10707058012485504, + 0.03903615102171898, + 0.01089380867779255, + 0.08917360752820969, + -0.010180523619055748, + -0.05462467297911644, + 0.032058924436569214, + 0.01774134673178196, + -0.023538408800959587, + -0.052809037268161774, + -0.018493536859750748, + -0.029335470870137215, + 0.03187736123800278, + 0.1860247552394867, + 0.01296882051974535, + -0.05182340741157532, + -0.11049434542655945, + 0.04334179684519768, + 0.03932146355509758, + 0.014148983173072338, + -0.016301807016134262, + -0.05654405802488327, + -0.1146443709731102, + -0.00996005441993475, + 0.029153907671570778, + 0.014291640371084213, + -0.0024413804057985544, + -0.005855422466993332, + 0.02043886110186577, + -0.02207293175160885, + 0.003294080263003707, + 0.02868703007698059, + -0.04969651997089386, + 0.0027834330685436726, + 0.01805259846150875, + -0.010861387476325035, + -0.022397153079509735, + -0.01873994618654251, + -0.015264301560819149, + 0.041889291256666183, + 0.05278309807181358, + 0.029387347400188446, + 0.052316222339868546, + -0.004710923880338669, + 0.05706280842423439, + -0.0004070993745699525, + -0.009130049496889114, + -0.002301965607330203, + -0.0267935823649168, + -0.0659334808588028, + -0.024796385318040848, + -0.04258960485458374, + -0.012132331728935242, + -0.027701400220394135, + 0.05000777170062065, + -0.023797785863280296, + 0.10084554553031921, + 0.001754032913595438, + 0.0472843199968338, + -0.005735460668802261, + 0.00812496617436409, + 0.022864030674099922, + 0.00864371843636036, + -0.11526687443256378, + 0.022539809346199036, + 0.026715770363807678, + 0.051512155681848526, + 0.010187008418142796 + ] + }, + { + "id": "c74ab0c3-262d-4027-9bba-333a4f0bbbec", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "dreed", + "reviewDate": "2022-02-02T10:55:07", + "stars": 4, + "verifiedUser": true + }, + { + "id": "82a14f7f-b3ac-42b2-a7c2-c9e0f87e1419", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "lauraingram", + "reviewDate": "2021-02-06T04:47:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "30bdb9fa-29ab-4776-af44-5ba5181e18a3", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "liujeremy", + "reviewDate": "2022-09-15T02:35:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ea31d334-8237-4cf1-a135-f1fe30cb6b80", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "dianecarter", + "reviewDate": "2021-04-14T07:51:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e1de5766-6b69-492d-b6e4-28c1dbba6ac4", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "nathandavis", + "reviewDate": "2021-01-10T12:03:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "c6e64b4b-3937-42a2-97ed-95078db09a46", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "perrywilliam", + "reviewDate": "2022-10-30T23:21:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a8cb01a3-49b2-414e-a378-4c324e2c97f6", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "usantos", + "reviewDate": "2021-12-07T06:41:46", + "stars": 5, + "verifiedUser": false + }, + { + "id": "64af5f7e-9dac-4a81-8fa2-f8639550eb43", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "christopher29", + "reviewDate": "2021-10-14T01:03:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3953433b-56e9-4835-af71-2d038b7612a6", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "mariadaniels", + "reviewDate": "2022-06-26T22:54:42", + "stars": 3, + "verifiedUser": true + }, + { + "id": "937749bc-258f-4dc1-9a2e-8f5332074743", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "brooksbrandon", + "reviewDate": "2021-08-04T02:22:38", + "stars": 3, + "verifiedUser": false + }, + { + "id": "cb7b30c2-2f12-4d40-abc9-37c8e3f22dc9", + "productId": "535ce2e5-28c7-484b-bdab-b2612d7c8614", + "category": "Other", + "docType": "customerRating", + "userName": "troypowers", + "reviewDate": "2022-08-12T17:29:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "27ea791f-f3ac-4862-accb-83d949e85a08", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer + (Silver)", + "description": "This Awesome Computer + (Silver) is rated 4.9 out of 5 by 15.\n\nRated 5 out of 5 by Anonymous from Works perfectly. I bought the computer this month and the system works great. Great value.\n\nRated 3 out of 5 by Anonymous from Does not work. Some people said it was on par with the original one. I also liked the new speaker", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-04-28T07:30:25", + "price": 795.91, + "stock": 20, + "priceHistory": [ + { + "priceDate": "2021-03-22T15:38:00", + "newPrice": 851.58 + }, + { + "priceDate": "2022-02-07T15:38:00", + "newPrice": 872.53 + }, + { + "priceDate": "2022-12-26T15:38:00", + "newPrice": 871.54 + }, + { + "priceDate": "2023-01-07T15:38:00", + "newPrice": 795.91 + } + ], + "descriptionVector": [ + -0.036310549825429916, + 0.007516550365835428, + -0.00395271647721529, + 0.03684387356042862, + -0.006255459040403366, + 0.003636054927483201, + -0.022721871733665466, + 0.053421396762132645, + 0.04813259094953537, + 0.15795311331748962, + 0.04857702553272247, + -0.08537645637989044, + 0.002040246268734336, + -0.02975509501993656, + -0.04835480824112892, + 0.06599897891283035, + -0.020921899005770683, + 0.03197728469967842, + 0.011077607050538063, + 0.008272094652056694, + 0.023332972079515457, + -0.031021742150187492, + -0.04826591908931732, + 0.032688383013010025, + -0.03022175468504429, + -0.01099427416920662, + 0.019721917808055878, + 0.0187219325453043, + 0.06399901211261749, + -0.06591009348630905, + 0.020788567140698433, + 0.017366398125886917, + -0.0875542014837265, + 0.019177481532096863, + 0.06759895384311676, + -0.028799554333090782, + -0.03759941831231117, + -0.07257665693759918, + 0.020088577643036842, + 0.0861320048570633, + -0.02875511161983013, + -0.0014819215284660459, + 0.07430996000766754, + -0.0640878975391388, + 0.0384216271340847, + -0.02399962954223156, + 0.0007992932223714888, + 0.013710899278521538, + 0.023666301742196083, + 0.06151016056537628, + 0.03197728469967842, + 0.012222032994031906, + 0.03537723049521446, + 0.03611055389046669, + 0.0023305194918066263, + 0.026621811091899872, + -0.03515501320362091, + 0.05088810250163078, + -0.004361043684184551, + -0.0544436015188694, + 0.019177481532096863, + 0.02548849582672119, + -0.0008069319883361459, + -0.048932578414678574, + -0.06591009348630905, + 0.032643940299749374, + -0.06066573038697243, + 0.07048779726028442, + 0.03715498000383377, + -0.029510654509067535, + -0.012866468168795109, + -0.04437709227204323, + 0.03635499253869057, + 0.06115461140871048, + 0.06031017750501633, + -0.0053665838204324245, + 0.021399669349193573, + 0.03451057896018028, + -0.04177713394165039, + 0.03875495493412018, + 0.010099844075739384, + 0.04164380207657814, + -0.001413866993971169, + 0.015077544376254082, + 0.03635499253869057, + 0.005972129758447409, + -0.025599604472517967, + -0.12417586147785187, + -0.03348837047815323, + 0.08142096549272537, + -0.02212188020348549, + -0.006655452772974968, + 0.08386537432670593, + -0.01589975506067276, + 0.009988734498620033, + 0.0024055184330791235, + -0.09084304422140121, + 0.05693245306611061, + -0.04188824072480202, + -0.051110319793224335, + 0.013899785466492176, + -0.08199873566627502, + -0.05186586454510689, + -0.03973272070288658, + -0.03228839114308357, + 0.01045539416372776, + 0.06391012668609619, + -0.021588554605841637, + 0.03344392776489258, + -0.04862147197127342, + -0.0439104326069355, + -0.019277479499578476, + 0.0033332817256450653, + -0.1307535320520401, + 0.05742133408784866, + 0.06391012668609619, + -0.04937701299786568, + -0.026644032448530197, + -0.04268822818994522, + -0.04964367672801018, + 0.07888767123222351, + -0.0017208067001774907, + 0.024577397853136063, + 0.053243622183799744, + 0.07195444405078888, + 0.04164380207657814, + -0.04999922588467598, + -0.005849909503012896, + 0.07364330440759659, + -0.05439915880560875, + -0.0544436015188694, + 0.0755099430680275, + -0.022332988679409027, + -0.03644388169050217, + -0.022544095292687416, + 0.004211046267300844, + -0.00995540153235197, + 0.08297649770975113, + -0.01885526441037655, + -0.021188560873270035, + -0.01829971745610237, + 0.038443852216005325, + -0.003416613908484578, + -0.016888627782464027, + -0.04604373127222061, + 0.007355441804975271, + -0.07715436071157455, + 0.03606611117720604, + -0.0058999089524149895, + 0.09035415947437286, + 0.029110660776495934, + -0.021621888503432274, + -0.06537676602602005, + -0.03973272070288658, + 0.00888319592922926, + 0.027666239067912102, + -0.022144101560115814, + 0.020810790359973907, + -0.017177512869238853, + 0.11599820852279663, + -0.04737704619765282, + 7.400059257633984e-05, + -0.05711022764444351, + -0.006072128191590309, + -0.036954984068870544, + 0.015644202008843422, + 0.07297664880752563, + 0.043710436671972275, + -0.13937562704086304, + 0.013033132068812847, + 0.02003302425146103, + -0.004780481569468975, + -0.012910911813378334, + 0.014910880476236343, + 0.053154733031988144, + -0.020766345784068108, + 0.027799570932984352, + -0.0062332372181117535, + -0.042666006833314896, + -0.043577104806900024, + 0.0050721438601613045, + 0.07279887795448303, + -0.046621501445770264, + -0.00434437720105052, + 0.09288745373487473, + -0.02831067331135273, + 0.010755388997495174, + -0.04608817771077156, + -0.011666486039757729, + -0.0016027530655264854, + -0.0068721161223948, + -0.01728862151503563, + 0.021277448162436485, + -0.00859986711293459, + -0.04397709667682648, + 0.05199919641017914, + -0.00511936517432332, + 0.004583262372761965, + -0.010138732381165028, + 0.02508850209414959, + 0.010766500607132912, + 0.03933272510766983, + 0.12284254282712936, + -0.05599913373589516, + 0.03988827392458916, + -0.05284362658858299, + 0.05835465341806412, + 0.002927732653915882, + 0.027244023978710175, + 0.014666439965367317, + 0.02904399484395981, + 0.0272218007594347, + -0.024599619209766388, + 0.022932978346943855, + 0.09004305303096771, + 0.030977299436926842, + -0.011744262650609016, + 0.09448742866516113, + -0.08288760483264923, + -0.04195490851998329, + 0.04339933022856712, + -0.05724355950951576, + -0.0019110816065222025, + -0.010888720862567425, + -0.05675467848777771, + -0.06871005147695541, + 0.025644049048423767, + -0.017977500334382057, + 0.04142158105969429, + 0.021788552403450012, + -0.05608802288770676, + 0.022844091057777405, + 0.02953287772834301, + 0.0435548834502697, + -0.04973256587982178, + -0.015666425228118896, + -0.03317726403474808, + 0.004472153261303902, + -0.07399885356426239, + 0.08493202179670334, + -0.021188560873270035, + 0.0327550508081913, + -0.02152189053595066, + -0.03528834506869316, + -0.049154795706272125, + -0.04115492105484009, + 0.08039876073598862, + -0.02225521206855774, + -0.05808798968791962, + 0.010266507975757122, + -0.013310905545949936, + -0.028910664841532707, + -0.07275442779064178, + 0.10604280233383179, + 0.029910648241639137, + 0.02313297614455223, + 0.09999845176935196, + -0.012999799102544785, + -0.0019166370620951056, + -0.019977468997240067, + -0.030977299436926842, + 0.023377416655421257, + -0.028843998908996582, + 0.05764355510473251, + -0.041088253259658813, + 0.02939954586327076, + 0.08030986785888672, + -0.007072112988680601, + -0.04635483771562576, + 0.01265535969287157, + -0.035821668803691864, + -0.01526643056422472, + 0.021899661049246788, + -0.0333772636950016, + -0.02408851683139801, + 0.007649881765246391, + -0.029377324506640434, + 0.05915464088320732, + -0.053732503205537796, + 0.021266337484121323, + 0.07026558369398117, + 0.057821329683065414, + -0.021588554605841637, + -0.02322186343371868, + 0.03924383968114853, + -0.06311013549566269, + -0.0333772636950016, + -0.062310148030519485, + 0.020488573238253593, + -0.001879137591458857, + -0.011555377393960953, + -0.008833196945488453, + 0.01821083016693592, + 0.06728784739971161, + 0.013455348089337349, + 0.029066218063235283, + 0.0547102652490139, + -0.027555130422115326, + -0.031821731477975845, + -0.013810898177325726, + 0.10639835894107819, + 0.026377370581030846, + -0.06484344601631165, + -0.014710883609950542, + -0.026732919737696648, + -0.01211092434823513, + -0.029888426885008812, + 0.02408851683139801, + -0.05613246560096741, + -0.051421426236629486, + 0.06742118299007416, + 0.0669322982430458, + -0.03393280878663063, + -0.001629141508601606, + 0.14790882170200348, + -0.04648816958069801, + -0.000282113702269271, + 0.025199610739946365, + 0.0328439362347126, + -0.004116603173315525, + -0.03219950199127197, + -0.028888441622257233, + -0.034043919295072556, + 0.05048811063170433, + -0.01773305982351303, + 0.008510979823768139, + -0.030155088752508163, + 0.004261045251041651, + -0.03893273323774338, + -0.01265535969287157, + 0.028332894667983055, + -0.04146602749824524, + 0.01045539416372776, + 0.022488541901111603, + 0.0431104451417923, + -0.06173237785696983, + -0.053154733031988144, + 0.032599497586488724, + 0.08857640624046326, + 0.06511010229587555, + 0.05688801035284996, + 0.01265535969287157, + -0.003994382917881012, + -0.014844215475022793, + -0.0016583077376708388, + -0.08497646450996399, + 0.014288668520748615, + -0.06346568465232849, + -0.008338759653270245, + -0.09053193777799606, + 0.0013006743974983692, + -0.05933241546154022, + 0.017355287447571754, + 0.025244055315852165, + 0.03471057489514351, + -0.0026652365922927856, + -0.031599510461091995, + -0.03977716341614723, + 0.06297680735588074, + -0.03664387762546539, + 0.013388682156801224, + -0.0550658144056797, + 0.046665944159030914, + 0.023488525301218033, + -0.03135507181286812, + -0.003980494104325771, + -0.026577366515994072, + 0.07155445218086243, + -0.01385534182190895, + -0.04746593162417412, + 0.015366429463028908, + -0.026866251602768898, + -0.053421396762132645, + 0.053821392357349396, + -0.0036138331051915884, + -0.02234409935772419, + -0.01864415593445301, + 0.014433110132813454, + -0.021855218335986137, + 0.03715498000383377, + -0.0030971744563430548, + 0.07804323732852936, + -0.007794323842972517, + -0.04522152245044708, + 0.034599464386701584, + -0.0662211999297142, + 0.0018333049956709146, + 0.017755281180143356, + 0.019921913743019104, + 0.04046604037284851, + -0.02648847922682762, + -0.013988672755658627, + -0.0026846807450056076, + 0.03402169793844223, + 0.020499683916568756, + -0.04644372686743736, + -0.006966559216380119, + 0.039354946464300156, + 0.046799276024103165, + 0.020010801032185555, + 0.039354946464300156, + 0.04286600276827812, + 0.03157728910446167, + -0.08008765429258347, + -0.029955092817544937, + -0.08519868552684784, + -0.02862177975475788, + 0.04591040313243866, + -0.046888165175914764, + -0.051465872675180435, + 0.026377370581030846, + -0.0026291259564459324, + 0.037399422377347946, + 0.028843998908996582, + 0.043488215655088425, + 0.020977454259991646, + 0.04133269563317299, + -0.006322124507278204, + 0.050932545214891434, + -0.05493248626589775, + 0.05404360964894295, + 0.04795481637120247, + 0.09262079000473022, + 0.013399792835116386, + -0.03773275017738342, + 0.017455285415053368, + -0.03684387356042862, + -0.00849431287497282, + -0.0027332911267876625, + -0.03737720102071762, + -0.0383327417075634, + -0.049332570284605026, + 0.035688336938619614, + 0.03171062096953392, + 0.009527630172669888, + -0.002911066170781851, + 0.013433125801384449, + 0.03619943931698799, + -0.010299840942025185, + 0.0021083008032292128, + 0.009938735514879227, + -0.05528803542256355, + -0.02195521630346775, + 0.008094319142401218, + -0.046754833310842514, + 0.019633030518889427, + -0.017666393890976906, + 0.10568725317716599, + -0.00445548677816987, + 0.03437724709510803, + -0.02404407225549221, + 0.01746639609336853, + -0.03362170234322548, + -0.01032206229865551, + 0.026977360248565674, + 0.04226601496338844, + -0.03715498000383377, + 0.037132758647203445, + -0.06142127141356468, + -0.03224394470453262, + -0.03802163526415825, + 0.015866421163082123, + -0.00246662856079638, + 0.039710499346256256, + -0.04117714241147041, + 0.003966605290770531, + -0.0540880523622036, + -0.08466535806655884, + -0.009260968305170536, + -0.02522183209657669, + -0.048932578414678574, + -0.03348837047815323, + 0.04973256587982178, + 0.04804370179772377, + -0.023466303944587708, + -0.044932637363672256, + 0.07039891183376312, + 0.0668434128165245, + 0.044932637363672256, + 0.047332603484392166, + 0.03188839554786682, + 0.014999768696725368, + 0.008199873380362988, + -0.04626595228910446, + 0.047110382467508316, + -0.02548849582672119, + 0.0216885544359684, + 0.03619943931698799, + 0.04219934716820717, + 0.08444313704967499, + -0.009538741782307625, + 0.05217697098851204, + 0.05022144690155983, + -0.011338713578879833, + -0.04528819024562836, + 0.02313297614455223, + -0.003399947425350547, + 0.02591071091592312, + -0.01851082593202591, + 0.06773228943347931, + 0.016221972182393074, + -0.012999799102544785, + -0.025021836161613464, + 0.02939954586327076, + -0.0002388852008152753, + -0.0016805295599624515, + -0.03828829899430275, + -0.0010444283252581954, + -0.07164333760738373, + 0.05168808996677399, + 0.08982083201408386, + -0.07182111591100693 + ] + }, + { + "id": "b5a5ea42-07f8-4216-8d9d-90c0174aad25", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "robertsonkayla", + "reviewDate": "2022-01-15T16:10:06", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8dc531f2-e4f5-4bb7-a460-e8c1cbf9c5fa", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "angela56", + "reviewDate": "2022-10-26T13:47:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "61aee476-1e94-46cb-bdfd-d8521e229e0d", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "jessica19", + "reviewDate": "2022-12-27T04:28:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "21bfe1db-1840-4880-a6c9-e5e8e8461b9f", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "thomashernandez", + "reviewDate": "2021-03-22T15:38:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "da406d8f-cec2-434d-a1cb-96d6e9f43baf", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "jerome55", + "reviewDate": "2021-10-31T16:50:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c68ae275-3ad0-40d8-8894-df49fa8475d3", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonyathompson", + "reviewDate": "2021-09-01T19:44:28", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5702a3b4-7dd2-478b-9dbb-af8169d04717", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonigarcia", + "reviewDate": "2021-12-09T09:04:03", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2890f09a-68ae-42ba-b681-34f81a8e4660", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "zcaldwell", + "reviewDate": "2022-10-02T21:33:52", + "stars": 2, + "verifiedUser": false + }, + { + "id": "024e728b-0ff2-4de1-8692-588fcc3bb702", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "petersontodd", + "reviewDate": "2022-05-15T18:12:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "82e8660e-7db8-429b-8a1c-c0cfcbb81d16", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "ulam", + "reviewDate": "2022-08-12T19:23:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "157b8ffd-fe21-4865-8748-e0f908957e9a", + "productId": "27ea791f-f3ac-4862-accb-83d949e85a08", + "category": "Electronics", + "docType": "customerRating", + "userName": "bowmanclarence", + "reviewDate": "2022-04-17T05:50:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard 3000 (Steel)", + "description": "This Basic Keyboard 3000 (Steel) is a keyboard developed by Steel Electronics, a subsidiary of the Finnish manufacturer Nihon, which is based in Bremen, Germany.\n\nNihon", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-10-24T18:56:16", + "price": 854.84, + "stock": 92, + "priceHistory": [ + { + "priceDate": "2021-03-30T08:15:16", + "newPrice": 918.15 + }, + { + "priceDate": "2021-08-26T08:15:16", + "newPrice": 862.72 + }, + { + "priceDate": "2022-01-22T08:15:16", + "newPrice": 924.31 + }, + { + "priceDate": "2022-06-20T08:15:16", + "newPrice": 881.84 + }, + { + "priceDate": "2022-11-16T08:15:16", + "newPrice": 786.53 + }, + { + "priceDate": "2023-10-01T08:15:16", + "newPrice": 854.84 + } + ], + "descriptionVector": [ + 0.009923625737428665, + 0.009929316118359566, + -0.04283546656370163, + 0.02291993424296379, + 0.022350918501615524, + -0.046363361179828644, + 0.011767234653234482, + 0.006327449344098568, + -0.02394416183233261, + 0.058039553463459015, + 0.038806840777397156, + -0.012563856318593025, + -0.003920515067875385, + -0.07042132318019867, + 0.043905217200517654, + 0.03584795817732811, + -0.04131050780415535, + -0.0049219815991818905, + -0.0026146250311285257, + -0.016990795731544495, + -0.03987658768892288, + -0.032752517610788345, + -0.010327626951038837, + -0.020894238725304604, + -0.013075970113277435, + -0.015488594770431519, + -0.016296597197651863, + -0.032137978821992874, + -0.06964746117591858, + -0.02351170964539051, + -0.0332077294588089, + 0.01081128977239132, + -0.033344291150569916, + 0.031045470386743546, + -0.023056497797369957, + -0.02886045351624489, + -0.09095139801502228, + -0.005587729625403881, + -0.002431117696687579, + -0.04980021342635155, + 0.06400283426046371, + 0.05398816615343094, + -0.015511355362832546, + 0.001670059747993946, + -0.03705427050590515, + 0.049618128687143326, + 0.025082191452383995, + 0.02205502986907959, + 0.006782661657780409, + 0.01659248396754265, + 0.12563855946063995, + 0.045430175960063934, + -0.0332304909825325, + 0.029748115688562393, + 0.018424713984131813, + -0.013553942553699017, + 0.08039047569036484, + 0.19464872777462006, + 0.10706590861082077, + -0.06659754365682602, + 0.01585276424884796, + -0.08252996951341629, + -0.007482550572603941, + -0.049527086317539215, + -8.428538421867415e-05, + -0.04326791688799858, + -0.004344431217759848, + 0.014657832682132721, + 0.02963431365787983, + 0.050892721861600876, + -0.06545951217412949, + -0.06978403031826019, + -0.03557483106851578, + 0.05380608141422272, + -0.003434007056057453, + -0.05690152198076248, + 0.02690304070711136, + 0.0510748066008091, + 0.09805270284414291, + 0.0007987551507540047, + -0.01823124848306179, + 0.02096252143383026, + -0.09750644862651825, + -0.1089777946472168, + 0.026948561891913414, + 0.022510243579745293, + -0.010219513438642025, + -0.08325830847024918, + -0.07948004454374313, + 0.06960194557905197, + -0.03737292066216469, + -0.005360123701393604, + -0.038192301988601685, + -0.05662839487195015, + 0.0663699358701706, + 0.0006863746093586087, + -0.06149916723370552, + -0.0029731045942753553, + -0.029566030949354172, + 0.012154165655374527, + 0.08753730356693268, + 0.0217250008136034, + -0.06910120695829391, + 0.00784103013575077, + -0.01008864026516676, + 0.03420919552445412, + 0.0069533661007881165, + 0.07943452894687653, + -0.04624955728650093, + 0.01907339133322239, + -0.022589905187487602, + 0.03298012167215347, + 0.0067371404729783535, + -0.0022817510180175304, + -0.01183551736176014, + 0.025195995345711708, + -0.07169591635465622, + -0.06705275177955627, + 0.035893481224775314, + -0.041173942387104034, + -0.019369278103113174, + 0.02562844567000866, + 0.02401244267821312, + -0.004358656704425812, + -0.03910272568464279, + -0.024900106713175774, + -0.0468413345515728, + -0.0021309619769454002, + 0.015613778494298458, + 0.014282282441854477, + -0.08366800099611282, + 0.026174701750278473, + 0.04436042904853821, + 0.044337667524814606, + -0.028154874220490456, + 0.06919225305318832, + -0.013132872059941292, + 0.0268347579985857, + -0.04121946543455124, + 0.07683981955051422, + 0.017480148002505302, + -0.02749481610953808, + -0.008062945678830147, + -0.03202417865395546, + -0.07984422147274017, + -0.02376207709312439, + -0.08530676364898682, + 0.08958575874567032, + 0.05498963221907616, + -0.016307976096868515, + -0.05603662133216858, + -0.038101259618997574, + 0.004367191810160875, + -0.032320063561201096, + 0.020131759345531464, + -0.002337230136618018, + -0.10506297647953033, + 0.0003373193321749568, + -0.02240782044827938, + 0.06254615634679794, + -0.018618177622556686, + -0.013861211016774178, + -0.02658439241349697, + 0.008239340968430042, + -0.013349097222089767, + 0.045179810374975204, + -0.005963279865682125, + 0.020723534747958183, + -0.028837691992521286, + 0.016330737620592117, + -0.035734158009290695, + 0.02553740330040455, + 0.004970347974449396, + -0.03099994920194149, + -0.029679834842681885, + -0.06464012712240219, + 0.045270852744579315, + 0.010071570053696632, + 0.07133174687623978, + -0.06791765987873077, + 0.08148298412561417, + 0.02990744076669216, + -0.03696322813630104, + -0.0023030892480164766, + 0.0936826691031456, + 0.05371503904461861, + 0.04784280061721802, + 0.008449876680970192, + -0.013576703146100044, + -0.023557230830192566, + 0.04156087338924408, + 0.01260937750339508, + -0.02137221209704876, + 0.04197056218981743, + 0.023306863382458687, + 0.0323883481323719, + 0.0011003331746906042, + 0.03618936985731125, + -0.025924334302544594, + -0.025195995345711708, + -0.007784128654748201, + 0.0936826691031456, + 0.0200065765529871, + -0.016660766676068306, + 0.025446360930800438, + -0.0108625004068017, + -0.04304031282663345, + 0.029839158058166504, + -0.004728516563773155, + 0.031978655606508255, + 0.0014538338873535395, + -0.08567093312740326, + -0.012461434118449688, + -0.09559456259012222, + 0.05635526776313782, + 0.010913711972534657, + 0.002916203113272786, + -0.03967174142599106, + 0.030635779723525047, + -0.03869303688406944, + 0.017946740612387657, + 0.018083304166793823, + -0.006458322983235121, + -0.038875121623277664, + -0.02230539731681347, + -0.008398665115237236, + 0.06486773490905762, + -0.0008897975785657763, + 0.01652420312166214, + 0.09841687232255936, + -0.016205554828047752, + 0.013736028224229813, + -0.01610313169658184, + -0.010156922042369843, + -0.00906441267579794, + 0.009929316118359566, + -0.01068610604852438, + -0.09741540998220444, + -0.07929795980453491, + 0.0690101683139801, + -0.016581103205680847, + 0.011186839081346989, + -0.021918466314673424, + -0.07333468645811081, + 0.025787770748138428, + -0.044656313955783844, + 0.08166506886482239, + -0.06427595764398575, + -0.08366800099611282, + -0.03373122215270996, + -0.04693237692117691, + 0.014896818436682224, + 0.021144606173038483, + 0.06245511397719383, + 0.006190885789692402, + 0.04299478977918625, + -0.025765009224414825, + 0.029315665364265442, + 0.03923929110169411, + -0.051484499126672745, + -0.011255121789872646, + 0.04370037093758583, + -0.01798088103532791, + 0.013462900184094906, + -0.010117091238498688, + 0.058631330728530884, + -0.013383238576352596, + -0.06400283426046371, + -0.036826666444540024, + 0.028223155066370964, + 0.050209905952215195, + 0.001012135879136622, + 0.09227151423692703, + -0.022100551053881645, + 0.03031713142991066, + 0.03755500540137291, + -0.04445147141814232, + 0.04609023407101631, + -0.03910272568464279, + -0.0229995958507061, + 0.0238531194627285, + 0.06190885603427887, + 0.01891406625509262, + 0.02972535602748394, + 0.02947498857975006, + -0.026811998337507248, + 0.03364017978310585, + 0.045953668653964996, + 0.068099744617939, + -0.04360932856798172, + -0.034709930419921875, + 0.04012695327401161, + -0.0511203296482563, + 0.02742653526365757, + 0.005934828892350197, + 0.00805156584829092, + 0.03443680331110954, + -0.04069596901535988, + 0.0519397109746933, + -0.0023585681337863207, + 0.005471081472933292, + -0.03798745572566986, + -0.10014668107032776, + -0.0996004268527031, + -0.006845253054052591, + 0.009422892704606056, + 0.024809064343571663, + 0.002559145912528038, + -0.015431692823767662, + -0.05016438290476799, + -0.03848819062113762, + -0.03448232263326645, + -0.04010419547557831, + -0.014600930735468864, + 0.03805574029684067, + -0.003769726026803255, + 0.0012660588836297393, + 0.019631026312708855, + 0.002286018803715706, + 0.05075616016983986, + 0.01315563265234232, + -0.04044560343027115, + -0.0860351026058197, + 0.06254615634679794, + 0.06332001835107803, + -0.03967174142599106, + 0.03175105154514313, + 0.04520257189869881, + 0.034709930419921875, + -0.069875068962574, + 0.01602346822619438, + 0.01601208932697773, + -0.0876738652586937, + 0.004239163361489773, + 0.009650498628616333, + -0.07706741988658905, + 0.0136336050927639, + 0.004304600413888693, + -0.015955187380313873, + 0.03646249696612358, + 0.08544332534074783, + 0.04540741443634033, + -0.03090890683233738, + -0.053532954305410385, + -0.01856127753853798, + -0.022533003240823746, + -0.0011657699942588806, + -0.009286328218877316, + -0.014339184388518333, + -0.023466188460588455, + 0.0013172702165320516, + 0.011511177755892277, + 0.07547418028116226, + -0.0604521781206131, + 0.08189266920089722, + -0.05007334053516388, + -0.04506600648164749, + -0.04326791688799858, + -0.014680593274533749, + 0.0698295533657074, + -0.04711446166038513, + -0.0026629914063960314, + 0.08817460387945175, + 0.04554397985339165, + -0.027654141187667847, + 0.027790704742074013, + 0.04051388427615166, + 0.03509686142206192, + 0.028814932331442833, + 0.035552073270082474, + 0.017434626817703247, + -0.01635349728167057, + 0.023989683017134666, + 0.05316878482699394, + 0.02503667026758194, + 0.0315234437584877, + -0.06614232808351517, + 0.025787770748138428, + -0.03948965668678284, + -0.03459612652659416, + -0.008575059473514557, + 0.03807849809527397, + 0.042129889130592346, + -0.00264023058116436, + 0.0136222243309021, + -0.08498811721801758, + -0.03958069905638695, + -0.010020358487963676, + -0.047660715878009796, + 0.039307571947574615, + 0.01056661270558834, + 0.031068231910467148, + -0.04631784185767174, + 0.033776745200157166, + -0.02273784950375557, + -0.020507309585809708, + 0.02120150811970234, + 0.017332203686237335, + 0.03689494729042053, + -0.01729806326329708, + -0.028632845729589462, + 0.042972031980752945, + -0.0011721714399755, + -0.05894997715950012, + -0.03115927428007126, + -0.05325982719659805, + -0.034709930419921875, + 0.010361767373979092, + 0.00014847741113044322, + -0.030112287029623985, + -0.01209726370871067, + -0.07793232798576355, + 0.012677659280598164, + -0.05594557896256447, + -0.02562844567000866, + -0.04479287937283516, + 0.02826867625117302, + 0.024080725386738777, + 0.07424511015415192, + -0.046795811504125595, + 0.01634211838245392, + -0.06969298422336578, + -0.052440445870161057, + 0.0425851009786129, + 0.03967174142599106, + -0.02392140030860901, + -0.07520105689764023, + -0.019631026312708855, + 0.05972383916378021, + -0.01251833513379097, + -0.032752517610788345, + -0.07870618999004364, + -0.07196904718875885, + 0.08917606621980667, + 0.002583329100161791, + -0.05885893478989601, + -0.028928734362125397, + 0.03566587343811989, + -0.012415912002325058, + 0.046204037964344025, + 0.001985863083973527, + -0.045270852744579315, + -0.026607152074575424, + 0.045020487159490585, + -0.04488392174243927, + -0.019972434267401695, + -0.03389054909348488, + 0.01678594946861267, + 0.10551818460226059, + 0.018709221854805946, + -0.022043650969862938, + -0.03527894616127014, + -0.06677962839603424, + -0.007983284071087837, + 0.06677962839603424, + 0.0014502776321023703, + 0.0030243159271776676, + 0.03024885058403015, + 0.08421425521373749, + 0.02801831066608429, + -0.05681047961115837, + 0.0698295533657074, + 0.05125689134001732, + -0.005428405478596687, + -0.014088816940784454, + -0.037168074399232864, + -0.006896464619785547, + -0.054898589849472046, + -0.0229882150888443, + 0.002690019551664591, + 0.010213823057711124, + -0.06869152188301086, + 0.05926862731575966, + 0.08148298412561417, + 0.06350210309028625, + -0.11125385761260986, + 0.021577058359980583, + 0.06946537643671036, + -0.03434576094150543, + 0.034892015159130096, + 0.01231348980218172, + -0.03177380934357643, + -0.03227454423904419, + 0.03218350186944008, + 0.007676015608012676, + 0.0187206007540226, + 0.010765768587589264, + 0.0038636133540421724, + 0.017343584448099136, + 0.03145516291260719, + -0.014248141087591648, + 0.005149587988853455, + -0.06350210309028625, + -0.04272166267037392, + 0.03543826937675476, + 0.0545344203710556, + -0.013997774571180344, + 0.02861008606851101, + -0.0400359109044075, + 0.029520509764552116, + -0.0031466542277485132, + -0.008779904805123806, + 0.03566587343811989, + 0.00010162256512558088, + -0.009121314622461796, + 0.05640079081058502, + -0.005121137015521526, + 0.06914673000574112, + 0.05772090703248978, + 0.08708208799362183, + 0.05671943724155426, + -0.07215113192796707 + ] + }, + { + "id": "8c55c3f9-dd1a-4421-b8d3-e307d477c0d5", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fosterfrederick", + "reviewDate": "2022-03-09T12:45:48", + "stars": 1, + "verifiedUser": false + }, + { + "id": "282981da-9a1f-4d65-ad27-5b20b69fc78f", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scottlee", + "reviewDate": "2021-07-31T02:23:16", + "stars": 4, + "verifiedUser": true + }, + { + "id": "40294666-73d3-44cf-9cd0-67471d1fedb6", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "thomas90", + "reviewDate": "2022-05-13T23:33:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "88c44ce6-5a2f-467c-88ac-9c3cde51f6a0", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rebecca79", + "reviewDate": "2021-10-24T15:29:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b341b851-fd4e-4bc0-bacb-ebeedc1ff310", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "walkerandrew", + "reviewDate": "2022-05-19T06:06:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a3f0a5d1-784e-4794-9cdd-6f2b66bb311a", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "iharris", + "reviewDate": "2022-08-23T06:14:47", + "stars": 5, + "verifiedUser": true + }, + { + "id": "a246b096-8790-4858-95db-f5f1642beaee", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wallacejohn", + "reviewDate": "2022-02-26T04:34:26", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8d9e5b77-cd20-4ac9-92f9-3556e5b5cdeb", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cohenjared", + "reviewDate": "2021-12-01T02:52:01", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ad117643-f55b-437e-8e11-17c99b89d3be", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "douglas94", + "reviewDate": "2022-07-08T02:15:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "71241c3f-982b-4692-a5ff-76471cb16c28", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "camposgregg", + "reviewDate": "2022-04-01T09:22:59", + "stars": 5, + "verifiedUser": true + }, + { + "id": "15836cf0-41d7-41a0-80e2-f36f4e3c2584", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lyonsdarren", + "reviewDate": "2021-03-30T08:15:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cadc861a-6aae-4f37-8a22-d648518cba4d", + "productId": "d795541e-a54f-4c60-a801-e9cb143beb3f", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hpoole", + "reviewDate": "2022-11-18T12:15:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "product", + "name": "Basic TV Ultra (Steel)", + "description": "This Basic TV Ultra (Steel) is a high quality television with three channels; standard, advanced and intermediate channels.\n\nSpecification:\n\n• HDMI 2.4+ and 6-pin to DP input", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-04-25T16:52:07", + "price": 800.7, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-05-12T17:45:04", + "newPrice": 795.95 + }, + { + "priceDate": "2023-08-09T17:45:04", + "newPrice": 800.7 + } + ], + "descriptionVector": [ + 0.029741967096924782, + 0.03287559375166893, + -0.04183666780591011, + 0.030759021639823914, + -0.014582360163331032, + 0.0558280386030674, + -0.059538912028074265, + 0.0863121822476387, + 0.009785711765289307, + 0.027020659297704697, + 0.05997871980071068, + -0.08037478476762772, + 0.06426683813333511, + 0.01566813513636589, + 0.06135311722755432, + -0.012946827337145805, + -0.007792835123836994, + 0.04147932305932045, + 0.05038542300462723, + -0.026759523898363113, + 0.09318416565656662, + -0.029604528099298477, + -0.08097951859235764, + 0.008521266281604767, + -0.0415617898106575, + 0.010892102494835854, + -0.02409319207072258, + 0.009132873266935349, + -0.005184915382415056, + -0.02566000632941723, + 0.025550054386258125, + 0.03672390803694725, + -0.05085271596908569, + -0.016107941046357155, + -0.01397075317800045, + -0.028257617726922035, + -0.01720746047794819, + 0.023694617673754692, + 0.014101320877671242, + 0.029219696298241615, + 0.03691632300615311, + -0.0035906140692532063, + -0.013723361305892467, + 0.03628410026431084, + 0.036531493067741394, + -0.025041528046131134, + -0.027872785925865173, + 0.00975822377949953, + -0.003413660451769829, + -0.047086868435144424, + -0.023543434217572212, + -0.01362715382128954, + -0.015393255278468132, + 0.02899979241192341, + -0.05222711339592934, + 0.004786340054124594, + 0.02869742549955845, + 0.22485147416591644, + 0.08559749275445938, + 0.005885858554393053, + 0.0008332286379300058, + -0.020464783534407616, + -0.008088330738246441, + 0.047114353626966476, + -0.03411255404353142, + -0.04617976397275925, + -0.002865619258955121, + 0.011943516321480274, + -0.044832855463027954, + 0.04208406060934067, + -0.015242070890963078, + -0.04076463729143143, + 0.05898915231227875, + 0.05574557185173035, + 0.008974817581474781, + 0.07570182532072067, + 0.04180917888879776, + 0.04815889894962311, + 0.08845624327659607, + -0.035294532775878906, + 0.010734046809375286, + 0.06294741481542587, + -0.014486152678728104, + 0.021193213760852814, + 0.0670706108212471, + 0.09279933571815491, + -0.04252386838197708, + -0.13051281869411469, + -0.03122631646692753, + 0.0926344096660614, + -0.042633820325136185, + 0.09422870725393295, + 0.03636656329035759, + -0.11138119548559189, + 0.013091138564050198, + 0.033672746270895004, + -0.07834067195653915, + 0.02631971798837185, + -0.061408091336488724, + 0.024258119985461235, + 0.04584990814328194, + 0.028917329385876656, + -0.028642449527978897, + -0.056625187397003174, + 0.07608666270971298, + -0.02730928361415863, + 0.00940088089555502, + 0.04821387305855751, + 0.014266248792409897, + -0.09598793834447861, + -0.09400880336761475, + -0.01550320629030466, + 0.0366414450109005, + -0.00891984160989523, + 0.04648213088512421, + 0.005267379339784384, + -0.05964886397123337, + -0.0215917881578207, + 0.02436807192862034, + -0.017317412421107292, + 0.029549552127718925, + -0.01819702610373497, + -0.020409807562828064, + -0.005610978696495295, + -0.038428161293268204, + -0.009840687736868858, + -0.03639405220746994, + 0.06245263293385506, + 0.05673513934016228, + 0.007627907674759626, + -0.06564123928546906, + 0.00047717371489852667, + -0.04859870299696922, + -0.023268554359674454, + -0.06981940567493439, + 0.04472290351986885, + -0.058219488710165024, + -0.04634469375014305, + 0.01485724002122879, + 0.022278986871242523, + -0.03768598660826683, + -0.018183281645178795, + 0.03705376386642456, + 0.04813141003251076, + -0.08180415630340576, + 0.01768849976360798, + 0.004927216097712517, + 0.0127406669780612, + -0.00359405018389225, + 0.04785652831196785, + 0.03895043209195137, + -0.049285903573036194, + -0.0638270303606987, + -0.023241065442562103, + 0.05338161066174507, + 0.003301990684121847, + -0.02968699112534523, + 0.03914284706115723, + -0.07300800830125809, + 0.012884979136288166, + 0.02469792775809765, + -0.021701740100979805, + -0.014417432248592377, + -0.049313392490148544, + 0.031198829412460327, + -0.02968699112534523, + 0.010211775079369545, + 0.051265034824609756, + -0.0036627701483666897, + 0.01422501727938652, + 0.004951267968863249, + -0.0004453907604329288, + 0.026086069643497467, + -0.04733425751328468, + -0.0415617898106575, + -0.05129252374172211, + 0.03661395609378815, + 0.03543197363615036, + -0.005428871139883995, + -0.06030857563018799, + -0.06190287694334984, + -0.019708864390850067, + -0.05044039711356163, + -0.01195726078003645, + 0.102035291492939, + 0.03950019180774689, + 0.04497029632329941, + 0.029219696298241615, + -0.0827937200665474, + 0.002307270187884569, + 0.03545946255326271, + 0.00864496175199747, + -0.007923402823507786, + -0.004428996704518795, + -0.017317412421107292, + -0.020203646272420883, + 0.022567611187696457, + -0.010074335150420666, + -0.051897261291742325, + -0.015613158233463764, + 0.048021458089351654, + 0.003965137526392937, + 0.050577837973833084, + -0.017221203073859215, + -0.056680165231227875, + -0.05049537494778633, + -0.015778087079524994, + 0.08834628760814667, + 0.05777968093752861, + 0.07416250556707382, + -0.007559187710285187, + -0.058549344539642334, + 0.009174104779958725, + -0.011421245522797108, + 0.07146868109703064, + 0.038428161293268204, + 0.0057655987329781055, + -0.01381956972181797, + -0.06630095094442368, + -0.07306298613548279, + 0.10269500315189362, + -0.025921141728758812, + -0.010101823136210442, + -0.04719682037830353, + -0.05997871980071068, + -0.0558830127120018, + 0.08543256670236588, + 0.0013701027492061257, + -0.005937398411333561, + 0.0143899442628026, + -0.06586114317178726, + 0.015709366649389267, + -0.04249637946486473, + -0.015077143907546997, + -0.04310111328959465, + 0.005672826897352934, + 0.006136686075478792, + -0.03229834884405136, + -0.09180977195501328, + 0.0366964191198349, + -0.02963201515376568, + -0.01936526410281658, + -0.014307480305433273, + -0.030484141781926155, + 0.012245884165167809, + -0.002807207405567169, + 0.09120503813028336, + 0.0700942873954773, + -0.03229834884405136, + -0.04395323991775513, + -0.006868552882224321, + -0.016767652705311775, + 0.00039857535739429295, + 0.027268052101135254, + -0.017124995589256287, + 0.06212277710437775, + 0.02409319207072258, + -0.034909702837467194, + 0.020973309874534607, + -0.0014456945937126875, + -0.02189415693283081, + -0.030429165810346603, + -0.028505008667707443, + -0.0017918710364028811, + -0.0029394931625574827, + 0.048048947006464005, + 0.0399399995803833, + -0.09989123046398163, + -0.00017416196351405233, + 0.0350196547806263, + 0.011606789194047451, + 0.05909910425543785, + -0.00795776303857565, + 0.04890107363462448, + 0.007126252166926861, + -0.044200632721185684, + -0.047059379518032074, + 0.03386516124010086, + -0.06751041859388351, + -0.02078089490532875, + 0.13205213844776154, + 0.04477787762880325, + 0.002869055373594165, + 0.0047657242976129055, + 0.04076463729143143, + -0.015874294564127922, + -0.011098261922597885, + 0.05970383808016777, + 0.07883545756340027, + -0.06943457573652267, + -0.019172849133610725, + -0.016767652705311775, + 0.02812017872929573, + -0.04222149774432182, + 0.03479975089430809, + 0.04015990346670151, + -0.018595602363348007, + -0.07768096029758453, + 0.03735613077878952, + 0.020588478073477745, + -0.028257617726922035, + -0.00029120052931830287, + -0.02697942778468132, + -0.08526764065027237, + -0.06041852384805679, + 0.07124877721071243, + 0.008425057865679264, + -0.004160989075899124, + -0.002757385605946183, + -0.039720095694065094, + 0.03097892552614212, + -0.0463172048330307, + -0.055415716022253036, + -0.06981940567493439, + -0.04213903471827507, + 0.009126001037657261, + 0.018114563077688217, + 0.040709663182497025, + -0.028257617726922035, + 0.026209766045212746, + -0.04282623529434204, + -0.011462477035820484, + -0.0957680344581604, + 0.10165046155452728, + 0.06250760704278946, + -0.051897261291742325, + -0.0034737903624773026, + 0.016987556591629982, + -0.001523863524198532, + -0.038125794380903244, + 0.005026859696954489, + 0.0319410040974617, + -0.00257527781650424, + 0.05038542300462723, + 0.05621286854147911, + -0.09494339674711227, + 0.037850912660360336, + -0.022966187447309494, + -0.0022505763918161392, + 0.014747288078069687, + 0.10923713445663452, + 0.036861348897218704, + 0.007483595982193947, + -0.010740918107330799, + -0.028559984639286995, + -0.020767150446772575, + -0.0247803907841444, + -0.013001802377402782, + -0.003382736584171653, + 0.015406998805701733, + 0.0016784832114353776, + 0.02325480990111828, + 0.020011231303215027, + 0.04716933146119118, + 0.09164484590291977, + -0.01377833727747202, + -0.017606034874916077, + -0.0286699365824461, + 0.01299493107944727, + -0.02611355669796467, + 0.03793337941169739, + -0.07130375504493713, + 0.028559984639286995, + 0.03840067237615585, + -0.056350309401750565, + 0.05035793408751488, + 0.006641777232289314, + -0.01741361990571022, + -0.03955516591668129, + 0.02343348227441311, + 0.023515945300459862, + -0.027680370956659317, + -0.03570685535669327, + 0.08972068876028061, + -0.06476162374019623, + 0.0367513969540596, + 0.01203285250812769, + -0.039445213973522186, + 0.01696006767451763, + 0.01066532637923956, + -0.048626191914081573, + -0.0007615022477693856, + -0.006040478125214577, + -0.04051724448800087, + 0.043843287974596024, + -0.023983240127563477, + -0.019296543672680855, + -0.04114946722984314, + -0.05610291659832001, + -0.015571926720440388, + 0.029522063210606575, + 0.04315609112381935, + 0.03628410026431084, + 0.04013241454958916, + 0.05324416980147362, + 0.04095705226063728, + 0.0006090300157666206, + 0.0639369860291481, + 0.015833063051104546, + 0.005569746717810631, + 0.04563000425696373, + 0.011723613366484642, + 0.011613661423325539, + -0.019805071875452995, + -0.005679698660969734, + -0.029109744355082512, + -0.07262317836284637, + 0.03260071575641632, + 0.05461856722831726, + -0.028559984639286995, + 0.005858370568603277, + -0.15404249727725983, + 0.013558434322476387, + -0.005002807825803757, + 0.04175420477986336, + 0.06272751092910767, + -0.0013572177849709988, + 0.019021665677428246, + 0.004628284368664026, + -0.01735864393413067, + 0.0827937200665474, + 0.0735027939081192, + -0.026883220300078392, + -0.06904974579811096, + 0.04378831386566162, + -0.011215086095035076, + -0.04535512626171112, + -0.008892353624105453, + 0.0022557303309440613, + 0.005013115704059601, + 0.03166612610220909, + -0.11434989422559738, + 0.021220700815320015, + 0.004879111889749765, + -0.030181774869561195, + -0.01964014396071434, + 0.04524517431855202, + 0.02216903679072857, + -0.04461295157670975, + -0.015626901760697365, + -0.024945318698883057, + -0.030484141781926155, + 0.03196849301457405, + 0.032738152891397476, + -0.04299116134643555, + -0.027199331670999527, + 0.0032693487592041492, + -0.03479975089430809, + 0.029549552127718925, + 0.061133213341236115, + 0.02667706087231636, + -0.0013821288011968136, + -0.026745781302452087, + -0.030154287815093994, + -0.00157368544023484, + 0.010005615651607513, + 0.07223834842443466, + 0.03276564180850983, + 0.04598734900355339, + 0.013283554464578629, + -0.02869742549955845, + 0.1119309514760971, + 0.04414565488696098, + -0.026003604754805565, + -0.06481660157442093, + 0.019887534901499748, + -0.05164986848831177, + 0.013469098135828972, + 0.014279992319643497, + 0.06102326139807701, + -0.01807332970201969, + -0.09384387731552124, + 0.03262820467352867, + 0.0058652423322200775, + 0.03161114826798439, + -0.013579050078988075, + -0.006772344931960106, + -0.016437796875834465, + 0.013269810006022453, + -0.010912718251347542, + 0.011098261922597885, + -0.020079951733350754, + 0.030401678755879402, + 0.03510211780667305, + -0.003587178187444806, + 0.011256317608058453, + 0.015874294564127922, + 0.09483344852924347, + -0.018609344959259033, + 0.042606331408023834, + 0.005394511390477419, + -0.009043537080287933, + 0.010280495509505272, + -0.0011416091583669186, + -0.04213903471827507, + 0.0007666562451049685, + 0.029109744355082512, + -0.011950388550758362, + 0.004391200840473175, + 0.06349717825651169, + -0.04903851076960564, + 0.02733677066862583, + -0.08328850567340851, + 0.013510329648852348, + -0.01657523773610592, + 0.000649832421913743, + 0.06135311722755432, + 0.015104630962014198, + -0.03444240614771843, + 0.0671805590391159, + -0.03595424443483353, + -0.005318919196724892 + ] + }, + { + "id": "a35e7fbd-0e53-4f91-8549-0bf961035b56", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "customerRating", + "userName": "datkinson", + "reviewDate": "2022-10-11T17:37:11", + "stars": 3, + "verifiedUser": true + }, + { + "id": "36a03207-fe20-46a6-8be8-078b03aceab9", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "customerRating", + "userName": "edelacruz", + "reviewDate": "2021-06-17T11:15:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "95fc9db0-d94f-4a2a-b25e-1df15b5949bd", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "customerRating", + "userName": "bakerandrea", + "reviewDate": "2021-06-16T19:43:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "f1b5c591-cc57-413d-b39e-773a972294c9", + "productId": "4f47a69f-aef4-40d2-bdd0-4464fcb042ef", + "category": "Media", + "docType": "customerRating", + "userName": "carolynlarson", + "reviewDate": "2021-05-12T17:45:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "product", + "name": "Luxe Speaker Pro (Gold)", + "description": "This Luxe Speaker Pro (Gold) is a very simple speaker that you want especially when working with large audio players. In fact, this high quality speaker is rated among the top speakers in the world among all sound designers so you can go and get one. The premium audio quality makes the Luxe Speaker Pro a perfect choice for your everyday music system. The high quality surround system is perfect for", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-01-27T01:00:23", + "price": 311.01, + "stock": 25, + "priceHistory": [ + { + "priceDate": "2021-01-26T17:09:21", + "newPrice": 301.32 + }, + { + "priceDate": "2022-01-08T17:09:21", + "newPrice": 305.07 + }, + { + "priceDate": "2022-12-21T17:09:21", + "newPrice": 316.66 + }, + { + "priceDate": "2025-04-10T17:09:21", + "newPrice": 311.01 + } + ], + "descriptionVector": [ + 0.0037042642943561077, + 0.03889773041009903, + -0.04109547659754753, + -0.008022951893508434, + -0.004817906767129898, + -0.01614043116569519, + -0.04438027739524841, + -0.0016217234078794718, + 0.00023465510457754135, + 0.0647507756948471, + -0.009050929918885231, + 0.022721851244568825, + 0.004457524046301842, + -0.03187912330031395, + 0.034171395003795624, + -0.007254922762513161, + -0.004114864859730005, + -0.05567621812224388, + 0.021871112287044525, + 0.015809588134288788, + 0.06999701261520386, + -0.11522802710533142, + -0.011201412416994572, + -0.05378568172454834, + -0.0162822213023901, + 0.003521119011566043, + -0.02580578438937664, + 0.053974736481904984, + -0.00019976147450506687, + -0.002729458035901189, + 0.09263615310192108, + 0.04910661280155182, + -0.05723590776324272, + 0.024742359295487404, + -0.047357868403196335, + 0.0053673433139920235, + 0.0756213441491127, + -0.047121550887823105, + 0.03506939858198166, + 0.04215890169143677, + 0.007361265365034342, + -0.03228086233139038, + -0.008513309061527252, + -0.08871329575777054, + 0.027010999619960785, + 0.001387622207403183, + -0.00286386301741004, + 0.0929197296500206, + 0.0059669967740774155, + -0.04584544152021408, + -0.02797989919781685, + 0.043931275606155396, + -0.09405405074357986, + 0.024884149432182312, + -0.023584406822919846, + -0.05165883153676987, + -0.029894063249230385, + 0.08965855836868286, + 0.008997758850455284, + 0.017475619912147522, + 0.07288007438182831, + -0.042607903480529785, + -0.05482547730207443, + -0.02838163636624813, + -0.01831454411149025, + 0.04371859133243561, + 0.0028919256292283535, + -5.552519724005833e-05, + -0.005739542189985514, + 0.09003666788339615, + 0.033958710730075836, + -0.04683797061443329, + 0.04792502894997597, + 0.038472361862659454, + 0.06725573539733887, + -0.02906695567071438, + 0.020370500162243843, + 0.03733804076910019, + 0.006256484892219305, + 0.016873013228178024, + 0.07642482221126556, + -0.014332608319818974, + 0.014474398456513882, + -0.00028265692526474595, + 0.0073908050544559956, + -0.03547113761305809, + -0.007615305949002504, + -0.06980795413255692, + 0.022639140486717224, + 0.05123346298933029, + -0.04024473577737808, + 0.08313621580600739, + 0.029279639944434166, + 0.028239846229553223, + 0.029114218428730965, + -0.008206097409129143, + -0.07032785564661026, + 0.012631128542125225, + -0.07089501619338989, + 0.008353795856237411, + -0.020595001056790352, + -0.058275699615478516, + -0.029043324291706085, + 0.017558330669999123, + 0.012761102057993412, + 0.07940241694450378, + 0.06111150234937668, + -0.029350535944104195, + 0.04787776619195938, + -0.09169088304042816, + 0.0993475466966629, + 0.012182126753032207, + 0.05666874721646309, + -0.060308024287223816, + -0.001993922283872962, + 0.03828330710530281, + 0.000912034825887531, + -0.015868667513132095, + 0.006735026370733976, + 0.010433382354676723, + 0.03140649199485779, + 0.0010560402879491448, + -0.017345646396279335, + 0.020866764709353447, + -0.013198288157582283, + -0.006681854836642742, + 0.04367132857441902, + 0.026538366451859474, + -0.0002008691953960806, + 0.005467778071761131, + -0.07543229311704636, + 0.12940703332424164, + -0.03436044976115227, + 0.04560912400484085, + 0.016270404681563377, + 0.047759607434272766, + -0.00014982110587880015, + 0.03903951868414879, + 0.00931678619235754, + 0.007095409091562033, + 0.0008005228592082858, + -0.03303707763552666, + -0.0043659512884914875, + -0.004504787269979715, + 0.0058813318610191345, + -0.03632187843322754, + -0.026869209483265877, + 0.02478962205350399, + -0.020866764709353447, + 0.012808365747332573, + 0.03466765955090523, + -0.06423088163137436, + -0.00047817209269851446, + -0.036132823675870895, + 0.047121550887823105, + 0.05213146656751633, + -0.07930788397789001, + 0.008525125682353973, + 0.013186472468078136, + 0.07987504452466965, + -0.03143012151122093, + -0.053596630692481995, + -0.03627461567521095, + 0.023915251716971397, + -0.020937660709023476, + 0.06829553097486496, + 0.04608175903558731, + -0.0041207727044820786, + -0.11522802710533142, + 0.02994132786989212, + 0.014462582767009735, + -0.011614966206252575, + -0.06049707904458046, + -0.021540267392992973, + -0.011514531448483467, + -0.023608040064573288, + 0.11570066213607788, + 0.017676489427685738, + 0.015927746891975403, + 0.013103761710226536, + 0.020618632435798645, + 0.09410130977630615, + -0.017168408259749413, + -0.05742495879530907, + 0.06924079358577728, + 0.04660165309906006, + 0.0956137403845787, + -0.0428914837539196, + 0.005958135239779949, + 0.026538366451859474, + -0.021847479045391083, + 0.04154447838664055, + 0.01169176958501339, + -0.025120466947555542, + -0.06229308620095253, + -0.06394730508327484, + 0.04537280648946762, + 0.07718103379011154, + 0.0049626510590314865, + -0.024435147643089294, + -0.027341842651367188, + 0.07179301977157593, + 0.09036751091480255, + 0.010533817112445831, + -0.041757162660360336, + -0.0725964903831482, + 0.04896482080221176, + 0.051091670989990234, + 0.011957625858485699, + 0.030461223796010017, + -0.024978676810860634, + -0.010179341770708561, + -0.032942548394203186, + 0.044403910636901855, + 0.018196387216448784, + 0.018822625279426575, + -0.020701343193650246, + 0.023513512685894966, + 0.020488658919930458, + -0.10738231241703033, + 0.02034686878323555, + -0.02930327132344246, + 0.05822843685746193, + 0.01707388274371624, + -0.10520819574594498, + 0.005701140500605106, + 0.013989949598908424, + -0.047050654888153076, + 0.08063126355409622, + 0.004073509480804205, + 0.013623658567667007, + 0.047735974192619324, + 0.02923237718641758, + 0.03592013940215111, + 0.0007255661184899509, + -0.005996536463499069, + -0.007674385327845812, + -0.05146978050470352, + -0.011219135485589504, + 0.049153875559568405, + -0.03275349736213684, + 0.014757978729903698, + -0.05123346298933029, + 0.004912433680146933, + -0.061536870896816254, + 0.022355560213327408, + 0.06593236327171326, + -0.07443976402282715, + -0.038306936621665955, + 0.010805581696331501, + -0.1278000771999359, + -0.019909683614969254, + -0.08110389113426208, + 0.01910620555281639, + -0.042442481964826584, + 0.014320792630314827, + 0.08720086514949799, + -0.09745701402425766, + 0.030390329658985138, + -0.02486051805317402, + -0.039937522262334824, + -0.029988590627908707, + 0.011993072926998138, + -0.029185114428400993, + -0.11626782268285751, + -0.02906695567071438, + 0.047357868403196335, + -0.0596936009824276, + 0.04901208356022835, + -0.002850570250302553, + -0.08393969386816025, + -0.015785956755280495, + -0.006309655960649252, + 0.047995924949645996, + 0.03202091529965401, + 0.0712258592247963, + -0.060308024287223816, + 0.01368273701518774, + 0.014131738804280758, + -0.037527091801166534, + 0.05775580182671547, + 0.0003858608833979815, + 0.02970501035451889, + -0.014982479624450207, + 0.04520738497376442, + -0.04905935004353523, + 0.04334048554301262, + -0.008802797645330429, + -0.03724351152777672, + -0.01224120520055294, + -0.005284632556140423, + 0.0030927949119359255, + 0.048823032528162, + 0.005190105643123388, + 0.028877900913357735, + 0.04967377334833145, + 0.006085155066102743, + 0.024978676810860634, + 0.027412738651037216, + 0.04100094735622406, + 0.030673908069729805, + 0.045254651457071304, + -0.00029982681735418737, + -0.055628951638936996, + -0.03287165239453316, + 0.033226128667593, + -0.06489256769418716, + 0.07685019075870514, + -0.055628951638936996, + -0.038826834410429, + 0.07746461778879166, + -0.0055268569849431515, + -0.055392637848854065, + -0.04605812579393387, + 0.06673584133386612, + 0.021575715392827988, + -0.01215849444270134, + -0.01754651591181755, + 0.008064307272434235, + 0.05217872932553291, + -0.05388021096587181, + -0.04168626666069031, + -0.13744179904460907, + 0.03490397706627846, + -0.010959187522530556, + 0.02002784051001072, + 0.00993711780756712, + -0.06111150234937668, + 0.038543254137039185, + -0.0005258047021925449, + -0.028263477608561516, + -0.02821621485054493, + 0.014746163040399551, + -0.07840988039970398, + 0.06664130836725235, + 0.03986662998795509, + -0.005904963705688715, + -0.03041396103799343, + 0.014096291735768318, + -0.02267458848655224, + 0.08809886872768402, + -0.010864661075174809, + 0.00822382140904665, + -0.04170989990234375, + 0.05822843685746193, + -0.10123807936906815, + -0.017085697501897812, + -0.00861374381929636, + 0.023891618475317955, + 0.034573134034872055, + 0.0012687253765761852, + -0.02587668038904667, + 0.05728317052125931, + -0.012524785473942757, + -0.01298560295253992, + 0.0186453890055418, + 0.0009733294718898833, + -0.011290030553936958, + 0.027790844440460205, + 0.04624718055129051, + -0.022343745455145836, + -0.016577616333961487, + 0.012808365747332573, + 0.05080809071660042, + 0.004773597698658705, + 0.05822843685746193, + -0.00861965212970972, + -0.007698016706854105, + -0.058039382100105286, + 0.010214789770543575, + 0.005266908556222916, + -0.04414395987987518, + -0.00795796513557434, + 0.05775580182671547, + -0.010846937075257301, + 0.08549938350915909, + 0.034809451550245285, + -0.011295938864350319, + -0.018846256658434868, + 0.01286744512617588, + 0.025144098326563835, + 0.06834279000759125, + 0.0715567022562027, + -0.00285647832788527, + 0.10161618143320084, + 0.014379872009158134, + -0.03086296282708645, + -0.034738555550575256, + 0.018267281353473663, + -0.010279776528477669, + -0.010752410627901554, + -0.08455412089824677, + -0.032942548394203186, + 0.06229308620095253, + -0.01422626618295908, + -0.03102838434278965, + -0.012058059684932232, + 0.030603013932704926, + -0.04539643973112106, + -0.02587668038904667, + 0.0025256348308175802, + 0.062104031443595886, + -0.0011084730504080653, + -0.028428900986909866, + -0.03603829815983772, + -0.03008311614394188, + 0.014793425798416138, + 0.09329783916473389, + -0.006091063376516104, + -0.08200189471244812, + -0.002317380625754595, + -0.04130816087126732, + -0.03391144797205925, + 0.047995924949645996, + 0.007491239812225103, + 0.05307673290371895, + 0.036912668496370316, + 0.043529536575078964, + 0.05893738567829132, + -0.03187912330031395, + 0.04201710969209671, + 0.016164062544703484, + -0.021965637803077698, + -0.004749965853989124, + -0.04887029528617859, + 0.005645015276968479, + 0.04693249985575676, + -0.056337904185056686, + 0.0023424893151968718, + -0.04241884872317314, + 0.005429376382380724, + -0.06059160456061363, + 0.011827651411294937, + 0.0026954873465001583, + -0.06631046533584595, + -0.0017339738551527262, + 0.005934503395110369, + 0.026443839073181152, + -0.008466046303510666, + 0.027105526998639107, + -0.06328561156988144, + -0.03499850630760193, + 0.08956403285264969, + 0.09443216025829315, + -0.061773188412189484, + -0.1339443176984787, + -0.05208420380949974, + 0.03213907405734062, + 0.030650276690721512, + -0.017806464806199074, + 0.04059921205043793, + -0.06196223944425583, + -0.048775769770145416, + 0.06820100545883179, + 0.055770743638277054, + 0.033249761909246445, + -0.053974736481904984, + 0.061158765107393265, + -0.02540404535830021, + 0.002400091616436839, + -0.060071706771850586, + 0.07420344650745392, + 0.04045742005109787, + 0.05411652475595474, + -0.0269637368619442, + 0.031760964542627335, + -0.05033545941114426, + 0.008767349645495415, + 0.02268640324473381, + -0.0021106034982949495, + 0.012737470678985119, + -0.04329322278499603, + -0.056243374943733215, + -0.009688984602689743, + -0.0483267679810524, + -0.04801955446600914, + -0.006144234444946051, + -0.03856688737869263, + -0.009446760639548302, + -0.0315246507525444, + -0.02495504356920719, + 0.050713565200567245, + -0.035187557339668274, + 0.04303327202796936, + 0.08299443125724792, + 0.039937522262334824, + 0.05340757593512535, + 0.05487274006009102, + 0.05411652475595474, + 0.02580578438937664, + -0.0013669445179402828, + 0.04402580112218857, + -0.005240323022007942, + -0.026065733283758163, + 0.0012288468424230814, + -0.005390974693000317, + -0.019366154447197914, + -0.017711937427520752, + 0.028428900986909866, + 0.060024444013834, + -0.0034443160984665155, + -0.0350930318236351, + 0.01785372756421566, + 0.0271291583776474, + -0.018302729353308678, + 0.038165148347616196, + -0.00795205682516098, + -0.030650276690721512, + -0.04534917697310448, + -0.003497487399727106, + 0.04991008713841438, + -0.006215129513293505 + ] + }, + { + "id": "bd0ae961-e3fc-4993-a3bc-c44c6cc46c89", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "alvaradotrevor", + "reviewDate": "2021-12-01T02:34:32", + "stars": 1, + "verifiedUser": true + }, + { + "id": "73fe4a5c-0eda-4d9e-aaa6-be79c9b02a58", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "brianleonard", + "reviewDate": "2022-06-19T01:06:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ff95cca0-ec59-4be1-bb2c-5857f6a28af2", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "thompsonbarbara", + "reviewDate": "2022-07-23T17:41:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "28836819-58b1-49a2-a26a-111dfb0e20cb", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "davidjackson", + "reviewDate": "2022-07-03T00:39:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9b1fb237-5d5d-4402-8b19-023266a73f59", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "riverapaige", + "reviewDate": "2022-12-23T12:28:32", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c19abd67-6e7d-4395-84b4-7538db58d8cd", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "jacksonbradley", + "reviewDate": "2022-05-28T07:48:28", + "stars": 3, + "verifiedUser": false + }, + { + "id": "18e49cde-a433-4df2-ace0-5cb09424724a", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "maryschmidt", + "reviewDate": "2021-12-22T14:47:41", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5a906b0d-e9dd-4184-a5df-fe0c9c2d2950", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "mmorrison", + "reviewDate": "2021-03-26T22:34:24", + "stars": 3, + "verifiedUser": true + }, + { + "id": "adbbf036-e5a8-4bf0-b30e-35d7229241b6", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "louis77", + "reviewDate": "2022-09-29T22:04:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "23f08aff-205d-424b-81e7-f7471b7cb6b0", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "pamela39", + "reviewDate": "2021-01-26T17:09:21", + "stars": 3, + "verifiedUser": true + }, + { + "id": "475b7bf3-294e-4394-be97-8e8e7ef1bb03", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "ana68", + "reviewDate": "2022-07-26T03:56:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "c0d5054d-71e8-4ec5-96e4-04463888f11b", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "burnspatricia", + "reviewDate": "2022-01-21T02:01:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ec65a9cc-a329-4b3d-8cb5-edd862366c6f", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "garyramsey", + "reviewDate": "2022-03-12T08:01:06", + "stars": 3, + "verifiedUser": true + }, + { + "id": "15b62df9-1da6-4d58-9fcb-847c8d7ca71d", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "stephen11", + "reviewDate": "2021-11-01T13:36:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5ad29038-8b94-4488-af03-a700eaeb2320", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "timothystewart", + "reviewDate": "2022-12-12T16:02:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2bc82d49-8c09-4c69-9db5-2d988ac2ae10", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "sierra83", + "reviewDate": "2022-11-19T13:27:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a8cd9986-0bff-458c-a4eb-74158cfd093b", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "bartlettsteven", + "reviewDate": "2021-10-12T02:23:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "abfa773b-44e3-4328-87d2-e08fbc559dab", + "productId": "51304d4f-009e-4d5c-9ac3-135c8beea2c5", + "category": "Media", + "docType": "customerRating", + "userName": "rturner", + "reviewDate": "2022-03-13T05:51:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "productId": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone 3000 (Red)", + "description": "This Amazing Phone 3000 (Red) is the only Android phone that I can remember that isn't covered by a warranty and the phones are covered by it all. It's been more than a year and my only other choice have been Android phones. I've owned a couple of these phones and I had not found a flaw in them. Here is the actual picture of", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-11-28T20:33:07", + "price": 513.36, + "stock": 27, + "priceHistory": [ + { + "priceDate": "2022-06-01T20:45:58", + "newPrice": 477.12 + }, + { + "priceDate": "2022-11-15T20:45:58", + "newPrice": 528.55 + }, + { + "priceDate": "2024-03-04T20:45:58", + "newPrice": 513.36 + } + ], + "descriptionVector": [ + -0.033067189157009125, + 0.020563200116157532, + -0.017107509076595306, + 0.015984103083610535, + 0.0193543191999197, + 0.02559410221874714, + -0.013688448816537857, + -0.02969697304069996, + 0.03377542272210121, + 0.033677734434604645, + -0.005104167386889458, + -0.04464314877986908, + 0.01639927364885807, + -0.034654609858989716, + 0.08401117473840714, + 0.0689673125743866, + -0.028964318335056305, + -0.01997707597911358, + -0.006770958658307791, + 0.0004716470430139452, + 0.05450957641005516, + -0.030258676037192345, + -0.016643492504954338, + 0.024336377158761024, + 0.05153011158108711, + -0.009536733850836754, + -0.016435906291007996, + -0.028524724766612053, + -0.014066987670958042, + -0.05494916811585426, + -0.013810558244585991, + -0.007784465793520212, + 0.01776689849793911, + 0.08025021106004715, + -0.03213915973901749, + 0.02028234861791134, + 0.007125075440853834, + -0.018182069063186646, + 0.02300538495182991, + 0.020770786330103874, + 0.0490390807390213, + -0.013602972030639648, + 0.03726774826645851, + -0.004899634514003992, + 0.02300538495182991, + 0.013151167891919613, + -0.016045156866312027, + -0.009921377524733543, + -0.039758775383234024, + 0.03467903286218643, + 0.007131181191653013, + 0.05944279208779335, + -0.05875897780060768, + -0.0175348911434412, + 0.07375399768352509, + 0.007863836362957954, + 0.04317783564329147, + 0.0992504134774208, + 0.009029979817569256, + -0.0414683073759079, + -0.03006330132484436, + -0.0065755839459598064, + 0.039978574961423874, + -0.011411110870540142, + -0.007399821653962135, + 0.04955194145441055, + -0.011356161907315254, + -0.010122857987880707, + -0.048330847173929214, + 0.034727875143289566, + -0.045204851776361465, + -0.03304276615381241, + -0.0347767174243927, + 0.05133473500609398, + -0.012809261679649353, + 0.04478967934846878, + 0.019561903551220894, + 0.06159191206097603, + 0.010281600058078766, + -0.008712495677173138, + 0.053337328135967255, + 0.05040670558810234, + -0.02559410221874714, + -0.017510468140244484, + -0.005574287846684456, + -0.02230936288833618, + 0.04608403518795967, + -0.096612848341465, + -0.011417216621339321, + -0.004939320031553507, + 0.018353022634983063, + 0.03817135468125343, + -0.013480862602591515, + -0.023664776235818863, + 0.09309610724449158, + 0.02613138221204281, + -0.01438447181135416, + 0.05118820443749428, + -0.12103470414876938, + -0.03248106315732002, + 0.054704949259757996, + 0.04982057958841324, + -0.036193184554576874, + 0.03362889215350151, + -0.01565440744161606, + -0.030112145468592644, + -0.03089364431798458, + 0.01791342906653881, + 0.01965959183871746, + -0.05323963984847069, + -0.042713820934295654, + 0.03311603143811226, + -0.05519338697195053, + -0.014408892951905727, + 0.007204446475952864, + 0.017876796424388885, + -0.023970048874616623, + -0.054998014122247696, + 0.022871065884828568, + -0.06540172547101974, + -0.05153011158108711, + 0.012906949035823345, + -0.04410586506128311, + -0.02239483967423439, + 0.05123704671859741, + -0.04432566463947296, + 0.07331440597772598, + 0.05626795068383217, + 0.006746537052094936, + -0.03665720298886299, + -0.07155603170394897, + -0.0171685628592968, + 0.0832296758890152, + 0.05436304584145546, + -0.04478967934846878, + 0.08288776874542236, + 0.01396930031478405, + 0.02489808015525341, + -0.04691438004374504, + 0.05255582928657532, + -0.002194914035499096, + 0.09671054035425186, + 0.02186976931989193, + -0.013432019390165806, + -0.03719448298215866, + 0.04298246279358864, + -0.05065092444419861, + -0.023957837373018265, + -0.02368919737637043, + 0.009060507640242577, + -0.0634479746222496, + -0.13891150057315826, + 0.019940443336963654, + -0.04640151932835579, + -0.03858652710914612, + -0.030429629608988762, + -0.0777103379368782, + -0.039587825536727905, + -0.07663577795028687, + 0.054558418691158295, + -0.061836130917072296, + -0.011527114547789097, + 0.03318929672241211, + -0.04276266321539879, + -0.0552910752594471, + -0.02876894362270832, + 0.054167669266462326, + 0.015617774799466133, + -0.04071122780442238, + 0.028231661766767502, + 0.02489808015525341, + -0.0066854823380708694, + -0.006151254288852215, + -0.08708833158016205, + 0.04835527017712593, + 0.048477377742528915, + 0.071018747985363, + -0.001521023572422564, + 0.051139362156391144, + -0.04547348991036415, + 0.07477971166372299, + 0.007485297974199057, + -0.04166368022561073, + -0.07487740367650986, + -0.019696224480867386, + 0.10012959688901901, + 0.0069968607276678085, + -0.010440342128276825, + -0.053044263273477554, + 0.008627019822597504, + -0.004795841407030821, + -0.002935201395303011, + -0.008553754538297653, + 0.02732805348932743, + 0.05998007208108902, + -0.033897534012794495, + 0.008291219361126423, + 0.031015753746032715, + -0.028744520619511604, + -0.008285113610327244, + -0.011551536619663239, + 0.0140425655990839, + 0.13099882006645203, + 0.01602073572576046, + 0.0279386006295681, + -0.01920778676867485, + -0.039441291242837906, + 0.08738139271736145, + 0.02421426773071289, + 0.03843999654054642, + -0.03939244896173477, + -0.008071422576904297, + -0.06471791118383408, + -0.060468509793281555, + 0.02649771049618721, + 0.04571770876646042, + 0.014714166522026062, + -0.02801186591386795, + -0.010299916379153728, + -0.02679077349603176, + 0.04351974278688431, + -0.042396336793899536, + -0.013822768814861774, + 0.027816491201519966, + -0.06335029006004333, + 0.0017644788604229689, + 0.060615040361881256, + 0.060468509793281555, + 0.04000299423933029, + 0.03113786317408085, + -0.01671675778925419, + -0.04288477450609207, + -0.015691040083765984, + -0.05719598010182381, + -0.04647478833794594, + 0.17700959742069244, + 0.012772629037499428, + -0.021833136677742004, + -0.059100884944200516, + 0.05475379526615143, + 0.021613340824842453, + -0.0456932857632637, + -0.038293465971946716, + -0.07434011995792389, + 0.051432423293590546, + -0.030942488461732864, + -0.017901217564940453, + -0.049845002591609955, + -0.06916268914937973, + -0.02901316247880459, + 0.053630389273166656, + -0.07556121051311493, + -0.03765849769115448, + 0.027963021770119667, + 0.014885119162499905, + 0.00461573014035821, + 0.005214065779000521, + -0.03524073585867882, + 0.04281150922179222, + -0.028280505910515785, + 0.014262362383306026, + -0.0017202142626047134, + -0.04464314877986908, + 0.04373953863978386, + -0.025691788643598557, + 0.09177732467651367, + -0.03621760755777359, + -0.06066388264298439, + 0.0014172306982800364, + 0.026375601068139076, + 0.04110197722911835, + -0.04334878921508789, + 0.057049449533224106, + -0.044911786913871765, + 0.012113239616155624, + -0.008559859357774258, + -0.0454002246260643, + 0.049234457314014435, + -0.005589551758021116, + 0.042323071509599686, + 0.03289623558521271, + -0.0551445446908474, + 0.07775918394327164, + -0.06007776036858559, + 0.0413217768073082, + -0.01593525893986225, + -0.048868127167224884, + -0.007778360042721033, + 0.04400818049907684, + -0.052409298717975616, + -0.042176540940999985, + -0.022284941747784615, + -0.01799890585243702, + -0.01172859501093626, + 0.027914177626371384, + 0.00990306120365858, + 0.02930622361600399, + -0.058807823807001114, + 0.030234254896640778, + 0.0494786761701107, + 0.008395012468099594, + -0.05094398558139801, + -0.08733254671096802, + -0.053044263273477554, + 0.04044258967041969, + 0.04776914417743683, + 0.02193082496523857, + -0.029355067759752274, + 0.08801636099815369, + -0.007503614295274019, + 0.03865979239344597, + -0.06125000864267349, + -0.02566736750304699, + -0.06188497692346573, + 0.033213719725608826, + 0.009359675459563732, + -0.03924591839313507, + 0.019158944487571716, + 0.020905105397105217, + -0.04950309544801712, + 0.10032497346401215, + -0.022382628172636032, + -0.036779310554265976, + -0.008663652464747429, + 0.02893989533185959, + 0.003611381631344557, + -0.016887711361050606, + -0.014897330664098263, + -0.025618523359298706, + -0.024641649797558784, + -0.01180796604603529, + -0.018194280564785004, + 0.029330644756555557, + 0.0011035625357180834, + 0.008462172001600266, + -0.0845484584569931, + 0.03719448298215866, + 0.06310606747865677, + 0.04928329959511757, + 0.05231161043047905, + 0.015019440092146397, + 0.02483702450990677, + -0.054558418691158295, + -0.003635803470388055, + 0.015043861232697964, + -0.027767647057771683, + -0.020563200116157532, + -0.012809261679649353, + 0.010678455233573914, + -0.08259470760822296, + 0.0014714166754856706, + -0.04652363061904907, + 0.0759519636631012, + -0.020868472754955292, + 0.038684215396642685, + 0.08840710669755936, + -0.018011117354035378, + -0.054558418691158295, + -0.06584131717681885, + -0.013590761460363865, + -0.02079520747065544, + 0.020978372544050217, + 0.06755084544420242, + 0.07370515167713165, + 0.020099185407161713, + 0.02110048197209835, + -0.010202229022979736, + 0.08801636099815369, + 0.0015065231127664447, + 0.005162169225513935, + 0.024409642443060875, + 0.07204446941614151, + -0.06960228085517883, + -0.011380583979189396, + -0.0384155735373497, + 0.015813149511814117, + 0.03831788897514343, + -0.0016423696652054787, + 0.02194303460419178, + -0.006990755442529917, + -0.02261463552713394, + -0.0070579154416918755, + -0.04266497865319252, + 0.045815397053956985, + 0.03956340253353119, + -0.05406998470425606, + -0.04950309544801712, + 0.04410586506128311, + -0.022065144032239914, + 0.005861244630068541, + -0.06129885092377663, + 0.024482907727360725, + 0.050748612731695175, + 0.08005483448505402, + -0.006593900267034769, + -0.03819577768445015, + -0.06637859344482422, + 0.04781799018383026, + 0.07272827625274658, + -0.09802931547164917, + 0.05226276442408562, + 0.008016473613679409, + 0.07160487025976181, + 0.03690142184495926, + -0.014518791809678078, + -0.00611462164670229, + 0.056219104677438736, + 0.01868271827697754, + -0.11214514821767807, + -0.048404112458229065, + 0.012577254325151443, + 0.008950608782470226, + -0.037243325263261795, + 0.008474383503198624, + -0.03006330132484436, + 0.026326756924390793, + 0.028720099478960037, + -0.025032399222254753, + 0.10042265802621841, + 0.0007685251766815782, + 0.04076007381081581, + 0.0494786761701107, + 0.05519338697195053, + -0.001263067708350718, + -0.06789275258779526, + -0.005021743476390839, + 0.0034953777212649584, + -0.014225729741156101, + -0.08547648787498474, + -0.07009071856737137, + 0.04351974278688431, + 0.006023039575666189, + 0.053337328135967255, + -0.0012012498918920755, + -0.053190797567367554, + -0.07180024683475494, + -0.12376995384693146, + -0.023884572088718414, + -0.005858192220330238, + 0.009329147636890411, + -0.013456441462039948, + 0.040125105530023575, + -0.06711125373840332, + 0.05802632495760918, + -0.13265950977802277, + -0.07805224508047104, + 0.0067343260161578655, + 0.003956340253353119, + 0.012687153182923794, + -0.04776914417743683, + -0.01180796604603529, + 0.008358378894627094, + 0.04400818049907684, + 0.00660611130297184, + 0.018389655277132988, + -0.04417913407087326, + -0.03421501815319061, + -6.86864586896263e-05, + -0.062129195779561996, + 0.049991533160209656, + -0.026204649358987808, + 0.05382576584815979, + 0.008785761892795563, + 0.01074561569839716, + 0.007296028546988964, + 0.03575359284877777, + 0.02984350547194481, + -0.012784840539097786, + -0.0006998387398198247, + 0.01784016378223896, + -0.04054027795791626, + 0.001207355409860611, + -0.012882527895271778, + 0.020819630473852158, + -0.024116579443216324, + -0.07790571451187134, + -0.014152463525533676, + -0.046816691756248474, + 0.016667915508151054, + -0.0033580048475414515, + 0.018694927915930748, + 0.007314344868063927, + 0.022956542670726776, + -0.010281600058078766, + 0.024690493941307068, + -0.07038377970457077, + -0.03287181258201599, + -0.08274123817682266, + -0.0699930340051651, + 0.00959778856486082, + 0.015092705376446247, + 0.0765380859375, + -0.07160487025976181, + 0.0317239873111248, + -0.055535294115543365, + -0.06618322432041168, + -0.00819353200495243, + -0.02893989533185959, + -0.05817285552620888, + -0.03729217126965523, + 0.02125922404229641, + -0.03196820616722107, + -0.02202851139008999, + -0.015581142157316208, + -0.05871013551950455, + -0.028573568910360336, + -0.009017769247293472, + 0.07619617879390717, + 0.006224520038813353, + -0.03758523240685463, + 0.038073670119047165, + -0.05475379526615143 + ] + }, + { + "id": "6843f1df-c17d-4ef8-a6bd-3369f7124de7", + "productId": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "category": "Electronics", + "docType": "customerRating", + "userName": "madeline36", + "reviewDate": "2022-07-03T10:44:23", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e2737bca-ce87-4e48-a2d3-ebc0bf922357", + "productId": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "category": "Electronics", + "docType": "customerRating", + "userName": "annalee", + "reviewDate": "2022-11-16T12:17:19", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f988c9b0-6cd7-4574-b21c-6636e34b70d9", + "productId": "c277a2b7-e51e-431d-90fb-abd11a32a417", + "category": "Electronics", + "docType": "customerRating", + "userName": "mariahshaw", + "reviewDate": "2022-06-01T20:45:58", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Mini (Black)", + "description": "This Amazing Speaker Mini (Black) is a unique cabinet created by the Audio & Video Technologies International, Inc., located in Chicago, Illinois. With a top-of-the-line 8'' speaker system, the original Speaker Mini delivers uncompromised, crisp, and powerful sound. You can easily hear", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2019-06-30T11:03:52", + "price": 288.0, + "stock": 63, + "priceHistory": [ + { + "priceDate": "2021-09-15T08:43:54", + "newPrice": 284.4 + }, + { + "priceDate": "2022-01-30T08:43:54", + "newPrice": 273.72 + }, + { + "priceDate": "2022-06-16T08:43:54", + "newPrice": 284.16 + }, + { + "priceDate": "2025-07-17T08:43:54", + "newPrice": 288.0 + } + ], + "descriptionVector": [ + -0.008405079133808613, + 0.06304129958152771, + -0.04214702546596527, + -0.0865473523736, + -0.05899558961391449, + -0.02451748214662075, + -0.028473567217588425, + -0.0013747074408456683, + 0.004641037900000811, + 0.12044933438301086, + -0.04596227779984474, + 0.013750274665653706, + 0.011855450458824635, + 0.009237265214323997, + 0.005527636036276817, + -0.0022276982199400663, + -0.05745924636721611, + 0.007278427481651306, + -0.00331274070776999, + 0.002421341370791197, + 0.024824751541018486, + -0.08675219863653183, + -0.025068005546927452, + 0.02750054933130741, + -0.024760736152529716, + -0.003626410849392414, + -0.05069933459162712, + 0.031904734671115875, + -0.032800935208797455, + 0.027449337765574455, + 0.0419933907687664, + 0.0492142029106617, + 0.009192455559968948, + 0.048599667847156525, + -0.047959525138139725, + 0.03313380852341652, + -0.018628165125846863, + 0.014287995174527168, + -0.005258775781840086, + 0.04780589044094086, + 0.0565374419093132, + 0.01357103418558836, + 0.025311259552836418, + -0.039304789155721664, + 0.007969781756401062, + 0.0907466933131218, + -0.03927918151021004, + 0.019780423492193222, + 0.0007509679417125881, + 0.029856275767087936, + -0.03290335834026337, + 0.014556854963302612, + -0.06124889478087425, + 0.06063435599207878, + 0.025106413289904594, + 0.007131194695830345, + 0.03431167080998421, + 0.10662224143743515, + 0.03794768452644348, + -0.030726870521903038, + 0.10785131901502609, + -0.0008057801751419902, + -0.00010912439756793901, + 0.009531731717288494, + 0.0376916266977787, + 0.0204461719840765, + -0.03805010765790939, + 0.05602532625198364, + -0.021931303665041924, + 0.07932654023170471, + 0.02688601240515709, + -0.041737332940101624, + -0.016579708084464073, + -0.013852697797119617, + 0.05515473335981369, + -0.06319493055343628, + -0.011778634041547775, + 0.0419933907687664, + -0.028063874691724777, + -0.030675658956170082, + 0.02336522378027439, + -0.010677587240934372, + -0.038126926869153976, + -0.05325990915298462, + -0.0021284758113324642, + 0.02916492149233818, + -0.053567178547382355, + -0.10928523540496826, + -0.007457667496055365, + 0.06954514980316162, + -0.05069933459162712, + -0.02040776237845421, + 0.03781965747475624, + 0.05541079118847847, + 0.0389719158411026, + 0.04099476709961891, + -0.03894630819559097, + -0.0007425660151056945, + -0.052414920181035995, + -0.029523400589823723, + 0.07261783629655838, + -0.038408588618040085, + -0.03244245424866676, + -0.03684663772583008, + -0.018538545817136765, + 0.05300385132431984, + -0.03418364375829697, + 0.01935792900621891, + 0.03945842385292053, + -0.0479339174926281, + 0.007982584647834301, + 0.022289784625172615, + 0.05108342319726944, + -0.007310434710234404, + 0.02387733943760395, + 0.022136149927973747, + -0.0003336746012791991, + -0.02788463421165943, + -0.051032211631536484, + -0.041737332940101624, + -0.030854899436235428, + -0.01592676155269146, + 0.022763490676879883, + 0.07359085232019424, + -0.006388628389686346, + -0.009698168374598026, + 0.02865280769765377, + 0.07138876616954803, + -0.03364592418074608, + -0.05884195864200592, + -0.020612608641386032, + 0.04931662604212761, + -0.013001306913793087, + 0.009557336568832397, + -0.01491533499211073, + -0.041327640414237976, + 0.04370897263288498, + 0.03333865478634834, + -0.008366670459508896, + -0.017578329890966415, + -0.000965815968811512, + 0.01478730607777834, + 0.02300674468278885, + 0.014044740237295628, + -0.0891079232096672, + -0.04416987672448158, + -0.0220465287566185, + 0.04355533793568611, + -0.06252918392419815, + 0.051262661814689636, + -0.03095732256770134, + -0.030931716784834862, + -0.0216368380934, + -0.09187334030866623, + 0.028319932520389557, + 0.07784140855073929, + -0.07369327545166016, + 0.001681976136751473, + -0.004247349686920643, + 0.06606277078390121, + 0.05556442588567734, + -0.05003358796238899, + 0.0042569516226649284, + 0.04038022831082344, + 0.008641932159662247, + -0.014864123426377773, + 0.040200989693403244, + 0.03134140744805336, + -0.09187334030866623, + 0.0419933907687664, + 0.05894438177347183, + -0.03244245424866676, + -0.02057420089840889, + -0.10744162648916245, + 0.003863263875246048, + -0.02262265793979168, + 0.05694713443517685, + -0.004269754514098167, + -0.03938160464167595, + -0.015888351947069168, + -0.02008769102394581, + 0.06114647164940834, + -0.003466375172138214, + 0.04258232191205025, + -0.029881881549954414, + 0.0509553924202919, + 0.05402807891368866, + -0.09090032428503036, + -0.006823925767093897, + 0.048471637070178986, + -0.012553206644952297, + 0.025234442204236984, + -0.027705395594239235, + 0.020932679995894432, + 0.013481414876878262, + -0.05474504083395004, + 0.04696090146899223, + 0.026450714096426964, + -0.05034085735678673, + 0.011087278835475445, + -0.03272411599755287, + 0.07522962242364883, + 0.06539702415466309, + 0.0029670633375644684, + -0.012386769987642765, + -0.07814867049455643, + -0.019396336749196053, + 0.020740637555718422, + 0.021355174481868744, + 0.014620869420468807, + 0.0030054720118641853, + -0.045911066234111786, + -0.04947026073932648, + 0.024760736152529716, + 0.041071582585573196, + 0.03269851207733154, + -0.0008561914437450469, + 0.0015691508306190372, + 0.031008534133434296, + -0.027551760897040367, + 0.07082543522119522, + -0.005293983966112137, + 0.03710269555449486, + -0.03464454784989357, + -0.10114261507987976, + -0.06155616417527199, + -0.007156800478696823, + -0.01312293391674757, + 0.036257706582546234, + 0.029241738840937614, + -0.09253909438848495, + 0.01156738679856062, + -0.009442111477255821, + 0.030163545161485672, + -0.024312635883688927, + 0.007214413024485111, + 0.019396336749196053, + -0.03423485532402992, + -0.07435902953147888, + 0.08793006092309952, + -0.0633997768163681, + 0.07907047867774963, + -0.07886563241481781, + 0.010402325540781021, + -0.004180134739726782, + -0.016682129353284836, + 0.06959636509418488, + -0.051390692591667175, + -0.07359085232019424, + 0.002920652972534299, + -0.07686838507652283, + 0.004490604158490896, + -0.019012251868844032, + 0.004100116901099682, + -0.09873567521572113, + 0.020587002858519554, + 0.08301376551389694, + -0.03963766247034073, + 0.04189096763730049, + -0.04778028279542923, + -0.0633997768163681, + -0.0599173977971077, + 0.004308163188397884, + 0.03198155015707016, + -0.08234801143407822, + -0.01995966210961342, + 0.014876926317811012, + 0.008801967836916447, + 0.08250164985656738, + 0.015145787037909031, + -0.04534773901104927, + 0.034977421164512634, + 0.008347466588020325, + 0.035976044833660126, + 0.019217096269130707, + 0.046423181891441345, + -0.019703606143593788, + 0.025784965604543686, + -0.04762664809823036, + -0.01816726289689541, + 0.06529460102319717, + -0.0063118115067481995, + 0.10032323002815247, + -0.044016242027282715, + -0.00871874950826168, + -0.0007593698101118207, + 0.022059332579374313, + 0.035591959953308105, + -0.07645869255065918, + -0.06278523802757263, + -0.0048778909258544445, + 0.037384357303380966, + 0.012937292456626892, + 0.059200435876846313, + 0.032826539129018784, + 0.08086287975311279, + 0.01935792900621891, + -0.04880451411008835, + -0.015977973118424416, + 0.03095732256770134, + 0.020151706412434578, + -0.016016380861401558, + -0.012540403753519058, + -0.07604900747537613, + -0.0014347208198159933, + 0.04831800237298012, + -0.07231056690216064, + 0.09919658303260803, + -0.05961012840270996, + -0.041609302163124084, + 0.009999035857617855, + -0.02801266312599182, + -0.0826040729880333, + 0.0028422356117516756, + 0.043376099318265915, + -0.020779045298695564, + 0.011535379104316235, + -0.0220465287566185, + 0.06903303414583206, + 0.008513903245329857, + 0.0008085807785391808, + -0.004980313591659069, + -0.081784687936306, + 0.09648237377405167, + -0.030240362510085106, + 0.025618528947234154, + 0.009416505694389343, + -0.05868832394480705, + 0.08741794526576996, + 0.048855725675821304, + -0.015721915289759636, + -0.012284346856176853, + 0.054949887096881866, + -0.055462002754211426, + 0.02454308792948723, + -0.0204461719840765, + -0.0138142891228199, + -0.015785928815603256, + 0.011528978124260902, + 0.07707323133945465, + 0.053925659507513046, + -0.09392180293798447, + 0.045680612325668335, + -0.0104983476921916, + -0.020907074213027954, + -0.12280505895614624, + -0.019153082743287086, + 0.035233478993177414, + 0.011964275501668453, + -0.05971255153417587, + 0.0012266742996871471, + -0.08859580755233765, + 0.030803687870502472, + 0.01835930533707142, + -0.006347019225358963, + -0.04434911534190178, + -0.0839867815375328, + -0.049495868384838104, + 0.08455010503530502, + 0.028960075229406357, + 0.00795057788491249, + -0.009224462322890759, + -0.009506125934422016, + -0.010754404589533806, + 0.024747934192419052, + 0.03799889609217644, + 0.0041097188368439674, + -0.0273981261998415, + -0.07722686976194382, + 0.0327497236430645, + 0.013135736808180809, + -0.04245429113507271, + -0.11870814114809036, + 0.005470023024827242, + 0.00767531618475914, + -0.007240018807351589, + 0.04964950308203697, + -0.09894052147865295, + 0.013276568613946438, + 0.031290195882320404, + 0.040329016745090485, + 0.01771916262805462, + 0.007777739316225052, + 0.028729623183608055, + 0.040457047522068024, + 0.03638573735952377, + -0.015504267066717148, + -0.007880162447690964, + 0.00869954563677311, + 0.020663820207118988, + -0.061197683215141296, + -0.05704955756664276, + -0.040431439876556396, + 0.0013971123844385147, + 0.02852477878332138, + -0.03372273966670036, + -0.026297079399228096, + 0.06201706826686859, + 0.01336618885397911, + -0.06570429354906082, + 0.03405561298131943, + 0.01590115576982498, + 0.01355823129415512, + -0.026066629216074944, + -0.06350219994783401, + -0.061095260083675385, + -0.03223760798573494, + 0.04301761835813522, + -0.054949887096881866, + -0.030291574075818062, + 0.014377614483237267, + -0.08859580755233765, + -0.07779019325971603, + 0.001878820126876235, + -0.006683094426989555, + -0.0011418553767725825, + 0.037153907120227814, + -0.018436122685670853, + 0.0490349642932415, + -0.0041097188368439674, + 0.05300385132431984, + 0.0008857980719767511, + -0.023531662300229073, + -0.012092303484678268, + -0.08326981961727142, + 0.06155616417527199, + 0.10826100409030914, + -0.01054315734654665, + -0.021995319053530693, + -0.04760104417800903, + -0.019703606143593788, + -0.052440524101257324, + -0.057920150458812714, + 0.025631330907344818, + 0.006663890089839697, + -0.006190184038132429, + -0.024671116843819618, + 0.02814069204032421, + -0.0372307263314724, + -0.019076265394687653, + -0.0219569094479084, + 0.037537992000579834, + 0.02686040662229061, + 0.0779438316822052, + -0.16203303635120392, + -0.06314371526241302, + -0.017488710582256317, + 0.0007493675802834332, + 0.0827064961194992, + 0.038664646446704865, + -0.04050825908780098, + -0.011292125098407269, + 0.03830616548657417, + 0.014044740237295628, + 0.0413532480597496, + -0.008027395233511925, + -0.01067118626087904, + 0.05011040344834328, + -0.025912994518876076, + 0.051672354340553284, + -0.01163140032440424, + 0.0034791778307408094, + -0.0009058025316335261, + -0.0017443899996578693, + -0.057766515761613846, + -0.033185020089149475, + -0.04130203649401665, + -0.008661136962473392, + -0.041865359991788864, + -0.004529012832790613, + 0.05438655987381935, + -0.0731811597943306, + 0.026271473616361618, + 0.02618185430765152, + -0.01433920580893755, + -0.0451941043138504, + -0.006939151789993048, + -0.043760184198617935, + 0.03638573735952377, + -0.000814582163002342, + -0.07092785835266113, + 0.02842235565185547, + -0.046832870692014694, + 0.04662802442908287, + 0.041071582585573196, + -0.021969713270664215, + -0.02560572512447834, + -0.029267344623804092, + -0.004513008985668421, + 0.03863903880119324, + 0.030906111001968384, + 0.09668722003698349, + -0.004503407049924135, + -0.04002174735069275, + 0.01458246074616909, + -0.004362575244158506, + -0.021905697882175446, + -0.03766602277755737, + -0.012572411447763443, + 0.047344986349344254, + 0.0050123208202421665, + -0.009826197288930416, + 0.026297079399228096, + 0.06565307825803757, + -0.018180064857006073, + 0.020356550812721252, + -0.002510961377993226, + 0.027193279936909676, + -0.037896472960710526, + 0.05402807891368866, + 0.0376916266977787, + 0.009128441102802753 + ] + }, + { + "id": "b81bee10-6dbc-49bd-88c0-7fa21449750b", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "pateldiana", + "reviewDate": "2021-09-15T08:43:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "841a50df-ba41-4df5-bc85-2ba2d3a925cb", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "judyguzman", + "reviewDate": "2021-10-09T23:04:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "eef3d77d-2379-4c9c-a9f7-e16ad8f0b9d3", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "williamdean", + "reviewDate": "2022-04-29T00:24:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "438a4bba-bc40-44e6-a0e4-8e048d256705", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "duncandanielle", + "reviewDate": "2022-03-08T09:21:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "23eae761-5d12-4a99-a827-72e77dddaf03", + "productId": "7822d962-f9f5-42f9-bf7a-298bc3cd8b0f", + "category": "Media", + "docType": "customerRating", + "userName": "dmelendez", + "reviewDate": "2022-06-16T10:32:48", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Mini (Steel)", + "description": "This Premium Computer Mini (Steel) is a high performance computer computer powered by a 10 Watt processor with 5 core CPUs.\n\nThe computer uses a high performance CPU to manage its various programs. The PC is equipped with a variety of programs that are designed to run on computers. It has an internal memory system and a hard drive for storing information and pictures. At the same time each computer has an SD card slot so other customers should access", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-07-25T21:35:40", + "price": 165.3, + "stock": 45, + "priceHistory": [ + { + "priceDate": "2021-01-06T15:58:59", + "newPrice": 163.63 + }, + { + "priceDate": "2022-12-17T15:58:59", + "newPrice": 171.53 + }, + { + "priceDate": "2023-02-28T15:58:59", + "newPrice": 165.3 + } + ], + "descriptionVector": [ + -0.0679517462849617, + 0.07289863377809525, + -0.04134184494614601, + -0.017422828823328018, + 0.03587852418422699, + 0.05254029110074043, + 0.009037582203745842, + 0.056698936969041824, + 0.07240938395261765, + 0.09382777661085129, + 0.08545611798763275, + -0.08290113508701324, + 0.04373374581336975, + -0.035226184874773026, + 0.04634309187531471, + 0.020181668922305107, + -0.014650397002696991, + -0.013807795010507107, + -0.0053647905588150024, + -0.008629871532320976, + -0.017708225175738335, + -0.04995812475681305, + -0.04661490023136139, + 0.03946637362241745, + -0.012550687417387962, + -0.004382887855172157, + -0.030605467036366463, + -0.011028568260371685, + -0.031747058033943176, + 0.03125780448317528, + 0.06729941070079803, + 0.04816420003771782, + -0.037020113319158554, + -0.036068785935640335, + 0.016267647966742516, + -0.030850093811750412, + 0.012727362103760242, + -0.04688670486211777, + 0.07828041166067123, + 0.021431980654597282, + 0.04938732832670212, + 0.005116766784340143, + 0.04468506947159767, + 0.011891555972397327, + 0.04998530447483063, + -0.021391209214925766, + -0.06675579398870468, + -0.001624046708457172, + 0.01292442250996828, + -0.06382028013467789, + 0.01954292319715023, + 0.03886840119957924, + 0.08616281300783157, + 0.08659770339727402, + -0.03715601563453674, + -0.061102211475372314, + 0.05052892118692398, + 0.19450508058071136, + -0.016661768779158592, + -0.026175012812018394, + 0.030551105737686157, + 0.008854112587869167, + -0.017246153205633163, + -0.02419082261621952, + -0.02826792746782303, + -0.020657330751419067, + -0.08431452512741089, + 0.07681265473365784, + 0.023198725655674934, + 0.05044737830758095, + -0.07594287395477295, + -0.08219443261623383, + 0.036068785935640335, + -0.013726253062486649, + 0.05400804802775383, + 0.011531411670148373, + 0.05947136878967285, + 0.013046735897660255, + 0.03373124822974205, + -0.03422050178050995, + 0.004151851870119572, + 0.05112689360976219, + -0.027751494199037552, + -0.03704729303717613, + 0.0569707453250885, + 0.01584634743630886, + 0.0033856958616524935, + -0.11535488814115524, + 0.03375842794775963, + 0.0412331186234951, + -0.013569964095950127, + 0.05903647840023041, + 0.09649147838354111, + 0.004382887855172157, + 0.05427985638380051, + 0.05164332687854767, + -0.050365835428237915, + 0.031774237751960754, + -0.004318333696573973, + -0.013746638782322407, + 0.02419082261621952, + -0.04479379206895828, + -0.016879213973879814, + -0.0763777643442154, + 0.05066482350230217, + 0.036286234855651855, + 0.025672169402241707, + 0.004838164430111647, + 0.007902787998318672, + -0.06322230398654938, + -0.07485564798116684, + -0.0658860132098198, + 0.01292442250996828, + -0.010763556696474552, + 0.015506588853895664, + -0.032453753054142, + 0.002709575928747654, + -0.04449480399489403, + -0.023307450115680695, + -0.036639582365751266, + 0.0016767093911767006, + 0.03791707381606102, + 0.02635168842971325, + 0.008813342079520226, + -0.03180141746997833, + 0.04351630061864853, + -0.017096659168601036, + 0.018632369115948677, + 0.02491111122071743, + -0.08366218954324722, + -0.03239939361810684, + 0.06659271568059921, + -0.00870461855083704, + 0.001084679737687111, + -0.03006185218691826, + -0.03704729303717613, + 0.05403522774577141, + 0.125900998711586, + 0.02192123420536518, + 0.0009156498126685619, + -0.04066232591867447, + -0.010566496290266514, + -0.13166330754756927, + -0.05088226869702339, + -0.0829554945230484, + 0.025359591469168663, + -0.09866593778133392, + 0.012829289771616459, + -0.06159146502614021, + 0.06420081108808517, + -0.021513523533940315, + 0.02454417198896408, + -0.04324449226260185, + -0.03875967860221863, + 0.05115407705307007, + 0.0269632525742054, + -0.05520400032401085, + 0.05267619341611862, + -0.07828041166067123, + 0.027751494199037552, + 0.0003677888307720423, + -0.018985718488693237, + -0.008127029053866863, + -0.04028179496526718, + 0.06066732108592987, + -0.04376092553138733, + 0.005252670031040907, + 0.027275830507278442, + -0.09730689972639084, + 0.01583275757730007, + 0.03644931688904762, + -0.007148523814976215, + 0.0021931426599621773, + -0.058601588010787964, + 0.03457384929060936, + 0.022723063826560974, + 0.03682984784245491, + 0.03954791650176048, + 0.02014089748263359, + -0.028648456558585167, + 0.041776735335588455, + 0.06555984914302826, + -0.010158786550164223, + 0.036666762083768845, + 0.01693357527256012, + 0.03625905141234398, + 0.01025391835719347, + 0.001464360160753131, + 0.00013409853272605687, + 0.007060186471790075, + 0.06365719437599182, + -0.05718819051980972, + 0.0207388736307621, + -0.008602690882980824, + 0.04552767053246498, + 0.021282486617565155, + 0.016240468248724937, + 0.05805797129869461, + 0.018306201323866844, + -0.0307413712143898, + -0.024109279736876488, + 0.05805797129869461, + 0.037944257259368896, + -0.02003217488527298, + 0.0107975322753191, + 0.004861947614699602, + 0.013318542391061783, + 0.010464569553732872, + -0.014310638420283794, + 0.06055859848856926, + 0.03166551515460014, + -0.047511860728263855, + -0.03685702756047249, + -0.010987797752022743, + 0.06931078433990479, + -0.009798642247915268, + 0.06224380061030388, + 0.008602690882980824, + -0.042483434081077576, + -0.051072534173727036, + 0.062950499355793, + 0.0208611860871315, + 0.022926919162273407, + -0.048354461789131165, + -0.045364584773778915, + -0.07768243551254272, + -7.85692100180313e-05, + 0.006615102756768465, + -0.0065505485981702805, + 0.05789488926529884, + -0.06827791780233383, + -0.014568855054676533, + -0.011116906069219112, + 0.004342116881161928, + -0.022804606705904007, + 0.032453753054142, + 0.02886590175330639, + -0.03658521920442581, + -0.06104784831404686, + 0.11948635429143906, + 0.028403829783201218, + 0.033323537558317184, + -0.06952822953462601, + -0.061917632818222046, + -0.021065041422843933, + 0.009452087804675102, + 0.0008217914728447795, + -0.028077661991119385, + -0.0584385022521019, + 0.0015314625343307853, + -0.03851504996418953, + -0.0033551175147295, + 0.014623216353356838, + 0.10219942778348923, + -0.05351879447698593, + 0.012407989241182804, + 0.03536209091544151, + -0.04830010235309601, + -0.0038154905196279287, + -0.016960756853222847, + -0.018999308347702026, + -0.058601588010787964, + -0.040825411677360535, + 0.03229067102074623, + -0.07018056511878967, + 0.015261962078511715, + 0.06626654416322708, + -0.053328532725572586, + 0.013603939674794674, + 0.044521983712911606, + 0.07866094261407852, + -0.01977395825088024, + -0.004311538301408291, + -0.0021591668482869864, + -0.0006655024481005967, + -0.04066232591867447, + -0.06528803706169128, + 0.03536209091544151, + -0.022695884108543396, + 0.01859159767627716, + 0.07474692165851593, + -0.00015660753706470132, + 0.07936763763427734, + 0.015900708734989166, + 0.0282407458871603, + -0.004946887027472258, + -0.03180141746997833, + -0.07659520953893661, + 0.024992652237415314, + -0.04335321485996246, + -0.023905424401164055, + 0.06806047260761261, + 0.025957567617297173, + 0.09409958124160767, + 0.013909722678363323, + 0.034736935049295425, + -0.00015883721061982214, + -0.02741173468530178, + 0.048327282071113586, + 0.0207388736307621, + -0.053600337356328964, + -0.012659410946071148, + 0.002823395188897848, + -0.00966273806989193, + 0.03517182543873787, + 0.07730190455913544, + -0.0372103750705719, + -0.006231175269931555, + 0.009785051457583904, + 0.024503400549292564, + 0.029626961797475815, + -0.03288864716887474, + -0.048463188111782074, + 0.026800168678164482, + 0.021296078339219093, + 0.009968521073460579, + 0.01233324222266674, + -0.030605467036366463, + -0.015438636764883995, + -0.02061655931174755, + 0.00263992534019053, + -0.056427132338285446, + -0.17613093554973602, + 0.05218694359064102, + 0.0007219873368740082, + -0.02563139982521534, + -0.11350660026073456, + 0.05267619341611862, + -0.018931357190012932, + 0.002656913362443447, + 0.04639745131134987, + -0.07463820278644562, + -0.013746638782322407, + 0.025577038526535034, + 0.03873249515891075, + -0.04378810524940491, + -0.0228725578635931, + 0.04944169148802757, + -0.025468314066529274, + 0.10567855834960938, + 0.032236307859420776, + 0.014201914891600609, + -0.04362502321600914, + 0.02609347179532051, + -0.039276111871004105, + -0.01473193895071745, + -0.02753404714167118, + -0.002442865399643779, + -0.01585993729531765, + -0.005266260355710983, + 0.0017234261613339186, + -0.037971436977386475, + 0.059090837836265564, + 0.022002775222063065, + 0.08110720664262772, + -0.05362752079963684, + -0.009064762853085995, + 0.00423339381814003, + 0.012842880561947823, + 0.03460102900862694, + 0.021907642483711243, + -0.03813451901078224, + 0.06153710186481476, + 0.07007183879613876, + -0.0519694946706295, + 0.012380808591842651, + -0.04639745131134987, + -0.012951603159308434, + 0.003992164973169565, + 0.002621238585561514, + 0.0517248697578907, + -0.022736655548214912, + -0.0287299994379282, + 0.1014927327632904, + -0.023905424401164055, + -0.001749757444486022, + 0.02705838531255722, + 0.02777867391705513, + -0.056916382163763046, + 0.021146584302186966, + -0.002665407257154584, + 0.044059913605451584, + -0.013495217077434063, + 8.674465061631054e-05, + 0.06115657091140747, + -0.12938012182712555, + 0.03813451901078224, + -0.03185578063130379, + -0.009846208617091179, + 0.07066981494426727, + -0.006815560162067413, + -0.02003217488527298, + -0.054171133786439896, + 0.004012550693005323, + 0.056427132338285446, + -0.0030697202309966087, + -0.006812162697315216, + 0.014392180368304253, + 0.01311468705534935, + -0.031203443184494972, + 0.02730301208794117, + 0.0228725578635931, + -0.027833035215735435, + -0.04816420003771782, + -0.018197478726506233, + -0.10665706545114517, + -0.031284984201192856, + 0.030687009915709496, + -0.033187635242938995, + -0.0013879144098609686, + 0.006751006003469229, + -0.10790737718343735, + 0.021146584302186966, + -0.00256517855450511, + 0.034383583813905716, + -0.018047984689474106, + 0.06300485879182816, + 0.014623216353356838, + 0.0002834862098097801, + 0.021391209214925766, + -0.01585993729531765, + -0.0569707453250885, + -0.022111497819423676, + -0.01682485267519951, + -0.011171267367899418, + 0.012122591957449913, + 0.026623494923114777, + -0.008629871532320976, + 0.042021360248327255, + -0.033296357840299606, + -0.051779232919216156, + -0.06778866052627563, + -0.028675638139247894, + -0.011286784894764423, + 0.00827652309089899, + 0.014609625563025475, + 0.02276383526623249, + 0.04169519245624542, + -0.02501983381807804, + 0.03943919390439987, + -0.03231785073876381, + -0.04308140650391579, + 0.03161115199327469, + 0.036666762083768845, + -0.044521983712911606, + 0.032725561410188675, + -0.007651366759091616, + 0.016308419406414032, + 0.0455004908144474, + -0.009241437539458275, + -0.07219193875789642, + 0.004834766965359449, + -0.04068950563669205, + -0.01667535863816738, + 0.04710415005683899, + 0.02813202328979969, + 0.012102206237614155, + 0.030551105737686157, + -0.06322230398654938, + -0.023293858394026756, + 0.023348219692707062, + -0.0016690647462382913, + 0.03682984784245491, + -0.039384834468364716, + -0.033323537558317184, + -0.029844406992197037, + -0.013101097196340561, + -0.04373374581336975, + 0.002602551830932498, + 0.06256996840238571, + -0.052893638610839844, + -0.03791707381606102, + 0.02228817343711853, + 0.04362502321600914, + 0.03669394180178642, + -0.06947387009859085, + 0.04925142601132393, + -0.003248093416914344, + -0.07806296646595001, + 0.006805367302149534, + 0.013332133181393147, + -0.058112334460020065, + 0.01908085122704506, + -0.02586243487894535, + 0.03943919390439987, + -0.006479199044406414, + 0.006282139103859663, + 0.01388254202902317, + 0.030089033767580986, + 0.08964194357395172, + -0.01645791344344616, + 0.054307036101818085, + -0.0234841238707304, + -0.06860408186912537, + -0.015248372219502926, + 0.022858968004584312, + 0.056318409740924835, + 0.025821663439273834, + 0.04862627014517784, + 0.05558453127741814, + -0.031747058033943176, + -0.029409516602754593, + -0.03443794697523117, + 0.062406886368989944, + -0.04020025208592415, + 0.04604410380125046, + 0.040607962757349014, + 0.06083040311932564, + -0.023511305451393127, + 0.016716130077838898, + 0.03870531544089317, + -0.03158397227525711 + ] + }, + { + "id": "fe7c5d89-76ed-42ad-a6b4-aadabb5104e5", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "powellwyatt", + "reviewDate": "2022-10-31T17:19:34", + "stars": 4, + "verifiedUser": false + }, + { + "id": "48ddd3fc-2711-4227-8d7e-308eeb7b2b71", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "ocampbell", + "reviewDate": "2021-12-26T20:12:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "fa8da48a-3a87-4032-b6a5-72b3824c9fd8", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "jeremymartin", + "reviewDate": "2021-01-11T13:56:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e2280e4b-be8c-4b4c-bd53-15576fd47b92", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "sarahadams", + "reviewDate": "2021-10-21T06:30:50", + "stars": 2, + "verifiedUser": true + }, + { + "id": "caebcddd-0ce1-40bf-9a4b-13e310975050", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "rwilliams", + "reviewDate": "2021-01-06T15:58:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3a66b6a3-5fad-4258-ac3d-7089580d60d3", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "jstephenson", + "reviewDate": "2021-06-24T21:01:40", + "stars": 4, + "verifiedUser": true + }, + { + "id": "c933fdfd-80f9-4b74-9668-80cf8828edd4", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnhuffman", + "reviewDate": "2022-12-18T15:43:39", + "stars": 5, + "verifiedUser": true + }, + { + "id": "3a6bf418-0a54-4c12-9cd8-9de9179d490c", + "productId": "ee4e08cd-2d47-4779-9d76-2b5122d966ab", + "category": "Electronics", + "docType": "customerRating", + "userName": "morseaaron", + "reviewDate": "2021-11-15T18:36:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Super (Red)", + "description": "This Basic Keyboard Super (Red) is used by your computer in many more ways. There is also a set of keyboards and mice that all use a set of keys for different purposes. Some of these keyboards share the same color or feel or also have the features of the other types. Most computers work with a set of 4 or 5 keys in order to control a specific aspect of typing which can then be used and altered in different ways. This means using keys to control the background", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2020-04-12T11:00:43", + "price": 371.81, + "stock": 40, + "priceHistory": [ + { + "priceDate": "2021-01-13T02:08:09", + "newPrice": 336.14 + }, + { + "priceDate": "2021-08-23T02:08:09", + "newPrice": 376.8 + }, + { + "priceDate": "2022-04-02T02:08:09", + "newPrice": 400.43 + }, + { + "priceDate": "2022-11-10T02:08:09", + "newPrice": 352.57 + }, + { + "priceDate": "2024-07-23T02:08:09", + "newPrice": 371.81 + } + ], + "descriptionVector": [ + 0.025570401921868324, + -0.03781600296497345, + -0.02625316008925438, + 0.028543703258037567, + 0.009409951977431774, + 0.01589065045118332, + 0.02185927890241146, + -0.045194197446107864, + -0.016518346965312958, + 0.01608886942267418, + 0.059422001242637634, + -0.01766361854970455, + 0.005803445819765329, + -0.08580730855464935, + 0.019601771607995033, + 0.038036245852708817, + -0.031142590567469597, + 0.03689097613096237, + -0.00996056292206049, + 0.005864013452082872, + 0.03667072951793671, + 0.0034853711258620024, + -0.10651030391454697, + -0.022575074806809425, + -0.02075805701315403, + 0.019678857177495956, + 0.018082084134221077, + 0.016309114173054695, + -0.08977171033620834, + 0.01955772377550602, + -0.004627890419214964, + -0.021077411249279976, + -0.005318907555192709, + -0.05281466245651245, + -0.009261286817491055, + -0.054092079401016235, + -0.07558795809745789, + -0.09567426890134811, + -0.0015816317172721028, + -0.015362062491476536, + 0.08505847305059433, + 0.0058860378339886665, + 0.05347539484500885, + -0.058893412351608276, + -0.045766834169626236, + 0.09355992078781128, + -0.018247267231345177, + -0.036802876740694046, + 0.015967736020684242, + -0.04422512277960777, + 0.07052233070135117, + 0.05567784234881401, + 0.001275354065001011, + 0.035767726600170135, + 0.059289854019880295, + 0.0419786274433136, + -0.004245215095579624, + 0.03475460410118103, + -0.005305142607539892, + -0.10289829224348068, + -0.006651387549936771, + -0.030658051371574402, + -0.057660043239593506, + -0.06144824996590614, + -0.02794904261827469, + -0.03682490065693855, + -0.02695794217288494, + -0.0589815117418766, + 0.03217773884534836, + 0.005150971468538046, + -0.017035922035574913, + 0.04312389716506004, + -0.006425636820495129, + 0.08822999894618988, + -0.04481978341937065, + 0.025129912421107292, + 0.0996386706829071, + 0.0021831749472767115, + 0.06743890792131424, + 0.047000203281641006, + -0.003047635080292821, + -0.048057377338409424, + -0.028807997703552246, + -0.029446706175804138, + 0.027200210839509964, + 0.006552277598530054, + 0.024315007030963898, + -0.04920265078544617, + 0.00909610278904438, + 0.07704157382249832, + -0.044731684029102325, + 0.015240928158164024, + 0.04691210761666298, + 0.005274858791381121, + 0.05726360157132149, + 0.00404699519276619, + -0.049026455730199814, + 0.017443373799324036, + -0.006563290022313595, + 0.029292535036802292, + 0.05783623829483986, + -0.01992112584412098, + -0.08853834122419357, + -0.06391499191522598, + 0.06210898607969284, + -0.03244203329086304, + 0.05893746390938759, + 0.02988719567656517, + -0.06237328052520752, + -0.09576236456632614, + -0.040767282247543335, + -0.010065179318189621, + -0.0037469116505235434, + 0.017685644328594208, + -0.017201105132699013, + 0.006943211890757084, + -0.046559713780879974, + -0.03327896445989609, + 0.07316526770591736, + 0.021517900750041008, + 0.09303133189678192, + 0.019976187497377396, + 0.023632248863577843, + 0.01656239666044712, + -0.09223844856023788, + -0.0017426855629310012, + -0.036164168268442154, + -0.011761062778532505, + 0.04318997263908386, + -0.04660376161336899, + -0.007692043669521809, + 0.0966433435678482, + 0.04633947089314461, + 0.08646804094314575, + 0.01585761271417141, + 0.06180064380168915, + 0.004966516513377428, + 0.05514925345778465, + -0.0559861846268177, + 0.013996546156704426, + -0.022663172334432602, + -0.01699187234044075, + -0.050788410007953644, + 0.06488406658172607, + -0.05911365896463394, + 0.02755260281264782, + -0.02605493925511837, + 0.05237417295575142, + 0.02059287205338478, + 0.04611922428011894, + 0.01510878186672926, + -0.04045893996953964, + 0.004704975988715887, + -0.02488764375448227, + 0.015251940116286278, + 0.03968808054924011, + -0.018533585593104362, + 0.03847673535346985, + -0.006937705911695957, + 0.025350157171487808, + -0.0013579457299783826, + 0.010907615534961224, + -0.014051606878638268, + 0.022905441001057625, + 0.031230688095092773, + 0.0007598439697176218, + 0.018500547856092453, + 0.04550253972411156, + 0.008440875448286533, + 0.019447600468993187, + -0.061756592243909836, + 0.04682400822639465, + -0.01390844862908125, + -0.006491710431873798, + 0.03211166709661484, + -0.013236702419817448, + 0.040370840579271317, + 0.016143931075930595, + 0.00956412311643362, + -0.07748205959796906, + -0.007741598878055811, + 0.03521711751818657, + -0.07977260649204254, + 0.031076516956090927, + 0.12686090171337128, + 0.0003892135573551059, + -0.04955504089593887, + 0.023015564307570457, + -0.0416482575237751, + 0.0016022797208279371, + -0.00036237124004401267, + -0.02235483005642891, + 0.00811050832271576, + 0.02162802219390869, + -0.0025920039042830467, + 0.040569059550762177, + -0.05100865662097931, + -0.002790224039927125, + 0.06448762863874435, + -0.02955682948231697, + -0.0030228574760258198, + 0.07743801176548004, + 0.014756389893591404, + 0.016232028603553772, + 0.05607428401708603, + 0.035833802074193954, + 0.014921573922038078, + -0.004132339730858803, + 0.04023869335651398, + 0.021617010235786438, + 0.005164736416190863, + -0.060787517577409744, + 0.03834458813071251, + -0.07078662514686584, + 0.05871721729636192, + -0.027794871479272842, + -0.001808759057894349, + 0.023896541446447372, + -0.008358283899724483, + -0.04717639833688736, + 0.03887317702174187, + 0.024799544364213943, + -0.014271851629018784, + -0.016077857464551926, + -0.017707668244838715, + -0.016947824507951736, + 0.07840708643198013, + -0.03054792992770672, + -0.04625137150287628, + 0.05867316946387291, + -0.04810142517089844, + -0.03995237499475479, + 0.02495371550321579, + -0.015978747978806496, + -0.030459832400083542, + 0.06166849657893181, + 0.03072412498295307, + -0.03561355546116829, + -0.16007380187511444, + 0.07545580714941025, + 0.046559713780879974, + 0.029644927009940147, + -0.06254947185516357, + -0.03378552570939064, + 0.033631354570388794, + -0.03402779623866081, + 0.041031572967767715, + -0.06316615641117096, + -0.11285334825515747, + -0.054929010570049286, + -0.0179939866065979, + 0.07717371731996536, + 0.010775468312203884, + 0.006987260654568672, + 0.014624243602156639, + 0.03112056665122509, + 0.02261912263929844, + -0.012102441862225533, + -0.06642577797174454, + -0.07505936920642853, + 0.09003600478172302, + 0.05603023245930672, + -0.06034702807664871, + 0.01952468603849411, + -0.004099302925169468, + -0.0004903884255327284, + 0.04814547672867775, + -0.08267983049154282, + -0.024182859808206558, + 0.05633857473731041, + 0.05400398373603821, + 0.01091312151402235, + 0.022079523652791977, + -0.04059108346700668, + -0.021683083847165108, + 0.03951188549399376, + -0.014139705337584019, + 0.057924337685108185, + -0.013875411823391914, + -0.03845471143722534, + -0.06241732835769653, + 0.12201552093029022, + 0.03367540240287781, + -0.03374147787690163, + 0.022817343473434448, + -0.04195659980177879, + -0.016485311090946198, + 0.04488585516810417, + 0.009933033026754856, + -0.025702547281980515, + -0.03312479332089424, + 0.014448047615587711, + 0.01122696977108717, + 0.03618619218468666, + 0.02279531955718994, + 0.010858059860765934, + -0.027046039700508118, + -0.02645137906074524, + 0.08880263566970825, + 0.003945131786167622, + 0.0403047651052475, + -0.057131458073854446, + -0.07100687175989151, + -0.05673501640558243, + 0.030261611565947533, + -0.008391320705413818, + 0.01121045183390379, + 0.02022946998476982, + -0.04217684641480446, + -0.0559861846268177, + 0.026671623811125755, + -0.011717014014720917, + -0.04559063911437988, + -0.03356528282165527, + 0.06448762863874435, + -0.05294680967926979, + -0.015097768977284431, + 0.018214231356978416, + -0.03929164260625839, + -0.023434028029441833, + -0.03235393762588501, + -0.04484180733561516, + -0.08523467183113098, + 0.11866780370473862, + 0.044357266277074814, + -0.041031572967767715, + -0.08012499660253525, + 0.05607428401708603, + 0.014337925240397453, + -0.072636678814888, + -0.017179081216454506, + -0.02292746491730213, + -0.06607338786125183, + 0.018665732815861702, + 0.04920265078544617, + -0.054356373846530914, + -0.01156284287571907, + 0.0996386706829071, + -0.024843594059348106, + 0.038696981966495514, + 0.0396440327167511, + 0.03642846271395683, + -0.054356373846530914, + -0.03587784990668297, + -0.029292535036802292, + -0.05801243335008621, + 0.006194380111992359, + -0.0032568674068897963, + -0.029666950926184654, + 0.01299443282186985, + 0.0015885144239291549, + -0.021550936624407768, + 0.00461412500590086, + -0.009839428588747978, + 0.014437035657465458, + 0.00031436479184776545, + -0.021264618262648582, + -0.040899425745010376, + 0.006524747237563133, + 0.015384087339043617, + -0.029711000621318817, + -0.01753147318959236, + 0.048057377338409424, + -0.04418107122182846, + -0.04620732367038727, + -0.016815677285194397, + -0.0429697260260582, + 0.05184558406472206, + 0.07083067297935486, + -0.007323133759200573, + -0.006711955182254314, + -0.028345484286546707, + 0.02345605380833149, + 0.0573076531291008, + 0.014249827712774277, + 0.05594213679432869, + -0.0682758316397667, + -0.013534032739698887, + -0.059289854019880295, + 0.010621297173202038, + -0.004360843449831009, + 0.057660043239593506, + -0.03572367876768112, + -0.008270185440778732, + 0.0046664332039654255, + -0.07770230621099472, + -0.05184558406472206, + -0.013578081503510475, + 0.032265838235616684, + 0.029799098148941994, + -0.05056816712021828, + 0.04585492983460426, + -0.026032915338873863, + 0.026209110394120216, + 0.013115567155182362, + -0.012553944252431393, + -0.041670285165309906, + 0.031869396567344666, + -0.02885204553604126, + 0.0519777312874794, + 0.009008005261421204, + 0.05576593801379204, + -0.0189960990101099, + -0.042529236525297165, + -0.07510341703891754, + -0.10157682001590729, + -0.04788118228316307, + 0.005753891076892614, + 0.0143269132822752, + -0.01656239666044712, + -0.027464505285024643, + 0.02838953211903572, + 0.026473404839634895, + -0.05541354790329933, + -0.016518346965312958, + 0.04404892399907112, + -0.006161343306303024, + 0.13382063806056976, + 0.021738145500421524, + -0.05351944640278816, + 0.0443132184445858, + -0.022145597264170647, + -0.04545849189162254, + -0.004126833751797676, + 0.02871990017592907, + -0.06611743569374084, + 0.029909219592809677, + -0.009024523198604584, + 0.015670405700802803, + -0.008187593892216682, + -0.013985534198582172, + 0.010505668818950653, + -0.049334798008203506, + -0.010164289735257626, + 0.025306107476353645, + -0.03684692457318306, + -0.0015169348334893584, + 0.015560283325612545, + -0.011849161237478256, + 0.07589630037546158, + 0.03578975051641464, + 0.0022313534282147884, + -0.0636506974697113, + 0.024799544364213943, + -0.07224024087190628, + 0.07351765781641006, + -0.025173960253596306, + 0.01615494303405285, + 0.05514925345778465, + 0.03358730673789978, + -0.08950741589069366, + -0.013534032739698887, + -0.007152444217354059, + -0.030261611565947533, + 0.07179974764585495, + -0.02709008939564228, + 0.04387272894382477, + -0.006695436779409647, + 0.00038680463330820203, + -0.005968629382550716, + -0.03634036332368851, + 0.012708115391433239, + 0.0609637126326561, + -0.03189142048358917, + -0.008578528650105, + -0.052197977900505066, + -0.04169230908155441, + -0.03554748371243477, + -0.03559153154492378, + -0.047969281673431396, + 0.016375187784433365, + -0.11857970803976059, + 0.0015541011234745383, + -0.015483197756111622, + 0.05268251523375511, + -0.07849518209695816, + -0.029777074232697487, + 0.023037588223814964, + 0.02775082364678383, + -0.01965683326125145, + 0.007543378509581089, + -0.029600877314805984, + -0.06950920820236206, + -0.060919664800167084, + 0.0429697260260582, + 0.03594392165541649, + -0.011617904528975487, + 0.07466293126344681, + 0.04858596622943878, + -0.03418196737766266, + 0.08479417860507965, + 0.06876037269830704, + 0.019161282107234, + -0.009624689817428589, + -0.0008988733752630651, + 0.014547158032655716, + -0.06854012608528137, + 0.010874578729271889, + 0.008292210288345814, + 0.08245959132909775, + 0.024072738364338875, + -0.04907050356268883, + 0.02365427277982235, + 0.021672071889042854, + 0.05017172545194626, + -0.016066845506429672, + 0.02138575352728367, + 0.04801332950592041, + 0.0291603896766901, + -0.07016994059085846, + 0.015064732171595097, + -0.08492632955312729 + ] + }, + { + "id": "4cbf19d4-2fd5-4692-9bfd-345d68c680b8", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pstevens", + "reviewDate": "2022-02-15T07:21:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e9ac1e9a-5f95-4cdd-b22d-dfce5b1e5d18", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kristina96", + "reviewDate": "2022-07-13T20:59:25", + "stars": 3, + "verifiedUser": false + }, + { + "id": "de9b0375-71eb-44a6-b616-d44e81146269", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kkelly", + "reviewDate": "2022-11-10T05:27:12", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ee6aeca3-2103-4239-9de1-bca3cc143d70", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tiffanyramirez", + "reviewDate": "2021-08-26T04:28:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "33840aeb-7906-4428-b950-7a4897f05794", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "molinajacqueline", + "reviewDate": "2021-01-13T02:08:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "35e920fa-2d8f-4ce5-9cd2-4716b2c00b4e", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "wheelerdouglas", + "reviewDate": "2022-04-15T11:39:11", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4a29ac49-422a-421e-993a-e4bf464dbd32", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "debrabrown", + "reviewDate": "2022-09-20T18:10:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2cc426c6-ee20-4a5a-a013-8b56ede73bd1", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tammy65", + "reviewDate": "2021-12-08T12:18:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b337c1b0-b52d-41b7-a525-d4aa91efc97f", + "productId": "8597256c-ffe2-4b3e-9de4-e421dafff517", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "phillipgraves", + "reviewDate": "2022-09-23T13:20:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4ef7bbed-6c0c-410c-a5d0-3985545ca9f9", + "productId": "4ef7bbed-6c0c-410c-a5d0-3985545ca9f9", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Keyboard Super (Black)", + "description": "This Premium Keyboard Super (Black) is a premium replacement for your standard (red) keyboard for the premium user experience. This keyboard features the following benefits:\n\n● Supports 5 different colors, in any one color of the color wheel\n\n● Supports a fully compatible display\n\n● Supports more colors. Use this keyboard for 3- and 4-player/up-to-five-player games", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-12-04T07:44:14", + "price": 686.19, + "stock": 86, + "priceHistory": [ + { + "priceDate": "2022-08-30T12:32:19", + "newPrice": 694.98 + }, + { + "priceDate": "2022-08-31T12:32:19", + "newPrice": 630.76 + }, + { + "priceDate": "2022-09-01T12:32:19", + "newPrice": 682.33 + }, + { + "priceDate": "2022-09-02T12:32:19", + "newPrice": 644.51 + }, + { + "priceDate": "2022-09-03T12:32:19", + "newPrice": 651.18 + }, + { + "priceDate": "2022-09-15T12:32:19", + "newPrice": 686.19 + } + ], + "descriptionVector": [ + -0.002562967361882329, + -0.03393355384469032, + -0.048480305820703506, + 0.005391871556639671, + -0.004906536545604467, + 0.003726441413164139, + 0.013669159263372421, + 0.02951900102198124, + 0.017724698409438133, + 0.0006498834118247032, + 0.07467509806156158, + 0.01622215285897255, + 0.028136128559708595, + -0.0753665342926979, + 0.0397309809923172, + 0.007053977344185114, + -0.00971999578177929, + -0.02683303877711296, + 0.0060999286361038685, + 0.0006274449988268316, + 0.0016238774405792356, + -0.024878401309251785, + -0.0978647992014885, + -0.03914592042565346, + 0.013004316948354244, + -0.007067274302244186, + 0.041698914021253586, + 0.002709232736378908, + -0.05547444894909859, + 0.04941108450293541, + 0.021687157452106476, + -0.05031527206301689, + 0.018735257908701897, + 0.02288387343287468, + -0.017591729760169983, + -0.04890580475330353, + -0.01144193671643734, + -0.030316811054944992, + 0.047868650406599045, + 0.022365298122167587, + 0.028136128559708595, + 0.0016371742822229862, + 0.020650003105401993, + -0.005651160143315792, + 0.0011759399203583598, + 0.02677985094487667, + -0.004228397272527218, + -0.015610498376190662, + -0.030582748353481293, + -0.07589840143918991, + 0.06414399296045303, + 0.025769289582967758, + -0.03643336147069931, + -0.01622215285897255, + 0.06425036489963531, + 0.009640214033424854, + 0.021740345284342766, + 0.09834348410367966, + 0.0700477883219719, + -0.07595159113407135, + -0.04499652981758118, + -0.06175055727362633, + -0.051432207226753235, + -0.022059470415115356, + 0.01638171635568142, + -0.061378248035907745, + -0.06010175123810768, + -0.05744238197803497, + 0.04201803728938103, + 0.02615489810705185, + -0.021235065534710884, + 0.04624643549323082, + 0.051299236714839935, + 0.0472835898399353, + 0.02009153552353382, + 0.028721190989017487, + 0.15381793677806854, + -0.014466970227658749, + 0.014121252112090588, + 0.03579511120915413, + 0.003010073909536004, + 0.038241732865571976, + -0.054463885724544525, + -0.008589763194322586, + 0.028508441522717476, + 0.030476374551653862, + 0.05871887877583504, + -0.08680181950330734, + -0.0009715009364299476, + 0.04286903515458107, + -0.11009789258241653, + 0.010364892892539501, + 0.05236298590898514, + -0.010910063050687313, + 0.010777094401419163, + 0.0011817573104053736, + -0.07600478082895279, + 0.03669929876923561, + -0.07361134886741638, + 0.03691204637289047, + 0.061218686401844025, + -0.06813304871320724, + -0.02628786675632, + -0.04996955394744873, + 0.06760117411613464, + 0.0067680953070521355, + 0.051379017531871796, + -0.0335080549120903, + -0.04624643549323082, + -0.12328837066888809, + 0.013429815880954266, + -0.020796269178390503, + -0.04329453408718109, + 0.02623467892408371, + 0.000157380651216954, + -0.0035436097532510757, + -0.04592731222510338, + -0.011096219532191753, + 0.08956756442785263, + -0.03595467656850815, + 0.012937832623720169, + 0.024399714544415474, + -0.015198296867311, + 0.004866646137088537, + -0.054224543273448944, + -0.02014472335577011, + -0.014919063076376915, + 0.08765281736850739, + 0.05914437770843506, + -0.08084483444690704, + -0.04305519163608551, + 0.07398366183042526, + 0.03579511120915413, + 0.11435288935899734, + -0.03659292310476303, + 0.06265474110841751, + -0.02362849749624729, + 0.13254296779632568, + 0.000239551009144634, + 0.054836198687553406, + 0.0063093542121350765, + -0.025822477415204048, + 0.04927811771631241, + 0.0878123790025711, + -0.0390661358833313, + 0.03709820285439491, + 0.044438064098358154, + 0.08004701882600784, + 0.020490441471338272, + 0.03715139254927635, + 0.018708664923906326, + -0.08036614209413528, + -0.025463461875915527, + -0.09382255375385284, + 0.054729823023080826, + 0.02616819553077221, + -0.06520774215459824, + -0.01298437174409628, + -0.06419718265533447, + 0.07345178723335266, + -0.034917522221803665, + 0.03606104850769043, + -0.004943103063851595, + 0.034598395228385925, + 0.028322285041213036, + 0.024904994294047356, + 0.027231942862272263, + -0.008662896230816841, + 0.02310992032289505, + 0.013735643588006496, + -0.028535034507513046, + 0.009680104441940784, + 0.051485393196344376, + 0.002921982202678919, + 0.04866646230220795, + 0.01957296021282673, + 0.04520928114652634, + -0.021700454875826836, + 0.05281507596373558, + -0.014905765652656555, + -0.013050856068730354, + 0.0005314583540894091, + -0.07935558259487152, + 0.008596411906182766, + 0.12339474260807037, + 0.003613418200984597, + 0.022298812866210938, + 0.03026362508535385, + 0.015078624710440636, + 0.00989285483956337, + 0.05722963064908981, + -0.009520542807877064, + -0.034172896295785904, + 0.00500958738848567, + -4.1656530811451375e-05, + 0.0970669835805893, + 0.051777925342321396, + -0.008908887393772602, + 0.05579357221722603, + -0.01462653186172247, + -0.03691204637289047, + 0.0986626073718071, + 0.034305866807699203, + 0.00042757674236781895, + -0.0003259805089328438, + 0.030396593734622, + -0.007738765329122543, + 0.08626994490623474, + 0.02011813037097454, + 0.041858475655317307, + 0.021833423525094986, + 0.010564344935119152, + 0.01977241225540638, + -0.06627148389816284, + 0.05374585837125778, + -0.03680567443370819, + 0.028003159910440445, + 0.06169737130403519, + -0.03010406158864498, + -0.1113743931055069, + 0.04680490121245384, + 0.03034340590238571, + -0.024280043318867683, + -0.009234660305082798, + 0.020955830812454224, + 0.02967856265604496, + 0.060739997774362564, + -0.009374277666211128, + -0.007492773700505495, + 0.05542125925421715, + -0.03882679343223572, + -0.08962075412273407, + 0.03233793377876282, + 3.438481508055702e-05, + 0.033109150826931, + 0.02675325609743595, + -0.001039647264406085, + -0.03422608599066734, + -0.08642950654029846, + 0.06196330860257149, + -0.013695753179490566, + -0.028348878026008606, + -0.02362849749624729, + 0.004667193628847599, + 0.07079241424798965, + -0.050847142934799194, + 0.07079241424798965, + 0.01623545028269291, + -0.05967625230550766, + -0.035103678703308105, + -0.04598049819469452, + 0.03731095418334007, + -0.027923379093408585, + 0.0748346596956253, + -0.04207122325897217, + 0.06547367572784424, + 0.044890157878398895, + -0.01971922442317009, + -0.018815038725733757, + -0.07515378296375275, + 0.05334695056080818, + 0.05249595269560814, + -0.015278077684342861, + 0.057495567947626114, + -0.06244199350476265, + 0.05055461451411247, + 0.04611346498131752, + -0.051379017531871796, + -0.04645918309688568, + 0.05047483369708061, + 0.0463528111577034, + 0.01510521862655878, + -0.0025712777860462666, + -0.044438064098358154, + 0.0003191243449691683, + 0.010265165939927101, + -0.02340245060622692, + 0.061112310737371445, + 0.05675094574689865, + -0.03685886040329933, + 0.04034263640642166, + 0.13743621110916138, + 0.0680798590183258, + 0.003919245675206184, + 0.03279002383351326, + -0.030822092667222023, + -0.038108766078948975, + 0.01664765365421772, + 0.009487300179898739, + -0.013722346164286137, + -0.021793533116579056, + -0.029279658570885658, + 0.05071417614817619, + -0.00839695893228054, + 0.061484623700380325, + 0.028694596141576767, + 0.01174776442348957, + 0.03536961227655411, + 0.0807916447520256, + -0.021979687735438347, + 0.04909196123480797, + -0.023668387904763222, + -0.07318584620952606, + -0.07174979150295258, + -0.012838105671107769, + 0.10116241127252579, + -0.034890927374362946, + 0.011834193952381611, + -0.05871887877583504, + 0.003949163481593132, + 0.0458209365606308, + -0.002965196967124939, + -0.05044823884963989, + -0.01705985516309738, + 0.05925075337290764, + -0.018030524253845215, + -0.01937350630760193, + 0.04239035025238991, + -0.06744161248207092, + -0.03393355384469032, + -0.04704424738883972, + -0.03664611279964447, + -0.07318584620952606, + 0.0195995531976223, + 0.05680413171648979, + -0.0260219294577837, + -0.07435596734285355, + 0.06185693293809891, + -0.01158155407756567, + -0.04534224793314934, + -0.03731095418334007, + -0.020437253639101982, + -0.03302937000989914, + -0.025277307257056236, + 0.04036922752857208, + -0.06377167999744415, + -0.02005164511501789, + 0.020915940403938293, + 0.023934325203299522, + 0.006040093023329973, + 0.0602613128721714, + -0.010684017091989517, + 0.0026942736003547907, + -0.07669621706008911, + -0.04321475327014923, + -0.058080628514289856, + -0.04983658343553543, + -0.009314441122114658, + 0.032098591327667236, + 0.0586656890809536, + 0.0015765074640512466, + -0.017325792461633682, + 0.07121791690587997, + 0.020689895376563072, + 0.031300779432058334, + -0.012592114508152008, + 0.005667780991643667, + -0.00741964066401124, + -0.021727047860622406, + 0.048161182552576065, + 0.031726278364658356, + -0.00496304826810956, + 0.0032593896612524986, + 0.03603445738554001, + 0.007386398501694202, + 0.041619133204221725, + -0.01950647495687008, + 0.04712402820587158, + -0.00742628937587142, + -0.034518614411354065, + 0.027444692328572273, + -0.03348146006464958, + -0.03340167924761772, + 0.06206968426704407, + -0.04044900834560394, + 0.07807908952236176, + -0.044969938695430756, + 0.01971922442317009, + -0.006568642798811197, + 0.017671510577201843, + -0.0034605045802891254, + 0.0455549992620945, + -0.04709743335843086, + -0.0195995531976223, + 0.048480305820703506, + -0.022059470415115356, + 0.0032311337999999523, + -0.030635936185717583, + 0.01648809015750885, + -0.009221363812685013, + -0.05169814079999924, + 0.002704246435314417, + -0.044278502464294434, + 0.04664533957839012, + 0.01336333155632019, + 0.03957141935825348, + -0.005072747357189655, + 0.07696215063333511, + 0.01458664145320654, + 0.03688545525074005, + 0.03736414015293121, + 0.024479495361447334, + -0.03949163481593132, + -0.06643105298280716, + -0.020357472822070122, + -0.09499267488718033, + -0.012671895325183868, + 0.028694596141576767, + -0.011255781166255474, + -0.01716623082756996, + -0.04020966589450836, + 0.02639424242079258, + -0.06690973788499832, + -0.004351393319666386, + 0.041113853454589844, + 0.03433246165513992, + 0.09664148837327957, + 0.11424650996923447, + 0.0732390359044075, + -0.03252409026026726, + 0.05579357221722603, + -0.020663300529122353, + -0.047868650406599045, + -0.009474003687500954, + 0.018495915457606316, + -0.02280409261584282, + 0.024772027507424355, + -0.024625761434435844, + -0.021833423525094986, + -0.030848685652017593, + 0.03002428077161312, + -0.06669698655605316, + 0.006940954364836216, + -0.04986317828297615, + -0.03951822966337204, + 0.01951977238059044, + -0.054410699754953384, + 0.02967856265604496, + 0.0026311136316508055, + 0.061537809669971466, + 0.007632390595972538, + -0.06403761357069016, + -0.0327102430164814, + -0.021713752299547195, + -0.034172896295785904, + 0.018283165991306305, + -0.015490827150642872, + 0.03638017550110817, + 0.050793956965208054, + 0.020663300529122353, + -0.09446080029010773, + -0.04877283424139023, + -0.03560895845293999, + -0.01166133489459753, + 0.024120481684803963, + -0.02922647073864937, + 0.03196562081575394, + 0.07472828030586243, + 0.017964040860533714, + 0.021899906918406487, + -0.011481828056275845, + 0.021248362958431244, + 0.06355892866849899, + 0.000400775286834687, + -0.024599168449640274, + -0.004301530309021473, + -0.03630039468407631, + 0.004088780377060175, + 0.014054767787456512, + 0.061431434005498886, + 0.002622803207486868, + -0.07717490196228027, + 0.027657441794872284, + -0.061644185334444046, + 0.021487705409526825, + -0.058080628514289856, + 0.007951514795422554, + 0.028721190989017487, + 0.0007762034656479955, + -0.012951129116117954, + -0.019253835082054138, + -0.03757689148187637, + -0.04217759892344475, + -0.007678929250687361, + 0.047655899077653885, + 0.020849457010626793, + -0.025609727948904037, + 0.025450166314840317, + 0.054729823023080826, + 0.038454484194517136, + 0.051272641867399216, + 0.04265628755092621, + 0.027684036642313004, + -0.048214368522167206, + -0.025144338607788086, + -0.017485354095697403, + -0.044065751135349274, + 0.003088192781433463, + 0.080259770154953, + 0.038401294499635696, + 0.047709088772535324, + -0.05850612744688988, + -0.00805788952857256, + -0.02330937422811985, + 0.0034073172137141228, + -0.021288253366947174, + -0.04055538401007652, + 0.00809113122522831, + 0.0074595315381884575, + -0.027364911511540413, + 0.01005241647362709, + -0.04292222484946251 + ] + }, + { + "id": "5abd8a41-981b-4a64-b423-3508d14b4534", + "productId": "4ef7bbed-6c0c-410c-a5d0-3985545ca9f9", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "april41", + "reviewDate": "2022-08-30T12:32:19", + "stars": 3, + "verifiedUser": false + }, + { + "id": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Mouse Mini (Silver)", + "description": "This Amazing Mouse Mini (Silver) is the perfect size for an all your iPad gaming needs. When it comes to the smaller-size mouse in my hands,", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2020-10-26T20:29:47", + "price": 530.82, + "stock": 89, + "priceHistory": [ + { + "priceDate": "2021-11-02T03:32:22", + "newPrice": 537.74 + }, + { + "priceDate": "2022-09-27T03:32:22", + "newPrice": 530.82 + } + ], + "descriptionVector": [ + -0.014288531616330147, + 0.005654142238199711, + -0.033264558762311935, + -0.02795840986073017, + 0.0475887805223465, + -0.04511416703462601, + -0.03866588696837425, + -0.014966672286391258, + 0.01604931615293026, + 0.06391173601150513, + -0.038475532084703445, + 0.010178050957620144, + 0.05439397692680359, + -0.0015198667533695698, + -0.003694079117849469, + -0.009821134619414806, + -0.016537101939320564, + 0.0011190799996256828, + -0.039451099932193756, + 0.02762528881430626, + 0.053394615650177, + -0.08903861045837402, + 0.04049805551767349, + 0.042496781796216965, + -0.012266009114682674, + -0.020415587350726128, + -0.016489513218402863, + 0.004083712585270405, + 0.0026828176341950893, + 0.04675597697496414, + 0.0017697078874334693, + 0.044614482671022415, + 0.005118768196552992, + 0.026506951078772545, + -0.04789811000227928, + -0.005532195791602135, + -0.0322176069021225, + 0.0029534788336604834, + -0.00045023448183201253, + 0.03557261452078819, + -0.020653530955314636, + 0.038523118942976, + -0.0024062078446149826, + -0.0024121564347296953, + 0.009749751538038254, + 0.071525938808918, + -0.06838507950305939, + -0.0315275676548481, + -0.02550758793950081, + 0.019570887088775635, + -0.010350559838116169, + 0.00030393616179935634, + 0.0016433001728728414, + 0.036881305277347565, + -0.029433662071824074, + -0.08256653696298599, + -0.012658616527915001, + 0.06914649903774261, + 0.02469857782125473, + -0.03031405434012413, + 0.0003693707403726876, + -0.11154810339212418, + 0.016073111444711685, + -0.005764191038906574, + -0.05610717460513115, + -0.09313124418258667, + -4.473066655918956e-05, + 0.038427941501140594, + 0.050682052969932556, + 0.027434933930635452, + -0.020379895344376564, + -0.07114522904157639, + -0.017726821824908257, + -0.012117293663322926, + 0.020831989124417305, + -0.01177822332829237, + 0.06743330508470535, + 0.05948597937822342, + 0.03545364364981651, + 0.018071839585900307, + -0.01902361586689949, + -0.05187177285552025, + -0.022997278720140457, + -0.003524544183164835, + 0.09841360151767731, + 0.036476802080869675, + 0.04785051941871643, + -0.09075180441141129, + -0.008797976188361645, + 0.08161476254463196, + -0.0674808919429779, + 0.025983475148677826, + 0.06457797437906265, + 0.014835802838206291, + 0.0015421740245074034, + 0.02280692383646965, + -0.022723643109202385, + 0.051205530762672424, + 0.030123699456453323, + -0.030504409223794937, + 0.046732183545827866, + 0.00934524741023779, + -0.04244919493794441, + -0.015466353856027126, + -0.07761730253696442, + 0.011867452412843704, + -0.007834303192794323, + -0.04102152958512306, + -0.0013614853378385305, + -0.18340717256069183, + 0.03205104544758797, + 0.026316596195101738, + 0.00032866004039533436, + -0.019118793308734894, + -0.0018277066992595792, + -0.023068662732839584, + -0.08342313766479492, + 0.01839306391775608, + -0.03523949161171913, + 0.032122429460287094, + 0.01621587760746479, + -0.002110264962539077, + 0.03528708219528198, + 0.03954627737402916, + -0.03799964115023613, + -0.021676691249012947, + 0.014407503418624401, + 0.0315275676548481, + -0.019118793308734894, + -0.10355319082736969, + -0.014597859233617783, + 0.041973307728767395, + 0.057106539607048035, + 0.011165518313646317, + -0.03002852201461792, + -0.01867859624326229, + -0.01460975594818592, + 0.013324858620762825, + -0.0238895695656538, + 0.042330220341682434, + 0.02629280276596546, + 0.01154622808098793, + -0.0399031937122345, + -0.03302661329507828, + -0.06657670438289642, + -0.016537101939320564, + -0.03747616708278656, + -0.004726160783320665, + -0.07909255474805832, + 0.03276487812399864, + -0.02629280276596546, + -0.007174008991569281, + 0.007875943556427956, + -0.1150696724653244, + 0.04085496813058853, + 0.05981909856200218, + -0.03071855939924717, + -0.0196065790951252, + -0.017667334526777267, + 0.10155446082353592, + 0.04968268796801567, + -0.010814550332725048, + 0.0044525256380438805, + -0.011474844999611378, + -0.02933848462998867, + 0.023853877559304237, + -0.0006149362889118493, + 0.04144982993602753, + -0.03702407330274582, + 0.005002770572900772, + -0.04568523168563843, + -0.017512671649456024, + -0.023473167791962624, + -0.03364526852965355, + 0.08304242789745331, + -0.004904618952423334, + 0.005267483182251453, + -0.06605322659015656, + -0.05087240785360336, + 0.0053983526304364204, + 0.020272821187973022, + 0.06871820241212845, + -0.0519193597137928, + 0.03892762213945389, + 0.07495233416557312, + 0.002273851539939642, + 0.02074870839715004, + 0.01633485034108162, + -0.031099269166588783, + -0.04273472726345062, + 0.03136100620031357, + -0.01869049482047558, + -0.00029018003260716796, + -0.07071693241596222, + -0.001402381923981011, + 0.03752375394105911, + 0.011266644112765789, + -0.017155755311250687, + 0.014538372866809368, + 0.055155400186777115, + -0.01200427021831274, + 0.055440932512283325, + 0.032003454864025116, + 0.018297886475920677, + 0.026102447882294655, + -0.015061849728226662, + -0.00845295749604702, + -0.030052315443754196, + 0.05677341669797897, + -0.06671947240829468, + 0.04537590220570564, + 0.038713473826646805, + -0.010737218894064426, + 0.004143198486417532, + 0.059343211352825165, + 0.029933344572782516, + 0.051205530762672424, + 0.00982708390802145, + -0.02762528881430626, + -0.004104532301425934, + -0.008601672016084194, + 0.027768054977059364, + 0.0015748912701383233, + -0.033097997307777405, + -0.023342298343777657, + -0.00412535248324275, + 0.08090092986822128, + 0.05325184762477875, + 0.007715331390500069, + 0.023021074011921883, + -0.050919998437166214, + -0.03128962591290474, + 0.01758405566215515, + 0.0646255686879158, + -0.08737300336360931, + 0.028743624687194824, + -0.026054859161376953, + -0.023342298343777657, + -0.0034442381002008915, + 0.020546456798911095, + -0.023568345233798027, + -0.008774181827902794, + -0.04080738127231598, + 0.009559396654367447, + 0.08032986521720886, + -0.05506022274494171, + 0.04340096935629845, + 0.0342877171933651, + -0.016120700165629387, + 0.035263288766145706, + -0.07461921125650406, + -0.021522026509046555, + 0.010653939098119736, + 0.06986033171415329, + -0.0044436026364564896, + 0.04996822029352188, + 0.13305823504924774, + 0.02051076479256153, + -0.05644029751420021, + -0.036072298884391785, + 0.015716195106506348, + 0.004669649060815573, + 0.008101990446448326, + 0.07856907695531845, + 0.005434044171124697, + 0.03907039016485214, + 0.03483498841524124, + -0.05282354727387428, + 0.029267100617289543, + -0.014930980280041695, + -0.07271566241979599, + -0.04870712012052536, + 0.06286478042602539, + -0.048564352095127106, + -0.04992063343524933, + 0.012373083271086216, + -0.06300754845142365, + 0.03457324951887131, + 0.05058687552809715, + 0.03243175521492958, + 0.0532994344830513, + 0.0717162936925888, + 0.0630551353096962, + 0.09784253686666489, + -0.01361039187759161, + -0.01855962537229061, + 0.013681774958968163, + 0.013063120655715466, + -0.03088511899113655, + 0.0045685232616961, + 2.379439138167072e-05, + -0.06124676391482353, + 0.08504115045070648, + -0.009577242657542229, + 0.03638162463903427, + -0.010695578530430794, + 0.028291530907154083, + 0.04016493260860443, + -0.02888639084994793, + -0.04337717592716217, + -0.007287032436579466, + -0.02653074637055397, + -0.061056409031152725, + -0.0315275676548481, + 0.04711289331316948, + 0.0420684851706028, + -0.06148470565676689, + -0.02235483005642891, + -0.10783617943525314, + 0.01450268179178238, + 0.09051386266946793, + -0.020141951739788055, + -0.06253165751695633, + 0.007554719224572182, + 0.05563128739595413, + -0.09850878268480301, + 0.04061702638864517, + 0.012057807296514511, + 0.03400218486785889, + -0.041235681623220444, + 0.022842615842819214, + -0.0028895314317196608, + -0.023853877559304237, + 0.07899738103151321, + 0.044376540929079056, + -0.020843885838985443, + -0.028220148757100105, + -0.04397203400731087, + -0.004589342977851629, + -0.05720171704888344, + -0.0050146677531301975, + -0.04773154854774475, + -0.013800746761262417, + -0.05030134320259094, + 0.009464219212532043, + -0.04892126843333244, + -0.020939065143465996, + 0.07671311497688293, + 0.0703362226486206, + 0.09355954825878143, + -0.024912727996706963, + -0.04585179314017296, + 0.019570887088775635, + 0.02120080217719078, + -0.07133558392524719, + -0.052871137857437134, + -0.0773317739367485, + -0.044162388890981674, + 0.02190273627638817, + 0.0036702847573906183, + 0.0012930764351040125, + -0.08732541650533676, + 2.8162892704131082e-05, + 0.00563034787774086, + 0.03799964115023613, + -0.019558990374207497, + -0.0026694333646446466, + -0.01982072740793228, + 0.04156880080699921, + 0.06938444823026657, + 0.014038690365850925, + 0.01569240167737007, + -0.04144982993602753, + 0.04016493260860443, + -0.007875943556427956, + 0.04097394272685051, + -0.02745872735977173, + -0.04002216458320618, + -0.04175915569067001, + -0.05425121262669563, + -0.01409817673265934, + -0.09651005268096924, + -0.03321697190403938, + 0.07476197928190231, + -0.05472709983587265, + 0.01713196188211441, + 0.08913379162549973, + -0.013455728068947792, + -0.07485715299844742, + 0.009380938485264778, + 0.04568523168563843, + 0.029433662071824074, + -0.03414495289325714, + -0.05558369681239128, + 0.05834384635090828, + -0.0589149110019207, + 0.013324858620762825, + -0.0025980500504374504, + 0.05353737995028496, + 0.03164653852581978, + 0.017096269875764847, + -0.053442202508449554, + 0.00271404767408967, + -0.018143223598599434, + 0.050110988318920135, + -0.032407961785793304, + 0.05015857517719269, + 0.041687771677970886, + -0.018833260983228683, + 0.001061081187799573, + 0.044091008603572845, + 0.020760606974363327, + 0.01215298566967249, + -0.017334213480353355, + -0.008851513266563416, + -0.08670676499605179, + 0.003634593216702342, + 0.09712870419025421, + -0.07252530753612518, + -0.08799165487289429, + -0.010255382396280766, + 0.02394905500113964, + -0.001111644203774631, + 0.02097475528717041, + 0.0392131581902504, + 0.041687771677970886, + 0.019261559471488, + 0.006370948161929846, + 0.05353737995028496, + -0.06786160171031952, + 0.022438110783696175, + -0.028101176023483276, + 0.020950961858034134, + -0.012396877631545067, + -0.07223977148532867, + 0.022830719128251076, + -0.05691618472337723, + 0.06614840775728226, + 0.07471438497304916, + -0.06338825821876526, + 0.03454945608973503, + -0.021343568339943886, + -0.06819472461938858, + -0.033835623413324356, + -0.028624651953577995, + -0.003863614285364747, + -0.039046596735715866, + 0.05163382738828659, + 0.03059958666563034, + 0.04183053970336914, + -0.002611434319987893, + -0.07914014160633087, + 0.0037624880205839872, + -0.01314640138298273, + -0.016418129205703735, + 0.051205530762672424, + -0.02240241877734661, + 0.049825455993413925, + 0.08832477778196335, + -0.06262683868408203, + 0.019677961245179176, + -0.04996822029352188, + 0.0196065790951252, + 0.00794137828052044, + 0.030647175386548042, + 0.006775452755391598, + 0.018749980255961418, + 0.10545673966407776, + -0.06348343938589096, + -0.005207997281104326, + -0.009844928979873657, + 0.002959427423775196, + -0.002519231056794524, + 0.040950145572423935, + -0.016596587374806404, + -0.08504115045070648, + 0.01816701702773571, + 0.048683322966098785, + -0.013443831354379654, + 0.05501263216137886, + 0.006216284818947315, + 0.0196541678160429, + 0.012164882384240627, + -0.016691764816641808, + 0.007953274995088577, + -0.04511416703462601, + 0.009351195767521858, + 0.048968855291604996, + 0.012587232515215874, + 0.0745716243982315, + -0.002247082768008113, + 0.04532831534743309, + -0.09907984733581543, + 0.05843902379274368, + 0.07766488939523697, + -0.07552339881658554, + 0.051443472504615784, + -0.0386182963848114, + 0.08765853941440582, + -0.018702391535043716, + 0.05691618472337723, + 0.06938444823026657, + 0.04723186790943146, + -0.0983184278011322, + 0.00281517393887043, + 0.02040369063615799, + -0.042948875576257706, + 0.00270661199465394, + -0.021581511944532394, + 0.06510145217180252, + -0.021355466917157173, + 0.0037386936601251364, + -0.0631503164768219, + 0.11973337829113007, + 0.07347708195447922, + -0.008042504079639912, + -0.011296386830508709, + 0.005044410936534405, + -0.010653939098119736, + -0.008643312379717827, + 0.00010568055586190894, + -0.004363296553492546 + ] + }, + { + "id": "ca7aea9d-4240-4f30-b931-f0b59cf5b16e", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brianna83", + "reviewDate": "2022-02-08T19:57:42", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a44c459c-e2e6-4d43-92f4-6521a1c6d9b3", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nicolereid", + "reviewDate": "2022-02-25T03:59:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bdda8d61-5b6c-4800-8b50-041f7e9e91e5", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jorgegardner", + "reviewDate": "2021-11-02T03:32:22", + "stars": 3, + "verifiedUser": true + }, + { + "id": "179d6983-9988-4a66-a2ac-dcc9cc916fc9", + "productId": "5c09ec35-6e1a-4562-9ea5-22fa9f48422c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "taylornelson", + "reviewDate": "2022-07-17T17:02:49", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker Super (Silver)", + "description": "This Amazing Speaker Super (Silver) is rated 4.9 out of 5 by 38.\n\nRated 5 out of 5 by Chris from Looks great We purchased this speaker for our wife for $250 dollars and", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2020-05-31T11:41:47", + "price": 318.47, + "stock": 5, + "priceHistory": [ + { + "priceDate": "2021-05-23T15:50:20", + "newPrice": 345.11 + }, + { + "priceDate": "2023-11-02T15:50:20", + "newPrice": 318.47 + } + ], + "descriptionVector": [ + 0.006137020420283079, + 0.0063009001314640045, + -0.02257021889090538, + 0.011528104543685913, + -0.02800651267170906, + -0.03499118611216545, + -0.05411427840590477, + 0.018490174785256386, + 0.02841338701546192, + 0.12893393635749817, + -0.00024211137497331947, + -0.0048994445241987705, + -0.010081440210342407, + -0.05687198042869568, + -0.018580591306090355, + -0.008199647068977356, + -0.004868363495916128, + -0.02545224502682686, + -0.03017650730907917, + 0.0035036394838243723, + -0.0319848395884037, + -0.055154066532850266, + -0.0022858423180878162, + -0.006227436941117048, + -0.0354432687163353, + -0.013675495982170105, + -0.008917327970266342, + 0.05438552796840668, + 0.021225273609161377, + -0.03169098496437073, + 0.039692845195531845, + 0.03514941409230232, + -0.013472058810293674, + 0.050497617572546005, + 0.005244157277047634, + 0.05800218880176544, + 0.00533174816519022, + -0.055063650012016296, + 0.013392944820225239, + 0.07025362551212311, + -0.020004650577902794, + -0.029204530641436577, + 0.051085323095321655, + 0.00029438341152854264, + 0.03218827396631241, + 0.0017518197419121861, + 0.0028565963730216026, + 0.05578698217868805, + 0.03856264054775238, + 0.0017080242978408933, + -0.029136719182133675, + 0.007527173962444067, + -0.10000064969062805, + 0.03334108740091324, + 0.032549940049648285, + -0.0589967705309391, + -0.007425455376505852, + 0.07301132380962372, + 0.04317387938499451, + -0.003017650917172432, + 0.036935143172740936, + -0.03474254161119461, + -0.007182461209595203, + -3.0793707992415875e-05, + -0.06695342063903809, + 0.01613934524357319, + -0.019303923472762108, + 0.03908253461122513, + -0.04098128154873848, + 0.04977428540587425, + 0.0686713382601738, + 0.043603360652923584, + 0.040031906217336655, + 0.04995511844754219, + 0.05777614563703537, + -0.034878168255090714, + 0.051582615822553635, + 0.05384302884340286, + -0.05795697867870331, + 0.025633078068494797, + 0.021033139899373055, + 0.030289528891444206, + -0.016218461096286774, + 0.02310141734778881, + 0.0344712920486927, + 0.0010263685835525393, + -0.015382107347249985, + -0.12613102793693542, + -0.01698700152337551, + 0.04039357230067253, + -0.008436989970505238, + -0.008651729673147202, + 0.005693414248526096, + 0.03533024713397026, + 0.04622543603181839, + 0.01392414141446352, + -0.05827343836426735, + 0.014037162065505981, + -0.05443073436617851, + -0.006645612884312868, + 0.016501011326909065, + -0.06292988359928131, + -0.04317387938499451, + 0.021688658744096756, + -0.030538173392415047, + -0.008199647068977356, + 0.017518198117613792, + -0.04706178978085518, + 0.03521722927689552, + -0.12441311031579971, + 0.013370340690016747, + -0.01052222028374672, + -0.03465212509036064, + -0.031464941799640656, + 0.07784861326217651, + 0.06808362901210785, + -0.008883421309292316, + -0.04129773750901222, + -0.008939932100474834, + -0.03569191321730614, + -2.7328034775564447e-05, + -0.0064308736473321915, + -0.0029131066985428333, + 0.044530127197504044, + 0.09294816851615906, + -0.01983512006700039, + 0.027983907610177994, + 0.042857423424720764, + 0.02157563902437687, + -0.02015157788991928, + -0.06550675630569458, + 0.03967024013400078, + -0.008883421309292316, + 0.016625335440039635, + -0.039851073175668716, + 0.04016753286123276, + -0.010284877382218838, + 0.013845027424395084, + 0.012228832580149174, + -0.03458431363105774, + 0.004444536287337542, + 0.07029882818460464, + 0.060398224741220474, + 0.07712528109550476, + -0.026492035016417503, + 0.014828306622803211, + -0.037455037236213684, + 0.02294318750500679, + -0.004082870204001665, + 0.00917162373661995, + 0.036460455507040024, + -0.044665753841400146, + -0.02893328107893467, + -0.036460455507040024, + -0.04373898357152939, + 0.050181157886981964, + -0.11338229477405548, + 0.04104909300804138, + -0.0021798855159431696, + 0.059313226491212845, + -0.044665753841400146, + -0.02303360402584076, + -0.017224343493580818, + -0.0026644612662494183, + 0.002955489559099078, + 0.0833188071846962, + 0.04091346636414528, + 0.07016320526599884, + -0.09584149718284607, + 0.011460292153060436, + 0.0022081404458731413, + -0.06008176505565643, + 0.014873514883220196, + -0.02377954125404358, + 0.041365548968315125, + 0.01086693350225687, + 0.04355815052986145, + -0.016534918919205666, + -0.022886676713824272, + -0.0005075332592241466, + -0.004746866412460804, + 0.09683607518672943, + -0.02312402054667473, + -0.038020141422748566, + -0.0012771331239491701, + 0.04828241467475891, + 0.040597010403871536, + -0.02409599907696247, + -0.007306783925741911, + 0.07346341013908386, + 0.0046818796545267105, + -0.011991488747298717, + -0.034200042486190796, + 0.012025395408272743, + -0.11256854981184006, + -0.039240762591362, + 0.07215236872434616, + 0.03327327221632004, + -0.005634078290313482, + -0.0016091312281787395, + -0.004633845761418343, + 0.06564237922430038, + 0.06803841888904572, + -0.05135657265782356, + 0.00033747253473848104, + -0.06446696817874908, + 0.045524708926677704, + 0.0983731597661972, + 0.009680217131972313, + -0.011584614403545856, + 0.008465245366096497, + 0.027870887890458107, + 0.02418641559779644, + 0.0712934136390686, + 0.07635673880577087, + 0.0795213133096695, + 0.002147391904145479, + 0.019473453983664513, + -0.002507645171135664, + -0.07970214635133743, + 0.05013595148921013, + -0.04089086502790451, + 0.04828241467475891, + 0.03424525260925293, + -0.053164903074502945, + -0.02511318400502205, + -0.0011549295159056783, + -0.029950467869639397, + 0.052486781030893326, + -0.0050604986026883125, + 0.012500081211328506, + -0.026379015296697617, + 0.005348701495677233, + 0.05709802359342575, + -0.05800218880176544, + 0.006498686037957668, + -0.033793170005083084, + -0.03790711984038353, + -0.08422297239303589, + 0.04520825296640396, + -0.03467473015189171, + -0.0018916827393695712, + -0.01667054370045662, + -0.023395270109176636, + -0.07007279247045517, + -0.08047068864107132, + 0.09227003902196884, + -0.0651450902223587, + -0.07002758234739304, + -0.02545224502682686, + -0.11139313131570816, + -0.052486781030893326, + -0.0699823722243309, + 0.035963162779808044, + 0.012647008523344994, + 0.016806168481707573, + 0.0627942606806755, + -0.029860051348805428, + 0.078481525182724, + 0.0030995907727628946, + -0.020388921722769737, + -0.02210683561861515, + 0.017179135233163834, + 0.04324169456958771, + -0.08933150768280029, + -0.013019976206123829, + -0.010793469846248627, + -0.03383837640285492, + -0.015755075961351395, + -0.027531825006008148, + -0.06573279947042465, + 0.00878735352307558, + 0.019179601222276688, + 0.011115578934550285, + -0.07007279247045517, + 0.049412619322538376, + -0.00822790153324604, + -0.033386293798685074, + -0.011448989622294903, + 0.014681380242109299, + 0.11410562694072723, + 0.049819495528936386, + 0.033047232776880264, + -0.02644682675600052, + 0.06912341713905334, + -0.032301295548677444, + 0.010053184814751148, + 0.01554033625870943, + 0.05122094973921776, + 0.013019976206123829, + -0.02710234746336937, + 0.025994744151830673, + 0.06930425018072128, + 0.10171856731176376, + 0.03788451477885246, + 0.03474254161119461, + 0.021722564473748207, + -0.042518362402915955, + -0.05393344536423683, + -0.026469431817531586, + 0.07961173355579376, + 0.032549940049648285, + -0.075995072722435, + -0.050090741366147995, + -0.00604660389944911, + 0.04294783994555473, + -0.020999232307076454, + 0.05917760357260704, + -0.03175879642367363, + -0.031216297298669815, + 0.08634775876998901, + -0.027622241526842117, + 0.013901537284255028, + -0.01704351045191288, + 0.0872519239783287, + 0.004551905672997236, + -0.011901072226464748, + 0.044846586883068085, + 0.038110557943582535, + 0.03092244453728199, + -0.05908718705177307, + -0.03214306756854057, + -0.019676892086863518, + 0.03896951302886009, + -0.04174982011318207, + 0.009533289819955826, + -0.018727518618106842, + -0.0697111263871193, + -0.013890235684812069, + 0.05777614563703537, + 0.0674959197640419, + -0.02393776923418045, + 0.023982977494597435, + -0.005235680844634771, + 0.011296411976218224, + 0.03372535482048988, + -0.017314760014414787, + 0.031623173505067825, + 0.031216297298669815, + 0.031058069318532944, + 0.059810519218444824, + -0.04995511844754219, + 0.0490509532392025, + -0.01342685054987669, + 0.0428348183631897, + -0.023802144452929497, + 0.033386293798685074, + -0.05379781872034073, + 0.015246482565999031, + 0.013935443945229053, + 0.0011845974950119853, + -0.03905992954969406, + 0.018049394711852074, + -0.010669147595763206, + 0.04972907900810242, + -0.0017080242978408933, + -0.011968884617090225, + -0.06546154618263245, + 0.07726090401411057, + -0.0391729511320591, + 0.008205297403037548, + -0.0022293319925665855, + -0.025248808786273003, + -0.02427683211863041, + -0.0007367532234638929, + 0.008278761059045792, + -0.030945047736167908, + 0.032210879027843475, + -0.021654753014445305, + -0.09236045926809311, + -0.06333675980567932, + -0.02875244803726673, + -0.04896053671836853, + -0.04358075559139252, + 0.03349931538105011, + 0.02952098846435547, + 0.012319249100983143, + -0.0006802428979426622, + -0.012647008523344994, + 0.029407968744635582, + 0.03234650567173958, + 0.03092244453728199, + 0.03747764229774475, + -0.002323986729606986, + 0.0264242235571146, + 0.020321108400821686, + -0.040280550718307495, + 0.05461156740784645, + -0.0576857291162014, + 0.05122094973921776, + -0.0137998191639781, + -0.027712658047676086, + -0.028187345713377, + 0.08019943535327911, + 0.10632980614900589, + -0.01952996477484703, + 0.014783098362386227, + 0.07124820351600647, + -0.034132231026887894, + -0.031464941799640656, + -0.031555358320474625, + 0.029385363683104515, + 0.04588637501001358, + -0.05777614563703537, + -0.02592693269252777, + -0.10741480439901352, + -0.0227284487336874, + 0.03533024713397026, + -0.07228799164295197, + -0.05551573261618614, + -0.007583684287965298, + -0.027667449787259102, + -0.017970280721783638, + 0.023734332993626595, + 0.00804141815751791, + 0.0600365586578846, + 0.09710732847452164, + -0.04909616336226463, + 0.09394274652004242, + -0.029114114120602608, + 0.05501844361424446, + 0.06573279947042465, + 0.09132067114114761, + 0.0330924391746521, + -0.020931420847773552, + 0.034041814506053925, + 0.042021069675683975, + -0.0012425205204635859, + 0.011200344190001488, + -0.046428874135017395, + -0.04511783644556999, + -0.05443073436617851, + 0.008595218881964684, + -0.03580493479967117, + -0.054159484803676605, + 0.016523616388440132, + -0.025746099650859833, + 0.008781703189015388, + -0.05244157090783119, + 0.013178205117583275, + -0.01819632202386856, + 0.004591463133692741, + 0.0030713356100022793, + 0.02793869934976101, + -0.10623939335346222, + -0.05709802359342575, + -0.03713857755064964, + 0.05334573611617088, + 0.018851840868592262, + 0.010437455028295517, + 0.04075523838400841, + 0.03517201915383339, + -0.029792238026857376, + 0.01488481741398573, + 0.02102183736860752, + 0.012059301137924194, + -0.016218461096286774, + 0.0907781720161438, + -0.06446696817874908, + -0.026288598775863647, + -0.04972907900810242, + 0.040529198944568634, + 0.000547796837054193, + 0.034041814506053925, + -0.01832064427435398, + -0.001770185655914247, + -0.05827343836426735, + -0.001946780364960432, + -0.00725027360022068, + 0.026627659797668457, + 0.02241199091076851, + -0.014432734809815884, + 0.018829237669706345, + -0.013144299387931824, + -0.04868928715586662, + -0.008346573449671268, + 0.02052454650402069, + 0.0029413618613034487, + 0.07423195242881775, + 0.050588034093379974, + -0.004727087914943695, + 0.030696403235197067, + 0.01711132377386093, + 0.021553033962845802, + 0.11329188197851181, + 0.007498918566852808, + -0.006979024037718773, + -0.024457665160298347, + -0.012341853231191635, + 0.026152973994612694, + -0.008832561783492565, + 0.10415980964899063, + -0.00822790153324604, + -0.05976530909538269, + -0.035940561443567276, + -0.05045240744948387, + -0.00640261871740222, + -0.053481362760066986, + -0.005035068839788437, + 0.03607618436217308, + 0.03842701390385628, + -0.06446696817874908, + 0.01271482091397047, + 0.03698034957051277, + 0.005713192746043205, + -0.056736357510089874, + -0.10759563744068146, + -0.08951234072446823, + -0.06333675980567932, + 0.12332811206579208, + 0.07622111588716507, + 0.036053579300642014 + ] + }, + { + "id": "8fca997a-bdaf-4ffc-ab70-9daf1758b269", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "hmullins", + "reviewDate": "2022-11-30T19:06:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "392d69e0-99b7-4df6-ba41-376e5df47c70", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "wmiller", + "reviewDate": "2021-07-24T00:58:57", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4fd45b1c-9bf0-4103-a3e6-fcc4533f35fe", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "kevans", + "reviewDate": "2021-11-01T03:27:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c6b7e076-beea-4b81-ab98-9a78ca957663", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "roy77", + "reviewDate": "2022-12-13T20:24:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "69759508-a4f8-43ff-9c0a-c5ad5819754f", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "matthew02", + "reviewDate": "2022-01-07T20:38:14", + "stars": 2, + "verifiedUser": true + }, + { + "id": "476f2f6f-25ef-4a6c-aa51-1081ff5e2cb5", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "vthompson", + "reviewDate": "2022-07-09T21:57:46", + "stars": 1, + "verifiedUser": false + }, + { + "id": "bc276e69-fff0-4cb3-951e-a14fd2541c84", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "jack35", + "reviewDate": "2021-07-26T14:23:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "39c35150-5033-422e-9381-a3eb3c9ef479", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "savannahshah", + "reviewDate": "2021-06-06T22:41:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b5a9849-6235-4748-8f83-d4ed9aa9c2d0", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "petersonalexander", + "reviewDate": "2022-05-29T00:20:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3f9e8b1b-c4ca-4914-8a23-88e3c2401b56", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "mwolfe", + "reviewDate": "2022-02-21T23:58:10", + "stars": 2, + "verifiedUser": true + }, + { + "id": "aacb487b-488a-456e-838a-e3168545c168", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "morrissara", + "reviewDate": "2022-10-12T06:53:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7dc08cb9-5179-4d46-afc6-031258e00ee8", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "ajohnson", + "reviewDate": "2021-05-23T15:50:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cd04f9d7-89ff-439c-a476-0dad2920385f", + "productId": "3efd4682-148c-48ca-bda4-943dd4e87e76", + "category": "Media", + "docType": "customerRating", + "userName": "riley25", + "reviewDate": "2022-08-24T20:36:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "product", + "name": "Basic Stand Micro (Silver)", + "description": "This Basic Stand Micro (Silver) is equipped with the Bipolar Sizer & 3200mAh battery charger, it has two output lines with 2-wire interface for high capacity mode. This micro provides much more", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-10-20T16:56:22", + "price": 126.9, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-04-06T00:26:38", + "newPrice": 131.15 + }, + { + "priceDate": "2024-03-05T00:26:38", + "newPrice": 126.9 + } + ], + "descriptionVector": [ + -0.00023900778614915907, + 0.04706614837050438, + -0.021166395395994186, + 0.019374672323465347, + -0.010670109651982784, + 0.0377064011991024, + -0.031020870432257652, + 0.058244358748197556, + 0.0034330207854509354, + 0.02174135111272335, + 0.0016245844308286905, + -0.04931248724460602, + 0.024789953604340553, + -0.028293173760175705, + 0.05701421946287155, + -0.037198301404714584, + -0.03840169683098793, + 0.011285178363323212, + 0.029897700995206833, + 0.03834821283817291, + 0.0714549720287323, + -0.08530739694833755, + -0.024576017633080482, + 0.06920862942934036, + -0.020952459424734116, + -0.0020374159794300795, + -0.0022663953714072704, + -0.0018234789604321122, + -0.050729818642139435, + -0.0020892289467155933, + -0.0255387332290411, + 0.028266431763768196, + -0.04995429888367653, + 0.03372182697057724, + -0.04417799785733223, + -0.05356448516249657, + 0.0845051258802414, + -0.04685221239924431, + 0.023225540295243263, + -0.03310675546526909, + -0.0007805359200574458, + 0.05201344192028046, + 0.03168942406773567, + 0.006675504148006439, + 0.04596972092986107, + 0.05877920240163803, + -0.070224829018116, + -0.03043254278600216, + -0.00854411069303751, + -0.03928418830037117, + 0.009834418073296547, + 0.0025672444608062506, + -0.07883580029010773, + 0.04487329348921776, + 0.06594609469175339, + 0.00956031121313572, + 0.025699187070131302, + 0.1848416030406952, + 0.06498337537050247, + -0.025217827409505844, + 0.025699187070131302, + -0.026020092889666557, + -0.005502193234860897, + 0.05722815915942192, + -0.05519575625658035, + 0.022035514935851097, + 0.04038061574101448, + 0.02507074736058712, + 0.039203960448503494, + 0.050917014479637146, + -0.05835132673382759, + 0.04334899038076401, + 0.019214220345020294, + 0.027383940294384956, + -0.01309695839881897, + 0.04596972092986107, + 0.1158469021320343, + 0.04631736874580383, + 0.08397028595209122, + -0.025605589151382446, + -0.006752387620508671, + -0.0012543729972094297, + -0.05610498785972595, + 0.00626768684014678, + 0.03225100785493851, + 0.016727201640605927, + 0.049152035266160965, + -0.09792967885732651, + -0.07193633168935776, + 0.05420629680156708, + 0.015015705488622189, + 0.006735674105584621, + 0.007320657838135958, + 0.02797226794064045, + 0.014734913595020771, + 0.030780190601944923, + 0.029630279168486595, + 0.04222582280635834, + -0.0016981252701953053, + -0.05589105188846588, + 0.04867067560553551, + 0.028747789561748505, + -0.016566749662160873, + -0.019174106419086456, + 0.020698407664895058, + 0.03701110556721687, + 0.027811814099550247, + 0.0083234878256917, + -0.04110265150666237, + -0.14119844138622284, + -0.058458294719457626, + -0.03620884194970131, + -0.015697630122303963, + -0.0007466903771273792, + -0.027624620124697685, + -0.009540255181491375, + -0.02266395464539528, + 0.0434827022254467, + -0.050088007003068924, + -0.10386642813682556, + 0.0586722306907177, + 0.020324017852544785, + 0.01409310195595026, + 0.017422497272491455, + -0.03436363488435745, + -0.033855535089969635, + -0.008965298533439636, + -0.04388383403420448, + 0.008878386579453945, + -0.031849876046180725, + -0.05399236083030701, + 0.002109285444021225, + -0.0072270603850483894, + -0.08017290383577347, + -0.03217078372836113, + 0.02727697230875492, + 0.029416343197226524, + 0.08156349509954453, + -0.044017545878887177, + 0.09595075994729996, + -0.03393576294183731, + -0.04022016376256943, + 0.058458294719457626, + 0.011692996136844158, + -0.07081315666437149, + 0.01141888927668333, + -0.04145029932260513, + 0.023853980004787445, + 0.0009844446321949363, + 0.09338351339101791, + 0.013691970147192478, + -0.0976087749004364, + -0.006478280760347843, + -0.10718245804309845, + 0.04155727103352547, + 0.01409310195595026, + -0.06680183857679367, + -0.07075967639684677, + -0.07840792089700699, + -0.0007537938072346151, + 0.0019705607555806637, + 0.034497346729040146, + 0.03834821283817291, + 0.02373364008963108, + -0.036716945469379425, + 0.011947046034038067, + 0.08418422192335129, + 0.08274015039205551, + -0.06193477287888527, + 0.05254828557372093, + 0.004783498588949442, + -0.02643459476530552, + -0.04110265150666237, + -0.05706770345568657, + -0.026528192684054375, + -0.021821577101945877, + -0.01688765548169613, + 0.02192854695022106, + -0.0354333221912384, + -0.010128581896424294, + 0.0035433322191238403, + 0.008196462877094746, + -0.04112939536571503, + 0.05813739076256752, + 0.04952642321586609, + 0.018131162971258163, + -0.031234808266162872, + -0.000626768684014678, + 0.041156139224767685, + -0.03278585150837898, + 0.046985920518636703, + -0.012669083662331104, + -0.01088404655456543, + -0.030138380825519562, + 0.03701110556721687, + -0.0030486027244478464, + -0.023185426369309425, + 0.04677198454737663, + 0.0048603820614516735, + -0.004018004983663559, + -0.017048107460141182, + 0.06557170301675797, + -0.00966728013008833, + -0.004596303682774305, + -0.0422525629401207, + 0.011097983457148075, + -0.05728164315223694, + 0.08851645141839981, + -0.015229642391204834, + 0.010262291878461838, + 0.018492182716727257, + -0.07092012465000153, + -0.0055723912082612514, + -0.016700459644198418, + 0.0869654044508934, + 0.0711340680718422, + 0.05388539284467697, + -0.06466247141361237, + 0.07578719407320023, + -0.01085730455815792, + 0.03425666689872742, + -0.0412096232175827, + 0.03257191553711891, + -0.048938095569610596, + -0.07712430506944656, + -0.07354085892438889, + 0.03957835212349892, + 0.010476229712367058, + 0.03398924693465233, + 0.030753448605537415, + -0.016994623467326164, + 0.028721047565340996, + 0.03521938621997833, + -0.028507109731435776, + -0.06289748847484589, + 0.021407075226306915, + -0.0047500706277787685, + -0.06097205728292465, + -0.12461832165718079, + 0.040273647755384445, + -0.0711340680718422, + 0.07092012465000153, + -0.03832147270441055, + 0.008503996767103672, + -0.0028012380935251713, + -0.008116235956549644, + 0.03746572509407997, + 0.013110329397022724, + -0.036957621574401855, + -0.013270781375467777, + -0.047413796186447144, + 0.0058565265499055386, + 0.03746572509407997, + 0.011004386469721794, + 0.0044592502526938915, + 0.06311142444610596, + 0.05324358120560646, + -0.053377289324998856, + -0.03412295877933502, + -0.017596321180462837, + 0.024509161710739136, + -0.044712841510772705, + -0.04375012218952179, + 0.07332692295312881, + -0.07027831673622131, + 0.00038943227264098823, + 0.06739016622304916, + 0.040300387889146805, + -0.02107279747724533, + 0.010676795616745949, + 0.0035399894695729017, + -0.05273548141121864, + 0.057335127145051956, + -0.010175379924476147, + -0.05519575625658035, + 0.0063479128293693066, + -0.05487484857439995, + 0.08974658697843552, + 0.00036770428414456546, + -0.04243975877761841, + 0.10333158820867538, + 0.005375167820602655, + 0.09108369052410126, + 0.01928107626736164, + 0.03179639205336571, + 0.0031522284261882305, + 0.04110265150666237, + 0.03356137126684189, + -0.03955160826444626, + -0.037626177072525024, + -0.01972232013940811, + -0.0004608838935382664, + 0.002896506804972887, + 0.05265525355935097, + 0.024255111813545227, + -0.04201188683509827, + 0.054714396595954895, + -0.007093349937349558, + -9.354522626381367e-05, + 0.04923225939273834, + -0.04235953465104103, + 0.053377289324998856, + 0.001451596268452704, + -0.030084894970059395, + 0.0017499381210654974, + 0.07059922069311142, + -0.01110466942191124, + 0.03989925608038902, + -0.08263318240642548, + 0.023492960259318352, + 0.06979695707559586, + -0.010797134600579739, + -0.07482448220252991, + -0.01409310195595026, + 0.03414969891309738, + -0.012147611938416958, + 0.06332536041736603, + 0.0025438449811190367, + -0.0244021937251091, + 0.023439476266503334, + 0.02487018145620823, + 0.05797693878412247, + 0.008851644583046436, + 0.030459284782409668, + 0.031020870432257652, + 0.01521627139300108, + 0.026742130517959595, + 0.06985044479370117, + -0.05260176956653595, + 0.007420940790325403, + 0.020364131778478622, + -0.04968687519431114, + 0.007654934655874968, + -0.07412918657064438, + -0.07953109592199326, + -0.08439815789461136, + 0.0026859126519411802, + 0.005478793755173683, + -0.041182879358530045, + 0.02309182845056057, + 0.04556858912110329, + 0.04706614837050438, + -0.04198514297604561, + -0.053831905126571655, + 0.023399364203214645, + -0.023880722001194954, + 0.007581393700093031, + 0.019147364422678947, + 0.0015794570790603757, + -0.02971050515770912, + 0.0014424036489799619, + -0.030994128435850143, + 0.05105072632431984, + 0.011773222126066685, + 0.0835958942770958, + -0.0559445358812809, + 0.046076688915491104, + 0.015470322221517563, + -0.023573188111186028, + -0.076322041451931, + -0.04260021075606346, + -0.030753448605537415, + 0.05187973007559776, + 0.03481825441122055, + -0.010462857782840729, + 0.024081287905573845, + 0.026461336761713028, + -0.04832302778959274, + -0.013250725343823433, + 0.004011319484561682, + -0.021861691027879715, + -0.004686558153480291, + -0.004676530137658119, + 0.02130010537803173, + -0.035620518028736115, + 0.0266084186732769, + 0.11424237489700317, + 0.009373116306960583, + 0.0018301644595339894, + 0.03615535795688629, + -0.00483698258176446, + 0.0019622037652879953, + -0.056693315505981445, + -0.07792656868696213, + 0.06632047891616821, + -0.0599023699760437, + -0.004566218703985214, + 0.025792783126235008, + -0.02172798104584217, + 0.011606084182858467, + -0.01616561785340309, + -0.008410399779677391, + 0.030111638829112053, + 0.052922673523426056, + 0.017021365463733673, + -0.01750272326171398, + 0.03190336003899574, + -0.0021694551687687635, + 0.007848815061151981, + -0.01329752430319786, + 0.062469616532325745, + -0.049820587038993835, + 0.0075680227018892765, + 0.010055040940642357, + 0.006919526029378176, + -0.020043225958943367, + -0.01386579405516386, + 0.09113717824220657, + -0.011606084182858467, + -0.08017290383577347, + 0.016687089577317238, + -0.09300912916660309, + -0.023666784167289734, + -0.04356293007731438, + 0.03019186481833458, + 0.04503374546766281, + -0.03864237666130066, + -0.002533816732466221, + 0.01532324030995369, + -0.033160239458084106, + -0.003914379049092531, + -0.010255606845021248, + -0.058458294719457626, + -0.011659568175673485, + 0.013170498423278332, + -0.009687336161732674, + -0.06985044479370117, + -0.01498896349221468, + 0.019682208076119423, + -0.03126154839992523, + -0.08883735537528992, + -0.01798408292233944, + -0.015029076486825943, + -0.02532479725778103, + -0.03794708102941513, + -0.05233434587717056, + 0.03749246522784233, + 0.10097828507423401, + -0.0711340680718422, + 0.016152245923876762, + 0.0008574195089749992, + 0.009085638448596, + 0.014400636777281761, + -0.016125503927469254, + -0.11509812623262405, + -0.021046055480837822, + -0.08792812377214432, + 0.020136823877692223, + -0.017021365463733673, + -0.0532168373465538, + 0.0018201362108811736, + 0.023185426369309425, + -0.033186983317136765, + 0.0015844712033867836, + 0.023586558178067207, + 0.013056844472885132, + 0.0030669879633933306, + 0.04728008434176445, + 0.029229147359728813, + 0.010663424618542194, + -0.061613865196704865, + 0.022530244663357735, + 0.0026474709156900644, + -0.023225540295243263, + 0.07862186431884766, + -0.06166734918951988, + 0.02906869538128376, + -0.025819526985287666, + -0.029657021164894104, + 0.05872571840882301, + -0.034978706389665604, + -0.04883112758398056, + 0.1064336746931076, + -0.009045525453984737, + -0.06466247141361237, + -0.006759073119610548, + 0.015630774199962616, + -0.04487329348921776, + -0.03535309433937073, + 0.010516342706978321, + 0.0037806686013936996, + -0.015376724302768707, + -0.08536087721586227, + 0.04941945523023605, + 0.03190336003899574, + -0.018238132819533348, + -0.07503841817378998, + -0.02216922491788864, + 0.0010270648635923862, + 0.07065270841121674, + 0.02044435776770115, + 0.09135111421346664, + 0.022316306829452515, + 0.030699964612722397, + -0.0589931383728981, + -0.002839679829776287, + -0.008878386579453945, + 0.055409692227840424, + -0.0036001591943204403, + 0.054045844823122025, + -0.06102554127573967, + -0.031208064407110214, + 0.007420940790325403, + 0.018278244882822037, + 0.07059922069311142, + 0.044258225709199905, + -0.03701110556721687, + 0.0013095287140458822, + -0.02618054486811161, + -0.033588115125894547, + -0.011572656221687794, + 0.0003349033941049129 + ] + }, + { + "id": "bb72b769-482a-4086-9b31-ed6b24934de2", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "mcdonalddaniel", + "reviewDate": "2021-04-06T00:26:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "42947520-a595-42ea-9803-64e4def36bd8", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "kcruz", + "reviewDate": "2022-05-02T05:40:59", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5a9d1908-fbe3-4492-98b1-f97f8d4da732", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "john88", + "reviewDate": "2021-11-30T09:09:29", + "stars": 3, + "verifiedUser": true + }, + { + "id": "38dc2165-3bd9-4d0a-a802-cd687c24fbb2", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "halljulia", + "reviewDate": "2022-07-17T09:08:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6bdbd957-7da1-44ac-9db2-14f4a9d33c83", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "warrenalexandra", + "reviewDate": "2022-11-22T23:08:28", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4453c02d-0107-4f20-b617-24baa5c7c647", + "productId": "70ea85a7-5f7e-4dd6-b3b5-b456f437d689", + "category": "Accessory", + "docType": "customerRating", + "userName": "gavin50", + "reviewDate": "2021-06-03T11:19:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e8675620-455d-4417-a026-8cd2625f775d", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Micro (Silver)", + "description": "This Premium Speaker Micro (Silver) is rated 4.89 out of 5 by 15.\n\nRated 5 out of 5 by Anonymous from Best Micro I've Ever MADE A GOOD Micro Speaker I will get one for a large crowd. If you're like most Micro speakers,", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-07-07T15:54:04", + "price": 131.49, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-06-02T22:47:59", + "newPrice": 140.29 + }, + { + "priceDate": "2021-12-23T22:47:59", + "newPrice": 129.7 + }, + { + "priceDate": "2022-07-15T22:47:59", + "newPrice": 136.43 + }, + { + "priceDate": "2025-04-22T22:47:59", + "newPrice": 131.49 + } + ], + "descriptionVector": [ + 0.019350958988070488, + 0.029352962970733643, + -0.033867042511701584, + -0.002302867127582431, + 0.00704608578234911, + 0.029490448534488678, + -0.0360897071659565, + 0.04931114614009857, + 0.013977601192891598, + 0.07621230185031891, + -0.043330565094947815, + 0.008186062797904015, + -0.010683699510991573, + -0.04642396792769432, + -0.04113081097602844, + -0.016498152166604996, + 0.02094348892569542, + -0.03996219113469124, + -0.0017429038416594267, + 0.053206540644168854, + 0.03634176403284073, + -0.07447082549333572, + -0.03400452435016632, + 0.02326926961541176, + -0.0042677512392401695, + 0.005261650308966637, + 0.034508634358644485, + 0.03757912665605545, + 0.002302867127582431, + -0.012281958013772964, + 0.008197519928216934, + 0.04392633214592934, + -0.044682495296001434, + 0.02026752196252346, + 0.013668261468410492, + 0.0007590295863337815, + 0.032171398401260376, + -0.10430498421192169, + 0.04644688218832016, + 0.04766133055090904, + 0.0007511528674513102, + 0.012270500883460045, + 0.043284736573696136, + -0.06846733391284943, + 0.040718358010053635, + 0.02914673648774624, + -0.0042677512392401695, + 0.0665883794426918, + 0.03040701150894165, + 0.014195285737514496, + 0.010374358855187893, + 0.015512846410274506, + -0.0730043277144432, + 0.013977601192891598, + 0.03570016846060753, + -0.043949246406555176, + -0.007893907837569714, + 0.06713831424713135, + 0.06173058599233627, + -0.07822874188423157, + 0.05600206181406975, + 0.009188554249703884, + -0.0457136295735836, + -0.0008621430606581271, + -0.054123107343912125, + 0.04028299078345299, + -0.036479249596595764, + 0.034164924174547195, + 0.03696044534444809, + 0.03952682390809059, + 0.04848623648285866, + -0.0365021638572216, + -0.005545212421566248, + 0.024380603805184364, + 0.06718414276838303, + 0.008466760627925396, + 0.09138143062591553, + 0.03592931106686592, + -0.02024460770189762, + 0.030888207256793976, + 0.050456851720809937, + 0.004121673759073019, + 0.01600549928843975, + 0.056735314428806305, + 0.07575401663780212, + -0.005356171168386936, + 8.16762394606485e-07, + -0.08702775835990906, + -0.05174003913998604, + 0.07140033692121506, + -0.029375877231359482, + 0.0770830363035202, + 0.01178930513560772, + 0.015764901414513588, + 0.05563543736934662, + -0.03560851141810417, + 0.03205682709813118, + 0.042001545429229736, + -0.05426058918237686, + -0.018583334982395172, + 0.026351215317845345, + -0.0576060488820076, + 0.012476728297770023, + -0.030315354466438293, + -0.02518259733915329, + 0.04715722054243088, + 0.024128548800945282, + -0.024930542334914207, + 0.059668317437171936, + -0.07011714577674866, + 0.010225417092442513, + -0.021814223378896713, + -0.01833127997815609, + -0.0830865278840065, + 0.053481511771678925, + -0.028001030907034874, + -0.013462034054100513, + -0.0014507489977404475, + -0.06952138245105743, + -0.01960301399230957, + -0.020714346319437027, + 0.04816544055938721, + -0.029948730021715164, + 0.015455560758709908, + 0.041337039321660995, + 0.013759917579591274, + -0.05114427208900452, + 0.02064560540020466, + 0.003583192592486739, + -0.0013676853850483894, + -0.01669292151927948, + 0.03308796137571335, + -0.03721249848604202, + -0.05393979325890541, + -0.038770657032728195, + -0.003961275331676006, + 0.0030103400349617004, + 0.054489731788635254, + 0.007739237509667873, + 0.029627932235598564, + -0.01967175491154194, + 0.02978833019733429, + 0.04481998085975647, + 0.011703376658260822, + -0.003594649489969015, + -0.004814825486391783, + -0.07254604250192642, + 0.04766133055090904, + 0.017586572095751762, + -0.003431386547163129, + -0.010403001680970192, + -0.06690917164087296, + 0.005565262399613857, + -0.06241801008582115, + 0.06823819130659103, + 0.03338584303855896, + -0.06933806836605072, + 0.018571877852082253, + -0.0987139493227005, + 0.059393350034952164, + -0.028894681483507156, + -0.020072752609848976, + -0.030567411333322525, + -0.008054306730628014, + 0.005665511358529329, + 0.10118866711854935, + 0.001864634919911623, + 0.047569673508405685, + -0.10219688713550568, + 0.027703147381544113, + 0.00448257103562355, + -0.05467304587364197, + 0.020141495391726494, + -0.02584710530936718, + 0.0483945794403553, + 0.00356314261443913, + -0.013782831840217113, + -0.035127315670251846, + -0.07456248253583908, + 0.0020236014388501644, + 0.021023686975240707, + 0.09394781291484833, + -0.030819466337561607, + -0.030338268727064133, + 0.03494400531053543, + -0.00913126952946186, + 0.07437916845083237, + -0.024380603805184364, + 0.03164437413215637, + 0.0668175145983696, + 0.009314581751823425, + -0.026557443663477898, + -0.0026136396918445826, + 0.0072809555567801, + -0.0063128345645964146, + -0.0010282702278345823, + 0.04523243382573128, + 0.06470941752195358, + -0.007733508944511414, + -0.030888207256793976, + -0.06104316562414169, + 0.02939879149198532, + 0.0903732106089592, + -0.04798212647438049, + -0.036754216998815536, + -0.038816485553979874, + 0.057056110352277756, + 0.10732964426279068, + -0.02131011337041855, + -0.0018861169228330255, + 0.014687938615679741, + -0.0642511397600174, + 0.007899636402726173, + 0.04028299078345299, + 0.01894996128976345, + 0.06493856012821198, + -0.015237877145409584, + -0.036112621426582336, + -0.017071004956960678, + -0.04811961203813553, + 0.05536046624183655, + -0.03260676562786102, + 0.07369174808263779, + 0.0013132643653079867, + -0.06773408502340317, + -0.029352962970733643, + -0.036456335335969925, + -0.024678487330675125, + 0.0856529101729393, + -0.0003349397156853229, + -0.029536275193095207, + -0.010042104870080948, + -0.029169650748372078, + -0.007515824865549803, + -0.01765531487762928, + 0.025778362527489662, + -0.017781341448426247, + 0.010529029183089733, + -0.04452209919691086, + 0.06773408502340317, + -0.021837137639522552, + 0.05361899733543396, + -0.03730415552854538, + 0.018846847116947174, + 0.005470741540193558, + -0.08317818492650986, + 0.05206083878874779, + -0.09110646694898605, + -0.14032594859600067, + -0.0321255698800087, + -0.16653968393802643, + -0.017128290608525276, + -0.03295047581195831, + 0.08171167969703674, + -0.022054821252822876, + 0.07584567368030548, + 0.13180190324783325, + -0.05829347297549248, + 0.00897087063640356, + -0.015593045391142368, + 0.01699080504477024, + 0.00898805633187294, + 0.025228425860404968, + 0.042711883783340454, + -0.13006043434143066, + 0.035493943840265274, + 0.072179414331913, + -0.03604387864470482, + -0.029559189453721046, + -0.03141523152589798, + -0.07744965702295303, + 0.014493168331682682, + 0.035150229930877686, + 0.018239624798297882, + -0.02195170894265175, + 0.024082720279693604, + -0.05334402620792389, + 0.04766133055090904, + 0.0006229770951904356, + 0.014172371476888657, + 0.1351015418767929, + 0.027588577941060066, + 0.055406294763088226, + 0.05210666358470917, + 0.07978689670562744, + -0.002696703188121319, + 0.02742817811667919, + -0.01192678976804018, + -0.038426946848630905, + -0.03654799237847328, + -0.020508119836449623, + -0.033202532678842545, + 0.01275169663131237, + 0.013336006551980972, + 0.019442614167928696, + 0.017895912751555443, + 0.05233580619096756, + -0.017197033390402794, + 0.023991063237190247, + 0.027221951633691788, + 0.05077764764428139, + 0.05856844037771225, + -0.03666255995631218, + -0.06709248572587967, + 0.04346805065870285, + 0.014034886844456196, + -0.015627415850758553, + 0.018869761377573013, + -0.052839916199445724, + -0.042345259338617325, + 0.06768825650215149, + 0.0004332197131589055, + -0.0398247055709362, + 0.008884942159056664, + 0.09284793585538864, + -0.005118437111377716, + -0.03139231726527214, + 0.034783605486154556, + 0.039710137993097305, + 0.015432646498084068, + -0.0012703004758805037, + -0.018892675638198853, + -0.039114370942115784, + 0.03203391283750534, + -0.02781771868467331, + 0.03072780929505825, + 0.032171398401260376, + -0.06791739165782928, + -0.017540743574500084, + 0.04536991938948631, + 0.014825423248112202, + -0.0802910104393959, + 0.024678487330675125, + -0.050869304686784744, + 0.031529802829027176, + 0.00580586027354002, + -0.07864119112491608, + -0.026649098843336105, + 0.07822874188423157, + 0.022501647472381592, + 0.009910348802804947, + -0.06668003648519516, + 0.03867900371551514, + -0.012556927278637886, + 0.005860281176865101, + -0.04181823506951332, + -0.01967175491154194, + -0.07932861894369125, + 0.004972360096871853, + -0.044934552162885666, + 0.0012953627156093717, + -0.0385415181517601, + 0.07291267067193985, + -0.004960902966558933, + 0.04427004233002663, + 0.02483888529241085, + 0.02784063294529915, + 0.024770142510533333, + 0.05925586447119713, + -0.01606278494000435, + 0.02747400663793087, + -0.009377595968544483, + 0.017506372183561325, + -0.05733108147978783, + 0.0015953942202031612, + -0.014264027588069439, + -0.038060322403907776, + 0.042322345077991486, + 0.012831896543502808, + -0.012556927278637886, + 0.013484948314726353, + -0.03858734667301178, + 0.024586830288171768, + 0.050548505038022995, + -0.017288688570261, + 0.03045284003019333, + 0.005831638816744089, + -0.011479964479804039, + -0.010952940210700035, + 0.0339357815682888, + 0.010569129139184952, + 0.07437916845083237, + 0.05334402620792389, + -0.02818434312939644, + 0.038083236664533615, + 0.017598029226064682, + 0.00995617639273405, + 0.027978116646409035, + -0.02751983515918255, + 0.061593104153871536, + -0.027634404599666595, + -0.05091513320803642, + -0.03178185597062111, + 0.0025348723866045475, + 0.06182224303483963, + -0.033569157123565674, + 0.003417065367102623, + 0.05613954737782478, + 0.004536991938948631, + -0.048211269080638885, + 0.04424712806940079, + 0.05357316881418228, + 0.021058058366179466, + 0.005221550818532705, + 0.006100879516452551, + -0.09009824693202972, + 0.0366167314350605, + 0.06150144711136818, + -0.055772922933101654, + -0.07717469334602356, + 0.0016068513505160809, + -0.040099676698446274, + 0.003723541274666786, + -0.03996219113469124, + 0.01044883020222187, + 0.04642396792769432, + 0.05238163471221924, + -0.06952138245105743, + 0.03663964569568634, + 0.00884484313428402, + 0.08606535941362381, + -0.0477529875934124, + 0.058064330369234085, + 0.016452323645353317, + -0.0020035516936331987, + 0.0412224680185318, + -0.040099676698446274, + -0.021436141803860664, + 0.02220376394689083, + -0.08982327580451965, + -0.0802910104393959, + -0.011709105223417282, + 5.688246528734453e-05, + -0.024311861023306847, + -0.007974106818437576, + 0.0339357815682888, + -0.05302323028445244, + 0.05682697147130966, + -0.030681980773806572, + -0.020347721874713898, + -0.008758914656937122, + -0.004728897474706173, + 0.031598545610904694, + 0.024793056771159172, + -0.12749405205249786, + -0.006284192204475403, + -0.02481597103178501, + 0.04612608626484871, + 0.027542749419808388, + -0.04353678971529007, + 0.05650617182254791, + 0.03732706978917122, + -0.04193280264735222, + 0.011800762265920639, + 0.022742245346307755, + 0.04351387917995453, + 0.03407326713204384, + 0.10082204639911652, + -0.06397616863250732, + -0.021103886887431145, + -0.10971271246671677, + 0.06750494241714478, + 0.001187952933833003, + 0.05274825915694237, + -0.013450576923787594, + -0.060676537454128265, + -0.07025463134050369, + 0.01925930194556713, + 0.011846589855849743, + -0.022054821252822876, + -0.0057886745780706406, + -0.016578352078795433, + 0.01768968626856804, + -0.017563657835125923, + -0.004230516031384468, + -0.003861025907099247, + -0.0012438059784471989, + -0.014791051857173443, + 0.023601524531841278, + 0.06186807155609131, + -0.05077764764428139, + 0.033821213990449905, + -0.005273107439279556, + 0.0914272591471672, + 0.06127230450510979, + 0.003903989912942052, + -0.03249219432473183, + 0.01638358272612095, + 0.040672529488801956, + 0.008455303497612476, + 0.007584567181766033, + 0.09697247296571732, + 0.0018116460414603353, + -0.06342623382806778, + -0.00571993226185441, + 0.006879958789795637, + -0.007063271477818489, + 0.004935124423354864, + -0.01570761576294899, + 0.010901383124291897, + 0.03897688537836075, + -0.020679976791143417, + -0.002680949866771698, + 0.04541574791073799, + -0.02587001956999302, + -0.009784321300685406, + -0.08473634719848633, + -0.05618537589907646, + -0.01831982284784317, + 0.07818291336297989, + 0.08120757341384888, + 0.0012266203993931413 + ] + }, + { + "id": "4b8abcf9-b35b-41c1-8f48-7df01ea7edea", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "kimpam", + "reviewDate": "2021-06-02T22:47:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1d3d04e7-82fe-4cfc-bc15-a388778fe808", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "robinlawson", + "reviewDate": "2022-07-17T20:56:33", + "stars": 3, + "verifiedUser": true + }, + { + "id": "965cd98d-c38b-4f95-9694-534eb2128ab4", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "buchananstacey", + "reviewDate": "2021-07-30T14:05:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "481b08f8-6f2d-4dbf-8467-884ea3230d06", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "lparker", + "reviewDate": "2022-02-13T05:17:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1b6e5c89-e39f-4181-a328-c49e59f81ef0", + "productId": "e8675620-455d-4417-a026-8cd2625f775d", + "category": "Media", + "docType": "customerRating", + "userName": "samuelsmith", + "reviewDate": "2022-05-25T14:35:08", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e2575298-7ac8-4226-ae64-e030ae53b528", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "product", + "name": "Amazing Filter Pro (Gold)", + "description": "This Amazing Filter Pro (Gold) is so easy to get. Its compact design keeps one clean, clear filtrate in one handy place.\n\nThe filters are easy to work with.\n\nI love having one of these on every set as", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-02-08T08:19:04", + "price": 329.26, + "stock": 35, + "priceHistory": [ + { + "priceDate": "2021-01-21T14:42:42", + "newPrice": 343.33 + }, + { + "priceDate": "2021-07-10T14:42:42", + "newPrice": 354.54 + }, + { + "priceDate": "2021-12-27T14:42:42", + "newPrice": 331.29 + }, + { + "priceDate": "2022-06-15T14:42:42", + "newPrice": 355.66 + }, + { + "priceDate": "2022-12-02T14:42:42", + "newPrice": 335.3 + }, + { + "priceDate": "2023-07-20T14:42:42", + "newPrice": 329.26 + } + ], + "descriptionVector": [ + 0.025698795914649963, + 0.04099344089627266, + -0.017733117565512657, + -0.009482950903475285, + -0.0047448622062802315, + 0.012564909644424915, + -0.06686834990978241, + 0.007593133952468634, + 0.008832691237330437, + 0.03340708091855049, + -0.042456526309251785, + 0.0035290124360471964, + 0.008737861178815365, + -0.017543459311127663, + 0.07938584685325623, + -0.016879651695489883, + -0.01904718391597271, + 0.006577103398740292, + -0.019765177741646767, + -0.011250843293964863, + 0.0821494460105896, + -0.09743054211139679, + -0.07217880338430405, + 0.013662222772836685, + 0.007396701257675886, + -0.005323999561369419, + -0.0638338029384613, + 0.0018559489399194717, + -0.009374573826789856, + -0.01908782497048378, + 0.09575070440769196, + 0.060257378965616226, + 0.004118309821933508, + 0.05673513934016228, + -0.08252876251935959, + 0.027473462745547295, + 0.012111082673072815, + 0.004849852062761784, + -0.005340933334082365, + 0.055217865854501724, + 0.010336415842175484, + -0.03549332916736603, + -0.058360788971185684, + 0.02198689803481102, + 0.003948971629142761, + 0.005757505539804697, + -0.0428900308907032, + -0.01022803969681263, + -0.053971536457538605, + 0.02633550763130188, + 0.06930682063102722, + 0.021634673699736595, + -0.008426278829574585, + -0.02853013388812542, + 0.00968615710735321, + 0.05118083953857422, + -0.02078120969235897, + 0.07196205109357834, + 0.09087376296520233, + -0.05269810929894447, + -0.004748248960822821, + -0.05150596797466278, + 0.02120116725564003, + -0.029044922441244125, + -0.023409340530633926, + 0.007132533472031355, + -0.1018739864230156, + -0.05760215222835541, + 0.04359447956085205, + 0.05548880621790886, + 0.01103409007191658, + 0.019819365814328194, + 0.01012643612921238, + 0.01854594238102436, + 0.00616053119301796, + 0.03760667145252228, + 0.11552943289279938, + -0.03213365375995636, + 0.04635808244347572, + 0.002253894228488207, + 0.0027568291407078505, + 0.04996160417795181, + -0.02567170187830925, + 0.03882591053843498, + 0.02037479728460312, + -0.039855487644672394, + 0.001192142372019589, + -0.0843711644411087, + 0.04955518990755081, + -0.02853013388812542, + -0.06876493990421295, + 0.044732432812452316, + -0.03034544177353382, + -0.03002031147480011, + 0.01780085265636444, + 0.01788213476538658, + -0.04459696263074875, + 0.009841947816312313, + -0.06638065725564957, + 0.04223977029323578, + -0.10447502136230469, + -0.07575523108243942, + -0.05771052837371826, + 0.015010155737400055, + -0.0447053387761116, + -0.004003159701824188, + 0.005828627850860357, + -0.040559932589530945, + -0.008500787429511547, + -0.16559940576553345, + 0.032187845557928085, + -0.040641218423843384, + 0.022461045533418655, + 0.09396249055862427, + -0.044082172214984894, + -0.041508227586746216, + -0.03682094067335129, + 0.020090308040380478, + 0.03354255110025406, + -0.017895681783556938, + -0.0017526524607092142, + 0.03316323459148407, + 0.04708962142467499, + 0.028557227924466133, + 0.0205373615026474, + 0.04885074123740196, + 0.05581393837928772, + 0.0024909679777920246, + 0.0030159170273691416, + 0.005737185012549162, + -0.06350867450237274, + -0.016080373898148537, + 0.024493107572197914, + 0.013066151179373264, + -0.08848947286605835, + 0.04540978744626045, + 0.07039058953523636, + 0.17947161197662354, + -0.06215396896004677, + 0.03416571766138077, + -0.014007672667503357, + -0.08301645517349243, + 0.028096627444028854, + 0.01979227177798748, + 0.03419281169772148, + -0.06659740954637527, + 0.0028313382063061, + 0.010139983147382736, + 0.019142013043165207, + -0.0032597642857581377, + 0.013899296522140503, + -0.0891939252614975, + -0.026890939101576805, + -0.04050574451684952, + 0.041183099150657654, + 0.013967031612992287, + -0.04042446240782738, + 0.04372994974255562, + -0.0007933503948152065, + -0.026633543893694878, + -0.04069540649652481, + -0.07906071096658707, + -0.005164821166545153, + 0.012070441618561745, + -0.0221494622528553, + 0.04595166817307472, + 0.05792728066444397, + 0.01426506694406271, + -0.06258747726678848, + 0.03663128241896629, + 0.04085797071456909, + 0.05023254454135895, + 0.03213365375995636, + -0.05716864392161369, + -0.04562653973698616, + 0.019358767196536064, + 0.01544366218149662, + -0.024953706189990044, + -0.04717090725898743, + -0.06058250740170479, + 0.0254684966057539, + 0.044407304376363754, + -0.0014656238490715623, + -0.060148999094963074, + 0.025482043623924255, + 0.019765177741646767, + 0.007423795759677887, + -0.027730856090784073, + 0.08258295059204102, + 0.03416571766138077, + -0.005527205299586058, + 0.028801076114177704, + 0.022881004959344864, + -0.029532616958022118, + 0.009760665707290173, + -0.03251297399401665, + -0.08523818105459213, + -0.02148565649986267, + -0.019020089879631996, + -0.014373444020748138, + -0.03175433725118637, + -0.0030734920874238014, + 0.06090763583779335, + -0.006048767827451229, + 0.014441179111599922, + 0.0058150808326900005, + 0.039313603192567825, + 0.036251965910196304, + 0.015795886516571045, + 0.007166401017457247, + 0.03243169188499451, + 0.006895459722727537, + -0.02815081551671028, + -0.014549555256962776, + 0.021634673699736595, + -0.011765631847083569, + -0.05689770355820656, + -0.0503409206867218, + 0.016920292750000954, + 0.034843068569898605, + 8.297582098748535e-05, + 0.004589070565998554, + -0.05635581910610199, + 0.013818013481795788, + 0.05716864392161369, + -0.022745534777641296, + -0.0022234132047742605, + 0.013181301765143871, + 0.06681416183710098, + 0.09336642175912857, + -0.0424836203455925, + -0.011291484348475933, + -0.06345448642969131, + 0.05684351548552513, + -0.059607118368148804, + -0.03958454355597496, + -0.04294421896338463, + -0.00786407571285963, + 0.01999547891318798, + -0.00631293561309576, + 0.0023859781213104725, + 0.06827724725008011, + -0.08063217252492905, + -0.02057800255715847, + 0.10003158450126648, + -0.008046961389482021, + 0.04240233451128006, + 0.045518163591623306, + -0.025536231696605682, + 0.019846461713314056, + -0.049582283943891525, + 0.029830653220415115, + -0.06708510220050812, + 0.0001626707089599222, + 0.028042439371347427, + 0.09190333634614944, + 0.07331675291061401, + -0.04391960799694061, + -0.06388799101114273, + -0.094233438372612, + 0.004528108984231949, + -0.02160757966339588, + 0.04562653973698616, + -0.01391284354031086, + -0.05323999375104904, + -0.07158272713422775, + -0.011575973592698574, + -0.04172498360276222, + -0.023287417367100716, + 0.09249941259622574, + -0.03245878592133522, + 0.02025287225842476, + 0.018789788708090782, + 0.013926390558481216, + 0.02462857775390148, + -0.002192932413890958, + -0.030237065628170967, + 0.0658387690782547, + 0.05212913453578949, + -0.007471210323274136, + 0.06941519677639008, + -0.008974934928119183, + 0.025942644104361534, + 0.0066245184279978275, + 0.03042672388255596, + -0.02740572765469551, + 0.02007676102221012, + 0.010607357136905193, + -0.0821494460105896, + 0.04513884335756302, + 0.00027771497843787074, + 0.008013092912733555, + 0.03365092724561691, + 0.003188642207533121, + 0.005100472830235958, + 0.031862713396549225, + 0.02972227707505226, + 0.05619325488805771, + -0.02074056677520275, + 0.044651150703430176, + 0.013824786990880966, + -0.020442532375454903, + -0.017109952867031097, + -0.06773535907268524, + -0.033434174954891205, + 0.05299614742398262, + -0.009510044939815998, + -0.02021223120391369, + 0.011332126334309578, + -0.059065233916044235, + 0.084967240691185, + 0.029668089002370834, + 0.022366216406226158, + -0.031185360625386238, + 0.10647998750209808, + -0.045030467212200165, + -0.06979451328516006, + 0.006116502918303013, + -0.007803113665431738, + -0.017990512773394585, + -0.0489320233464241, + 0.024669218808412552, + -0.009692930616438389, + 0.08540074527263641, + 0.0011929890606552362, + 0.02939714677631855, + 0.004788890015333891, + -0.04562653973698616, + -0.014590197242796421, + -0.021052150055766106, + 0.003573040245100856, + -0.033678021281957626, + -0.0016307288315147161, + 0.0061232768930494785, + 0.008934293873608112, + -0.10962291061878204, + 0.014847591519355774, + -0.03449084609746933, + 0.004961615428328514, + 0.05299614742398262, + -0.012842624448239803, + -0.03205237165093422, + 0.013486110605299473, + 0.02140437439084053, + 0.09304129332304001, + -0.04045155644416809, + -0.019358767196536064, + -0.07667642831802368, + 0.03600811958312988, + -0.0326213501393795, + 0.001537592732347548, + -0.06107020005583763, + -0.015104985795915127, + 0.007789566647261381, + 0.03896138072013855, + 0.04657483473420143, + 0.024560842663049698, + 0.01904718391597271, + 0.06654322147369385, + -0.01846466027200222, + -0.01095280796289444, + -0.03346126899123192, + 0.05158725008368492, + 0.01544366218149662, + 0.007484757341444492, + 0.11964774131774902, + -0.04554525762796402, + 0.028963640332221985, + 0.005926844198256731, + 0.004541656002402306, + -0.030074499547481537, + 0.014088954776525497, + -0.01171821728348732, + 0.007017383351922035, + -0.052318792790174484, + -0.0448949970304966, + 0.05055767297744751, + -0.008338223211467266, + 0.012524268589913845, + 0.024940159171819687, + 0.025576872751116753, + 0.06470081955194473, + -0.025902003049850464, + -0.043160971254110336, + 0.09602164477109909, + 0.03440956398844719, + -0.06871075183153152, + 0.004284261725842953, + -0.020009025931358337, + -0.011216975748538971, + -0.10257843136787415, + -0.04139985144138336, + -0.019155560061335564, + -0.020713472738862038, + 0.00192029750905931, + -0.013736731372773647, + 0.03329870477318764, + 0.06822305917739868, + 0.10740119218826294, + 0.004368930589407682, + 0.033894773572683334, + 0.01014675758779049, + -0.040803782641887665, + -0.026470979675650597, + -0.05478436127305031, + -0.02720252051949501, + 0.02806953340768814, + 0.06708510220050812, + 0.024330541491508484, + -0.04649355262517929, + 0.0008424585685133934, + -0.05641000717878342, + -0.0022505074739456177, + 0.01880333572626114, + 0.05933617800474167, + 0.07575523108243942, + 0.016825463622808456, + 0.03243169188499451, + 0.09878525137901306, + -0.050530578941106796, + 0.016405504196882248, + 0.045653633773326874, + 0.0074034747667610645, + 0.004724541679024696, + -0.00954391248524189, + 0.03831112012267113, + 0.03904266282916069, + -0.017733117565512657, + -0.04608713835477829, + -0.05372769013047218, + 0.060799259692430496, + 0.05814403295516968, + -0.01971098966896534, + 0.029370052739977837, + -0.044244736433029175, + -0.02472340688109398, + 0.01273424830287695, + -0.013032283633947372, + -0.052725207060575485, + 0.045653633773326874, + -0.037037696689367294, + -0.01945359632372856, + 0.04232105240225792, + 0.03183561936020851, + -0.05478436127305031, + -0.08220363408327103, + -0.043621573597192764, + -0.007897943258285522, + 0.008582070469856262, + -0.10507109016180038, + -0.014414085075259209, + -0.0056457421742379665, + -0.04592457413673401, + -0.02376156486570835, + 0.0027077209670096636, + 0.01618875190615654, + 0.08101148903369904, + 0.10003158450126648, + 0.03511401265859604, + 0.0009974031709134579, + -0.041752077639102936, + 0.08410022407770157, + -0.03505982458591461, + 0.004853238817304373, + 0.015701057389378548, + -0.06253328919410706, + -0.04790244624018669, + 0.010783469304442406, + 0.03928650915622711, + 0.02955971099436283, + 0.012300741858780384, + -0.018193718045949936, + -0.07472565025091171, + -0.016784822568297386, + -0.0414811335504055, + 0.012205911800265312, + -0.05253554508090019, + 0.005618648137897253, + 0.04830886051058769, + -0.04121019318699837, + -0.07461727410554886, + -0.020767662674188614, + -0.07645967602729797, + 0.08079473674297333, + 0.024438917636871338, + -0.013662222772836685, + 0.01747572235763073, + 0.03738991916179657, + 0.08794759213924408, + 0.01991419680416584, + 0.03254006803035736, + 0.018681412562727928, + 0.028638510033488274, + -0.03682094067335129, + 0.00494806794449687, + -0.024438917636871338, + -0.07207042723894119, + -0.039069756865501404, + -0.008148564025759697, + -0.010620905086398125, + 0.02512981928884983, + -0.009306838735938072, + -0.030778948217630386, + 0.03831112012267113, + -0.02661999687552452, + -0.034924350678920746, + 0.05242716893553734, + -0.08063217252492905, + 0.017109952867031097, + -0.060474131256341934, + -0.035168200731277466, + 0.04600585624575615 + ] + }, + { + "id": "94a09033-ea95-470c-b2b9-c164b7ab41bc", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "urowland", + "reviewDate": "2022-01-21T13:56:44", + "stars": 4, + "verifiedUser": true + }, + { + "id": "eaadf7e8-05af-42f3-8513-da401a1e54c4", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "ballelizabeth", + "reviewDate": "2022-12-03T16:17:52", + "stars": 5, + "verifiedUser": true + }, + { + "id": "fc68e9c4-db7c-44a5-a77d-12d9ea53b3dc", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "icole", + "reviewDate": "2022-06-08T09:59:43", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d9cbe0a6-edd8-4b51-b862-14b2bd6600e3", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "qaguirre", + "reviewDate": "2021-06-21T18:02:42", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b8a8467b-0caa-45ce-940b-abfbc597c326", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "abaxter", + "reviewDate": "2021-03-21T01:16:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "eca89d02-f988-4fd8-8d40-326707c83fd9", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "stephenmitchell", + "reviewDate": "2022-08-21T07:57:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ac18bb0b-235f-4c67-b2e3-d1c8e97086b8", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "valenciajoshua", + "reviewDate": "2022-02-15T02:28:31", + "stars": 1, + "verifiedUser": true + }, + { + "id": "854ac5ab-ffe6-4f2b-8af9-492453960de8", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "jlevine", + "reviewDate": "2021-06-26T20:12:36", + "stars": 4, + "verifiedUser": false + }, + { + "id": "7efb90f5-98a3-4b93-9920-4ea6742f8393", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "schneiderwesley", + "reviewDate": "2021-05-10T08:26:22", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b1fac7f4-d65c-4f0d-becd-5d82a739e22f", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "sarahcooper", + "reviewDate": "2022-05-05T14:31:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b0656846-3ff6-46e7-a9ed-545135fd97c8", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "cmartinez", + "reviewDate": "2021-01-21T14:42:42", + "stars": 2, + "verifiedUser": true + }, + { + "id": "862dce17-0f0f-4fcb-b7cf-7a3a0201c3ce", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "jacob63", + "reviewDate": "2021-09-03T09:57:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9d275770-bd79-496b-aab3-ecb1ed19bd1d", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "leecaleb", + "reviewDate": "2021-06-26T07:14:48", + "stars": 5, + "verifiedUser": false + }, + { + "id": "918e3c65-9e9d-4923-86f1-7688aeb7be0b", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "zriley", + "reviewDate": "2022-08-28T11:53:28", + "stars": 4, + "verifiedUser": true + }, + { + "id": "74a910f2-cdb1-4dd4-b03e-769db3b1a712", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "natalie47", + "reviewDate": "2022-11-21T22:19:26", + "stars": 1, + "verifiedUser": true + }, + { + "id": "11ce6fbc-159c-4ade-84ad-5bc4ac243472", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "jasonlewis", + "reviewDate": "2022-07-03T11:07:26", + "stars": 5, + "verifiedUser": true + }, + { + "id": "89ebb5d9-471c-484d-8840-a0a72beee972", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "wendyalvarado", + "reviewDate": "2021-06-11T04:35:01", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3cbabbf3-c573-406b-9157-ea8e215b2784", + "productId": "e2575298-7ac8-4226-ae64-e030ae53b528", + "category": "Other", + "docType": "customerRating", + "userName": "bherman", + "reviewDate": "2021-11-20T22:37:34", + "stars": 1, + "verifiedUser": true + }, + { + "id": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone + (Steel)", + "description": "This Luxe Phone + (Steel) is a brand new and affordable smartphone that brings smartphone aesthetics into a fully modern smartphone experience.\n\nFeatures include:\n\n★ 3D camera and screen: It measures 23.3\" X 8\" X 6\"\n\n★ Full HD IPS LCD display and LED back", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-08-07T10:34:45", + "price": 637.57, + "stock": 34, + "priceHistory": [ + { + "priceDate": "2021-01-23T09:11:20", + "newPrice": 591.18 + }, + { + "priceDate": "2021-07-16T09:11:20", + "newPrice": 596.55 + }, + { + "priceDate": "2022-01-06T09:11:20", + "newPrice": 628.35 + }, + { + "priceDate": "2022-06-29T09:11:20", + "newPrice": 682.23 + }, + { + "priceDate": "2022-12-20T09:11:20", + "newPrice": 599.99 + }, + { + "priceDate": "2025-08-23T09:11:20", + "newPrice": 637.57 + } + ], + "descriptionVector": [ + -0.058912552893161774, + 0.04808109626173973, + -0.04306164011359215, + 0.014780974015593529, + 0.0048741549253463745, + -0.05516117066144943, + -0.007126305252313614, + 0.04298238456249237, + 0.0001617081870790571, + 0.07708825916051865, + 0.06456604599952698, + -0.030909275636076927, + 0.08601760864257812, + 0.004814714193344116, + 0.04187282174825668, + 0.029535530135035515, + -0.019298484548926353, + -0.030486585572361946, + 0.030592257156968117, + -0.04868871346116066, + 0.06578128039836884, + -0.09753593802452087, + -0.06599262356758118, + -0.011683441698551178, + 0.020923202857375145, + -0.027237148955464363, + 0.032335858792066574, + 0.031094202771782875, + 0.012238224036991596, + -0.0513833686709404, + 0.027659839019179344, + 0.025176528841257095, + -0.0606033131480217, + 0.06879295408725739, + 0.0015083132311701775, + 0.006000230088829994, + 0.06831742823123932, + -0.007073468994349241, + 0.06266393512487411, + 0.0776166245341301, + 0.004877457395195961, + 0.012310873717069626, + -0.01733032986521721, + -0.014450746588408947, + 0.0295883659273386, + -0.06440753489732742, + -0.0022356389090418816, + -0.00420049112290144, + -0.00923315528780222, + -0.0219667199999094, + 0.013578946702182293, + -0.0066970097832381725, + -0.05336473137140274, + 0.012363710440695286, + 0.006095996126532555, + -0.05431578680872917, + 0.06704935431480408, + 0.10070611536502838, + 0.04211058467626572, + -0.01484701968729496, + -0.041476547718048096, + -0.09695473313331604, + 0.024965183809399605, + 0.010639923624694347, + -0.013565737754106522, + -0.014358283020555973, + -0.04007638618350029, + -0.0029208604246377945, + -0.016484947875142097, + 0.07967724651098251, + -0.008440610021352768, + 0.026457810774445534, + 0.062241241335868835, + 0.030803602188825607, + 0.030037475749850273, + 0.06393200904130936, + -0.01330816000699997, + 0.025889821350574493, + -0.002721073105931282, + -0.08062829822301865, + 0.08274175226688385, + 0.0634036436676979, + -0.03146405890583992, + -0.029667621478438377, + 0.021213801577687263, + 0.02643139287829399, + 0.015269710682332516, + -0.15206307172775269, + -0.027157893404364586, + 0.05254576727747917, + -0.019575875252485275, + 0.05690477043390274, + -0.018981466069817543, + -0.019496619701385498, + 0.07571451365947723, + 0.0031123922672122717, + -0.005039268638938665, + 0.08068113774061203, + -0.04071042314171791, + 0.002101896796375513, + 0.044171202927827835, + 0.001996224047616124, + -0.002250499092042446, + 0.013453460298478603, + -0.011194705963134766, + 0.05616505816578865, + 0.010038910433650017, + 0.013255324214696884, + -0.007502764463424683, + -0.1269129514694214, + 0.034290801733732224, + -0.012660915032029152, + -0.07217448204755783, + -0.01814929209649563, + -0.018202129751443863, + 0.05722178891301155, + 0.0022273832000792027, + -0.004903875291347504, + 0.04705078527331352, + -0.004342488944530487, + 0.0032841104548424482, + 0.02672199346125126, + -0.02884865738451481, + -0.017066147178411484, + -0.011901391670107841, + -0.021953511983156204, + 0.03273212909698486, + -0.05106635019183159, + -0.011696651577949524, + -0.032758548855781555, + -0.08374564349651337, + 0.0552668422460556, + 0.056429240852594376, + 0.04633749648928642, + -0.003057904774323106, + 0.01676233857870102, + 0.07000818848609924, + 0.04187282174825668, + -0.0053364732302725315, + 0.05011529475450516, + 0.008341541513800621, + 0.023327257484197617, + 0.05769731476902962, + -0.04631107673048973, + -0.010349323973059654, + 0.02182142063975334, + -0.04279745742678642, + -0.047077205032110214, + -0.032652877271175385, + 0.04031414911150932, + -0.03664202243089676, + -0.07682407647371292, + -0.020526928827166557, + -0.04673376679420471, + 0.03563813120126724, + -0.016458528116345406, + -0.058806877583265305, + -0.025665266439318657, + -0.026655947789549828, + 0.023551810532808304, + 0.038253530859947205, + -0.052281588315963745, + -0.005848325788974762, + -0.019298484548926353, + 0.002301684347912669, + 0.02381599321961403, + 0.043140895664691925, + 0.017660556361079216, + -0.04398627579212189, + 0.05148904025554657, + 0.060074951499700546, + 9.339240932604298e-05, + -0.08617611974477768, + -0.05410443991422653, + -0.021002456545829773, + -0.022296948358416557, + 0.10762768238782883, + 0.03590231388807297, + 0.011406050994992256, + -0.019958937540650368, + 0.04596764221787453, + -0.0251633208245039, + -0.0471300408244133, + 0.0017931342590600252, + 0.05938807874917984, + 0.045518532395362854, + 0.04298238456249237, + 0.009920028038322926, + 0.034290801733732224, + 0.008394378237426281, + 0.006274318788200617, + -0.022164857015013695, + -0.017977574840188026, + -0.01832101121544838, + 0.0157716553658247, + -0.07048371434211731, + 0.14794182777404785, + 0.015996210277080536, + -0.01842668280005455, + 0.027950439602136612, + 0.0052902414463460445, + 0.03941592946648598, + 0.06509440392255783, + -0.03093569353222847, + -0.038676220923662186, + -0.062029898166656494, + -0.02448965609073639, + 0.0517268031835556, + 0.030248820781707764, + 0.001082319999113679, + -0.021874256432056427, + 0.026378557085990906, + -0.08031128346920013, + 0.06477738916873932, + 0.0008990438655018806, + 0.015599938109517097, + 0.04266536608338356, + -0.04522792994976044, + -0.002792071783915162, + -0.12807536125183105, + -0.019324902445077896, + -0.025955867022275925, + 0.04963976889848709, + -0.04794900491833687, + -0.02682766690850258, + -0.0036358025390654802, + 0.11433789879083633, + 0.10181568562984467, + 0.05970509722828865, + 0.010421973653137684, + 0.014516792260110378, + -0.05183247849345207, + 0.015613147057592869, + 0.021134547889232635, + 0.019549457356333733, + -0.011313587427139282, + -0.010303092189133167, + -0.03872905671596527, + -0.025665266439318657, + 0.036694858223199844, + 0.0006278446526266634, + -0.07027237117290497, + -0.03373602032661438, + -0.08189637213945389, + 0.04765840619802475, + 0.029746875166893005, + 0.056957606226205826, + 0.04018205776810646, + -0.014741347171366215, + -0.02246866561472416, + 0.03703829273581505, + -0.06097317114472389, + -0.04839811474084854, + 0.0602334588766098, + 0.019958937540650368, + -0.03497767448425293, + -0.006647475529462099, + -0.024991601705551147, + 0.07486913353204727, + 0.0015925212064757943, + -0.02470100298523903, + -0.0804169550538063, + 0.004134445916861296, + -0.008004710078239441, + -0.010547460056841373, + 0.06102600693702698, + 0.005260521080344915, + -0.09061437100172043, + 0.039812203496694565, + 0.018585192039608955, + 0.017911529168486595, + -0.041687894612550735, + 0.107733353972435, + -0.0022868241649121046, + -0.03830636665225029, + 0.00019947793043684214, + -0.078673355281353, + 0.0673135370016098, + -0.006026648450642824, + -0.019153183326125145, + 0.08971615135669708, + -0.0026137491222471, + 0.06667950004339218, + -0.06387916952371597, + 0.07708825916051865, + -0.07576735317707062, + 0.004266536794602871, + 0.008797255344688892, + 0.04332582280039787, + -0.03817427530884743, + -0.01711898297071457, + 0.002156384289264679, + 0.039178166538476944, + -0.03748740255832672, + 0.03600798547267914, + -0.013116628862917423, + 0.02927134744822979, + -0.03627216815948486, + -0.02699938416481018, + 0.01557351928204298, + 0.01406768336892128, + 0.01066634152084589, + -0.04142371192574501, + -0.023855620995163918, + -0.018941838294267654, + 0.13050583004951477, + 0.020632602274417877, + 0.07011386007070541, + 0.004761877935379744, + 0.008737814612686634, + 0.0871800109744072, + -0.025004811584949493, + -0.07148760557174683, + 0.03040733002126217, + -0.017805855721235275, + 0.004230211954563856, + -0.015811283141374588, + -0.006224784534424543, + 0.03833278641104698, + -0.004269839264452457, + 0.04213700443506241, + -0.0464167483150959, + -0.09156543016433716, + 0.10435182601213455, + 0.015718819573521614, + -0.007172537036240101, + -0.0428767129778862, + -0.07518615573644638, + 0.019390948116779327, + -0.03444931283593178, + -0.03381527587771416, + 0.031939584761857986, + 0.009523755870759487, + 0.01920601911842823, + -0.0026467719580978155, + 0.028716566041111946, + 0.05510833114385605, + 0.02802969329059124, + 0.03418513014912605, + -0.012905282899737358, + 0.08295309543609619, + 0.011637209914624691, + -0.07127626240253448, + 0.008704791776835918, + -0.01323551032692194, + -0.0556366965174675, + -0.032018840312957764, + 0.02217806503176689, + 0.05286278575658798, + 0.020368419587612152, + 0.0015702308155596256, + 0.02061939239501953, + 0.04020847752690315, + 0.000662931299302727, + 0.08459102362394333, + 0.02898074872791767, + 0.035558875650167465, + -0.07127626240253448, + -0.04974544048309326, + -0.0032973196357488632, + 0.011399446986615658, + 0.029086420312523842, + 0.06884578615427017, + 0.08094532042741776, + -0.06313946098089218, + 0.035849474370479584, + -0.004689227789640427, + 0.04269178584218025, + -0.07803931832313538, + 0.009385059587657452, + 0.05928240716457367, + -0.020843947306275368, + -0.10007208585739136, + 0.044091951102018356, + -0.03381527587771416, + -0.0072253732942044735, + 0.06810607761144638, + -0.032652877271175385, + -0.02236299216747284, + 0.06900429725646973, + -0.049771860241889954, + 0.012026878073811531, + 0.02653706632554531, + -0.009134087711572647, + 0.0956866666674614, + -0.03674769401550293, + -0.02147798426449299, + 0.037645913660526276, + -0.00825568288564682, + 0.03489842265844345, + 0.0318867489695549, + -0.050511568784713745, + -0.016247183084487915, + 0.1343100517988205, + 0.0460733138024807, + -0.00050731172086671, + 0.012376919388771057, + -0.0036258958280086517, + 0.004375511780381203, + -0.04543927684426308, + 0.01644532009959221, + 0.05177964270114899, + -0.015507474541664124, + -0.006588034797459841, + 0.05024738609790802, + -0.018056828528642654, + 0.02600870281457901, + -0.012092923745512962, + -0.0004020517517346889, + -0.07661273330450058, + 0.001531429123133421, + -0.004986432380974293, + -0.0350833497941494, + 0.002257103566080332, + 0.04504300281405449, + 0.0015834398800507188, + 0.057063277810811996, + 0.02884865738451481, + 0.03320765867829323, + -4.676070147979772e-06, + 0.046892277896404266, + 0.03246795013546944, + -0.06794756650924683, + -0.017528465017676353, + -0.04020847752690315, + 0.01110884640365839, + -0.05801433324813843, + -0.04565062373876572, + -0.0108975013718009, + -0.049560513347387314, + 0.05753880739212036, + -0.0680532455444336, + 0.045201513916254044, + 0.0018690865254029632, + -0.0350833497941494, + -0.04057833179831505, + -0.00432267552241683, + 0.02175537496805191, + 0.010190814733505249, + 0.01484701968729496, + -0.044091951102018356, + 0.007509368937462568, + -0.011643814854323864, + 0.053945932537317276, + -0.12374277412891388, + -0.03164898604154587, + -0.04633749648928642, + 0.03051300346851349, + -0.02413301169872284, + -0.06504157185554504, + -0.030248820781707764, + 0.057063277810811996, + -0.03143763914704323, + -0.04226909577846527, + 0.017422793433070183, + -0.036087241023778915, + -0.03178107738494873, + 0.06689084321260452, + -0.026167212054133415, + -0.00529684592038393, + 0.024291520938277245, + 0.05875404179096222, + 0.028399547562003136, + 0.009134087711572647, + -0.03156973049044609, + 0.0017452513566240668, + -0.04467314854264259, + -0.0067168232053518295, + 0.024185847491025925, + 0.0669965147972107, + -0.018968256190419197, + -0.031094202771782875, + 0.021993137896060944, + 0.027686256915330887, + -0.020500510931015015, + -0.08157934993505478, + 0.021147755905985832, + -0.03349825739860535, + -0.015454637818038464, + -0.017383165657520294, + 0.044276878237724304, + 0.017475629225373268, + 0.06461887806653976, + 0.01245617400854826, + 0.024397192522883415, + -0.07243866473436356, + 0.06049764156341553, + -0.02253471128642559, + -0.00015376208466477692, + 0.03986503928899765, + -0.03349825739860535, + -0.00988700520247221, + -0.06187138706445694, + -0.04092176631093025, + -0.043457914143800735, + -0.024991601705551147, + 0.04665451496839523, + -0.010838059708476067, + -0.062452588230371475, + 0.020738273859024048, + -0.008566096425056458, + -0.03983862325549126, + -0.06498873233795166, + 0.009206737391650677, + -0.030063893646001816, + 0.033577512949705124, + -0.020487302914261818, + -0.0010947035625576973, + 0.018770119175314903, + 0.03946876898407936, + 0.05096067860722542, + -0.014397910796105862 + ] + }, + { + "id": "d32b9304-7e2c-4889-be00-659b27574af6", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "knappsummer", + "reviewDate": "2021-04-18T06:23:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7170438e-686e-4f8d-ab0d-590d09847e47", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "davidvang", + "reviewDate": "2022-12-20T16:36:01", + "stars": 5, + "verifiedUser": false + }, + { + "id": "bd2ffc2a-633c-4a29-b127-2f50fd02c520", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "susan41", + "reviewDate": "2022-01-15T14:32:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "e00fbf46-dd66-4bbd-a3e1-195da4df4328", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "hsmith", + "reviewDate": "2021-01-23T09:11:20", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f24df069-1d91-4387-af19-34ea39be7221", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "hebertjeffrey", + "reviewDate": "2021-11-02T18:59:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c425f5d3-c810-42a4-8b9f-d75889d9bcc4", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "leonardhayes", + "reviewDate": "2021-09-30T15:36:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7398db65-0ef9-404e-984d-b1994150ba73", + "productId": "06de052e-f3bf-4b0c-9a7e-4e55f6616148", + "category": "Electronics", + "docType": "customerRating", + "userName": "kimberlylopez", + "reviewDate": "2022-07-29T10:41:20", + "stars": 3, + "verifiedUser": true + }, + { + "id": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "product", + "name": "Awesome Computer 3000 (Red)", + "description": "This Awesome Computer 3000 (Red) is the first computer that is available in the Supercharger series, with the idea being that it'll be able to charge up", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2019-08-05T20:28:15", + "price": 962.89, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-04-03T18:07:03", + "newPrice": 1012.49 + }, + { + "priceDate": "2022-12-08T18:07:03", + "newPrice": 1022.2 + }, + { + "priceDate": "2024-09-16T18:07:03", + "newPrice": 962.89 + } + ], + "descriptionVector": [ + -0.04047062247991562, + 0.03015946038067341, + -0.01879783160984516, + 0.04810032993555069, + -0.04901257902383804, + -0.03859084099531174, + -0.06463136523962021, + 0.010663622058928013, + 0.11079662293195724, + 0.12461856007575989, + 0.0756889134645462, + -0.08315275609493256, + 0.0032170552294701338, + -0.03140343353152275, + 0.081825852394104, + -0.03134814649820328, + -0.07607592642307281, + 0.024699795991182327, + -0.032232750207185745, + -0.030104173347353935, + -0.016351347789168358, + 0.05075414478778839, + -0.011838486418128014, + 0.06850150972604752, + -0.028777267783880234, + -0.03378080949187279, + -0.020387353375554085, + 0.0010763831669464707, + -0.024782728403806686, + -0.0252664964646101, + 0.027021881192922592, + 0.04107878729701042, + -0.011382362805306911, + -0.0020456463098526, + 0.005373276770114899, + -0.009281428530812263, + -0.05642113462090492, + 0.03461012244224548, + 0.03964130952954292, + -0.05092000588774681, + 0.0004919744678772986, + -0.005435475613921881, + 0.036213468760252, + -0.020456463098526, + 0.0262893196195364, + -0.0030010875780135393, + -0.02816910296678543, + 0.015480566769838333, + -0.032702695578336716, + 0.01908809132874012, + 0.039945390075445175, + 0.04470013454556465, + 0.013524762354791164, + 0.046718139201402664, + -0.02539089322090149, + -0.004201868083328009, + -0.006047096103429794, + 0.10333278030157089, + -0.007802481763064861, + 0.006047096103429794, + 0.03076762519776821, + -0.020995518192648888, + -0.012743823230266571, + -0.022598862648010254, + -0.026828374713659286, + -0.028155280277132988, + -0.04635876789689064, + 0.08746520429849625, + 0.015826115384697914, + 0.07065773010253906, + -0.07790042459964752, + 0.03297913447022438, + -0.005352544132620096, + 0.08635944873094559, + 0.04870849847793579, + -0.022944411262869835, + 0.0949290469288826, + 0.013573139905929565, + -0.03637932986021042, + -0.032066889107227325, + 0.07696053385734558, + 0.03289620205760002, + 0.012964974157512188, + -0.008300071582198143, + 0.05512187257409096, + -0.015577320009469986, + -0.02463068626821041, + -0.08945555984973907, + -0.003037370042875409, + 0.0092054083943367, + -0.011354719288647175, + 0.07790042459964752, + 0.004730557091534138, + 0.033006779849529266, + -0.0378444567322731, + 0.043649669736623764, + -0.01781647279858589, + 0.04154873639345169, + -0.04572295770049095, + 0.03516300022602081, + 0.022446822375059128, + -0.01720830798149109, + -0.009246873669326305, + -0.04359438270330429, + -0.06352560967206955, + -0.001527323736809194, + 0.0011031631147488952, + 0.036711059510707855, + 0.006589607335627079, + -0.12074841558933258, + -0.0020525571890175343, + -0.01009692344814539, + -0.023746082559227943, + 0.04036004841327667, + 0.005971075501292944, + 0.07010485231876373, + -0.0403047613799572, + 0.040332403033971786, + -0.007636618800461292, + -0.04251626878976822, + 0.033891383558511734, + 0.0005036367219872773, + 0.006368456408381462, + 0.04008360952138901, + 0.02608199045062065, + -0.051998116075992584, + 0.003783754538744688, + -0.00209402316249907, + 0.03914371877908707, + -0.013206858187913895, + -0.06037420779466629, + 0.05794154852628708, + 0.005597883369773626, + 0.07635236531496048, + 0.05266157165169716, + 0.07209520787000656, + 0.0017052812036126852, + 0.09282810986042023, + -0.035384152084589005, + 0.05921316519379616, + -0.05180460959672928, + 0.02829349972307682, + 0.007242693565785885, + 0.02369079552590847, + -0.10626303404569626, + 0.09736170619726181, + -0.06247514486312866, + 0.06673230230808258, + 0.011541315354406834, + 0.04201868176460266, + 0.031071707606315613, + -0.023594042286276817, + -0.03015946038067341, + 0.0015368263702839613, + -0.025363249704241753, + 0.04094056785106659, + -0.07668409496545792, + 0.009468024596571922, + -0.01139618456363678, + 0.06617942452430725, + -0.0321221761405468, + 0.02348346635699272, + -0.04942723736166954, + 0.013013350777328014, + -0.03237096965312958, + 0.010442471131682396, + 0.07729225605726242, + -0.013739002868533134, + -0.1072029247879982, + -0.007643529679626226, + 0.0550389438867569, + -0.044893644750118256, + 0.03646226227283478, + -0.023953411728143692, + 0.0382591150701046, + 0.04027711600065231, + 0.09537135064601898, + 0.0022408810909837484, + -0.014748004265129566, + -0.11787346005439758, + -0.0017346527893096209, + 0.0560617670416832, + -0.01939217373728752, + 0.004543961025774479, + -0.006990443449467421, + 0.04577824845910072, + -0.015909045934677124, + 0.020774368196725845, + -0.013158481568098068, + -0.007899235934019089, + 0.049786608666181564, + -0.048680853098630905, + 0.05045006051659584, + 0.003099568886682391, + -0.01929542049765587, + 0.03021474927663803, + -0.04724337160587311, + 0.013939420692622662, + -0.008383003063499928, + 0.03754037246108055, + -0.03950309008359909, + 0.03281327337026596, + 0.05943431705236435, + 0.017194487154483795, + -0.01571553945541382, + 0.005480397026985884, + -0.018645789474248886, + 0.04566767066717148, + 0.03461012244224548, + 0.015535853803157806, + 0.06319388747215271, + 0.0018331340979784727, + -0.021506929770112038, + -0.04904022440314293, + 0.06463136523962021, + 0.021230490878224373, + 0.020677613094449043, + -0.00847975630313158, + 0.015259415842592716, + -0.03657284006476402, + 0.07110003381967545, + 0.011168123222887516, + 0.002270252676680684, + -0.03861848637461662, + -0.002966532716527581, + -0.030131816864013672, + 0.021202847361564636, + -0.02176954597234726, + 0.005121026653796434, + -0.01724977418780327, + -0.060263633728027344, + 0.00027946222689934075, + 0.040802352130413055, + 0.007297981530427933, + -0.001356277265585959, + 0.041742242872714996, + 0.006679449696093798, + -0.036793988198041916, + -0.10029195249080658, + 0.09752757102251053, + 0.01695951260626316, + 0.029385432600975037, + -0.06778276711702347, + -0.08331862092018127, + 0.02897077426314354, + -0.00035008369013667107, + 0.03809325024485588, + -0.019419817253947258, + -0.0006176676834002137, + -0.021714258939027786, + 0.003949617967009544, + 0.05282743275165558, + 0.008300071582198143, + 0.05492836609482765, + 0.04038769379258156, + 0.07391970604658127, + 0.024990057572722435, + -0.04815562069416046, + -0.016503389924764633, + 0.0032913482282310724, + -0.08049894869327545, + -0.020954051986336708, + -0.04857027903199196, + 0.10980144888162613, + -0.06844621896743774, + 0.04400903731584549, + 0.054734859615564346, + 0.013884132727980614, + -0.01734652742743492, + 0.026151100173592567, + 0.033006779849529266, + -0.022571219131350517, + -0.01640663668513298, + -0.06418906152248383, + -0.019101914018392563, + -0.029717158526182175, + -0.022474465891718864, + 0.01054613571614027, + -0.052689213305711746, + -0.049316663295030594, + -0.04423018917441368, + -0.02786502055823803, + 0.07613121718168259, + -0.08602771908044815, + -0.01939217373728752, + -0.08447965979576111, + 0.021161381155252457, + -0.0296618714928627, + -0.013821934349834919, + -0.061756402254104614, + -0.03510771319270134, + 0.022902945056557655, + 0.005639349110424519, + 0.028141457587480545, + 0.010836396366357803, + 0.039005499333143234, + 0.08016721904277802, + -0.07076830416917801, + -0.013186125084757805, + 0.024050164967775345, + 0.03919900581240654, + -0.06590298563241959, + -0.005324900150299072, + -0.030518831685185432, + -0.025238852947950363, + 0.07911675423383713, + -0.010442471131682396, + -0.004112025257200003, + -0.007125207222998142, + 0.024533933028578758, + 0.061037663370370865, + -0.034748341888189316, + -0.06164582818746567, + -0.00020225378102622926, + 0.08442437648773193, + -0.06429963558912277, + 0.04290328547358513, + 0.01900515891611576, + -0.005404376424849033, + 0.016669252887368202, + 0.04865320771932602, + -0.04547416418790817, + -0.1002366691827774, + 0.005124482326209545, + 0.024699795991182327, + -0.0034036512952297926, + -0.03250918909907341, + 0.042295120656490326, + -0.07817686349153519, + -0.08309747278690338, + 0.014499208889901638, + -0.018631966784596443, + 0.0736432671546936, + 0.024616865441203117, + 0.019018981605768204, + -0.11411388963460922, + -0.026137277483940125, + 0.14275294542312622, + -0.001489313435740769, + 0.023801371455192566, + 0.05219162255525589, + -0.0015307791763916612, + -0.07170819491147995, + 0.02982773445546627, + -0.0019817198626697063, + 0.0150382649153471, + 0.003756110556423664, + -0.05244041979312897, + -0.011624246835708618, + -0.048293840140104294, + 0.001601616619154811, + -0.038286756724119186, + 0.024824194610118866, + -0.05177696794271469, + 0.07403028011322021, + -0.001973081147298217, + 0.02082965523004532, + 0.015991978347301483, + -0.0484873466193676, + -0.004889509174972773, + -0.0642443522810936, + 0.0024222941137850285, + 0.09034015983343124, + 0.07198463380336761, + -0.060097768902778625, + 0.005746469367295504, + 0.0499248281121254, + 0.03469305485486984, + 0.023317603394389153, + 0.030435899272561073, + 0.03842497617006302, + 0.0033345415722578764, + -0.07762398570775986, + 0.003783754538744688, + -0.009488757699728012, + -0.007878502830862999, + 0.0054562087170779705, + 0.01959950290620327, + -0.03187337890267372, + 0.03378080949187279, + -0.014844757504761219, + 0.023469645529985428, + 0.014374812133610249, + 0.003156584221869707, + 0.05832856148481369, + -0.09913091361522675, + 0.009647710248827934, + -0.0677274763584137, + -0.05362910404801369, + 0.03134814649820328, + 0.028943130746483803, + 0.006309713236987591, + -0.0017277417937293649, + 0.02649664878845215, + -0.043787889182567596, + -0.03864612802863121, + 0.009792840108275414, + 0.006472120992839336, + 0.029634227976202965, + 0.009288339875638485, + -0.05058827996253967, + 0.06512895226478577, + 0.04857027903199196, + -0.011790109798312187, + -0.07557833939790726, + -0.06910967081785202, + -0.06474193930625916, + -0.04376024380326271, + -0.07812157273292542, + -0.03292384743690491, + 0.03187337890267372, + -0.009675353765487671, + 0.04212925583124161, + 0.008078920654952526, + 0.05031184107065201, + -0.08353976905345917, + 0.00988268293440342, + 0.052302200347185135, + 0.01827259734272957, + -0.06623470783233643, + -0.01597815565764904, + 0.09210936725139618, + -0.026261676102876663, + 0.058605000376701355, + -0.017954692244529724, + -0.04959310218691826, + 0.06789334118366241, + -0.019696256145834923, + -0.0398901030421257, + 0.00040947480010800064, + -0.01691804826259613, + -0.022432999685406685, + 0.00969608686864376, + 0.029883021488785744, + -0.036075249314308167, + 0.0014625334879383445, + 0.045916467905044556, + 0.06192226707935333, + -0.05393318831920624, + 0.08680174499750137, + 0.01726359687745571, + -0.048929646611213684, + -0.060097768902778625, + -0.01241900771856308, + -0.04085763916373253, + 0.03527357801795006, + 0.006558507680892944, + 0.013967065140604973, + 0.013739002868533134, + -0.0140154417604208, + -0.056780505925416946, + -0.00293543329462409, + -0.03590938448905945, + 0.032785627990961075, + 0.010138388723134995, + -0.033421438187360764, + -0.047658029943704605, + 0.06673230230808258, + -0.09122476726770401, + 0.07972491532564163, + 0.037263933569192886, + 0.011665713042020798, + 0.07010485231876373, + -0.05495601147413254, + -0.005995263811200857, + 0.040581200271844864, + -0.011942151002585888, + -0.07723697274923325, + -0.014374812133610249, + 0.02445100247859955, + -0.0718187689781189, + -0.08237873017787933, + -0.008583420887589455, + 0.06717459857463837, + -0.02398105524480343, + -0.06479723006486893, + 0.03076762519776821, + -0.004011816345155239, + 0.031071707606315613, + 0.028528472408652306, + 0.016724539920687675, + -0.05045006051659584, + -0.020567039027810097, + -0.04259920120239258, + 0.05454135313630104, + 0.061590541154146194, + -0.013960153795778751, + 0.007380913011729717, + -0.02735360898077488, + 0.05116879940032959, + 0.0235249325633049, + 0.04417490214109421, + -0.03181809186935425, + 0.014692716300487518, + -0.05705694481730461, + -0.02974480204284191, + -0.01771971955895424, + 0.05965546891093254, + -0.019502749666571617, + 0.03320028632879257, + -0.02999359741806984, + -0.034665413200855255, + -0.009405826218426228, + -0.010435560718178749, + -0.005767202004790306, + 0.008445202372968197, + -0.014900045469403267, + 0.051832254976034164, + -0.017111554741859436, + -0.05147288367152214, + -0.008680175058543682, + -0.0021596772130578756 + ] + }, + { + "id": "5c867714-39de-43b1-ba11-d147ac24db36", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "jared05", + "reviewDate": "2021-08-11T10:40:03", + "stars": 1, + "verifiedUser": false + }, + { + "id": "181192a8-0ece-4c34-a699-81ddb6659a12", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "catherinehouston", + "reviewDate": "2022-04-27T07:53:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "d25fbb35-27fd-460c-aef5-b591ee802b42", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "henrybrian", + "reviewDate": "2022-03-09T12:02:55", + "stars": 2, + "verifiedUser": true + }, + { + "id": "e6fae22f-bbc3-4158-b1ed-94cc6e08a604", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael43", + "reviewDate": "2021-11-27T23:26:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3aa48fbf-0ec3-4ae1-a5fd-5e715582928b", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "rebecca88", + "reviewDate": "2021-04-03T18:07:03", + "stars": 2, + "verifiedUser": false + }, + { + "id": "d0ee708f-92ad-4053-8996-346b7f7f212b", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "thomas05", + "reviewDate": "2021-05-19T10:12:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "43f0185a-86e2-4cd6-93c6-a36138ad6dcd", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "kellyjames", + "reviewDate": "2021-11-26T04:40:41", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f6031e55-2d8a-4119-9d63-bc30de30342d", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "uscott", + "reviewDate": "2021-10-09T21:02:28", + "stars": 2, + "verifiedUser": true + }, + { + "id": "40d9aa79-4ac7-44db-a58e-15e747986b1c", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtney06", + "reviewDate": "2022-05-02T20:21:23", + "stars": 1, + "verifiedUser": true + }, + { + "id": "39cfe85a-d5d9-4fe2-90f0-18ceb8ec0587", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "leejoshua", + "reviewDate": "2022-10-21T22:15:02", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e4d0d4cc-dd89-4abe-8964-25e068c96b16", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "ischneider", + "reviewDate": "2022-11-04T20:08:36", + "stars": 2, + "verifiedUser": true + }, + { + "id": "afa3825a-75a3-483b-b54d-787267e16f3a", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtney51", + "reviewDate": "2022-07-07T10:46:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "352b2fc8-fa4d-4e56-84f0-95f7d3aff569", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "stacyedwards", + "reviewDate": "2022-03-22T03:33:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "0828ed4b-7b65-4724-8642-2e221c69fbf4", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "william87", + "reviewDate": "2022-07-22T05:23:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e40b7aaa-bce9-4963-b081-9fb1e75d471f", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "manuelsimpson", + "reviewDate": "2022-03-08T15:33:17", + "stars": 2, + "verifiedUser": true + }, + { + "id": "2aa7c05f-64ad-456f-b74f-c86e47120d20", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "dcampbell", + "reviewDate": "2022-09-15T03:04:57", + "stars": 2, + "verifiedUser": false + }, + { + "id": "caf0a488-a161-4a41-917c-00fd78f56cbe", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "ehart", + "reviewDate": "2022-12-09T06:07:37", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b6a2b2c5-baa4-4acd-bd1c-f91d84d517e3", + "productId": "e5344ef1-d384-4a55-ba9e-c29d8df59827", + "category": "Electronics", + "docType": "customerRating", + "userName": "coxchristina", + "reviewDate": "2022-05-13T07:30:47", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "product", + "name": "Basic Speaker Mini (Black)", + "description": "This Basic Speaker Mini (Black) is the first of the Speaker Mini-Series from T-Mobile USA's MVNO, The Mobile House Music. It features a built-in speaker, USB to/", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-11-15T23:25:17", + "price": 736.67, + "stock": 47, + "priceHistory": [ + { + "priceDate": "2021-05-15T21:04:19", + "newPrice": 703.53 + }, + { + "priceDate": "2021-10-06T21:04:19", + "newPrice": 685.1 + }, + { + "priceDate": "2022-02-27T21:04:19", + "newPrice": 718.65 + }, + { + "priceDate": "2022-07-21T21:04:19", + "newPrice": 681.12 + }, + { + "priceDate": "2022-12-12T21:04:19", + "newPrice": 723.85 + }, + { + "priceDate": "2024-12-29T21:04:19", + "newPrice": 736.67 + } + ], + "descriptionVector": [ + -0.043681759387254715, + 0.01246669702231884, + -0.018712125718593597, + -0.018398042768239975, + -0.04283615201711655, + -0.008293011225759983, + -0.010092951357364655, + 0.027373580262064934, + 0.010775478556752205, + 0.09567464888095856, + -0.03708600625395775, + -0.046266909688711166, + -0.045807864516973495, + 0.00939230341464281, + 0.015631692484021187, + -0.0313841849565506, + -0.028678234666585922, + -0.00820241030305624, + 0.03993691876530647, + 0.030852658674120903, + 0.01392839290201664, + -0.0962061807513237, + -0.04385088384151459, + 0.02558572217822075, + -0.03846314176917076, + -0.000627034401986748, + -0.019316133111715317, + 0.03336532786488533, + -0.026721253991127014, + -0.0024024364538490772, + -0.01892956718802452, + 0.0024190465919673443, + -0.014918964356184006, + 0.03220563381910324, + -0.08103352785110474, + 0.05010839179158211, + -0.0312875434756279, + 0.014979364350438118, + 0.007072917651385069, + -0.018410122022032738, + 0.048127248883247375, + -0.02371330000460148, + -0.0025141777005046606, + -0.02650381065905094, + 0.012370055541396141, + 0.06600584834814072, + 0.005671622231602669, + 0.05769471451640129, + 0.025658201426267624, + -0.018337640911340714, + -0.02453474886715412, + 0.04621858894824982, + -0.015426329337060452, + 0.024667631834745407, + -0.01937653310596943, + 0.03952619433403015, + -0.011729808524250984, + 0.14273884892463684, + -0.012327775359153748, + -0.04943190515041351, + 0.024087784811854362, + -0.032278113067150116, + 0.0423046238720417, + 0.01958189532160759, + -0.00997214950621128, + 0.04112077131867409, + -0.06465286761522293, + 0.03244723752140999, + 0.00768296467140317, + 0.11635583639144897, + 0.005943425465375185, + 0.002506627468392253, + -0.03503238409757614, + 0.0393812321126461, + 0.07364048808813095, + -0.0744619369506836, + 0.00915674027055502, + 0.13201169669628143, + -0.012539178133010864, + -0.014157915487885475, + -0.0058769844472408295, + -0.007864166051149368, + -0.03210899233818054, + -0.06131875514984131, + -0.01967853680253029, + -0.0008810946601442993, + 0.001966041512787342, + -0.10543540120124817, + -0.0198355782777071, + 0.0619952417910099, + -0.05759807303547859, + 0.05552028864622116, + 0.007858126424252987, + 0.07939063012599945, + 0.03331700712442398, + 0.05523036792874336, + -0.012961982749402523, + 0.011355324648320675, + -0.07465521991252899, + -0.007417201530188322, + 0.09760747104883194, + 0.03790745511651039, + -0.01107748132199049, + 0.007266199681907892, + 0.034549180418252945, + 0.06358981877565384, + 0.06658568978309631, + 0.02655213139951229, + 0.007072917651385069, + 0.003155934624373913, + 0.04861045256257057, + -0.00930774211883545, + 0.0013348546344786882, + 0.03582967445254326, + 0.03276132047176361, + -0.004533069673925638, + -0.013529748655855656, + -0.01656186208128929, + -0.034452538937330246, + 0.01231569517403841, + -0.048441331833601, + -0.036820244044065475, + -0.011470085941255093, + 0.0037146408576518297, + -0.012152613140642643, + -0.0565350204706192, + 0.008546694181859493, + 0.0733022466301918, + 0.057211507111787796, + -0.05213785171508789, + -0.0511714443564415, + 0.08084025233983994, + 0.008788296952843666, + 0.019509414210915565, + 0.018180599436163902, + -0.0020445624832063913, + 0.051654648035764694, + 0.007876246236264706, + -0.04977014660835266, + 0.045807864516973495, + -0.049286942929029465, + 0.10301937162876129, + 0.039236269891262054, + 0.012351935729384422, + -0.04737827926874161, + -0.034404218196868896, + -0.05861280485987663, + -0.0005507785826921463, + -0.021490557119250298, + 0.028388312086462975, + -0.025005875155329704, + -0.07595987617969513, + 0.041966382414102554, + -0.03771417587995529, + 0.011439885944128036, + 0.039791956543922424, + -0.041966382414102554, + -0.040299322456121445, + -0.008897017687559128, + 0.010866079479455948, + 0.03152914717793465, + -0.04892453923821449, + 0.05774303525686264, + -0.027591023594141006, + -0.03063521720468998, + 0.031408343464136124, + 0.03193987160921097, + 0.05788799747824669, + -0.08383612334728241, + 0.020959030836820602, + -0.0037931615952402353, + -0.01297406293451786, + -0.03882554545998573, + 0.003539478871971369, + -0.04397168383002281, + -0.030973460525274277, + 0.050349991768598557, + 0.029692966490983963, + 0.01221301406621933, + 0.00040808197809383273, + 0.010364754125475883, + 0.061850279569625854, + -0.004373007919639349, + 0.04740244150161743, + -0.022130804136395454, + 0.011524446308612823, + -0.0007761485176160932, + 0.023858262225985527, + -0.09185732901096344, + -0.03145666420459747, + 0.0026062887627631426, + 0.03078017756342888, + -0.025706522166728973, + 0.02002885937690735, + 0.0732056051492691, + -0.06668233126401901, + 0.02372538112103939, + 0.0842226892709732, + -0.016114898025989532, + -0.01967853680253029, + -0.0051310365088284016, + 0.096109539270401, + 0.1021496057510376, + 0.00435488810762763, + 0.012321735732257366, + -0.05585853382945061, + -0.0568249449133873, + 0.06600584834814072, + 0.04102412983775139, + -0.012599578127264977, + 0.010823799297213554, + -0.05281434208154678, + 0.017636993899941444, + 0.0011732828570529819, + 0.13056208193302155, + 0.030562736093997955, + -0.008033288642764091, + -0.02618972770869732, + -0.023302575573325157, + -0.0673588216304779, + 0.0899728313088417, + -0.04331935569643974, + 0.031674109399318695, + -0.004451529122889042, + -0.03993691876530647, + -0.038535624742507935, + 0.034549180418252945, + 0.009984229691326618, + -0.00381732196547091, + 0.08122681081295013, + -0.04549378156661987, + 0.05213785171508789, + -0.0076286038383841515, + -0.011300964280962944, + 0.00513707660138607, + 0.035346467047929764, + 0.06731049716472626, + -0.006776954513043165, + -0.14264221489429474, + 0.057259827852249146, + -0.049480222165584564, + 0.04336767643690109, + -0.048272211104631424, + 0.00613066740334034, + 0.026358850300312042, + 0.011814369820058346, + 0.024715952575206757, + -0.05977249890565872, + -0.09934701025485992, + -0.026576291769742966, + -0.031166743487119675, + 0.002268044976517558, + -0.0065715922974050045, + 0.03007953055202961, + -0.03266467899084091, + 0.03184323012828827, + 0.061801958829164505, + -0.09219557046890259, + 0.025174995884299278, + -0.04943190515041351, + -0.043077751994132996, + -0.022239524871110916, + -0.05808127671480179, + 0.028074229136109352, + -0.04790980741381645, + 0.0020279523450881243, + 0.08320795744657516, + -0.060738906264305115, + 0.017649073153734207, + 0.06740713864564896, + 0.020620787516236305, + 0.03657864034175873, + 0.006607832852751017, + 0.02296433225274086, + -0.03469414263963699, + 0.04887621849775314, + -0.08572062104940414, + 0.04559042304754257, + -0.042159661650657654, + -0.022336166352033615, + 0.09451495856046677, + 0.04455152899026871, + 0.052621059119701385, + -0.03193987160921097, + -0.037279289215803146, + -0.0026787694077938795, + 0.04099997133016586, + 0.032471396028995514, + -0.06600584834814072, + -0.04662931337952614, + -0.008214490488171577, + 0.03324452415108681, + 0.011760009452700615, + 0.030103690922260284, + 0.07194927334785461, + 0.0624784454703331, + 0.05073655769228935, + -0.06798698753118515, + 0.017395392060279846, + 0.05914432927966118, + 0.00025349404313601553, + 0.050253354012966156, + 0.01087211910635233, + -0.047209158539772034, + 0.04742660000920296, + 0.06354150176048279, + -0.04769236594438553, + 0.02393074333667755, + -0.04991510882973671, + -0.027591023594141006, + 0.05010839179158211, + -0.0619952417910099, + -0.08620382845401764, + -0.0281225498765707, + 0.047160837799310684, + -0.030514415353536606, + 0.05479548126459122, + 0.01791483722627163, + 0.030756017193198204, + -0.011143922805786133, + 0.0013114494504407048, + -0.005617261864244938, + -0.08214490115642548, + 0.03817322105169296, + 0.004089124966412783, + 0.0008071038755588233, + -0.008897017687559128, + -0.06325157731771469, + 0.0339210145175457, + 0.024812592193484306, + -0.0450347363948822, + -0.019509414210915565, + 0.046605151146650314, + -0.023592500016093254, + 0.0041434853337705135, + -0.07354384660720825, + 0.03720680996775627, + -0.0028312811627984047, + 0.03003120981156826, + 0.015909535810351372, + 0.0423046238720417, + 0.011367404833436012, + 0.0629616528749466, + -0.02589980512857437, + -0.07291568070650101, + -0.04155565798282623, + -0.025416599586606026, + 0.05822623893618584, + -0.03063521720468998, + -0.05890272930264473, + 0.0011959332041442394, + -0.02734941989183426, + 0.04977014660835266, + -0.05581021308898926, + 0.03273715823888779, + -0.06127043440937996, + -0.0034639781806617975, + -0.02715613879263401, + 0.044285766780376434, + 0.06933996081352234, + -0.03711016848683357, + -0.009488943964242935, + 0.018989969044923782, + -0.014145835302770138, + 0.033534448593854904, + 0.04097580909729004, + 0.025513241067528725, + -0.023592500016093254, + -0.03831817954778671, + 0.025851484388113022, + -0.02362873964011669, + 0.025005875155329704, + -0.08398108184337616, + -0.012309655547142029, + 0.02831583097577095, + 0.034452538937330246, + 0.07484850287437439, + -0.1025361642241478, + 0.018337640911340714, + 0.04667763411998749, + -0.00023499633243773133, + -0.03624039888381958, + 0.002660649362951517, + -0.004777692724019289, + 0.04385088384151459, + -0.0027467200998216867, + -0.0507848784327507, + 0.004587430506944656, + -0.04143485426902771, + 0.012206974439322948, + 0.019291972741484642, + -0.06397638469934464, + -0.09606121480464935, + 0.09408007562160492, + 0.03778665512800217, + -0.0211039911955595, + -0.010147311724722385, + 0.06460455060005188, + -0.020306702703237534, + -0.015764573588967323, + 0.061801958829164505, + 0.02316969446837902, + 0.006601792760193348, + 0.0023088154848665, + -0.07040301710367203, + -0.0963028222322464, + -0.05286266282200813, + 0.04549378156661987, + 0.022577768191695213, + -0.09664106369018555, + 0.08702527731657028, + -0.06445959210395813, + -0.07074125856161118, + -0.0311909019947052, + 0.014798162505030632, + -0.029741287231445312, + -0.007833966054022312, + -0.007423241622745991, + 0.05581021308898926, + 0.025803163647651672, + 0.07402705401182175, + -0.032640520483255386, + 0.007054797373712063, + -0.007290360052138567, + -0.031408343464136124, + 0.0567283034324646, + -0.018361801281571388, + -0.03425925597548485, + -0.03718264773488045, + -0.04911781847476959, + -0.03541895002126694, + -0.03988859802484512, + -0.022903932258486748, + -0.0018316501518711448, + 0.004215966444462538, + -0.030756017193198204, + 0.03633704036474228, + 0.0054934401996433735, + -0.0793423131108284, + 0.021430155262351036, + -7.512332376791164e-05, + 0.07465521991252899, + 0.002373746130615473, + 0.08866817504167557, + -0.1254401057958603, + -0.01862756535410881, + -0.04385088384151459, + -0.038487304002046585, + 0.07170766592025757, + 0.03868058696389198, + -0.03198819234967232, + -0.017926916480064392, + -0.016477301716804504, + -0.0075561231933534145, + 0.03587799519300461, + -0.028799036517739296, + -0.010793598368763924, + 0.03508070483803749, + -0.023834101855754852, + -0.000717257906217128, + -0.05121976137161255, + 0.030103690922260284, + 0.011711688712239265, + 0.02664877288043499, + -0.06808362901210785, + -0.0847058892250061, + -0.014169995673000813, + 0.010431194677948952, + -0.07214255630970001, + 0.023580418899655342, + 0.026624612510204315, + -0.05233113467693329, + 0.019147010520100594, + 0.005013254936784506, + 0.028146710246801376, + -0.02336297743022442, + -0.044744811952114105, + -0.0630582943558693, + 0.0169121865183115, + 0.018893327564001083, + -0.05658334121108055, + 0.0028358111158013344, + -0.0365544818341732, + 0.06122211366891861, + 0.05440891906619072, + -0.08204825967550278, + -0.026817895472049713, + -0.030804337933659554, + 0.010733198374509811, + 0.05996577814221382, + 0.04068588837981224, + 0.08663871139287949, + -0.02766350470483303, + -0.0052971383556723595, + 0.019702697172760963, + 0.02140599489212036, + 0.031166743487119675, + -0.019388612359762192, + -0.027880946174263954, + 0.03522566705942154, + -0.03276132047176361, + 0.012339855544269085, + 0.007821885868906975, + 0.00903593935072422, + -0.019569816067814827, + 0.048127248883247375, + -0.014314956963062286, + 0.01380759198218584, + 0.033027082681655884, + 0.044334087520837784, + -0.015812894329428673, + 0.00045224998029880226 + ] + }, + { + "id": "37cc4d68-3cd3-4364-a243-be9ed8e6c8c2", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "ebonycarrillo", + "reviewDate": "2022-08-11T12:42:17", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3571d477-7267-4d27-8c62-7f2c08db749d", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "lewiserin", + "reviewDate": "2022-03-28T02:24:59", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5f79fa48-69ab-4a5e-af54-b133339d340c", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "robert95", + "reviewDate": "2022-04-22T12:04:51", + "stars": 3, + "verifiedUser": true + }, + { + "id": "13d486cd-dc21-4e18-bc90-3252e9be5e20", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "robinsonbrian", + "reviewDate": "2022-05-05T07:49:30", + "stars": 4, + "verifiedUser": true + }, + { + "id": "6da64b3b-984e-4170-82c1-7b53e0fcc50b", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "jennifer62", + "reviewDate": "2021-05-17T18:40:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "b2f59b8c-8963-4a98-8123-9bc02a0820fe", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "russellmichael", + "reviewDate": "2022-12-15T20:01:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "55c70ab0-8485-41ed-8881-0fdfeec6d5dd", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "ocabrera", + "reviewDate": "2022-04-17T06:05:46", + "stars": 2, + "verifiedUser": true + }, + { + "id": "66de7034-d43e-41a2-8450-2643ece9f58a", + "productId": "e0a002ac-6ef2-40ec-8efe-362ced46eb12", + "category": "Media", + "docType": "customerRating", + "userName": "nmills", + "reviewDate": "2021-05-15T21:04:19", + "stars": 4, + "verifiedUser": false + }, + { + "id": "4550fe07-f801-4dca-86f3-848b2b2957d0", + "productId": "4550fe07-f801-4dca-86f3-848b2b2957d0", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer 3000 (Steel)", + "description": "This Basic Computer 3000 (Steel) is like a 3D computer. It functions as a supercomputer through which the entire thing is controlled by the electrical brain and a remote control computer. The machine uses 3D software for programming and then displays a computer on display while the programmer watches the film.\n\nThe movie tells a simple plot with no magic bells or cliches and only 3D graphics.\n\nThis video is for my personal use to show the benefits of using a", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-03-30T09:41:00", + "price": 878.61, + "stock": 24, + "priceHistory": [ + { + "priceDate": "2022-07-28T09:30:23", + "newPrice": 801.42 + }, + { + "priceDate": "2025-06-09T09:30:23", + "newPrice": 878.61 + } + ], + "descriptionVector": [ + -0.002726238453760743, + 0.03982802852988243, + -0.03600773215293884, + 0.004729043692350388, + 0.008460248820483685, + 0.04761117324233055, + -0.011924175545573235, + 0.06346255540847778, + 0.04513083025813103, + 0.11745990067720413, + 0.08524395525455475, + -0.05861591175198555, + 0.031645748764276505, + -0.028866054490208626, + 0.03036281280219555, + 0.043762363493442535, + -0.008517268113791943, + 0.038259994238615036, + -0.03458224609494209, + -0.10001197457313538, + 0.0543394573032856, + 0.010619857348501682, + -0.09339772164821625, + 0.04527337849140167, + -0.004718352574855089, + -0.000872663629706949, + 0.0014415208715945482, + 0.004921484272927046, + -0.030733440071344376, + -0.05000598728656769, + 0.02682761289179325, + 0.038288507610559464, + -0.052685897797346115, + -0.04601462930440903, + 0.019144253805279732, + -0.022437121719121933, + -0.03558008745312691, + -0.033384840935468674, + 0.03007771633565426, + -0.007334116380661726, + 0.07480940967798233, + -0.017576219514012337, + 0.06346255540847778, + 0.014582703821361065, + 0.015323955565690994, + -0.012444477528333664, + -0.050718728452920914, + -0.017718767747282982, + -0.026015086099505424, + -0.02739780582487583, + 0.03270060941576958, + -0.04501679167151451, + 0.05607854947447777, + 0.04478871449828148, + -0.03666345402598381, + 4.357193120085867e-06, + 0.08016923069953918, + 0.07663403451442719, + 0.013107326813042164, + -0.025316599756479263, + 0.04481722414493561, + -0.00059202138800174, + -0.022907530888915062, + -0.005213708616793156, + -0.0193580761551857, + 0.0009595290757715702, + -0.048152856528759, + 0.06414678692817688, + 0.0013702466385439038, + -0.008809491991996765, + -0.044589146971702576, + -0.06659862399101257, + -0.016649655997753143, + 0.030790459364652634, + 0.01284361258149147, + 0.033898014575242996, + 0.07885778695344925, + -0.019115742295980453, + 0.037404704838991165, + -0.0569908581674099, + 0.0240764282643795, + 0.07874374836683273, + -0.05681980028748512, + -0.02711270935833454, + 0.06260726600885391, + 0.004408309701830149, + -0.013470825739204884, + -0.12099509686231613, + 0.02739780582487583, + 0.04712650924921036, + -0.02698441594839096, + 0.04276452586054802, + 0.08478780090808868, + -0.06545823812484741, + -0.02805352956056595, + 0.01442589983344078, + -0.05713340640068054, + 0.006382605526596308, + -0.0290371123701334, + 0.04122500494122505, + 0.043163660913705826, + -0.03754725307226181, + -0.11107373237609863, + -0.10303399711847305, + 0.018117904663085938, + -0.037404704838991165, + 0.013613373972475529, + 0.04470318555831909, + 0.018146414309740067, + -0.023577509447932243, + -0.11905644088983536, + -0.01803237572312355, + -0.017063045874238014, + -0.023705802857875824, + -0.00225761067122221, + 0.05337012931704521, + -0.05291397497057915, + -0.07366902381181717, + 0.052457816898822784, + -0.0675109326839447, + 0.06408976763486862, + -0.015010348521173, + -0.0321304127573967, + 0.02473215013742447, + -0.05670576170086861, + 0.019443605095148087, + -0.04419001191854477, + -0.04818136617541313, + 0.03657792508602142, + -0.011382491327822208, + -0.1214512512087822, + 0.030733440071344376, + 0.04627121612429619, + 0.041396062821149826, + -0.004066193476319313, + 0.053883302956819534, + -0.009971261955797672, + 0.02729802206158638, + 0.017504945397377014, + 0.04504530131816864, + -0.01863107830286026, + -0.004308525938540697, + -0.09356877952814102, + -0.03210190311074257, + -0.07754634320735931, + -0.005299237556755543, + -0.06232216954231262, + 0.06437486410140991, + 0.02612912468612194, + 0.031588729470968246, + -0.04570102319121361, + -0.048124346882104874, + -0.03244401887059212, + -0.024760659784078598, + 0.05998437479138374, + -0.042279861867427826, + 0.0035637104883790016, + 0.028039274737238884, + -0.06517313420772552, + 0.025544676929712296, + 0.011090267449617386, + -0.03632133826613426, + -0.059357162564992905, + 0.004465329460799694, + 0.0534556582570076, + -0.01530970074236393, + 0.0749804675579071, + 0.04701247066259384, + -0.10588496923446655, + 0.026271674782037735, + -0.04524486884474754, + 0.03920081630349159, + 0.045786552131175995, + 0.035066910088062286, + -0.018460020422935486, + -0.01472525205463171, + 0.04849497228860855, + -0.013349659740924835, + -0.054453495889902115, + -0.12829357385635376, + -0.016749439761042595, + 0.00022295463713817298, + -0.0037632782477885485, + 0.03150320053100586, + 0.037718310952186584, + 0.08222192525863647, + 0.05282844603061676, + -0.019429350271821022, + -0.012551388703286648, + -0.06796708703041077, + 0.12760934233665466, + -0.043220680207014084, + 0.08199384808540344, + -0.04327769950032234, + 0.004062629770487547, + -0.021439282223582268, + -0.03951442241668701, + 0.0005479204701259732, + -0.03503840044140816, + 0.028139058500528336, + -0.024275995790958405, + 0.025288090109825134, + 0.1422063112258911, + -0.004076885059475899, + -0.017504945397377014, + 0.018859155476093292, + -0.04213731363415718, + 0.02208075113594532, + 0.03004920668900013, + -0.047269057482481, + 0.05026257410645485, + 0.03007771633565426, + -0.07150229066610336, + -0.04966387152671814, + 0.05947120115160942, + -0.04307813197374344, + -0.04627121612429619, + -0.016122225672006607, + -0.046100158244371414, + -0.05947120115160942, + 0.07127421349287033, + -0.007996966131031513, + 0.011204306036233902, + -0.06568631529808044, + -0.011738862842321396, + -0.022023731842637062, + 0.12110913544893265, + 0.05103233456611633, + -0.035123929381370544, + 0.033356331288814545, + -0.0785156711935997, + 0.08068240433931351, + 0.014005382545292377, + 0.018830645829439163, + -0.03312825411558151, + 0.013392424210906029, + 0.053569696843624115, + -0.0426504872739315, + -0.11386767774820328, + 0.10041110962629318, + -0.014967584051191807, + 0.016663910821080208, + -0.0027707850094884634, + -0.03372695669531822, + 0.004757553339004517, + 0.046926941722631454, + 0.06984872370958328, + -0.050946805626153946, + 0.041167985647916794, + -0.07093209773302078, + 0.048666030168533325, + 0.062208130955696106, + 0.01777578890323639, + 0.046698860824108124, + 0.027725668624043465, + 0.020569738000631332, + 0.021439282223582268, + -0.021296733990311623, + 0.02324964664876461, + -0.011988322250545025, + -0.07703316956758499, + -0.025601696223020554, + -0.03287166729569435, + -0.006881524808704853, + 0.015409484505653381, + -0.004048374947160482, + 0.028965838253498077, + -0.0415671207010746, + -0.0534556582570076, + 0.034781813621520996, + 0.05077574774622917, + -0.05930014327168465, + -0.011510784737765789, + -0.012309055775403976, + -0.004230124410241842, + -0.02192394621670246, + 0.030990026891231537, + 0.044646166265010834, + -0.003430071286857128, + -0.07452431321144104, + 0.04182370752096176, + -0.010876444168388844, + -0.043220680207014084, + 0.0248604454100132, + 0.0021275351755321026, + 0.020227620378136635, + 0.018645333126187325, + -0.0002481233386788517, + 0.020142091438174248, + -0.05781763792037964, + -0.018460020422935486, + 0.06351957470178604, + -0.00925139244645834, + 0.012166507542133331, + 0.02714121900498867, + 0.052942484617233276, + 0.0459861196577549, + -0.05545133724808693, + 0.0453018881380558, + -0.010954845696687698, + 0.037433214485645294, + -0.07589277625083923, + -0.0157230906188488, + -0.022665198892354965, + -0.031588729470968246, + 0.03965697064995766, + 0.050376612693071365, + 0.012358947657048702, + 0.004440383519977331, + -0.007547938730567694, + 0.01116866897791624, + 0.021439282223582268, + -0.058501873165369034, + 0.026970161125063896, + 0.03868764266371727, + -0.0040982672944664955, + 0.1058279499411583, + -0.025231070816516876, + -0.019158508628606796, + 0.006785304751247168, + 0.024062173441052437, + 0.00015724872355349362, + -0.08444568514823914, + 0.07030487805604935, + 0.049236223101615906, + -0.024846190586686134, + -0.04481722414493561, + 0.004636387340724468, + -0.05086127668619156, + -0.062493227422237396, + 0.046043138951063156, + -0.03823148459196091, + -0.030818969011306763, + 0.05234377831220627, + -0.015894148498773575, + -0.1150650829076767, + -0.032501038163900375, + 0.02657102607190609, + -0.034183111041784286, + 0.04849497228860855, + 0.0389157198369503, + 0.05103233456611633, + 0.017633238807320595, + -0.01222352683544159, + -0.04880857840180397, + -0.03458224609494209, + 0.028267351910471916, + 0.0047824992798268795, + -0.01488205511122942, + -0.013242748565971851, + 0.0021738633513450623, + -0.044304050505161285, + 0.026371458545327187, + -0.04937877133488655, + 0.06255024671554565, + -0.009023315273225307, + 0.018588313832879066, + -0.029307955875992775, + -0.08398953080177307, + 0.03754725307226181, + -0.006475261878222227, + -0.009393940679728985, + 0.10177957266569138, + 0.07355498522520065, + -0.06631352752447128, + 0.018745116889476776, + -0.004907229449599981, + 0.0240764282643795, + 0.04872304946184158, + 0.048095837235450745, + 0.010562838055193424, + -0.04131053388118744, + -0.0692785307765007, + 0.005719755310565233, + -0.025986576452851295, + -0.03546604886651039, + 0.030106225982308388, + 0.03751874342560768, + -0.0497208908200264, + 0.009180118329823017, + -0.004818136803805828, + 0.011867156252264977, + 0.039143797010183334, + 0.006632065400481224, + 0.006129581946879625, + -0.023591764271259308, + -0.024204721674323082, + -0.02501724846661091, + -0.030391322448849678, + 0.03928634524345398, + -0.006289949174970388, + 0.01228767354041338, + -0.08501587808132172, + 0.030248774215579033, + 0.0506046898663044, + -0.011468020267784595, + -0.006785304751247168, + 0.02096887305378914, + 0.03258656710386276, + -0.01629328355193138, + -0.0024268869310617447, + 0.053826283663511276, + 0.0078116534277796745, + -0.05781763792037964, + 0.003841680008918047, + -0.026898887008428574, + -0.020897598937153816, + -0.05319907143712044, + -0.018075140193104744, + 0.04912218451499939, + 0.038003407418727875, + -0.11210007965564728, + 0.0025908176321536303, + -0.0305623821914196, + 0.01600818708539009, + -0.001242844038642943, + -0.006339841056615114, + 0.03589369356632233, + 0.007989838719367981, + -0.04011312499642372, + -0.003634984837844968, + -0.009928497485816479, + -0.03583667427301407, + 0.008545777760446072, + 0.0034175983164459467, + -0.028766270726919174, + -0.010862189345061779, + -0.046955451369285583, + -0.031645748764276505, + -0.01844576559960842, + 0.02441854402422905, + -0.043163660913705826, + -0.051859114319086075, + 0.02153906598687172, + 0.02239435724914074, + 0.013192856684327126, + -0.005456040613353252, + 0.06557227671146393, + -0.0135848643258214, + 0.07965605705976486, + 0.012701064348220825, + 0.0005853394395671785, + 0.021624594926834106, + -0.011553549207746983, + -0.05496666952967644, + 0.005712627898901701, + -0.03486734256148338, + -0.07891480624675751, + 0.03153171017765999, + -0.035979222506284714, + -0.05516623705625534, + -0.016150735318660736, + -0.03677749261260033, + 0.014810780994594097, + -0.014810780994594097, + 0.010940590873360634, + -0.021368008106946945, + -0.005919323302805424, + 0.004793190862983465, + -0.029307955875992775, + -0.000937255856115371, + 0.019115742295980453, + 0.05479561164975166, + 0.0019315311219543219, + 0.026970161125063896, + 0.009016187861561775, + -0.022408612072467804, + -0.05510921776294708, + 0.008453121408820152, + -0.001878075418062508, + -0.012864994816482067, + -0.027312276884913445, + -0.021111421287059784, + 0.04484573379158974, + 0.03153171017765999, + -0.0778314396739006, + -0.003169920528307557, + -0.019728701561689377, + -0.01787557266652584, + -0.017946846783161163, + 0.03466777503490448, + -0.059357162564992905, + 0.01635030470788479, + -0.0253023449331522, + -0.011852901428937912, + 0.057931676506996155, + 0.03369844704866409, + 0.030790459364652634, + -0.03637835755944252, + 0.034211620688438416, + 0.00947234220802784, + 0.021439282223582268, + -0.038858700543642044, + -0.00779739860445261, + -0.012836485169827938, + 0.017063045874238014, + -0.040597788989543915, + 0.09288454800844193, + 0.005042650271207094, + 0.11455190926790237, + -0.05924312397837639, + 0.014839290641248226, + -0.0664275661110878, + 0.07047593593597412, + -0.05251483991742134, + 0.060782644897699356, + 0.0969899445772171, + 0.005815975368022919, + -0.02018485590815544, + -0.044931262731552124, + 0.03438267856836319, + -0.026485497131943703 + ] + }, + { + "id": "3d891c40-7c80-4ab2-b6ed-30ffdf375d88", + "productId": "4550fe07-f801-4dca-86f3-848b2b2957d0", + "category": "Electronics", + "docType": "customerRating", + "userName": "adamsrandall", + "reviewDate": "2022-07-28T09:30:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone Micro (Steel)", + "description": "This Luxe Phone Micro (Steel) is easy to use and quick to install. The micro is made specifically for the Luxe Phone (sold separately), meaning it will protect your phone from scratches and wear. It has two 3mm lens filters (0.4x, 1x and 1.8x).", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2018-01-09T10:13:57", + "price": 838.51, + "stock": 81, + "priceHistory": [ + { + "priceDate": "2021-04-23T08:11:06", + "newPrice": 916.01 + }, + { + "priceDate": "2022-02-21T08:11:06", + "newPrice": 862.62 + }, + { + "priceDate": "2022-12-22T08:11:06", + "newPrice": 846.47 + }, + { + "priceDate": "2023-06-10T08:11:06", + "newPrice": 838.51 + } + ], + "descriptionVector": [ + -0.020465340465307236, + 0.06012388691306114, + -0.04033784195780754, + 0.020613551139831543, + 0.013524169102311134, + 0.0356445237994194, + -0.012412593699991703, + 0.0031926920637488365, + 0.016253704205155373, + 0.04997149482369423, + -0.03497757762670517, + 0.05666565150022507, + 0.03275442495942116, + -0.05172531679272652, + 0.06545945256948471, + -0.013240099884569645, + -0.04663677141070366, + -0.00849737785756588, + 0.01657482609152794, + -0.01840275153517723, + 0.0652124360203743, + -0.11540624499320984, + -0.053454432636499405, + 0.017315877601504326, + 0.040189631283283234, + -0.01622900366783142, + -0.0015762759139761329, + 0.001962239621207118, + 0.016883596777915955, + -0.040214333683252335, + 0.035891540348529816, + 0.006589172873646021, + -0.05612221360206604, + 0.04169643297791481, + -0.02391122467815876, + -0.029320893809199333, + 0.06185300275683403, + -0.07771148532629013, + 0.030728887766599655, + 0.05883939936757088, + -0.03537280485033989, + -0.004134443588554859, + -0.05770312249660492, + -0.042017556726932526, + -0.0008792253793217242, + -0.01682184264063835, + -0.03265561908483505, + -0.013672379776835442, + -0.018501557409763336, + -0.011640666052699089, + 0.023182526230812073, + 0.04056015610694885, + -0.08457855135202408, + -0.035101085901260376, + 0.0227131936699152, + -0.016340160742402077, + 0.04584631696343422, + 0.20611080527305603, + 0.07726684957742691, + -0.08363988250494003, + 0.00044270040234550834, + -0.06476780027151108, + 0.05113247409462929, + 0.0246769767254591, + -0.05310861021280289, + 0.02907387539744377, + 0.003186516696587205, + -0.016858896240592003, + 0.014314622618258, + 0.07953940331935883, + 0.008219483308494091, + -0.010102986358106136, + -0.030555976554751396, + -0.026134375482797623, + 0.01364767737686634, + 0.02764117904007435, + -0.011004597879946232, + 0.004826090298593044, + 0.039399176836013794, + -0.0592346265912056, + 0.046365052461624146, + -0.002697114599868655, + -0.03196397423744202, + 0.00977568980306387, + 0.04033784195780754, + -0.043005622923374176, + 0.07988522946834564, + -0.06634870916604996, + -0.00249795732088387, + 0.0987573117017746, + -0.012918977998197079, + 0.027715284377336502, + -0.003322375938296318, + 0.011727121658623219, + 0.029716119170188904, + 0.0017522753914818168, + -0.05231815576553345, + 0.05943223834037781, + -0.058789994567632675, + -0.02389887534081936, + 0.023194877430796623, + 0.0023698173463344574, + 0.022293265908956528, + 0.012431119568645954, + -0.009664531797170639, + 0.0869499072432518, + 0.010800809599459171, + -0.006360682193189859, + 0.03643497824668884, + -0.11412175744771957, + 0.051083073019981384, + -0.0475013293325901, + -0.05676445737481117, + 0.01700710505247116, + 0.011461579240858555, + 0.0008066642330959439, + -0.007058504968881607, + 0.06111195310950279, + -0.01757524535059929, + 0.011850630864501, + 0.011146632954478264, + 0.030136048793792725, + 0.039226267486810684, + -0.029197383671998978, + -0.003600269788876176, + -0.010918142274022102, + 0.005388053599745035, + 0.023824770003557205, + 0.0007479977211914957, + -0.00979421567171812, + -0.05972865968942642, + 0.04310442879796028, + 0.053454432636499405, + 0.0022771861404180527, + -0.022219160571694374, + 0.06689214706420898, + 0.03655848652124405, + 0.006218647584319115, + 0.01421581581234932, + 0.05631982907652855, + 0.05014440789818764, + 0.032877933233976364, + -0.02825872041285038, + 0.010702002793550491, + 0.012918977998197079, + -0.08655468374490738, + -0.04451242461800575, + -0.013981150463223457, + -0.050119705498218536, + 0.009701584465801716, + -0.02628258615732193, + -0.08877783268690109, + -0.02314547263085842, + -0.048316482454538345, + 0.06471839547157288, + 0.0016472932184115052, + -0.015512654557824135, + -0.011480105109512806, + -0.04567340388894081, + 0.025813255459070206, + 0.060963742434978485, + -0.013067187741398811, + 0.02508455514907837, + -0.0068855928257107735, + 0.028406931087374687, + 0.05078665167093277, + 0.03423652797937393, + 0.004335144534707069, + -0.06373032927513123, + 0.05103366822004318, + 0.006731207482516766, + 0.0731169730424881, + -0.03255681321024895, + -0.061951812356710434, + -0.02155221439898014, + -0.057258490473032, + 0.014993919059634209, + -0.03322375938296318, + 0.02412118948996067, + -0.0033470774069428444, + 0.06802842020988464, + 0.013721782714128494, + -0.06471839547157288, + -0.06244584545493126, + 0.004217811860144138, + -0.0553811639547348, + -0.033322565257549286, + -0.004186934791505337, + 0.04797066003084183, + 0.040782470256090164, + -0.05617161840200424, + 0.023960629478096962, + 0.03025955706834793, + -0.010979896411299706, + 0.06773200631141663, + -0.07746446877717972, + 0.028357528150081635, + 0.05394846573472023, + -0.02586265839636326, + -0.014672797173261642, + 0.0008089799666777253, + -0.01383293978869915, + 0.05021851509809494, + 0.012344663962721825, + 0.012319962494075298, + -0.02828342281281948, + 0.0017476438079029322, + 0.047328416258096695, + -0.03216158598661423, + 0.018415100872516632, + 0.02528216876089573, + 0.005042230244725943, + -0.05414608120918274, + 0.07212889939546585, + 0.03742304444313049, + 0.03517518937587738, + -0.009411339648067951, + -0.07682222127914429, + -0.03532340005040169, + -0.06980694830417633, + 0.04401839151978493, + -0.07217830419540405, + 0.03139583393931389, + -0.022663790732622147, + -0.04112829640507698, + -0.04609333351254463, + 0.028999771922826767, + 0.07030098140239716, + 0.09776924550533295, + 0.018489206209778786, + 0.020588848739862442, + 0.007163486909121275, + 0.0015523461624979973, + -0.0075525385327637196, + -0.024985747411847115, + -0.039522685110569, + -0.019007941707968712, + -0.035471610724925995, + 0.03314965218305588, + 0.03732423856854439, + 0.010603195987641811, + -0.02568974532186985, + 0.04075777158141136, + 0.0037855322007089853, + 0.010430283844470978, + -0.03322375938296318, + 0.05686326324939728, + -0.01018944289535284, + -0.10503154247999191, + -0.018328646197915077, + -0.018674468621611595, + 0.00978186447173357, + -0.032112181186676025, + 0.05987687036395073, + 0.0024686241522431374, + 0.05547996982932091, + 0.035076383501291275, + -0.041819941252470016, + -0.0034427964128553867, + -0.06951052695512772, + -5.80392952542752e-05, + -0.07143725454807281, + -0.010430283844470978, + 0.03576803207397461, + -0.04967507719993591, + 0.005462158937007189, + 0.06377973407506943, + -0.07939119637012482, + 0.0022339581046253443, + 0.024257048964500427, + 0.012807820923626423, + -0.03063008189201355, + 0.0947556421160698, + 0.048143573105335236, + -0.06061792001128197, + 0.030210154131054878, + -0.13872462511062622, + 0.11580146849155426, + -0.03853461891412735, + -0.03413772210478783, + 0.07692103087902069, + -0.035101085901260376, + 0.017340578138828278, + -0.017130615189671516, + 0.1581895500421524, + -0.0027773950714617968, + -0.007540187332779169, + -0.026628410443663597, + -0.00848502665758133, + -0.048909325152635574, + -0.02944440208375454, + -0.04955156892538071, + 0.06274226307868958, + -0.003297674236819148, + 0.01657482609152794, + -0.035891540348529816, + 0.01797047071158886, + 0.007676046807318926, + -0.04878581687808037, + 0.03969559818506241, + -0.03240860253572464, + 0.04804476723074913, + -0.030358362942934036, + -0.08255301415920258, + -0.010214144363999367, + 0.07282055169343948, + 0.07830432057380676, + 0.10196853429079056, + -0.015191532671451569, + -0.0167971421033144, + 0.08848141133785248, + 0.01421581581234932, + -0.09574370831251144, + -0.01216557715088129, + 0.07267233729362488, + -0.030333662405610085, + -0.04191875085234642, + -0.004680968355387449, + -9.629795385990292e-05, + 0.04927984997630119, + 0.05098426714539528, + 0.002673956798389554, + -0.029518505558371544, + 0.06373032927513123, + 0.056616246700286865, + 0.0001462802611058578, + -0.010547616519033909, + -0.03937447443604469, + -0.03129702806472778, + -0.041177697479724884, + -0.07138784974813461, + 0.005116335116326809, + -0.0435490608215332, + -0.009967127814888954, + -0.03295204043388367, + 0.00926930457353592, + -0.0023790805134922266, + 0.0355210155248642, + -0.024195294827222824, + -0.025368623435497284, + 0.03179106116294861, + 0.01973664201796055, + -0.046562664210796356, + 0.034705858677625656, + 0.0632362961769104, + -0.07622937858104706, + -0.035446908324956894, + 0.006215559784322977, + 0.027962300926446915, + 0.01106017641723156, + 0.0014913638588041067, + -0.04663677141070366, + 0.07785969227552414, + -0.016661282628774643, + 0.0023435717448592186, + 0.07366040349006653, + 0.05350383743643761, + -0.029197383671998978, + 0.006268050987273455, + 0.018872082233428955, + -0.037447746843099594, + -0.015352093614637852, + 0.08877783268690109, + 0.03460705280303955, + -0.015611461363732815, + 0.04246218502521515, + -0.06012388691306114, + 0.047130804508924484, + -0.08205898106098175, + 0.03974500298500061, + 0.02887626364827156, + -0.03339666873216629, + 0.023207226768136024, + 0.059778064489364624, + -0.028011703863739967, + -0.028382228687405586, + 0.08413391560316086, + -0.0034180949442088604, + -0.029592610895633698, + 0.036681994795799255, + -0.010294424369931221, + 0.048143573105335236, + 0.020267726853489876, + 0.005795631557703018, + 0.07845253497362137, + 4.146697756368667e-05, + -0.07781028747558594, + 0.0593334324657917, + -0.013079538941383362, + -0.0027542372699826956, + -0.012918977998197079, + -0.018118681386113167, + -0.011399825103580952, + 0.08260241150856018, + 0.05182412266731262, + 0.008651763200759888, + -0.025936763733625412, + -0.0023049754090607166, + 0.03710192069411278, + -0.015179181471467018, + 0.026776619255542755, + 0.05834536626935005, + -0.03134642913937569, + -0.005070019513368607, + 0.037274833768606186, + -0.00891113094985485, + 0.07025157660245895, + 0.01422816701233387, + 0.02388652414083481, + -0.1226191371679306, + -0.0010899616172537208, + -0.04629094526171684, + -0.012758417055010796, + -0.03129702806472778, + 0.05557877942919731, + 0.023775365203619003, + -0.002873114077374339, + -0.006953522562980652, + 0.01383293978869915, + -0.03485406935214996, + 0.050292618572711945, + -0.028975069522857666, + -0.055035341531038284, + -0.003887426806613803, + 0.006138367112725973, + 0.01720471866428852, + -0.1184692531824112, + -0.020700007677078247, + 0.05439309775829315, + -0.07657520473003387, + 0.03532340005040169, + -0.016476020216941833, + -0.013758835382759571, + -0.0247263815253973, + 0.03675609827041626, + 0.0207494106143713, + -0.009516322053968906, + -0.007058504968881607, + -0.007731625344604254, + 0.012282909825444221, + 0.022219160571694374, + -0.0005959279951639473, + 0.02882685884833336, + 0.055825795978307724, + -0.12805350124835968, + -0.018415100872516632, + -0.06575586646795273, + 0.02610967494547367, + 0.028382228687405586, + -0.06624989956617355, + -0.01698240451514721, + 0.02882685884833336, + -0.036854904145002365, + -0.03379189595580101, + 0.04789655655622482, + -0.022046249359846115, + 0.008194781839847565, + 0.03594094142317772, + 0.025590939447283745, + -0.045525193214416504, + -0.052515771239995956, + 0.05992627143859863, + 0.037670060992240906, + 0.014166412875056267, + -0.0037700936663895845, + -0.08156494051218033, + -0.05691266804933548, + 0.04265980049967766, + -0.0039213914424180984, + 0.0148086566478014, + 0.0028515001758933067, + -0.04068366438150406, + -0.027221249416470528, + 0.020033061504364014, + -0.02355305105447769, + -0.04322793707251549, + -0.02230561524629593, + -0.045920420438051224, + -0.03043246828019619, + -0.029493805021047592, + 0.014252868480980396, + 0.04960097000002861, + -0.01762464828789234, + 0.09717640280723572, + 0.027962300926446915, + -0.061161357909440994, + 0.008126852102577686, + 0.0187609251588583, + 0.06051911413669586, + 0.01701945625245571, + 0.006366857793182135, + 0.0014280658215284348, + -0.08714752644300461, + -0.05236756056547165, + -0.021601619198918343, + -0.040411945432424545, + -0.00025106940302066505, + 0.0335695818066597, + -0.054442498832941055, + 0.007188188377767801, + 0.03808999061584473, + 0.004304267466068268, + -0.03532340005040169, + 0.015512654557824135, + -0.026035569608211517, + 0.06985634565353394, + -0.023861821740865707, + 0.029172683134675026, + 0.035545714199543, + 0.011548034846782684, + 0.09055635333061218, + 0.00735492492094636 + ] + }, + { + "id": "b4473571-8eb4-4bc4-9918-db1a17c82395", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "oingram", + "reviewDate": "2021-09-10T14:11:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "54bb9f9b-ea01-4281-a4d2-8f57bf62400f", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "tlopez", + "reviewDate": "2022-07-16T23:58:36", + "stars": 4, + "verifiedUser": true + }, + { + "id": "2d388997-4fb8-48dc-bbb8-fda669621b66", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "icarpenter", + "reviewDate": "2021-04-23T08:11:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8ae2ee93-5d1a-4c3f-a65f-b5baeb4cb153", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "omccarthy", + "reviewDate": "2022-06-03T08:26:03", + "stars": 3, + "verifiedUser": true + }, + { + "id": "88ed07cc-56aa-4fe6-bf72-931f5de779a0", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "denisewallace", + "reviewDate": "2021-10-10T07:02:54", + "stars": 2, + "verifiedUser": true + }, + { + "id": "cd02f4e4-8afd-4d5e-8222-d824c0ea712e", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "davieskatie", + "reviewDate": "2021-09-14T08:59:23", + "stars": 2, + "verifiedUser": false + }, + { + "id": "44815d50-e30a-440a-b4bf-c1796c180855", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kennedypamela", + "reviewDate": "2021-05-30T04:00:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ff698af6-f36c-4591-af63-637a1ea9179e", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kristi02", + "reviewDate": "2022-08-20T07:52:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "27ca6e11-97ce-4c7d-8844-785446fd85e2", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kaitlinbernard", + "reviewDate": "2022-12-24T01:19:13", + "stars": 3, + "verifiedUser": true + }, + { + "id": "167695ef-83ac-4c39-960d-d20b2982f065", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "kjohnson", + "reviewDate": "2022-06-11T01:54:06", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f8620952-4318-438f-b1c8-002449bd355d", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "qkramer", + "reviewDate": "2021-06-17T14:51:13", + "stars": 4, + "verifiedUser": true + }, + { + "id": "e6c07c63-d521-4b99-80b9-9f48cc66352d", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "diazemily", + "reviewDate": "2022-09-08T15:09:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b08048d0-7eda-4f6b-aa5b-d4fdfb588235", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "yolandaclark", + "reviewDate": "2022-11-25T02:39:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "bdd090a9-1f0c-47f6-a404-59e2a646c217", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "santiagojason", + "reviewDate": "2022-04-10T08:22:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b98c012b-5bca-400d-93ff-324a1bfa36e9", + "productId": "ba71d7a1-86a2-4ed0-8495-eb4fe62957b0", + "category": "Electronics", + "docType": "customerRating", + "userName": "shellyhorton", + "reviewDate": "2021-08-31T16:32:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "eec8d165-0353-4943-b250-d37dd173fa45", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "product", + "name": "Awesome Filter + (Gold)", + "description": "This Awesome Filter + (Gold) is rated 3.8 out of 5 by 4.\n\nRated 5 out of 5 by TillyD from Great Filter!! The filter fits my filter in with one pair of the AICC filters and works well with the dual cable cables with the adapter (the others are not connected to each other), the I.D. cable used works", + "countryOfOrigin": "Canada", + "rareItem": false, + "firstAvailable": "2019-01-14T12:57:12", + "price": 256.67, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-01-18T20:39:55", + "newPrice": 240.58 + }, + { + "priceDate": "2022-07-15T20:39:55", + "newPrice": 256.67 + } + ], + "descriptionVector": [ + 0.0024343908298760653, + 0.034715957939624786, + -0.017752477899193764, + 0.051784638315439224, + -0.05480913445353508, + -0.01868612691760063, + -0.1088818684220314, + 0.012032235972583294, + -0.034873757511377335, + 0.12602944672107697, + -0.05033813789486885, + -0.050653740763664246, + -0.021434474736452103, + -0.009237864054739475, + -0.005098906345665455, + 0.002046466339379549, + -0.04163284972310066, + 0.04173804819583893, + 0.006160767748951912, + 0.008725014515221119, + 0.06348812580108643, + -0.04602494463324547, + -0.07495491206645966, + -0.0035669333301484585, + -0.007475765887647867, + 0.014267733320593834, + -0.014596482738852501, + 0.022065673023462296, + -0.0038266454357653856, + -0.03571535646915436, + 0.03979185223579407, + 0.01729222945868969, + -0.02895626612007618, + 0.08763149380683899, + -0.072377510368824, + -0.02701006829738617, + 0.02549782022833824, + 0.0007548912544734776, + -0.07143071293830872, + 0.11266906559467316, + 0.010283287614583969, + 0.01730537973344326, + -0.02197362296283245, + -9.061161108547822e-05, + 0.020264126360416412, + -0.03326946124434471, + -0.03319055959582329, + -0.015030431561172009, + -0.0068445666693151, + 0.008231890387833118, + 0.05949052795767784, + -0.029061464592814445, + -0.013623383827507496, + -0.02835136651992798, + -0.020158926025032997, + 0.04418394714593887, + -0.03871355205774307, + 0.19598735868930817, + 0.07963630557060242, + -0.031954459846019745, + -0.01980387605726719, + 0.009086638689041138, + 0.006621017120778561, + -0.026536667719483376, + -0.08105650544166565, + -0.012196610681712627, + -0.07342950999736786, + 0.005276431329548359, + 0.05407273396849632, + 0.004014032892882824, + -0.005467106122523546, + 0.006653891876339912, + -0.043842047452926636, + 0.019396226853132248, + 0.06532911956310272, + 0.056071531027555466, + 0.10662007331848145, + -0.011499661020934582, + 0.00743631599470973, + 0.007449466269463301, + 0.05864892899990082, + 0.011762660928070545, + -0.020053725689649582, + 0.08237150311470032, + -0.013057934120297432, + -0.04073864966630936, + -0.011519386433064938, + -0.13886383175849915, + -0.01884392648935318, + 0.012847534380853176, + -0.00990851316601038, + 0.02355162240564823, + -0.029403364285826683, + -0.03989705070853233, + -0.028272466734051704, + -0.021907873451709747, + -0.022828372195363045, + 0.03921325132250786, + -0.06180492416024208, + -0.0009114582790061831, + -0.041317250579595566, + -0.07611210644245148, + -0.04739254340529442, + 0.059753529727458954, + -0.010947361588478088, + -0.0010396706638857722, + -0.008297639898955822, + -0.07285091280937195, + 0.02272317185997963, + -0.03963405266404152, + 0.02193417400121689, + -0.002018522471189499, + -0.0047800191678106785, + 0.014925232157111168, + -0.017831377685070038, + 0.02683911845088005, + -0.0068314168602228165, + -0.007331116124987602, + 0.011946761049330235, + 0.0064599295146763325, + 0.020671775564551353, + 0.07753230631351471, + 0.02678651735186577, + 0.02743086777627468, + 0.024222271516919136, + 0.049864739179611206, + -0.0018886665347963572, + -0.004553182050585747, + 0.05320483446121216, + -0.004286895040422678, + -0.12119025737047195, + -0.007357416208833456, + 0.008422564715147018, + -0.03303276002407074, + -0.03424255922436714, + 0.03282235935330391, + -0.026102717965841293, + 0.12024345248937607, + 0.03550495579838753, + 0.030455363914370537, + 0.0076664406806230545, + -0.037582654505968094, + 0.030613163486123085, + 0.051784638315439224, + 0.02289412170648575, + 0.0254715196788311, + -0.05654493346810341, + 0.03382175788283348, + -0.04352644830942154, + -0.004960831720381975, + 0.035057857632637024, + -0.11014426499605179, + -0.07374510914087296, + -0.0024146658834069967, + 0.019856475293636322, + 0.03539975732564926, + 0.016831979155540466, + 0.05817553028464317, + -0.03229635953903198, + -0.009987412951886654, + -0.05031184107065201, + -0.029114065691828728, + -0.04100165143609047, + -0.008060940541327, + 0.03426885977387428, + 0.057649530470371246, + -0.03963405266404152, + 0.00694319186732173, + -0.09862488508224487, + 0.051179736852645874, + 0.0757439061999321, + 0.006134467665106058, + 0.021434474736452103, + -0.02758866734802723, + -0.05344153568148613, + 0.02892996557056904, + 0.02193417400121689, + -0.028824765235185623, + -0.028088366612792015, + -0.024011870846152306, + 0.022854672744870186, + 0.020066875964403152, + -0.0031691461335867643, + -0.049102041870355606, + 0.012387285009026527, + -0.05225803703069687, + 0.019488276913762093, + -0.020066875964403152, + 0.01613503135740757, + 0.01983017660677433, + -0.0041290950030088425, + 0.007186466362327337, + 0.028219865635037422, + 0.020474525168538094, + -0.09804628044366837, + 0.030770963057875633, + -0.064487524330616, + 0.010316162370145321, + -0.015083031728863716, + -0.024827169254422188, + -0.05407273396849632, + 0.03397955745458603, + 0.04507814720273018, + -0.01943567581474781, + 0.0781635046005249, + 0.01475428231060505, + 0.06369852274656296, + 0.009408813901245594, + 0.006489517167210579, + 0.006078580394387245, + 0.051574237644672394, + -0.023262321949005127, + -0.011059137061238289, + 0.02603696845471859, + 0.055282533168792725, + 0.06348812580108643, + -0.03461075946688652, + -0.00017731932166498154, + -0.040896449238061905, + -0.02004057541489601, + 0.0669071227312088, + -0.007022091653198004, + -0.02835136651992798, + -0.009382513351738453, + -0.012203184887766838, + -0.06138412654399872, + -0.026313118636608124, + 0.013662833720445633, + 0.09904567897319794, + 0.050022538751363754, + -0.03863465413451195, + 0.021815823391079903, + -0.06580252200365067, + 0.02276262268424034, + -0.04531484469771385, + -0.056860532611608505, + -0.05288923531770706, + -0.02603696845471859, + 0.03150736168026924, + 0.012867259792983532, + 0.03316425904631615, + 0.04628794267773628, + -0.07868950814008713, + -0.030639464035630226, + 0.04975954070687294, + -0.034505557268857956, + 0.03592575713992119, + 0.025379469618201256, + -0.06553952395915985, + -0.03127066418528557, + -0.03203336149454117, + 0.025024419650435448, + -0.04058085009455681, + 0.06922151893377304, + 0.029403364285826683, + 0.12781783938407898, + 0.012886984273791313, + 0.0013117109192535281, + -0.09262848645448685, + -0.10193867981433868, + 0.002674377989023924, + 0.060174327343702316, + 0.005135068669915199, + 0.044394347816705704, + -0.010079463012516499, + -0.0839494988322258, + 0.04599864408373833, + -0.008067515678703785, + -0.020500825718045235, + 0.019922226667404175, + -0.0435001477599144, + 0.07868950814008713, + -0.029850464314222336, + -0.024025021120905876, + -0.030060863122344017, + 0.023025622591376305, + -0.045367445796728134, + 0.01321573369204998, + -0.0227363221347332, + 0.015267131850123405, + 0.1331830471754074, + 0.05070633813738823, + 0.0307183638215065, + 0.009474563412368298, + 0.06511872261762619, + -0.02703636698424816, + -0.0010577518260106444, + -0.013294634409248829, + -0.03132326155900955, + -0.010283287614583969, + -0.002033316297456622, + 0.010829011909663677, + -0.01119063701480627, + -0.06848511844873428, + -0.022841522470116615, + -0.022302372381091118, + 0.04426284506917, + -0.008297639898955822, + -0.007613840978592634, + 0.006407329812645912, + 0.018028628081083298, + 0.0167267806828022, + -0.03868725523352623, + -0.04407874867320061, + -0.04376314580440521, + 0.023827770724892616, + -0.017542079091072083, + 0.02215772308409214, + -0.03774045407772064, + -0.06506612151861191, + 0.022091973572969437, + 0.011723211035132408, + -0.01312368456274271, + -0.013196009211242199, + 0.07348211109638214, + -0.045604147017002106, + -0.07064171880483627, + 0.016003530472517014, + -0.005766267888247967, + 0.005496693309396505, + -0.015490680932998657, + 0.016437480226159096, + -0.001416910788975656, + 0.06769611686468124, + -0.01311053428798914, + 0.01222948543727398, + 0.015030431561172009, + -0.037582654505968094, + 0.027167867869138718, + -0.013360383920371532, + 0.026918018236756325, + -0.012453035451471806, + -0.021039973944425583, + 0.029403364285826683, + 0.011111736297607422, + -0.06522392481565475, + -0.01748947985470295, + -0.012387285009026527, + -0.009382513351738453, + 0.018186427652835846, + -0.009343063458800316, + 0.005887905601412058, + -0.012012510560452938, + 0.005983242765069008, + 0.07001051306724548, + -0.07337690889835358, + 0.0466824434697628, + -0.07411330938339233, + 0.023406971246004105, + -0.022999322041869164, + 0.0015369043685495853, + -0.03227006271481514, + 0.010316162370145321, + -0.014333482831716537, + 0.038766153156757355, + -0.01827847771346569, + 0.010947361588478088, + -0.02624736912548542, + 0.06564471870660782, + -0.0002847793512046337, + 0.03069206327199936, + -0.07884730398654938, + 0.03966035321354866, + 0.025918619707226753, + -0.01572738029062748, + 0.08873609453439713, + -0.036030955612659454, + 0.05612413212656975, + 0.0014522513374686241, + -0.04194844886660576, + -0.05796512961387634, + 0.036215055733919144, + -0.03227006271481514, + 0.09462728351354599, + -0.081529900431633, + -0.03926585242152214, + 0.02140817418694496, + -0.011157761327922344, + 0.036057256162166595, + 0.05649233236908913, + 0.012880409136414528, + 0.03582055866718292, + -0.01447813306003809, + -0.08252929896116257, + 0.028298765420913696, + -0.0013988296268507838, + -0.04026525095105171, + 0.035873156040906906, + 0.003098465036600828, + -0.03437405824661255, + -0.042684849351644516, + -0.043789446353912354, + 0.009730988182127476, + -0.004510444588959217, + 0.006989216431975365, + -0.07248271256685257, + -0.0052862935699522495, + 0.09389089047908783, + 0.0839494988322258, + -0.04202735051512718, + 0.045420046895742416, + 0.051810938864946365, + -0.02526111900806427, + -0.006884016562253237, + -0.04123834893107414, + -0.046340543776750565, + -0.02956116385757923, + 0.002960390178486705, + -0.004750431980937719, + -0.04055454954504967, + 0.022052522748708725, + -0.054914332926273346, + 0.032533060759305954, + -0.023051923140883446, + 0.01963292621076107, + 0.07164111733436584, + 0.06827472150325775, + -0.002634928096085787, + 0.08358129858970642, + -0.007797940634191036, + 0.018317928537726402, + 0.10399007797241211, + 0.03913435339927673, + -0.009119514375925064, + 0.011578560806810856, + 0.03824015334248543, + -0.02217087335884571, + 0.054125335067510605, + 0.010454237461090088, + -0.03826645389199257, + 0.007843965664505959, + -0.015622180886566639, + 0.008909114636480808, + 0.06864291429519653, + -0.04200104996562004, + 0.0026102717965841293, + -0.003639258211478591, + 0.031954459846019745, + -0.07942590117454529, + -0.04605124518275261, + -0.04334234818816185, + -0.051810938864946365, + -0.07832130789756775, + 0.030376464128494263, + -0.08189810067415237, + -0.07311391085386276, + -0.028693266212940216, + 0.025313720107078552, + 0.014096783474087715, + -0.0057038054801523685, + 0.00846858974546194, + 0.01069093681871891, + -0.05128493905067444, + -0.033742859959602356, + 0.021999923512339592, + 0.09273368865251541, + 0.06117372587323189, + 0.12708145380020142, + 0.03476855903863907, + -0.02198677323758602, + -0.09936127811670303, + 0.06096332520246506, + -0.047944843769073486, + 0.022052522748708725, + 0.012190035544335842, + -0.04626164585351944, + -0.07537570595741272, + -0.0870002955198288, + -0.0008440646342933178, + 0.005654493346810341, + -0.00032854414894245565, + -0.05885932967066765, + -0.012610835023224354, + 0.030639464035630226, + -0.022236622869968414, + 0.03347985818982124, + 0.02971896342933178, + 0.010763262398540974, + 0.08584309369325638, + 0.007390290964394808, + 0.010677787475287914, + 0.056860532611608505, + -0.0469980426132679, + 0.07795310765504837, + 0.04336864873766899, + 0.0018311352469027042, + 0.07174631208181381, + 0.052599936723709106, + 0.043999847024679184, + 0.0833183005452156, + 0.05554553493857384, + 0.018962277099490166, + 0.022065673023462296, + -0.03947625309228897, + -0.03866095468401909, + -0.005167943891137838, + -0.050232939422130585, + -0.013366959057748318, + -0.02506387047469616, + -0.010408212430775166, + 0.06774871796369553, + 0.02701006829738617, + -0.004201420117169619, + 0.00480303168296814, + -0.02352532185614109, + -0.04489404708147049, + 0.002266728552058339, + -0.0381612554192543, + -0.01388638373464346, + -0.008429139852523804, + 0.030402762815356255, + 0.05575593188405037 + ] + }, + { + "id": "6ef6e27d-e250-44b7-918f-195bd0cd7d57", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "uboone", + "reviewDate": "2022-05-17T03:09:56", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9095b8ff-e3ca-4bf6-ab2c-911239c1205c", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "josephsummers", + "reviewDate": "2022-12-19T20:27:29", + "stars": 5, + "verifiedUser": true + }, + { + "id": "c69c3c50-5c39-432d-b8bf-10b609274931", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "wking", + "reviewDate": "2021-11-05T03:34:17", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4436d554-ef43-4def-9de0-df60b900f251", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "hawkinsashley", + "reviewDate": "2021-08-08T22:14:30", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f53ab07c-8d29-423a-b948-1f6393bdedc1", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "amy86", + "reviewDate": "2021-01-18T20:39:55", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a723f773-07b9-4a59-a749-2720749c1f28", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "cynthiahanna", + "reviewDate": "2021-01-21T20:14:16", + "stars": 3, + "verifiedUser": false + }, + { + "id": "40c4dd28-f658-4037-af5e-47894ba589e0", + "productId": "eec8d165-0353-4943-b250-d37dd173fa45", + "category": "Other", + "docType": "customerRating", + "userName": "brittney25", + "reviewDate": "2021-02-10T14:40:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "product", + "name": "Luxe Computer 3000 (Silver)", + "description": "This Luxe Computer 3000 (Silver) is equipped with a 1,000-watt supercharged 6.5 Wh (8 Wh at 110 VAC) VANSIENT HEATER MATS (which can be powered by either an AC or DC inverter depending on what style's available).\n\nThe new version also includes a new power amplifier which adds 100 Watts to its", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2018-03-09T09:11:06", + "price": 830.78, + "stock": 31, + "priceHistory": [ + { + "priceDate": "2021-01-21T00:23:19", + "newPrice": 833.89 + }, + { + "priceDate": "2021-07-10T00:23:19", + "newPrice": 885.68 + }, + { + "priceDate": "2021-12-27T00:23:19", + "newPrice": 793.47 + }, + { + "priceDate": "2022-06-15T00:23:19", + "newPrice": 868.25 + }, + { + "priceDate": "2022-12-02T00:23:19", + "newPrice": 770.01 + }, + { + "priceDate": "2024-03-25T00:23:19", + "newPrice": 830.78 + } + ], + "descriptionVector": [ + -0.03422711789608002, + 0.028176449239253998, + -0.03514094650745392, + 0.03137485682964325, + 0.006566428113728762, + -0.010820587165653706, + -0.027719533070921898, + 0.046439219266176224, + 0.032344069331884384, + 0.13668693602085114, + 0.10367825627326965, + -0.029574887827038765, + 0.0020093892235308886, + -0.026376478374004364, + 0.01707202009856701, + 0.017376631498336792, + -0.11331501603126526, + -0.003144754795357585, + 0.017210479825735092, + 0.014046686701476574, + -0.01199749018996954, + -0.04571923241019249, + -0.011242887936532497, + 0.05831901729106903, + -0.03749475255608559, + -0.013665923848748207, + -0.01621357351541519, + -0.0030928326305001974, + 0.030488718301057816, + -0.04638383537530899, + 0.08916772902011871, + 0.054276008158922195, + -0.03270406648516655, + 0.027885684743523598, + 0.016850486397743225, + -0.06601735204458237, + 0.010439824312925339, + 0.014552062377333641, + 0.051589902490377426, + 0.0028505290392786264, + -0.016462799161672592, + 0.012565173208713531, + 0.009339073672890663, + -0.0005187893402762711, + 0.09924755990505219, + -0.017542781308293343, + -0.019591977819800377, + 0.033673278987407684, + 0.04762996733188629, + 0.013672847300767899, + 0.040180861949920654, + -0.021156566217541695, + -0.0622512586414814, + 0.0733833834528923, + -0.00793371256440878, + -0.014718214049935341, + 0.005839517340064049, + 0.2216455042362213, + 0.0146489841863513, + -0.008397551253437996, + 0.04879302531480789, + -0.036082468926906586, + -0.0612543523311615, + -0.014441295526921749, + -0.08540163934230804, + -0.021031953394412994, + 0.03143024072051048, + 0.06618349999189377, + 0.0292979683727026, + 0.07975250482559204, + -0.0629158616065979, + 0.036165546625852585, + 0.06413430720567703, + 0.05554983392357826, + 0.04682690277695656, + -0.004018778447061777, + 0.054774463176727295, + 0.017598165199160576, + 0.016227418556809425, + -0.02226424030959606, + 0.08645392954349518, + 0.03170716017484665, + -0.04945762827992439, + -0.047768425196409225, + 0.0027518768329173326, + 0.054857537150382996, + -0.04740843176841736, + -0.08756159991025925, + -0.01456590835005045, + 0.012032105587422848, + -0.018345845863223076, + 0.040180861949920654, + 0.0710572674870491, + -0.029187200590968132, + 0.022181164473295212, + 0.03630400449037552, + -0.07543257623910904, + 0.04499924182891846, + -0.018331998959183693, + -0.044002335518598557, + 0.020173506811261177, + -0.048433031886816025, + 0.02251346781849861, + -0.060866668820381165, + -0.005237219389528036, + 0.03453172743320465, + -0.004292235244065523, + 0.017099712044000626, + -0.007151417899876833, + -0.07377106696367264, + 0.007165263872593641, + -0.08362936228513718, + 0.01948121003806591, + -0.07648486644029617, + 0.02213962748646736, + 0.027096467092633247, + 0.024507280439138412, + 0.004053393378853798, + -0.01266209501773119, + -0.03345174342393875, + 0.02528265118598938, + 0.08695238083600998, + 0.04497155174612999, + 0.01299439650028944, + 0.027553383260965347, + -0.01943967305123806, + 0.013935918919742107, + -0.0750448927283287, + 0.028993358835577965, + -0.017459705471992493, + -0.04602384194731712, + 0.11409039050340652, + -0.030599484220147133, + 0.01264132559299469, + -0.009006771259009838, + 0.012731323949992657, + -0.0013923804508522153, + 0.07498950511217117, + -0.00296821934171021, + -0.03184561803936958, + -0.05255911499261856, + 0.03899011388421059, + 0.03511325642466545, + -0.03203945979475975, + -0.0683988481760025, + -0.0004547519492916763, + -0.12339484691619873, + 0.046688444912433624, + -0.040097787976264954, + 0.09764143079519272, + 0.04153776168823242, + 0.0292979683727026, + -0.00400147121399641, + 0.009062155149877071, + -0.006985267158597708, + 0.04505462571978569, + -0.12007182836532593, + 0.07570949196815491, + 0.02744261547923088, + 0.07078034430742264, + 0.0149397486820817, + 0.013562079519033432, + -0.044168487191200256, + 0.029104124754667282, + -0.022748848423361778, + -0.006836423650383949, + 0.04981762170791626, + 0.03710706904530525, + -0.08927849680185318, + -0.00886831246316433, + 0.0664050355553627, + -0.032510221004486084, + -0.015936654061079025, + 0.015618198551237583, + 0.02938104420900345, + -0.024562664330005646, + 0.0572667270898819, + 0.05815286934375763, + 0.018664300441741943, + -0.040347013622522354, + 0.03555632382631302, + 0.03727322071790695, + 0.003452826524153352, + 0.025047270581126213, + 0.0730510801076889, + 0.05998053029179573, + -0.0028712977655231953, + -0.04303312301635742, + -0.01007290743291378, + -0.03187330812215805, + 0.03037795051932335, + -0.006102589424699545, + 0.0036103238817304373, + 0.02938104420900345, + -0.0585959367454052, + 0.024548817425966263, + -0.012011336162686348, + 0.04621768370270729, + 0.04915301874279976, + 0.01636587828397751, + -0.03378404676914215, + 0.05765441432595253, + -0.013610539957880974, + 0.01856737956404686, + -0.002653224626556039, + 0.0300456490367651, + -0.010785972699522972, + 0.07116803526878357, + 0.013167470693588257, + 0.03497479483485222, + 0.00969906710088253, + 0.023524219170212746, + -0.05109144747257233, + -0.005624905228614807, + 0.008667546324431896, + -0.004520693328231573, + 0.03896242007613182, + 0.04369772598147392, + 0.005545291118323803, + -0.06585119664669037, + 0.05599290505051613, + -0.040762390941381454, + -0.003456288017332554, + 0.009885987266898155, + -0.07127880305051804, + -0.01902429573237896, + 0.05546675994992256, + -0.005901823751628399, + 0.015590506605803967, + -0.03705168515443802, + -0.03818704932928085, + 0.03940549120306969, + 0.08030634373426437, + 0.030571794137358665, + -0.036747075617313385, + -0.025254959240555763, + -0.028384137898683548, + -0.05599290505051613, + -0.009816758334636688, + 0.04846072196960449, + -0.02760876528918743, + -0.04137161001563072, + -0.011685957200825214, + -0.023274993523955345, + -0.06834346801042557, + -0.01769508607685566, + 0.11431192606687546, + 0.004053393378853798, + 0.007539103738963604, + -0.00621681846678257, + 0.004752612207084894, + 0.0050087617710232735, + -0.04715920612215996, + 0.07930943369865417, + 0.007622179575264454, + 0.036165546625852585, + 0.03173485025763512, + -0.017085867002606392, + -0.06917422264814377, + 0.008009864948689938, + -0.05139605700969696, + -0.022195011377334595, + -0.008916772902011871, + 0.041343919932842255, + -0.10694589465856552, + 0.026002639904618263, + 0.020616576075553894, + 0.016518183052539825, + -0.0018553533591330051, + -0.055355992168188095, + 0.014981286600232124, + -0.016795102506875992, + -0.009581376798450947, + -0.0004984531551599503, + -0.02445189654827118, + -0.0574328787624836, + -0.05458062142133713, + 0.017515089362859726, + -0.023427298292517662, + -0.09869372099637985, + 0.0614205040037632, + -0.0056872121058404446, + 0.0687311515212059, + -0.07847867906093597, + 0.03849165886640549, + -0.060700517147779465, + 0.09071847051382065, + 0.03245483711361885, + 0.04574692249298096, + -0.022458083927631378, + 0.012544404715299606, + 0.022333471104502678, + -0.021004261448979378, + 0.04618999361991882, + 0.020671959966421127, + -0.027622612193226814, + 0.08080479502677917, + -0.022070398554205894, + 0.0037833978421986103, + -0.01028059609234333, + -0.03386712074279785, + -7.058174378471449e-05, + -0.023814983665943146, + -0.024064211174845695, + -0.04970685765147209, + 0.06850961595773697, + -0.011942106299102306, + 0.044916167855262756, + -0.06230664253234863, + -0.012156718410551548, + 0.06208511069417, + -0.0067048873752355576, + -0.04812842234969139, + 0.003347251331433654, + 0.08002942055463791, + -0.03184561803936958, + 0.03965471684932709, + -0.004261082038283348, + -0.005420677829533815, + 0.01201825961470604, + -0.03788243979215622, + 0.001484109670855105, + -0.11248426139354706, + 0.0036137853749096394, + 0.0044203102588653564, + -0.04738074168562889, + -0.05931592360138893, + 0.028384137898683548, + -0.02806568145751953, + -0.048433031886816025, + 0.017252016812562943, + 0.006490275263786316, + 0.032067153602838516, + -0.09049694240093231, + 0.0013387274229899049, + 0.006466045044362545, + -0.009373688139021397, + 0.012489020824432373, + -0.042922355234622955, + 0.02416113205254078, + 0.08473703265190125, + 0.029159508645534515, + -0.07687254995107651, + -0.011734417639672756, + 0.0009172922582365572, + -0.014192068949341774, + 0.032676372677087784, + -0.01502282451838255, + 0.01336823683232069, + 0.001152672921307385, + 0.0019159292569383979, + -0.0675680935382843, + 0.0782017633318901, + -0.08562317490577698, + -0.004728381987661123, + -0.00546221574768424, + -0.014025918208062649, + -0.02789952978491783, + -0.05258680880069733, + 0.014302835799753666, + -0.036580923944711685, + -0.02843952178955078, + 0.07969711720943451, + 0.029990265145897865, + -0.053445253521203995, + 0.04347619041800499, + 0.019287368282675743, + -0.02374575473368168, + -0.0033126366324722767, + 0.03187330812215805, + 0.07227570563554764, + 0.02118425816297531, + -0.09415226429700851, + 0.08706314861774445, + 0.028411829844117165, + 0.01628280244767666, + 0.07100187987089157, + 0.021087337285280228, + -0.04139930382370949, + 0.04738074168562889, + 0.020948877558112144, + 0.03627631440758705, + 0.040430087596178055, + -0.040014710277318954, + 0.11021353304386139, + -0.0657404288649559, + -0.025559570640325546, + -0.10151828825473785, + -0.019328905269503593, + 0.053112953901290894, + 0.03480864688754082, + -0.0036795535124838352, + -0.013167470693588257, + 0.03987625241279602, + -0.029353352263569832, + -0.006562966387718916, + 0.028494905680418015, + -0.022970382124185562, + -0.0010765203041955829, + -0.03403327241539955, + -0.015368971973657608, + 0.042340826243162155, + 0.020284274592995644, + -0.08202323317527771, + -0.03760552033782005, + -0.009477532468736172, + -0.050177618861198425, + -0.017099712044000626, + -0.05078683793544769, + -0.05045453459024429, + 0.05089760571718216, + -0.03486402705311775, + 0.012322869151830673, + -0.002059580758213997, + 0.015548968687653542, + -0.01658741384744644, + 0.027138004079461098, + 0.016961252316832542, + 0.018345845863223076, + -0.021295025944709778, + -0.03170716017484665, + 0.09974601119756699, + -0.024507280439138412, + 0.02147502265870571, + -0.022084243595600128, + -0.0036414770875126123, + 0.08551240712404251, + -0.02341345138847828, + 0.03464249521493912, + 0.04605153203010559, + 0.012731323949992657, + -0.04261774569749832, + 0.01865045540034771, + -0.014316681772470474, + -0.04555308073759079, + -0.030488718301057816, + -0.0004508577985689044, + 0.062195874750614166, + -0.017182787880301476, + 0.06845423579216003, + -0.009692144580185413, + -0.04798996075987816, + -0.02449343353509903, + -0.004541461821645498, + -0.06546351313591003, + -0.02532419003546238, + -0.002589187119156122, + 0.04920840263366699, + -0.027179542928934097, + -0.017016636207699776, + -0.044002335518598557, + -0.034005582332611084, + -0.016545874997973442, + 0.05045453459024429, + 0.03694091737270355, + 0.02436882071197033, + -0.0024645738303661346, + 0.021544253453612328, + -0.05064838007092476, + -0.022111935541033745, + -0.00922138337045908, + 0.05914977565407753, + 0.0705588161945343, + -0.03968241065740585, + -0.013596693985164165, + 0.06634965538978577, + -0.09692144393920898, + -0.0146489841863513, + 0.010689050890505314, + 0.038851652294397354, + -0.03732860088348389, + -0.003921857103705406, + 0.023274993523955345, + 0.035500939935445786, + -0.0634143203496933, + -0.09775219857692719, + 0.03893472999334335, + -0.0778694599866867, + 0.001132769393734634, + 0.02263808064162731, + 0.011914415284991264, + 0.05064838007092476, + 0.021336564794182777, + -0.0036553230602294207, + 0.04245159402489662, + 0.024050364270806313, + 0.02519957534968853, + 0.02089349366724491, + -0.021170413121581078, + 0.08689700067043304, + -0.037993207573890686, + 0.04247928410768509, + -0.009373688139021397, + -0.012855937704443932, + -0.04690998047590256, + -0.03154100850224495, + 0.013652077876031399, + 0.05914977565407753, + -0.011492114514112473, + 0.053860630840063095, + -0.0657404288649559, + -0.02507496252655983, + 0.004977608565241098, + -0.006324124522507191, + -0.009996755048632622, + 0.052032969892024994, + -0.013922073878347874, + -0.012177487835288048, + -0.015548968687653542, + -0.009435995481908321, + 0.027636457234621048, + 0.014870518818497658 + ] + }, + { + "id": "0a23f1f9-9c82-4009-9b52-8a67012f8b2a", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "bdavis", + "reviewDate": "2022-06-19T02:37:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "76ed8152-9686-418c-841b-b05b2dec1215", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "mccormickjames", + "reviewDate": "2021-01-21T00:23:19", + "stars": 1, + "verifiedUser": false + }, + { + "id": "10401f29-324a-4b86-8b32-d6b7194ec42f", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "johnsjesus", + "reviewDate": "2022-01-23T15:17:41", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3b3fdd57-11e1-48f7-aece-ccd940cf367c", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "ronaldjordan", + "reviewDate": "2022-08-06T12:33:23", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a9c4a278-6082-4e84-be30-40a7e778e278", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "amberadams", + "reviewDate": "2021-11-22T21:15:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1623ba21-894a-4946-a6cf-8d24c700113f", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "aaron88", + "reviewDate": "2021-03-21T16:23:53", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a7e75f23-3787-4980-93d1-a4a4efd183fd", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "julie72", + "reviewDate": "2021-08-15T18:52:01", + "stars": 5, + "verifiedUser": false + }, + { + "id": "4c6f7616-d7a6-4dce-9bf0-94a3a54b29de", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "upowell", + "reviewDate": "2021-10-04T06:18:38", + "stars": 5, + "verifiedUser": false + }, + { + "id": "afe940a4-3ead-4eb4-a253-cbf129da7cbb", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "mikeorr", + "reviewDate": "2022-08-27T17:12:25", + "stars": 1, + "verifiedUser": false + }, + { + "id": "84308f6e-d34c-44f7-81c6-1f20ceb2a9f9", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "xfigueroa", + "reviewDate": "2021-07-18T06:01:00", + "stars": 2, + "verifiedUser": true + }, + { + "id": "53e6910f-71f9-45d4-b856-41986d276152", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "brownsharon", + "reviewDate": "2021-07-07T01:46:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "efceeb04-042e-467c-b355-b9e3b6797558", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "thompsonhannah", + "reviewDate": "2022-12-03T07:08:06", + "stars": 1, + "verifiedUser": false + }, + { + "id": "34887f80-b8c3-4257-a573-394a8deec0d4", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "arhodes", + "reviewDate": "2022-11-03T02:03:57", + "stars": 5, + "verifiedUser": false + }, + { + "id": "0a192b0c-f763-4f66-a431-4f31ae1996b9", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "randy00", + "reviewDate": "2021-12-13T13:05:44", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2fe0f549-cf7f-4224-95b8-1433f0e6935b", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "delgadojoseph", + "reviewDate": "2021-03-13T02:22:13", + "stars": 5, + "verifiedUser": true + }, + { + "id": "f27f7019-6172-403c-b58a-239cbabee147", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "lauracowan", + "reviewDate": "2022-08-18T06:59:30", + "stars": 2, + "verifiedUser": true + }, + { + "id": "32a1c8c2-3223-47c9-91df-55e994a470ce", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "lperez", + "reviewDate": "2021-09-05T17:57:36", + "stars": 2, + "verifiedUser": false + }, + { + "id": "6abeb71b-d898-4d22-9a89-76896dff4831", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "wheelermichael", + "reviewDate": "2022-09-11T06:29:27", + "stars": 2, + "verifiedUser": true + }, + { + "id": "966e8ea8-bee6-4b83-817c-93073a17d1e5", + "productId": "492ae7e1-b7f9-478d-ba21-7f85f8eacc60", + "category": "Electronics", + "docType": "customerRating", + "userName": "danielmunoz", + "reviewDate": "2021-10-20T01:08:25", + "stars": 4, + "verifiedUser": false + }, + { + "id": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "product", + "name": "Awesome Filter 3000 (Red)", + "description": "This Awesome Filter 3000 (Red) is like the classic movie of the past, a beautiful, sharp filter that provides a beautiful contrast against the background. It will probably sound cliche to suggest that the", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2019-03-17T17:35:04", + "price": 823.36, + "stock": 97, + "priceHistory": [ + { + "priceDate": "2021-02-22T21:48:04", + "newPrice": 822.81 + }, + { + "priceDate": "2021-08-07T21:48:04", + "newPrice": 899.39 + }, + { + "priceDate": "2022-01-20T21:48:04", + "newPrice": 904.28 + }, + { + "priceDate": "2022-07-05T21:48:04", + "newPrice": 756.72 + }, + { + "priceDate": "2022-12-18T21:48:04", + "newPrice": 899.23 + }, + { + "priceDate": "2023-05-20T21:48:04", + "newPrice": 823.36 + } + ], + "descriptionVector": [ + -0.016182400286197662, + -0.008576180785894394, + -0.021511051803827286, + 0.08231169730424881, + -0.007084404584020376, + -0.01874850131571293, + -0.05181314796209335, + -0.02541545405983925, + 0.02558734640479088, + 0.04105762392282486, + -0.0036097310949116945, + 0.008969076909124851, + 0.04316943883895874, + -0.05156758800148964, + -0.0007094380562193692, + 0.023401862010359764, + -0.0715070590376854, + 0.02563645876944065, + -0.04390611872076988, + -0.0013076066970825195, + 0.00949089229106903, + -0.02787105366587639, + -0.04982411116361618, + -0.006838844623416662, + -0.038847584277391434, + -0.012308692559599876, + -0.045232143253088, + 0.02176888845860958, + -0.013726800680160522, + -0.041990749537944794, + 0.06595740467309952, + 0.04626349359750748, + 0.05564388260245323, + 0.03631831705570221, + -0.08741933852434158, + 0.027085261419415474, + 0.02418765425682068, + 0.021682942286133766, + 0.012830507010221481, + 0.0629124566912651, + 0.013825024478137493, + -0.013493519276380539, + -0.016931358724832535, + -0.01384958066046238, + 0.013002399355173111, + -0.0292953010648489, + -0.010117069818079472, + -0.03513962775468826, + -0.025759238749742508, + -0.011805294081568718, + 0.059916626662015915, + -0.0648278221487999, + 0.00430036848410964, + -0.03673576936125755, + -0.013039233162999153, + -0.002748736646026373, + 0.011872823350131512, + 0.0287550687789917, + 0.05161670222878456, + -0.03474673256278038, + 0.00311861140653491, + 0.005310233682394028, + 0.018502941355109215, + -0.05372851714491844, + -0.03845468908548355, + -0.06988636404275894, + -0.0017020374070852995, + 0.00850251317024231, + 0.02124093472957611, + 0.005436083301901817, + -0.046067044138908386, + -0.07219462096691132, + 0.0005924133583903313, + 0.0413522943854332, + 0.03644109517335892, + 0.053924962878227234, + 0.15155959129333496, + -0.022738851606845856, + -0.046558164060115814, + -0.01254197396337986, + -0.008189423941075802, + 0.05819770693778992, + -0.08771400898694992, + 0.016894524917006493, + 0.005988593213260174, + -0.005331720225512981, + 0.015580778941512108, + -0.0557912178337574, + 0.034304723143577576, + 0.001867790357209742, + 0.00026263404288329184, + 0.07312775403261185, + -0.014537149108946323, + -0.08795957267284393, + 0.006881817243993282, + 0.013211125507950783, + -0.012658615596592426, + 0.02755182608962059, + -0.09134829789400101, + 0.019730741158127785, + -0.013137456960976124, + -0.05539832264184952, + -0.0396333746612072, + -0.0009714965126477182, + 0.008318343199789524, + -0.0596710667014122, + -0.09596482664346695, + -0.05913083627820015, + 0.0278956089168787, + -0.09444235265254974, + 0.041843414306640625, + -0.03538518771529198, + -0.013505796901881695, + 0.023119468241930008, + 0.008926103822886944, + 0.0751904547214508, + -0.018625721335411072, + 0.023266805335879326, + 0.08005253970623016, + 0.026741478592157364, + 0.015261550433933735, + 0.0055435155518352985, + 0.006188110448420048, + 0.0046594999730587006, + 0.027576381340622902, + -0.007913169451057911, + -0.03160356357693672, + 0.005454500205814838, + 0.01734881103038788, + 0.013653133064508438, + -0.09920621663331985, + 0.04174518957734108, + 0.10401919484138489, + 0.042727429419755936, + 0.019890354946255684, + 0.09404946118593216, + 0.0060100797563791275, + 0.10401919484138489, + 0.0076307752169668674, + 0.03644109517335892, + -0.0329541452229023, + -0.04125406965613365, + 0.04977500066161156, + 0.03128433600068092, + 0.050781797617673874, + -0.011412398889660835, + -0.05215693265199661, + 0.03452572971582413, + 0.03489406779408455, + -0.0473930686712265, + 0.046410828828811646, + -0.11010907590389252, + 0.032192908227443695, + -0.031014220789074898, + 0.03705499693751335, + 0.019693907350301743, + -0.10205471515655518, + -0.0008694356656633317, + -0.0036281482316553593, + -0.035728972405195236, + -0.08574952930212021, + -0.03528696298599243, + -0.04685283824801445, + 0.027478158473968506, + 0.007728999480605125, + -0.011424676515161991, + 0.07003369927406311, + 0.012977843172848225, + -0.0769093781709671, + 0.06949346512556076, + 0.04876820370554924, + 0.032536692917346954, + 0.02963908575475216, + 0.014352979138493538, + -0.08240991830825806, + 0.0463126040995121, + 0.032880477607250214, + -0.05873793736100197, + -0.03300325572490692, + -0.058001257479190826, + -0.02070070430636406, + -0.01560533419251442, + -0.03634287044405937, + -0.062175776809453964, + 0.0009361972915939987, + -0.006593284662812948, + 0.012480583973228931, + 0.024875221773982048, + -0.00877262931317091, + 0.021105878055095673, + 0.03788989782333374, + 0.0064029754139482975, + 0.057608362287282944, + 0.04407801106572151, + -0.0557912178337574, + 0.008490235544741154, + -0.07494489848613739, + -0.05682257190346718, + -0.019607961177825928, + -0.008735795505344868, + -0.030670437961816788, + -0.026250358670949936, + 0.07808806002140045, + -0.021461939439177513, + 0.02718348614871502, + 0.019571127369999886, + 0.027478158473968506, + 0.056036777794361115, + 0.015200160443782806, + -0.003612800734117627, + -0.017938153818249702, + -0.018564332276582718, + -0.03555708006024361, + -0.03757067024707794, + 0.04687739536166191, + 0.03349437564611435, + -0.010994946584105492, + -0.06423848122358322, + 0.026446806266903877, + 0.005819770507514477, + 0.06747987121343613, + -0.03388727083802223, + -0.013825024478137493, + 0.020651591941714287, + -0.021854834631085396, + 0.020135914906859398, + 0.06178288161754608, + 0.014537149108946323, + 0.07882474362850189, + 0.08059277385473251, + -0.046607278287410736, + -0.001685155089944601, + -0.022186340764164925, + 0.027109818533062935, + 0.01912911981344223, + 0.004687125328928232, + -0.03700588271021843, + -0.09282165765762329, + 0.008029810152947903, + 0.08157501369714737, + 0.05917994678020477, + 0.08388327807188034, + -0.0993044450879097, + -0.012419193983078003, + 0.10421564429998398, + -0.0031109375413507223, + 0.024826111271977425, + -0.10559077560901642, + -0.010737108998000622, + -0.006145137827843428, + 0.011737765744328499, + -0.0068879565224051476, + -0.009871509857475758, + 0.12553024291992188, + 0.004192936234176159, + 0.07057392597198486, + -0.03558163717389107, + -0.026225801557302475, + -0.11521672457456589, + -0.05196048319339752, + -0.030277540907263756, + 0.07794072479009628, + -0.011535178869962692, + 0.033592600375413895, + -0.015826338902115822, + -0.011461510322988033, + 0.037988122552633286, + -0.06207755580544472, + 0.011492205783724785, + 0.04626349359750748, + -0.0015853963559493423, + -0.03828279674053192, + -0.021609274670481682, + -0.037816230207681656, + -0.016894524917006493, + 0.02735537849366665, + 0.06433670222759247, + 0.012222746387124062, + 0.024249045178294182, + 0.0006108303787186742, + 0.02998286858201027, + 0.01386185921728611, + 0.06443493068218231, + 0.031505342572927475, + 0.06713608652353287, + -0.01290417555719614, + 0.08859802782535553, + -0.07081948965787888, + -0.05122380331158638, + -0.039387814700603485, + -0.049234770238399506, + -0.004720889963209629, + -0.014868654310703278, + -0.10185826569795609, + 0.022137228399515152, + 0.035188741981983185, + 0.04788418859243393, + -0.026373138651251793, + 0.02488750033080578, + 0.010663440451025963, + 0.023242248222231865, + -0.06453315168619156, + -0.0020442865788936615, + -0.07116327434778214, + -0.07126149535179138, + 0.08609331399202347, + 0.012941009365022182, + 0.07465022057294846, + 0.026815146207809448, + -0.07965964823961258, + 0.004444635007530451, + -0.016182400286197662, + 0.016612131148576736, + -0.01685769110918045, + 0.053090061992406845, + -0.03860202431678772, + 0.023892981931567192, + -0.006353863514959812, + 0.037644337862730026, + 0.0038368741516023874, + -0.01599823124706745, + -0.020246418192982674, + 0.0827045887708664, + 0.04645994305610657, + 0.05559477210044861, + 0.019264178350567818, + -0.008563903160393238, + -0.019436068832874298, + -0.04191708192229271, + -0.02946719340980053, + -0.007870196364820004, + -0.03401005268096924, + 0.016894524917006493, + 0.01898178458213806, + 0.030302098020911217, + -0.05250071734189987, + -0.016968192532658577, + 0.022149506956338882, + 0.0019092286238446832, + 0.04032094404101372, + 0.06163554638624191, + -0.011185255832970142, + 0.012394637800753117, + -0.01279367320239544, + 0.052549827843904495, + -0.035876307636499405, + 0.022714294493198395, + -0.057804811745882034, + 0.06251956522464752, + -0.04206441715359688, + 0.0014626163756474853, + -0.020062247291207314, + -0.038479242473840714, + -0.03617097809910774, + 0.07185083627700806, + 0.02629947103559971, + 0.030989665538072586, + 0.026962481439113617, + 0.01448803674429655, + -0.004582762252539396, + -0.03703043982386589, + -0.006679230369627476, + 0.02615213394165039, + 0.021339159458875656, + -0.005690851714462042, + 0.060997091233730316, + -0.01599823124706745, + 0.09571926295757294, + -0.026422251015901566, + 0.04049283638596535, + -0.020062247291207314, + 0.004822183400392532, + -0.11099309474229813, + 0.07013192027807236, + -0.035164184868335724, + -0.020565645769238472, + 0.043071214109659195, + -0.03909314423799515, + -0.04024727642536163, + 0.062028441578149796, + -0.022063560783863068, + 0.03528696298599243, + 0.020590201020240784, + -0.046435385942459106, + 0.05240249261260033, + -0.0058412570506334305, + -0.08353949338197708, + -0.035851750522851944, + -0.055152762681245804, + -0.02632402628660202, + -0.07779338955879211, + -0.09729085117578506, + -0.05250071734189987, + -0.028337618336081505, + -0.0459933765232563, + -0.047957856208086014, + 0.04434812441468239, + 0.029737308621406555, + 0.08417794853448868, + -0.04299754649400711, + -0.009754869155585766, + 0.07283307611942291, + 0.023807037621736526, + 0.01025826670229435, + -0.05304094776511192, + 0.044814690947532654, + -0.0007988372235558927, + 0.04068928211927414, + 0.013247959315776825, + -0.007465022150427103, + 0.044127121567726135, + 0.007550968322902918, + 0.002876120852306485, + -0.008576180785894394, + 0.0050339787267148495, + 0.030817773193120956, + 0.023045800626277924, + 0.009945177473127842, + 0.08147679269313812, + -0.030940553173422813, + 0.03828279674053192, + 0.07730226963758469, + 0.034304723143577576, + 0.009497030638158321, + 0.0071335164830088615, + 0.014721319079399109, + 0.06777454167604446, + -0.016415681689977646, + 0.028042946010828018, + -0.0318736806511879, + 0.01615784503519535, + -0.037816230207681656, + 0.01332162693142891, + 0.007808806374669075, + 0.002510850550606847, + -0.030768660828471184, + 0.004257395397871733, + 0.035336077213287354, + -0.053630292415618896, + 0.03680943697690964, + -0.03317514806985855, + -0.0306949932128191, + -0.01437753438949585, + 0.03838101774454117, + -0.10077780485153198, + -0.05338473245501518, + 0.033273372799158096, + 0.015028269030153751, + -0.06084975600242615, + -0.031849123537540436, + -0.05613500252366066, + 0.06089886650443077, + -0.08923648297786713, + 0.009533864445984364, + 0.014426646754145622, + -0.018871281296014786, + 0.013346183113753796, + 0.13279882073402405, + 0.01218591257929802, + 0.016391126438975334, + -0.06826566159725189, + 0.06561361998319626, + 0.033936385065317154, + -0.060260411351919174, + -0.005746102891862392, + 0.04626349359750748, + -0.023807037621736526, + 0.03946148231625557, + -0.001967549091205001, + 0.0023236109409481287, + -0.027944721281528473, + 0.0008487165323458612, + -0.0523533821105957, + 0.027478158473968506, + 0.02701159380376339, + 0.008649849332869053, + -0.0020212652161717415, + -0.04761407524347305, + 0.06949346512556076, + 0.011111587285995483, + 0.002733389148488641, + -0.09567015618085861, + 0.017336532473564148, + 0.01576494798064232, + 0.02752726897597313, + 0.08997316658496857, + 0.022898465394973755, + 0.033936385065317154, + -0.025317231193184853, + 0.01652618497610092, + 0.024310434237122536, + -0.023058079183101654, + -0.042899321764707565, + -0.040075384080410004, + -0.06360002607107162, + -0.03086688555777073, + -0.008858575485646725, + 0.004677916876971722, + 0.007065987214446068, + -0.005423805210739374, + 0.08457084745168686, + 0.05706813186407089, + -0.00788247399032116, + 0.02720804139971733, + -0.028681401163339615, + 0.01980440877377987, + 0.05785392224788666, + -0.05210782214999199, + -0.050781797617673874, + -0.05819770693778992, + -0.03825823962688446, + 0.04808063805103302 + ] + }, + { + "id": "05cb76f4-9cdd-4a42-ad1d-88b88213f943", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "davidthomas", + "reviewDate": "2022-12-18T23:42:23", + "stars": 5, + "verifiedUser": true + }, + { + "id": "b473a1da-123e-4ef1-83fe-81e854c55456", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "dmills", + "reviewDate": "2022-03-29T05:03:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e0c00bc3-90b5-4599-997e-5cbfd59fd099", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "lauraparks", + "reviewDate": "2022-01-04T00:35:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4f8e057c-3697-4f9b-b359-d9d9511b5fcf", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "jessicaprice", + "reviewDate": "2021-12-26T10:14:08", + "stars": 1, + "verifiedUser": true + }, + { + "id": "757c2b37-7f3c-420d-a040-512391e6adb0", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "huffdavid", + "reviewDate": "2022-06-07T17:08:55", + "stars": 3, + "verifiedUser": false + }, + { + "id": "70859486-3f8e-4cd0-963e-75b804544e1d", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "mparker", + "reviewDate": "2022-10-04T14:47:14", + "stars": 1, + "verifiedUser": true + }, + { + "id": "12bc86a0-bf7a-4693-841b-d10fa50bdde0", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "qmason", + "reviewDate": "2021-05-13T22:58:58", + "stars": 5, + "verifiedUser": true + }, + { + "id": "28b2e565-f10e-4bb2-8793-2a130153d560", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "smiranda", + "reviewDate": "2022-01-09T22:26:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "8803807c-bfc4-49e2-ac6f-9ae4023f5bdd", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "keith89", + "reviewDate": "2021-08-17T20:37:29", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3669225d-d486-4e52-a7b7-681a3efcb186", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "harrisbrandon", + "reviewDate": "2021-12-24T05:47:41", + "stars": 4, + "verifiedUser": false + }, + { + "id": "442eb86f-2aab-4a3e-8ee2-b934ce05be1d", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "bennettjackson", + "reviewDate": "2021-02-22T21:48:04", + "stars": 3, + "verifiedUser": true + }, + { + "id": "cc3597f0-dab2-4691-8640-def1d52c3daa", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "corey74", + "reviewDate": "2022-09-06T22:07:23", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4ba203f1-652d-4cfc-bfe8-0da92403e5ce", + "productId": "0dc86d42-4674-4cfd-8b80-7d1ec5ba6460", + "category": "Other", + "docType": "customerRating", + "userName": "joanwilson", + "reviewDate": "2022-07-24T07:28:12", + "stars": 5, + "verifiedUser": true + }, + { + "id": "653cc399-d9a9-4070-9319-096b6859f5d1", + "productId": "653cc399-d9a9-4070-9319-096b6859f5d1", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Mouse Ultra (Red)", + "description": "This Basic Mouse Ultra (Red) is an Ultra-soft mouse for the PC of Windows 10, developed at the Massachusetts Institute of Technology (MIT) for the Office Suite for Office 2016. It", + "countryOfOrigin": "France", + "rareItem": false, + "firstAvailable": "2019-09-19T21:35:13", + "price": 176.25, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2019-09-19T21:35:13", + "newPrice": 168.74 + }, + { + "priceDate": "2021-03-17T21:35:13", + "newPrice": 177.63 + }, + { + "priceDate": "2022-09-13T21:35:13", + "newPrice": 166.59 + }, + { + "priceDate": "2024-03-11T21:35:13", + "newPrice": 172.62 + }, + { + "priceDate": "2025-09-07T21:35:13", + "newPrice": 175.45 + }, + { + "priceDate": "2025-09-08T21:35:13", + "newPrice": 176.25 + } + ], + "descriptionVector": [ + -0.08850923925638199, + -0.029479920864105225, + -0.0230883602052927, + 0.04881671071052551, + 0.0287157129496336, + 0.040595680475234985, + -0.01758837327361107, + 0.023007307201623917, + 0.02589045651257038, + 0.08299767225980759, + 0.009888394735753536, + -0.07470716536045074, + 0.06720402836799622, + -0.09429869800806046, + 0.008209452033042908, + 0.011631021276116371, + -0.08304398506879807, + -0.015839958563447, + -0.0031060443725436926, + 0.004174199420958757, + 0.0416840985417366, + -0.017275743186473846, + -0.07183559983968735, + 0.012389441020786762, + -0.020911522209644318, + -0.005754721350967884, + 0.026330456137657166, + 0.028576765209436417, + 0.025334669277071953, + 0.06697244942188263, + 0.0292251855134964, + 0.00861471425741911, + 0.006507351063191891, + 0.04636198282241821, + -9.344547288492322e-05, + -0.03144833818078041, + -0.033810436725616455, + -0.05409669876098633, + 0.07243770360946655, + 0.007705769035965204, + 0.016453640535473824, + 0.002584993140771985, + 0.05618090182542801, + -0.00939050130546093, + 0.004428935702890158, + 2.7703461569217325e-07, + -0.024616776034235954, + 0.02452414482831955, + 0.013859963044524193, + -0.026330456137657166, + 0.021455731242895126, + 0.02225467748939991, + 0.014288382604718208, + -0.00457077706232667, + 0.0005427616997621953, + 0.0071615600027143955, + 0.06345245987176895, + 0.1209765151143074, + 0.07039981335401535, + -0.096058689057827, + -0.021096786484122276, + -0.039391472935676575, + -0.019359948113560677, + -0.009014186449348927, + -0.04223988577723503, + -0.03258306905627251, + 0.043050412088632584, + 0.00334630673751235, + 0.10263551771640778, + 0.05770931765437126, + -0.014531539753079414, + 0.016384167596697807, + -0.01685890182852745, + -0.010224183090031147, + 0.009257343597710133, + 0.023875726386904716, + 0.015110486187040806, + -0.0008901291876100004, + 0.055903010070323944, + -0.014485224150121212, + -0.010548393242061138, + -0.030568338930606842, + -0.011121549643576145, + 0.005138144362717867, + 0.07512401044368744, + 0.02100415527820587, + 0.05618090182542801, + -0.08017241954803467, + -0.004839987028390169, + 0.0619240440428257, + -0.007561032194644213, + 0.0970776379108429, + 0.06266509741544724, + 0.015527326613664627, + 0.04974302649497986, + -0.020436787977814674, + 0.004596829880028963, + -0.0079199792817235, + -0.054652485996484756, + 0.0030828865710645914, + 0.07794926315546036, + 0.02015889436006546, + -0.09531763941049576, + -0.04923355206847191, + 0.02380625158548355, + -0.09415974467992783, + 0.02431572414934635, + -0.011069444008171558, + -0.0788755789399147, + 0.00946576427668333, + -0.008979449979960918, + -0.04918723553419113, + 0.047357767820358276, + 0.03274517506361008, + -0.019545210525393486, + 0.004449198488146067, + -0.08860186487436295, + -0.019371526315808296, + -0.0535409078001976, + 0.06632403284311295, + 0.05266091227531433, + -0.041128311306238174, + 0.02503361739218235, + 0.027928346768021584, + -0.07299348711967468, + -0.032768335193395615, + -0.012632598169147968, + 0.005404459312558174, + -0.002344730542972684, + -0.049650393426418304, + -0.0389283187687397, + 0.07697663456201553, + 0.013582069426774979, + 0.0292251855134964, + -0.015295748598873615, + 0.03716832026839256, + -0.006281562149524689, + 0.021664151921868324, + -0.029503079131245613, + 0.042100939899683, + -0.016141008585691452, + -0.002702229656279087, + 0.0003802950377576053, + -0.0054334066808223724, + -0.09272396564483643, + -0.01793574169278145, + -0.08211767673492432, + 0.03559358790516853, + 0.005824194755405188, + 0.0046402509324252605, + -0.0021319680381566286, + -0.06530509144067764, + 0.031402021646499634, + -0.02679361216723919, + 0.03668200597167015, + -0.007074717897921801, + -0.004382619634270668, + 0.017993636429309845, + -0.042355675250291824, + 0.02312309667468071, + 0.025334669277071953, + 0.05784826725721359, + 0.05145670473575592, + -0.027557821944355965, + 0.015909431502223015, + 0.054837748408317566, + 0.010311025194823742, + 0.05821879208087921, + 0.020402051508426666, + 0.02262520231306553, + -0.07910715788602829, + 0.027164138853549957, + 0.005636037793010473, + -0.05724616348743439, + 0.015596800483763218, + 0.017078902572393417, + 0.022740991786122322, + 0.08063557744026184, + -0.011521021835505962, + -0.1060628741979599, + 0.04307356849312782, + 0.0778566375374794, + -0.08332188427448273, + 0.045644089579582214, + 0.04610724374651909, + -0.04742724075913429, + 0.03684411197900772, + 0.09272396564483643, + -0.08637871593236923, + -0.02818308211863041, + 0.02193046733736992, + -0.024292565882205963, + 0.026886243373155594, + -0.016106272116303444, + 0.05858931690454483, + 0.09531763941049576, + -0.04471777379512787, + 0.07989452034235, + -0.01757679507136345, + -0.07127980887889862, + 0.008197872899472713, + 0.04288830608129501, + 0.03663569316267967, + 0.07109455019235611, + -0.0010847997618839145, + -0.05080828443169594, + 0.03304622694849968, + -0.03232833370566368, + 0.032791491597890854, + -0.028044136241078377, + 0.04610724374651909, + -0.04784408211708069, + -0.023366253823041916, + 0.010808918625116348, + 0.10291340947151184, + 0.021860994398593903, + -0.02000836841762066, + -0.023563094437122345, + -0.0684545561671257, + -0.05882089585065842, + 0.05358722433447838, + 0.014126278460025787, + -0.0434209369122982, + -0.014589434489607811, + -0.09781868755817413, + -0.029688341543078423, + 0.14274488389492035, + -0.05349459499120712, + -0.003789200447499752, + 0.04608408734202385, + -0.06840823590755463, + -0.030197814106941223, + 0.004536040592938662, + -0.0018323635449633002, + -0.02628413960337639, + 0.057107217609882355, + 0.01487890724092722, + -0.08711976557970047, + -0.043907251209020615, + 0.06711140275001526, + 0.0019293369259685278, + -0.0055810376070439816, + -0.05770931765437126, + -0.06572192907333374, + 0.06757455319166183, + -0.029595710337162018, + 0.06817665696144104, + 0.002006047172471881, + -0.09800394624471664, + -0.004032357595860958, + -0.053448278456926346, + 0.031888335943222046, + 0.02556624822318554, + 0.04365251585841179, + -0.005601300857961178, + 0.009222607128322124, + 0.04742724075913429, + -0.059052474796772, + -0.04191567748785019, + -0.04265672713518143, + 0.03559358790516853, + 0.02975781448185444, + -0.06734297424554825, + 0.07618927210569382, + 0.02487151324748993, + -0.0027528873179107904, + 0.03925252705812454, + -0.0831829383969307, + 0.011775758117437363, + 0.02866939641535282, + 0.07517032325267792, + 0.041105154901742935, + 0.11069443821907043, + -0.02245151810348034, + 0.04798302799463272, + 0.03698305785655975, + -0.039738841354846954, + 0.055903010070323944, + 0.015041012316942215, + -0.023563094437122345, + 0.04872408136725426, + 0.08716608583927155, + 0.05909878760576248, + 0.020089419558644295, + -0.026863086968660355, + 0.005560774821788073, + 0.005856037139892578, + -0.014161014929413795, + -0.038349371403455734, + -0.016963113099336624, + -0.02032099850475788, + 0.03110096976161003, + 0.009072081185877323, + 0.018850475549697876, + 0.043536726385354996, + -0.013790489174425602, + 0.04821460694074631, + -0.005803931970149279, + 0.006883665919303894, + 0.014855749905109406, + -0.01878100261092186, + -0.01824837177991867, + -0.04867776483297348, + -0.09170501679182053, + 0.043189357966184616, + 0.04867776483297348, + 0.024454671889543533, + -0.003224728163331747, + -0.04448619857430458, + -0.059747207909822464, + 0.07002928853034973, + 0.012632598169147968, + -0.04608408734202385, + -0.006918402388691902, + 0.13227754831314087, + -0.017843110486865044, + 0.013848383910953999, + -0.03809463605284691, + 0.052429333329200745, + -0.016766270622611046, + -0.07609663903713226, + -0.0500672347843647, + -0.04626934975385666, + 0.06618508696556091, + 0.09559553116559982, + -0.061321940273046494, + -0.05511564388871193, + 0.028808344155550003, + -0.009512079879641533, + -0.07178927958011627, + -0.05196617543697357, + -0.03161044046282768, + -0.0455746166408062, + 0.01793574169278145, + 0.043374620378017426, + -0.04974302649497986, + 0.013512595556676388, + 0.07517032325267792, + 0.021166259422898293, + 0.07114086300134659, + 0.015735747292637825, + 0.06854718178510666, + -0.0038499897345900536, + -0.026700980961322784, + -0.015122064389288425, + -0.03334727883338928, + -0.02175678312778473, + -0.021108364686369896, + 0.01895468682050705, + 0.07882926613092422, + 0.0012346019502729177, + -0.06993665546178818, + 0.026562035083770752, + -0.017773637548089027, + 0.036218851804733276, + 0.006310509517788887, + -0.003230517730116844, + -0.043884094804525375, + -0.0010146026033908129, + 0.07290086150169373, + -0.05029881373047829, + -0.00413077836856246, + 0.0031639388762414455, + 0.07706926763057709, + -0.05409669876098633, + 0.03529253602027893, + -0.03133254870772362, + -0.03045254945755005, + 0.07466085255146027, + -0.012065230868756771, + -0.037816740572452545, + -0.02452414482831955, + 0.030522024258971214, + 0.030151497572660446, + -0.07618927210569382, + -0.02558940462768078, + 0.013755752705037594, + 0.003184202127158642, + -0.017692584544420242, + 0.024639934301376343, + -0.015191538259387016, + 0.05062302201986313, + 0.024269409477710724, + 0.054652485996484756, + 0.12421861290931702, + -0.020726259797811508, + -0.0535409078001976, + -0.05011355131864548, + 0.07466085255146027, + 0.016557849943637848, + 0.01546943187713623, + -0.02345888502895832, + -0.01670837588608265, + 0.02765045315027237, + 0.0199736300855875, + 0.0146125927567482, + 0.018699949607253075, + 0.07262296229600906, + -0.06655561178922653, + 0.03267570212483406, + 0.0016456535086035728, + 0.00983628910034895, + 0.028298871591687202, + -0.02535782754421234, + -0.05812615901231766, + -0.021652573719620705, + -0.00416840985417366, + -0.023030465468764305, + 0.023922041058540344, + 0.0002688479726202786, + -6.291512545431033e-05, + -0.029132554307579994, + 0.044926196336746216, + 0.03716832026839256, + -0.031679917126894, + -0.007063139230012894, + 0.007028402294963598, + 0.012736808508634567, + -0.013327333144843578, + -0.03707569092512131, + 0.06053457409143448, + -0.01805153116583824, + -0.049094606190919876, + 0.0272799264639616, + -0.03464411944150925, + 0.024130461737513542, + -0.06109036132693291, + -0.0684545561671257, + 0.029850445687770844, + 0.02626098319888115, + -0.021652573719620705, + -0.031031496822834015, + -0.003783410880714655, + -0.017333637923002243, + 0.020239945501089096, + 0.019603105261921883, + 0.03385675325989723, + 0.019765209406614304, + 0.02628413960337639, + 0.04031778872013092, + 0.02294941246509552, + -0.038835685700178146, + 0.0017643374158069491, + 0.04779776558279991, + -0.06229456886649132, + 0.04124410077929497, + -0.02783571556210518, + 0.003117623273283243, + 0.029086237773299217, + -0.014519961550831795, + 0.032235704362392426, + 0.030985180288553238, + -0.004289988428354263, + -0.06044194474816322, + 0.06586087495088577, + -0.0039455159567296505, + 0.03795568645000458, + 0.10532182455062866, + 0.012702071107923985, + -0.008365767076611519, + -0.04089673236012459, + 0.03925252705812454, + 0.09365027397871017, + -0.02802097797393799, + -0.05437459051609039, + -0.03265254572033882, + 0.020818891003727913, + -0.008458398282527924, + -0.022370466962456703, + -0.016059957444667816, + 0.006368404254317284, + -0.042170412838459015, + 0.059052474796772, + 0.04594514146447182, + 0.045319877564907074, + -0.002883150242269039, + -0.01842205598950386, + 0.032444123178720474, + 0.061321940273046494, + 0.027326242998242378, + 0.014844170771539211, + 0.02139783836901188, + -0.047218821942806244, + -0.0019496000604704022, + 0.04890934377908707, + -0.03267570212483406, + 0.0371914803981781, + 0.012956807389855385, + 0.03392622619867325, + 0.0031002548057585955, + 0.07007560133934021, + 0.048260923475027084, + -0.004376830533146858, + -0.040757786482572556, + -0.0940207988023758, + -0.012285230681300163, + 0.03543148562312126, + 0.012296808883547783, + 0.008574187755584717, + 0.08179346472024918, + 0.03135570511221886, + -0.01121418084949255, + -0.011272075586020947, + 0.0455746166408062, + 0.012076810002326965, + 0.031402021646499634, + 0.03716832026839256, + 0.015145222656428814, + 0.013721016235649586, + -0.05386511981487274, + 0.004431830253452063, + -0.0272799264639616 + ] + }, + { + "id": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "product", + "name": "Premium Speaker Ultra (Silver)", + "description": "This Premium Speaker Ultra (Silver) is designed for every single user!\n\nThis Premium Speaker Ultra (Silver) is designed for every single user! The ultra-powerful V8 is the perfect balance of power and warmth for every one of your needs; and for everyone.\n\nThe V8 is the perfect balance of power and warmth for every one of your needs; and for everyone. For all users, you'll find an efficient, yet high-grade power", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-05-23T12:52:58", + "price": 1041.6, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-02-21T14:08:50", + "newPrice": 1031.45 + }, + { + "priceDate": "2022-12-24T14:08:50", + "newPrice": 1007.27 + }, + { + "priceDate": "2024-09-12T14:08:50", + "newPrice": 1041.6 + } + ], + "descriptionVector": [ + 0.00825299322605133, + 0.03545328229665756, + -0.041936326771974564, + -0.03461238741874695, + -0.0014766550157219172, + 0.02148355171084404, + -0.07215435057878494, + 0.013183088041841984, + 7.094004831742495e-05, + 0.11007606983184814, + -0.009975474327802658, + -0.00488601578399539, + 0.01829628087580204, + -0.007351063657552004, + -0.02713925763964653, + 0.04668332263827324, + -0.03352735936641693, + -0.026054231449961662, + 0.020479900762438774, + -0.004865671508014202, + -0.022243069484829903, + -0.08403540402650833, + -0.03523628041148186, + -0.042017702013254166, + -0.10264363139867783, + -0.0011104581644758582, + 0.052705228328704834, + 0.024847136810421944, + 0.031194549053907394, + -0.023504415526986122, + 0.06558993458747864, + 0.016221165657043457, + -0.017970772460103035, + 0.056638453155756, + -0.03982052206993103, + -0.0012011596700176597, + 0.028102220967411995, + -0.05265097692608833, + 0.04616793245077133, + 0.01708918809890747, + -0.017563888803124428, + 0.017496073618531227, + 0.03599579632282257, + -0.010043288581073284, + 0.008490342646837234, + 0.020615529268980026, + -0.021090228110551834, + 0.06569843739271164, + 0.04812098294496536, + 0.00291601219214499, + -0.007812200114130974, + 0.030679162591695786, + -0.09157634526491165, + 0.06558993458747864, + 0.0696587860584259, + -0.04546266421675682, + -0.0022260022815316916, + 0.09721849113702774, + 0.04730721190571785, + 0.016628051176667213, + 0.021971814334392548, + -0.09754399955272675, + -0.005435311235487461, + 0.022866960614919662, + -0.0380030982196331, + 0.039549265056848526, + 0.0028990586288273335, + 0.01424099039286375, + -0.01954406313598156, + 0.09022006392478943, + 0.008144490420818329, + -0.003756908932700753, + 0.028210723772644997, + 0.06200933828949928, + 0.040797047317028046, + 0.005655707325786352, + 0.04814811050891876, + 0.05756072700023651, + 0.012457475997507572, + 0.030679162591695786, + 0.060327548533678055, + -8.799957140581682e-05, + -0.008422528393566608, + 0.04277722164988518, + 0.031330179423093796, + -0.010870622470974922, + 0.008659878745675087, + -0.08278762549161911, + 0.019354183226823807, + 0.0697672888636589, + -0.027369827032089233, + 0.02720707282423973, + 0.06689196825027466, + 0.015217515639960766, + 0.07703697681427002, + 0.07074381411075592, + -0.03740633279085159, + -0.005913401488214731, + -0.07030980288982391, + -0.030597785487771034, + 0.05354612320661545, + -0.037867471575737, + -0.018743855878710747, + 0.003183878492563963, + -0.0006115996511653066, + 0.056584201753139496, + 0.018770981580018997, + 0.00729003082960844, + -0.01037557888776064, + -0.11045583337545395, + 0.007812200114130974, + -0.05471252650022507, + 0.005248822271823883, + 0.013657787814736366, + 0.07779649645090103, + 0.0142138646915555, + -0.006808549631386995, + -0.08430666476488113, + -0.051538821309804916, + -0.009344802238047123, + -0.0440521314740181, + -0.018052149564027786, + 0.0316828116774559, + 0.008497124537825584, + -0.03040790557861328, + 0.006625451147556305, + 0.055173665285110474, + 0.09640472382307053, + 0.05870000645518303, + 0.019137177616357803, + -0.04494727775454521, + 0.12401867657899857, + -0.08099732547998428, + 0.0314386822283268, + 0.01953050121665001, + 0.024982765316963196, + -0.0069407871924340725, + 0.04548979178071022, + -0.023884175345301628, + 0.012389661744236946, + -0.03637555614113808, + 0.06526442617177963, + 0.06705471873283386, + 0.013427219353616238, + -0.08875527232885361, + -0.0029617869295179844, + -0.047035954892635345, + 0.0316014364361763, + 0.0008959956467151642, + -0.01585496962070465, + 0.0761146992444992, + -0.0441063828766346, + 0.0047571687027812, + -0.03998327627778053, + 0.04483877494931221, + -0.034368257969617844, + -0.06396239250898361, + 0.03797597438097, + -0.0013927349355071783, + 0.10475943982601166, + -0.029946768656373024, + -0.015515897423028946, + -0.06515592336654663, + 0.008890446275472641, + 0.025471027940511703, + 0.06499316543340683, + 0.03637555614113808, + 0.09125083684921265, + -0.05815749242901802, + 0.028671860694885254, + -0.0110537214204669, + 0.011189348995685577, + 0.01837765797972679, + -0.04654769226908684, + 0.06184658780694008, + -0.0005908315652050078, + -0.025362525135278702, + 0.005598065443336964, + 0.0015139528550207615, + -0.030190899968147278, + -0.028156472370028496, + 0.10432542860507965, + -0.06499316543340683, + 0.004719871096313, + 0.031872693449258804, + 0.04858212172985077, + 0.038138728588819504, + -0.010504425503313541, + -0.04095980152487755, + -0.001029081060551107, + -0.004821592476218939, + 0.004919922910630703, + -0.013623880222439766, + 0.023165343329310417, + -0.011467387899756432, + -0.05734372138977051, + 0.09575370699167252, + 0.017319757491350174, + 0.015448084101080894, + -0.02090034820139408, + -0.030082397162914276, + 0.09580795466899872, + 0.05105055868625641, + -0.015922782942652702, + -0.04158369079232216, + -0.030109522864222527, + 0.0022107441909611225, + 0.07394464313983917, + -0.020561277866363525, + 0.036294180899858475, + 5.9231500927126035e-05, + -0.008035987615585327, + -0.011189348995685577, + 0.02151067741215229, + 0.04782260209321976, + 0.0018411566270515323, + 0.017387570813298225, + 0.0189337357878685, + -0.021754808723926544, + -0.03591442108154297, + 0.028156472370028496, + -0.0220531914383173, + 0.060924313962459564, + 0.023775672540068626, + -0.07188308984041214, + -0.07079806923866272, + 0.06738022714853287, + 0.024196119979023933, + 0.04912463575601578, + 0.05620444193482399, + -0.02273133210837841, + 0.05452264845371246, + 0.02263639308512211, + 0.0016343231545761228, + -0.04668332263827324, + 0.06016479432582855, + -0.03553466126322746, + -0.056963961571455, + -0.06727172434329987, + 0.05983928591012955, + 0.01958475261926651, + 0.024196119979023933, + -0.038816869258880615, + -0.001798772718757391, + 0.040688544511795044, + -0.021320797502994537, + 0.1075805053114891, + -0.012220125645399094, + -0.060924313962459564, + -0.017292631790041924, + -0.09380065649747849, + -0.002778688445687294, + -0.026813749223947525, + 0.017441822215914726, + 0.006984866689890623, + 0.06651220470666885, + 0.1257547289133072, + -0.05452264845371246, + -0.05761497840285301, + -0.028671860694885254, + -0.040091779083013535, + 0.060273297131061554, + -0.03716220334172249, + -0.014851318672299385, + -0.09304113686084747, + -0.06607819348573685, + 0.04033590853214264, + -0.0314929336309433, + 0.003295772010460496, + -0.05425139144062996, + -0.03873549401760101, + 0.049585770815610886, + -0.04039015993475914, + 0.03339173272252083, + 0.01651954837143421, + 0.00946686789393425, + -0.08349289000034332, + 0.06830250471830368, + -0.02907874621450901, + -0.020005200058221817, + 0.08533743768930435, + 0.03851848840713501, + 0.09884603321552277, + -0.04982990399003029, + 0.045028652995824814, + -0.03835573419928551, + 0.01649242267012596, + -0.049640022218227386, + -0.015353144146502018, + -0.026176296174526215, + 0.014932695776224136, + -0.02080540917813778, + 0.0031567527912557125, + 0.009677091613411903, + 0.03708082437515259, + -0.00585915008559823, + 0.06141257658600807, + -0.04597805440425873, + 0.01824202947318554, + 0.045191407203674316, + 0.026067793369293213, + -0.0026142389979213476, + 0.010816371068358421, + 0.00026447552954778075, + 0.006045639514923096, + 0.07188308984041214, + -0.06808549910783768, + 0.060381799936294556, + -0.0503995418548584, + -0.05604168772697449, + 0.057886235415935516, + -0.052678100764751434, + -0.05181007832288742, + -0.03586016967892647, + 0.08642246574163437, + 0.022460075095295906, + -0.02472507208585739, + 0.021063102409243584, + -0.03352735936641693, + 0.02461656928062439, + -0.07269686460494995, + 0.0011952259810641408, + -0.07785074412822723, + 0.02084609679877758, + -0.0696587860584259, + -0.02332809753715992, + -0.05498378351330757, + -0.033744364976882935, + 0.03903387486934662, + 0.030597785487771034, + 0.026108482852578163, + -0.02391130104660988, + 0.08333013951778412, + -0.038138728588819504, + 0.08577144891023636, + -0.026773061603307724, + -0.023138217628002167, + -0.00943296030163765, + 0.05164732411503792, + -0.006266035605221987, + 0.07747098803520203, + -0.013352623209357262, + 0.009738124907016754, + -0.047578468918800354, + 0.0079139219596982, + -0.020452775061130524, + -0.04719870910048485, + -0.001131650060415268, + -0.05362749844789505, + 0.015610837377607822, + 0.0014257943257689476, + -0.057723481208086014, + 0.05229834094643593, + 0.042044829577207565, + 0.03979339450597763, + -0.027329137548804283, + -0.025552405044436455, + 0.007147620897740126, + 0.07741673290729523, + 0.021863311529159546, + 0.01821490377187729, + 0.03032652847468853, + -0.059676531702280045, + 0.03271358832716942, + -0.04242458939552307, + 0.04665619507431984, + -0.0008108040201477706, + 0.0012833845103159547, + 0.008802288211882114, + -0.07633170485496521, + 0.013705257326364517, + 0.018119964748620987, + -0.018201341852545738, + 0.021754808723926544, + -0.03095041960477829, + 0.0818653479218483, + 0.07117782533168793, + -0.02277202159166336, + -0.014688564464449883, + 0.026881564408540726, + 0.0036484061274677515, + 0.04820236191153526, + 0.012755858711898327, + -0.015163264237344265, + 0.075409434735775, + -0.003485651919618249, + -0.040688544511795044, + 0.023802798241376877, + 0.033093348145484924, + 0.026366176083683968, + -0.026352614164352417, + -0.0441606342792511, + -0.051376067101955414, + 0.03371724113821983, + 0.02270420640707016, + 0.055824682116508484, + 0.056584201753139496, + 0.039549265056848526, + -0.0444047637283802, + -0.02467082068324089, + 0.06135832518339157, + 0.0027820791583508253, + -0.02202606573700905, + -0.05360037460923195, + -0.030570659786462784, + -0.06857375800609589, + -0.0022344791796058416, + 0.054495520889759064, + -0.05482102930545807, + -0.02399267815053463, + -0.031031794846057892, + -0.010924873873591423, + -0.01764526590704918, + 0.017997898161411285, + 0.024250371381640434, + 0.05511941388249397, + 0.02088678628206253, + -0.0026549275498837233, + 0.0694960355758667, + -0.05360037460923195, + 0.043319735676050186, + 0.030679162591695786, + 0.03290347009897232, + 0.044431887567043304, + -0.009670310653746128, + 0.052786603569984436, + 0.025552405044436455, + -0.06738022714853287, + 0.003231348469853401, + -0.04600517824292183, + -0.0317099392414093, + -0.012091279029846191, + 0.059785034507513046, + 0.012308284640312195, + -0.003285599872469902, + -0.05745222419500351, + -0.020547714084386826, + 0.019761068746447563, + -0.04741571471095085, + 0.006072765216231346, + -0.0756806880235672, + -0.02395198866724968, + -0.020642654970288277, + 0.04367237165570259, + -0.1012873500585556, + -0.06727172434329987, + 0.0036178897134959698, + 0.017224816605448723, + 0.010748556815087795, + 0.024480940774083138, + 0.027342701330780983, + -0.04277722164988518, + -0.022989027202129364, + 0.027491891756653786, + -0.014878444373607635, + -0.02978401444852352, + -0.006425399333238602, + 0.07899002730846405, + -0.04779547452926636, + -0.020045889541506767, + -0.04915175959467888, + 0.09011156111955643, + 0.056746955960989, + 0.012525290250778198, + -0.010619710199534893, + 0.03987477347254753, + -0.04722583666443825, + 0.01824202947318554, + -0.015095449984073639, + -0.006076155696064234, + -0.023884175345301628, + -0.08121433109045029, + 0.017821582034230232, + 0.033201850950717926, + -0.09152209758758545, + -0.02031714655458927, + 0.0442691333591938, + -0.07172033935785294, + 0.03339173272252083, + 0.02899736911058426, + -0.03279496729373932, + 0.017346883192658424, + 0.015054761432111263, + 0.0027363046538084745, + 0.04291285201907158, + -0.04350961744785309, + 0.027017192915081978, + 0.005479390732944012, + -0.03534478321671486, + 0.07785074412822723, + 0.02008657716214657, + 0.07942403852939606, + -0.03328322991728783, + 0.02717994712293148, + -0.0942889153957367, + -0.059730783104896545, + -0.028210723772644997, + -0.0691705271601677, + 0.013372967950999737, + 0.04356386885046959, + 0.003821332473307848, + -0.009446523152291775, + 0.018689604476094246, + 0.028292100876569748, + 0.025620220229029655, + -0.029946768656373024, + -0.043156981468200684, + 0.025525279343128204, + -0.031194549053907394, + 0.04106830433011055, + 0.09602496027946472, + 0.024168994277715683 + ] + }, + { + "id": "e20f7fe9-7fae-44bd-ab95-e2ebf561d36a", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "wbennett", + "reviewDate": "2022-02-06T01:35:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "22721971-7a7e-4e8f-9b4b-76e423343f54", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "pjohnston", + "reviewDate": "2022-12-19T23:38:41", + "stars": 2, + "verifiedUser": true + }, + { + "id": "27145ac5-cb3b-4d48-bbc4-da699f4dcd5f", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "jimmymurray", + "reviewDate": "2022-11-26T21:21:29", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5a91d708-fc89-4771-8049-108517649ad8", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "anthonyjohnson", + "reviewDate": "2022-07-27T10:06:20", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9ad3b1f5-5c18-45c6-9124-62192fc250f8", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "hollyholder", + "reviewDate": "2022-06-26T13:41:39", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4a4ac2e5-4591-4d73-972f-f08403b0140f", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "pmartinez", + "reviewDate": "2022-11-21T03:55:49", + "stars": 2, + "verifiedUser": false + }, + { + "id": "5bc74456-3aa1-4152-8c62-092c80a868f3", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "atkinsondiane", + "reviewDate": "2022-12-25T13:02:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "0e685aaf-abbc-47a9-aedf-ab2a1d254c67", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "arodriguez", + "reviewDate": "2021-02-21T14:08:50", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6fb6ffe6-15e0-4233-a2ac-f712a5dba7f0", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "christophercarrillo", + "reviewDate": "2021-12-22T18:13:58", + "stars": 1, + "verifiedUser": true + }, + { + "id": "1221b7ec-4032-40c4-80b6-1da54ca19b86", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "paulanderson", + "reviewDate": "2022-12-08T12:36:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "adc4d869-86d0-4987-828e-d97736767cc9", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "hvargas", + "reviewDate": "2022-10-09T23:42:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "79b66fd0-a98b-4082-a2fa-006421bf8ead", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "abryan", + "reviewDate": "2022-06-09T12:15:49", + "stars": 1, + "verifiedUser": true + }, + { + "id": "23a4d263-c117-430c-803f-de5e1dd011a9", + "productId": "5c498fd9-1cc3-4fc5-96da-1520d13e11e6", + "category": "Media", + "docType": "customerRating", + "userName": "jmarshall", + "reviewDate": "2022-05-04T00:49:11", + "stars": 2, + "verifiedUser": false + }, + { + "id": "38dd564f-5f37-4426-979f-00310c5231f0", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "product", + "name": "Luxe Phone 3000 (Red)", + "description": "This Luxe Phone 3000 (Red) is a slim phone with bright silver design and a large square screen for viewing up to 5 movies simultaneously without need to buy additional batteries. It is a popular smartphone that has come a long way. With over 100 million users worldwide, this 5.7 inches, 13-inch IPS-LED phone is the perfect choice for sharing movies and sports, and it offers everything you need to have a screen that", + "countryOfOrigin": "Brazil", + "rareItem": true, + "firstAvailable": "2019-02-20T14:24:56", + "price": 486.28, + "stock": 10, + "priceHistory": [ + { + "priceDate": "2021-02-01T04:48:04", + "newPrice": 447.37 + }, + { + "priceDate": "2022-10-24T04:48:04", + "newPrice": 454.72 + }, + { + "priceDate": "2024-09-22T04:48:04", + "newPrice": 486.28 + } + ], + "descriptionVector": [ + -0.03594449535012245, + 0.07154502719640732, + -0.038450539112091064, + 0.06849846988916397, + -0.003620861331000924, + -0.009059831500053406, + -0.013156717643141747, + 0.02307032234966755, + 0.03120267391204834, + 0.05975189059972763, + 0.01714918576180935, + -0.06201224401593208, + 0.025428950786590576, + -0.024753302335739136, + 0.055526018142700195, + 0.011529019102454185, + -0.06987433135509491, + -0.07370710372924805, + 0.016915779560804367, + 0.010503262281417847, + 0.09832527488470078, + -0.07414934784173965, + -0.032775092869997025, + 0.020380014553666115, + 0.023831963539123535, + 0.001489497721195221, + 0.017296599224209785, + -0.005076576489955187, + 0.0002253441052744165, + -0.08923473209142685, + -0.007303145248442888, + 0.024077653884887695, + -0.03712381049990654, + 0.019532382488250732, + -0.01659638248383999, + -0.032775092869997025, + 0.07788383960723877, + -0.002995886607095599, + 0.08667955547571182, + -0.0018042884767055511, + 0.03965442255139351, + 0.02281234785914421, + -0.056754469871520996, + -0.04132511466741562, + 0.0755252093076706, + -0.07242951542139053, + 0.010318994522094727, + -0.034740615636110306, + 0.004075388424098492, + -0.04545271396636963, + 0.028401803225278854, + -0.009655630216002464, + -0.09763734042644501, + 0.005829003173857927, + 0.0023494139313697815, + -0.04427339881658554, + 0.03361043706536293, + 0.12756241858005524, + 0.0339052677154541, + -0.0396052822470665, + 0.011608868837356567, + -0.093509741127491, + 0.03680441156029701, + 0.03014620579779148, + -0.011504449881613255, + 0.0014710709219798446, + -0.03218543529510498, + -0.027099644765257835, + 0.013463830575346947, + 0.05395359918475151, + -0.018230224028229713, + 0.04287296533584595, + 0.008519312366843224, + 0.02732076682150364, + 0.0014979433035477996, + 0.044003140181303024, + 0.027763009071350098, + -0.03972812741994858, + 0.009895178489387035, + -0.0551329143345356, + 0.03051474131643772, + 0.040661752223968506, + -0.013181286863982677, + -0.010233002714812756, + 0.03904019668698311, + -0.01310758013278246, + 0.03410181775689125, + -0.11645722389221191, + -0.050169967114925385, + 0.07375624030828476, + 0.02171902544796467, + 0.04606693983078003, + -0.011694860644638538, + -0.04346262291073799, + 0.05110359191894531, + -0.013734090141952038, + 0.034372080117464066, + 0.07336313277482986, + -0.02311946079134941, + 0.0014418951468542218, + 0.07419848442077637, + 0.021043376997113228, + 0.0026473135221749544, + -0.01461857557296753, + 0.014729135669767857, + 0.031055258587002754, + -0.034249234944581985, + -0.0005589455249719322, + -0.013218140229582787, + -0.1510504186153412, + 0.04093201085925102, + -0.0037314221262931824, + -0.08967697620391846, + -0.009919747710227966, + -0.050710488110780716, + 0.05493636056780815, + 0.001987020717933774, + -0.022714072838425636, + 0.055280327796936035, + -0.008900132961571217, + 0.05739326402544975, + 0.012180098332464695, + -0.08554937690496445, + -0.017837118357419968, + -0.008832567371428013, + -0.04272555187344551, + 0.03304535150527954, + 0.001038041664287448, + 0.009637203998863697, + -0.056951019912958145, + -0.08260109275579453, + 0.08063556998968124, + 0.008077070116996765, + 0.08323989063501358, + -0.004536057822406292, + 0.1155727356672287, + 0.013512969017028809, + 0.02146105095744133, + 0.004130668938159943, + 0.056213948875665665, + 0.016006724908947945, + 0.03953157737851143, + 0.0563613660633564, + -0.039556145668029785, + -0.001610807259567082, + -0.03279966115951538, + -0.05739326402544975, + -0.01653495989739895, + -0.009164249524474144, + 0.07169244438409805, + -0.025576364248991013, + -0.07645883411169052, + 0.055280327796936035, + -0.04950660467147827, + 0.021866440773010254, + 0.005500392522662878, + -0.071053646504879, + -0.03164491429924965, + -0.031178103759884834, + 0.03378242254257202, + -0.008556165732443333, + -0.013500683940947056, + 0.007825237698853016, + -0.06142258644104004, + -0.030539309605956078, + 0.002083761151880026, + 0.07100450992584229, + -2.500091250112746e-05, + -0.07606572657823563, + 0.05341308191418648, + -0.011713286861777306, + -0.0030527024064213037, + -0.07100450992584229, + -0.01495025772601366, + 0.011326325125992298, + -0.008095496334135532, + 0.07459158450365067, + 0.024876147508621216, + -0.0026872381567955017, + -0.028524648398160934, + 0.07287175208330154, + -0.006621354725211859, + -0.09129852801561356, + -0.021117085590958595, + 0.02448304183781147, + 0.03260310739278793, + 0.005018225405365229, + -0.02368454821407795, + 0.01750543713569641, + -7.18836163287051e-05, + 0.01652267575263977, + 0.03508457913994789, + -0.010478693060576916, + 0.015183662995696068, + 0.004689614288508892, + -0.0694320872426033, + 0.10289511829614639, + 0.01972893439233303, + -0.0019394181435927749, + 0.016547244042158127, + -0.05434670299291611, + 0.051889799535274506, + 0.08279764652252197, + 0.023844247683882713, + -0.054788947105407715, + -0.018217938020825386, + -0.05469067022204399, + 0.041521668434143066, + 0.030072497203946114, + 0.010233002714812756, + -0.004336434416472912, + 0.028647493571043015, + -0.021301353350281715, + 0.026731109246611595, + 0.040612611919641495, + 0.017542289569973946, + 0.021854156628251076, + -0.0040078237652778625, + 0.03311905637383461, + -0.10721926391124725, + 0.03756605461239815, + -0.031153535470366478, + 0.037590622901916504, + -0.011584299616515636, + -0.05252859368920326, + -0.01744401454925537, + 0.10033993422985077, + 0.10977444797754288, + 0.06761398166418076, + 0.02256665751338005, + -0.0004810156242456287, + -0.03655872121453285, + -0.01751772128045559, + 0.010927078314125538, + -0.006212894339114428, + 0.03026905097067356, + 0.012100249528884888, + -0.07567262649536133, + -0.06515707820653915, + 0.03631303086876869, + -0.012462642975151539, + -0.04397857189178467, + 0.005227061919867992, + -0.016756081953644753, + 0.07508296519517899, + 0.008599162101745605, + 0.020576566457748413, + -0.007812952622771263, + -0.03847510740160942, + -0.013795512728393078, + 0.015675043687224388, + -0.06142258644104004, + -0.05518205091357231, + 0.06810536235570908, + 0.014385169371962547, + -0.069038987159729, + 0.009489789605140686, + -0.03336474671959877, + 0.003163263201713562, + -0.013623529113829136, + -0.031104397028684616, + -0.0604398250579834, + -0.039629850536584854, + 0.022664934396743774, + 0.0046804011799395084, + 0.0445190891623497, + 0.05734412744641304, + -0.09370629489421844, + 0.04014580324292183, + -0.005988702178001404, + -0.025674641132354736, + -0.07935798168182373, + 0.06609070301055908, + 0.012886458076536655, + -0.04965401813387871, + 0.009164249524474144, + -0.09174077212810516, + 0.035354841500520706, + -0.06161913648247719, + -0.03886821120977402, + 0.06476397067308426, + 0.0016553386813029647, + 0.034003544598817825, + -0.04989970847964287, + 0.06638552993535995, + -0.04505961015820503, + 0.021805018186569214, + -0.011565872468054295, + 0.033143628388643265, + -0.026313435286283493, + -0.001956309424713254, + 0.017554575577378273, + 0.03766432777047157, + -0.07262606173753738, + 0.0355268232524395, + 0.020453721284866333, + 0.04395400360226631, + -0.01886901818215847, + 0.06476397067308426, + 0.009643346071243286, + -0.06053810194134712, + -0.012450357899069786, + -0.008765002712607384, + -0.08564765006303787, + -0.02083454094827175, + 0.09370629489421844, + -0.008292049169540405, + 0.09129852801561356, + -0.01702634058892727, + -0.04729539155960083, + 0.05154583230614662, + -0.08245367556810379, + -0.07198727130889893, + 0.005217848811298609, + 0.005362191703170538, + -0.026411712169647217, + 0.0392121784389019, + 0.0054358989000320435, + 0.050096262246370316, + -0.00015643564984202385, + 0.08363299071788788, + -0.01341469306498766, + -0.05532946437597275, + 0.027984129264950752, + 0.06594328582286835, + -0.006903898436576128, + -0.057688090950250626, + -0.019262121990323067, + -0.03378242254257202, + -0.026067744940519333, + -0.05542774125933647, + -0.019765788689255714, + 0.028475509956479073, + -0.06599242240190506, + 0.012825035490095615, + -0.011848417110741138, + 0.04722168296575546, + 0.01670694351196289, + 0.030613016337156296, + 0.022062992677092552, + 0.10142097622156143, + 0.006473940331488848, + -0.039875540882349014, + 0.009330091066658497, + 0.00649236747995019, + -0.03174319118261337, + -0.0678105354309082, + 0.05316739156842232, + 0.06530449539422989, + -0.005417472217231989, + 0.0014887299621477723, + -0.024028515443205833, + 0.08407523483037949, + 0.03658329322934151, + 0.02515869028866291, + 0.05483808368444443, + 0.018660182133316994, + -0.06584501266479492, + -0.05469067022204399, + 0.02429877407848835, + -0.04361003637313843, + 0.03039189614355564, + 0.07862091064453125, + 0.06245448440313339, + -0.024311060085892677, + 0.01751772128045559, + 0.012388935312628746, + 0.06638552993535995, + -0.06442000716924667, + 0.003691497491672635, + 0.08554937690496445, + -0.006811764556914568, + -0.12068309634923935, + 0.08348558098077774, + -0.005309982690960169, + 0.05822861194610596, + 0.07788383960723877, + -0.009846040047705173, + -0.04464193433523178, + 0.03361043706536293, + -0.06333897262811661, + 0.05916223302483559, + -0.02101880870759487, + 0.0034888028167188168, + 0.08353471755981445, + -0.032160867005586624, + -0.0047878907062113285, + 0.012517922557890415, + -0.028008699417114258, + 0.047147978097200394, + -0.027591025456786156, + -0.07041484862565994, + 0.014692282304167747, + 0.09139680862426758, + 0.03619018569588661, + -0.008617588318884373, + -0.012972449883818626, + -0.01622784696519375, + 0.011664149351418018, + -0.11203479766845703, + 0.007438275031745434, + 0.020330876111984253, + 0.0408337339758873, + -0.0006787195452488959, + 0.012118675746023655, + -0.030809568241238594, + 0.062896728515625, + -0.0018733888864517212, + -0.04508417844772339, + -0.05537860468029976, + 0.010810375213623047, + 0.010791948065161705, + -0.05134928226470947, + 0.012640767730772495, + 0.03670613840222359, + -0.0045391288585960865, + 0.016928063705563545, + 0.011842274107038975, + 0.04734452813863754, + -0.012554776854813099, + -0.007819094695150852, + 0.020551996305584908, + -0.043266069144010544, + -0.03643587604165077, + -0.03803286328911781, + -0.04803246259689331, + -0.008040216751396656, + -0.03051474131643772, + 0.010533973574638367, + -0.04311865568161011, + 0.06967777758836746, + -0.0389910563826561, + 0.01652267575263977, + -0.02035544440150261, + -0.01770198903977871, + -0.022591227665543556, + -0.016608666628599167, + 0.047516513615846634, + 0.0030757358763366938, + 0.01800910197198391, + -0.02626429684460163, + 0.005736869294196367, + -0.05341308191418648, + 0.08368212729692459, + -0.08279764652252197, + -0.002596639795228839, + 0.011314040049910545, + 0.008955412544310093, + -0.014323746785521507, + -0.07238037139177322, + -0.010613822378218174, + -0.009010693058371544, + -0.06363379955291748, + 0.01800910197198391, + 0.008052500896155834, + -0.054739806801080704, + -0.028819477185606956, + 0.06039068475365639, + -0.023328298702836037, + 0.01943410560488701, + -0.009563496336340904, + 0.05243032053112984, + 0.05488722398877144, + 0.003937187604606152, + -0.04216046258807182, + 0.04358546808362007, + -0.038696229457855225, + -0.003040418028831482, + 0.009870609268546104, + 0.0024077652487903833, + -0.013205856084823608, + -0.01793539524078369, + -0.013242709450423717, + 0.00036316103069111705, + -0.020994240418076515, + -0.05901481956243515, + 0.06014499440789223, + -0.0062773884274065495, + -0.011393889784812927, + -0.009538927115499973, + 0.04380658641457558, + 0.03928588703274727, + 0.04908892884850502, + 0.004410141613334417, + 0.031227242201566696, + -0.014692282304167747, + 0.03100612200796604, + -0.010724383406341076, + 0.0579829216003418, + -0.016006724908947945, + 0.048818670213222504, + -0.024089938029646873, + -0.0685967430472374, + -0.01480284333229065, + -0.08481230586767197, + -0.05385532230138779, + -0.0027701586950570345, + 0.009311663918197155, + -0.09174077212810516, + 0.022775495424866676, + 0.039875540882349014, + -0.014630859717726707, + -0.025023560971021652, + 0.02380739338696003, + 0.009035262279212475, + 0.013709520921111107, + -0.0031433007679879665, + 0.05729498714208603, + -0.03813114017248154, + -0.010853370651602745, + 0.06225793436169624, + -0.014974826015532017 + ] + }, + { + "id": "539227e0-1942-40bd-aacd-526fac209572", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "veronicarobinson", + "reviewDate": "2021-11-24T20:14:56", + "stars": 2, + "verifiedUser": false + }, + { + "id": "03e00cd4-ec08-4c27-8ff9-65692862cc84", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "hmarshall", + "reviewDate": "2022-10-24T14:20:20", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f874b7f1-c700-4d53-a075-b0deae99da5a", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher05", + "reviewDate": "2022-06-24T08:05:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "dfea80f8-0aee-4725-8cd7-6f55f71bc589", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "rrollins", + "reviewDate": "2021-02-01T04:48:04", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a0b867a7-130e-434e-acbd-bcaff6b17578", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "michael57", + "reviewDate": "2021-02-19T07:18:35", + "stars": 2, + "verifiedUser": false + }, + { + "id": "f4de1719-a596-439d-afdf-a813f99fbc3c", + "productId": "38dd564f-5f37-4426-979f-00310c5231f0", + "category": "Electronics", + "docType": "customerRating", + "userName": "yandrews", + "reviewDate": "2021-03-21T05:23:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "product", + "name": "Amazing Keyboard + (Red)", + "description": "This Amazing Keyboard + (Red) is the perfect choice to play as your favourite characters.", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2019-01-16T10:06:12", + "price": 215.83, + "stock": 71, + "priceHistory": [ + { + "priceDate": "2021-03-09T11:43:16", + "newPrice": 236.77 + }, + { + "priceDate": "2021-08-13T11:43:16", + "newPrice": 227.93 + }, + { + "priceDate": "2022-01-17T11:43:16", + "newPrice": 209.04 + }, + { + "priceDate": "2022-06-23T11:43:16", + "newPrice": 204.5 + }, + { + "priceDate": "2022-11-27T11:43:16", + "newPrice": 231.49 + }, + { + "priceDate": "2023-10-26T11:43:16", + "newPrice": 215.83 + } + ], + "descriptionVector": [ + 0.020646048709750175, + -0.001641768147237599, + -0.03376016393303871, + 0.021247001364827156, + 0.029273051768541336, + -0.056409385055303574, + -0.03373345360159874, + -0.010877235792577267, + 0.03269180282950401, + 0.07264845073223114, + -0.01622571051120758, + -0.03114268183708191, + 0.046847566962242126, + -0.019270535558462143, + 0.01255322527140379, + -0.004787586163729429, + -0.060308896005153656, + -0.030101031064987183, + 0.009561818093061447, + 0.022382132709026337, + 0.02243555150926113, + -0.020138578489422798, + -0.05272354558110237, + -0.021220292896032333, + 0.03351978212594986, + -0.017948441207408905, + -0.025547148659825325, + 0.014516335912048817, + -0.02322346530854702, + 0.051788728684186935, + 0.026749052107334137, + -0.007592030335217714, + -0.01292715035378933, + -0.0061964853666722775, + -0.076280876994133, + -0.028738873079419136, + -0.05763800069689751, + 0.0035189094487577677, + -0.026428544893860817, + -0.014743361622095108, + 0.015584695152938366, + 0.04065108299255371, + -0.0044904486276209354, + -0.05592862516641617, + -0.04433692246675491, + 0.1144213080406189, + 0.03667144104838371, + -0.008833997882902622, + -0.0207662396132946, + -0.023383719846606255, + 0.06378106772899628, + 0.06597120314836502, + -0.012860378250479698, + -0.009648622013628483, + 0.03392041474580765, + 0.002270264085382223, + -0.0037425970658659935, + 0.0025340153370052576, + 0.03827398270368576, + -0.0629797950387001, + -0.02407815307378769, + -0.05624913051724434, + -0.011337965726852417, + -0.062125109136104584, + 0.0013646624283865094, + -0.0629797950387001, + -0.00729823112487793, + -0.04935821145772934, + 0.03915537893772125, + 0.01995161548256874, + 0.007231459021568298, + 0.0194574985653162, + -0.010536695830523968, + 0.004774231929332018, + 0.0020065128337591887, + 0.03490864858031273, + 0.09513741731643677, + 0.05096075311303139, + 0.014302663505077362, + 0.034000542014837265, + 0.020686112344264984, + -0.015704885125160217, + -0.05870635807514191, + -0.008880739100277424, + 0.026829179376363754, + -0.015544631518423557, + 0.054913681000471115, + -0.11110939830541611, + -0.040757916867733, + 0.034347761422395706, + -0.03533599153161049, + -0.011244484223425388, + 0.033866997808218, + -0.02986064925789833, + -0.002008182229474187, + -0.026361772790551186, + -0.021153518930077553, + 0.037472713738679886, + -0.01736084371805191, + 0.053738486021757126, + 0.024492142722010612, + -0.03693853318691254, + -0.032611675560474396, + -0.04161260649561882, + 0.0032100866083055735, + -0.016359256580471992, + 0.0001970831217477098, + 0.018616165965795517, + -0.04895757883787155, + -0.1821553111076355, + 0.01029631495475769, + 0.010236220434308052, + 0.008266432210803032, + 0.03210420534014702, + -0.029166216030716896, + 0.04495123028755188, + -0.0873383954167366, + 0.024518853053450584, + 0.07537277042865753, + -0.040250446647405624, + 0.00527168670669198, + 0.05721065402030945, + -0.036591313779354095, + 0.027857474982738495, + -0.05507393553853035, + -0.02868545427918434, + -0.0704583153128624, + 0.06661222130060196, + 0.05475342646241188, + 0.011478188447654247, + -0.07398390024900436, + 0.0921994298696518, + 0.07697530835866928, + 0.14775413274765015, + 0.021647635847330093, + 0.11196408420801163, + -0.01459646224975586, + 0.021994853392243385, + -0.031196098774671555, + 0.04257412999868393, + 0.004934486001729965, + -0.043375398963689804, + -0.003926221281290054, + 0.03311914578080177, + -0.05435279384255409, + 0.03039482980966568, + 0.07457149773836136, + 0.013347817584872246, + 0.05413912236690521, + -0.01633254624903202, + 0.0198447797447443, + -0.07670821994543076, + -0.04967872053384781, + -0.019911551848053932, + 0.028925836086273193, + 0.041345514357089996, + -0.08263761550188065, + -0.04244058579206467, + -0.044016413390636444, + 0.11175040900707245, + -0.07494542747735977, + 0.04874390363693237, + -0.03394712507724762, + 0.048129599541425705, + -0.031543318182229996, + 0.022555740550160408, + 0.021754471585154533, + 0.009655299596488476, + -0.008099501021206379, + 0.031650152057409286, + -0.022782767191529274, + -0.0015215777093544602, + 0.027069561183452606, + -0.02897925302386284, + 0.008800611831247807, + 0.023771001026034355, + 0.09508400410413742, + -0.07441124320030212, + -0.01219933107495308, + -0.03450801596045494, + -0.014836843125522137, + 0.028845708817243576, + -0.06335372477769852, + 0.05982813611626625, + 0.07921886444091797, + 0.028071148321032524, + 0.043829452246427536, + 0.017280716449022293, + 0.04890415817499161, + -0.028177984058856964, + 0.02296973019838333, + -0.025373538956046104, + -0.030635211616754532, + -0.02272935025393963, + -0.030207866802811623, + 0.09818224608898163, + -0.02279612235724926, + -0.01977800577878952, + 0.03800689056515694, + 0.02485271543264389, + 0.019056864082813263, + 0.034534722566604614, + 0.09823565930128098, + 0.006299982778728008, + -0.0007211426855064929, + -0.0020549227483570576, + -0.019724588841199875, + 0.031650152057409286, + 0.023664165288209915, + 0.00177781714592129, + 0.05202911049127579, + 0.07515909522771835, + -0.014649881049990654, + 0.00041878860793076456, + 0.05344468727707863, + -0.016279129311442375, + -0.029486723244190216, + 0.01697356253862381, + -0.02020535059273243, + -0.018442556262016296, + -0.02986064925789833, + 0.006844178307801485, + 0.00270762387663126, + -0.000735331850592047, + -0.0012027391931042075, + -0.024518853053450584, + 0.08018038421869278, + 0.021540800109505653, + 0.006173115223646164, + 0.034775104373693466, + -0.07959278672933578, + -0.03359990939497948, + 0.03007432259619236, + 0.001638429588638246, + -0.0002591606753412634, + 0.04524502903223038, + -0.014916970394551754, + -0.04281450808048248, + -0.09011612832546234, + 0.06132384017109871, + 0.04390957951545715, + -0.07131300121545792, + -0.01530425064265728, + -0.009341469034552574, + 0.09770148247480392, + -0.000875554047524929, + 0.0799667164683342, + 0.04086475446820259, + -0.03840752691030502, + -0.012833669781684875, + -0.0778299942612648, + 0.021901370957493782, + 0.011030812747776508, + 0.008172950707376003, + 0.009308082982897758, + 0.055875204503536224, + -0.006286628544330597, + 0.011531606316566467, + 0.016933498904109, + -0.07360997796058655, + 0.02769722230732441, + -0.02429182641208172, + -0.0053685070015490055, + 0.08055431395769119, + -0.046179842203855515, + 0.0059761363081634045, + 0.01973794400691986, + -0.10090655833482742, + -0.04839668795466423, + 0.0022902959026396275, + 0.0352291576564312, + 0.034321051090955734, + -0.027750639244914055, + -0.05429937690496445, + 0.004760877229273319, + -0.020859720185399055, + -0.03554966300725937, + 0.02701614238321781, + 0.0693899542093277, + 0.004961194936186075, + -0.001200235215947032, + 0.10838507860898972, + 0.10315011441707611, + -6.473800021922216e-05, + -0.0367782786488533, + -0.0804474726319313, + -0.010229542851448059, + -0.004854358732700348, + -0.032825347036123276, + -0.00374593585729599, + 0.00162006716709584, + -0.008647034876048565, + 0.02825811132788658, + -0.013621584512293339, + 0.04233374819159508, + 0.025079740211367607, + 0.022635867819190025, + -0.0288724172860384, + 0.05213594809174538, + 0.013888674788177013, + 0.06874893605709076, + -0.0704583153128624, + -0.033145856112241745, + -0.12724162638187408, + -0.018669582903385162, + 0.06281954050064087, + 0.008046083152294159, + 0.06468917429447174, + -0.0333862379193306, + -0.02698943391442299, + 0.07633429020643234, + -0.03838081657886505, + -0.07291553914546967, + 0.01498374342918396, + 0.02343713864684105, + -0.0534713976085186, + 0.002440533833578229, + 0.022382132709026337, + 0.011758632957935333, + -0.0031817082781344652, + 0.023624101653695107, + -0.08322521299123764, + -0.0410517156124115, + 0.054806847125291824, + 0.05344468727707863, + -0.03274521976709366, + -0.03330611065030098, + -0.018335720524191856, + 0.022034917026758194, + -0.07296895980834961, + -0.09428273141384125, + -0.009441628120839596, + -0.013728420250117779, + 0.009581849910318851, + 0.04150576889514923, + -0.0830649584531784, + 0.05293721705675125, + 0.06981729716062546, + 0.04244058579206467, + -0.023170048370957375, + 0.013968801125884056, + -0.03242471441626549, + -0.01971123367547989, + -0.03651118651032448, + -0.05672989413142204, + -0.008566908538341522, + -0.02645525336265564, + -0.02690930664539337, + 0.07526592910289764, + 0.017481032758951187, + 0.0015992007683962584, + -0.04110513627529144, + 0.025400249287486076, + -0.07686847448348999, + 0.051788728684186935, + 0.01448962651193142, + -0.016105521470308304, + -0.035709917545318604, + -0.04540528357028961, + 0.07766973972320557, + 0.013728420250117779, + 0.030261285603046417, + 0.020726175978779793, + 0.026041263714432716, + 0.017641287297010422, + -0.030555084347724915, + -0.0037192266900092363, + 0.04086475446820259, + 0.013441299088299274, + -0.012185975909233093, + 0.025053031742572784, + -0.0969536304473877, + -0.035843465477228165, + 0.05042657256126404, + -0.019470853731036186, + 0.036163970828056335, + -0.03966284915804863, + -0.029246343299746513, + -0.01857610233128071, + 0.018936673179268837, + -0.034107379615306854, + 0.027149688452482224, + -0.030902300029993057, + 0.01541108638048172, + 0.030661920085549355, + -0.00541524775326252, + 0.002482266630977392, + -0.04556553438305855, + 0.04428350552916527, + 0.012700124643743038, + -0.06693273037672043, + -0.008373267948627472, + -0.023343656212091446, + 0.10453898459672928, + -0.05833243206143379, + -0.029887359589338303, + 0.047168076038360596, + 0.09727413952350616, + 0.04591275379061699, + 0.038754742592573166, + 0.024906132370233536, + 0.006186469458043575, + 0.021140165627002716, + -0.016426028683781624, + -0.11506232619285583, + -0.12542541325092316, + -0.03221104294061661, + 0.03263838589191437, + 0.015598049387335777, + -0.05010606348514557, + -0.03469497710466385, + 0.06014864519238472, + -0.042841218411922455, + -0.03576333820819855, + 0.013207594864070415, + 0.021928079426288605, + 0.08926144242286682, + 0.07660137861967087, + 0.03490864858031273, + -0.03525586426258087, + 0.0458059161901474, + 0.04214678332209587, + -0.02399802766740322, + 0.011304579675197601, + -0.012593288905918598, + 0.05122784152626991, + 0.022488968446850777, + 0.017841605469584465, + -0.0144362086430192, + -0.0772423967719078, + 0.00770554319024086, + -0.03632422536611557, + -0.015010451897978783, + 0.03763296455144882, + -0.044737558811903, + -0.004183295648545027, + -0.04030386358499527, + 0.025373538956046104, + -0.024492142722010612, + 0.07115274667739868, + -0.01008264347910881, + -0.0937485545873642, + -0.05672989413142204, + -0.020258767530322075, + -0.007131299935281277, + 0.06068282201886177, + 0.031943950802087784, + 0.03392041474580765, + 0.031543318182229996, + 0.0021317112259566784, + -0.026441900059580803, + -0.062338780611753464, + -0.040063485503196716, + 0.015344314277172089, + -0.00942827295511961, + 0.01525083277374506, + -0.023370366543531418, + 0.16463421285152435, + -0.05870635807514191, + 0.044443756341934204, + 0.0018646212993189692, + 0.04286792874336243, + 0.0163993202149868, + 0.004433692432940006, + -0.012599965557456017, + -0.034641560167074203, + -0.0028228063602000475, + 0.03816714510321617, + 0.016946854069828987, + 0.012012368068099022, + -0.007859120145440102, + -0.03667144104838371, + 0.02123364619910717, + -0.007992665283381939, + 0.0013028979301452637, + -0.05432608351111412, + -0.04257412999868393, + 0.01686672680079937, + -0.010069289244711399, + 0.022715995088219643, + -0.0006422677543014288, + -0.12222033739089966, + -0.01205243170261383, + -0.020031742751598358, + 0.03958272188901901, + 0.029807232320308685, + 0.048236433416604996, + 0.03408066928386688, + 0.03554966300725937, + -0.027830766513943672, + 0.0678408294916153, + -0.02506638690829277, + 0.016185646876692772, + -0.036591313779354095, + -0.040250446647405624, + -0.016666408628225327, + -0.05074707791209221, + -0.019470853731036186, + -0.04118525981903076, + 0.014876906760036945, + 0.022448904812335968, + -0.03942246735095978, + 0.006924305576831102, + -0.012726833112537861, + 0.016639700159430504, + 0.03773980215191841, + 4.841004192712717e-05, + 0.05058682709932327, + -0.010256252251565456, + -0.009855616837739944, + 0.022008206695318222, + -0.04431021213531494 + ] + }, + { + "id": "69e1bc9a-c91f-4983-a655-01eee797c748", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksonanthony", + "reviewDate": "2021-04-16T18:08:57", + "stars": 5, + "verifiedUser": true + }, + { + "id": "9accfca1-33bf-4678-9ed9-24879089eb52", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "whitelori", + "reviewDate": "2022-02-22T12:24:45", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f2a62c5b-0b18-4613-93a4-e3e8aef50029", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "hmolina", + "reviewDate": "2022-03-22T07:54:12", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c851c227-9d0a-438e-abb3-365395a9f386", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mark44", + "reviewDate": "2021-09-13T14:39:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9bb54d3e-d563-4d05-8c9b-c83987d6d89a", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "roweyolanda", + "reviewDate": "2021-10-15T09:18:54", + "stars": 1, + "verifiedUser": true + }, + { + "id": "a2487451-30d7-4a05-a547-772dff0d6560", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mhart", + "reviewDate": "2022-08-19T11:10:45", + "stars": 3, + "verifiedUser": false + }, + { + "id": "ab04d7f0-4ec3-4cac-a4d6-3d1c9ce790ff", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "patricia37", + "reviewDate": "2021-08-20T19:19:01", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e6eab0a7-c9b4-4656-9cff-d55357178e02", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davidsimmons", + "reviewDate": "2021-12-20T19:23:13", + "stars": 5, + "verifiedUser": false + }, + { + "id": "8ffbf170-e632-4b85-ac97-cac1f5518724", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertmays", + "reviewDate": "2021-10-03T01:15:40", + "stars": 5, + "verifiedUser": true + }, + { + "id": "d80695e0-545a-473a-98d5-81d20e80104b", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rayheather", + "reviewDate": "2021-10-01T20:13:26", + "stars": 3, + "verifiedUser": false + }, + { + "id": "87de5d72-7309-42e2-811c-5d6cd561139d", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pruittpatricia", + "reviewDate": "2022-05-13T10:56:01", + "stars": 5, + "verifiedUser": true + }, + { + "id": "0382c7a9-2d4c-41b8-b549-e98453dda7db", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lesliegilmore", + "reviewDate": "2022-03-28T12:59:07", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f38fbe79-e926-40e5-8c3b-41e1299349cd", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "fletchermariah", + "reviewDate": "2021-11-07T10:32:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f5aec740-be5a-4151-b8ac-7ca2d6edffa0", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael04", + "reviewDate": "2022-08-31T03:15:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "9275ac44-47fd-4149-90a7-fa6067abe4bd", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "tara14", + "reviewDate": "2022-11-30T01:39:47", + "stars": 5, + "verifiedUser": false + }, + { + "id": "24b00c30-2814-4019-9552-00e528a4c870", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "stephaniemartinez", + "reviewDate": "2021-03-30T00:57:09", + "stars": 3, + "verifiedUser": false + }, + { + "id": "893297f6-1b2a-4573-8255-712d3a01d1df", + "productId": "6e972b5d-87f6-49a0-9fb6-c83b262e0c19", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "millerbradley", + "reviewDate": "2021-03-09T11:43:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "546ca661-1061-4f93-b172-5948810ca9a7", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "product", + "name": "Luxe Mouse Micro (Gold)", + "description": "This Luxe Mouse Micro (Gold) is made from an ultrathin polyester and has a leather surface. It features two high-end models of the Micro, a black, white and a grey version. The colour is actually reflective though as many of its features and textures appear to be reflected in", + "countryOfOrigin": "Brazil", + "rareItem": false, + "firstAvailable": "2018-02-01T23:53:14", + "price": 736.78, + "stock": 19, + "priceHistory": [ + { + "priceDate": "2021-01-04T13:04:19", + "newPrice": 678.27 + }, + { + "priceDate": "2021-05-19T13:04:19", + "newPrice": 666.24 + }, + { + "priceDate": "2021-10-01T13:04:19", + "newPrice": 736.84 + }, + { + "priceDate": "2022-02-13T13:04:19", + "newPrice": 708.72 + }, + { + "priceDate": "2022-06-28T13:04:19", + "newPrice": 754.28 + }, + { + "priceDate": "2023-06-01T13:04:19", + "newPrice": 736.78 + } + ], + "descriptionVector": [ + -0.07885879278182983, + 0.007945146411657333, + -0.041084401309490204, + -0.03106490708887577, + 0.023147717118263245, + -0.053541675209999084, + 0.00045918027171865106, + -0.02531711757183075, + 0.014805593527853489, + -0.019625239074230194, + 0.009890896268188953, + 0.03824405372142792, + 0.05653857812285423, + -0.07872460782527924, + 0.045244283974170685, + -0.013855082914233208, + -0.039608314633369446, + -0.043387990444898605, + 0.010768720880150795, + 0.01816033571958542, + 0.0306176096200943, + -0.07787473499774933, + -0.02598806470632553, + -0.003024858655408025, + -0.032831739634275436, + -0.0105842100456357, + 0.011741595342755318, + 0.0424039326608181, + 0.0317358560860157, + 0.032831739634275436, + 0.05197612941265106, + 0.02216365933418274, + -0.02079939842224121, + 0.0023049870505928993, + -0.03213842585682869, + -0.06432157754898071, + 0.04607178643345833, + 0.027106313034892082, + 0.12560153007507324, + 0.04150933772325516, + 0.020631661638617516, + 0.007995467633008957, + -0.020363282412290573, + -0.05130518227815628, + -0.018741823732852936, + -0.010321421548724174, + -0.012557916343212128, + 0.05975913256406784, + -0.0030500192660838366, + -0.05282599851489067, + 0.017109181731939316, + -0.0037265587598085403, + -0.08082690834999084, + -0.00811847485601902, + -0.03162403032183647, + -0.048174090683460236, + -0.012781566008925438, + 0.19591690599918365, + 0.0481293611228466, + -0.06852618604898453, + 0.003030449850484729, + -0.06387428194284439, + -0.03381579741835594, + 0.019927164539694786, + 0.0006220249924808741, + -0.0001754250261001289, + 0.0074251615442335606, + -0.044126033782958984, + 0.10422064363956451, + 0.09339600801467896, + -0.032563358545303345, + -0.0217275433242321, + 0.022007105872035027, + 0.015577184036374092, + 0.044796984642744064, + 0.03587337210774422, + 0.04036872461438179, + -0.028291653841733932, + 0.07326755672693253, + -0.04177771508693695, + 0.0718362033367157, + -0.046876922249794006, + -0.005635966081172228, + -0.03611938655376434, + 0.06503725796937943, + 0.04723476245999336, + 0.052289240062236786, + -0.056180741637945175, + -0.07214931398630142, + 0.06606604903936386, + -0.01994953118264675, + 0.05881980434060097, + 0.04408130422234535, + -0.03790858015418053, + -0.03632067143917084, + -0.03513532876968384, + 0.04996328428387642, + 0.05251288786530495, + -0.052289240062236786, + -0.011053874157369137, + 0.0026320742908865213, + 0.018876012414693832, + -0.03106490708887577, + 0.01964760385453701, + 0.0003871931112371385, + 0.03520242124795914, + 0.02835875004529953, + -0.029186252504587173, + -0.03428545966744423, + -0.1167450100183487, + 0.09420114755630493, + -0.004472988657653332, + -0.06915240734815598, + 0.02498164214193821, + -0.05157356336712837, + 0.05479411408305168, + -0.0352918803691864, + 0.007632037159055471, + -0.030125580728054047, + 0.017411109060049057, + 0.08279502391815186, + 0.019971895962953568, + -0.006485833786427975, + 0.018674729391932487, + -0.022890521213412285, + 0.017042087391018867, + -0.04032399505376816, + -0.04148697108030319, + 0.03732709214091301, + -0.042717043310403824, + -0.0751909464597702, + 0.04920287802815437, + 0.006105629727244377, + 0.024176504462957382, + -0.037729661911726, + 0.052915457636117935, + -0.0038747265934944153, + -0.0132512291893363, + 0.01375444047152996, + 0.0704495757818222, + -0.02869422361254692, + -0.0719703882932663, + -0.0188312828540802, + -0.054659925401210785, + -0.049426525831222534, + -0.053362756967544556, + -0.07085214555263519, + 0.0044981492683291435, + -0.04285123199224472, + 0.01426883414387703, + 0.06606604903936386, + -0.08328705281019211, + 0.013709710910916328, + -0.04063710570335388, + 0.046832192689180374, + 0.06302441656589508, + -0.03155693784356117, + -0.018853647634387016, + -0.01028787437826395, + 0.04059237241744995, + 0.04390238597989082, + -0.016147490590810776, + 0.026032796129584312, + 0.010846997611224651, + 0.010740764439105988, + 0.006983453873544931, + -0.007386022713035345, + 0.012759200297296047, + -0.07375958561897278, + 0.017332831397652626, + -0.028157465159893036, + -0.00754257757216692, + 0.0036706465762108564, + -0.05166302248835564, + 0.022063016891479492, + 0.018484625965356827, + 0.048621390014886856, + 0.0016731773503124714, + 0.036164116114377975, + -0.03254099562764168, + 0.02902969717979431, + 0.08561300486326218, + -0.06530563533306122, + -0.026010429486632347, + 0.031042542308568954, + 0.02312535233795643, + 0.03175822272896767, + 0.07715905457735062, + -0.020139632746577263, + -0.03714817389845848, + -0.03265281766653061, + 0.04329853132367134, + 0.030349230393767357, + -0.045423202216625214, + -0.006743030622601509, + 0.02238730899989605, + 0.00012982150656171143, + 0.06910768151283264, + -0.011886968277394772, + 0.005149528384208679, + 0.011372574605047703, + -0.00033163020270876586, + 0.0470111146569252, + 0.010556253604590893, + -0.0024251986760646105, + -0.06530563533306122, + 0.034173633903265, + -0.035358976572752, + 0.04195663705468178, + 0.011853420175611973, + -0.005775746889412403, + 0.0032093694899231195, + -0.0265024583786726, + 0.0542573556303978, + 0.04070419818162918, + 0.030751798301935196, + 0.02195119298994541, + -0.023147717118263245, + -0.03618647903203964, + -0.06351644545793533, + -0.005515754222869873, + 0.012144165113568306, + -0.013799170963466167, + 0.003259690711274743, + -0.045199550688266754, + -0.03260808810591698, + 0.06293494999408722, + 0.007995467633008957, + 0.07232823222875595, + -0.019669968634843826, + -0.001712316065095365, + -0.05211032181978226, + 0.0038859089836478233, + -0.008425992913544178, + -0.016550058498978615, + 0.020564565435051918, + -0.08945977687835693, + -0.0375954732298851, + 0.08744693547487259, + 0.014447754248976707, + -0.022230755537748337, + -0.028828414157032967, + -0.013184134848415852, + -0.0038747265934944153, + 0.024735627695918083, + -0.06280076503753662, + 0.0987635925412178, + -0.06101156771183014, + -0.09013072401285172, + 0.053139109164476395, + -0.03332376852631569, + -0.03929520770907402, + -0.05304964631795883, + 0.10672551393508911, + 0.03368160501122475, + 0.06982335448265076, + 0.04059237241744995, + -0.03717053681612015, + -0.0010448622051626444, + -0.051170993596315384, + 0.019860070198774338, + -0.030147945508360863, + -0.014839140698313713, + 0.009790254756808281, + -0.05519668385386467, + 0.06356117129325867, + 0.020709939301013947, + -0.11280877888202667, + 0.02891787327826023, + 0.04032399505376816, + 0.005194258410483599, + -0.03748364746570587, + 0.09420114755630493, + 0.020452741533517838, + -0.0481293611228466, + 0.04269468039274216, + -0.06454522907733917, + 0.026681378483772278, + 0.009303816594183445, + -0.07832203805446625, + 0.056806959211826324, + 0.05448100343346596, + 0.04960544779896736, + -0.04768206179141998, + 0.08386854082345963, + -0.009555422700941563, + 0.0017542503774166107, + 0.06239819526672363, + -0.01983770541846752, + -0.0317358560860157, + -0.019915983080863953, + -0.026122255250811577, + -0.0029326032381504774, + -0.011965245008468628, + -0.014738498255610466, + -0.0155883664265275, + 0.023952854797244072, + 0.06025116145610809, + -0.03676796704530716, + 0.002346921246498823, + 0.0016046847449615598, + 0.030639974400401115, + -0.04920287802815437, + -0.012356631457805634, + 0.009913261979818344, + 0.09241195023059845, + 0.07040484249591827, + 0.005926710087805986, + 0.016404686495661736, + -0.006508199032396078, + 0.07572770118713379, + 0.04777152091264725, + -0.03607465699315071, + 0.005057272966951132, + 0.13427913188934326, + -0.0802006870508194, + -0.03394998610019684, + -0.012077069841325283, + 0.06897348910570145, + 0.03614174947142601, + 8.228508704632986e-06, + -0.012479638680815697, + -0.09169626981019974, + 0.047100573778152466, + 0.049650177359580994, + -0.020396828651428223, + -0.034419648349285126, + 0.010763129219412804, + -0.016471780836582184, + -0.022845789790153503, + -0.0719703882932663, + -0.0038299968000501394, + 0.007447526324540377, + -0.007207103539258242, + -0.011652136221528053, + -0.007989875972270966, + 0.008716736920177937, + 0.021213149651885033, + 0.06132467836141586, + -0.009790254756808281, + 0.018808918073773384, + 0.015968570485711098, + -0.021157236769795418, + -0.013452514074742794, + 0.026189349591732025, + -0.07997704297304153, + -0.05166302248835564, + -0.02238730899989605, + -0.0019974689930677414, + 0.09473790228366852, + 0.001255232491530478, + -0.05237869918346405, + -0.026077525690197945, + -0.023483190685510635, + 0.018395166844129562, + 0.04486407712101936, + 0.07344647496938705, + -0.03907155618071556, + -0.012982849963009357, + 0.08856517821550369, + -0.014794411137700081, + -0.034710392355918884, + 0.07595135271549225, + 0.05036585405468941, + -0.030304498970508575, + 0.007464300375431776, + -0.05081315338611603, + -0.0017752174753695726, + -0.008593729697167873, + 0.025898605585098267, + -0.0495159849524498, + -0.043432723730802536, + -0.05041058361530304, + 0.023147717118263245, + -0.059982780367136, + 0.02027382142841816, + 0.065976582467556, + 0.048800308257341385, + -0.03039395995438099, + 0.05000801384449005, + -0.023818666115403175, + 0.03220551833510399, + -0.0021400456316769123, + 0.032048966735601425, + 0.07711432874202728, + -0.03372633457183838, + -0.04611651599407196, + 0.015431812033057213, + 0.016505328938364983, + -0.052736539393663406, + 0.024556709453463554, + -0.06172724813222885, + 0.06731848418712616, + 0.00562478369101882, + 0.03240680322051048, + 0.010299056768417358, + 0.03236207365989685, + 0.04014507681131363, + -0.05148410052061081, + 0.02639063447713852, + 0.02147034741938114, + 0.050768423825502396, + -0.029454631730914116, + -0.00532006099820137, + 0.03225024789571762, + 0.008034606464207172, + 0.09938981384038925, + 0.062219277024269104, + -0.008929204195737839, + -0.09438006579875946, + 0.0033379679080098867, + -0.007615263573825359, + 0.036454860121011734, + -0.01849580928683281, + 0.009594561532139778, + -0.02750888094305992, + 0.025898605585098267, + 0.01578965038061142, + 0.03106490708887577, + -0.06432157754898071, + 0.09250140935182571, + 0.0051411413587629795, + -0.06888402998447418, + 0.029253346845507622, + -0.0026502457913011312, + -0.029611187055706978, + -0.057030607014894485, + 0.00956101343035698, + 0.08051379770040512, + -0.05846196413040161, + -0.0037181719671934843, + -0.08570246398448944, + -0.05953548103570938, + -0.03370397165417671, + 0.004598791711032391, + 0.04593759402632713, + 0.02097831852734089, + 0.0235055573284626, + 0.007827730849385262, + 0.04763733223080635, + 0.04669800400733948, + -0.08055853098630905, + 0.039831966161727905, + 0.015241709537804127, + -0.0401003435254097, + 0.02435542456805706, + -0.07568297535181046, + 0.009348547086119652, + 0.038087498396635056, + -0.0848078653216362, + 0.03207132965326309, + -0.021995922550559044, + -0.030885988846421242, + -0.018965473398566246, + 0.06745266914367676, + 0.02230903133749962, + -0.000788364268373698, + 0.0601169690489769, + 0.016885532066226006, + 0.009426823817193508, + -0.04678746312856674, + 0.10770957171916962, + 0.01727692037820816, + -0.007240650709718466, + -0.01756766438484192, + -0.021671630442142487, + 0.005001360550522804, + 0.028157465159893036, + -0.018741823732852936, + 0.03189241141080856, + -0.0023678885772824287, + -0.007369249127805233, + -0.0435892753303051, + -0.04978436604142189, + 0.00622863695025444, + -0.04799516871571541, + 0.004291273653507233, + -0.016930263489484787, + 0.0032093694899231195, + 0.022879337891936302, + -0.001555761438794434, + 0.0482635498046875, + 0.006457877811044455, + 0.06740794330835342, + 0.05953548103570938, + -0.042828869074583054, + 0.07523567229509354, + 0.02491454780101776, + 0.04533374309539795, + 0.02205183543264866, + -0.006060899700969458, + 0.01653887704014778, + -0.023885760456323624, + -0.08462894707918167, + -0.05363113805651665, + 0.04448387399315834, + 0.003620325354859233, + 0.04584813490509987, + -0.005683491472154856, + 0.06257711350917816, + 0.030930718407034874, + 0.010791085660457611, + -0.06888402998447418, + 0.036678507924079895, + 0.0765775665640831, + 0.046429622918367386, + -0.037237633019685745, + 0.024511979892849922, + -0.00963929109275341, + -0.06297968327999115, + -0.013810353353619576, + 0.00566112669184804 + ] + }, + { + "id": "de83f501-898a-4ab1-83c3-a24d6f60e26d", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nburke", + "reviewDate": "2021-12-31T01:16:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "3c44430b-2aac-4e02-98fc-abdf884cef31", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christinamacdonald", + "reviewDate": "2021-01-04T13:04:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "209e05d0-6470-4a22-b338-88c6f984315f", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "reneemartin", + "reviewDate": "2022-06-08T00:34:44", + "stars": 3, + "verifiedUser": true + }, + { + "id": "faff9b23-f720-45e7-ac54-168924574ba1", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ucuevas", + "reviewDate": "2022-06-28T22:48:16", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c24bd541-f302-4855-8bd0-6ab77f4e8ee3", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "danielgiles", + "reviewDate": "2022-05-30T01:53:43", + "stars": 5, + "verifiedUser": true + }, + { + "id": "7cfd90c2-bf0d-4f83-a6d6-12df113bd404", + "productId": "546ca661-1061-4f93-b172-5948810ca9a7", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa90", + "reviewDate": "2021-02-11T09:38:42", + "stars": 4, + "verifiedUser": true + }, + { + "id": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "product", + "name": "Premium TV Mini (Red)", + "description": "This Premium TV Mini (Red) is not included in the price list. It's not included at all in your local box office.\n\nWhat it does:\n\nPowered this full-size TV mini (also known as a Premium TV Mini, or SFF) from a 5.20 inch solid-state drive instead of the 5.25 inch solid-state drive sold on the Lowe's Web", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2020-03-06T12:11:39", + "price": 557.18, + "stock": 4, + "priceHistory": [ + { + "priceDate": "2021-01-03T23:03:46", + "newPrice": 520.84 + }, + { + "priceDate": "2021-07-28T23:03:46", + "newPrice": 525.52 + }, + { + "priceDate": "2022-02-19T23:03:46", + "newPrice": 564.05 + }, + { + "priceDate": "2022-09-13T23:03:46", + "newPrice": 612.31 + }, + { + "priceDate": "2024-03-06T23:03:46", + "newPrice": 557.18 + } + ], + "descriptionVector": [ + -0.014657977968454361, + 0.05322062224149704, + -0.03810930252075195, + 0.0695408433675766, + -0.0318920761346817, + -0.05123456194996834, + -0.01316843368113041, + 0.05042862519621849, + -0.02953183278441429, + 0.06470522284507751, + 0.046398941427469254, + -0.030855871737003326, + 0.03813808783888817, + -0.013038908131420612, + 0.08306907117366791, + -0.006569825112819672, + -0.09734567254781723, + 0.014729936607182026, + 0.018493374809622765, + 0.018407024443149567, + 0.059121232479810715, + -0.005641558673232794, + -0.045305170118808746, + 0.010930519551038742, + -0.04801081493496895, + 0.0008266250370070338, + -0.09815160930156708, + 0.011463013477623463, + 0.015442327596247196, + -0.009210707619786263, + 0.03356151655316353, + -0.005760290194302797, + -0.027790432795882225, + 0.021127061918377876, + -0.0066849589347839355, + -0.008850914426147938, + 0.024206891655921936, + 0.06372658908367157, + 0.02532944642007351, + 0.018723642453551292, + -0.0010559932561591268, + 0.0066597736440598965, + 0.04133305326104164, + -0.0031517890747636557, + -0.009066790342330933, + 0.02088240161538124, + -0.03934699296951294, + 0.004644931294023991, + -0.03474164009094238, + 0.00024510917137376964, + -0.0720737874507904, + 0.025516539812088013, + -0.04386599734425545, + 0.04726244509220123, + -0.03977874666452408, + -0.017471561208367348, + -0.003964921925216913, + 0.1754639893770218, + -0.001216101343743503, + -0.0052889613434672356, + -0.014233422465622425, + -0.02661031112074852, + 0.040181715041399, + 0.05785476043820381, + -0.033360034227371216, + 0.02253745123744011, + -0.08623525500297546, + 0.057768408209085464, + -0.003488195827230811, + 0.02646639384329319, + -0.04677312821149826, + -0.032870713621377945, + 0.07086488604545593, + 0.009980665519833565, + 0.019932547584176064, + 0.03646864742040634, + 0.027502598240971565, + -0.056185320019721985, + 0.041246701031923294, + -0.021659554913640022, + 0.015830904245376587, + 0.03416597098112106, + -0.07863642275333405, + -0.02466742694377899, + -0.04533395171165466, + 0.06303578615188599, + 0.013607381843030453, + -0.08093909919261932, + -0.010563530959188938, + 0.040383197367191315, + 0.01902586780488491, + 0.07247675955295563, + 0.1082833856344223, + -0.02023477479815483, + 0.04519003629684448, + 0.06608682870864868, + -0.045967187732458115, + 0.0693681463599205, + -0.025142354890704155, + -0.016507316380739212, + 0.07829102128744125, + -0.06660493463277817, + -0.021932998672127724, + -0.0059869601391255856, + 0.04464314877986908, + 0.036439862102270126, + 0.032582879066467285, + 0.035806626081466675, + 0.08404771238565445, + -0.059696901589632034, + -0.013938391581177711, + -0.05402655899524689, + -0.024120541289448738, + -0.005835846997797489, + 0.024235675111413002, + 0.02789117582142353, + 0.03785025328397751, + 0.010649881325662136, + -0.01780257187783718, + -0.03180572763085365, + 0.055753566324710846, + 0.009030811488628387, + -0.042657092213630676, + -0.020853618159890175, + -0.0023566458839923143, + 0.0065086605027318, + -0.06574142724275589, + 0.060617972165346146, + 0.033734217286109924, + -0.06556873023509979, + -0.07236162573099136, + 0.05402655899524689, + 0.022926026955246925, + 0.04677312821149826, + -0.053767506033182144, + -0.0038641798309981823, + 0.03361908346414566, + 0.04242682456970215, + -0.017687438055872917, + -0.0024591870605945587, + -0.06487792730331421, + 0.012355301529169083, + 0.054544661194086075, + 0.02646639384329319, + -0.08537174761295319, + 0.006580619141459465, + -0.05270252004265785, + 0.046888262033462524, + -0.07126785069704056, + 0.01588847115635872, + 0.021789081394672394, + -0.07299485802650452, + -0.0305392537266016, + -0.03931821137666702, + 0.010498767718672752, + 0.08260853588581085, + -0.0491909384727478, + -0.019040260463953018, + -0.07397349923849106, + 0.1164003238081932, + -0.02761773206293583, + 0.004965147469192743, + -0.0807088315486908, + -0.04933485388755798, + 0.03632472828030586, + -0.027200372889637947, + 0.04786689952015877, + -0.018550941720604897, + -0.09107087552547455, + -0.01373690739274025, + 0.10402343422174454, + 0.015082534402608871, + 0.0211702361702919, + -0.016564883291721344, + 0.07420376688241959, + -0.00793704017996788, + 0.014262205921113491, + 0.008181699551641941, + -0.003903757082298398, + -0.11173740029335022, + -0.007793122436851263, + 0.0273874644190073, + -0.023501697927713394, + -0.06959841400384903, + -0.05699125677347183, + 0.052760086953639984, + -0.01902586780488491, + 0.004655724857002497, + 0.003910953179001808, + 0.05048619210720062, + 0.03203599527478218, + 0.003164381952956319, + 0.022264007478952408, + -0.059754468500614166, + 0.036583781242370605, + -0.017629871144890785, + 0.004533395171165466, + -0.007764338981360197, + -0.004893188830465078, + -0.0060157435946166515, + -0.018637292087078094, + 0.07760021835565567, + 0.05857434496283531, + -0.013456268236041069, + -0.05238590016961098, + -0.018550941720604897, + -0.013218805193901062, + 0.007706772070378065, + 0.025430189445614815, + 0.10074211657047272, + -0.03192086145281792, + -0.033503949642181396, + -0.0015597038436681032, + 0.02353048138320446, + 0.059754468500614166, + 0.04778054729104042, + 0.0005986060714349151, + 0.03252531215548515, + -0.02639443427324295, + -7.392627594526857e-05, + 0.08019072562456131, + -0.02203373983502388, + -0.03540365770459175, + -0.05414169281721115, + -0.05514911562204361, + -0.020076464861631393, + -0.011650106869637966, + -0.005598383489996195, + 0.03471285477280617, + 0.05935150012373924, + -0.11380980908870697, + -0.08399014174938202, + -0.015845296904444695, + -0.006292784586548805, + -0.02181786485016346, + 0.014183050952851772, + 0.015427935868501663, + -0.06435982137918472, + -0.06948328018188477, + 0.016967851668596268, + -0.07005894929170609, + 0.03646864742040634, + -0.05414169281721115, + -0.029934801161289215, + -0.038886457681655884, + -0.016636840999126434, + 0.0313451923429966, + -0.026279300451278687, + -0.023199470713734627, + 0.007591638248413801, + -0.04098765179514885, + -0.013139650225639343, + -0.04329032823443413, + 0.023760749027132988, + -0.08001802861690521, + 0.007814710028469563, + 0.08116936683654785, + -0.016780758276581764, + 0.03169059380888939, + 0.02010524831712246, + -0.06746843457221985, + -0.013341134414076805, + -0.03125884011387825, + 0.03738971799612045, + -0.016075564548373222, + 0.08312664180994034, + 0.05742300674319267, + -0.12561103701591492, + -0.006868453696370125, + 0.09665486961603165, + 0.05509154871106148, + -0.05845921114087105, + -0.016147522255778313, + 0.03810930252075195, + -0.05106186121702194, + -0.08784712851047516, + -0.04677312821149826, + 0.0362095944583416, + 0.0010263103758916259, + -0.020652133971452713, + 0.056041400879621506, + -0.016190698370337486, + 0.003378459019586444, + -0.03750485181808472, + -0.0003687881107907742, + -0.05106186121702194, + -0.033014632761478424, + 0.03669891506433487, + -0.013672145083546638, + -0.05106186121702194, + -0.04021049663424492, + 0.014283793047070503, + 0.0848536491394043, + 0.07806075364351273, + 0.058545563369989395, + 0.02488330379128456, + 0.04527638480067253, + 0.05900609865784645, + 0.06752600520849228, + 0.022767718881368637, + -0.03318733349442482, + -0.014211834408342838, + -0.015701379626989365, + -0.021213412284851074, + -0.05229955166578293, + -0.008858110755681992, + -0.04637015983462334, + 0.03183450922369957, + -0.005742300767451525, + -0.033647868782281876, + 0.06280551850795746, + -0.01839263178408146, + -0.049536339938640594, + -0.01809040643274784, + 0.018709249794483185, + -0.0011243539629504085, + 0.04850013554096222, + -0.010261304676532745, + 0.026869362220168114, + -0.008023390546441078, + 0.017759395763278008, + -0.02511357143521309, + -0.08306907117366791, + -0.0035799432080239058, + 0.026092208921909332, + -0.04516125097870827, + -0.07489456981420517, + 0.08928629755973816, + -0.016061171889305115, + -0.03327368199825287, + -0.00027906466857530177, + -0.0008153815288096666, + 0.04878797009587288, + 0.008253658190369606, + 0.05906366556882858, + -0.030366552993655205, + 0.03004993498325348, + -0.010635489597916603, + -0.018781209364533424, + 0.02839488536119461, + 0.09550353139638901, + -0.015370368957519531, + 0.03462650626897812, + -0.020148424431681633, + -0.06303578615188599, + -0.04055589810013771, + -0.02066652663052082, + 0.04196628928184509, + 0.0338781364262104, + -0.007534071337431669, + 0.0020220382139086723, + -0.07587320357561111, + 0.028869813308119774, + -0.013945587910711765, + 0.09648216515779495, + -0.007728359661996365, + -0.06073310598731041, + -0.00010242864664178342, + -0.01488105021417141, + 0.011880374513566494, + 0.008124132640659809, + -0.004630539566278458, + 0.02924399822950363, + 0.06038770452141762, + -0.03292828053236008, + 0.07184351980686188, + -0.006882845424115658, + -0.005843042861670256, + -0.040958866477012634, + 0.02460986003279686, + 0.020205991342663765, + -0.03192086145281792, + -0.08652308583259583, + 0.06769870221614838, + 0.04311762750148773, + 0.014111092314124107, + 0.02876907028257847, + 0.06574142724275589, + 0.015226451680064201, + 0.01796087995171547, + -0.07829102128744125, + 0.03289949893951416, + -0.06885004043579102, + 0.03586419299244881, + 0.06965597718954086, + -0.045679353177547455, + -0.005109064746648073, + -0.08997710049152374, + -0.05379629135131836, + 0.007908256724476814, + 0.0008868904551491141, + -0.024422768503427505, + 0.007591638248413801, + -0.047463931143283844, + 0.031373973935842514, + -0.06965597718954086, + -0.00579267181456089, + 0.03410840407013893, + 0.06096337363123894, + 0.02547336369752884, + 0.017327643930912018, + 0.02354487217962742, + 0.025775590911507607, + -0.07431890070438385, + -0.06913787871599197, + -0.07121028751134872, + 0.0010766814230009913, + 0.00708073191344738, + -0.004749271087348461, + -0.001937486813403666, + -0.0024375994689762592, + -0.021932998672127724, + -0.006429506000131369, + 0.04861526936292648, + 0.015830904245376587, + -0.0493636392056942, + 0.07011651247739792, + -0.014384535141289234, + 0.009246687404811382, + 0.003115809755399823, + 0.026912536472082138, + 0.011419838294386864, + -0.02718598023056984, + -0.01875242590904236, + 0.040095362812280655, + -0.0033946495968848467, + -0.018694858998060226, + 0.041822370141744614, + 0.01596043072640896, + -0.045535437762737274, + 0.05022714287042618, + -0.055695999413728714, + -0.02488330379128456, + -0.02266697585582733, + -0.013096475042402744, + 0.06338118761777878, + -0.009066790342330933, + 0.0012925573391839862, + -0.057048823684453964, + 0.05201171711087227, + -0.02060895971953869, + -0.028581978753209114, + -0.05877583101391792, + 0.06591413170099258, + -0.045247603207826614, + 0.027070846408605576, + -0.005112662445753813, + -0.01994694024324417, + 0.05808502808213234, + 0.022710151970386505, + -0.12227214872837067, + 0.04064225032925606, + -0.018565332517027855, + 0.0113047044724226, + 0.005400497000664473, + -0.008685410022735596, + 0.07161325216293335, + -0.019918156787753105, + -0.019486404955387115, + -0.03597932681441307, + 0.049680255353450775, + -0.004306725692003965, + -0.0018205540254712105, + 0.06073310598731041, + -0.05356602370738983, + 0.023285821080207825, + -0.022854069247841835, + -0.020436258986592293, + -0.01860850863158703, + 0.0556672178208828, + -0.07846371829509735, + -0.03338881582021713, + -0.019918156787753105, + 0.0679289698600769, + 0.02724354714155197, + 0.024912087246775627, + -0.0022307182662189007, + -0.009225099347531796, + -0.0288266371935606, + -0.043232761323451996, + -0.038944024592638016, + -0.008958852849900723, + 0.029646966606378555, + 0.04685947671532631, + 0.04634137451648712, + 0.0029610986821353436, + -0.030366552993655205, + 0.05871826410293579, + 0.010124582797288895, + 0.04743514582514763, + -0.0042167771607637405, + 0.01945762149989605, + 0.0033298868220299482, + -0.0043319109827280045, + -0.05005444213747978, + -0.0260346420109272, + 0.04069981724023819, + -0.0650506243109703, + -0.06942570954561234, + 0.03779268637299538, + 0.005634362809360027, + 0.059121232479810715, + -0.1282591074705124, + -0.0004067912814207375, + -0.035144608467817307, + 0.01860850863158703, + 0.07259189337491989, + 0.008383183740079403, + 0.06689276546239853, + -0.0014787503750994802, + 0.011376663111150265, + -0.010268500074744225 + ] + }, + { + "id": "7629efeb-de80-4210-963f-d8cd1a0384c2", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "josephwilkerson", + "reviewDate": "2021-03-20T19:40:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "c8cd6179-6477-411c-89ce-5ed5ebf89881", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "haleytina", + "reviewDate": "2021-01-03T23:03:46", + "stars": 3, + "verifiedUser": true + }, + { + "id": "b344018f-28ff-4ceb-b7ae-0dc18ddaf3f1", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "chelseahayes", + "reviewDate": "2022-09-10T13:13:59", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6bfb00e3-ccef-443f-9fc7-b6b56ae9e511", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "alexanderwendy", + "reviewDate": "2022-03-17T01:33:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "085ffa99-8457-4ecd-9627-eea35fe16932", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "lisa65", + "reviewDate": "2021-10-19T17:53:52", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e37a82e7-37f9-413c-a492-d3b78c9fb69b", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "tracy10", + "reviewDate": "2022-01-09T08:07:39", + "stars": 1, + "verifiedUser": true + }, + { + "id": "f0eaae4f-a9b4-451f-aa2c-f5364ad64221", + "productId": "7a5040e2-33d9-4a1f-965b-aa2b118c4d8c", + "category": "Media", + "docType": "customerRating", + "userName": "nbooker", + "reviewDate": "2022-09-16T13:37:26", + "stars": 4, + "verifiedUser": false + }, + { + "id": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "product", + "name": "Luxe TV Mini (Steel)", + "description": "This Luxe TV Mini (Steel) is one of the most expensive and luxurious sets you can buy for the price. This Luxe TV Mini looks amazing on a big display, like an iPhone 6 Plus, is so luxurious there is nothing you can do about it. It also has a nice touch screen which keeps the screen on full screen on an almost full screen. You can see a good amount of the detail for about $1000 a year (see the original Price Chart ).\n\nThere", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-11-04T17:52:53", + "price": 863.11, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-01-17T00:05:45", + "newPrice": 890.89 + }, + { + "priceDate": "2021-09-02T00:05:45", + "newPrice": 792.94 + }, + { + "priceDate": "2022-04-18T00:05:45", + "newPrice": 871.85 + }, + { + "priceDate": "2022-12-02T00:05:45", + "newPrice": 875.7 + }, + { + "priceDate": "2025-02-13T00:05:45", + "newPrice": 863.11 + } + ], + "descriptionVector": [ + -0.026447253301739693, + 0.061329036951065063, + -0.04322100803256035, + -0.00179293320979923, + 0.006707118824124336, + -0.08529835194349289, + -0.026304295286536217, + 0.013819285668432713, + -0.001950782723724842, + 0.003827108070254326, + -0.0069692088291049, + -0.027090564370155334, + 0.06166260316967964, + -0.004595507867634296, + 0.1097918376326561, + -0.039122872054576874, + 0.018000811338424683, + -0.03998062387108803, + 0.005515800788998604, + -0.014939123764634132, + 0.05456235259771347, + -0.12485009431838989, + -0.022539731115102768, + -0.032213229686021805, + -0.011686827056109905, + -0.007940132170915604, + -0.028901368379592896, + 0.02300434559583664, + 0.006802424322813749, + -0.045508336275815964, + 0.045961037278175354, + 0.035906314849853516, + -0.07348047941923141, + 0.019906919449567795, + -0.033285416662693024, + -0.024946192279458046, + 0.05723090469837189, + 0.015784960240125656, + 0.06228208914399147, + 0.0548006147146225, + 0.017857853323221207, + 0.023659570142626762, + -0.0320226214826107, + -0.02578011527657509, + 0.01825098693370819, + -0.06828632950782776, + -0.031141044571995735, + 0.011073297820985317, + -0.0012553510023280978, + -0.06323514133691788, + -0.057755082845687866, + -0.018096115440130234, + -0.08110491186380386, + 0.03295184671878815, + -0.06618960946798325, + -0.012294398620724678, + 0.01231822557747364, + 0.10883878916501999, + 0.0038062601815909147, + -0.0146412942558527, + 0.02868693135678768, + -0.0597088448703289, + 0.002652171067893505, + -0.016106614843010902, + 0.00103272357955575, + -0.038598693907260895, + -0.009268451482057571, + 0.00757082412019372, + -0.04729531332850456, + 0.08296336233615875, + -0.023862093687057495, + 0.019096823409199715, + 0.0704307034611702, + 0.02706673927605152, + 0.04531772434711456, + 0.003127208910882473, + 0.0007736119441688061, + 0.006653509568423033, + 0.023302175104618073, + -0.0043453313410282135, + 0.05570601671934128, + -0.004479354713112116, + -0.0030095663387328386, + -0.0048218583688139915, + 0.03407168760895729, + 0.05170318856835365, + -0.0020565122831612825, + -0.08124786615371704, + -0.06204382702708244, + 0.05194145068526268, + 0.002766835503280163, + 0.12170501798391342, + 0.044269368052482605, + -0.009000405669212341, + 0.05070248246192932, + 0.03838425502181053, + -0.03209409862756729, + 0.03271358460187912, + -0.02766239643096924, + -0.014867644757032394, + 0.08434529602527618, + 0.03319011256098747, + 0.024564972147345543, + -0.04889167845249176, + -0.010013025254011154, + 0.036716412752866745, + 0.03588248789310455, + 0.022897126153111458, + 0.039956796914339066, + -0.18651270866394043, + 0.0757201537489891, + 0.002948511391878128, + -0.04989238455891609, + -0.016738014295697212, + -0.006480768322944641, + 0.04734296724200249, + -0.015284606255590916, + -0.04898698255419731, + 0.02561333030462265, + -0.02436244674026966, + 0.008857447654008865, + 0.0026700408197939396, + -0.037788599729537964, + -0.010001111775636673, + -0.025684809312224388, + 0.02209894359111786, + 0.016785666346549988, + 0.024684103205800056, + 0.011436649598181248, + -0.038693998008966446, + -0.04090984910726547, + 0.05375225469470024, + 0.025041498243808746, + 0.040576282888650894, + -0.053085118532180786, + 0.04889167845249176, + 0.004607421346008778, + -0.02435053326189518, + -0.0026923781260848045, + -0.019001517444849014, + -0.03862252086400986, + -0.015677740797400475, + -0.011895307339727879, + 0.02561333030462265, + -0.05699263885617256, + -0.029639985412359238, + -0.004017719067633152, + 0.028424840420484543, + -0.062234438955783844, + 0.04600869119167328, + 0.05618254467844963, + -0.09559133648872375, + -0.03340454772114754, + -0.00809500366449356, + 0.020657449960708618, + 0.09120728075504303, + -0.061519645154476166, + -0.003654367057606578, + -0.03476265072822571, + 0.025208283215761185, + 0.03900374099612236, + -0.04400727525353432, + -0.04629460722208023, + -0.09063544869422913, + 0.0031659267842769623, + -0.009649673476815224, + 0.06337810307741165, + -0.009572237730026245, + -0.12018013000488281, + 0.011996569111943245, + 0.039766184985637665, + -0.02336174063384533, + -0.03685937076807022, + -0.03793155774474144, + 0.010459769517183304, + 0.00676072807982564, + 0.08429764211177826, + 0.005917870905250311, + -0.011520042084157467, + -0.03299950063228607, + -0.008654923178255558, + 0.04581807926297188, + -0.03919435292482376, + -0.0627109631896019, + -0.007552954368293285, + 0.04808158427476883, + 0.034190818667411804, + -0.008410703390836716, + -0.025089150294661522, + 0.026709342375397682, + -0.002153306733816862, + 0.0589464008808136, + -0.010233419016003609, + -0.02659021131694317, + -0.027900660410523415, + -0.10531248897314072, + 0.05870813876390457, + 0.01262796763330698, + -0.04395962506532669, + 0.00505714351311326, + -0.0032612322829663754, + 0.030068859457969666, + 0.05003534257411957, + 0.027995966374874115, + -0.024874713271856308, + -0.0911596342921257, + 0.03704998269677162, + -0.01100777555257082, + 0.0630921870470047, + 0.04424554109573364, + -0.08177204430103302, + -0.036978501826524734, + -0.0013960754731670022, + 0.05375225469470024, + 0.009876023977994919, + 0.032403841614723206, + 0.04267299920320511, + -0.002029707655310631, + -0.009018274955451488, + -0.10931531339883804, + 0.06256800889968872, + -0.06847694516181946, + 0.002859162399545312, + -0.013628674671053886, + -0.057040292769670486, + -0.033738117665052414, + 0.041124287992715836, + 0.07128845155239105, + 0.05394286662340164, + -0.0012345029972493649, + -0.038408081978559494, + -0.07247976958751678, + -0.0659036934375763, + 0.051179010421037674, + 0.04052862897515297, + -0.036811716854572296, + 0.00595361040905118, + -0.03852721303701401, + -0.016035135835409164, + -0.007934176363050938, + -0.022873299196362495, + -0.06085250899195671, + 0.00691559910774231, + -0.02238485962152481, + 0.00570343341678381, + -0.004172590095549822, + 0.07085958123207092, + -0.048558108508586884, + 0.016321051865816116, + 0.008142656646668911, + -0.03309480473399162, + -0.11922707408666611, + -0.04450763016939163, + 0.06375932693481445, + -0.025494199246168137, + 0.019740134477615356, + 0.03397637978196144, + 0.034834131598472595, + 0.11522424966096878, + -0.0292825885117054, + -0.03407168760895729, + -0.049558818340301514, + -0.0027698136400431395, + -0.018620295450091362, + -0.0139384176582098, + 0.09368522465229034, + 0.015284606255590916, + -0.15315580368041992, + 0.02454114519059658, + 0.0035501266829669476, + -0.03209409862756729, + -0.029187284409999847, + 0.07033539563417435, + 0.029139630496501923, + -0.05689733475446701, + -0.00575406476855278, + -0.06566543132066727, + -0.019799700006842613, + -0.05861283093690872, + -0.017655327916145325, + 0.07362343370914459, + -0.025899246335029602, + 0.01617809385061264, + -0.017238367348909378, + 0.08992066234350204, + -0.03883695602416992, + 0.016606969758868217, + -0.019728220999240875, + 0.04098132997751236, + -0.039051394909620285, + -0.018560729920864105, + 0.020240487530827522, + 0.10607492923736572, + -0.005331146996468306, + 0.022420600056648254, + 0.04250621423125267, + -0.016118528321385384, + 0.0157253947108984, + 0.009244625456631184, + -0.017202626913785934, + -0.04805775731801987, + 0.02651873230934143, + -0.008237961679697037, + -0.0413387231528759, + -0.0555630587041378, + 0.03254679962992668, + 0.006891773082315922, + 0.06657083332538605, + 0.0009366735466755927, + -0.012890057638287544, + 0.046056341379880905, + -0.009667543694376945, + -0.06261565536260605, + -0.0073683001101017, + 0.006587986834347248, + -0.025899246335029602, + 0.010001111775636673, + 0.019478045403957367, + 0.038241297006607056, + 0.043983448296785355, + 0.037264417856931686, + 0.007380213122814894, + -0.07648259401321411, + 0.0666661411523819, + 0.044817373156547546, + -0.04748592525720596, + -0.05408582463860512, + -0.05832691490650177, + -0.00813074316829443, + 0.007987785153090954, + -0.0429350920021534, + 0.014986776746809483, + -0.0030944477766752243, + 0.016321051865816116, + 0.06690440326929092, + 0.010144070722162724, + 0.0275909174233675, + -0.030330948531627655, + 0.003171883523464203, + 0.033571332693099976, + 0.06204382702708244, + 0.0034369516652077436, + -0.01262796763330698, + -0.029592331498861313, + -0.04009975492954254, + -0.05608723685145378, + -0.07033539563417435, + 0.04334013909101486, + 0.051989104598760605, + 0.07538658380508423, + 0.0015636044554412365, + -0.04253004118800163, + 0.0512266606092453, + 0.010310854762792587, + 0.03664493188261986, + 0.03197496756911278, + 0.00975689198821783, + -0.06156729906797409, + -0.017810199409723282, + 0.030855128541588783, + 0.00782100111246109, + -0.0012322692200541496, + 0.04367370903491974, + 0.06733327358961105, + -0.09158850461244583, + 0.019108736887574196, + -0.017679154872894287, + 0.00858344417065382, + -0.06180556118488312, + 0.06938234716653824, + 0.08420233428478241, + -0.07638729363679886, + -0.051989104598760605, + 0.04658052325248718, + 0.031689051538705826, + 0.04932055249810219, + 0.06371167302131653, + 0.004714639857411385, + -0.038431908935308456, + 0.012294398620724678, + -0.09034953266382217, + 1.743930988595821e-05, + 0.07414761185646057, + 0.04036184400320053, + 0.024422012269496918, + 0.007618476636707783, + -0.10197679698467255, + -0.025684809312224388, + -0.09011127054691315, + 0.00943523645401001, + -0.023838266730308533, + -0.0702400952577591, + 0.01763150282204151, + 0.04789097234606743, + 0.04374518617987633, + -0.02804361842572689, + -0.02659021131694317, + 0.011114994063973427, + 0.04922524839639664, + -0.04898698255419731, + 0.02894902043044567, + 0.06352105736732483, + 0.021955985575914383, + -0.031498439610004425, + -0.03359515964984894, + -0.008035438135266304, + 0.01644018478691578, + 0.012735186144709587, + 0.019930744543671608, + -0.03128400444984436, + -0.03945644199848175, + -0.04305422306060791, + -0.09630612283945084, + 0.002211383543908596, + 0.0027355633210390806, + 0.009054014459252357, + 0.03235618770122528, + -0.03771711885929108, + 0.05156023055315018, + -0.011186473071575165, + 0.05799334496259689, + 0.03409551456570625, + -0.035811010748147964, + -0.043459270149469376, + -0.03740737587213516, + 0.010322768241167068, + -0.007034731097519398, + 0.0036037361714988947, + 0.00206693634390831, + -0.06337810307741165, + 0.07095488160848618, + -0.05408582463860512, + -0.038074515759944916, + 0.005173297133296728, + 0.021860679611563683, + -0.013819285668432713, + -0.013354671187698841, + 0.012199093587696552, + 0.006826250348240137, + -0.014260073192417622, + -0.005369864404201508, + -0.011162647046148777, + 0.006683292333036661, + 0.09449531883001328, + -0.0911596342921257, + -0.013449977152049541, + -0.03533448278903961, + 0.006001262925565243, + -0.0005558241973631084, + -0.011132864281535149, + -0.03056921251118183, + -0.06323514133691788, + -0.0009813479846343398, + -0.020383445546030998, + 0.04198203608393669, + -0.014140941202640533, + -0.009286321699619293, + 0.0014682990731671453, + -0.001192806870676577, + 0.020871886983513832, + 0.03109339252114296, + 0.10464534908533096, + -0.017953157424926758, + -2.7107131245429628e-05, + -0.07333751767873764, + -0.007046644110232592, + -0.03952792286872864, + 0.023564264178276062, + -0.0006857522530481219, + 0.05032125860452652, + -0.020454924553632736, + -0.04257769510149956, + -0.11560547351837158, + 0.016047049313783646, + -0.031164871528744698, + -0.049129944294691086, + 0.04283978417515755, + -0.05094074457883835, + 0.00494099035859108, + -0.05060717463493347, + 0.06094781309366226, + 0.0711931437253952, + 0.035787183791399, + 0.09697326272726059, + 0.0711931437253952, + 0.008803837932646275, + 0.056754376739263535, + 0.036978501826524734, + -0.011144776828587055, + 0.009298235177993774, + -0.07224150747060776, + 0.01887047290802002, + -0.0340002067387104, + -0.04009975492954254, + 0.00615315604954958, + 0.006266331300139427, + -0.017417065799236298, + -0.0006425669998861849, + -0.050464216619729996, + 0.01023937575519085, + 0.013295105658471584, + 0.020967191085219383, + -0.04772418737411499, + 0.031164871528744698, + 0.0003754512290470302, + -0.0032910152804106474, + 0.01653549075126648, + -0.0029634027741849422, + 0.010120243765413761, + -0.004226199816912413, + 0.07238446176052094, + -0.0021577742882072926 + ] + }, + { + "id": "0d053810-3bf2-47b8-9af3-2cd2e84604b0", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "ashleyhays", + "reviewDate": "2022-06-20T01:11:59", + "stars": 1, + "verifiedUser": true + }, + { + "id": "37cfd77a-d5fe-4e90-b210-08b81d673fdc", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "sarcher", + "reviewDate": "2022-05-01T08:29:31", + "stars": 1, + "verifiedUser": false + }, + { + "id": "7251ddf2-8f90-4328-acd3-51defdd05ea0", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "travis78", + "reviewDate": "2022-07-10T02:19:33", + "stars": 4, + "verifiedUser": true + }, + { + "id": "79f00e74-4908-4272-8798-44c762b571ca", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "brownstephanie", + "reviewDate": "2022-08-13T05:49:57", + "stars": 2, + "verifiedUser": true + }, + { + "id": "28a351fa-ab1b-4b62-b70d-713d778a864d", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "lwilson", + "reviewDate": "2022-08-05T23:14:36", + "stars": 3, + "verifiedUser": false + }, + { + "id": "02d0bcfc-5217-4661-be8e-715df83f8185", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "huntzachary", + "reviewDate": "2022-12-03T13:56:45", + "stars": 1, + "verifiedUser": false + }, + { + "id": "a0d81963-2138-4a16-97d7-4096a62b9b25", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "soliver", + "reviewDate": "2021-03-06T17:57:22", + "stars": 2, + "verifiedUser": false + }, + { + "id": "cda791bc-bee0-42e1-8ce0-b656b56f6db1", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "reedisaac", + "reviewDate": "2022-05-18T16:54:06", + "stars": 4, + "verifiedUser": true + }, + { + "id": "1a2c90fb-7b9f-4c6c-8d6d-ad27f32e72db", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "danielsantos", + "reviewDate": "2021-01-17T00:05:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ddfac4e5-643c-4394-8b2a-62d0b4c8caab", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "kirkcindy", + "reviewDate": "2022-04-20T09:20:08", + "stars": 3, + "verifiedUser": true + }, + { + "id": "a684fa2a-6d8e-409f-a07d-bf624bf06bbd", + "productId": "6bd70745-0b01-44d6-ba52-f0b430ac1c9e", + "category": "Media", + "docType": "customerRating", + "userName": "pthomas", + "reviewDate": "2022-10-20T22:44:12", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "product", + "name": "Amazing Computer Pro (Steel)", + "description": "This Amazing Computer Pro (Steel) is back!\n\n\n(Photo Credit: Gizd News)\n\nIf you were wondering why Gizd News is reporting on the Gizd Supercomputer today. Why was it featured in The Washington Post? Because that's about the only thing I can think of in this story that would have prevented the headline. It's been 12 weeks, and", + "countryOfOrigin": "India", + "rareItem": false, + "firstAvailable": "2019-09-08T19:13:35", + "price": 534.25, + "stock": 50, + "priceHistory": [ + { + "priceDate": "2021-01-06T00:42:56", + "newPrice": 493.3 + }, + { + "priceDate": "2024-05-13T00:42:56", + "newPrice": 534.25 + } + ], + "descriptionVector": [ + 0.07440989464521408, + 0.016835758462548256, + -0.05252637714147568, + -0.00904142577201128, + 0.04798339679837227, + -0.018780630081892014, + 0.04792401194572449, + 0.047270771116018295, + 0.10950665920972824, + 0.13836796581745148, + 0.08290200680494308, + -0.04409365355968475, + 0.09810466319322586, + -0.04685507342219353, + -0.02785174921154976, + 0.035364001989364624, + -0.07488498091697693, + -0.025149712339043617, + -0.005248183850198984, + -0.07345972955226898, + 0.04792401194572449, + -0.03251350298523903, + -0.05594103783369064, + -0.0077275242656469345, + 0.00591626949608326, + 0.03809572756290436, + 0.0021137488074600697, + -0.003106598276644945, + 0.0034165158867836, + -0.026203803718090057, + 0.0762508437037468, + 0.052407607436180115, + 0.014979965053498745, + -0.04762708395719528, + 0.05053696781396866, + -0.029217611998319626, + -0.009434853680431843, + 0.05585196241736412, + 0.05953385308384895, + 0.005381801165640354, + 0.04450935125350952, + -0.015648050233721733, + 0.02785174921154976, + 0.014378688298165798, + 0.02890583872795105, + -0.026203803718090057, + -0.003919435665011406, + -0.02522394433617592, + 0.0030973192770034075, + 0.026010802015662193, + -0.00852922722697258, + -0.03765033930540085, + -0.009227004833519459, + 0.05617858096957207, + -0.00010809997183969244, + -0.09299752116203308, + 0.03295889124274254, + -0.06633348017930984, + -0.001338027068413794, + -0.08563373237848282, + 0.0032402153592556715, + 0.009145350195467472, + 0.03765033930540085, + -0.005860595963895321, + 0.02635226771235466, + -0.008803884498775005, + -0.04391549527645111, + 0.05044788867235184, + 0.057158440351486206, + 0.026248343288898468, + -0.05478302389383316, + -0.03756126016378403, + 0.028564373031258583, + 0.045756444334983826, + 0.03616570308804512, + -0.059088464826345444, + 0.07144062221050262, + -0.009694664739072323, + -0.03672986477613449, + -0.04079776257276535, + 0.05436732620000839, + 0.06193896383047104, + 0.000743709213566035, + -0.05947446823120117, + 0.049943115562200546, + -0.015054197050631046, + 0.0014577257679775357, + -0.1496511846780777, + -0.014638499356806278, + 0.09958930313587189, + -0.005281588062644005, + 0.048903871327638626, + 0.02434801124036312, + -0.0768446996808052, + -0.007905680686235428, + 0.03987729176878929, + -0.05436732620000839, + 0.02837137132883072, + 0.02117089182138443, + -0.024481628090143204, + 0.020265264436602592, + -0.07458805292844772, + -0.006254023872315884, + -0.015247199684381485, + 0.030850710347294807, + -0.007712677586823702, + -0.023427536711096764, + -0.015187813900411129, + 0.0024477916304022074, + 0.09834221005439758, + -0.014237647876143456, + -0.018186775967478752, + -0.0900876373052597, + -0.011075375601649284, + -0.0611075684428215, + 0.03141487017273903, + -0.018825169652700424, + -0.010778448544442654, + -0.00048250629333779216, + 0.02632257528603077, + 0.04201516509056091, + 0.054426711052656174, + 0.019300252199172974, + 0.05314992368221283, + -0.06098879873752594, + 0.006202061660587788, + 0.013517599552869797, + -0.035928159952163696, + 0.003533430863171816, + -0.03191964700818062, + -0.12637211382389069, + 0.0774979367852211, + 0.043618571013212204, + -0.023516615852713585, + -0.011498495936393738, + -0.005251895636320114, + 0.07007475942373276, + 0.09994561225175858, + -0.032186880707740784, + 0.012968285009264946, + 0.03453260660171509, + -0.011394571512937546, + -0.021972594782710075, + -0.03815511241555214, + -0.11241654306650162, + 0.029276998713612556, + -0.05219975858926773, + 0.027228202670812607, + -0.010681947693228722, + 0.04246055334806442, + -0.0423714779317379, + 0.026975814253091812, + -0.017266303300857544, + -0.057039666920900345, + 0.05317961797118187, + -0.004903006367385387, + -0.04376703500747681, + -0.034265369176864624, + -0.07132185250520706, + 0.06793688982725143, + -0.03821450099349022, + -0.10356812179088593, + -0.04038206487894058, + -0.02471916936337948, + -0.00644331518560648, + -0.0013723592273890972, + 0.13634885847568512, + 0.011431687511503696, + -0.07613207399845123, + -0.002418098971247673, + 0.037947263568639755, + 0.002831940772011876, + -0.017221763730049133, + -0.05332808196544647, + 0.06942152231931686, + 0.048369400203228, + 0.055079951882362366, + 0.037976957857608795, + -0.06502700597047806, + -0.010117786005139351, + -0.02990054525434971, + 0.01644975319504738, + -0.0021898362319916487, + -0.02066611684858799, + 0.046825382858514786, + 0.050982359796762466, + 0.035898469388484955, + 0.05018065497279167, + -0.009672395884990692, + -0.0002897357626352459, + 0.041005611419677734, + -0.09958930313587189, + 0.05677243322134018, + -0.08319893479347229, + 0.032305654138326645, + 0.008536649867892265, + 0.05629735067486763, + 0.018468856811523438, + -0.0639580637216568, + -0.03649232164025307, + 0.02995993010699749, + 0.05843522399663925, + 0.046172142028808594, + -0.001338027068413794, + 0.02886130101978779, + 0.018988478928804398, + 0.00926412083208561, + -0.006235465873032808, + 0.03723464161157608, + -0.018409471958875656, + -0.002885758876800537, + 0.0020989023614674807, + -0.05718813091516495, + -0.04655814543366432, + 0.03346366807818413, + -0.000792423787061125, + 0.03714556246995926, + 0.003949128556996584, + 0.0128792067989707, + -0.029722388833761215, + 0.030791325494647026, + -0.0136660635471344, + 0.03625478222966194, + -0.002496042288839817, + -0.051368363201618195, + -0.03376059606671333, + 0.05383285880088806, + -0.03138517960906029, + -0.0019708527252078056, + 0.0009413512307219207, + -0.1326669603586197, + -0.0455189011991024, + 0.05169498175382614, + 0.030821017920970917, + -0.008351070806384087, + 0.034888915717601776, + 0.011587574146687984, + 0.02382838912308216, + -0.09246305376291275, + -0.004487308673560619, + 0.023353304713964462, + -0.016657602041959763, + -0.07791363447904587, + -0.08830607682466507, + -0.013005401007831097, + -0.006335678976029158, + -0.005159106105566025, + -0.022863375023007393, + -0.07809179276227951, + 0.034384142607450485, + 0.013257788494229317, + -0.03453260660171509, + -0.003212378593161702, + 0.015365970320999622, + 0.054011013358831406, + 0.011557881720364094, + 0.018216468393802643, + -0.042579326778650284, + 0.0066957026720047, + 0.005515418015420437, + -0.026530424132943153, + -0.027658745646476746, + -0.015306584537029266, + 0.024600397795438766, + 0.0037616933695971966, + 0.01809769868850708, + -0.0008448499720543623, + 0.04542982578277588, + -0.014898310415446758, + 0.045281361788511276, + 0.016420060768723488, + -0.019790181890130043, + 0.060187093913555145, + -0.04373734071850777, + -0.05888061597943306, + -0.048814792186021805, + -0.01855793409049511, + 0.1115257665514946, + 0.014601383358240128, + 0.012367007322609425, + 0.10612169653177261, + 0.008469841443002224, + 0.031117945909500122, + -0.03961005434393883, + 0.049289874732494354, + 0.020487960427999496, + 0.008068989962339401, + 0.00621690833941102, + 0.04293563961982727, + -0.052942074835300446, + -0.055050257593393326, + 0.027599360793828964, + 0.03572031110525131, + 0.04911172017455101, + -0.033226124942302704, + -0.01161726750433445, + 0.06562085449695587, + 0.024362856522202492, + -0.02789628691971302, + -0.05157621204853058, + 0.037976957857608795, + 0.030331088230013847, + -0.025045787915587425, + 0.03150394931435585, + -0.015855899080634117, + 0.043588876724243164, + 0.03961005434393883, + 0.011995849199593067, + -0.0283565241843462, + -0.06377991288900375, + 0.03506707400083542, + 0.02115604653954506, + -0.0029692696407437325, + 0.030138086527585983, + -0.008625728078186512, + 0.010815564543008804, + 0.05748505890369415, + -0.026218650862574577, + -0.05015096440911293, + -0.08438663929700851, + 0.05683181807398796, + -0.03355274721980095, + -0.06401745229959488, + 0.06568024307489395, + 0.003362697781994939, + -0.007950219325721264, + -0.013294904492795467, + 0.05894000083208084, + 0.009872821159660816, + -0.02385808154940605, + 0.010711640119552612, + -0.029677849262952805, + 0.016137979924678802, + 0.00040966641972772777, + 0.0201613400131464, + -0.10012377053499222, + -0.043143488466739655, + 0.0699559897184372, + -0.009501663036644459, + 0.054011013358831406, + 0.03052409179508686, + -0.0020339495968073606, + -0.007044591940939426, + 0.031711798161268234, + -0.020963042974472046, + -0.009375468827784061, + 0.05101205036044121, + 0.0017592922085896134, + -0.0273321270942688, + -0.0815955251455307, + 0.002067354042083025, + -0.016271596774458885, + 0.06841196864843369, + -0.03509676456451416, + 0.07019352912902832, + -0.028208060190081596, + -0.05205129459500313, + -0.056564584374427795, + 0.02226952090859413, + 0.00852922722697258, + 0.02788144163787365, + -0.06045432761311531, + 0.03471076115965843, + 0.11366363614797592, + 0.014556843787431717, + 0.017978927120566368, + -0.0012433816445991397, + 0.0024366567377001047, + -0.020770041272044182, + 0.042163629084825516, + 0.024051083251833916, + 0.022833682596683502, + -0.07910133898258209, + 0.017281148582696915, + 0.042133934795856476, + -0.025431793183088303, + 0.024169854819774628, + 0.028742529451847076, + -0.023501768708229065, + 0.024912171065807343, + 0.020562192425131798, + 0.0639580637216568, + 0.09341321885585785, + 0.03468106687068939, + 0.03990698233246803, + -0.029663002118468285, + 0.041064996272325516, + -0.04219331964850426, + 0.002041372936218977, + 0.0963824912905693, + -0.03260257840156555, + -0.027599360793828964, + -0.04385611042380333, + 0.05009157583117485, + 0.05683181807398796, + -0.04845847934484482, + -0.02486763335764408, + 0.033285513520240784, + 0.04542982578277588, + 0.014104030095040798, + 0.006294851657003164, + 0.0579601414501667, + 0.05692089721560478, + -0.05991986021399498, + -0.030702248215675354, + -0.017682000994682312, + -0.010681947693228722, + -0.06870889663696289, + -0.03373090177774429, + -0.04329194873571396, + -0.030880402773618698, + 0.0072821336798369884, + 0.022596141323447227, + -0.016716986894607544, + 0.029573924839496613, + 0.04635029658675194, + 0.03361213207244873, + 0.05573318898677826, + 0.05564410984516144, + -0.035334307700395584, + 0.004606079310178757, + 0.07072800397872925, + 0.0026092457119375467, + 0.015677742660045624, + -0.0054263402707874775, + -0.035809390246868134, + 0.02321968786418438, + 0.0003106134245172143, + -0.05989016592502594, + -0.05742567405104637, + -0.01652398519217968, + -0.021378740668296814, + 0.02074034884572029, + 0.029722388833761215, + 0.0007752577075734735, + -0.006161234341561794, + 0.029529385268688202, + 0.006105560343712568, + -0.004361114464700222, + 0.050299424678087234, + -0.032216574996709824, + 0.041064996272325516, + 0.010021285153925419, + -0.02690158225595951, + -0.07821056246757507, + 0.02483793906867504, + -0.06372052431106567, + -0.0025665622670203447, + -0.022492216899991035, + -0.07179693877696991, + -0.1345672905445099, + -0.020829426124691963, + -0.03705648332834244, + 0.043202873319387436, + -0.01803831197321415, + -0.010459251701831818, + -0.07179693877696991, + 0.009420007467269897, + -0.02382838912308216, + -0.039966367185115814, + 0.02280399017035961, + 0.010904642753303051, + -0.004175535403192043, + -0.08420848846435547, + -0.05977139621973038, + 0.0035000264178961515, + -0.019404176622629166, + -0.08296139538288116, + 0.03361213207244873, + 0.04958680272102356, + 0.002781834453344345, + -0.006651164032518864, + -0.029841158539056778, + 0.07927949726581573, + -0.030821017920970917, + -0.055465955287218094, + 0.0017741385381668806, + 0.029276998713612556, + 0.002494186395779252, + 0.015455048531293869, + -0.023635385558009148, + 0.035364001989364624, + -0.038956817239522934, + -0.03889743238687515, + -0.03370121121406555, + -0.004439057782292366, + -0.04023360088467598, + -0.09786712378263474, + -0.026500731706619263, + 0.0734003409743309, + -0.013755140826106071, + 0.06954029202461243, + -0.025179406628012657, + -0.03946159407496452, + 0.0025313023943454027, + 0.02485278621315956, + -0.04548921063542366, + 0.001026253798045218, + 0.003145569935441017, + -0.001456797937862575, + -0.011416841298341751, + -0.04349979758262634, + -0.05540657043457031, + -0.0019244578434154391, + 0.009397738613188267, + 0.0036522014997899532, + 0.0907408744096756, + 0.0652051568031311, + -0.044717200100421906, + -0.02892068587243557, + 0.013517599552869797, + -0.018943939357995987 + ] + }, + { + "id": "5e754627-d69d-45bf-9788-a87033034aac", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "qstewart", + "reviewDate": "2021-03-15T06:39:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "96ff5f7f-d7e0-452a-ae22-7fc856a99900", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "ewingkevin", + "reviewDate": "2022-06-19T08:06:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "baa26fd1-d272-4624-bb4a-ded3605cb320", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "mhall", + "reviewDate": "2022-05-08T09:14:19", + "stars": 1, + "verifiedUser": true + }, + { + "id": "06fb6bb5-ded8-469c-b268-e1f7dd4158f3", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "brownjulie", + "reviewDate": "2021-01-06T00:42:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ff696e21-734c-4fd2-a785-d8f51490d5e5", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "coleerika", + "reviewDate": "2022-05-07T01:31:17", + "stars": 1, + "verifiedUser": false + }, + { + "id": "490ee3ec-0283-4e60-acb9-1f2ed84f7a8b", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "lynchashley", + "reviewDate": "2021-07-04T22:50:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2b1cc8c4-c2b3-4019-b6e0-6a7cf474bea9", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "baldwinjonathan", + "reviewDate": "2022-03-26T00:59:53", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fa3225a9-0dee-401e-a30d-1b834d2b96b0", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "xwagner", + "reviewDate": "2021-02-17T21:57:30", + "stars": 1, + "verifiedUser": false + }, + { + "id": "00e0cf2b-df84-4110-b21a-4f687ac555b6", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "lloydlisa", + "reviewDate": "2022-01-18T05:39:57", + "stars": 4, + "verifiedUser": true + }, + { + "id": "f0e47a83-2212-4c55-8877-ecf43e50a433", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "justinwright", + "reviewDate": "2021-02-22T05:14:00", + "stars": 2, + "verifiedUser": false + }, + { + "id": "72799019-12b2-4802-81ad-d32b42271b92", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "cruzcharles", + "reviewDate": "2021-11-01T10:24:48", + "stars": 4, + "verifiedUser": true + }, + { + "id": "fc97a8cf-fa47-4035-b082-b0f1d882d340", + "productId": "b3261253-ae81-4e33-8dcc-ab51c56cb009", + "category": "Electronics", + "docType": "customerRating", + "userName": "bishopkevin", + "reviewDate": "2022-06-21T12:14:36", + "stars": 1, + "verifiedUser": false + }, + { + "id": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Pro (Gold)", + "description": "This Basic Keyboard Pro (Gold) is an important computer that people need to make some of their own when not using the system. With one piece of hardware you can keep your hand free, and with 2 pieces of hardware you can't control your hands.\n\nThe keyboard has been designed with the goal of being as close to", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2019-07-17T08:09:09", + "price": 540.65, + "stock": 51, + "priceHistory": [ + { + "priceDate": "2021-01-08T20:42:13", + "newPrice": 563.82 + }, + { + "priceDate": "2023-06-28T20:42:13", + "newPrice": 540.65 + } + ], + "descriptionVector": [ + 0.006473343353718519, + -0.02001027576625347, + -0.006044367328286171, + -0.03723381832242012, + 0.04218800738453865, + -0.005844393745064735, + -0.01580437645316124, + 0.004312336910516024, + -0.028151141479611397, + 0.05351554974913597, + 0.05387679487466812, + -0.02856398932635784, + 0.06063719838857651, + -0.12117118388414383, + 0.06151450052857399, + 0.010205111466348171, + -0.015275413170456886, + 0.015185101889073849, + -0.02162296697497368, + 0.025957880541682243, + 0.04076883941888809, + -0.0858209878206253, + -0.08489207178354263, + -0.016101110726594925, + -0.03026699274778366, + 0.009411666542291641, + -0.016784891486167908, + 0.020977890118956566, + 0.010772778652608395, + 0.03336336091160774, + 0.019894160330295563, + 0.024654826149344444, + -0.059243831783533096, + -0.005841168109327555, + -0.05227700248360634, + 0.002272282261401415, + -0.08148606866598129, + -0.023854931816458702, + -0.036150090396404266, + 0.005031597334891558, + 0.04685836285352707, + 0.01612691394984722, + -0.038601379841566086, + -0.021261723712086678, + 0.04345235601067543, + 0.05227700248360634, + 0.002480319468304515, + -0.03532439097762108, + -0.021519754081964493, + 0.0019997372291982174, + 0.13046027719974518, + 0.004563916474580765, + -0.020823070779442787, + 0.0019078139448538423, + 0.030241189524531364, + -0.0034834134858101606, + 0.006508822552859783, + 0.0362791046500206, + 0.10992104560136795, + -0.07978306710720062, + 0.04223961383104324, + -0.033492375165224075, + -0.07689312845468521, + -0.03671775758266449, + -0.0075990017503499985, + -0.03359558805823326, + -0.08752398937940598, + -0.026473941281437874, + 0.012585443444550037, + 0.06760402023792267, + -0.03488574177026749, + -0.035711437463760376, + 0.026525547727942467, + 0.07606742531061172, + -0.00801830179989338, + -0.02915745973587036, + 0.08478886634111404, + 0.04425225034356117, + 0.1103338971734047, + 0.050315972417593, + -0.00454456452280283, + -0.014914169907569885, + -0.0015159299364313483, + -0.035272784531116486, + 0.02887362614274025, + -0.008166668936610222, + 0.06404320150613785, + -0.06105004623532295, + -0.08055716007947922, + 0.05127068608999252, + -0.10868249833583832, + 0.08076358586549759, + -0.025570834055542946, + -0.04432966187596321, + 0.05521855503320694, + 0.029338082298636436, + -0.09939339756965637, + 0.021455246955156326, + -0.037259623408317566, + -0.010037391446530819, + -0.009256849065423012, + -0.059243831783533096, + -0.07281624525785446, + 0.02431938610970974, + -0.03968511149287224, + 0.014746449887752533, + 0.1347952038049698, + 0.03018958307802677, + 0.027789898216724396, + -0.046677738428115845, + -0.004360717721283436, + 0.033414967358112335, + 0.03395682945847511, + 0.02630622126162052, + -0.05816010385751724, + -0.01002448983490467, + -0.029415491968393326, + 0.005199316889047623, + 0.03782729059457779, + 0.011766196228563786, + 0.048303332179784775, + 0.0792153999209404, + -0.008282783441245556, + 0.0019287789473310113, + -0.04425225034356117, + 0.007927990518510342, + -0.03754345700144768, + -0.015739867463707924, + 0.007457084953784943, + -0.00013738115376327187, + -0.08948501944541931, + 0.04009795933961868, + 0.017171937972307205, + 0.058005284518003464, + -0.010527649894356728, + 0.05279306694865227, + 0.03751765191555023, + 0.10641182959079742, + -0.04838074371218681, + 0.10579255223274231, + 0.03805951774120331, + -0.020061880350112915, + -0.035350196063518524, + -0.0030705644749104977, + -0.049593485891819, + 0.001054700231179595, + -0.029105855152010918, + 0.08256980031728745, + 0.0214681476354599, + 0.05609585717320442, + -0.030525023117661476, + -0.11755875498056412, + -0.04714219644665718, + -0.06889417767524719, + 0.0303444005548954, + -4.480258212424815e-05, + 0.0010111575247719884, + 0.005025146529078484, + 0.0033382712863385677, + 0.06837811321020126, + -0.04076883941888809, + -0.013075701892375946, + -0.006550752557814121, + 0.02150685340166092, + -0.0032721508760005236, + 0.02206161804497242, + 0.05712797865271568, + 0.02967352233827114, + -0.03473092243075371, + 0.026680367067456245, + -0.06724277883768082, + 0.03196999430656433, + -0.005492826923727989, + -0.02701580710709095, + 0.02194550447165966, + -0.019236182793974876, + 0.033492375165224075, + 0.016114013269543648, + 0.033414967358112335, + -0.053257521241903305, + -0.005692800506949425, + 0.010243815369904041, + -0.06466247141361237, + 0.00812151376157999, + 0.10016749054193497, + 0.03488574177026749, + 0.033931028097867966, + 0.050315972417593, + 0.027222231030464172, + -0.023893635720014572, + 0.019855456426739693, + -0.036175891757011414, + -0.03524698317050934, + -0.035195376724004745, + 0.059243831783533096, + -0.0008313424186781049, + -0.04063982143998146, + 0.015791473910212517, + 0.0006487051141448319, + -0.0021997110452502966, + -0.0075990017503499985, + 0.08855611085891724, + 0.05454767495393753, + -0.03547921031713486, + 0.015352821908891201, + 0.015262511558830738, + -0.02062954753637314, + -0.005205767694860697, + 0.028176944702863693, + 0.05418642982840538, + 0.0012764452258124948, + 0.009695501066744328, + -0.014230389147996902, + -0.05929543823003769, + 0.06615905463695526, + 0.0003555984585545957, + -0.035350196063518524, + 0.029570309445261955, + 0.0023964594583958387, + -0.0599663183093071, + -0.003641457064077258, + -0.03227962926030159, + 0.018926545977592468, + 0.027635078877210617, + 0.0012441914295777678, + -0.0020481180399656296, + 0.007682861760258675, + -0.017649294808506966, + 0.0033124680630862713, + 0.0447683148086071, + -0.04742603003978729, + 0.05661191791296005, + -0.044381268322467804, + 0.02724803425371647, + -0.03973671421408653, + -0.00011651695240288973, + 0.039401277899742126, + -0.062443409115076065, + -0.07240339368581772, + 0.05640549585223198, + 0.0022529298439621925, + -0.030370203778147697, + -0.057334404438734055, + -0.03276988863945007, + 0.043039508163928986, + 0.007811876945197582, + 0.06275304406881332, + 0.030757250264286995, + -0.08024752140045166, + 0.009592288173735142, + -0.012295159511268139, + 0.03496314957737923, + 0.007631255779415369, + 0.014591631479561329, + 0.018642712384462357, + 0.043787796050310135, + 0.09077517688274384, + -0.0351695753633976, + -0.0004039791820105165, + -0.08324068039655685, + 0.010934047400951385, + -0.006882966961711645, + -0.04835493862628937, + 0.04471670836210251, + -0.0043961969204247, + -0.00033926995820365846, + 0.050883639603853226, + -0.04198158159852028, + -0.054444462060928345, + 0.06564299017190933, + 0.05656031146645546, + -0.04471670836210251, + 0.043194327503442764, + -0.028847822919487953, + 0.029209066182374954, + 0.05671513080596924, + -0.02582886628806591, + 0.08411798626184464, + 0.07735758274793625, + -0.009050424210727215, + -0.032305434346199036, + 0.0591922253370285, + 0.05816010385751724, + 0.028228551149368286, + 0.006066944915801287, + -0.044226448982954025, + -0.0026335250586271286, + 0.013675622642040253, + -0.05459928140044212, + 0.006599133368581533, + -0.023403378203511238, + 0.018823333084583282, + 0.01679779402911663, + 0.0433233417570591, + 0.023932339623570442, + -0.005608940497040749, + 0.01215969305485487, + 0.042162202298641205, + 0.047761470079422, + 0.016230126842856407, + 0.10630861669778824, + -0.051322292536497116, + -0.002928647678345442, + -0.04876778647303581, + 0.0062604681588709354, + 0.031840980052948, + 0.02217773161828518, + 0.007689312566071749, + -0.010805032216012478, + 0.014462616294622421, + 0.07833809405565262, + 0.015585049986839294, + -0.022409958764910698, + -0.018281469121575356, + 0.04618748277425766, + -0.007979596965014935, + 0.04425225034356117, + 0.033569782972335815, + -0.0012546739308163524, + -0.0244354996830225, + -0.0666751116514206, + -0.04500054195523262, + -0.09242656826972961, + 0.05245762690901756, + 0.040304385125637054, + 0.020861776545643806, + -0.024448402225971222, + -0.03382781520485878, + 0.025183789432048798, + -0.09830966591835022, + -0.08576937764883041, + -0.019558722153306007, + -0.046961572021245956, + -0.05609585717320442, + -0.028254352509975433, + -0.09531651437282562, + 0.022564778104424477, + 0.02908005192875862, + 0.04678095132112503, + 0.02519669011235237, + 0.08716274797916412, + 0.05245762690901756, + 0.004512310493737459, + -0.060224346816539764, + 0.0026190108619630337, + -0.06450765579938889, + 0.001351435435935855, + -0.042084794491529465, + 0.01546893548220396, + 0.012585443444550037, + 0.0016078533371910453, + -0.018436288461089134, + 0.017417067661881447, + -0.0725066065788269, + 0.03336336091160774, + -0.015301216393709183, + 0.052586641162633896, + -0.010405085049569607, + -0.030628234148025513, + 0.05573461577296257, + -0.011766196228563786, + -0.04469090327620506, + 0.07353872805833817, + 0.033260148018598557, + -0.004409098066389561, + 0.03065403737127781, + -0.049051620066165924, + 0.020616646856069565, + -0.012566091492772102, + 0.005796012934297323, + 0.03413745015859604, + -0.03307952731847763, + 0.03522118180990219, + -0.010069645009934902, + -0.008140865713357925, + 0.06786205619573593, + -0.037724077701568604, + 0.010347028262913227, + -0.05826331302523613, + 0.01364982035011053, + 0.03532439097762108, + 0.05367036908864975, + 0.05738601088523865, + -0.01984255574643612, + 0.0540316142141819, + -0.10692789405584335, + -0.06409480422735214, + 0.008050555363297462, + 0.06631387025117874, + 0.027996322140097618, + -0.04213640093803406, + -0.03258926793932915, + -0.062133774161338806, + 0.04716799780726433, + -0.055270157754421234, + 0.003831754671409726, + -0.0008893993217498064, + 0.042291220277547836, + 0.0013490163255482912, + 0.09593578428030014, + 0.03687257692217827, + 0.019790949299931526, + -0.023467885330319405, + -0.018487894907593727, + 0.023235658183693886, + -0.05196736752986908, + -0.03496314957737923, + 0.0636303499341011, + 0.030757250264286995, + -0.04051080718636513, + -0.006418511737138033, + 0.007360323332250118, + 0.013662721961736679, + 0.008882704190909863, + 0.0063217501156032085, + 0.031273312866687775, + 0.03674355894327164, + 0.11363668739795685, + 0.08499528467655182, + -0.011250135488808155, + 0.04603266343474388, + -0.02464192546904087, + -0.03604687750339508, + 0.009005269035696983, + -0.0029802536591887474, + -0.017288051545619965, + -0.0072958157397806644, + -0.03873039782047272, + -0.02020379714667797, + -0.06105004623532295, + 0.0222164373844862, + 0.004850975703448057, + -0.019932866096496582, + -0.026886790990829468, + -0.026628760620951653, + -0.04301370680332184, + -0.0017142909346148372, + 0.011617829091846943, + -0.004512310493737459, + 0.0822085589170456, + -0.06099843978881836, + -0.08277622610330582, + -0.0024174244608730078, + 0.013856244273483753, + -0.0521995946764946, + 0.009411666542291641, + -0.023145347833633423, + -0.03914324566721916, + 0.08804004639387131, + -0.033647194504737854, + -0.030292795971035957, + -0.05743761733174324, + -0.07931861281394958, + 0.0029867044650018215, + 0.04595525562763214, + 0.011224332265555859, + 0.0366661511361599, + 0.0181395523250103, + -0.0010998555226251483, + -0.01968773640692234, + -0.039788320660591125, + 0.01457872986793518, + 0.04995472729206085, + 0.015894686803221703, + -0.004351041279733181, + -0.026964200660586357, + 0.033724602311849594, + -0.055270157754421234, + 0.019739342853426933, + -0.009508428163826466, + 0.01884913630783558, + -0.07446763664484024, + -0.04641970992088318, + -0.05490891635417938, + 0.028331762179732323, + -0.08690471202135086, + -0.025054773315787315, + 0.05116747319698334, + -0.039943140000104904, + -0.05294788256287575, + -0.027944715693593025, + -0.04758084565401077, + -0.07828649133443832, + -0.01794602908194065, + -0.012804769910871983, + 0.006553977727890015, + -0.031041083857417107, + 0.08530492335557938, + 0.1213776022195816, + 0.017920227721333504, + 0.05573461577296257, + -0.0028980064671486616, + 0.034447088837623596, + 0.021726178005337715, + 0.01735255867242813, + 0.016268830746412277, + -0.08210534602403641, + 0.04115588590502739, + 0.0038833608850836754, + 0.07539654523134232, + -0.024667726829648018, + -0.05145130679011345, + -0.0111082186922431, + -0.017804112285375595, + 0.012133889831602573, + 0.008263430558145046, + -0.01739126443862915, + 0.008934310637414455, + 0.04729701206088066, + -0.0399947464466095, + -0.029338082298636436, + -0.10223173350095749 + ] + }, + { + "id": "6ba3eeb0-5311-45be-9d32-5681763d4840", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "vbenson", + "reviewDate": "2022-07-17T17:54:23", + "stars": 4, + "verifiedUser": false + }, + { + "id": "c4097f9c-e12e-4c0a-beca-ade3265ef39a", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "sjohnson", + "reviewDate": "2021-01-08T20:42:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "4224a53c-92f2-4773-8fb4-22c80b349ba8", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "livingstonbrenda", + "reviewDate": "2021-07-30T07:26:07", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4cb22c60-7d37-4611-ae9d-67ca39545a85", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "donald80", + "reviewDate": "2022-04-29T23:23:10", + "stars": 5, + "verifiedUser": true + }, + { + "id": "ee11b19a-a08d-4b31-a43f-364006c29144", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "james92", + "reviewDate": "2022-01-07T22:02:18", + "stars": 4, + "verifiedUser": false + }, + { + "id": "f796f694-da23-4d68-90ee-cf374c2a0978", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "starksarah", + "reviewDate": "2021-03-24T04:02:11", + "stars": 4, + "verifiedUser": true + }, + { + "id": "44a6c3a4-d6c4-42a7-8d82-079818a93b69", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jacksonholly", + "reviewDate": "2021-12-14T02:26:43", + "stars": 2, + "verifiedUser": true + }, + { + "id": "6bda7440-8d4a-448a-8a38-c6c1a39f5144", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "christopher45", + "reviewDate": "2021-06-07T02:00:05", + "stars": 3, + "verifiedUser": true + }, + { + "id": "177ffef8-c2e1-442d-8643-aeaff1fc894d", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lcrane", + "reviewDate": "2021-05-03T20:02:48", + "stars": 4, + "verifiedUser": false + }, + { + "id": "1a6172d1-8283-407b-8287-c4791d4fd983", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "collierjessica", + "reviewDate": "2022-09-29T22:03:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "6d25b249-9f7e-46df-9376-b731bc69db56", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "linda48", + "reviewDate": "2022-03-09T23:43:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "104337b2-1ce7-4cbe-8204-42eb362c439d", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kevin61", + "reviewDate": "2022-04-30T21:30:38", + "stars": 4, + "verifiedUser": true + }, + { + "id": "84154acd-384c-47df-9141-9911180ca15d", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "brittanystanley", + "reviewDate": "2022-12-01T12:42:40", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b92d6c3a-398f-46c5-9d77-d670743bd70d", + "productId": "90e9abb0-da90-4921-a18e-d7ddb722095c", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frankdiana", + "reviewDate": "2021-11-02T12:41:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "product", + "name": "Amazing Speaker + (Gold)", + "description": "This Amazing Speaker + (Gold) is coming back!! Just don't wait to find out if you love it on the 3rd.\n\nLove, John!\n\nWe love this speaker. It's a little like what a regular TV speaker would do. The build quality is better. The cable doesn't come with a built-in built-in speakers box in it although these have done in our opinion that many people do. We like that the speaker works to make it easy on", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-09-27T08:56:00", + "price": 208.71, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-02-03T19:02:11", + "newPrice": 196.39 + }, + { + "priceDate": "2024-01-08T19:02:11", + "newPrice": 208.71 + } + ], + "descriptionVector": [ + 0.0004725468170363456, + -0.033320821821689606, + -0.03851298242807388, + 0.01257894467562437, + -0.07429606467485428, + 0.010785776190459728, + -0.02547905407845974, + 0.02510436251759529, + 0.006761183030903339, + 0.08708912134170532, + 0.020782023668289185, + 0.009795518592000008, + 0.03243761882185936, + 0.0057207434438169, + -0.012231016531586647, + -0.03947647660970688, + -0.017182303592562675, + 0.031179726123809814, + -0.007520603481680155, + -0.016687175258994102, + 0.0003838920092675835, + -0.07269024103879929, + -0.03642541170120239, + 0.009862428531050682, + 0.030885323882102966, + -0.03896796703338623, + 0.0044829221442341805, + 0.022869592532515526, + 0.02090246044099331, + -0.026362257078289986, + 0.06439349055290222, + 0.07429606467485428, + -0.010457920841872692, + 0.06433996558189392, + -0.01616528257727623, + 0.0005658016307279468, + 0.020755259320139885, + 0.04132317379117012, + 0.0008359478670172393, + 0.01138796005398035, + 0.000741856696549803, + 0.03974411264061928, + 0.05004814267158508, + -0.08034466952085495, + 0.04386572539806366, + 0.00036193738924339414, + -0.012083816342055798, + 0.08757086843252182, + -0.017918305471539497, + 0.025010690093040466, + -0.027178550139069557, + -0.019243109971284866, + -0.056685544550418854, + 0.047264717519283295, + -0.011227377690374851, + -0.06428644061088562, + -0.012793054804205894, + -0.09608172625303268, + 0.08644679188728333, + -0.012679308652877808, + 0.009313772432506084, + 0.014439023099839687, + -0.01868107169866562, + 0.021022897213697433, + -0.034873116761446, + 0.06139595806598663, + -0.033534932881593704, + 0.07520603388547897, + -0.06193123012781143, + 0.07520603388547897, + 0.05706023797392845, + -0.025693165138363838, + 0.03744243457913399, + 0.07574130594730377, + 0.042875468730926514, + -0.03447166085243225, + 0.030430341139435768, + 0.04862966760993004, + 0.0011533487122505903, + -0.02791455201804638, + 0.06048599258065224, + 0.06053951755166054, + -0.03436460718512535, + -0.01914943754673004, + 8.337524195667356e-05, + -0.036184538155794144, + -0.05264422297477722, + -0.0937800481915474, + 0.06503582000732422, + 0.0914783701300621, + -0.03227703645825386, + 0.03150089085102081, + 0.04295575991272926, + 0.002024005865678191, + -0.003890774678438902, + 0.005560161545872688, + -0.05307244136929512, + 0.023190757259726524, + -0.0690503790974617, + -0.02079540491104126, + 0.010023010894656181, + -0.10528844594955444, + -0.026000946760177612, + 0.044481292366981506, + -0.022213881835341454, + 0.02407396025955677, + 0.0702815130352974, + 0.012057052925229073, + 0.015282080508768559, + -0.12140019983053207, + 0.09035429358482361, + -0.05050312727689743, + -0.00202735117636621, + -0.030483869835734367, + 0.03131354600191116, + 0.008771806955337524, + -0.05695318058133125, + -0.0341772623360157, + -0.053928881883621216, + 0.04865643009543419, + 0.031554415822029114, + -0.00044954672921448946, + 0.01093966793268919, + 0.02095598727464676, + 0.04327692463994026, + 0.003024299629032612, + -0.012284544296562672, + 0.06910390406847, + 0.008878861553966999, + 0.03203616291284561, + -0.1160474568605423, + 0.070709727704525, + -0.033722277730703354, + 0.04335721582174301, + -0.030992379412055016, + 0.05379506200551987, + 0.07702596485614777, + 0.040065277367830276, + -0.020246749743819237, + 0.01627233810722828, + -0.00911304447799921, + 0.01107348594814539, + 0.047318246215581894, + 0.040199097245931625, + -0.009153190068900585, + -0.0010404393542557955, + -0.05465150251984596, + 0.040332917124032974, + -0.06300178170204163, + 0.007239584345370531, + 0.0352478101849556, + -0.09506470710039139, + -0.0689433217048645, + -0.06037893518805504, + -0.012404981069266796, + 0.03829887509346008, + -0.08837378025054932, + -0.011622142046689987, + -0.016312483698129654, + 0.07311846315860748, + -0.07900647819042206, + -0.03944971412420273, + -0.05615026876330376, + 0.0701744556427002, + -0.05834489315748215, + 0.026174912229180336, + 0.06653459370136261, + 0.021758899092674255, + -0.09640289098024368, + 0.029199210926890373, + -0.022628718987107277, + -0.0349801741540432, + 0.04873672127723694, + 0.006045253481715918, + -0.01493415143340826, + 0.0006360563565976918, + 0.08767792582511902, + -0.008624606765806675, + -0.028476590290665627, + -0.0352478101849556, + 0.033534932881593704, + 0.07226202636957169, + 0.0019303327426314354, + -0.028476590290665627, + -0.001968805678188801, + 0.04994108900427818, + 0.033053185790777206, + -0.002438843250274658, + 0.022481519728899002, + 0.013388547115027905, + 0.03701421618461609, + 0.006092090159654617, + -0.01627233810722828, + -0.05577557906508446, + -0.0023184067104011774, + -0.016700556501746178, + 0.0467829704284668, + 0.04177815467119217, + -0.07740065455436707, + 0.05518677458167076, + -0.025800218805670738, + 0.02605447545647621, + 0.13360445201396942, + 0.005433033686131239, + -0.017797868698835373, + -0.05936191603541374, + 0.019483983516693115, + 0.07831062376499176, + 0.04223313927650452, + -0.016633648425340652, + -0.013622730039060116, + 0.01862754486501217, + -0.04432071000337601, + -0.018078887835144997, + 0.06706986576318741, + 0.03307994827628136, + -0.05020872503519058, + 0.013589275069534779, + -0.0335884615778923, + 0.007192747667431831, + 0.028155425563454628, + -0.0351407565176487, + 0.029333028942346573, + 0.005606997758150101, + -0.03506046533584595, + -0.002485679928213358, + -0.004974705167114735, + 0.018092269077897072, + 0.0464618057012558, + 0.033320821821689606, + -0.06289472430944443, + 0.08591151982545853, + 0.02624182030558586, + 0.0067912922240793705, + -0.07188733667135239, + -0.010611812584102154, + 0.023217521607875824, + 0.0006431654910556972, + -0.05446415767073631, + 0.022722391411662102, + -0.03853974491357803, + 0.06364411115646362, + -0.09950748831033707, + -0.02539876289665699, + -0.02693767659366131, + 0.021263770759105682, + 0.09816929697990417, + 0.020126312971115112, + -0.058291368186473846, + 0.028101898729801178, + -0.07552719861268997, + -0.00957471877336502, + -0.044963039457798004, + 0.005948235280811787, + -0.06514287739992142, + 0.07665127515792847, + 0.08377042412757874, + -0.012866655364632607, + -0.010692103765904903, + -0.06514287739992142, + -0.05256393179297447, + -0.07782887667417526, + -0.025826983153820038, + -0.008464024402201176, + -0.09993570297956467, + -0.0688362717628479, + 0.031447362154722214, + -0.04975374415516853, + 0.02970772236585617, + 0.0339631512761116, + 0.019912201911211014, + -0.00046920133172534406, + -0.0004361648752819747, + 0.020153075456619263, + -0.059147804975509644, + 0.03894120082259178, + -0.0033789188601076603, + 0.0018416780512779951, + 0.00969515461474657, + -0.04325015842914581, + 0.06000424548983574, + 0.0467294417321682, + 0.05930838733911514, + -0.1145486906170845, + 0.05283156782388687, + -0.08066583424806595, + -0.019029000774025917, + 0.04330368712544441, + -0.05034254491329193, + -0.056203797459602356, + 0.0036298285704106092, + -0.019724857062101364, + 0.019176200032234192, + 0.06407232582569122, + 0.054303575307130814, + 0.017102012410759926, + 0.027004586532711983, + 0.03246438503265381, + -0.02992183156311512, + 0.013161055743694305, + 0.0683545246720314, + -0.042795177549123764, + -0.010658648796379566, + -0.046863261610269547, + -0.08360984176397324, + 0.029172446578741074, + -0.00805587787181139, + 0.05232305824756622, + 0.011889779940247536, + -0.03832563757896423, + 0.15726357698440552, + -0.004693686030805111, + 0.007473766803741455, + 0.0018985508941113949, + 0.054089464247226715, + -0.02740604244172573, + -0.07558072358369827, + 0.009347226470708847, + 0.002149460604414344, + 0.01862754486501217, + -0.015696918591856956, + 0.02447541616857052, + -0.05588263273239136, + 0.011421414092183113, + -0.02185257151722908, + 0.058719586580991745, + 0.04697031527757645, + -0.08468038588762283, + 0.03688039630651474, + 0.09993570297956467, + 0.015335607342422009, + -0.044561583548784256, + 0.05791667476296425, + 0.028503354638814926, + 0.0004620922263711691, + -0.07633011043071747, + -0.07381431758403778, + -0.006366418208926916, + 0.07311846315860748, + 0.0032384092919528484, + 0.02547905407845974, + 0.010016319341957569, + -0.042714886367321014, + -0.040199097245931625, + 0.007761476561427116, + -0.08435922116041183, + -0.007754785940051079, + -0.02807513438165188, + 0.04223313927650452, + 0.006734419148415327, + 0.0015288770664483309, + 0.011193922720849514, + 0.044855982065200806, + 0.015282080508768559, + 0.02735251560807228, + 0.018038742244243622, + -0.03728185221552849, + -0.0010847666999325156, + 0.04611387848854065, + -0.0031096090096980333, + -0.0005574379465542734, + -0.018895180895924568, + -0.011080177500844002, + 0.04830850288271904, + 0.0008351114811375737, + 0.003047717735171318, + 0.0009835663950070739, + -0.03198263794183731, + -0.07156617194414139, + -0.0038506293203681707, + -0.03650570288300514, + 0.04159080982208252, + -0.06476818770170212, + -0.011863015592098236, + 0.011776033788919449, + 0.04434747248888016, + 0.07135205715894699, + -0.05312597006559372, + 0.010290647856891155, + 0.020139694213867188, + 3.619896597228944e-05, + 0.02028689533472061, + 0.056364379823207855, + -0.023618977516889572, + 0.031152961775660515, + 0.035542212426662445, + -0.0353548638522625, + -0.018975472077727318, + -0.00622925441712141, + 0.040466733276844025, + -0.03663952276110649, + -0.01389036700129509, + -0.014144622720777988, + 0.045444782823324203, + 0.11155115813016891, + -0.03179528936743736, + -0.021076424047350883, + 0.08328867703676224, + 0.022722391411662102, + 0.022213881835341454, + 0.02082216925919056, + 0.03720156103372574, + 0.07151263952255249, + -0.020996132865548134, + -0.04434747248888016, + -0.07215496897697449, + -0.036077484488487244, + 0.0017496776999905705, + -0.047050606459379196, + -0.002462261589244008, + -0.011227377690374851, + -0.013335020281374454, + -0.018788127228617668, + -0.025786837562918663, + 0.012859963811933994, + 0.019644565880298615, + 0.03366875275969505, + 0.030831797048449516, + 0.10619841516017914, + -0.0458730049431324, + 0.022080063819885254, + 0.06043246388435364, + 0.02555934526026249, + 0.019042382016777992, + -0.07188733667135239, + 0.04124288260936737, + 0.03283907473087311, + -0.0686756893992424, + 0.027258841320872307, + -0.08981902152299881, + -0.06642753630876541, + -0.028262481093406677, + 0.0346054807305336, + 0.033802568912506104, + -0.05684612691402435, + 0.028342772275209427, + -0.017664050683379173, + 0.0028218990191817284, + -0.06519640237092972, + 0.03878061845898628, + 0.00060260173631832, + -0.01914943754673004, + 0.0011868034489452839, + -0.015830736607313156, + -0.08296751230955124, + -0.03610425069928169, + -0.015081352554261684, + 0.005874635186046362, + 0.056364379823207855, + -0.021022897213697433, + 0.016754085198044777, + 0.02759338729083538, + -0.017209067940711975, + 0.07782887667417526, + 0.0056839436292648315, + 0.02399366907775402, + 0.024274688214063644, + 0.04116259142756462, + -0.03642541170120239, + 0.007614276371896267, + 0.01703510247170925, + 0.0060151442885398865, + 0.018962090834975243, + 0.021049659699201584, + -0.023418249562382698, + 0.024194397032260895, + -0.011207304894924164, + -0.0013850221876055002, + -0.012043670751154423, + -0.010631885379552841, + -0.007808313239365816, + -0.05226953327655792, + -0.02791455201804638, + 0.027285605669021606, + -0.06605284661054611, + -0.04809439182281494, + -0.022160355001688004, + -0.05355418846011162, + 0.010350866243243217, + -0.018266234546899796, + -0.030938852578401566, + 0.03698744997382164, + 0.016258955001831055, + 0.04407983645796776, + 0.028316007927060127, + -0.07327904552221298, + -0.028717463836073875, + 0.035408392548561096, + 0.08045171946287155, + 0.02954714000225067, + -0.02269562892615795, + 0.04097524285316467, + 0.07215496897697449, + -0.014987679198384285, + -0.030376814305782318, + -0.0035796465817838907, + -0.019751619547605515, + -0.009541263803839684, + 0.06476818770170212, + 0.025947419926524162, + 0.012123961932957172, + -0.06391174346208572, + -0.05325978994369507, + -0.0061891088262200356, + -0.04758588224649429, + -0.030938852578401566, + -0.03623806685209274, + -0.04073437303304672, + -0.0695856511592865, + 0.03166147321462631, + 0.018426816910505295, + 0.017476703971624374 + ] + }, + { + "id": "a3941a23-866f-4d0d-b3be-3b74b6220384", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "cruzangela", + "reviewDate": "2021-12-11T06:29:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "e3d9dc38-ae27-48fa-b887-bdc064a51a16", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "macksamantha", + "reviewDate": "2022-06-02T06:31:23", + "stars": 1, + "verifiedUser": false + }, + { + "id": "84f76e39-2740-410e-8263-2db37c33a128", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "johnsonbrian", + "reviewDate": "2021-02-03T19:02:11", + "stars": 1, + "verifiedUser": true + }, + { + "id": "212bc6c8-3574-4b97-873c-22e3f4506a66", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "lisalara", + "reviewDate": "2022-01-05T00:20:29", + "stars": 4, + "verifiedUser": true + }, + { + "id": "cb377e22-107d-4ddf-a130-d9464f53d890", + "productId": "17bf98b8-817a-47b6-ac8a-3b0e1f0297d7", + "category": "Media", + "docType": "customerRating", + "userName": "odomjorge", + "reviewDate": "2022-01-31T06:16:24", + "stars": 5, + "verifiedUser": false + }, + { + "id": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "product", + "name": "Premium Stand Micro (Steel)", + "description": "This Premium Stand Micro (Steel) is made by IOSP Technologies. This premium stand micro includes the \"Kite\" and \"Faster\" models.\n\n\nThe \"Kite\" will be the heaviest looking plastic the Kite offers. It features an outer lid, a metal cap, 3-point mounting plate, and a plastic front plate that also features KITE® for", + "countryOfOrigin": "Mexico", + "rareItem": false, + "firstAvailable": "2018-06-28T03:35:55", + "price": 1076.43, + "stock": 16, + "priceHistory": [ + { + "priceDate": "2021-02-15T06:32:34", + "newPrice": 1065.13 + }, + { + "priceDate": "2022-12-23T06:32:34", + "newPrice": 1160.69 + }, + { + "priceDate": "2024-06-11T06:32:34", + "newPrice": 1076.43 + } + ], + "descriptionVector": [ + -0.06401582807302475, + 0.03582802787423134, + -0.05293171480298042, + 0.01414454635232687, + 0.00456894189119339, + -0.012683063745498657, + -0.04008224606513977, + -0.0049415472894907, + -0.009586457163095474, + 0.0027547499630600214, + 0.06586800515651703, + -0.041587136685848236, + 0.030908185988664627, + -0.06517343968153, + -0.01847834885120392, + 0.021589426323771477, + -0.011670155450701714, + 0.007122918963432312, + 0.0009812553180381656, + -0.009014887735247612, + 0.058575063943862915, + -0.07379763573408127, + 0.0279852207750082, + -0.006102774757891893, + -0.008515668101608753, + -0.07524465024471283, + 0.012169374153017998, + -0.008117740042507648, + -0.06690985709428787, + 0.033454928547143936, + 0.031515929847955704, + 0.03707245737314224, + 0.017436500638723373, + 0.005661436356604099, + 0.027319595217704773, + -0.037188220769166946, + -0.0024345985148102045, + 0.016944516450166702, + 0.0162933599203825, + 0.025235896930098534, + 0.006829898804426193, + 0.017364149913191795, + 0.05759109556674957, + 0.01472335122525692, + -0.05081907659769058, + 0.01698792539536953, + -0.0030513873789459467, + -0.046246517449617386, + 0.001566390972584486, + -0.06910931318998337, + 0.03872205317020416, + 0.06390006840229034, + -0.005010280758142471, + 0.08016449213027954, + 0.010418489575386047, + -0.06245305761694908, + 0.05866188555955887, + 0.2775948643684387, + 0.09370852261781693, + -0.0454651303589344, + -0.024700501933693886, + -0.053597342222929, + -0.04723048582673073, + 0.025858111679553986, + 0.021893298253417015, + 0.029721636325120926, + 0.013283574022352695, + 0.007987508550286293, + -0.01525151077657938, + 0.08988841623067856, + -0.01685769483447075, + 0.006081069819629192, + 0.0037079693283885717, + -0.012979701161384583, + 0.03354175016283989, + -0.008421611972153187, + 0.07570768892765045, + -0.030705604702234268, + 0.0931876003742218, + 0.030618783086538315, + 0.03232625871896744, + 0.024367690086364746, + -0.015439623035490513, + -0.040429528802633286, + 0.0570412315428257, + 0.01454247534275055, + 0.03513346239924431, + -0.10858381539583206, + -0.04754883050918579, + 0.038577351719141006, + 0.0125238923355937, + 0.04491526633501053, + 0.020504165440797806, + 0.010961119085550308, + 0.01413007639348507, + 0.0020348611287772655, + 0.01649594120681286, + 0.06390006840229034, + -0.013840674422681332, + -0.015092339366674423, + 0.04265792667865753, + -0.0014632913516834378, + -0.012082553468644619, + -0.02198011986911297, + 0.006214918568730354, + 0.07599709182977676, + 0.0009156875312328339, + 0.06129544600844383, + -0.013413805514574051, + -0.04491526633501053, + 0.042252764105796814, + -0.012104258872568607, + 0.07825443148612976, + 0.0009034784161485732, + -0.0192307960242033, + 0.0003990588884335011, + -0.021256612613797188, + -0.024440040811896324, + 0.05753321573138237, + -0.06812534481287003, + -0.006772018037736416, + 0.008284145966172218, + 0.027189364656805992, + 0.000378258089767769, + -0.010700657032430172, + 0.039214037358760834, + -0.03218155726790428, + 0.00857354886829853, + 0.021097442135214806, + -0.021430253982543945, + -0.035509686917066574, + 0.0227036252617836, + 0.0349598191678524, + 0.0043555074371397495, + -0.04439434036612511, + 0.05052967369556427, + 0.04011118412017822, + -0.0006565818912349641, + 0.02888236753642559, + 0.07999084889888763, + 0.032731421291828156, + -0.04537830874323845, + -0.001317685702815652, + 0.08751530945301056, + 0.011221581138670444, + -0.007900687865912914, + -0.042281702160835266, + 0.005086248740553856, + 0.023586302995681763, + -0.006844368763267994, + 0.014397773891687393, + -0.0813799798488617, + -0.0016993352910503745, + -0.034583598375320435, + 0.10285364091396332, + 0.025901522487401962, + -0.06685197353363037, + -0.004417005460709333, + -0.05516011267900467, + 0.052729133516550064, + 0.038085367530584335, + -0.04453904181718826, + -0.008754425682127476, + 0.023817824199795723, + 0.06905143707990646, + 0.0012344825081527233, + 0.004597881808876991, + 0.008653134107589722, + -0.04633333906531334, + 0.023253489285707474, + 0.04095045104622841, + -0.033165525645017624, + -0.021169792860746384, + -0.10406913608312607, + -0.0018811161862686276, + -0.02461368218064308, + 0.013370394706726074, + -0.016539352014660835, + 0.025033315643668175, + -0.004113133065402508, + 0.04372871667146683, + 0.015656674280762672, + -0.021618366241455078, + -0.07999084889888763, + -0.015642205253243446, + 0.0337153896689415, + 0.059732671827077866, + 0.09527129679918289, + 0.018131066113710403, + -0.02729065530002117, + 0.02947564423084259, + -0.03918509557843208, + 0.003127355594187975, + -0.015786904841661453, + 0.022168230265378952, + -0.056230902671813965, + -0.005672288592904806, + 0.03166063129901886, + -0.0071265362203121185, + -0.01889798231422901, + -0.041297733783721924, + 0.03591484948992729, + 0.024671562016010284, + -0.04407599940896034, + 0.008349262177944183, + -0.04176077991724014, + 0.008812305517494678, + 0.01956360787153244, + -0.025727881118655205, + 0.04031376540660858, + -0.0627424567937851, + -0.09428732842206955, + -0.004529148805886507, + 0.05145576223731041, + 0.01695898547768593, + 0.022529983893036842, + -0.002318837447091937, + -0.08554737269878387, + 0.024382159113883972, + -0.006167890504002571, + 0.08045389503240585, + -0.0011729844845831394, + 0.006605611648410559, + -0.02653820812702179, + -0.0674886628985405, + -0.02399146556854248, + 0.013486156240105629, + -0.002456303685903549, + 0.05400250479578972, + 0.05261337384581566, + -0.04262898489832878, + -0.031081827357411385, + 0.007032480556517839, + -0.030097858980298042, + -0.0338311493396759, + 0.053944624960422516, + -0.040603168308734894, + -0.04306308925151825, + 0.029953157529234886, + -0.039242979139089584, + -0.029750576242804527, + -0.008001978509128094, + -0.045031026005744934, + 0.011713565327227116, + -0.013775558210909367, + -0.02551082894206047, + 0.08288487046957016, + -0.06482616066932678, + -0.10621071606874466, + -0.054378729313611984, + -0.015063399448990822, + 0.017494380474090576, + 0.006280033849179745, + 0.03773808479309082, + 0.02296408824622631, + 0.09011993557214737, + 0.06251093745231628, + -0.014752292074263096, + -0.0074159386567771435, + -0.035972729325294495, + -0.0013891319977119565, + -0.008465022780001163, + 0.028014160692691803, + 0.06696773320436478, + -0.047606710344552994, + 0.06499979645013809, + 0.04749094694852829, + -0.05055861547589302, + -0.027666877955198288, + 0.023311370983719826, + -0.0030423435382544994, + 0.0034456984139978886, + 0.09035145491361618, + -0.014021550305187702, + 0.03278930112719536, + 0.021560484543442726, + -0.03359962999820709, + 0.08948324620723724, + -0.010425725020468235, + -0.03290506452322006, + 0.021502604708075523, + -0.06355278939008713, + 0.045031026005744934, + 0.057128049433231354, + 0.12316969782114029, + -0.034323133528232574, + 0.05990631505846977, + -0.04650697857141495, + -0.02710254304111004, + -0.024743912741541862, + -0.05750427395105362, + 0.03310764580965042, + -0.024570271372795105, + 0.04905372112989426, + 0.005936368368566036, + 0.001614323235116899, + -0.016799814999103546, + 0.009477931074798107, + 0.029041539877653122, + -0.012654123827815056, + -0.0037622323725372553, + 0.037593383342027664, + -0.025192486122250557, + 0.013218458741903305, + -0.005697611253708601, + 0.05047179386019707, + 0.0151502201333642, + -0.008537373505532742, + -0.006627317052334547, + -0.08305851370096207, + 0.03192109614610672, + 0.03003997914493084, + -0.09127754718065262, + 0.02802863158285618, + 0.07570768892765045, + -0.009854154661297798, + 0.011952322907745838, + -0.025033315643668175, + 0.024512391537427902, + -0.00984691921621561, + 0.02692890167236328, + 0.033860091120004654, + -0.0407768115401268, + 0.08329003304243088, + 0.07842807471752167, + -0.044567983597517014, + 0.051600463688373566, + 0.028737667948007584, + 0.0035686944611370564, + -0.03137122839689255, + -0.054870713502168655, + -0.0063451495952904224, + 0.033860091120004654, + 0.02888236753642559, + 0.0090365931391716, + -0.014513534493744373, + -0.055044353008270264, + -0.09422945231199265, + -0.0016694905934855342, + 0.026581618934869766, + 0.018261296674609184, + 0.009246409870684147, + -0.011706330813467503, + 0.002385761821642518, + 0.03892463445663452, + -0.054841771721839905, + 0.05096377804875374, + -0.046970024704933167, + 0.023933585733175278, + 0.019389966502785683, + 0.0017970085609704256, + -0.04569665342569351, + 0.04372871667146683, + -0.039474498480558395, + 0.1279159039258957, + 0.012581773102283478, + 0.07084573060274124, + -0.08282699435949326, + 0.05310535803437233, + -0.019143974408507347, + 0.03571226820349693, + -0.051831986755132675, + 0.054147206246852875, + 0.05212138965725899, + 0.03475723788142204, + 0.10291152447462082, + -0.04268686845898628, + 0.008978712372481823, + -0.0395323783159256, + 0.035972729325294495, + -0.019809599965810776, + -0.06077452376484871, + 0.04827233403921127, + 0.057388514280319214, + -0.03307870402932167, + 0.0067647830583155155, + 0.06013783812522888, + 0.07090360671281815, + -0.04769352823495865, + 0.04106621444225311, + -0.013746618293225765, + 0.019621489569544792, + 0.008957006968557835, + 0.04676744341850281, + 0.04963252693414688, + 0.01992536149919033, + -0.01685769483447075, + 0.01133734267205, + -0.03391797095537186, + 0.011756976135075092, + -0.057880498468875885, + -0.008884656243026257, + 0.018131066113710403, + -0.0009351318003609776, + 0.021372374147176743, + -0.05215032771229744, + -0.03244201838970184, + 0.010042265988886356, + 0.011872736737132072, + -0.02283385582268238, + 0.006048512179404497, + 0.05058755353093147, + -0.02177753672003746, + -0.009709453210234642, + 0.0021090207155793905, + -0.0174799095839262, + 0.04121091589331627, + -0.0011594187235459685, + 0.021430253982543945, + -0.04439434036612511, + -0.029229652136564255, + -0.06453675776720047, + 0.04028482735157013, + 0.05654924735426903, + 0.05683865025639534, + 0.040863629430532455, + 0.04682532325387001, + 0.06031147763133049, + 0.03704351931810379, + -0.07755986601114273, + 0.07802291214466095, + -0.038056425750255585, + -0.08369520306587219, + 0.049487825483083725, + -0.01585925556719303, + 0.10638435184955597, + -0.036435771733522415, + 0.04338143393397331, + 0.052323970943689346, + -0.043178852647542953, + -0.04511784762144089, + -0.06714137643575668, + -0.0016595424385741353, + -0.008240736089646816, + -0.012552833184599876, + -0.01972278021275997, + 0.044625863432884216, + 0.04685426130890846, + -0.007148241624236107, + 0.07038268446922302, + -0.07802291214466095, + -0.001617940841242671, + 0.06482616066932678, + 0.04853279888629913, + -0.04708578437566757, + -0.016380181536078453, + -0.028462734073400497, + -0.039271917194128036, + 0.02983739599585533, + -0.020938269793987274, + -0.024541331455111504, + 0.025163546204566956, + -0.03658047318458557, + -0.030445141717791557, + 0.005093483719974756, + 0.029027068987488747, + 0.10603707283735275, + 0.01525151077657938, + 0.028491675853729248, + -0.02254445292055607, + -0.032702479511499405, + 0.10129087418317795, + 0.08172725886106491, + -0.009434521198272705, + 0.0361463725566864, + -0.06685197353363037, + -0.03886675462126732, + 0.02180647663772106, + 0.022529983893036842, + 0.1069631576538086, + -0.0007167233270592988, + -0.03678305447101593, + 0.057417452335357666, + 0.06002207472920418, + 0.038519471883773804, + -0.02352842316031456, + 0.035480745136737823, + -0.0032521605025976896, + -0.07507100701332092, + -0.008153915405273438, + 0.007647460792213678, + 0.040632110089063644, + -0.01758120022714138, + 0.013891319744288921, + 0.0048872847110033035, + -0.01886904239654541, + -0.07536040991544724, + -0.03542286530137062, + -0.028694257140159607, + 0.038519471883773804, + 0.019042683765292168, + 0.062279414385557175, + 0.01037507876753807, + -0.09139330685138702, + -0.019910890609025955, + 0.035278163850307465, + 0.03322340548038483, + 0.009608162567019463, + -0.023239020258188248, + -0.036898817867040634, + 0.001924526528455317, + -0.017407558858394623, + 0.0057663447223603725, + 0.07148241251707077, + 0.010121852159500122, + 0.036869876086711884, + -0.053655222058296204, + 0.07009328156709671, + 0.06870415061712265, + 0.009760098531842232, + 0.050211332738399506, + 0.025597650557756424 + ] + }, + { + "id": "d89463dd-d9e8-4746-90df-e7359fa5e7b0", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "watsondaniel", + "reviewDate": "2022-08-09T04:51:38", + "stars": 2, + "verifiedUser": true + }, + { + "id": "a764da05-6f4e-4e76-85d5-4761fce50445", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "williammarshall", + "reviewDate": "2022-03-03T15:40:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "5c950d89-d640-4645-8fa7-07279241de63", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "richardbarbara", + "reviewDate": "2021-02-15T06:32:34", + "stars": 3, + "verifiedUser": false + }, + { + "id": "22849b73-f415-443e-8dd0-604497152e71", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "alexandriashaw", + "reviewDate": "2022-04-29T05:36:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "8bbbf43e-0aba-4ec5-9191-ca681afe12cc", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "allen84", + "reviewDate": "2021-12-10T10:47:24", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b212c6e0-f462-4911-b836-5e8420ce65da", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "colejeffrey", + "reviewDate": "2022-02-19T23:25:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "8e279ae9-868f-44ed-b08e-ede640e9845f", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "jennifergarcia", + "reviewDate": "2021-08-04T01:55:24", + "stars": 1, + "verifiedUser": false + }, + { + "id": "fc944ad8-cff1-4139-95e4-4562c5969ac8", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "morrismichelle", + "reviewDate": "2022-05-05T14:22:59", + "stars": 2, + "verifiedUser": false + }, + { + "id": "ea05fef5-1a2a-4d91-9283-5c6ed7790080", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "judithmurphy", + "reviewDate": "2022-09-23T17:31:55", + "stars": 1, + "verifiedUser": true + }, + { + "id": "60d18ef2-0b8f-40fd-8722-8a60dbd04606", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "stevensronald", + "reviewDate": "2021-11-21T19:12:24", + "stars": 2, + "verifiedUser": true + }, + { + "id": "5cd23554-63be-4229-aedd-3b783d57dea9", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "douglas05", + "reviewDate": "2021-10-12T17:37:47", + "stars": 3, + "verifiedUser": false + }, + { + "id": "48777ae2-39dc-4a06-8331-1c4bea23112f", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "debra27", + "reviewDate": "2022-01-05T05:12:18", + "stars": 1, + "verifiedUser": false + }, + { + "id": "da89aeeb-fbf1-472d-9be6-60140e584e3c", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "kayla02", + "reviewDate": "2021-09-27T08:57:33", + "stars": 2, + "verifiedUser": true + }, + { + "id": "8fc9b7f9-ddc4-402a-9761-636ab1f4614c", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "wernerronald", + "reviewDate": "2021-12-28T15:44:29", + "stars": 1, + "verifiedUser": false + }, + { + "id": "8bb56aa8-427e-4a8f-a1a0-436f1cf1ded6", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "erin52", + "reviewDate": "2022-07-25T23:49:58", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b7e70f39-0c72-40e3-b683-ef758e4d4ccf", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "sross", + "reviewDate": "2022-12-23T11:27:18", + "stars": 3, + "verifiedUser": true + }, + { + "id": "57c04cc8-4e6b-40a9-9fa0-b150f8c654f3", + "productId": "c0e83b04-1702-466c-b46e-c10493ea35fb", + "category": "Accessory", + "docType": "customerRating", + "userName": "smithrichard", + "reviewDate": "2022-03-08T11:02:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "product", + "name": "Amazing Phone Mini (Steel)", + "description": "This Amazing Phone Mini (Steel) is rated 4.3 out of 5 by 41.\n\nRated 5 out of 5 by Joe from Awesome (especially the plastic case) I received my phone while traveling in the United States. I had a good quality camera that", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-11-20T01:34:46", + "price": 636.24, + "stock": 14, + "priceHistory": [ + { + "priceDate": "2021-03-09T03:45:48", + "newPrice": 605.84 + }, + { + "priceDate": "2022-09-15T03:45:48", + "newPrice": 691.03 + }, + { + "priceDate": "2024-03-10T03:45:48", + "newPrice": 636.24 + } + ], + "descriptionVector": [ + -0.0346585214138031, + 0.08007313311100006, + -0.01650187000632286, + 0.017398210242390633, + -0.011905248276889324, + 0.012617724016308784, + -0.05915851145982742, + 0.00861291866749525, + 0.01279009785503149, + 0.07258064299821854, + -0.008296900428831577, + -0.03612944111227989, + -0.010692889802157879, + 0.0027910107746720314, + 0.0052315290085971355, + 0.018662281334400177, + -0.010871008038520813, + -0.009135783649981022, + 0.018524382263422012, + -0.027028130367398262, + 0.06439866125583649, + -0.10443522781133652, + -0.055527180433273315, + 0.03502625226974487, + 0.031073156744241714, + -0.03773825615644455, + 0.00858993548899889, + 0.018788687884807587, + 0.035072218626737595, + -0.047253262251615524, + -0.02725796215236187, + 0.01675468310713768, + -0.06297370791435242, + 0.03900232911109924, + 0.0455065481364727, + 0.07423542439937592, + 0.009779310785233974, + -0.011824807152152061, + -0.013996711000800133, + 0.10995117574930191, + 0.033670246601104736, + -0.013996711000800133, + 0.02175350859761238, + -0.026775317266583443, + 0.027648674324154854, + -0.054056260734796524, + -0.045575495809316635, + 0.03344041854143143, + 0.02643056958913803, + 0.03714069724082947, + 0.005650971084833145, + 0.008159002289175987, + -0.016168614849448204, + -0.001603071577847004, + 0.026591451838612556, + -0.04706939682364464, + -0.017616549506783485, + 0.1460806131362915, + 0.06550184637308121, + -0.10415942966938019, + -0.02951030619442463, + -0.028728879988193512, + 0.03773825615644455, + 0.0026674766559153795, + -0.035095199942588806, + -0.012468334287405014, + -0.0706041008234024, + 0.016835123300552368, + -0.050424929708242416, + 0.054423991590738297, + 0.053550634533166885, + 0.0058290897868573666, + -0.04771292582154274, + 0.04451827332377434, + 0.033348485827445984, + 0.019880386069417, + 0.03185458481311798, + 0.05001123622059822, + -0.002618637401610613, + 0.0069121685810387135, + 0.05203374847769737, + 0.05037896707653999, + -0.009336885996162891, + -0.012583250179886818, + 0.03461255505681038, + 0.007371830753982067, + 0.04038131609559059, + -0.1333020031452179, + -0.049275774508714676, + 0.0791078433394432, + -0.011175534687936306, + -0.02215571328997612, + -0.03173966705799103, + -0.011836298741400242, + 0.06899528205394745, + 0.038197919726371765, + -0.009262191131711006, + 0.05511348322033882, + 0.010779076255857944, + -0.012836064212024212, + -0.002733553061261773, + 0.004039280582219362, + -0.01777743175625801, + -0.00838883314281702, + 0.019121943041682243, + 0.026315655559301376, + -0.0446561723947525, + 0.0160536989569664, + 0.04665570333600044, + -0.1209830641746521, + 0.004783358424901962, + 0.024844735860824585, + -0.04895401373505592, + -0.034543607383966446, + -0.0032406176906079054, + 0.012284469790756702, + -0.023523207753896713, + -0.02725796215236187, + 0.024316124618053436, + -0.06504218280315399, + -0.05621667578816414, + 0.04748309403657913, + -0.0472072958946228, + 0.008905952796339989, + -0.00013762929302174598, + -0.010922720655798912, + 0.03865758329629898, + 0.05217164754867554, + 0.02983207069337368, + -0.07455719262361526, + -0.02725796215236187, + 0.019880386069417, + 0.059756070375442505, + -0.008808274753391743, + -0.04909191280603409, + 0.02015618234872818, + 0.029073627665638924, + 0.021224897354841232, + 0.02315547876060009, + 0.0353020504117012, + 0.0880252942442894, + 0.025649145245552063, + -0.024040328338742256, + -0.04649481922388077, + -0.04323121905326843, + -0.002940400969237089, + -0.0523095466196537, + -0.013031420297920704, + -0.007768289186060429, + 0.04424247518181801, + -0.03900232911109924, + -0.0952419862151146, + -0.023994361981749535, + -0.06835175305604935, + 0.02787850610911846, + 0.056906167417764664, + -0.06885737925767899, + 0.008475019596517086, + -0.11445586383342743, + 0.03670401871204376, + -0.024339107796549797, + -0.06200841814279556, + 0.0446561723947525, + -0.08071666210889816, + -0.031647734344005585, + 0.008440544828772545, + 0.009670141153037548, + 0.0646284893155098, + -0.07382173091173172, + 0.025120534002780914, + 0.07451122254133224, + 0.015961766242980957, + 0.025970907881855965, + -0.08623261004686356, + -0.03914022818207741, + 0.029924001544713974, + 0.040450263768434525, + -0.04088694229722023, + -0.01407715119421482, + -0.012744131498038769, + 0.04711536318063736, + 0.05966414138674736, + -0.030452612787485123, + -0.010043616406619549, + 0.04346105083823204, + 0.019742486998438835, + -0.01335318386554718, + -0.012077621184289455, + -0.020190658047795296, + 0.05162005126476288, + 0.004800595808774233, + -0.029924001544713974, + -0.027326911687850952, + -0.013640472665429115, + 0.01817963644862175, + 0.0017538982210680842, + 0.05814725533127785, + 0.030038917437195778, + -0.07924574613571167, + 0.02258090116083622, + 0.00014983906294219196, + 0.032819874584674835, + 0.0884389877319336, + -0.044104576110839844, + 0.054975587874650955, + -0.06559377908706665, + -0.02173052541911602, + 0.06963880360126495, + 0.008796783164143562, + -0.024752803146839142, + 0.030475595965981483, + 0.003137193853035569, + -0.0224315095692873, + 0.024270158261060715, + 0.03980673849582672, + 0.07115568965673447, + 0.024752803146839142, + -0.03893337771296501, + -0.028338167816400528, + -0.07520072162151337, + -0.0007049349369481206, + 0.027763590216636658, + 0.022443002089858055, + -0.009061088785529137, + -0.10195305198431015, + -0.027970438823103905, + -0.0001346666249446571, + 0.046471837908029556, + 0.052907105535268784, + 0.037922121584415436, + -0.007222440559417009, + 0.01447935588657856, + -0.07212097942829132, + 0.00554467411711812, + -0.012456842698156834, + 0.056676335632801056, + -0.039668839424848557, + 0.02415524236857891, + -0.052079714834690094, + 0.07474105805158615, + 0.02983207069337368, + -0.026844266802072525, + -0.027211995795369148, + -0.06968477368354797, + 0.06563974916934967, + -0.05594087764620781, + 0.0073143732734024525, + 0.016398444771766663, + -0.09161065518856049, + 0.0012884902535006404, + -0.03521011769771576, + -0.08664630353450775, + -0.01590430922806263, + 0.06596150994300842, + 0.03286584094166756, + -0.025924941524863243, + 0.018512891605496407, + 0.0463569238781929, + 0.06012380123138428, + -0.03371621295809746, + -0.007187965791672468, + -0.020788218826055527, + -0.019420722499489784, + 0.11794929206371307, + -0.00013502573710866272, + 0.04578234627842903, + 0.0312570221722126, + -0.04265664145350456, + -0.0012037401320412755, + 0.08958814293146133, + -0.02270730771124363, + -0.04913787916302681, + 0.031647734344005585, + -0.012284469790756702, + -0.08416412770748138, + 0.00936561543494463, + -0.06991460174322128, + 0.03484238684177399, + -0.04863224923610687, + 0.01665125973522663, + 0.09901121258735657, + -0.008865732699632645, + 0.08209565281867981, + 0.014939017593860626, + 0.04403562843799591, + -0.03863459825515747, + -0.03010786697268486, + -0.02190289832651615, + -0.004234637133777142, + -0.04463318735361099, + -0.03323356807231903, + 0.011916739866137505, + 0.03259004279971123, + -0.04456423968076706, + -0.009894226677715778, + 0.0338081456720829, + 0.006573168095201254, + -0.06954687833786011, + 0.026775317266583443, + 0.019363265484571457, + 0.02957925572991371, + -0.00936561543494463, + -0.08669227361679077, + -0.04169135168194771, + 0.058652881532907486, + 0.058882713317871094, + 0.0009092690888792276, + 0.003367024939507246, + -0.06108909100294113, + 0.014674711972475052, + 0.03776124119758606, + -0.02610880695283413, + -0.038749516010284424, + -0.006400794722139835, + 0.0027967565692961216, + -0.045000918209552765, + -0.05309097096323967, + 0.0463569238781929, + 0.04403562843799591, + 0.021512186154723167, + 0.08586487919092178, + -0.018168143928050995, + -0.025350363925099373, + 0.03268197551369667, + -0.010698635131120682, + -0.025097550824284554, + 0.018110686913132668, + -0.08554311841726303, + 0.028453083708882332, + 0.016743192449212074, + -0.003993314225226641, + -0.03300374001264572, + 0.01280158944427967, + 0.04371386393904686, + -0.027372878044843674, + -0.0387035496532917, + 0.0015599782345816493, + 0.048999980092048645, + 0.07437332719564438, + 0.04123168811202049, + 0.009595446288585663, + -0.027395861223340034, + 0.0036859153769910336, + 0.03971480578184128, + 0.017168378457427025, + -0.03458957374095917, + -0.05001123622059822, + -0.029119594022631645, + 0.05699810013175011, + -0.060353633016347885, + 0.0012741258833557367, + -0.018719738349318504, + 0.035348016768693924, + 0.01333020068705082, + 0.06131892278790474, + 0.01835200935602188, + 0.03353235125541687, + -0.05686020106077194, + 0.048999980092048645, + 0.02332785166800022, + 0.06393899768590927, + -0.015674477443099022, + 0.0387035496532917, + -0.016318004578351974, + 0.011549009941518307, + 0.0278555229306221, + -0.021041031926870346, + 0.09400089830160141, + -0.083336740732193, + -0.008308392018079758, + 0.0017567711183801293, + -0.027372878044843674, + -0.05203374847769737, + 0.0557110458612442, + -0.014628746546804905, + -0.010072345845401287, + 0.0300848837941885, + -0.039025310426950455, + 0.012571758590638638, + 0.0357157438993454, + -0.026844266802072525, + 0.036474186927080154, + -0.024752803146839142, + 0.01705346442759037, + 0.025741077959537506, + 0.021075507625937462, + -0.0017424066318199039, + 0.0952419862151146, + -0.03555486351251602, + 0.055802978575229645, + -0.05879078060388565, + -0.049551572650671005, + -0.02695918083190918, + 0.07046619802713394, + 0.06113505735993385, + -0.06894931197166443, + 6.37422053841874e-05, + 0.05598684400320053, + 0.06168665364384651, + -0.08301497250795364, + 0.034198857843875885, + 0.04858628287911415, + 0.026936199516057968, + 0.013042911887168884, + 0.023523207753896713, + -0.08540521562099457, + 0.03801405429840088, + 0.017248820513486862, + -0.0737757682800293, + -0.04895401373505592, + -0.018018754199147224, + -0.057273898273706436, + 0.015168849378824234, + -0.010520515963435173, + 0.01798427850008011, + 0.04968947172164917, + 0.045529529452323914, + -0.037048764526844025, + 0.08439396321773529, + 0.019995301961898804, + 0.02502860128879547, + -0.01336467545479536, + 0.014215050265192986, + -0.024591922760009766, + -0.0423118956387043, + 0.09115099161863327, + -0.06278984248638153, + 0.040151484310626984, + 0.002689023269340396, + -0.059480275958776474, + 0.014858577400445938, + -0.060077834874391556, + -0.047529060393571854, + 0.06076733022928238, + -0.000525020295754075, + -0.006228421349078417, + -0.07795868813991547, + -0.01898404397070408, + 0.00610776012763381, + -0.015191832557320595, + 0.012583250179886818, + 0.011882265098392963, + -0.040197450667619705, + 0.0073833223432302475, + -0.1399211436510086, + 0.045322682708501816, + -0.031073156744241714, + 0.0584690198302269, + 0.041070807725191116, + -0.04493197053670883, + -0.02313249558210373, + 0.027694640681147575, + -0.029372407123446465, + -0.05111442506313324, + -0.012445351108908653, + -0.010342396795749664, + 0.009020868688821793, + 0.1026885136961937, + -0.05644650384783745, + -0.020765235647559166, + -0.04624200612306595, + 0.015214814804494381, + -0.01998380944132805, + 0.01577790081501007, + -0.023649614304304123, + -0.07322417199611664, + -0.025741077959537506, + -0.030015934258699417, + -0.008946173824369907, + 0.01875421404838562, + -0.019489672034978867, + -0.0476209931075573, + -0.01792682148516178, + 0.039944637566804886, + -0.020627336576581, + -0.09197838604450226, + 0.0054153939709067345, + -0.034474655985832214, + -0.04176029935479164, + 0.01550210453569889, + 0.039944637566804886, + 0.00023162660363595933, + 0.058928679674863815, + 0.025488262996077538, + 0.11684610694646835, + -0.08342867344617844, + 0.020121708512306213, + -0.054975587874650955, + 0.04113975912332535, + 0.05598684400320053, + -0.041093792766332626, + 0.037623342126607895, + -0.05474575608968735, + -0.047850824892520905, + -0.00343884713947773, + -1.6148773283930495e-05, + -0.012847555801272392, + -0.003576745744794607, + -0.09041553735733032, + -0.025901958346366882, + 0.04665570333600044, + -0.025901958346366882, + -0.05341273546218872, + 0.06646713614463806, + -0.017490142956376076, + -0.023293375968933105, + -0.008635901845991611, + 0.029349423944950104, + 0.03291180729866028, + 0.009710361249744892, + 0.06026170030236244, + -0.03180861845612526 + ] + }, + { + "id": "fd7e8b7b-90d1-4e87-827f-bcab429dea5a", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "sgarcia", + "reviewDate": "2021-10-05T20:16:20", + "stars": 3, + "verifiedUser": false + }, + { + "id": "39ee8182-f75d-4a8f-9658-54798de75a64", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "lmorgan", + "reviewDate": "2021-04-14T05:59:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "4c3e0a54-2308-4ebf-b2fa-2c01f4212be7", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "kellyryan", + "reviewDate": "2022-01-15T06:46:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "76e78229-ba81-40d2-aaf8-c678a20e7045", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "knightjoseph", + "reviewDate": "2022-06-14T08:31:15", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6a2c11ab-2b3d-4882-a874-9739f55ae2ab", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "melissa88", + "reviewDate": "2021-08-04T03:35:56", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b9d36178-eeb8-4db1-aad8-489409dc68df", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "justin77", + "reviewDate": "2022-07-25T01:34:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "9ff4a5c0-2d50-46c6-b24f-81aa901b5a61", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "wonglisa", + "reviewDate": "2021-06-17T20:19:44", + "stars": 3, + "verifiedUser": false + }, + { + "id": "2b0b541c-1eb6-4e14-a5e3-9fbaf1a8164a", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "waynejohnson", + "reviewDate": "2021-03-09T03:45:48", + "stars": 2, + "verifiedUser": true + }, + { + "id": "b7a5d6a2-4e0b-49f3-bdbd-5519abe7d01d", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "riosronald", + "reviewDate": "2022-09-16T01:44:21", + "stars": 2, + "verifiedUser": true + }, + { + "id": "1fd4564e-624d-42c7-85e5-3ada014a8681", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "courtneyhenderson", + "reviewDate": "2022-07-07T18:16:00", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bbe936fb-faa7-4e7c-b3c7-8afa5e30f0f1", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "saragonzalez", + "reviewDate": "2021-10-20T19:10:16", + "stars": 3, + "verifiedUser": true + }, + { + "id": "aa3f51f7-1ad1-4f0c-96ba-c6cc6c09b0c2", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "clarkeconnor", + "reviewDate": "2022-05-21T22:50:09", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bfd8f027-b998-40cd-ba98-e815a8cdffeb", + "productId": "cc054247-7af0-47b4-9e4a-90c4782e9b18", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher66", + "reviewDate": "2021-07-08T22:44:19", + "stars": 2, + "verifiedUser": true + }, + { + "id": "258c8b4c-f4c1-448b-b897-8331061c48e0", + "productId": "258c8b4c-f4c1-448b-b897-8331061c48e0", + "category": "Electronics", + "docType": "product", + "name": "Premium Computer Mini (Gold)", + "description": "This Premium Computer Mini (Gold) is the latest entry in the popular 'Mini Computer' series of computers from Acer.\n\nThese computers feature multiple ports for connecting to USB 3.0, USB 2.0 and an RJ45 connector (included in the special bundle). This cable supports both 6-pin Power connectors and 3-pin VGA connectors, making them ideal for connecting to an SD", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2019-12-20T16:47:05", + "price": 335.95, + "stock": 67, + "priceHistory": [ + { + "priceDate": "2019-12-20T16:47:05", + "newPrice": 360.15 + }, + { + "priceDate": "2025-09-08T16:47:05", + "newPrice": 303.39 + }, + { + "priceDate": "2025-09-09T04:59:11.590625", + "newPrice": 335.95 + } + ], + "descriptionVector": [ + -0.05416999012231827, + 0.10710650682449341, + -0.03327805548906326, + 0.023089058697223663, + 0.009585107676684856, + -0.0020204533357173204, + -0.020031075924634933, + 0.064808689057827, + 0.03155633062124252, + 0.03890576958656311, + 0.05977201089262962, + -0.09374389052391052, + 0.07241509854793549, + -0.01714012585580349, + -0.0250806026160717, + 0.023063361644744873, + -0.019195912405848503, + 0.02568449079990387, + 0.005277590826153755, + 0.005065587814897299, + -0.002142515731975436, + -0.053707439452409744, + -0.03726114332675934, + 0.0053225611336529255, + 0.017050184309482574, + 0.006848340854048729, + -0.016240717843174934, + 0.004455276299268007, + 0.021354489028453827, + 0.04186096414923668, + 0.019028879702091217, + 0.017499888315796852, + -0.04039621725678444, + -0.061468034982681274, + -0.025311877951025963, + 0.01548264641314745, + -0.014506148174405098, + 0.006556033622473478, + 0.04869645833969116, + 0.012610969133675098, + -0.0027142814360558987, + 0.019555674865841866, + 0.018566327169537544, + 0.0045163072645664215, + 0.010079781524837017, + -0.01863057166337967, + -0.025299029424786568, + 0.04165538772940636, + 0.004484185483306646, + -0.05946364253759384, + 0.025774430483579636, + 0.04486755281686783, + 0.05637996271252632, + 0.07801712304353714, + -0.02244662493467331, + -0.018720511347055435, + 0.008550789207220078, + 0.19828066229820251, + 0.0012583666248247027, + -0.03404897451400757, + 0.041012953966856, + 0.04789983853697777, + 0.020840542390942574, + -0.01651054061949253, + -0.00984850525856018, + 0.021290244534611702, + -0.07776014506816864, + 0.024412471801042557, + 0.02654535137116909, + 0.03106808289885521, + -0.052191294729709625, + -0.031916096806526184, + 0.05900109186768532, + -0.01625356636941433, + 0.02325609140098095, + 0.04201515018939972, + 0.04550998657941818, + 0.06408916413784027, + 0.028909506276249886, + -0.04170678183436394, + 0.06475729495286942, + -0.023628702387213707, + 0.036747194826602936, + -0.04856796935200691, + 0.019786950200796127, + -0.018219413235783577, + -0.006681308150291443, + -0.1264309138059616, + 0.013414011336863041, + 0.015148581005632877, + 0.0005906372680328786, + 0.09338413178920746, + 0.08860442787408829, + -0.026082798838615417, + 0.006970403250306845, + 0.025016359984874725, + 0.005014193244278431, + 0.04324861988425255, + -0.0072402250953018665, + -0.028729625046253204, + 0.03132505714893341, + -0.04998132586479187, + 0.039676692336797714, + 0.020031075924634933, + 0.014300568960607052, + 0.0864972397685051, + 0.04353129118680954, + -0.009231769479811192, + -0.004786129575222731, + -0.09657059609889984, + -0.05334767699241638, + 0.028601137921214104, + 0.015148581005632877, + 0.017666921019554138, + 0.005486381705850363, + 0.023551611229777336, + -0.03464001417160034, + -0.021071817725896835, + -0.052422571927309036, + 0.03769799694418907, + 0.01545694936066866, + 0.03276410698890686, + 0.010336754843592644, + -0.015765316784381866, + -0.04507313296198845, + -0.00813963171094656, + -0.07560157030820847, + 0.06342103332281113, + 0.05653414502739906, + -0.05188292637467384, + -0.08459564298391342, + 0.019979681819677353, + 0.022922025993466377, + 0.06784097850322723, + -0.015110035426914692, + 0.028395559638738632, + 0.011711562052369118, + 0.058487143367528915, + -0.013362616300582886, + -0.0312222670763731, + -0.047540076076984406, + -0.011075553484261036, + -0.0415525957942009, + -0.028446953743696213, + -0.11646033823490143, + -0.005373956169933081, + -0.013092794455587864, + 0.03623324632644653, + -0.07534459978342056, + 0.0509578213095665, + 0.006662034895271063, + 0.004831099882721901, + 0.005287227686494589, + -0.0836191400885582, + 0.05034108832478523, + 0.05576322600245476, + -0.055197883397340775, + -0.0043974569998681545, + -0.02191982977092266, + 0.05267954617738724, + 0.006495002191513777, + -0.023975616320967674, + -0.003030679887160659, + -0.021367337554693222, + 0.022086862474679947, + 0.01926015503704548, + 0.03453722223639488, + -0.008094661869108677, + -0.11820776015520096, + 0.028652532026171684, + 0.022061165422201157, + -0.03700416907668114, + 0.02419404499232769, + -0.0736999660730362, + 0.06881747394800186, + 0.05442696437239647, + 0.02396276779472828, + 0.038006365299224854, + 0.006475729402154684, + -0.09220205247402191, + 0.02662244252860546, + 0.05745925009250641, + -0.07750317454338074, + 0.044225119054317474, + -0.0014045201241970062, + 0.017512736842036247, + 0.030502742156386375, + -0.031813304871320724, + 0.0006432365044020116, + -0.024964964017271996, + 0.036952774971723557, + -0.01630496233701706, + -0.013439708389341831, + -0.04962155967950821, + 0.05889829993247986, + 0.047642868012189865, + 0.013632438145577908, + 0.06753260642290115, + -0.020763449370861053, + 0.013073520734906197, + -0.005094497464597225, + 0.05894969403743744, + 0.020519325509667397, + -0.003645810065791011, + 0.06280429661273956, + -0.04034482315182686, + -0.013683833181858063, + -0.04879924654960632, + -0.01059372816234827, + 0.04240060970187187, + 0.028883809223771095, + -0.025221938267350197, + -0.0030338920187205076, + 0.010272511281073093, + 0.1262253224849701, + 0.033380843698978424, + 0.04096155986189842, + 0.07986733317375183, + -0.07087326049804688, + -0.04011354595422745, + 0.019825497642159462, + 0.005168377421796322, + -0.033457934856414795, + -0.0038674494717270136, + -0.02325609140098095, + -0.041398413479328156, + 0.03299538418650627, + -0.01805238053202629, + 0.03564221039414406, + 0.04574126377701759, + -0.10027101635932922, + -0.005033466499298811, + -0.02310190722346306, + 0.02053217403590679, + -0.06085129827260971, + 0.03466571122407913, + 0.013362616300582886, + -0.010394573211669922, + -0.05021259933710098, + 0.09734152257442474, + -0.02813858538866043, + 0.04394244775176048, + -0.09908893704414368, + -0.06378079205751419, + -0.022009771317243576, + -0.018219413235783577, + 0.07251789420843124, + 0.0079019321128726, + -0.07544738799333572, + 0.0033021080307662487, + -0.0739569440484047, + -0.06938281655311584, + -0.025723036378622055, + 0.052345480769872665, + -0.0817689299583435, + 0.07519041746854782, + 0.07781153917312622, + -0.0368499830365181, + -0.04201515018939972, + -0.01701163873076439, + -0.044636279344558716, + -0.02424543909728527, + -0.0650656595826149, + -0.0061480882577598095, + -0.09235623478889465, + 0.05103491619229317, + 0.05900109186768532, + -0.06861189752817154, + 0.03399758040904999, + 0.015341311693191528, + 0.030117280781269073, + -0.039650995284318924, + 0.01390225999057293, + 0.047617167234420776, + -0.038083456456661224, + -0.030348557978868484, + -0.011165494099259377, + 0.022086862474679947, + -0.03281550109386444, + -0.047591470181941986, + 0.03250713273882866, + -0.013645286671817303, + 0.043634083122015, + -0.044661976397037506, + -0.01868196576833725, + -0.052216991782188416, + -0.024540958926081657, + -0.011261858977377415, + -0.006417910568416119, + -0.02513199672102928, + 0.014943002723157406, + 0.016651876270771027, + 0.011929989792406559, + 0.04401954263448715, + 0.00973286759108305, + -0.021521521732211113, + -0.020814845338463783, + 0.07113023102283478, + -0.0013699893606826663, + 0.024990662932395935, + -0.006491790059953928, + 0.009045463055372238, + -0.008627881295979023, + 0.03726114332675934, + -0.016780361533164978, + 0.07781153917312622, + -0.07991872727870941, + 0.030425649136304855, + 0.04864506423473358, + 0.056739725172519684, + 0.036053366959095, + -0.004943525418639183, + -0.10392003506422043, + -0.020262351259589195, + 0.033432237803936005, + -0.028601137921214104, + 0.025440365076065063, + 0.0028138586785644293, + -0.009032614529132843, + -0.027419060468673706, + 0.020622113719582558, + -0.046152420341968536, + -0.12745879590511322, + 0.06732703000307083, + 0.030194373801350594, + 0.010516636073589325, + -0.055197883397340775, + 0.05458114668726921, + -0.021418731659650803, + -0.020686358213424683, + -0.015534041449427605, + -0.09148252755403519, + 0.04360838234424591, + 0.021071817725896835, + 0.05039248242974281, + -0.04057609662413597, + -0.03464001417160034, + 0.09574828296899796, + 0.01845068857073784, + 0.06969118118286133, + 0.02341027557849884, + -0.014364812523126602, + -0.007362287491559982, + -0.014724574983119965, + -0.011698713526129723, + -0.023834282532334328, + -0.050829336047172546, + -0.05715088173747063, + 0.02009531855583191, + -0.02095617912709713, + 0.001597250229679048, + -0.05602020025253296, + 0.010831428691744804, + -0.013748076744377613, + 0.08824466168880463, + -0.07426530867815018, + 0.04658927395939827, + 0.010831428691744804, + -0.008769216947257519, + 0.03888007253408432, + -0.0321473702788353, + -0.06537403166294098, + 0.07051350176334381, + 0.08773071318864822, + -0.042991649359464645, + 0.012122719548642635, + -0.025144845247268677, + 0.026853719726204872, + -0.042683281004428864, + 0.06033735349774361, + -0.004586975090205669, + 0.015508344396948814, + -0.06342103332281113, + 0.05499230697751045, + 0.006886886898428202, + 0.05787040665745735, + 0.0512147955596447, + 0.01688315160572529, + -0.019953982904553413, + 0.012007081881165504, + -0.05874411761760712, + 0.002609885996207595, + -0.02664813958108425, + -0.04538150131702423, + 0.08577771484851837, + -0.07842827588319778, + 0.013581044040620327, + 0.02323039434850216, + 0.013658135198056698, + -0.0068740383721888065, + 0.047565773129463196, + -0.022870631888508797, + 0.004127635154873133, + 0.049364589154720306, + 0.0023946708533912897, + -0.058538537472486496, + 0.01706303283572197, + 0.03941971808671951, + 0.024964964017271996, + 0.019928285852074623, + 0.044559184461832047, + 0.014300568960607052, + -0.03492268547415733, + -0.01845068857073784, + -0.04684624820947647, + -0.07061628997325897, + -0.045612774789333344, + 0.06439752876758575, + 0.008415878750383854, + -0.006951129995286465, + 0.0005709627293981612, + -0.058692723512649536, + 0.011351799592375755, + -0.02811288833618164, + 0.025748733431100845, + -0.016009442508220673, + 0.06300987303256989, + 0.01557258702814579, + 0.0870111882686615, + 0.011422467418015003, + 0.04877354949712753, + -0.01711442694067955, + -0.05416999012231827, + -0.035179655998945236, + 0.004744371399283409, + 0.012264055199921131, + -0.0462552085518837, + 0.012501755729317665, + -0.0034241704270243645, + -0.04250339791178703, + 0.023821434006094933, + -0.08397890627384186, + 0.0005215756827965379, + -0.0376209057867527, + -0.006215543951839209, + 0.0023448821157217026, + 0.039522506296634674, + 0.004998132586479187, + -0.06547681987285614, + 0.0692286342382431, + -0.03574499860405922, + -0.07883943617343903, + 0.014069292694330215, + 0.053810227662324905, + -0.05648275092244148, + -0.013889411464333534, + -0.02947484701871872, + -0.012257630936801434, + 0.06650471687316895, + 0.005380380433052778, + -0.10160727798938751, + -0.013799470849335194, + -0.04407093673944473, + -0.027341969311237335, + 0.04622951149940491, + 0.06085129827260971, + 0.016369204968214035, + 0.08140917122364044, + 0.03466571122407913, + 0.05262814834713936, + 0.027136389166116714, + 0.023076210170984268, + -0.03325235843658447, + 0.003549444954842329, + -0.0650656595826149, + -0.047257404774427414, + -0.033457934856414795, + -0.03541093319654465, + -0.03620754927396774, + 0.0561743825674057, + -0.017384249716997147, + -0.0060838451609015465, + 0.04080737382173538, + -0.019324399530887604, + 0.059977587312459946, + -0.028626834973692894, + 0.017525585368275642, + -0.014017898589372635, + 0.019928285852074623, + -0.0034852016251534224, + -0.008968370966613293, + 0.05283372849225998, + 0.009764988906681538, + 0.05111200734972954, + 0.06388358771800995, + -0.007747747469693422, + -0.03140214830636978, + 0.04332571476697922, + 0.06342103332281113, + 0.06686447560787201, + -0.007362287491559982, + 0.02432253211736679, + 0.03327805548906326, + -0.04669206589460373, + -0.033663515001535416, + -0.003632961306720972, + -0.0033149567898362875, + 0.042991649359464645, + 0.053810227662324905, + 0.09338413178920746, + -0.030656924471259117, + 0.029037993401288986, + -0.04720601066946983, + 0.06208477169275284, + -0.030271464958786964, + 0.01242466364055872, + 0.03099098987877369, + 0.08762792497873306, + -0.024785082787275314, + -0.030451346188783646, + 0.008435151539742947, + -0.05103491619229317 + ] + }, + { + "id": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "product", + "name": "Awesome TV Ultra (Silver)", + "description": "This Awesome TV Ultra (Silver) is an amazing TV Ultra that offers a high quality surround broadcast TV. It offers a great performance against other quality signals, high bandwidths, and high quality, high quality signal. The show is great for fans of low-cost and portable HD TV. It is in the form of the 4K and HDR-High", + "countryOfOrigin": "China", + "rareItem": false, + "firstAvailable": "2020-08-08T14:07:02", + "price": 729.17, + "stock": 87, + "priceHistory": [ + { + "priceDate": "2021-01-29T21:03:54", + "newPrice": 800.94 + }, + { + "priceDate": "2021-04-26T21:03:54", + "newPrice": 729.17 + } + ], + "descriptionVector": [ + 0.07338270545005798, + 0.02259453944861889, + -0.035873785614967346, + -0.007481963839381933, + -0.001131120603531599, + -0.021442515775561333, + -0.08512591570615768, + 0.008987028151750565, + 0.008856960572302341, + 0.034932348877191544, + -0.015298386104404926, + -0.07789169996976852, + 0.08636465668678284, + 0.04618006944656372, + -0.008088944479823112, + -0.0011241526808589697, + 0.023969536647200584, + -0.0019045561784878373, + 0.008534888736903667, + 0.04070485755801201, + 0.06114399433135986, + 0.005552632734179497, + 0.023077646270394325, + -0.015645232051610947, + -0.04414854198694229, + -0.002441857708618045, + -0.039243146777153015, + 0.03349541500210762, + 0.003991825971752405, + -0.04610574245452881, + 0.015112576074898243, + 0.0021600453183054924, + -0.003168066730722785, + 0.0075562880374491215, + -0.012932401150465012, + 0.014679018408060074, + 0.02762380614876747, + 0.013081049546599388, + 0.010145246051251888, + -0.004766035825014114, + 0.03567558899521828, + 0.006998857017606497, + 0.0073209283873438835, + 0.04573412239551544, + 0.026855790987610817, + -0.054900769144296646, + -0.019076529890298843, + 0.004131183493882418, + 0.01108668465167284, + -0.0041095055639743805, + -0.0434548482298851, + -0.028094526380300522, + -0.027425609529018402, + -0.015285998582839966, + -0.027921102941036224, + -0.00666439812630415, + 0.03077019564807415, + 0.09716643393039703, + 0.06887370347976685, + 0.025394082069396973, + -0.028788218274712563, + -0.02556750550866127, + 0.06555389612913132, + 0.029531460255384445, + -0.0012178320903331041, + -0.017255589365959167, + 0.01858103647828102, + 0.00048504245933145285, + -0.030646322295069695, + 0.0037688533775508404, + 0.0201418437063694, + -0.020909858867526054, + 0.11148621886968613, + 0.06877461075782776, + -0.012796140275895596, + 0.1040538027882576, + 0.004072343930602074, + 0.020092293620109558, + 0.0056888940744102, + 0.016735319048166275, + 0.04224088788032532, + 0.035427842289209366, + -0.018320901319384575, + 0.02195039764046669, + 0.0669412761926651, + 0.08215295523405075, + -0.023697014898061752, + -0.11247720569372177, + -0.03963954374194145, + 0.08527456969022751, + -0.014072038233280182, + 0.07055838406085968, + 0.022123821079730988, + -0.0647115558385849, + 0.04518907889723778, + 0.0602521076798439, + -0.08859437704086304, + 0.043108005076646805, + -0.06173858791589737, + 0.038599006831645966, + 0.06912145018577576, + -0.05247284471988678, + 0.016066402196884155, + -0.08487816900014877, + 0.013749966397881508, + -0.011916637420654297, + -0.01688396744430065, + 0.057378239929676056, + -0.004920877516269684, + -0.12387357652187347, + -0.004326284397393465, + -0.05232419818639755, + 0.05405842885375023, + -0.026162099093198776, + 0.03230622783303261, + 0.019262339919805527, + -0.04994582384824753, + -0.014988702721893787, + -0.04350439831614494, + -0.008454371243715286, + -0.01972067356109619, + -0.016140727326273918, + -0.024824263527989388, + 0.038599006831645966, + -0.01869252137839794, + 0.006751109845936298, + -0.02626119740307331, + 0.12724293768405914, + 0.04618006944656372, + 0.01602924056351185, + -0.06540524959564209, + 0.0156204579398036, + 0.028887316584587097, + 0.027722906321287155, + -0.06198633462190628, + 0.014691405929625034, + -0.025072012096643448, + 0.01057260949164629, + 0.017961667850613594, + -0.014901991002261639, + -0.016958292573690414, + 0.015038251876831055, + 0.0615403912961483, + -0.022346792742609978, + -0.027921102941036224, + 0.023474041372537613, + -0.014877215959131718, + -0.03874765336513519, + -0.023052871227264404, + 0.0025425050407648087, + 0.09345022588968277, + -0.09756282716989517, + -0.06357191503047943, + -0.02058778703212738, + 0.01413397490978241, + 0.058468326926231384, + 0.006825434044003487, + 0.0074633825570344925, + 0.005760121159255505, + 0.07229261845350266, + -0.008516307920217514, + -0.04818682000041008, + -0.056436799466609955, + 0.0050912038423120975, + 0.04947510361671448, + -0.02409341000020504, + 0.07818900048732758, + 0.013167761266231537, + -0.055544909089803696, + 0.031810734421014786, + 0.048285920172929764, + -0.03622063249349594, + 0.03193460777401924, + -0.022247694432735443, + -0.012882851995527744, + -0.0019990098662674427, + 0.04385124519467354, + 0.0014307397650554776, + -0.10132858157157898, + -0.0615403912961483, + -0.0881979838013649, + 0.026533719152212143, + -0.02876344323158264, + -0.009860336780548096, + 0.03054722398519516, + 0.08522501587867737, + 0.0710538849234581, + 0.04209224134683609, + -0.04461926221847534, + 0.0466260127723217, + -0.002666378626599908, + -0.006224647164344788, + -0.04598186910152435, + -0.05698184296488762, + -0.005484502296894789, + -0.026409845799207687, + 0.03498189523816109, + -0.03644360601902008, + -0.02478710189461708, + 0.029060740023851395, + 0.004998298827558756, + 0.026806240901350975, + 0.10871145129203796, + -0.030225152149796486, + 0.00571676529943943, + -0.021801749244332314, + 0.053513385355472565, + 0.03547739237546921, + 0.008522502146661282, + 0.052373748272657394, + -0.049177806824445724, + -0.03572513908147812, + -0.009389616549015045, + 0.049177806824445724, + 0.04684898629784584, + -0.0020826244726777077, + -0.01824657805263996, + -0.05143230780959129, + -0.042686834931373596, + -0.01911369152367115, + 0.09176554530858994, + -0.018816396594047546, + 0.03825215995311737, + -0.024997686967253685, + -0.009284324012696743, + -0.06263048201799393, + 0.051729604601860046, + -0.02420489676296711, + 0.02253260277211666, + -0.02208665758371353, + -0.12466636300086975, + -0.06614848971366882, + -0.04110125079751015, + 0.02342449314892292, + 0.006116257514804602, + 0.03446162864565849, + -0.03706297278404236, + -0.014889603480696678, + -0.04087827727198601, + 0.03552694246172905, + -0.0650584027171135, + 0.0037595629692077637, + -0.04427241533994675, + -0.01924995332956314, + 0.06763496994972229, + -0.01236877590417862, + 0.051680054515600204, + 0.043330974876880646, + -0.05455392226576805, + -0.0192004032433033, + -0.038103509694337845, + -0.014852441847324371, + -0.02782200463116169, + 0.04095260426402092, + -0.013056274503469467, + 0.033619288355112076, + 0.06327462196350098, + -0.016128338873386383, + 0.03463505208492279, + -0.04722060635685921, + -0.05653589963912964, + -0.009575427509844303, + 0.020166616886854172, + -0.04404944181442261, + -0.025691378861665726, + 0.039490893483161926, + 0.016784869134426117, + -0.07239171862602234, + -0.0013742224546149373, + 0.032430101186037064, + -0.07506738603115082, + 0.027747679501771927, + -0.03012605383992195, + 0.0012038962449878454, + -0.005050945095717907, + 0.013923389837145805, + -0.028416598215699196, + 0.04771609976887703, + -0.01596730388700962, + 0.04486700892448425, + 0.1116844117641449, + 0.01835806295275688, + 0.0458579957485199, + 0.02462606690824032, + 0.08542321622371674, + -0.029085515066981316, + 0.029234163463115692, + -0.013811903074383736, + 0.06956739723682404, + -0.015930142253637314, + -0.021776974201202393, + -0.005140753462910652, + 0.05016879737377167, + -0.028664344921708107, + 0.07402684539556503, + 0.008144687861204147, + 0.01683441922068596, + -0.04325665161013603, + 0.0605989508330822, + -0.0326530747115612, + 0.008349078707396984, + 0.03143911436200142, + -0.007178473751991987, + -0.06312597543001175, + -0.10296371579170227, + 0.06357191503047943, + -0.0726890116930008, + 0.04575889930129051, + -0.02554273046553135, + -0.02536930702626705, + 0.06243228167295456, + 0.00053110794397071, + 0.002618377562612295, + -0.04699763283133507, + 0.06183768808841705, + -0.014344559982419014, + -0.02192562259733677, + 0.0317116342484951, + 0.009160450659692287, + 0.023164357990026474, + -0.008392434567213058, + 0.01187947578728199, + -0.10435109585523605, + 0.08740518987178802, + 0.016921130940318108, + -0.037434592843055725, + 0.03939179703593254, + -0.02150445245206356, + 0.010876099579036236, + 0.013663254678249359, + 0.0010211827466264367, + 0.010622158646583557, + 0.02214859426021576, + 0.04660123959183693, + 0.11465737968683243, + -0.04722060635685921, + 0.013626093044877052, + 0.007884552702307701, + 0.039466120302677155, + 0.0551980659365654, + 0.06352236866950989, + -0.0030999360606074333, + 0.0380539633333683, + -0.0352296456694603, + -0.022185757756233215, + -0.07600882649421692, + -0.06258092820644379, + -0.014096812345087528, + 0.005552632734179497, + 0.0030178700108081102, + 0.0015368064632639289, + -0.005976899992674589, + 0.0030565804336220026, + 0.07021154463291168, + 0.10960333794355392, + -0.0037162071093916893, + -0.01864297315478325, + 0.0282431747764349, + 0.015880592167377472, + -0.009878917597234249, + 0.004474932793527842, + -0.011563598178327084, + -0.05356293171644211, + 0.05118456110358238, + -0.09855381399393082, + 0.036319732666015625, + -0.032231904566287994, + 0.030026953667402267, + -0.011966187506914139, + -0.008051781915128231, + 0.034957122057676315, + -0.03255397453904152, + -0.08904032409191132, + 0.05995481088757515, + -0.043999891728162766, + 0.02598867565393448, + -0.0048868125304579735, + -0.05267104506492615, + 0.0061193546280264854, + 0.05083771422505379, + -0.04134899750351906, + 0.05143230780959129, + -0.012288258410990238, + 0.024081023409962654, + 0.07149982452392578, + 0.043306201696395874, + -0.07605837285518646, + -0.05366203188896179, + -0.05693229287862778, + -0.0018472647061571479, + -0.03005172871053219, + 0.040605757385492325, + -0.0006867241463623941, + -0.017986442893743515, + 0.06129264459013939, + 0.03780621290206909, + 0.008603019639849663, + 0.0384008064866066, + 0.006614848971366882, + -0.02715308777987957, + -0.0008678892045281827, + 0.04246386140584946, + 0.07229261845350266, + -0.01739184930920601, + -0.06045030429959297, + -0.016239825636148453, + -0.013229697942733765, + 0.05955841392278671, + -0.03101794235408306, + -0.07858539372682571, + -0.040803954005241394, + -0.06827910989522934, + -0.02112044394016266, + -0.0013060920173302293, + 0.04385124519467354, + 0.10256731510162354, + 0.10004029422998428, + 0.019819771870970726, + 0.08453132957220078, + -0.06129264459013939, + 0.04338052496314049, + 0.11079252511262894, + 0.04930168390274048, + 0.013452669605612755, + 0.0030054824892431498, + 0.041051700711250305, + 0.012176772579550743, + -0.03319811820983887, + -0.02987830527126789, + -0.06936920434236526, + 0.06515750288963318, + -0.07913044095039368, + 0.038128286600112915, + -0.02156638912856579, + -0.04858321696519852, + 0.05524761229753494, + 0.015335548669099808, + 0.05762598663568497, + -0.014505594968795776, + 0.006466200575232506, + -0.04409899190068245, + -0.034486401826143265, + -0.03560126572847366, + 0.015843430534005165, + -0.07660342007875443, + -0.07437369227409363, + 0.027673356235027313, + -0.010046146810054779, + 0.04999537393450737, + 0.007432414218783379, + -0.012461681850254536, + -0.03007650375366211, + 6.827562901889905e-05, + -7.93081198935397e-05, + -0.0033600707538425922, + 0.05762598663568497, + 0.04360349848866463, + 0.06203588470816612, + -0.016264600679278374, + 0.026781465858221054, + 0.01913846656680107, + 0.08299529552459717, + 0.02038959041237831, + -0.030373800545930862, + -0.019150855019688606, + -0.006862596143037081, + -0.037682339549064636, + 0.043826472014188766, + 0.005317273084074259, + 0.019522475078701973, + -0.03530396893620491, + -0.08453132957220078, + -0.06218453496694565, + 0.01513735018670559, + -0.011427337303757668, + -0.01772630773484707, + 0.021690262481570244, + -0.011625534854829311, + 0.012263483367860317, + 0.028812993317842484, + 0.0192004032433033, + 0.0025239239912480116, + 0.025332145392894745, + 0.06664398312568665, + 0.048310693353414536, + -0.01368802972137928, + 0.018370451405644417, + 0.05638724938035011, + -0.020736435428261757, + 0.0015530649106949568, + 0.0811619684100151, + -0.014307397417724133, + 0.018519099801778793, + -0.03978819027543068, + -0.08324304223060608, + 0.007946489378809929, + 0.019956031814217567, + 0.013130598701536655, + -0.010008984245359898, + 0.08611690998077393, + -0.05812148004770279, + 0.057130493223667145, + -0.08453132957220078, + 0.041522420942783356, + -0.01627698726952076, + -0.01661144569516182, + 0.05475211888551712, + 0.041274674236774445, + -0.05787373334169388, + 0.018011217936873436, + 0.06114399433135986, + 0.05608995258808136 + ] + }, + { + "id": "ef1af379-c9bb-45e2-8404-054db4877714", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "carlbryant", + "reviewDate": "2022-10-25T15:21:00", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2dfe49ec-0dfe-4cd6-b44e-8b663b1a54dc", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "ehorn", + "reviewDate": "2021-06-19T18:14:39", + "stars": 1, + "verifiedUser": false + }, + { + "id": "08886793-1227-43c6-903c-c5d4ff34e447", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "tevans", + "reviewDate": "2022-02-03T16:24:27", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d60a038f-ee39-46d0-818a-3381f35bc0f7", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "ramosjose", + "reviewDate": "2021-04-28T05:50:18", + "stars": 1, + "verifiedUser": true + }, + { + "id": "894d7b59-e265-46ae-a00f-ef39e91ea831", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "melanieshort", + "reviewDate": "2021-12-02T23:22:35", + "stars": 1, + "verifiedUser": true + }, + { + "id": "d5859dcb-b2fa-4ce2-96e1-5e658e89998b", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "caitlin86", + "reviewDate": "2021-01-29T21:03:54", + "stars": 1, + "verifiedUser": false + }, + { + "id": "aa8fa127-7e75-43c7-a4ed-d7d15fa5bb62", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "huntmelissa", + "reviewDate": "2021-08-31T05:21:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "161c33b2-406a-451d-9883-15b722becd5f", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "acostajonathan", + "reviewDate": "2022-01-17T15:47:07", + "stars": 1, + "verifiedUser": true + }, + { + "id": "02e565dc-e14b-4c90-92ce-2265723615e6", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "robertosimmons", + "reviewDate": "2021-03-11T21:04:33", + "stars": 1, + "verifiedUser": false + }, + { + "id": "3ca4dfde-0d16-46f7-a35a-1c4f5691e568", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "bsmith", + "reviewDate": "2021-08-28T10:55:10", + "stars": 1, + "verifiedUser": true + }, + { + "id": "681f05eb-1c41-434f-bee1-0129d36a4ce3", + "productId": "4e3d5ca9-8a8c-4c1a-b8d0-2ba865be28f9", + "category": "Media", + "docType": "customerRating", + "userName": "enorman", + "reviewDate": "2022-11-08T22:39:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "product", + "name": "Basic Computer Micro (Silver)", + "description": "This Basic Computer Micro (Silver) is designed to run more than two Windows computers at once and is not as light-weight as its larger sibling. The motherboard features four USB ports for connecting to external devices. It is very compact, with no need to store anything. All other components are compatible with Windows 2.x and 1.x operating systems using the same USB ports.\n\nThe base PC is equipped with a 5.8-inch, 16K VESA-ready HD webcam", + "countryOfOrigin": "Egypt", + "rareItem": false, + "firstAvailable": "2019-01-06T07:49:23", + "price": 762.31, + "stock": 56, + "priceHistory": [ + { + "priceDate": "2021-01-20T22:30:30", + "newPrice": 795.36 + }, + { + "priceDate": "2021-07-15T22:30:30", + "newPrice": 724.31 + }, + { + "priceDate": "2022-01-07T22:30:30", + "newPrice": 833.82 + }, + { + "priceDate": "2022-07-02T22:30:30", + "newPrice": 784.93 + }, + { + "priceDate": "2022-12-25T22:30:30", + "newPrice": 731.53 + }, + { + "priceDate": "2025-08-25T22:30:30", + "newPrice": 762.31 + } + ], + "descriptionVector": [ + -0.0016470045084133744, + 0.04285385087132454, + -0.04458019137382507, + 6.90714514348656e-05, + 0.03186112642288208, + 0.017821921035647392, + 0.007051337510347366, + 0.04259997978806496, + 0.02744372934103012, + 0.05255182087421417, + 0.03518687188625336, + -0.08565692603588104, + 0.013582234270870686, + -0.07402952015399933, + -0.028459222987294197, + 0.00714019313454628, + -0.07697445154190063, + 0.00679746363312006, + -0.0145469531416893, + 0.04026434198021889, + 0.07448649406433105, + -0.005331343971192837, + -0.07504501193761826, + 0.04011201858520508, + 0.00045022883568890393, + -0.009012510068714619, + 0.012477884069085121, + 0.015270492993295193, + -0.047042764723300934, + -0.0012860280694440007, + 0.024346470832824707, + 0.009488523006439209, + -0.047423575073480606, + -0.04485945403575897, + 0.03264813497662544, + -0.08428601175546646, + -0.01661602221429348, + -0.09134369343519211, + 0.049099139869213104, + -0.019383244216442108, + 0.03333359584212303, + 0.05351654067635536, + 0.011379880830645561, + -0.02004331536591053, + 0.021909285336732864, + 0.07037374377250671, + -0.04430093243718147, + 0.008663434535264969, + -0.0021404712460935116, + -0.06362070888280869, + 0.0763651579618454, + 0.006981521844863892, + 0.025920487940311432, + 0.0700690969824791, + 0.03909652307629585, + -0.007032296620309353, + 0.01563861034810543, + 0.16989216208457947, + 0.035923104733228683, + -0.07387720048427582, + 0.025235028937458992, + 0.006464254576712847, + -0.03498377278447151, + -0.012452496215701103, + -0.056207600980997086, + 0.011360840871930122, + -0.06813965737819672, + 0.08281354606151581, + 0.07900544255971909, + -0.0215411689132452, + -0.04696660488843918, + -0.04036588966846466, + 0.025590451434254646, + -0.0035478826612234116, + 0.033130496740341187, + -0.005331343971192837, + 0.0700690969824791, + -0.003487587673589587, + 0.0832197442650795, + -0.04752512648701668, + 0.03432369977235794, + -0.015194330364465714, + 0.011233903467655182, + 0.0005958094261586666, + 0.05585217475891113, + -0.05102857947349548, + 0.04541797563433647, + -0.10865787416696548, + 0.022213933989405632, + 0.04788054898381233, + 0.022061610594391823, + 0.09032820165157318, + 0.10611913353204727, + 0.009558338671922684, + 0.006530896760523319, + -0.0215411689132452, + -0.061437394469976425, + 0.02774837613105774, + 0.0024514661636203527, + -0.06570246815681458, + 0.08794178813695908, + -0.01730148121714592, + -0.033435143530368805, + -0.06890127807855606, + 0.007279823534190655, + 0.014331161044538021, + 0.08586002886295319, + 0.027088304981589317, + -0.01676834747195244, + -0.10175251215696335, + -0.06219901517033577, + -0.02236625738441944, + -0.03305433318018913, + -0.008904614485800266, + 0.004944187123328447, + 0.015867095440626144, + -0.036050040274858475, + 0.009869333356618881, + -0.04046744108200073, + 0.00419208686798811, + 0.09373010694980621, + 0.033130496740341187, + 0.027291404083371162, + -0.02691059373319149, + -0.0900743305683136, + -0.009234650060534477, + -0.07113536447286606, + 0.005537616554647684, + 0.02703753113746643, + 0.012465190142393112, + -0.03264813497662544, + 0.05737541615962982, + -0.0004764095356222242, + -0.012078032828867435, + -0.06803810596466064, + -0.02141423150897026, + 0.0447579026222229, + 0.10774392634630203, + -0.0038779182359576225, + 0.037268634885549545, + -0.013975737616419792, + 0.030414048582315445, + -0.059254080057144165, + -0.02349599450826645, + -0.0702214166522026, + -0.053211890161037445, + -0.07976706326007843, + 0.04135599732398987, + -0.002002427354454994, + 0.07443571835756302, + -0.058289363980293274, + -0.007178273983299732, + -0.021655412390828133, + -0.0398581437766552, + 0.01892627216875553, + 0.04039127752184868, + 0.012598473578691483, + 0.05163787677884102, + 0.012224010191857815, + 0.04491022601723671, + 0.013417216017842293, + 0.016704877838492393, + -0.020068703219294548, + -0.005867652129381895, + 0.042650751769542694, + 0.00017622392624616623, + 0.03607542812824249, + 0.05437970906496048, + -0.08271199464797974, + -0.0043031563982367516, + -0.07519733905792236, + 0.07220163196325302, + 0.022277401760220528, + -0.025070011615753174, + 0.06301140785217285, + 0.05095241591334343, + -0.004509428516030312, + 0.04150832071900368, + -0.026148973032832146, + -0.1186097115278244, + -0.004925146698951721, + 0.015994032844901085, + -0.06301140785217285, + 0.04061976447701454, + 0.04259997978806496, + -0.010694422759115696, + -0.004211127292364836, + 0.02155386283993721, + -0.03046482428908348, + -0.010034351609647274, + 0.05889865756034851, + -0.028053024783730507, + 0.04805826023221016, + 0.01426769234240055, + 0.041812971234321594, + -0.01660332828760147, + -0.020119477063417435, + 0.05900020897388458, + -0.01140526868402958, + 0.04328543692827225, + -0.039604268968105316, + -0.004163525998592377, + -0.0009036310948431492, + 0.01551167294383049, + 0.037167083472013474, + -0.019725972786545753, + -0.04722047597169876, + -0.017098382115364075, + 0.03787793219089508, + -0.05295801907777786, + 0.035491518676280975, + -0.02637745998799801, + 0.008803064934909344, + 0.0023737174924463034, + 0.07656825333833694, + -0.015194330364465714, + 0.037420958280563354, + -0.04338698461651802, + -0.06423000246286392, + 0.00249113398604095, + 0.03747173398733139, + -0.05011463537812233, + -0.03148031607270241, + 0.003912825603038073, + -0.05118090286850929, + -0.05981260538101196, + 0.07621283084154129, + 0.002303902292624116, + -0.0006791116902604699, + -0.03513609617948532, + -0.07981783896684647, + 0.03777638077735901, + 0.0342729277908802, + 0.017326869070529938, + -0.05029234662652016, + 0.009532950818538666, + 0.0464334674179554, + -0.028357673436403275, + -0.07382642477750778, + 0.06890127807855606, + -0.019548261538147926, + 0.03556768223643303, + -0.07184620946645737, + -0.029957076534628868, + 0.027824539691209793, + -0.016958752647042274, + 0.03277507424354553, + -0.046484243124723434, + -0.11668027192354202, + -0.016704877838492393, + -0.020132170990109444, + 0.04610343277454376, + -0.005648686084896326, + 0.03241964802145958, + 0.01001531071960926, + 0.009628153406083584, + 0.031124895438551903, + -0.08438756316900253, + -0.06057422608137131, + -0.03211500123143196, + -0.009234650060534477, + -0.06514395028352737, + -0.08474298566579819, + 0.015270492993295193, + -0.04501177743077278, + -0.04328543692827225, + 0.06468697637319565, + -0.04808364808559418, + 0.011271984316408634, + 0.02937316708266735, + 0.06387457996606827, + -0.0633668303489685, + 0.008733249269425869, + 0.05285646766424179, + -0.021363457664847374, + -0.052501045167446136, + -0.06676873564720154, + 0.11921901255846024, + -0.04623036831617355, + 0.01730148121714592, + 0.08403214067220688, + 0.09317158907651901, + 0.019725972786545753, + -0.03462835028767586, + 0.0604218989610672, + -0.009380626492202282, + -0.05737541615962982, + 0.017682291567325592, + -0.0178346149623394, + -0.014013818465173244, + -0.019192839041352272, + 0.002586336573585868, + 0.00032408544211648405, + 0.08987122774124146, + 0.0038303169421851635, + -0.030312499031424522, + 0.025031929835677147, + 0.050063859671354294, + 0.02840844728052616, + -0.0035098015796393156, + 0.009412361308932304, + 0.007641593459993601, + -0.006359532009810209, + -0.01071980968117714, + -0.025311190634965897, + 0.03912191092967987, + -0.011271984316408634, + 0.008701515384018421, + -0.02086840383708477, + -0.014521566219627857, + 0.06605789065361023, + -0.01990368403494358, + -0.0728617012500763, + 0.006369051989167929, + 0.08916038274765015, + -0.024625731632113457, + 0.037014760076999664, + -0.030921796336770058, + -0.03688782453536987, + 0.016260599717497826, + 0.025869712233543396, + -0.008422254584729671, + -0.048388294875621796, + 0.100990891456604, + 0.06306218355894089, + -0.03269891068339348, + -0.0524502694606781, + 0.0700690969824791, + -0.08453988283872604, + -0.03168341517448425, + -0.013531459495425224, + -0.030591759830713272, + 0.009609113447368145, + 0.035364583134651184, + 0.057883165776729584, + -0.07347100228071213, + 0.003950906917452812, + 0.05955873057246208, + 0.014915069565176964, + 0.07981783896684647, + 0.03744634613394737, + 0.0695105716586113, + -0.01580362766981125, + 0.0036906865425407887, + -0.005429720040410757, + 0.001897704671137035, + -0.05945717915892601, + -0.034526798874139786, + -0.010193021968007088, + -0.020259108394384384, + 0.001975453458726406, + -0.034958384931087494, + 0.0648900717496872, + 0.01591787114739418, + 0.07342022657394409, + 0.01896435208618641, + 0.0620974637567997, + -0.00679746363312006, + 0.01907859556376934, + 0.005966027732938528, + -0.055649079382419586, + -0.05641070008277893, + 0.08707862347364426, + 0.028383061289787292, + -0.07210008054971695, + 0.013696476817131042, + 0.014915069565176964, + -0.0447579026222229, + -0.007095765322446823, + 0.04313311353325844, + 0.005004481878131628, + 0.001415344886481762, + -0.038512613624334335, + 0.032064225524663925, + -0.041660647839307785, + -0.02333097718656063, + 0.054430484771728516, + -0.029347779229283333, + -0.047017376869916916, + -0.004817250184714794, + -0.0036430852487683296, + 0.035745393484830856, + 0.009101365692913532, + -0.06351915746927261, + 0.04635730758309364, + -0.1293739527463913, + -0.020703386515378952, + 0.012185929343104362, + 0.0058137038722634315, + 0.019459405913949013, + 0.006327797658741474, + 0.012255745008587837, + -0.028103800490498543, + 0.06296063214540482, + 0.011341799981892109, + -0.005347211379557848, + -0.012991977855563164, + -0.004960054066032171, + 0.005867652129381895, + 0.05199329927563667, + 0.04211761802434921, + 0.0020056008361279964, + 0.013836107216775417, + -0.02446071431040764, + -0.02334367111325264, + -0.06981521844863892, + -0.010548445396125317, + 0.07616206258535385, + -0.016362149268388748, + -0.04927685111761093, + 0.0324450358748436, + -0.061589717864990234, + -0.0057058073580265045, + -0.026148973032832146, + 0.003915999084711075, + -0.013011018745601177, + -0.05351654067635536, + 0.016654103994369507, + 0.05204407498240471, + -0.019852910190820694, + -0.005550310015678406, + -0.036735501140356064, + 0.011659141629934311, + 0.008580924943089485, + 0.034932997077703476, + -0.010821359232068062, + -0.03579616919159889, + -0.015689384192228317, + 0.03830951452255249, + -0.034399863332509995, + -0.0007275063544511795, + -0.060878872871398926, + -0.018215425312519073, + -0.02990630269050598, + -0.00020052041509188712, + -0.02688520774245262, + 0.052247174084186554, + 0.08855108916759491, + -0.059254080057144165, + 0.05275491997599602, + 0.02830689772963524, + 0.02990630269050598, + 0.02277245558798313, + 0.0047093541361391544, + -0.12317943572998047, + 0.031378768384456635, + -0.045240264385938644, + 0.038639552891254425, + 0.06874895095825195, + 0.012401722371578217, + -0.03569461777806282, + -0.017936164513230324, + -0.007908160798251629, + -0.028230736032128334, + 0.04958150163292885, + 0.014978538267314434, + -0.014965844340622425, + 0.008625352755188942, + -0.046738117933273315, + -0.0023197694681584835, + 0.007489269133657217, + -0.005899386014789343, + 0.03833490237593651, + -0.0001674970262683928, + -0.01200187113136053, + -0.048819880932569504, + -0.06778423488140106, + -0.056207600980997086, + -0.006956134922802448, + -0.024879606440663338, + -0.006495988927781582, + 0.0023292896803468466, + 0.07661902904510498, + 0.014686583541333675, + 0.055699851363897324, + -0.0889572873711586, + 0.0003581996716093272, + 0.03434908762574196, + 0.0007445634691976011, + 0.02772299014031887, + 0.003392385086044669, + 0.020386043936014175, + -0.05625837296247482, + -0.026605945080518723, + 0.03551690652966499, + 0.009989923797547817, + -0.04506255313754082, + 0.02485421858727932, + 0.05757851526141167, + 0.018862802535295486, + 0.030160175636410713, + 0.05864478647708893, + 0.035897716879844666, + -0.017923470586538315, + -0.024511490017175674, + -0.012173235416412354, + -0.033181268721818924, + 0.039172686636447906, + -0.014699277468025684, + 0.10429124534130096, + -0.033562079071998596, + -0.01797424629330635, + -0.01070711575448513, + 0.06001570075750351, + 0.02718985453248024, + 0.03490760922431946, + 0.014762746170163155, + 0.07433416694402695, + -0.01365839596837759, + -0.04998769983649254, + 0.04694121703505516, + -0.028865421190857887 + ] + }, + { + "id": "5dafaa07-f888-4e53-b5d8-e611426205d8", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "joshuasimmons", + "reviewDate": "2021-06-23T16:54:19", + "stars": 3, + "verifiedUser": true + }, + { + "id": "1e6d037d-4689-43eb-9f4c-2546de8951f6", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "abigail09", + "reviewDate": "2022-07-29T02:04:43", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f725c41c-d8e2-4c93-8724-a5273d616c57", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "vicki01", + "reviewDate": "2022-08-15T19:33:26", + "stars": 2, + "verifiedUser": false + }, + { + "id": "3ebd017d-b2a6-45d7-af2f-b29f17a74f84", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "grossanne", + "reviewDate": "2022-10-09T16:58:17", + "stars": 2, + "verifiedUser": false + }, + { + "id": "bd4e92dc-dbd8-4023-8246-666bde7095c4", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "zachary05", + "reviewDate": "2022-05-31T20:59:56", + "stars": 1, + "verifiedUser": false + }, + { + "id": "0216454d-12f4-4237-9e5e-4cc8970cbea0", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "carmen06", + "reviewDate": "2021-04-16T18:17:16", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5e8c7da4-10d4-4522-b06d-9388525b926b", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "mark94", + "reviewDate": "2021-07-19T10:05:09", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7d1eefad-cd89-4f0d-8a41-c483fc6f0e57", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "erikpatrick", + "reviewDate": "2022-12-27T12:58:57", + "stars": 3, + "verifiedUser": false + }, + { + "id": "0fe83412-3c35-4ef8-9518-b7c5d3a4e1af", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "anne59", + "reviewDate": "2021-08-18T03:47:12", + "stars": 2, + "verifiedUser": false + }, + { + "id": "71a6b360-ceeb-49ae-8814-b1e0118ebec7", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "whuang", + "reviewDate": "2021-04-27T21:57:53", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9efc2940-49ec-4b6b-a021-366b590ce32f", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "tonya41", + "reviewDate": "2022-02-11T19:51:10", + "stars": 3, + "verifiedUser": true + }, + { + "id": "ba9705c4-c122-4ef6-bc14-a17ac4ce99d8", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "christopher70", + "reviewDate": "2021-02-25T11:26:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "2908d95b-00f6-400a-b7c1-60f5da4d2ea5", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "jasongrant", + "reviewDate": "2021-12-18T15:09:19", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4b45de60-faa4-4072-a764-bc1c97918d1a", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "qquinn", + "reviewDate": "2021-09-19T02:26:17", + "stars": 1, + "verifiedUser": true + }, + { + "id": "2c1c9e35-9103-4491-9355-be9d2dd2e4aa", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "teresamckee", + "reviewDate": "2021-01-20T22:30:30", + "stars": 3, + "verifiedUser": false + }, + { + "id": "323f352b-e107-4691-8fdf-5d44ed3c5029", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "craig82", + "reviewDate": "2021-10-27T05:27:16", + "stars": 2, + "verifiedUser": false + }, + { + "id": "7ae1e825-a778-471d-babd-430078b185fb", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "annette31", + "reviewDate": "2021-03-18T03:15:22", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d3950c7a-3c84-4d02-811b-0b79be76c3fa", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "maynarddawn", + "reviewDate": "2022-03-24T11:43:18", + "stars": 3, + "verifiedUser": false + }, + { + "id": "75b5731c-b3ee-4e87-88b2-6720ef17e989", + "productId": "4422af7e-c35b-4bf5-9e95-841e32f1022f", + "category": "Electronics", + "docType": "customerRating", + "userName": "lgray", + "reviewDate": "2022-06-14T08:52:14", + "stars": 3, + "verifiedUser": false + }, + { + "id": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "product", + "name": "Amazing TV + (Steel)", + "description": "This Amazing TV + (Steel) is an episode that really is about all things, you know, the world of television. It's an incredible series. It's a wonderful story.\"\n\nWatch the entire trailer for this and other great features.\n\nTV Guide's Kevin Staple: \"When \"Abandoned\" was first shown back in 1986, the only way people knew what it was about was by watching it on television! From the premiere of", + "countryOfOrigin": "USA", + "rareItem": false, + "firstAvailable": "2018-01-07T05:29:52", + "price": 676.8, + "stock": 96, + "priceHistory": [ + { + "priceDate": "2021-05-22T19:31:53", + "newPrice": 652.2 + }, + { + "priceDate": "2021-09-19T19:31:53", + "newPrice": 680.1 + }, + { + "priceDate": "2022-01-17T19:31:53", + "newPrice": 663.07 + }, + { + "priceDate": "2022-05-17T19:31:53", + "newPrice": 634.33 + }, + { + "priceDate": "2022-09-14T19:31:53", + "newPrice": 693.75 + }, + { + "priceDate": "2022-11-26T19:31:53", + "newPrice": 676.8 + } + ], + "descriptionVector": [ + 0.029498562216758728, + -0.025814451277256012, + -0.05132082477211952, + -0.00040395252290181816, + 0.00821543950587511, + -0.01146310567855835, + -0.03987055644392967, + -0.013876390643417835, + 0.02721364237368107, + 0.06423446536064148, + 0.05268150568008423, + 0.008716068230569363, + 0.05052495375275612, + 0.011296229436993599, + 0.02739335596561432, + 0.008915035054087639, + 0.00795228872448206, + 0.0912427231669426, + 0.08657019585371017, + -0.07568473368883133, + 0.05314362421631813, + -0.06043482571840286, + -0.021591201424598694, + -0.004765596706420183, + 0.017213912680745125, + -0.03306714445352554, + -0.026276569813489914, + 0.019460322335362434, + -0.014145960099995136, + -0.03273339197039604, + -0.03512100502848625, + 0.019806910306215286, + -0.03943410888314247, + -0.006116651464253664, + -0.056224413216114044, + -0.0006157568423077464, + -0.03288743272423744, + 0.08251381665468216, + -0.026571812108159065, + 0.03966517001390457, + 0.02527531236410141, + -0.051936980336904526, + 0.007079398259520531, + -0.010609470307826996, + -0.0013269860064610839, + 0.02102638967335224, + -0.07686570286750793, + -0.10156337171792984, + 0.015622171573340893, + 0.019742727279663086, + -0.06207791343331337, + -0.06366965919733047, + 0.0010574168991297483, + 0.01256063673645258, + -0.0456470362842083, + -0.012618402019143105, + 0.04906157776713371, + -0.056532490998506546, + 0.0058599188923835754, + -0.03738024830818176, + -0.03843285143375397, + -0.01589174009859562, + 0.024055832996964455, + 0.058483660221099854, + -0.0005034363712184131, + 0.003074371488764882, + 0.007811085786670446, + 0.017932763323187828, + -0.05365708842873573, + -0.0023667525965720415, + 0.021308796480298042, + 0.003321476513519883, + -0.014145960099995136, + 0.0694718137383461, + -0.024736175313591957, + 0.04454308748245239, + 0.04061507806181908, + 0.017496319487690926, + -0.046930696815252304, + -0.0683421865105629, + 0.014364182017743587, + 0.03019174002110958, + -0.03376032039523125, + 0.008485008962452412, + -0.010943221859633923, + 0.04310538247227669, + -0.03850987181067467, + -0.09997162967920303, + 0.04130825772881508, + 0.07280933111906052, + 0.040461041033267975, + 0.01365816779434681, + 0.01026288140565157, + -0.09560717642307281, + 0.017842907458543777, + 0.051397841423749924, + -0.023657897487282753, + 0.022322889417409897, + 0.010006148368120193, + -0.05319496989250183, + 0.04397827386856079, + -0.03607091307640076, + -0.022528275847434998, + -0.05499209836125374, + 0.030987611040472984, + -0.06546678394079208, + -0.004194366745650768, + 0.0701393112540245, + 0.049806103110313416, + -0.011437431909143925, + -0.04913859814405441, + -0.03419676795601845, + -0.024671992287039757, + 0.03894631937146187, + 0.06300215423107147, + 0.014672261662781239, + -0.033195510506629944, + -0.03175780922174454, + 0.011777603067457676, + -0.015519478358328342, + 0.013555475510656834, + -0.05268150568008423, + -0.07322010397911072, + 0.012977827340364456, + -0.02515978366136551, + 0.06156444922089577, + -0.04325942322611809, + 0.023734917864203453, + -0.021449999883770943, + -0.012425852008163929, + -0.04195008799433708, + 0.024299729615449905, + -0.0114887785166502, + 0.02798384055495262, + -0.031013283878564835, + -0.051397841423749924, + -0.05283554643392563, + 0.000841601169668138, + 0.001351054641418159, + 0.01634102314710617, + -0.03635331988334656, + 0.051680248230695724, + -0.01875430718064308, + 0.02975529432296753, + 0.026173876598477364, + 0.04135960340499878, + 0.037662655115127563, + -0.07558204233646393, + -0.05555690824985504, + 0.03286175802350044, + 0.04182172194123268, + -0.02998635359108448, + -0.0918075367808342, + -0.02504425309598446, + 0.0694204643368721, + 0.08954828977584839, + 0.0011288205860182643, + -0.03658437728881836, + -0.1155296191573143, + 0.058483660221099854, + -0.03910035640001297, + -0.0912427231669426, + -0.033426567912101746, + 0.058689046651124954, + 0.03699515014886856, + -0.07558204233646393, + 0.10567109286785126, + 0.037996407598257065, + -0.06700717657804489, + 0.0019928859546780586, + 0.04343913495540619, + -0.009268042631447315, + 0.07609550654888153, + -0.044799819588661194, + 0.026225222274661064, + 0.0003931216197088361, + 0.07799533009529114, + 0.03748294338583946, + -0.0932965874671936, + 0.006707136053591967, + -0.07280933111906052, + 0.03951112926006317, + -0.005006283521652222, + 0.04115421697497368, + 0.0041205561719834805, + 0.07506857812404633, + 0.014056103304028511, + 0.02780412882566452, + -0.019588688388466835, + -0.0680854544043541, + 0.0465455986559391, + -0.03922872245311737, + 0.050011489540338516, + -0.08780250698328018, + 0.01035273727029562, + 0.0053079440258443356, + -0.023593714460730553, + -0.06274542212486267, + -0.05935655161738396, + -0.006434357725083828, + 0.0048297797329723835, + 0.007053724955767393, + 0.0932452380657196, + -0.009415663778781891, + 0.009036983363330364, + -0.04824003204703331, + 0.00701521523296833, + 0.03514667600393295, + 0.06469658762216568, + 0.009723742492496967, + -0.022322889417409897, + -0.0463145412504673, + -0.01373518817126751, + 0.031501077115535736, + 0.060999639332294464, + -0.006771319080144167, + -0.06212926283478737, + 0.01593025028705597, + -0.004823361523449421, + 0.02293904684484005, + 0.10356588661670685, + -0.008587701246142387, + 0.013208886608481407, + -0.04811166599392891, + 0.052142366766929626, + -0.05044793337583542, + 0.020063644275069237, + -0.0227721706032753, + 0.056019026786088943, + 0.021668221801519394, + -0.13370627164840698, + -0.018895510584115982, + -0.002118042903020978, + -0.02060278132557869, + 0.001109565724618733, + 0.014980340376496315, + 0.018908347934484482, + 0.012060008011758327, + 0.007894523441791534, + -0.036045242100954056, + 0.008356641978025436, + -0.003838150529190898, + -0.04148796945810318, + -0.05709730461239815, + 0.04844541847705841, + 0.00928087905049324, + 0.022284379228949547, + -0.01367100514471531, + -0.026289407163858414, + -0.08646749705076218, + 0.0701906606554985, + 0.003796431701630354, + 0.05987001582980156, + 0.023478185757994652, + 0.04824003204703331, + -0.0009491079254075885, + -0.015416786074638367, + 0.02075682207942009, + 0.029036443680524826, + -0.004634021315723658, + -0.07347683608531952, + -0.007336130831390619, + 0.05797019600868225, + 0.015083033591508865, + 0.052168041467666626, + 0.04826570674777031, + -0.04102585092186928, + -0.10243625938892365, + -0.0693691149353981, + 0.05042225867509842, + 0.005786108318716288, + 0.00013799371663480997, + 0.022528275847434998, + 0.026777198538184166, + 0.01872863434255123, + -0.030679531395435333, + 0.018869837746024132, + 0.004736714530736208, + -0.024017324671149254, + -0.02582728862762451, + 0.06043482571840286, + -0.028291920199990273, + -0.011982988566160202, + -0.01483913790434599, + 0.011276974342763424, + -0.00016657524975016713, + 0.029036443680524826, + 0.012291067279875278, + 0.03974218666553497, + -0.037714000791311264, + -0.06223195418715477, + -0.0697285458445549, + 0.07193644344806671, + 0.10161471366882324, + 0.02775278128683567, + 0.06279676407575607, + -0.016559245064854622, + 0.01285587903112173, + 0.0680341050028801, + -0.056378453969955444, + 0.06710986793041229, + 0.01372235082089901, + -0.010339900851249695, + 0.009787925519049168, + -0.0013093356974422932, + 0.03257935121655464, + 0.007477333769202232, + 0.013439945876598358, + -0.033375222235918045, + -0.0690610408782959, + 0.015673518180847168, + -0.026597484946250916, + -0.038201794028282166, + -0.0014954666839912534, + 0.011296229436993599, + 0.02498007006943226, + 0.026225222274661064, + -0.0012218861375004053, + 0.07578743249177933, + -0.054016515612602234, + 0.10988150537014008, + 0.027033930644392967, + -0.08045995980501175, + 0.026777198538184166, + 0.03255368024110794, + -0.08194901049137115, + 0.011848203837871552, + -0.07409299165010452, + 0.0232471264898777, + 0.04870215058326721, + -0.017316605895757675, + 0.06336157768964767, + 0.0057893176563084126, + 0.12415582686662674, + 0.01259272824972868, + -0.10710879415273666, + -0.06166714429855347, + -0.007753320969641209, + 0.06469658762216568, + 0.024556461721658707, + -0.008452917449176311, + -0.006254645064473152, + 0.03281041234731674, + -0.03293877840042114, + -0.03920305147767067, + -0.04775224253535271, + -0.005962612107396126, + -0.00033976940903812647, + -0.007849595509469509, + -0.0017955227522179484, + 0.0016366696218028665, + 0.019999461248517036, + -0.0026443444658070803, + 0.013491291552782059, + 0.001513117109425366, + 0.03948545455932617, + -0.000626587716396898, + -0.03689245879650116, + 0.01509587001055479, + -0.03976786136627197, + 0.08985637128353119, + -0.03517235070466995, + -0.04369586706161499, + 0.06351561844348907, + -0.08169227838516235, + 0.022374235093593597, + -0.024338239803910255, + 0.02749604918062687, + -0.05550556257367134, + -0.016687611117959023, + 0.047213103622198105, + 0.01019227970391512, + -0.08754577487707138, + 0.013350089080631733, + 0.03016606718301773, + -0.03738024830818176, + 0.029216157272458076, + -0.017188239842653275, + 0.0014665842754766345, + 0.03283608332276344, + -0.051962655037641525, + -0.04859945923089981, + 0.03948545455932617, + 0.049677737057209015, + -0.003995399456471205, + 0.06746929883956909, + -0.054478634148836136, + 0.010378411039710045, + -0.09031848609447479, + -0.01279169600456953, + -0.05514613911509514, + 0.03607091307640076, + -0.03188617527484894, + -0.04343913495540619, + 0.08467037230730057, + -0.02790682017803192, + -0.0461861751973629, + 0.06710986793041229, + 0.08056265115737915, + 0.051911309361457825, + 0.010692907497286797, + 0.029087791219353676, + 0.07840610295534134, + 0.0032861758954823017, + -0.03306714445352554, + -0.010853365994989872, + 0.03273339197039604, + 0.056481145322322845, + -0.006164788734167814, + 0.03920305147767067, + -0.01135399378836155, + -0.06551813334226608, + -0.06669910252094269, + 0.05797019600868225, + 0.03730323165655136, + 0.045672707259655, + 0.06515870243310928, + 0.031141649931669235, + 0.025878634303808212, + 0.02553204633295536, + -0.02790682017803192, + 0.08061400055885315, + 0.0005447542644105852, + 0.010076750069856644, + -0.050011489540338516, + 0.02767576090991497, + -0.0232342891395092, + -0.008478590287268162, + -0.10377126932144165, + -0.06741794943809509, + 0.10104990750551224, + -0.03648168593645096, + -0.04130825772881508, + 0.038407180458307266, + 0.05298958346247673, + -0.01476211752742529, + 0.004634021315723658, + -0.024068670347332954, + 0.016880160197615623, + 0.009633886627852917, + -0.040075939148664474, + 0.01519856322556734, + -0.0675206407904625, + -0.012445107102394104, + -0.05530017614364624, + 0.0454416498541832, + -0.014723608270287514, + -0.0024245174136012793, + 0.019960951060056686, + -0.08441364020109177, + -0.14407826960086823, + -0.005202041938900948, + -0.042335186153650284, + 0.019537342712283134, + -0.047264449298381805, + 0.00287219462916255, + 0.010577377863228321, + 0.019383301958441734, + -0.03008904680609703, + -0.01610996387898922, + 0.0697798877954483, + 0.03450484573841095, + 0.04141094908118248, + -0.03386301547288895, + 0.028343265876173973, + -0.027239317074418068, + -0.06428581476211548, + 0.033246856182813644, + 0.017907090485095978, + 0.05945924296975136, + -0.006874012295156717, + -0.022566786035895348, + -0.08764846622943878, + 0.0694718137383461, + 0.033298201858997345, + -0.035891201347112656, + 0.0011577029945328832, + -0.030576838180422783, + -0.03463321179151535, + -0.03935708850622177, + -0.017868580296635628, + 0.037765346467494965, + 0.017663195729255676, + -0.007541516795754433, + 0.01827935315668583, + 0.027033930644392967, + -0.037791021168231964, + 0.01625116541981697, + -0.04780358821153641, + -0.014710770919919014, + 0.04441472142934799, + -0.023876121267676353, + -0.022566786035895348, + 0.003006979124620557, + 0.003238038392737508, + 0.0457754023373127, + -0.022399909794330597, + -0.05524883046746254, + -0.029036443680524826, + -0.0025929980911314487, + -0.05239909887313843, + 0.04151364415884018, + -0.03165511414408684, + 0.06485062837600708, + 0.005818199831992388, + -0.008786669000983238, + 0.06577486544847488, + -0.004800897557288408, + 0.03948545455932617, + -0.009486265480518341, + -0.00798438023775816, + 0.07640358805656433 + ] + }, + { + "id": "a8d71ba7-b838-4395-9bcc-31ffb30afdf7", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "adam33", + "reviewDate": "2021-06-15T12:21:39", + "stars": 3, + "verifiedUser": true + }, + { + "id": "08e25d75-48e2-46f4-81b8-0ed234e7fd14", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "christieclark", + "reviewDate": "2021-06-09T08:28:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "e30b122d-47f5-4481-a413-9ee382e2738d", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "bsandoval", + "reviewDate": "2022-08-30T22:20:14", + "stars": 4, + "verifiedUser": false + }, + { + "id": "eafa72d2-2e7f-4b37-9602-d18f2debd3d0", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "david94", + "reviewDate": "2022-07-19T02:48:26", + "stars": 4, + "verifiedUser": true + }, + { + "id": "a5561b91-b89a-47a1-8d8c-b3257be2cf2f", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "robynmyers", + "reviewDate": "2022-09-15T05:23:51", + "stars": 1, + "verifiedUser": true + }, + { + "id": "3246daf2-fc2c-40e0-b5f3-0595c696aa2b", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "wblack", + "reviewDate": "2021-05-22T19:31:53", + "stars": 2, + "verifiedUser": false + }, + { + "id": "288827c4-44f6-49a7-8ff3-2078a61dde79", + "productId": "bf783cd6-0542-4c2c-b00b-8f1a3a85acbe", + "category": "Media", + "docType": "customerRating", + "userName": "josephjessica", + "reviewDate": "2022-02-03T05:48:10", + "stars": 2, + "verifiedUser": false + }, + { + "id": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard + (Silver)", + "description": "This Basic Keyboard + (Silver) is not covered by this product - if you can't find it, you must purchase an official keyboard as part of our shipping cost.", + "countryOfOrigin": "Japan", + "rareItem": false, + "firstAvailable": "2020-12-16T17:21:32", + "price": 1034.23, + "stock": 59, + "priceHistory": [ + { + "priceDate": "2021-01-23T21:03:48", + "newPrice": 971.37 + }, + { + "priceDate": "2021-08-28T21:03:48", + "newPrice": 1003.83 + }, + { + "priceDate": "2022-04-02T21:03:48", + "newPrice": 1099.43 + }, + { + "priceDate": "2022-11-05T21:03:48", + "newPrice": 991.65 + }, + { + "priceDate": "2022-11-30T21:03:48", + "newPrice": 1034.23 + } + ], + "descriptionVector": [ + -0.007138229440897703, + 0.00047708317288197577, + -0.041864242404699326, + 0.027048813179135323, + -0.026246624067425728, + -0.08072027564048767, + -0.021859653294086456, + 0.024128343909978867, + -0.06582964211702347, + -0.02049342542886734, + 0.04261629655957222, + 0.0012158178724348545, + 0.024003002792596817, + -0.0761578306555748, + 0.009958425536751747, + 0.04973572492599487, + -0.04750463739037514, + 0.00528943445533514, + -0.038730692118406296, + 0.031084828078746796, + 0.010440992191433907, + -0.017723364755511284, + -0.05484968051314354, + -0.03070880100131035, + 0.020881984382867813, + -0.007432783488184214, + -0.026397034525871277, + 0.010014829225838184, + 0.008554594591259956, + 0.02877853438258171, + 0.010215376503765583, + 0.0009424154995940626, + -0.05600282549858093, + 0.009688939899206161, + 0.00725730461999774, + 0.007921617478132248, + -0.06843675673007965, + -0.022586636245250702, + -0.038730692118406296, + -0.03451919928193092, + 0.001806492218747735, + -0.0047347960062325, + 0.012797422707080841, + -0.019641099497675896, + -0.060364730656147, + 0.08793997764587402, + 0.05174119770526886, + -0.022398624569177628, + -0.061568014323711395, + 0.02729949727654457, + 0.014890635386109352, + 0.0016153455944731832, + -0.07019154727458954, + -0.013887898996472359, + 0.029505517333745956, + 0.002187218749895692, + -0.006517786532640457, + 0.10779415816068649, + 0.06883785128593445, + 0.0038950040470808744, + -0.048031073063611984, + -0.053947217762470245, + 0.01067914254963398, + 0.0006345441215671599, + 0.0070692915469408035, + 0.050813667476177216, + -0.020205138251185417, + 0.012484068050980568, + 0.0008797444752417505, + -0.016294466331601143, + -0.0018581958720460534, + -0.0457749143242836, + 0.013963104225695133, + 0.0607658252120018, + 0.0011460963869467378, + -0.019102128222584724, + 0.04213999584317207, + 0.07991808652877808, + 0.11721988022327423, + -0.04976079240441322, + 0.004079883452504873, + -0.012502869591116905, + -0.08658628910779953, + -0.03519604727625847, + -0.005004281178116798, + 0.03913178667426109, + 0.05966281518340111, + -0.06999099999666214, + -0.08879230916500092, + 0.059863362461328506, + 0.02449183538556099, + 0.017247065901756287, + 0.05926172062754631, + 0.006395577918738127, + 0.0770101547241211, + -0.0007528356509283185, + -0.03705110773444176, + 0.015479742549359798, + -0.03617371618747711, + -0.02444169856607914, + 0.10398375988006592, + -0.032914821058511734, + -0.05139023810625076, + 0.021496161818504333, + -0.012421396560966969, + 0.007533057127147913, + 0.0302575696259737, + -0.04707847163081169, + 0.02036808244884014, + -0.013649748638272285, + 0.02207273431122303, + 0.03208756446838379, + -0.05329543724656105, + 0.006906346883624792, + 0.03226304426789284, + 0.035948097705841064, + -0.0912991464138031, + 0.005988216493278742, + -0.009356783702969551, + -0.015254126861691475, + 0.07470385730266571, + -0.011218112893402576, + 0.017598023638129234, + -0.011957631446421146, + 0.03607344254851341, + 0.013148380443453789, + -0.05690528824925423, + 0.04371930658817291, + 0.06688251346349716, + -0.05008668079972267, + -0.06994086503982544, + -0.03958301991224289, + -0.021395888179540634, + 0.08758902549743652, + -0.08518245816230774, + 0.05229270085692406, + 0.03306523337960243, + 0.04208986088633537, + -0.10288075357675552, + 0.032914821058511734, + -0.014589814469218254, + 0.017986584454774857, + 0.043318212032318115, + 0.028001412749290466, + -0.06237020343542099, + 0.008391650393605232, + -0.05655433237552643, + 0.061367467045784, + 0.018187131732702255, + 0.0381290502846241, + -0.03682549297809601, + -0.1228352040052414, + -0.049209289252758026, + -0.011638008989393711, + -0.028502780944108963, + 0.06312225759029388, + -0.020280342549085617, + -0.0455743670463562, + 0.049234356731176376, + 0.10212869942188263, + -0.007871480658650398, + 0.01738494262099266, + -0.04163862764835358, + -0.003493909491226077, + -0.03166140243411064, + 0.06718333810567856, + 0.005173493176698685, + 0.03537152707576752, + -0.0377279557287693, + 0.0014798195334151387, + -0.02902921847999096, + 0.015454674139618874, + 0.05126489698886871, + -0.013662283308804035, + 0.01967870071530342, + -0.0004998014192096889, + -0.015529879368841648, + -0.024717452004551888, + 0.03539659455418587, + -0.04768011346459389, + 0.0022843587212264538, + -0.002995674964040518, + -0.033040162175893784, + -0.01850048638880253, + 0.046577103435993195, + -0.0604650042951107, + 0.02303786762058735, + 0.018437815830111504, + -0.002312560798600316, + -0.01575549505650997, + -0.008654868230223656, + -0.00424909545108676, + -0.00980174820870161, + 0.0063799102790653706, + 0.0304581169039011, + 0.044897522777318954, + 0.028452644124627113, + 0.007376379333436489, + -0.009883220307528973, + 0.005314502865076065, + 0.04865778237581253, + 0.07199647277593613, + 0.06527813524007797, + -0.03980863466858864, + -0.022310884669423103, + 0.07350057363510132, + -0.058359257876873016, + 0.007063024211674929, + -0.001845661667175591, + 0.012408862821757793, + -0.0002542093279771507, + 0.07214688509702682, + 0.029831407591700554, + -0.034368790686130524, + 0.09370571374893188, + 0.0011915328213945031, + -0.035822756588459015, + 0.037126313894987106, + -0.02464224584400654, + -0.07009126991033554, + 0.0607658252120018, + -0.08367834985256195, + -0.024867862462997437, + 0.043243005871772766, + -0.0024175348225980997, + -0.06572937220335007, + -0.0379786416888237, + 0.02915455959737301, + 0.030934417620301247, + 0.06542854756116867, + -0.03529632091522217, + -0.044897522777318954, + -0.030733870342373848, + -0.037351928651332855, + -0.055501457303762436, + 0.05314502865076065, + 0.005110822152346373, + -4.296392580727115e-05, + -0.06196910887956619, + 0.02609621360898018, + -0.006511519197374582, + -0.020405685529112816, + -0.027675524353981018, + -0.058359257876873016, + 0.003050512168556452, + -0.021859653294086456, + 0.10358266532421112, + -0.034143172204494476, + -0.0922517478466034, + -0.01029684953391552, + -0.018237268552184105, + 0.05274393409490585, + -0.021734310314059258, + 0.06989072263240814, + -0.03168646991252899, + 0.09997281432151794, + 0.037226587533950806, + 0.03168646991252899, + -0.03938247263431549, + -0.03998411446809769, + 0.04269150272011757, + 0.03369194269180298, + -0.07314962148666382, + 0.029530586674809456, + -0.014928237535059452, + 0.049560245126485825, + -0.007313708309084177, + -0.10358266532421112, + -0.0608159601688385, + 0.05304475501179695, + 0.05063818767666817, + -0.05830911919474602, + 0.07239756733179092, + -0.014376732520759106, + -0.0304831862449646, + 0.013988172635436058, + -0.017974048852920532, + 0.08909312635660172, + 0.01898932084441185, + 0.01000229548662901, + -0.04742943122982979, + 0.07064277678728104, + -0.020267808809876442, + -0.015066114254295826, + 0.027800865471363068, + -0.010904758237302303, + -0.060414865612983704, + 0.05931185558438301, + -0.007978021167218685, + -0.008278842084109783, + -0.026773061603307724, + -0.04254109039902687, + -0.032639067620038986, + 0.10047418624162674, + 0.08021891117095947, + -0.032714273780584335, + 0.05164092406630516, + 0.029355106875300407, + 0.03376714885234833, + 0.02313814125955105, + 0.026697855442762375, + -0.060063909739255905, + -0.1509118229150772, + -0.06643128395080566, + 0.02135828509926796, + 0.03226304426789284, + -0.013950569555163383, + -0.06943949311971664, + 0.013574543409049511, + -0.04118739813566208, + 0.06823620945215225, + 0.004042280837893486, + -0.07089345902204514, + -0.03231317922472954, + 0.0457749143242836, + 0.010478595271706581, + 0.05304475501179695, + 0.052392974495887756, + -0.012766087427735329, + -0.021834583953022957, + -0.013875364325940609, + -0.03662494570016861, + -0.04544902592897415, + -0.024993203580379486, + 0.046501901000738144, + -0.051189690828323364, + -0.02915455959737301, + 0.07490440458059311, + 0.0056497929617762566, + -0.02064383588731289, + -0.051089417189359665, + -0.034243445843458176, + 0.029254833236336708, + -0.018701033666729927, + 0.00589420972391963, + -0.0923018828034401, + 0.024128343909978867, + 0.04692806303501129, + 0.007946685887873173, + 0.004189557861536741, + 0.06412499397993088, + 0.032814547419548035, + 0.007200900465250015, + -0.07806302607059479, + -0.049234356731176376, + -0.016858505085110664, + 0.0018722967943176627, + -0.003669388359412551, + 0.015266661532223225, + -0.024278754368424416, + 0.0015691258013248444, + -0.06743402034044266, + 0.030157295987010002, + -0.057055700570344925, + 0.07224715501070023, + -0.022285815328359604, + -0.039031513035297394, + -0.03670015186071396, + -0.011951364576816559, + 0.0035847825929522514, + -0.03243852034211159, + -0.012822491116821766, + 0.041989587247371674, + 0.02286238968372345, + -0.08753888309001923, + 0.075656458735466, + -0.009256510064005852, + -0.007852679118514061, + -0.025632448494434357, + -0.04369423910975456, + 0.02372724935412407, + -0.01575549505650997, + 0.009770412929356098, + 0.0382293239235878, + -0.031410716474056244, + 0.046376556158065796, + 0.05775761604309082, + -0.019252538681030273, + -0.029580723494291306, + 0.010021097026765347, + 0.02446676790714264, + 0.02138335257768631, + -0.0302826389670372, + 0.016783300787210464, + -0.008159766905009747, + -0.05916144698858261, + -0.07350057363510132, + 0.034544266760349274, + -0.015655221417546272, + 0.018876511603593826, + -0.04234054312109947, + 0.09651337563991547, + -0.014226322062313557, + 0.01957842707633972, + -0.018086858093738556, + -0.02128307893872261, + 0.006075955927371979, + 0.01603124849498272, + -0.026722924783825874, + 0.0908980518579483, + 0.07575673609972, + 0.025043340399861336, + 0.0009134301799349487, + -0.046526968479156494, + -0.06447594612836838, + -0.13185983896255493, + -0.018061788752675056, + 0.01835007593035698, + -0.02503080666065216, + -0.09541036933660507, + -0.04559943825006485, + -0.005656059831380844, + 0.02007979527115822, + 0.02207273431122303, + 3.539933459251188e-05, + -0.03324070945382118, + 0.11732015758752823, + 0.03371701017022133, + 0.07375126332044601, + -0.02128307893872261, + 0.04311766475439072, + -0.018538089469075203, + -0.016118986532092094, + 0.00643004709854722, + 0.015103716403245926, + 0.022574102506041527, + -0.00040344471926800907, + -0.020706506446003914, + 0.01878877356648445, + -0.08849148452281952, + -0.03241345286369324, + -0.03617371618747711, + -0.052342839539051056, + -0.022260747849941254, + -0.018675964325666428, + -0.010271781124174595, + -0.05006161332130432, + -0.01509118266403675, + -0.02007979527115822, + 0.06407485157251358, + -0.061618149280548096, + -0.060314591974020004, + -0.11762097477912903, + -0.0383797362446785, + -0.09656351059675217, + 0.043443553149700165, + -0.014063377864658833, + 0.03940754011273384, + 0.05640392005443573, + -0.007188366260379553, + -0.05314502865076065, + 0.0025773458182811737, + -0.03156112879514694, + -0.0011625475017353892, + 0.08743861317634583, + -0.047930799424648285, + 0.015354400500655174, + 0.008598464541137218, + -0.020794246345758438, + -0.004816268105059862, + 0.03497043251991272, + 0.009431988932192326, + 0.024504370987415314, + 0.018237268552184105, + 0.026221556589007378, + -0.000990202184766531, + 0.041789039969444275, + -0.03299002721905708, + 0.021684173494577408, + -0.01615658961236477, + 0.030006885528564453, + -0.07746138423681259, + 0.03785329684615135, + 0.015492277219891548, + 0.0190143883228302, + -0.04534875229001045, + -0.041613560169935226, + -0.013988172635436058, + -0.018713567405939102, + 0.013599611818790436, + -0.0380287766456604, + -0.01441433560103178, + -0.06818607449531555, + 0.026271693408489227, + 0.041989587247371674, + -0.023639509454369545, + 0.013348927721381187, + -0.004108085762709379, + 0.06452608853578568, + 0.020017124712467194, + -0.02485532872378826, + 0.035622209310531616, + 0.03715138137340546, + 0.02523135393857956, + -0.02727442979812622, + -0.03973342850804329, + 0.061517875641584396, + -0.05901103466749191, + 0.007294907234609127, + 0.0754559114575386, + 0.019766440615057945, + -0.03677535802125931, + -0.04213999584317207, + -0.03050825372338295, + 0.06226992979645729, + 0.010227911174297333, + -0.03253879398107529, + 0.014439404010772705, + 0.037126313894987106, + 0.061317328363657, + 0.008234972134232521, + -0.11340948194265366 + ] + }, + { + "id": "64e17934-e0fa-41a6-94df-697588ac8add", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "grahamcharles", + "reviewDate": "2022-08-07T08:45:55", + "stars": 1, + "verifiedUser": false + }, + { + "id": "5c9b084d-8946-407a-9943-e8f41e28f6fd", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jasonmiller", + "reviewDate": "2021-12-25T08:02:13", + "stars": 2, + "verifiedUser": true + }, + { + "id": "08459bab-cb17-4be3-8bde-304a5989e6ea", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "perezeric", + "reviewDate": "2021-09-04T09:37:15", + "stars": 1, + "verifiedUser": true + }, + { + "id": "df6037a2-403f-4ee5-8d80-52759de24140", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cowanjeffrey", + "reviewDate": "2022-04-09T07:00:20", + "stars": 2, + "verifiedUser": false + }, + { + "id": "960897e5-ef03-43f9-ac61-edab5574edf1", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joyce45", + "reviewDate": "2022-03-30T15:44:11", + "stars": 1, + "verifiedUser": false + }, + { + "id": "ee5192e3-b7a3-456a-8ff6-88014a77644b", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "simmonsjaclyn", + "reviewDate": "2021-11-27T20:22:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f4f076ca-b9ad-4a75-a783-ae07ddf3d19d", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "nathanielburns", + "reviewDate": "2022-07-18T12:34:21", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cb8d7919-5694-4447-9c76-fa98b38691c9", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "powellelizabeth", + "reviewDate": "2022-11-04T15:37:24", + "stars": 3, + "verifiedUser": false + }, + { + "id": "7d07044b-9012-4e88-b7a8-a41cc96cb067", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "karen49", + "reviewDate": "2022-07-22T02:04:44", + "stars": 1, + "verifiedUser": false + }, + { + "id": "42b39c2b-a7bf-4d42-8080-ab8381d6e4a1", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "charlotte37", + "reviewDate": "2022-05-08T06:39:52", + "stars": 2, + "verifiedUser": true + }, + { + "id": "d2ba452a-423f-410d-8977-c1100e5bfcbc", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "scott43", + "reviewDate": "2021-12-31T11:53:58", + "stars": 3, + "verifiedUser": true + }, + { + "id": "6a622c74-0346-4c3a-bd98-6e84adba90ff", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joseph39", + "reviewDate": "2021-03-15T22:12:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "c299364b-da68-4411-b979-a8579312e14c", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "jeffrey90", + "reviewDate": "2021-01-23T21:03:48", + "stars": 3, + "verifiedUser": true + }, + { + "id": "4cd32a85-628b-49b3-855c-d0bc5304409a", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "johnsonashley", + "reviewDate": "2022-11-07T07:11:21", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4b4de200-8aed-4704-ac93-6aed103451f1", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kathryn09", + "reviewDate": "2022-09-20T10:03:22", + "stars": 1, + "verifiedUser": true + }, + { + "id": "4a43c233-cd55-44af-881b-5cbabc7e2cf5", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "peterkaufman", + "reviewDate": "2022-08-24T08:48:32", + "stars": 3, + "verifiedUser": true + }, + { + "id": "9d42c9f2-f4a7-49cd-993f-25f1d0cc2c8f", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mcleanmartin", + "reviewDate": "2022-08-23T15:13:15", + "stars": 3, + "verifiedUser": false + }, + { + "id": "9f4a82da-329f-4291-91b0-d147a75aeb15", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robertscindy", + "reviewDate": "2022-11-03T01:55:46", + "stars": 2, + "verifiedUser": false + }, + { + "id": "37a4c48d-b86b-406d-b100-ddc7cfdbaf0d", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "susan45", + "reviewDate": "2022-08-22T19:39:34", + "stars": 1, + "verifiedUser": false + }, + { + "id": "6492d47d-0205-42d0-b095-390f0c4e3d4f", + "productId": "b5c98cb6-cce7-4701-9c44-10530c6f4b06", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "benjamin95", + "reviewDate": "2021-09-06T15:58:33", + "stars": 3, + "verifiedUser": false + }, + { + "id": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "product", + "name": "Premium Mouse Pro (Steel)", + "description": "This Premium Mouse Pro (Steel) is not designed to replace a wireless mouse (such as Audeze or Razer mouse). Instead, it provides precise control using the Mouse Pro's touch interface for the most perfect typing. If you feel like working on a keyboard only for the keyboard, feel free to play Mouse Pro without having to worry about mouse clicks or the \"ghosting\" of the keyboard. It also features support for the TGS mouse support and its", + "countryOfOrigin": "Nigeria", + "rareItem": false, + "firstAvailable": "2019-02-21T21:55:04", + "price": 420.44, + "stock": 99, + "priceHistory": [ + { + "priceDate": "2021-01-27T00:15:14", + "newPrice": 447.76 + }, + { + "priceDate": "2021-12-22T00:15:14", + "newPrice": 397.25 + }, + { + "priceDate": "2022-11-16T00:15:14", + "newPrice": 394.72 + }, + { + "priceDate": "2023-07-21T00:15:14", + "newPrice": 420.44 + } + ], + "descriptionVector": [ + -0.032146356999874115, + -0.03784406930208206, + -0.045464467257261276, + 0.013353281654417515, + 0.05411655083298683, + -0.00126689113676548, + -0.025839010253548622, + 0.014103597961366177, + 0.04002467542886734, + 0.06030665710568428, + 0.031067775562405586, + 0.027363089844584465, + 0.003027642611414194, + -0.056133024394512177, + 0.002291981130838394, + -0.014642887748777866, + -0.02694103680551052, + -0.00047261122381314635, + -0.051912494003772736, + -0.03601517155766487, + 0.05308486521244049, + -0.025698326528072357, + -0.023799089714884758, + -0.07714187353849411, + 0.007720049470663071, + -0.0034350408241152763, + 0.009009654633700848, + 0.014912532642483711, + -0.02966093271970749, + -0.005495479330420494, + 0.017222099006175995, + 0.01467805914580822, + -0.012192636728286743, + 0.041712887585163116, + -0.017714494839310646, + -0.037257883697748184, + -0.01654212549328804, + -0.06396444886922836, + 0.045792728662490845, + 0.07188966125249863, + -0.0283244326710701, + 0.0030393663328140974, + 0.036929622292518616, + -0.02347082644701004, + -0.027667906135320663, + 0.04698854684829712, + -0.011049577035009861, + 0.05608613044023514, + -0.00988893210887909, + -0.0072569637559354305, + 0.07611019164323807, + 0.02670656330883503, + -0.09078824520111084, + 0.011635761708021164, + 0.061807289719581604, + -0.06058802455663681, + 0.0634017139673233, + 0.08947519212961197, + 0.03315459191799164, + -0.06452718377113342, + 0.052756600081920624, + -0.01838274486362934, + -0.03547588363289833, + -0.029238881543278694, + -0.04140806943178177, + -0.07334339618682861, + -0.00626631174236536, + -0.018042758107185364, + 0.07976797968149185, + 0.05449170619249344, + -0.09313298761844635, + -0.07034213840961456, + 0.051631126552820206, + 0.011413011699914932, + 0.02905130200088024, + -0.010258227586746216, + 0.04004812240600586, + 0.06916976720094681, + 0.12108226120471954, + -0.04084533452987671, + -0.0022025881335139275, + 0.032146356999874115, + -0.06269828975200653, + 0.0480671264231205, + 0.09782246500253677, + 0.03765648975968361, + 0.012075399979948997, + -0.053225547075271606, + 0.03231048583984375, + 0.09782246500253677, + -0.0400950163602829, + 0.05022428557276726, + 0.02884027548134327, + -0.07268687337636948, + -0.05575786530971527, + -0.036695148795843124, + -0.03974330797791481, + 0.031607065349817276, + -0.011659208685159683, + 0.011500938795506954, + 0.01630765199661255, + 0.0029001475777477026, + -0.0895220935344696, + 0.03896954283118248, + -0.014783572405576706, + 0.019637178629636765, + 0.035147618502378464, + -0.020117850974202156, + -0.04637891426682472, + -0.032662197947502136, + -0.007081108167767525, + -0.01817171834409237, + 0.005946841090917587, + -0.03547588363289833, + -0.06054113060235977, + -0.01282571628689766, + -0.0943053588271141, + 0.0011628434294834733, + 0.000921775063034147, + 0.0016632983461022377, + 0.021466074511408806, + 0.06837255507707596, + 0.011424735188484192, + 0.049286387860774994, + -0.009244129061698914, + 0.023810813203454018, + 0.07231171429157257, + -0.017186928540468216, + 0.02855890616774559, + -0.06138523668050766, + -0.04673062637448311, + 0.11517351865768433, + 0.03655446320772171, + -0.006700088270008564, + -0.04515964910387993, + 0.034561436623334885, + -0.07976797968149185, + 0.03020022250711918, + -0.0373985692858696, + 0.08267545700073242, + 0.028160301968455315, + -0.0020970748737454414, + -0.09477430582046509, + 0.01944960094988346, + -0.061760395765304565, + 0.021641930565238, + -0.006659055594354868, + 0.07850182056427002, + -0.03331872448325157, + 0.04541757330298424, + 0.010352017357945442, + -0.08708356320858002, + -0.034584883600473404, + -0.07348408550024033, + 0.050599440932273865, + 0.00865208264440298, + -0.07006076723337173, + -0.023060496896505356, + -0.0703890323638916, + 0.05997839197516441, + -0.011096471920609474, + -0.05153733864426613, + 0.02799616940319538, + 0.04501896724104881, + 0.011078886687755585, + 0.06255760788917542, + 0.08319129794836044, + 0.008974484167993069, + -0.016096625477075577, + 0.015135282650589943, + -0.0799555629491806, + 0.026003142818808556, + -0.004317248705774546, + -0.0853484570980072, + 0.05871223658323288, + -0.04919259995222092, + 0.030809855088591576, + 0.012075399979948997, + 0.027878932654857635, + 0.012262978591024876, + 0.035874489694833755, + 0.025979695841670036, + -0.065980926156044, + -0.023013601079583168, + 0.0965094119310379, + 0.043072834610939026, + -0.007116279099136591, + 0.07292134314775467, + -0.02804306522011757, + -0.03772683069109917, + 0.04534722864627838, + 8.60500440467149e-05, + 0.029262328520417213, + -0.08084656298160553, + -0.009285162203013897, + 0.07273376733064651, + 0.019953718408942223, + 0.048207808285951614, + 0.03449109196662903, + -0.019004100933670998, + 0.005079288501292467, + 0.04387004300951958, + 0.0933205634355545, + 0.008306234143674374, + 0.006295620929449797, + 0.025487300008535385, + 0.008224167861044407, + -0.004988429602235556, + -0.038547489792108536, + -0.01399808470159769, + -0.0019813035614788532, + -0.027597563341259956, + 0.005477893631905317, + -0.04802023246884346, + 0.08051829785108566, + -0.026378300040960312, + -0.001927081379108131, + 0.01785517856478691, + -0.041712887585163116, + -0.04433899372816086, + 0.05214696750044823, + 0.013447071425616741, + -0.023025324568152428, + -0.03496004268527031, + -0.060165971517562866, + 0.013107084669172764, + 0.01730416528880596, + -0.007456266321241856, + 0.0496615469455719, + 0.004115014802664518, + -0.03287322446703911, + 0.027433432638645172, + 0.04877054691314697, + 0.04436244070529938, + -0.0399777814745903, + 0.044127967208623886, + -0.032380830496549606, + -0.0496615469455719, + 0.01710486225783825, + 0.015381480567157269, + -0.06949803233146667, + -0.012591241858899593, + -0.05796191841363907, + -0.0019637178629636765, + 0.028371328487992287, + -0.023810813203454018, + 0.06630918383598328, + -0.01493597961962223, + -0.0785956084728241, + -0.017397955060005188, + -0.025041799992322922, + 0.05557028576731682, + -0.01758553460240364, + 0.02246258780360222, + -0.002544040558859706, + 0.06677813082933426, + 0.07648535072803497, + -0.05519512668251991, + 0.00567719666287303, + -0.04248664900660515, + 0.03449109196662903, + 0.040728095918893814, + -0.07085797935724258, + 0.014267729595303535, + -0.00841174740344286, + 0.02940301224589348, + 0.01573319174349308, + -0.07592260837554932, + -0.05266281217336655, + 0.05078702047467232, + -0.027949275448918343, + -0.024150799959897995, + 0.01323604490607977, + -0.005454446189105511, + 0.036695148795843124, + -0.010398912243545055, + -0.06330791860818863, + 0.06752844899892807, + 0.010387188754975796, + -0.08516088128089905, + -0.013318111188709736, + 0.03875851631164551, + 0.06190107762813568, + 0.046027202159166336, + 0.060728710144758224, + -0.02586245909333229, + -0.05158423259854317, + 0.03158361837267876, + -0.007063522934913635, + -0.01400980819016695, + -0.03915712237358093, + -0.0342097245156765, + 0.07901766151189804, + 0.00513790687546134, + 0.09350814670324326, + 0.018546875566244125, + 0.019953718408942223, + 0.09303919970989227, + 0.06091628968715668, + -0.02189985103905201, + 0.07081108540296555, + -0.011266465298831463, + -0.06945113092660904, + 0.012051952071487904, + 0.05557028576731682, + 0.0773763507604599, + 0.022368798032402992, + -0.004777403548359871, + -0.006395272444933653, + -0.03573380410671234, + 0.08516088128089905, + 0.04534722864627838, + -0.10635730624198914, + 1.249076649401104e-05, + 0.08033071458339691, + -0.011670932173728943, + 0.018288955092430115, + -0.03505383059382439, + 0.021993640810251236, + 0.006647331640124321, + -0.10523183643817902, + -0.05116217955946922, + -0.12792889773845673, + 0.003690031124278903, + -0.005545305088162422, + -0.023693576455116272, + -0.044714149087667465, + 0.04351833462715149, + 0.005732884164899588, + -0.10438773036003113, + -0.04248664900660515, + -0.025745220482349396, + -0.016342822462320328, + -0.03444419801235199, + 0.017198652029037476, + -0.03472556546330452, + -0.05205317959189415, + 0.05050565302371979, + 0.0050470479764044285, + 0.04297904297709465, + -0.0005275660078041255, + 0.052850391715765, + 0.02112608775496483, + -0.002522058552131057, + -0.015545612201094627, + -0.07315582036972046, + 0.0022231044713407755, + -0.049520861357450485, + -0.05421033874154091, + 0.01522907242178917, + 0.0014192991657182574, + -0.0649961307644844, + 0.02827753871679306, + -0.06856013089418411, + 0.010422359220683575, + -0.01650695502758026, + 0.008734147995710373, + -0.0202350877225399, + -0.034702118486166, + 0.09735351800918579, + 0.014338071458041668, + -0.04084533452987671, + 0.034514542669057846, + 0.05331933870911598, + -0.05875913053750992, + 0.10804551839828491, + -0.07263997942209244, + 0.004557583946734667, + -0.042275622487068176, + -0.036953069269657135, + -0.02619072236120701, + -0.06049423664808273, + 0.06827876716852188, + 0.09458672255277634, + -0.06490234285593033, + 0.04914570599794388, + 0.030223671346902847, + 0.03784406930208206, + -0.04891123250126839, + 0.023166010156273842, + 0.013986361213028431, + 0.026214169338345528, + 0.014631164260208607, + 0.04131428152322769, + 0.032122910022735596, + -0.006688364781439304, + -0.019402705132961273, + -0.05683644488453865, + 0.010856135748326778, + 0.037773724645376205, + -0.0162490326911211, + -0.036695148795843124, + -0.032967012375593185, + 0.011465768329799175, + 0.04560514912009239, + -0.040423281490802765, + 0.004097429569810629, + 0.06326102465391159, + -0.08108103275299072, + -0.03066917136311531, + 0.011547833681106567, + -0.005325485952198505, + -0.052475232630968094, + -0.0003967735974583775, + 0.013833953067660332, + 0.0019915616139769554, + 0.01307191327214241, + 0.0023813743609935045, + -0.024690089747309685, + -0.047363705933094025, + -0.00726282550022006, + -0.0050998046062886715, + 0.03915712237358093, + 0.018101375550031662, + 0.01362292654812336, + 0.05955633893609047, + 0.06194797158241272, + 0.05500755086541176, + 0.03303735703229904, + -0.1044815182685852, + 0.0722179263830185, + -0.014420137740671635, + 0.010381327010691166, + 0.010375465266406536, + 0.01710486225783825, + 0.04190046340227127, + -0.07906456291675568, + -0.003525899490341544, + 0.03205256536602974, + -0.07793908566236496, + 0.026354853063821793, + -0.04970844089984894, + -0.03716409578919411, + -0.024080457165837288, + -0.0275272224098444, + -0.04075154289603233, + 0.04640236124396324, + 0.014889084734022617, + 0.04321351647377014, + 0.011477491818368435, + -0.013798781670629978, + -0.03817233070731163, + 0.04433899372816086, + -0.020410941913723946, + -0.016905559226870537, + -0.01065097190439701, + -0.055101338773965836, + 0.008458641357719898, + 0.03289667144417763, + -0.00988893210887909, + 0.0001820835459511727, + -0.07573503255844116, + -0.026073483750224113, + 0.00386881735175848, + 0.04459691420197487, + -0.004361212253570557, + 0.0045370678417384624, + 0.016753152012825012, + 0.007057660724967718, + 0.008622772991657257, + -0.002284653950482607, + 0.05449170619249344, + 0.08750561624765396, + 0.0614321306347847, + 0.003725202288478613, + -0.017749665305018425, + 0.014924256131052971, + -0.0011533178621903062, + 0.006061147432774305, + -0.008851385675370693, + 0.04422175511717796, + -0.018230335786938667, + 0.012720203027129173, + 0.047105781733989716, + 0.04886433482170105, + -0.05739918351173401, + 0.016413165256381035, + 0.008616911247372627, + -0.06565266102552414, + -0.0014771848218515515, + 0.013787058182060719, + 0.03986054286360741, + -0.07784529775381088, + 0.020422667264938354, + -0.01660074293613434, + -0.04663683474063873, + 0.05519512668251991, + 0.022052260115742683, + 0.02165365405380726, + 0.00024125154595822096, + 0.03737512230873108, + 0.0506463386118412, + -0.032685644924640656, + -0.01894548162817955, + 0.007919351570308208, + 0.015838703140616417, + -0.007362476550042629, + 0.032451171427965164, + 0.0005030195461586118, + 0.04785609990358353, + 0.03174775093793869, + -0.04886433482170105, + 0.00035922115785069764, + -0.024408720433712006, + -0.0030540209263563156, + 0.0897565633058548, + -0.019379258155822754, + -0.0034907283261418343, + 0.04675407335162163, + -0.032169803977012634, + 0.026331406086683273, + -0.0703890323638916 + ] + }, + { + "id": "6b208e20-8a20-4173-9597-95391c2d26d2", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ryanhodges", + "reviewDate": "2022-02-13T04:04:05", + "stars": 1, + "verifiedUser": true + }, + { + "id": "7f725307-5bdd-4006-bd47-72424179e4a0", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lkim", + "reviewDate": "2022-11-16T14:58:46", + "stars": 4, + "verifiedUser": false + }, + { + "id": "506639c4-ae41-4836-994e-2f6f4482eaf6", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rachelwilson", + "reviewDate": "2022-08-05T04:46:49", + "stars": 2, + "verifiedUser": true + }, + { + "id": "9ae0e671-2905-4b85-8adb-0f732cc2d197", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "blopez", + "reviewDate": "2021-05-19T20:37:45", + "stars": 2, + "verifiedUser": false + }, + { + "id": "79869932-e7f6-452f-8c37-c828ed9424dc", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alvarezchad", + "reviewDate": "2021-01-27T00:15:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1b4ebaa6-e4e7-4671-8c67-18b91a41a4b9", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cjohnson", + "reviewDate": "2022-04-03T06:40:38", + "stars": 1, + "verifiedUser": true + }, + { + "id": "ac9b02ab-1f77-4f9b-a3d5-e3f3b0181cc2", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "markjames", + "reviewDate": "2022-02-23T13:54:30", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c9f026bf-a734-423f-b4c0-5b2782cf7402", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "pooledeborah", + "reviewDate": "2022-03-31T03:25:53", + "stars": 4, + "verifiedUser": false + }, + { + "id": "db7a0a68-20e6-4d91-b1ba-1249437ab3a2", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "joelortiz", + "reviewDate": "2022-01-04T11:27:12", + "stars": 1, + "verifiedUser": false + }, + { + "id": "f1e31b01-87d9-4520-bb7f-c56c016ebb19", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smartin", + "reviewDate": "2022-01-20T11:03:53", + "stars": 3, + "verifiedUser": false + }, + { + "id": "b37e0e45-7f1f-4d60-aede-97cf37ff68a4", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ericawolfe", + "reviewDate": "2021-08-23T22:20:35", + "stars": 1, + "verifiedUser": false + }, + { + "id": "4e238c38-d3ea-448f-8faf-51a0e393aab0", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "frojas", + "reviewDate": "2022-01-04T15:46:34", + "stars": 3, + "verifiedUser": true + }, + { + "id": "141dbc28-f80f-4a4b-a375-e420dce79b31", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alejandro93", + "reviewDate": "2021-03-25T08:18:53", + "stars": 1, + "verifiedUser": true + }, + { + "id": "b55b10a5-f733-44a9-a44c-6c71c18a0f4f", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kcole", + "reviewDate": "2021-12-20T16:30:44", + "stars": 2, + "verifiedUser": false + }, + { + "id": "1a4a4d87-c911-4977-a2dd-4349209c337a", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "phillipserin", + "reviewDate": "2021-05-28T08:36:40", + "stars": 2, + "verifiedUser": false + }, + { + "id": "e7acae06-63b3-4a4e-9ed9-0830bebf8c3c", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "glopez", + "reviewDate": "2022-04-02T04:36:34", + "stars": 4, + "verifiedUser": true + }, + { + "id": "4c4edebb-906f-4475-8614-2ee521cf1f5d", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gillstacy", + "reviewDate": "2021-07-19T22:26:37", + "stars": 2, + "verifiedUser": false + }, + { + "id": "4ef749c6-4a82-4f9c-91a6-be1441b47b42", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "gonzalezsarah", + "reviewDate": "2021-05-02T12:40:33", + "stars": 4, + "verifiedUser": false + }, + { + "id": "8c6c4e81-938f-4870-b857-d3d514e6673b", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "alan42", + "reviewDate": "2021-03-30T09:42:48", + "stars": 1, + "verifiedUser": true + }, + { + "id": "67925528-924a-4ff7-bf02-c6fce7b18aad", + "productId": "493ae6d9-2d34-4589-a16d-2cf369055b1e", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "robert03", + "reviewDate": "2021-05-16T13:01:14", + "stars": 3, + "verifiedUser": true + }, + { + "id": "f58b61b0-f48b-4324-8564-487c9958ec18", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "product", + "name": "Awesome Keyboard 3000 (Red)", + "description": "This Awesome Keyboard 3000 (Red) is coming to Apple Watch & Wear. And that sounds like plenty of cool stuff to use on a smartwatch in some sense.\n\nThis is definitely still an exclusive of Apple, and a few of the more prominent developers that help out with building smartwatches have already started working on a smartwatch.\n\nCheck out below some", + "countryOfOrigin": "Germany", + "rareItem": false, + "firstAvailable": "2018-07-08T01:49:34", + "price": 135.19, + "stock": 23, + "priceHistory": [ + { + "priceDate": "2021-03-01T18:01:58", + "newPrice": 138.32 + }, + { + "priceDate": "2021-09-08T18:01:58", + "newPrice": 147.3 + }, + { + "priceDate": "2022-03-18T18:01:58", + "newPrice": 124.97 + }, + { + "priceDate": "2022-09-25T18:01:58", + "newPrice": 137.67 + }, + { + "priceDate": "2025-05-19T18:01:58", + "newPrice": 135.19 + } + ], + "descriptionVector": [ + -0.05264339596033096, + 0.0021182491909712553, + -0.03588416799902916, + 0.013945270329713821, + 0.05523323267698288, + -0.04044128209352493, + 0.04298131540417671, + 0.032472558319568634, + -0.010720426216721535, + 0.01420674379914999, + 0.0678337812423706, + -0.0004365679051261395, + 0.12341564148664474, + 0.017506293952465057, + 0.0714695081114769, + 0.031078031286597252, + -0.025300703942775726, + -0.020233092829585075, + -0.08008569478988647, + 0.0013377186842262745, + -0.012177209369838238, + -0.013447225093841553, + -0.10269695520401001, + -0.01110018603503704, + 0.05857013538479805, + -0.014318804256618023, + 0.029932526871562004, + -0.007788184564560652, + -0.02938467636704445, + -0.0125320665538311, + 0.0526931993663311, + -0.01301143504679203, + -0.04352916404604912, + 0.07122048735618591, + -0.034340228885412216, + -0.013671345077455044, + -0.013210653327405453, + 0.07306325435638428, + 0.057374827563762665, + -0.061956845223903656, + 0.07251540571451187, + -0.04400230944156647, + -0.0033773700706660748, + -0.0223622377961874, + -0.008124365471303463, + 0.028363684192299843, + -0.010658171027898788, + -0.07928882539272308, + -0.030853910371661186, + 0.039594605565071106, + -0.015576369129121304, + 0.008983492851257324, + -0.062305476516485214, + 0.00532285962253809, + 0.010651945136487484, + 0.04210973531007767, + -0.006166424136608839, + -0.027367593720555305, + 0.07819312065839767, + -0.043255239725112915, + -0.01601215824484825, + -0.04395250231027603, + 0.04156188666820526, + -0.035958874970674515, + -0.05767365172505379, + -0.030106842517852783, + -0.011367885395884514, + -0.027093667536973953, + 0.0145927295088768, + 0.05353987589478493, + -0.03984363004565239, + 0.043728381395339966, + 0.01348457857966423, + 0.07550367712974548, + 0.0014295458095148206, + 0.023271169513463974, + 0.05777326226234436, + 0.028762120753526688, + 0.019274355843663216, + 0.004709641449153423, + -0.006253581959754229, + -0.008871433325111866, + -0.04432603716850281, + -0.06399883329868317, + 0.013546833768486977, + -0.0007898688199929893, + 0.01599970832467079, + -0.10927115380764008, + -0.03481337055563927, + 0.05632892996072769, + -0.07281423360109329, + 0.06912869960069656, + -0.03351845219731331, + -0.022511649876832962, + 0.013633991591632366, + 0.04455015808343887, + 0.0008233312400989234, + 0.03429042175412178, + -0.03820008039474487, + -0.022760672494769096, + 0.06693729758262634, + 0.024416673928499222, + 0.015675978735089302, + -0.08098217844963074, + -0.0012381096603348851, + 0.02460344135761261, + 0.05936700850725174, + 0.027840735390782356, + -0.05393831431865692, + -0.09178975969552994, + 0.0460691973567009, + -0.0314764678478241, + -0.04430113360285759, + 0.03416591137647629, + -0.07590211182832718, + 0.07530445605516434, + -0.0432303361594677, + -0.06982596218585968, + -0.03314491733908653, + -0.024478929117321968, + 0.0545857734978199, + 0.019311709329485893, + -0.04101403430104256, + 0.02521354705095291, + 0.014318804256618023, + -0.004460618831217289, + -0.04733921214938164, + -0.017431586980819702, + 0.010589689947664738, + 0.009095553308725357, + -0.05538264289498329, + 0.10115301609039307, + 0.053091637790203094, + 0.09353291988372803, + 0.011691614985466003, + 0.0482356920838356, + 0.028039954602718353, + 0.10095379501581192, + 0.025748945772647858, + 0.055133622139692307, + 0.012862022034823895, + -0.03892224654555321, + 0.011604457162320614, + 0.056577954441308975, + -0.03939538821578026, + 0.03314491733908653, + -0.012656577862799168, + 0.011766321957111359, + -0.013434773311018944, + 0.03384218364953995, + -0.000605436391197145, + -0.10115301609039307, + -0.0020466551650315523, + -0.051846522837877274, + 0.007433326914906502, + 0.06504472345113754, + -0.05144808813929558, + -0.0951266661286354, + 0.013521932065486908, + 0.07007498294115067, + -0.0936325266957283, + 0.025923261418938637, + -0.004706528503447771, + 0.022275079041719437, + -0.08123119920492172, + -0.021154476329684258, + 0.06534355133771896, + 0.02634659968316555, + -0.03613319247961044, + 0.0218890942633152, + 0.009630952030420303, + -0.010664395987987518, + 0.04761313647031784, + -0.05916779115796089, + 0.006216228939592838, + 0.03668104112148285, + 0.052145350724458694, + 0.001491023343987763, + 0.008628635667264462, + -0.06260430067777634, + 0.01796698570251465, + 0.07913941144943237, + -0.04061559960246086, + 0.019710145890712738, + 0.0932340919971466, + 0.033717669546604156, + 0.049580417573451996, + 0.045322127640247345, + 0.004911972209811211, + -0.03448964282870293, + 0.045645859092473984, + -0.047214701771736145, + -0.023719411343336105, + 0.060064271092414856, + -0.014331255108118057, + 0.04061559960246086, + 0.026122478768229485, + -0.021876642480492592, + -0.03092861734330654, + 0.04352916404604912, + -0.04061559960246086, + 0.029558992013335228, + 0.09129171818494797, + 0.0027703773230314255, + 0.014555376023054123, + 0.054834794253110886, + 0.033269431442022324, + 0.026944253593683243, + 0.05254378542304039, + -0.043877795338630676, + 0.02935977466404438, + 0.03488807752728462, + -0.03234804794192314, + -0.06663846969604492, + 0.037403207272291183, + 0.00503959646448493, + 0.03919617086648941, + -0.021229183301329613, + 0.03506239503622055, + 0.016248730942606926, + 0.06628983467817307, + -0.026222089305520058, + 0.016547556966543198, + -0.02144085243344307, + -0.012849570252001286, + 0.046741556376218796, + 0.011436366476118565, + 0.06320195645093918, + 0.040864624083042145, + 0.01380830816924572, + -0.008242650888860226, + -0.09856317937374115, + 0.025313155725598335, + 0.015053421258926392, + 0.024341966956853867, + -0.023208914324641228, + 0.003589039435610175, + -0.0013205984141677618, + -0.051199063658714294, + 0.035958874970674515, + -0.010521207936108112, + -0.05194613337516785, + -0.04544663801789284, + -0.064845509827137, + 0.04347936064004898, + -0.018776310607790947, + -0.0031018888112157583, + 0.11315590888261795, + -0.06584160029888153, + 0.06514433026313782, + -0.05204574018716812, + 0.06081134080886841, + -0.06693729758262634, + 0.08915012329816818, + -0.02838858589529991, + 0.04131286218762398, + 0.022511649876832962, + 0.03561024367809296, + 0.030878812074661255, + -0.03478846698999405, + 0.0020217529963701963, + -0.009027072228491306, + -0.04614390432834625, + 0.05274300277233124, + 0.03222353383898735, + 0.018626896664500237, + 0.03172548860311508, + -0.05847052484750748, + -0.031053127720952034, + -0.0025742719881236553, + 0.026570720598101616, + -0.020407408475875854, + 0.04064050316810608, + -0.028015051037073135, + -0.007047342136502266, + -0.012488487176597118, + -0.03732850030064583, + 0.011648035608232021, + 0.034539446234703064, + -0.013260457664728165, + 0.02159026637673378, + 0.08939914405345917, + 0.11355434358119965, + -0.04918197914958, + 0.002722129225730896, + 0.0027065651956945658, + -0.023296071216464043, + 0.023408131673932076, + 0.024491380900144577, + -0.06788358092308044, + -0.019585633650422096, + -0.04855942353606224, + 0.062305476516485214, + 0.03092861734330654, + -0.009998260997235775, + -0.015775587409734726, + 0.02714347280561924, + 0.007209206465631723, + -0.03695496544241905, + -0.006337627302855253, + 0.0587693527340889, + -0.08342260122299194, + -0.07779468595981598, + -0.08481712639331818, + -0.012413781136274338, + 0.07092165946960449, + 0.047214701771736145, + 0.04649253562092781, + -0.0049773408100008965, + -0.0368802584707737, + 0.031351957470178604, + -0.04609409719705582, + -0.02858780324459076, + 0.02619718573987484, + 0.05941681191325188, + 0.00456956634297967, + -0.01190328411757946, + 0.04621861129999161, + 0.0003778141108341515, + -0.06604081392288208, + 0.03780164197087288, + 0.04569566249847412, + -0.1091715469956398, + 0.02729288674890995, + 0.0029836029279977083, + 0.02364470437169075, + -0.002605399815365672, + -0.05847052484750748, + 0.002851309720426798, + -0.05543245002627373, + -0.04479918256402016, + -0.041810907423496246, + -0.03859851509332657, + 0.0013447224628180265, + 0.035137102007865906, + -0.0644470676779747, + -0.0028295202646404505, + 0.08870188146829605, + 0.062305476516485214, + 0.01664716564118862, + 0.06205645203590393, + 0.04049108922481537, + -0.05632892996072769, + -0.04684116691350937, + -0.01277486328035593, + -0.0587693527340889, + -0.028537999838590622, + 0.013833209872245789, + 0.04684116691350937, + 0.014430864714086056, + 0.001504252664744854, + -0.02838858589529991, + 0.03461415320634842, + -0.04997885227203369, + -0.001732264063321054, + -0.015065872110426426, + -0.01585029438138008, + -0.07286404073238373, + -0.006686259061098099, + 0.08357201516628265, + -0.05284261330962181, + -0.013173299841582775, + 0.057225413620471954, + 0.05652814731001854, + -0.022822929546236992, + -0.009319674223661423, + -0.05005355924367905, + 0.07764527201652527, + -0.01667206920683384, + 0.005385115742683411, + 0.02791544236242771, + 0.011890833266079426, + -0.04300621896982193, + 0.06773416697978973, + -0.0026552043855190277, + 0.020681334659457207, + -0.0399930439889431, + 0.008304906077682972, + -0.025997968390583992, + 0.06290312856435776, + -0.0526931993663311, + -0.015775587409734726, + -0.028338780626654625, + 0.05886896327137947, + 0.00333379115909338, + -0.03018154948949814, + 0.02873721718788147, + -0.031078031286597252, + -0.042308952659368515, + 0.028513098135590553, + -0.04758823662996292, + 0.0033649189863353968, + -0.008778049610555172, + 0.027392495423555374, + 0.03710437938570976, + -0.014418412931263447, + -0.04970492795109749, + 0.09926044195890427, + 0.06051251292228699, + 0.018004339188337326, + -0.06260430067777634, + 0.04636802524328232, + 0.024205004796385765, + 0.06210625544190407, + -0.08999679982662201, + -0.043578971177339554, + -0.0737605169415474, + -0.002449760679155588, + -0.002832632977515459, + -0.05304183065891266, + -0.017070505768060684, + 0.008030981756746769, + 0.0013011435512453318, + -0.008821628987789154, + 0.021366145461797714, + -0.038000863045454025, + 0.04337975010275841, + 0.09721845388412476, + 0.08352220803499222, + -0.05568147078156471, + -0.03969421610236168, + 0.04982943832874298, + -0.005506514105945826, + -0.015476759523153305, + -0.0748562216758728, + -0.010128997266292572, + 0.055532056838274, + 0.002977377502247691, + -0.01088229101151228, + -0.0644470676779747, + 0.02526335045695305, + -0.018975527957081795, + 0.021216733381152153, + -0.013272909447550774, + 0.01546430867165327, + -0.017207467928528786, + -0.02619718573987484, + 0.042956411838531494, + 0.035809461027383804, + 0.03409120440483093, + -0.014144488610327244, + -0.02968350425362587, + -0.1379585713148117, + 0.040391478687524796, + -0.08013550192117691, + -0.016273632645606995, + 0.0024528733920305967, + -0.024541186168789864, + 0.03827478736639023, + -0.04858432710170746, + -0.07450758665800095, + -0.02061907760798931, + -0.0088838841766119, + 0.052145350724458694, + -0.0013595082564279437, + -0.054535966366529465, + 0.037079475820064545, + 0.06474589556455612, + -0.04196032136678696, + 0.03062978945672512, + 0.037726934999227524, + 0.05060140788555145, + 0.04933139309287071, + -0.01875140890479088, + -0.006499492097645998, + -0.044699572026729584, + -0.008609958924353123, + -0.010496306233108044, + -0.014791947789490223, + 0.025973066687583923, + -0.020693784579634666, + -0.07156912237405777, + 0.007047342136502266, + -0.03857361525297165, + -0.03645692020654678, + -0.04619370773434639, + 0.059914857149124146, + 0.05289241671562195, + 0.0071095977909862995, + 0.014605180360376835, + 0.020693784579634666, + -0.009381929412484169, + 0.01429390162229538, + -0.05353987589478493, + -0.013223104178905487, + -0.03222353383898735, + -0.034215718507766724, + 0.04557115212082863, + 0.07908960431814194, + 0.048011574894189835, + 0.011386562138795853, + 0.015265090391039848, + -0.04365367814898491, + -0.029957428574562073, + -0.0517469123005867, + -0.03852380812168121, + 0.03361806273460388, + 0.041985224932432175, + -0.09846357256174088, + 0.028164464980363846, + 0.028463292866945267, + 0.01309859286993742, + -0.04733921214938164, + -0.021963801234960556, + -0.002049767877906561, + -0.00011828577407868579, + -0.05274300277233124, + 0.041810907423496246, + 0.04933139309287071, + -0.017244821414351463, + -0.045795273035764694, + -0.06868045777082443 + ] + }, + { + "id": "b1fc908d-e63d-494f-b760-73bb2a991539", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kbryant", + "reviewDate": "2021-06-04T15:21:51", + "stars": 2, + "verifiedUser": false + }, + { + "id": "51f33cd9-7b0a-46fe-99c1-8f44c7c34c94", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "miranda38", + "reviewDate": "2021-10-13T18:20:52", + "stars": 1, + "verifiedUser": false + }, + { + "id": "cec69b15-2a3e-489f-869e-3b433be2b630", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "collinsrachel", + "reviewDate": "2022-06-14T11:44:36", + "stars": 3, + "verifiedUser": true + }, + { + "id": "c3069a15-51de-4ef1-9f98-404220268dd3", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "kaitlyn78", + "reviewDate": "2022-08-29T19:54:27", + "stars": 2, + "verifiedUser": false + }, + { + "id": "a8b7365d-c29f-4aeb-8b52-152e3be5d740", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "michael16", + "reviewDate": "2021-06-14T23:49:08", + "stars": 4, + "verifiedUser": true + }, + { + "id": "48193549-1ef0-4994-9ca7-3c8dcb1cf259", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "cchapman", + "reviewDate": "2021-06-06T08:57:14", + "stars": 2, + "verifiedUser": false + }, + { + "id": "875ce427-42fe-4322-9a75-667de75d9629", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "dmeza", + "reviewDate": "2021-04-24T17:06:47", + "stars": 4, + "verifiedUser": false + }, + { + "id": "a03b472c-6691-421b-95a0-316c623b67a0", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "mendezross", + "reviewDate": "2021-07-22T14:38:13", + "stars": 1, + "verifiedUser": false + }, + { + "id": "06c4c1e9-62a3-40d5-a6d7-e8df4d5680fc", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "melissa01", + "reviewDate": "2022-08-11T17:54:08", + "stars": 4, + "verifiedUser": false + }, + { + "id": "b17a474f-5ab1-4f4d-b034-8601e5085770", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "rmeza", + "reviewDate": "2021-03-15T04:35:29", + "stars": 4, + "verifiedUser": false + }, + { + "id": "51c8bcac-1951-4ee9-8925-3c3c50709e76", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "lauralin", + "reviewDate": "2021-06-19T11:41:15", + "stars": 3, + "verifiedUser": true + }, + { + "id": "0254d2b5-4d46-44a2-933c-1d4a65f1ea39", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "davisashley", + "reviewDate": "2021-03-01T18:01:58", + "stars": 2, + "verifiedUser": false + }, + { + "id": "265c2ca7-0c31-4b6b-8751-c1e466a8c73f", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "smithkatie", + "reviewDate": "2021-08-26T06:05:13", + "stars": 3, + "verifiedUser": false + }, + { + "id": "c98a0109-c57f-4996-a638-c759c2914cb9", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "ihendrix", + "reviewDate": "2021-12-28T15:23:04", + "stars": 3, + "verifiedUser": false + }, + { + "id": "3a597012-011c-4ff5-8205-a66c2d4d230c", + "productId": "f58b61b0-f48b-4324-8564-487c9958ec18", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "youngralph", + "reviewDate": "2022-09-25T19:23:32", + "stars": 4, + "verifiedUser": false + }, + { + "id": "d2439983-8472-4cf2-8538-5d390facbb98", + "productId": "d2439983-8472-4cf2-8538-5d390facbb98", + "category": "Perhipheral", + "docType": "product", + "name": "Basic Keyboard Ultra (Steel)", + "description": "This Basic Keyboard Ultra (Steel) is a keyboard that fits great in your back pocket and can use and play the standard 8-key keyboard. These ultra-thin keyboards will last a long time and will be the ideal choice", + "countryOfOrigin": "South Africa", + "rareItem": false, + "firstAvailable": "2020-02-02T10:46:08", + "price": 228.9, + "stock": 11, + "priceHistory": [ + { + "priceDate": "2021-01-08T11:29:19", + "newPrice": 251.12 + }, + { + "priceDate": "2021-01-09T11:29:19", + "newPrice": 207.17 + }, + { + "priceDate": "2021-01-10T11:29:19", + "newPrice": 248.7 + }, + { + "priceDate": "2021-01-11T11:29:19", + "newPrice": 206.3 + }, + { + "priceDate": "2022-02-23T11:29:19", + "newPrice": 228.9 + } + ], + "descriptionVector": [ + 0.003907428123056889, + -0.004731480497866869, + -0.03235088661313057, + -0.026871753856539726, + 0.06636079400777817, + -0.006226781290024519, + -0.045841336250305176, + 0.0019509854028001428, + 0.017954522743821144, + 0.02746114321053028, + 0.006134007126092911, + -0.0038201112765818834, + 0.06251884996891022, + -0.036411117762327194, + 0.01456008106470108, + -0.01912238635122776, + 0.005200808867812157, + -0.009692167863249779, + -0.036170996725559235, + -0.02746114321053028, + 0.029534917324781418, + -0.07745002955198288, + -0.07897806912660599, + -0.05854593589901924, + 0.012999293394386768, + 0.03540697321295738, + -0.013446792028844357, + 0.03171783685684204, + -0.034359171986579895, + -0.015880748629570007, + 0.03409722074866295, + 0.039620012044906616, + -0.04575401917099953, + 0.04213036969304085, + -0.06487640738487244, + -0.01362142525613308, + -0.06915492564439774, + -0.052783023566007614, + -0.03023345209658146, + -0.0068489136174321175, + 0.0389651358127594, + 0.02199292555451393, + 0.006832541897892952, + 0.020213846117258072, + 0.0009809499606490135, + 0.06317372620105743, + 0.019493483006954193, + -0.028356140479445457, + 0.017474280670285225, + -0.03662940859794617, + 0.07146882265806198, + 0.0406678132712841, + 0.0018445680616423488, + 0.021152501925826073, + 0.055839113891124725, + -0.017648914828896523, + 0.01523678656667471, + 0.08526488393545151, + 0.11438504606485367, + -0.07068297266960144, + -0.0499015673995018, + -0.08129196614027023, + -0.04389853775501251, + -0.030582720413804054, + -0.014614654704928398, + -0.04149732366204262, + -0.008344214409589767, + 0.01502940896898508, + 0.06692834943532944, + 0.02763577736914158, + -0.049377668648958206, + -0.02706821635365486, + -0.03171783685684204, + 0.0478496216237545, + -0.012639110907912254, + 0.014789287932217121, + 0.007858514785766602, + 0.07295320928096771, + 0.09412754327058792, + 0.03141222894191742, + -0.0050780195742845535, + 0.017255987972021103, + -0.07513613253831863, + -0.04771864786744118, + 0.04649621248245239, + 0.045841336250305176, + 0.042152199894189835, + -0.06461445242166519, + -0.08439171314239502, + 0.15490005910396576, + -0.06474542617797852, + -0.004043860826641321, + -0.018041839823126793, + -0.022920668125152588, + 0.07675149291753769, + 0.001997372368350625, + -0.11386114358901978, + 0.023357251659035683, + -0.04295988008379936, + 0.010134209878742695, + 0.0803314819931984, + 0.013195755891501904, + -0.045841336250305176, + -0.019930066540837288, + -0.008846286684274673, + -0.0002525707532186061, + 0.08482830226421356, + 0.08116099238395691, + -0.061514705419540405, + -0.16040101647377014, + -0.03883415833115578, + -0.010407074354588985, + -0.028072360903024673, + 0.011362102814018726, + -0.014079838991165161, + -0.012737342156469822, + -0.04193390905857086, + -0.01039070263504982, + 0.02111975848674774, + 0.041759274899959564, + -0.007149065379053354, + 0.020410308614373207, + 0.04872279241681099, + 0.04193390905857086, + -0.06963517516851425, + 0.016470136120915413, + -0.02944760024547577, + 0.0880153626203537, + 0.04075513035058975, + -0.002260687295347452, + -0.08653097599744797, + 0.024361396208405495, + 0.020192017778754234, + 0.025758463889360428, + -0.016906721517443657, + 0.029011016711592674, + 0.019286105409264565, + 0.003615462454035878, + -0.028290653601288795, + 0.07378271967172623, + -0.0075965640135109425, + -0.033180397003889084, + 0.023248106241226196, + -0.020912380889058113, + -0.05291399732232094, + 0.01905689761042595, + -0.015160384587943554, + -0.02274603396654129, + 0.035778071731328964, + 0.03700050711631775, + -0.02202567085623741, + -0.08299464732408524, + -0.01707044057548046, + -0.044749874621629715, + 0.036323800683021545, + 0.04256695508956909, + -0.08054977655410767, + 0.0064232442528009415, + 0.0037191512528806925, + 0.04274158924818039, + 0.010368873365223408, + 0.03501404821872711, + 0.0011146538890898228, + -0.045142799615859985, + -0.00012671173317357898, + 0.07321516424417496, + 0.07120687514543533, + 0.07430662214756012, + 0.057891059666872025, + 0.026391511783003807, + -0.07443759590387344, + 0.03573441132903099, + -0.062300559133291245, + -0.052302781492471695, + 0.025147246196866035, + -0.03911793977022171, + 0.05326326563954353, + -0.03154320642352104, + 0.02244042605161667, + -0.018522081896662712, + 0.02329176478087902, + 0.07238565385341644, + -0.04291622340679169, + 0.020006468519568443, + 0.11097969114780426, + 0.021578172221779823, + 0.016109954565763474, + 0.047893282026052475, + 0.016546539962291718, + -0.03855038061738014, + -0.017594341188669205, + 0.021217988803982735, + -0.06365396827459335, + 0.02549651451408863, + -0.006264982745051384, + 0.01755068264901638, + -0.010368873365223408, + 0.02078140527009964, + -0.023837493732571602, + -0.013293987140059471, + 0.04394219443202019, + 0.05391814187169075, + 0.05610106140375137, + -0.005626478232443333, + 0.018740374594926834, + 0.03872501477599144, + -0.0028596261981874704, + -0.008022233843803406, + 0.00519535131752491, + -0.018674887716770172, + -0.010969176888465881, + -0.01657928340137005, + -0.005509146023541689, + -0.043025366961956024, + 0.0006367989117279649, + -0.0008295098668895662, + 0.004412228707224131, + -0.024143103510141373, + -0.051604244858026505, + -0.0681944414973259, + 0.01116018183529377, + 0.0013882011407986283, + 0.013959778472781181, + -0.035843558609485626, + -0.03968549892306328, + -0.06212592497467995, + 0.09404022246599197, + 0.08238343149423599, + 0.017801718786358833, + 0.06147104874253273, + -0.004619605839252472, + 0.0008458817610517144, + -0.014800203032791615, + -0.010608994401991367, + -0.02936028316617012, + 0.012868317775428295, + 0.0174306221306324, + -0.05134229734539986, + -0.056232038885354996, + 0.035232339054346085, + 0.05579545348882675, + -0.03894330561161041, + -0.05204083025455475, + -0.06736493110656738, + 0.04479353502392769, + -0.00394290080294013, + 0.053568873554468155, + 0.009375644847750664, + -0.055358871817588806, + 0.04123537242412567, + -0.023597372695803642, + -0.01845659501850605, + 0.06553128361701965, + 0.07360808551311493, + 0.00010940185165964067, + 0.07072663307189941, + 0.02715553343296051, + -0.014865689910948277, + -0.01613178476691246, + -0.07884709537029266, + 0.04282890632748604, + -0.005023446399718523, + -0.0481988899409771, + 0.06387226283550262, + -0.03756806626915932, + 0.053394243121147156, + 0.06967882812023163, + -0.08871389925479889, + -0.009239211678504944, + 0.0517788790166378, + 0.02636968344449997, + 0.031150279566645622, + 0.05208449065685272, + 0.018009096384048462, + 0.014276301488280296, + -0.021676402539014816, + -0.10661385208368301, + 0.06273714452981949, + -0.03614916652441025, + -0.014123497530817986, + 0.015204043127596378, + 0.12460111826658249, + 0.012693684548139572, + 0.03158686310052872, + -0.02190561033785343, + -0.030429914593696594, + 0.036782216280698776, + 0.008824457414448261, + 0.0290546752512455, + -0.04457524046301842, + 0.014374532736837864, + -0.009550278075039387, + -0.005762910936027765, + 0.032394543290138245, + 0.018511168658733368, + 0.0340099036693573, + 0.004788782447576523, + -0.028225164860486984, + 0.03141222894191742, + 0.009282870218157768, + 0.008447903208434582, + 0.029382113367319107, + -0.09561192989349365, + -0.03307124972343445, + -0.012016979046165943, + 0.03743709251284599, + 0.024121273308992386, + -0.024972613900899887, + -0.05369985103607178, + -0.0459723100066185, + 0.04723840579390526, + -0.01223527081310749, + -0.04346195235848427, + -0.01033067237585783, + 0.08906316757202148, + -0.0019427994266152382, + 0.03905245289206505, + 0.030866499990224838, + 0.02337908186018467, + -0.005626478232443333, + 0.008753512054681778, + -0.011798686347901821, + -0.04413865879178047, + 0.0833875760436058, + 0.01815098524093628, + -0.08753512054681778, + -0.021982012316584587, + 0.01534593291580677, + 0.03658575192093849, + -0.09884265065193176, + 0.0007265033200383186, + -0.00036495705717243254, + -0.043483782559633255, + 0.0481988899409771, + 0.06592420488595963, + -0.07356443256139755, + -0.007372814696282148, + 0.036411117762327194, + 0.04068964347243309, + 0.004627792164683342, + 0.09700899571180344, + 0.03184881433844566, + 0.043178170919418335, + -0.03586538881063461, + -0.04885376617312431, + -0.01591349206864834, + -0.05409277603030205, + -0.05898251757025719, + -0.07408832758665085, + -0.008731682784855366, + 0.00123676098883152, + -0.024514200165867805, + 0.0021447197068482637, + -0.030801011249423027, + 0.06422153115272522, + -0.004851541481912136, + 0.034206368029117584, + 0.004903385881334543, + 0.04075513035058975, + 0.08993633091449738, + 0.033267710357904434, + -0.009457504376769066, + 0.010374330915510654, + 0.020945124328136444, + -0.035930875688791275, + 0.010729055851697922, + -0.03488307446241379, + 0.07832319289445877, + 0.018620314076542854, + 0.025059930980205536, + 0.013545023277401924, + -0.006445073522627354, + 0.034446489065885544, + 0.03555977717041969, + -0.039467208087444305, + 0.05863325297832489, + 0.019984640181064606, + -0.06526932865381241, + -0.03422819823026657, + 0.00017429258150514215, + 0.03756806626915932, + 0.04047134891152382, + -0.008316927589476109, + -0.006652451120316982, + 0.008131380192935467, + -0.015193128027021885, + -0.07469955086708069, + 0.03944537788629532, + 0.025692977011203766, + 0.03835391625761986, + 0.012650026008486748, + -0.027832239866256714, + -0.06762688606977463, + 0.041060738265514374, + -0.018292875960469246, + 0.01721232943236828, + 0.04688913747668266, + 0.06679737567901611, + -0.06797615438699722, + 0.019166044890880585, + 0.04610328748822212, + 0.08286367356777191, + 0.027526630088686943, + -0.015575139783322811, + 0.0005494820652529597, + -0.08116099238395691, + 0.013228499330580235, + 0.08116099238395691, + -0.0018104598857462406, + -0.08701121807098389, + -0.004562304355204105, + -0.011252956464886665, + -0.0350358784198761, + -0.04771864786744118, + 0.0007783476612530649, + 0.05134229734539986, + 0.025300052016973495, + 0.06762688606977463, + 0.05287034064531326, + -0.02488529682159424, + 0.027373826131224632, + -0.06518201529979706, + -0.05369985103607178, + -0.04330914840102196, + 0.06278079748153687, + -0.018827691674232483, + -0.06378494203090668, + -0.05527155473828316, + 0.05020717531442642, + -0.02936028316617012, + -0.015269530937075615, + -0.04335280507802963, + -0.020912380889058113, + 0.0249507836997509, + 0.01724507473409176, + -0.0357125848531723, + -0.019067812711000443, + 0.03235088661313057, + -0.04180293157696724, + -0.017616169527173042, + -0.01972268894314766, + 0.0034135424066334963, + -0.03562526777386665, + 0.00954482052475214, + -0.017266903072595596, + 0.012726427987217903, + -0.04662718623876572, + 0.0360618494451046, + 0.06347933411598206, + -0.0022238504607230425, + 0.04027488827705383, + 0.012955634854733944, + -0.025059930980205536, + -0.003146134549751878, + 0.08177220821380615, + -0.032700151205062866, + 0.06382860243320465, + 0.06129641458392143, + -0.0002479661488905549, + 0.03311490640044212, + -0.04675816372036934, + 0.04667084664106369, + 0.023160789161920547, + 0.01812915690243244, + -0.03331137076020241, + -0.03062637709081173, + 0.006881657522171736, + 0.027570288628339767, + -0.034839414060115814, + 0.011318444274365902, + 0.016055382788181305, + -0.10102557390928268, + 0.01920970343053341, + -0.00013737051631323993, + 0.04130085930228233, + -0.12617282569408417, + -0.009915917180478573, + -0.03534148633480072, + -0.03368246555328369, + 0.043025366961956024, + -0.04881010949611664, + -0.07487418502569199, + 0.0029442142695188522, + -0.037655383348464966, + 0.05767276510596275, + -0.013905204832553864, + -0.053394243121147156, + 0.03619282692670822, + 0.04959595948457718, + 0.050643760710954666, + 0.0016467408277094364, + 0.04898473992943764, + -0.03748074918985367, + -0.07801758497953415, + -0.009042749181389809, + 0.026980901136994362, + -0.00206149579025805, + -0.004103891085833311, + -0.06701567023992538, + 0.08439171314239502, + -0.014123497530817986, + -0.032154422253370285, + -0.006996260955929756, + 0.07701344043016434, + 0.03743709251284599, + 0.03361697867512703, + 0.02084689401090145, + 0.06129641458392143, + 0.04706377163529396, + 0.03780818730592728, + 0.04123537242412567, + -0.058589592576026917 + ] + }, + { + "id": "bee45ba1-d986-4bc1-8780-b6412c5198c1", + "productId": "d2439983-8472-4cf2-8538-5d390facbb98", + "category": "Perhipheral", + "docType": "customerRating", + "userName": "adamssarah", + "reviewDate": "2021-01-08T11:29:19", + "stars": 2, + "verifiedUser": false + } +] \ No newline at end of file diff --git a/src/Explorer/Panes/AddCollectionPanel/AddCollectionPanel.tsx b/src/Explorer/Panes/AddCollectionPanel/AddCollectionPanel.tsx index 323ed1bca..6162361d6 100644 --- a/src/Explorer/Panes/AddCollectionPanel/AddCollectionPanel.tsx +++ b/src/Explorer/Panes/AddCollectionPanel/AddCollectionPanel.tsx @@ -42,7 +42,7 @@ import { } from "Explorer/Panes/AddCollectionPanel/AddCollectionPanelUtility"; import { useSidePanel } from "hooks/useSidePanel"; import { useTeachingBubble } from "hooks/useTeachingBubble"; -import { isFabricNative } from "Platform/Fabric/FabricUtil"; +import { DEFAULT_FABRIC_NATIVE_CONTAINER_THROUGHPUT, isFabricNative } from "Platform/Fabric/FabricUtil"; import React from "react"; import { CollectionCreation } from "Shared/Constants"; import { Action } from "Shared/Telemetry/TelemetryConstants"; @@ -52,7 +52,6 @@ import { getCollectionName } from "Utils/APITypeUtils"; import { isCapabilityEnabled, isServerlessAccount, isVectorSearchEnabled } from "Utils/CapabilityUtils"; import { getUpsellMessage } from "Utils/PricingUtils"; import { ValidCosmosDbIdDescription, ValidCosmosDbIdInputPattern } from "Utils/ValidationUtils"; -import * as AutoPilotUtils from "../../../Utils/AutoPilotUtils"; import { CollapsibleSectionComponent } from "../../Controls/CollapsiblePanel/CollapsibleSectionComponent"; import { ThroughputInput } from "../../Controls/ThroughputInput/ThroughputInput"; import { ContainerSampleGenerator } from "../../DataSamples/ContainerSampleGenerator"; @@ -1355,8 +1354,7 @@ export class AddCollectionPanel extends React.Component = (props: SplashScreenProps) => { const styles = useStyles(); const [openSampleDataImportDialog, setOpenSampleDataImportDialog] = React.useState(false); + const [selectedSampleDataConfiguration, setSelectedSampleDataConfiguration] = + React.useState(undefined); const getSplashScreenButtons = (): JSX.Element => { const buttons: FabricHomeScreenButtonProps[] = [ @@ -145,10 +168,30 @@ export const FabricHomeScreen: React.FC = (props: SplashScree }, }, { - title: "Sample data", - description: "Automatically load sample data in your database", + title: "Sample Data", + description: "Load sample data in your database", icon: , - onClick: () => setOpenSampleDataImportDialog(true), + onClick: () => { + setSelectedSampleDataConfiguration({ + databaseName: userContext.fabricContext?.databaseName, + newContainerName: "SampleData", + sampleDataFile: SampleDataFile.FABRIC_SAMPLE_DATA, + }); + setOpenSampleDataImportDialog(true); + }, + }, + { + title: "Sample Vector Data", + description: "Load sample vector data in your database", + icon: , + onClick: () => { + setSelectedSampleDataConfiguration({ + databaseName: userContext.fabricContext?.databaseName, + newContainerName: "SampleVectorData", + sampleDataFile: SampleDataFile.FABRIC_SAMPLE_VECTOR_DATA, + }); + setOpenSampleDataImportDialog(true); + }, }, { title: "App development", @@ -156,17 +199,25 @@ export const FabricHomeScreen: React.FC = (props: SplashScree icon: , onClick: () => window.open("https://aka.ms/cosmosdbfabricsdk", "_blank"), }, + { + title: "Sample Gallery", + description: "Get real-world end-to-end samples", + icon: , + onClick: () => window.open("https://azurecosmosdb.github.io/gallery/?tags=example&tags=analytics", "_blank"), + }, ]; return isFabricNativeReadOnly() ? (
- +
) : (
+ +
); }; @@ -179,7 +230,7 @@ export const FabricHomeScreen: React.FC = (props: SplashScree open={openSampleDataImportDialog} setOpen={setOpenSampleDataImportDialog} explorer={props.explorer} - databaseName={userContext.fabricContext?.databaseName} + sampleDataConfiguration={selectedSampleDataConfiguration} />
{title} diff --git a/src/Explorer/SplashScreen/SampleDataImportDialog.tsx b/src/Explorer/SplashScreen/SampleDataImportDialog.tsx index 1b153e969..48f333115 100644 --- a/src/Explorer/SplashScreen/SampleDataImportDialog.tsx +++ b/src/Explorer/SplashScreen/SampleDataImportDialog.tsx @@ -11,12 +11,10 @@ import { tokens, } from "@fluentui/react-components"; import Explorer from "Explorer/Explorer"; -import { checkContainerExists, createContainer, importData } from "Explorer/SplashScreen/SampleUtil"; +import { checkContainerExists, createContainer, importData, SampleDataFile } from "Explorer/SplashScreen/SampleUtil"; import React, { useEffect, useState } from "react"; import * as ViewModels from "../../Contracts/ViewModels"; -const SAMPLE_DATA_CONTAINER_NAME = "SampleData"; - const useStyles = makeStyles({ dialogContent: { alignItems: "center", @@ -24,6 +22,12 @@ const useStyles = makeStyles({ }, }); +export interface SampleDataConfiguration { + databaseName: string; + newContainerName: string; + sampleDataFile: SampleDataFile; +} + /** * This dialog: * - creates a container @@ -35,11 +39,11 @@ export const SampleDataImportDialog: React.FC<{ open: boolean; setOpen: (open: boolean) => void; explorer: Explorer; - databaseName: string; + sampleDataConfiguration: SampleDataConfiguration | undefined; }> = (props) => { const [status, setStatus] = useState<"idle" | "creating" | "importing" | "completed" | "error">("idle"); const [errorMessage, setErrorMessage] = useState(null); - const containerName = SAMPLE_DATA_CONTAINER_NAME; + const containerName = props.sampleDataConfiguration?.newContainerName; const [collection, setCollection] = useState(undefined); const styles = useStyles(); @@ -53,7 +57,7 @@ export const SampleDataImportDialog: React.FC<{ const handleStartImport = async (): Promise => { setStatus("creating"); - const databaseName = props.databaseName; + const databaseName = props.sampleDataConfiguration.databaseName; if (checkContainerExists(databaseName, containerName)) { const msg = `The container "${containerName}" in database "${databaseName}" already exists. Please delete it and retry.`; setStatus("error"); @@ -63,7 +67,12 @@ export const SampleDataImportDialog: React.FC<{ let collection; try { - collection = await createContainer(databaseName, containerName, props.explorer); + collection = await createContainer( + databaseName, + containerName, + props.explorer, + props.sampleDataConfiguration.sampleDataFile, + ); } catch (error) { setStatus("error"); setErrorMessage(`Failed to create container: ${error instanceof Error ? error.message : String(error)}`); @@ -72,7 +81,7 @@ export const SampleDataImportDialog: React.FC<{ try { setStatus("importing"); - await importData(collection); + await importData(props.sampleDataConfiguration.sampleDataFile, collection); setCollection(collection); setStatus("completed"); } catch (error) { diff --git a/src/Explorer/SplashScreen/SampleUtil.ts b/src/Explorer/SplashScreen/SampleUtil.ts index 4072eb011..dc4def17e 100644 --- a/src/Explorer/SplashScreen/SampleUtil.ts +++ b/src/Explorer/SplashScreen/SampleUtil.ts @@ -1,9 +1,13 @@ +import { JSONObject } from "@azure/cosmos"; import { BackendDefaults } from "Common/Constants"; import { createCollection } from "Common/dataAccess/createCollection"; import Explorer from "Explorer/Explorer"; import { useDatabases } from "Explorer/useDatabases"; +import { DEFAULT_FABRIC_NATIVE_CONTAINER_THROUGHPUT, isFabricNative } from "Platform/Fabric/FabricUtil"; +import { Action, ActionModifiers } from "Shared/Telemetry/TelemetryConstants"; import * as DataModels from "../../Contracts/DataModels"; import * as ViewModels from "../../Contracts/ViewModels"; +import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor"; /** * Public for unit tests @@ -26,12 +30,20 @@ const hasContainer = ( export const checkContainerExists = (databaseName: string, containerName: string) => hasContainer(databaseName, containerName, useDatabases.getState().databases); +export enum SampleDataFile { + COPILOT = "Copilot", + FABRIC_SAMPLE_DATA = "FabricSampleData", + FABRIC_SAMPLE_VECTOR_DATA = "FabricSampleVectorData", +} + export const createContainer = async ( databaseName: string, containerName: string, explorer: Explorer, + sampleDataFile: SampleDataFile, ): Promise => { const createRequest: DataModels.CreateCollectionParams = { + autoPilotMaxThroughput: isFabricNative() ? DEFAULT_FABRIC_NATIVE_CONTAINER_THROUGHPUT : undefined, createNewDatabase: false, collectionId: containerName, databaseId: databaseName, @@ -41,6 +53,44 @@ export const createContainer = async ( kind: "Hash", version: BackendDefaults.partitionKeyVersion, }, + vectorEmbeddingPolicy: + sampleDataFile === SampleDataFile.FABRIC_SAMPLE_VECTOR_DATA + ? { + vectorEmbeddings: [ + { + path: "/descriptionVector", + dataType: "float32", + distanceFunction: "cosine", + dimensions: 512, + }, + ], + } + : undefined, + indexingPolicy: + sampleDataFile === SampleDataFile.FABRIC_SAMPLE_VECTOR_DATA + ? { + automatic: true, + indexingMode: "consistent", + includedPaths: [ + { + path: "/*", + }, + ], + excludedPaths: [ + { + path: '/"_etag"/?', + }, + ], + fullTextIndexes: [], + vectorIndexes: [ + { + path: "/descriptionVector", + type: "quantizedFlat", + quantizationByteSize: 64, + }, + ], + } + : undefined, }; await createCollection(createRequest); await explorer.refreshAllDatabases(); @@ -55,10 +105,39 @@ export const createContainer = async ( const SAMPLE_DATA_PARTITION_KEY = "category"; // This pkey is specifically set for queryCopilotSampleData.json below -export const importData = async (collection: ViewModels.Collection): Promise => { - // TODO: keep same chunk as ContainerSampleGenerator - const dataFileContent = await import( - /* webpackChunkName: "queryCopilotSampleData" */ "../../../sampleData/queryCopilotSampleData.json" - ); - await collection.bulkInsertDocuments(dataFileContent.data); +export const importData = async (sampleDataFile: SampleDataFile, collection: ViewModels.Collection): Promise => { + let documents: JSONObject[] = undefined; + switch (sampleDataFile) { + case SampleDataFile.COPILOT: + documents = ( + await import(/* webpackChunkName: "queryCopilotSampleData" */ "../../../sampleData/queryCopilotSampleData.json") + ).data; + break; + case SampleDataFile.FABRIC_SAMPLE_DATA: + documents = (await import(/* webpackChunkName: "fabricSampleData" */ "../../../sampleData/fabricSampleData.json")) + .default; + break; + case SampleDataFile.FABRIC_SAMPLE_VECTOR_DATA: + documents = ( + await import( + /* webpackChunkName: "fabricSampleDataVectors" */ "../../../sampleData/fabricSampleDataVectors.json" + ) + ).default; + break; + default: + throw new Error(`Unknown sample data file: ${sampleDataFile}`); + } + if (!documents) { + throw new Error(`Failed to load sample data file: ${sampleDataFile}`); + } + + // Time it + const start = performance.now(); + await collection.bulkInsertDocuments(documents); + const end = performance.now(); + TelemetryProcessor.trace(Action.ImportSampleData, ActionModifiers.Success, { + documentsCount: documents.length, + durationMs: end - start, + sampleDataFile, + }); }; diff --git a/src/Platform/Fabric/FabricUtil.ts b/src/Platform/Fabric/FabricUtil.ts index c2332e4bc..22ac2603a 100644 --- a/src/Platform/Fabric/FabricUtil.ts +++ b/src/Platform/Fabric/FabricUtil.ts @@ -4,6 +4,10 @@ import { FabricMessageTypes } from "Contracts/FabricMessageTypes"; import { CosmosDbArtifactType, ResourceTokenInfo } from "Contracts/FabricMessagesContract"; import { FabricArtifactInfo, updateUserContext, userContext } from "UserContext"; import { logConsoleError } from "Utils/NotificationConsoleUtils"; +import * as AutoPilotUtils from "../../Utils/AutoPilotUtils"; + +// Fabric Native accounts are always autoscale and have a fixed throughput of 5K +export const DEFAULT_FABRIC_NATIVE_CONTAINER_THROUGHPUT = AutoPilotUtils.autoPilotThroughput5K; const TOKEN_VALIDITY_MS = (3600 - 600) * 1000; // 1 hour minus 10 minutes to be safe const DEBOUNCE_DELAY_MS = 1000 * 20; // 20 second diff --git a/src/Shared/Telemetry/TelemetryConstants.ts b/src/Shared/Telemetry/TelemetryConstants.ts index 031d061cc..bee104eea 100644 --- a/src/Shared/Telemetry/TelemetryConstants.ts +++ b/src/Shared/Telemetry/TelemetryConstants.ts @@ -150,6 +150,7 @@ export enum Action { CloudShellUserConsent, CloudShellTerminalSession, OpenVSCode, + ImportSampleData, } export const ActionModifiers = { From d92482453663357c879abf1a50cb277494038d11 Mon Sep 17 00:00:00 2001 From: bogercraig <124094535+bogercraig@users.noreply.github.com> Date: Mon, 6 Oct 2025 09:58:45 -0700 Subject: [PATCH 4/4] Updating allowed endpoint list first from server for running in non-prod environments. (#2222) --- src/ConfigContext.ts | 48 +++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/src/ConfigContext.ts b/src/ConfigContext.ts index da35f7839..9d6945a38 100644 --- a/src/ConfigContext.ts +++ b/src/ConfigContext.ts @@ -110,11 +110,30 @@ export function updateConfigContext(newContext: Partial): void { return; } - if (!validateEndpoint(newContext.AAD_ENDPOINT, configContext.allowedAadEndpoints || defaultAllowedAadEndpoints)) { + if (newContext.allowedAadEndpoints) { + Object.assign(configContext, { allowedAadEndpoints: newContext.allowedAadEndpoints }); + } + if (newContext.allowedArmEndpoints) { + Object.assign(configContext, { allowedArmEndpoints: newContext.allowedArmEndpoints }); + } + if (newContext.allowedGraphEndpoints) { + Object.assign(configContext, { allowedGraphEndpoints: newContext.allowedGraphEndpoints }); + } + if (newContext.allowedBackendEndpoints) { + Object.assign(configContext, { allowedBackendEndpoints: newContext.allowedBackendEndpoints }); + } + if (newContext.allowedMongoProxyEndpoints) { + Object.assign(configContext, { allowedMongoProxyEndpoints: newContext.allowedMongoProxyEndpoints }); + } + if (newContext.allowedCassandraProxyEndpoints) { + Object.assign(configContext, { allowedCassandraProxyEndpoints: newContext.allowedCassandraProxyEndpoints }); + } + + if (!validateEndpoint(newContext.AAD_ENDPOINT, configContext.allowedAadEndpoints)) { delete newContext.AAD_ENDPOINT; } - if (!validateEndpoint(newContext.ARM_ENDPOINT, configContext.allowedArmEndpoints || defaultAllowedArmEndpoints)) { + if (!validateEndpoint(newContext.ARM_ENDPOINT, configContext.allowedArmEndpoints)) { delete newContext.ARM_ENDPOINT; } @@ -122,9 +141,7 @@ export function updateConfigContext(newContext: Partial): void { delete newContext.EMULATOR_ENDPOINT; } - if ( - !validateEndpoint(newContext.GRAPH_ENDPOINT, configContext.allowedGraphEndpoints || defaultAllowedGraphEndpoints) - ) { + if (!validateEndpoint(newContext.GRAPH_ENDPOINT, configContext.allowedGraphEndpoints)) { delete newContext.GRAPH_ENDPOINT; } @@ -132,30 +149,15 @@ export function updateConfigContext(newContext: Partial): void { delete newContext.ARCADIA_ENDPOINT; } - if ( - !validateEndpoint( - newContext.PORTAL_BACKEND_ENDPOINT, - configContext.allowedBackendEndpoints || defaultAllowedBackendEndpoints, - ) - ) { + if (!validateEndpoint(newContext.PORTAL_BACKEND_ENDPOINT, configContext.allowedBackendEndpoints)) { delete newContext.PORTAL_BACKEND_ENDPOINT; } - if ( - !validateEndpoint( - newContext.MONGO_PROXY_ENDPOINT, - configContext.allowedMongoProxyEndpoints || defaultAllowedMongoProxyEndpoints, - ) - ) { + if (!validateEndpoint(newContext.MONGO_PROXY_ENDPOINT, configContext.allowedMongoProxyEndpoints)) { delete newContext.MONGO_PROXY_ENDPOINT; } - if ( - !validateEndpoint( - newContext.CASSANDRA_PROXY_ENDPOINT, - configContext.allowedCassandraProxyEndpoints || defaultAllowedCassandraProxyEndpoints, - ) - ) { + if (!validateEndpoint(newContext.CASSANDRA_PROXY_ENDPOINT, configContext.allowedCassandraProxyEndpoints)) { delete newContext.CASSANDRA_PROXY_ENDPOINT; }